From 18119d405fd9941d1994afd5b6c8d268306c1dfd Mon Sep 17 00:00:00 2001 From: AurelienFT <32803821+AurelienFT@users.noreply.github.com> Date: Wed, 29 May 2024 17:45:13 +0200 Subject: [PATCH] rollback to mainnet config and Change two constants to config and add pruning block storing (#4697) * Revert "Devn 28 3 (#4683)" This reverts commit a4d9cda16d3183329de454abfb25e1b689210ac1. * Change two constants ledger backup to config and add pruning block storing * fix clippy --- .gitignore | 3 + Cargo.lock | 82 +- massa-api-exports/Cargo.toml | 2 +- massa-api-exports/src/config.rs | 2 + massa-api/Cargo.toml | 2 +- massa-api/src/public.rs | 15 +- massa-api/src/tests/mock.rs | 2 + massa-api/src/tests/public.rs | 2 +- massa-async-pool/Cargo.toml | 2 +- massa-async-pool/src/pool.rs | 7 + massa-bootstrap/Cargo.toml | 2 +- massa-bootstrap/src/tests/binders.rs | 3 + massa-bootstrap/src/tests/universe_client.rs | 1 + massa-bootstrap/src/tests/universe_server.rs | 1 + massa-channel/Cargo.toml | 2 +- massa-cipher/Cargo.toml | 2 +- massa-client/Cargo.toml | 2 +- massa-client/base_config/config.toml | 4 +- massa-consensus-exports/Cargo.toml | 2 +- massa-consensus-worker/Cargo.toml | 2 +- massa-db-exports/Cargo.toml | 2 +- massa-db-exports/src/settings.rs | 2 + massa-db-worker/Cargo.toml | 2 +- massa-db-worker/src/massa_db.rs | 73 +- massa-executed-ops/Cargo.toml | 2 +- .../src/executed_denunciations.rs | 1 + massa-executed-ops/src/executed_ops.rs | 3 + massa-execution-exports/Cargo.toml | 2 +- .../src/controller_traits.rs | 6 +- massa-execution-exports/src/types.rs | 1 + massa-execution-worker/Cargo.toml | 2 +- massa-execution-worker/src/context.rs | 4 +- massa-execution-worker/src/controller.rs | 10 +- massa-execution-worker/src/execution.rs | 28 +- massa-execution-worker/src/interface_impl.rs | 1 + .../src/speculative_roll_state.rs | 19 +- massa-execution-worker/src/storage_backend.rs | 67 +- .../src/tests/scenarios_mandatories.rs | 8 +- massa-execution-worker/src/tests/universe.rs | 1 + massa-factory-exports/Cargo.toml | 2 +- massa-factory-worker/Cargo.toml | 2 +- massa-final-state/Cargo.toml | 2 +- massa-final-state/src/config.rs | 2 + massa-final-state/src/final_state.rs | 12 +- massa-final-state/src/lib.rs | 2 +- massa-final-state/src/test_exports/config.rs | 1 + massa-final-state/src/test_exports/mock.rs | 1 + massa-final-state/src/tests/scenarios.rs | 2 + massa-grpc/Cargo.toml | 2 +- massa-hash/Cargo.toml | 2 +- massa-ledger-exports/Cargo.toml | 2 +- massa-ledger-worker/Cargo.toml | 2 +- massa-ledger-worker/src/ledger_db.rs | 1 + .../src/test_exports/config.rs | 1 + massa-logging/Cargo.toml | 2 +- massa-metrics/Cargo.toml | 2 +- massa-models/Cargo.toml | 2 +- massa-models/src/config/constants.rs | 11 +- massa-module-cache/Cargo.toml | 2 +- massa-node/Cargo.toml | 2 +- .../base_config/bootstrap_whitelist.json | 12 +- massa-node/base_config/config.toml | 26 +- massa-node/base_config/deferred_credits.json | 1809130 ++++++++++++++ massa-node/base_config/initial_ledger.json | 121025 +- massa-node/base_config/initial_peers.json | 28 +- massa-node/base_config/initial_rolls.json | 1052 +- massa-node/base_config/openrpc.json | 2 +- massa-node/src/main.rs | 7 +- massa-node/src/settings.rs | 6 + massa-pool-exports/Cargo.toml | 2 +- massa-pool-worker/Cargo.toml | 2 +- massa-pos-exports/Cargo.toml | 2 +- massa-pos-exports/src/pos_final_state.rs | 329 +- massa-pos-worker/Cargo.toml | 2 +- massa-protocol-exports/Cargo.toml | 2 +- massa-protocol-worker/Cargo.toml | 2 +- massa-sdk/Cargo.toml | 2 +- massa-serialization/Cargo.toml | 2 +- massa-signature/Cargo.toml | 2 +- massa-storage/Cargo.toml | 2 +- massa-test-framework/Cargo.toml | 2 +- massa-time/Cargo.toml | 2 +- massa-versioning/Cargo.toml | 2 +- massa-versioning/src/versioning.rs | 1 + massa-wallet/Cargo.toml | 2 +- massa-xtask/Cargo.toml | 2 +- 86 files changed, 1931679 insertions(+), 400 deletions(-) diff --git a/.gitignore b/.gitignore index 1626a67f6e9..f1a00e0dbac 100644 --- a/.gitignore +++ b/.gitignore @@ -10,9 +10,12 @@ **/target massa-client/config/* massa-client/wallet.dat +massa-execution-worker/test_db/* +massa-execution-worker/**.bin massa-node/config/* massa-node/logs.txt massa-node/storage/* +massa-node/dump/* massa-node/storage/peers.json massa-node/src/tests/storage shell.nix diff --git a/Cargo.lock b/Cargo.lock index 557f0f9679b..1853e399e2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2487,7 +2487,7 @@ dependencies = [ [[package]] name = "massa-client" -version = "28.3.0" +version = "2.1.0" dependencies = [ "anyhow", "clap", @@ -2514,7 +2514,7 @@ dependencies = [ [[package]] name = "massa-node" -version = "28.3.0" +version = "2.1.0" dependencies = [ "anyhow", "cfg-if", @@ -2615,7 +2615,7 @@ dependencies = [ [[package]] name = "massa_api" -version = "28.3.0" +version = "2.1.0" dependencies = [ "async-trait", "futures", @@ -2653,7 +2653,7 @@ dependencies = [ [[package]] name = "massa_api_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "jsonrpsee", @@ -2673,7 +2673,7 @@ dependencies = [ [[package]] name = "massa_async_pool" -version = "28.3.0" +version = "2.1.0" dependencies = [ "assert_matches", "massa-proto-rs", @@ -2696,7 +2696,7 @@ dependencies = [ [[package]] name = "massa_bootstrap" -version = "28.3.0" +version = "2.1.0" dependencies = [ "bitvec", "crossbeam", @@ -2742,7 +2742,7 @@ dependencies = [ [[package]] name = "massa_channel" -version = "28.3.0" +version = "2.1.0" dependencies = [ "crossbeam", "prometheus", @@ -2751,7 +2751,7 @@ dependencies = [ [[package]] name = "massa_cipher" -version = "28.3.0" +version = "2.1.0" dependencies = [ "aes-gcm", "displaydoc", @@ -2762,7 +2762,7 @@ dependencies = [ [[package]] name = "massa_consensus_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa_channel", @@ -2787,7 +2787,7 @@ dependencies = [ [[package]] name = "massa_consensus_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "crossbeam", "crossbeam-channel", @@ -2817,7 +2817,7 @@ dependencies = [ [[package]] name = "massa_db_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa_hash", @@ -2830,7 +2830,7 @@ dependencies = [ [[package]] name = "massa_db_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "assert_matches", "massa_db_exports", @@ -2844,7 +2844,7 @@ dependencies = [ [[package]] name = "massa_executed_ops" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_db_exports", "massa_db_worker", @@ -2858,7 +2858,7 @@ dependencies = [ [[package]] name = "massa_execution_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa-proto-rs", @@ -2881,7 +2881,7 @@ dependencies = [ [[package]] name = "massa_execution_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "anyhow", "blake3", @@ -2931,7 +2931,7 @@ dependencies = [ [[package]] name = "massa_factory_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa_consensus_exports", @@ -2948,7 +2948,7 @@ dependencies = [ [[package]] name = "massa_factory_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "crossbeam-channel", "massa_channel", @@ -2972,7 +2972,7 @@ dependencies = [ [[package]] name = "massa_final_state" -version = "28.3.0" +version = "2.1.0" dependencies = [ "anyhow", "bs58", @@ -3005,7 +3005,7 @@ dependencies = [ [[package]] name = "massa_grpc" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "futures-util", @@ -3046,7 +3046,7 @@ dependencies = [ [[package]] name = "massa_hash" -version = "28.3.0" +version = "2.1.0" dependencies = [ "blake3", "bs58", @@ -3061,7 +3061,7 @@ dependencies = [ [[package]] name = "massa_ledger_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa-proto-rs", @@ -3082,7 +3082,7 @@ dependencies = [ [[package]] name = "massa_ledger_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_db_exports", "massa_db_worker", @@ -3098,7 +3098,7 @@ dependencies = [ [[package]] name = "massa_logging" -version = "28.3.0" +version = "2.1.0" dependencies = [ "serde_json", "tracing", @@ -3106,7 +3106,7 @@ dependencies = [ [[package]] name = "massa_metrics" -version = "28.3.0" +version = "2.1.0" dependencies = [ "hyper", "lazy_static", @@ -3117,7 +3117,7 @@ dependencies = [ [[package]] name = "massa_models" -version = "28.3.0" +version = "2.1.0" dependencies = [ "bitvec", "bs58", @@ -3145,7 +3145,7 @@ dependencies = [ [[package]] name = "massa_module_cache" -version = "28.3.0" +version = "2.1.0" dependencies = [ "anyhow", "displaydoc", @@ -3166,7 +3166,7 @@ dependencies = [ [[package]] name = "massa_pool_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_execution_exports", "massa_models", @@ -3181,7 +3181,7 @@ dependencies = [ [[package]] name = "massa_pool_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "crossbeam-channel", "massa_execution_exports", @@ -3201,7 +3201,7 @@ dependencies = [ [[package]] name = "massa_pos_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "assert_matches", "bitvec", @@ -3227,7 +3227,7 @@ dependencies = [ [[package]] name = "massa_pos_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_hash", "massa_models", @@ -3241,7 +3241,7 @@ dependencies = [ [[package]] name = "massa_protocol_exports" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa_hash", @@ -3264,7 +3264,7 @@ dependencies = [ [[package]] name = "massa_protocol_worker" -version = "28.3.0" +version = "2.1.0" dependencies = [ "crossbeam", "ip_rfc", @@ -3302,7 +3302,7 @@ dependencies = [ [[package]] name = "massa_sdk" -version = "28.3.0" +version = "2.1.0" dependencies = [ "http", "jsonrpsee", @@ -3320,7 +3320,7 @@ dependencies = [ [[package]] name = "massa_serialization" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "nom", @@ -3332,7 +3332,7 @@ dependencies = [ [[package]] name = "massa_signature" -version = "28.3.0" +version = "2.1.0" dependencies = [ "bs58", "displaydoc", @@ -3350,7 +3350,7 @@ dependencies = [ [[package]] name = "massa_storage" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_factory_exports", "massa_metrics", @@ -3361,7 +3361,7 @@ dependencies = [ [[package]] name = "massa_test_framework" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_hash", "massa_models", @@ -3371,7 +3371,7 @@ dependencies = [ [[package]] name = "massa_time" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa-proto-rs", @@ -3384,7 +3384,7 @@ dependencies = [ [[package]] name = "massa_versioning" -version = "28.3.0" +version = "2.1.0" dependencies = [ "assert_matches", "machine", @@ -3409,7 +3409,7 @@ dependencies = [ [[package]] name = "massa_wallet" -version = "28.3.0" +version = "2.1.0" dependencies = [ "displaydoc", "massa_cipher", @@ -3426,7 +3426,7 @@ dependencies = [ [[package]] name = "massa_xtask" -version = "28.3.0" +version = "2.1.0" dependencies = [ "massa_models", "toml_edit 0.21.0", diff --git a/massa-api-exports/Cargo.toml b/massa-api-exports/Cargo.toml index 3aa0d53cbb1..1e2998b81be 100644 --- a/massa-api-exports/Cargo.toml +++ b/massa-api-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_api_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-api-exports/src/config.rs b/massa-api-exports/src/config.rs index 7080170378b..6ec7e31abc3 100644 --- a/massa-api-exports/src/config.rs +++ b/massa-api-exports/src/config.rs @@ -80,6 +80,8 @@ pub struct APIConfig { pub last_start_period: u64, /// chain id pub chain_id: u64, + /// Delta to compute upper bounds when fetching deferred credits + pub deferred_credits_delta: MassaTime, /// minimal fees to include an operation in a block pub minimal_fees: Amount, } diff --git a/massa-api/Cargo.toml b/massa-api/Cargo.toml index 0053c572ead..5fc72751678 100644 --- a/massa-api/Cargo.toml +++ b/massa-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_api" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-api/src/public.rs b/massa-api/src/public.rs index 0d55a1cff43..12fb80efada 100644 --- a/massa-api/src/public.rs +++ b/massa-api/src/public.rs @@ -987,8 +987,21 @@ impl MassaRpcServer for API { .collect() }; + // Compute a limit (as a slot) for deferred credits as it can be quite huge + let bound_ts = MassaTime::now().saturating_add(self.0.api_settings.deferred_credits_delta); + + let deferred_credit_max_slot = timeslots::get_closest_slot_to_timestamp( + self.0.api_settings.thread_count, + self.0.api_settings.t0, + self.0.api_settings.genesis_timestamp, + bound_ts, + ); + // get execution info - let execution_infos = self.0.execution_controller.get_addresses_infos(&addresses); + let execution_infos = self.0.execution_controller.get_addresses_infos( + &addresses, + std::ops::Bound::Included(deferred_credit_max_slot), + ); // get future draws from selector let selection_draws = { diff --git a/massa-api/src/tests/mock.rs b/massa-api/src/tests/mock.rs index c0dd06e267b..735da5266b9 100644 --- a/massa-api/src/tests/mock.rs +++ b/massa-api/src/tests/mock.rs @@ -68,6 +68,7 @@ pub(crate) fn get_apiv2_server(addr: &SocketAddr) -> (API, APIConfig) { periods_per_cycle: PERIODS_PER_CYCLE, last_start_period: 0, chain_id: *CHAINID, + deferred_credits_delta: MassaTime::from_millis(24 * 3600 * 2), minimal_fees: Amount::zero(), }; @@ -143,6 +144,7 @@ pub(crate) fn start_public_api(addr: SocketAddr) -> (API, APIConfig) { periods_per_cycle: PERIODS_PER_CYCLE, last_start_period: 0, chain_id: *CHAINID, + deferred_credits_delta: MassaTime::from_millis(24 * 3600 * 2), minimal_fees: Amount::zero(), }; diff --git a/massa-api/src/tests/public.rs b/massa-api/src/tests/public.rs index e711e04fed7..293ea753b2d 100644 --- a/massa-api/src/tests/public.rs +++ b/massa-api/src/tests/public.rs @@ -839,7 +839,7 @@ async fn get_addresses() { let (mut api_public, config) = start_public_api(addr); let mut exec_ctrl = MockExecutionController::new(); - exec_ctrl.expect_get_addresses_infos().returning(|a| { + exec_ctrl.expect_get_addresses_infos().returning(|a, _s| { a.iter() .map(|_addr| ExecutionAddressInfo { candidate_balance: Amount::from_str("100000").unwrap(), diff --git a/massa-async-pool/Cargo.toml b/massa-async-pool/Cargo.toml index 1e7671e3f25..d4d999168ed 100644 --- a/massa-async-pool/Cargo.toml +++ b/massa-async-pool/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_async_pool" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-async-pool/src/pool.rs b/massa-async-pool/src/pool.rs index 33e2f5592bc..403787e3388 100644 --- a/massa-async-pool/src/pool.rs +++ b/massa-async-pool/src/pool.rs @@ -257,6 +257,7 @@ impl AsyncPool { self.message_info_cache.insert(message_id, message.into()); } + // The -1 is to remove the IDENT byte at the end of the key last_id = Some( serialized_message_id[ASYNC_POOL_PREFIX.len()..serialized_message_id.len() - 1] .to_vec(), @@ -1098,6 +1099,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>, @@ -1139,6 +1141,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>, @@ -1200,6 +1203,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>, @@ -1256,6 +1260,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>, @@ -1312,6 +1317,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)>, @@ -1361,6 +1367,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 100, }; let db: ShareableMassaDBController = Arc::new(RwLock::new(Box::new(MassaDB::new( db_config.clone(), diff --git a/massa-bootstrap/Cargo.toml b/massa-bootstrap/Cargo.toml index 260e12e98de..a3aaeb7974c 100644 --- a/massa-bootstrap/Cargo.toml +++ b/massa-bootstrap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_bootstrap" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-bootstrap/src/tests/binders.rs b/massa-bootstrap/src/tests/binders.rs index 74b2322927f..e52b6c118e1 100644 --- a/massa-bootstrap/src/tests/binders.rs +++ b/massa-bootstrap/src/tests/binders.rs @@ -450,6 +450,7 @@ fn test_staying_connected_without_message_trigger_read_timeout() { max_final_state_elements_size: 100_000_000, max_versioning_elements_size: 100_000_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, })) as Box<(dyn MassaDBController + 'static)>)); let rolls_path = PathBuf::from_str("../massa-node/base_config/initial_rolls.json").unwrap(); @@ -547,6 +548,7 @@ fn test_staying_connected_pass_handshake_but_deadline_after() { max_final_state_elements_size: 100_000_000, max_versioning_elements_size: 100_000_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, })) as Box<(dyn MassaDBController + 'static)>)); let rolls_path = PathBuf::from_str("../massa-node/base_config/initial_rolls.json").unwrap(); @@ -644,6 +646,7 @@ fn test_staying_connected_pass_handshake_but_deadline_during_data_exchange() { max_final_state_elements_size: 100_000_000, max_versioning_elements_size: 100_000_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, })) as Box<(dyn MassaDBController + 'static)>)); let rolls_path = PathBuf::from_str("../massa-node/base_config/initial_rolls.json").unwrap(); diff --git a/massa-bootstrap/src/tests/universe_client.rs b/massa-bootstrap/src/tests/universe_client.rs index 389848d88c7..04a226cf60c 100644 --- a/massa-bootstrap/src/tests/universe_client.rs +++ b/massa-bootstrap/src/tests/universe_client.rs @@ -59,6 +59,7 @@ impl TestUniverse for BootstrapClientTestUniverse { max_versioning_elements_size: MAX_BOOTSTRAP_VERSIONING_ELEMENTS_SIZE as usize, max_final_state_elements_size: MAX_BOOTSTRAP_FINAL_STATE_PARTS_SIZE as usize, thread_count: THREAD_COUNT, + max_ledger_backups: 10, })) as Box<(dyn MassaDBController + 'static)>)); controllers diff --git a/massa-bootstrap/src/tests/universe_server.rs b/massa-bootstrap/src/tests/universe_server.rs index 0fe5721a925..8ca827e1ddf 100644 --- a/massa-bootstrap/src/tests/universe_server.rs +++ b/massa-bootstrap/src/tests/universe_server.rs @@ -56,6 +56,7 @@ impl BootstrapServerForeignControllers { max_versioning_elements_size: MAX_BOOTSTRAP_VERSIONING_ELEMENTS_SIZE as usize, max_final_state_elements_size: MAX_BOOTSTRAP_FINAL_STATE_PARTS_SIZE as usize, thread_count: THREAD_COUNT, + max_ledger_backups: 10, })) as Box<(dyn MassaDBController + 'static)>)); Self { diff --git a/massa-channel/Cargo.toml b/massa-channel/Cargo.toml index dea5b15da36..0cb93ed78d5 100644 --- a/massa-channel/Cargo.toml +++ b/massa-channel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_channel" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-cipher/Cargo.toml b/massa-cipher/Cargo.toml index 5616c63f352..c6458e05442 100644 --- a/massa-cipher/Cargo.toml +++ b/massa-cipher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_cipher" -version = "28.3.0" +version = "2.1.0" edition = "2021" [dependencies] diff --git a/massa-client/Cargo.toml b/massa-client/Cargo.toml index e6d72f613d9..fca19985027 100644 --- a/massa-client/Cargo.toml +++ b/massa-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa-client" -version = "28.3.0" +version = "2.1.0" edition = "2021" [dependencies] diff --git a/massa-client/base_config/config.toml b/massa-client/base_config/config.toml index 1218579b050..dd45ab3faf7 100644 --- a/massa-client/base_config/config.toml +++ b/massa-client/base_config/config.toml @@ -9,8 +9,8 @@ private_port = 33034 public_port = 33035 grpc_public_port = 33037 grpc_private_port = 33038 -# Chain id for BuildNet, please update to match the target node chain id -chain_id = 77658366 +# Chain id for MainNet, please update to match the target node chain id +chain_id = 77658377 [client] # maximum size in bytes of a request. Defaults to 50MB diff --git a/massa-consensus-exports/Cargo.toml b/massa-consensus-exports/Cargo.toml index f6b821946f8..2643633de7f 100644 --- a/massa-consensus-exports/Cargo.toml +++ b/massa-consensus-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_consensus_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-consensus-worker/Cargo.toml b/massa-consensus-worker/Cargo.toml index 3fad775c3af..d09a1dc1144 100644 --- a/massa-consensus-worker/Cargo.toml +++ b/massa-consensus-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_consensus_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-db-exports/Cargo.toml b/massa-db-exports/Cargo.toml index c2588ee0726..cd8d1d68816 100644 --- a/massa-db-exports/Cargo.toml +++ b/massa-db-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_db_exports" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-db-exports/src/settings.rs b/massa-db-exports/src/settings.rs index d7c32447611..c13f0d1937c 100644 --- a/massa-db-exports/src/settings.rs +++ b/massa-db-exports/src/settings.rs @@ -13,4 +13,6 @@ pub struct MassaDBConfig { pub max_final_state_elements_size: usize, /// Thread count for slot serialization pub thread_count: u8, + /// Maximum number of ledger backups to keep + pub max_ledger_backups: u64, } diff --git a/massa-db-worker/Cargo.toml b/massa-db-worker/Cargo.toml index 8cf7a673f65..459320ae5c2 100644 --- a/massa-db-worker/Cargo.toml +++ b/massa-db-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_db_worker" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-db-worker/src/massa_db.rs b/massa-db-worker/src/massa_db.rs index 7e9a594fa66..a86ffd9475b 100644 --- a/massa-db-worker/src/massa_db.rs +++ b/massa-db-worker/src/massa_db.rs @@ -6,7 +6,6 @@ use massa_db_exports::{ }; use massa_hash::{HashXof, HASH_XOF_SIZE_BYTES}; use massa_models::{ - config::MAX_BACKUPS_TO_KEEP, error::ModelsError, slot::{Slot, SlotDeserializer, SlotSerializer}, streaming_step::StreamingStep, @@ -636,38 +635,35 @@ impl MassaDBController for RawMassaDB { let db = &self.db; let subpath = format!("backup_{}_{}", slot.period, slot.thread); - if let Some(max_backups) = MAX_BACKUPS_TO_KEEP { - let previous_backups_paths = std::fs::read_dir(db.path()) - .expect("Cannot walk db path") - .map(|res| res.map(|e| e.path())) - .collect::, std::io::Error>>() - .expect("Cannot walk db path"); + let previous_backups_paths = std::fs::read_dir(db.path()) + .expect("Cannot walk db path") + .map(|res| res.map(|e| e.path())) + .collect::, std::io::Error>>() + .expect("Cannot walk db path"); - let mut previous_backups = BTreeMap::new(); + let mut previous_backups = BTreeMap::new(); - for backup_path in previous_backups_paths.iter() { - let Some(path_str) = backup_path.file_name().and_then(|f| f.to_str()) else { + for backup_path in previous_backups_paths.iter() { + let Some(path_str) = backup_path.file_name().and_then(|f| f.to_str()) else { + continue; + }; + let vec = path_str.split('_').collect::>(); + if vec.len() == 3 && vec[0] == "backup" { + let Ok(period) = vec[1].parse::() else { continue; }; - let vec = path_str.split('_').collect::>(); - if vec.len() == 3 && vec[0] == "backup" { - let Ok(period) = vec[1].parse::() else { - continue; - }; - let Ok(thread) = vec[2].parse::() else { - continue; - }; - let backup_slot = Slot::new(period, thread); - previous_backups.insert(backup_slot, backup_path); - } + let Ok(thread) = vec[2].parse::() else { + continue; + }; + let backup_slot = Slot::new(period, thread); + previous_backups.insert(backup_slot, backup_path); } + } - // Remove the oldest backups if we have too many - while previous_backups.len() >= max_backups { - if let Some((_, oldest_backup_path)) = previous_backups.pop_first() { - std::fs::remove_dir_all(oldest_backup_path) - .expect("Cannot remove oldest backup"); - } + // Remove the oldest backups if we have too many + while previous_backups.len() >= self.config.max_ledger_backups as usize { + if let Some((_, oldest_backup_path)) = previous_backups.pop_first() { + std::fs::remove_dir_all(oldest_backup_path).expect("Cannot remove oldest backup"); } } @@ -928,6 +924,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -957,6 +954,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1040,6 +1038,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1124,6 +1123,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1172,6 +1172,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_backup_1_opts = MassaDB::default_db_opts(); db_backup_1_opts.create_if_missing(false); @@ -1195,6 +1196,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_backup_2_opts = MassaDB::default_db_opts(); db_backup_2_opts.create_if_missing(false); @@ -1227,20 +1229,21 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) db_opts.set_paranoid_checks(true); let db = Arc::new(RwLock::new(Box::new( - MassaDB::new_with_options(db_config, db_opts.clone()).unwrap(), + MassaDB::new_with_options(db_config.clone(), db_opts.clone()).unwrap(), ) as Box<(dyn MassaDBController + 'static)>)); let mut backups = BTreeMap::default(); - for i in 0..(MAX_BACKUPS_TO_KEEP.unwrap() + 1) { - let slot = Slot::new(i as u64, 0); + for i in 0..(db_config.max_ledger_backups + 1) { + let slot = Slot::new(i, 0); let i_ = i as u8; let batch = DBBatch::from([(vec![i_], Some(vec![i_ + 10]))]); let versioning_batch = DBBatch::from([(vec![i_ + 1], Some(vec![i_ + 20]))]); @@ -1258,8 +1261,8 @@ mod test { let mut db_opts_no_create = db_opts.clone(); db_opts_no_create.create_if_missing(false); - for i in 0..(MAX_BACKUPS_TO_KEEP.unwrap() + 1) { - let slot = Slot::new(i as u64, 0); + for i in 0..(db_config.max_ledger_backups + 1) { + let slot = Slot::new(i, 0); let (backup_xof, backup_path) = backups.get(&slot).unwrap(); // println!( @@ -1273,6 +1276,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; // let db_backup_2_opts = MassaDB::default_db_opts(); @@ -1321,6 +1325,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1413,6 +1418,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1500,6 +1506,7 @@ mod test { max_final_state_elements_size: 10, max_versioning_elements_size: 10, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1584,6 +1591,7 @@ mod test { max_final_state_elements_size: 20, max_versioning_elements_size: 20, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let mut db_opts = MassaDB::default_db_opts(); // Additional checks (only for testing) @@ -1695,6 +1703,7 @@ mod test { max_final_state_elements_size: 20, max_versioning_elements_size: 20, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let slot_1 = Slot::new(1, 0); diff --git a/massa-executed-ops/Cargo.toml b/massa-executed-ops/Cargo.toml index e69ad893f9a..c19d4871d6b 100644 --- a/massa-executed-ops/Cargo.toml +++ b/massa-executed-ops/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_executed_ops" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-executed-ops/src/executed_denunciations.rs b/massa-executed-ops/src/executed_denunciations.rs index 3cb655162ab..f09f3041c2c 100644 --- a/massa-executed-ops/src/executed_denunciations.rs +++ b/massa-executed-ops/src/executed_denunciations.rs @@ -248,6 +248,7 @@ mod test { max_history_length: 100, max_final_state_elements_size: 100, max_versioning_elements_size: 100, + max_ledger_backups: 10, thread_count: THREAD_COUNT, }; let db = Arc::new(RwLock::new( diff --git a/massa-executed-ops/src/executed_ops.rs b/massa-executed-ops/src/executed_ops.rs index aa3af543ff0..25a735a37f8 100644 --- a/massa-executed-ops/src/executed_ops.rs +++ b/massa-executed-ops/src/executed_ops.rs @@ -301,6 +301,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config.clone())) as Box<(dyn MassaDBController + 'static)> @@ -360,6 +361,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count, + max_ledger_backups: 10, }; let db_c_config = MassaDBConfig { path: tempdir_c.path().to_path_buf(), @@ -367,6 +369,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count, + max_ledger_backups: 10, }; let db_a = Arc::new(RwLock::new( diff --git a/massa-execution-exports/Cargo.toml b/massa-execution-exports/Cargo.toml index 30374f56e1a..b902651b937 100644 --- a/massa-execution-exports/Cargo.toml +++ b/massa-execution-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_execution_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-execution-exports/src/controller_traits.rs b/massa-execution-exports/src/controller_traits.rs index cc6a8e570ae..c9dc2a5ddac 100644 --- a/massa-execution-exports/src/controller_traits.rs +++ b/massa-execution-exports/src/controller_traits.rs @@ -106,7 +106,11 @@ pub trait ExecutionController: Send + Sync { ) -> (bool, bool); /// Gets information about a batch of addresses - fn get_addresses_infos(&self, addresses: &[Address]) -> Vec; + fn get_addresses_infos( + &self, + addresses: &[Address], + deferred_credits_max_slot: std::ops::Bound, + ) -> Vec; /// Get execution statistics fn get_stats(&self) -> ExecutionStats; diff --git a/massa-execution-exports/src/types.rs b/massa-execution-exports/src/types.rs index a05f38efdf7..dee597eb67d 100644 --- a/massa-execution-exports/src/types.rs +++ b/massa-execution-exports/src/types.rs @@ -244,6 +244,7 @@ pub struct ExecutionOutput { pub slot_trace: Option<(SlotAbiCallStack, Vec)>, /// storage #[cfg(feature = "dump-block")] + #[serde(skip_serializing)] pub storage: Option, /// Deferred credits execution (empty if execution-info feature is NOT enabled) pub deferred_credits_execution: Vec<(Address, Result)>, diff --git a/massa-execution-worker/Cargo.toml b/massa-execution-worker/Cargo.toml index 26f2a1e6faf..eab0b5b5f09 100644 --- a/massa-execution-worker/Cargo.toml +++ b/massa-execution-worker/Cargo.toml @@ -4,7 +4,7 @@ harness = false [package] name = "massa_execution_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-execution-worker/src/context.rs b/massa-execution-worker/src/context.rs index 3153adadc9d..a58576577b9 100644 --- a/massa-execution-worker/src/context.rs +++ b/massa-execution-worker/src/context.rs @@ -1073,17 +1073,19 @@ impl ExecutionContext { } /// Get future deferred credits of an address + /// With optionally a limit slot (excluded) pub fn get_address_future_deferred_credits( &self, address: &Address, thread_count: u8, + max_slot: std::ops::Bound, ) -> BTreeMap { let min_slot = self .slot .get_next_slot(thread_count) .expect("unexpected slot overflow in context.get_addresses_deferred_credits"); self.speculative_roll_state - .get_address_deferred_credits(address, min_slot) + .get_address_deferred_credits(address, (std::ops::Bound::Included(min_slot), max_slot)) } /// in case of diff --git a/massa-execution-worker/src/controller.rs b/massa-execution-worker/src/controller.rs index 33a7258feb5..1bd253f4d8a 100644 --- a/massa-execution-worker/src/controller.rs +++ b/massa-execution-worker/src/controller.rs @@ -438,7 +438,11 @@ impl ExecutionController for ExecutionControllerImpl { } /// Gets information about a batch of addresses - fn get_addresses_infos(&self, addresses: &[Address]) -> Vec { + fn get_addresses_infos( + &self, + addresses: &[Address], + deferred_credits_max_slot: std::ops::Bound, + ) -> Vec { let mut res = Vec::with_capacity(addresses.len()); let exec_state = self.execution_state.read(); for addr in addresses { @@ -448,6 +452,8 @@ impl ExecutionController for ExecutionControllerImpl { exec_state.get_final_and_candidate_balance(addr); let (final_roll_count, candidate_roll_count) = exec_state.get_final_and_candidate_rolls(addr); + let future_deferred_credits = + exec_state.get_address_future_deferred_credits(addr, deferred_credits_max_slot); res.push(ExecutionAddressInfo { final_datastore_keys: final_datastore_keys.unwrap_or_default(), candidate_datastore_keys: candidate_datastore_keys.unwrap_or_default(), @@ -455,7 +461,7 @@ impl ExecutionController for ExecutionControllerImpl { candidate_balance: candidate_balance.unwrap_or_default(), final_roll_count, candidate_roll_count, - future_deferred_credits: exec_state.get_address_future_deferred_credits(addr), + future_deferred_credits, cycle_infos: exec_state.get_address_cycle_infos(addr), }); } diff --git a/massa-execution-worker/src/execution.rs b/massa-execution-worker/src/execution.rs index 6fd36473f15..297538ff8e9 100644 --- a/massa-execution-worker/src/execution.rs +++ b/massa-execution-worker/src/execution.rs @@ -2179,8 +2179,16 @@ impl ExecutionState { } /// Get future deferred credits of an address - pub fn get_address_future_deferred_credits(&self, address: &Address) -> BTreeMap { - context_guard!(self).get_address_future_deferred_credits(address, self.config.thread_count) + pub fn get_address_future_deferred_credits( + &self, + address: &Address, + max_slot: std::ops::Bound, + ) -> BTreeMap { + context_guard!(self).get_address_future_deferred_credits( + address, + self.config.thread_count, + max_slot, + ) } /// Get future deferred credits of an address @@ -2190,11 +2198,17 @@ impl ExecutionState { address: &Address, ) -> (BTreeMap, BTreeMap) { // get values from final state - let res_final = self + let res_final: BTreeMap = self .final_state .read() .get_pos_state() - .get_address_deferred_credits(address); + .get_deferred_credits_range(.., Some(address)) + .credits + .iter() + .filter_map(|(slot, addr_amount)| { + addr_amount.get(address).map(|amount| (*slot, *amount)) + }) + .collect(); // get values from active history, backwards let mut res_speculative: BTreeMap = BTreeMap::default(); @@ -2206,10 +2220,12 @@ impl ExecutionState { }; } } + // fill missing speculative entries with final entries - for (s, v) in res_final.iter() { - res_speculative.entry(*s).or_insert(*v); + for (slot, amount) in &res_final { + res_speculative.entry(*slot).or_insert(*amount); } + // remove zero entries from speculative res_speculative.retain(|_s, a| !a.is_zero()); diff --git a/massa-execution-worker/src/interface_impl.rs b/massa-execution-worker/src/interface_impl.rs index 57c34aff00c..4dd2f716310 100644 --- a/massa-execution-worker/src/interface_impl.rs +++ b/massa-execution-worker/src/interface_impl.rs @@ -115,6 +115,7 @@ impl InterfaceImpl { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( diff --git a/massa-execution-worker/src/speculative_roll_state.rs b/massa-execution-worker/src/speculative_roll_state.rs index 5509c702aea..9b6a8817500 100644 --- a/massa-execution-worker/src/speculative_roll_state.rs +++ b/massa-execution-worker/src/speculative_roll_state.rs @@ -197,7 +197,7 @@ impl SpeculativeRollState { addr: &Address, amount: &Amount, ) -> Amount { - let credits = self.get_address_deferred_credits(addr, *slot); + let credits = self.get_address_deferred_credits(addr, slot..); let mut remaining_to_slash = *amount; for (credit_slot, credit_amount) in credits.iter() { @@ -305,11 +305,14 @@ impl SpeculativeRollState { } /// Get deferred credits of an address starting from a given slot - pub fn get_address_deferred_credits( + pub fn get_address_deferred_credits( &self, address: &Address, - min_slot: Slot, - ) -> BTreeMap { + slot_range: R, + ) -> BTreeMap + where + R: std::ops::RangeBounds + Clone, + { let mut res: HashMap = HashMap::default(); // get added values @@ -317,7 +320,7 @@ impl SpeculativeRollState { .added_changes .deferred_credits .credits - .range(min_slot..) + .range(slot_range.clone()) { if let Some(amount) = addr_amount.get(address) { res.entry(*slot).or_insert(*amount); @@ -333,7 +336,7 @@ impl SpeculativeRollState { .pos_changes .deferred_credits .credits - .range(min_slot..) + .range(slot_range.clone()) { if let Some(amount) = addr_amount.get(address) { res.entry(*slot).or_insert(*amount); @@ -347,7 +350,7 @@ impl SpeculativeRollState { let final_state = self.final_state.read(); for (slot, addr_amount) in final_state .get_pos_state() - .get_deferred_credits_range(min_slot..) + .get_deferred_credits_range(slot_range, Some(address)) .credits { if let Some(amount) = addr_amount.get(address) { @@ -576,7 +579,7 @@ impl SpeculativeRollState { .final_state .read() .get_pos_state() - .get_deferred_credits_range(..=slot); + .get_deferred_credits_range(..=slot, None); // fetch active history deferred credits credits.extend( diff --git a/massa-execution-worker/src/storage_backend.rs b/massa-execution-worker/src/storage_backend.rs index 76b88b93f35..0e13ee7411a 100644 --- a/massa-execution-worker/src/storage_backend.rs +++ b/massa-execution-worker/src/storage_backend.rs @@ -1,4 +1,5 @@ use std::{ + collections::VecDeque, fs::File, io::{Read, Write}, path::PathBuf, @@ -12,7 +13,7 @@ use rocksdb::{DBCompressionType, Options}; pub trait StorageBackend: Send + Sync { /// Writes the given value to the storage backend. /// The slot is used as the key to the value. - fn write(&self, slot: &Slot, value: &[u8]); + fn write(&mut self, slot: &Slot, value: &[u8]); /// Reads the value from the storage backend. /// The slot is used as the key to the value. @@ -22,16 +23,30 @@ pub trait StorageBackend: Send + Sync { /// A storage backend that uses the file system as the underlying storage engine. pub struct FileStorageBackend { folder: PathBuf, + slots_saved: VecDeque, + max_blocks: u64, } impl FileStorageBackend { /// Creates a new instance of `FileStorageBackend` with the given path. - pub fn new(path: PathBuf) -> Self { - Self { folder: path } + pub fn new(path: PathBuf, max_blocks: u64) -> Self { + Self { + folder: path, + slots_saved: VecDeque::new(), + max_blocks, + } } } impl StorageBackend for FileStorageBackend { - fn write(&self, slot: &Slot, value: &[u8]) { + fn write(&mut self, slot: &Slot, value: &[u8]) { + if self.slots_saved.len() >= self.max_blocks as usize { + let slot_to_remove = self.slots_saved.pop_front().unwrap(); + let block_file_path = self.folder.join(format!( + "block_slot_{}_{}.bin", + slot_to_remove.thread, slot_to_remove.period + )); + std::fs::remove_file(block_file_path).expect("Unable to delete block from disk"); + } let block_file_path = self .folder .join(format!("block_slot_{}_{}.bin", slot.thread, slot.period)); @@ -40,6 +55,7 @@ impl StorageBackend for FileStorageBackend { .unwrap_or_else(|_| panic!("Cannot create file: {:?}", block_file_path)); file.write_all(value).expect("Unable to write to disk"); + self.slots_saved.push_back(*slot); } fn read(&self, slot: &Slot) -> Option> { @@ -62,11 +78,13 @@ impl StorageBackend for FileStorageBackend { /// A storage backend that uses RocksDB as the underlying storage engine. pub struct RocksDBStorageBackend { db: rocksdb::DB, + slots_saved: VecDeque, + max_blocks: u64, } impl RocksDBStorageBackend { /// Creates a new instance of `RocksDBStorageBackend` with the given path. - pub fn new(path: PathBuf) -> Self { + pub fn new(path: PathBuf, max_blocks: u64) -> Self { let mut opts = Options::default(); opts.create_if_missing(true); opts.set_compression_type(DBCompressionType::Lz4); @@ -74,15 +92,26 @@ impl RocksDBStorageBackend { let db = rocksdb::DB::open(&opts, path.clone()) .unwrap_or_else(|_| panic!("Failed to create storage db at {:?}", path)); - Self { db } + Self { + db, + slots_saved: VecDeque::new(), + max_blocks, + } } } impl StorageBackend for RocksDBStorageBackend { - fn write(&self, slot: &Slot, value: &[u8]) { + fn write(&mut self, slot: &Slot, value: &[u8]) { + if self.slots_saved.len() >= self.max_blocks as usize { + let slot_to_remove = self.slots_saved.pop_front().unwrap(); + self.db + .delete(slot_to_remove.to_bytes_key()) + .expect("Unable to delete block from db"); + } self.db .put(slot.to_bytes_key(), value) .expect("Unable to write block to db"); + self.slots_saved.push_back(*slot); } fn read(&self, slot: &Slot) -> Option> { @@ -108,10 +137,10 @@ mod tests { }; let value = vec![1, 2, 3]; - let storage = FileStorageBackend::new(PathBuf::from("")); + let mut storage = FileStorageBackend::new(PathBuf::from(""), 100); storage.write(&slot, &value); - let storage = FileStorageBackend::new(PathBuf::from("")); + let storage = FileStorageBackend::new(PathBuf::from(""), 100); let data = storage.read(&slot); assert_eq!(data, Some(value)); } @@ -122,14 +151,28 @@ mod tests { thread: 1, period: 1, }; + let slot_2 = Slot { + thread: 1, + period: 2, + }; + let slot_3 = Slot { + thread: 1, + period: 3, + }; let value = vec![1, 2, 3]; - let storage = RocksDBStorageBackend::new(PathBuf::from("test_db")); + let mut storage = RocksDBStorageBackend::new(PathBuf::from("test_db"), 2); storage.write(&slot, &value); + storage.write(&slot_2, &value); + storage.write(&slot_3, &value); drop(storage); - let storage = RocksDBStorageBackend::new(PathBuf::from("test_db")); + let storage = RocksDBStorageBackend::new(PathBuf::from("test_db"), 2); let data = storage.read(&slot); - assert_eq!(data, Some(value)); + assert_eq!(data, None); + let data = storage.read(&slot_2); + assert_eq!(data, Some(value.clone())); + let data = storage.read(&slot_3); + assert_eq!(data, Some(value.clone())); } } diff --git a/massa-execution-worker/src/tests/scenarios_mandatories.rs b/massa-execution-worker/src/tests/scenarios_mandatories.rs index c394fac4589..9bd529984e7 100644 --- a/massa-execution-worker/src/tests/scenarios_mandatories.rs +++ b/massa-execution-worker/src/tests/scenarios_mandatories.rs @@ -616,7 +616,7 @@ fn send_and_receive_async_message() { sender: Address::from_str("AU1TyzwHarZMQSVJgxku8co7xjrRLnH74nFbNpoqNd98YhJkWgi").unwrap(), // Note: generated address (from send_message.ts createSC call) // this can changes when modification to the final state are done (see create_new_sc_address function) - destination: Address::from_str("AS12DSPbsNvvdP1ScCivmKpbQfcJJ3tCQFkNb8ewkRuNjsgoL2AeQ") + destination: Address::from_str("AS127QtY6Hzm6BnJc9wqCBfPNvEH9fKer3LiMNNQmcX3MzLwCL6G6") .unwrap(), function: String::from("receive"), // value from SC: send_message.ts @@ -672,7 +672,7 @@ fn send_and_receive_async_message() { .ledger_changes .0 .get( - &Address::from_str("AS12DSPbsNvvdP1ScCivmKpbQfcJJ3tCQFkNb8ewkRuNjsgoL2AeQ") + &Address::from_str("AS127QtY6Hzm6BnJc9wqCBfPNvEH9fKer3LiMNNQmcX3MzLwCL6G6") .unwrap(), ) .unwrap() @@ -2203,7 +2203,9 @@ fn datastore_manipulations() { ], }); // Just checking that is works no asserts for now - universe.module_controller.get_addresses_infos(&[addr]); + universe + .module_controller + .get_addresses_infos(&[addr], std::ops::Bound::Unbounded); } /// This test checks causes a history rewrite in slot sequencing and ensures that emitted events match diff --git a/massa-execution-worker/src/tests/universe.rs b/massa-execution-worker/src/tests/universe.rs index beadb9798bb..5537484aa89 100644 --- a/massa-execution-worker/src/tests/universe.rs +++ b/massa-execution-worker/src/tests/universe.rs @@ -63,6 +63,7 @@ impl ExecutionForeignControllers { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( diff --git a/massa-factory-exports/Cargo.toml b/massa-factory-exports/Cargo.toml index 240ebbd017d..91d36fea327 100644 --- a/massa-factory-exports/Cargo.toml +++ b/massa-factory-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_factory_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-factory-worker/Cargo.toml b/massa-factory-worker/Cargo.toml index 8bb4838acb5..ad523d28c8e 100644 --- a/massa-factory-worker/Cargo.toml +++ b/massa-factory-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_factory_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-final-state/Cargo.toml b/massa-final-state/Cargo.toml index fefecf9bf76..3c08d67f0f4 100644 --- a/massa-final-state/Cargo.toml +++ b/massa-final-state/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_final_state" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-final-state/src/config.rs b/massa-final-state/src/config.rs index a48b0606f9e..49396734a91 100644 --- a/massa-final-state/src/config.rs +++ b/massa-final-state/src/config.rs @@ -43,4 +43,6 @@ pub struct FinalStateConfig { pub t0: MassaTime, /// TODO pub genesis_timestamp: MassaTime, + /// Interval of periods between creation of each ledger backup + pub ledger_backup_periods_interval: u64, } diff --git a/massa-final-state/src/final_state.rs b/massa-final-state/src/final_state.rs index 97930b4f9fa..cb7f2cda116 100644 --- a/massa-final-state/src/final_state.rs +++ b/massa-final-state/src/final_state.rs @@ -23,14 +23,11 @@ use massa_ledger_exports::LedgerController; use massa_ledger_exports::SetOrKeep; use massa_models::operation::OperationId; use massa_models::slot::Slot; +use massa_models::timeslots::get_block_slot_timestamp; use massa_pos_exports::{PoSFinalState, SelectorController}; use massa_versioning::versioning::MipStore; use tracing::{debug, info, warn}; -#[cfg(feature = "bootstrap_server")] -use massa_models::config::PERIODS_BETWEEN_BACKUPS; -use massa_models::timeslots::get_block_slot_timestamp; - /// Represents a final state `(ledger, async pool, executed_ops, executed_de and the state of the PoS)` pub struct FinalState { /// execution state configuration @@ -502,7 +499,10 @@ impl FinalState { // Backup DB if needed #[cfg(feature = "bootstrap_server")] - if slot.period % PERIODS_BETWEEN_BACKUPS == 0 && slot.period != 0 && slot.thread == 0 { + if slot.period % self.config.ledger_backup_periods_interval == 0 + && slot.period != 0 + && slot.thread == 0 + { let state_slot = self.db.read().get_change_id(); match state_slot { Ok(slot) => { @@ -1010,6 +1010,7 @@ mod test { max_executed_denunciations_length: MAX_DENUNCIATION_CHANGES_LENGTH, max_denunciations_per_block_header: MAX_DENUNCIATIONS_PER_BLOCK_HEADER, t0: T0, + ledger_backup_periods_interval: 10, genesis_timestamp, }; @@ -1028,6 +1029,7 @@ mod test { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> diff --git a/massa-final-state/src/lib.rs b/massa-final-state/src/lib.rs index ea24b8b8594..b11beb9825e 100644 --- a/massa-final-state/src/lib.rs +++ b/massa-final-state/src/lib.rs @@ -79,7 +79,7 @@ //! //! By default, the network restarts from the state associated with the last final slot before the shutdown. //! However, we may sometimes want to recover from an earlier state (e.g. if an attacker stole 50% of all Massa, we want to restart with the state before the attack. -//! We use RocksDB checkpoint system to save the state at regular interval (see the `PERIODS_BETWEEN_BACKUPS` constant in `massa > massa-models > src > config > constants.rs`) +//! We use RocksDB checkpoint system to save the state at regular interval (see the `ledger_backup_periods_interval` in the `massa-node` config). //! Backups for `Slot {period, thread}` are stored in `massa > massa-node > storage > ledger > rocks_db_backup > backup_[period]_[thread]` //! Backups are hard links of the rocks_db, so the overhead of storing them should be minimal. //! To recover from a backup, simply replace the contents of the rocks_db folder by the contents of the target backup folder. diff --git a/massa-final-state/src/test_exports/config.rs b/massa-final-state/src/test_exports/config.rs index ef489b57e45..5321441ef96 100644 --- a/massa-final-state/src/test_exports/config.rs +++ b/massa-final-state/src/test_exports/config.rs @@ -91,6 +91,7 @@ impl Default for FinalStateConfig { max_denunciations_per_block_header: MAX_DENUNCIATIONS_PER_BLOCK_HEADER, t0: T0, genesis_timestamp: *GENESIS_TIMESTAMP, + ledger_backup_periods_interval: 100, } } } diff --git a/massa-final-state/src/test_exports/mock.rs b/massa-final-state/src/test_exports/mock.rs index 74c3fb1b061..741a2f27589 100644 --- a/massa-final-state/src/test_exports/mock.rs +++ b/massa-final-state/src/test_exports/mock.rs @@ -201,6 +201,7 @@ pub fn get_sample_state( max_denunciations_per_block_header: 0, t0: T0, genesis_timestamp: *GENESIS_TIMESTAMP, + ledger_backup_periods_interval: 10, }; let mut final_state = if last_start_period > 0 { diff --git a/massa-final-state/src/tests/scenarios.rs b/massa-final-state/src/tests/scenarios.rs index 7ac021e6608..0d862e30dd9 100644 --- a/massa-final-state/src/tests/scenarios.rs +++ b/massa-final-state/src/tests/scenarios.rs @@ -40,6 +40,7 @@ fn create_final_state(temp_dir: &TempDir, reset_final_state: bool) -> Arc @@ -92,6 +93,7 @@ fn create_final_state(temp_dir: &TempDir, reset_final_state: bool) -> Arc"] edition = "2021" diff --git a/massa-ledger-exports/Cargo.toml b/massa-ledger-exports/Cargo.toml index fb121269547..1166de62e5a 100644 --- a/massa-ledger-exports/Cargo.toml +++ b/massa-ledger-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_ledger_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-ledger-worker/Cargo.toml b/massa-ledger-worker/Cargo.toml index ff17a8a0de7..de718bc6cdb 100644 --- a/massa-ledger-worker/Cargo.toml +++ b/massa-ledger-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_ledger_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-ledger-worker/src/ledger_db.rs b/massa-ledger-worker/src/ledger_db.rs index 8bf446e154f..56886211cb3 100644 --- a/massa-ledger-worker/src/ledger_db.rs +++ b/massa-ledger-worker/src/ledger_db.rs @@ -600,6 +600,7 @@ mod tests { max_history_length: 10, max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, + max_ledger_backups: 10, thread_count: 32, }; diff --git a/massa-ledger-worker/src/test_exports/config.rs b/massa-ledger-worker/src/test_exports/config.rs index 31d1b418722..69b51d2b747 100644 --- a/massa-ledger-worker/src/test_exports/config.rs +++ b/massa-ledger-worker/src/test_exports/config.rs @@ -21,6 +21,7 @@ impl Default for FinalLedger { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = MassaDB::new(db_config); let db = LedgerDB::new( diff --git a/massa-logging/Cargo.toml b/massa-logging/Cargo.toml index 9cb3cd67f08..fbe4fa78292 100644 --- a/massa-logging/Cargo.toml +++ b/massa-logging/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_logging" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-metrics/Cargo.toml b/massa-metrics/Cargo.toml index bd7c9451391..0620f3ca201 100644 --- a/massa-metrics/Cargo.toml +++ b/massa-metrics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_metrics" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-models/Cargo.toml b/massa-models/Cargo.toml index f5dbb909a4d..f503de705d5 100644 --- a/massa-models/Cargo.toml +++ b/massa-models/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_models" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-models/src/config/constants.rs b/massa-models/src/config/constants.rs index 990075fe69f..ef2f33ee23c 100644 --- a/massa-models/src/config/constants.rs +++ b/massa-models/src/config/constants.rs @@ -51,7 +51,7 @@ lazy_static::lazy_static! { ) ) } else { - MassaTime::from_millis(1704289800000) // Wednesday, January 3, 2024 1:50:00 PM UTC + MassaTime::from_millis(1705312800000) // Monday, January 15, 2024 10:00:00 AM UTC }; /// TESTNET: time when the blockclique is ended. @@ -70,9 +70,9 @@ lazy_static::lazy_static! { /// node version pub static ref VERSION: Version = { if cfg!(feature = "sandbox") { - "SAND.28.3" + "SAND.2.1" } else { - "DEVN.28.3" + "MAIN.2.1" } .parse() .unwrap() @@ -148,10 +148,7 @@ pub const OPERATION_VALIDITY_PERIODS: u64 = 10; pub const KEEP_EXECUTED_HISTORY_EXTRA_PERIODS: u64 = 10; /// cycle duration in periods pub const PERIODS_PER_CYCLE: u64 = 128; -/// Number of periods between two backups -pub const PERIODS_BETWEEN_BACKUPS: u64 = 100 * PERIODS_PER_CYCLE; -/// Maximum number of backups to keep. If reached, will delete the oldest ones. -pub const MAX_BACKUPS_TO_KEEP: Option = Some(10); + /// Number of cycles saved in `PoSFinalState` /// /// 6 for PoS itself so we can check denuncations on selections at C-2 after a bootstrap diff --git a/massa-module-cache/Cargo.toml b/massa-module-cache/Cargo.toml index 7795c87cbe1..5bfe30f603e 100644 --- a/massa-module-cache/Cargo.toml +++ b/massa-module-cache/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_module_cache" -version = "28.3.0" +version = "2.1.0" edition = "2021" [features] diff --git a/massa-node/Cargo.toml b/massa-node/Cargo.toml index 71d443172a3..957853d3783 100644 --- a/massa-node/Cargo.toml +++ b/massa-node/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa-node" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-node/base_config/bootstrap_whitelist.json b/massa-node/base_config/bootstrap_whitelist.json index 0637a088a01..5793b574453 100644 --- a/massa-node/base_config/bootstrap_whitelist.json +++ b/massa-node/base_config/bootstrap_whitelist.json @@ -1 +1,11 @@ -[] \ No newline at end of file +[ + "149.202.86.103", + "149.202.89.125", + "158.69.120.215", + "158.69.23.120", + "198.27.74.5", + "51.75.60.228", + "2001:41d0:1004:67::", + "2001:41d0:a:7f7d::", + "2001:41d0:602:21e4::" +] \ No newline at end of file diff --git a/massa-node/base_config/config.toml b/massa-node/base_config/config.toml index b371cb6a690..798875dd871 100644 --- a/massa-node/base_config/config.toml +++ b/massa-node/base_config/config.toml @@ -37,6 +37,8 @@ enable_ws = false # whether to broadcast for blocks, endorsements and operations enable_broadcast = false + # deferred credits delta (in milliseconds) + deferred_credits_delta = 7776000000 # ~ 3 months (90×24×60×60×1000) in milliseconds [grpc] [grpc.public] @@ -185,6 +187,7 @@ client_certificate_path = "../massa-client/config/tls_private_client.pem" # client private key path client_private_key_path = "../massa-client/config/tls_private_client.key" + [execution] # max number of generated events kept in RAM max_final_events = 10000 @@ -228,6 +231,10 @@ final_history_length = 100 # path of the initial deferred credits file initial_deferred_credits_path = "base_config/deferred_credits.json" + # Interval of periods between creation of each ledger backup + ledger_backup_periods_interval = 100 + # Maximum number of ledger backup saved + max_ledger_backups = 100 [consensus] # max number of previously discarded blocks kept in RAM @@ -345,11 +352,16 @@ [bootstrap] # list of bootstrap (ip, node id) - bootstrap_list = [ - [ "149.202.84.7:31245", "N1kKfgrCveVnosUkxTzaBw5cf9f2cbTvK3R5Ssb2Pf76au8xwmH",], - [ "149.202.84.39:31245", "N12sNdL7YwSawpnJrk9XCWDjKbgfNamAobp62AX5qfkgpBkGh2wC",], - [ "37.187.156.118:31245", "N1NnuSW48GKGaYZamAVKXfXbbnt3StxWoHpYtBZSJvY9e8U1BTC",], - [ "149.202.65.130:31245", "N1DZb3ao8BEtdsYP1KYyWacpTENHDrQboxGaYDL4U8MQppaxvzo",], + bootstrap_list = [ + ["149.202.86.103:31245", "N16noomm9akwBSTkvhs4KX6kjbhVhYkLqrzneCwBdo2SUE8axHx"], + ["149.202.89.125:31245", "N12bYghvuhCuQ38iSAGQvKTb1iXtwzPZhNJLhWQPYcmgz8PDPAGo"], + ["158.69.120.215:31245", "N1jRVjMZK8ZEmUGxDbLgHv3BTeQy8wHnazKCdcpQy4sFxu9d8GW"], + ["158.69.23.120:31245", "N12B7LqdyVVBXr8TMygU28R7JYxUR2dsLLp63YXtH9XAR1R2NUrY"], + ["198.27.74.5:31245", "N1FoYxXoSC39ZamAvwi7srz3oRrJ8JC3EvRhcqXPCD7vaQZTHKV"], + ["51.75.60.228:31245", "N1nRDdGq7DFD7AvSz5pgAsXCvkcqoL5Xf3kHr8Yd3TTUgtBcBun"], + ["[2001:41d0:1004:67::]:31245", "N16noomm9akwBSTkvhs4KX6kjbhVhYkLqrzneCwBdo2SUE8axHx"], + ["[2001:41d0:a:7f7d::]:31245", "N12bYghvuhCuQ38iSAGQvKTb1iXtwzPZhNJLhWQPYcmgz8PDPAGo"], + ["[2001:41d0:602:21e4::]:31245", "N1nRDdGq7DFD7AvSz5pgAsXCvkcqoL5Xf3kHr8Yd3TTUgtBcBun"], ] # force the bootstrap protocol to use: "IPv4", "IPv6", or "Both". Defaults to using both protocols. bootstrap_protocol = "Both" @@ -427,4 +439,6 @@ # Dump final blocks (in grpc binary format) by activating the feature: --features dump-block [block_dump] - block_dump_folder_path = "dump/blocks" \ No newline at end of file + block_dump_folder_path = "dump/blocks" + # max number of blocks to keep in the dump folder + max_blocks = 2048000 \ No newline at end of file diff --git a/massa-node/base_config/deferred_credits.json b/massa-node/base_config/deferred_credits.json index 7a73a41bfdf..bbfd5aa3181 100644 --- a/massa-node/base_config/deferred_credits.json +++ b/massa-node/base_config/deferred_credits.json @@ -1,2 +1,1809132 @@ { + "AU112Bz7nqa9REzufdnH1mn7enYLVYasLQJceAhrZ9TopXhEoNzq": [ + { + "amount": "129.354808635", + "slot": { + "period": 109436, + "thread": 2 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 170451, + "thread": 2 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 485307, + "thread": 31 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 649894, + "thread": 28 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 659923, + "thread": 11 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 952834, + "thread": 17 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1129459, + "thread": 30 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1282349, + "thread": 15 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1349879, + "thread": 1 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1490151, + "thread": 11 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1805309, + "thread": 7 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 1905151, + "thread": 13 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2126808, + "thread": 27 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2255700, + "thread": 3 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2425433, + "thread": 5 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2519598, + "thread": 1 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2733160, + "thread": 25 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 2924588, + "thread": 15 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 3036891, + "thread": 7 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 3282008, + "thread": 0 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 3434250, + "thread": 24 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 3452569, + "thread": 13 + } + }, + { + "amount": "129.354808635", + "slot": { + "period": 3747704, + "thread": 11 + } + }, + { + "amount": "129.354808632", + "slot": { + "period": 3887377, + "thread": 26 + } + } + ], + "AU112PMUsYDVcCBBVBybuCewju6cxqvQ22U4Eb67wE6mJgqBXPNP": [ + { + "amount": "671.495222696", + "slot": { + "period": 106636, + "thread": 16 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 259102, + "thread": 4 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 382450, + "thread": 18 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 653153, + "thread": 2 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 788607, + "thread": 12 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 928626, + "thread": 29 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1110121, + "thread": 24 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1210899, + "thread": 10 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1418259, + "thread": 0 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1500454, + "thread": 3 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1716959, + "thread": 15 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 1907028, + "thread": 11 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2076460, + "thread": 15 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2188883, + "thread": 11 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2392388, + "thread": 27 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2517124, + "thread": 8 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2783969, + "thread": 2 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 2881652, + "thread": 30 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 3077805, + "thread": 13 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 3262203, + "thread": 8 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 3365133, + "thread": 4 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 3536431, + "thread": 23 + } + }, + { + "amount": "671.495222696", + "slot": { + "period": 3689052, + "thread": 12 + } + }, + { + "amount": "671.495222690", + "slot": { + "period": 3820931, + "thread": 27 + } + } + ], + "AU113ArftVQdR2vo9PN6iEYpcFuuuBM5izQvWqeb5agygSh3t95k": [ + { + "amount": "229.194803363", + "slot": { + "period": 65487, + "thread": 11 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 269651, + "thread": 15 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 345449, + "thread": 31 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 608297, + "thread": 19 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 817690, + "thread": 21 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 976212, + "thread": 17 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1036201, + "thread": 4 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1224131, + "thread": 7 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1326266, + "thread": 18 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1489905, + "thread": 11 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1661604, + "thread": 3 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 1969368, + "thread": 14 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2018394, + "thread": 26 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2188959, + "thread": 22 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2352692, + "thread": 13 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2508998, + "thread": 1 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2640686, + "thread": 10 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 2850097, + "thread": 4 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3058851, + "thread": 31 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3198550, + "thread": 23 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3416929, + "thread": 8 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3519715, + "thread": 6 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3778558, + "thread": 21 + } + }, + { + "amount": "229.194803363", + "slot": { + "period": 3922118, + "thread": 23 + } + } + ], + "AU11424F2aNEeXPLxm3Cm6Y5C9eQzB7aYVdG7sDYCWo6AQkpSSv7": [ + { + "amount": "296.275351663", + "slot": { + "period": 71596, + "thread": 21 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 263445, + "thread": 14 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 483526, + "thread": 22 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 577115, + "thread": 30 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 795461, + "thread": 1 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 977540, + "thread": 19 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1046847, + "thread": 5 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1212143, + "thread": 20 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1462542, + "thread": 17 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1555073, + "thread": 10 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1752839, + "thread": 25 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 1912216, + "thread": 15 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2013827, + "thread": 9 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2220863, + "thread": 21 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2314874, + "thread": 9 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2525560, + "thread": 19 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2713592, + "thread": 21 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 2851365, + "thread": 11 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 3064641, + "thread": 10 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 3267788, + "thread": 6 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 3340030, + "thread": 6 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 3513870, + "thread": 29 + } + }, + { + "amount": "296.275351663", + "slot": { + "period": 3652252, + "thread": 7 + } + }, + { + "amount": "296.275351672", + "slot": { + "period": 3926121, + "thread": 29 + } + } + ], + "AU114S3yaeGBC17QNGsnA6FpUJFQYrvTEa22eQBex4CbmU8SnV69": [ + { + "amount": "406.320152168", + "slot": { + "period": 49132, + "thread": 3 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 181685, + "thread": 30 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 391728, + "thread": 12 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 647656, + "thread": 30 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 688179, + "thread": 19 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 933292, + "thread": 5 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1093302, + "thread": 11 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1228846, + "thread": 30 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1439254, + "thread": 12 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1492995, + "thread": 21 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1782504, + "thread": 4 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 1906957, + "thread": 12 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2095305, + "thread": 18 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2216401, + "thread": 2 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2366315, + "thread": 14 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2522803, + "thread": 11 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2702847, + "thread": 22 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 2887249, + "thread": 21 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 3014968, + "thread": 30 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 3221068, + "thread": 21 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 3324474, + "thread": 27 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 3486059, + "thread": 3 + } + }, + { + "amount": "406.320152168", + "slot": { + "period": 3732654, + "thread": 26 + } + }, + { + "amount": "406.320152157", + "slot": { + "period": 3885159, + "thread": 30 + } + } + ], + "AU114YEi6M3nFespArQGyRUW3FsPbLHhbpdrxvggTqH3Vt1uHBET": [ + { + "amount": "360.041870431", + "slot": { + "period": 49697, + "thread": 8 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 278911, + "thread": 2 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 473745, + "thread": 30 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 578735, + "thread": 0 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 765525, + "thread": 7 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 955542, + "thread": 20 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1079605, + "thread": 24 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1167408, + "thread": 17 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1409086, + "thread": 6 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1572123, + "thread": 10 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1694169, + "thread": 28 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 1888655, + "thread": 9 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2122168, + "thread": 2 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2157348, + "thread": 21 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2388053, + "thread": 18 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2496527, + "thread": 9 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2726702, + "thread": 9 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 2823090, + "thread": 30 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 3055991, + "thread": 19 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 3251745, + "thread": 9 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 3418816, + "thread": 14 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 3460638, + "thread": 6 + } + }, + { + "amount": "360.041870431", + "slot": { + "period": 3684982, + "thread": 3 + } + }, + { + "amount": "360.041870432", + "slot": { + "period": 3939064, + "thread": 19 + } + } + ], + "AU115R1cyTsiY25Kxb5q8yznsjAq1eexa6dQRbrLXY9HPykQrYRt": [ + { + "amount": "163.827165450", + "slot": { + "period": 114233, + "thread": 22 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 307973, + "thread": 23 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 343613, + "thread": 28 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 524643, + "thread": 31 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 766741, + "thread": 22 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 908969, + "thread": 13 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1095770, + "thread": 31 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1312774, + "thread": 0 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1472414, + "thread": 28 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1585278, + "thread": 29 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1775046, + "thread": 6 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 1888596, + "thread": 8 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2112364, + "thread": 25 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2264514, + "thread": 26 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2349795, + "thread": 12 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2505232, + "thread": 11 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2739532, + "thread": 11 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 2814480, + "thread": 29 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 3078573, + "thread": 12 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 3231024, + "thread": 12 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 3335178, + "thread": 5 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 3610550, + "thread": 6 + } + }, + { + "amount": "163.827165450", + "slot": { + "period": 3628662, + "thread": 8 + } + }, + { + "amount": "163.827165458", + "slot": { + "period": 3935290, + "thread": 21 + } + } + ], + "AU115bAiRmum3MYuBLdAMKkTGpjZdSNatuMeBfRah4DV8RpPHMPw": [ + { + "amount": "345.532707099", + "slot": { + "period": 151912, + "thread": 4 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 209230, + "thread": 6 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 449755, + "thread": 9 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 607301, + "thread": 24 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 697579, + "thread": 20 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 875941, + "thread": 13 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1026002, + "thread": 10 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1231341, + "thread": 19 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1340426, + "thread": 15 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1626611, + "thread": 22 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1704478, + "thread": 2 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 1956605, + "thread": 28 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2020378, + "thread": 24 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2240733, + "thread": 19 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2349424, + "thread": 23 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2510435, + "thread": 19 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2681214, + "thread": 4 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2917907, + "thread": 19 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 2981956, + "thread": 22 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 3248401, + "thread": 7 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 3366659, + "thread": 5 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 3505064, + "thread": 9 + } + }, + { + "amount": "345.532707099", + "slot": { + "period": 3742156, + "thread": 9 + } + }, + { + "amount": "345.532707089", + "slot": { + "period": 3842187, + "thread": 4 + } + } + ], + "AU116wib3VLrksZCRGGrGwzYa4d5PtXcwvPJpj8jPJXNytbPAhNG": [ + { + "amount": "57.005742173", + "slot": { + "period": 54634, + "thread": 24 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 217304, + "thread": 17 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 432248, + "thread": 8 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 504949, + "thread": 13 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 670231, + "thread": 15 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 929233, + "thread": 10 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1025086, + "thread": 2 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1316077, + "thread": 31 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1347349, + "thread": 26 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1552440, + "thread": 27 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1654726, + "thread": 10 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 1915601, + "thread": 15 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2039055, + "thread": 20 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2246162, + "thread": 1 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2331361, + "thread": 23 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2527086, + "thread": 3 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2626497, + "thread": 11 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 2953635, + "thread": 29 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 3097636, + "thread": 31 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 3281301, + "thread": 4 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 3430212, + "thread": 20 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 3462420, + "thread": 28 + } + }, + { + "amount": "57.005742173", + "slot": { + "period": 3626325, + "thread": 14 + } + }, + { + "amount": "57.005742182", + "slot": { + "period": 3866978, + "thread": 30 + } + } + ], + "AU117jgzeeTmwiZPshn9mSSHeePfQ9dxhiyh21nxCJwpKFHaMpgd": [ + { + "amount": "54.678092359", + "slot": { + "period": 105568, + "thread": 13 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 222951, + "thread": 17 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 424932, + "thread": 9 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 559217, + "thread": 4 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 680923, + "thread": 16 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 821129, + "thread": 8 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1002044, + "thread": 11 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1255361, + "thread": 7 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1476080, + "thread": 6 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1544617, + "thread": 12 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1732122, + "thread": 25 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 1936723, + "thread": 10 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2137053, + "thread": 3 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2246378, + "thread": 18 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2328802, + "thread": 27 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2468212, + "thread": 23 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2773945, + "thread": 2 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 2811622, + "thread": 13 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 3113044, + "thread": 21 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 3169164, + "thread": 4 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 3446259, + "thread": 3 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 3547516, + "thread": 9 + } + }, + { + "amount": "54.678092359", + "slot": { + "period": 3639022, + "thread": 19 + } + }, + { + "amount": "54.678092366", + "slot": { + "period": 3881593, + "thread": 22 + } + } + ], + "AU118khuGCs1VdknNp8cAPEPMnwP3WhbEErUeUauVFUFPSq8gYph": [ + { + "amount": "450.172988878", + "slot": { + "period": 22900, + "thread": 6 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 236046, + "thread": 12 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 352919, + "thread": 23 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 640774, + "thread": 26 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 677443, + "thread": 31 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 833628, + "thread": 1 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1122076, + "thread": 18 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1179078, + "thread": 19 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1341970, + "thread": 8 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1499912, + "thread": 16 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1725223, + "thread": 12 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 1874578, + "thread": 7 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2108966, + "thread": 27 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2187930, + "thread": 16 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2394600, + "thread": 3 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2620970, + "thread": 19 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2769323, + "thread": 21 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2890908, + "thread": 21 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 2973020, + "thread": 28 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 3194028, + "thread": 21 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 3302166, + "thread": 11 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 3462404, + "thread": 12 + } + }, + { + "amount": "450.172988878", + "slot": { + "period": 3765939, + "thread": 6 + } + }, + { + "amount": "450.172988881", + "slot": { + "period": 3848932, + "thread": 23 + } + } + ], + "AU1194wg4FGDzz8gBqYWju3BRsScRb7ATfnL9c1J5XRkpvKpDdvF": [ + { + "amount": "155.302976532", + "slot": { + "period": 79775, + "thread": 4 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 187021, + "thread": 3 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 433974, + "thread": 6 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 637599, + "thread": 23 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 819938, + "thread": 25 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 946082, + "thread": 20 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1009820, + "thread": 18 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1265455, + "thread": 21 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1443212, + "thread": 5 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1564031, + "thread": 14 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1655601, + "thread": 17 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 1891197, + "thread": 0 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2086738, + "thread": 2 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2283281, + "thread": 23 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2366368, + "thread": 4 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2587746, + "thread": 11 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2730280, + "thread": 20 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2892051, + "thread": 22 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 2994279, + "thread": 30 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 3249825, + "thread": 10 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 3298985, + "thread": 14 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 3493724, + "thread": 7 + } + }, + { + "amount": "155.302976532", + "slot": { + "period": 3702058, + "thread": 20 + } + }, + { + "amount": "155.302976544", + "slot": { + "period": 3800008, + "thread": 18 + } + } + ], + "AU119XZzBPftgcMKiYGNomDk6DxDXPbZc5WbJVRURTbrjcEU6W4m": [ + { + "amount": "99.501272348", + "slot": { + "period": 129351, + "thread": 4 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 182284, + "thread": 25 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 350193, + "thread": 24 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 563357, + "thread": 9 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 787924, + "thread": 1 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 975746, + "thread": 6 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1127740, + "thread": 1 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1243405, + "thread": 2 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1370378, + "thread": 30 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1609502, + "thread": 22 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1698107, + "thread": 22 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 1832109, + "thread": 21 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2017037, + "thread": 26 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2230660, + "thread": 7 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2354305, + "thread": 4 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2464284, + "thread": 15 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2643582, + "thread": 3 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 2899019, + "thread": 24 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 3006456, + "thread": 5 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 3261278, + "thread": 13 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 3360306, + "thread": 9 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 3558316, + "thread": 6 + } + }, + { + "amount": "99.501272348", + "slot": { + "period": 3709020, + "thread": 9 + } + }, + { + "amount": "99.501272339", + "slot": { + "period": 3873928, + "thread": 10 + } + } + ], + "AU11AtnU2cdUcCx7vUmKYRFHKSiLmNzL26D7NuYJXMZhiTcXEqdi": [ + { + "amount": "401.943437271", + "slot": { + "period": 90167, + "thread": 20 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 304147, + "thread": 18 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 477010, + "thread": 3 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 651512, + "thread": 7 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 682688, + "thread": 30 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 969557, + "thread": 27 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 989233, + "thread": 30 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 1152906, + "thread": 17 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 1358797, + "thread": 5 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 1571605, + "thread": 26 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 1764322, + "thread": 8 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 1907355, + "thread": 14 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2085997, + "thread": 29 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2235080, + "thread": 5 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2340834, + "thread": 26 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2479810, + "thread": 24 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2765398, + "thread": 16 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 2914487, + "thread": 11 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 3086063, + "thread": 8 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 3281009, + "thread": 2 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 3312219, + "thread": 16 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 3532412, + "thread": 15 + } + }, + { + "amount": "401.943437271", + "slot": { + "period": 3769140, + "thread": 11 + } + }, + { + "amount": "401.943437275", + "slot": { + "period": 3872696, + "thread": 27 + } + } + ], + "AU11B9KsmCote3oFHB7RmL2rEfVKqPAUZmpctTdVWxCUFz3mFSFH": [ + { + "amount": "122.136535474", + "slot": { + "period": 87587, + "thread": 22 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 197510, + "thread": 6 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 404790, + "thread": 0 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 507591, + "thread": 15 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 690629, + "thread": 9 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 900776, + "thread": 26 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1011873, + "thread": 0 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1237941, + "thread": 22 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1424242, + "thread": 4 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1574444, + "thread": 29 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1735094, + "thread": 9 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 1867500, + "thread": 30 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2135068, + "thread": 28 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2184698, + "thread": 9 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2300317, + "thread": 26 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2550071, + "thread": 17 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2780287, + "thread": 16 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 2921196, + "thread": 14 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 3103921, + "thread": 31 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 3245686, + "thread": 12 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 3321987, + "thread": 1 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 3617824, + "thread": 10 + } + }, + { + "amount": "122.136535474", + "slot": { + "period": 3638480, + "thread": 4 + } + }, + { + "amount": "122.136535463", + "slot": { + "period": 3790119, + "thread": 25 + } + } + ], + "AU11CGqG4tkpFqQzv58sY3xXVMQP4hE4fM37uJVBFxMNbbRLBf2D": [ + { + "amount": "88.668523777", + "slot": { + "period": 12953, + "thread": 23 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 316372, + "thread": 15 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 422360, + "thread": 23 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 504423, + "thread": 3 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 816177, + "thread": 31 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 885748, + "thread": 20 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1083341, + "thread": 15 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1223811, + "thread": 1 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1365657, + "thread": 12 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1578919, + "thread": 6 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1664487, + "thread": 17 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1816413, + "thread": 12 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 1978901, + "thread": 3 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 2286717, + "thread": 15 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 2322314, + "thread": 23 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 2482103, + "thread": 20 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 2767459, + "thread": 5 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 2801288, + "thread": 13 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 3099921, + "thread": 4 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 3253895, + "thread": 19 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 3295801, + "thread": 13 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 3478926, + "thread": 28 + } + }, + { + "amount": "88.668523777", + "slot": { + "period": 3686598, + "thread": 22 + } + }, + { + "amount": "88.668523788", + "slot": { + "period": 3899220, + "thread": 28 + } + } + ], + "AU11CsUvvihHpPBH8rnZTWEWhAEHuecAxKAN1qYn2jphCpFRmBZD": [ + { + "amount": "193.291176339", + "slot": { + "period": 14533, + "thread": 15 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 296844, + "thread": 18 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 417462, + "thread": 24 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 559700, + "thread": 19 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 657033, + "thread": 8 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 890803, + "thread": 14 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1005354, + "thread": 20 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1212388, + "thread": 5 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1396591, + "thread": 1 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1581472, + "thread": 22 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1749281, + "thread": 9 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 1926980, + "thread": 16 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2108416, + "thread": 21 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2149458, + "thread": 11 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2372596, + "thread": 12 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2484129, + "thread": 4 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2643657, + "thread": 2 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 2801147, + "thread": 13 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 3081330, + "thread": 28 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 3232064, + "thread": 5 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 3348031, + "thread": 10 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 3564088, + "thread": 4 + } + }, + { + "amount": "193.291176339", + "slot": { + "period": 3756683, + "thread": 20 + } + }, + { + "amount": "193.291176334", + "slot": { + "period": 3820199, + "thread": 18 + } + } + ], + "AU11CsnhkzaaKfbFc7bAy1MmyPnY32mZYeWX7zg7fGuYw833S96h": [ + { + "amount": "437.277070025", + "slot": { + "period": 71092, + "thread": 25 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 236494, + "thread": 29 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 439693, + "thread": 21 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 507748, + "thread": 22 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 678049, + "thread": 18 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 904762, + "thread": 5 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1113307, + "thread": 29 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1204371, + "thread": 14 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1361957, + "thread": 10 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1480352, + "thread": 8 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1680958, + "thread": 23 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1961125, + "thread": 8 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 1978083, + "thread": 28 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 2165797, + "thread": 21 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 2364885, + "thread": 15 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 2570789, + "thread": 4 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 2669107, + "thread": 28 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 2857147, + "thread": 11 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 3105168, + "thread": 26 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 3194267, + "thread": 31 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 3447328, + "thread": 3 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 3485972, + "thread": 5 + } + }, + { + "amount": "437.277070025", + "slot": { + "period": 3646579, + "thread": 3 + } + }, + { + "amount": "437.277070020", + "slot": { + "period": 3825178, + "thread": 21 + } + } + ], + "AU11D4sYU14YpH7wy6rjGS7k6GF4Wxf2D7vESLLZR77vEjTLqFWv": [ + { + "amount": "619.710272447", + "slot": { + "period": 52065, + "thread": 29 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 323362, + "thread": 17 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 467389, + "thread": 26 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 619844, + "thread": 19 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 724129, + "thread": 14 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 982253, + "thread": 9 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1128913, + "thread": 31 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1236416, + "thread": 18 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1472947, + "thread": 18 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1593641, + "thread": 27 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1773361, + "thread": 28 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 1947204, + "thread": 8 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2090800, + "thread": 6 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2161760, + "thread": 0 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2423656, + "thread": 15 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2519236, + "thread": 8 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2668928, + "thread": 22 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 2844404, + "thread": 17 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 3089604, + "thread": 0 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 3230043, + "thread": 11 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 3406510, + "thread": 17 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 3527830, + "thread": 19 + } + }, + { + "amount": "619.710272447", + "slot": { + "period": 3623016, + "thread": 9 + } + }, + { + "amount": "619.710272438", + "slot": { + "period": 3910928, + "thread": 4 + } + } + ], + "AU11Fk7bUBnEPoZocX1CubU6zycQFpzh7nsQpkxvRUEM28fnyvs3": [ + { + "amount": "94.967826696", + "slot": { + "period": 131889, + "thread": 26 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 272102, + "thread": 21 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 428334, + "thread": 29 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 552165, + "thread": 19 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 794687, + "thread": 2 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 849670, + "thread": 15 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1066983, + "thread": 18 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1306028, + "thread": 13 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1463466, + "thread": 29 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1489112, + "thread": 23 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1803818, + "thread": 12 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 1867760, + "thread": 7 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2113837, + "thread": 18 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2196084, + "thread": 5 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2297076, + "thread": 26 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2475650, + "thread": 30 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2718603, + "thread": 8 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 2883896, + "thread": 13 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 3072747, + "thread": 24 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 3214874, + "thread": 22 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 3295416, + "thread": 11 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 3611662, + "thread": 9 + } + }, + { + "amount": "94.967826696", + "slot": { + "period": 3702428, + "thread": 21 + } + }, + { + "amount": "94.967826706", + "slot": { + "period": 3797455, + "thread": 15 + } + } + ], + "AU11FnCC6CwsCNWMCJ1iaAd8rhR65ZNa5wvnisJF5Yxzom81EZWj": [ + { + "amount": "82.641924611", + "slot": { + "period": 45701, + "thread": 31 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 305864, + "thread": 10 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 354014, + "thread": 18 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 502019, + "thread": 6 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 748344, + "thread": 2 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 964148, + "thread": 25 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1030070, + "thread": 1 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1242992, + "thread": 4 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1398371, + "thread": 11 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1498351, + "thread": 1 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1721543, + "thread": 8 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 1953265, + "thread": 28 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2081441, + "thread": 19 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2166531, + "thread": 5 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2376783, + "thread": 30 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2611318, + "thread": 31 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2707004, + "thread": 19 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2948114, + "thread": 18 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 2974004, + "thread": 1 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 3247065, + "thread": 18 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 3332473, + "thread": 4 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 3451496, + "thread": 24 + } + }, + { + "amount": "82.641924611", + "slot": { + "period": 3634788, + "thread": 29 + } + }, + { + "amount": "82.641924614", + "slot": { + "period": 3858907, + "thread": 15 + } + } + ], + "AU11HDCgvzkToH1f4nqTY5KbQFbhgziQ14Hqvou9GJ59uDA9BKJt": [ + { + "amount": "417.802774237", + "slot": { + "period": 62338, + "thread": 6 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 285952, + "thread": 18 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 357605, + "thread": 1 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 528749, + "thread": 30 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 660527, + "thread": 20 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 857299, + "thread": 29 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 984468, + "thread": 26 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 1224303, + "thread": 21 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 1474417, + "thread": 17 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 1591421, + "thread": 25 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 1745159, + "thread": 1 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 1814638, + "thread": 23 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2073302, + "thread": 27 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2254150, + "thread": 3 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2328522, + "thread": 14 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2475395, + "thread": 8 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2783986, + "thread": 20 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 2794882, + "thread": 17 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 3000223, + "thread": 7 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 3121911, + "thread": 3 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 3345533, + "thread": 22 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 3616696, + "thread": 26 + } + }, + { + "amount": "417.802774237", + "slot": { + "period": 3670111, + "thread": 12 + } + }, + { + "amount": "417.802774244", + "slot": { + "period": 3909445, + "thread": 11 + } + } + ], + "AU11HDySMAbnNgDGm3KxzLxahXgSu519yLDTTFHQKQRAL3FveoxL": [ + { + "amount": "128.991996590", + "slot": { + "period": 92248, + "thread": 17 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 182895, + "thread": 10 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 370475, + "thread": 28 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 534523, + "thread": 22 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 714225, + "thread": 22 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 836878, + "thread": 23 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1028848, + "thread": 14 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1211891, + "thread": 4 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1330421, + "thread": 10 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1519073, + "thread": 23 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1806604, + "thread": 8 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 1830993, + "thread": 3 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2112296, + "thread": 18 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2181845, + "thread": 21 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2393199, + "thread": 26 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2560846, + "thread": 19 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2766044, + "thread": 26 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2884323, + "thread": 30 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 2953893, + "thread": 2 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 3150111, + "thread": 18 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 3331247, + "thread": 28 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 3510372, + "thread": 9 + } + }, + { + "amount": "128.991996590", + "slot": { + "period": 3745222, + "thread": 17 + } + }, + { + "amount": "128.991996587", + "slot": { + "period": 3936825, + "thread": 19 + } + } + ], + "AU11HKB3BGka9VdgZuS9dZYwjjx6LgYxveRpKKxU4UHcRCVjsXCG": [ + { + "amount": "116.708162469", + "slot": { + "period": 93523, + "thread": 31 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 254327, + "thread": 30 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 366839, + "thread": 5 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 539440, + "thread": 13 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 741301, + "thread": 10 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 952827, + "thread": 0 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1051912, + "thread": 19 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1313416, + "thread": 21 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1421969, + "thread": 0 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1595463, + "thread": 29 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1798197, + "thread": 1 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 1960096, + "thread": 10 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2011835, + "thread": 27 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2226482, + "thread": 24 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2440853, + "thread": 1 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2473093, + "thread": 16 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2738960, + "thread": 19 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 2882483, + "thread": 7 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 3004888, + "thread": 2 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 3262731, + "thread": 16 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 3323835, + "thread": 12 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 3476493, + "thread": 12 + } + }, + { + "amount": "116.708162469", + "slot": { + "period": 3700417, + "thread": 5 + } + }, + { + "amount": "116.708162459", + "slot": { + "period": 3828637, + "thread": 1 + } + } + ], + "AU11KZhvANpqVoHEnggTUrNdy1hoQh9HGaYNMwb318UqCsprGavr": [ + { + "amount": "53.936713424", + "slot": { + "period": 81807, + "thread": 24 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 220807, + "thread": 28 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 345739, + "thread": 31 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 601965, + "thread": 3 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 687542, + "thread": 18 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 946068, + "thread": 8 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1094812, + "thread": 6 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1234840, + "thread": 5 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1395419, + "thread": 12 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1523511, + "thread": 24 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1804779, + "thread": 17 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 1852789, + "thread": 16 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2008854, + "thread": 0 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2294788, + "thread": 18 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2368322, + "thread": 20 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2621366, + "thread": 6 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2768645, + "thread": 14 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 2812667, + "thread": 10 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 3111999, + "thread": 13 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 3136701, + "thread": 6 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 3342466, + "thread": 17 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 3489783, + "thread": 31 + } + }, + { + "amount": "53.936713424", + "slot": { + "period": 3670613, + "thread": 12 + } + }, + { + "amount": "53.936713434", + "slot": { + "period": 3820446, + "thread": 31 + } + } + ], + "AU11KbX7VV8XCBk9DjiqB7HS229eSJs4LVrt6LHzCCTXXbeSKncF": [ + { + "amount": "165.083600421", + "slot": { + "period": 58292, + "thread": 11 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 290478, + "thread": 24 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 339197, + "thread": 28 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 577758, + "thread": 0 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 770784, + "thread": 26 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 913371, + "thread": 18 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1026364, + "thread": 20 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1174237, + "thread": 6 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1347959, + "thread": 16 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1625269, + "thread": 26 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1652296, + "thread": 13 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1896496, + "thread": 2 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 1984585, + "thread": 3 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2269173, + "thread": 4 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2304891, + "thread": 1 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2593139, + "thread": 29 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2646263, + "thread": 31 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2909949, + "thread": 22 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 2980424, + "thread": 27 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 3261177, + "thread": 9 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 3312129, + "thread": 6 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 3507287, + "thread": 18 + } + }, + { + "amount": "165.083600421", + "slot": { + "period": 3760333, + "thread": 12 + } + }, + { + "amount": "165.083600430", + "slot": { + "period": 3790569, + "thread": 13 + } + } + ], + "AU11KhiYDDEMuak1QitehQ3uWfDKmMYfHSnS1aZHiGcyVhS8q4hf": [ + { + "amount": "206.479161066", + "slot": { + "period": 105338, + "thread": 3 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 314242, + "thread": 27 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 433904, + "thread": 20 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 510089, + "thread": 4 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 686490, + "thread": 5 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 832758, + "thread": 15 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1051569, + "thread": 11 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1262657, + "thread": 17 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1401562, + "thread": 8 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1564439, + "thread": 29 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1769308, + "thread": 4 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 1830549, + "thread": 26 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2133911, + "thread": 18 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2244866, + "thread": 23 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2298658, + "thread": 25 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2533624, + "thread": 9 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2633803, + "thread": 13 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2952793, + "thread": 0 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 2985330, + "thread": 13 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 3183887, + "thread": 9 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 3311862, + "thread": 9 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 3495025, + "thread": 27 + } + }, + { + "amount": "206.479161066", + "slot": { + "period": 3618022, + "thread": 5 + } + }, + { + "amount": "206.479161059", + "slot": { + "period": 3890861, + "thread": 10 + } + } + ], + "AU11LD4g4caR2V8cKP2WPCoYv9iXKx3TzKNS2PrnhBu64AGQSSaR": [ + { + "amount": "516.239436373", + "slot": { + "period": 72563, + "thread": 25 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 228737, + "thread": 14 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 345086, + "thread": 30 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 582460, + "thread": 1 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 777247, + "thread": 12 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 895867, + "thread": 9 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1067571, + "thread": 9 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1314783, + "thread": 4 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1471698, + "thread": 8 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1615510, + "thread": 31 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1729203, + "thread": 12 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 1866159, + "thread": 26 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2056587, + "thread": 13 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2208077, + "thread": 17 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2296339, + "thread": 8 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2610201, + "thread": 25 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2729409, + "thread": 25 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2865450, + "thread": 17 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 2988844, + "thread": 23 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 3140666, + "thread": 10 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 3350121, + "thread": 4 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 3508257, + "thread": 22 + } + }, + { + "amount": "516.239436373", + "slot": { + "period": 3635114, + "thread": 31 + } + }, + { + "amount": "516.239436378", + "slot": { + "period": 3814821, + "thread": 0 + } + } + ], + "AU11LXGkByun4quntNwqQan77NUsZLHommJtK1UYuAVGfmKN5d8c": [ + { + "amount": "245.429973573", + "slot": { + "period": 68728, + "thread": 7 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 242757, + "thread": 13 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 336866, + "thread": 19 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 521927, + "thread": 15 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 721054, + "thread": 8 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 873018, + "thread": 7 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1080695, + "thread": 20 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1231740, + "thread": 7 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1377498, + "thread": 6 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1506817, + "thread": 28 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1776603, + "thread": 18 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 1899776, + "thread": 31 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2112991, + "thread": 18 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2265183, + "thread": 10 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2456427, + "thread": 6 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2605092, + "thread": 16 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2665019, + "thread": 17 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 2900347, + "thread": 28 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 3070184, + "thread": 23 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 3264513, + "thread": 26 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 3357226, + "thread": 4 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 3548514, + "thread": 20 + } + }, + { + "amount": "245.429973573", + "slot": { + "period": 3771047, + "thread": 3 + } + }, + { + "amount": "245.429973571", + "slot": { + "period": 3883354, + "thread": 31 + } + } + ], + "AU11LnnUtY8q19Q1pcng7JtbvjsmYsAt5DtbyG3LHkg9C74ybQ7s": [ + { + "amount": "105.460174685", + "slot": { + "period": 157581, + "thread": 14 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 204085, + "thread": 29 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 424264, + "thread": 13 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 575296, + "thread": 31 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 683276, + "thread": 14 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 932325, + "thread": 2 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1126603, + "thread": 10 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1309962, + "thread": 16 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1367825, + "thread": 6 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1635895, + "thread": 16 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1712861, + "thread": 21 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 1964993, + "thread": 0 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2124899, + "thread": 16 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2235443, + "thread": 6 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2413539, + "thread": 23 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2607027, + "thread": 0 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2634130, + "thread": 26 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2800471, + "thread": 17 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 2960049, + "thread": 20 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 3124477, + "thread": 5 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 3303256, + "thread": 0 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 3523245, + "thread": 28 + } + }, + { + "amount": "105.460174685", + "slot": { + "period": 3714508, + "thread": 26 + } + }, + { + "amount": "105.460174692", + "slot": { + "period": 3823218, + "thread": 24 + } + } + ], + "AU11MNBKwpNvd3UnaoywR4uoZGAAxRLTY4Nbh1ktHRed29t42zZM": [ + { + "amount": "77.034479167", + "slot": { + "period": 132984, + "thread": 23 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 231873, + "thread": 27 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 434436, + "thread": 7 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 536274, + "thread": 5 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 696118, + "thread": 25 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 836621, + "thread": 21 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1015715, + "thread": 14 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1242243, + "thread": 5 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1458975, + "thread": 8 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1534609, + "thread": 3 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1737841, + "thread": 17 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1857746, + "thread": 5 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 1978376, + "thread": 14 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 2244382, + "thread": 9 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 2388128, + "thread": 27 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 2568790, + "thread": 21 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 2738015, + "thread": 18 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 2914514, + "thread": 21 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 3062130, + "thread": 1 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 3227995, + "thread": 31 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 3392535, + "thread": 1 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 3459318, + "thread": 23 + } + }, + { + "amount": "77.034479167", + "slot": { + "period": 3719218, + "thread": 2 + } + }, + { + "amount": "77.034479166", + "slot": { + "period": 3944484, + "thread": 0 + } + } + ], + "AU11MUBgbPbQXsmj78dDrPBr9FQ78o7YMKydySXZoXhsXYhshGaw": [ + { + "amount": "335.001249813", + "slot": { + "period": 89665, + "thread": 5 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 275126, + "thread": 0 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 359022, + "thread": 27 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 534101, + "thread": 23 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 731009, + "thread": 16 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 823164, + "thread": 24 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1021389, + "thread": 29 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1234378, + "thread": 20 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1329618, + "thread": 28 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1562325, + "thread": 24 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1672416, + "thread": 12 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 1968037, + "thread": 28 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2122053, + "thread": 8 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2262803, + "thread": 11 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2423544, + "thread": 29 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2601650, + "thread": 9 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2784847, + "thread": 10 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 2863141, + "thread": 20 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 3022438, + "thread": 28 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 3166978, + "thread": 29 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 3350993, + "thread": 13 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 3542141, + "thread": 17 + } + }, + { + "amount": "335.001249813", + "slot": { + "period": 3707114, + "thread": 8 + } + }, + { + "amount": "335.001249808", + "slot": { + "period": 3945045, + "thread": 25 + } + } + ], + "AU11Md7sEedNpfpGYTTVRgc5JiHV8tWGaK4yZStT9K1pbTjEtwjX": [ + { + "amount": "123.634143909", + "slot": { + "period": 62826, + "thread": 10 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 177277, + "thread": 14 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 488338, + "thread": 0 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 603159, + "thread": 18 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 743361, + "thread": 29 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 899074, + "thread": 10 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 998388, + "thread": 11 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 1233959, + "thread": 28 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 1441283, + "thread": 31 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 1503492, + "thread": 28 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 1725618, + "thread": 1 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 1845108, + "thread": 3 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2099588, + "thread": 27 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2152121, + "thread": 25 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2395208, + "thread": 17 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2552009, + "thread": 22 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2711990, + "thread": 21 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2900180, + "thread": 20 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 2994213, + "thread": 22 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 3192139, + "thread": 8 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 3352834, + "thread": 18 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 3517400, + "thread": 14 + } + }, + { + "amount": "123.634143909", + "slot": { + "period": 3732305, + "thread": 28 + } + }, + { + "amount": "123.634143907", + "slot": { + "period": 3890195, + "thread": 21 + } + } + ], + "AU11MfNkjzCdKQ2RDFMTfLoNojoBkCUJULSuNYXy99qczQvQLm5A": [ + { + "amount": "99.259777450", + "slot": { + "period": 125990, + "thread": 9 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 323713, + "thread": 25 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 464990, + "thread": 11 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 597091, + "thread": 13 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 781742, + "thread": 26 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 841190, + "thread": 2 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1142220, + "thread": 25 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1243077, + "thread": 18 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1418224, + "thread": 22 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1502240, + "thread": 30 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1673658, + "thread": 20 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 1922091, + "thread": 0 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2030271, + "thread": 28 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2225566, + "thread": 30 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2420542, + "thread": 13 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2511552, + "thread": 19 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2713923, + "thread": 8 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2841120, + "thread": 4 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 2997667, + "thread": 18 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 3194526, + "thread": 17 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 3407778, + "thread": 3 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 3595035, + "thread": 24 + } + }, + { + "amount": "99.259777450", + "slot": { + "period": 3778300, + "thread": 15 + } + }, + { + "amount": "99.259777460", + "slot": { + "period": 3876571, + "thread": 23 + } + } + ], + "AU11MkVzkGxFgdfHFXtXNWSUXtYt4y4L6V41XD1UQAWPL3wQD3S1": [ + { + "amount": "124.060822847", + "slot": { + "period": 75535, + "thread": 2 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 285753, + "thread": 27 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 491136, + "thread": 18 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 631290, + "thread": 5 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 746961, + "thread": 30 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 825836, + "thread": 14 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1055181, + "thread": 28 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1153585, + "thread": 21 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1343344, + "thread": 24 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1480272, + "thread": 25 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1762117, + "thread": 27 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 1860915, + "thread": 9 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2071671, + "thread": 16 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2163303, + "thread": 31 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2359729, + "thread": 10 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2558958, + "thread": 21 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2633904, + "thread": 9 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 2817530, + "thread": 18 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 3038554, + "thread": 19 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 3217425, + "thread": 1 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 3385269, + "thread": 26 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 3550195, + "thread": 11 + } + }, + { + "amount": "124.060822847", + "slot": { + "period": 3729784, + "thread": 22 + } + }, + { + "amount": "124.060822854", + "slot": { + "period": 3919386, + "thread": 7 + } + } + ], + "AU11MtVBM1k1PMrX1aNPwszfK2C4hH3wrEQM9wZKuvLjw9JYBxH6": [ + { + "amount": "133.603894961", + "slot": { + "period": 101336, + "thread": 29 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 219451, + "thread": 0 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 392199, + "thread": 27 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 512068, + "thread": 21 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 675082, + "thread": 7 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 894429, + "thread": 23 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1001566, + "thread": 11 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1182585, + "thread": 5 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1455258, + "thread": 13 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1645450, + "thread": 25 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1746391, + "thread": 10 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 1915291, + "thread": 6 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2139082, + "thread": 2 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2172463, + "thread": 26 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2375962, + "thread": 23 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2466291, + "thread": 11 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2652273, + "thread": 11 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 2822931, + "thread": 27 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 3054404, + "thread": 13 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 3130670, + "thread": 25 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 3335048, + "thread": 22 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 3600416, + "thread": 25 + } + }, + { + "amount": "133.603894961", + "slot": { + "period": 3690280, + "thread": 29 + } + }, + { + "amount": "133.603894954", + "slot": { + "period": 3912038, + "thread": 23 + } + } + ], + "AU11PLhuktK7uRoqZmi9SAVN5n3p8Xaj7KEUda3gsMTxdERyfqhJ": [ + { + "amount": "231.024302080", + "slot": { + "period": 163965, + "thread": 21 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 316444, + "thread": 7 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 423266, + "thread": 12 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 552439, + "thread": 14 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 744961, + "thread": 8 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 878514, + "thread": 26 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 999474, + "thread": 4 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 1253656, + "thread": 19 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 1411438, + "thread": 19 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 1513893, + "thread": 9 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 1801926, + "thread": 26 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 1919647, + "thread": 9 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2133340, + "thread": 2 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2196170, + "thread": 18 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2349528, + "thread": 15 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2516830, + "thread": 18 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2687929, + "thread": 5 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 2832946, + "thread": 22 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 3118870, + "thread": 4 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 3183103, + "thread": 30 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 3348475, + "thread": 30 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 3478342, + "thread": 29 + } + }, + { + "amount": "231.024302080", + "slot": { + "period": 3657791, + "thread": 18 + } + }, + { + "amount": "231.024302082", + "slot": { + "period": 3941638, + "thread": 13 + } + } + ], + "AU11PVWrQLgnmZxzjWXBwHMM9L1ACY7s7QmuGnhKPrG2wqfBjfiZ": [ + { + "amount": "269.428699458", + "slot": { + "period": 74005, + "thread": 1 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 198258, + "thread": 15 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 435808, + "thread": 9 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 549724, + "thread": 0 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 731581, + "thread": 25 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 846331, + "thread": 23 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1100168, + "thread": 6 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1228095, + "thread": 25 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1441149, + "thread": 1 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1492202, + "thread": 24 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1653002, + "thread": 11 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1925557, + "thread": 31 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 1999384, + "thread": 10 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2229327, + "thread": 12 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2413519, + "thread": 20 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2562743, + "thread": 10 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2667377, + "thread": 11 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2794416, + "thread": 12 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 2982197, + "thread": 9 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 3147453, + "thread": 26 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 3401468, + "thread": 7 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 3585340, + "thread": 17 + } + }, + { + "amount": "269.428699458", + "slot": { + "period": 3740714, + "thread": 19 + } + }, + { + "amount": "269.428699454", + "slot": { + "period": 3789563, + "thread": 21 + } + } + ], + "AU11PwVf65cLzzfKwDHX5SbWJgh9ThaSnFrbrTssRKTnBYwysEWB": [ + { + "amount": "127.442892725", + "slot": { + "period": 63127, + "thread": 2 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 267036, + "thread": 11 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 387775, + "thread": 31 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 646223, + "thread": 23 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 803870, + "thread": 19 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 876057, + "thread": 29 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1006666, + "thread": 12 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1265662, + "thread": 6 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1359626, + "thread": 6 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1517761, + "thread": 4 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1797973, + "thread": 4 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 1864141, + "thread": 7 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2070953, + "thread": 30 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2264666, + "thread": 3 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2428183, + "thread": 25 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2491313, + "thread": 2 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2678463, + "thread": 16 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 2888135, + "thread": 1 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 3042057, + "thread": 2 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 3261648, + "thread": 3 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 3290351, + "thread": 15 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 3530138, + "thread": 22 + } + }, + { + "amount": "127.442892725", + "slot": { + "period": 3768017, + "thread": 27 + } + }, + { + "amount": "127.442892726", + "slot": { + "period": 3878297, + "thread": 7 + } + } + ], + "AU11QtW6wwbqncfTfLkUiSUgAX9SFuN6Y5LVjbCEBmAtonQACBxk": [ + { + "amount": "314.184447556", + "slot": { + "period": 83790, + "thread": 11 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 312574, + "thread": 19 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 461942, + "thread": 4 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 553206, + "thread": 9 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 680168, + "thread": 0 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 968415, + "thread": 26 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 990084, + "thread": 0 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 1233764, + "thread": 24 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 1354082, + "thread": 18 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 1637205, + "thread": 31 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 1751116, + "thread": 15 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 1899083, + "thread": 22 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2049266, + "thread": 2 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2149417, + "thread": 17 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2377809, + "thread": 28 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2476396, + "thread": 29 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2629795, + "thread": 27 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 2808951, + "thread": 5 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 3062356, + "thread": 15 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 3143337, + "thread": 30 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 3399873, + "thread": 22 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 3497703, + "thread": 17 + } + }, + { + "amount": "314.184447556", + "slot": { + "period": 3667068, + "thread": 17 + } + }, + { + "amount": "314.184447567", + "slot": { + "period": 3846584, + "thread": 9 + } + } + ], + "AU11Qzp8kwLsDfQGLpE7Z9uP34jZ8osR53gJWDuoSiFUeepaew7B": [ + { + "amount": "200.195819623", + "slot": { + "period": 77647, + "thread": 28 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 178631, + "thread": 29 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 391777, + "thread": 22 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 578547, + "thread": 23 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 790963, + "thread": 16 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 951846, + "thread": 11 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1065609, + "thread": 21 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1310014, + "thread": 16 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1397132, + "thread": 23 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1499553, + "thread": 30 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1746075, + "thread": 29 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 1836034, + "thread": 22 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2017993, + "thread": 5 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2171997, + "thread": 11 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2405816, + "thread": 2 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2525619, + "thread": 4 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2682513, + "thread": 2 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 2937701, + "thread": 25 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 3092714, + "thread": 21 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 3176127, + "thread": 13 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 3333810, + "thread": 19 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 3611204, + "thread": 3 + } + }, + { + "amount": "200.195819623", + "slot": { + "period": 3701388, + "thread": 14 + } + }, + { + "amount": "200.195819632", + "slot": { + "period": 3867102, + "thread": 13 + } + } + ], + "AU11RD12Ku8mDboznpcez8zeNmjSz5np7ekJMzn6jtivi4aJ3psg": [ + { + "amount": "73.293820727", + "slot": { + "period": 104897, + "thread": 17 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 195913, + "thread": 22 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 364324, + "thread": 7 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 544604, + "thread": 3 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 819615, + "thread": 28 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 832829, + "thread": 27 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1088771, + "thread": 4 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1302120, + "thread": 17 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1477544, + "thread": 29 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1502883, + "thread": 11 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1741203, + "thread": 7 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1878223, + "thread": 1 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 1978962, + "thread": 22 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 2153625, + "thread": 25 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 2356963, + "thread": 15 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 2505894, + "thread": 28 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 2684098, + "thread": 2 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 2885870, + "thread": 17 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 3101782, + "thread": 16 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 3253941, + "thread": 1 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 3402332, + "thread": 16 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 3582166, + "thread": 20 + } + }, + { + "amount": "73.293820727", + "slot": { + "period": 3629063, + "thread": 13 + } + }, + { + "amount": "73.293820734", + "slot": { + "period": 3913078, + "thread": 5 + } + } + ], + "AU11RRJ812drLxFnBE1it9HN2kKrACjYvC3jE87iuwjEi2sRPGTP": [ + { + "amount": "514.700996978", + "slot": { + "period": 23119, + "thread": 10 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 211750, + "thread": 1 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 466447, + "thread": 28 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 525694, + "thread": 10 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 788385, + "thread": 19 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 949501, + "thread": 15 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1047458, + "thread": 12 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1282680, + "thread": 5 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1417837, + "thread": 2 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1619674, + "thread": 17 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1697299, + "thread": 3 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1873418, + "thread": 30 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 1991940, + "thread": 19 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2280563, + "thread": 19 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2297322, + "thread": 7 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2574548, + "thread": 9 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2786939, + "thread": 8 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2897221, + "thread": 9 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 2962587, + "thread": 21 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 3240013, + "thread": 29 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 3370835, + "thread": 14 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 3571899, + "thread": 12 + } + }, + { + "amount": "514.700996978", + "slot": { + "period": 3670383, + "thread": 30 + } + }, + { + "amount": "514.700996975", + "slot": { + "period": 3885189, + "thread": 11 + } + } + ], + "AU11Rc1Wj7YVN9ZLQput4muLSD8SpC2QLcwboa6JeMPPmFdrjhBS": [ + { + "amount": "467.763856558", + "slot": { + "period": 129177, + "thread": 27 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 170965, + "thread": 5 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 347402, + "thread": 28 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 598807, + "thread": 10 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 731760, + "thread": 29 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 877730, + "thread": 1 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1067616, + "thread": 30 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1288707, + "thread": 18 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1375306, + "thread": 30 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1535336, + "thread": 4 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1713911, + "thread": 17 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 1889186, + "thread": 31 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2065298, + "thread": 6 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2147125, + "thread": 21 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2446003, + "thread": 30 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2480979, + "thread": 15 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2791489, + "thread": 8 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 2830902, + "thread": 1 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 3044307, + "thread": 26 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 3199507, + "thread": 22 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 3442311, + "thread": 17 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 3458093, + "thread": 4 + } + }, + { + "amount": "467.763856558", + "slot": { + "period": 3750692, + "thread": 19 + } + }, + { + "amount": "467.763856559", + "slot": { + "period": 3809024, + "thread": 24 + } + } + ], + "AU11SF4cHj8Z1HTKUYg3UZCDxjG9P1fVt99D6yYzKasVGBARdNqZ": [ + { + "amount": "132.067433936", + "slot": { + "period": 13015, + "thread": 26 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 179683, + "thread": 27 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 389278, + "thread": 29 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 588204, + "thread": 22 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 683354, + "thread": 23 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 889940, + "thread": 19 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1120339, + "thread": 31 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1206383, + "thread": 27 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1402579, + "thread": 7 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1530027, + "thread": 25 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1775629, + "thread": 29 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 1927833, + "thread": 5 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2092802, + "thread": 7 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2251100, + "thread": 18 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2344638, + "thread": 20 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2567538, + "thread": 8 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2680405, + "thread": 16 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 2951322, + "thread": 14 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 3117015, + "thread": 17 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 3210211, + "thread": 6 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 3302091, + "thread": 4 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 3610128, + "thread": 18 + } + }, + { + "amount": "132.067433936", + "slot": { + "period": 3766109, + "thread": 23 + } + }, + { + "amount": "132.067433943", + "slot": { + "period": 3780028, + "thread": 7 + } + } + ], + "AU11SHsnuVnK1ReJxQuhh5YLGsa5cdpBw4ZZJsddiqVFYXBUqpr9": [ + { + "amount": "151.463988846", + "slot": { + "period": 81283, + "thread": 12 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 188428, + "thread": 5 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 429295, + "thread": 19 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 576610, + "thread": 10 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 709551, + "thread": 13 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 946105, + "thread": 18 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1043735, + "thread": 28 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1242356, + "thread": 30 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1440653, + "thread": 3 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1605152, + "thread": 7 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1712970, + "thread": 31 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 1862900, + "thread": 14 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2096336, + "thread": 21 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2236624, + "thread": 15 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2300711, + "thread": 2 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2568421, + "thread": 4 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2692780, + "thread": 6 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 2879772, + "thread": 24 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 3051770, + "thread": 12 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 3249924, + "thread": 10 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 3390066, + "thread": 11 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 3479091, + "thread": 20 + } + }, + { + "amount": "151.463988846", + "slot": { + "period": 3706459, + "thread": 17 + } + }, + { + "amount": "151.463988845", + "slot": { + "period": 3780570, + "thread": 20 + } + } + ], + "AU11SW5juBN7rKjK3AeMP8hv6J3UriFBAJoxtRBdpuU6QgsvXsuP": [ + { + "amount": "150.995930864", + "slot": { + "period": 20131, + "thread": 16 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 179673, + "thread": 8 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 462538, + "thread": 30 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 558776, + "thread": 7 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 663488, + "thread": 25 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 822351, + "thread": 30 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1067026, + "thread": 1 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1169277, + "thread": 2 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1340006, + "thread": 5 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1499960, + "thread": 6 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1699059, + "thread": 18 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 1819475, + "thread": 6 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2029822, + "thread": 14 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2276884, + "thread": 5 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2427224, + "thread": 26 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2588658, + "thread": 11 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2765860, + "thread": 8 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 2870227, + "thread": 10 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 3069965, + "thread": 8 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 3239212, + "thread": 9 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 3395003, + "thread": 26 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 3595397, + "thread": 18 + } + }, + { + "amount": "150.995930864", + "slot": { + "period": 3702526, + "thread": 29 + } + }, + { + "amount": "150.995930854", + "slot": { + "period": 3798695, + "thread": 3 + } + } + ], + "AU12114ok5MM25ta7a555nVT8XV4xBrLKsn6mNtx8c45SGVpFsMuG": [ + { + "amount": "52.854117068", + "slot": { + "period": 107148, + "thread": 13 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 194975, + "thread": 28 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 401857, + "thread": 30 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 534019, + "thread": 14 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 684760, + "thread": 13 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 966999, + "thread": 31 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1019964, + "thread": 16 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1241830, + "thread": 29 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1342803, + "thread": 1 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1624142, + "thread": 0 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1759800, + "thread": 26 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 1886887, + "thread": 18 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2034476, + "thread": 8 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2243447, + "thread": 24 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2348688, + "thread": 24 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2473523, + "thread": 25 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2735657, + "thread": 9 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 2942846, + "thread": 21 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 3060387, + "thread": 4 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 3286166, + "thread": 13 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 3426749, + "thread": 11 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 3506752, + "thread": 4 + } + }, + { + "amount": "52.854117068", + "slot": { + "period": 3735206, + "thread": 0 + } + }, + { + "amount": "52.854117073", + "slot": { + "period": 3926125, + "thread": 13 + } + } + ], + "AU1211b6ndxB7DNerW6MaHyXNTY2S3ghgvW7KjyACo5ZL5aFA7qzx": [ + { + "amount": "561.540025165", + "slot": { + "period": 118906, + "thread": 18 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 200517, + "thread": 25 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 396827, + "thread": 24 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 601064, + "thread": 15 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 770154, + "thread": 18 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 917193, + "thread": 21 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1137834, + "thread": 15 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1186954, + "thread": 31 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1330837, + "thread": 23 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1539874, + "thread": 12 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1713574, + "thread": 0 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 1844923, + "thread": 29 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2128036, + "thread": 5 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2182078, + "thread": 2 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2347523, + "thread": 16 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2599559, + "thread": 10 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2697161, + "thread": 30 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 2823751, + "thread": 31 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 3080682, + "thread": 30 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 3275350, + "thread": 22 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 3433886, + "thread": 21 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 3566573, + "thread": 31 + } + }, + { + "amount": "561.540025165", + "slot": { + "period": 3717781, + "thread": 4 + } + }, + { + "amount": "561.540025168", + "slot": { + "period": 3807757, + "thread": 30 + } + } + ], + "AU12126CJj1ThTJ7gYGjpsM3SxLkk63MPxvcLreLowS3e3ZHnZCHd": [ + { + "amount": "254.412069288", + "slot": { + "period": 159244, + "thread": 20 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 168170, + "thread": 22 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 442181, + "thread": 17 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 538241, + "thread": 7 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 686553, + "thread": 14 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 955299, + "thread": 3 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1087704, + "thread": 23 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1258558, + "thread": 12 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1451805, + "thread": 8 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1537078, + "thread": 2 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1686798, + "thread": 13 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 1867530, + "thread": 13 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2020477, + "thread": 24 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2280862, + "thread": 27 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2392899, + "thread": 23 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2543732, + "thread": 21 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2629688, + "thread": 27 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 2880287, + "thread": 31 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 3030931, + "thread": 22 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 3200721, + "thread": 4 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 3421708, + "thread": 21 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 3617996, + "thread": 3 + } + }, + { + "amount": "254.412069288", + "slot": { + "period": 3635641, + "thread": 23 + } + }, + { + "amount": "254.412069291", + "slot": { + "period": 3791480, + "thread": 27 + } + } + ], + "AU12128wtQasZsnsD5dwxPPt5o7iEv9DaWe5oXXMAPmjMp3TbgfZi": [ + { + "amount": "61.442605019", + "slot": { + "period": 61238, + "thread": 4 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 323302, + "thread": 23 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 455245, + "thread": 3 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 533311, + "thread": 9 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 769322, + "thread": 31 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 947588, + "thread": 3 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1056889, + "thread": 30 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1169018, + "thread": 12 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1391985, + "thread": 18 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1611323, + "thread": 14 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1761497, + "thread": 23 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 1954695, + "thread": 18 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2088406, + "thread": 14 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2287392, + "thread": 30 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2352918, + "thread": 15 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2538395, + "thread": 1 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2773202, + "thread": 29 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 2946202, + "thread": 23 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 3096614, + "thread": 27 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 3144505, + "thread": 14 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 3294604, + "thread": 17 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 3566930, + "thread": 28 + } + }, + { + "amount": "61.442605019", + "slot": { + "period": 3708540, + "thread": 1 + } + }, + { + "amount": "61.442605022", + "slot": { + "period": 3915484, + "thread": 1 + } + } + ], + "AU1212KdZAKZe5fT5VXjMUT7mL6LGT7po3RH96q442XpWv1RRSUmW": [ + { + "amount": "463.570192141", + "slot": { + "period": 79266, + "thread": 9 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 186132, + "thread": 12 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 347416, + "thread": 14 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 650190, + "thread": 30 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 707113, + "thread": 30 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 979458, + "thread": 23 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1082052, + "thread": 3 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1283969, + "thread": 9 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1446391, + "thread": 10 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1574069, + "thread": 13 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1801585, + "thread": 11 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 1855109, + "thread": 5 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2061539, + "thread": 6 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2163045, + "thread": 26 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2416663, + "thread": 20 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2467681, + "thread": 6 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2630596, + "thread": 6 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 2891776, + "thread": 6 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 3095367, + "thread": 24 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 3267663, + "thread": 24 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 3439451, + "thread": 10 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 3610938, + "thread": 9 + } + }, + { + "amount": "463.570192141", + "slot": { + "period": 3639319, + "thread": 20 + } + }, + { + "amount": "463.570192142", + "slot": { + "period": 3886445, + "thread": 16 + } + } + ], + "AU1212hRdbtqMFtLwuh9TPFbs4tcxv6wLDtHzWocBUBiKM5q83vDS": [ + { + "amount": "362.987638575", + "slot": { + "period": 110109, + "thread": 18 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 228738, + "thread": 18 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 351837, + "thread": 29 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 516925, + "thread": 20 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 768476, + "thread": 3 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 837393, + "thread": 27 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1140382, + "thread": 21 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1213316, + "thread": 19 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1366120, + "thread": 10 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1487007, + "thread": 18 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1741410, + "thread": 30 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 1906992, + "thread": 15 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2038723, + "thread": 6 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2243566, + "thread": 22 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2300246, + "thread": 0 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2568051, + "thread": 20 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2767210, + "thread": 4 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 2898800, + "thread": 15 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 3078584, + "thread": 8 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 3121448, + "thread": 10 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 3306695, + "thread": 25 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 3495123, + "thread": 16 + } + }, + { + "amount": "362.987638575", + "slot": { + "period": 3735577, + "thread": 27 + } + }, + { + "amount": "362.987638582", + "slot": { + "period": 3900246, + "thread": 19 + } + } + ], + "AU1212riB6XWvDRVe7wX93akx7J3rERR9SaFyMgQiVoQFG8YrCLU9": [ + { + "amount": "184.648908073", + "slot": { + "period": 98303, + "thread": 0 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 184572, + "thread": 3 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 413500, + "thread": 19 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 549256, + "thread": 27 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 665902, + "thread": 30 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 953921, + "thread": 5 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1022028, + "thread": 28 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1161273, + "thread": 8 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1412987, + "thread": 3 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1553079, + "thread": 2 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1755384, + "thread": 0 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 1820535, + "thread": 17 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2087631, + "thread": 3 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2258214, + "thread": 24 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2396771, + "thread": 10 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2608713, + "thread": 4 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2765125, + "thread": 13 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 2938103, + "thread": 16 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 3002099, + "thread": 30 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 3233009, + "thread": 8 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 3444546, + "thread": 12 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 3502343, + "thread": 13 + } + }, + { + "amount": "184.648908073", + "slot": { + "period": 3731567, + "thread": 16 + } + }, + { + "amount": "184.648908069", + "slot": { + "period": 3811712, + "thread": 23 + } + } + ], + "AU1215PuCFtruiB2rjtb2GLwTbgnN26fcHeyY1zc1fvuZj5MPnox2": [ + { + "amount": "276.616217839", + "slot": { + "period": 38114, + "thread": 17 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 239588, + "thread": 31 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 343654, + "thread": 3 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 609894, + "thread": 5 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 767264, + "thread": 19 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 977803, + "thread": 9 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1065226, + "thread": 24 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1167816, + "thread": 13 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1479310, + "thread": 21 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1550322, + "thread": 25 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1770065, + "thread": 31 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1861419, + "thread": 14 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 1988877, + "thread": 5 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 2221765, + "thread": 6 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 2315629, + "thread": 30 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 2561915, + "thread": 22 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 2755358, + "thread": 13 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 2885324, + "thread": 5 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 3010950, + "thread": 5 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 3154286, + "thread": 10 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 3340928, + "thread": 0 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 3605973, + "thread": 17 + } + }, + { + "amount": "276.616217839", + "slot": { + "period": 3651130, + "thread": 28 + } + }, + { + "amount": "276.616217834", + "slot": { + "period": 3925215, + "thread": 31 + } + } + ], + "AU1215Rt8Rp26XyuZUzz1pC9yyersoeJKzQTsckGt4sbJKHE5SLxP": [ + { + "amount": "106.645037369", + "slot": { + "period": 44992, + "thread": 11 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 261033, + "thread": 8 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 468073, + "thread": 16 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 593916, + "thread": 30 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 688160, + "thread": 1 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 900486, + "thread": 31 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1067243, + "thread": 8 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1282775, + "thread": 6 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1420883, + "thread": 29 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1521551, + "thread": 31 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1741416, + "thread": 23 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1946997, + "thread": 26 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 1983295, + "thread": 24 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 2153918, + "thread": 16 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 2318337, + "thread": 23 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 2545137, + "thread": 14 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 2626622, + "thread": 28 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 2942248, + "thread": 6 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 3011565, + "thread": 0 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 3283223, + "thread": 17 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 3394794, + "thread": 28 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 3524278, + "thread": 16 + } + }, + { + "amount": "106.645037369", + "slot": { + "period": 3701758, + "thread": 17 + } + }, + { + "amount": "106.645037373", + "slot": { + "period": 3874341, + "thread": 18 + } + } + ], + "AU1215g5DFczxmq1iJNAwi9GCrds2Ef4VWhuwzn1vhXjD99pVhaTV": [ + { + "amount": "223.769173287", + "slot": { + "period": 80008, + "thread": 5 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 178620, + "thread": 9 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 325064, + "thread": 22 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 554625, + "thread": 12 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 736707, + "thread": 2 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 824402, + "thread": 25 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1144656, + "thread": 12 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1290078, + "thread": 14 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1365416, + "thread": 1 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1594378, + "thread": 4 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1728366, + "thread": 17 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 1872125, + "thread": 10 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2076293, + "thread": 30 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2205630, + "thread": 23 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2409196, + "thread": 16 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2598516, + "thread": 4 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2684993, + "thread": 0 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 2927386, + "thread": 0 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 3092943, + "thread": 16 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 3146331, + "thread": 16 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 3324978, + "thread": 30 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 3601280, + "thread": 8 + } + }, + { + "amount": "223.769173287", + "slot": { + "period": 3660702, + "thread": 6 + } + }, + { + "amount": "223.769173276", + "slot": { + "period": 3809618, + "thread": 28 + } + } + ], + "AU1216FN4gcjySRHFPTyzv2zjiJJ1Wea8wodHZNbtp9GDGn9FQ42C": [ + { + "amount": "253.888770855", + "slot": { + "period": 65196, + "thread": 1 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 275025, + "thread": 7 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 441442, + "thread": 9 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 637005, + "thread": 7 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 662441, + "thread": 29 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 902758, + "thread": 2 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1032779, + "thread": 0 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1185938, + "thread": 12 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1436205, + "thread": 28 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1614437, + "thread": 0 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1748570, + "thread": 20 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 1874309, + "thread": 8 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2055282, + "thread": 31 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2277536, + "thread": 19 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2297861, + "thread": 22 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2464149, + "thread": 31 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2649814, + "thread": 15 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 2926216, + "thread": 8 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 3051018, + "thread": 29 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 3153649, + "thread": 21 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 3290492, + "thread": 2 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 3514792, + "thread": 13 + } + }, + { + "amount": "253.888770855", + "slot": { + "period": 3751161, + "thread": 23 + } + }, + { + "amount": "253.888770844", + "slot": { + "period": 3796020, + "thread": 15 + } + } + ], + "AU1216NMoJt6DU3LFSYoQPCuFHRfoYx4czVySjhERqqVoAQMZx9og": [ + { + "amount": "123.285199735", + "slot": { + "period": 94647, + "thread": 12 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 191187, + "thread": 17 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 448398, + "thread": 30 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 593662, + "thread": 14 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 769620, + "thread": 12 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 919577, + "thread": 4 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1047711, + "thread": 5 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1230177, + "thread": 8 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1324478, + "thread": 5 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1568464, + "thread": 14 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1759701, + "thread": 18 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 1973355, + "thread": 6 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2094651, + "thread": 2 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2169190, + "thread": 16 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2295720, + "thread": 28 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2531643, + "thread": 3 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2711036, + "thread": 16 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 2891233, + "thread": 4 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 3065666, + "thread": 11 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 3229999, + "thread": 28 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 3319532, + "thread": 19 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 3560249, + "thread": 19 + } + }, + { + "amount": "123.285199735", + "slot": { + "period": 3686627, + "thread": 11 + } + }, + { + "amount": "123.285199739", + "slot": { + "period": 3923508, + "thread": 28 + } + } + ], + "AU1216o2yxPq5THLebDRfUQojrZsbqNjFr3SNP6gKq4P56hyVwiG6": [ + { + "amount": "621.703850132", + "slot": { + "period": 46531, + "thread": 20 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 253787, + "thread": 8 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 400489, + "thread": 29 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 631280, + "thread": 27 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 763524, + "thread": 13 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 910850, + "thread": 7 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1000854, + "thread": 2 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1215318, + "thread": 17 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1421847, + "thread": 22 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1512297, + "thread": 8 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1770217, + "thread": 0 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1879156, + "thread": 9 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 1985709, + "thread": 7 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2293041, + "thread": 5 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2365639, + "thread": 20 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2499172, + "thread": 13 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2700766, + "thread": 26 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2913896, + "thread": 5 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 2975856, + "thread": 25 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 3186919, + "thread": 16 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 3383092, + "thread": 5 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 3544168, + "thread": 25 + } + }, + { + "amount": "621.703850132", + "slot": { + "period": 3636739, + "thread": 12 + } + }, + { + "amount": "621.703850129", + "slot": { + "period": 3834512, + "thread": 26 + } + } + ], + "AU1217YSbQ9BS4DMpa4gTzT27XyRRSXSyh1B6PVci5tLL71f2m4U8": [ + { + "amount": "445.460075597", + "slot": { + "period": 32492, + "thread": 30 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 312382, + "thread": 17 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 413660, + "thread": 9 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 600868, + "thread": 26 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 680629, + "thread": 0 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 920198, + "thread": 15 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1130513, + "thread": 24 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1202560, + "thread": 28 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1450122, + "thread": 20 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1494594, + "thread": 0 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1691155, + "thread": 3 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 1852549, + "thread": 17 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2091634, + "thread": 3 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2150771, + "thread": 22 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2393296, + "thread": 29 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2581124, + "thread": 26 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2682380, + "thread": 11 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2820240, + "thread": 26 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 2964299, + "thread": 25 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 3219002, + "thread": 9 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 3330858, + "thread": 30 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 3603287, + "thread": 8 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 3629822, + "thread": 12 + } + }, + { + "amount": "445.460075597", + "slot": { + "period": 3945858, + "thread": 27 + } + } + ], + "AU1217oBWgBLzSN7nD7iWrNzcsYWMnjcrXUKo2YJrrZAtv1hmhTyF": [ + { + "amount": "166.223966519", + "slot": { + "period": 86077, + "thread": 25 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 198485, + "thread": 7 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 391130, + "thread": 21 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 496834, + "thread": 30 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 764792, + "thread": 5 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 855000, + "thread": 5 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1054944, + "thread": 22 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1284030, + "thread": 8 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1460711, + "thread": 31 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1563658, + "thread": 15 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1776179, + "thread": 17 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 1910388, + "thread": 1 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2136605, + "thread": 4 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2229294, + "thread": 19 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2398751, + "thread": 3 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2549280, + "thread": 28 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2655954, + "thread": 4 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 2849528, + "thread": 15 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 3066453, + "thread": 30 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 3284981, + "thread": 11 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 3427537, + "thread": 11 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 3533528, + "thread": 27 + } + }, + { + "amount": "166.223966519", + "slot": { + "period": 3637250, + "thread": 11 + } + }, + { + "amount": "166.223966514", + "slot": { + "period": 3870505, + "thread": 13 + } + } + ], + "AU1217xTtZ1NhQ34ZCSiXKjNuLJhg2jFvUQEgXrTChthpacXUtvBW": [ + { + "amount": "364.293788858", + "slot": { + "period": 101957, + "thread": 20 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 185236, + "thread": 13 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 474265, + "thread": 1 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 629254, + "thread": 24 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 692894, + "thread": 24 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 840083, + "thread": 28 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1061365, + "thread": 11 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1224575, + "thread": 17 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1385540, + "thread": 31 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1511336, + "thread": 25 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1672585, + "thread": 15 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 1923198, + "thread": 19 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2076842, + "thread": 22 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2185288, + "thread": 21 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2346611, + "thread": 28 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2539201, + "thread": 12 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2741535, + "thread": 29 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2840827, + "thread": 12 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 2991665, + "thread": 21 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 3174879, + "thread": 21 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 3302219, + "thread": 13 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 3612965, + "thread": 3 + } + }, + { + "amount": "364.293788858", + "slot": { + "period": 3739823, + "thread": 7 + } + }, + { + "amount": "364.293788847", + "slot": { + "period": 3913582, + "thread": 7 + } + } + ], + "AU12182zXEDgSLV6vTxh5Lj3YtsiXPTs8dRb8SWDLBHKnyVE81fcA": [ + { + "amount": "135.502103331", + "slot": { + "period": 106393, + "thread": 31 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 222246, + "thread": 15 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 425526, + "thread": 25 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 622347, + "thread": 17 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 711059, + "thread": 22 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 973491, + "thread": 3 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1054638, + "thread": 1 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1229638, + "thread": 3 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1476093, + "thread": 5 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1534232, + "thread": 4 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1728531, + "thread": 26 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 1935123, + "thread": 10 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2054103, + "thread": 13 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2196426, + "thread": 20 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2358737, + "thread": 1 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2509488, + "thread": 1 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2754557, + "thread": 31 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 2805271, + "thread": 30 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 3038021, + "thread": 16 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 3242261, + "thread": 31 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 3353894, + "thread": 1 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 3603370, + "thread": 8 + } + }, + { + "amount": "135.502103331", + "slot": { + "period": 3777124, + "thread": 20 + } + }, + { + "amount": "135.502103342", + "slot": { + "period": 3904680, + "thread": 30 + } + } + ], + "AU1218BoK21gnwkCtqY9VN5hh7VVazjzzRSwqShUxK6PxoN4ZsySk": [ + { + "amount": "304.678812263", + "slot": { + "period": 126023, + "thread": 10 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 291413, + "thread": 28 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 377094, + "thread": 13 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 583548, + "thread": 24 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 695168, + "thread": 11 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 967897, + "thread": 20 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1045344, + "thread": 8 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1237511, + "thread": 26 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1359565, + "thread": 28 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1642717, + "thread": 11 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1797168, + "thread": 11 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1867356, + "thread": 31 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 1977395, + "thread": 4 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 2277931, + "thread": 4 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 2420195, + "thread": 3 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 2615886, + "thread": 25 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 2655355, + "thread": 27 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 2936554, + "thread": 5 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 3001159, + "thread": 19 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 3225506, + "thread": 17 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 3363989, + "thread": 21 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 3555410, + "thread": 3 + } + }, + { + "amount": "304.678812263", + "slot": { + "period": 3746111, + "thread": 25 + } + }, + { + "amount": "304.678812256", + "slot": { + "period": 3805178, + "thread": 22 + } + } + ], + "AU1218RCpiwpC7mvRZRSk83YqrwYBQbFVuHbx4uHZJkfsHfhLtwZY": [ + { + "amount": "73.066791832", + "slot": { + "period": 165074, + "thread": 0 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 267199, + "thread": 11 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 402995, + "thread": 2 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 561651, + "thread": 19 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 815892, + "thread": 15 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 841929, + "thread": 23 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1127128, + "thread": 20 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1294570, + "thread": 24 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1467330, + "thread": 15 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1497099, + "thread": 14 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1774020, + "thread": 2 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1872279, + "thread": 24 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 1993162, + "thread": 25 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 2190257, + "thread": 10 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 2347606, + "thread": 4 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 2492155, + "thread": 31 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 2778188, + "thread": 3 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 2847717, + "thread": 24 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 3051469, + "thread": 0 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 3168604, + "thread": 26 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 3345090, + "thread": 2 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 3565438, + "thread": 4 + } + }, + { + "amount": "73.066791832", + "slot": { + "period": 3687980, + "thread": 28 + } + }, + { + "amount": "73.066791830", + "slot": { + "period": 3819338, + "thread": 8 + } + } + ], + "AU1218tSZZS4BRQKihZkXS6Fo5Kx9tH7r1SEmr99kZS9EDkZCc6eP": [ + { + "amount": "303.652435654", + "slot": { + "period": 65851, + "thread": 16 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 228321, + "thread": 29 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 402996, + "thread": 20 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 635036, + "thread": 4 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 681938, + "thread": 2 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 909940, + "thread": 2 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1099749, + "thread": 31 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1237920, + "thread": 10 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1335979, + "thread": 10 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1530845, + "thread": 19 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1670838, + "thread": 9 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1826144, + "thread": 8 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 1977147, + "thread": 2 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 2279129, + "thread": 0 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 2387841, + "thread": 26 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 2597429, + "thread": 12 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 2690847, + "thread": 9 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 2861755, + "thread": 31 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 3089158, + "thread": 22 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 3261569, + "thread": 25 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 3300241, + "thread": 18 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 3602434, + "thread": 31 + } + }, + { + "amount": "303.652435654", + "slot": { + "period": 3636001, + "thread": 6 + } + }, + { + "amount": "303.652435652", + "slot": { + "period": 3886039, + "thread": 12 + } + } + ], + "AU121ASoqQLjd22TMcMQHww4VtjcgvaXa6rCSusTCErzWfeoDt18Y": [ + { + "amount": "154.544033249", + "slot": { + "period": 43793, + "thread": 16 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 306015, + "thread": 18 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 480653, + "thread": 5 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 586248, + "thread": 12 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 718694, + "thread": 6 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 863248, + "thread": 3 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1022845, + "thread": 9 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1311116, + "thread": 5 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1414197, + "thread": 2 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1548746, + "thread": 24 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1745784, + "thread": 20 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 1975726, + "thread": 3 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2054009, + "thread": 11 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2238590, + "thread": 10 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2343260, + "thread": 17 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2470727, + "thread": 16 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2646086, + "thread": 13 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 2953216, + "thread": 7 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 3073838, + "thread": 7 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 3259013, + "thread": 3 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 3402239, + "thread": 12 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 3459095, + "thread": 17 + } + }, + { + "amount": "154.544033249", + "slot": { + "period": 3689433, + "thread": 23 + } + }, + { + "amount": "154.544033248", + "slot": { + "period": 3931410, + "thread": 21 + } + } + ], + "AU121AjP3XF18qPPzetJxsuq1GACJv35Lv8Xx2KA6ikC6pX1Bqbej": [ + { + "amount": "133.561123357", + "slot": { + "period": 72399, + "thread": 1 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 193724, + "thread": 17 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 360138, + "thread": 24 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 618844, + "thread": 9 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 787905, + "thread": 12 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 864261, + "thread": 0 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1081038, + "thread": 9 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1212516, + "thread": 20 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1360748, + "thread": 13 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1533752, + "thread": 23 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1689890, + "thread": 9 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 1921054, + "thread": 21 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2038414, + "thread": 6 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2150534, + "thread": 1 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2462071, + "thread": 1 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2465571, + "thread": 3 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2729558, + "thread": 15 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 2908741, + "thread": 29 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 3006470, + "thread": 17 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 3249753, + "thread": 26 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 3414882, + "thread": 19 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 3500374, + "thread": 17 + } + }, + { + "amount": "133.561123357", + "slot": { + "period": 3684788, + "thread": 2 + } + }, + { + "amount": "133.561123348", + "slot": { + "period": 3838415, + "thread": 0 + } + } + ], + "AU121C894Hkd1kK8vw6CVx63TcgNW7XuK561395i2oGKyA2nW3BsN": [ + { + "amount": "133.197680568", + "slot": { + "period": 94653, + "thread": 28 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 227407, + "thread": 13 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 389557, + "thread": 24 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 497575, + "thread": 9 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 666980, + "thread": 21 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 822776, + "thread": 1 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 994145, + "thread": 20 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1281204, + "thread": 27 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1324055, + "thread": 2 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1634634, + "thread": 20 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1764051, + "thread": 14 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1843789, + "thread": 3 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 1976761, + "thread": 1 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 2277444, + "thread": 24 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 2411971, + "thread": 28 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 2548675, + "thread": 1 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 2727377, + "thread": 24 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 2922293, + "thread": 1 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 3079373, + "thread": 17 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 3152867, + "thread": 27 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 3441946, + "thread": 0 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 3481385, + "thread": 9 + } + }, + { + "amount": "133.197680568", + "slot": { + "period": 3725585, + "thread": 13 + } + }, + { + "amount": "133.197680569", + "slot": { + "period": 3833327, + "thread": 6 + } + } + ], + "AU121CXQoR5WdZWzzopnoeQZqBTG6oLwk7aQDzR2JDMnPgDNGggSY": [ + { + "amount": "170.867343315", + "slot": { + "period": 143953, + "thread": 0 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 187974, + "thread": 4 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 483918, + "thread": 11 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 649920, + "thread": 28 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 782802, + "thread": 6 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 853929, + "thread": 16 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1031480, + "thread": 27 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1170199, + "thread": 27 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1424113, + "thread": 9 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1497854, + "thread": 11 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1677046, + "thread": 14 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 1903651, + "thread": 1 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2000302, + "thread": 8 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2245626, + "thread": 11 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2363018, + "thread": 16 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2587144, + "thread": 19 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2744796, + "thread": 15 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2831449, + "thread": 14 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 2972355, + "thread": 8 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 3288000, + "thread": 7 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 3318365, + "thread": 29 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 3477360, + "thread": 1 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 3622426, + "thread": 31 + } + }, + { + "amount": "170.867343315", + "slot": { + "period": 3834607, + "thread": 23 + } + } + ], + "AU121CkQbGGCMWazbHY6EYo6C6Nb5ZemKwQhrqzaoauwhuRWZQm1E": [ + { + "amount": "92.494738604", + "slot": { + "period": 19333, + "thread": 9 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 206629, + "thread": 11 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 365760, + "thread": 26 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 588863, + "thread": 12 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 670497, + "thread": 27 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 891211, + "thread": 1 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1000833, + "thread": 12 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1238092, + "thread": 4 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1323358, + "thread": 24 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1602271, + "thread": 8 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1775274, + "thread": 2 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 1938505, + "thread": 23 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2083198, + "thread": 5 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2177213, + "thread": 26 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2454753, + "thread": 3 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2524911, + "thread": 8 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2739602, + "thread": 5 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 2874142, + "thread": 24 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 3071585, + "thread": 14 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 3222145, + "thread": 28 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 3382797, + "thread": 15 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 3597304, + "thread": 15 + } + }, + { + "amount": "92.494738604", + "slot": { + "period": 3659837, + "thread": 12 + } + }, + { + "amount": "92.494738614", + "slot": { + "period": 3889729, + "thread": 19 + } + } + ], + "AU121Cknu4BHvFGfNxvNkBBozgqRQX9ZJJkLo8CFwycjj1fA4F4WY": [ + { + "amount": "124.213437693", + "slot": { + "period": 112615, + "thread": 28 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 279675, + "thread": 16 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 422490, + "thread": 18 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 566749, + "thread": 18 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 736905, + "thread": 5 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 878620, + "thread": 9 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1111166, + "thread": 29 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1290363, + "thread": 30 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1441346, + "thread": 20 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1631103, + "thread": 29 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1762912, + "thread": 23 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 1933290, + "thread": 19 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2049917, + "thread": 12 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2176048, + "thread": 7 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2414931, + "thread": 13 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2524960, + "thread": 26 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2737470, + "thread": 22 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 2936880, + "thread": 23 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 3054543, + "thread": 16 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 3275920, + "thread": 2 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 3363873, + "thread": 3 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 3452807, + "thread": 5 + } + }, + { + "amount": "124.213437693", + "slot": { + "period": 3776524, + "thread": 23 + } + }, + { + "amount": "124.213437702", + "slot": { + "period": 3866416, + "thread": 29 + } + } + ], + "AU121DngqF9Lf4frGjqzRpL1WWKiTfZtpp3WUvNGf7iXLfheZB6D4": [ + { + "amount": "163.419259676", + "slot": { + "period": 37722, + "thread": 18 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 192170, + "thread": 24 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 435967, + "thread": 16 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 556988, + "thread": 18 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 789278, + "thread": 13 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 926504, + "thread": 17 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1081483, + "thread": 5 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1282678, + "thread": 22 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1349755, + "thread": 2 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1537496, + "thread": 24 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1711766, + "thread": 31 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 1909983, + "thread": 24 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2119382, + "thread": 13 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2261687, + "thread": 30 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2429580, + "thread": 12 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2496339, + "thread": 6 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2781721, + "thread": 16 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 2825763, + "thread": 18 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 3043048, + "thread": 31 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 3166161, + "thread": 5 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 3314705, + "thread": 4 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 3511091, + "thread": 16 + } + }, + { + "amount": "163.419259676", + "slot": { + "period": 3679597, + "thread": 17 + } + }, + { + "amount": "163.419259679", + "slot": { + "period": 3915811, + "thread": 10 + } + } + ], + "AU121E4ipmpyJrsnUacjbSQB8H3vnebxnKnJ8d7gbH3wcVPdVZe2p": [ + { + "amount": "476.527239482", + "slot": { + "period": 60922, + "thread": 16 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 229729, + "thread": 27 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 417719, + "thread": 16 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 563087, + "thread": 7 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 674076, + "thread": 14 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 912133, + "thread": 29 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1094240, + "thread": 31 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1206909, + "thread": 13 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1464277, + "thread": 17 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1505336, + "thread": 0 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1663683, + "thread": 28 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1857920, + "thread": 21 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 1998240, + "thread": 21 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 2178645, + "thread": 0 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 2429478, + "thread": 26 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 2520503, + "thread": 20 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 2700250, + "thread": 1 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 2835907, + "thread": 4 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 3045871, + "thread": 3 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 3159308, + "thread": 31 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 3393291, + "thread": 5 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 3588749, + "thread": 4 + } + }, + { + "amount": "476.527239482", + "slot": { + "period": 3774071, + "thread": 28 + } + }, + { + "amount": "476.527239474", + "slot": { + "period": 3908591, + "thread": 25 + } + } + ], + "AU121EQBBaedT2SeiyUf5EcSk2apoDtmjr5reqCZiDbqKji4MEEAd": [ + { + "amount": "149.039989153", + "slot": { + "period": 86428, + "thread": 27 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 278170, + "thread": 8 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 467160, + "thread": 28 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 544888, + "thread": 3 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 674058, + "thread": 2 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 963783, + "thread": 2 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1120598, + "thread": 28 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1188758, + "thread": 30 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1454117, + "thread": 25 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1505767, + "thread": 4 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1749400, + "thread": 11 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 1902809, + "thread": 12 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2103678, + "thread": 9 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2227091, + "thread": 4 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2298709, + "thread": 19 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2491855, + "thread": 22 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2790333, + "thread": 29 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 2923280, + "thread": 15 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 3012845, + "thread": 30 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 3189108, + "thread": 4 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 3410996, + "thread": 17 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 3578876, + "thread": 1 + } + }, + { + "amount": "149.039989153", + "slot": { + "period": 3750455, + "thread": 21 + } + }, + { + "amount": "149.039989146", + "slot": { + "period": 3932305, + "thread": 21 + } + } + ], + "AU121Gc7XwjnJnysHYT5dkFb2t92wHqRG7NeJEKcF4CRmTuK83mkp": [ + { + "amount": "186.211620454", + "slot": { + "period": 120066, + "thread": 25 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 266659, + "thread": 2 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 428766, + "thread": 6 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 534669, + "thread": 26 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 808439, + "thread": 21 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 845408, + "thread": 5 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1049019, + "thread": 12 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1279080, + "thread": 4 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1368839, + "thread": 0 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1639475, + "thread": 2 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1791895, + "thread": 11 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 1857226, + "thread": 2 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2009341, + "thread": 29 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2238148, + "thread": 9 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2426642, + "thread": 5 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2465446, + "thread": 1 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2709636, + "thread": 6 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 2835696, + "thread": 1 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 3089732, + "thread": 16 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 3258033, + "thread": 18 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 3389395, + "thread": 4 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 3608772, + "thread": 1 + } + }, + { + "amount": "186.211620454", + "slot": { + "period": 3677852, + "thread": 5 + } + }, + { + "amount": "186.211620453", + "slot": { + "period": 3808579, + "thread": 14 + } + } + ], + "AU121HXgiC5xJkyPTWH3qteYRb9jkSbyxK5NKHKWWfShj4tgv7YE1": [ + { + "amount": "62.498802476", + "slot": { + "period": 51664, + "thread": 11 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 245026, + "thread": 11 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 387241, + "thread": 29 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 651801, + "thread": 17 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 819283, + "thread": 3 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 936386, + "thread": 26 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1009453, + "thread": 18 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1160224, + "thread": 24 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1429597, + "thread": 7 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1489265, + "thread": 9 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1698190, + "thread": 29 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 1905159, + "thread": 26 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2015109, + "thread": 12 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2249095, + "thread": 5 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2400897, + "thread": 0 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2488753, + "thread": 20 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2627348, + "thread": 26 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 2845017, + "thread": 6 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3061038, + "thread": 3 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3286553, + "thread": 28 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3446067, + "thread": 31 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3516726, + "thread": 26 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3736509, + "thread": 9 + } + }, + { + "amount": "62.498802476", + "slot": { + "period": 3900076, + "thread": 5 + } + } + ], + "AU121JFHBbscNQUNpaSNNsrpi5xjLV5UyLfqhdHghCjtmfYPq7suY": [ + { + "amount": "100.585442543", + "slot": { + "period": 142158, + "thread": 4 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 272577, + "thread": 3 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 369844, + "thread": 5 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 582080, + "thread": 23 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 712484, + "thread": 2 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 838459, + "thread": 6 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 984336, + "thread": 26 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 1255865, + "thread": 26 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 1345336, + "thread": 12 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 1593884, + "thread": 4 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 1691047, + "thread": 8 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 1809356, + "thread": 27 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2115689, + "thread": 23 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2188887, + "thread": 6 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2392246, + "thread": 23 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2555221, + "thread": 21 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2720524, + "thread": 25 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 2923844, + "thread": 15 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 3108389, + "thread": 20 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 3234206, + "thread": 25 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 3382643, + "thread": 10 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 3593437, + "thread": 0 + } + }, + { + "amount": "100.585442543", + "slot": { + "period": 3743298, + "thread": 29 + } + }, + { + "amount": "100.585442547", + "slot": { + "period": 3862777, + "thread": 6 + } + } + ], + "AU121JmfN4mCgky6KiWhR9ZUTJ1cdPBQ8xsEYzf61CFBjnrJuTyGk": [ + { + "amount": "161.917668493", + "slot": { + "period": 43242, + "thread": 2 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 181763, + "thread": 10 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 349679, + "thread": 3 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 609180, + "thread": 3 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 721154, + "thread": 20 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 836753, + "thread": 9 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1000954, + "thread": 20 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1173336, + "thread": 24 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1336830, + "thread": 17 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1525377, + "thread": 19 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1657744, + "thread": 14 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1821972, + "thread": 4 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 1999654, + "thread": 20 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2242535, + "thread": 11 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2443190, + "thread": 29 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2605626, + "thread": 1 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2682565, + "thread": 22 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2942084, + "thread": 23 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 2987336, + "thread": 11 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 3125987, + "thread": 0 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 3339592, + "thread": 23 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 3465669, + "thread": 12 + } + }, + { + "amount": "161.917668493", + "slot": { + "period": 3651463, + "thread": 19 + } + }, + { + "amount": "161.917668485", + "slot": { + "period": 3807595, + "thread": 1 + } + } + ], + "AU121KXzZgC38zshsBp5kuzWD2fLYLYPyKvFDDCusSwmebZi324J": [ + { + "amount": "84.224916663", + "slot": { + "period": 165495, + "thread": 14 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 306509, + "thread": 22 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 485659, + "thread": 31 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 643998, + "thread": 25 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 661448, + "thread": 10 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 946653, + "thread": 29 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1136183, + "thread": 12 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1272403, + "thread": 16 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1379254, + "thread": 21 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1494352, + "thread": 7 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1665816, + "thread": 7 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 1827367, + "thread": 22 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2015375, + "thread": 6 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2175445, + "thread": 16 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2426823, + "thread": 6 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2547156, + "thread": 19 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2768080, + "thread": 5 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 2899504, + "thread": 7 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 3048108, + "thread": 17 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 3173729, + "thread": 23 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 3346574, + "thread": 26 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 3541689, + "thread": 4 + } + }, + { + "amount": "84.224916663", + "slot": { + "period": 3727424, + "thread": 13 + } + }, + { + "amount": "84.224916662", + "slot": { + "period": 3827551, + "thread": 22 + } + } + ], + "AU121KonKASf1zhVtFtnbkvG5jHbsjrbDYBvi1vr3mxmnCu4LC9Vp": [ + { + "amount": "181.478504756", + "slot": { + "period": 68926, + "thread": 23 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 245095, + "thread": 29 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 472639, + "thread": 10 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 633196, + "thread": 30 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 779385, + "thread": 2 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 932603, + "thread": 3 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1119457, + "thread": 2 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1238406, + "thread": 9 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1445451, + "thread": 14 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1563998, + "thread": 20 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1701083, + "thread": 4 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 1841236, + "thread": 2 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2079953, + "thread": 27 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2294522, + "thread": 13 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2299009, + "thread": 27 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2565234, + "thread": 13 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2633483, + "thread": 6 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2908371, + "thread": 9 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 2984096, + "thread": 14 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 3271679, + "thread": 9 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 3447570, + "thread": 12 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 3587520, + "thread": 15 + } + }, + { + "amount": "181.478504756", + "slot": { + "period": 3687267, + "thread": 29 + } + }, + { + "amount": "181.478504752", + "slot": { + "period": 3918597, + "thread": 18 + } + } + ], + "AU121LGDncjfGMHraCPynxz2NHQWmH5qChaNFFiPbY2KjNdQgLsoS": [ + { + "amount": "557.408636369", + "slot": { + "period": 79176, + "thread": 20 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 211111, + "thread": 11 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 475119, + "thread": 11 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 629580, + "thread": 18 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 787053, + "thread": 4 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 943042, + "thread": 6 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1021509, + "thread": 15 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1299816, + "thread": 7 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1404849, + "thread": 30 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1612481, + "thread": 21 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1709907, + "thread": 0 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 1882603, + "thread": 28 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2035478, + "thread": 19 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2144236, + "thread": 20 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2396125, + "thread": 1 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2556552, + "thread": 5 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2776878, + "thread": 4 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 2868346, + "thread": 0 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 3110161, + "thread": 27 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 3223190, + "thread": 3 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 3309668, + "thread": 14 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 3458002, + "thread": 23 + } + }, + { + "amount": "557.408636369", + "slot": { + "period": 3678746, + "thread": 29 + } + }, + { + "amount": "557.408636372", + "slot": { + "period": 3834250, + "thread": 10 + } + } + ], + "AU121LqDDrfVMy4qH3JHyYwGVbJ5P2Nurv3WYKjC3bxNxH5CA3vqK": [ + { + "amount": "221.140813513", + "slot": { + "period": 135987, + "thread": 3 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 242121, + "thread": 8 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 349830, + "thread": 13 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 553556, + "thread": 16 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 722900, + "thread": 8 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 916593, + "thread": 10 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1145522, + "thread": 2 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1316556, + "thread": 18 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1393434, + "thread": 10 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1535059, + "thread": 20 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1702849, + "thread": 26 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 1881072, + "thread": 15 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2069374, + "thread": 8 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2170896, + "thread": 9 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2318665, + "thread": 19 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2498355, + "thread": 2 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2788163, + "thread": 19 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2860603, + "thread": 5 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 2995102, + "thread": 26 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 3239982, + "thread": 13 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 3410097, + "thread": 25 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 3525242, + "thread": 29 + } + }, + { + "amount": "221.140813513", + "slot": { + "period": 3649912, + "thread": 31 + } + }, + { + "amount": "221.140813502", + "slot": { + "period": 3860473, + "thread": 11 + } + } + ], + "AU121M3KL4GKKvuqbCKz7J3PDsv1WuniZxj4MFafqXz6WNCn3Hytn": [ + { + "amount": "694.951649224", + "slot": { + "period": 167343, + "thread": 29 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 212259, + "thread": 19 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 349737, + "thread": 6 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 649458, + "thread": 16 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 726407, + "thread": 11 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 868149, + "thread": 14 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1001340, + "thread": 26 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1253493, + "thread": 22 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1415448, + "thread": 22 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1549766, + "thread": 4 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1701976, + "thread": 7 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 1972890, + "thread": 0 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2066291, + "thread": 3 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2249198, + "thread": 0 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2460349, + "thread": 10 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2498403, + "thread": 1 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2725896, + "thread": 12 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 2860699, + "thread": 13 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 3002345, + "thread": 14 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 3285224, + "thread": 14 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 3431142, + "thread": 6 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 3471295, + "thread": 20 + } + }, + { + "amount": "694.951649224", + "slot": { + "period": 3716646, + "thread": 3 + } + }, + { + "amount": "694.951649221", + "slot": { + "period": 3946816, + "thread": 11 + } + } + ], + "AU121ME3WFk9NC6C9fv2QvSmbRpnrJPgWrRaUryhkNyQ14gKLWYsW": [ + { + "amount": "258.564658516", + "slot": { + "period": 58963, + "thread": 12 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 322725, + "thread": 8 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 398692, + "thread": 25 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 522788, + "thread": 23 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 732204, + "thread": 6 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 913898, + "thread": 4 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 990188, + "thread": 30 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1162442, + "thread": 13 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1327712, + "thread": 2 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1543590, + "thread": 18 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1789754, + "thread": 10 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1902246, + "thread": 2 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 1988247, + "thread": 29 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 2183357, + "thread": 16 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 2370812, + "thread": 16 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 2484607, + "thread": 4 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 2740944, + "thread": 14 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 2850420, + "thread": 4 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 3003331, + "thread": 8 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 3167089, + "thread": 6 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 3351930, + "thread": 16 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 3550630, + "thread": 2 + } + }, + { + "amount": "258.564658516", + "slot": { + "period": 3713875, + "thread": 14 + } + }, + { + "amount": "258.564658511", + "slot": { + "period": 3892552, + "thread": 26 + } + } + ], + "AU121MjNCZgKrVdXjB648t5ZEpH9p5VjXHHTsjMHKjNSYrTxFcFHk": [ + { + "amount": "524.633187603", + "slot": { + "period": 164440, + "thread": 19 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 271473, + "thread": 1 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 432860, + "thread": 2 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 590395, + "thread": 9 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 689454, + "thread": 7 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 938518, + "thread": 2 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1000264, + "thread": 12 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1150784, + "thread": 22 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1399979, + "thread": 29 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1514637, + "thread": 15 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1715523, + "thread": 11 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 1945784, + "thread": 14 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2040595, + "thread": 1 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2294322, + "thread": 1 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2312757, + "thread": 29 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2583106, + "thread": 18 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2763532, + "thread": 29 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2792173, + "thread": 5 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 2991746, + "thread": 21 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 3193119, + "thread": 28 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 3295358, + "thread": 28 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 3472835, + "thread": 4 + } + }, + { + "amount": "524.633187603", + "slot": { + "period": 3654453, + "thread": 25 + } + }, + { + "amount": "524.633187614", + "slot": { + "period": 3919353, + "thread": 21 + } + } + ], + "AU121MsMZ1onHMsfr7Xt1Bg6tu3KeV5M5e4LMBamyQ9ibWPtpSex9": [ + { + "amount": "192.066679412", + "slot": { + "period": 102212, + "thread": 9 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 291042, + "thread": 21 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 356319, + "thread": 16 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 595130, + "thread": 27 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 689214, + "thread": 6 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 832793, + "thread": 2 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1054986, + "thread": 23 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1231920, + "thread": 7 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1360836, + "thread": 28 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1638800, + "thread": 24 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1664644, + "thread": 18 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 1939099, + "thread": 31 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2108623, + "thread": 21 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2246354, + "thread": 5 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2367839, + "thread": 2 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2546143, + "thread": 20 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2654008, + "thread": 24 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 2838690, + "thread": 5 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 3038994, + "thread": 20 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 3246691, + "thread": 28 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 3305251, + "thread": 2 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 3567441, + "thread": 18 + } + }, + { + "amount": "192.066679412", + "slot": { + "period": 3687190, + "thread": 16 + } + }, + { + "amount": "192.066679402", + "slot": { + "period": 3830790, + "thread": 1 + } + } + ], + "AU121PeWMHTr7XGmzjaT8hQePi1vR4AS7R5dYhAbrfLaDqo82LmkF": [ + { + "amount": "347.891856327", + "slot": { + "period": 109456, + "thread": 30 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 233177, + "thread": 2 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 374748, + "thread": 8 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 582810, + "thread": 1 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 698298, + "thread": 3 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 874408, + "thread": 30 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1073882, + "thread": 12 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1177038, + "thread": 23 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1374932, + "thread": 14 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1606730, + "thread": 31 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1650664, + "thread": 11 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 1854463, + "thread": 25 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2015449, + "thread": 4 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2239154, + "thread": 22 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2297228, + "thread": 7 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2467742, + "thread": 13 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2745307, + "thread": 28 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 2846661, + "thread": 27 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 3090740, + "thread": 5 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 3175853, + "thread": 12 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 3358122, + "thread": 19 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 3523010, + "thread": 31 + } + }, + { + "amount": "347.891856327", + "slot": { + "period": 3761246, + "thread": 1 + } + }, + { + "amount": "347.891856337", + "slot": { + "period": 3805852, + "thread": 31 + } + } + ], + "AU121Po4SroYeHQggM5D6cuMs3sXTSwFSt4GZdN1ZbpWG3RCrV7iz": [ + { + "amount": "295.986808090", + "slot": { + "period": 79652, + "thread": 17 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 217060, + "thread": 17 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 343258, + "thread": 19 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 509245, + "thread": 0 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 734083, + "thread": 31 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 870679, + "thread": 31 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1013839, + "thread": 25 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1270341, + "thread": 7 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1441308, + "thread": 13 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1630893, + "thread": 18 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1742171, + "thread": 12 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 1842331, + "thread": 27 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2046595, + "thread": 8 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2225495, + "thread": 28 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2323477, + "thread": 17 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2600585, + "thread": 12 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2781983, + "thread": 29 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2833288, + "thread": 15 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 2999943, + "thread": 19 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 3139356, + "thread": 28 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 3338823, + "thread": 23 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 3616464, + "thread": 14 + } + }, + { + "amount": "295.986808090", + "slot": { + "period": 3693501, + "thread": 28 + } + }, + { + "amount": "295.986808083", + "slot": { + "period": 3936688, + "thread": 8 + } + } + ], + "AU121PvPPyJtR3E7RGagNipgEuLwBTibrbRnxag45bCFodXxZxHEf": [ + { + "amount": "52.234254368", + "slot": { + "period": 83727, + "thread": 23 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 261462, + "thread": 14 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 459816, + "thread": 18 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 636057, + "thread": 6 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 654363, + "thread": 7 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 867813, + "thread": 6 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1032262, + "thread": 7 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1297454, + "thread": 29 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1412531, + "thread": 15 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1547239, + "thread": 10 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1712792, + "thread": 7 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1952862, + "thread": 20 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 1993822, + "thread": 9 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 2204939, + "thread": 9 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 2423637, + "thread": 3 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 2548384, + "thread": 2 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 2699920, + "thread": 0 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 2793633, + "thread": 2 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 3045633, + "thread": 6 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 3265189, + "thread": 15 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 3404425, + "thread": 22 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 3555729, + "thread": 28 + } + }, + { + "amount": "52.234254368", + "slot": { + "period": 3654608, + "thread": 27 + } + }, + { + "amount": "52.234254373", + "slot": { + "period": 3840153, + "thread": 28 + } + } + ], + "AU121RsuV9dAv9gisdRrtsCStYcPH2e8zZ3d2mnua9dbAtVd5TUGG": [ + { + "amount": "94.370485408", + "slot": { + "period": 163283, + "thread": 9 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 300289, + "thread": 4 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 401784, + "thread": 18 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 499856, + "thread": 20 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 653694, + "thread": 9 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 864583, + "thread": 0 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1085227, + "thread": 8 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1212798, + "thread": 31 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1406986, + "thread": 11 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1642571, + "thread": 13 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1727070, + "thread": 12 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 1956057, + "thread": 0 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2038746, + "thread": 22 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2291441, + "thread": 7 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2339549, + "thread": 11 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2538171, + "thread": 17 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2740537, + "thread": 3 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 2886216, + "thread": 25 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 3112943, + "thread": 18 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 3169699, + "thread": 15 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 3319570, + "thread": 6 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 3571522, + "thread": 19 + } + }, + { + "amount": "94.370485408", + "slot": { + "period": 3655444, + "thread": 0 + } + }, + { + "amount": "94.370485404", + "slot": { + "period": 3806571, + "thread": 23 + } + } + ], + "AU121SNaMxNFDo5ASwrp7jiyMPmgu2ev3gu8YZaVCD7Z56rNzpgUv": [ + { + "amount": "286.537624761", + "slot": { + "period": 83526, + "thread": 16 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 225569, + "thread": 21 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 409151, + "thread": 18 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 606513, + "thread": 11 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 706557, + "thread": 30 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 853212, + "thread": 27 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1092076, + "thread": 13 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1202057, + "thread": 2 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1357298, + "thread": 8 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1487361, + "thread": 31 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1734114, + "thread": 2 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1920949, + "thread": 6 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 1990769, + "thread": 4 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 2184094, + "thread": 2 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 2306209, + "thread": 23 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 2600950, + "thread": 11 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 2692070, + "thread": 20 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 2904594, + "thread": 3 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 3092571, + "thread": 22 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 3165243, + "thread": 25 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 3418203, + "thread": 27 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 3547769, + "thread": 20 + } + }, + { + "amount": "286.537624761", + "slot": { + "period": 3726816, + "thread": 8 + } + }, + { + "amount": "286.537624767", + "slot": { + "period": 3817403, + "thread": 10 + } + } + ], + "AU121SYW7iFF8MrZ5f2gad5LwY5AbxFhREADjQSqhkM9K1sXC5NBk": [ + { + "amount": "137.613369374", + "slot": { + "period": 21803, + "thread": 4 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 185600, + "thread": 31 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 459475, + "thread": 22 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 602904, + "thread": 28 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 717253, + "thread": 18 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 891332, + "thread": 22 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1004498, + "thread": 15 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1220883, + "thread": 2 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1379640, + "thread": 8 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1491992, + "thread": 23 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1778757, + "thread": 14 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 1973754, + "thread": 7 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2088283, + "thread": 6 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2154992, + "thread": 7 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2350884, + "thread": 28 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2549537, + "thread": 19 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2780796, + "thread": 20 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 2879839, + "thread": 1 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 3115458, + "thread": 0 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 3256092, + "thread": 12 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 3416250, + "thread": 12 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 3538221, + "thread": 13 + } + }, + { + "amount": "137.613369374", + "slot": { + "period": 3653947, + "thread": 14 + } + }, + { + "amount": "137.613369379", + "slot": { + "period": 3928226, + "thread": 2 + } + } + ], + "AU121SfZA9MfGCaKi4gKAwbmiTH4YUMn7YkMokFwR2c28uaA5zMbR": [ + { + "amount": "171.549801897", + "slot": { + "period": 42395, + "thread": 6 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 321722, + "thread": 18 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 466109, + "thread": 24 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 592278, + "thread": 21 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 704512, + "thread": 1 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 924099, + "thread": 3 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1102686, + "thread": 5 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1226120, + "thread": 17 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1462499, + "thread": 22 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1504478, + "thread": 2 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1655358, + "thread": 23 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 1851613, + "thread": 20 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2054000, + "thread": 22 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2203127, + "thread": 19 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2336941, + "thread": 19 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2501657, + "thread": 5 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2721717, + "thread": 15 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 2931931, + "thread": 6 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 3080034, + "thread": 30 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 3285122, + "thread": 18 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 3364499, + "thread": 29 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 3488242, + "thread": 24 + } + }, + { + "amount": "171.549801897", + "slot": { + "period": 3758637, + "thread": 13 + } + }, + { + "amount": "171.549801888", + "slot": { + "period": 3827165, + "thread": 14 + } + } + ], + "AU121SwUaHsbM1wH9pVc118TiFsbb4xFQ24dqFrGzs9F9eigJH1VW": [ + { + "amount": "62.816328804", + "slot": { + "period": 15253, + "thread": 27 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 189088, + "thread": 10 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 324108, + "thread": 29 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 541212, + "thread": 27 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 728843, + "thread": 1 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 964609, + "thread": 13 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1017594, + "thread": 13 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1283066, + "thread": 15 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1420766, + "thread": 20 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1615767, + "thread": 22 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1744436, + "thread": 20 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 1933346, + "thread": 5 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2040091, + "thread": 0 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2272481, + "thread": 21 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2318092, + "thread": 2 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2471720, + "thread": 24 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2678797, + "thread": 25 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 2911654, + "thread": 2 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 3067436, + "thread": 26 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 3188290, + "thread": 3 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 3307648, + "thread": 4 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 3497728, + "thread": 17 + } + }, + { + "amount": "62.816328804", + "slot": { + "period": 3680605, + "thread": 10 + } + }, + { + "amount": "62.816328808", + "slot": { + "period": 3803787, + "thread": 24 + } + } + ], + "AU121TQUZ8ijvfsFgXgTFDRjdaE6h23DhwJAP1qzsLkaCQ8PMurNK": [ + { + "amount": "151.011256586", + "slot": { + "period": 12394, + "thread": 24 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 311724, + "thread": 24 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 419224, + "thread": 8 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 495192, + "thread": 23 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 680225, + "thread": 20 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 929608, + "thread": 7 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1116335, + "thread": 23 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1273237, + "thread": 7 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1375644, + "thread": 21 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1600111, + "thread": 2 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1687486, + "thread": 13 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 1869640, + "thread": 13 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2114363, + "thread": 14 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2206318, + "thread": 20 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2434563, + "thread": 15 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2492022, + "thread": 12 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2747325, + "thread": 12 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 2901144, + "thread": 30 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 3054138, + "thread": 26 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 3237311, + "thread": 29 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 3433359, + "thread": 7 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 3539598, + "thread": 19 + } + }, + { + "amount": "151.011256586", + "slot": { + "period": 3758707, + "thread": 21 + } + }, + { + "amount": "151.011256582", + "slot": { + "period": 3868785, + "thread": 5 + } + } + ], + "AU121U9Uteq4n9EXTYNbWBtcGJFTxNDkXzszARJSVhZ1FEREFLw91": [ + { + "amount": "502.969001857", + "slot": { + "period": 85126, + "thread": 18 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 247770, + "thread": 23 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 431045, + "thread": 27 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 559395, + "thread": 24 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 675094, + "thread": 18 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 850765, + "thread": 21 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1083364, + "thread": 25 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1154712, + "thread": 1 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1324558, + "thread": 8 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1529873, + "thread": 26 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1792272, + "thread": 22 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 1826141, + "thread": 14 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2027277, + "thread": 29 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2250573, + "thread": 0 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2333276, + "thread": 13 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2621510, + "thread": 12 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2661418, + "thread": 7 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 2894985, + "thread": 11 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 3066132, + "thread": 14 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 3195271, + "thread": 29 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 3304049, + "thread": 27 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 3532896, + "thread": 4 + } + }, + { + "amount": "502.969001857", + "slot": { + "period": 3743351, + "thread": 30 + } + }, + { + "amount": "502.969001864", + "slot": { + "period": 3870827, + "thread": 16 + } + } + ], + "AU121UJycwtBtHnoxa46TkHxpL81xBVsymNM4JVboXQZ4X8PupUrB": [ + { + "amount": "140.578306435", + "slot": { + "period": 139208, + "thread": 18 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 280731, + "thread": 1 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 326033, + "thread": 1 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 632787, + "thread": 19 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 693823, + "thread": 31 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 852829, + "thread": 30 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1148020, + "thread": 6 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1191270, + "thread": 26 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1385636, + "thread": 21 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1633138, + "thread": 7 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1716549, + "thread": 31 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 1877922, + "thread": 4 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2011232, + "thread": 18 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2213874, + "thread": 30 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2400688, + "thread": 28 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2464887, + "thread": 11 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2670795, + "thread": 26 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2922904, + "thread": 6 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 2982968, + "thread": 8 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 3121243, + "thread": 31 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 3319141, + "thread": 6 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 3540569, + "thread": 15 + } + }, + { + "amount": "140.578306435", + "slot": { + "period": 3719481, + "thread": 6 + } + }, + { + "amount": "140.578306443", + "slot": { + "period": 3795229, + "thread": 26 + } + } + ], + "AU121URREU3z6HPZaxRL1fXKyZwRK7bKPmYdwAnB3GYxdTSE1q6ZZ": [ + { + "amount": "111.095644944", + "slot": { + "period": 157787, + "thread": 21 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 322405, + "thread": 8 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 429464, + "thread": 19 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 612608, + "thread": 20 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 668553, + "thread": 23 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 855265, + "thread": 12 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1011992, + "thread": 12 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1300652, + "thread": 26 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1328248, + "thread": 4 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1592898, + "thread": 0 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1700688, + "thread": 22 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 1902734, + "thread": 21 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2088719, + "thread": 27 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2273201, + "thread": 26 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2295542, + "thread": 2 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2528761, + "thread": 27 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2740810, + "thread": 14 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2828287, + "thread": 2 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 2992372, + "thread": 25 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 3243460, + "thread": 7 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 3408144, + "thread": 6 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 3495536, + "thread": 10 + } + }, + { + "amount": "111.095644944", + "slot": { + "period": 3726805, + "thread": 26 + } + }, + { + "amount": "111.095644943", + "slot": { + "period": 3870254, + "thread": 4 + } + } + ], + "AU121Uxa7di23TqH7FBzKdPQospBx6tqie2jYiGQV2JMZKcevCTgR": [ + { + "amount": "108.451509691", + "slot": { + "period": 126478, + "thread": 28 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 318716, + "thread": 13 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 448410, + "thread": 9 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 533410, + "thread": 27 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 795999, + "thread": 5 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 830943, + "thread": 1 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1145338, + "thread": 28 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1194660, + "thread": 29 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1320430, + "thread": 22 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1641117, + "thread": 4 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1791625, + "thread": 25 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 1902550, + "thread": 29 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2136625, + "thread": 9 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2181493, + "thread": 26 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2417706, + "thread": 25 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2561659, + "thread": 11 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2764580, + "thread": 0 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2833451, + "thread": 5 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 2986948, + "thread": 22 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 3242390, + "thread": 19 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 3359474, + "thread": 26 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 3605594, + "thread": 10 + } + }, + { + "amount": "108.451509691", + "slot": { + "period": 3618154, + "thread": 17 + } + }, + { + "amount": "108.451509702", + "slot": { + "period": 3809473, + "thread": 24 + } + } + ], + "AU121Vk3Wa32RBUSd6wors4cHj5aVa7gjvHYrVqRagQaq733XLTKa": [ + { + "amount": "57.574614137", + "slot": { + "period": 106574, + "thread": 7 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 323176, + "thread": 21 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 455466, + "thread": 18 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 574485, + "thread": 3 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 732870, + "thread": 14 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 937357, + "thread": 20 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 993292, + "thread": 25 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 1284645, + "thread": 28 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 1455236, + "thread": 16 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 1541279, + "thread": 24 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 1758494, + "thread": 0 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 1823520, + "thread": 22 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2001286, + "thread": 3 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2224662, + "thread": 17 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2380484, + "thread": 27 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2575821, + "thread": 27 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2703876, + "thread": 17 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2895566, + "thread": 3 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 2956641, + "thread": 28 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 3199478, + "thread": 1 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 3431210, + "thread": 21 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 3541267, + "thread": 7 + } + }, + { + "amount": "57.574614137", + "slot": { + "period": 3712313, + "thread": 14 + } + }, + { + "amount": "57.574614134", + "slot": { + "period": 3862984, + "thread": 25 + } + } + ], + "AU121Wfc8o2H9FFxwD96HhCG2qEvsFBHeu6NvRvUaomRnhMfpj2cY": [ + { + "amount": "225.594971196", + "slot": { + "period": 97616, + "thread": 25 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 316986, + "thread": 10 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 489555, + "thread": 25 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 497540, + "thread": 13 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 689426, + "thread": 13 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 846365, + "thread": 24 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1138752, + "thread": 21 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1273038, + "thread": 17 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1433989, + "thread": 12 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1600067, + "thread": 19 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1729391, + "thread": 19 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 1833801, + "thread": 6 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2069623, + "thread": 15 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2172869, + "thread": 1 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2367203, + "thread": 28 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2567128, + "thread": 21 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2765390, + "thread": 19 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 2941474, + "thread": 14 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 3036508, + "thread": 9 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 3161227, + "thread": 20 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 3310446, + "thread": 20 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 3537596, + "thread": 21 + } + }, + { + "amount": "225.594971196", + "slot": { + "period": 3675788, + "thread": 21 + } + }, + { + "amount": "225.594971189", + "slot": { + "period": 3907809, + "thread": 17 + } + } + ], + "AU121X6o9wBUgsJbqMDB8ymjX6bZBcWsHV7od2X4rNUdpmbejsqTQ": [ + { + "amount": "320.662853879", + "slot": { + "period": 140895, + "thread": 25 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 199221, + "thread": 28 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 390583, + "thread": 15 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 535395, + "thread": 16 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 738093, + "thread": 22 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 932575, + "thread": 21 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 988981, + "thread": 14 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 1277560, + "thread": 4 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 1371582, + "thread": 13 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 1593455, + "thread": 12 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 1806843, + "thread": 21 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 1888946, + "thread": 9 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2024282, + "thread": 2 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2170595, + "thread": 27 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2376386, + "thread": 25 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2622721, + "thread": 28 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2737056, + "thread": 13 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 2860077, + "thread": 20 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 3022793, + "thread": 27 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 3133672, + "thread": 19 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 3295318, + "thread": 12 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 3498610, + "thread": 1 + } + }, + { + "amount": "320.662853879", + "slot": { + "period": 3753091, + "thread": 15 + } + }, + { + "amount": "320.662853881", + "slot": { + "period": 3823203, + "thread": 24 + } + } + ], + "AU121XNXjzbXuivvq1iN648CfgyJxk6z5EPkWW2TzhjzMQzpHox54": [ + { + "amount": "215.402368836", + "slot": { + "period": 75243, + "thread": 18 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 209522, + "thread": 24 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 375207, + "thread": 28 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 601616, + "thread": 21 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 662736, + "thread": 21 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 828906, + "thread": 28 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1100567, + "thread": 19 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1240732, + "thread": 30 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1416901, + "thread": 20 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1633066, + "thread": 0 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1720033, + "thread": 12 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 1840162, + "thread": 0 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2104476, + "thread": 28 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2214765, + "thread": 1 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2361803, + "thread": 0 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2606199, + "thread": 27 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2721798, + "thread": 2 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 2936995, + "thread": 30 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3062308, + "thread": 24 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3186610, + "thread": 26 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3344277, + "thread": 0 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3451775, + "thread": 6 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3667068, + "thread": 22 + } + }, + { + "amount": "215.402368836", + "slot": { + "period": 3796666, + "thread": 19 + } + } + ], + "AU121XcUCXYuDRR1zLR2or4W6UJXJAwMqSCK3VmTNGn36YtZp6UzN": [ + { + "amount": "108.751645003", + "slot": { + "period": 92502, + "thread": 27 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 214123, + "thread": 25 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 364887, + "thread": 18 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 547523, + "thread": 14 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 785973, + "thread": 29 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 977024, + "thread": 8 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1010308, + "thread": 16 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1267219, + "thread": 24 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1458813, + "thread": 10 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1536112, + "thread": 25 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1723374, + "thread": 19 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 1883830, + "thread": 15 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2058304, + "thread": 15 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2262231, + "thread": 18 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2363094, + "thread": 22 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2620455, + "thread": 19 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2711602, + "thread": 11 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 2953575, + "thread": 14 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 3027733, + "thread": 25 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 3249293, + "thread": 24 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 3318310, + "thread": 18 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 3467143, + "thread": 10 + } + }, + { + "amount": "108.751645003", + "slot": { + "period": 3774102, + "thread": 20 + } + }, + { + "amount": "108.751645013", + "slot": { + "period": 3836892, + "thread": 10 + } + } + ], + "AU121ZBcduBGLBB7xiMLMChfspo9iNUeFEHMokc3dpacnTcqctLLW": [ + { + "amount": "288.107896341", + "slot": { + "period": 45825, + "thread": 7 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 275212, + "thread": 31 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 383937, + "thread": 31 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 635975, + "thread": 11 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 700173, + "thread": 21 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 851044, + "thread": 4 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1122939, + "thread": 30 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1292567, + "thread": 27 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1399727, + "thread": 18 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1547812, + "thread": 24 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1689237, + "thread": 30 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 1932212, + "thread": 8 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2096071, + "thread": 1 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2204676, + "thread": 0 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2322624, + "thread": 18 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2556168, + "thread": 9 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2762174, + "thread": 21 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 2831247, + "thread": 11 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 3021737, + "thread": 24 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 3152743, + "thread": 13 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 3300093, + "thread": 19 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 3602994, + "thread": 26 + } + }, + { + "amount": "288.107896341", + "slot": { + "period": 3651273, + "thread": 14 + } + }, + { + "amount": "288.107896335", + "slot": { + "period": 3842968, + "thread": 21 + } + } + ], + "AU121a3nfyRD1epek9F2gdCpFCM6M9d1ZMwXm8p5M9QkrMdrvocJM": [ + { + "amount": "119.868919882", + "slot": { + "period": 104992, + "thread": 21 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 235473, + "thread": 4 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 374767, + "thread": 29 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 604129, + "thread": 22 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 695324, + "thread": 25 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 831567, + "thread": 0 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1027273, + "thread": 3 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1263210, + "thread": 2 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1402956, + "thread": 27 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1490078, + "thread": 12 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1716653, + "thread": 3 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 1957949, + "thread": 23 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2059709, + "thread": 28 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2240384, + "thread": 0 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2310631, + "thread": 3 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2535074, + "thread": 15 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2760571, + "thread": 7 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2947844, + "thread": 22 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 2965812, + "thread": 8 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 3262619, + "thread": 24 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 3344377, + "thread": 27 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 3549475, + "thread": 19 + } + }, + { + "amount": "119.868919882", + "slot": { + "period": 3720906, + "thread": 19 + } + }, + { + "amount": "119.868919881", + "slot": { + "period": 3827028, + "thread": 7 + } + } + ], + "AU121aAtAkxUFX4g3ZHXuWXwx2q2TSHHfoWSY937g4gQ4AUGGY7m5": [ + { + "amount": "275.802673642", + "slot": { + "period": 128433, + "thread": 8 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 309322, + "thread": 29 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 378102, + "thread": 30 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 622355, + "thread": 20 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 696187, + "thread": 28 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 850099, + "thread": 19 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1087225, + "thread": 17 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1193758, + "thread": 30 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1474811, + "thread": 5 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1506701, + "thread": 2 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1661804, + "thread": 15 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 1969870, + "thread": 26 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2067946, + "thread": 9 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2214816, + "thread": 0 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2396138, + "thread": 20 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2611262, + "thread": 3 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2682765, + "thread": 25 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2836676, + "thread": 12 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 2964496, + "thread": 22 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 3263202, + "thread": 18 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 3301957, + "thread": 22 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 3480958, + "thread": 25 + } + }, + { + "amount": "275.802673642", + "slot": { + "period": 3769693, + "thread": 3 + } + }, + { + "amount": "275.802673651", + "slot": { + "period": 3848539, + "thread": 6 + } + } + ], + "AU121ab2unhApDUEgmUf36nng1pZaFpdBJSYPL8ecSmx75Bkxa99n": [ + { + "amount": "192.651325053", + "slot": { + "period": 133868, + "thread": 13 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 302994, + "thread": 17 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 397444, + "thread": 3 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 649446, + "thread": 10 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 788532, + "thread": 27 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 856375, + "thread": 3 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1053208, + "thread": 10 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1160365, + "thread": 1 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1337719, + "thread": 3 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1594128, + "thread": 1 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1648844, + "thread": 6 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1926955, + "thread": 25 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 1999363, + "thread": 2 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2187593, + "thread": 8 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2461202, + "thread": 20 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2510828, + "thread": 25 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2719522, + "thread": 4 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2943478, + "thread": 20 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 2966382, + "thread": 21 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 3192162, + "thread": 24 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 3307846, + "thread": 3 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 3470699, + "thread": 15 + } + }, + { + "amount": "192.651325053", + "slot": { + "period": 3638614, + "thread": 19 + } + }, + { + "amount": "192.651325047", + "slot": { + "period": 3806296, + "thread": 18 + } + } + ], + "AU121bjXnYEbowfCn5NHwQfpmLaijjB7q5H98XZfzBeLGLdggtr2x": [ + { + "amount": "440.670053866", + "slot": { + "period": 80450, + "thread": 27 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 222526, + "thread": 1 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 347244, + "thread": 30 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 578351, + "thread": 5 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 765077, + "thread": 25 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 873843, + "thread": 25 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1005026, + "thread": 12 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1273767, + "thread": 23 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1445091, + "thread": 21 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1513034, + "thread": 8 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1729593, + "thread": 24 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1898174, + "thread": 11 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 1976756, + "thread": 23 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 2218938, + "thread": 18 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 2427612, + "thread": 4 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 2571754, + "thread": 19 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 2708465, + "thread": 25 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 2859939, + "thread": 12 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 3037817, + "thread": 9 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 3162578, + "thread": 9 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 3300905, + "thread": 20 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 3614344, + "thread": 19 + } + }, + { + "amount": "440.670053866", + "slot": { + "period": 3743778, + "thread": 28 + } + }, + { + "amount": "440.670053870", + "slot": { + "period": 3808039, + "thread": 11 + } + } + ], + "AU121cDMHf8v1pc65NvSogmRoX7FNB2YjTfu3D41b9xdG9GzSadB": [ + { + "amount": "445.774120256", + "slot": { + "period": 106417, + "thread": 27 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 193554, + "thread": 6 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 440393, + "thread": 14 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 542567, + "thread": 24 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 799673, + "thread": 8 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 918227, + "thread": 20 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1056489, + "thread": 22 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1180701, + "thread": 25 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1418737, + "thread": 21 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1629215, + "thread": 31 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1675811, + "thread": 11 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 1971504, + "thread": 23 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2049351, + "thread": 17 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2210966, + "thread": 1 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2405693, + "thread": 4 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2554145, + "thread": 21 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2691302, + "thread": 25 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 2831874, + "thread": 4 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 3036181, + "thread": 17 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 3254833, + "thread": 9 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 3449513, + "thread": 6 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 3613023, + "thread": 0 + } + }, + { + "amount": "445.774120256", + "slot": { + "period": 3680537, + "thread": 12 + } + }, + { + "amount": "445.774120266", + "slot": { + "period": 3782052, + "thread": 22 + } + } + ], + "AU121cw7pwc3Pmg95UuWHW7B4jLhLRB5Zz9vewWoynnPcVHknikHk": [ + { + "amount": "5970.416666667", + "slot": { + "period": 35756, + "thread": 4 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 299246, + "thread": 30 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 452023, + "thread": 7 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 503522, + "thread": 28 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 683892, + "thread": 19 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 942681, + "thread": 15 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1127326, + "thread": 4 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1164016, + "thread": 28 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1423288, + "thread": 27 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1591613, + "thread": 5 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1689634, + "thread": 7 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1895257, + "thread": 31 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2012411, + "thread": 7 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2259362, + "thread": 26 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2311937, + "thread": 21 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2541791, + "thread": 23 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2763301, + "thread": 11 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2920152, + "thread": 2 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3119218, + "thread": 17 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3176792, + "thread": 11 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3315791, + "thread": 13 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3607891, + "thread": 15 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3636464, + "thread": 30 + } + }, + { + "amount": "5970.416666659", + "slot": { + "period": 3817430, + "thread": 23 + } + } + ], + "AU121fQMMaecg6CA3EtMyxNRPEUHypKWm5idiinbJkptnoATz721Z": [ + { + "amount": "215.767538519", + "slot": { + "period": 109824, + "thread": 4 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 288570, + "thread": 0 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 336425, + "thread": 3 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 562897, + "thread": 20 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 787144, + "thread": 1 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 959920, + "thread": 31 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1137293, + "thread": 4 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1208959, + "thread": 25 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1340139, + "thread": 6 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1640153, + "thread": 0 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1682962, + "thread": 16 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 1906447, + "thread": 19 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2138286, + "thread": 21 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2267173, + "thread": 10 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2329400, + "thread": 12 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2506447, + "thread": 24 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2724608, + "thread": 3 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2842215, + "thread": 12 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 2995787, + "thread": 10 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 3234351, + "thread": 7 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 3369711, + "thread": 5 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 3459035, + "thread": 23 + } + }, + { + "amount": "215.767538519", + "slot": { + "period": 3642085, + "thread": 1 + } + }, + { + "amount": "215.767538516", + "slot": { + "period": 3826345, + "thread": 2 + } + } + ], + "AU121faY8yS3VhW7fsTQ35bDx25eSgmfg4caejUh1EVKAg4f2aspp": [ + { + "amount": "131.314968015", + "slot": { + "period": 37460, + "thread": 29 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 202555, + "thread": 29 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 425175, + "thread": 14 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 566709, + "thread": 19 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 715634, + "thread": 9 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 961237, + "thread": 9 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1007678, + "thread": 4 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1307903, + "thread": 14 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1470943, + "thread": 21 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1491807, + "thread": 22 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1648978, + "thread": 29 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 1872424, + "thread": 8 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2097108, + "thread": 18 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2294205, + "thread": 10 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2295063, + "thread": 30 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2595289, + "thread": 29 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2684819, + "thread": 16 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 2870011, + "thread": 13 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 3098429, + "thread": 7 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 3128566, + "thread": 17 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 3403617, + "thread": 10 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 3530601, + "thread": 28 + } + }, + { + "amount": "131.314968015", + "slot": { + "period": 3659036, + "thread": 0 + } + }, + { + "amount": "131.314968025", + "slot": { + "period": 3790325, + "thread": 23 + } + } + ], + "AU121gnt2eNYGG76LPCtizTZvwjxa8AbuKsTVVRPyif3RV6qctZ2A": [ + { + "amount": "189.662739158", + "slot": { + "period": 154686, + "thread": 16 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 278988, + "thread": 16 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 352223, + "thread": 0 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 508476, + "thread": 2 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 803540, + "thread": 4 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 837634, + "thread": 19 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1047270, + "thread": 27 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1162190, + "thread": 20 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1329056, + "thread": 14 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1532647, + "thread": 4 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1656567, + "thread": 29 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 1971491, + "thread": 20 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2135108, + "thread": 28 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2286745, + "thread": 15 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2313956, + "thread": 12 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2535036, + "thread": 25 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2769736, + "thread": 11 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 2920010, + "thread": 3 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 3111840, + "thread": 10 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 3218267, + "thread": 28 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 3417413, + "thread": 23 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 3525812, + "thread": 1 + } + }, + { + "amount": "189.662739158", + "slot": { + "period": 3731599, + "thread": 17 + } + }, + { + "amount": "189.662739149", + "slot": { + "period": 3816871, + "thread": 6 + } + } + ], + "AU121h79wnUGd3NmxpThVfRGER1tAJZ1is5HpW3uzGi7WJogaC4GC": [ + { + "amount": "78.535201844", + "slot": { + "period": 147534, + "thread": 29 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 256687, + "thread": 23 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 476193, + "thread": 9 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 544203, + "thread": 11 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 728607, + "thread": 13 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 825473, + "thread": 4 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1124868, + "thread": 29 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1173378, + "thread": 20 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1401298, + "thread": 23 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1586178, + "thread": 10 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1683230, + "thread": 21 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 1902063, + "thread": 18 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2042156, + "thread": 24 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2149370, + "thread": 9 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2300610, + "thread": 28 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2549291, + "thread": 20 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2758983, + "thread": 23 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 2890959, + "thread": 14 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 3024246, + "thread": 11 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 3249585, + "thread": 20 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 3444198, + "thread": 31 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 3599646, + "thread": 20 + } + }, + { + "amount": "78.535201844", + "slot": { + "period": 3735466, + "thread": 31 + } + }, + { + "amount": "78.535201840", + "slot": { + "period": 3791348, + "thread": 15 + } + } + ], + "AU121hdRwkYjQEs3nzp4Vb1G7hjLwmiMna2EPnMk4Buus6NhXDZwT": [ + { + "amount": "70.489126531", + "slot": { + "period": 79738, + "thread": 11 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 250896, + "thread": 21 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 478260, + "thread": 31 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 575595, + "thread": 20 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 738874, + "thread": 19 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 840922, + "thread": 18 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1150017, + "thread": 27 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1194048, + "thread": 7 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1438577, + "thread": 31 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1625457, + "thread": 29 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1786667, + "thread": 23 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 1947147, + "thread": 4 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2131118, + "thread": 11 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2224176, + "thread": 23 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2414161, + "thread": 25 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2573976, + "thread": 1 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2686568, + "thread": 24 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 2836087, + "thread": 23 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 3026190, + "thread": 8 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 3254661, + "thread": 13 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 3434583, + "thread": 26 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 3480596, + "thread": 25 + } + }, + { + "amount": "70.489126531", + "slot": { + "period": 3619087, + "thread": 5 + } + }, + { + "amount": "70.489126524", + "slot": { + "period": 3907659, + "thread": 18 + } + } + ], + "AU121hzUt8faWd4fkNgtZ9E38vV2tBh1s71hM1QM9qou43VXGcZni": [ + { + "amount": "165.085380477", + "slot": { + "period": 50988, + "thread": 30 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 215040, + "thread": 21 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 429992, + "thread": 19 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 555492, + "thread": 11 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 792497, + "thread": 10 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 950253, + "thread": 0 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1002632, + "thread": 31 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1274292, + "thread": 27 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1360376, + "thread": 14 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1532016, + "thread": 22 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1691869, + "thread": 25 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 1929551, + "thread": 12 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2053366, + "thread": 26 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2286215, + "thread": 12 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2362672, + "thread": 10 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2605917, + "thread": 5 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2632583, + "thread": 20 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 2838139, + "thread": 20 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 3088478, + "thread": 5 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 3204912, + "thread": 27 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 3376857, + "thread": 16 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 3606902, + "thread": 0 + } + }, + { + "amount": "165.085380477", + "slot": { + "period": 3682254, + "thread": 25 + } + }, + { + "amount": "165.085380482", + "slot": { + "period": 3914157, + "thread": 25 + } + } + ], + "AU121iM3iWQwZGq2FhZXF9AiQF3KmWq1b8hMCEK1b6eCMxQHYeSGv": [ + { + "amount": "65.393623211", + "slot": { + "period": 160830, + "thread": 13 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 198364, + "thread": 25 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 433196, + "thread": 15 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 597901, + "thread": 24 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 723806, + "thread": 25 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 965177, + "thread": 2 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1032612, + "thread": 26 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1194295, + "thread": 6 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1476155, + "thread": 31 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1568667, + "thread": 31 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1667741, + "thread": 7 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 1849059, + "thread": 4 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2022346, + "thread": 21 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2204428, + "thread": 27 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2333786, + "thread": 9 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2555506, + "thread": 21 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2732990, + "thread": 26 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 2818293, + "thread": 18 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 3099665, + "thread": 28 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 3260560, + "thread": 19 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 3382115, + "thread": 26 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 3506375, + "thread": 0 + } + }, + { + "amount": "65.393623211", + "slot": { + "period": 3650560, + "thread": 24 + } + }, + { + "amount": "65.393623206", + "slot": { + "period": 3942092, + "thread": 30 + } + } + ], + "AU121iVJQkLqPMFQuoNsSNXtLiMpjr1oo1JGtYH484XR898g7vYKV": [ + { + "amount": "690.686474175", + "slot": { + "period": 23877, + "thread": 24 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 247989, + "thread": 3 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 378308, + "thread": 27 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 555344, + "thread": 0 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 659190, + "thread": 4 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 864992, + "thread": 23 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1043353, + "thread": 25 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1267155, + "thread": 27 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1477619, + "thread": 7 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1546243, + "thread": 25 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1760059, + "thread": 2 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 1849312, + "thread": 7 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2003852, + "thread": 13 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2181248, + "thread": 17 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2335995, + "thread": 4 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2469998, + "thread": 16 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2682914, + "thread": 21 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2878245, + "thread": 30 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 2966970, + "thread": 16 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 3202269, + "thread": 2 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 3405068, + "thread": 4 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 3594957, + "thread": 0 + } + }, + { + "amount": "690.686474175", + "slot": { + "period": 3756368, + "thread": 6 + } + }, + { + "amount": "690.686474164", + "slot": { + "period": 3930480, + "thread": 18 + } + } + ], + "AU121jQLt2HMbBeULe9ETGiEtyhZqqsCpVygCbbXeiw9j479PPgMM": [ + { + "amount": "66.889167572", + "slot": { + "period": 52265, + "thread": 16 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 229470, + "thread": 11 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 388165, + "thread": 17 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 542580, + "thread": 30 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 686966, + "thread": 7 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 841237, + "thread": 28 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 982956, + "thread": 19 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 1206747, + "thread": 23 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 1388556, + "thread": 10 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 1623930, + "thread": 30 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 1774118, + "thread": 10 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 1811914, + "thread": 2 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2045013, + "thread": 28 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2167383, + "thread": 15 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2308957, + "thread": 3 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2545314, + "thread": 20 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2712835, + "thread": 21 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 2902350, + "thread": 14 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 3008066, + "thread": 8 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 3131003, + "thread": 15 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 3316470, + "thread": 4 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 3599657, + "thread": 9 + } + }, + { + "amount": "66.889167572", + "slot": { + "period": 3675821, + "thread": 26 + } + }, + { + "amount": "66.889167567", + "slot": { + "period": 3883496, + "thread": 10 + } + } + ], + "AU121jcFqw5Xnt8U1ApXHzWbvp99Lk7vHdsx6bsSxcjTta7LjBW5k": [ + { + "amount": "133.060805859", + "slot": { + "period": 27216, + "thread": 3 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 186926, + "thread": 15 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 429359, + "thread": 14 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 545883, + "thread": 25 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 654344, + "thread": 3 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 911814, + "thread": 6 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1041813, + "thread": 0 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1153897, + "thread": 8 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1333169, + "thread": 21 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1508722, + "thread": 15 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1781471, + "thread": 12 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 1922372, + "thread": 1 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2047647, + "thread": 11 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2247681, + "thread": 5 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2391233, + "thread": 14 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2585950, + "thread": 12 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2786496, + "thread": 3 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2842783, + "thread": 5 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 2957993, + "thread": 13 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 3158818, + "thread": 19 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 3322025, + "thread": 10 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 3580171, + "thread": 27 + } + }, + { + "amount": "133.060805859", + "slot": { + "period": 3640386, + "thread": 9 + } + }, + { + "amount": "133.060805854", + "slot": { + "period": 3861925, + "thread": 25 + } + } + ], + "AU121k7V8fhD46Ftb7aiMeqVMQQx1ffpb81c3azNJgKZza82hTPhN": [ + { + "amount": "146.430253426", + "slot": { + "period": 41665, + "thread": 14 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 259866, + "thread": 26 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 454408, + "thread": 1 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 494985, + "thread": 30 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 764009, + "thread": 20 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 967482, + "thread": 9 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 983874, + "thread": 6 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 1268917, + "thread": 12 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 1405817, + "thread": 18 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 1506121, + "thread": 16 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 1782322, + "thread": 9 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 1817431, + "thread": 25 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2022540, + "thread": 5 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2269305, + "thread": 2 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2295719, + "thread": 3 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2517071, + "thread": 13 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2757037, + "thread": 23 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 2850210, + "thread": 7 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 3117205, + "thread": 23 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 3223331, + "thread": 19 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 3422604, + "thread": 20 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 3469561, + "thread": 31 + } + }, + { + "amount": "146.430253426", + "slot": { + "period": 3720934, + "thread": 27 + } + }, + { + "amount": "146.430253421", + "slot": { + "period": 3862097, + "thread": 30 + } + } + ], + "AU121kLQZCZkbosZsPmFA5gC4VJD1JUkrqwQrgmyNiaH8eSXn5W2W": [ + { + "amount": "221.196732927", + "slot": { + "period": 137755, + "thread": 5 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 213405, + "thread": 4 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 473888, + "thread": 23 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 534561, + "thread": 10 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 709890, + "thread": 13 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 929270, + "thread": 8 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1005887, + "thread": 27 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1164034, + "thread": 27 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1464201, + "thread": 21 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1507221, + "thread": 27 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1801073, + "thread": 15 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 1863489, + "thread": 7 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2050489, + "thread": 20 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2276042, + "thread": 4 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2424350, + "thread": 26 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2614011, + "thread": 10 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2763136, + "thread": 5 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 2915786, + "thread": 0 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 3093187, + "thread": 9 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 3196460, + "thread": 25 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 3407899, + "thread": 22 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 3525898, + "thread": 22 + } + }, + { + "amount": "221.196732927", + "slot": { + "period": 3634999, + "thread": 10 + } + }, + { + "amount": "221.196732936", + "slot": { + "period": 3832386, + "thread": 18 + } + } + ], + "AU121mUbUJpMRRznnhJgKC6kxzjLFdFW3vx9GqCZ9Soyrek3WXyBY": [ + { + "amount": "122.125864014", + "slot": { + "period": 150734, + "thread": 28 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 246891, + "thread": 19 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 335506, + "thread": 2 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 547316, + "thread": 14 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 722997, + "thread": 10 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 934655, + "thread": 10 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1043869, + "thread": 4 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1230541, + "thread": 13 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1387952, + "thread": 28 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1503850, + "thread": 31 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1769652, + "thread": 7 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 1906411, + "thread": 14 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2066314, + "thread": 15 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2155185, + "thread": 15 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2405789, + "thread": 16 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2510212, + "thread": 3 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2759741, + "thread": 11 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2830273, + "thread": 25 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 2988104, + "thread": 2 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 3146802, + "thread": 17 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 3424366, + "thread": 29 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 3538828, + "thread": 6 + } + }, + { + "amount": "122.125864014", + "slot": { + "period": 3758342, + "thread": 24 + } + }, + { + "amount": "122.125864003", + "slot": { + "period": 3934431, + "thread": 0 + } + } + ], + "AU121nGjM8CWr7XXvku8BfCcmCMuPB759VeCk2z8yBoR3LgTGET92": [ + { + "amount": "107.644402681", + "slot": { + "period": 121355, + "thread": 23 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 288020, + "thread": 22 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 445954, + "thread": 10 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 539801, + "thread": 14 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 816745, + "thread": 3 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 929768, + "thread": 24 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1073470, + "thread": 16 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1238719, + "thread": 3 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1468242, + "thread": 2 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1628660, + "thread": 26 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1688978, + "thread": 10 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 1967756, + "thread": 8 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2126135, + "thread": 17 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2266706, + "thread": 29 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2431253, + "thread": 12 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2532325, + "thread": 1 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2661759, + "thread": 12 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2910654, + "thread": 20 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 2986071, + "thread": 15 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 3266624, + "thread": 0 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 3353343, + "thread": 25 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 3512360, + "thread": 7 + } + }, + { + "amount": "107.644402681", + "slot": { + "period": 3742510, + "thread": 21 + } + }, + { + "amount": "107.644402670", + "slot": { + "period": 3887936, + "thread": 5 + } + } + ], + "AU121nqxBY72Ep9VvNPi3Wh4qSAuPkbBLFKf88PXELyqgBDp3RrR5": [ + { + "amount": "108.942137695", + "slot": { + "period": 58222, + "thread": 14 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 234232, + "thread": 21 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 366596, + "thread": 5 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 630749, + "thread": 27 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 775063, + "thread": 19 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 930798, + "thread": 19 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1019260, + "thread": 12 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1282668, + "thread": 8 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1476529, + "thread": 4 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1596597, + "thread": 5 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1724198, + "thread": 16 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1876497, + "thread": 1 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 1999517, + "thread": 29 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 2167490, + "thread": 7 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 2372930, + "thread": 10 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 2589040, + "thread": 8 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 2734292, + "thread": 6 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 2921065, + "thread": 13 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 3006874, + "thread": 26 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 3248930, + "thread": 9 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 3307947, + "thread": 5 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 3471169, + "thread": 25 + } + }, + { + "amount": "108.942137695", + "slot": { + "period": 3734450, + "thread": 0 + } + }, + { + "amount": "108.942137694", + "slot": { + "period": 3876904, + "thread": 6 + } + } + ], + "AU121oDRvEZbNpusBqiWo7p9tXV6t1ZW7Sy6ruPJhwJb8dsQobUaR": [ + { + "amount": "118.608218142", + "slot": { + "period": 61194, + "thread": 15 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 286113, + "thread": 10 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 407183, + "thread": 12 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 631486, + "thread": 24 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 672170, + "thread": 13 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 880199, + "thread": 0 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1003912, + "thread": 11 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1192521, + "thread": 25 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1389056, + "thread": 5 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1578073, + "thread": 8 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1746650, + "thread": 25 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 1832940, + "thread": 9 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2078157, + "thread": 15 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2218542, + "thread": 5 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2380675, + "thread": 31 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2526598, + "thread": 11 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2719179, + "thread": 8 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 2830732, + "thread": 4 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 3046254, + "thread": 24 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 3145050, + "thread": 14 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 3386328, + "thread": 26 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 3534511, + "thread": 15 + } + }, + { + "amount": "118.608218142", + "slot": { + "period": 3765692, + "thread": 6 + } + }, + { + "amount": "118.608218130", + "slot": { + "period": 3831338, + "thread": 16 + } + } + ], + "AU121oEz9xP9Y5n61rEgtMn4EHR1EV3juvpVPK27Jk6AYBUzLzAh8": [ + { + "amount": "168.602263678", + "slot": { + "period": 85299, + "thread": 29 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 183355, + "thread": 23 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 474479, + "thread": 27 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 500438, + "thread": 9 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 764919, + "thread": 30 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 957591, + "thread": 2 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1062013, + "thread": 19 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1215001, + "thread": 5 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1372290, + "thread": 23 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1544052, + "thread": 17 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1682721, + "thread": 16 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 1850499, + "thread": 17 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2023866, + "thread": 21 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2150146, + "thread": 20 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2418238, + "thread": 1 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2556935, + "thread": 28 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2769638, + "thread": 28 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 2901965, + "thread": 16 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 3083925, + "thread": 27 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 3239705, + "thread": 6 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 3433920, + "thread": 9 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 3517611, + "thread": 9 + } + }, + { + "amount": "168.602263678", + "slot": { + "period": 3725554, + "thread": 25 + } + }, + { + "amount": "168.602263683", + "slot": { + "period": 3862117, + "thread": 26 + } + } + ], + "AU121okBtYfkRGD84YCoerXSA2dX9WRuHCs8jQRCSFbTvP9K7Pf6G": [ + { + "amount": "173.771257968", + "slot": { + "period": 156207, + "thread": 15 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 234977, + "thread": 5 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 356889, + "thread": 22 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 609182, + "thread": 2 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 684663, + "thread": 1 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 894773, + "thread": 21 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1085281, + "thread": 13 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1281387, + "thread": 21 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1389106, + "thread": 5 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1535338, + "thread": 29 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1763413, + "thread": 1 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 1937907, + "thread": 8 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2021353, + "thread": 28 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2248521, + "thread": 31 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2374311, + "thread": 7 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2622834, + "thread": 13 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2753058, + "thread": 22 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2915172, + "thread": 16 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 2973559, + "thread": 9 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 3260406, + "thread": 6 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 3294140, + "thread": 22 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 3583278, + "thread": 13 + } + }, + { + "amount": "173.771257968", + "slot": { + "period": 3762419, + "thread": 31 + } + }, + { + "amount": "173.771257960", + "slot": { + "period": 3909243, + "thread": 28 + } + } + ], + "AU121p3yM3zeszPeTw1oZFAkPmvRtiuPoBAJ7cUguoQz3fZ4YTeYU": [ + { + "amount": "214.097170583", + "slot": { + "period": 98729, + "thread": 30 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 290538, + "thread": 12 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 400334, + "thread": 3 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 513092, + "thread": 29 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 791528, + "thread": 13 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 890220, + "thread": 30 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1109152, + "thread": 1 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1258273, + "thread": 28 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1373989, + "thread": 22 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1486614, + "thread": 18 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1807658, + "thread": 26 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1966837, + "thread": 11 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 1997583, + "thread": 28 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2196146, + "thread": 14 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2384146, + "thread": 5 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2585083, + "thread": 21 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2778653, + "thread": 13 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2885942, + "thread": 18 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 2976512, + "thread": 10 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 3144612, + "thread": 7 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 3392425, + "thread": 4 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 3512430, + "thread": 14 + } + }, + { + "amount": "214.097170583", + "slot": { + "period": 3714573, + "thread": 26 + } + }, + { + "amount": "214.097170587", + "slot": { + "period": 3936314, + "thread": 11 + } + } + ], + "AU121q8Zb9JhsVykawHwVnRqRP4WwdnEzZNtDzvV8G51fQ7VPVPJJ": [ + { + "amount": "57.509127192", + "slot": { + "period": 11908, + "thread": 30 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 190042, + "thread": 6 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 461998, + "thread": 27 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 494735, + "thread": 15 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 653687, + "thread": 2 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 960090, + "thread": 26 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1048190, + "thread": 6 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1266682, + "thread": 25 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1399872, + "thread": 31 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1543619, + "thread": 14 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1789418, + "thread": 8 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 1908685, + "thread": 5 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2023394, + "thread": 30 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2272494, + "thread": 12 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2448495, + "thread": 4 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2585954, + "thread": 9 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2713312, + "thread": 4 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 2856775, + "thread": 25 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 3079428, + "thread": 31 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 3140739, + "thread": 25 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 3409585, + "thread": 17 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 3522787, + "thread": 15 + } + }, + { + "amount": "57.509127192", + "slot": { + "period": 3759171, + "thread": 27 + } + }, + { + "amount": "57.509127203", + "slot": { + "period": 3815900, + "thread": 13 + } + } + ], + "AU121qiRKg2cb7BuBNVQ9svpVcrpPcm7JWcC4qb2XvhvCojK36QC4": [ + { + "amount": "58.167688311", + "slot": { + "period": 159923, + "thread": 20 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 301476, + "thread": 5 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 365375, + "thread": 14 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 498895, + "thread": 23 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 663686, + "thread": 15 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 948180, + "thread": 9 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 997266, + "thread": 9 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 1263488, + "thread": 0 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 1348797, + "thread": 31 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 1611868, + "thread": 2 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 1687054, + "thread": 22 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 1895171, + "thread": 27 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2098324, + "thread": 27 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2198749, + "thread": 9 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2444016, + "thread": 25 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2491863, + "thread": 18 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2697592, + "thread": 29 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2794892, + "thread": 9 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 2965894, + "thread": 13 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 3157001, + "thread": 23 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 3427261, + "thread": 21 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 3515095, + "thread": 1 + } + }, + { + "amount": "58.167688311", + "slot": { + "period": 3752159, + "thread": 19 + } + }, + { + "amount": "58.167688310", + "slot": { + "period": 3832854, + "thread": 7 + } + } + ], + "AU121qir8EQHTDCRWuKRpz67ahb8ZGiDG8SusPDKyrSSEUtcK3mJv": [ + { + "amount": "79.547555490", + "slot": { + "period": 73420, + "thread": 30 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 259933, + "thread": 21 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 342192, + "thread": 2 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 541401, + "thread": 28 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 744210, + "thread": 29 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 861933, + "thread": 16 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1066116, + "thread": 19 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1224622, + "thread": 1 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1358272, + "thread": 19 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1542898, + "thread": 5 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1732189, + "thread": 7 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 1844979, + "thread": 21 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2024121, + "thread": 4 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2189138, + "thread": 12 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2442373, + "thread": 2 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2623113, + "thread": 18 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2771838, + "thread": 18 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 2834834, + "thread": 15 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 3045000, + "thread": 14 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 3226054, + "thread": 5 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 3426792, + "thread": 31 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 3529315, + "thread": 3 + } + }, + { + "amount": "79.547555490", + "slot": { + "period": 3717224, + "thread": 26 + } + }, + { + "amount": "79.547555488", + "slot": { + "period": 3868013, + "thread": 21 + } + } + ], + "AU121rZczVrXXFKGLJE38zHdQfSaqLiY4uELbnvmsKox76jTgC7Z9": [ + { + "amount": "132.459776655", + "slot": { + "period": 78110, + "thread": 23 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 196448, + "thread": 28 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 340042, + "thread": 6 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 568780, + "thread": 8 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 685446, + "thread": 20 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 860963, + "thread": 31 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1080380, + "thread": 3 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1274948, + "thread": 4 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1429146, + "thread": 1 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1614164, + "thread": 19 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1650778, + "thread": 13 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 1822344, + "thread": 21 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2126015, + "thread": 12 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2161003, + "thread": 24 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2341244, + "thread": 17 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2544587, + "thread": 20 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2773263, + "thread": 22 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2931315, + "thread": 27 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 2960259, + "thread": 7 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 3201481, + "thread": 18 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 3446860, + "thread": 12 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 3573977, + "thread": 10 + } + }, + { + "amount": "132.459776655", + "slot": { + "period": 3771286, + "thread": 8 + } + }, + { + "amount": "132.459776649", + "slot": { + "period": 3881551, + "thread": 28 + } + } + ], + "AU121uEYNXyDD9ESUb4SWvDK86Sk2qSb4RAzdWwHdgwvzRR98vvNU": [ + { + "amount": "51.848888356", + "slot": { + "period": 144457, + "thread": 0 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 181193, + "thread": 25 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 426494, + "thread": 9 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 640047, + "thread": 16 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 658244, + "thread": 13 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 897813, + "thread": 14 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1060727, + "thread": 0 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1255338, + "thread": 18 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1364395, + "thread": 9 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1516930, + "thread": 15 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1652815, + "thread": 21 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 1866277, + "thread": 4 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2110687, + "thread": 2 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2242958, + "thread": 15 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2435586, + "thread": 9 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2493669, + "thread": 20 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2684292, + "thread": 24 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2853066, + "thread": 14 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 2985259, + "thread": 20 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 3194594, + "thread": 11 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 3439445, + "thread": 0 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 3545251, + "thread": 1 + } + }, + { + "amount": "51.848888356", + "slot": { + "period": 3690820, + "thread": 19 + } + }, + { + "amount": "51.848888360", + "slot": { + "period": 3908305, + "thread": 1 + } + } + ], + "AU121uhMK4hCDxUuVu32abFQqkb3tbP9RcuhoTBXs8TvYctz4zMpH": [ + { + "amount": "113.728468250", + "slot": { + "period": 41656, + "thread": 10 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 259790, + "thread": 25 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 428864, + "thread": 21 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 499760, + "thread": 18 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 796899, + "thread": 23 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 944135, + "thread": 15 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1045963, + "thread": 18 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1229624, + "thread": 21 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1422901, + "thread": 22 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1614431, + "thread": 11 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1714362, + "thread": 6 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 1847291, + "thread": 14 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2136276, + "thread": 28 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2268076, + "thread": 4 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2382498, + "thread": 17 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2519942, + "thread": 8 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2740268, + "thread": 18 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 2828464, + "thread": 16 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 3095583, + "thread": 27 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 3261918, + "thread": 5 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 3393992, + "thread": 16 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 3537088, + "thread": 20 + } + }, + { + "amount": "113.728468250", + "slot": { + "period": 3630269, + "thread": 27 + } + }, + { + "amount": "113.728468258", + "slot": { + "period": 3844665, + "thread": 14 + } + } + ], + "AU121vtn9BK1TxYpS1McEHpdHikBLUZiixcqAcXFKp7BrRKYjjviP": [ + { + "amount": "184.507374905", + "slot": { + "period": 122870, + "thread": 12 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 214351, + "thread": 4 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 424421, + "thread": 2 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 552252, + "thread": 14 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 778162, + "thread": 15 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 835146, + "thread": 7 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 987402, + "thread": 25 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1191377, + "thread": 12 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1394549, + "thread": 4 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1597151, + "thread": 17 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1766401, + "thread": 14 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1814639, + "thread": 26 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 1988084, + "thread": 26 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2190185, + "thread": 13 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2318325, + "thread": 14 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2566437, + "thread": 12 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2694353, + "thread": 10 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2876596, + "thread": 29 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 2997447, + "thread": 11 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 3127159, + "thread": 7 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 3367764, + "thread": 21 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 3517384, + "thread": 2 + } + }, + { + "amount": "184.507374905", + "slot": { + "period": 3650713, + "thread": 0 + } + }, + { + "amount": "184.507374904", + "slot": { + "period": 3858496, + "thread": 4 + } + } + ], + "AU121w5VEx7beu1VNNbUjdKR1XDByKCkXSsDRmjhBD1qyGT7qRXFP": [ + { + "amount": "376.652847835", + "slot": { + "period": 22586, + "thread": 20 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 286545, + "thread": 19 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 400060, + "thread": 21 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 506840, + "thread": 12 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 784376, + "thread": 17 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 966789, + "thread": 12 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1038706, + "thread": 3 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1182257, + "thread": 17 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1462937, + "thread": 21 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1532246, + "thread": 21 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1691533, + "thread": 23 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 1937884, + "thread": 18 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2094552, + "thread": 19 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2194043, + "thread": 13 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2407839, + "thread": 31 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2619380, + "thread": 17 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2771550, + "thread": 25 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2936907, + "thread": 11 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 2990083, + "thread": 5 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 3196820, + "thread": 26 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 3418864, + "thread": 15 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 3568983, + "thread": 24 + } + }, + { + "amount": "376.652847835", + "slot": { + "period": 3685563, + "thread": 9 + } + }, + { + "amount": "376.652847837", + "slot": { + "period": 3919341, + "thread": 9 + } + } + ], + "AU121w7JS8EQFWtNRYaSgFwQzAVfXhJam241uy5ChxY5sEdPYuPQZ": [ + { + "amount": "67.567140410", + "slot": { + "period": 44923, + "thread": 3 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 230049, + "thread": 24 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 352995, + "thread": 19 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 512410, + "thread": 24 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 712535, + "thread": 7 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 848346, + "thread": 4 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1050867, + "thread": 19 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1308152, + "thread": 20 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1395744, + "thread": 22 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1532103, + "thread": 14 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1672372, + "thread": 7 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 1945579, + "thread": 12 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2032771, + "thread": 19 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2289385, + "thread": 14 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2318147, + "thread": 27 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2579467, + "thread": 31 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2696722, + "thread": 11 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2826592, + "thread": 22 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 2991810, + "thread": 14 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 3266870, + "thread": 14 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 3328734, + "thread": 6 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 3591077, + "thread": 19 + } + }, + { + "amount": "67.567140410", + "slot": { + "period": 3631075, + "thread": 6 + } + }, + { + "amount": "67.567140412", + "slot": { + "period": 3857611, + "thread": 14 + } + } + ], + "AU121wBdUHRmJstnh9xkRNaq9RW3LVc3QEYCaWuHBoYmRdTsqgymv": [ + { + "amount": "593.863672341", + "slot": { + "period": 79314, + "thread": 20 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 290509, + "thread": 1 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 438533, + "thread": 4 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 572954, + "thread": 22 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 668069, + "thread": 31 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 828297, + "thread": 15 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 990577, + "thread": 8 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 1271422, + "thread": 2 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 1405213, + "thread": 21 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 1631496, + "thread": 22 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 1782129, + "thread": 30 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 1810314, + "thread": 16 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2060896, + "thread": 28 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2238213, + "thread": 13 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2363535, + "thread": 15 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2502610, + "thread": 28 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2637328, + "thread": 31 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 2835955, + "thread": 26 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 3092492, + "thread": 27 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 3215253, + "thread": 11 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 3327685, + "thread": 9 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 3604421, + "thread": 25 + } + }, + { + "amount": "593.863672341", + "slot": { + "period": 3770998, + "thread": 23 + } + }, + { + "amount": "593.863672333", + "slot": { + "period": 3812272, + "thread": 5 + } + } + ], + "AU121wZJry5mAxmPjahQ1YE8mtgx3ES73KpL6GyvTZsAwi1sSYS2M": [ + { + "amount": "138.688037180", + "slot": { + "period": 135496, + "thread": 22 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 285802, + "thread": 13 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 374025, + "thread": 17 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 632928, + "thread": 0 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 665699, + "thread": 3 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 866664, + "thread": 8 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1103400, + "thread": 9 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1282030, + "thread": 26 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1366132, + "thread": 28 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1552576, + "thread": 27 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1776621, + "thread": 11 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 1956975, + "thread": 18 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2008063, + "thread": 5 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2239539, + "thread": 22 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2331588, + "thread": 21 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2543669, + "thread": 4 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2637156, + "thread": 26 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 2917455, + "thread": 31 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 3007734, + "thread": 7 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 3201197, + "thread": 30 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 3418698, + "thread": 31 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 3463028, + "thread": 24 + } + }, + { + "amount": "138.688037180", + "slot": { + "period": 3752588, + "thread": 27 + } + }, + { + "amount": "138.688037184", + "slot": { + "period": 3789081, + "thread": 11 + } + } + ], + "AU121xK6kvLm3YFCVbKNobjYYtCMdxyZE8Fo1Ls2HCM2hirC7E6AN": [ + { + "amount": "600.995884739", + "slot": { + "period": 111930, + "thread": 20 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 209267, + "thread": 20 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 427473, + "thread": 10 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 591534, + "thread": 5 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 755988, + "thread": 28 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 879393, + "thread": 26 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1001438, + "thread": 25 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1155194, + "thread": 9 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1404952, + "thread": 14 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1526606, + "thread": 11 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1657114, + "thread": 12 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 1810079, + "thread": 7 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2104536, + "thread": 27 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2223949, + "thread": 4 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2333972, + "thread": 3 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2555400, + "thread": 26 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2675717, + "thread": 5 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2900658, + "thread": 13 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 2977788, + "thread": 8 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 3170631, + "thread": 19 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 3429191, + "thread": 3 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 3510493, + "thread": 6 + } + }, + { + "amount": "600.995884739", + "slot": { + "period": 3734914, + "thread": 6 + } + }, + { + "amount": "600.995884749", + "slot": { + "period": 3893064, + "thread": 31 + } + } + ], + "AU121xvcwJ3iWq7j8G92pDKuxK9JBgFM3b6iuRAV1kffjUSz35obp": [ + { + "amount": "272.720249555", + "slot": { + "period": 73400, + "thread": 25 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 178098, + "thread": 27 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 450606, + "thread": 21 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 573487, + "thread": 11 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 695702, + "thread": 24 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 867301, + "thread": 30 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1138430, + "thread": 29 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1256781, + "thread": 9 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1392156, + "thread": 25 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1549688, + "thread": 15 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1680997, + "thread": 5 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 1874636, + "thread": 3 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2020370, + "thread": 2 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2196868, + "thread": 13 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2417875, + "thread": 14 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2615104, + "thread": 17 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2701946, + "thread": 28 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 2856336, + "thread": 16 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 3000968, + "thread": 9 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 3218202, + "thread": 30 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 3418970, + "thread": 16 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 3528877, + "thread": 30 + } + }, + { + "amount": "272.720249555", + "slot": { + "period": 3660208, + "thread": 21 + } + }, + { + "amount": "272.720249554", + "slot": { + "period": 3865250, + "thread": 29 + } + } + ], + "AU121y4VVrS5K26KNYDs7ERQjmv2ifAKi8nLybnuunuKiQEg8piNc": [ + { + "amount": "428.428387858", + "slot": { + "period": 75495, + "thread": 5 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 317968, + "thread": 5 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 472100, + "thread": 12 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 583686, + "thread": 12 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 670268, + "thread": 12 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 839714, + "thread": 15 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1071523, + "thread": 15 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1290335, + "thread": 10 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1399806, + "thread": 30 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1522475, + "thread": 5 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1802445, + "thread": 16 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 1902846, + "thread": 6 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2013958, + "thread": 12 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2196061, + "thread": 30 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2303746, + "thread": 30 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2556578, + "thread": 0 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2672416, + "thread": 20 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 2836085, + "thread": 23 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 3096296, + "thread": 18 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 3225656, + "thread": 4 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 3360841, + "thread": 10 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 3519922, + "thread": 3 + } + }, + { + "amount": "428.428387858", + "slot": { + "period": 3779864, + "thread": 30 + } + }, + { + "amount": "428.428387857", + "slot": { + "period": 3838007, + "thread": 30 + } + } + ], + "AU121yyPg8kXpsScJxuCTZt2Aq5FsPyBc6azxBUKauqZJgNcxcfXQ": [ + { + "amount": "185.404568649", + "slot": { + "period": 23217, + "thread": 11 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 256491, + "thread": 21 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 426882, + "thread": 20 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 645945, + "thread": 21 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 808726, + "thread": 26 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 969938, + "thread": 23 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1098466, + "thread": 19 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1278052, + "thread": 1 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1437820, + "thread": 18 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1635906, + "thread": 13 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1744948, + "thread": 22 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 1810045, + "thread": 10 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2131332, + "thread": 27 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2266223, + "thread": 3 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2436727, + "thread": 15 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2531979, + "thread": 4 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2680035, + "thread": 9 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 2803877, + "thread": 31 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 3074934, + "thread": 21 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 3160994, + "thread": 28 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 3411023, + "thread": 14 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 3574587, + "thread": 19 + } + }, + { + "amount": "185.404568649", + "slot": { + "period": 3772009, + "thread": 8 + } + }, + { + "amount": "185.404568644", + "slot": { + "period": 3807565, + "thread": 0 + } + } + ], + "AU121z3JMiLKDA2j44H4qdTLBYK6AxbA3XB25GjRdPpbdm3atNCap": [ + { + "amount": "61.679982669", + "slot": { + "period": 16996, + "thread": 21 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 219521, + "thread": 31 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 460855, + "thread": 20 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 589791, + "thread": 14 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 677155, + "thread": 27 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 868429, + "thread": 22 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1050465, + "thread": 28 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1265122, + "thread": 15 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1458753, + "thread": 1 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1492659, + "thread": 28 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1765615, + "thread": 23 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 1824572, + "thread": 31 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2068637, + "thread": 2 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2189058, + "thread": 17 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2443439, + "thread": 9 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2603240, + "thread": 16 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2687162, + "thread": 20 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 2872912, + "thread": 18 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 3017782, + "thread": 31 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 3178465, + "thread": 12 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 3399795, + "thread": 31 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 3530909, + "thread": 1 + } + }, + { + "amount": "61.679982669", + "slot": { + "period": 3774014, + "thread": 10 + } + }, + { + "amount": "61.679982674", + "slot": { + "period": 3800952, + "thread": 26 + } + } + ], + "AU121z6iypCwWEGcwsusARrZiwsAF4BPQpitgPdYDEMKiYCAdnLcM": [ + { + "amount": "391.637294053", + "slot": { + "period": 160741, + "thread": 1 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 288687, + "thread": 27 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 408371, + "thread": 19 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 496899, + "thread": 17 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 782483, + "thread": 3 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 852911, + "thread": 12 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1099953, + "thread": 19 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1161535, + "thread": 9 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1397814, + "thread": 9 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1552636, + "thread": 18 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1709634, + "thread": 20 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 1946236, + "thread": 25 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2042044, + "thread": 27 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2258910, + "thread": 16 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2411640, + "thread": 1 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2574643, + "thread": 24 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2732813, + "thread": 29 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 2867737, + "thread": 7 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 3082347, + "thread": 12 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 3286475, + "thread": 20 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 3429878, + "thread": 23 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 3608074, + "thread": 8 + } + }, + { + "amount": "391.637294053", + "slot": { + "period": 3669580, + "thread": 11 + } + }, + { + "amount": "391.637294044", + "slot": { + "period": 3887290, + "thread": 30 + } + } + ], + "AU121zCXt6QR239zh1WkPcQwFfCCJq38tyRNZqyjo8Q83EwMUwSKN": [ + { + "amount": "143.522611120", + "slot": { + "period": 61701, + "thread": 22 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 218384, + "thread": 7 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 431763, + "thread": 31 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 549395, + "thread": 1 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 789113, + "thread": 4 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 915448, + "thread": 0 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1046793, + "thread": 5 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1179615, + "thread": 27 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1353669, + "thread": 9 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1526214, + "thread": 13 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1679139, + "thread": 25 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 1966713, + "thread": 10 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2024226, + "thread": 12 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2230637, + "thread": 2 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2323655, + "thread": 6 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2577462, + "thread": 1 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2712867, + "thread": 14 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 2927901, + "thread": 11 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 3051971, + "thread": 22 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 3134277, + "thread": 3 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 3417060, + "thread": 21 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 3586749, + "thread": 27 + } + }, + { + "amount": "143.522611120", + "slot": { + "period": 3713060, + "thread": 1 + } + }, + { + "amount": "143.522611131", + "slot": { + "period": 3823538, + "thread": 26 + } + } + ], + "AU121zCZYPi1XuHkm4KV34CrvvqT8ASQH2sXco73cvioMfepFtVF3": [ + { + "amount": "407.282324588", + "slot": { + "period": 20125, + "thread": 12 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 274682, + "thread": 10 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 382881, + "thread": 1 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 558501, + "thread": 27 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 733280, + "thread": 10 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 875505, + "thread": 5 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1140364, + "thread": 25 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1232840, + "thread": 6 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1325699, + "thread": 10 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1486601, + "thread": 9 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1761642, + "thread": 16 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 1944360, + "thread": 12 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2058996, + "thread": 1 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2224792, + "thread": 18 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2351591, + "thread": 22 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2603955, + "thread": 0 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2660015, + "thread": 3 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 2848343, + "thread": 21 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 3023699, + "thread": 23 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 3190119, + "thread": 9 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 3342535, + "thread": 28 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 3469688, + "thread": 4 + } + }, + { + "amount": "407.282324588", + "slot": { + "period": 3672693, + "thread": 1 + } + }, + { + "amount": "407.282324585", + "slot": { + "period": 3822674, + "thread": 15 + } + } + ], + "AU1221DtLGL9t98nR2q9b4mKkJSRsrfcphcJWBEmrTqh7ov8MuTZ3": [ + { + "amount": "77.913217256", + "slot": { + "period": 110777, + "thread": 6 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 307955, + "thread": 20 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 333795, + "thread": 31 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 574142, + "thread": 21 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 768011, + "thread": 0 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 971382, + "thread": 26 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1017306, + "thread": 9 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1182336, + "thread": 1 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1320371, + "thread": 18 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1488959, + "thread": 19 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1733376, + "thread": 4 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 1920160, + "thread": 20 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2084875, + "thread": 16 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2184271, + "thread": 2 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2431081, + "thread": 14 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2563510, + "thread": 16 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2771123, + "thread": 15 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2917224, + "thread": 5 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 2985893, + "thread": 14 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 3260313, + "thread": 13 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 3381883, + "thread": 6 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 3538015, + "thread": 25 + } + }, + { + "amount": "77.913217256", + "slot": { + "period": 3681401, + "thread": 3 + } + }, + { + "amount": "77.913217251", + "slot": { + "period": 3921151, + "thread": 30 + } + } + ], + "AU1221xUM2j1gpnFEys5KFrf7yAzWRZqtDJyEv2ZDZ2X3LTfsj6dX": [ + { + "amount": "67.786740637", + "slot": { + "period": 11199, + "thread": 2 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 235130, + "thread": 11 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 454380, + "thread": 15 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 618224, + "thread": 25 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 723568, + "thread": 10 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 897793, + "thread": 24 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1145737, + "thread": 16 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1266253, + "thread": 6 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1335457, + "thread": 19 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1632935, + "thread": 24 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1682393, + "thread": 28 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 1862536, + "thread": 9 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2132676, + "thread": 21 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2232062, + "thread": 25 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2384478, + "thread": 10 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2476630, + "thread": 26 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2701760, + "thread": 2 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 2865564, + "thread": 3 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 3055510, + "thread": 25 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 3142546, + "thread": 19 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 3420408, + "thread": 5 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 3498912, + "thread": 6 + } + }, + { + "amount": "67.786740637", + "slot": { + "period": 3626383, + "thread": 13 + } + }, + { + "amount": "67.786740643", + "slot": { + "period": 3810468, + "thread": 26 + } + } + ], + "AU1222L71vGMQyv3UAPHV52ncgm4TyYPi4NNdCM1c8UfnPFxqx1ji": [ + { + "amount": "180.203858840", + "slot": { + "period": 109136, + "thread": 16 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 182780, + "thread": 26 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 374960, + "thread": 21 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 583621, + "thread": 5 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 738640, + "thread": 10 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 831759, + "thread": 22 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1006375, + "thread": 0 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1263488, + "thread": 10 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1339762, + "thread": 30 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1626640, + "thread": 14 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1692533, + "thread": 4 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 1841364, + "thread": 9 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2090637, + "thread": 19 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2185238, + "thread": 19 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2362865, + "thread": 25 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2601476, + "thread": 19 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2650209, + "thread": 11 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 2897288, + "thread": 25 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 3035000, + "thread": 18 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 3122278, + "thread": 22 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 3374905, + "thread": 28 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 3571569, + "thread": 21 + } + }, + { + "amount": "180.203858840", + "slot": { + "period": 3767132, + "thread": 14 + } + }, + { + "amount": "180.203858847", + "slot": { + "period": 3861779, + "thread": 8 + } + } + ], + "AU1222nHsJHS7PdEybmT3UL43iGGWm6UKKy7wbn6Mrte5Ri3GnwVY": [ + { + "amount": "73.085993317", + "slot": { + "period": 18692, + "thread": 31 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 280636, + "thread": 13 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 394732, + "thread": 0 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 601368, + "thread": 10 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 675868, + "thread": 29 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 897017, + "thread": 30 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1047323, + "thread": 12 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1289425, + "thread": 31 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1319772, + "thread": 2 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1628389, + "thread": 24 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1692424, + "thread": 13 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 1838024, + "thread": 1 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2011217, + "thread": 22 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2286011, + "thread": 25 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2389416, + "thread": 9 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2467312, + "thread": 23 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2715998, + "thread": 30 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 2905276, + "thread": 24 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 3027325, + "thread": 14 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 3218700, + "thread": 22 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 3373501, + "thread": 6 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 3489178, + "thread": 30 + } + }, + { + "amount": "73.085993317", + "slot": { + "period": 3772921, + "thread": 27 + } + }, + { + "amount": "73.085993311", + "slot": { + "period": 3793927, + "thread": 12 + } + } + ], + "AU1222oS7S8NCpG6WPSwdnzw4EiWLJLXizPbH8K6ejUGC5MxQPnn6": [ + { + "amount": "84.476293585", + "slot": { + "period": 127820, + "thread": 20 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 309610, + "thread": 23 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 365952, + "thread": 28 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 564079, + "thread": 0 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 664145, + "thread": 11 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 887838, + "thread": 23 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1077798, + "thread": 18 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1216936, + "thread": 17 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1455178, + "thread": 27 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1483014, + "thread": 15 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1669217, + "thread": 18 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 1852745, + "thread": 5 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2040003, + "thread": 23 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2166416, + "thread": 25 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2357904, + "thread": 9 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2513914, + "thread": 24 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2771587, + "thread": 16 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 2928082, + "thread": 9 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 3028115, + "thread": 10 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 3226105, + "thread": 18 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 3429692, + "thread": 18 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 3524253, + "thread": 26 + } + }, + { + "amount": "84.476293585", + "slot": { + "period": 3730302, + "thread": 9 + } + }, + { + "amount": "84.476293574", + "slot": { + "period": 3928636, + "thread": 9 + } + } + ], + "AU1223j5Cq97CmFn3LJVouTmhKUhnu5yx4w3EAFCMhj1o56dBCNL6": [ + { + "amount": "132.292181636", + "slot": { + "period": 94440, + "thread": 27 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 319166, + "thread": 15 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 384476, + "thread": 10 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 635113, + "thread": 7 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 693315, + "thread": 0 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 882698, + "thread": 16 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1100991, + "thread": 2 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1158987, + "thread": 21 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1358056, + "thread": 8 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1615430, + "thread": 14 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1763547, + "thread": 22 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 1842376, + "thread": 4 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2099912, + "thread": 28 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2268537, + "thread": 17 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2418446, + "thread": 29 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2591806, + "thread": 2 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2754618, + "thread": 30 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 2924669, + "thread": 8 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 3089882, + "thread": 21 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 3129167, + "thread": 22 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 3376610, + "thread": 3 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 3562058, + "thread": 3 + } + }, + { + "amount": "132.292181636", + "slot": { + "period": 3690247, + "thread": 25 + } + }, + { + "amount": "132.292181645", + "slot": { + "period": 3812123, + "thread": 21 + } + } + ], + "AU1223oL2Zk9aWGBKhHJdKhXRsBxA9ivSfUChNtYhPgqXT2jTZjrC": [ + { + "amount": "157.986853352", + "slot": { + "period": 114489, + "thread": 30 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 222262, + "thread": 21 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 409669, + "thread": 30 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 496630, + "thread": 4 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 804911, + "thread": 16 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 903988, + "thread": 28 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1133192, + "thread": 15 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1187651, + "thread": 31 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1324942, + "thread": 24 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1598331, + "thread": 13 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1792097, + "thread": 24 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 1871380, + "thread": 16 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2123847, + "thread": 13 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2277975, + "thread": 18 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2436629, + "thread": 22 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2569092, + "thread": 0 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2710887, + "thread": 17 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 2926211, + "thread": 3 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 3051953, + "thread": 24 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 3178389, + "thread": 23 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 3447161, + "thread": 22 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 3570132, + "thread": 12 + } + }, + { + "amount": "157.986853352", + "slot": { + "period": 3673979, + "thread": 22 + } + }, + { + "amount": "157.986853363", + "slot": { + "period": 3913978, + "thread": 30 + } + } + ], + "AU1224Rvn4fVUhvSK9sngun3m9adkbpGkaD55RxW66DLFYR72VZbv": [ + { + "amount": "142.333546271", + "slot": { + "period": 43629, + "thread": 15 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 229916, + "thread": 3 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 477906, + "thread": 29 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 611684, + "thread": 21 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 679988, + "thread": 2 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 959612, + "thread": 23 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1133959, + "thread": 6 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1244853, + "thread": 8 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1453316, + "thread": 6 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1586744, + "thread": 27 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1653890, + "thread": 19 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 1870057, + "thread": 26 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2026186, + "thread": 30 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2199617, + "thread": 1 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2377059, + "thread": 19 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2580122, + "thread": 23 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2694330, + "thread": 14 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2939614, + "thread": 25 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 2955139, + "thread": 21 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 3197929, + "thread": 28 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 3369442, + "thread": 27 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 3519324, + "thread": 13 + } + }, + { + "amount": "142.333546271", + "slot": { + "period": 3739215, + "thread": 7 + } + }, + { + "amount": "142.333546270", + "slot": { + "period": 3920789, + "thread": 4 + } + } + ], + "AU12254VbpcH8QUcRBMZzZtJNHk71PziBwVviqeDCQeSg5zypomhF": [ + { + "amount": "121.335139889", + "slot": { + "period": 149581, + "thread": 0 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 250637, + "thread": 25 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 366700, + "thread": 31 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 643302, + "thread": 20 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 760038, + "thread": 20 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 909017, + "thread": 0 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1132861, + "thread": 26 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1287666, + "thread": 16 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1343062, + "thread": 3 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1599852, + "thread": 13 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1702297, + "thread": 24 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 1909664, + "thread": 30 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2097551, + "thread": 5 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2234254, + "thread": 17 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2365149, + "thread": 19 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2546331, + "thread": 30 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2754133, + "thread": 26 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 2942504, + "thread": 24 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 3028028, + "thread": 18 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 3154977, + "thread": 12 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 3418948, + "thread": 12 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 3589199, + "thread": 16 + } + }, + { + "amount": "121.335139889", + "slot": { + "period": 3754583, + "thread": 20 + } + }, + { + "amount": "121.335139894", + "slot": { + "period": 3945451, + "thread": 10 + } + } + ], + "AU1225NEYkivGgiqnbnpzyRHQ92hs42fKW8JEkXMFkxoqiVrwe4as": [ + { + "amount": "148.042286144", + "slot": { + "period": 67666, + "thread": 20 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 204079, + "thread": 6 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 441590, + "thread": 29 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 638046, + "thread": 24 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 806126, + "thread": 9 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 851476, + "thread": 17 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1143803, + "thread": 29 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1282100, + "thread": 24 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1437083, + "thread": 22 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1514376, + "thread": 12 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1767181, + "thread": 13 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 1838326, + "thread": 18 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2004030, + "thread": 27 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2278140, + "thread": 7 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2348988, + "thread": 9 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2607999, + "thread": 5 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2784890, + "thread": 18 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 2869070, + "thread": 19 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 3040249, + "thread": 22 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 3228306, + "thread": 11 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 3381270, + "thread": 16 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 3536400, + "thread": 14 + } + }, + { + "amount": "148.042286144", + "slot": { + "period": 3752688, + "thread": 23 + } + }, + { + "amount": "148.042286133", + "slot": { + "period": 3942540, + "thread": 14 + } + } + ], + "AU1225xn7FKUdZCahjQsXjqmkhDrGV78XNpeNa1nbxJPmKkTzEB9j": [ + { + "amount": "150.215234950", + "slot": { + "period": 26893, + "thread": 26 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 261642, + "thread": 17 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 340698, + "thread": 11 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 545294, + "thread": 19 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 787701, + "thread": 18 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 973899, + "thread": 1 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1015701, + "thread": 4 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1177809, + "thread": 21 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1456536, + "thread": 14 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1486189, + "thread": 23 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1708717, + "thread": 8 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 1878123, + "thread": 11 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2046495, + "thread": 27 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2216220, + "thread": 18 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2430910, + "thread": 10 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2510184, + "thread": 0 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2775778, + "thread": 17 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2932732, + "thread": 18 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 2978786, + "thread": 22 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 3142983, + "thread": 18 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 3434260, + "thread": 16 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 3546418, + "thread": 1 + } + }, + { + "amount": "150.215234950", + "slot": { + "period": 3749040, + "thread": 2 + } + }, + { + "amount": "150.215234946", + "slot": { + "period": 3831359, + "thread": 1 + } + } + ], + "AU1226SXBXyzqKK1qnQJrgYSgFwi3xSpNaDmGetikQbJCvHG8BkW": [ + { + "amount": "416.311200707", + "slot": { + "period": 27115, + "thread": 16 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 281544, + "thread": 30 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 431430, + "thread": 14 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 584538, + "thread": 19 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 671152, + "thread": 22 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 913382, + "thread": 11 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1020873, + "thread": 12 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1170151, + "thread": 4 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1366426, + "thread": 10 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1555004, + "thread": 6 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1727061, + "thread": 13 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 1935029, + "thread": 17 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2126438, + "thread": 26 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2162768, + "thread": 20 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2331163, + "thread": 6 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2533160, + "thread": 12 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2748183, + "thread": 3 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 2913138, + "thread": 20 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 3057110, + "thread": 20 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 3237289, + "thread": 26 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 3316610, + "thread": 28 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 3516166, + "thread": 21 + } + }, + { + "amount": "416.311200707", + "slot": { + "period": 3669854, + "thread": 10 + } + }, + { + "amount": "416.311200713", + "slot": { + "period": 3905005, + "thread": 1 + } + } + ], + "AU1226cGxr6Nc7rJLYnny2rGtCkR3jN49DYp5wUKUi6ShAoiT2njL": [ + { + "amount": "425.131924518", + "slot": { + "period": 26463, + "thread": 18 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 252232, + "thread": 16 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 387726, + "thread": 23 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 501751, + "thread": 3 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 762476, + "thread": 24 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 842697, + "thread": 15 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 988277, + "thread": 11 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 1210889, + "thread": 1 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 1328058, + "thread": 7 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 1578483, + "thread": 30 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 1702539, + "thread": 20 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 1849674, + "thread": 31 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2042107, + "thread": 7 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2252595, + "thread": 0 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2400585, + "thread": 29 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2567397, + "thread": 13 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2701477, + "thread": 15 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 2812106, + "thread": 27 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 3052409, + "thread": 0 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 3215304, + "thread": 22 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 3374563, + "thread": 26 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 3509014, + "thread": 3 + } + }, + { + "amount": "425.131924518", + "slot": { + "period": 3743065, + "thread": 13 + } + }, + { + "amount": "425.131924515", + "slot": { + "period": 3857475, + "thread": 19 + } + } + ], + "AU1226zC4bS6TC4mGN5eosnLhtFRYJiCVZdi6bG1T2HTcPBjqdVAp": [ + { + "amount": "190.342280542", + "slot": { + "period": 80265, + "thread": 8 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 193296, + "thread": 30 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 326282, + "thread": 5 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 586053, + "thread": 14 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 669955, + "thread": 30 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 946142, + "thread": 12 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1071166, + "thread": 27 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1211788, + "thread": 23 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1442370, + "thread": 5 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1633781, + "thread": 17 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1802755, + "thread": 11 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 1906281, + "thread": 15 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2013927, + "thread": 30 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2283640, + "thread": 5 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2408723, + "thread": 9 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2536160, + "thread": 0 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2761725, + "thread": 8 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 2870034, + "thread": 3 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 3015428, + "thread": 23 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 3172848, + "thread": 30 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 3314573, + "thread": 17 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 3578073, + "thread": 28 + } + }, + { + "amount": "190.342280542", + "slot": { + "period": 3638598, + "thread": 24 + } + }, + { + "amount": "190.342280530", + "slot": { + "period": 3794266, + "thread": 0 + } + } + ], + "AU1227Lh5H8JauXH18UjFbzzTXe9phs1Z2m6JtZKmD1VLoFn4ZWcf": [ + { + "amount": "375.247695801", + "slot": { + "period": 35797, + "thread": 9 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 323864, + "thread": 2 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 340285, + "thread": 18 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 545962, + "thread": 30 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 811363, + "thread": 9 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 955045, + "thread": 8 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1084627, + "thread": 14 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1308601, + "thread": 15 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1360116, + "thread": 23 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1563359, + "thread": 4 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1677429, + "thread": 1 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 1816958, + "thread": 14 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2076979, + "thread": 31 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2151816, + "thread": 26 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2403208, + "thread": 18 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2596865, + "thread": 3 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2638687, + "thread": 18 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2830601, + "thread": 17 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 2961947, + "thread": 25 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 3136661, + "thread": 2 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 3322101, + "thread": 26 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 3479987, + "thread": 7 + } + }, + { + "amount": "375.247695801", + "slot": { + "period": 3776670, + "thread": 13 + } + }, + { + "amount": "375.247695811", + "slot": { + "period": 3878031, + "thread": 27 + } + } + ], + "AU1227PY8tJvRAWsoeTgXL6oHyHviwa4ZTFSJ9NB5MfiNuT6mur3c": [ + { + "amount": "135.352814106", + "slot": { + "period": 110180, + "thread": 16 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 242800, + "thread": 4 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 340336, + "thread": 1 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 512632, + "thread": 7 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 706165, + "thread": 13 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 828204, + "thread": 24 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1032944, + "thread": 14 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1240705, + "thread": 9 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1337138, + "thread": 23 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1541701, + "thread": 12 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1722562, + "thread": 27 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 1938837, + "thread": 21 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2105027, + "thread": 18 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2180607, + "thread": 11 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2402782, + "thread": 2 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2514881, + "thread": 21 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2704702, + "thread": 19 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 2858325, + "thread": 29 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 3028676, + "thread": 16 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 3232609, + "thread": 0 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 3424466, + "thread": 16 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 3460536, + "thread": 30 + } + }, + { + "amount": "135.352814106", + "slot": { + "period": 3717190, + "thread": 22 + } + }, + { + "amount": "135.352814115", + "slot": { + "period": 3908234, + "thread": 9 + } + } + ], + "AU1227x8zeurQsmLLLtgmyz5owXZV8BWgKKeJFMVUiEnos3RH4f4G": [ + { + "amount": "257.728854459", + "slot": { + "period": 117144, + "thread": 23 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 229503, + "thread": 21 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 359535, + "thread": 0 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 620173, + "thread": 26 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 726659, + "thread": 17 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 949281, + "thread": 21 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1090737, + "thread": 1 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1255355, + "thread": 19 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1384999, + "thread": 6 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1479622, + "thread": 30 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1807776, + "thread": 1 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 1855781, + "thread": 24 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2094392, + "thread": 30 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2198849, + "thread": 8 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2360471, + "thread": 10 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2522350, + "thread": 31 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2779550, + "thread": 9 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 2794203, + "thread": 4 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 3084287, + "thread": 4 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 3195642, + "thread": 16 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 3364474, + "thread": 14 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 3478284, + "thread": 30 + } + }, + { + "amount": "257.728854459", + "slot": { + "period": 3756835, + "thread": 20 + } + }, + { + "amount": "257.728854470", + "slot": { + "period": 3931658, + "thread": 2 + } + } + ], + "AU1229JQf6AU8Ks3DEDtnDMMNg2E3fNxiXAd4C5mYXTX41PTrs8cU": [ + { + "amount": "235.535946833", + "slot": { + "period": 144637, + "thread": 10 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 286610, + "thread": 13 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 341206, + "thread": 28 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 504976, + "thread": 22 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 695519, + "thread": 27 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 884051, + "thread": 17 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 992818, + "thread": 13 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 1179071, + "thread": 22 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 1434217, + "thread": 17 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 1499055, + "thread": 30 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 1704721, + "thread": 28 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 1959429, + "thread": 8 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2076107, + "thread": 14 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2183463, + "thread": 19 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2453251, + "thread": 12 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2607902, + "thread": 14 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2661638, + "thread": 16 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2847483, + "thread": 31 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 2969148, + "thread": 20 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 3207856, + "thread": 8 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 3386081, + "thread": 3 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 3565507, + "thread": 1 + } + }, + { + "amount": "235.535946833", + "slot": { + "period": 3740117, + "thread": 20 + } + }, + { + "amount": "235.535946836", + "slot": { + "period": 3863130, + "thread": 15 + } + } + ], + "AU1229nMARyHAAg1E6pw33VrgpM2a4Qayq76ZxjCFCfkoM894AXSe": [ + { + "amount": "156.313895583", + "slot": { + "period": 87338, + "thread": 25 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 308551, + "thread": 19 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 336973, + "thread": 28 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 601540, + "thread": 21 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 717927, + "thread": 7 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 897899, + "thread": 15 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1124422, + "thread": 23 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1269552, + "thread": 7 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1467353, + "thread": 14 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1483854, + "thread": 26 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1684478, + "thread": 26 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 1945600, + "thread": 29 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2085044, + "thread": 16 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2237071, + "thread": 15 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2432508, + "thread": 6 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2530578, + "thread": 23 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2750136, + "thread": 30 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 2893924, + "thread": 27 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 3044355, + "thread": 29 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 3222914, + "thread": 7 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 3374113, + "thread": 27 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 3486611, + "thread": 27 + } + }, + { + "amount": "156.313895583", + "slot": { + "period": 3636612, + "thread": 12 + } + }, + { + "amount": "156.313895572", + "slot": { + "period": 3819277, + "thread": 23 + } + } + ], + "AU122A9xJDNyJJ4sRLRtsEfGK465SxzTDFdoUZMfjrk9nTLe7Jt2s": [ + { + "amount": "568.936596232", + "slot": { + "period": 115889, + "thread": 20 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 182418, + "thread": 29 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 435271, + "thread": 0 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 542972, + "thread": 15 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 735633, + "thread": 5 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 867762, + "thread": 8 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1042675, + "thread": 19 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1311539, + "thread": 24 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1348742, + "thread": 2 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1594756, + "thread": 9 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1673802, + "thread": 7 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1931433, + "thread": 17 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 1982914, + "thread": 23 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 2248884, + "thread": 20 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 2341337, + "thread": 22 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 2582425, + "thread": 15 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 2627841, + "thread": 14 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 2951036, + "thread": 16 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 3115267, + "thread": 11 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 3282436, + "thread": 24 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 3403191, + "thread": 0 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 3585917, + "thread": 27 + } + }, + { + "amount": "568.936596232", + "slot": { + "period": 3688540, + "thread": 3 + } + }, + { + "amount": "568.936596238", + "slot": { + "period": 3809313, + "thread": 17 + } + } + ], + "AU122AZNZ7JuVJ8WAXvCriPiUrqterg7oAaob8prcar3qJ6e53BbJ": [ + { + "amount": "86.951635418", + "slot": { + "period": 156536, + "thread": 29 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 264546, + "thread": 12 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 474777, + "thread": 5 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 521152, + "thread": 6 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 687387, + "thread": 12 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 870540, + "thread": 30 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1085686, + "thread": 31 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1304427, + "thread": 28 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1340381, + "thread": 6 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1566217, + "thread": 19 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1730174, + "thread": 22 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 1842082, + "thread": 26 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2005679, + "thread": 11 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2233945, + "thread": 20 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2447664, + "thread": 10 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2535646, + "thread": 29 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2763599, + "thread": 10 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 2867537, + "thread": 12 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 3075625, + "thread": 21 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 3134852, + "thread": 1 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 3357113, + "thread": 8 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 3521225, + "thread": 0 + } + }, + { + "amount": "86.951635418", + "slot": { + "period": 3690626, + "thread": 2 + } + }, + { + "amount": "86.951635424", + "slot": { + "period": 3912253, + "thread": 5 + } + } + ], + "AU122AtFHsZBSmWHKjcrB54HGajNPaxtH7WdEziqyEgE9oqW26AM7": [ + { + "amount": "120.330884424", + "slot": { + "period": 130793, + "thread": 18 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 199789, + "thread": 1 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 395419, + "thread": 7 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 540367, + "thread": 25 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 791511, + "thread": 13 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 921002, + "thread": 1 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1063995, + "thread": 17 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1200297, + "thread": 21 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1344206, + "thread": 20 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1630437, + "thread": 29 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1756761, + "thread": 15 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 1919292, + "thread": 19 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2033859, + "thread": 11 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2175633, + "thread": 24 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2438428, + "thread": 8 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2480994, + "thread": 24 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2778853, + "thread": 20 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2947322, + "thread": 22 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 2974202, + "thread": 7 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 3240570, + "thread": 4 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 3303096, + "thread": 8 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 3494849, + "thread": 22 + } + }, + { + "amount": "120.330884424", + "slot": { + "period": 3686828, + "thread": 18 + } + }, + { + "amount": "120.330884431", + "slot": { + "period": 3853652, + "thread": 5 + } + } + ], + "AU122Bcep2y2kG5YUtLpcwhjdxM8QJFSEmYypKAEFJ9ooZh7gMH38": [ + { + "amount": "170.665126723", + "slot": { + "period": 106957, + "thread": 18 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 306282, + "thread": 4 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 369221, + "thread": 11 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 572342, + "thread": 0 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 789782, + "thread": 14 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 895763, + "thread": 11 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1001408, + "thread": 7 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1315582, + "thread": 13 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1359714, + "thread": 13 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1483020, + "thread": 23 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1799530, + "thread": 21 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 1861363, + "thread": 25 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2012747, + "thread": 12 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2148774, + "thread": 29 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2367333, + "thread": 25 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2622095, + "thread": 13 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2651897, + "thread": 16 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2910303, + "thread": 13 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 2961700, + "thread": 10 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 3285748, + "thread": 26 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 3382268, + "thread": 22 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 3491160, + "thread": 12 + } + }, + { + "amount": "170.665126723", + "slot": { + "period": 3657599, + "thread": 21 + } + }, + { + "amount": "170.665126722", + "slot": { + "period": 3900710, + "thread": 8 + } + } + ], + "AU122BfG3QgrCFcihMAMz8HRJ5hMY5LvMBLe4sgj3PudcTu9JgEB7": [ + { + "amount": "184.609933051", + "slot": { + "period": 60302, + "thread": 20 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 270404, + "thread": 2 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 374061, + "thread": 14 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 533738, + "thread": 6 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 718629, + "thread": 0 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 920291, + "thread": 7 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1110052, + "thread": 7 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1244370, + "thread": 16 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1376520, + "thread": 13 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1521557, + "thread": 24 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1725638, + "thread": 30 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 1828095, + "thread": 31 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2027736, + "thread": 21 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2178533, + "thread": 14 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2422193, + "thread": 1 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2475904, + "thread": 25 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2656804, + "thread": 11 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 2813484, + "thread": 11 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 3073714, + "thread": 21 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 3194205, + "thread": 24 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 3394274, + "thread": 7 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 3461064, + "thread": 15 + } + }, + { + "amount": "184.609933051", + "slot": { + "period": 3730233, + "thread": 17 + } + }, + { + "amount": "184.609933042", + "slot": { + "period": 3843058, + "thread": 1 + } + } + ], + "AU122C3kqxW2U2FJTLTmQiRoFsh4ThKyd1VjEierRv2ff4WgL2XPz": [ + { + "amount": "186.593014548", + "slot": { + "period": 10868, + "thread": 29 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 300696, + "thread": 30 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 425290, + "thread": 20 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 546091, + "thread": 16 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 698534, + "thread": 27 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 939682, + "thread": 31 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1022766, + "thread": 30 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1240655, + "thread": 4 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1446693, + "thread": 18 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1523165, + "thread": 0 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1791593, + "thread": 12 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 1967887, + "thread": 21 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2062752, + "thread": 29 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2201243, + "thread": 18 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2379441, + "thread": 16 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2606309, + "thread": 2 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2779394, + "thread": 21 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2850129, + "thread": 10 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 2978753, + "thread": 1 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 3287113, + "thread": 26 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 3292558, + "thread": 20 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 3546674, + "thread": 14 + } + }, + { + "amount": "186.593014548", + "slot": { + "period": 3700240, + "thread": 20 + } + }, + { + "amount": "186.593014556", + "slot": { + "period": 3880421, + "thread": 18 + } + } + ], + "AU122Cc4SPxfHfyUDZV6V12hLNRS5vrj2Rw813gdmgpVB9TV7Wqh4": [ + { + "amount": "192.296830494", + "slot": { + "period": 31480, + "thread": 30 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 277984, + "thread": 24 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 334308, + "thread": 1 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 589490, + "thread": 4 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 793827, + "thread": 20 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 882764, + "thread": 18 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1092146, + "thread": 13 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1213402, + "thread": 1 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1470701, + "thread": 20 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1604492, + "thread": 24 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1693456, + "thread": 21 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 1943884, + "thread": 7 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2065736, + "thread": 10 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2211887, + "thread": 31 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2299915, + "thread": 9 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2609247, + "thread": 1 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2678140, + "thread": 7 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 2832193, + "thread": 5 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 3050649, + "thread": 31 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 3175291, + "thread": 8 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 3318384, + "thread": 12 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 3559845, + "thread": 0 + } + }, + { + "amount": "192.296830494", + "slot": { + "period": 3670304, + "thread": 7 + } + }, + { + "amount": "192.296830482", + "slot": { + "period": 3829110, + "thread": 11 + } + } + ], + "AU122Dt8AiS1tc9F1PBiechXUH3WNLBKg5yfxwrxyNAkixT76mbkQ": [ + { + "amount": "64.717679605", + "slot": { + "period": 81843, + "thread": 24 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 292841, + "thread": 27 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 486653, + "thread": 7 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 606789, + "thread": 21 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 784848, + "thread": 1 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 899162, + "thread": 18 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1116753, + "thread": 14 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1261509, + "thread": 6 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1372407, + "thread": 27 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1645930, + "thread": 4 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1705080, + "thread": 16 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 1869089, + "thread": 30 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2002659, + "thread": 13 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2238836, + "thread": 8 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2443509, + "thread": 13 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2463201, + "thread": 6 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2726120, + "thread": 4 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2807402, + "thread": 14 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 2954772, + "thread": 4 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 3209204, + "thread": 9 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 3303906, + "thread": 24 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 3589140, + "thread": 27 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 3757615, + "thread": 31 + } + }, + { + "amount": "64.717679605", + "slot": { + "period": 3854575, + "thread": 3 + } + } + ], + "AU122EhpMyEWEvk8f4u9euwYbLgHe6oWoN5sqG6C62b92RKnF2KHb": [ + { + "amount": "71.365866573", + "slot": { + "period": 91327, + "thread": 20 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 191761, + "thread": 29 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 344403, + "thread": 5 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 557667, + "thread": 27 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 736825, + "thread": 19 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 976186, + "thread": 21 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1037205, + "thread": 29 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1310574, + "thread": 31 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1429363, + "thread": 25 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1513726, + "thread": 19 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1667533, + "thread": 0 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 1816334, + "thread": 3 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2104826, + "thread": 12 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2265044, + "thread": 11 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2447907, + "thread": 31 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2505723, + "thread": 9 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2635541, + "thread": 11 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 2800429, + "thread": 7 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 3075432, + "thread": 11 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 3176898, + "thread": 5 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 3331160, + "thread": 3 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 3487076, + "thread": 3 + } + }, + { + "amount": "71.365866573", + "slot": { + "period": 3626726, + "thread": 18 + } + }, + { + "amount": "71.365866571", + "slot": { + "period": 3918868, + "thread": 3 + } + } + ], + "AU122Et7SdEqeD7NnLrB94ERSA2nfN1T2v8FyRJwQX4YjgXM343p7": [ + { + "amount": "63.086805047", + "slot": { + "period": 127795, + "thread": 18 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 308511, + "thread": 22 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 367301, + "thread": 11 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 562311, + "thread": 31 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 669024, + "thread": 2 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 850640, + "thread": 29 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1115593, + "thread": 22 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1164636, + "thread": 18 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1397728, + "thread": 21 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1540243, + "thread": 0 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1746736, + "thread": 19 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 1903576, + "thread": 17 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2052407, + "thread": 7 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2292125, + "thread": 16 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2313049, + "thread": 13 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2601821, + "thread": 23 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2765539, + "thread": 31 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 2806330, + "thread": 19 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 3098413, + "thread": 5 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 3271031, + "thread": 7 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 3419659, + "thread": 28 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 3460987, + "thread": 9 + } + }, + { + "amount": "63.086805047", + "slot": { + "period": 3753782, + "thread": 18 + } + }, + { + "amount": "63.086805058", + "slot": { + "period": 3911408, + "thread": 14 + } + } + ], + "AU122FCvtiu3EGJ6uKvyrAahNqxn9vh5qwkwhZBVpwXmWnKbqGVJY": [ + { + "amount": "498.976342517", + "slot": { + "period": 108109, + "thread": 8 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 225528, + "thread": 31 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 404511, + "thread": 23 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 510073, + "thread": 1 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 711535, + "thread": 4 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 957042, + "thread": 6 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1118715, + "thread": 21 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1259083, + "thread": 28 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1469376, + "thread": 29 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1603081, + "thread": 18 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1654840, + "thread": 29 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 1882640, + "thread": 20 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2112998, + "thread": 22 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2245861, + "thread": 9 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2373307, + "thread": 3 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2616469, + "thread": 9 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2626685, + "thread": 22 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2857489, + "thread": 17 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 2978073, + "thread": 25 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 3234438, + "thread": 24 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 3441595, + "thread": 28 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 3508300, + "thread": 18 + } + }, + { + "amount": "498.976342517", + "slot": { + "period": 3741919, + "thread": 11 + } + }, + { + "amount": "498.976342512", + "slot": { + "period": 3816457, + "thread": 5 + } + } + ], + "AU122FQTxQ5bttjdDeEUjWVoQCUwJUSpT2ktvcGq1zNuuq1F7D3fR": [ + { + "amount": "159.730770591", + "slot": { + "period": 91494, + "thread": 17 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 280125, + "thread": 30 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 434191, + "thread": 0 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 503229, + "thread": 11 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 814624, + "thread": 3 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 896503, + "thread": 16 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1015443, + "thread": 8 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1284999, + "thread": 7 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1320738, + "thread": 31 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1507314, + "thread": 0 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1655131, + "thread": 11 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 1877287, + "thread": 8 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2000737, + "thread": 19 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2274181, + "thread": 3 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2456820, + "thread": 7 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2601262, + "thread": 31 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2781601, + "thread": 10 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 2808199, + "thread": 15 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3025939, + "thread": 1 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3231528, + "thread": 28 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3321574, + "thread": 28 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3578720, + "thread": 3 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3779223, + "thread": 14 + } + }, + { + "amount": "159.730770591", + "slot": { + "period": 3911893, + "thread": 19 + } + } + ], + "AU122FdJko6TZTbWZeQFNFx9oyvVbCDVEu7S2Miw2ax9uupZdwAGx": [ + { + "amount": "501.523261716", + "slot": { + "period": 131552, + "thread": 24 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 226475, + "thread": 7 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 332269, + "thread": 24 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 606684, + "thread": 15 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 805732, + "thread": 10 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 966982, + "thread": 15 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1108367, + "thread": 5 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1259355, + "thread": 30 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1465767, + "thread": 20 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1580146, + "thread": 27 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1649712, + "thread": 2 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 1898145, + "thread": 2 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2065204, + "thread": 24 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2287345, + "thread": 23 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2436997, + "thread": 11 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2463929, + "thread": 5 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2773753, + "thread": 23 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 2832472, + "thread": 31 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 3021788, + "thread": 22 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 3250113, + "thread": 2 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 3368527, + "thread": 13 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 3479552, + "thread": 1 + } + }, + { + "amount": "501.523261716", + "slot": { + "period": 3672910, + "thread": 3 + } + }, + { + "amount": "501.523261708", + "slot": { + "period": 3936116, + "thread": 5 + } + } + ], + "AU122Fkb93wwfWjtLFeYFK1AqqE29zj95GqJxEY1c3qFsC587NXG9": [ + { + "amount": "144.545810868", + "slot": { + "period": 152271, + "thread": 21 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 189789, + "thread": 27 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 343236, + "thread": 2 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 615139, + "thread": 24 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 819614, + "thread": 7 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 884588, + "thread": 1 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1005540, + "thread": 27 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1236839, + "thread": 5 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1334368, + "thread": 18 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1575794, + "thread": 1 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1660962, + "thread": 20 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 1837012, + "thread": 26 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2078167, + "thread": 25 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2168905, + "thread": 25 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2325169, + "thread": 22 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2617360, + "thread": 29 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2731589, + "thread": 9 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 2912556, + "thread": 24 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 3087840, + "thread": 7 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 3156614, + "thread": 9 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 3406447, + "thread": 31 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 3459088, + "thread": 1 + } + }, + { + "amount": "144.545810868", + "slot": { + "period": 3640689, + "thread": 11 + } + }, + { + "amount": "144.545810877", + "slot": { + "period": 3924601, + "thread": 31 + } + } + ], + "AU122GC2VGMmBpctjNM7dyj9eD5H3zeLNoatwBaqd2MwD5EHU5ReU": [ + { + "amount": "553.482959284", + "slot": { + "period": 102879, + "thread": 15 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 217187, + "thread": 7 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 396017, + "thread": 21 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 645661, + "thread": 8 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 690887, + "thread": 12 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 930791, + "thread": 2 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1059870, + "thread": 7 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1248332, + "thread": 17 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1385788, + "thread": 7 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1599368, + "thread": 1 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1678887, + "thread": 2 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 1843142, + "thread": 24 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2061943, + "thread": 21 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2248626, + "thread": 7 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2434423, + "thread": 9 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2621499, + "thread": 1 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2651701, + "thread": 13 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 2944162, + "thread": 5 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 3115690, + "thread": 9 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 3141586, + "thread": 3 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 3443003, + "thread": 3 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 3543190, + "thread": 14 + } + }, + { + "amount": "553.482959284", + "slot": { + "period": 3706463, + "thread": 8 + } + }, + { + "amount": "553.482959294", + "slot": { + "period": 3925111, + "thread": 24 + } + } + ], + "AU122GH3iSbu2bQ9qXxbbL3Lezj4xcW8ZcoL9NvsUNkvwLKks2ba3": [ + { + "amount": "206.822618806", + "slot": { + "period": 40256, + "thread": 9 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 221400, + "thread": 6 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 329639, + "thread": 29 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 501291, + "thread": 2 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 796863, + "thread": 0 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 914755, + "thread": 31 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1078783, + "thread": 14 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1208320, + "thread": 2 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1423940, + "thread": 21 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1582544, + "thread": 21 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1694465, + "thread": 25 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1858087, + "thread": 0 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 1981069, + "thread": 12 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 2200744, + "thread": 0 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 2399714, + "thread": 23 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 2524663, + "thread": 5 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 2626965, + "thread": 14 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 2912698, + "thread": 25 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 3076733, + "thread": 18 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 3204726, + "thread": 3 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 3425308, + "thread": 2 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 3514434, + "thread": 6 + } + }, + { + "amount": "206.822618806", + "slot": { + "period": 3706468, + "thread": 31 + } + }, + { + "amount": "206.822618815", + "slot": { + "period": 3849363, + "thread": 3 + } + } + ], + "AU122GR5mzouEEUaNtCTsUhe2n2nPQE9zNVfHcvA7Yi2kyKPQH5aU": [ + { + "amount": "518.572251999", + "slot": { + "period": 137805, + "thread": 12 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 179551, + "thread": 10 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 432146, + "thread": 25 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 563779, + "thread": 26 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 813984, + "thread": 24 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 835703, + "thread": 5 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1028959, + "thread": 26 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1302934, + "thread": 30 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1333722, + "thread": 17 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1595567, + "thread": 18 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1778657, + "thread": 0 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 1902694, + "thread": 22 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2132692, + "thread": 16 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2162888, + "thread": 21 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2321295, + "thread": 16 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2510278, + "thread": 27 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2756667, + "thread": 24 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2816097, + "thread": 11 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 2997296, + "thread": 28 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 3219046, + "thread": 10 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 3422556, + "thread": 4 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 3474691, + "thread": 3 + } + }, + { + "amount": "518.572251999", + "slot": { + "period": 3776525, + "thread": 10 + } + }, + { + "amount": "518.572252002", + "slot": { + "period": 3841145, + "thread": 18 + } + } + ], + "AU122GzqR8yqDFGnWMWxAStz21NyQ51FrSxUriBFL2WVJbhos6VGW": [ + { + "amount": "176.173344295", + "slot": { + "period": 68799, + "thread": 28 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 184403, + "thread": 11 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 438409, + "thread": 23 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 578469, + "thread": 30 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 779772, + "thread": 26 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 940849, + "thread": 25 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1064184, + "thread": 25 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1252583, + "thread": 26 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1456083, + "thread": 28 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1569546, + "thread": 19 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1754496, + "thread": 1 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1909952, + "thread": 17 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 1978187, + "thread": 29 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2150347, + "thread": 29 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2311114, + "thread": 7 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2545030, + "thread": 17 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2757600, + "thread": 10 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2912316, + "thread": 25 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 2998502, + "thread": 18 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 3125175, + "thread": 30 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 3298881, + "thread": 0 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 3534269, + "thread": 28 + } + }, + { + "amount": "176.173344295", + "slot": { + "period": 3734500, + "thread": 1 + } + }, + { + "amount": "176.173344285", + "slot": { + "period": 3787174, + "thread": 3 + } + } + ], + "AU122JCZL52qft1X1mN5EU79bCd5ZpS3fARMx5qZxcjA1ivWUQzV1": [ + { + "amount": "293.740982163", + "slot": { + "period": 166755, + "thread": 1 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 196017, + "thread": 31 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 353635, + "thread": 19 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 619740, + "thread": 31 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 772991, + "thread": 12 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 887581, + "thread": 28 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1091244, + "thread": 13 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1200671, + "thread": 15 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1459131, + "thread": 16 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1574389, + "thread": 2 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1731503, + "thread": 12 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 1882631, + "thread": 11 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2090360, + "thread": 11 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2150157, + "thread": 10 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2369748, + "thread": 15 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2615384, + "thread": 3 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2630143, + "thread": 13 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2813043, + "thread": 12 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 2961964, + "thread": 17 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 3264329, + "thread": 22 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 3352526, + "thread": 25 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 3551060, + "thread": 21 + } + }, + { + "amount": "293.740982163", + "slot": { + "period": 3767346, + "thread": 0 + } + }, + { + "amount": "293.740982166", + "slot": { + "period": 3934684, + "thread": 27 + } + } + ], + "AU122JPU6Z4ayrHMSssYmNusN8z5tcnVNkx77NRMbdLK6Rhjfa6kX": [ + { + "amount": "56.781862148", + "slot": { + "period": 88094, + "thread": 5 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 274179, + "thread": 9 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 345258, + "thread": 25 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 577183, + "thread": 11 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 695990, + "thread": 10 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 875429, + "thread": 26 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1023419, + "thread": 24 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1259244, + "thread": 10 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1331063, + "thread": 16 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1618591, + "thread": 20 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1712172, + "thread": 14 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 1911208, + "thread": 24 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2075857, + "thread": 6 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2192796, + "thread": 13 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2405380, + "thread": 0 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2520012, + "thread": 10 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2647693, + "thread": 3 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2847622, + "thread": 10 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 2996731, + "thread": 16 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 3167573, + "thread": 17 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 3444267, + "thread": 6 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 3522492, + "thread": 28 + } + }, + { + "amount": "56.781862148", + "slot": { + "period": 3629126, + "thread": 6 + } + }, + { + "amount": "56.781862152", + "slot": { + "period": 3820045, + "thread": 8 + } + } + ], + "AU122LVpt5DYHv8hWymK96tdLnnz8zSCPe38k9H2pUpDMJ8RQ6FbF": [ + { + "amount": "95.829366664", + "slot": { + "period": 105250, + "thread": 21 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 305267, + "thread": 16 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 348429, + "thread": 18 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 611699, + "thread": 25 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 781816, + "thread": 0 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 944370, + "thread": 5 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1148479, + "thread": 27 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1163239, + "thread": 28 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1443372, + "thread": 25 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1545473, + "thread": 29 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1679772, + "thread": 15 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 1868495, + "thread": 28 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2026841, + "thread": 11 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2262049, + "thread": 8 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2462080, + "thread": 15 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2584280, + "thread": 10 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2660223, + "thread": 28 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 2912554, + "thread": 4 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 3074025, + "thread": 7 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 3129316, + "thread": 15 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 3332139, + "thread": 29 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 3610839, + "thread": 7 + } + }, + { + "amount": "95.829366664", + "slot": { + "period": 3774969, + "thread": 26 + } + }, + { + "amount": "95.829366656", + "slot": { + "period": 3899374, + "thread": 17 + } + } + ], + "AU122LaL6VQfYg86UXp9HuzZL8swJ3vaTeixdE4q9D7DLUANFaDW3": [ + { + "amount": "127.903078569", + "slot": { + "period": 143966, + "thread": 29 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 274219, + "thread": 19 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 327870, + "thread": 18 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 639980, + "thread": 30 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 718307, + "thread": 7 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 929380, + "thread": 23 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1081615, + "thread": 11 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1161629, + "thread": 6 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1385901, + "thread": 10 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1612161, + "thread": 18 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1737846, + "thread": 18 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 1907116, + "thread": 13 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2026745, + "thread": 5 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2146100, + "thread": 23 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2416000, + "thread": 26 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2481908, + "thread": 5 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2788562, + "thread": 19 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 2843077, + "thread": 12 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3046964, + "thread": 29 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3171594, + "thread": 2 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3361954, + "thread": 13 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3480083, + "thread": 6 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3672881, + "thread": 18 + } + }, + { + "amount": "127.903078569", + "slot": { + "period": 3806327, + "thread": 14 + } + } + ], + "AU122MhsamUX6gGYwRNe3QmQVSJW2o71vBxi3zJxPee8aSZ2H9sUp": [ + { + "amount": "136.561591822", + "slot": { + "period": 157618, + "thread": 13 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 208232, + "thread": 0 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 414874, + "thread": 15 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 552222, + "thread": 4 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 794200, + "thread": 7 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 967486, + "thread": 14 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1073114, + "thread": 13 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1276486, + "thread": 11 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1453558, + "thread": 1 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1512131, + "thread": 21 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1763110, + "thread": 30 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1852764, + "thread": 20 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 1979865, + "thread": 0 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 2281548, + "thread": 2 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 2432065, + "thread": 26 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 2462739, + "thread": 8 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 2684224, + "thread": 18 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 2914400, + "thread": 30 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 3058207, + "thread": 29 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 3188782, + "thread": 14 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 3358587, + "thread": 9 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 3578282, + "thread": 7 + } + }, + { + "amount": "136.561591822", + "slot": { + "period": 3701123, + "thread": 0 + } + }, + { + "amount": "136.561591832", + "slot": { + "period": 3836177, + "thread": 2 + } + } + ], + "AU122N3PpTX3R9AnCGev7nhn2cf8NVkWT4abzedgLQ34au82xNaiy": [ + { + "amount": "142.764314975", + "slot": { + "period": 39650, + "thread": 11 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 205257, + "thread": 13 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 341911, + "thread": 19 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 513966, + "thread": 15 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 697749, + "thread": 15 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 933324, + "thread": 6 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1103750, + "thread": 10 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1218915, + "thread": 11 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1325559, + "thread": 6 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1564033, + "thread": 15 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1667603, + "thread": 25 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 1838176, + "thread": 3 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2106205, + "thread": 23 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2263770, + "thread": 21 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2441655, + "thread": 22 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2480110, + "thread": 16 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2763342, + "thread": 25 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 2889127, + "thread": 21 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 3100525, + "thread": 15 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 3264723, + "thread": 14 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 3450555, + "thread": 31 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 3595245, + "thread": 14 + } + }, + { + "amount": "142.764314975", + "slot": { + "period": 3692750, + "thread": 0 + } + }, + { + "amount": "142.764314971", + "slot": { + "period": 3933796, + "thread": 0 + } + } + ], + "AU122PUhhuNikGZzoxeamgvVZYJN8nqYUFPXyhjfsXXLYRvoQzmdV": [ + { + "amount": "60.306466571", + "slot": { + "period": 71956, + "thread": 18 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 216629, + "thread": 2 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 440423, + "thread": 12 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 534676, + "thread": 4 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 736151, + "thread": 0 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 950244, + "thread": 6 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1061897, + "thread": 11 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1242913, + "thread": 21 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1444916, + "thread": 29 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1479688, + "thread": 7 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1751166, + "thread": 12 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 1823042, + "thread": 16 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2056041, + "thread": 9 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2257668, + "thread": 15 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2369895, + "thread": 25 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2571963, + "thread": 8 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2781281, + "thread": 27 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 2806372, + "thread": 31 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 3113133, + "thread": 0 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 3134853, + "thread": 31 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 3416129, + "thread": 9 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 3490349, + "thread": 17 + } + }, + { + "amount": "60.306466571", + "slot": { + "period": 3751676, + "thread": 26 + } + }, + { + "amount": "60.306466576", + "slot": { + "period": 3856097, + "thread": 3 + } + } + ], + "AU122QeE9XqHZjkfocUKjpgJFpGvhUyzxumWbvAGtt4tfnNMoK3cn": [ + { + "amount": "204.159974229", + "slot": { + "period": 148087, + "thread": 14 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 228705, + "thread": 17 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 455422, + "thread": 27 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 495727, + "thread": 18 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 685054, + "thread": 19 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 823544, + "thread": 31 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1077115, + "thread": 25 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1177371, + "thread": 13 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1435557, + "thread": 10 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1480781, + "thread": 1 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1757863, + "thread": 25 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 1936980, + "thread": 7 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2119752, + "thread": 16 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2227325, + "thread": 0 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2448871, + "thread": 15 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2611295, + "thread": 15 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2742652, + "thread": 14 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 2825589, + "thread": 11 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 3107744, + "thread": 29 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 3125409, + "thread": 22 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 3362455, + "thread": 6 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 3540601, + "thread": 0 + } + }, + { + "amount": "204.159974229", + "slot": { + "period": 3666036, + "thread": 3 + } + }, + { + "amount": "204.159974225", + "slot": { + "period": 3802397, + "thread": 2 + } + } + ], + "AU122QwuxC8XAb4tcPW7CYCNFKk7saz2amXHtjN842ResQSPK1jPQ": [ + { + "amount": "99.144662014", + "slot": { + "period": 117826, + "thread": 25 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 221983, + "thread": 1 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 464857, + "thread": 28 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 583889, + "thread": 8 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 797522, + "thread": 28 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 901334, + "thread": 23 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1039482, + "thread": 2 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1292727, + "thread": 19 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1454177, + "thread": 20 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1619738, + "thread": 18 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1759071, + "thread": 6 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 1810764, + "thread": 26 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2017012, + "thread": 1 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2164570, + "thread": 3 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2442465, + "thread": 23 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2577309, + "thread": 12 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2664978, + "thread": 8 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 2863258, + "thread": 4 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 3013361, + "thread": 29 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 3268146, + "thread": 1 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 3425522, + "thread": 2 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 3548586, + "thread": 7 + } + }, + { + "amount": "99.144662014", + "slot": { + "period": 3629728, + "thread": 29 + } + }, + { + "amount": "99.144662004", + "slot": { + "period": 3926186, + "thread": 3 + } + } + ], + "AU122RSzQqEG7nKKwmR4pTtXSDwavMqCfwdV9A46H7LsWrJM2twXH": [ + { + "amount": "136.582245979", + "slot": { + "period": 56192, + "thread": 8 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 278808, + "thread": 0 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 336400, + "thread": 30 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 553185, + "thread": 17 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 755016, + "thread": 15 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 961435, + "thread": 18 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1124098, + "thread": 13 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1270940, + "thread": 13 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1338815, + "thread": 31 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1598154, + "thread": 6 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1751329, + "thread": 1 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 1879086, + "thread": 11 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2016740, + "thread": 10 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2187328, + "thread": 29 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2455680, + "thread": 14 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2603463, + "thread": 26 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2699673, + "thread": 17 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 2840638, + "thread": 31 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 3060898, + "thread": 25 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 3176113, + "thread": 6 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 3370970, + "thread": 29 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 3553903, + "thread": 11 + } + }, + { + "amount": "136.582245979", + "slot": { + "period": 3652618, + "thread": 15 + } + }, + { + "amount": "136.582245971", + "slot": { + "period": 3794822, + "thread": 11 + } + } + ], + "AU122RfosL7vqrDZQ74WQLReNMNiVAnAGVweuojwcwgFDZJyuMtSK": [ + { + "amount": "155.279987388", + "slot": { + "period": 63060, + "thread": 8 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 208435, + "thread": 11 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 417741, + "thread": 22 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 502609, + "thread": 12 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 728229, + "thread": 14 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 926998, + "thread": 1 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 988166, + "thread": 27 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1224831, + "thread": 2 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1425995, + "thread": 31 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1523589, + "thread": 4 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1735568, + "thread": 24 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1876872, + "thread": 6 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 1997737, + "thread": 14 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 2180123, + "thread": 28 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 2357394, + "thread": 27 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 2530641, + "thread": 17 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 2788080, + "thread": 9 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 2939538, + "thread": 16 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 3102281, + "thread": 29 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 3248051, + "thread": 8 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 3365059, + "thread": 2 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 3523155, + "thread": 30 + } + }, + { + "amount": "155.279987388", + "slot": { + "period": 3711492, + "thread": 18 + } + }, + { + "amount": "155.279987399", + "slot": { + "period": 3941380, + "thread": 7 + } + } + ], + "AU122Rhz32vNL7yScj2dY4SLXV8KfbtGdPBVSXNnZRqA2Buas7zHD": [ + { + "amount": "69.628067790", + "slot": { + "period": 80705, + "thread": 22 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 226546, + "thread": 9 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 403131, + "thread": 15 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 635965, + "thread": 0 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 799869, + "thread": 1 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 967142, + "thread": 13 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1135736, + "thread": 6 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1273674, + "thread": 5 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1399982, + "thread": 5 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1514675, + "thread": 19 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1788907, + "thread": 12 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 1964781, + "thread": 9 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2124875, + "thread": 4 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2249782, + "thread": 4 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2378890, + "thread": 8 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2524257, + "thread": 3 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2743020, + "thread": 1 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 2843234, + "thread": 29 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 3060673, + "thread": 28 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 3130469, + "thread": 16 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 3394683, + "thread": 23 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 3539164, + "thread": 23 + } + }, + { + "amount": "69.628067790", + "slot": { + "period": 3654147, + "thread": 18 + } + }, + { + "amount": "69.628067796", + "slot": { + "period": 3849882, + "thread": 4 + } + } + ], + "AU122SESVLSDuV2abHFegztv4hA9xNAJdjdk4bEn1SRzVwKJWnC6Y": [ + { + "amount": "288.397851471", + "slot": { + "period": 130687, + "thread": 26 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 285777, + "thread": 6 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 349540, + "thread": 7 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 599777, + "thread": 9 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 752351, + "thread": 21 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 909654, + "thread": 1 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1115447, + "thread": 30 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1205268, + "thread": 15 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1401353, + "thread": 20 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1620106, + "thread": 26 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1667976, + "thread": 0 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 1878002, + "thread": 12 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2101800, + "thread": 14 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2191727, + "thread": 30 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2440417, + "thread": 3 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2545705, + "thread": 21 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2638262, + "thread": 17 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 2859445, + "thread": 19 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 3097128, + "thread": 15 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 3134858, + "thread": 15 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 3370752, + "thread": 18 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 3516430, + "thread": 17 + } + }, + { + "amount": "288.397851471", + "slot": { + "period": 3623234, + "thread": 19 + } + }, + { + "amount": "288.397851481", + "slot": { + "period": 3887688, + "thread": 26 + } + } + ], + "AU122UgYC9EAYQXsG9mkLE1RZPm2DBQLxjZaxFT7NGyiBYMJgaSL2": [ + { + "amount": "577.776539552", + "slot": { + "period": 30750, + "thread": 16 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 318270, + "thread": 23 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 347115, + "thread": 19 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 572367, + "thread": 16 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 757015, + "thread": 24 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 912073, + "thread": 9 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 988706, + "thread": 4 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 1197870, + "thread": 0 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 1427994, + "thread": 23 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 1504390, + "thread": 28 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 1734031, + "thread": 6 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 1820537, + "thread": 26 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2107082, + "thread": 20 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2281087, + "thread": 27 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2296789, + "thread": 11 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2467891, + "thread": 20 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2747836, + "thread": 13 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2859081, + "thread": 17 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 2996466, + "thread": 17 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 3159480, + "thread": 17 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 3305664, + "thread": 20 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 3566413, + "thread": 18 + } + }, + { + "amount": "577.776539552", + "slot": { + "period": 3733252, + "thread": 20 + } + }, + { + "amount": "577.776539559", + "slot": { + "period": 3833062, + "thread": 22 + } + } + ], + "AU122Uix1cLt95i16tYRLSUqeHmzCfLaJM9MmJc4fjvWNFRjBXRdA": [ + { + "amount": "334.631327072", + "slot": { + "period": 92836, + "thread": 24 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 188519, + "thread": 5 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 415515, + "thread": 6 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 511183, + "thread": 3 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 815093, + "thread": 14 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 892071, + "thread": 27 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 998987, + "thread": 1 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 1225863, + "thread": 16 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 1404371, + "thread": 29 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 1496560, + "thread": 29 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 1764512, + "thread": 19 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 1926237, + "thread": 10 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2042448, + "thread": 21 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2208094, + "thread": 21 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2370094, + "thread": 9 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2574273, + "thread": 14 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2747065, + "thread": 13 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 2906130, + "thread": 12 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 3054516, + "thread": 25 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 3184109, + "thread": 14 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 3371256, + "thread": 11 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 3593680, + "thread": 19 + } + }, + { + "amount": "334.631327072", + "slot": { + "period": 3712352, + "thread": 13 + } + }, + { + "amount": "334.631327073", + "slot": { + "period": 3916903, + "thread": 18 + } + } + ], + "AU122UjW3ZyWB1HiotuUXoVaY1HgjtJPCJhvW6eGVS35qeMAbgfku": [ + { + "amount": "230.845208192", + "slot": { + "period": 11287, + "thread": 6 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 171125, + "thread": 2 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 339926, + "thread": 23 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 596157, + "thread": 1 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 776870, + "thread": 12 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 850859, + "thread": 11 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1060976, + "thread": 2 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1250921, + "thread": 2 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1443640, + "thread": 13 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1608492, + "thread": 9 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1756762, + "thread": 20 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1818918, + "thread": 29 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 1987212, + "thread": 29 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 2245750, + "thread": 19 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 2312538, + "thread": 15 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 2614920, + "thread": 10 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 2682802, + "thread": 14 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 2924675, + "thread": 22 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 3050692, + "thread": 25 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 3274846, + "thread": 12 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 3364526, + "thread": 13 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 3610378, + "thread": 14 + } + }, + { + "amount": "230.845208192", + "slot": { + "period": 3693386, + "thread": 4 + } + }, + { + "amount": "230.845208200", + "slot": { + "period": 3921937, + "thread": 3 + } + } + ], + "AU122W45BT6ciqAGTX8A7xAjdUKuhkavpVspaJuQdzy8zrzkqYjve": [ + { + "amount": "53.542428654", + "slot": { + "period": 113276, + "thread": 24 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 302613, + "thread": 25 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 448880, + "thread": 30 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 527580, + "thread": 13 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 721141, + "thread": 12 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 896375, + "thread": 13 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1146255, + "thread": 28 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1296050, + "thread": 11 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1432242, + "thread": 19 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1568040, + "thread": 12 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1766898, + "thread": 2 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 1923187, + "thread": 12 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2077860, + "thread": 0 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2162742, + "thread": 27 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2400074, + "thread": 22 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2535763, + "thread": 1 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2758881, + "thread": 13 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 2918126, + "thread": 0 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 3099157, + "thread": 23 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 3224025, + "thread": 30 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 3387113, + "thread": 13 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 3524191, + "thread": 21 + } + }, + { + "amount": "53.542428654", + "slot": { + "period": 3774599, + "thread": 31 + } + }, + { + "amount": "53.542428658", + "slot": { + "period": 3943054, + "thread": 15 + } + } + ], + "AU122WBLqv79NuswCBuCw7nCJNbckxQrYm35QEF2gW2EZE3k3AgPG": [ + { + "amount": "165.196463762", + "slot": { + "period": 20616, + "thread": 19 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 279335, + "thread": 17 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 422665, + "thread": 26 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 644677, + "thread": 27 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 742847, + "thread": 6 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 873346, + "thread": 1 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1037151, + "thread": 26 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1282660, + "thread": 0 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1366742, + "thread": 5 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1566435, + "thread": 27 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1723191, + "thread": 9 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 1962641, + "thread": 24 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2040885, + "thread": 12 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2203259, + "thread": 10 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2424718, + "thread": 30 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2504158, + "thread": 30 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2741738, + "thread": 4 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 2883966, + "thread": 10 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 3050892, + "thread": 19 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 3145166, + "thread": 23 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 3300638, + "thread": 0 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 3552432, + "thread": 27 + } + }, + { + "amount": "165.196463762", + "slot": { + "period": 3622447, + "thread": 12 + } + }, + { + "amount": "165.196463752", + "slot": { + "period": 3859205, + "thread": 18 + } + } + ], + "AU122WsotKGmmTzBnM6sTMGAX27CeSy1y3jJk4CcEjt6aqVnLDnZj": [ + { + "amount": "536.941617805", + "slot": { + "period": 46136, + "thread": 23 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 292256, + "thread": 23 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 464396, + "thread": 21 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 564165, + "thread": 20 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 757435, + "thread": 30 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 936704, + "thread": 29 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1068200, + "thread": 4 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1290343, + "thread": 23 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1388143, + "thread": 7 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1602835, + "thread": 21 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1755990, + "thread": 4 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 1924368, + "thread": 0 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2067818, + "thread": 20 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2244013, + "thread": 30 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2374435, + "thread": 2 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2467693, + "thread": 7 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2769142, + "thread": 25 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 2813118, + "thread": 22 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 3059917, + "thread": 18 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 3210464, + "thread": 9 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 3301068, + "thread": 21 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 3524352, + "thread": 29 + } + }, + { + "amount": "536.941617805", + "slot": { + "period": 3643756, + "thread": 14 + } + }, + { + "amount": "536.941617800", + "slot": { + "period": 3946538, + "thread": 10 + } + } + ], + "AU122WzNpGq6bK9YAJUgNRn5S5u5g5hsz2NT1FGo3ZJPGN9vLG2Yw": [ + { + "amount": "245.914525553", + "slot": { + "period": 128485, + "thread": 15 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 178931, + "thread": 26 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 389345, + "thread": 11 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 646722, + "thread": 26 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 722428, + "thread": 21 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 866932, + "thread": 21 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1003424, + "thread": 19 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1166734, + "thread": 20 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1320265, + "thread": 17 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1584456, + "thread": 18 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1774213, + "thread": 6 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 1900027, + "thread": 11 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2117232, + "thread": 0 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2203445, + "thread": 7 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2352093, + "thread": 3 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2571967, + "thread": 31 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2787710, + "thread": 15 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 2813975, + "thread": 9 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 3059348, + "thread": 2 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 3149608, + "thread": 4 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 3328110, + "thread": 23 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 3500673, + "thread": 27 + } + }, + { + "amount": "245.914525553", + "slot": { + "period": 3691228, + "thread": 24 + } + }, + { + "amount": "245.914525564", + "slot": { + "period": 3897798, + "thread": 28 + } + } + ], + "AU122XMhqWNUxpism2CBXH16oa2K6RmW8dWoQNcRjqXWU5JCi58CG": [ + { + "amount": "592.564470503", + "slot": { + "period": 69694, + "thread": 1 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 220234, + "thread": 16 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 439338, + "thread": 24 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 626976, + "thread": 13 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 754738, + "thread": 1 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 839624, + "thread": 19 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1124836, + "thread": 30 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1226146, + "thread": 8 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1393441, + "thread": 31 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1566918, + "thread": 8 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1687339, + "thread": 27 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 1876215, + "thread": 16 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2128292, + "thread": 20 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2267325, + "thread": 16 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2298931, + "thread": 26 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2545325, + "thread": 1 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2662542, + "thread": 15 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2810837, + "thread": 16 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 2968837, + "thread": 17 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 3189090, + "thread": 8 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 3292658, + "thread": 4 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 3560165, + "thread": 8 + } + }, + { + "amount": "592.564470503", + "slot": { + "period": 3650603, + "thread": 30 + } + }, + { + "amount": "592.564470514", + "slot": { + "period": 3847459, + "thread": 18 + } + } + ], + "AU122Yv2EFmdh3EzxAnUuBAnzW3S5BhVdp3od9jV9gt5jGm9H2bNV": [ + { + "amount": "291.020280945", + "slot": { + "period": 35161, + "thread": 16 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 272931, + "thread": 26 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 436156, + "thread": 2 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 597410, + "thread": 31 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 676121, + "thread": 28 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 841276, + "thread": 29 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1077014, + "thread": 1 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1312984, + "thread": 27 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1320494, + "thread": 21 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1495880, + "thread": 2 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1706378, + "thread": 13 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 1859582, + "thread": 26 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2030442, + "thread": 7 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2183449, + "thread": 18 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2303116, + "thread": 23 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2544177, + "thread": 18 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2747746, + "thread": 22 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 2804164, + "thread": 23 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 3112342, + "thread": 12 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 3160406, + "thread": 21 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 3364553, + "thread": 6 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 3608411, + "thread": 13 + } + }, + { + "amount": "291.020280945", + "slot": { + "period": 3753665, + "thread": 9 + } + }, + { + "amount": "291.020280954", + "slot": { + "period": 3810383, + "thread": 22 + } + } + ], + "AU122Z4SgTFfZAvQ7U22rydKsw38WAZcnHDP27Kh2dPNLMB5qqynV": [ + { + "amount": "92.540642892", + "slot": { + "period": 12619, + "thread": 4 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 215694, + "thread": 28 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 386380, + "thread": 5 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 646491, + "thread": 5 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 676320, + "thread": 19 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 843738, + "thread": 22 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1135698, + "thread": 11 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1234714, + "thread": 3 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1379435, + "thread": 24 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1535880, + "thread": 19 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1740308, + "thread": 24 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 1864080, + "thread": 20 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2115167, + "thread": 8 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2270535, + "thread": 25 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2412090, + "thread": 16 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2466887, + "thread": 22 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2631052, + "thread": 23 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 2865611, + "thread": 26 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 3072227, + "thread": 30 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 3129016, + "thread": 4 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 3344899, + "thread": 7 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 3465260, + "thread": 20 + } + }, + { + "amount": "92.540642892", + "slot": { + "period": 3753868, + "thread": 16 + } + }, + { + "amount": "92.540642904", + "slot": { + "period": 3916200, + "thread": 11 + } + } + ], + "AU122a18RM4oo5VddArz6Go9MyN2VjRfNkFnijt2SgZUx8879MRYN": [ + { + "amount": "156.742156126", + "slot": { + "period": 35555, + "thread": 23 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 203608, + "thread": 0 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 448276, + "thread": 2 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 575568, + "thread": 28 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 692177, + "thread": 24 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 949634, + "thread": 3 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1128111, + "thread": 3 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1227607, + "thread": 27 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1346046, + "thread": 12 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1550170, + "thread": 18 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1729854, + "thread": 10 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 1960951, + "thread": 5 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2013693, + "thread": 5 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2184585, + "thread": 6 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2322677, + "thread": 24 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2520729, + "thread": 31 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2674592, + "thread": 27 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2927681, + "thread": 18 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 2984672, + "thread": 12 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 3189326, + "thread": 18 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 3357871, + "thread": 7 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 3503994, + "thread": 26 + } + }, + { + "amount": "156.742156126", + "slot": { + "period": 3712642, + "thread": 7 + } + }, + { + "amount": "156.742156130", + "slot": { + "period": 3791405, + "thread": 29 + } + } + ], + "AU122aqV84aLTpL43vhGxG9zJiRMcPpWSUGZCuVDcjABBq1pgxNAc": [ + { + "amount": "171.853370496", + "slot": { + "period": 123978, + "thread": 27 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 182664, + "thread": 3 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 406015, + "thread": 25 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 601158, + "thread": 15 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 769582, + "thread": 7 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 913433, + "thread": 8 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1099805, + "thread": 2 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1276169, + "thread": 24 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1406982, + "thread": 26 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1619837, + "thread": 5 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1735038, + "thread": 8 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 1865136, + "thread": 26 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2024660, + "thread": 4 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2239554, + "thread": 11 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2344406, + "thread": 1 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2550581, + "thread": 12 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2642556, + "thread": 17 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 2918482, + "thread": 31 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 3116043, + "thread": 3 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 3131433, + "thread": 6 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 3306113, + "thread": 27 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 3580634, + "thread": 17 + } + }, + { + "amount": "171.853370496", + "slot": { + "period": 3734929, + "thread": 12 + } + }, + { + "amount": "171.853370490", + "slot": { + "period": 3860971, + "thread": 27 + } + } + ], + "AU122bk1mTtsdupG7YtUVope4zCovyvk4QjnxSPW84Rg3sGsTzKaq": [ + { + "amount": "153.164587794", + "slot": { + "period": 75721, + "thread": 12 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 198723, + "thread": 1 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 367340, + "thread": 25 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 498294, + "thread": 29 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 772337, + "thread": 1 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 910825, + "thread": 29 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1138566, + "thread": 2 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1250932, + "thread": 6 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1336188, + "thread": 31 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1494998, + "thread": 11 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1748374, + "thread": 15 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 1931121, + "thread": 6 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2135096, + "thread": 1 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2150013, + "thread": 0 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2372495, + "thread": 4 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2500828, + "thread": 9 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2763259, + "thread": 2 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2806648, + "thread": 28 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 2962336, + "thread": 2 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 3177361, + "thread": 10 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 3289739, + "thread": 14 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 3481697, + "thread": 11 + } + }, + { + "amount": "153.164587794", + "slot": { + "period": 3655636, + "thread": 23 + } + }, + { + "amount": "153.164587789", + "slot": { + "period": 3943394, + "thread": 11 + } + } + ], + "AU122bkpdwvpiPCQxuekmhgghqD5n6nrwfSWTYjfPiwAQULwA9VLj": [ + { + "amount": "350.235867424", + "slot": { + "period": 141006, + "thread": 0 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 308321, + "thread": 18 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 482886, + "thread": 24 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 556129, + "thread": 22 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 787896, + "thread": 24 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 945826, + "thread": 10 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1043420, + "thread": 14 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1197705, + "thread": 22 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1434434, + "thread": 16 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1585811, + "thread": 12 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1705503, + "thread": 28 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 1850436, + "thread": 17 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2119438, + "thread": 15 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2162432, + "thread": 18 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2378570, + "thread": 18 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2503234, + "thread": 27 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2779871, + "thread": 11 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 2934884, + "thread": 15 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 3044538, + "thread": 6 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 3231195, + "thread": 0 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 3304385, + "thread": 17 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 3550948, + "thread": 26 + } + }, + { + "amount": "350.235867424", + "slot": { + "period": 3665252, + "thread": 8 + } + }, + { + "amount": "350.235867421", + "slot": { + "period": 3891465, + "thread": 14 + } + } + ], + "AU122c2mACjr8PwM2N4meCcxn7ujvHHm4vUxygRmrFupdc2VRWAXZ": [ + { + "amount": "58.659529640", + "slot": { + "period": 21519, + "thread": 18 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 190231, + "thread": 13 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 477707, + "thread": 20 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 600649, + "thread": 15 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 696766, + "thread": 30 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 852419, + "thread": 6 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1136205, + "thread": 24 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1236439, + "thread": 18 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1364592, + "thread": 21 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1489032, + "thread": 14 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1737399, + "thread": 8 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1953416, + "thread": 22 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 1990463, + "thread": 5 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 2234208, + "thread": 24 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 2432639, + "thread": 30 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 2468163, + "thread": 15 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 2755278, + "thread": 29 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 2900168, + "thread": 21 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 3028463, + "thread": 25 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 3162319, + "thread": 29 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 3373946, + "thread": 11 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 3503114, + "thread": 15 + } + }, + { + "amount": "58.659529640", + "slot": { + "period": 3745528, + "thread": 20 + } + }, + { + "amount": "58.659529643", + "slot": { + "period": 3787929, + "thread": 22 + } + } + ], + "AU122c6FhKJTVaYhML7tJA6SDofGSPm3cLangpi1gwfkEQv3Ffr9q": [ + { + "amount": "102.863191961", + "slot": { + "period": 100116, + "thread": 21 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 181869, + "thread": 30 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 491324, + "thread": 3 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 599820, + "thread": 30 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 754887, + "thread": 28 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 901365, + "thread": 19 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1039562, + "thread": 6 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1308402, + "thread": 23 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1358396, + "thread": 31 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1511123, + "thread": 29 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1700727, + "thread": 20 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 1855521, + "thread": 1 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2006470, + "thread": 13 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2211958, + "thread": 0 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2297467, + "thread": 24 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2623374, + "thread": 17 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2682951, + "thread": 23 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 2877724, + "thread": 19 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 3071942, + "thread": 8 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 3127840, + "thread": 3 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 3341995, + "thread": 19 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 3598434, + "thread": 19 + } + }, + { + "amount": "102.863191961", + "slot": { + "period": 3741240, + "thread": 20 + } + }, + { + "amount": "102.863191971", + "slot": { + "period": 3794404, + "thread": 9 + } + } + ], + "AU122csiwrVZhrmt8aJPZN8wedfNCvQL9uapm18SpFUAb2DZpU4cL": [ + { + "amount": "317.930185572", + "slot": { + "period": 127693, + "thread": 28 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 261675, + "thread": 6 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 375257, + "thread": 13 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 598629, + "thread": 31 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 797022, + "thread": 28 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 895793, + "thread": 16 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1081660, + "thread": 23 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1177151, + "thread": 15 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1449764, + "thread": 23 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1491719, + "thread": 3 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1800075, + "thread": 6 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1869322, + "thread": 13 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 1977936, + "thread": 13 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 2280904, + "thread": 20 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 2430006, + "thread": 17 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 2587181, + "thread": 31 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 2718259, + "thread": 15 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 2911158, + "thread": 26 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 3066187, + "thread": 2 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 3182169, + "thread": 24 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 3432987, + "thread": 14 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 3502332, + "thread": 22 + } + }, + { + "amount": "317.930185572", + "slot": { + "period": 3727933, + "thread": 7 + } + }, + { + "amount": "317.930185574", + "slot": { + "period": 3881202, + "thread": 28 + } + } + ], + "AU122dAcLiV9hxbT99ECo2W4sNJ53GEsEVLpkHEwj1Roqw8XXpiAC": [ + { + "amount": "56.165417864", + "slot": { + "period": 127325, + "thread": 11 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 216009, + "thread": 8 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 470794, + "thread": 21 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 589325, + "thread": 23 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 781967, + "thread": 21 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 862818, + "thread": 29 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1136842, + "thread": 18 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1163170, + "thread": 1 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1364895, + "thread": 26 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1580948, + "thread": 2 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1653787, + "thread": 20 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 1888050, + "thread": 30 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2021154, + "thread": 21 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2167255, + "thread": 23 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2332374, + "thread": 3 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2492383, + "thread": 28 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2715182, + "thread": 2 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 2839319, + "thread": 17 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 3058814, + "thread": 11 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 3144885, + "thread": 23 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 3407853, + "thread": 7 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 3509953, + "thread": 6 + } + }, + { + "amount": "56.165417864", + "slot": { + "period": 3643560, + "thread": 22 + } + }, + { + "amount": "56.165417854", + "slot": { + "period": 3915725, + "thread": 6 + } + } + ], + "AU122dPEt7zk47TbjcbQhTGz7sFjW18B9yRS8GmH1Hwj466AkFxvF": [ + { + "amount": "134.492462420", + "slot": { + "period": 150020, + "thread": 1 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 312869, + "thread": 10 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 354756, + "thread": 5 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 563339, + "thread": 10 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 790263, + "thread": 12 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 861169, + "thread": 12 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1007285, + "thread": 25 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1212007, + "thread": 2 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1384178, + "thread": 16 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1493100, + "thread": 14 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1741661, + "thread": 25 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 1897032, + "thread": 28 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2015450, + "thread": 23 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2264860, + "thread": 26 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2357031, + "thread": 13 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2622800, + "thread": 20 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2768804, + "thread": 26 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 2917614, + "thread": 7 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 3076532, + "thread": 15 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 3171297, + "thread": 4 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 3445486, + "thread": 2 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 3590607, + "thread": 29 + } + }, + { + "amount": "134.492462420", + "slot": { + "period": 3778867, + "thread": 13 + } + }, + { + "amount": "134.492462409", + "slot": { + "period": 3891046, + "thread": 30 + } + } + ], + "AU122dxmw3RfUHkvBZ6m3DsPsdKfg4z9bXRPFfC4iCZhSLbq9y75v": [ + { + "amount": "485.079790387", + "slot": { + "period": 83582, + "thread": 20 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 290776, + "thread": 24 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 446079, + "thread": 22 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 599389, + "thread": 18 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 719374, + "thread": 3 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 863222, + "thread": 6 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1052810, + "thread": 30 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1306195, + "thread": 30 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1408423, + "thread": 17 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1548070, + "thread": 8 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1804708, + "thread": 15 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 1928102, + "thread": 8 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2032073, + "thread": 26 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2220442, + "thread": 13 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2323306, + "thread": 7 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2517859, + "thread": 18 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2664855, + "thread": 20 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 2931652, + "thread": 1 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 3068010, + "thread": 30 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 3145038, + "thread": 15 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 3354813, + "thread": 30 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 3577550, + "thread": 0 + } + }, + { + "amount": "485.079790387", + "slot": { + "period": 3625382, + "thread": 24 + } + }, + { + "amount": "485.079790391", + "slot": { + "period": 3919567, + "thread": 2 + } + } + ], + "AU122ejm11LwkZaTG7Xj3pQKveHoB1wDj3o6XS5EXpK7U4aPp5mx5": [ + { + "amount": "299.335026572", + "slot": { + "period": 51823, + "thread": 22 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 197058, + "thread": 12 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 468583, + "thread": 6 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 551117, + "thread": 25 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 673706, + "thread": 12 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 916348, + "thread": 1 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 992159, + "thread": 26 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 1209718, + "thread": 4 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 1475139, + "thread": 11 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 1565504, + "thread": 15 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 1757076, + "thread": 15 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 1926513, + "thread": 11 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2045881, + "thread": 22 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2195009, + "thread": 22 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2399317, + "thread": 12 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2581207, + "thread": 16 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2721172, + "thread": 7 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2887771, + "thread": 19 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 2975537, + "thread": 11 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 3285152, + "thread": 4 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 3397770, + "thread": 17 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 3583013, + "thread": 26 + } + }, + { + "amount": "299.335026572", + "slot": { + "period": 3724902, + "thread": 2 + } + }, + { + "amount": "299.335026570", + "slot": { + "period": 3875810, + "thread": 8 + } + } + ], + "AU122emxS4LVbfjBD6gbv4bp6ZDkjRYEzWRgyrrE3FG2MdGb7SioG": [ + { + "amount": "377.766547751", + "slot": { + "period": 145906, + "thread": 31 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 213802, + "thread": 6 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 340639, + "thread": 26 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 639365, + "thread": 19 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 672312, + "thread": 15 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 848768, + "thread": 9 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1039168, + "thread": 14 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1264779, + "thread": 16 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1422608, + "thread": 12 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1551086, + "thread": 9 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1709155, + "thread": 27 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 1921560, + "thread": 27 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2092883, + "thread": 3 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2204176, + "thread": 4 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2302295, + "thread": 30 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2584275, + "thread": 27 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2668532, + "thread": 22 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 2900319, + "thread": 26 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 3027679, + "thread": 24 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 3287440, + "thread": 2 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 3336651, + "thread": 4 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 3485059, + "thread": 28 + } + }, + { + "amount": "377.766547751", + "slot": { + "period": 3654767, + "thread": 28 + } + }, + { + "amount": "377.766547741", + "slot": { + "period": 3863452, + "thread": 27 + } + } + ], + "AU122fKDKFNh5Nd5dDkxg55wDjwP2QvEAjgQNYhMUU6kbjtxoFjDC": [ + { + "amount": "229.395748189", + "slot": { + "period": 52497, + "thread": 19 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 292805, + "thread": 24 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 471370, + "thread": 29 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 573763, + "thread": 31 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 755716, + "thread": 31 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 957793, + "thread": 6 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1046297, + "thread": 29 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1198721, + "thread": 5 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1359997, + "thread": 27 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1577264, + "thread": 6 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1802188, + "thread": 26 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 1911891, + "thread": 27 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2049233, + "thread": 7 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2168502, + "thread": 5 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2428649, + "thread": 26 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2500889, + "thread": 0 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2699333, + "thread": 17 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2898878, + "thread": 28 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 2964185, + "thread": 24 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 3135324, + "thread": 27 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 3303818, + "thread": 7 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 3481873, + "thread": 2 + } + }, + { + "amount": "229.395748189", + "slot": { + "period": 3656257, + "thread": 17 + } + }, + { + "amount": "229.395748197", + "slot": { + "period": 3853808, + "thread": 1 + } + } + ], + "AU122fn9T9to3NgoEtAysP4Qvnq7jnJnYnszQsqMoYWFvcdeBiKNN": [ + { + "amount": "130.158041165", + "slot": { + "period": 61453, + "thread": 8 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 303021, + "thread": 29 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 431873, + "thread": 0 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 516849, + "thread": 27 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 770272, + "thread": 6 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 952552, + "thread": 20 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1079844, + "thread": 13 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1250383, + "thread": 4 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1417834, + "thread": 2 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1504973, + "thread": 10 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1765568, + "thread": 17 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 1924507, + "thread": 24 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2117157, + "thread": 25 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2208909, + "thread": 19 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2323886, + "thread": 22 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2485193, + "thread": 6 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2728491, + "thread": 27 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 2838548, + "thread": 2 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 3006437, + "thread": 7 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 3202525, + "thread": 21 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 3435403, + "thread": 26 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 3514158, + "thread": 14 + } + }, + { + "amount": "130.158041165", + "slot": { + "period": 3770438, + "thread": 10 + } + }, + { + "amount": "130.158041157", + "slot": { + "period": 3863489, + "thread": 19 + } + } + ], + "AU122hGyFVboEmYDUi6WciuHicEQmXgSgUpcBCXexDxDH6FRpaip6": [ + { + "amount": "193.378855578", + "slot": { + "period": 11632, + "thread": 14 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 226323, + "thread": 5 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 379411, + "thread": 8 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 525098, + "thread": 18 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 776821, + "thread": 8 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 906354, + "thread": 11 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1059330, + "thread": 4 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1296006, + "thread": 17 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1430612, + "thread": 4 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1561591, + "thread": 5 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1801731, + "thread": 9 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 1869866, + "thread": 28 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2099770, + "thread": 31 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2164379, + "thread": 18 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2453609, + "thread": 5 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2594541, + "thread": 30 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2791495, + "thread": 16 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 2950132, + "thread": 21 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 3040271, + "thread": 11 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 3184908, + "thread": 26 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 3381822, + "thread": 28 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 3468420, + "thread": 6 + } + }, + { + "amount": "193.378855578", + "slot": { + "period": 3752443, + "thread": 18 + } + }, + { + "amount": "193.378855573", + "slot": { + "period": 3792717, + "thread": 10 + } + } + ], + "AU122iiZWvYkK8XdqTHFNAnv7DC9MVcq22NEebUAkdzqSyQ98775E": [ + { + "amount": "62.312610105", + "slot": { + "period": 52859, + "thread": 27 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 197634, + "thread": 25 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 373351, + "thread": 31 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 591102, + "thread": 0 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 765018, + "thread": 8 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 894647, + "thread": 9 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1127497, + "thread": 27 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1265533, + "thread": 14 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1381812, + "thread": 11 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1565891, + "thread": 1 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1702785, + "thread": 6 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 1924890, + "thread": 1 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2115483, + "thread": 3 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2198026, + "thread": 8 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2353635, + "thread": 13 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2539844, + "thread": 21 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2695767, + "thread": 2 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2922452, + "thread": 19 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 2956155, + "thread": 31 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 3284255, + "thread": 7 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 3318990, + "thread": 17 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 3523847, + "thread": 8 + } + }, + { + "amount": "62.312610105", + "slot": { + "period": 3665058, + "thread": 24 + } + }, + { + "amount": "62.312610108", + "slot": { + "period": 3782244, + "thread": 14 + } + } + ], + "AU122jhh3evL2eUC3Mh5bnzpo2LGTFsKLixPAjfFyhkNk5d3bQmST": [ + { + "amount": "185.667805769", + "slot": { + "period": 11298, + "thread": 7 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 248914, + "thread": 18 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 441574, + "thread": 9 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 555606, + "thread": 11 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 782514, + "thread": 13 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 965438, + "thread": 8 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 996257, + "thread": 0 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 1221905, + "thread": 20 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 1428476, + "thread": 4 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 1591770, + "thread": 25 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 1777131, + "thread": 22 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 1951269, + "thread": 16 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2143056, + "thread": 28 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2250674, + "thread": 26 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2404293, + "thread": 28 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2475811, + "thread": 16 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2756150, + "thread": 30 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 2877427, + "thread": 17 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 3073622, + "thread": 8 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 3136186, + "thread": 24 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 3444769, + "thread": 21 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 3553941, + "thread": 25 + } + }, + { + "amount": "185.667805769", + "slot": { + "period": 3694244, + "thread": 23 + } + }, + { + "amount": "185.667805774", + "slot": { + "period": 3800952, + "thread": 19 + } + } + ], + "AU122meb7L5YAp6GNF68XPSA4YYxbgK4dS5P59D37ZCPe12Ntp6eo": [ + { + "amount": "623.864789800", + "slot": { + "period": 108971, + "thread": 8 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 302396, + "thread": 30 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 335453, + "thread": 20 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 525514, + "thread": 17 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 743457, + "thread": 19 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 850810, + "thread": 9 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1028635, + "thread": 26 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1193462, + "thread": 8 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1473697, + "thread": 15 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1504673, + "thread": 12 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1651648, + "thread": 12 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 1826147, + "thread": 16 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2065523, + "thread": 6 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2149145, + "thread": 26 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2394196, + "thread": 16 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2463567, + "thread": 3 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2782926, + "thread": 21 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2894412, + "thread": 4 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 2977336, + "thread": 20 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 3257859, + "thread": 31 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 3293712, + "thread": 0 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 3533439, + "thread": 28 + } + }, + { + "amount": "623.864789800", + "slot": { + "period": 3624084, + "thread": 6 + } + }, + { + "amount": "623.864789808", + "slot": { + "period": 3926285, + "thread": 19 + } + } + ], + "AU122mk5CSZfEjnWk57Ra17SbstFXndndjZsfdGw9oZSBkui8f8Ts": [ + { + "amount": "133.922571655", + "slot": { + "period": 122840, + "thread": 21 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 202434, + "thread": 1 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 419539, + "thread": 11 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 548491, + "thread": 0 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 668049, + "thread": 28 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 830307, + "thread": 8 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1052768, + "thread": 19 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1158274, + "thread": 30 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1338762, + "thread": 25 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1527072, + "thread": 11 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1789438, + "thread": 11 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 1899260, + "thread": 27 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2082407, + "thread": 13 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2233608, + "thread": 25 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2362329, + "thread": 30 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2466934, + "thread": 26 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2741642, + "thread": 31 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 2952240, + "thread": 11 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 3026594, + "thread": 1 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 3260617, + "thread": 25 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 3446025, + "thread": 6 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 3586448, + "thread": 15 + } + }, + { + "amount": "133.922571655", + "slot": { + "period": 3747134, + "thread": 2 + } + }, + { + "amount": "133.922571651", + "slot": { + "period": 3903905, + "thread": 10 + } + } + ], + "AU122mqkR8b2at3diVE1NNfXBaA81JFHMicAentKV3sni88FnqNcc": [ + { + "amount": "198.530109482", + "slot": { + "period": 125196, + "thread": 0 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 240283, + "thread": 26 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 361952, + "thread": 11 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 592993, + "thread": 28 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 720094, + "thread": 0 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 835175, + "thread": 4 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 990652, + "thread": 16 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 1188338, + "thread": 20 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 1348350, + "thread": 29 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 1492525, + "thread": 26 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 1800292, + "thread": 22 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 1815868, + "thread": 29 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2028834, + "thread": 6 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2187479, + "thread": 25 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2351149, + "thread": 10 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2509979, + "thread": 5 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2636033, + "thread": 6 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 2814975, + "thread": 3 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 3051534, + "thread": 1 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 3235048, + "thread": 18 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 3343450, + "thread": 15 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 3589039, + "thread": 13 + } + }, + { + "amount": "198.530109482", + "slot": { + "period": 3755564, + "thread": 30 + } + }, + { + "amount": "198.530109494", + "slot": { + "period": 3947194, + "thread": 1 + } + } + ], + "AU122mvssvBmdytztUKdBqJHv3UB4qob9vEunfhCsnVdn4NpfaJmx": [ + { + "amount": "197.252256608", + "slot": { + "period": 62919, + "thread": 15 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 241759, + "thread": 5 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 360378, + "thread": 7 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 509771, + "thread": 28 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 761824, + "thread": 22 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 891218, + "thread": 18 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1127541, + "thread": 7 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1261618, + "thread": 16 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1364787, + "thread": 25 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1609772, + "thread": 17 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1673026, + "thread": 28 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 1813836, + "thread": 5 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2099190, + "thread": 20 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2288938, + "thread": 22 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2371599, + "thread": 0 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2512009, + "thread": 25 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2726846, + "thread": 25 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 2902744, + "thread": 5 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 3079932, + "thread": 31 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 3210667, + "thread": 19 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 3385718, + "thread": 8 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 3575865, + "thread": 4 + } + }, + { + "amount": "197.252256608", + "slot": { + "period": 3671101, + "thread": 12 + } + }, + { + "amount": "197.252256599", + "slot": { + "period": 3852159, + "thread": 4 + } + } + ], + "AU122myG5GoJ1fu6VRnUgUhXU8k5kG6ToDrCRmZPimQRddUz6sNKX": [ + { + "amount": "338.812700464", + "slot": { + "period": 65271, + "thread": 11 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 275957, + "thread": 26 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 480854, + "thread": 3 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 591139, + "thread": 27 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 675030, + "thread": 5 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 939855, + "thread": 19 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1114626, + "thread": 21 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1177849, + "thread": 31 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1360173, + "thread": 31 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1616452, + "thread": 14 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1682759, + "thread": 9 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1932046, + "thread": 4 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 1978007, + "thread": 31 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 2292384, + "thread": 10 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 2313439, + "thread": 24 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 2517678, + "thread": 0 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 2706329, + "thread": 3 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 2874483, + "thread": 30 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 3048317, + "thread": 11 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 3259326, + "thread": 20 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 3306541, + "thread": 4 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 3551170, + "thread": 19 + } + }, + { + "amount": "338.812700464", + "slot": { + "period": 3634109, + "thread": 9 + } + }, + { + "amount": "338.812700461", + "slot": { + "period": 3853475, + "thread": 31 + } + } + ], + "AU122n1b1ixQFN9qhKMhkG6hXKGyz6NbyMF97v1Rz3ETaUKmpYcEB": [ + { + "amount": "205.519758403", + "slot": { + "period": 34405, + "thread": 0 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 245264, + "thread": 1 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 461687, + "thread": 17 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 534255, + "thread": 4 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 703613, + "thread": 26 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 920299, + "thread": 5 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1060549, + "thread": 30 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1154373, + "thread": 20 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1388716, + "thread": 17 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1585533, + "thread": 20 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1769089, + "thread": 22 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 1955849, + "thread": 21 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2125548, + "thread": 22 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2221945, + "thread": 22 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2381870, + "thread": 31 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2476097, + "thread": 6 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2637553, + "thread": 8 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 2938941, + "thread": 2 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 3028409, + "thread": 0 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 3125855, + "thread": 5 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 3441463, + "thread": 9 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 3610561, + "thread": 1 + } + }, + { + "amount": "205.519758403", + "slot": { + "period": 3754205, + "thread": 3 + } + }, + { + "amount": "205.519758406", + "slot": { + "period": 3916100, + "thread": 19 + } + } + ], + "AU122nHHUsYTzDwJT3qDhmmBuBVRB4VkeLioWE3qXReNSH2xkKEWu": [ + { + "amount": "129.910005035", + "slot": { + "period": 65923, + "thread": 3 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 289895, + "thread": 23 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 352813, + "thread": 22 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 541429, + "thread": 12 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 758403, + "thread": 9 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 873474, + "thread": 14 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1054751, + "thread": 8 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1255974, + "thread": 4 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1470129, + "thread": 20 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1553658, + "thread": 0 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1778664, + "thread": 25 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 1954848, + "thread": 24 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2036988, + "thread": 18 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2228379, + "thread": 25 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2319849, + "thread": 28 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2580304, + "thread": 29 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2769002, + "thread": 18 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 2891234, + "thread": 12 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 3016083, + "thread": 2 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 3229435, + "thread": 15 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 3401090, + "thread": 12 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 3490478, + "thread": 31 + } + }, + { + "amount": "129.910005035", + "slot": { + "period": 3664007, + "thread": 17 + } + }, + { + "amount": "129.910005046", + "slot": { + "period": 3821963, + "thread": 18 + } + } + ], + "AU122nJXXtHuYcNR9NVUfizff6nvBZvdYQpNUnTtSDZrWkScSb2nR": [ + { + "amount": "167.883688157", + "slot": { + "period": 99607, + "thread": 6 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 243707, + "thread": 8 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 425804, + "thread": 8 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 565423, + "thread": 3 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 776174, + "thread": 1 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 976153, + "thread": 27 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 987453, + "thread": 3 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 1207830, + "thread": 25 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 1361400, + "thread": 11 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 1602917, + "thread": 21 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 1768725, + "thread": 7 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 1892247, + "thread": 30 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2137520, + "thread": 28 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2207553, + "thread": 13 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2297602, + "thread": 18 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2488118, + "thread": 3 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2741190, + "thread": 10 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 2857041, + "thread": 7 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 3038605, + "thread": 4 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 3241878, + "thread": 19 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 3409423, + "thread": 19 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 3511899, + "thread": 6 + } + }, + { + "amount": "167.883688157", + "slot": { + "period": 3735652, + "thread": 12 + } + }, + { + "amount": "167.883688147", + "slot": { + "period": 3866542, + "thread": 11 + } + } + ], + "AU122nNhKNiCgUQQZwrSBTmjHicDE9ZgFLLR5tsG6qyTfKxZFrzNm": [ + { + "amount": "508.291869352", + "slot": { + "period": 150417, + "thread": 8 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 169998, + "thread": 23 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 413298, + "thread": 14 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 569359, + "thread": 19 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 685035, + "thread": 24 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 973606, + "thread": 10 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1109812, + "thread": 0 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1257548, + "thread": 11 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1476726, + "thread": 31 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1609475, + "thread": 26 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1772309, + "thread": 13 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 1828837, + "thread": 20 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2078633, + "thread": 24 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2185493, + "thread": 10 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2300494, + "thread": 28 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2554217, + "thread": 7 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2778033, + "thread": 25 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 2841403, + "thread": 24 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 3061923, + "thread": 17 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 3134682, + "thread": 0 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 3409172, + "thread": 19 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 3494133, + "thread": 8 + } + }, + { + "amount": "508.291869352", + "slot": { + "period": 3708767, + "thread": 27 + } + }, + { + "amount": "508.291869340", + "slot": { + "period": 3828844, + "thread": 2 + } + } + ], + "AU122npX9d3ouLs4RTyQP6nXZGqVQAfwFRAxQTDzaRqkwZsDf3FQB": [ + { + "amount": "142.770647429", + "slot": { + "period": 57446, + "thread": 7 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 316546, + "thread": 14 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 395133, + "thread": 22 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 535942, + "thread": 26 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 658330, + "thread": 5 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 834969, + "thread": 25 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1148853, + "thread": 2 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1314785, + "thread": 18 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1383779, + "thread": 11 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1567976, + "thread": 31 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1690240, + "thread": 26 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 1950025, + "thread": 13 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2105711, + "thread": 1 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2146168, + "thread": 15 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2416995, + "thread": 26 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2520468, + "thread": 25 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2630163, + "thread": 15 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 2900492, + "thread": 9 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 3071461, + "thread": 6 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 3271091, + "thread": 0 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 3301512, + "thread": 15 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 3567102, + "thread": 17 + } + }, + { + "amount": "142.770647429", + "slot": { + "period": 3695233, + "thread": 30 + } + }, + { + "amount": "142.770647419", + "slot": { + "period": 3897049, + "thread": 5 + } + } + ], + "AU122o1yLohWWwbaMRNtRo4dQSSgRbrNtBoW5Mkjd9h7TQu36HJLU": [ + { + "amount": "86.530216049", + "slot": { + "period": 43882, + "thread": 9 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 191556, + "thread": 11 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 450308, + "thread": 20 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 513879, + "thread": 19 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 654376, + "thread": 16 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 975708, + "thread": 6 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1059795, + "thread": 5 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1273432, + "thread": 31 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1450052, + "thread": 23 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1533404, + "thread": 18 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1746906, + "thread": 26 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 1921341, + "thread": 25 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2085116, + "thread": 21 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2145566, + "thread": 22 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2447387, + "thread": 3 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2476670, + "thread": 21 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2775065, + "thread": 5 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2819107, + "thread": 9 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 2976762, + "thread": 22 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 3209058, + "thread": 4 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 3413253, + "thread": 7 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 3535985, + "thread": 4 + } + }, + { + "amount": "86.530216049", + "slot": { + "period": 3728151, + "thread": 27 + } + }, + { + "amount": "86.530216057", + "slot": { + "period": 3947060, + "thread": 31 + } + } + ], + "AU122o9cfkDRnjpNiGcvcBgFjLFXkxUfiDEJVY8wLhutMZz1bgqTu": [ + { + "amount": "419.702044574", + "slot": { + "period": 64265, + "thread": 28 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 173366, + "thread": 12 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 417227, + "thread": 8 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 600358, + "thread": 17 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 783734, + "thread": 1 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 823578, + "thread": 5 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1110569, + "thread": 22 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1214792, + "thread": 27 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1393378, + "thread": 16 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1562211, + "thread": 28 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1738040, + "thread": 3 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 1888913, + "thread": 1 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2129188, + "thread": 6 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2230689, + "thread": 15 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2379587, + "thread": 28 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2519487, + "thread": 13 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2631030, + "thread": 18 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 2916634, + "thread": 24 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 3103340, + "thread": 20 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 3237037, + "thread": 31 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 3362210, + "thread": 30 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 3526014, + "thread": 28 + } + }, + { + "amount": "419.702044574", + "slot": { + "period": 3775014, + "thread": 31 + } + }, + { + "amount": "419.702044565", + "slot": { + "period": 3867629, + "thread": 3 + } + } + ], + "AU122oSo7igyd2oUXEYP6H3qyhuRuPsAq4F645bDh8MJ7tFcJRXDG": [ + { + "amount": "161.179908968", + "slot": { + "period": 11919, + "thread": 29 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 263768, + "thread": 18 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 431439, + "thread": 18 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 531116, + "thread": 22 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 796197, + "thread": 28 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 863262, + "thread": 28 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1133432, + "thread": 21 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1166640, + "thread": 27 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1476035, + "thread": 28 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1587486, + "thread": 16 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1705884, + "thread": 9 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 1880599, + "thread": 22 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2025657, + "thread": 9 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2290299, + "thread": 25 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2431569, + "thread": 25 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2615210, + "thread": 12 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2697789, + "thread": 27 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2804257, + "thread": 6 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 2999240, + "thread": 16 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 3251186, + "thread": 14 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 3295355, + "thread": 1 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 3487825, + "thread": 27 + } + }, + { + "amount": "161.179908968", + "slot": { + "period": 3684000, + "thread": 13 + } + }, + { + "amount": "161.179908957", + "slot": { + "period": 3856015, + "thread": 18 + } + } + ], + "AU122p1EYApANSNGoVb5w6e3wyYwXdncBYXRB9MQYig3KrKZ4iGLk": [ + { + "amount": "56.637623161", + "slot": { + "period": 55170, + "thread": 20 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 237874, + "thread": 15 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 440562, + "thread": 24 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 583922, + "thread": 3 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 661620, + "thread": 20 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 858292, + "thread": 12 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1086120, + "thread": 2 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1308595, + "thread": 28 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1436038, + "thread": 22 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1607843, + "thread": 1 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1681153, + "thread": 8 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 1896946, + "thread": 26 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2132392, + "thread": 28 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2287145, + "thread": 14 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2300306, + "thread": 3 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2522879, + "thread": 6 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2674774, + "thread": 7 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 2823332, + "thread": 23 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 3079276, + "thread": 2 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 3138854, + "thread": 6 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 3292837, + "thread": 17 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 3485697, + "thread": 30 + } + }, + { + "amount": "56.637623161", + "slot": { + "period": 3678262, + "thread": 8 + } + }, + { + "amount": "56.637623171", + "slot": { + "period": 3946541, + "thread": 13 + } + } + ], + "AU122pEyG1DKb2Zk6fT3GggGALq7S8Adr2Jm13t3XjSsBtKD4ioei": [ + { + "amount": "127.152997989", + "slot": { + "period": 74352, + "thread": 12 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 217235, + "thread": 24 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 453290, + "thread": 22 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 534640, + "thread": 8 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 694771, + "thread": 1 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 857470, + "thread": 0 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1140143, + "thread": 31 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1289441, + "thread": 23 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1366291, + "thread": 19 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1640206, + "thread": 31 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1786266, + "thread": 29 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 1970924, + "thread": 18 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2042832, + "thread": 11 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2283935, + "thread": 23 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2295292, + "thread": 22 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2505015, + "thread": 27 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2691830, + "thread": 4 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 2918716, + "thread": 19 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 3097998, + "thread": 21 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 3278799, + "thread": 12 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 3370326, + "thread": 0 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 3516431, + "thread": 22 + } + }, + { + "amount": "127.152997989", + "slot": { + "period": 3708071, + "thread": 27 + } + }, + { + "amount": "127.152997986", + "slot": { + "period": 3809459, + "thread": 5 + } + } + ], + "AU122pKboTJDzcKa5xcJT2vokj3XkbtQNnp2ELkZC9krXDyu793L7": [ + { + "amount": "73.533865154", + "slot": { + "period": 132414, + "thread": 6 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 194106, + "thread": 8 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 398433, + "thread": 22 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 621768, + "thread": 20 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 731160, + "thread": 13 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 875157, + "thread": 21 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1009658, + "thread": 7 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1181342, + "thread": 29 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1468966, + "thread": 12 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1560938, + "thread": 23 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1799465, + "thread": 24 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1891616, + "thread": 10 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 1998858, + "thread": 3 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 2152989, + "thread": 13 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 2375472, + "thread": 8 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 2540131, + "thread": 17 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 2790488, + "thread": 25 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 2920273, + "thread": 25 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 3077105, + "thread": 13 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 3227803, + "thread": 28 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 3390098, + "thread": 29 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 3553053, + "thread": 31 + } + }, + { + "amount": "73.533865154", + "slot": { + "period": 3654365, + "thread": 1 + } + }, + { + "amount": "73.533865164", + "slot": { + "period": 3868515, + "thread": 20 + } + } + ], + "AU122pQqT9As2Ety4qzdJeZk7fASJdurv8bMi33uErWQU5UqA6Gjv": [ + { + "amount": "160.022316902", + "slot": { + "period": 29342, + "thread": 15 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 190396, + "thread": 5 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 409899, + "thread": 19 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 527860, + "thread": 3 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 729309, + "thread": 10 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 883519, + "thread": 4 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1048079, + "thread": 8 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1233348, + "thread": 18 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1447284, + "thread": 14 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1481656, + "thread": 16 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1658501, + "thread": 2 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1881438, + "thread": 12 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 1980003, + "thread": 3 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2188114, + "thread": 14 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2387101, + "thread": 14 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2489667, + "thread": 19 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2772348, + "thread": 20 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2863974, + "thread": 30 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 2960104, + "thread": 27 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 3268374, + "thread": 7 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 3403032, + "thread": 3 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 3615721, + "thread": 0 + } + }, + { + "amount": "160.022316902", + "slot": { + "period": 3778816, + "thread": 3 + } + }, + { + "amount": "160.022316891", + "slot": { + "period": 3907821, + "thread": 16 + } + } + ], + "AU122pnJZ96dsfxodsiFJwaRXPQk2xLd9erhcMyxgq7hcy4teUVKB": [ + { + "amount": "135.670179530", + "slot": { + "period": 109641, + "thread": 13 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 290953, + "thread": 21 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 465777, + "thread": 24 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 553775, + "thread": 10 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 796211, + "thread": 20 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 884148, + "thread": 28 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1111271, + "thread": 16 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1230962, + "thread": 4 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1355737, + "thread": 29 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1624109, + "thread": 20 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1690049, + "thread": 23 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 1921785, + "thread": 18 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2055586, + "thread": 19 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2233906, + "thread": 24 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2316795, + "thread": 5 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2561608, + "thread": 6 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2756763, + "thread": 13 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2855111, + "thread": 7 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 2992721, + "thread": 5 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 3210963, + "thread": 10 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 3336427, + "thread": 0 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 3461754, + "thread": 25 + } + }, + { + "amount": "135.670179530", + "slot": { + "period": 3702533, + "thread": 5 + } + }, + { + "amount": "135.670179541", + "slot": { + "period": 3832101, + "thread": 17 + } + } + ], + "AU122qj6PtG4dzfuRgPX4Yy1DA4R5vchfojHh6VRQdH9VV1it6Vbi": [ + { + "amount": "381.156163525", + "slot": { + "period": 103111, + "thread": 24 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 217058, + "thread": 10 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 428960, + "thread": 8 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 527597, + "thread": 7 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 790692, + "thread": 3 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 942875, + "thread": 24 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1129367, + "thread": 23 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1228476, + "thread": 24 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1407100, + "thread": 27 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1580104, + "thread": 7 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1736395, + "thread": 18 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 1855663, + "thread": 31 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2143328, + "thread": 14 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2223844, + "thread": 20 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2361661, + "thread": 20 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2598477, + "thread": 5 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2675366, + "thread": 6 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 2853900, + "thread": 0 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 3112107, + "thread": 6 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 3131901, + "thread": 28 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 3352048, + "thread": 5 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 3513507, + "thread": 18 + } + }, + { + "amount": "381.156163525", + "slot": { + "period": 3738550, + "thread": 29 + } + }, + { + "amount": "381.156163534", + "slot": { + "period": 3894217, + "thread": 0 + } + } + ], + "AU122qtja4ATHeujyL3xoiLV7wzY9o9Msrn1fBhFEkVF9qmyWdgz2": [ + { + "amount": "481.101515158", + "slot": { + "period": 68177, + "thread": 26 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 238593, + "thread": 15 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 438965, + "thread": 14 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 610005, + "thread": 7 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 672205, + "thread": 23 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 963035, + "thread": 2 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1125831, + "thread": 8 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1236266, + "thread": 6 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1478550, + "thread": 13 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1560506, + "thread": 1 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1786251, + "thread": 19 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 1900016, + "thread": 24 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2029676, + "thread": 10 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2274579, + "thread": 30 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2404979, + "thread": 28 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2542097, + "thread": 4 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2689373, + "thread": 29 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 2902932, + "thread": 19 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 3084355, + "thread": 8 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 3229737, + "thread": 21 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 3374717, + "thread": 31 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 3544708, + "thread": 25 + } + }, + { + "amount": "481.101515158", + "slot": { + "period": 3748748, + "thread": 31 + } + }, + { + "amount": "481.101515152", + "slot": { + "period": 3808592, + "thread": 28 + } + } + ], + "AU122rrzW5qUGmEoJoLujvckMQ1atUyAmpqUYo9H2VE5quyyYxHuL": [ + { + "amount": "151.008393169", + "slot": { + "period": 29956, + "thread": 18 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 313006, + "thread": 4 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 440374, + "thread": 30 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 609834, + "thread": 5 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 795780, + "thread": 30 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 889837, + "thread": 26 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1051820, + "thread": 28 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1289322, + "thread": 12 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1426344, + "thread": 24 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1589829, + "thread": 30 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1657708, + "thread": 6 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 1875332, + "thread": 2 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2044922, + "thread": 31 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2274534, + "thread": 23 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2424646, + "thread": 21 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2532913, + "thread": 15 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2624455, + "thread": 17 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2920991, + "thread": 8 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 2962545, + "thread": 0 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 3242442, + "thread": 2 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 3389869, + "thread": 10 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 3474426, + "thread": 22 + } + }, + { + "amount": "151.008393169", + "slot": { + "period": 3662650, + "thread": 31 + } + }, + { + "amount": "151.008393174", + "slot": { + "period": 3831085, + "thread": 12 + } + } + ], + "AU122sqBTPfR438zmdrdvm81y62x8c5z5fWHU6N4D6RzdjFCEfjPc": [ + { + "amount": "92.900713311", + "slot": { + "period": 104682, + "thread": 10 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 284108, + "thread": 24 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 335835, + "thread": 8 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 593478, + "thread": 11 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 719212, + "thread": 30 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 844605, + "thread": 14 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1143256, + "thread": 28 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1208619, + "thread": 3 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1431164, + "thread": 11 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1576474, + "thread": 18 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1691591, + "thread": 2 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 1845877, + "thread": 2 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2115584, + "thread": 0 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2259523, + "thread": 27 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2335796, + "thread": 18 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2535860, + "thread": 27 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2789742, + "thread": 17 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 2836059, + "thread": 14 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 3107445, + "thread": 6 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 3138516, + "thread": 11 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 3406822, + "thread": 5 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 3589512, + "thread": 10 + } + }, + { + "amount": "92.900713311", + "slot": { + "period": 3710384, + "thread": 26 + } + }, + { + "amount": "92.900713302", + "slot": { + "period": 3816231, + "thread": 23 + } + } + ], + "AU122t47q7oN7VVCTwDw71Lt66o9w5BfiukQLi2DNRkXudAM29VFG": [ + { + "amount": "153.596506417", + "slot": { + "period": 41412, + "thread": 26 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 261149, + "thread": 9 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 380537, + "thread": 15 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 635288, + "thread": 10 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 687293, + "thread": 6 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 904540, + "thread": 26 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1139507, + "thread": 18 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1227888, + "thread": 13 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1385645, + "thread": 12 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1584865, + "thread": 16 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1684185, + "thread": 10 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 1844738, + "thread": 29 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2001139, + "thread": 1 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2274531, + "thread": 31 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2383632, + "thread": 19 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2518080, + "thread": 7 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2626233, + "thread": 22 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 2820694, + "thread": 5 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 3097687, + "thread": 5 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 3132556, + "thread": 23 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 3342122, + "thread": 6 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 3479961, + "thread": 10 + } + }, + { + "amount": "153.596506417", + "slot": { + "period": 3627861, + "thread": 30 + } + }, + { + "amount": "153.596506427", + "slot": { + "period": 3894533, + "thread": 10 + } + } + ], + "AU122u9L5umcBujmLY2PJfu1RfZ4FJvAz78KYM1g3197G4SSoCa3L": [ + { + "amount": "150.190913083", + "slot": { + "period": 67481, + "thread": 2 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 298863, + "thread": 5 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 482953, + "thread": 1 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 619106, + "thread": 5 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 694803, + "thread": 12 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 864225, + "thread": 26 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1139045, + "thread": 25 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1155413, + "thread": 5 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1323989, + "thread": 15 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1585274, + "thread": 0 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1800547, + "thread": 19 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 1810236, + "thread": 8 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2055995, + "thread": 10 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2190833, + "thread": 19 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2368804, + "thread": 19 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2577653, + "thread": 31 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2746087, + "thread": 10 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 2886143, + "thread": 19 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 3008802, + "thread": 14 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 3141104, + "thread": 24 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 3409852, + "thread": 13 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 3456192, + "thread": 30 + } + }, + { + "amount": "150.190913083", + "slot": { + "period": 3756966, + "thread": 0 + } + }, + { + "amount": "150.190913079", + "slot": { + "period": 3852155, + "thread": 0 + } + } + ], + "AU122ujNZvdTX6SPLxBTsV3Um6AxuVNE3Nv3L7ueDZLMAGGcBnLSM": [ + { + "amount": "275.908085105", + "slot": { + "period": 152737, + "thread": 29 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 307719, + "thread": 16 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 326743, + "thread": 7 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 639105, + "thread": 0 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 700093, + "thread": 9 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 872498, + "thread": 9 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1061113, + "thread": 21 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1309539, + "thread": 4 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1335199, + "thread": 8 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1599121, + "thread": 9 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1670329, + "thread": 2 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 1909164, + "thread": 15 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2028677, + "thread": 3 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2285898, + "thread": 29 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2369362, + "thread": 9 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2615111, + "thread": 7 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2645173, + "thread": 30 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 2850745, + "thread": 19 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 3091995, + "thread": 2 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 3233899, + "thread": 2 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 3345157, + "thread": 20 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 3457392, + "thread": 11 + } + }, + { + "amount": "275.908085105", + "slot": { + "period": 3734059, + "thread": 13 + } + }, + { + "amount": "275.908085112", + "slot": { + "period": 3832253, + "thread": 24 + } + } + ], + "AU122uwXfjazHYY8kiH2iqc12g49i58m1Uen8GxigoFTPb8BzU8m7": [ + { + "amount": "144.281887889", + "slot": { + "period": 43369, + "thread": 10 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 180484, + "thread": 1 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 404398, + "thread": 9 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 611851, + "thread": 23 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 688033, + "thread": 15 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 933217, + "thread": 16 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1116566, + "thread": 29 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1240262, + "thread": 8 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1319172, + "thread": 15 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1641116, + "thread": 9 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1774044, + "thread": 29 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 1877333, + "thread": 28 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2003755, + "thread": 29 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2234360, + "thread": 30 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2399949, + "thread": 23 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2557330, + "thread": 23 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2783774, + "thread": 27 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2921008, + "thread": 0 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 2968156, + "thread": 31 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 3209191, + "thread": 3 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 3296404, + "thread": 26 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 3474715, + "thread": 6 + } + }, + { + "amount": "144.281887889", + "slot": { + "period": 3711642, + "thread": 31 + } + }, + { + "amount": "144.281887893", + "slot": { + "period": 3930713, + "thread": 23 + } + } + ], + "AU122uxEDo1ThVyKKQneLqxzqtNzgCm3hTtT8QprHFarXdxNHccN6": [ + { + "amount": "346.750957904", + "slot": { + "period": 91099, + "thread": 20 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 171938, + "thread": 2 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 443328, + "thread": 24 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 639656, + "thread": 25 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 779035, + "thread": 0 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 980771, + "thread": 11 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1068326, + "thread": 12 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1271707, + "thread": 5 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1324793, + "thread": 7 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1611019, + "thread": 8 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1770119, + "thread": 5 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 1893729, + "thread": 12 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2038699, + "thread": 25 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2280823, + "thread": 4 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2441467, + "thread": 30 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2609419, + "thread": 12 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2686205, + "thread": 9 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 2793378, + "thread": 7 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 3050036, + "thread": 14 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 3199713, + "thread": 30 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 3378480, + "thread": 2 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 3516549, + "thread": 31 + } + }, + { + "amount": "346.750957904", + "slot": { + "period": 3714906, + "thread": 11 + } + }, + { + "amount": "346.750957895", + "slot": { + "period": 3938486, + "thread": 27 + } + } + ], + "AU122vovwExBKxAkx9niwFdKNvoEV3vWKZQ1Z2YRQZCgGyJ97NQSY": [ + { + "amount": "88.899131113", + "slot": { + "period": 156721, + "thread": 9 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 287170, + "thread": 10 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 481411, + "thread": 30 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 633570, + "thread": 6 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 670395, + "thread": 0 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 859519, + "thread": 7 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1099253, + "thread": 7 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1249894, + "thread": 25 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1358238, + "thread": 28 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1570417, + "thread": 3 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1803503, + "thread": 31 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 1811053, + "thread": 11 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2132220, + "thread": 23 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2150380, + "thread": 16 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2375775, + "thread": 10 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2549320, + "thread": 3 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2673229, + "thread": 18 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2827873, + "thread": 26 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 2967483, + "thread": 27 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 3174072, + "thread": 30 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 3388922, + "thread": 3 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 3608955, + "thread": 17 + } + }, + { + "amount": "88.899131113", + "slot": { + "period": 3712647, + "thread": 27 + } + }, + { + "amount": "88.899131119", + "slot": { + "period": 3931048, + "thread": 18 + } + } + ], + "AU122vr9ZA3ZmFeuzR4LmBxA8aXFQkbiD9VV5DX6FYszTDY2bY6zS": [ + { + "amount": "157.886552041", + "slot": { + "period": 141417, + "thread": 18 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 195718, + "thread": 16 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 421069, + "thread": 25 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 492818, + "thread": 13 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 731602, + "thread": 20 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 931033, + "thread": 21 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1090683, + "thread": 3 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1279776, + "thread": 1 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1396369, + "thread": 29 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1515874, + "thread": 11 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1777493, + "thread": 28 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 1958638, + "thread": 10 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2142182, + "thread": 12 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2234514, + "thread": 8 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2426694, + "thread": 20 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2495692, + "thread": 17 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2728075, + "thread": 8 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 2818443, + "thread": 9 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 3079974, + "thread": 12 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 3160397, + "thread": 1 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 3321048, + "thread": 23 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 3451563, + "thread": 9 + } + }, + { + "amount": "157.886552041", + "slot": { + "period": 3626329, + "thread": 5 + } + }, + { + "amount": "157.886552048", + "slot": { + "period": 3871428, + "thread": 27 + } + } + ], + "AU122wJ6WUoUJqChfujrm2HGqiKcZsvYFPLY3kcrghYT1gYNJECPB": [ + { + "amount": "485.118888897", + "slot": { + "period": 49848, + "thread": 19 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 260981, + "thread": 22 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 481386, + "thread": 26 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 494579, + "thread": 22 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 657704, + "thread": 31 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 821594, + "thread": 28 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1121317, + "thread": 25 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1297724, + "thread": 19 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1320059, + "thread": 7 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1564817, + "thread": 13 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1737257, + "thread": 16 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1862214, + "thread": 3 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 1986299, + "thread": 22 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2145300, + "thread": 30 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2374776, + "thread": 23 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2605589, + "thread": 11 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2790489, + "thread": 29 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2863627, + "thread": 23 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 2999215, + "thread": 27 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 3151866, + "thread": 1 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 3446690, + "thread": 9 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 3539896, + "thread": 23 + } + }, + { + "amount": "485.118888897", + "slot": { + "period": 3643220, + "thread": 10 + } + }, + { + "amount": "485.118888887", + "slot": { + "period": 3911752, + "thread": 26 + } + } + ], + "AU122xi5a12dRUXTMJkTvqFswfup6vxy6YgZwLw4CrXABJb6Gk4Cd": [ + { + "amount": "520.065097989", + "slot": { + "period": 146049, + "thread": 14 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 215875, + "thread": 5 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 402294, + "thread": 28 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 610675, + "thread": 27 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 689686, + "thread": 6 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 890040, + "thread": 13 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 997010, + "thread": 3 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 1184012, + "thread": 27 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 1449079, + "thread": 23 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 1624451, + "thread": 7 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 1735449, + "thread": 11 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 1959954, + "thread": 10 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2001033, + "thread": 13 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2187364, + "thread": 10 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2449282, + "thread": 13 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2531566, + "thread": 20 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2680680, + "thread": 14 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 2793563, + "thread": 22 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 3055738, + "thread": 27 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 3177328, + "thread": 15 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 3355350, + "thread": 31 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 3480957, + "thread": 11 + } + }, + { + "amount": "520.065097989", + "slot": { + "period": 3632707, + "thread": 14 + } + }, + { + "amount": "520.065097988", + "slot": { + "period": 3785573, + "thread": 31 + } + } + ], + "AU122xjGurQhdLVJL7Fk3gFpQ9o7N7sW6exVCrrXaEAgKLxiysH7M": [ + { + "amount": "235.510193640", + "slot": { + "period": 88154, + "thread": 12 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 254960, + "thread": 7 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 374023, + "thread": 0 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 596146, + "thread": 7 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 717453, + "thread": 12 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 925253, + "thread": 20 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1082262, + "thread": 24 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1173171, + "thread": 8 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1397134, + "thread": 9 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1595611, + "thread": 16 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1649185, + "thread": 27 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1828465, + "thread": 5 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 1999634, + "thread": 3 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 2159524, + "thread": 20 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 2326130, + "thread": 30 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 2599184, + "thread": 25 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 2698856, + "thread": 15 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 2827144, + "thread": 3 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 3097912, + "thread": 16 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 3235400, + "thread": 28 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 3378961, + "thread": 29 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 3476532, + "thread": 29 + } + }, + { + "amount": "235.510193640", + "slot": { + "period": 3750921, + "thread": 5 + } + }, + { + "amount": "235.510193636", + "slot": { + "period": 3939113, + "thread": 11 + } + } + ], + "AU122yLXRAmphK5zZNcPpbMRtU4asbjMhHF6efxymyghwgAuBkdeW": [ + { + "amount": "542.750463188", + "slot": { + "period": 52417, + "thread": 6 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 206144, + "thread": 13 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 366599, + "thread": 21 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 604473, + "thread": 4 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 676351, + "thread": 25 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 929660, + "thread": 16 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1009872, + "thread": 26 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1286083, + "thread": 17 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1369131, + "thread": 8 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1558498, + "thread": 21 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1789920, + "thread": 29 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 1966103, + "thread": 17 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2091589, + "thread": 2 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2252736, + "thread": 9 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2320892, + "thread": 15 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2605707, + "thread": 8 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2681501, + "thread": 1 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 2820051, + "thread": 22 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 3100551, + "thread": 17 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 3246804, + "thread": 27 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 3409277, + "thread": 5 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 3525598, + "thread": 24 + } + }, + { + "amount": "542.750463188", + "slot": { + "period": 3745008, + "thread": 26 + } + }, + { + "amount": "542.750463190", + "slot": { + "period": 3796458, + "thread": 4 + } + } + ], + "AU122yNqFKok3sEGDVEAHkREXueYBx3bx5oYfofhrPJP7RFmg4P78": [ + { + "amount": "232.477277505", + "slot": { + "period": 75243, + "thread": 11 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 182874, + "thread": 4 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 346794, + "thread": 20 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 613133, + "thread": 2 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 766217, + "thread": 7 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 873660, + "thread": 15 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1123492, + "thread": 3 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1269186, + "thread": 22 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1358320, + "thread": 1 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1616037, + "thread": 1 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1694489, + "thread": 0 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 1924141, + "thread": 4 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2034239, + "thread": 28 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2221691, + "thread": 17 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2432379, + "thread": 3 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2538520, + "thread": 7 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2723856, + "thread": 1 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 2911952, + "thread": 3 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 3019861, + "thread": 30 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 3164300, + "thread": 11 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 3428781, + "thread": 15 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 3499089, + "thread": 6 + } + }, + { + "amount": "232.477277505", + "slot": { + "period": 3633965, + "thread": 28 + } + }, + { + "amount": "232.477277507", + "slot": { + "period": 3792083, + "thread": 3 + } + } + ], + "AU122yWF5xuAffNjAatnfy6yNo4CrNsiaHNsJJ1oJ6jcZWNca9aKq": [ + { + "amount": "143.398797941", + "slot": { + "period": 30876, + "thread": 5 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 290246, + "thread": 7 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 464529, + "thread": 15 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 539639, + "thread": 28 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 674353, + "thread": 23 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 821516, + "thread": 30 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1130906, + "thread": 30 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1277104, + "thread": 26 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1469481, + "thread": 0 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1592129, + "thread": 12 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1685198, + "thread": 7 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 1827640, + "thread": 10 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2059312, + "thread": 19 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2259014, + "thread": 21 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2325610, + "thread": 1 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2590776, + "thread": 25 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2720393, + "thread": 24 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 2797725, + "thread": 30 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 3050151, + "thread": 16 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 3146982, + "thread": 27 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 3310413, + "thread": 21 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 3567516, + "thread": 9 + } + }, + { + "amount": "143.398797941", + "slot": { + "period": 3680801, + "thread": 2 + } + }, + { + "amount": "143.398797950", + "slot": { + "period": 3925511, + "thread": 15 + } + } + ], + "AU122z1Ymvtxaev9974v5ah7wMJbotohp9AbhWSwWyCKvRKTACc8i": [ + { + "amount": "52.884731799", + "slot": { + "period": 150073, + "thread": 27 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 246250, + "thread": 24 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 389006, + "thread": 21 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 646265, + "thread": 10 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 767696, + "thread": 24 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 981770, + "thread": 15 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1025458, + "thread": 15 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1205027, + "thread": 26 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1355077, + "thread": 11 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1634056, + "thread": 16 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1706506, + "thread": 17 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 1969327, + "thread": 5 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2057175, + "thread": 1 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2284300, + "thread": 19 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2330415, + "thread": 8 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2583139, + "thread": 7 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2711876, + "thread": 2 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 2829240, + "thread": 11 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 3020823, + "thread": 21 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 3217093, + "thread": 22 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 3370130, + "thread": 29 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 3521147, + "thread": 19 + } + }, + { + "amount": "52.884731799", + "slot": { + "period": 3771001, + "thread": 20 + } + }, + { + "amount": "52.884731790", + "slot": { + "period": 3928221, + "thread": 31 + } + } + ], + "AU122zQ1nFRZexWHDqLLbmyLnN2VzDnF7FaneNaDxRbH5GtLd8P5X": [ + { + "amount": "209.073314751", + "slot": { + "period": 20799, + "thread": 15 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 234488, + "thread": 1 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 376303, + "thread": 4 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 492953, + "thread": 30 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 790796, + "thread": 7 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 949609, + "thread": 3 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1016386, + "thread": 26 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1257055, + "thread": 7 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1417822, + "thread": 20 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1515060, + "thread": 30 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1759325, + "thread": 10 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 1894389, + "thread": 13 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2128181, + "thread": 20 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2256988, + "thread": 5 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2349269, + "thread": 3 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2532631, + "thread": 18 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2670814, + "thread": 27 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 2931837, + "thread": 31 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 3112214, + "thread": 4 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 3252993, + "thread": 23 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 3304056, + "thread": 7 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 3599374, + "thread": 7 + } + }, + { + "amount": "209.073314751", + "slot": { + "period": 3681527, + "thread": 2 + } + }, + { + "amount": "209.073314742", + "slot": { + "period": 3881966, + "thread": 11 + } + } + ], + "AU122zS5uYJsYm3vVvhg79wVZ3A4efZtkWzCFQW4RdHf7ByEWGHCD": [ + { + "amount": "82.322140614", + "slot": { + "period": 92795, + "thread": 19 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 209784, + "thread": 16 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 450591, + "thread": 17 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 508774, + "thread": 3 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 709710, + "thread": 12 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 906062, + "thread": 2 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1068404, + "thread": 2 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1176909, + "thread": 4 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1422532, + "thread": 13 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1534277, + "thread": 25 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1729084, + "thread": 28 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 1854426, + "thread": 5 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2142063, + "thread": 27 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2286260, + "thread": 6 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2427090, + "thread": 0 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2476639, + "thread": 8 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2747807, + "thread": 18 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 2877785, + "thread": 24 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 3116322, + "thread": 0 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 3217256, + "thread": 20 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 3435453, + "thread": 28 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 3563901, + "thread": 12 + } + }, + { + "amount": "82.322140614", + "slot": { + "period": 3626976, + "thread": 0 + } + }, + { + "amount": "82.322140604", + "slot": { + "period": 3868448, + "thread": 9 + } + } + ], + "AU1231dpcjdcSmgBsWzaFRCK1jFSYSiS73fpYMEG8NY26cQFR7QB": [ + { + "amount": "367.376967348", + "slot": { + "period": 66060, + "thread": 29 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 305513, + "thread": 27 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 436375, + "thread": 17 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 526288, + "thread": 12 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 795911, + "thread": 31 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 906361, + "thread": 4 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1008601, + "thread": 18 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1233934, + "thread": 28 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1368488, + "thread": 15 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1541364, + "thread": 16 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1779286, + "thread": 18 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 1891607, + "thread": 10 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2142198, + "thread": 9 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2287638, + "thread": 13 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2399134, + "thread": 8 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2587315, + "thread": 30 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2778410, + "thread": 1 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2828299, + "thread": 24 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 2970049, + "thread": 5 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 3274225, + "thread": 5 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 3349188, + "thread": 25 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 3531175, + "thread": 5 + } + }, + { + "amount": "367.376967348", + "slot": { + "period": 3689663, + "thread": 5 + } + }, + { + "amount": "367.376967343", + "slot": { + "period": 3932137, + "thread": 2 + } + } + ], + "AU1233yQ29FhdU4qrFVkfYhhdHfdPAcrygToFsASFiUzGGgrnsBBm": [ + { + "amount": "205.658777547", + "slot": { + "period": 155798, + "thread": 25 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 209142, + "thread": 18 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 359114, + "thread": 8 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 636684, + "thread": 8 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 671543, + "thread": 19 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 836038, + "thread": 4 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1130559, + "thread": 19 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1221605, + "thread": 10 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1473313, + "thread": 6 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1573852, + "thread": 28 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1791089, + "thread": 11 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 1810429, + "thread": 9 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2099678, + "thread": 2 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2191228, + "thread": 21 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2377824, + "thread": 6 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2517179, + "thread": 10 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2697728, + "thread": 2 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2837826, + "thread": 31 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 2963698, + "thread": 16 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 3185794, + "thread": 0 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 3377044, + "thread": 27 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 3528554, + "thread": 30 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 3676875, + "thread": 22 + } + }, + { + "amount": "205.658777547", + "slot": { + "period": 3828632, + "thread": 18 + } + } + ], + "AU123571eJE2BaB1AZY1Mawq6rHN18NUEBhQSwRP1kN2kL7X96eTJ": [ + { + "amount": "123.859090304", + "slot": { + "period": 162092, + "thread": 28 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 252965, + "thread": 25 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 337175, + "thread": 13 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 611220, + "thread": 19 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 776039, + "thread": 31 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 877460, + "thread": 2 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 997669, + "thread": 19 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 1266909, + "thread": 29 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 1430518, + "thread": 27 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 1541209, + "thread": 6 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 1756847, + "thread": 13 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 1965303, + "thread": 10 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2004091, + "thread": 12 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2259506, + "thread": 12 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2311188, + "thread": 16 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2597067, + "thread": 0 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2655716, + "thread": 0 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2806518, + "thread": 1 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 2976285, + "thread": 4 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 3245623, + "thread": 16 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 3388903, + "thread": 2 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 3535195, + "thread": 3 + } + }, + { + "amount": "123.859090304", + "slot": { + "period": 3711074, + "thread": 8 + } + }, + { + "amount": "123.859090299", + "slot": { + "period": 3907344, + "thread": 18 + } + } + ], + "AU1235evfmsSoKp5fXc3Edb9ShFZWpgLHKTBwB8rnwW4HdfjkqhRh": [ + { + "amount": "481.331477856", + "slot": { + "period": 78918, + "thread": 14 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 247457, + "thread": 9 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 342647, + "thread": 19 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 502900, + "thread": 23 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 683631, + "thread": 5 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 928096, + "thread": 31 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1064637, + "thread": 9 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1251561, + "thread": 9 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1360469, + "thread": 20 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1584624, + "thread": 28 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1807037, + "thread": 21 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1825439, + "thread": 30 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 1991591, + "thread": 0 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 2207889, + "thread": 9 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 2336813, + "thread": 21 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 2536352, + "thread": 26 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 2773729, + "thread": 23 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 2882680, + "thread": 6 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 3110203, + "thread": 28 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 3242044, + "thread": 23 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 3403527, + "thread": 3 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 3471796, + "thread": 16 + } + }, + { + "amount": "481.331477856", + "slot": { + "period": 3748023, + "thread": 31 + } + }, + { + "amount": "481.331477850", + "slot": { + "period": 3928352, + "thread": 19 + } + } + ], + "AU1235wVKNa1r6txB6NaLtPpQkQPGbT3FfMvRK2UZnVZxN6RjsW2X": [ + { + "amount": "517.967742598", + "slot": { + "period": 163296, + "thread": 0 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 230372, + "thread": 0 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 488993, + "thread": 19 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 596228, + "thread": 6 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 742487, + "thread": 4 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 832325, + "thread": 20 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1014960, + "thread": 28 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1248519, + "thread": 31 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1339903, + "thread": 24 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1571142, + "thread": 6 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1726155, + "thread": 14 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 1893395, + "thread": 24 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2058598, + "thread": 5 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2175423, + "thread": 27 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2421142, + "thread": 11 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2607855, + "thread": 25 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2780399, + "thread": 2 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2926743, + "thread": 21 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 2956599, + "thread": 18 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 3258416, + "thread": 0 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 3431919, + "thread": 27 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 3466955, + "thread": 31 + } + }, + { + "amount": "517.967742598", + "slot": { + "period": 3708615, + "thread": 28 + } + }, + { + "amount": "517.967742589", + "slot": { + "period": 3857880, + "thread": 20 + } + } + ], + "AU1236pthnys3HcQQDQaei81AZ6og5MPcVeR99i8yH3v2pExNBwVt": [ + { + "amount": "74.545529398", + "slot": { + "period": 55969, + "thread": 3 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 220170, + "thread": 4 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 385592, + "thread": 18 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 650598, + "thread": 8 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 740353, + "thread": 15 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 911880, + "thread": 17 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1134505, + "thread": 1 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1280221, + "thread": 10 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1467422, + "thread": 31 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1535431, + "thread": 30 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1771421, + "thread": 12 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1948915, + "thread": 25 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 1997030, + "thread": 22 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 2288895, + "thread": 27 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 2456708, + "thread": 0 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 2493821, + "thread": 10 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 2629321, + "thread": 1 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 2899956, + "thread": 12 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 3075669, + "thread": 1 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 3228826, + "thread": 7 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 3375619, + "thread": 12 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 3562631, + "thread": 14 + } + }, + { + "amount": "74.545529398", + "slot": { + "period": 3697917, + "thread": 6 + } + }, + { + "amount": "74.545529405", + "slot": { + "period": 3781870, + "thread": 13 + } + } + ], + "AU12377bWbuJNUNG1tnYM12HFGPFDrrRxEJWAgvFY3W5xdfgXJfWA": [ + { + "amount": "105.036906425", + "slot": { + "period": 47941, + "thread": 22 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 263646, + "thread": 2 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 417468, + "thread": 26 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 512434, + "thread": 14 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 660320, + "thread": 11 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 965084, + "thread": 4 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1123829, + "thread": 15 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1158915, + "thread": 16 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1424240, + "thread": 8 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1506065, + "thread": 16 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1755882, + "thread": 20 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 1860434, + "thread": 3 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2129777, + "thread": 7 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2231111, + "thread": 13 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2397332, + "thread": 9 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2581638, + "thread": 15 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2750615, + "thread": 3 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 2891533, + "thread": 18 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 3111040, + "thread": 7 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 3230036, + "thread": 31 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 3329543, + "thread": 4 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 3605128, + "thread": 18 + } + }, + { + "amount": "105.036906425", + "slot": { + "period": 3739756, + "thread": 11 + } + }, + { + "amount": "105.036906433", + "slot": { + "period": 3850495, + "thread": 3 + } + } + ], + "AU1237P28XTvwWXzShqtGpVEywG5ZAja99cMMf41RByySASkZkDT4": [ + { + "amount": "109.462749108", + "slot": { + "period": 18945, + "thread": 30 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 280818, + "thread": 29 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 486756, + "thread": 1 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 627934, + "thread": 27 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 719492, + "thread": 18 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 907777, + "thread": 20 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1138799, + "thread": 23 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1176288, + "thread": 17 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1476787, + "thread": 13 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1502514, + "thread": 25 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1705320, + "thread": 16 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 1868274, + "thread": 4 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2031217, + "thread": 7 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2271592, + "thread": 9 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2341633, + "thread": 24 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2548050, + "thread": 20 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2650555, + "thread": 3 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 2853157, + "thread": 1 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 3048304, + "thread": 28 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 3259852, + "thread": 3 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 3331750, + "thread": 0 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 3529073, + "thread": 8 + } + }, + { + "amount": "109.462749108", + "slot": { + "period": 3723083, + "thread": 22 + } + }, + { + "amount": "109.462749112", + "slot": { + "period": 3807340, + "thread": 11 + } + } + ], + "AU1237iBhr6Lt7wBsjwoAhNPKqKvY7sNmZFYdoE9FRnYWzV7vN1F9": [ + { + "amount": "297.819401279", + "slot": { + "period": 12645, + "thread": 5 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 201808, + "thread": 14 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 413620, + "thread": 25 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 608468, + "thread": 15 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 814328, + "thread": 20 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 919166, + "thread": 0 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1145115, + "thread": 8 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1253572, + "thread": 1 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1387935, + "thread": 11 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1557451, + "thread": 18 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1718081, + "thread": 21 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 1952805, + "thread": 14 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2057944, + "thread": 5 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2144324, + "thread": 25 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2309734, + "thread": 5 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2561357, + "thread": 15 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2655204, + "thread": 5 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 2915245, + "thread": 2 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 3026735, + "thread": 31 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 3188179, + "thread": 25 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 3335688, + "thread": 25 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 3595826, + "thread": 11 + } + }, + { + "amount": "297.819401279", + "slot": { + "period": 3777928, + "thread": 2 + } + }, + { + "amount": "297.819401275", + "slot": { + "period": 3940470, + "thread": 15 + } + } + ], + "AU1238Fa7Ssr82CZrEKGZKwrGF3sZrrnrfSr9zp1boQgoxHFR5W88": [ + { + "amount": "497.712122286", + "slot": { + "period": 140730, + "thread": 1 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 231042, + "thread": 11 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 467981, + "thread": 20 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 634182, + "thread": 28 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 666436, + "thread": 10 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 978113, + "thread": 2 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1080447, + "thread": 24 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1314047, + "thread": 8 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1352932, + "thread": 6 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1614596, + "thread": 22 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1756112, + "thread": 1 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1851258, + "thread": 0 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 1994159, + "thread": 13 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 2187419, + "thread": 10 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 2363105, + "thread": 20 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 2590376, + "thread": 22 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 2691605, + "thread": 7 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 2838249, + "thread": 3 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 3005233, + "thread": 14 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 3178417, + "thread": 1 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 3337298, + "thread": 17 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 3506026, + "thread": 4 + } + }, + { + "amount": "497.712122286", + "slot": { + "period": 3643609, + "thread": 24 + } + }, + { + "amount": "497.712122281", + "slot": { + "period": 3792444, + "thread": 28 + } + } + ], + "AU1238hQqQmDsTKawrDocdGHjrM6guzUPNPhtWnmZVoo6WPB9DjGG": [ + { + "amount": "69.358708717", + "slot": { + "period": 42689, + "thread": 9 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 223380, + "thread": 22 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 449177, + "thread": 31 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 628354, + "thread": 13 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 671963, + "thread": 22 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 976931, + "thread": 18 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1094841, + "thread": 10 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1261036, + "thread": 8 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1367662, + "thread": 31 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1531649, + "thread": 0 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1694470, + "thread": 10 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 1914011, + "thread": 4 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2087649, + "thread": 17 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2162969, + "thread": 7 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2449218, + "thread": 15 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2620368, + "thread": 15 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2737492, + "thread": 9 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2863229, + "thread": 9 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 2973473, + "thread": 22 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 3123139, + "thread": 25 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 3344806, + "thread": 12 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 3592337, + "thread": 21 + } + }, + { + "amount": "69.358708717", + "slot": { + "period": 3703651, + "thread": 24 + } + }, + { + "amount": "69.358708708", + "slot": { + "period": 3878498, + "thread": 8 + } + } + ], + "AU1238v6XMhSoZaSNfF7ram1RFdigWbB8HuPeCAE38zyXuDjc43mT": [ + { + "amount": "275.635742185", + "slot": { + "period": 50539, + "thread": 16 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 272928, + "thread": 14 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 390200, + "thread": 22 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 583831, + "thread": 10 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 778045, + "thread": 4 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 869555, + "thread": 19 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1008005, + "thread": 15 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1185600, + "thread": 18 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1362151, + "thread": 26 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1578642, + "thread": 9 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1748248, + "thread": 28 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 1822077, + "thread": 20 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2085853, + "thread": 29 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2242237, + "thread": 13 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2431064, + "thread": 3 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2516265, + "thread": 0 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2753349, + "thread": 23 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2874060, + "thread": 21 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 2982162, + "thread": 30 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 3203696, + "thread": 20 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 3300288, + "thread": 27 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 3546549, + "thread": 23 + } + }, + { + "amount": "275.635742185", + "slot": { + "period": 3660220, + "thread": 26 + } + }, + { + "amount": "275.635742192", + "slot": { + "period": 3928963, + "thread": 3 + } + } + ], + "AU1238xpJyuTMCUVnvynA4At5YbqW5MDoE736ckPJxjMLtSygTReJ": [ + { + "amount": "234.691040842", + "slot": { + "period": 130293, + "thread": 0 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 195298, + "thread": 10 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 416900, + "thread": 24 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 523774, + "thread": 26 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 756495, + "thread": 20 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 844261, + "thread": 17 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1131906, + "thread": 8 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1306944, + "thread": 15 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1446369, + "thread": 7 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1577050, + "thread": 14 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1678954, + "thread": 2 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1937008, + "thread": 23 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 1989923, + "thread": 21 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2197552, + "thread": 10 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2349899, + "thread": 9 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2549878, + "thread": 25 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2763968, + "thread": 22 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2820089, + "thread": 1 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 2978933, + "thread": 10 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 3161178, + "thread": 29 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 3306313, + "thread": 10 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 3479132, + "thread": 2 + } + }, + { + "amount": "234.691040842", + "slot": { + "period": 3645495, + "thread": 2 + } + }, + { + "amount": "234.691040850", + "slot": { + "period": 3890007, + "thread": 13 + } + } + ], + "AU12397JycRLzPQ5Zqk2SzUtrv8FzQGPdWg6sBuWTF9TN36N4R7td": [ + { + "amount": "293.473667368", + "slot": { + "period": 112142, + "thread": 18 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 296919, + "thread": 17 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 343355, + "thread": 5 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 551121, + "thread": 23 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 767195, + "thread": 27 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 934476, + "thread": 30 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1025680, + "thread": 6 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1274255, + "thread": 8 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1322427, + "thread": 10 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1551834, + "thread": 24 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1658178, + "thread": 14 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 1842279, + "thread": 20 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2134211, + "thread": 25 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2292698, + "thread": 10 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2377154, + "thread": 10 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2556552, + "thread": 1 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2730011, + "thread": 11 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2940017, + "thread": 27 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 2953962, + "thread": 25 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 3282046, + "thread": 8 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 3308492, + "thread": 24 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 3547920, + "thread": 17 + } + }, + { + "amount": "293.473667368", + "slot": { + "period": 3678938, + "thread": 4 + } + }, + { + "amount": "293.473667357", + "slot": { + "period": 3900500, + "thread": 7 + } + } + ], + "AU1239kRDWUhgcx49i9gduTNixSbeB5qkMN7ZunmNM5s6qvwC5fDF": [ + { + "amount": "248.537555401", + "slot": { + "period": 130786, + "thread": 10 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 187970, + "thread": 23 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 416575, + "thread": 24 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 537773, + "thread": 18 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 699950, + "thread": 15 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 855437, + "thread": 22 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1028804, + "thread": 0 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1295863, + "thread": 2 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1464571, + "thread": 15 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1509724, + "thread": 15 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1705848, + "thread": 12 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 1904730, + "thread": 23 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2131520, + "thread": 2 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2218229, + "thread": 8 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2389021, + "thread": 0 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2542499, + "thread": 29 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2776513, + "thread": 2 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 2833145, + "thread": 0 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 3092843, + "thread": 30 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 3249710, + "thread": 8 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 3292023, + "thread": 1 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 3476885, + "thread": 6 + } + }, + { + "amount": "248.537555401", + "slot": { + "period": 3757551, + "thread": 16 + } + }, + { + "amount": "248.537555410", + "slot": { + "period": 3939074, + "thread": 22 + } + } + ], + "AU123AubMHXNHNVdsjLENT3TKNDRNKnMKwq4thAHyYVMyimzY2p5w": [ + { + "amount": "159.860329911", + "slot": { + "period": 131272, + "thread": 4 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 302112, + "thread": 4 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 380888, + "thread": 12 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 568105, + "thread": 12 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 768814, + "thread": 28 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 862755, + "thread": 17 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1140702, + "thread": 24 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1272162, + "thread": 30 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1331708, + "thread": 7 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1568645, + "thread": 27 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1720538, + "thread": 17 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 1902572, + "thread": 1 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2098304, + "thread": 25 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2164423, + "thread": 24 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2401335, + "thread": 20 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2529057, + "thread": 7 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2678878, + "thread": 14 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2861506, + "thread": 7 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 2955364, + "thread": 26 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 3265755, + "thread": 7 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 3415169, + "thread": 24 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 3499696, + "thread": 14 + } + }, + { + "amount": "159.860329911", + "slot": { + "period": 3676973, + "thread": 4 + } + }, + { + "amount": "159.860329922", + "slot": { + "period": 3873468, + "thread": 24 + } + } + ], + "AU123B6dLLAmXpuCiF7qtCUmMvP87b4LmzcP5YdaKsmiqFJH8Z9RA": [ + { + "amount": "167.533285155", + "slot": { + "period": 14812, + "thread": 15 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 322803, + "thread": 29 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 406778, + "thread": 5 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 496033, + "thread": 13 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 803003, + "thread": 22 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 946082, + "thread": 22 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1097128, + "thread": 23 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1212334, + "thread": 4 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1398969, + "thread": 30 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1501223, + "thread": 22 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1781941, + "thread": 2 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 1881557, + "thread": 1 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2019224, + "thread": 12 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2212533, + "thread": 0 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2440665, + "thread": 28 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2532040, + "thread": 7 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2714768, + "thread": 12 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 2917242, + "thread": 13 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 3056973, + "thread": 18 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 3154768, + "thread": 11 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 3366407, + "thread": 25 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 3615447, + "thread": 28 + } + }, + { + "amount": "167.533285155", + "slot": { + "period": 3720102, + "thread": 5 + } + }, + { + "amount": "167.533285148", + "slot": { + "period": 3890716, + "thread": 14 + } + } + ], + "AU123BXf28prutVrmw3RyPfgXbBkWrCTrPotbpuzTV3CuHFHqaDTX": [ + { + "amount": "127.067787225", + "slot": { + "period": 97536, + "thread": 18 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 244345, + "thread": 0 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 456741, + "thread": 25 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 549276, + "thread": 31 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 654031, + "thread": 2 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 877308, + "thread": 17 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1125430, + "thread": 13 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1162636, + "thread": 4 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1451411, + "thread": 5 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1635806, + "thread": 25 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1773411, + "thread": 30 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 1854619, + "thread": 0 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2010109, + "thread": 8 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2157793, + "thread": 16 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2310205, + "thread": 2 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2588234, + "thread": 17 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2705820, + "thread": 24 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2797577, + "thread": 6 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 2966305, + "thread": 17 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 3265252, + "thread": 6 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 3325741, + "thread": 1 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 3610807, + "thread": 7 + } + }, + { + "amount": "127.067787225", + "slot": { + "period": 3716083, + "thread": 29 + } + }, + { + "amount": "127.067787235", + "slot": { + "period": 3925566, + "thread": 9 + } + } + ], + "AU123BuaWZ8TuuMrxP4czGbfVubpToKN6qyksZDZs3GX1kYNnKMXD": [ + { + "amount": "73.376591223", + "slot": { + "period": 106478, + "thread": 7 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 262236, + "thread": 15 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 395547, + "thread": 30 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 504244, + "thread": 31 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 753018, + "thread": 14 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 836298, + "thread": 26 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1064762, + "thread": 2 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1241073, + "thread": 21 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1363057, + "thread": 15 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1521293, + "thread": 31 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1655897, + "thread": 20 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 1892025, + "thread": 4 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2100096, + "thread": 15 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2239845, + "thread": 18 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2344416, + "thread": 23 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2599052, + "thread": 12 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2731065, + "thread": 31 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 2912594, + "thread": 7 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 3062527, + "thread": 27 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 3254168, + "thread": 30 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 3377907, + "thread": 29 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 3609646, + "thread": 29 + } + }, + { + "amount": "73.376591223", + "slot": { + "period": 3646162, + "thread": 16 + } + }, + { + "amount": "73.376591230", + "slot": { + "period": 3943788, + "thread": 31 + } + } + ], + "AU123Cs6oXeMCteemmmv91E9Jow9qTwZBDGfaJPNGTCt51Fa27aRD": [ + { + "amount": "90.437612542", + "slot": { + "period": 98278, + "thread": 7 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 256972, + "thread": 26 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 487564, + "thread": 5 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 584927, + "thread": 7 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 789622, + "thread": 8 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 873109, + "thread": 19 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1033824, + "thread": 8 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1283327, + "thread": 12 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1459952, + "thread": 29 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1555087, + "thread": 28 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1702670, + "thread": 11 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 1811374, + "thread": 5 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2063160, + "thread": 20 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2232644, + "thread": 16 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2420547, + "thread": 13 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2574127, + "thread": 29 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2710639, + "thread": 0 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 2871734, + "thread": 15 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 3012333, + "thread": 30 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 3134462, + "thread": 15 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 3354112, + "thread": 20 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 3460115, + "thread": 6 + } + }, + { + "amount": "90.437612542", + "slot": { + "period": 3707430, + "thread": 22 + } + }, + { + "amount": "90.437612539", + "slot": { + "period": 3846575, + "thread": 8 + } + } + ], + "AU123DXvjcnKc55RKxBPdLTRJmXDZMwxRqX7miRuQqU5Yd4xnX2P2": [ + { + "amount": "106.079104137", + "slot": { + "period": 125968, + "thread": 10 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 201079, + "thread": 5 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 448319, + "thread": 22 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 652736, + "thread": 20 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 721618, + "thread": 16 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 899182, + "thread": 28 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1142481, + "thread": 21 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1250021, + "thread": 2 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1327992, + "thread": 10 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1492058, + "thread": 19 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1787192, + "thread": 30 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 1884597, + "thread": 12 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2126560, + "thread": 6 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2272540, + "thread": 16 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2427479, + "thread": 23 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2617966, + "thread": 16 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2660684, + "thread": 12 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2902159, + "thread": 31 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 2971394, + "thread": 20 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 3234794, + "thread": 17 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 3407082, + "thread": 1 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 3506796, + "thread": 15 + } + }, + { + "amount": "106.079104137", + "slot": { + "period": 3753438, + "thread": 19 + } + }, + { + "amount": "106.079104144", + "slot": { + "period": 3802195, + "thread": 17 + } + } + ], + "AU123DzSHPJs1HYJnaTKKZ8VUyv8e8andw68nGDpvvCwbYva1WtBg": [ + { + "amount": "98.738388646", + "slot": { + "period": 40897, + "thread": 6 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 203332, + "thread": 2 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 449993, + "thread": 10 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 585620, + "thread": 2 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 674621, + "thread": 28 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 849727, + "thread": 23 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1087147, + "thread": 23 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1186054, + "thread": 15 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1418663, + "thread": 17 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1513605, + "thread": 5 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1701808, + "thread": 31 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 1834248, + "thread": 2 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2133380, + "thread": 24 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2180552, + "thread": 27 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2460392, + "thread": 12 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2526122, + "thread": 12 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2716667, + "thread": 18 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 2801771, + "thread": 26 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 3025482, + "thread": 17 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 3161190, + "thread": 20 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 3436234, + "thread": 0 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 3478745, + "thread": 8 + } + }, + { + "amount": "98.738388646", + "slot": { + "period": 3699310, + "thread": 13 + } + }, + { + "amount": "98.738388656", + "slot": { + "period": 3847446, + "thread": 4 + } + } + ], + "AU123EmJBLdDqeswCkoCLvczzhNPU3QU3FUP5nT1trfHiB3a3wLBT": [ + { + "amount": "457.509236501", + "slot": { + "period": 17600, + "thread": 10 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 214371, + "thread": 29 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 331875, + "thread": 4 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 616073, + "thread": 6 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 711050, + "thread": 2 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 951656, + "thread": 30 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1020098, + "thread": 21 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1212716, + "thread": 24 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1453007, + "thread": 3 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1482195, + "thread": 28 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1710262, + "thread": 19 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 1906866, + "thread": 22 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2037909, + "thread": 8 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2175855, + "thread": 31 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2382910, + "thread": 27 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2527654, + "thread": 15 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2787342, + "thread": 19 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 2812736, + "thread": 19 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 3051479, + "thread": 22 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 3282628, + "thread": 20 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 3339400, + "thread": 16 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 3462459, + "thread": 18 + } + }, + { + "amount": "457.509236501", + "slot": { + "period": 3702086, + "thread": 13 + } + }, + { + "amount": "457.509236496", + "slot": { + "period": 3855794, + "thread": 5 + } + } + ], + "AU123FUzeCeoaoipyjEQNYAuPHPF7dJKz5kMxzkRDTP4Nk89tHQqG": [ + { + "amount": "607.627681179", + "slot": { + "period": 51199, + "thread": 20 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 246836, + "thread": 2 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 401369, + "thread": 15 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 600819, + "thread": 12 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 717857, + "thread": 0 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 969468, + "thread": 28 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1112234, + "thread": 17 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1267588, + "thread": 18 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1379243, + "thread": 13 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1513016, + "thread": 31 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1708278, + "thread": 24 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 1953896, + "thread": 22 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2061259, + "thread": 13 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2149300, + "thread": 18 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2319172, + "thread": 23 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2536303, + "thread": 5 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2728162, + "thread": 30 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 2943303, + "thread": 0 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 3057117, + "thread": 16 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 3247334, + "thread": 24 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 3417873, + "thread": 30 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 3605877, + "thread": 25 + } + }, + { + "amount": "607.627681179", + "slot": { + "period": 3705723, + "thread": 31 + } + }, + { + "amount": "607.627681168", + "slot": { + "period": 3938469, + "thread": 23 + } + } + ], + "AU123FkQwhdxquUhBuhUACSi2UF3sKNqjWd8t9PMq8Q3EGh2pjk3h": [ + { + "amount": "646.321987337", + "slot": { + "period": 52528, + "thread": 5 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 279143, + "thread": 23 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 374423, + "thread": 14 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 634510, + "thread": 22 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 712181, + "thread": 13 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 937122, + "thread": 12 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 997040, + "thread": 29 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 1207583, + "thread": 9 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 1392541, + "thread": 28 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 1542933, + "thread": 6 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 1664160, + "thread": 26 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 1817740, + "thread": 21 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2074243, + "thread": 15 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2226360, + "thread": 14 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2340271, + "thread": 29 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2494660, + "thread": 4 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2784128, + "thread": 1 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 2887580, + "thread": 12 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 3116869, + "thread": 7 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 3221601, + "thread": 6 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 3362354, + "thread": 7 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 3510730, + "thread": 8 + } + }, + { + "amount": "646.321987337", + "slot": { + "period": 3654477, + "thread": 0 + } + }, + { + "amount": "646.321987342", + "slot": { + "period": 3852414, + "thread": 9 + } + } + ], + "AU123G9pmsEbtjsRdRgiwhC5tvMUjPxQnF6u6AzwSaaN8YjX9p3nm": [ + { + "amount": "229.440157199", + "slot": { + "period": 105266, + "thread": 13 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 176021, + "thread": 27 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 393564, + "thread": 13 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 609457, + "thread": 20 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 681806, + "thread": 0 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 938944, + "thread": 29 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1023658, + "thread": 16 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1164281, + "thread": 17 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1371655, + "thread": 22 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1541236, + "thread": 28 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1690373, + "thread": 30 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 1925539, + "thread": 17 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2039557, + "thread": 12 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2247019, + "thread": 18 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2324268, + "thread": 11 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2595362, + "thread": 5 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2647459, + "thread": 24 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 2949097, + "thread": 5 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 3099028, + "thread": 14 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 3264923, + "thread": 6 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 3364856, + "thread": 26 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 3601214, + "thread": 7 + } + }, + { + "amount": "229.440157199", + "slot": { + "period": 3671388, + "thread": 6 + } + }, + { + "amount": "229.440157193", + "slot": { + "period": 3826026, + "thread": 15 + } + } + ], + "AU123GQdif3G4yookqnuF3TqHJhr6jtVxkFWBMMm3gzqATiVKB9rN": [ + { + "amount": "101.341142244", + "slot": { + "period": 101009, + "thread": 4 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 237227, + "thread": 4 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 377987, + "thread": 22 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 592405, + "thread": 3 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 759993, + "thread": 22 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 976078, + "thread": 11 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1075105, + "thread": 1 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1219529, + "thread": 26 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1458184, + "thread": 4 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1596714, + "thread": 7 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1797998, + "thread": 29 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 1893972, + "thread": 22 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2013629, + "thread": 10 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2287716, + "thread": 0 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2409526, + "thread": 24 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2512145, + "thread": 0 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2662277, + "thread": 14 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 2862323, + "thread": 13 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 3121096, + "thread": 0 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 3179396, + "thread": 19 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 3402933, + "thread": 2 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 3514240, + "thread": 10 + } + }, + { + "amount": "101.341142244", + "slot": { + "period": 3709018, + "thread": 22 + } + }, + { + "amount": "101.341142238", + "slot": { + "period": 3830657, + "thread": 1 + } + } + ], + "AU123GVgEZDqukgZjPYKNbLV3xVX3J9bm6NL2ZTX4tfCA1b1YBJuk": [ + { + "amount": "365.576301821", + "slot": { + "period": 59524, + "thread": 26 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 249863, + "thread": 4 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 352383, + "thread": 16 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 507273, + "thread": 10 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 715814, + "thread": 21 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 891000, + "thread": 3 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1089881, + "thread": 13 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1293719, + "thread": 0 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1433125, + "thread": 22 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1625345, + "thread": 24 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1741286, + "thread": 29 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 1832397, + "thread": 12 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2060640, + "thread": 1 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2270582, + "thread": 23 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2379531, + "thread": 5 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2550334, + "thread": 29 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2702161, + "thread": 13 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2829770, + "thread": 27 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 2995489, + "thread": 7 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 3286541, + "thread": 21 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 3342666, + "thread": 10 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 3608311, + "thread": 26 + } + }, + { + "amount": "365.576301821", + "slot": { + "period": 3662347, + "thread": 4 + } + }, + { + "amount": "365.576301830", + "slot": { + "period": 3908859, + "thread": 21 + } + } + ], + "AU123HYJ2fQ836GihTzFwJTunzbgBdPzGwEA5japhZLJhhYuzkiyQ": [ + { + "amount": "224.460844202", + "slot": { + "period": 83736, + "thread": 20 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 257892, + "thread": 10 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 406916, + "thread": 7 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 583765, + "thread": 6 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 682420, + "thread": 13 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 874935, + "thread": 1 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1129956, + "thread": 26 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1245744, + "thread": 21 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1384326, + "thread": 10 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1568016, + "thread": 2 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1733228, + "thread": 18 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 1859867, + "thread": 26 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2063776, + "thread": 7 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2187078, + "thread": 14 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2456775, + "thread": 19 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2504189, + "thread": 28 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2687398, + "thread": 14 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 2907978, + "thread": 27 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 3083277, + "thread": 27 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 3179083, + "thread": 11 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 3305026, + "thread": 10 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 3488978, + "thread": 11 + } + }, + { + "amount": "224.460844202", + "slot": { + "period": 3644842, + "thread": 10 + } + }, + { + "amount": "224.460844210", + "slot": { + "period": 3881727, + "thread": 18 + } + } + ], + "AU123HYrDA2TYhk7NBjz4tr8Lmgybz38r9kSKUKJHEUj9JYCtKLoh": [ + { + "amount": "128.781356422", + "slot": { + "period": 88290, + "thread": 14 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 169185, + "thread": 23 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 346880, + "thread": 10 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 642982, + "thread": 16 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 677608, + "thread": 26 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 963918, + "thread": 8 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1098110, + "thread": 1 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1173694, + "thread": 28 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1444587, + "thread": 20 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1483334, + "thread": 29 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1736268, + "thread": 15 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 1837948, + "thread": 19 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2100728, + "thread": 18 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2259336, + "thread": 4 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2431270, + "thread": 27 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2620431, + "thread": 1 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2772344, + "thread": 30 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 2884675, + "thread": 5 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 3071053, + "thread": 6 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 3178449, + "thread": 22 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 3295698, + "thread": 29 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 3560689, + "thread": 3 + } + }, + { + "amount": "128.781356422", + "slot": { + "period": 3620252, + "thread": 2 + } + }, + { + "amount": "128.781356429", + "slot": { + "period": 3946813, + "thread": 10 + } + } + ], + "AU123HguQmsXPm9D9EpnDziLJXkX1zh9m9rk6ZH2NK8zf4gMgsVD4": [ + { + "amount": "111.177488572", + "slot": { + "period": 75499, + "thread": 2 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 307504, + "thread": 16 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 430254, + "thread": 20 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 610474, + "thread": 16 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 669507, + "thread": 6 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 944037, + "thread": 23 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1000403, + "thread": 4 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1270191, + "thread": 8 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1448407, + "thread": 14 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1613459, + "thread": 26 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1714923, + "thread": 7 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1962962, + "thread": 26 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 1983825, + "thread": 7 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 2211357, + "thread": 0 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 2439439, + "thread": 12 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 2583437, + "thread": 31 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 2649780, + "thread": 4 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 2926994, + "thread": 29 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 3083652, + "thread": 20 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 3224622, + "thread": 11 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 3331319, + "thread": 25 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 3482128, + "thread": 17 + } + }, + { + "amount": "111.177488572", + "slot": { + "period": 3744777, + "thread": 27 + } + }, + { + "amount": "111.177488576", + "slot": { + "period": 3854519, + "thread": 2 + } + } + ], + "AU123HxKqt3TQfCBz1uSSYKaA4WpfQ6CGgthdjAjdvnH4Dv7uVUm1": [ + { + "amount": "254.171128177", + "slot": { + "period": 11512, + "thread": 16 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 288856, + "thread": 14 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 489757, + "thread": 8 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 586113, + "thread": 15 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 801083, + "thread": 1 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 913158, + "thread": 16 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1145034, + "thread": 22 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1288872, + "thread": 15 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1339643, + "thread": 17 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1613592, + "thread": 0 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1648491, + "thread": 31 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 1941031, + "thread": 15 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2000070, + "thread": 24 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2287776, + "thread": 28 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2411597, + "thread": 0 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2561525, + "thread": 9 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2778445, + "thread": 3 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 2853759, + "thread": 12 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 3027423, + "thread": 17 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 3268691, + "thread": 13 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 3412184, + "thread": 3 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 3491347, + "thread": 23 + } + }, + { + "amount": "254.171128177", + "slot": { + "period": 3750371, + "thread": 1 + } + }, + { + "amount": "254.171128180", + "slot": { + "period": 3824684, + "thread": 10 + } + } + ], + "AU123JrBU7gkRqUWfgerAShr7qULRjMaMqVoqQDbecMsMVfWhvPib": [ + { + "amount": "55.092119913", + "slot": { + "period": 111577, + "thread": 16 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 213309, + "thread": 13 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 411682, + "thread": 10 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 542565, + "thread": 14 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 740288, + "thread": 25 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 948148, + "thread": 5 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1104787, + "thread": 3 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1205988, + "thread": 24 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1412392, + "thread": 30 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1613895, + "thread": 30 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1680348, + "thread": 0 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1861276, + "thread": 16 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 1979045, + "thread": 15 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 2161804, + "thread": 20 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 2388662, + "thread": 26 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 2567789, + "thread": 15 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 2709556, + "thread": 15 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 2927701, + "thread": 4 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 3023521, + "thread": 8 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 3160056, + "thread": 0 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 3448313, + "thread": 13 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 3524710, + "thread": 3 + } + }, + { + "amount": "55.092119913", + "slot": { + "period": 3701392, + "thread": 4 + } + }, + { + "amount": "55.092119909", + "slot": { + "period": 3879405, + "thread": 24 + } + } + ], + "AU123JvNATTXqcbrZ2g4BGe3DXehhztfBg1vechUxGvMP2chpxabK": [ + { + "amount": "133.058788313", + "slot": { + "period": 50223, + "thread": 15 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 267332, + "thread": 24 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 404757, + "thread": 1 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 533290, + "thread": 12 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 731158, + "thread": 11 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 928640, + "thread": 2 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1021719, + "thread": 16 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1309338, + "thread": 19 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1375136, + "thread": 3 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1613427, + "thread": 26 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1666345, + "thread": 15 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 1913526, + "thread": 2 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2094633, + "thread": 30 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2181916, + "thread": 5 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2307265, + "thread": 17 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2570981, + "thread": 9 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2783895, + "thread": 15 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 2882769, + "thread": 24 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 3040294, + "thread": 31 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 3224608, + "thread": 27 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 3324711, + "thread": 30 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 3617661, + "thread": 9 + } + }, + { + "amount": "133.058788313", + "slot": { + "period": 3680695, + "thread": 16 + } + }, + { + "amount": "133.058788305", + "slot": { + "period": 3789274, + "thread": 7 + } + } + ], + "AU123KMkH5axmEt9yK4JXtLDdkj8XN1nQtaoqpDTnQQzcoi2zYdhR": [ + { + "amount": "398.024258535", + "slot": { + "period": 134600, + "thread": 16 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 174584, + "thread": 23 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 420267, + "thread": 9 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 565243, + "thread": 1 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 687255, + "thread": 22 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 913744, + "thread": 16 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1053964, + "thread": 5 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1272907, + "thread": 1 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1365485, + "thread": 6 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1557597, + "thread": 26 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1772641, + "thread": 10 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 1881617, + "thread": 0 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2002667, + "thread": 23 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2226319, + "thread": 5 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2298064, + "thread": 18 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2512337, + "thread": 18 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2705616, + "thread": 24 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 2857845, + "thread": 30 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 3010102, + "thread": 30 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 3256920, + "thread": 12 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 3431033, + "thread": 20 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 3522991, + "thread": 10 + } + }, + { + "amount": "398.024258535", + "slot": { + "period": 3743660, + "thread": 8 + } + }, + { + "amount": "398.024258525", + "slot": { + "period": 3853174, + "thread": 27 + } + } + ], + "AU123KWPiJRbo7Pch1ccHLoJwAySgKD2AG86jz6UwbuUFavfNvLBv": [ + { + "amount": "474.512153640", + "slot": { + "period": 98744, + "thread": 1 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 280051, + "thread": 18 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 346572, + "thread": 4 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 498320, + "thread": 19 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 798688, + "thread": 24 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 909638, + "thread": 16 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1029770, + "thread": 14 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1193522, + "thread": 16 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1473106, + "thread": 29 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1572549, + "thread": 14 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1748436, + "thread": 16 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 1814701, + "thread": 25 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2131329, + "thread": 22 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2247004, + "thread": 0 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2334601, + "thread": 14 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2513398, + "thread": 12 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2630716, + "thread": 23 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2795317, + "thread": 6 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 2970273, + "thread": 6 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 3137977, + "thread": 29 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 3446221, + "thread": 22 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 3496066, + "thread": 4 + } + }, + { + "amount": "474.512153640", + "slot": { + "period": 3702905, + "thread": 4 + } + }, + { + "amount": "474.512153631", + "slot": { + "period": 3830154, + "thread": 12 + } + } + ], + "AU123LKxWEGbQx8ez83gThBcEMds1BzTudnLcXimQNaHvRqgKXeiw": [ + { + "amount": "669.828218478", + "slot": { + "period": 83953, + "thread": 23 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 306691, + "thread": 21 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 475679, + "thread": 30 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 513096, + "thread": 1 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 749704, + "thread": 13 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 896262, + "thread": 29 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1131850, + "thread": 30 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1223286, + "thread": 23 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1388879, + "thread": 6 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1637586, + "thread": 9 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1708642, + "thread": 23 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 1910732, + "thread": 0 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2037603, + "thread": 19 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2278877, + "thread": 16 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2360851, + "thread": 19 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2539698, + "thread": 0 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2645673, + "thread": 6 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 2802145, + "thread": 23 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 3081662, + "thread": 5 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 3199661, + "thread": 3 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 3326553, + "thread": 17 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 3577392, + "thread": 4 + } + }, + { + "amount": "669.828218478", + "slot": { + "period": 3657186, + "thread": 31 + } + }, + { + "amount": "669.828218477", + "slot": { + "period": 3893960, + "thread": 29 + } + } + ], + "AU123Lo4sae1vxcddUbuJbAQ9FexCZX2bQmUjiwhjPs1QSNFWuDge": [ + { + "amount": "422.867901257", + "slot": { + "period": 161143, + "thread": 1 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 290802, + "thread": 7 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 470972, + "thread": 25 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 516735, + "thread": 0 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 800518, + "thread": 25 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 895903, + "thread": 24 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1001732, + "thread": 17 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1193341, + "thread": 0 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1360621, + "thread": 10 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1571570, + "thread": 19 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1772721, + "thread": 11 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 1890187, + "thread": 8 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2069102, + "thread": 8 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2222704, + "thread": 7 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2392167, + "thread": 10 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2588456, + "thread": 14 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2665484, + "thread": 18 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2920559, + "thread": 19 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 2996774, + "thread": 22 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 3135338, + "thread": 3 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 3301723, + "thread": 17 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 3594245, + "thread": 18 + } + }, + { + "amount": "422.867901257", + "slot": { + "period": 3645184, + "thread": 30 + } + }, + { + "amount": "422.867901267", + "slot": { + "period": 3867489, + "thread": 4 + } + } + ], + "AU123MoUoyTnVvS1Kcj7qRPgP6h57hKPZffYZdo1T9LrMfJAEtJCe": [ + { + "amount": "61.800782092", + "slot": { + "period": 51286, + "thread": 26 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 304311, + "thread": 1 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 460152, + "thread": 13 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 560915, + "thread": 26 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 715532, + "thread": 5 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 970946, + "thread": 30 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1140781, + "thread": 30 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1194669, + "thread": 19 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1424755, + "thread": 15 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1503290, + "thread": 18 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1747965, + "thread": 19 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1856716, + "thread": 1 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 1998757, + "thread": 29 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 2258111, + "thread": 26 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 2307733, + "thread": 11 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 2495361, + "thread": 9 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 2648699, + "thread": 30 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 2878935, + "thread": 10 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 3101895, + "thread": 30 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 3258651, + "thread": 30 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 3363565, + "thread": 16 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 3548141, + "thread": 23 + } + }, + { + "amount": "61.800782092", + "slot": { + "period": 3699512, + "thread": 18 + } + }, + { + "amount": "61.800782093", + "slot": { + "period": 3788130, + "thread": 25 + } + } + ], + "AU123NALz8HryyY4WT3sfToZnqfNTUBx2cdw5CzkbWh16iRf7qkfb": [ + { + "amount": "174.008279374", + "slot": { + "period": 81172, + "thread": 0 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 308379, + "thread": 3 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 404252, + "thread": 18 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 600068, + "thread": 8 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 707420, + "thread": 28 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 878105, + "thread": 15 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1117509, + "thread": 22 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1265785, + "thread": 7 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1354771, + "thread": 22 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1502767, + "thread": 18 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1656496, + "thread": 16 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 1974462, + "thread": 25 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2024742, + "thread": 18 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2245724, + "thread": 20 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2370847, + "thread": 25 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2594638, + "thread": 6 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2699929, + "thread": 26 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2800232, + "thread": 21 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 2963506, + "thread": 4 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 3202340, + "thread": 15 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 3374640, + "thread": 16 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 3512596, + "thread": 8 + } + }, + { + "amount": "174.008279374", + "slot": { + "period": 3649363, + "thread": 22 + } + }, + { + "amount": "174.008279382", + "slot": { + "period": 3884488, + "thread": 27 + } + } + ], + "AU123NBQGEvmWqU2KAnwuZFwm3GuXYMzhYJg5H8u1yzkijVQckCPG": [ + { + "amount": "110.585714575", + "slot": { + "period": 99970, + "thread": 27 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 185448, + "thread": 17 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 490744, + "thread": 28 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 652218, + "thread": 18 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 786823, + "thread": 10 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 937965, + "thread": 30 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1021494, + "thread": 26 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1188762, + "thread": 6 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1436011, + "thread": 27 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1615222, + "thread": 23 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1735681, + "thread": 6 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 1964264, + "thread": 27 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2003930, + "thread": 28 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2151613, + "thread": 11 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2361007, + "thread": 31 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2586428, + "thread": 22 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2760071, + "thread": 21 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 2861674, + "thread": 8 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 3067910, + "thread": 23 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 3271074, + "thread": 22 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 3414218, + "thread": 19 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 3504739, + "thread": 16 + } + }, + { + "amount": "110.585714575", + "slot": { + "period": 3719150, + "thread": 3 + } + }, + { + "amount": "110.585714574", + "slot": { + "period": 3812732, + "thread": 20 + } + } + ], + "AU123Nm166t8DXBDVhtvR5ah8NAzuF22QBzfmQjuGDdB1FWsNQaX9": [ + { + "amount": "555.614276631", + "slot": { + "period": 14752, + "thread": 12 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 195361, + "thread": 29 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 412413, + "thread": 30 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 637991, + "thread": 19 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 711337, + "thread": 30 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 933748, + "thread": 13 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1008873, + "thread": 27 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1193659, + "thread": 0 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1477240, + "thread": 26 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1538868, + "thread": 31 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1665743, + "thread": 17 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 1927902, + "thread": 1 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2107211, + "thread": 25 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2281177, + "thread": 0 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2459545, + "thread": 4 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2487742, + "thread": 28 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2708596, + "thread": 23 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 2819259, + "thread": 13 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 3082271, + "thread": 14 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 3142881, + "thread": 28 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 3304899, + "thread": 17 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 3603660, + "thread": 6 + } + }, + { + "amount": "555.614276631", + "slot": { + "period": 3661898, + "thread": 23 + } + }, + { + "amount": "555.614276627", + "slot": { + "period": 3913663, + "thread": 18 + } + } + ], + "AU123QXbn83ju29AyrZsA6S4mfFJuV296ZQDco64P8nyjMEcKWsHw": [ + { + "amount": "154.088743981", + "slot": { + "period": 120945, + "thread": 0 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 211048, + "thread": 2 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 392074, + "thread": 11 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 529495, + "thread": 21 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 771493, + "thread": 10 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 868710, + "thread": 11 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1005548, + "thread": 20 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1263419, + "thread": 19 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1346748, + "thread": 28 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1511662, + "thread": 25 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1712515, + "thread": 16 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 1935982, + "thread": 29 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2011203, + "thread": 9 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2183486, + "thread": 16 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2406696, + "thread": 31 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2618293, + "thread": 25 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2704333, + "thread": 9 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 2951273, + "thread": 15 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 3093643, + "thread": 15 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 3231354, + "thread": 7 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 3355261, + "thread": 5 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 3513522, + "thread": 28 + } + }, + { + "amount": "154.088743981", + "slot": { + "period": 3669018, + "thread": 31 + } + }, + { + "amount": "154.088743979", + "slot": { + "period": 3816015, + "thread": 3 + } + } + ], + "AU123RC8z2155krq7t9ovnTWiTJ6tM36i7iUvCfjWgKt2BF3jMRD5": [ + { + "amount": "244.936848820", + "slot": { + "period": 41385, + "thread": 9 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 209906, + "thread": 19 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 419720, + "thread": 11 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 569483, + "thread": 11 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 766898, + "thread": 28 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 867793, + "thread": 12 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1128616, + "thread": 13 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1167000, + "thread": 26 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1436678, + "thread": 28 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1506058, + "thread": 19 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1670794, + "thread": 3 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 1912996, + "thread": 0 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2089875, + "thread": 18 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2145307, + "thread": 22 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2381446, + "thread": 30 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2560910, + "thread": 19 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2631937, + "thread": 29 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 2793555, + "thread": 31 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 3052755, + "thread": 7 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 3190427, + "thread": 31 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 3352447, + "thread": 14 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 3491376, + "thread": 19 + } + }, + { + "amount": "244.936848820", + "slot": { + "period": 3659299, + "thread": 22 + } + }, + { + "amount": "244.936848819", + "slot": { + "period": 3920897, + "thread": 11 + } + } + ], + "AU123RUo76fV9fb6pjknzkUbySpDUzMdBwZMcuAJ5FSUxZYzqwwWL": [ + { + "amount": "358.630019838", + "slot": { + "period": 135274, + "thread": 25 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 186427, + "thread": 8 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 434700, + "thread": 30 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 620357, + "thread": 25 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 719835, + "thread": 15 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 928829, + "thread": 18 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1130009, + "thread": 5 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1187479, + "thread": 24 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1431821, + "thread": 31 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1538877, + "thread": 24 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1719433, + "thread": 10 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 1870570, + "thread": 10 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2064725, + "thread": 27 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2196022, + "thread": 22 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2404589, + "thread": 9 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2523341, + "thread": 4 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2654793, + "thread": 5 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 2899281, + "thread": 29 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 3106282, + "thread": 9 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 3237224, + "thread": 8 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 3431875, + "thread": 8 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 3594467, + "thread": 26 + } + }, + { + "amount": "358.630019838", + "slot": { + "period": 3672541, + "thread": 17 + } + }, + { + "amount": "358.630019842", + "slot": { + "period": 3942891, + "thread": 2 + } + } + ], + "AU123RmAB7d93w1eFE8oZVoWAUoUjCHLWTY1JTkoyr3MgFvPM71Ro": [ + { + "amount": "358.859169884", + "slot": { + "period": 86016, + "thread": 24 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 226554, + "thread": 26 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 403588, + "thread": 10 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 631707, + "thread": 26 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 783765, + "thread": 14 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 834518, + "thread": 24 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1097241, + "thread": 6 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1189388, + "thread": 25 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1470546, + "thread": 14 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1600833, + "thread": 8 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1647093, + "thread": 14 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 1888300, + "thread": 14 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2029436, + "thread": 24 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2262231, + "thread": 26 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2367333, + "thread": 20 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2537270, + "thread": 9 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2766993, + "thread": 2 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 2825701, + "thread": 20 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 3114686, + "thread": 11 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 3184393, + "thread": 23 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 3420447, + "thread": 8 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 3512849, + "thread": 12 + } + }, + { + "amount": "358.859169884", + "slot": { + "period": 3678526, + "thread": 27 + } + }, + { + "amount": "358.859169891", + "slot": { + "period": 3820892, + "thread": 29 + } + } + ], + "AU123T726qvMWbHg2LpZeYAoKSkKNaLn48bPKEdLx8hGeGty199Ek": [ + { + "amount": "190.855283278", + "slot": { + "period": 87887, + "thread": 8 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 297991, + "thread": 10 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 466767, + "thread": 7 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 626213, + "thread": 23 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 727895, + "thread": 8 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 937587, + "thread": 17 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1015699, + "thread": 19 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1295259, + "thread": 21 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1390762, + "thread": 24 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1502685, + "thread": 27 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1803952, + "thread": 19 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1954959, + "thread": 10 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 1977477, + "thread": 14 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 2199693, + "thread": 5 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 2337231, + "thread": 3 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 2574314, + "thread": 7 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 2672125, + "thread": 19 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 2803236, + "thread": 9 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 3023612, + "thread": 5 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 3257573, + "thread": 23 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 3426606, + "thread": 19 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 3457987, + "thread": 7 + } + }, + { + "amount": "190.855283278", + "slot": { + "period": 3726968, + "thread": 14 + } + }, + { + "amount": "190.855283276", + "slot": { + "period": 3859407, + "thread": 28 + } + } + ], + "AU123U9DKjCF12G6xwrLBTsXHo3rd7fo3e1qQrsf1G1dsRsSF4C8U": [ + { + "amount": "127.108601476", + "slot": { + "period": 147661, + "thread": 26 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 293945, + "thread": 14 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 438618, + "thread": 15 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 549339, + "thread": 20 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 752267, + "thread": 11 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 931927, + "thread": 11 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1090433, + "thread": 9 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1257792, + "thread": 24 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1347640, + "thread": 27 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1492826, + "thread": 27 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1794511, + "thread": 2 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 1938735, + "thread": 15 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2012278, + "thread": 0 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2198104, + "thread": 19 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2311854, + "thread": 13 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2482265, + "thread": 18 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2702686, + "thread": 29 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2896951, + "thread": 3 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 2988950, + "thread": 12 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 3241740, + "thread": 0 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 3407173, + "thread": 13 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 3608465, + "thread": 14 + } + }, + { + "amount": "127.108601476", + "slot": { + "period": 3745637, + "thread": 11 + } + }, + { + "amount": "127.108601464", + "slot": { + "period": 3876583, + "thread": 30 + } + } + ], + "AU123UbEf7oLCUQG9JKgQf3pNvoxZ8mbAUGEvaWrQvNN7W2w6wbBP": [ + { + "amount": "208.153410385", + "slot": { + "period": 38465, + "thread": 15 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 179522, + "thread": 2 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 359085, + "thread": 10 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 636558, + "thread": 12 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 771055, + "thread": 25 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 827357, + "thread": 1 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1067135, + "thread": 24 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1163735, + "thread": 28 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1346333, + "thread": 0 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1623240, + "thread": 29 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1714903, + "thread": 20 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1872257, + "thread": 20 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 1999349, + "thread": 5 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 2273650, + "thread": 6 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 2337647, + "thread": 28 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 2523348, + "thread": 27 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 2753270, + "thread": 5 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 2853581, + "thread": 13 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 3036326, + "thread": 6 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 3227438, + "thread": 10 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 3304134, + "thread": 28 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 3512267, + "thread": 31 + } + }, + { + "amount": "208.153410385", + "slot": { + "period": 3696615, + "thread": 13 + } + }, + { + "amount": "208.153410384", + "slot": { + "period": 3881374, + "thread": 27 + } + } + ], + "AU123W7AqQvKUw5c3y5oJqooJw1UAYMNcSQffLN1YRYcPJNwSAKbV": [ + { + "amount": "280.573150006", + "slot": { + "period": 47459, + "thread": 20 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 205236, + "thread": 20 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 454778, + "thread": 9 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 565838, + "thread": 29 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 712483, + "thread": 31 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 902096, + "thread": 13 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1028595, + "thread": 11 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1185735, + "thread": 20 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1400609, + "thread": 29 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1551682, + "thread": 9 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1712120, + "thread": 18 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 1826966, + "thread": 4 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2072494, + "thread": 12 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2233501, + "thread": 12 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2435452, + "thread": 18 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2546729, + "thread": 19 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2691676, + "thread": 15 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2896204, + "thread": 26 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 2979443, + "thread": 19 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 3246099, + "thread": 1 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 3349123, + "thread": 28 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 3492777, + "thread": 11 + } + }, + { + "amount": "280.573150006", + "slot": { + "period": 3748341, + "thread": 6 + } + }, + { + "amount": "280.573150010", + "slot": { + "period": 3938622, + "thread": 15 + } + } + ], + "AU123XQByuFB8wjHdEGRJ2AfkV7YQiHMwP3cX443h33WJwKsumdYn": [ + { + "amount": "265.919299671", + "slot": { + "period": 97503, + "thread": 18 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 254853, + "thread": 13 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 411344, + "thread": 4 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 567116, + "thread": 12 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 802724, + "thread": 16 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 932920, + "thread": 12 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1143269, + "thread": 30 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1226541, + "thread": 3 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1393352, + "thread": 14 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1634121, + "thread": 5 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1685904, + "thread": 17 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 1950482, + "thread": 5 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2018934, + "thread": 6 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2266724, + "thread": 15 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2295857, + "thread": 11 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2522556, + "thread": 6 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2636488, + "thread": 13 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 2930981, + "thread": 19 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 3020831, + "thread": 0 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 3140033, + "thread": 26 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 3346759, + "thread": 9 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 3574148, + "thread": 31 + } + }, + { + "amount": "265.919299671", + "slot": { + "period": 3743385, + "thread": 0 + } + }, + { + "amount": "265.919299679", + "slot": { + "period": 3841146, + "thread": 17 + } + } + ], + "AU123XrcWkeAKx5rCDCc29AuawQKbyoirDNcGsCrpvJ8PZht24Wfy": [ + { + "amount": "108.007225542", + "slot": { + "period": 119041, + "thread": 10 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 174883, + "thread": 13 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 340900, + "thread": 16 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 500677, + "thread": 25 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 735951, + "thread": 21 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 955847, + "thread": 2 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1119115, + "thread": 27 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1241271, + "thread": 0 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1361903, + "thread": 3 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1545660, + "thread": 9 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1685892, + "thread": 18 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 1902395, + "thread": 6 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2097817, + "thread": 5 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2262133, + "thread": 14 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2445165, + "thread": 27 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2577893, + "thread": 1 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2693891, + "thread": 5 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 2812981, + "thread": 22 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3043008, + "thread": 2 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3156625, + "thread": 13 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3421592, + "thread": 21 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3460389, + "thread": 5 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3742855, + "thread": 26 + } + }, + { + "amount": "108.007225542", + "slot": { + "period": 3849806, + "thread": 17 + } + } + ], + "AU123YK4EUPwgUSN2rDwdtsBzAM6WjA6EmDUM4tZyKRkmhSbxZU2v": [ + { + "amount": "157.611474723", + "slot": { + "period": 14010, + "thread": 22 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 219035, + "thread": 2 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 431539, + "thread": 6 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 552167, + "thread": 10 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 678444, + "thread": 12 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 957090, + "thread": 26 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1092425, + "thread": 9 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1214983, + "thread": 12 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1467431, + "thread": 11 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1519773, + "thread": 14 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1665319, + "thread": 25 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 1943374, + "thread": 21 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2055375, + "thread": 17 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2157296, + "thread": 27 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2410110, + "thread": 17 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2482262, + "thread": 25 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2715162, + "thread": 0 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2838684, + "thread": 17 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 2977178, + "thread": 7 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 3216064, + "thread": 13 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 3446333, + "thread": 23 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 3617501, + "thread": 7 + } + }, + { + "amount": "157.611474723", + "slot": { + "period": 3633797, + "thread": 5 + } + }, + { + "amount": "157.611474715", + "slot": { + "period": 3849524, + "thread": 28 + } + } + ], + "AU123YPA9RhBee7Kz33yWkHg47GSBzHPJYBebrPNxMkWfREz8NL8A": [ + { + "amount": "299.029611848", + "slot": { + "period": 109156, + "thread": 24 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 214382, + "thread": 26 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 334754, + "thread": 24 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 511698, + "thread": 16 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 813228, + "thread": 8 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 953628, + "thread": 21 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1121091, + "thread": 13 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1251835, + "thread": 16 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1475882, + "thread": 9 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1607875, + "thread": 3 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1718197, + "thread": 0 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 1928098, + "thread": 27 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2085397, + "thread": 0 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2188489, + "thread": 16 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2442750, + "thread": 26 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2570863, + "thread": 13 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2697702, + "thread": 10 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2853710, + "thread": 23 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 2985173, + "thread": 10 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 3263579, + "thread": 9 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 3311976, + "thread": 31 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 3455012, + "thread": 25 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 3769368, + "thread": 29 + } + }, + { + "amount": "299.029611848", + "slot": { + "period": 3916999, + "thread": 14 + } + } + ], + "AU123YaVpiFkL3LKCLjKheYMqPh3yHgyhMSxJrPi4t9r6KCdpf5wE": [ + { + "amount": "84.631732810", + "slot": { + "period": 43683, + "thread": 12 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 234445, + "thread": 25 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 337892, + "thread": 4 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 590954, + "thread": 16 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 687753, + "thread": 27 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 974248, + "thread": 27 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1069726, + "thread": 23 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1249648, + "thread": 14 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1466451, + "thread": 5 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1565736, + "thread": 27 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1744914, + "thread": 23 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 1854932, + "thread": 7 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2043350, + "thread": 25 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2216196, + "thread": 7 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2408491, + "thread": 14 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2595228, + "thread": 4 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2741803, + "thread": 13 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 2915183, + "thread": 1 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3007842, + "thread": 17 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3280416, + "thread": 28 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3296318, + "thread": 5 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3560401, + "thread": 20 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3737234, + "thread": 10 + } + }, + { + "amount": "84.631732810", + "slot": { + "period": 3781438, + "thread": 28 + } + } + ], + "AU123YmtGtLNH6frxfMNjGXS1EnbNo4iVNiPh8VsSFp9xnjNbBeVK": [ + { + "amount": "213.018876354", + "slot": { + "period": 34119, + "thread": 7 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 250030, + "thread": 27 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 391411, + "thread": 21 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 496005, + "thread": 21 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 775173, + "thread": 7 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 877023, + "thread": 7 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1142803, + "thread": 20 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1304653, + "thread": 6 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1351263, + "thread": 26 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1530040, + "thread": 14 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1707144, + "thread": 7 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 1841300, + "thread": 30 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2068680, + "thread": 6 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2216146, + "thread": 18 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2329479, + "thread": 15 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2570215, + "thread": 12 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2699544, + "thread": 16 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2827615, + "thread": 7 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 2954653, + "thread": 2 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 3203642, + "thread": 27 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 3384202, + "thread": 22 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 3455100, + "thread": 21 + } + }, + { + "amount": "213.018876354", + "slot": { + "period": 3668087, + "thread": 31 + } + }, + { + "amount": "213.018876355", + "slot": { + "period": 3867804, + "thread": 6 + } + } + ], + "AU123YtJUtMcPwiz7Fiq5Q8AVKLzyKFunX6S9QR3QKr6aBZiHN43E": [ + { + "amount": "124.222245899", + "slot": { + "period": 19585, + "thread": 7 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 172354, + "thread": 4 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 325087, + "thread": 21 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 509514, + "thread": 15 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 657343, + "thread": 30 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 871565, + "thread": 7 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1139062, + "thread": 29 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1251882, + "thread": 24 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1356049, + "thread": 10 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1605659, + "thread": 20 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1781196, + "thread": 26 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 1951222, + "thread": 9 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2096212, + "thread": 23 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2161997, + "thread": 19 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2369065, + "thread": 31 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2511998, + "thread": 26 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2690808, + "thread": 13 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2861347, + "thread": 5 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 2954471, + "thread": 6 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 3166007, + "thread": 23 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 3441448, + "thread": 19 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 3566420, + "thread": 1 + } + }, + { + "amount": "124.222245899", + "slot": { + "period": 3738948, + "thread": 24 + } + }, + { + "amount": "124.222245891", + "slot": { + "period": 3780250, + "thread": 25 + } + } + ], + "AU123Zib1Q2xUzVzWY7eDMpvYyYmLq5CaJHGhKFkWr9C5F7ZkRveQ": [ + { + "amount": "66.576676260", + "slot": { + "period": 83647, + "thread": 31 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 321653, + "thread": 19 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 444343, + "thread": 29 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 579302, + "thread": 3 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 743835, + "thread": 27 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 871631, + "thread": 24 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1014618, + "thread": 20 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1312759, + "thread": 8 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1432572, + "thread": 4 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1572662, + "thread": 1 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1764573, + "thread": 15 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1931865, + "thread": 16 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 1986537, + "thread": 18 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 2182608, + "thread": 4 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 2363767, + "thread": 28 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 2469807, + "thread": 15 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 2649483, + "thread": 18 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 2934006, + "thread": 28 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 3056176, + "thread": 23 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 3189125, + "thread": 18 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 3345874, + "thread": 0 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 3607794, + "thread": 2 + } + }, + { + "amount": "66.576676260", + "slot": { + "period": 3689085, + "thread": 10 + } + }, + { + "amount": "66.576676250", + "slot": { + "period": 3930604, + "thread": 24 + } + } + ], + "AU123bdRgkBXvZvZsJzoBpzEycWEi6TkDNCLZHuod3h6KeEtXX9ZK": [ + { + "amount": "588.172324105", + "slot": { + "period": 125289, + "thread": 9 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 209023, + "thread": 13 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 419783, + "thread": 13 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 521645, + "thread": 23 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 679984, + "thread": 18 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 830478, + "thread": 2 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1054355, + "thread": 20 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1317173, + "thread": 1 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1366180, + "thread": 3 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1551605, + "thread": 27 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1801363, + "thread": 1 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 1856112, + "thread": 25 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2082384, + "thread": 25 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2241826, + "thread": 13 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2396724, + "thread": 8 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2578856, + "thread": 22 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2774219, + "thread": 27 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 2875642, + "thread": 17 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 3001160, + "thread": 22 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 3176291, + "thread": 13 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 3366544, + "thread": 21 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 3545674, + "thread": 8 + } + }, + { + "amount": "588.172324105", + "slot": { + "period": 3748619, + "thread": 30 + } + }, + { + "amount": "588.172324096", + "slot": { + "period": 3821649, + "thread": 4 + } + } + ], + "AU123bx7UxUbr2TDiEcuNFcamkrrBhHc7zicbn2KHSFB12aChKGTk": [ + { + "amount": "489.708384369", + "slot": { + "period": 138730, + "thread": 10 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 268933, + "thread": 16 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 356684, + "thread": 22 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 641859, + "thread": 0 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 802914, + "thread": 7 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 897753, + "thread": 29 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1122405, + "thread": 18 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1163861, + "thread": 10 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1456667, + "thread": 15 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1487332, + "thread": 29 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1715577, + "thread": 14 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 1867621, + "thread": 31 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2015925, + "thread": 12 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2151947, + "thread": 6 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2418162, + "thread": 23 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2559689, + "thread": 26 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2670382, + "thread": 15 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 2859873, + "thread": 15 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 3075062, + "thread": 25 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 3222686, + "thread": 20 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 3412421, + "thread": 18 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 3467060, + "thread": 8 + } + }, + { + "amount": "489.708384369", + "slot": { + "period": 3714454, + "thread": 19 + } + }, + { + "amount": "489.708384367", + "slot": { + "period": 3859329, + "thread": 19 + } + } + ], + "AU123cFuiiaADYUv9JJoPAXX4ykx5Sc5q9onsX26TMPDzw23xJX4P": [ + { + "amount": "491.214021939", + "slot": { + "period": 101258, + "thread": 9 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 182322, + "thread": 5 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 358028, + "thread": 8 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 550109, + "thread": 7 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 805137, + "thread": 24 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 913884, + "thread": 3 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1119410, + "thread": 3 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1289968, + "thread": 7 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1391576, + "thread": 25 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1584282, + "thread": 9 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1745128, + "thread": 19 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 1878684, + "thread": 16 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2048011, + "thread": 31 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2291852, + "thread": 19 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2431235, + "thread": 5 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2485594, + "thread": 31 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2651027, + "thread": 12 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 2837818, + "thread": 1 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 3069323, + "thread": 2 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 3176914, + "thread": 26 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 3322697, + "thread": 8 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 3617293, + "thread": 23 + } + }, + { + "amount": "491.214021939", + "slot": { + "period": 3741092, + "thread": 28 + } + }, + { + "amount": "491.214021938", + "slot": { + "period": 3803614, + "thread": 6 + } + } + ], + "AU123d7xyfpAjbN32VfN4Gs6q5AohSFEFVBW8E3MUnz3koqpuQdDb": [ + { + "amount": "486.399754303", + "slot": { + "period": 102932, + "thread": 13 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 318727, + "thread": 24 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 474980, + "thread": 2 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 591016, + "thread": 5 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 686586, + "thread": 12 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 968357, + "thread": 6 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1110696, + "thread": 1 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1157364, + "thread": 5 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1318358, + "thread": 4 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1621022, + "thread": 6 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1670685, + "thread": 9 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1847100, + "thread": 24 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 1994417, + "thread": 15 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 2210048, + "thread": 14 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 2414550, + "thread": 27 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 2609798, + "thread": 15 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 2658249, + "thread": 13 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 2792969, + "thread": 16 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 3002997, + "thread": 24 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 3198079, + "thread": 25 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 3331422, + "thread": 8 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 3589185, + "thread": 12 + } + }, + { + "amount": "486.399754303", + "slot": { + "period": 3628320, + "thread": 1 + } + }, + { + "amount": "486.399754304", + "slot": { + "period": 3917377, + "thread": 0 + } + } + ], + "AU123daKFYDky8mk5yL8sN8YAm96UtRsfLmKgenmzv8kJ21d6Yi7H": [ + { + "amount": "550.553023160", + "slot": { + "period": 65532, + "thread": 23 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 310169, + "thread": 1 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 392447, + "thread": 2 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 565123, + "thread": 2 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 673301, + "thread": 2 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 930953, + "thread": 18 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1085632, + "thread": 18 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1309758, + "thread": 18 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1473096, + "thread": 15 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1520032, + "thread": 5 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1776711, + "thread": 15 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 1851012, + "thread": 26 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2003302, + "thread": 15 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2269897, + "thread": 10 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2359130, + "thread": 18 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2487964, + "thread": 17 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2704154, + "thread": 25 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 2951861, + "thread": 15 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 3047744, + "thread": 31 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 3179334, + "thread": 17 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 3449200, + "thread": 30 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 3469408, + "thread": 26 + } + }, + { + "amount": "550.553023160", + "slot": { + "period": 3619332, + "thread": 8 + } + }, + { + "amount": "550.553023159", + "slot": { + "period": 3798616, + "thread": 19 + } + } + ], + "AU123e49cpN71oGbgWuGnxA5BW9t6fHsPNNQTP8RpKvYrBSaiCLcQ": [ + { + "amount": "210.191628756", + "slot": { + "period": 105114, + "thread": 5 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 241591, + "thread": 27 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 369659, + "thread": 16 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 597379, + "thread": 8 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 669025, + "thread": 25 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 953285, + "thread": 31 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1147876, + "thread": 2 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1178825, + "thread": 18 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1325182, + "thread": 1 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1641046, + "thread": 3 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1748543, + "thread": 19 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 1824258, + "thread": 5 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2033146, + "thread": 28 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2230847, + "thread": 23 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2350983, + "thread": 10 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2462949, + "thread": 17 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2745307, + "thread": 30 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 2950844, + "thread": 31 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 3020162, + "thread": 9 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 3161896, + "thread": 16 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 3403466, + "thread": 19 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 3473039, + "thread": 19 + } + }, + { + "amount": "210.191628756", + "slot": { + "period": 3656025, + "thread": 11 + } + }, + { + "amount": "210.191628754", + "slot": { + "period": 3900562, + "thread": 31 + } + } + ], + "AU123eYPx5KwwucUDR7FJ4xdcsr6LpDwgZUfZB87GZo1E1xo9nBvn": [ + { + "amount": "205.113275363", + "slot": { + "period": 29813, + "thread": 21 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 191598, + "thread": 22 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 406208, + "thread": 12 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 627520, + "thread": 16 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 802968, + "thread": 26 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 870813, + "thread": 26 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 984773, + "thread": 30 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 1303395, + "thread": 13 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 1431078, + "thread": 30 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 1618899, + "thread": 5 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 1808685, + "thread": 1 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 1848404, + "thread": 31 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2024092, + "thread": 4 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2255117, + "thread": 12 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2303517, + "thread": 7 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2611058, + "thread": 18 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2655800, + "thread": 8 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2871479, + "thread": 14 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 2968583, + "thread": 3 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 3160563, + "thread": 13 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 3351283, + "thread": 17 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 3463092, + "thread": 10 + } + }, + { + "amount": "205.113275363", + "slot": { + "period": 3642421, + "thread": 17 + } + }, + { + "amount": "205.113275369", + "slot": { + "period": 3862223, + "thread": 13 + } + } + ], + "AU123eoNvCzn6YLWWvUsAMrfs16ouDYQKMWh3dCwqiRiYQ389dCEN": [ + { + "amount": "264.217312512", + "slot": { + "period": 12123, + "thread": 11 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 257240, + "thread": 22 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 326190, + "thread": 14 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 556709, + "thread": 14 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 793934, + "thread": 15 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 830431, + "thread": 3 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1030766, + "thread": 19 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1240080, + "thread": 19 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1341856, + "thread": 17 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1582003, + "thread": 28 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1674160, + "thread": 4 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1915608, + "thread": 27 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 1993672, + "thread": 26 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 2243271, + "thread": 30 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 2408768, + "thread": 12 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 2543428, + "thread": 22 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 2740019, + "thread": 3 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 2938654, + "thread": 29 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 3058534, + "thread": 1 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 3189575, + "thread": 5 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 3421751, + "thread": 28 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 3480959, + "thread": 24 + } + }, + { + "amount": "264.217312512", + "slot": { + "period": 3619286, + "thread": 25 + } + }, + { + "amount": "264.217312507", + "slot": { + "period": 3816471, + "thread": 4 + } + } + ], + "AU123fLs7eEEVdg2Q52GbG4ZM26LwWvX8QcKiRSCtVZJN8D8dKXdP": [ + { + "amount": "157.646655364", + "slot": { + "period": 109139, + "thread": 1 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 175571, + "thread": 28 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 410605, + "thread": 25 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 625391, + "thread": 14 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 794095, + "thread": 11 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 828596, + "thread": 10 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 995525, + "thread": 17 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 1246702, + "thread": 21 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 1429654, + "thread": 11 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 1616558, + "thread": 6 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 1665017, + "thread": 25 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 1886600, + "thread": 7 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2052951, + "thread": 5 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2159879, + "thread": 9 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2409461, + "thread": 3 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2505430, + "thread": 25 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2717983, + "thread": 7 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 2874255, + "thread": 23 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 3067779, + "thread": 11 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 3188759, + "thread": 6 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 3430728, + "thread": 4 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 3519676, + "thread": 3 + } + }, + { + "amount": "157.646655364", + "slot": { + "period": 3736874, + "thread": 20 + } + }, + { + "amount": "157.646655374", + "slot": { + "period": 3839519, + "thread": 20 + } + } + ], + "AU123fLydLNzJdqfqaF5eUZVL7MYxYip28qNm1aszeksR8HAW9BH9": [ + { + "amount": "145.326968072", + "slot": { + "period": 69245, + "thread": 28 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 234013, + "thread": 29 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 391139, + "thread": 12 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 493481, + "thread": 27 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 655078, + "thread": 14 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 883830, + "thread": 1 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1102501, + "thread": 3 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1290640, + "thread": 5 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1411109, + "thread": 7 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1573741, + "thread": 10 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1739988, + "thread": 28 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1875442, + "thread": 23 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 1998837, + "thread": 21 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2237877, + "thread": 29 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2451537, + "thread": 21 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2489750, + "thread": 14 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2732634, + "thread": 21 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2845633, + "thread": 16 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 2968379, + "thread": 1 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 3265817, + "thread": 3 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 3299089, + "thread": 26 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 3477889, + "thread": 24 + } + }, + { + "amount": "145.326968072", + "slot": { + "period": 3657281, + "thread": 13 + } + }, + { + "amount": "145.326968080", + "slot": { + "period": 3920304, + "thread": 31 + } + } + ], + "AU123hkqkJ4ocunUNbNkwbNDfTZKdfKAGTWW3GFUbJLD1agwSRVb3": [ + { + "amount": "173.107397165", + "slot": { + "period": 54360, + "thread": 28 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 238085, + "thread": 24 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 397342, + "thread": 2 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 508975, + "thread": 31 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 737817, + "thread": 11 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 956113, + "thread": 27 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1067170, + "thread": 9 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1213004, + "thread": 1 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1344221, + "thread": 30 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1561023, + "thread": 10 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1730914, + "thread": 21 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 1819740, + "thread": 17 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2058968, + "thread": 19 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2281773, + "thread": 0 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2328008, + "thread": 15 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2476865, + "thread": 25 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2742632, + "thread": 29 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 2825824, + "thread": 29 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 3095236, + "thread": 0 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 3171376, + "thread": 13 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 3295488, + "thread": 10 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 3602315, + "thread": 9 + } + }, + { + "amount": "173.107397165", + "slot": { + "period": 3760653, + "thread": 23 + } + }, + { + "amount": "173.107397170", + "slot": { + "period": 3898281, + "thread": 7 + } + } + ], + "AU123iDjPehDZ4gopxh2bq37gH5fpcZhKnNNoxXL6jLuP42YaZttL": [ + { + "amount": "169.100990976", + "slot": { + "period": 106169, + "thread": 18 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 233661, + "thread": 10 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 328088, + "thread": 21 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 637095, + "thread": 15 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 681974, + "thread": 27 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 894305, + "thread": 16 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1112869, + "thread": 20 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1173458, + "thread": 10 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1425268, + "thread": 8 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1574481, + "thread": 26 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1661419, + "thread": 9 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 1908762, + "thread": 2 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2078880, + "thread": 4 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2250185, + "thread": 22 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2318340, + "thread": 15 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2591559, + "thread": 1 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2767691, + "thread": 31 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 2818878, + "thread": 10 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 3056399, + "thread": 25 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 3168887, + "thread": 5 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 3381966, + "thread": 0 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 3513695, + "thread": 10 + } + }, + { + "amount": "169.100990976", + "slot": { + "period": 3774554, + "thread": 18 + } + }, + { + "amount": "169.100990982", + "slot": { + "period": 3837153, + "thread": 31 + } + } + ], + "AU123iHDM2CPGqgQ4VVPgjFqmx16uH8TqBSkHLWQPEMtA4CyD65zT": [ + { + "amount": "94.291886834", + "slot": { + "period": 61600, + "thread": 28 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 277368, + "thread": 13 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 394498, + "thread": 29 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 591229, + "thread": 18 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 731116, + "thread": 31 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 823932, + "thread": 20 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1063477, + "thread": 13 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1208777, + "thread": 17 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1477217, + "thread": 19 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1566574, + "thread": 23 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1670453, + "thread": 27 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1950673, + "thread": 21 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 1995210, + "thread": 18 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 2166667, + "thread": 29 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 2350722, + "thread": 7 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 2465468, + "thread": 29 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 2686130, + "thread": 17 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 2801453, + "thread": 24 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 3040904, + "thread": 30 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 3135110, + "thread": 10 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 3359540, + "thread": 9 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 3499240, + "thread": 26 + } + }, + { + "amount": "94.291886834", + "slot": { + "period": 3714388, + "thread": 28 + } + }, + { + "amount": "94.291886822", + "slot": { + "period": 3901776, + "thread": 11 + } + } + ], + "AU123iREs98nHyqHbXJ5fXTYo43K4LpuRNSb3sWKbum31Xf8fPKLS": [ + { + "amount": "112.693630348", + "slot": { + "period": 62600, + "thread": 31 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 202595, + "thread": 5 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 391700, + "thread": 12 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 535182, + "thread": 15 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 725990, + "thread": 12 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 884059, + "thread": 7 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1003464, + "thread": 9 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1203242, + "thread": 25 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1363348, + "thread": 19 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1574646, + "thread": 13 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1682035, + "thread": 22 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 1860509, + "thread": 22 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2104648, + "thread": 0 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2235927, + "thread": 8 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2325762, + "thread": 23 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2602330, + "thread": 11 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2789384, + "thread": 12 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 2843613, + "thread": 18 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 3000221, + "thread": 16 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 3188059, + "thread": 21 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 3320170, + "thread": 31 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 3595543, + "thread": 29 + } + }, + { + "amount": "112.693630348", + "slot": { + "period": 3729885, + "thread": 11 + } + }, + { + "amount": "112.693630337", + "slot": { + "period": 3785572, + "thread": 15 + } + } + ], + "AU123juAZSqmTMLUWSeruVhn4uFCiLuP7C1SoDpLBeZYPm8iPg76G": [ + { + "amount": "103.362877914", + "slot": { + "period": 12118, + "thread": 12 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 295523, + "thread": 26 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 417701, + "thread": 23 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 559685, + "thread": 26 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 692337, + "thread": 1 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 959314, + "thread": 0 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1014560, + "thread": 19 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1214966, + "thread": 24 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1400433, + "thread": 26 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1551471, + "thread": 22 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1791617, + "thread": 8 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 1828522, + "thread": 21 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2081407, + "thread": 2 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2243885, + "thread": 1 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2458270, + "thread": 21 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2470974, + "thread": 5 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2649243, + "thread": 3 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 2793597, + "thread": 26 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 3022329, + "thread": 25 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 3135922, + "thread": 0 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 3337231, + "thread": 16 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 3464897, + "thread": 30 + } + }, + { + "amount": "103.362877914", + "slot": { + "period": 3648826, + "thread": 15 + } + }, + { + "amount": "103.362877924", + "slot": { + "period": 3818209, + "thread": 11 + } + } + ], + "AU123jwztN2EMLwA88eMc3wBudDkDVK2wqMqRFhmzdh3NZoSn3dKk": [ + { + "amount": "241.260255129", + "slot": { + "period": 90130, + "thread": 18 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 291055, + "thread": 11 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 437482, + "thread": 24 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 538659, + "thread": 14 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 792514, + "thread": 10 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 981494, + "thread": 7 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1139871, + "thread": 25 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1301173, + "thread": 6 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1329622, + "thread": 7 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1602747, + "thread": 27 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1677316, + "thread": 28 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 1925267, + "thread": 4 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2140370, + "thread": 15 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2195645, + "thread": 4 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2344530, + "thread": 25 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2616761, + "thread": 22 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2629481, + "thread": 31 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 2923119, + "thread": 11 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 3097460, + "thread": 15 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 3211179, + "thread": 19 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 3380170, + "thread": 30 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 3601240, + "thread": 15 + } + }, + { + "amount": "241.260255129", + "slot": { + "period": 3674500, + "thread": 25 + } + }, + { + "amount": "241.260255120", + "slot": { + "period": 3834279, + "thread": 30 + } + } + ], + "AU123kfkK2tMeiMY94qXVdw3fCkViLyk8KM1C4xD79GgvdyoqXyXd": [ + { + "amount": "53.879795240", + "slot": { + "period": 38965, + "thread": 7 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 259653, + "thread": 18 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 435163, + "thread": 11 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 620659, + "thread": 23 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 818410, + "thread": 8 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 893865, + "thread": 7 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1037652, + "thread": 31 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1153734, + "thread": 14 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1354752, + "thread": 8 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1509535, + "thread": 9 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1731328, + "thread": 31 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 1963901, + "thread": 24 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2055468, + "thread": 13 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2223134, + "thread": 7 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2438010, + "thread": 19 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2593693, + "thread": 30 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2765603, + "thread": 7 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 2795783, + "thread": 5 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 3118794, + "thread": 26 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 3196898, + "thread": 20 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 3430040, + "thread": 1 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 3598352, + "thread": 20 + } + }, + { + "amount": "53.879795240", + "slot": { + "period": 3632918, + "thread": 29 + } + }, + { + "amount": "53.879795249", + "slot": { + "period": 3862951, + "thread": 21 + } + } + ], + "AU123m5NtEaz67WxfBMs1pm3oJSFXrLbRAAtpHfjd7LEof7QU5RUQ": [ + { + "amount": "158.906896888", + "slot": { + "period": 35715, + "thread": 7 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 267515, + "thread": 9 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 347474, + "thread": 1 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 504946, + "thread": 27 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 696771, + "thread": 22 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 929254, + "thread": 25 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 988582, + "thread": 1 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 1265506, + "thread": 30 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 1446326, + "thread": 16 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 1563511, + "thread": 26 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 1755682, + "thread": 29 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 1926688, + "thread": 4 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2030480, + "thread": 27 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2213907, + "thread": 24 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2414274, + "thread": 9 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2489864, + "thread": 5 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2787506, + "thread": 21 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 2914837, + "thread": 3 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 3046499, + "thread": 6 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 3219673, + "thread": 18 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 3427685, + "thread": 4 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 3616047, + "thread": 29 + } + }, + { + "amount": "158.906896888", + "slot": { + "period": 3702931, + "thread": 25 + } + }, + { + "amount": "158.906896881", + "slot": { + "period": 3834527, + "thread": 28 + } + } + ], + "AU123mTmuUAZkJc9hFxPEg3xNEZ19Apj37mvmrk2cVc3G8LoHiknt": [ + { + "amount": "261.973368483", + "slot": { + "period": 80090, + "thread": 9 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 181515, + "thread": 5 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 396855, + "thread": 22 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 560484, + "thread": 25 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 725580, + "thread": 24 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 918392, + "thread": 9 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1124903, + "thread": 14 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1259907, + "thread": 11 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1451690, + "thread": 26 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1508038, + "thread": 13 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1649074, + "thread": 26 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 1957688, + "thread": 26 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2060456, + "thread": 1 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2181972, + "thread": 5 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2412699, + "thread": 20 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2594514, + "thread": 23 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2657628, + "thread": 25 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 2822412, + "thread": 28 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 3033710, + "thread": 3 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 3260520, + "thread": 10 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 3413836, + "thread": 23 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 3485555, + "thread": 30 + } + }, + { + "amount": "261.973368483", + "slot": { + "period": 3638828, + "thread": 3 + } + }, + { + "amount": "261.973368488", + "slot": { + "period": 3844787, + "thread": 10 + } + } + ], + "AU123mVrAgki5qygErkLrskLMmyy7proEjR4V7n4NKBtQUkujoa3W": [ + { + "amount": "56.703508086", + "slot": { + "period": 125381, + "thread": 26 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 183594, + "thread": 26 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 486526, + "thread": 26 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 511904, + "thread": 0 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 700937, + "thread": 29 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 914734, + "thread": 11 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1052640, + "thread": 15 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1247318, + "thread": 4 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1430850, + "thread": 23 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1635435, + "thread": 24 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1675395, + "thread": 28 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1953077, + "thread": 30 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 1996798, + "thread": 5 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 2150068, + "thread": 15 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 2340405, + "thread": 31 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 2610995, + "thread": 16 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 2730050, + "thread": 16 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 2926235, + "thread": 1 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 3009334, + "thread": 24 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 3197246, + "thread": 3 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 3308675, + "thread": 1 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 3467750, + "thread": 1 + } + }, + { + "amount": "56.703508086", + "slot": { + "period": 3711982, + "thread": 19 + } + }, + { + "amount": "56.703508075", + "slot": { + "period": 3864063, + "thread": 26 + } + } + ], + "AU123mVxwGkyatGptfPNxPSQDvULvnUS9CuUqtGDnHcnot5h26WVr": [ + { + "amount": "135.972606319", + "slot": { + "period": 155396, + "thread": 6 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 263911, + "thread": 16 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 431928, + "thread": 29 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 603055, + "thread": 1 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 764450, + "thread": 15 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 832282, + "thread": 24 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1145005, + "thread": 30 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1246161, + "thread": 31 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1370802, + "thread": 10 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1588583, + "thread": 27 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1785411, + "thread": 7 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 1851618, + "thread": 23 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2043571, + "thread": 8 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2234447, + "thread": 6 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2412750, + "thread": 28 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2535581, + "thread": 17 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2753181, + "thread": 12 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 2851624, + "thread": 14 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 3075498, + "thread": 13 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 3223302, + "thread": 6 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 3311568, + "thread": 31 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 3486299, + "thread": 7 + } + }, + { + "amount": "135.972606319", + "slot": { + "period": 3774548, + "thread": 31 + } + }, + { + "amount": "135.972606322", + "slot": { + "period": 3825388, + "thread": 14 + } + } + ], + "AU123nUf6L8rxv6mQqyJjBJCqHjoTur5rdb3eanWyK1ymctDTCFyA": [ + { + "amount": "103.149255232", + "slot": { + "period": 23566, + "thread": 22 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 241611, + "thread": 0 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 401144, + "thread": 24 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 585218, + "thread": 21 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 774525, + "thread": 30 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 960841, + "thread": 2 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1031484, + "thread": 13 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1295597, + "thread": 7 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1405327, + "thread": 24 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1642179, + "thread": 10 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1806611, + "thread": 7 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 1965344, + "thread": 5 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2073207, + "thread": 4 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2236643, + "thread": 6 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2377123, + "thread": 16 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2515828, + "thread": 11 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2710925, + "thread": 9 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 2824518, + "thread": 28 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 3006373, + "thread": 26 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 3275646, + "thread": 30 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 3394282, + "thread": 1 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 3594894, + "thread": 22 + } + }, + { + "amount": "103.149255232", + "slot": { + "period": 3749270, + "thread": 31 + } + }, + { + "amount": "103.149255221", + "slot": { + "period": 3882306, + "thread": 2 + } + } + ], + "AU123o5VHDj6ZkVK6xNPyqnuxneD6dGCspkztHX958QranC7zc9fi": [ + { + "amount": "383.965660676", + "slot": { + "period": 143505, + "thread": 9 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 234974, + "thread": 8 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 488986, + "thread": 10 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 502636, + "thread": 25 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 745880, + "thread": 29 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 849118, + "thread": 6 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1072451, + "thread": 29 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1297621, + "thread": 14 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1319477, + "thread": 7 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1615458, + "thread": 8 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1657690, + "thread": 27 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 1914454, + "thread": 6 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2004752, + "thread": 19 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2253350, + "thread": 27 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2302581, + "thread": 17 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2571284, + "thread": 6 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2726361, + "thread": 21 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 2800770, + "thread": 16 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 3005700, + "thread": 30 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 3127123, + "thread": 0 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 3347990, + "thread": 9 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 3615802, + "thread": 19 + } + }, + { + "amount": "383.965660676", + "slot": { + "period": 3633083, + "thread": 12 + } + }, + { + "amount": "383.965660665", + "slot": { + "period": 3841600, + "thread": 16 + } + } + ], + "AU123o5f7LBMfJHkgZd4BcH3Hb3qn8zDckgeXUQbCydehEnwQ8goB": [ + { + "amount": "5833.333333333", + "slot": { + "period": 129838, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 204300, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 437535, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 546936, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 776469, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 934166, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1105464, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1303885, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1325828, + "thread": 14 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1509999, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1732667, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1847976, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2121613, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2263325, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2431960, + "thread": 26 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2484279, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2640233, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2806844, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2974601, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3164472, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3428654, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3549875, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3771358, + "thread": 25 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3788456, + "thread": 29 + } + } + ], + "AU123owneCq61DL4i19UpHKDaWMQzV6QzWJftCHCb4YMeK2bXVu1r": [ + { + "amount": "484.777483998", + "slot": { + "period": 60115, + "thread": 10 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 247798, + "thread": 26 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 385664, + "thread": 15 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 647629, + "thread": 29 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 692126, + "thread": 13 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 859727, + "thread": 13 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1113221, + "thread": 6 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1256280, + "thread": 30 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1380571, + "thread": 18 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1549911, + "thread": 15 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1674747, + "thread": 10 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 1972566, + "thread": 24 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2019538, + "thread": 25 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2291311, + "thread": 13 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2421418, + "thread": 5 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2606181, + "thread": 6 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2760382, + "thread": 10 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2931055, + "thread": 8 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 2982792, + "thread": 0 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 3209731, + "thread": 17 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 3444438, + "thread": 30 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 3578042, + "thread": 11 + } + }, + { + "amount": "484.777483998", + "slot": { + "period": 3624631, + "thread": 0 + } + }, + { + "amount": "484.777483990", + "slot": { + "period": 3922649, + "thread": 17 + } + } + ], + "AU123poqjYD2MEJfpXTgLEtoNREXPPecVzLXuysG8HMRjyZW1ysL4": [ + { + "amount": "136.153533284", + "slot": { + "period": 46693, + "thread": 9 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 244147, + "thread": 10 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 366536, + "thread": 28 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 621819, + "thread": 3 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 784801, + "thread": 7 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 852021, + "thread": 9 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 997361, + "thread": 6 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 1204881, + "thread": 21 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 1332303, + "thread": 16 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 1560527, + "thread": 9 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 1793662, + "thread": 11 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 1846061, + "thread": 2 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2121895, + "thread": 24 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2273501, + "thread": 20 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2298271, + "thread": 15 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2530684, + "thread": 29 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2632064, + "thread": 27 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2832032, + "thread": 28 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 2982057, + "thread": 18 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 3207532, + "thread": 31 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 3302226, + "thread": 5 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 3514215, + "thread": 23 + } + }, + { + "amount": "136.153533284", + "slot": { + "period": 3736299, + "thread": 19 + } + }, + { + "amount": "136.153533291", + "slot": { + "period": 3923933, + "thread": 1 + } + } + ], + "AU123qbiwbu8ZMkZZncyVaqDeBC2sajkHvPvAPie1GYDi2VMWNWDi": [ + { + "amount": "165.138688341", + "slot": { + "period": 35556, + "thread": 21 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 283458, + "thread": 0 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 344160, + "thread": 10 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 643717, + "thread": 25 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 730794, + "thread": 11 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 945841, + "thread": 7 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1063308, + "thread": 18 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1283191, + "thread": 3 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1402555, + "thread": 15 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1550937, + "thread": 29 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1742946, + "thread": 6 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 1966151, + "thread": 18 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2088579, + "thread": 0 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2243342, + "thread": 18 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2336554, + "thread": 11 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2480607, + "thread": 11 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2692316, + "thread": 30 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 2824132, + "thread": 6 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 3043051, + "thread": 2 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 3137321, + "thread": 2 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 3395864, + "thread": 7 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 3553542, + "thread": 9 + } + }, + { + "amount": "165.138688341", + "slot": { + "period": 3705605, + "thread": 9 + } + }, + { + "amount": "165.138688335", + "slot": { + "period": 3822296, + "thread": 23 + } + } + ], + "AU123rHAcEAPa5KfqGYUmqrtJDfNC6d4omtFp4Z7d8WXAcN3vr7mf": [ + { + "amount": "164.322947425", + "slot": { + "period": 82025, + "thread": 0 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 265987, + "thread": 8 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 377621, + "thread": 7 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 508147, + "thread": 6 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 667840, + "thread": 5 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 849963, + "thread": 25 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1054072, + "thread": 19 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1267417, + "thread": 20 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1456222, + "thread": 26 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1539677, + "thread": 14 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1751296, + "thread": 26 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 1810615, + "thread": 26 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2072650, + "thread": 7 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2276013, + "thread": 19 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2432537, + "thread": 6 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2613771, + "thread": 0 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2754048, + "thread": 5 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2876907, + "thread": 28 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 2996394, + "thread": 30 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 3162690, + "thread": 2 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 3393783, + "thread": 5 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 3605997, + "thread": 1 + } + }, + { + "amount": "164.322947425", + "slot": { + "period": 3632725, + "thread": 7 + } + }, + { + "amount": "164.322947436", + "slot": { + "period": 3945536, + "thread": 10 + } + } + ], + "AU123rhqsMLz9eoDKAXynwSWEqHTrzLk2r32apwaEqqqUfp4kdgzy": [ + { + "amount": "187.645233331", + "slot": { + "period": 48463, + "thread": 30 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 257025, + "thread": 8 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 376229, + "thread": 16 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 641236, + "thread": 3 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 800145, + "thread": 8 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 956637, + "thread": 1 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1040191, + "thread": 2 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1227829, + "thread": 3 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1467066, + "thread": 10 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1544469, + "thread": 25 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1694674, + "thread": 26 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 1968928, + "thread": 10 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2135741, + "thread": 23 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2232511, + "thread": 30 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2431745, + "thread": 24 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2470233, + "thread": 17 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2724691, + "thread": 28 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 2852065, + "thread": 3 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 3041076, + "thread": 26 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 3244575, + "thread": 13 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 3426141, + "thread": 12 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 3488277, + "thread": 27 + } + }, + { + "amount": "187.645233331", + "slot": { + "period": 3761623, + "thread": 10 + } + }, + { + "amount": "187.645233337", + "slot": { + "period": 3885210, + "thread": 19 + } + } + ], + "AU123stxicbNcPXL4wpZtvocXLBKtbB8Mv7xS6ViZCpwiP3PRrd1i": [ + { + "amount": "200.500145497", + "slot": { + "period": 164069, + "thread": 20 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 248529, + "thread": 16 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 347356, + "thread": 22 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 613839, + "thread": 31 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 712097, + "thread": 14 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 914938, + "thread": 24 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1055509, + "thread": 14 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1243800, + "thread": 20 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1329660, + "thread": 30 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1592334, + "thread": 6 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1797782, + "thread": 29 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 1954200, + "thread": 27 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2050258, + "thread": 14 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2152103, + "thread": 24 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2458175, + "thread": 29 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2494948, + "thread": 18 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2725009, + "thread": 6 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2898127, + "thread": 9 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 2977150, + "thread": 25 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 3144513, + "thread": 20 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 3403812, + "thread": 14 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 3527534, + "thread": 29 + } + }, + { + "amount": "200.500145497", + "slot": { + "period": 3640649, + "thread": 2 + } + }, + { + "amount": "200.500145490", + "slot": { + "period": 3942065, + "thread": 22 + } + } + ], + "AU123tgn4KdMniyzmRcLBdvHgdTU5mMtcRmB2zNcZpQndz9g7gnT3": [ + { + "amount": "79.665006779", + "slot": { + "period": 29507, + "thread": 10 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 268392, + "thread": 3 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 385184, + "thread": 25 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 540322, + "thread": 27 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 721637, + "thread": 11 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 908680, + "thread": 14 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1044694, + "thread": 5 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1167015, + "thread": 21 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1469005, + "thread": 17 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1539444, + "thread": 11 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1705535, + "thread": 8 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1931480, + "thread": 15 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 1998911, + "thread": 14 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 2250992, + "thread": 29 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 2451689, + "thread": 5 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 2462652, + "thread": 11 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 2692902, + "thread": 28 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 2851195, + "thread": 22 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 3103811, + "thread": 7 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 3213628, + "thread": 9 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 3421479, + "thread": 27 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 3455432, + "thread": 14 + } + }, + { + "amount": "79.665006779", + "slot": { + "period": 3684253, + "thread": 10 + } + }, + { + "amount": "79.665006772", + "slot": { + "period": 3870515, + "thread": 10 + } + } + ], + "AU123uHk2cZcJpBn8J783fZ3afZ345xBwnphXySGuU8irW16EuBBd": [ + { + "amount": "68.482727835", + "slot": { + "period": 62258, + "thread": 5 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 239306, + "thread": 22 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 379281, + "thread": 21 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 640692, + "thread": 18 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 675639, + "thread": 8 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 943978, + "thread": 19 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1018329, + "thread": 23 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1168578, + "thread": 10 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1342878, + "thread": 31 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1509768, + "thread": 9 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1649033, + "thread": 18 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 1936772, + "thread": 30 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2137826, + "thread": 7 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2236397, + "thread": 12 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2414484, + "thread": 26 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2570234, + "thread": 16 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2688424, + "thread": 19 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 2903160, + "thread": 21 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3064550, + "thread": 18 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3278015, + "thread": 13 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3445315, + "thread": 31 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3485842, + "thread": 29 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3729731, + "thread": 6 + } + }, + { + "amount": "68.482727835", + "slot": { + "period": 3924756, + "thread": 19 + } + } + ], + "AU123uWv5RpvgjcGjG8Qo5hkfXL9JfnLfiSrXZVz7j8enYWUPn2Ka": [ + { + "amount": "91.433317433", + "slot": { + "period": 93869, + "thread": 17 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 305026, + "thread": 21 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 348361, + "thread": 25 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 632555, + "thread": 9 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 800476, + "thread": 22 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 941729, + "thread": 10 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1111488, + "thread": 4 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1255205, + "thread": 28 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1460360, + "thread": 17 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1572485, + "thread": 6 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1674614, + "thread": 31 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 1967277, + "thread": 20 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2095722, + "thread": 0 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2220811, + "thread": 29 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2434264, + "thread": 13 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2620629, + "thread": 15 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2633889, + "thread": 8 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 2947389, + "thread": 26 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 3113018, + "thread": 23 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 3262841, + "thread": 3 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 3385506, + "thread": 31 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 3616706, + "thread": 19 + } + }, + { + "amount": "91.433317433", + "slot": { + "period": 3678709, + "thread": 18 + } + }, + { + "amount": "91.433317439", + "slot": { + "period": 3934300, + "thread": 27 + } + } + ], + "AU123vSxRGNktCuoZeNU8XrwGtLZHio8CSzFYX4maZRLgKQHSSRzw": [ + { + "amount": "60.006708303", + "slot": { + "period": 105512, + "thread": 16 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 275211, + "thread": 5 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 337142, + "thread": 24 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 577443, + "thread": 4 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 773797, + "thread": 9 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 885410, + "thread": 17 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1039430, + "thread": 29 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1157714, + "thread": 14 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1351073, + "thread": 24 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1525860, + "thread": 27 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1777501, + "thread": 11 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1953214, + "thread": 18 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 1976870, + "thread": 6 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 2219175, + "thread": 8 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 2374807, + "thread": 29 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 2587805, + "thread": 1 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 2755146, + "thread": 16 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 2943740, + "thread": 4 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 3119327, + "thread": 30 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 3135579, + "thread": 23 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 3386494, + "thread": 4 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 3576978, + "thread": 8 + } + }, + { + "amount": "60.006708303", + "slot": { + "period": 3653879, + "thread": 5 + } + }, + { + "amount": "60.006708302", + "slot": { + "period": 3883643, + "thread": 7 + } + } + ], + "AU123w8XZ7oHp8Tn38Bp3pncXnjJN7FXHqBpPUFPxUKK6T8xRW7Hn": [ + { + "amount": "123.839628881", + "slot": { + "period": 71415, + "thread": 1 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 198777, + "thread": 9 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 404571, + "thread": 28 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 498908, + "thread": 8 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 739918, + "thread": 18 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 918120, + "thread": 16 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1130840, + "thread": 12 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1222716, + "thread": 6 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1362656, + "thread": 5 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1576472, + "thread": 0 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1721290, + "thread": 30 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 1940884, + "thread": 4 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2095777, + "thread": 20 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2280819, + "thread": 24 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2303506, + "thread": 30 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2610274, + "thread": 17 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2652874, + "thread": 26 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2828086, + "thread": 14 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 2988464, + "thread": 3 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 3278431, + "thread": 6 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 3317396, + "thread": 5 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 3494466, + "thread": 7 + } + }, + { + "amount": "123.839628881", + "slot": { + "period": 3750397, + "thread": 17 + } + }, + { + "amount": "123.839628874", + "slot": { + "period": 3893410, + "thread": 14 + } + } + ], + "AU123wY3YMwLyuEiqQXRdDtYLaTDg2rUZ3Tu25zYJzLaJtimG7QaY": [ + { + "amount": "192.177867083", + "slot": { + "period": 69087, + "thread": 9 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 322127, + "thread": 15 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 382142, + "thread": 16 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 554923, + "thread": 16 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 733662, + "thread": 20 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 932080, + "thread": 27 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1112589, + "thread": 5 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1276536, + "thread": 15 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1416470, + "thread": 11 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1482018, + "thread": 6 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1674690, + "thread": 28 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 1915760, + "thread": 29 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2046814, + "thread": 2 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2280274, + "thread": 17 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2370032, + "thread": 0 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2587459, + "thread": 27 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2664894, + "thread": 22 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 2820865, + "thread": 3 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 3001465, + "thread": 12 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 3151160, + "thread": 5 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 3314241, + "thread": 20 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 3470585, + "thread": 6 + } + }, + { + "amount": "192.177867083", + "slot": { + "period": 3658192, + "thread": 23 + } + }, + { + "amount": "192.177867085", + "slot": { + "period": 3929990, + "thread": 23 + } + } + ], + "AU123yz2Xs7Rzy5gkmZG77mQ9QW4aWfsDdGs8GJyrrGPSDzVzgz3u": [ + { + "amount": "178.917909448", + "slot": { + "period": 140177, + "thread": 10 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 299354, + "thread": 29 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 449155, + "thread": 28 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 579092, + "thread": 3 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 694321, + "thread": 2 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 959685, + "thread": 16 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1024078, + "thread": 3 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1210819, + "thread": 24 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1370169, + "thread": 7 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1527023, + "thread": 25 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1748114, + "thread": 15 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 1838639, + "thread": 24 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2005448, + "thread": 31 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2254329, + "thread": 20 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2449745, + "thread": 10 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2468186, + "thread": 10 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2790931, + "thread": 6 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 2878773, + "thread": 4 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 3018909, + "thread": 9 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 3212791, + "thread": 29 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 3395681, + "thread": 26 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 3563206, + "thread": 21 + } + }, + { + "amount": "178.917909448", + "slot": { + "period": 3778079, + "thread": 3 + } + }, + { + "amount": "178.917909446", + "slot": { + "period": 3881943, + "thread": 4 + } + } + ], + "AU123z3kgza6LG8sSgoihSuVZDEJX31uh1qMu6d3mhWjb3SX7FNVb": [ + { + "amount": "379.196285491", + "slot": { + "period": 80297, + "thread": 30 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 224624, + "thread": 12 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 328665, + "thread": 0 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 537896, + "thread": 18 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 667778, + "thread": 16 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 916582, + "thread": 14 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1085489, + "thread": 14 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1251077, + "thread": 12 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1477255, + "thread": 27 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1569928, + "thread": 14 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1733801, + "thread": 9 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1906485, + "thread": 19 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 1996565, + "thread": 15 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 2160143, + "thread": 3 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 2332162, + "thread": 17 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 2520480, + "thread": 23 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 2675745, + "thread": 31 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 2846420, + "thread": 13 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 3094847, + "thread": 13 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 3253596, + "thread": 18 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 3344156, + "thread": 27 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 3484113, + "thread": 20 + } + }, + { + "amount": "379.196285491", + "slot": { + "period": 3760696, + "thread": 13 + } + }, + { + "amount": "379.196285488", + "slot": { + "period": 3868872, + "thread": 0 + } + } + ], + "AU123zJLHGsDwPt71LoAB8eX6AwDRQicHiRnPmkSdBxgQhYoXxMom": [ + { + "amount": "225.810765576", + "slot": { + "period": 133409, + "thread": 12 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 181150, + "thread": 3 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 351706, + "thread": 9 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 593605, + "thread": 20 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 746374, + "thread": 23 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 846528, + "thread": 13 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1099313, + "thread": 19 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1244533, + "thread": 0 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1394905, + "thread": 27 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1528146, + "thread": 17 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1799312, + "thread": 5 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 1943984, + "thread": 22 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2039460, + "thread": 19 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2272867, + "thread": 25 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2458295, + "thread": 2 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2523874, + "thread": 7 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2682583, + "thread": 24 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2893965, + "thread": 10 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 2956583, + "thread": 30 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 3175665, + "thread": 11 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 3436289, + "thread": 0 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 3617434, + "thread": 6 + } + }, + { + "amount": "225.810765576", + "slot": { + "period": 3773694, + "thread": 10 + } + }, + { + "amount": "225.810765570", + "slot": { + "period": 3914895, + "thread": 2 + } + } + ], + "AU123zaNjDMDBoEQoTLHmhy6dX3ZMz5SDP6gGd9w97fKp8SGFprTg": [ + { + "amount": "66.194343312", + "slot": { + "period": 35752, + "thread": 0 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 265134, + "thread": 20 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 428502, + "thread": 4 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 622936, + "thread": 9 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 655849, + "thread": 31 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 828075, + "thread": 22 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1125324, + "thread": 16 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1230179, + "thread": 1 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1429909, + "thread": 7 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1554670, + "thread": 30 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1746334, + "thread": 10 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 1935657, + "thread": 18 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2141462, + "thread": 24 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2267249, + "thread": 14 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2348447, + "thread": 16 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2472857, + "thread": 11 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2767779, + "thread": 21 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2945649, + "thread": 3 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 2997968, + "thread": 27 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 3141690, + "thread": 3 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 3330926, + "thread": 11 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 3600387, + "thread": 24 + } + }, + { + "amount": "66.194343312", + "slot": { + "period": 3722717, + "thread": 27 + } + }, + { + "amount": "66.194343322", + "slot": { + "period": 3935100, + "thread": 30 + } + } + ], + "AU1241f1NZdTqLXXKgfdU1T2E13WGT9LrFUi7ELAM3MxWPWT38iav": [ + { + "amount": "578.365453678", + "slot": { + "period": 67563, + "thread": 15 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 238761, + "thread": 14 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 438495, + "thread": 1 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 527331, + "thread": 12 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 787405, + "thread": 12 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 933864, + "thread": 29 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1059170, + "thread": 3 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1273731, + "thread": 8 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1439679, + "thread": 28 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1539932, + "thread": 27 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1702825, + "thread": 9 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 1955904, + "thread": 9 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2047651, + "thread": 6 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2239979, + "thread": 21 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2445425, + "thread": 8 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2499930, + "thread": 27 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2668460, + "thread": 23 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 2823062, + "thread": 27 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3037645, + "thread": 8 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3202953, + "thread": 4 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3336735, + "thread": 9 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3507573, + "thread": 12 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3647834, + "thread": 4 + } + }, + { + "amount": "578.365453678", + "slot": { + "period": 3824532, + "thread": 18 + } + } + ], + "AU1242xPmwsKEQf1kp8cBAw3ZrvDZeSLnnm7v2JeVmsYqfhVcU4qa": [ + { + "amount": "258.053695398", + "slot": { + "period": 75907, + "thread": 13 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 256131, + "thread": 29 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 451348, + "thread": 27 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 508053, + "thread": 16 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 769599, + "thread": 5 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 926277, + "thread": 0 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1142459, + "thread": 23 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1202904, + "thread": 30 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1418890, + "thread": 3 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1512826, + "thread": 2 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1778973, + "thread": 26 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 1921569, + "thread": 2 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2028675, + "thread": 11 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2144628, + "thread": 22 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2344098, + "thread": 20 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2544232, + "thread": 31 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2747715, + "thread": 15 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 2845159, + "thread": 11 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 3100237, + "thread": 0 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 3252582, + "thread": 15 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 3426090, + "thread": 30 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 3464081, + "thread": 27 + } + }, + { + "amount": "258.053695398", + "slot": { + "period": 3711897, + "thread": 9 + } + }, + { + "amount": "258.053695393", + "slot": { + "period": 3887174, + "thread": 14 + } + } + ], + "AU1245XnGop5vBXh3XvjH8QB38KUPt5uvN4T5UQuRUmF4a2ToNqpi": [ + { + "amount": "139.369607063", + "slot": { + "period": 39984, + "thread": 3 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 192665, + "thread": 20 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 459108, + "thread": 22 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 588543, + "thread": 5 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 763728, + "thread": 8 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 906920, + "thread": 30 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1121519, + "thread": 15 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1188854, + "thread": 28 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1389455, + "thread": 4 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1582431, + "thread": 20 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1794084, + "thread": 23 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 1935877, + "thread": 21 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2113505, + "thread": 2 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2269944, + "thread": 20 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2385889, + "thread": 22 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2501923, + "thread": 1 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2755537, + "thread": 3 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 2883053, + "thread": 7 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 3113044, + "thread": 18 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 3237545, + "thread": 6 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 3343377, + "thread": 5 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 3502882, + "thread": 8 + } + }, + { + "amount": "139.369607063", + "slot": { + "period": 3747682, + "thread": 19 + } + }, + { + "amount": "139.369607070", + "slot": { + "period": 3912188, + "thread": 26 + } + } + ], + "AU1245Zdru67rpm79FZxoBw7SrWK5zvbf7iTiqFiS8oDcrBeSbsA5": [ + { + "amount": "257.135758150", + "slot": { + "period": 61491, + "thread": 7 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 220931, + "thread": 27 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 452135, + "thread": 28 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 528583, + "thread": 24 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 720652, + "thread": 28 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 960556, + "thread": 4 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1142560, + "thread": 6 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1182300, + "thread": 21 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1459232, + "thread": 21 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1482472, + "thread": 2 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1799433, + "thread": 8 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 1964621, + "thread": 22 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2010509, + "thread": 30 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2293933, + "thread": 31 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2384396, + "thread": 21 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2502441, + "thread": 18 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2717002, + "thread": 0 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2932304, + "thread": 10 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 2961744, + "thread": 13 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 3182032, + "thread": 15 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 3332232, + "thread": 20 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 3611724, + "thread": 16 + } + }, + { + "amount": "257.135758150", + "slot": { + "period": 3621165, + "thread": 5 + } + }, + { + "amount": "257.135758161", + "slot": { + "period": 3862938, + "thread": 31 + } + } + ], + "AU1245rzhobN1u5kvsThdAfLUQWWJzQHRpDavjFtpL2Rgf6du7z1r": [ + { + "amount": "135.669845706", + "slot": { + "period": 104715, + "thread": 7 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 255907, + "thread": 0 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 416487, + "thread": 24 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 644999, + "thread": 28 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 807240, + "thread": 10 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 896296, + "thread": 9 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1132343, + "thread": 0 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1283634, + "thread": 9 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1477842, + "thread": 21 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1549474, + "thread": 15 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1693628, + "thread": 13 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 1832094, + "thread": 28 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2006024, + "thread": 7 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2190826, + "thread": 5 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2421753, + "thread": 15 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2614248, + "thread": 23 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2659790, + "thread": 18 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 2827201, + "thread": 29 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 3021391, + "thread": 15 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 3181789, + "thread": 29 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 3420901, + "thread": 12 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 3524202, + "thread": 8 + } + }, + { + "amount": "135.669845706", + "slot": { + "period": 3768628, + "thread": 19 + } + }, + { + "amount": "135.669845702", + "slot": { + "period": 3783031, + "thread": 31 + } + } + ], + "AU1245unPBSt8dmk36EXw6yTNbvLzSbqneeSnBa6HyYePZhA8HD78": [ + { + "amount": "77.146911745", + "slot": { + "period": 33190, + "thread": 2 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 185348, + "thread": 2 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 386518, + "thread": 25 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 522875, + "thread": 24 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 759672, + "thread": 6 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 861988, + "thread": 3 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1121319, + "thread": 26 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1244427, + "thread": 26 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1348362, + "thread": 9 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1540370, + "thread": 22 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1797267, + "thread": 13 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 1874854, + "thread": 15 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2054810, + "thread": 12 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2290721, + "thread": 17 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2303102, + "thread": 20 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2539163, + "thread": 24 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2664588, + "thread": 24 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2885520, + "thread": 30 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 2971385, + "thread": 27 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 3214807, + "thread": 15 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 3423441, + "thread": 19 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 3563593, + "thread": 4 + } + }, + { + "amount": "77.146911745", + "slot": { + "period": 3665672, + "thread": 17 + } + }, + { + "amount": "77.146911734", + "slot": { + "period": 3845512, + "thread": 9 + } + } + ], + "AU12477n34qMQgxwCGAna3uYewefhsHtWaWVRdjBtgC6Wo6BJtoPa": [ + { + "amount": "61.216014920", + "slot": { + "period": 39981, + "thread": 31 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 319507, + "thread": 30 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 374197, + "thread": 12 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 602733, + "thread": 17 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 657693, + "thread": 6 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 874339, + "thread": 4 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 996672, + "thread": 10 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 1294375, + "thread": 25 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 1396112, + "thread": 15 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 1514050, + "thread": 29 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 1723576, + "thread": 3 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 1950894, + "thread": 12 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2050721, + "thread": 26 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2218951, + "thread": 5 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2328283, + "thread": 26 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2600320, + "thread": 25 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2693220, + "thread": 9 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 2891727, + "thread": 2 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 3053417, + "thread": 22 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 3184798, + "thread": 6 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 3342378, + "thread": 24 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 3455503, + "thread": 1 + } + }, + { + "amount": "61.216014920", + "slot": { + "period": 3717746, + "thread": 1 + } + }, + { + "amount": "61.216014925", + "slot": { + "period": 3945188, + "thread": 29 + } + } + ], + "AU1247oQ1dqCmxrebFnP8m1KpR4Arfh5haEXXhzZMAFnCtWg8uLPL": [ + { + "amount": "53.882679576", + "slot": { + "period": 72000, + "thread": 29 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 282862, + "thread": 11 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 388920, + "thread": 8 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 501338, + "thread": 20 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 710312, + "thread": 27 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 850717, + "thread": 12 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1013373, + "thread": 25 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1195772, + "thread": 16 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1413685, + "thread": 25 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1600646, + "thread": 2 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1771328, + "thread": 22 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 1843069, + "thread": 27 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2123442, + "thread": 9 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2264419, + "thread": 9 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2432603, + "thread": 16 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2476883, + "thread": 26 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2694033, + "thread": 18 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2910890, + "thread": 16 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 2989509, + "thread": 29 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 3132653, + "thread": 18 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 3400629, + "thread": 5 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 3461866, + "thread": 24 + } + }, + { + "amount": "53.882679576", + "slot": { + "period": 3620658, + "thread": 26 + } + }, + { + "amount": "53.882679571", + "slot": { + "period": 3857833, + "thread": 1 + } + } + ], + "AU124874CeDaKst6yD5X1fTdPkZHztnh972mTXA5XGHFpvjRu6pEM": [ + { + "amount": "92.302923390", + "slot": { + "period": 136506, + "thread": 10 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 206743, + "thread": 5 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 344258, + "thread": 12 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 585683, + "thread": 28 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 790380, + "thread": 6 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 910410, + "thread": 15 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1131457, + "thread": 1 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1241851, + "thread": 7 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1367788, + "thread": 16 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1495583, + "thread": 6 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1691580, + "thread": 13 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 1976204, + "thread": 11 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2009374, + "thread": 20 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2167083, + "thread": 27 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2426043, + "thread": 17 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2491740, + "thread": 8 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2727370, + "thread": 18 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2941236, + "thread": 6 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 2963715, + "thread": 5 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 3242487, + "thread": 27 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 3423587, + "thread": 20 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 3460946, + "thread": 22 + } + }, + { + "amount": "92.302923390", + "slot": { + "period": 3745030, + "thread": 1 + } + }, + { + "amount": "92.302923394", + "slot": { + "period": 3830808, + "thread": 10 + } + } + ], + "AU1248RnagssHxvxF6NSfS6NqwdE53bc8othd7Bjo2d3Ud86BUcCw": [ + { + "amount": "137.635837718", + "slot": { + "period": 44781, + "thread": 5 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 172722, + "thread": 12 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 372992, + "thread": 10 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 619101, + "thread": 22 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 666975, + "thread": 29 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 834813, + "thread": 7 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1000525, + "thread": 9 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1200751, + "thread": 1 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1436908, + "thread": 29 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1515153, + "thread": 0 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1711510, + "thread": 17 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 1819702, + "thread": 9 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2088250, + "thread": 7 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2148832, + "thread": 26 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2318650, + "thread": 17 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2506188, + "thread": 22 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2678903, + "thread": 9 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 2923095, + "thread": 8 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 3059030, + "thread": 1 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 3251981, + "thread": 28 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 3407514, + "thread": 5 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 3526152, + "thread": 25 + } + }, + { + "amount": "137.635837718", + "slot": { + "period": 3679231, + "thread": 6 + } + }, + { + "amount": "137.635837706", + "slot": { + "period": 3813773, + "thread": 18 + } + } + ], + "AU124BHD1gsippQv8D4UkCc59FvWAnNtAPmMCJ1GyFVPDUFLsT2VR": [ + { + "amount": "215.898081759", + "slot": { + "period": 71112, + "thread": 5 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 172801, + "thread": 13 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 408057, + "thread": 27 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 572108, + "thread": 24 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 698432, + "thread": 30 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 937628, + "thread": 4 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1004168, + "thread": 4 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1231692, + "thread": 31 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1398913, + "thread": 16 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1507554, + "thread": 22 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1684650, + "thread": 20 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 1864400, + "thread": 29 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2115006, + "thread": 30 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2263497, + "thread": 12 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2406371, + "thread": 6 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2577371, + "thread": 7 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2655021, + "thread": 21 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 2940441, + "thread": 1 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 3086160, + "thread": 8 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 3273133, + "thread": 28 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 3328003, + "thread": 20 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 3464590, + "thread": 12 + } + }, + { + "amount": "215.898081759", + "slot": { + "period": 3724867, + "thread": 7 + } + }, + { + "amount": "215.898081768", + "slot": { + "period": 3859802, + "thread": 19 + } + } + ], + "AU124BiiEa9aYEe26RHVwWgHuxsB8QtnZ4QJxwbq9NA9KHs9XAfqp": [ + { + "amount": "347.806988105", + "slot": { + "period": 144512, + "thread": 1 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 224542, + "thread": 4 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 445683, + "thread": 29 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 619775, + "thread": 25 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 794337, + "thread": 15 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 855198, + "thread": 19 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1126720, + "thread": 10 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1280997, + "thread": 11 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1343043, + "thread": 30 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1521140, + "thread": 25 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1792863, + "thread": 26 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 1859562, + "thread": 6 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2035358, + "thread": 11 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2147415, + "thread": 7 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2419706, + "thread": 16 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2618483, + "thread": 25 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2760797, + "thread": 31 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 2897079, + "thread": 29 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 3075371, + "thread": 2 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 3282472, + "thread": 16 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 3426603, + "thread": 4 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 3467246, + "thread": 8 + } + }, + { + "amount": "347.806988105", + "slot": { + "period": 3660101, + "thread": 24 + } + }, + { + "amount": "347.806988102", + "slot": { + "period": 3905111, + "thread": 17 + } + } + ], + "AU124BuhhTKWxJEb1gJKJBYBvN2C37UrEjCiaL7otxY4zHs9rXLfv": [ + { + "amount": "114.062285056", + "slot": { + "period": 98415, + "thread": 2 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 191795, + "thread": 6 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 405385, + "thread": 12 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 610872, + "thread": 20 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 814827, + "thread": 25 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 917505, + "thread": 21 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1076902, + "thread": 21 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1242199, + "thread": 10 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1458968, + "thread": 16 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1636580, + "thread": 0 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1768270, + "thread": 24 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 1938974, + "thread": 31 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2139403, + "thread": 9 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2213356, + "thread": 13 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2406757, + "thread": 11 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2587487, + "thread": 4 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2766818, + "thread": 23 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 2811121, + "thread": 17 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 3120974, + "thread": 14 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 3162675, + "thread": 31 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 3316116, + "thread": 18 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 3494456, + "thread": 10 + } + }, + { + "amount": "114.062285056", + "slot": { + "period": 3702553, + "thread": 4 + } + }, + { + "amount": "114.062285051", + "slot": { + "period": 3784135, + "thread": 29 + } + } + ], + "AU124DPTDC2Pe1nQWhyRvp8P4ZBMqgcMmkJrzxa6dMLs2ZXKLhFeJ": [ + { + "amount": "131.565604717", + "slot": { + "period": 160045, + "thread": 31 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 281498, + "thread": 8 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 370173, + "thread": 13 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 515487, + "thread": 2 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 819702, + "thread": 19 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 888582, + "thread": 21 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1069242, + "thread": 3 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1260179, + "thread": 28 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1357497, + "thread": 8 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1490959, + "thread": 18 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1705416, + "thread": 24 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 1836719, + "thread": 9 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2030815, + "thread": 21 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2207213, + "thread": 13 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2330117, + "thread": 24 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2510018, + "thread": 13 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2680032, + "thread": 31 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2931072, + "thread": 26 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 2975208, + "thread": 29 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 3262079, + "thread": 31 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 3415685, + "thread": 29 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 3479436, + "thread": 3 + } + }, + { + "amount": "131.565604717", + "slot": { + "period": 3749672, + "thread": 10 + } + }, + { + "amount": "131.565604718", + "slot": { + "period": 3799913, + "thread": 31 + } + } + ], + "AU124DgTgakXE43zfaHneCDW8cQcCpdL5LsYWSDXsdoMqXBzHxqP7": [ + { + "amount": "193.337484790", + "slot": { + "period": 104584, + "thread": 11 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 228498, + "thread": 5 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 377332, + "thread": 21 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 568923, + "thread": 30 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 754463, + "thread": 10 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 940172, + "thread": 8 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1132761, + "thread": 25 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1231945, + "thread": 31 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1394016, + "thread": 16 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1629763, + "thread": 14 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1696365, + "thread": 14 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 1906547, + "thread": 3 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2092261, + "thread": 27 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2207378, + "thread": 20 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2387952, + "thread": 18 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2528376, + "thread": 4 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2754937, + "thread": 10 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 2936339, + "thread": 5 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 3110628, + "thread": 5 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 3210996, + "thread": 7 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 3319065, + "thread": 30 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 3571440, + "thread": 28 + } + }, + { + "amount": "193.337484790", + "slot": { + "period": 3713047, + "thread": 18 + } + }, + { + "amount": "193.337484780", + "slot": { + "period": 3860086, + "thread": 14 + } + } + ], + "AU124EktpJTz1Hx2RW57xabNmwFLhzLKHcQcMWUcDmSfRZjC2HsEK": [ + { + "amount": "187.354881489", + "slot": { + "period": 73192, + "thread": 10 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 177282, + "thread": 26 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 328735, + "thread": 23 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 624940, + "thread": 6 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 808815, + "thread": 26 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 931924, + "thread": 25 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1047281, + "thread": 29 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1231757, + "thread": 9 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1394097, + "thread": 20 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1488519, + "thread": 9 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1692588, + "thread": 8 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 1833373, + "thread": 21 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2085675, + "thread": 27 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2207220, + "thread": 7 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2303013, + "thread": 5 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2624350, + "thread": 13 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2647981, + "thread": 28 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2850544, + "thread": 28 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 2982781, + "thread": 17 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 3180628, + "thread": 1 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 3302737, + "thread": 23 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 3588916, + "thread": 18 + } + }, + { + "amount": "187.354881489", + "slot": { + "period": 3627947, + "thread": 29 + } + }, + { + "amount": "187.354881498", + "slot": { + "period": 3877706, + "thread": 2 + } + } + ], + "AU124FRBXt7bmojtoJ6xGB4GefEvX2PJSLCQaPi66NLEc1A8BZg6e": [ + { + "amount": "516.047794687", + "slot": { + "period": 19448, + "thread": 23 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 172900, + "thread": 0 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 353563, + "thread": 24 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 614210, + "thread": 0 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 724831, + "thread": 4 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 823586, + "thread": 9 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1022977, + "thread": 7 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1229821, + "thread": 24 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1329740, + "thread": 0 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1602962, + "thread": 16 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1735755, + "thread": 30 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 1851213, + "thread": 26 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2018685, + "thread": 8 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2177878, + "thread": 27 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2407162, + "thread": 24 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2567512, + "thread": 22 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2759255, + "thread": 20 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 2908301, + "thread": 15 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 3061251, + "thread": 28 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 3281357, + "thread": 25 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 3386837, + "thread": 9 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 3488697, + "thread": 26 + } + }, + { + "amount": "516.047794687", + "slot": { + "period": 3749597, + "thread": 24 + } + }, + { + "amount": "516.047794676", + "slot": { + "period": 3927581, + "thread": 20 + } + } + ], + "AU124FWNLNjqj2aNgKxQeSiPrS69AHbjHcdwcoUAKKz7VPUsR15Rk": [ + { + "amount": "612.789255322", + "slot": { + "period": 62691, + "thread": 29 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 318919, + "thread": 27 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 387472, + "thread": 21 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 623371, + "thread": 17 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 787191, + "thread": 10 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 923683, + "thread": 21 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1050610, + "thread": 1 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1284076, + "thread": 26 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1357367, + "thread": 7 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1486610, + "thread": 6 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1761652, + "thread": 0 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 1877690, + "thread": 4 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2142065, + "thread": 13 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2192734, + "thread": 22 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2393363, + "thread": 15 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2580226, + "thread": 18 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2709299, + "thread": 4 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 2833749, + "thread": 5 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 3033806, + "thread": 22 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 3211450, + "thread": 19 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 3329804, + "thread": 27 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 3542121, + "thread": 0 + } + }, + { + "amount": "612.789255322", + "slot": { + "period": 3662377, + "thread": 8 + } + }, + { + "amount": "612.789255317", + "slot": { + "period": 3869517, + "thread": 27 + } + } + ], + "AU124FhaGyahXSNetUvReVfSTxQzoLdfKQGqAaDaoa37pRHyckbiT": [ + { + "amount": "177.271544962", + "slot": { + "period": 17193, + "thread": 0 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 266813, + "thread": 24 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 411075, + "thread": 15 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 651290, + "thread": 27 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 712757, + "thread": 28 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 964537, + "thread": 21 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1011700, + "thread": 10 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1196202, + "thread": 6 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1395796, + "thread": 8 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1566300, + "thread": 21 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1742568, + "thread": 21 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 1928559, + "thread": 10 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2024567, + "thread": 3 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2146383, + "thread": 29 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2391709, + "thread": 24 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2484786, + "thread": 8 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2656257, + "thread": 10 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 2946015, + "thread": 29 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 3099711, + "thread": 31 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 3172835, + "thread": 13 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 3329670, + "thread": 10 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 3588603, + "thread": 24 + } + }, + { + "amount": "177.271544962", + "slot": { + "period": 3729225, + "thread": 2 + } + }, + { + "amount": "177.271544967", + "slot": { + "period": 3813908, + "thread": 22 + } + } + ], + "AU124HQ9iMubH1tCD1JLJ158RBuX4m54uhoiuG5QrFH9NEp7amoSU": [ + { + "amount": "105.531249640", + "slot": { + "period": 100073, + "thread": 0 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 227224, + "thread": 14 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 462777, + "thread": 12 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 549691, + "thread": 3 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 740459, + "thread": 9 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 848984, + "thread": 7 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1027490, + "thread": 13 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1262376, + "thread": 24 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1472458, + "thread": 22 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1596625, + "thread": 1 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1751901, + "thread": 0 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1956515, + "thread": 16 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 1978401, + "thread": 31 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2167724, + "thread": 25 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2336188, + "thread": 0 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2613396, + "thread": 12 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2760336, + "thread": 31 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2881966, + "thread": 14 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 2998722, + "thread": 20 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 3234494, + "thread": 4 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 3391104, + "thread": 9 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 3463254, + "thread": 19 + } + }, + { + "amount": "105.531249640", + "slot": { + "period": 3758574, + "thread": 15 + } + }, + { + "amount": "105.531249651", + "slot": { + "period": 3917564, + "thread": 9 + } + } + ], + "AU124J6CTdQEDCM1DRjhpxRwFjzLXsnvhyuzrwVhwiNnGHkkqzgBM": [ + { + "amount": "273.275082714", + "slot": { + "period": 162254, + "thread": 2 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 224224, + "thread": 23 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 369347, + "thread": 20 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 652859, + "thread": 18 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 777491, + "thread": 11 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 879028, + "thread": 31 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1108573, + "thread": 6 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1281688, + "thread": 20 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1404887, + "thread": 7 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1646260, + "thread": 23 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1695077, + "thread": 25 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 1809032, + "thread": 9 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2123670, + "thread": 31 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2258641, + "thread": 29 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2346973, + "thread": 10 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2470033, + "thread": 29 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2778924, + "thread": 30 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 2897417, + "thread": 31 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3049658, + "thread": 21 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3266300, + "thread": 13 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3446422, + "thread": 15 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3586543, + "thread": 15 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3647393, + "thread": 26 + } + }, + { + "amount": "273.275082714", + "slot": { + "period": 3878690, + "thread": 3 + } + } + ], + "AU124JJSwqkTzEyH199pzcmadKTj93sM4oqHrJEww4U1r7Ts8MFvY": [ + { + "amount": "212.520798003", + "slot": { + "period": 151291, + "thread": 0 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 270534, + "thread": 21 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 360398, + "thread": 19 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 516815, + "thread": 24 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 740274, + "thread": 0 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 893043, + "thread": 9 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1094204, + "thread": 14 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1286863, + "thread": 13 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1401615, + "thread": 26 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1644988, + "thread": 13 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1803387, + "thread": 25 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 1833772, + "thread": 2 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2133190, + "thread": 25 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2155294, + "thread": 6 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2382905, + "thread": 9 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2508964, + "thread": 0 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2776731, + "thread": 14 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 2809252, + "thread": 25 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 3055436, + "thread": 3 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 3235726, + "thread": 9 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 3344361, + "thread": 0 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 3556633, + "thread": 16 + } + }, + { + "amount": "212.520798003", + "slot": { + "period": 3680595, + "thread": 21 + } + }, + { + "amount": "212.520798009", + "slot": { + "period": 3806380, + "thread": 13 + } + } + ], + "AU124KC4D2CiexyW1xEhL5KJYuFb1JuLLJ6Y6mGrkc3ppKdUxqvRw": [ + { + "amount": "228.147697796", + "slot": { + "period": 35333, + "thread": 30 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 256245, + "thread": 16 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 471421, + "thread": 4 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 574147, + "thread": 27 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 780993, + "thread": 27 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 870771, + "thread": 30 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1056415, + "thread": 10 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1201832, + "thread": 16 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1389697, + "thread": 9 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1480399, + "thread": 18 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1659438, + "thread": 15 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 1839931, + "thread": 28 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2012629, + "thread": 21 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2175156, + "thread": 28 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2353052, + "thread": 0 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2586020, + "thread": 4 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2641955, + "thread": 23 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 2941304, + "thread": 16 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 3003460, + "thread": 21 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 3277914, + "thread": 14 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 3417206, + "thread": 26 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 3581912, + "thread": 18 + } + }, + { + "amount": "228.147697796", + "slot": { + "period": 3761619, + "thread": 4 + } + }, + { + "amount": "228.147697802", + "slot": { + "period": 3863043, + "thread": 30 + } + } + ], + "AU124KeGqQbFPJcpgFohWGm8rnpnEZJy2Ac1uDFyB2m4ZP4B61m7C": [ + { + "amount": "195.266317436", + "slot": { + "period": 135219, + "thread": 10 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 238002, + "thread": 31 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 342499, + "thread": 31 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 535739, + "thread": 22 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 705449, + "thread": 19 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 957602, + "thread": 28 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1003993, + "thread": 21 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1296055, + "thread": 22 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1476687, + "thread": 17 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1546612, + "thread": 1 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1655805, + "thread": 6 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 1867209, + "thread": 16 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2020250, + "thread": 14 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2193560, + "thread": 13 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2368670, + "thread": 2 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2547729, + "thread": 26 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2765683, + "thread": 24 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 2870886, + "thread": 4 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 3066228, + "thread": 31 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 3241913, + "thread": 15 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 3442292, + "thread": 6 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 3468591, + "thread": 0 + } + }, + { + "amount": "195.266317436", + "slot": { + "period": 3647530, + "thread": 28 + } + }, + { + "amount": "195.266317443", + "slot": { + "period": 3852753, + "thread": 21 + } + } + ], + "AU124KwCE3qqgZbrGmZDszyYDwPKWZ7sxo66X4GhXSZHftYmSbddt": [ + { + "amount": "82.286472078", + "slot": { + "period": 13437, + "thread": 18 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 270215, + "thread": 27 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 343989, + "thread": 14 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 568472, + "thread": 11 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 766313, + "thread": 2 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 880556, + "thread": 2 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1039052, + "thread": 4 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1279053, + "thread": 18 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1404584, + "thread": 19 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1640054, + "thread": 9 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1725858, + "thread": 27 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 1852826, + "thread": 31 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2041652, + "thread": 7 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2190376, + "thread": 4 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2454557, + "thread": 19 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2568793, + "thread": 27 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2781415, + "thread": 14 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2881123, + "thread": 14 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 2980982, + "thread": 6 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 3275428, + "thread": 22 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 3392774, + "thread": 12 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 3519397, + "thread": 10 + } + }, + { + "amount": "82.286472078", + "slot": { + "period": 3713946, + "thread": 8 + } + }, + { + "amount": "82.286472083", + "slot": { + "period": 3825625, + "thread": 13 + } + } + ], + "AU124Nn1cfWme5SjGELwAph3QHxdqew6G6zw8zLxNoxrqu3uXb2fY": [ + { + "amount": "164.664380416", + "slot": { + "period": 105768, + "thread": 6 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 322453, + "thread": 11 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 348118, + "thread": 1 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 570590, + "thread": 3 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 769169, + "thread": 10 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 850177, + "thread": 17 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1081755, + "thread": 0 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1219682, + "thread": 1 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1442461, + "thread": 7 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1496148, + "thread": 28 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1717364, + "thread": 26 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 1861999, + "thread": 20 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2138315, + "thread": 1 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2178438, + "thread": 29 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2459470, + "thread": 20 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2468596, + "thread": 23 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2672985, + "thread": 14 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 2825923, + "thread": 16 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 3105832, + "thread": 12 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 3192608, + "thread": 30 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 3419245, + "thread": 11 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 3517574, + "thread": 2 + } + }, + { + "amount": "164.664380416", + "slot": { + "period": 3687981, + "thread": 6 + } + }, + { + "amount": "164.664380408", + "slot": { + "period": 3805305, + "thread": 15 + } + } + ], + "AU124PnzMM5v469XQjATwPgZYc6Eb7yNZDtSgKJLCzv5zUcR7AVmr": [ + { + "amount": "53.027594620", + "slot": { + "period": 49553, + "thread": 24 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 184549, + "thread": 9 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 476966, + "thread": 15 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 642509, + "thread": 23 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 771445, + "thread": 8 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 889007, + "thread": 13 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1068866, + "thread": 21 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1241516, + "thread": 28 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1339256, + "thread": 27 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1575427, + "thread": 6 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1683753, + "thread": 6 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 1968261, + "thread": 5 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2130446, + "thread": 25 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2279799, + "thread": 24 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2406138, + "thread": 6 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2527174, + "thread": 19 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2720847, + "thread": 29 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 2890191, + "thread": 6 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 3043149, + "thread": 18 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 3129478, + "thread": 8 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 3388824, + "thread": 4 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 3521224, + "thread": 21 + } + }, + { + "amount": "53.027594620", + "slot": { + "period": 3736217, + "thread": 28 + } + }, + { + "amount": "53.027594614", + "slot": { + "period": 3938514, + "thread": 4 + } + } + ], + "AU124RiSB5HGGEwcH5cUi6t5FUjNCMjBZJzzAEQwc4wwNKkeCfASC": [ + { + "amount": "132.002649601", + "slot": { + "period": 123814, + "thread": 9 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 258863, + "thread": 18 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 341633, + "thread": 2 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 521600, + "thread": 23 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 690242, + "thread": 9 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 909242, + "thread": 13 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1072850, + "thread": 21 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1171562, + "thread": 29 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1372405, + "thread": 19 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1501743, + "thread": 23 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1695913, + "thread": 29 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 1955878, + "thread": 9 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2021705, + "thread": 4 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2270580, + "thread": 21 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2461956, + "thread": 15 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2473186, + "thread": 25 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2771369, + "thread": 25 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 2931698, + "thread": 25 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 3094597, + "thread": 19 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 3174929, + "thread": 8 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 3395785, + "thread": 5 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 3484382, + "thread": 16 + } + }, + { + "amount": "132.002649601", + "slot": { + "period": 3710738, + "thread": 22 + } + }, + { + "amount": "132.002649603", + "slot": { + "period": 3882769, + "thread": 16 + } + } + ], + "AU124RwZAekDK42WFRMkZgrUp2pkong11APfbGaRq2MCfaujbVz4E": [ + { + "amount": "146.040795245", + "slot": { + "period": 157372, + "thread": 2 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 190075, + "thread": 5 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 456031, + "thread": 24 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 496851, + "thread": 12 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 813190, + "thread": 15 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 883349, + "thread": 30 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1045821, + "thread": 10 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1236200, + "thread": 29 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1411099, + "thread": 13 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1496626, + "thread": 21 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1720770, + "thread": 26 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1953445, + "thread": 1 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 1996008, + "thread": 18 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 2249245, + "thread": 2 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 2407030, + "thread": 10 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 2492692, + "thread": 1 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 2778196, + "thread": 24 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 2896029, + "thread": 5 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 3112112, + "thread": 9 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 3234228, + "thread": 19 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 3388449, + "thread": 15 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 3493920, + "thread": 19 + } + }, + { + "amount": "146.040795245", + "slot": { + "period": 3688812, + "thread": 2 + } + }, + { + "amount": "146.040795242", + "slot": { + "period": 3903751, + "thread": 9 + } + } + ], + "AU124S31mNJfHxDa6K3sjfWLvmURESs8kVVagwFMiQDrJpYzoyUQG": [ + { + "amount": "180.908564142", + "slot": { + "period": 120970, + "thread": 26 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 233517, + "thread": 14 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 384691, + "thread": 28 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 638300, + "thread": 16 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 751607, + "thread": 1 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 867048, + "thread": 19 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1082388, + "thread": 21 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1188677, + "thread": 2 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1409433, + "thread": 31 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1559838, + "thread": 9 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1661940, + "thread": 24 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 1870178, + "thread": 15 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2081701, + "thread": 26 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2190735, + "thread": 11 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2313323, + "thread": 25 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2598052, + "thread": 11 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2727553, + "thread": 29 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2814571, + "thread": 16 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 2964250, + "thread": 15 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 3249676, + "thread": 29 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 3357065, + "thread": 4 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 3508203, + "thread": 7 + } + }, + { + "amount": "180.908564142", + "slot": { + "period": 3741309, + "thread": 25 + } + }, + { + "amount": "180.908564139", + "slot": { + "period": 3936031, + "thread": 22 + } + } + ], + "AU124SKwHs81KYWgLZSVSiQ5T8u9K9gnMDNAsiVpgeRMvBWzK4LDJ": [ + { + "amount": "182.671646523", + "slot": { + "period": 108985, + "thread": 27 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 238672, + "thread": 9 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 371905, + "thread": 14 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 628924, + "thread": 26 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 748244, + "thread": 1 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 915131, + "thread": 23 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1037485, + "thread": 26 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1251756, + "thread": 26 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1363771, + "thread": 14 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1565647, + "thread": 13 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1707452, + "thread": 27 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1867914, + "thread": 30 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 1984260, + "thread": 23 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 2276694, + "thread": 8 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 2349268, + "thread": 23 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 2549337, + "thread": 27 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 2689800, + "thread": 27 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 2904646, + "thread": 0 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 3114157, + "thread": 28 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 3132289, + "thread": 3 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 3361471, + "thread": 0 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 3602584, + "thread": 27 + } + }, + { + "amount": "182.671646523", + "slot": { + "period": 3660583, + "thread": 9 + } + }, + { + "amount": "182.671646518", + "slot": { + "period": 3801508, + "thread": 1 + } + } + ], + "AU124UWRLeUkjDbr6JohCVdWWt6tn99KuPh8boDd2CHiEryi87kL": [ + { + "amount": "147.049425326", + "slot": { + "period": 16673, + "thread": 10 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 191833, + "thread": 21 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 486508, + "thread": 1 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 561237, + "thread": 5 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 775546, + "thread": 26 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 972336, + "thread": 12 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1005174, + "thread": 2 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1291017, + "thread": 11 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1470691, + "thread": 31 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1546017, + "thread": 3 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1771257, + "thread": 11 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 1970901, + "thread": 8 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2057203, + "thread": 16 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2204646, + "thread": 18 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2320943, + "thread": 30 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2585243, + "thread": 18 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2774406, + "thread": 8 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 2864424, + "thread": 28 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 3049616, + "thread": 21 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 3239442, + "thread": 18 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 3427115, + "thread": 31 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 3562305, + "thread": 22 + } + }, + { + "amount": "147.049425326", + "slot": { + "period": 3748033, + "thread": 22 + } + }, + { + "amount": "147.049425323", + "slot": { + "period": 3783209, + "thread": 8 + } + } + ], + "AU124Uc2MXKoPZNtb8JCKo7Yucy6jknAqursHmSUHzQiT9t1wagJp": [ + { + "amount": "237.531051663", + "slot": { + "period": 38266, + "thread": 7 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 172292, + "thread": 23 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 405311, + "thread": 3 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 551546, + "thread": 11 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 710161, + "thread": 13 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 874211, + "thread": 20 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1000137, + "thread": 13 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1204797, + "thread": 19 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1462013, + "thread": 5 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1569441, + "thread": 30 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1758882, + "thread": 20 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 1914632, + "thread": 24 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2025746, + "thread": 24 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2263745, + "thread": 17 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2323885, + "thread": 8 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2497703, + "thread": 23 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2729779, + "thread": 21 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 2895300, + "thread": 25 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 3055272, + "thread": 10 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 3271483, + "thread": 31 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 3409495, + "thread": 14 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 3459962, + "thread": 7 + } + }, + { + "amount": "237.531051663", + "slot": { + "period": 3676763, + "thread": 23 + } + }, + { + "amount": "237.531051669", + "slot": { + "period": 3912597, + "thread": 19 + } + } + ], + "AU124UhSpRvGLbQKdLgkLcrR73vsFAsLh4udW9shgPFMZTHAP79fm": [ + { + "amount": "92.572913729", + "slot": { + "period": 148933, + "thread": 5 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 319806, + "thread": 24 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 402664, + "thread": 12 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 643493, + "thread": 12 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 667845, + "thread": 1 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 933033, + "thread": 13 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1020058, + "thread": 13 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1250723, + "thread": 6 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1323530, + "thread": 28 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1516261, + "thread": 16 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1790035, + "thread": 17 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 1948202, + "thread": 14 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2063168, + "thread": 18 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2151263, + "thread": 4 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2355525, + "thread": 22 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2580374, + "thread": 26 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2742674, + "thread": 26 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2830001, + "thread": 2 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 2985994, + "thread": 26 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 3272939, + "thread": 22 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 3357930, + "thread": 1 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 3535339, + "thread": 4 + } + }, + { + "amount": "92.572913729", + "slot": { + "period": 3625379, + "thread": 30 + } + }, + { + "amount": "92.572913738", + "slot": { + "period": 3836316, + "thread": 7 + } + } + ], + "AU124V8TESpaq8i6FeCYyHym8Mf6kwYaUDKYpyrN7msdPp5gBgaQk": [ + { + "amount": "143.727369139", + "slot": { + "period": 27249, + "thread": 15 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 283885, + "thread": 1 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 490086, + "thread": 24 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 498826, + "thread": 13 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 698302, + "thread": 30 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 937017, + "thread": 28 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1034261, + "thread": 7 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1247846, + "thread": 9 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1426279, + "thread": 4 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1516494, + "thread": 2 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1798280, + "thread": 20 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 1949111, + "thread": 6 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2085862, + "thread": 27 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2171382, + "thread": 4 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2412054, + "thread": 19 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2614899, + "thread": 31 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2688904, + "thread": 13 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 2832807, + "thread": 20 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3085679, + "thread": 23 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3171642, + "thread": 30 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3381865, + "thread": 23 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3579239, + "thread": 20 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3704348, + "thread": 17 + } + }, + { + "amount": "143.727369139", + "slot": { + "period": 3878459, + "thread": 23 + } + } + ], + "AU124Vqxu5KfdQLPQgQeoxkZb4rPWfECKFy2Yi7pxpNkEPPLB7yZ2": [ + { + "amount": "149.919876975", + "slot": { + "period": 15861, + "thread": 26 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 196200, + "thread": 30 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 409655, + "thread": 4 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 601461, + "thread": 28 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 806874, + "thread": 17 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 917536, + "thread": 11 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1020681, + "thread": 6 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1237824, + "thread": 17 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1364426, + "thread": 28 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1591277, + "thread": 21 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1735762, + "thread": 5 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 1826393, + "thread": 6 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2129122, + "thread": 18 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2206374, + "thread": 12 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2336805, + "thread": 6 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2492810, + "thread": 31 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2732141, + "thread": 7 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 2854074, + "thread": 2 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 3004476, + "thread": 17 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 3146580, + "thread": 22 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 3306035, + "thread": 5 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 3572720, + "thread": 7 + } + }, + { + "amount": "149.919876975", + "slot": { + "period": 3698243, + "thread": 26 + } + }, + { + "amount": "149.919876964", + "slot": { + "period": 3859739, + "thread": 28 + } + } + ], + "AU124W2XyZHdemLzawVX7FRSd6quAd7fhyjYSVA9JywmEpfYKEMKm": [ + { + "amount": "142.040470914", + "slot": { + "period": 49334, + "thread": 26 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 215404, + "thread": 11 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 326767, + "thread": 6 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 520934, + "thread": 0 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 795891, + "thread": 17 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 824546, + "thread": 29 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 998943, + "thread": 23 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 1266114, + "thread": 6 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 1412174, + "thread": 28 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 1618587, + "thread": 15 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 1725751, + "thread": 12 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 1926325, + "thread": 5 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2001881, + "thread": 7 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2249945, + "thread": 15 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2460796, + "thread": 8 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2557837, + "thread": 21 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2791575, + "thread": 16 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 2822388, + "thread": 9 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 3091042, + "thread": 22 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 3143004, + "thread": 20 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 3421871, + "thread": 17 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 3555444, + "thread": 25 + } + }, + { + "amount": "142.040470914", + "slot": { + "period": 3744028, + "thread": 30 + } + }, + { + "amount": "142.040470920", + "slot": { + "period": 3919586, + "thread": 31 + } + } + ], + "AU124WFRAmkkEYGPnjuqjHi1oTujvtUnWNfzZGdSDy2MKpJZx9bjD": [ + { + "amount": "78.556751504", + "slot": { + "period": 56547, + "thread": 1 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 266537, + "thread": 13 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 466910, + "thread": 5 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 584523, + "thread": 2 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 720024, + "thread": 24 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 965109, + "thread": 27 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1008366, + "thread": 23 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1211361, + "thread": 30 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1413777, + "thread": 3 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1643759, + "thread": 20 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1805983, + "thread": 4 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 1813017, + "thread": 20 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2045872, + "thread": 30 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2172912, + "thread": 3 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2414018, + "thread": 19 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2596154, + "thread": 21 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2641760, + "thread": 6 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 2892350, + "thread": 14 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 3015311, + "thread": 23 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 3164469, + "thread": 5 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 3437700, + "thread": 13 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 3569098, + "thread": 18 + } + }, + { + "amount": "78.556751504", + "slot": { + "period": 3639183, + "thread": 17 + } + }, + { + "amount": "78.556751512", + "slot": { + "period": 3921495, + "thread": 0 + } + } + ], + "AU124WgWLG7B2WjmDGvVh2Y6GHuuemP9VXZqZXbRTNcgMKdg9DuUu": [ + { + "amount": "300.466523594", + "slot": { + "period": 73415, + "thread": 8 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 230042, + "thread": 23 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 481185, + "thread": 16 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 526845, + "thread": 22 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 798941, + "thread": 8 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 892272, + "thread": 22 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1027604, + "thread": 8 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1163171, + "thread": 23 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1476251, + "thread": 21 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1498395, + "thread": 15 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1735980, + "thread": 14 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1852844, + "thread": 18 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 1977345, + "thread": 5 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 2240313, + "thread": 21 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 2344958, + "thread": 4 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 2482346, + "thread": 26 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 2736864, + "thread": 3 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 2852277, + "thread": 29 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 3049094, + "thread": 10 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 3253104, + "thread": 8 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 3367134, + "thread": 2 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 3476081, + "thread": 19 + } + }, + { + "amount": "300.466523594", + "slot": { + "period": 3726018, + "thread": 11 + } + }, + { + "amount": "300.466523585", + "slot": { + "period": 3797622, + "thread": 17 + } + } + ], + "AU124X9Dj78v8kTStanaysmhQf6LRKK6B51NGjgN73xYAPor7hmsS": [ + { + "amount": "56.639789606", + "slot": { + "period": 111780, + "thread": 13 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 262652, + "thread": 15 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 487024, + "thread": 12 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 524226, + "thread": 17 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 685680, + "thread": 7 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 975290, + "thread": 22 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1123393, + "thread": 2 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1264645, + "thread": 26 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1380083, + "thread": 24 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1483532, + "thread": 23 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1780407, + "thread": 7 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 1858890, + "thread": 21 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2023911, + "thread": 16 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2172398, + "thread": 22 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2346175, + "thread": 6 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2472673, + "thread": 29 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2683143, + "thread": 8 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 2872143, + "thread": 27 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 3094661, + "thread": 22 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 3197803, + "thread": 18 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 3379029, + "thread": 0 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 3552380, + "thread": 30 + } + }, + { + "amount": "56.639789606", + "slot": { + "period": 3645202, + "thread": 21 + } + }, + { + "amount": "56.639789595", + "slot": { + "period": 3784847, + "thread": 3 + } + } + ], + "AU124XTwRWDvsY1YamHjHxYi5UDnMERFvbaScmbU81k1TfS5HcBvj": [ + { + "amount": "144.652378116", + "slot": { + "period": 101407, + "thread": 28 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 182240, + "thread": 14 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 373771, + "thread": 22 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 587219, + "thread": 31 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 729048, + "thread": 15 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 846252, + "thread": 12 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1058342, + "thread": 5 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1312664, + "thread": 18 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1471912, + "thread": 3 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1629581, + "thread": 26 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1676517, + "thread": 26 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 1962709, + "thread": 10 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2077422, + "thread": 30 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2254380, + "thread": 21 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2428333, + "thread": 2 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2499393, + "thread": 21 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2787160, + "thread": 13 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 2893532, + "thread": 19 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 3014549, + "thread": 14 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 3179896, + "thread": 9 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 3428589, + "thread": 19 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 3450736, + "thread": 29 + } + }, + { + "amount": "144.652378116", + "slot": { + "period": 3699613, + "thread": 4 + } + }, + { + "amount": "144.652378106", + "slot": { + "period": 3853891, + "thread": 13 + } + } + ], + "AU124Xg9xEMASSjZKKGgyMH25s8eiBBadVh3Vt7C7RTh5ehgu3nx8": [ + { + "amount": "59.023421784", + "slot": { + "period": 64344, + "thread": 12 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 283654, + "thread": 4 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 448889, + "thread": 22 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 549656, + "thread": 23 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 658215, + "thread": 25 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 925906, + "thread": 19 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1054325, + "thread": 5 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1282715, + "thread": 27 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1417929, + "thread": 15 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1561313, + "thread": 8 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1740319, + "thread": 21 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 1830381, + "thread": 27 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2078384, + "thread": 14 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2178450, + "thread": 31 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2313934, + "thread": 17 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2534804, + "thread": 16 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2674500, + "thread": 17 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2910783, + "thread": 24 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 2988724, + "thread": 3 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 3128006, + "thread": 31 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 3389845, + "thread": 5 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 3615439, + "thread": 13 + } + }, + { + "amount": "59.023421784", + "slot": { + "period": 3635293, + "thread": 3 + } + }, + { + "amount": "59.023421793", + "slot": { + "period": 3923860, + "thread": 7 + } + } + ], + "AU124Yw7JPdEb43Emu1gRFm6o5mDmJ6XfTCenz9hvz1Ktix8yrYRP": [ + { + "amount": "194.254707641", + "slot": { + "period": 78763, + "thread": 6 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 240828, + "thread": 9 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 370545, + "thread": 23 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 645447, + "thread": 19 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 666308, + "thread": 25 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 950660, + "thread": 22 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1061240, + "thread": 23 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1311321, + "thread": 20 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1405457, + "thread": 21 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1598566, + "thread": 3 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1667833, + "thread": 29 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1874846, + "thread": 29 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 1999254, + "thread": 11 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 2190279, + "thread": 20 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 2342384, + "thread": 10 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 2620349, + "thread": 25 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 2723942, + "thread": 25 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 2894006, + "thread": 11 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 3095342, + "thread": 31 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 3164255, + "thread": 12 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 3419374, + "thread": 20 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 3565695, + "thread": 0 + } + }, + { + "amount": "194.254707641", + "slot": { + "period": 3670609, + "thread": 10 + } + }, + { + "amount": "194.254707644", + "slot": { + "period": 3872992, + "thread": 5 + } + } + ], + "AU124Z4JgEWftLxmoUHPMKVmBsvgM3G2exFkFF7EqdPLY8r5YzLHx": [ + { + "amount": "258.042396613", + "slot": { + "period": 148288, + "thread": 28 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 275828, + "thread": 2 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 342996, + "thread": 15 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 532836, + "thread": 0 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 667147, + "thread": 29 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 972364, + "thread": 18 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1110324, + "thread": 23 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1273984, + "thread": 12 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1416243, + "thread": 14 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1633153, + "thread": 22 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1769629, + "thread": 29 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 1850410, + "thread": 3 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2113393, + "thread": 10 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2292534, + "thread": 0 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2426649, + "thread": 17 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2538271, + "thread": 1 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2742849, + "thread": 9 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 2838699, + "thread": 28 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 3055415, + "thread": 15 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 3160305, + "thread": 20 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 3371882, + "thread": 23 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 3525737, + "thread": 26 + } + }, + { + "amount": "258.042396613", + "slot": { + "period": 3737442, + "thread": 16 + } + }, + { + "amount": "258.042396609", + "slot": { + "period": 3903254, + "thread": 13 + } + } + ], + "AU124ZQJoahhodov3cE5YW1dBXDEyGSPJ9RQYWKLtHtey15GvYnGh": [ + { + "amount": "125.493750177", + "slot": { + "period": 87022, + "thread": 14 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 254896, + "thread": 0 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 489429, + "thread": 24 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 596587, + "thread": 22 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 659223, + "thread": 6 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 839608, + "thread": 12 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1009438, + "thread": 21 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1224397, + "thread": 6 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1470824, + "thread": 18 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1587299, + "thread": 17 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1723492, + "thread": 27 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1816397, + "thread": 26 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 1991548, + "thread": 15 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2222956, + "thread": 26 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2428156, + "thread": 16 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2462455, + "thread": 25 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2740299, + "thread": 17 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2853548, + "thread": 17 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 2955115, + "thread": 28 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 3280970, + "thread": 25 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 3378246, + "thread": 9 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 3598518, + "thread": 5 + } + }, + { + "amount": "125.493750177", + "slot": { + "period": 3744796, + "thread": 12 + } + }, + { + "amount": "125.493750166", + "slot": { + "period": 3867466, + "thread": 17 + } + } + ], + "AU124ZXKd9vCbwthQDWXtMLS4RAoHoNfNT3HGDn7iPZAanymUwPEQ": [ + { + "amount": "311.896147714", + "slot": { + "period": 161705, + "thread": 18 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 280105, + "thread": 11 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 367703, + "thread": 4 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 560377, + "thread": 11 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 696016, + "thread": 24 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 850464, + "thread": 14 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1076993, + "thread": 8 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1302368, + "thread": 3 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1474057, + "thread": 3 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1556978, + "thread": 0 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1678995, + "thread": 31 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 1902427, + "thread": 31 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2017006, + "thread": 15 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2168001, + "thread": 8 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2390538, + "thread": 27 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2510116, + "thread": 22 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2757255, + "thread": 31 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 2852415, + "thread": 14 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 3058203, + "thread": 18 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 3278216, + "thread": 24 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 3384769, + "thread": 18 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 3554880, + "thread": 11 + } + }, + { + "amount": "311.896147714", + "slot": { + "period": 3779172, + "thread": 25 + } + }, + { + "amount": "311.896147705", + "slot": { + "period": 3929211, + "thread": 25 + } + } + ], + "AU124bdZiHebFYcKzaGXJPw6eQv5ab69oRBUesS1EvsMaiqvMwayp": [ + { + "amount": "456.532933053", + "slot": { + "period": 138793, + "thread": 6 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 195801, + "thread": 4 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 351802, + "thread": 6 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 629616, + "thread": 13 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 727056, + "thread": 14 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 912725, + "thread": 25 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1069002, + "thread": 25 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1237560, + "thread": 14 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1389904, + "thread": 9 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1617058, + "thread": 31 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1730529, + "thread": 17 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 1888709, + "thread": 8 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2143217, + "thread": 10 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2199640, + "thread": 24 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2383834, + "thread": 4 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2464614, + "thread": 1 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2679177, + "thread": 0 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2813264, + "thread": 14 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 2956649, + "thread": 30 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 3127908, + "thread": 5 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 3426366, + "thread": 2 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 3568957, + "thread": 26 + } + }, + { + "amount": "456.532933053", + "slot": { + "period": 3624084, + "thread": 1 + } + }, + { + "amount": "456.532933054", + "slot": { + "period": 3848331, + "thread": 25 + } + } + ], + "AU124boDzGVXCwxAqhf19SKdJkvuVAz8hsGmbr4w6Lpt6NWCtSWGh": [ + { + "amount": "148.581987218", + "slot": { + "period": 45508, + "thread": 20 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 254993, + "thread": 24 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 421704, + "thread": 1 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 619939, + "thread": 8 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 786938, + "thread": 26 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 959460, + "thread": 27 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1025651, + "thread": 10 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1196565, + "thread": 5 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1470305, + "thread": 25 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1574729, + "thread": 27 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1650593, + "thread": 2 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 1918747, + "thread": 24 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2086399, + "thread": 5 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2204343, + "thread": 15 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2440217, + "thread": 21 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2493711, + "thread": 24 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2754460, + "thread": 22 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 2865784, + "thread": 16 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 3009517, + "thread": 16 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 3183849, + "thread": 7 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 3355086, + "thread": 29 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 3457571, + "thread": 8 + } + }, + { + "amount": "148.581987218", + "slot": { + "period": 3743165, + "thread": 10 + } + }, + { + "amount": "148.581987228", + "slot": { + "period": 3811351, + "thread": 4 + } + } + ], + "AU124cknMa5Vn24gk9HLh1wbiKmW3DpEgsH8uMwBRv3tAPQDP6cJ7": [ + { + "amount": "413.426365746", + "slot": { + "period": 54987, + "thread": 0 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 228849, + "thread": 2 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 454386, + "thread": 10 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 611880, + "thread": 16 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 796404, + "thread": 27 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 852805, + "thread": 30 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1008515, + "thread": 3 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1169167, + "thread": 9 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1437096, + "thread": 10 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1629126, + "thread": 25 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1795849, + "thread": 14 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1871931, + "thread": 26 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 1994261, + "thread": 30 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2257243, + "thread": 23 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2325233, + "thread": 25 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2538503, + "thread": 23 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2674843, + "thread": 15 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2929332, + "thread": 5 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 2975930, + "thread": 30 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 3191506, + "thread": 15 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 3448951, + "thread": 0 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 3583383, + "thread": 29 + } + }, + { + "amount": "413.426365746", + "slot": { + "period": 3760192, + "thread": 22 + } + }, + { + "amount": "413.426365748", + "slot": { + "period": 3900266, + "thread": 19 + } + } + ], + "AU124dCY6eMmUvxao9w9mTUe65uUsMMJus6sZeT2mm6hSsk2fMo3S": [ + { + "amount": "189.505023820", + "slot": { + "period": 154812, + "thread": 15 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 198340, + "thread": 11 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 477278, + "thread": 6 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 505030, + "thread": 0 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 811040, + "thread": 24 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 920515, + "thread": 23 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1062903, + "thread": 4 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1260323, + "thread": 23 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1362480, + "thread": 20 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1515514, + "thread": 27 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1787646, + "thread": 16 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 1891592, + "thread": 22 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2124276, + "thread": 31 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2192358, + "thread": 8 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2329796, + "thread": 14 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2545565, + "thread": 0 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2641072, + "thread": 25 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2901840, + "thread": 6 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 2977954, + "thread": 30 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 3169481, + "thread": 25 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 3399429, + "thread": 1 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 3461370, + "thread": 29 + } + }, + { + "amount": "189.505023820", + "slot": { + "period": 3685339, + "thread": 26 + } + }, + { + "amount": "189.505023823", + "slot": { + "period": 3873978, + "thread": 8 + } + } + ], + "AU124dzpZiAamuFxvWDkvkw4hsJNyxZTikqSCpW7ZVQqzcoQYxDbj": [ + { + "amount": "193.031169177", + "slot": { + "period": 46103, + "thread": 31 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 216371, + "thread": 6 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 423314, + "thread": 26 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 633146, + "thread": 18 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 781383, + "thread": 11 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 967801, + "thread": 31 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1089146, + "thread": 3 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1217336, + "thread": 1 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1437894, + "thread": 31 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1574452, + "thread": 20 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1761663, + "thread": 16 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 1836927, + "thread": 29 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2062300, + "thread": 24 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2219046, + "thread": 1 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2454971, + "thread": 25 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2561195, + "thread": 30 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2668903, + "thread": 21 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2820382, + "thread": 28 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 2990969, + "thread": 7 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 3152960, + "thread": 27 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 3351724, + "thread": 16 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 3488146, + "thread": 20 + } + }, + { + "amount": "193.031169177", + "slot": { + "period": 3699219, + "thread": 5 + } + }, + { + "amount": "193.031169181", + "slot": { + "period": 3888917, + "thread": 9 + } + } + ], + "AU124e6XAiyMrPDEqTMXqPJ2C8QXbu4xy3WEtti9ZXpYM1RTokhkV": [ + { + "amount": "209.974936757", + "slot": { + "period": 24580, + "thread": 17 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 248577, + "thread": 11 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 349827, + "thread": 9 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 564962, + "thread": 16 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 753427, + "thread": 3 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 973991, + "thread": 13 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1004970, + "thread": 8 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1291702, + "thread": 1 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1366401, + "thread": 10 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1580440, + "thread": 29 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1677486, + "thread": 26 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 1896927, + "thread": 29 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2045172, + "thread": 10 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2291809, + "thread": 21 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2369806, + "thread": 20 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2467038, + "thread": 4 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2747819, + "thread": 8 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 2830535, + "thread": 31 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 3074952, + "thread": 31 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 3255033, + "thread": 6 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 3377340, + "thread": 20 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 3569479, + "thread": 7 + } + }, + { + "amount": "209.974936757", + "slot": { + "period": 3728425, + "thread": 24 + } + }, + { + "amount": "209.974936750", + "slot": { + "period": 3807290, + "thread": 30 + } + } + ], + "AU124e837SSiJBGqH7bynuuUPCkMxfSk3puryoZyyvkfAwUd1gTYr": [ + { + "amount": "66.925179158", + "slot": { + "period": 62870, + "thread": 26 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 167667, + "thread": 16 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 471057, + "thread": 30 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 506795, + "thread": 10 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 781419, + "thread": 21 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 938881, + "thread": 27 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1007325, + "thread": 11 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1160614, + "thread": 22 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1447873, + "thread": 19 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1559637, + "thread": 11 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1763245, + "thread": 11 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1933242, + "thread": 2 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 1981456, + "thread": 17 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 2266684, + "thread": 5 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 2405849, + "thread": 26 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 2537053, + "thread": 18 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 2633197, + "thread": 15 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 2800367, + "thread": 28 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3027319, + "thread": 8 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3288527, + "thread": 22 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3439166, + "thread": 10 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3536359, + "thread": 31 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3671920, + "thread": 22 + } + }, + { + "amount": "66.925179158", + "slot": { + "period": 3780027, + "thread": 4 + } + } + ], + "AU124eJ5ZnQPtBFFQkRYrj8EW9xuUXLmZM6fpqnzmCaGAFhSCWwZQ": [ + { + "amount": "133.707750567", + "slot": { + "period": 24225, + "thread": 13 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 312986, + "thread": 16 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 328430, + "thread": 19 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 503928, + "thread": 22 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 701635, + "thread": 18 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 934330, + "thread": 9 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1035898, + "thread": 24 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1203281, + "thread": 0 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1448984, + "thread": 7 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1515092, + "thread": 18 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1795995, + "thread": 21 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 1887775, + "thread": 8 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2041967, + "thread": 12 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2226025, + "thread": 17 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2408266, + "thread": 9 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2624305, + "thread": 26 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2720427, + "thread": 11 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 2828139, + "thread": 9 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 3037138, + "thread": 23 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 3239147, + "thread": 2 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 3295387, + "thread": 27 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 3536354, + "thread": 19 + } + }, + { + "amount": "133.707750567", + "slot": { + "period": 3691298, + "thread": 4 + } + }, + { + "amount": "133.707750575", + "slot": { + "period": 3823727, + "thread": 15 + } + } + ], + "AU124ejaztUMwF1rqsyMqhK68rUxEbtmxiuXSS8aGSFD5GWe3QaEL": [ + { + "amount": "76.457764569", + "slot": { + "period": 83319, + "thread": 8 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 249998, + "thread": 31 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 416152, + "thread": 5 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 510801, + "thread": 24 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 799790, + "thread": 28 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 848669, + "thread": 10 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1089451, + "thread": 16 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1270913, + "thread": 3 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1451915, + "thread": 10 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1607177, + "thread": 2 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1748186, + "thread": 31 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 1950870, + "thread": 3 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2056791, + "thread": 25 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2174725, + "thread": 31 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2425604, + "thread": 26 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2571107, + "thread": 9 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2650839, + "thread": 9 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2813303, + "thread": 24 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 2999617, + "thread": 26 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 3205669, + "thread": 27 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 3323160, + "thread": 8 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 3569894, + "thread": 7 + } + }, + { + "amount": "76.457764569", + "slot": { + "period": 3626169, + "thread": 24 + } + }, + { + "amount": "76.457764572", + "slot": { + "period": 3868565, + "thread": 18 + } + } + ], + "AU124g2MBNkNmspesQguBeNYvmW5oSznf1ocB7x4ifZR9cT8qTrMF": [ + { + "amount": "413.264418824", + "slot": { + "period": 39234, + "thread": 23 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 181786, + "thread": 17 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 395193, + "thread": 2 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 637991, + "thread": 3 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 813785, + "thread": 12 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 875259, + "thread": 31 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1072370, + "thread": 14 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1305430, + "thread": 30 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1331052, + "thread": 22 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1572198, + "thread": 2 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1802370, + "thread": 12 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1912643, + "thread": 28 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 1978162, + "thread": 24 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 2217036, + "thread": 1 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 2418261, + "thread": 15 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 2603417, + "thread": 15 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 2767758, + "thread": 19 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 2950735, + "thread": 28 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 3048705, + "thread": 13 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 3171128, + "thread": 18 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 3366503, + "thread": 28 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 3536998, + "thread": 19 + } + }, + { + "amount": "413.264418824", + "slot": { + "period": 3709124, + "thread": 31 + } + }, + { + "amount": "413.264418815", + "slot": { + "period": 3834188, + "thread": 13 + } + } + ], + "AU124gaXN4HYRpq8eZrwLrgKnENtsQbXQxhynSwSFV6T7EaE7XwZs": [ + { + "amount": "230.878366223", + "slot": { + "period": 52383, + "thread": 7 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 319979, + "thread": 26 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 415165, + "thread": 23 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 516949, + "thread": 24 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 745916, + "thread": 10 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 937530, + "thread": 22 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1055799, + "thread": 5 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1170937, + "thread": 10 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1479028, + "thread": 5 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1622088, + "thread": 30 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1775463, + "thread": 14 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 1931774, + "thread": 4 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2048386, + "thread": 2 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2163798, + "thread": 12 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2427529, + "thread": 0 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2494581, + "thread": 13 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2646352, + "thread": 20 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 2858205, + "thread": 0 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 3055888, + "thread": 12 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 3138102, + "thread": 19 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 3369489, + "thread": 25 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 3510709, + "thread": 22 + } + }, + { + "amount": "230.878366223", + "slot": { + "period": 3773052, + "thread": 21 + } + }, + { + "amount": "230.878366220", + "slot": { + "period": 3904997, + "thread": 4 + } + } + ], + "AU124i8kLBFeruGCXJAuaZZR3uZ64BK64ZR2q9WcTvSXkqp2UQcTo": [ + { + "amount": "201.726833869", + "slot": { + "period": 77203, + "thread": 12 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 266536, + "thread": 31 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 361858, + "thread": 19 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 614189, + "thread": 3 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 739446, + "thread": 12 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 943022, + "thread": 31 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1125987, + "thread": 6 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1255769, + "thread": 5 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1404846, + "thread": 16 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1601442, + "thread": 4 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1648083, + "thread": 9 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 1846542, + "thread": 23 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2057250, + "thread": 4 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2181732, + "thread": 22 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2346151, + "thread": 28 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2529931, + "thread": 18 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2700953, + "thread": 31 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2803308, + "thread": 16 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 2991911, + "thread": 27 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 3188785, + "thread": 18 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 3440503, + "thread": 12 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 3468054, + "thread": 25 + } + }, + { + "amount": "201.726833869", + "slot": { + "period": 3702946, + "thread": 17 + } + }, + { + "amount": "201.726833876", + "slot": { + "period": 3798403, + "thread": 28 + } + } + ], + "AU124iUR8R1iAwaE63fVmyLtGpaqvnNQSpycwMbYK1EAHPhSspzvA": [ + { + "amount": "270.575468788", + "slot": { + "period": 138996, + "thread": 26 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 299185, + "thread": 23 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 439082, + "thread": 4 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 503106, + "thread": 6 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 798834, + "thread": 13 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 905500, + "thread": 4 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 999223, + "thread": 25 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 1212351, + "thread": 27 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 1398064, + "thread": 8 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 1512160, + "thread": 24 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 1725101, + "thread": 31 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 1934202, + "thread": 19 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2086741, + "thread": 24 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2263975, + "thread": 1 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2331863, + "thread": 25 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2518494, + "thread": 0 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2691491, + "thread": 26 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 2934217, + "thread": 10 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3099405, + "thread": 10 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3226691, + "thread": 14 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3295931, + "thread": 28 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3560773, + "thread": 18 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3677454, + "thread": 15 + } + }, + { + "amount": "270.575468788", + "slot": { + "period": 3876869, + "thread": 19 + } + } + ], + "AU124jK3Ero348EGMJiHoUs96jN3AJyYNRF68Muu9hC53NvKUVE5N": [ + { + "amount": "296.615731145", + "slot": { + "period": 152816, + "thread": 16 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 174944, + "thread": 27 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 340150, + "thread": 18 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 528475, + "thread": 26 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 661256, + "thread": 1 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 857207, + "thread": 13 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1045511, + "thread": 25 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1151938, + "thread": 28 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1340680, + "thread": 6 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1496077, + "thread": 12 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1728982, + "thread": 31 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 1871787, + "thread": 14 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2111033, + "thread": 20 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2271902, + "thread": 7 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2298891, + "thread": 9 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2479776, + "thread": 0 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2636576, + "thread": 2 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 2829666, + "thread": 14 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 3083581, + "thread": 27 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 3192985, + "thread": 24 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 3426512, + "thread": 4 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 3517786, + "thread": 23 + } + }, + { + "amount": "296.615731145", + "slot": { + "period": 3635724, + "thread": 4 + } + }, + { + "amount": "296.615731138", + "slot": { + "period": 3878285, + "thread": 12 + } + } + ], + "AU124jtL6YJk5YCyTKAvswAuFyz9sgWixJJTctzxAZqcCnimvTE5": [ + { + "amount": "513.684839230", + "slot": { + "period": 32651, + "thread": 14 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 203532, + "thread": 9 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 357996, + "thread": 1 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 653287, + "thread": 14 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 755360, + "thread": 14 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 947151, + "thread": 13 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1133476, + "thread": 19 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1183591, + "thread": 23 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1350220, + "thread": 6 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1585993, + "thread": 2 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1734339, + "thread": 31 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 1905763, + "thread": 24 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2045894, + "thread": 17 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2143998, + "thread": 30 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2326524, + "thread": 14 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2572045, + "thread": 13 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2666772, + "thread": 17 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2877695, + "thread": 21 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 2955801, + "thread": 29 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 3222379, + "thread": 30 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 3397911, + "thread": 10 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 3475521, + "thread": 25 + } + }, + { + "amount": "513.684839230", + "slot": { + "period": 3628051, + "thread": 22 + } + }, + { + "amount": "513.684839238", + "slot": { + "period": 3905333, + "thread": 9 + } + } + ], + "AU124jvLQgCvz3C8xEwRpnWAi3da71kDU4wSq1zz9DL9VaSk1Gd6U": [ + { + "amount": "166.626252295", + "slot": { + "period": 91743, + "thread": 9 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 256930, + "thread": 23 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 400825, + "thread": 10 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 625661, + "thread": 21 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 708494, + "thread": 26 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 893734, + "thread": 18 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1031267, + "thread": 18 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1311526, + "thread": 24 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1421392, + "thread": 19 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1489985, + "thread": 20 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1785620, + "thread": 25 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 1948904, + "thread": 24 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2069238, + "thread": 1 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2252131, + "thread": 3 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2443072, + "thread": 7 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2563728, + "thread": 18 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2780638, + "thread": 3 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2952553, + "thread": 24 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 2971526, + "thread": 17 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 3133867, + "thread": 5 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 3444667, + "thread": 1 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 3530802, + "thread": 23 + } + }, + { + "amount": "166.626252295", + "slot": { + "period": 3658161, + "thread": 17 + } + }, + { + "amount": "166.626252299", + "slot": { + "period": 3838139, + "thread": 13 + } + } + ], + "AU124ktWzWK9UWUUssoKBjH5yMjFbQz7w1TfdQHgPpFGnGASWrU6o": [ + { + "amount": "321.220916268", + "slot": { + "period": 141921, + "thread": 12 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 310179, + "thread": 29 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 414823, + "thread": 24 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 529754, + "thread": 19 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 769924, + "thread": 15 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 930588, + "thread": 29 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 996045, + "thread": 24 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 1215049, + "thread": 26 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 1340523, + "thread": 12 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 1605344, + "thread": 1 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 1687974, + "thread": 10 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 1897403, + "thread": 19 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2123290, + "thread": 21 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2196678, + "thread": 5 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2323314, + "thread": 11 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2603892, + "thread": 26 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2716010, + "thread": 24 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2894694, + "thread": 9 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 2966371, + "thread": 21 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 3161946, + "thread": 0 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 3299071, + "thread": 1 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 3451617, + "thread": 14 + } + }, + { + "amount": "321.220916268", + "slot": { + "period": 3667780, + "thread": 25 + } + }, + { + "amount": "321.220916276", + "slot": { + "period": 3805748, + "thread": 9 + } + } + ], + "AU124kuoxXWssqaoNTq8YMKHqhwvtvD8TMdCKcz6sgsyy1C2b6apE": [ + { + "amount": "55.765301305", + "slot": { + "period": 137761, + "thread": 31 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 233323, + "thread": 16 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 350504, + "thread": 21 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 522347, + "thread": 25 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 683464, + "thread": 12 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 917285, + "thread": 17 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1149079, + "thread": 17 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1215173, + "thread": 31 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1340665, + "thread": 27 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1486212, + "thread": 18 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1798891, + "thread": 27 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 1886762, + "thread": 1 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2079959, + "thread": 6 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2275429, + "thread": 31 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2394084, + "thread": 13 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2546136, + "thread": 15 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2699245, + "thread": 23 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 2826240, + "thread": 17 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 3028991, + "thread": 6 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 3210625, + "thread": 13 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 3422108, + "thread": 22 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 3612351, + "thread": 22 + } + }, + { + "amount": "55.765301305", + "slot": { + "period": 3744146, + "thread": 8 + } + }, + { + "amount": "55.765301301", + "slot": { + "period": 3834160, + "thread": 13 + } + } + ], + "AU124mCXaTYeXbQDsuXUdhY5uc6UfivJ6SWdzNDt1FdqRW6LHtwV6": [ + { + "amount": "229.643997769", + "slot": { + "period": 117462, + "thread": 0 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 232169, + "thread": 17 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 396755, + "thread": 5 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 609419, + "thread": 17 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 777829, + "thread": 15 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 830645, + "thread": 9 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1071529, + "thread": 16 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1280508, + "thread": 21 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1358712, + "thread": 16 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1483199, + "thread": 25 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1720651, + "thread": 6 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 1924491, + "thread": 16 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2005431, + "thread": 1 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2267073, + "thread": 21 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2398962, + "thread": 23 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2575949, + "thread": 22 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2705117, + "thread": 8 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 2811384, + "thread": 2 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 3073718, + "thread": 26 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 3281781, + "thread": 8 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 3429925, + "thread": 23 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 3492280, + "thread": 15 + } + }, + { + "amount": "229.643997769", + "slot": { + "period": 3715102, + "thread": 4 + } + }, + { + "amount": "229.643997778", + "slot": { + "period": 3866731, + "thread": 3 + } + } + ], + "AU124nQZSE794rbGhUg2THh8PBPkXRDQfGXG9KbTHvGv79dmpsWdW": [ + { + "amount": "235.123324146", + "slot": { + "period": 59350, + "thread": 17 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 213482, + "thread": 19 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 388576, + "thread": 0 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 641470, + "thread": 3 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 816531, + "thread": 18 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 836472, + "thread": 9 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1029736, + "thread": 22 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1191849, + "thread": 23 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1351889, + "thread": 2 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1547827, + "thread": 23 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1696414, + "thread": 8 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 1925074, + "thread": 9 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2122159, + "thread": 19 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2205355, + "thread": 24 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2370963, + "thread": 19 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2600821, + "thread": 13 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2627543, + "thread": 15 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 2938449, + "thread": 30 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 3063638, + "thread": 2 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 3192000, + "thread": 25 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 3366014, + "thread": 2 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 3487673, + "thread": 4 + } + }, + { + "amount": "235.123324146", + "slot": { + "period": 3644887, + "thread": 21 + } + }, + { + "amount": "235.123324134", + "slot": { + "period": 3932250, + "thread": 25 + } + } + ], + "AU124nVfRXt3Rhz7ht8X7E5bUo6hTqJwv3ZShL9fPsWBM6Fc8Hwqs": [ + { + "amount": "137.069286825", + "slot": { + "period": 48581, + "thread": 22 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 196753, + "thread": 22 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 468886, + "thread": 22 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 549673, + "thread": 6 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 687262, + "thread": 1 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 850949, + "thread": 24 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1116234, + "thread": 31 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1218257, + "thread": 7 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1478383, + "thread": 28 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1479974, + "thread": 22 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1786393, + "thread": 31 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 1867156, + "thread": 29 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2130512, + "thread": 25 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2288393, + "thread": 29 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2404317, + "thread": 21 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2619204, + "thread": 4 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2738743, + "thread": 0 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 2829804, + "thread": 12 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 3041909, + "thread": 27 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 3130486, + "thread": 9 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 3292471, + "thread": 24 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 3552596, + "thread": 7 + } + }, + { + "amount": "137.069286825", + "slot": { + "period": 3732802, + "thread": 23 + } + }, + { + "amount": "137.069286820", + "slot": { + "period": 3925264, + "thread": 8 + } + } + ], + "AU124ngbVWr8jq1FT4wYLHh6Y5brUgN5AdbVkBLATPepxCh8NN2KW": [ + { + "amount": "72.596500719", + "slot": { + "period": 26847, + "thread": 21 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 243708, + "thread": 23 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 331547, + "thread": 20 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 618037, + "thread": 17 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 665586, + "thread": 3 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 963123, + "thread": 2 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1102097, + "thread": 19 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1212864, + "thread": 6 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1462103, + "thread": 2 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1558359, + "thread": 12 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1663746, + "thread": 16 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 1932626, + "thread": 9 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2054087, + "thread": 29 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2262859, + "thread": 24 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2299750, + "thread": 31 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2571537, + "thread": 11 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2647846, + "thread": 19 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2906570, + "thread": 20 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 2986799, + "thread": 15 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 3148745, + "thread": 16 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 3430327, + "thread": 0 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 3457330, + "thread": 5 + } + }, + { + "amount": "72.596500719", + "slot": { + "period": 3764438, + "thread": 29 + } + }, + { + "amount": "72.596500715", + "slot": { + "period": 3796903, + "thread": 10 + } + } + ], + "AU124oBhXUUUbRDFaMA42TkAKxGshaUNHMpmAirEPnYnGBMHF4iCt": [ + { + "amount": "302.712387716", + "slot": { + "period": 159169, + "thread": 5 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 205457, + "thread": 25 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 473785, + "thread": 29 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 565511, + "thread": 16 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 795702, + "thread": 23 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 920834, + "thread": 15 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1090637, + "thread": 28 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1169938, + "thread": 3 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1448762, + "thread": 13 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1572990, + "thread": 18 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1726593, + "thread": 7 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 1894822, + "thread": 0 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2135731, + "thread": 31 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2228664, + "thread": 12 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2344335, + "thread": 30 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2593053, + "thread": 14 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2674258, + "thread": 30 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 2820414, + "thread": 30 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 3108130, + "thread": 27 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 3267743, + "thread": 28 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 3440505, + "thread": 2 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 3463275, + "thread": 31 + } + }, + { + "amount": "302.712387716", + "slot": { + "period": 3741744, + "thread": 3 + } + }, + { + "amount": "302.712387705", + "slot": { + "period": 3923673, + "thread": 25 + } + } + ], + "AU124oTtvENHxboDv66wGMR1snyEh41ZUk4xSUjP6MdsvUsmgFYtS": [ + { + "amount": "61.979050885", + "slot": { + "period": 83403, + "thread": 25 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 181828, + "thread": 6 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 468190, + "thread": 25 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 543054, + "thread": 1 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 745392, + "thread": 27 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 917126, + "thread": 30 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1042583, + "thread": 3 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1169303, + "thread": 14 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1465555, + "thread": 11 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1584988, + "thread": 3 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1752660, + "thread": 17 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 1862404, + "thread": 13 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2131422, + "thread": 26 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2180202, + "thread": 19 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2299740, + "thread": 2 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2498246, + "thread": 5 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2702502, + "thread": 12 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 2804145, + "thread": 31 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 3002954, + "thread": 27 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 3252265, + "thread": 17 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 3305848, + "thread": 22 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 3482572, + "thread": 23 + } + }, + { + "amount": "61.979050885", + "slot": { + "period": 3779921, + "thread": 28 + } + }, + { + "amount": "61.979050896", + "slot": { + "period": 3905260, + "thread": 9 + } + } + ], + "AU124oWHyi87q51odMtL2tvGP8GqULWtiTQmhsQXp1w16HuWsUNM6": [ + { + "amount": "172.727096290", + "slot": { + "period": 55523, + "thread": 23 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 270330, + "thread": 25 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 363060, + "thread": 26 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 546786, + "thread": 12 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 722274, + "thread": 25 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 930961, + "thread": 24 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1106606, + "thread": 19 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1176479, + "thread": 14 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1438473, + "thread": 6 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1528959, + "thread": 1 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1730200, + "thread": 22 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 1916922, + "thread": 31 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2064999, + "thread": 30 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2173116, + "thread": 31 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2312644, + "thread": 12 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2517534, + "thread": 8 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2626502, + "thread": 5 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 2912069, + "thread": 14 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 3036051, + "thread": 8 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 3182638, + "thread": 17 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 3326185, + "thread": 16 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 3452878, + "thread": 3 + } + }, + { + "amount": "172.727096290", + "slot": { + "period": 3706765, + "thread": 8 + } + }, + { + "amount": "172.727096294", + "slot": { + "period": 3859355, + "thread": 29 + } + } + ], + "AU124puyFHwbZM1byv9rh6f7cjezQ2QxpQDYmwYFvvV9DnqVBLNG5": [ + { + "amount": "186.687542352", + "slot": { + "period": 35674, + "thread": 21 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 295508, + "thread": 13 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 481849, + "thread": 23 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 496136, + "thread": 19 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 751442, + "thread": 23 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 975093, + "thread": 10 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1097614, + "thread": 6 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1163567, + "thread": 7 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1359524, + "thread": 24 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1487824, + "thread": 27 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1747720, + "thread": 4 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 1890606, + "thread": 12 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2138481, + "thread": 15 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2188644, + "thread": 3 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2306640, + "thread": 3 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2518270, + "thread": 1 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2791337, + "thread": 26 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 2906852, + "thread": 21 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 3092282, + "thread": 15 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 3272892, + "thread": 23 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 3393202, + "thread": 21 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 3464355, + "thread": 17 + } + }, + { + "amount": "186.687542352", + "slot": { + "period": 3720336, + "thread": 12 + } + }, + { + "amount": "186.687542353", + "slot": { + "period": 3939356, + "thread": 17 + } + } + ], + "AU124qJ4MGDWjizKvBk1nx3xRRMmQSbs9e6WNDfAW2akw8C1JcS61": [ + { + "amount": "158.216645365", + "slot": { + "period": 105365, + "thread": 27 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 214861, + "thread": 25 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 399605, + "thread": 2 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 538094, + "thread": 23 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 707085, + "thread": 1 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 913887, + "thread": 4 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1031666, + "thread": 17 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1237007, + "thread": 12 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1417077, + "thread": 1 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1602415, + "thread": 18 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1747959, + "thread": 12 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 1925107, + "thread": 25 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2137272, + "thread": 8 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2232424, + "thread": 7 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2448728, + "thread": 14 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2617510, + "thread": 8 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2781327, + "thread": 13 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 2907555, + "thread": 13 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 3098328, + "thread": 8 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 3189726, + "thread": 7 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 3369715, + "thread": 4 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 3476264, + "thread": 23 + } + }, + { + "amount": "158.216645365", + "slot": { + "period": 3702103, + "thread": 4 + } + }, + { + "amount": "158.216645355", + "slot": { + "period": 3808384, + "thread": 18 + } + } + ], + "AU124rK2TEvgSqTadA2KxLrPGkB2RNQBpDu6sbFyn7d7ZsriiKDb4": [ + { + "amount": "261.586657273", + "slot": { + "period": 14368, + "thread": 5 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 306416, + "thread": 31 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 379310, + "thread": 28 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 553374, + "thread": 5 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 765403, + "thread": 11 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 884483, + "thread": 11 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1026097, + "thread": 5 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1173714, + "thread": 19 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1380824, + "thread": 17 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1637656, + "thread": 1 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1647854, + "thread": 27 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1964083, + "thread": 26 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 1997967, + "thread": 0 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 2282728, + "thread": 16 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 2434126, + "thread": 3 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 2549025, + "thread": 17 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 2710178, + "thread": 30 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 2806841, + "thread": 2 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 3040711, + "thread": 5 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 3272841, + "thread": 18 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 3324765, + "thread": 26 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 3575606, + "thread": 13 + } + }, + { + "amount": "261.586657273", + "slot": { + "period": 3706348, + "thread": 30 + } + }, + { + "amount": "261.586657283", + "slot": { + "period": 3833216, + "thread": 10 + } + } + ], + "AU124sCLcpETTdYQvdfCXDvz9H1x156U4C18oHef6uQdMV9z8XTn": [ + { + "amount": "225.420656158", + "slot": { + "period": 44429, + "thread": 18 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 262642, + "thread": 4 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 379025, + "thread": 2 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 578189, + "thread": 11 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 756281, + "thread": 10 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 925741, + "thread": 26 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1049780, + "thread": 19 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1219854, + "thread": 15 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1445991, + "thread": 1 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1572374, + "thread": 31 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1689469, + "thread": 14 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 1931246, + "thread": 10 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2034245, + "thread": 23 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2274880, + "thread": 14 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2432531, + "thread": 9 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2540640, + "thread": 9 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2765331, + "thread": 8 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2823054, + "thread": 4 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 2961815, + "thread": 3 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 3237739, + "thread": 18 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 3411893, + "thread": 28 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 3491407, + "thread": 23 + } + }, + { + "amount": "225.420656158", + "slot": { + "period": 3618629, + "thread": 17 + } + }, + { + "amount": "225.420656170", + "slot": { + "period": 3841456, + "thread": 11 + } + } + ], + "AU124tu4V8yw9LkTKkQr2Be9TeDJSQN7MoyW3v7FcQX8MMtA3Tb3p": [ + { + "amount": "424.199246352", + "slot": { + "period": 142409, + "thread": 14 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 189205, + "thread": 1 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 391309, + "thread": 22 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 619440, + "thread": 12 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 756028, + "thread": 7 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 928804, + "thread": 19 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1015242, + "thread": 3 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1260068, + "thread": 4 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1420660, + "thread": 17 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1612273, + "thread": 8 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1678354, + "thread": 28 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1868481, + "thread": 16 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 1995730, + "thread": 13 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 2235865, + "thread": 4 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 2428138, + "thread": 10 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 2513305, + "thread": 24 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 2643017, + "thread": 1 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 2937364, + "thread": 12 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 3083013, + "thread": 7 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 3232633, + "thread": 9 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 3307473, + "thread": 29 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 3591609, + "thread": 24 + } + }, + { + "amount": "424.199246352", + "slot": { + "period": 3709764, + "thread": 6 + } + }, + { + "amount": "424.199246353", + "slot": { + "period": 3788961, + "thread": 19 + } + } + ], + "AU124wEtK8QPGcZhCqg9vhzp5kTUoHNMPFMqXi4f1mcR1VE5j4mNF": [ + { + "amount": "187.149848912", + "slot": { + "period": 120071, + "thread": 8 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 256007, + "thread": 4 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 416566, + "thread": 0 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 572589, + "thread": 30 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 713324, + "thread": 2 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 834681, + "thread": 4 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1086421, + "thread": 27 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1268183, + "thread": 4 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1472426, + "thread": 26 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1587084, + "thread": 27 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1677163, + "thread": 26 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 1945405, + "thread": 12 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2143571, + "thread": 31 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2257200, + "thread": 12 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2378303, + "thread": 10 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2582515, + "thread": 23 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2757303, + "thread": 0 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 2832258, + "thread": 4 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 3071482, + "thread": 9 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 3171511, + "thread": 16 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 3427484, + "thread": 1 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 3460524, + "thread": 27 + } + }, + { + "amount": "187.149848912", + "slot": { + "period": 3646888, + "thread": 14 + } + }, + { + "amount": "187.149848917", + "slot": { + "period": 3893045, + "thread": 17 + } + } + ], + "AU124whTtSuoq92n8GPMF5JxjY7UoFqQUZiAkXHDQVbixhZeP2g31": [ + { + "amount": "80.959119291", + "slot": { + "period": 137356, + "thread": 4 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 241839, + "thread": 6 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 470450, + "thread": 28 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 544358, + "thread": 3 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 696054, + "thread": 1 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 971770, + "thread": 29 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1019020, + "thread": 19 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1260464, + "thread": 10 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1383038, + "thread": 4 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1525269, + "thread": 7 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1742664, + "thread": 13 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 1824217, + "thread": 25 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2050753, + "thread": 16 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2205981, + "thread": 31 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2408715, + "thread": 6 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2528634, + "thread": 10 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2630141, + "thread": 25 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2934757, + "thread": 9 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 2998051, + "thread": 31 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 3232087, + "thread": 31 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 3325291, + "thread": 29 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 3499792, + "thread": 15 + } + }, + { + "amount": "80.959119291", + "slot": { + "period": 3715154, + "thread": 1 + } + }, + { + "amount": "80.959119300", + "slot": { + "period": 3923355, + "thread": 4 + } + } + ], + "AU124wojkr7nEBVW4nsbhL4HiHqjdfcb1KVoPHtX9ibZ2AY2vVKsJ": [ + { + "amount": "245.674295498", + "slot": { + "period": 149121, + "thread": 23 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 284610, + "thread": 27 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 489635, + "thread": 20 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 595807, + "thread": 9 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 734302, + "thread": 14 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 918118, + "thread": 12 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 992755, + "thread": 16 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 1274098, + "thread": 16 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 1330412, + "thread": 24 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 1526008, + "thread": 11 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 1671446, + "thread": 30 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 1970786, + "thread": 24 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2112461, + "thread": 24 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2223294, + "thread": 17 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2401273, + "thread": 29 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2526768, + "thread": 8 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2786561, + "thread": 3 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2888159, + "thread": 14 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 2958349, + "thread": 8 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 3211897, + "thread": 10 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 3361776, + "thread": 29 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 3528128, + "thread": 31 + } + }, + { + "amount": "245.674295498", + "slot": { + "period": 3674021, + "thread": 17 + } + }, + { + "amount": "245.674295503", + "slot": { + "period": 3795867, + "thread": 21 + } + } + ], + "AU124x6LUZecSiGhgdrw5oM84Zu47MBFUqbByEk8wwsDmY9zkWU2K": [ + { + "amount": "120.253948933", + "slot": { + "period": 145906, + "thread": 0 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 306712, + "thread": 25 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 360787, + "thread": 9 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 530659, + "thread": 15 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 799558, + "thread": 25 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 928457, + "thread": 1 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1122717, + "thread": 17 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1177781, + "thread": 17 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1448426, + "thread": 30 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1533000, + "thread": 8 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1749715, + "thread": 26 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1877286, + "thread": 8 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 1991198, + "thread": 25 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 2226097, + "thread": 19 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 2364075, + "thread": 14 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 2621730, + "thread": 4 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 2722532, + "thread": 27 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 2922887, + "thread": 1 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 3100064, + "thread": 2 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 3217140, + "thread": 4 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 3315915, + "thread": 26 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 3511221, + "thread": 12 + } + }, + { + "amount": "120.253948933", + "slot": { + "period": 3703346, + "thread": 23 + } + }, + { + "amount": "120.253948935", + "slot": { + "period": 3853323, + "thread": 14 + } + } + ], + "AU124yAM95AHBWgzg4Hn1HkCQFRZKVZwHs2jKFm2x2c7X6ETd38fq": [ + { + "amount": "308.036559313", + "slot": { + "period": 137135, + "thread": 30 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 279191, + "thread": 8 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 429270, + "thread": 27 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 536867, + "thread": 9 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 757218, + "thread": 25 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 940814, + "thread": 11 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1035231, + "thread": 29 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1214227, + "thread": 11 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1470724, + "thread": 15 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1588835, + "thread": 22 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1714668, + "thread": 20 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 1842839, + "thread": 0 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2069423, + "thread": 12 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2165378, + "thread": 18 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2308450, + "thread": 19 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2533006, + "thread": 19 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2760710, + "thread": 26 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 2808136, + "thread": 11 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 3081729, + "thread": 6 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 3264980, + "thread": 8 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 3427160, + "thread": 6 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 3598280, + "thread": 28 + } + }, + { + "amount": "308.036559313", + "slot": { + "period": 3655204, + "thread": 25 + } + }, + { + "amount": "308.036559310", + "slot": { + "period": 3890801, + "thread": 2 + } + } + ], + "AU124yDGLtDcn4RjHN6KRwFm9tMtEyH1AFxD2zFe6Y4uF4w4Yqa8F": [ + { + "amount": "72.954954716", + "slot": { + "period": 129557, + "thread": 3 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 312947, + "thread": 5 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 462540, + "thread": 19 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 585770, + "thread": 0 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 658492, + "thread": 29 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 902495, + "thread": 4 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1014788, + "thread": 5 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1196623, + "thread": 29 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1468512, + "thread": 29 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1598085, + "thread": 10 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1665998, + "thread": 6 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 1910958, + "thread": 20 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2137156, + "thread": 9 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2276263, + "thread": 7 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2428218, + "thread": 6 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2566985, + "thread": 9 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2779749, + "thread": 26 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 2885498, + "thread": 31 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 3050124, + "thread": 11 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 3229691, + "thread": 20 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 3361120, + "thread": 25 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 3564763, + "thread": 3 + } + }, + { + "amount": "72.954954716", + "slot": { + "period": 3761163, + "thread": 0 + } + }, + { + "amount": "72.954954717", + "slot": { + "period": 3910844, + "thread": 29 + } + } + ], + "AU124ywZYmwcHfp945AYgCJggC9WBEopS4Jm4D7FuSnSUXNKxWCJj": [ + { + "amount": "204.092150589", + "slot": { + "period": 73821, + "thread": 5 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 189623, + "thread": 21 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 379175, + "thread": 18 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 509231, + "thread": 14 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 741356, + "thread": 11 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 898387, + "thread": 28 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1079726, + "thread": 10 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1180778, + "thread": 6 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1476146, + "thread": 8 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1644953, + "thread": 7 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1805147, + "thread": 2 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 1811409, + "thread": 0 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2071864, + "thread": 5 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2182633, + "thread": 5 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2330542, + "thread": 7 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2615621, + "thread": 10 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2730945, + "thread": 23 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 2868819, + "thread": 26 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 3010386, + "thread": 19 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 3150377, + "thread": 23 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 3436324, + "thread": 28 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 3577101, + "thread": 19 + } + }, + { + "amount": "204.092150589", + "slot": { + "period": 3660568, + "thread": 20 + } + }, + { + "amount": "204.092150590", + "slot": { + "period": 3870527, + "thread": 0 + } + } + ], + "AU124za68QGWWZNyXu9CZepPrTGXaEcMmeJsQGgF8qGWPBdvy66pt": [ + { + "amount": "108.362955465", + "slot": { + "period": 128510, + "thread": 24 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 168053, + "thread": 22 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 491363, + "thread": 12 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 645074, + "thread": 8 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 726701, + "thread": 7 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 938053, + "thread": 30 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1014893, + "thread": 12 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1277678, + "thread": 20 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1339175, + "thread": 22 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1635236, + "thread": 2 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1729563, + "thread": 16 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 1823488, + "thread": 17 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2022681, + "thread": 20 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2182230, + "thread": 6 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2345310, + "thread": 19 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2499660, + "thread": 14 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2687973, + "thread": 12 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 2802349, + "thread": 13 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 3083777, + "thread": 19 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 3277209, + "thread": 29 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 3290668, + "thread": 9 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 3567067, + "thread": 0 + } + }, + { + "amount": "108.362955465", + "slot": { + "period": 3713846, + "thread": 29 + } + }, + { + "amount": "108.362955469", + "slot": { + "period": 3843577, + "thread": 7 + } + } + ], + "AU1251Uha5nc8m7rHzrpTqNDY8Cbc1bx1TyJh8PXnuHiPv7WRbYxr": [ + { + "amount": "327.150385868", + "slot": { + "period": 80448, + "thread": 31 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 273794, + "thread": 22 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 423528, + "thread": 23 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 562994, + "thread": 6 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 711272, + "thread": 23 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 858554, + "thread": 28 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1010251, + "thread": 21 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1174883, + "thread": 12 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1369653, + "thread": 11 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1533430, + "thread": 10 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1658032, + "thread": 24 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 1867558, + "thread": 30 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2072878, + "thread": 10 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2199037, + "thread": 23 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2397775, + "thread": 6 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2614713, + "thread": 26 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2729911, + "thread": 25 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 2895991, + "thread": 10 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 3096040, + "thread": 25 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 3238280, + "thread": 0 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 3292710, + "thread": 16 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 3557788, + "thread": 10 + } + }, + { + "amount": "327.150385868", + "slot": { + "period": 3756545, + "thread": 27 + } + }, + { + "amount": "327.150385880", + "slot": { + "period": 3937513, + "thread": 26 + } + } + ], + "AU1251ZUictzwaBCyRmd9sGXUqibbnTRY3P48wV6q4JWqR9FnP4yg": [ + { + "amount": "86.763867145", + "slot": { + "period": 39840, + "thread": 9 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 233543, + "thread": 17 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 381153, + "thread": 24 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 502572, + "thread": 4 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 789169, + "thread": 22 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 867589, + "thread": 9 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1037293, + "thread": 2 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1198330, + "thread": 7 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1458629, + "thread": 15 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1572223, + "thread": 17 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1792139, + "thread": 9 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 1945716, + "thread": 6 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2106010, + "thread": 8 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2252570, + "thread": 25 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2356312, + "thread": 20 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2553892, + "thread": 12 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2659089, + "thread": 2 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2838774, + "thread": 1 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 2992383, + "thread": 29 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 3218686, + "thread": 7 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 3342172, + "thread": 16 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 3507950, + "thread": 30 + } + }, + { + "amount": "86.763867145", + "slot": { + "period": 3675168, + "thread": 18 + } + }, + { + "amount": "86.763867141", + "slot": { + "period": 3849025, + "thread": 11 + } + } + ], + "AU1252qjMCqpXLAWDXyQuAJTwKRgdCD4k9443r6A61LwM1vwvkmSa": [ + { + "amount": "58.053961269", + "slot": { + "period": 49393, + "thread": 9 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 276544, + "thread": 4 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 365994, + "thread": 23 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 505792, + "thread": 13 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 779159, + "thread": 10 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 885043, + "thread": 29 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1079357, + "thread": 4 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1187927, + "thread": 1 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1341263, + "thread": 0 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1613119, + "thread": 31 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1709687, + "thread": 23 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 1962022, + "thread": 11 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2133749, + "thread": 22 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2149694, + "thread": 19 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2387259, + "thread": 26 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2568791, + "thread": 7 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2771142, + "thread": 18 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 2806091, + "thread": 24 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 3079905, + "thread": 14 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 3147916, + "thread": 29 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 3359028, + "thread": 12 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 3561003, + "thread": 21 + } + }, + { + "amount": "58.053961269", + "slot": { + "period": 3738413, + "thread": 16 + } + }, + { + "amount": "58.053961262", + "slot": { + "period": 3909318, + "thread": 8 + } + } + ], + "AU1253ypcX8MFPqG6xtgtYfDevMwzdunykBZLc5mXb6QsPFWNYpB1": [ + { + "amount": "561.955939522", + "slot": { + "period": 94514, + "thread": 20 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 211966, + "thread": 24 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 397651, + "thread": 28 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 601610, + "thread": 3 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 713622, + "thread": 7 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 927406, + "thread": 13 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 999648, + "thread": 4 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 1165381, + "thread": 3 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 1345895, + "thread": 12 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 1585095, + "thread": 13 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 1732361, + "thread": 28 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 1826075, + "thread": 22 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2040174, + "thread": 31 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2201386, + "thread": 15 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2441446, + "thread": 20 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2529221, + "thread": 24 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2711319, + "thread": 17 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2938985, + "thread": 15 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 2958198, + "thread": 22 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 3273618, + "thread": 1 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 3330670, + "thread": 7 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 3558407, + "thread": 18 + } + }, + { + "amount": "561.955939522", + "slot": { + "period": 3749662, + "thread": 31 + } + }, + { + "amount": "561.955939515", + "slot": { + "period": 3912986, + "thread": 5 + } + } + ], + "AU1254jvZNPCJxBixt9dAohT9tzgCKxY2u4SKpknLWhzzFquPs16X": [ + { + "amount": "136.554102414", + "slot": { + "period": 139990, + "thread": 3 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 194541, + "thread": 13 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 390993, + "thread": 1 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 534494, + "thread": 19 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 790820, + "thread": 0 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 895793, + "thread": 21 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 987671, + "thread": 4 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 1304667, + "thread": 14 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 1444647, + "thread": 0 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 1532688, + "thread": 14 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 1706131, + "thread": 3 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 1811079, + "thread": 20 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2102540, + "thread": 2 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2146836, + "thread": 2 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2396713, + "thread": 16 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2481419, + "thread": 24 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2672359, + "thread": 3 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2928734, + "thread": 2 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 2987781, + "thread": 13 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 3260308, + "thread": 22 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 3441599, + "thread": 6 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 3518357, + "thread": 30 + } + }, + { + "amount": "136.554102414", + "slot": { + "period": 3717225, + "thread": 23 + } + }, + { + "amount": "136.554102412", + "slot": { + "period": 3897028, + "thread": 3 + } + } + ], + "AU1255y1KUUk8xhMN6PL3rmE8284hK1HwuzAY4JX2b6q6waCJpM67": [ + { + "amount": "568.204721439", + "slot": { + "period": 97268, + "thread": 14 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 284250, + "thread": 18 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 394774, + "thread": 30 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 636435, + "thread": 25 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 811880, + "thread": 17 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 848852, + "thread": 12 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1093049, + "thread": 5 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1193537, + "thread": 4 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1402923, + "thread": 5 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1606491, + "thread": 31 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1736561, + "thread": 22 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 1936264, + "thread": 13 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2032887, + "thread": 28 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2242882, + "thread": 26 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2374220, + "thread": 27 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2505874, + "thread": 30 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2652443, + "thread": 21 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2812322, + "thread": 16 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 2982063, + "thread": 2 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 3174799, + "thread": 30 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 3362366, + "thread": 14 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 3551471, + "thread": 5 + } + }, + { + "amount": "568.204721439", + "slot": { + "period": 3725620, + "thread": 23 + } + }, + { + "amount": "568.204721444", + "slot": { + "period": 3919514, + "thread": 1 + } + } + ], + "AU1256AQVyQr2wirVQaN6dyDL1yEQXMWiPTYtzro2ravLN4HPK4iT": [ + { + "amount": "77.079665685", + "slot": { + "period": 39239, + "thread": 4 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 280953, + "thread": 18 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 413296, + "thread": 10 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 598678, + "thread": 31 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 701795, + "thread": 2 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 967243, + "thread": 23 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1038020, + "thread": 28 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1263612, + "thread": 21 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1360933, + "thread": 16 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1611179, + "thread": 27 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1758341, + "thread": 2 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 1973055, + "thread": 24 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2118248, + "thread": 0 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2198700, + "thread": 6 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2335727, + "thread": 27 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2565754, + "thread": 23 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2736413, + "thread": 16 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 2917859, + "thread": 8 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 3077158, + "thread": 31 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 3222192, + "thread": 1 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 3352956, + "thread": 21 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 3577136, + "thread": 26 + } + }, + { + "amount": "77.079665685", + "slot": { + "period": 3773812, + "thread": 2 + } + }, + { + "amount": "77.079665680", + "slot": { + "period": 3923448, + "thread": 22 + } + } + ], + "AU1256Y82ufYRqn7TYQvU56onJZcL8jWHaDMVFuqy7w3v2Ufx1PUt": [ + { + "amount": "172.190606102", + "slot": { + "period": 131821, + "thread": 18 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 258227, + "thread": 19 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 470084, + "thread": 10 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 493949, + "thread": 18 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 802292, + "thread": 29 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 919998, + "thread": 0 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1043849, + "thread": 10 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1211440, + "thread": 1 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1325213, + "thread": 26 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1574764, + "thread": 17 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1752399, + "thread": 16 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 1917109, + "thread": 18 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2117537, + "thread": 19 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2167238, + "thread": 2 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2438102, + "thread": 8 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2503698, + "thread": 6 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2748485, + "thread": 21 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2907600, + "thread": 29 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 2973936, + "thread": 25 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 3132788, + "thread": 15 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 3393583, + "thread": 23 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 3544591, + "thread": 26 + } + }, + { + "amount": "172.190606102", + "slot": { + "period": 3699846, + "thread": 20 + } + }, + { + "amount": "172.190606090", + "slot": { + "period": 3907266, + "thread": 18 + } + } + ], + "AU1256fbs41oNKvKePnrYYrx11m1Nwup2eQV4EnaCskL6ahTkbfaa": [ + { + "amount": "192.346887037", + "slot": { + "period": 105894, + "thread": 18 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 276418, + "thread": 18 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 355488, + "thread": 20 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 570703, + "thread": 2 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 658225, + "thread": 7 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 822627, + "thread": 29 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1020792, + "thread": 21 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1235574, + "thread": 21 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1454628, + "thread": 3 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1602211, + "thread": 27 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1720150, + "thread": 10 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 1836308, + "thread": 24 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2035576, + "thread": 22 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2161544, + "thread": 25 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2381676, + "thread": 21 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2532581, + "thread": 31 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2678857, + "thread": 22 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 2921730, + "thread": 20 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 3035523, + "thread": 23 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 3203156, + "thread": 2 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 3399210, + "thread": 16 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 3603156, + "thread": 6 + } + }, + { + "amount": "192.346887037", + "slot": { + "period": 3708806, + "thread": 7 + } + }, + { + "amount": "192.346887038", + "slot": { + "period": 3835030, + "thread": 5 + } + } + ], + "AU1257pBqsHoV2sthgmMQMWgs79KUt4UNf6AyerggCkKqsNEuFFyn": [ + { + "amount": "186.541278184", + "slot": { + "period": 11965, + "thread": 23 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 322696, + "thread": 19 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 462818, + "thread": 10 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 514538, + "thread": 16 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 697138, + "thread": 31 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 864985, + "thread": 28 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1044445, + "thread": 4 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1266399, + "thread": 8 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1461950, + "thread": 24 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1604819, + "thread": 16 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1697593, + "thread": 0 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 1879265, + "thread": 10 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2137464, + "thread": 1 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2243766, + "thread": 18 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2321817, + "thread": 25 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2535461, + "thread": 30 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2733341, + "thread": 13 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2919710, + "thread": 5 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 2959097, + "thread": 6 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 3243539, + "thread": 21 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 3416942, + "thread": 27 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 3528049, + "thread": 3 + } + }, + { + "amount": "186.541278184", + "slot": { + "period": 3722560, + "thread": 12 + } + }, + { + "amount": "186.541278190", + "slot": { + "period": 3797331, + "thread": 18 + } + } + ], + "AU1257ruk8EFhh2pF6mugT9MTjPkD72NyFJ9MF7UANj2piePA3V5S": [ + { + "amount": "419.469408609", + "slot": { + "period": 87997, + "thread": 28 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 194656, + "thread": 4 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 327270, + "thread": 8 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 502871, + "thread": 5 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 811662, + "thread": 20 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 867009, + "thread": 9 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1088491, + "thread": 24 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1221123, + "thread": 1 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1332294, + "thread": 5 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1495349, + "thread": 15 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1709283, + "thread": 24 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 1955465, + "thread": 29 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2103786, + "thread": 28 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2180842, + "thread": 7 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2433583, + "thread": 12 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2523625, + "thread": 15 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2724260, + "thread": 22 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2807487, + "thread": 8 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 2984879, + "thread": 4 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 3171029, + "thread": 28 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 3415496, + "thread": 19 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 3606806, + "thread": 13 + } + }, + { + "amount": "419.469408609", + "slot": { + "period": 3658460, + "thread": 20 + } + }, + { + "amount": "419.469408618", + "slot": { + "period": 3874250, + "thread": 13 + } + } + ], + "AU125APnkou6q71PAjhE29jSSM6xx2Lx7XmEb6yzMUk7zCUQB4TZa": [ + { + "amount": "199.727301453", + "slot": { + "period": 138671, + "thread": 3 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 260704, + "thread": 0 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 332785, + "thread": 30 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 630609, + "thread": 23 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 809139, + "thread": 21 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 937187, + "thread": 6 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1068670, + "thread": 24 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1220323, + "thread": 10 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1384753, + "thread": 17 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1552112, + "thread": 4 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1790497, + "thread": 31 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 1876531, + "thread": 21 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2076295, + "thread": 1 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2148663, + "thread": 25 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2343892, + "thread": 31 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2500278, + "thread": 27 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2705309, + "thread": 29 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 2793191, + "thread": 14 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 3033147, + "thread": 24 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 3218181, + "thread": 22 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 3329964, + "thread": 16 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 3607760, + "thread": 27 + } + }, + { + "amount": "199.727301453", + "slot": { + "period": 3716233, + "thread": 0 + } + }, + { + "amount": "199.727301449", + "slot": { + "period": 3794590, + "thread": 5 + } + } + ], + "AU125AxL4f8YFzwxYD3NkKSKqVbmxbGDsAKjVSc84X3MzbwUH58vK": [ + { + "amount": "147.525884752", + "slot": { + "period": 76973, + "thread": 3 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 316074, + "thread": 29 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 440320, + "thread": 20 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 600366, + "thread": 29 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 801376, + "thread": 22 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 934034, + "thread": 2 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1002355, + "thread": 28 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1174457, + "thread": 21 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1434111, + "thread": 16 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1512633, + "thread": 14 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1678244, + "thread": 25 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1937654, + "thread": 19 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 1988335, + "thread": 0 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 2269595, + "thread": 8 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 2409491, + "thread": 23 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 2608601, + "thread": 30 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 2635931, + "thread": 17 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 2820127, + "thread": 24 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 3031407, + "thread": 26 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 3234393, + "thread": 22 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 3348514, + "thread": 5 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 3491731, + "thread": 5 + } + }, + { + "amount": "147.525884752", + "slot": { + "period": 3771803, + "thread": 26 + } + }, + { + "amount": "147.525884755", + "slot": { + "period": 3784226, + "thread": 26 + } + } + ], + "AU125B2SwkHGPdFHnhRssUM6ifyYLPVtE3XwqhDnHcT3syv4FnzaP": [ + { + "amount": "150.165307820", + "slot": { + "period": 115228, + "thread": 1 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 192593, + "thread": 11 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 437202, + "thread": 30 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 620557, + "thread": 29 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 681147, + "thread": 21 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 923129, + "thread": 14 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1021253, + "thread": 5 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1222689, + "thread": 10 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1467518, + "thread": 26 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1511924, + "thread": 16 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1786421, + "thread": 25 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 1876859, + "thread": 10 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2116641, + "thread": 24 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2245916, + "thread": 16 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2416838, + "thread": 24 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2582643, + "thread": 15 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2641702, + "thread": 8 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 2811166, + "thread": 11 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 3060380, + "thread": 20 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 3199197, + "thread": 31 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 3310076, + "thread": 14 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 3505950, + "thread": 20 + } + }, + { + "amount": "150.165307820", + "slot": { + "period": 3753442, + "thread": 7 + } + }, + { + "amount": "150.165307810", + "slot": { + "period": 3841862, + "thread": 13 + } + } + ], + "AU125BFSzDYKrvrRUXFjz9wprPi9RzrWj7agFgMLfSXrpjwpZmXZB": [ + { + "amount": "76.206208040", + "slot": { + "period": 21308, + "thread": 21 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 316110, + "thread": 16 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 443367, + "thread": 22 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 620026, + "thread": 18 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 712731, + "thread": 27 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 849171, + "thread": 30 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1109140, + "thread": 25 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1315270, + "thread": 14 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1382191, + "thread": 1 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1545977, + "thread": 15 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1664703, + "thread": 1 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 1936030, + "thread": 30 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2055614, + "thread": 6 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2290912, + "thread": 24 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2380317, + "thread": 0 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2606065, + "thread": 18 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2693378, + "thread": 5 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 2891231, + "thread": 16 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3063776, + "thread": 13 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3266602, + "thread": 15 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3299179, + "thread": 17 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3570129, + "thread": 17 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3724164, + "thread": 13 + } + }, + { + "amount": "76.206208040", + "slot": { + "period": 3880788, + "thread": 27 + } + } + ], + "AU125CWMZkg75YwoeSQ4UWemQpRerut1n6XU9wABjnuGHzGD9zgPz": [ + { + "amount": "105.436535948", + "slot": { + "period": 136171, + "thread": 31 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 197599, + "thread": 15 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 326553, + "thread": 3 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 538560, + "thread": 19 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 791680, + "thread": 7 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 937461, + "thread": 10 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1109500, + "thread": 23 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1211163, + "thread": 1 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1456017, + "thread": 28 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1596062, + "thread": 14 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1692755, + "thread": 16 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 1912558, + "thread": 1 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2040438, + "thread": 23 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2212409, + "thread": 22 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2396196, + "thread": 0 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2492793, + "thread": 28 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2628378, + "thread": 1 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 2872406, + "thread": 3 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 3046533, + "thread": 18 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 3252188, + "thread": 10 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 3290358, + "thread": 23 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 3533513, + "thread": 22 + } + }, + { + "amount": "105.436535948", + "slot": { + "period": 3723607, + "thread": 1 + } + }, + { + "amount": "105.436535947", + "slot": { + "period": 3901216, + "thread": 10 + } + } + ], + "AU125Ct21w2GpeTY8GiU8m35mDcBMK24BxzqSiEBxdDxHpQV8Zj9x": [ + { + "amount": "128.706426205", + "slot": { + "period": 93638, + "thread": 3 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 263413, + "thread": 5 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 384424, + "thread": 20 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 561676, + "thread": 18 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 693211, + "thread": 6 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 952446, + "thread": 12 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 986590, + "thread": 15 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 1245641, + "thread": 15 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 1390816, + "thread": 13 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 1513814, + "thread": 12 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 1742503, + "thread": 15 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 1891606, + "thread": 27 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2019538, + "thread": 28 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2288378, + "thread": 18 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2412404, + "thread": 24 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2597757, + "thread": 17 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2740862, + "thread": 26 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 2815092, + "thread": 29 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 3085137, + "thread": 25 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 3123190, + "thread": 31 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 3368228, + "thread": 8 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 3451350, + "thread": 13 + } + }, + { + "amount": "128.706426205", + "slot": { + "period": 3646718, + "thread": 1 + } + }, + { + "amount": "128.706426216", + "slot": { + "period": 3887988, + "thread": 17 + } + } + ], + "AU125D5HtqwKgLednsTA1cryyCiYVHMjvyb8vD8MxCzhGt4dnu7oU": [ + { + "amount": "156.222822474", + "slot": { + "period": 150069, + "thread": 1 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 309384, + "thread": 29 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 488043, + "thread": 26 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 632945, + "thread": 21 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 692272, + "thread": 20 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 892699, + "thread": 21 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1126724, + "thread": 20 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1181753, + "thread": 30 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1380037, + "thread": 30 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1509116, + "thread": 2 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1672645, + "thread": 9 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1822762, + "thread": 9 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 1999512, + "thread": 24 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 2205090, + "thread": 17 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 2318692, + "thread": 28 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 2528980, + "thread": 14 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 2680040, + "thread": 27 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 2830931, + "thread": 31 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 3101074, + "thread": 3 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 3179389, + "thread": 13 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 3360913, + "thread": 1 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 3594882, + "thread": 1 + } + }, + { + "amount": "156.222822474", + "slot": { + "period": 3750103, + "thread": 26 + } + }, + { + "amount": "156.222822471", + "slot": { + "period": 3876093, + "thread": 20 + } + } + ], + "AU125DKqukJdowwwKuXqy5USAwWcNw8HBSgWwnX7k1edUU8if24dt": [ + { + "amount": "57.188215023", + "slot": { + "period": 123620, + "thread": 10 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 279402, + "thread": 13 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 367637, + "thread": 6 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 567750, + "thread": 25 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 805786, + "thread": 23 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 952988, + "thread": 11 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1025632, + "thread": 5 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1254048, + "thread": 4 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1382986, + "thread": 27 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1508232, + "thread": 0 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1694755, + "thread": 26 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1974810, + "thread": 7 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 1990718, + "thread": 14 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2233238, + "thread": 22 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2445141, + "thread": 0 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2538159, + "thread": 22 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2776916, + "thread": 19 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2900601, + "thread": 12 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 2966681, + "thread": 26 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 3153948, + "thread": 8 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 3322898, + "thread": 28 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 3600340, + "thread": 25 + } + }, + { + "amount": "57.188215023", + "slot": { + "period": 3653859, + "thread": 14 + } + }, + { + "amount": "57.188215030", + "slot": { + "period": 3812494, + "thread": 20 + } + } + ], + "AU125DVB91p7g3pV2mpBxYNHKsmtWDqJfkuuynrtnMqhxaJecWvoe": [ + { + "amount": "147.208341269", + "slot": { + "period": 116433, + "thread": 4 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 299735, + "thread": 5 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 479901, + "thread": 1 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 640388, + "thread": 31 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 797552, + "thread": 28 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 848795, + "thread": 11 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1119398, + "thread": 4 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1189383, + "thread": 21 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1417623, + "thread": 25 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1616170, + "thread": 9 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1665409, + "thread": 17 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 1844480, + "thread": 22 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2037735, + "thread": 15 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2193565, + "thread": 24 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2314347, + "thread": 5 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2475776, + "thread": 22 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2725241, + "thread": 15 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 2793481, + "thread": 24 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 3100772, + "thread": 13 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 3202535, + "thread": 14 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 3441104, + "thread": 18 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 3452103, + "thread": 12 + } + }, + { + "amount": "147.208341269", + "slot": { + "period": 3701811, + "thread": 17 + } + }, + { + "amount": "147.208341262", + "slot": { + "period": 3799318, + "thread": 23 + } + } + ], + "AU125GAxavfvAuSLWoNHiPSchxHo5upRv4aX5VLeoWFznwGDvo1VM": [ + { + "amount": "183.378937211", + "slot": { + "period": 77193, + "thread": 2 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 175159, + "thread": 19 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 441881, + "thread": 18 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 613775, + "thread": 2 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 758838, + "thread": 1 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 838705, + "thread": 29 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1016927, + "thread": 10 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1156020, + "thread": 4 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1458108, + "thread": 7 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1586657, + "thread": 2 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1741112, + "thread": 17 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 1818791, + "thread": 7 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2047576, + "thread": 25 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2168024, + "thread": 30 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2338073, + "thread": 0 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2502483, + "thread": 18 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2696325, + "thread": 11 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 2942548, + "thread": 16 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 3094575, + "thread": 31 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 3226509, + "thread": 13 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 3359077, + "thread": 28 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 3525053, + "thread": 10 + } + }, + { + "amount": "183.378937211", + "slot": { + "period": 3767828, + "thread": 24 + } + }, + { + "amount": "183.378937217", + "slot": { + "period": 3876357, + "thread": 9 + } + } + ], + "AU125HB3Y2rDvZpwKEQ9YkHdPiZGFBzctt7dVtCr95KaovGki9xDU": [ + { + "amount": "134.162720905", + "slot": { + "period": 103644, + "thread": 31 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 278332, + "thread": 24 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 438162, + "thread": 27 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 512040, + "thread": 19 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 765837, + "thread": 20 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 907234, + "thread": 5 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1081451, + "thread": 14 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1291539, + "thread": 12 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1321364, + "thread": 4 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1547806, + "thread": 15 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1792722, + "thread": 20 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1958308, + "thread": 16 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 1980858, + "thread": 19 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 2285617, + "thread": 2 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 2307783, + "thread": 0 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 2623677, + "thread": 30 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 2648523, + "thread": 9 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 2798399, + "thread": 26 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 3009117, + "thread": 29 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 3229915, + "thread": 11 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 3438389, + "thread": 21 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 3592689, + "thread": 13 + } + }, + { + "amount": "134.162720905", + "slot": { + "period": 3726807, + "thread": 14 + } + }, + { + "amount": "134.162720916", + "slot": { + "period": 3871525, + "thread": 29 + } + } + ], + "AU125HMuK7X7sJX8DupGGkYdj5srbJpp6uV7CnaJsv3XtRmpkWChj": [ + { + "amount": "466.460836667", + "slot": { + "period": 14581, + "thread": 17 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 244600, + "thread": 23 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 330189, + "thread": 14 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 528207, + "thread": 31 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 801672, + "thread": 11 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 834547, + "thread": 7 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1132651, + "thread": 12 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1172566, + "thread": 22 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1435096, + "thread": 1 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1588823, + "thread": 12 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1650570, + "thread": 4 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 1863934, + "thread": 16 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2128383, + "thread": 12 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2265043, + "thread": 24 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2325004, + "thread": 26 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2520887, + "thread": 25 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2764344, + "thread": 26 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 2821393, + "thread": 13 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 3101640, + "thread": 7 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 3157661, + "thread": 26 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 3403537, + "thread": 14 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 3579254, + "thread": 3 + } + }, + { + "amount": "466.460836667", + "slot": { + "period": 3727671, + "thread": 18 + } + }, + { + "amount": "466.460836674", + "slot": { + "period": 3795202, + "thread": 26 + } + } + ], + "AU125HPi8ULfcokqd9Lxtjwf1CZzHGw7Dt362e5wDU9QGtmU99rz7": [ + { + "amount": "164.211640861", + "slot": { + "period": 72610, + "thread": 4 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 195873, + "thread": 26 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 437631, + "thread": 29 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 612693, + "thread": 9 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 685298, + "thread": 11 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 857104, + "thread": 13 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1034545, + "thread": 23 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1196365, + "thread": 27 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1351416, + "thread": 13 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1636514, + "thread": 10 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1761617, + "thread": 9 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 1944026, + "thread": 27 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2090379, + "thread": 28 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2264524, + "thread": 3 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2430158, + "thread": 21 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2521847, + "thread": 21 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2675723, + "thread": 5 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 2899796, + "thread": 17 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 3005514, + "thread": 18 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 3194496, + "thread": 2 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 3314333, + "thread": 1 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 3609180, + "thread": 28 + } + }, + { + "amount": "164.211640861", + "slot": { + "period": 3694083, + "thread": 1 + } + }, + { + "amount": "164.211640860", + "slot": { + "period": 3892486, + "thread": 27 + } + } + ], + "AU125HR2SjMDVfPhVPrHL3cywNGeAZxcA8Je6rQMsZX3ynGLeBESH": [ + { + "amount": "399.417939826", + "slot": { + "period": 18066, + "thread": 20 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 227186, + "thread": 27 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 332948, + "thread": 31 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 625613, + "thread": 22 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 689460, + "thread": 1 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 907924, + "thread": 17 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1000274, + "thread": 15 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1294447, + "thread": 19 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1432562, + "thread": 28 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1488431, + "thread": 6 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1665114, + "thread": 24 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1880469, + "thread": 18 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 1987156, + "thread": 23 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 2292550, + "thread": 20 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 2417726, + "thread": 21 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 2499224, + "thread": 15 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 2689437, + "thread": 24 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 2813974, + "thread": 29 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 3031144, + "thread": 1 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 3192586, + "thread": 9 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 3441852, + "thread": 13 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 3572810, + "thread": 0 + } + }, + { + "amount": "399.417939826", + "slot": { + "period": 3772597, + "thread": 9 + } + }, + { + "amount": "399.417939835", + "slot": { + "period": 3787185, + "thread": 30 + } + } + ], + "AU125JZ4m2e9dU3jKTxgjvPbMyxj4LZy6UW4y3YAzmiYHPKKM9Q1n": [ + { + "amount": "116.058726204", + "slot": { + "period": 142591, + "thread": 5 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 215976, + "thread": 27 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 453243, + "thread": 29 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 641877, + "thread": 24 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 675273, + "thread": 8 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 882500, + "thread": 16 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1069024, + "thread": 15 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1295996, + "thread": 19 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1322832, + "thread": 0 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1492923, + "thread": 19 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1676046, + "thread": 20 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 1879807, + "thread": 2 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2143221, + "thread": 21 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2175002, + "thread": 5 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2449477, + "thread": 12 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2575460, + "thread": 14 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2758094, + "thread": 13 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2845041, + "thread": 14 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 2979359, + "thread": 10 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 3189422, + "thread": 4 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 3347566, + "thread": 10 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 3537628, + "thread": 2 + } + }, + { + "amount": "116.058726204", + "slot": { + "period": 3745816, + "thread": 16 + } + }, + { + "amount": "116.058726207", + "slot": { + "period": 3800063, + "thread": 18 + } + } + ], + "AU125JsjRChkpbynpKyLWXPJ2d2KgDLykKVgJTb6DDdsawufDZ2AL": [ + { + "amount": "143.924610343", + "slot": { + "period": 29427, + "thread": 29 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 321211, + "thread": 15 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 374939, + "thread": 27 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 616719, + "thread": 1 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 666391, + "thread": 3 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 930479, + "thread": 28 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1016864, + "thread": 29 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1272245, + "thread": 17 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1412343, + "thread": 29 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1557633, + "thread": 8 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1726605, + "thread": 15 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 1910151, + "thread": 11 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2065427, + "thread": 16 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2268223, + "thread": 31 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2436601, + "thread": 20 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2551854, + "thread": 8 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2700398, + "thread": 7 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 2827318, + "thread": 4 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 3104549, + "thread": 3 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 3133367, + "thread": 7 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 3300933, + "thread": 29 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 3542993, + "thread": 12 + } + }, + { + "amount": "143.924610343", + "slot": { + "period": 3704723, + "thread": 0 + } + }, + { + "amount": "143.924610354", + "slot": { + "period": 3786775, + "thread": 15 + } + } + ], + "AU125K4CrR4rFqH21zoHGSMeXfNQDz1iq4CArp4NKD5jQqeJQP61y": [ + { + "amount": "113.411219066", + "slot": { + "period": 14404, + "thread": 28 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 271713, + "thread": 13 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 326184, + "thread": 8 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 623978, + "thread": 13 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 682173, + "thread": 6 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 958217, + "thread": 25 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1017595, + "thread": 7 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1224858, + "thread": 5 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1345017, + "thread": 15 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1608140, + "thread": 22 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1724435, + "thread": 22 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 1868588, + "thread": 7 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2074163, + "thread": 12 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2181641, + "thread": 17 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2320240, + "thread": 7 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2607806, + "thread": 2 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2753755, + "thread": 28 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 2836760, + "thread": 14 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 3095721, + "thread": 1 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 3201745, + "thread": 9 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 3405718, + "thread": 24 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 3552513, + "thread": 16 + } + }, + { + "amount": "113.411219066", + "slot": { + "period": 3709549, + "thread": 5 + } + }, + { + "amount": "113.411219056", + "slot": { + "period": 3810316, + "thread": 2 + } + } + ], + "AU125KSUgGGc5t2pa6UtkVnRmrwf3VavnZGdBDiHvZaywUheLaaJv": [ + { + "amount": "120.307415222", + "slot": { + "period": 78942, + "thread": 29 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 173853, + "thread": 0 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 401771, + "thread": 8 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 516424, + "thread": 31 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 809399, + "thread": 19 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 911517, + "thread": 24 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1032780, + "thread": 4 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1239344, + "thread": 24 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1443843, + "thread": 3 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1519967, + "thread": 27 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1768611, + "thread": 20 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 1810451, + "thread": 10 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2004038, + "thread": 0 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2248395, + "thread": 4 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2313412, + "thread": 19 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2520849, + "thread": 0 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2741754, + "thread": 11 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 2914218, + "thread": 19 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 3054905, + "thread": 11 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 3249640, + "thread": 28 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 3365982, + "thread": 2 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 3467163, + "thread": 15 + } + }, + { + "amount": "120.307415222", + "slot": { + "period": 3634965, + "thread": 16 + } + }, + { + "amount": "120.307415210", + "slot": { + "period": 3908679, + "thread": 31 + } + } + ], + "AU125Lq7bC3CVrFo64AF7L7X13ETfGyhpkY8yANQjrRUpi4vFh5kd": [ + { + "amount": "148.521284821", + "slot": { + "period": 104746, + "thread": 27 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 297216, + "thread": 1 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 410464, + "thread": 9 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 494107, + "thread": 29 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 808651, + "thread": 6 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 946914, + "thread": 16 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1035315, + "thread": 17 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1156636, + "thread": 7 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1422435, + "thread": 1 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1598000, + "thread": 26 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1715523, + "thread": 28 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 1892012, + "thread": 9 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2040223, + "thread": 22 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2268229, + "thread": 17 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2335720, + "thread": 4 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2506384, + "thread": 27 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2704119, + "thread": 16 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 2911567, + "thread": 31 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 3109707, + "thread": 11 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 3233780, + "thread": 0 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 3363292, + "thread": 15 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 3497305, + "thread": 26 + } + }, + { + "amount": "148.521284821", + "slot": { + "period": 3678255, + "thread": 2 + } + }, + { + "amount": "148.521284818", + "slot": { + "period": 3914917, + "thread": 23 + } + } + ], + "AU125MTmhE5wJRaHTWeV5TBpxanAcz3iP7fGWg6jES6tZEiHTVjSm": [ + { + "amount": "191.935952706", + "slot": { + "period": 75858, + "thread": 7 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 289407, + "thread": 31 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 448184, + "thread": 21 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 563346, + "thread": 29 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 716136, + "thread": 20 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 979155, + "thread": 24 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1054942, + "thread": 8 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1238804, + "thread": 19 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1322434, + "thread": 15 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1543201, + "thread": 26 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1746594, + "thread": 12 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 1852694, + "thread": 3 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2122872, + "thread": 4 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2217322, + "thread": 16 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2389348, + "thread": 18 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2539797, + "thread": 26 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2756429, + "thread": 23 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 2828765, + "thread": 4 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 3117309, + "thread": 19 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 3213768, + "thread": 9 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 3312456, + "thread": 18 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 3577333, + "thread": 5 + } + }, + { + "amount": "191.935952706", + "slot": { + "period": 3700161, + "thread": 26 + } + }, + { + "amount": "191.935952709", + "slot": { + "period": 3891657, + "thread": 18 + } + } + ], + "AU125Mw6ipkJozAXW5nSRQfGMnUqKkdb8WnVyX3wMCEchQPztk8de": [ + { + "amount": "137.393385875", + "slot": { + "period": 127262, + "thread": 19 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 300252, + "thread": 17 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 489096, + "thread": 31 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 643664, + "thread": 10 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 807068, + "thread": 28 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 901202, + "thread": 5 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1093452, + "thread": 27 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1245676, + "thread": 9 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1375980, + "thread": 30 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1535527, + "thread": 28 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1657043, + "thread": 6 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 1917156, + "thread": 28 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2000936, + "thread": 25 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2204685, + "thread": 21 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2432813, + "thread": 17 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2500739, + "thread": 15 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2648478, + "thread": 4 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2794083, + "thread": 2 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 2979187, + "thread": 29 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 3284904, + "thread": 8 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 3378228, + "thread": 30 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 3513369, + "thread": 4 + } + }, + { + "amount": "137.393385875", + "slot": { + "period": 3672792, + "thread": 15 + } + }, + { + "amount": "137.393385874", + "slot": { + "period": 3833645, + "thread": 1 + } + } + ], + "AU125NgaVHnyCyNGD6jduP8XgoUpmYLCKc1XoBUQxvrkJqc2HqqZs": [ + { + "amount": "605.536238572", + "slot": { + "period": 72887, + "thread": 31 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 177369, + "thread": 30 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 484603, + "thread": 23 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 549523, + "thread": 1 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 728957, + "thread": 20 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 982198, + "thread": 17 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1028797, + "thread": 12 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1206004, + "thread": 23 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1345829, + "thread": 3 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1571381, + "thread": 9 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1653588, + "thread": 30 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 1894545, + "thread": 10 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2055467, + "thread": 3 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2193918, + "thread": 5 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2315924, + "thread": 29 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2535888, + "thread": 0 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2681315, + "thread": 15 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 2938338, + "thread": 26 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 3090210, + "thread": 20 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 3167597, + "thread": 14 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 3332599, + "thread": 8 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 3525353, + "thread": 14 + } + }, + { + "amount": "605.536238572", + "slot": { + "period": 3706238, + "thread": 29 + } + }, + { + "amount": "605.536238583", + "slot": { + "period": 3918412, + "thread": 16 + } + } + ], + "AU125PGSDxPQ963A5WRFwxMscqrTmj1G7QB876HP4imntgZR3aTan": [ + { + "amount": "118.071165086", + "slot": { + "period": 157402, + "thread": 5 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 197876, + "thread": 15 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 483030, + "thread": 2 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 531295, + "thread": 21 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 752123, + "thread": 4 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 931631, + "thread": 16 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1031938, + "thread": 27 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1243529, + "thread": 29 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1377367, + "thread": 30 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1532482, + "thread": 10 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1726269, + "thread": 22 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 1941595, + "thread": 3 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2020063, + "thread": 14 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2144949, + "thread": 6 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2338511, + "thread": 12 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2577459, + "thread": 28 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2658619, + "thread": 11 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2868707, + "thread": 29 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 2979911, + "thread": 18 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 3138041, + "thread": 22 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 3448936, + "thread": 10 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 3577560, + "thread": 27 + } + }, + { + "amount": "118.071165086", + "slot": { + "period": 3635608, + "thread": 23 + } + }, + { + "amount": "118.071165089", + "slot": { + "period": 3803181, + "thread": 7 + } + } + ], + "AU125PNwWN4he8o9vnyqtGqfmpkeBvV9oWbjpi9J2Zj8DtzDhRtPs": [ + { + "amount": "93.245070219", + "slot": { + "period": 119365, + "thread": 14 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 249606, + "thread": 13 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 373547, + "thread": 18 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 604255, + "thread": 15 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 773110, + "thread": 9 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 979937, + "thread": 27 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1023790, + "thread": 0 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1212779, + "thread": 31 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1413981, + "thread": 2 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1600342, + "thread": 28 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1732129, + "thread": 2 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 1872052, + "thread": 12 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2048889, + "thread": 11 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2251951, + "thread": 12 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2452858, + "thread": 23 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2538509, + "thread": 30 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2725733, + "thread": 19 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 2942116, + "thread": 4 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 3099550, + "thread": 31 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 3215827, + "thread": 5 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 3337674, + "thread": 21 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 3492745, + "thread": 28 + } + }, + { + "amount": "93.245070219", + "slot": { + "period": 3620997, + "thread": 8 + } + }, + { + "amount": "93.245070216", + "slot": { + "period": 3821114, + "thread": 14 + } + } + ], + "AU125QGQyQVemcUJrcAhVt4qPY4tANReemmQ7VQuL11R4bw4sjHi2": [ + { + "amount": "106.696571768", + "slot": { + "period": 114375, + "thread": 3 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 210483, + "thread": 24 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 341321, + "thread": 6 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 511652, + "thread": 21 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 805568, + "thread": 7 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 974141, + "thread": 26 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1101610, + "thread": 2 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1283466, + "thread": 14 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1324888, + "thread": 0 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1538246, + "thread": 11 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1681330, + "thread": 5 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 1917982, + "thread": 2 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2013429, + "thread": 26 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2290772, + "thread": 0 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2343565, + "thread": 9 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2588788, + "thread": 13 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2730708, + "thread": 13 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 2863509, + "thread": 27 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 3076747, + "thread": 6 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 3215322, + "thread": 15 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 3328912, + "thread": 24 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 3614016, + "thread": 26 + } + }, + { + "amount": "106.696571768", + "slot": { + "period": 3775887, + "thread": 13 + } + }, + { + "amount": "106.696571777", + "slot": { + "period": 3849280, + "thread": 4 + } + } + ], + "AU125QLDcoJHHUWpMmkjjigCTHL1Hpk39RFGBaNizyCK961x9czEE": [ + { + "amount": "52.050884769", + "slot": { + "period": 135169, + "thread": 31 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 209034, + "thread": 20 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 346751, + "thread": 1 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 582050, + "thread": 16 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 723399, + "thread": 10 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 824153, + "thread": 26 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 995113, + "thread": 0 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 1180017, + "thread": 8 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 1419067, + "thread": 25 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 1644803, + "thread": 17 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 1680576, + "thread": 0 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 1911210, + "thread": 15 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2056292, + "thread": 29 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2191381, + "thread": 20 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2324550, + "thread": 16 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2543359, + "thread": 1 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2646909, + "thread": 4 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 2951072, + "thread": 25 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 3119744, + "thread": 21 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 3284263, + "thread": 6 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 3371283, + "thread": 24 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 3590500, + "thread": 17 + } + }, + { + "amount": "52.050884769", + "slot": { + "period": 3636738, + "thread": 18 + } + }, + { + "amount": "52.050884763", + "slot": { + "period": 3782318, + "thread": 8 + } + } + ], + "AU125RW2dUdeEtYwjGHoHJWd4sLfz9DmQH1aYo7WskCG83BXqynVi": [ + { + "amount": "142.659363535", + "slot": { + "period": 128255, + "thread": 2 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 181943, + "thread": 2 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 356465, + "thread": 6 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 643640, + "thread": 1 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 724794, + "thread": 28 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 825397, + "thread": 14 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1104463, + "thread": 16 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1202868, + "thread": 17 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1406510, + "thread": 1 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1566564, + "thread": 13 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1675244, + "thread": 23 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 1869169, + "thread": 3 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2085354, + "thread": 23 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2165849, + "thread": 0 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2387046, + "thread": 5 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2484558, + "thread": 29 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2645391, + "thread": 24 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 2841357, + "thread": 18 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 3005700, + "thread": 24 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 3262081, + "thread": 0 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 3364472, + "thread": 29 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 3498623, + "thread": 29 + } + }, + { + "amount": "142.659363535", + "slot": { + "period": 3631289, + "thread": 20 + } + }, + { + "amount": "142.659363527", + "slot": { + "period": 3836156, + "thread": 24 + } + } + ], + "AU125TLNQDTkMvWNv42Dmsx4mfQVj5mD9cugo6sHKrEE5ArtpyKHt": [ + { + "amount": "84.940487612", + "slot": { + "period": 13101, + "thread": 2 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 207269, + "thread": 13 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 409638, + "thread": 24 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 538763, + "thread": 8 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 779464, + "thread": 24 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 838313, + "thread": 20 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1105624, + "thread": 19 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1230868, + "thread": 22 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1355366, + "thread": 20 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1488472, + "thread": 22 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1700156, + "thread": 4 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 1969633, + "thread": 21 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2128704, + "thread": 4 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2213185, + "thread": 29 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2366853, + "thread": 17 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2532749, + "thread": 31 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2624779, + "thread": 12 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 2823538, + "thread": 12 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 3000159, + "thread": 6 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 3204360, + "thread": 3 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 3448410, + "thread": 26 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 3596884, + "thread": 19 + } + }, + { + "amount": "84.940487612", + "slot": { + "period": 3653058, + "thread": 29 + } + }, + { + "amount": "84.940487613", + "slot": { + "period": 3915973, + "thread": 22 + } + } + ], + "AU125TgqwnK3hwGaHYhkRAfQKtYkAbPaLMTpxGTgSrz3NpsFUDaU": [ + { + "amount": "256.317219037", + "slot": { + "period": 66525, + "thread": 3 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 291695, + "thread": 22 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 457522, + "thread": 12 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 506738, + "thread": 5 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 705668, + "thread": 21 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 831661, + "thread": 15 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1005781, + "thread": 16 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1288238, + "thread": 25 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1337713, + "thread": 13 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1576084, + "thread": 17 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1786333, + "thread": 10 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 1908786, + "thread": 6 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2133049, + "thread": 21 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2223074, + "thread": 4 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2355995, + "thread": 8 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2526963, + "thread": 18 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2768090, + "thread": 13 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 2889349, + "thread": 14 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3003957, + "thread": 13 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3188866, + "thread": 24 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3318334, + "thread": 8 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3579884, + "thread": 14 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3711290, + "thread": 6 + } + }, + { + "amount": "256.317219037", + "slot": { + "period": 3790587, + "thread": 3 + } + } + ], + "AU125UEAwFAZeWmPrmant2RSZvpqwrQRbTgVo42D5sWLP6CvRGSH7": [ + { + "amount": "81.085515742", + "slot": { + "period": 25720, + "thread": 17 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 201020, + "thread": 3 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 367589, + "thread": 26 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 570015, + "thread": 22 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 809763, + "thread": 11 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 904568, + "thread": 1 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1076945, + "thread": 7 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1218154, + "thread": 24 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1464077, + "thread": 31 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1552285, + "thread": 31 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1786079, + "thread": 8 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 1854526, + "thread": 27 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2070278, + "thread": 27 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2231667, + "thread": 7 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2379504, + "thread": 2 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2479830, + "thread": 29 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2745719, + "thread": 28 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 2814501, + "thread": 1 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 3034138, + "thread": 30 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 3215051, + "thread": 10 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 3446621, + "thread": 21 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 3597646, + "thread": 28 + } + }, + { + "amount": "81.085515742", + "slot": { + "period": 3730849, + "thread": 13 + } + }, + { + "amount": "81.085515731", + "slot": { + "period": 3912118, + "thread": 31 + } + } + ], + "AU125UphkCcHAyN3V1fA8GxEdR4cCtn5nsCER49UY1D9YKmb4EeKt": [ + { + "amount": "79.183868293", + "slot": { + "period": 62371, + "thread": 14 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 313575, + "thread": 31 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 476082, + "thread": 17 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 612689, + "thread": 23 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 670395, + "thread": 29 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 963115, + "thread": 28 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1052586, + "thread": 5 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1183531, + "thread": 20 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1428805, + "thread": 26 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1521145, + "thread": 13 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1758774, + "thread": 10 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 1843902, + "thread": 13 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2100912, + "thread": 27 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2154254, + "thread": 13 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2388966, + "thread": 31 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2568051, + "thread": 4 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2747418, + "thread": 10 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 2890029, + "thread": 2 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 3099078, + "thread": 16 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 3171599, + "thread": 2 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 3394084, + "thread": 5 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 3601945, + "thread": 19 + } + }, + { + "amount": "79.183868293", + "slot": { + "period": 3716053, + "thread": 13 + } + }, + { + "amount": "79.183868287", + "slot": { + "period": 3919031, + "thread": 24 + } + } + ], + "AU125VuLkyyXnmyunJ7Mh2rELjfLcq2SDJcD4DLTHhDvHZjZJ513o": [ + { + "amount": "216.379230292", + "slot": { + "period": 48404, + "thread": 29 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 178391, + "thread": 24 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 490973, + "thread": 24 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 609004, + "thread": 1 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 733640, + "thread": 29 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 859587, + "thread": 30 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1013266, + "thread": 30 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1294751, + "thread": 29 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1383443, + "thread": 16 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1569017, + "thread": 21 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1800423, + "thread": 12 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 1811313, + "thread": 16 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2065848, + "thread": 6 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2284965, + "thread": 2 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2421284, + "thread": 31 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2509603, + "thread": 8 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2660314, + "thread": 21 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2939683, + "thread": 8 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 2966860, + "thread": 8 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 3234959, + "thread": 21 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 3387786, + "thread": 16 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 3541507, + "thread": 20 + } + }, + { + "amount": "216.379230292", + "slot": { + "period": 3703765, + "thread": 21 + } + }, + { + "amount": "216.379230282", + "slot": { + "period": 3887089, + "thread": 28 + } + } + ], + "AU125WHgivFxNMUPjjFHWKfqq8Lx9sYEPQFXkhkLwH6sTz4LM8Fq": [ + { + "amount": "125.919930611", + "slot": { + "period": 32135, + "thread": 13 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 278769, + "thread": 25 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 473592, + "thread": 5 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 556208, + "thread": 10 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 712582, + "thread": 31 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 881688, + "thread": 20 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 992015, + "thread": 5 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 1266731, + "thread": 26 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 1396936, + "thread": 25 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 1483402, + "thread": 28 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 1686830, + "thread": 17 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 1951052, + "thread": 7 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2086973, + "thread": 4 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2286648, + "thread": 29 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2371371, + "thread": 25 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2481491, + "thread": 22 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2785386, + "thread": 16 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 2951255, + "thread": 8 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 3077730, + "thread": 30 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 3143121, + "thread": 17 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 3354252, + "thread": 14 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 3603078, + "thread": 17 + } + }, + { + "amount": "125.919930611", + "slot": { + "period": 3649357, + "thread": 5 + } + }, + { + "amount": "125.919930620", + "slot": { + "period": 3939368, + "thread": 17 + } + } + ], + "AU125WYHFn1H9zZZEGDo44Q87ydwoGj7PzH4mWNJSQMArxzYXgNpe": [ + { + "amount": "152.661214579", + "slot": { + "period": 44801, + "thread": 30 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 314806, + "thread": 27 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 483895, + "thread": 3 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 589213, + "thread": 11 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 744776, + "thread": 21 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 865363, + "thread": 27 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1099256, + "thread": 15 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1223667, + "thread": 8 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1327166, + "thread": 30 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1605027, + "thread": 8 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1801910, + "thread": 21 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 1843064, + "thread": 6 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2013380, + "thread": 11 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2263447, + "thread": 0 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2441338, + "thread": 29 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2513862, + "thread": 24 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2768357, + "thread": 24 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 2810298, + "thread": 8 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3119745, + "thread": 8 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3203611, + "thread": 26 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3310290, + "thread": 25 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3617220, + "thread": 15 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3705433, + "thread": 29 + } + }, + { + "amount": "152.661214579", + "slot": { + "period": 3887869, + "thread": 8 + } + } + ], + "AU125WuCUVCaPk5fx38WGB2H4rjsc59NyPTYfSR78XKQvrA3ZE6R1": [ + { + "amount": "140.777949422", + "slot": { + "period": 49560, + "thread": 25 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 240906, + "thread": 30 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 438841, + "thread": 24 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 597386, + "thread": 15 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 706668, + "thread": 3 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 902686, + "thread": 4 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1118221, + "thread": 15 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1192395, + "thread": 28 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1412767, + "thread": 20 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1632841, + "thread": 29 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1773092, + "thread": 5 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 1844795, + "thread": 30 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2002349, + "thread": 27 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2229913, + "thread": 26 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2307953, + "thread": 16 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2608361, + "thread": 4 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2628967, + "thread": 5 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 2914432, + "thread": 13 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3068558, + "thread": 3 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3243108, + "thread": 23 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3290503, + "thread": 23 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3493796, + "thread": 8 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3646485, + "thread": 21 + } + }, + { + "amount": "140.777949422", + "slot": { + "period": 3931081, + "thread": 22 + } + } + ], + "AU125X7dD3KLLsVZzzVxW17Z8CRWiCzzAcBuhe1JS8AA1GbFNFDft": [ + { + "amount": "176.632524543", + "slot": { + "period": 165552, + "thread": 31 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 246120, + "thread": 14 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 383692, + "thread": 13 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 544344, + "thread": 20 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 790764, + "thread": 5 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 871251, + "thread": 20 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1117905, + "thread": 31 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1236513, + "thread": 6 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1413058, + "thread": 29 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1544782, + "thread": 31 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1779567, + "thread": 25 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1958099, + "thread": 15 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 1977312, + "thread": 7 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 2190394, + "thread": 23 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 2453602, + "thread": 28 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 2476997, + "thread": 12 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 2709335, + "thread": 19 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 2917768, + "thread": 11 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 3116795, + "thread": 22 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 3131498, + "thread": 7 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 3422720, + "thread": 8 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 3467926, + "thread": 30 + } + }, + { + "amount": "176.632524543", + "slot": { + "period": 3643168, + "thread": 20 + } + }, + { + "amount": "176.632524533", + "slot": { + "period": 3888209, + "thread": 12 + } + } + ], + "AU125XMh84x1atM8LQ6JcfSJaG3eAkM6A5YAMCjpb4rgvkbVEFJv2": [ + { + "amount": "253.302469511", + "slot": { + "period": 127180, + "thread": 20 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 271321, + "thread": 31 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 411959, + "thread": 20 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 652630, + "thread": 8 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 707081, + "thread": 30 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 926881, + "thread": 2 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1057312, + "thread": 22 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1209790, + "thread": 0 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1467564, + "thread": 5 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1516140, + "thread": 11 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1689308, + "thread": 8 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 1824256, + "thread": 19 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2002769, + "thread": 28 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2252948, + "thread": 29 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2406718, + "thread": 20 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2544382, + "thread": 21 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2687982, + "thread": 24 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 2864511, + "thread": 12 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 3088694, + "thread": 20 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 3133681, + "thread": 27 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 3391481, + "thread": 29 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 3523176, + "thread": 26 + } + }, + { + "amount": "253.302469511", + "slot": { + "period": 3774803, + "thread": 8 + } + }, + { + "amount": "253.302469518", + "slot": { + "period": 3788256, + "thread": 30 + } + } + ], + "AU125XTgy56FDgtJY1NidZu2eExonmtoYkN7vdxt38tiuQmcmR5U4": [ + { + "amount": "55.430012490", + "slot": { + "period": 164480, + "thread": 25 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 170710, + "thread": 24 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 339897, + "thread": 9 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 587239, + "thread": 13 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 737342, + "thread": 3 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 890562, + "thread": 21 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1002688, + "thread": 25 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1165426, + "thread": 7 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1411400, + "thread": 7 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1536210, + "thread": 7 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1679195, + "thread": 4 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 1865141, + "thread": 2 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2122860, + "thread": 29 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2183881, + "thread": 29 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2348916, + "thread": 3 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2581903, + "thread": 2 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2715648, + "thread": 9 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2801580, + "thread": 26 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 2981349, + "thread": 11 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 3193125, + "thread": 28 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 3442991, + "thread": 13 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 3504381, + "thread": 24 + } + }, + { + "amount": "55.430012490", + "slot": { + "period": 3724115, + "thread": 3 + } + }, + { + "amount": "55.430012480", + "slot": { + "period": 3839523, + "thread": 30 + } + } + ], + "AU125XfsdoURZMqiLcV4eE5RDCiF8PiBtRNwgHxjCY8may4jVHeZG": [ + { + "amount": "259.882274419", + "slot": { + "period": 49722, + "thread": 11 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 257293, + "thread": 14 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 403032, + "thread": 26 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 497905, + "thread": 1 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 780474, + "thread": 14 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 964046, + "thread": 25 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 992618, + "thread": 28 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1216068, + "thread": 23 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1347640, + "thread": 15 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1548034, + "thread": 28 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1757060, + "thread": 2 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1954055, + "thread": 30 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 1994491, + "thread": 3 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 2209727, + "thread": 5 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 2350128, + "thread": 22 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 2540910, + "thread": 11 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 2784730, + "thread": 22 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 2916123, + "thread": 6 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 3058649, + "thread": 14 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 3232949, + "thread": 7 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 3346834, + "thread": 15 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 3518810, + "thread": 9 + } + }, + { + "amount": "259.882274419", + "slot": { + "period": 3700686, + "thread": 18 + } + }, + { + "amount": "259.882274428", + "slot": { + "period": 3888374, + "thread": 21 + } + } + ], + "AU125XjDTtMCXgPFs837a6zYQajpAdeiMtc8FBgjbVY4FmYFa1AoH": [ + { + "amount": "72.427331375", + "slot": { + "period": 23773, + "thread": 29 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 170258, + "thread": 12 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 335128, + "thread": 1 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 507605, + "thread": 20 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 792598, + "thread": 12 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 950316, + "thread": 24 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1059623, + "thread": 20 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1204581, + "thread": 7 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1391117, + "thread": 21 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1572372, + "thread": 22 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1796579, + "thread": 30 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 1830092, + "thread": 4 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2094722, + "thread": 0 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2215984, + "thread": 25 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2407959, + "thread": 30 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2495858, + "thread": 9 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2781774, + "thread": 5 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 2881886, + "thread": 27 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 3082769, + "thread": 11 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 3186983, + "thread": 16 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 3310948, + "thread": 3 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 3543351, + "thread": 17 + } + }, + { + "amount": "72.427331375", + "slot": { + "period": 3659552, + "thread": 10 + } + }, + { + "amount": "72.427331364", + "slot": { + "period": 3937237, + "thread": 18 + } + } + ], + "AU125XoE5vXmCsBKDmXSwLs7L7taNpbi9nyZKU3b3HEUSpQ337jVf": [ + { + "amount": "58.445462145", + "slot": { + "period": 11063, + "thread": 24 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 225542, + "thread": 12 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 325333, + "thread": 9 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 552136, + "thread": 5 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 747571, + "thread": 2 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 834015, + "thread": 2 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1010232, + "thread": 24 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1220945, + "thread": 21 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1347037, + "thread": 18 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1522031, + "thread": 24 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1768056, + "thread": 23 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 1881567, + "thread": 11 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2021965, + "thread": 1 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2202557, + "thread": 8 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2381184, + "thread": 5 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2575919, + "thread": 29 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2629015, + "thread": 6 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 2803357, + "thread": 4 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 3093274, + "thread": 2 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 3209252, + "thread": 0 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 3386558, + "thread": 15 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 3600605, + "thread": 9 + } + }, + { + "amount": "58.445462145", + "slot": { + "period": 3773601, + "thread": 4 + } + }, + { + "amount": "58.445462141", + "slot": { + "period": 3828632, + "thread": 22 + } + } + ], + "AU125Y5ZFt87EWnqkkFZE5J38dq1pyNKrwFYRpFKS9Y9gf6nF35Wu": [ + { + "amount": "530.346538716", + "slot": { + "period": 129688, + "thread": 13 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 241790, + "thread": 2 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 339938, + "thread": 7 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 614741, + "thread": 16 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 716502, + "thread": 20 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 903318, + "thread": 31 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1103775, + "thread": 9 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1315259, + "thread": 5 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1355005, + "thread": 15 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1641162, + "thread": 9 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1721590, + "thread": 15 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 1857951, + "thread": 0 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2015495, + "thread": 8 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2216257, + "thread": 24 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2445612, + "thread": 0 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2601422, + "thread": 20 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2745871, + "thread": 30 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 2918318, + "thread": 12 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 3077685, + "thread": 21 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 3129691, + "thread": 17 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 3449348, + "thread": 10 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 3615476, + "thread": 19 + } + }, + { + "amount": "530.346538716", + "slot": { + "period": 3673127, + "thread": 15 + } + }, + { + "amount": "530.346538709", + "slot": { + "period": 3826668, + "thread": 12 + } + } + ], + "AU125YWMEWU5GDyfGkSLbS6E7XfB8kvwHmizJRhdgXjWvqfY64Nrw": [ + { + "amount": "149.313862788", + "slot": { + "period": 163157, + "thread": 23 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 187135, + "thread": 6 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 486820, + "thread": 14 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 649064, + "thread": 16 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 796316, + "thread": 13 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 942957, + "thread": 16 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1096730, + "thread": 22 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1217878, + "thread": 3 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1325658, + "thread": 30 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1545292, + "thread": 16 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1779598, + "thread": 26 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 1936733, + "thread": 28 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2065833, + "thread": 22 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2155046, + "thread": 5 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2304195, + "thread": 8 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2510043, + "thread": 16 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2642270, + "thread": 8 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 2934185, + "thread": 18 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 3120835, + "thread": 14 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 3158014, + "thread": 19 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 3357828, + "thread": 20 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 3607967, + "thread": 10 + } + }, + { + "amount": "149.313862788", + "slot": { + "period": 3760531, + "thread": 12 + } + }, + { + "amount": "149.313862795", + "slot": { + "period": 3821831, + "thread": 3 + } + } + ], + "AU125ZFwoc3Qbt2NGDo2oKZJYbVTmxT3FHpF93hg454aT8EGieJL": [ + { + "amount": "395.823845142", + "slot": { + "period": 51629, + "thread": 1 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 227570, + "thread": 26 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 376942, + "thread": 20 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 650550, + "thread": 29 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 798410, + "thread": 3 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 932257, + "thread": 11 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 998443, + "thread": 20 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 1300510, + "thread": 14 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 1387245, + "thread": 22 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 1481913, + "thread": 29 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 1723184, + "thread": 29 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 1951601, + "thread": 13 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2030235, + "thread": 25 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2180198, + "thread": 19 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2313199, + "thread": 24 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2584301, + "thread": 24 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2721915, + "thread": 4 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2794950, + "thread": 12 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 2976052, + "thread": 18 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 3287162, + "thread": 10 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 3430337, + "thread": 30 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 3613935, + "thread": 9 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 3707635, + "thread": 10 + } + }, + { + "amount": "395.823845142", + "slot": { + "period": 3941530, + "thread": 28 + } + } + ], + "AU125ZKmkHaY9S4oHQRmwakxtyaM5MDzAPjWEZxaVs9pK21baozQi": [ + { + "amount": "318.127305568", + "slot": { + "period": 150680, + "thread": 17 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 244329, + "thread": 22 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 378217, + "thread": 6 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 608893, + "thread": 23 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 685189, + "thread": 5 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 967004, + "thread": 8 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1024267, + "thread": 16 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1164038, + "thread": 19 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1450806, + "thread": 30 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1522069, + "thread": 17 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1745226, + "thread": 30 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 1934969, + "thread": 26 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2022137, + "thread": 1 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2150682, + "thread": 10 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2365470, + "thread": 3 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2491363, + "thread": 18 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2663986, + "thread": 0 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 2854081, + "thread": 21 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3100283, + "thread": 12 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3229336, + "thread": 26 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3317228, + "thread": 17 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3509743, + "thread": 0 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3716567, + "thread": 0 + } + }, + { + "amount": "318.127305568", + "slot": { + "period": 3798123, + "thread": 7 + } + } + ], + "AU125ZxA85zd3RmwsR7bJhsQ4nqzg5yr2QTa23dEM3fcWMzCJ2iFs": [ + { + "amount": "243.195778281", + "slot": { + "period": 133617, + "thread": 23 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 311305, + "thread": 19 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 481517, + "thread": 13 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 544566, + "thread": 27 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 666455, + "thread": 19 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 969817, + "thread": 9 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1028254, + "thread": 1 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1218197, + "thread": 22 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1333632, + "thread": 28 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1609728, + "thread": 29 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1675550, + "thread": 14 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 1937431, + "thread": 17 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2022882, + "thread": 10 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2282698, + "thread": 6 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2379120, + "thread": 27 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2543333, + "thread": 8 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2782474, + "thread": 8 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 2902453, + "thread": 29 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 3092701, + "thread": 8 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 3253545, + "thread": 18 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 3310641, + "thread": 20 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 3613474, + "thread": 3 + } + }, + { + "amount": "243.195778281", + "slot": { + "period": 3665526, + "thread": 8 + } + }, + { + "amount": "243.195778284", + "slot": { + "period": 3824050, + "thread": 12 + } + } + ], + "AU125a3FqREhNjLrVYAzoyQkaJ1BWVJ7sdHjWeDCJjjJwbsz5Y89p": [ + { + "amount": "356.082584915", + "slot": { + "period": 123371, + "thread": 18 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 260169, + "thread": 24 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 398620, + "thread": 22 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 543570, + "thread": 9 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 723926, + "thread": 21 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 900475, + "thread": 18 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1022576, + "thread": 7 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1182741, + "thread": 21 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1446863, + "thread": 11 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1599370, + "thread": 22 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1764037, + "thread": 11 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 1909170, + "thread": 8 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2136464, + "thread": 9 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2149670, + "thread": 0 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2438587, + "thread": 5 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2533335, + "thread": 16 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2780234, + "thread": 18 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2809499, + "thread": 25 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 2980158, + "thread": 31 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 3234086, + "thread": 0 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 3336012, + "thread": 8 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 3580218, + "thread": 15 + } + }, + { + "amount": "356.082584915", + "slot": { + "period": 3721601, + "thread": 19 + } + }, + { + "amount": "356.082584914", + "slot": { + "period": 3824271, + "thread": 23 + } + } + ], + "AU125aM5KzBjDSS2M1nar1HXuRjmnEpdHqctD8A4hb29nX8u2RJni": [ + { + "amount": "143.753837192", + "slot": { + "period": 18934, + "thread": 22 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 300119, + "thread": 21 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 478215, + "thread": 30 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 565234, + "thread": 13 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 777119, + "thread": 2 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 868476, + "thread": 26 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1038986, + "thread": 16 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1288200, + "thread": 22 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1338871, + "thread": 0 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1619523, + "thread": 27 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1724520, + "thread": 17 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 1845803, + "thread": 24 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2120692, + "thread": 22 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2243429, + "thread": 21 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2453665, + "thread": 27 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2592725, + "thread": 20 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2785865, + "thread": 23 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 2869627, + "thread": 30 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 3005644, + "thread": 10 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 3178908, + "thread": 11 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 3364187, + "thread": 31 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 3585275, + "thread": 7 + } + }, + { + "amount": "143.753837192", + "slot": { + "period": 3761284, + "thread": 17 + } + }, + { + "amount": "143.753837183", + "slot": { + "period": 3885363, + "thread": 17 + } + } + ], + "AU125aMiZBjPbEcFHTs3gz82v9GGWqJaM4zTFEwJBiLwzmdJZt5LP": [ + { + "amount": "501.106730607", + "slot": { + "period": 100398, + "thread": 22 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 320862, + "thread": 13 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 328706, + "thread": 12 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 586635, + "thread": 14 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 695956, + "thread": 18 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 900532, + "thread": 16 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1003586, + "thread": 14 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1190997, + "thread": 6 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1411581, + "thread": 15 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1621545, + "thread": 25 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1754727, + "thread": 26 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1850715, + "thread": 19 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 1994438, + "thread": 4 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 2169563, + "thread": 14 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 2400476, + "thread": 3 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 2588960, + "thread": 31 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 2655690, + "thread": 16 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 2796367, + "thread": 28 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 3028521, + "thread": 19 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 3271660, + "thread": 6 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 3383637, + "thread": 20 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 3547740, + "thread": 0 + } + }, + { + "amount": "501.106730607", + "slot": { + "period": 3765242, + "thread": 13 + } + }, + { + "amount": "501.106730600", + "slot": { + "period": 3790063, + "thread": 8 + } + } + ], + "AU125aWpg3cCUSkkD6Dc9ibdB4bydYWAzkzo5CbpfhuoKt2UvDH5Z": [ + { + "amount": "226.146276710", + "slot": { + "period": 148554, + "thread": 8 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 288185, + "thread": 16 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 355334, + "thread": 7 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 630943, + "thread": 1 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 722227, + "thread": 28 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 885542, + "thread": 9 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1094344, + "thread": 30 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1192409, + "thread": 17 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1458297, + "thread": 15 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1511671, + "thread": 24 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1675387, + "thread": 17 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 1855488, + "thread": 1 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2068673, + "thread": 26 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2260429, + "thread": 28 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2375414, + "thread": 18 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2586172, + "thread": 12 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2772794, + "thread": 14 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 2797402, + "thread": 31 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 3022194, + "thread": 28 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 3250314, + "thread": 20 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 3438038, + "thread": 15 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 3505425, + "thread": 11 + } + }, + { + "amount": "226.146276710", + "slot": { + "period": 3695086, + "thread": 30 + } + }, + { + "amount": "226.146276716", + "slot": { + "period": 3886906, + "thread": 5 + } + } + ], + "AU125ax7qcjXVc7u4qj9kCfHiGVao7Ghjx7DpuA5Aqv1eFfbPABDP": [ + { + "amount": "362.414682540", + "slot": { + "period": 96959, + "thread": 7 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 250754, + "thread": 9 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 336253, + "thread": 8 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 621883, + "thread": 11 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 668317, + "thread": 23 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 897702, + "thread": 6 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1011362, + "thread": 7 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1177946, + "thread": 18 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1441418, + "thread": 10 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1482191, + "thread": 5 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1729398, + "thread": 21 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 1910952, + "thread": 11 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2129231, + "thread": 9 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2250989, + "thread": 26 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2303070, + "thread": 13 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2523947, + "thread": 0 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2702642, + "thread": 30 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2800163, + "thread": 5 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 2995863, + "thread": 25 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 3166581, + "thread": 24 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 3299676, + "thread": 16 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 3555040, + "thread": 10 + } + }, + { + "amount": "362.414682540", + "slot": { + "period": 3664654, + "thread": 23 + } + }, + { + "amount": "362.414682547", + "slot": { + "period": 3845204, + "thread": 26 + } + } + ], + "AU125bBSVmj5pZzuGS5HiDy5x1svjz6CBWPdd9VMjem3ZS1vhQiSd": [ + { + "amount": "109.359770820", + "slot": { + "period": 125446, + "thread": 27 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 200116, + "thread": 7 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 390793, + "thread": 25 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 636368, + "thread": 4 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 702537, + "thread": 2 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 967444, + "thread": 2 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1062320, + "thread": 4 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1255579, + "thread": 22 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1476347, + "thread": 1 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1565189, + "thread": 25 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1674973, + "thread": 14 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 1898252, + "thread": 29 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2023515, + "thread": 15 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2273739, + "thread": 5 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2312394, + "thread": 22 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2595002, + "thread": 24 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2703332, + "thread": 28 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2871162, + "thread": 13 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 2959713, + "thread": 13 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 3285452, + "thread": 4 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 3369056, + "thread": 22 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 3540657, + "thread": 11 + } + }, + { + "amount": "109.359770820", + "slot": { + "period": 3672249, + "thread": 2 + } + }, + { + "amount": "109.359770815", + "slot": { + "period": 3885069, + "thread": 21 + } + } + ], + "AU125bxpFyaTuJacQU7ahGVmhbpYNyqppJ77sYBMsoHTesPbJco7A": [ + { + "amount": "1052.696121937", + "slot": { + "period": 37835, + "thread": 21 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 181233, + "thread": 14 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 409382, + "thread": 15 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 566690, + "thread": 31 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 673333, + "thread": 3 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 852665, + "thread": 12 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1010128, + "thread": 18 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1294079, + "thread": 6 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1400876, + "thread": 15 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1485249, + "thread": 25 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1793454, + "thread": 24 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 1914514, + "thread": 18 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2034611, + "thread": 23 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2169280, + "thread": 7 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2461485, + "thread": 25 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2601376, + "thread": 7 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2663852, + "thread": 23 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 2827009, + "thread": 20 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 3049052, + "thread": 18 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 3221422, + "thread": 30 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 3319829, + "thread": 20 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 3491185, + "thread": 7 + } + }, + { + "amount": "1052.696121937", + "slot": { + "period": 3723643, + "thread": 15 + } + }, + { + "amount": "1052.696121940", + "slot": { + "period": 3916297, + "thread": 15 + } + } + ], + "AU125dEZ2cjmfVypS9mqbrT5tjxcZX99FFfRaczvShbk74EUT9PWz": [ + { + "amount": "337.062994078", + "slot": { + "period": 110846, + "thread": 17 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 303078, + "thread": 22 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 455929, + "thread": 1 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 595319, + "thread": 17 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 682081, + "thread": 9 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 845654, + "thread": 14 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1065297, + "thread": 8 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1250690, + "thread": 22 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1346895, + "thread": 29 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1483770, + "thread": 19 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1788639, + "thread": 17 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 1972182, + "thread": 17 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2123359, + "thread": 20 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2151397, + "thread": 29 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2301517, + "thread": 8 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2569336, + "thread": 8 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2681907, + "thread": 4 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 2856044, + "thread": 15 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 3087548, + "thread": 13 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 3132068, + "thread": 13 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 3299995, + "thread": 22 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 3603963, + "thread": 21 + } + }, + { + "amount": "337.062994078", + "slot": { + "period": 3679550, + "thread": 27 + } + }, + { + "amount": "337.062994066", + "slot": { + "period": 3889015, + "thread": 5 + } + } + ], + "AU125dYtyon3owvByLkamvjmT33ED21QZbgrk2pZCRJ3FsL2koSQ1": [ + { + "amount": "470.220545722", + "slot": { + "period": 101554, + "thread": 23 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 235863, + "thread": 12 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 476863, + "thread": 3 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 619810, + "thread": 23 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 758213, + "thread": 6 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 947577, + "thread": 8 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 988655, + "thread": 22 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 1260010, + "thread": 10 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 1435564, + "thread": 23 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 1575281, + "thread": 15 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 1777890, + "thread": 7 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 1890333, + "thread": 15 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2046058, + "thread": 16 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2293237, + "thread": 21 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2316008, + "thread": 23 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2523750, + "thread": 2 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2693822, + "thread": 13 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 2882676, + "thread": 6 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 3027141, + "thread": 6 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 3169998, + "thread": 28 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 3292291, + "thread": 3 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 3542247, + "thread": 26 + } + }, + { + "amount": "470.220545722", + "slot": { + "period": 3733364, + "thread": 6 + } + }, + { + "amount": "470.220545718", + "slot": { + "period": 3926158, + "thread": 5 + } + } + ], + "AU125eUPSXJRS3BBiXiEJdXkSjc2Q5tQ4D7kLVXLDeViu59kbFV2c": [ + { + "amount": "77.372465410", + "slot": { + "period": 15234, + "thread": 23 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 260659, + "thread": 4 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 427685, + "thread": 12 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 592970, + "thread": 17 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 781920, + "thread": 12 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 919664, + "thread": 18 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1030677, + "thread": 9 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1180805, + "thread": 23 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1326223, + "thread": 0 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1525071, + "thread": 7 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1763002, + "thread": 26 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 1873338, + "thread": 5 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2118325, + "thread": 29 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2256806, + "thread": 5 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2357238, + "thread": 31 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2588264, + "thread": 20 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2657983, + "thread": 31 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 2801573, + "thread": 21 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 3050330, + "thread": 5 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 3130557, + "thread": 21 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 3362020, + "thread": 27 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 3528703, + "thread": 10 + } + }, + { + "amount": "77.372465410", + "slot": { + "period": 3705174, + "thread": 21 + } + }, + { + "amount": "77.372465415", + "slot": { + "period": 3849119, + "thread": 26 + } + } + ], + "AU125g3L7N3XWJzduSVjfmnDppCuxTd6LNsFKA9WyfmPz9i6WcN3v": [ + { + "amount": "553.339354240", + "slot": { + "period": 151962, + "thread": 23 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 284032, + "thread": 22 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 379904, + "thread": 13 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 635397, + "thread": 10 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 804148, + "thread": 9 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 947184, + "thread": 8 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1113321, + "thread": 0 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1164228, + "thread": 0 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1431319, + "thread": 23 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1548263, + "thread": 5 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1669222, + "thread": 20 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1943231, + "thread": 24 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 1977559, + "thread": 17 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2146376, + "thread": 26 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2442859, + "thread": 14 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2520660, + "thread": 29 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2633365, + "thread": 10 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2850249, + "thread": 30 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 2959253, + "thread": 27 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 3131392, + "thread": 20 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 3399385, + "thread": 16 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 3534064, + "thread": 23 + } + }, + { + "amount": "553.339354240", + "slot": { + "period": 3717247, + "thread": 16 + } + }, + { + "amount": "553.339354247", + "slot": { + "period": 3926428, + "thread": 19 + } + } + ], + "AU125g8ywoLuuHZPgiKiXX3KyAf4YaZiEbGndt1Emx7iACRhwsCq2": [ + { + "amount": "215.724355916", + "slot": { + "period": 46806, + "thread": 9 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 318162, + "thread": 14 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 324455, + "thread": 27 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 581200, + "thread": 9 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 809762, + "thread": 13 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 960787, + "thread": 19 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1144154, + "thread": 29 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1230296, + "thread": 21 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1474040, + "thread": 7 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1550516, + "thread": 8 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1784048, + "thread": 31 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 1879590, + "thread": 3 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2073749, + "thread": 20 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2166274, + "thread": 4 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2348096, + "thread": 11 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2505814, + "thread": 8 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2632665, + "thread": 24 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 2798810, + "thread": 28 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 3081999, + "thread": 27 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 3228276, + "thread": 3 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 3395020, + "thread": 9 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 3485665, + "thread": 4 + } + }, + { + "amount": "215.724355916", + "slot": { + "period": 3759760, + "thread": 17 + } + }, + { + "amount": "215.724355904", + "slot": { + "period": 3906042, + "thread": 4 + } + } + ], + "AU125gikyvwFNvAJau5doM61fnMjEhg9iGzp3sKe35sn8PpCfHje4": [ + { + "amount": "348.607003332", + "slot": { + "period": 144248, + "thread": 21 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 182990, + "thread": 30 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 425603, + "thread": 1 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 548256, + "thread": 6 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 683457, + "thread": 23 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 905617, + "thread": 14 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 988696, + "thread": 16 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 1225433, + "thread": 7 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 1372446, + "thread": 14 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 1512892, + "thread": 16 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 1701536, + "thread": 23 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 1884558, + "thread": 2 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2007407, + "thread": 8 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2149549, + "thread": 12 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2434376, + "thread": 17 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2604614, + "thread": 19 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2666763, + "thread": 22 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 2908366, + "thread": 4 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 3026507, + "thread": 18 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 3208869, + "thread": 4 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 3379964, + "thread": 8 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 3600668, + "thread": 16 + } + }, + { + "amount": "348.607003332", + "slot": { + "period": 3706048, + "thread": 16 + } + }, + { + "amount": "348.607003328", + "slot": { + "period": 3803491, + "thread": 0 + } + } + ], + "AU125hBgKZmcWWHpEgDsFrMWadZigF5XpJcyfTb3NNiRuL1ckRVvw": [ + { + "amount": "227.980267211", + "slot": { + "period": 135337, + "thread": 31 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 173337, + "thread": 5 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 363216, + "thread": 3 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 630978, + "thread": 20 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 749330, + "thread": 4 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 943017, + "thread": 14 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 982956, + "thread": 19 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 1172747, + "thread": 0 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 1412197, + "thread": 24 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 1505271, + "thread": 10 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 1763036, + "thread": 31 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 1936341, + "thread": 9 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2137300, + "thread": 15 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2247927, + "thread": 10 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2334420, + "thread": 3 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2602673, + "thread": 5 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2752610, + "thread": 20 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2908252, + "thread": 16 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 2993346, + "thread": 29 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 3270564, + "thread": 23 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 3435779, + "thread": 26 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 3584386, + "thread": 21 + } + }, + { + "amount": "227.980267211", + "slot": { + "period": 3639062, + "thread": 1 + } + }, + { + "amount": "227.980267210", + "slot": { + "period": 3807021, + "thread": 27 + } + } + ], + "AU125hYN9ftoPKhcFfpXErwxdnYoDvTn7F89GF8UuzvMwtYfZbU5e": [ + { + "amount": "541.850799582", + "slot": { + "period": 100846, + "thread": 0 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 174636, + "thread": 6 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 382533, + "thread": 13 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 622070, + "thread": 19 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 661178, + "thread": 18 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 880120, + "thread": 6 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1111162, + "thread": 31 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1242440, + "thread": 9 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1334034, + "thread": 31 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1554391, + "thread": 27 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1752284, + "thread": 12 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 1892845, + "thread": 3 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2117191, + "thread": 3 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2231436, + "thread": 12 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2311798, + "thread": 22 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2577680, + "thread": 25 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2774811, + "thread": 9 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2846932, + "thread": 4 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 2970248, + "thread": 17 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 3202638, + "thread": 1 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 3350133, + "thread": 10 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 3616209, + "thread": 19 + } + }, + { + "amount": "541.850799582", + "slot": { + "period": 3636725, + "thread": 24 + } + }, + { + "amount": "541.850799578", + "slot": { + "period": 3808962, + "thread": 22 + } + } + ], + "AU125hmskwqhEmyKNDVDRP634WGEgFkJE4C2xq2X4a2UVUZayaPmm": [ + { + "amount": "66.767355777", + "slot": { + "period": 136732, + "thread": 26 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 303252, + "thread": 31 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 453371, + "thread": 9 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 535258, + "thread": 8 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 675907, + "thread": 26 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 843095, + "thread": 9 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1115111, + "thread": 18 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1211158, + "thread": 30 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1462282, + "thread": 5 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1526737, + "thread": 0 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1675213, + "thread": 21 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 1891671, + "thread": 17 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2086729, + "thread": 17 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2240138, + "thread": 15 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2338734, + "thread": 27 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2462948, + "thread": 1 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2661632, + "thread": 5 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2814215, + "thread": 23 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 2973584, + "thread": 13 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 3258304, + "thread": 12 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 3392086, + "thread": 6 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 3515114, + "thread": 1 + } + }, + { + "amount": "66.767355777", + "slot": { + "period": 3731224, + "thread": 2 + } + }, + { + "amount": "66.767355787", + "slot": { + "period": 3931091, + "thread": 12 + } + } + ], + "AU125iLoGinFnZhKkkJ1PqR8DprZzZ5WoNtgWzFoX7Y6mwP6GhLRe": [ + { + "amount": "583.234991678", + "slot": { + "period": 61289, + "thread": 26 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 275370, + "thread": 27 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 340221, + "thread": 23 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 612087, + "thread": 1 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 729859, + "thread": 18 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 919666, + "thread": 20 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1014808, + "thread": 8 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1272012, + "thread": 2 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1385419, + "thread": 21 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1607000, + "thread": 27 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1701992, + "thread": 9 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 1823152, + "thread": 9 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2079181, + "thread": 23 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2167647, + "thread": 9 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2401972, + "thread": 21 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2501926, + "thread": 14 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2688620, + "thread": 8 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 2846761, + "thread": 9 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 3113202, + "thread": 21 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 3171548, + "thread": 12 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 3356917, + "thread": 1 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 3460798, + "thread": 12 + } + }, + { + "amount": "583.234991678", + "slot": { + "period": 3753183, + "thread": 19 + } + }, + { + "amount": "583.234991681", + "slot": { + "period": 3801339, + "thread": 25 + } + } + ], + "AU125kEkbxnW6MNavLKqfShbQyzfzNoCFFCmzK3okoLJ6iK2eWSKq": [ + { + "amount": "350.428379407", + "slot": { + "period": 55787, + "thread": 4 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 171930, + "thread": 12 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 424513, + "thread": 18 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 502218, + "thread": 16 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 772888, + "thread": 3 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 869295, + "thread": 7 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1070083, + "thread": 28 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1222855, + "thread": 13 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1363910, + "thread": 18 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1511177, + "thread": 13 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1647092, + "thread": 3 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 1826979, + "thread": 0 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2056763, + "thread": 13 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2186598, + "thread": 26 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2383296, + "thread": 23 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2597188, + "thread": 7 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2747390, + "thread": 2 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 2936137, + "thread": 19 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 3121191, + "thread": 31 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 3127524, + "thread": 15 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 3408431, + "thread": 0 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 3612224, + "thread": 14 + } + }, + { + "amount": "350.428379407", + "slot": { + "period": 3760264, + "thread": 15 + } + }, + { + "amount": "350.428379415", + "slot": { + "period": 3921388, + "thread": 12 + } + } + ], + "AU125kmC8esGMNtjUG6jM9bGvB378LsmTMBjwB9g3E23bzoBG4wFv": [ + { + "amount": "417.533434541", + "slot": { + "period": 84660, + "thread": 1 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 256614, + "thread": 27 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 333858, + "thread": 22 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 606456, + "thread": 14 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 666792, + "thread": 23 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 977956, + "thread": 9 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1120483, + "thread": 15 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1206452, + "thread": 7 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1420938, + "thread": 30 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1610817, + "thread": 24 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1713079, + "thread": 10 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1975840, + "thread": 18 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 1997869, + "thread": 7 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 2241716, + "thread": 9 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 2449177, + "thread": 31 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 2599124, + "thread": 27 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 2758358, + "thread": 4 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 2852357, + "thread": 10 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 3018183, + "thread": 0 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 3188078, + "thread": 12 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 3444968, + "thread": 1 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 3522308, + "thread": 9 + } + }, + { + "amount": "417.533434541", + "slot": { + "period": 3692439, + "thread": 30 + } + }, + { + "amount": "417.533434542", + "slot": { + "period": 3925353, + "thread": 5 + } + } + ], + "AU125mEDjBwmK8vct2fbb4aq8SEqepeRTx6T3opWpAo7qFuTQGZjz": [ + { + "amount": "71.290826979", + "slot": { + "period": 54748, + "thread": 29 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 250528, + "thread": 19 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 438582, + "thread": 29 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 500946, + "thread": 5 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 668587, + "thread": 5 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 900951, + "thread": 30 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1052423, + "thread": 21 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1240689, + "thread": 9 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1350265, + "thread": 27 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1560327, + "thread": 11 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1758770, + "thread": 11 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 1945293, + "thread": 21 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2056302, + "thread": 23 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2181408, + "thread": 17 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2388979, + "thread": 9 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2516691, + "thread": 20 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2640043, + "thread": 16 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2848235, + "thread": 16 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 2973377, + "thread": 12 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 3189168, + "thread": 8 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 3362542, + "thread": 11 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 3546158, + "thread": 17 + } + }, + { + "amount": "71.290826979", + "slot": { + "period": 3735952, + "thread": 0 + } + }, + { + "amount": "71.290826986", + "slot": { + "period": 3821158, + "thread": 1 + } + } + ], + "AU125n2sqKsTrYWn182tudF2sgESbnabGxk8ANPF888LrcdLRzWon": [ + { + "amount": "77.296845133", + "slot": { + "period": 54644, + "thread": 0 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 204479, + "thread": 21 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 367749, + "thread": 14 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 621508, + "thread": 7 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 685445, + "thread": 0 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 850395, + "thread": 3 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1034013, + "thread": 10 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1182024, + "thread": 31 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1405722, + "thread": 8 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1557320, + "thread": 0 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1677910, + "thread": 28 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1930881, + "thread": 31 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 1991845, + "thread": 17 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2255325, + "thread": 21 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2436884, + "thread": 30 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2530621, + "thread": 1 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2737408, + "thread": 5 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2945585, + "thread": 13 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 2972963, + "thread": 17 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 3257041, + "thread": 18 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 3414876, + "thread": 3 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 3567444, + "thread": 25 + } + }, + { + "amount": "77.296845133", + "slot": { + "period": 3676105, + "thread": 21 + } + }, + { + "amount": "77.296845134", + "slot": { + "period": 3920552, + "thread": 24 + } + } + ], + "AU125n9tQVJPhugqLM41Jpi7gC3a7ubwRZErQ8LmEiR82yu9TGimC": [ + { + "amount": "54.549374424", + "slot": { + "period": 62259, + "thread": 20 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 266467, + "thread": 14 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 458131, + "thread": 0 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 553184, + "thread": 9 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 757200, + "thread": 31 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 972817, + "thread": 4 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1097953, + "thread": 26 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1298910, + "thread": 25 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1422089, + "thread": 30 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1603026, + "thread": 29 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1794462, + "thread": 3 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 1844361, + "thread": 21 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2015929, + "thread": 26 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2169835, + "thread": 12 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2342966, + "thread": 4 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2553313, + "thread": 7 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2764889, + "thread": 27 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 2906858, + "thread": 11 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 3084308, + "thread": 19 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 3205501, + "thread": 3 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 3345632, + "thread": 28 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 3522624, + "thread": 29 + } + }, + { + "amount": "54.549374424", + "slot": { + "period": 3777179, + "thread": 17 + } + }, + { + "amount": "54.549374418", + "slot": { + "period": 3940139, + "thread": 18 + } + } + ], + "AU125pU8syu2khHtNmpSfsi3N5T9SjwszpYwkVXN4jfDetrLxLqiq": [ + { + "amount": "72.290847362", + "slot": { + "period": 154239, + "thread": 6 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 199006, + "thread": 29 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 373200, + "thread": 3 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 635283, + "thread": 27 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 739730, + "thread": 6 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 968695, + "thread": 19 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1043650, + "thread": 30 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1274162, + "thread": 23 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1382767, + "thread": 2 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1547187, + "thread": 0 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1707969, + "thread": 24 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 1961648, + "thread": 25 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2023507, + "thread": 13 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2216318, + "thread": 6 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2361364, + "thread": 16 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2474686, + "thread": 0 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2760066, + "thread": 20 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2937971, + "thread": 27 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 2958352, + "thread": 25 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 3205212, + "thread": 10 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 3346116, + "thread": 1 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 3465899, + "thread": 11 + } + }, + { + "amount": "72.290847362", + "slot": { + "period": 3626724, + "thread": 4 + } + }, + { + "amount": "72.290847367", + "slot": { + "period": 3892145, + "thread": 26 + } + } + ], + "AU125pomZ15GkFZBvMH29MtYcowxoUyHrJEeUv7mPpCna1MqAKxDr": [ + { + "amount": "68.998565678", + "slot": { + "period": 40218, + "thread": 13 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 169862, + "thread": 7 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 395943, + "thread": 26 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 561610, + "thread": 26 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 659754, + "thread": 24 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 974446, + "thread": 30 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1056250, + "thread": 7 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1264504, + "thread": 23 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1409046, + "thread": 20 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1574204, + "thread": 15 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1700605, + "thread": 14 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 1822529, + "thread": 23 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2131218, + "thread": 22 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2226759, + "thread": 12 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2456673, + "thread": 30 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2508351, + "thread": 15 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2633293, + "thread": 0 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 2855689, + "thread": 31 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 3051351, + "thread": 5 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 3202592, + "thread": 10 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 3300153, + "thread": 5 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 3471392, + "thread": 16 + } + }, + { + "amount": "68.998565678", + "slot": { + "period": 3640976, + "thread": 10 + } + }, + { + "amount": "68.998565681", + "slot": { + "period": 3841469, + "thread": 12 + } + } + ], + "AU125ppPjA7tjRaVC9JZauLFarSNHD7UzitFmrfpFZmrybzcmtBtC": [ + { + "amount": "188.514233315", + "slot": { + "period": 136510, + "thread": 21 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 307747, + "thread": 21 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 428751, + "thread": 23 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 624550, + "thread": 28 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 771492, + "thread": 23 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 971585, + "thread": 8 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1129069, + "thread": 26 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1316430, + "thread": 8 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1457343, + "thread": 8 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1639270, + "thread": 5 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1732325, + "thread": 31 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1827576, + "thread": 4 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 1999027, + "thread": 6 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2171175, + "thread": 0 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2379555, + "thread": 30 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2586364, + "thread": 6 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2657705, + "thread": 4 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2827298, + "thread": 23 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 2976407, + "thread": 25 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 3183283, + "thread": 18 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 3355092, + "thread": 11 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 3520361, + "thread": 26 + } + }, + { + "amount": "188.514233315", + "slot": { + "period": 3763711, + "thread": 6 + } + }, + { + "amount": "188.514233317", + "slot": { + "period": 3911196, + "thread": 25 + } + } + ], + "AU125q4Jj22jzwavJZHDtYyrdSbhCCh3sK96qm4ox31AzcVmSWvvF": [ + { + "amount": "8333333.333333333", + "slot": { + "period": 4114800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 4266000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 4433400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 4595400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 4762800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 4924800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5092200, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5259600, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5421600, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5589000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5751000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 5918400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6085800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6237000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6404400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6566400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6733800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 6895800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7063200, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7230600, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7392600, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7560000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7722000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 7889400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8056800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8213400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8380800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8542800, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8710200, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 8872200, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 9039600, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 9207000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 9369000, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 9536400, + "thread": 0 + } + }, + { + "amount": "8333333.333333333", + "slot": { + "period": 9698400, + "thread": 0 + } + }, + { + "amount": "8333333.333333345", + "slot": { + "period": 9865800, + "thread": 0 + } + } + ], + "AU125qQtCA1EvQzw7djcGQtnAijuQm5ZVWfsZe4wxXnXS7tRWuVS": [ + { + "amount": "135.787749667", + "slot": { + "period": 62676, + "thread": 2 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 171746, + "thread": 16 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 483077, + "thread": 17 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 545254, + "thread": 30 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 773374, + "thread": 1 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 894094, + "thread": 11 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1105488, + "thread": 6 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1250671, + "thread": 9 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1360411, + "thread": 19 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1510946, + "thread": 11 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1687016, + "thread": 25 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 1825639, + "thread": 4 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2005237, + "thread": 22 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2222166, + "thread": 15 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2341083, + "thread": 25 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2560685, + "thread": 24 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2703938, + "thread": 2 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 2932724, + "thread": 28 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 3012390, + "thread": 26 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 3230952, + "thread": 4 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 3407674, + "thread": 2 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 3465915, + "thread": 28 + } + }, + { + "amount": "135.787749667", + "slot": { + "period": 3772701, + "thread": 31 + } + }, + { + "amount": "135.787749673", + "slot": { + "period": 3832835, + "thread": 23 + } + } + ], + "AU125qbA58bhMzvfFxbDcUNR4FDdSD4P1Jb2SHkAzAaxdJXzewnUF": [ + { + "amount": "153.575969754", + "slot": { + "period": 104443, + "thread": 17 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 228200, + "thread": 14 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 485687, + "thread": 24 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 619249, + "thread": 7 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 799290, + "thread": 9 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 940550, + "thread": 23 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 995191, + "thread": 27 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 1309486, + "thread": 17 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 1350280, + "thread": 0 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 1583667, + "thread": 13 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 1691033, + "thread": 8 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 1975236, + "thread": 9 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2084683, + "thread": 31 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2211096, + "thread": 22 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2386686, + "thread": 1 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2507098, + "thread": 7 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2713614, + "thread": 11 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 2878996, + "thread": 11 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 3042004, + "thread": 30 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 3269479, + "thread": 1 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 3338608, + "thread": 2 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 3477484, + "thread": 10 + } + }, + { + "amount": "153.575969754", + "slot": { + "period": 3657031, + "thread": 7 + } + }, + { + "amount": "153.575969758", + "slot": { + "period": 3914446, + "thread": 29 + } + } + ], + "AU125qmdq8jkQBRj6pvHHBtZzHsYpC156yHH7VKtGzZt2xmkCQVXq": [ + { + "amount": "208.566695728", + "slot": { + "period": 72448, + "thread": 2 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 306885, + "thread": 19 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 411488, + "thread": 21 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 575027, + "thread": 22 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 819813, + "thread": 24 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 982131, + "thread": 16 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1063649, + "thread": 26 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1226481, + "thread": 30 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1416459, + "thread": 1 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1606250, + "thread": 22 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1807174, + "thread": 13 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 1841245, + "thread": 3 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2076028, + "thread": 23 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2193537, + "thread": 2 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2364357, + "thread": 26 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2561531, + "thread": 19 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2630139, + "thread": 18 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2863496, + "thread": 16 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 2974326, + "thread": 20 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 3211777, + "thread": 29 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 3367964, + "thread": 4 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 3512985, + "thread": 23 + } + }, + { + "amount": "208.566695728", + "slot": { + "period": 3739147, + "thread": 25 + } + }, + { + "amount": "208.566695716", + "slot": { + "period": 3836922, + "thread": 27 + } + } + ], + "AU125qzUCUs3Xr67efhitfDV7kF9PYrT4GiVzbeej9ZicvKzhvnUV": [ + { + "amount": "141.918310569", + "slot": { + "period": 79421, + "thread": 8 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 275345, + "thread": 24 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 400606, + "thread": 25 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 500380, + "thread": 20 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 697200, + "thread": 1 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 858168, + "thread": 16 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 989355, + "thread": 4 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 1277883, + "thread": 20 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 1461217, + "thread": 1 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 1607904, + "thread": 13 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 1802473, + "thread": 12 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 1945761, + "thread": 28 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2031816, + "thread": 28 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2224306, + "thread": 2 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2388047, + "thread": 25 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2556017, + "thread": 6 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2690839, + "thread": 21 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2930779, + "thread": 27 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 2962540, + "thread": 31 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 3150355, + "thread": 30 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 3334853, + "thread": 12 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 3522181, + "thread": 13 + } + }, + { + "amount": "141.918310569", + "slot": { + "period": 3754190, + "thread": 16 + } + }, + { + "amount": "141.918310577", + "slot": { + "period": 3908968, + "thread": 15 + } + } + ], + "AU125rq3nJ6opLAodgentUZDCyKBpnBXTWvCn3naQdTsBVuVWw1Jf": [ + { + "amount": "440.921035792", + "slot": { + "period": 115877, + "thread": 15 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 199732, + "thread": 28 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 454643, + "thread": 4 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 609418, + "thread": 1 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 703078, + "thread": 25 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 930070, + "thread": 12 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1130273, + "thread": 27 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1272926, + "thread": 18 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1367799, + "thread": 6 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1572753, + "thread": 30 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1650987, + "thread": 7 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 1840015, + "thread": 31 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2032102, + "thread": 24 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2231635, + "thread": 23 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2395236, + "thread": 14 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2555711, + "thread": 21 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2723166, + "thread": 5 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 2823623, + "thread": 16 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 3017852, + "thread": 21 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 3252676, + "thread": 2 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 3400705, + "thread": 9 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 3514962, + "thread": 27 + } + }, + { + "amount": "440.921035792", + "slot": { + "period": 3689887, + "thread": 11 + } + }, + { + "amount": "440.921035791", + "slot": { + "period": 3790945, + "thread": 19 + } + } + ], + "AU125sEKDLLqmx17Cyn7u4oXDMWjDup9WTCz77fb8hbKNStQGaQWH": [ + { + "amount": "390.009513968", + "slot": { + "period": 163854, + "thread": 27 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 239492, + "thread": 31 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 483298, + "thread": 4 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 496318, + "thread": 11 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 776297, + "thread": 12 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 851746, + "thread": 18 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1062784, + "thread": 10 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1309733, + "thread": 4 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1354953, + "thread": 2 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1493010, + "thread": 21 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1771367, + "thread": 16 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 1892462, + "thread": 23 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2088049, + "thread": 7 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2228502, + "thread": 20 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2307956, + "thread": 3 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2535873, + "thread": 18 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2684084, + "thread": 23 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 2882329, + "thread": 26 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 3065726, + "thread": 23 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 3167762, + "thread": 19 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 3322315, + "thread": 21 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 3575886, + "thread": 9 + } + }, + { + "amount": "390.009513968", + "slot": { + "period": 3624236, + "thread": 23 + } + }, + { + "amount": "390.009513965", + "slot": { + "period": 3788617, + "thread": 20 + } + } + ], + "AU125sFTNP1urQvUbMsfXTXy92SrHUymQ8BURbiCCFwDzyT2f1B4y": [ + { + "amount": "133.647192480", + "slot": { + "period": 36501, + "thread": 22 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 211897, + "thread": 20 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 364657, + "thread": 30 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 649448, + "thread": 30 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 725893, + "thread": 5 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 933449, + "thread": 10 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1050515, + "thread": 30 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1255936, + "thread": 14 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1371459, + "thread": 28 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1527378, + "thread": 31 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1753548, + "thread": 10 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 1891626, + "thread": 25 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2125229, + "thread": 1 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2224646, + "thread": 1 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2337105, + "thread": 17 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2470401, + "thread": 16 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2738161, + "thread": 10 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 2935961, + "thread": 12 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 3084834, + "thread": 4 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 3123823, + "thread": 6 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 3398752, + "thread": 14 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 3487658, + "thread": 11 + } + }, + { + "amount": "133.647192480", + "slot": { + "period": 3657896, + "thread": 24 + } + }, + { + "amount": "133.647192490", + "slot": { + "period": 3812035, + "thread": 11 + } + } + ], + "AU125sJccp6NqW7CgZabxVhnYzDTX4Sv5TtAcNJoUg4DDr3AHD622": [ + { + "amount": "223.088144675", + "slot": { + "period": 17140, + "thread": 5 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 255719, + "thread": 10 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 464709, + "thread": 15 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 646686, + "thread": 7 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 742663, + "thread": 5 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 855800, + "thread": 1 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1047532, + "thread": 9 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1216328, + "thread": 16 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1449969, + "thread": 12 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1536296, + "thread": 9 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1808258, + "thread": 10 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 1960700, + "thread": 31 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2042783, + "thread": 5 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2160340, + "thread": 11 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2334528, + "thread": 3 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2565029, + "thread": 24 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2683570, + "thread": 4 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2846801, + "thread": 18 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 2959939, + "thread": 30 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 3208027, + "thread": 11 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 3439266, + "thread": 7 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 3582419, + "thread": 27 + } + }, + { + "amount": "223.088144675", + "slot": { + "period": 3621501, + "thread": 24 + } + }, + { + "amount": "223.088144676", + "slot": { + "period": 3902971, + "thread": 9 + } + } + ], + "AU125syddCJK82rqyKtiHcf49Gm23ZGbuvXiSDZe3gRxQ9y3M62uq": [ + { + "amount": "75.762149235", + "slot": { + "period": 156722, + "thread": 10 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 276496, + "thread": 6 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 407173, + "thread": 12 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 643145, + "thread": 22 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 795972, + "thread": 30 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 914744, + "thread": 2 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1121174, + "thread": 15 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1234596, + "thread": 25 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1369041, + "thread": 11 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1595760, + "thread": 15 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1676765, + "thread": 14 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1951741, + "thread": 13 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 1988489, + "thread": 17 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 2182927, + "thread": 8 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 2295717, + "thread": 6 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 2485666, + "thread": 11 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 2690774, + "thread": 14 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 2951834, + "thread": 18 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3018683, + "thread": 21 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3153244, + "thread": 24 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3448333, + "thread": 27 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3577860, + "thread": 17 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3698544, + "thread": 29 + } + }, + { + "amount": "75.762149235", + "slot": { + "period": 3891499, + "thread": 1 + } + } + ], + "AU125tpr8VmEPaHpZ3Xu1kRWcu2vWjy4zzLaLZV1Wmi3pmyJE6ZJV": [ + { + "amount": "505.516424381", + "slot": { + "period": 90802, + "thread": 2 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 238406, + "thread": 0 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 438513, + "thread": 26 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 579903, + "thread": 14 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 704338, + "thread": 24 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 854530, + "thread": 11 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1102444, + "thread": 8 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1175859, + "thread": 30 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1390999, + "thread": 29 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1543765, + "thread": 1 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1755775, + "thread": 15 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 1886092, + "thread": 16 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2064990, + "thread": 30 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2200993, + "thread": 9 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2454542, + "thread": 17 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2593458, + "thread": 12 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2634002, + "thread": 15 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 2868954, + "thread": 0 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 3024678, + "thread": 27 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 3161924, + "thread": 23 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 3419753, + "thread": 24 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 3552208, + "thread": 7 + } + }, + { + "amount": "505.516424381", + "slot": { + "period": 3688789, + "thread": 19 + } + }, + { + "amount": "505.516424370", + "slot": { + "period": 3924746, + "thread": 27 + } + } + ], + "AU125u6hQbkwXdQFFDbUEhojKhgubrJM1Ljd23q9mDQMuq3ZuztEk": [ + { + "amount": "65.208200137", + "slot": { + "period": 103012, + "thread": 4 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 208638, + "thread": 21 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 417377, + "thread": 20 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 634960, + "thread": 30 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 778004, + "thread": 21 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 833292, + "thread": 13 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1130824, + "thread": 26 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1220809, + "thread": 3 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1470736, + "thread": 24 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1511999, + "thread": 2 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1723311, + "thread": 8 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 1855300, + "thread": 6 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2132935, + "thread": 22 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2177028, + "thread": 1 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2367878, + "thread": 13 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2542289, + "thread": 2 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2683264, + "thread": 27 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 2805214, + "thread": 29 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 3039895, + "thread": 20 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 3210494, + "thread": 26 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 3435980, + "thread": 12 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 3451588, + "thread": 30 + } + }, + { + "amount": "65.208200137", + "slot": { + "period": 3665707, + "thread": 23 + } + }, + { + "amount": "65.208200148", + "slot": { + "period": 3813755, + "thread": 4 + } + } + ], + "AU125uCse2d2Ra2A348re3JBshSmjEaHdvk1mYqQQn9S7MDyQKPVm": [ + { + "amount": "200.743841769", + "slot": { + "period": 156963, + "thread": 24 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 191755, + "thread": 7 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 359964, + "thread": 0 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 640304, + "thread": 26 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 706266, + "thread": 7 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 928331, + "thread": 17 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 998709, + "thread": 4 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 1296824, + "thread": 4 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 1451735, + "thread": 9 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 1563346, + "thread": 22 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 1707288, + "thread": 10 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 1815535, + "thread": 27 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2021866, + "thread": 23 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2227399, + "thread": 31 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2340425, + "thread": 19 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2601041, + "thread": 7 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2643399, + "thread": 31 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 2793433, + "thread": 19 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 3112380, + "thread": 2 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 3176105, + "thread": 17 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 3397175, + "thread": 25 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 3607546, + "thread": 17 + } + }, + { + "amount": "200.743841769", + "slot": { + "period": 3667276, + "thread": 18 + } + }, + { + "amount": "200.743841774", + "slot": { + "period": 3873366, + "thread": 13 + } + } + ], + "AU125uMsEtCyktr5qSgKLhAEgzJAdeNbj7VDmJbrAhpFLZ8k5VkNJ": [ + { + "amount": "136.252982122", + "slot": { + "period": 123114, + "thread": 3 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 305776, + "thread": 18 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 411880, + "thread": 4 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 534062, + "thread": 21 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 770693, + "thread": 11 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 839929, + "thread": 25 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1129862, + "thread": 25 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1188054, + "thread": 31 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1433764, + "thread": 0 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1581434, + "thread": 2 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1747433, + "thread": 23 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 1955300, + "thread": 12 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2127333, + "thread": 3 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2234032, + "thread": 8 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2456770, + "thread": 2 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2612507, + "thread": 11 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2653938, + "thread": 22 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 2800229, + "thread": 1 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 3119615, + "thread": 10 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 3288268, + "thread": 19 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 3316384, + "thread": 8 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 3610255, + "thread": 4 + } + }, + { + "amount": "136.252982122", + "slot": { + "period": 3751325, + "thread": 28 + } + }, + { + "amount": "136.252982120", + "slot": { + "period": 3792931, + "thread": 7 + } + } + ], + "AU125uigoCKnriLbRHY9c64j3hMU6vcBxPpoyCGqP25Z2pRukfwPJ": [ + { + "amount": "153.131798938", + "slot": { + "period": 147492, + "thread": 27 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 293451, + "thread": 19 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 373697, + "thread": 19 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 589907, + "thread": 0 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 768311, + "thread": 24 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 955571, + "thread": 27 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1018264, + "thread": 25 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1198810, + "thread": 23 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1321296, + "thread": 8 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1613859, + "thread": 13 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1696264, + "thread": 25 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 1906796, + "thread": 7 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2121380, + "thread": 9 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2204236, + "thread": 0 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2370756, + "thread": 1 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2602634, + "thread": 13 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2695357, + "thread": 17 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 2845819, + "thread": 11 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 3020049, + "thread": 30 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 3167469, + "thread": 13 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 3380630, + "thread": 3 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 3458535, + "thread": 15 + } + }, + { + "amount": "153.131798938", + "slot": { + "period": 3628818, + "thread": 24 + } + }, + { + "amount": "153.131798940", + "slot": { + "period": 3861032, + "thread": 18 + } + } + ], + "AU125vPphagrgT7NBLub7yHqbgjDjLodKkY4AYeRwNv74B8F3WLvS": [ + { + "amount": "212.949889505", + "slot": { + "period": 112241, + "thread": 4 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 228565, + "thread": 1 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 359637, + "thread": 13 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 643201, + "thread": 10 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 785583, + "thread": 18 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 959850, + "thread": 28 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1008870, + "thread": 29 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1208187, + "thread": 21 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1395725, + "thread": 3 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1618940, + "thread": 26 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1787334, + "thread": 9 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 1836490, + "thread": 15 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2129874, + "thread": 12 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2233784, + "thread": 26 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2374675, + "thread": 11 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2623331, + "thread": 21 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2648093, + "thread": 18 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2792450, + "thread": 19 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 2987494, + "thread": 6 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 3147344, + "thread": 7 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 3388037, + "thread": 9 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 3593698, + "thread": 30 + } + }, + { + "amount": "212.949889505", + "slot": { + "period": 3638103, + "thread": 11 + } + }, + { + "amount": "212.949889497", + "slot": { + "period": 3797072, + "thread": 13 + } + } + ], + "AU125vUUSwgAHGSZGNkLkgKo3KHAdvyjjqYoLYdX4WYu7vPwCB4va": [ + { + "amount": "55.068813170", + "slot": { + "period": 73494, + "thread": 29 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 233929, + "thread": 30 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 397863, + "thread": 26 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 628817, + "thread": 29 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 770047, + "thread": 25 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 825557, + "thread": 22 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1053726, + "thread": 22 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1165889, + "thread": 12 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1432893, + "thread": 7 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1579407, + "thread": 12 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1693113, + "thread": 17 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 1949993, + "thread": 15 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2030874, + "thread": 24 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2263722, + "thread": 0 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2343407, + "thread": 0 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2542241, + "thread": 9 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2723517, + "thread": 12 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 2793489, + "thread": 7 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 3053296, + "thread": 26 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 3214118, + "thread": 29 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 3341086, + "thread": 20 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 3543233, + "thread": 21 + } + }, + { + "amount": "55.068813170", + "slot": { + "period": 3736232, + "thread": 16 + } + }, + { + "amount": "55.068813172", + "slot": { + "period": 3797752, + "thread": 5 + } + } + ], + "AU125vfBztrTuQVwLR486ePzXpY6pqdbVvdFxmtKdQWRwNReMWJ8w": [ + { + "amount": "496.171116718", + "slot": { + "period": 139131, + "thread": 0 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 311187, + "thread": 19 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 461740, + "thread": 27 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 641267, + "thread": 11 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 783425, + "thread": 13 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 943191, + "thread": 5 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1066493, + "thread": 20 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1172696, + "thread": 17 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1366841, + "thread": 18 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1535599, + "thread": 17 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1745403, + "thread": 12 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 1884984, + "thread": 11 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2138730, + "thread": 5 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2207569, + "thread": 26 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2407409, + "thread": 2 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2509380, + "thread": 28 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2705458, + "thread": 12 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2950529, + "thread": 21 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 2967662, + "thread": 24 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 3145505, + "thread": 17 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 3314446, + "thread": 31 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 3505574, + "thread": 18 + } + }, + { + "amount": "496.171116718", + "slot": { + "period": 3685686, + "thread": 23 + } + }, + { + "amount": "496.171116728", + "slot": { + "period": 3821365, + "thread": 18 + } + } + ], + "AU125viHHMREGZZZqDC8NDznCgfW25viZRNNw5suJuZXLyGa3A3fZ": [ + { + "amount": "272.239373195", + "slot": { + "period": 139914, + "thread": 21 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 219846, + "thread": 3 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 474335, + "thread": 4 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 584059, + "thread": 19 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 707835, + "thread": 5 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 851557, + "thread": 21 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1101882, + "thread": 2 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1259192, + "thread": 7 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1419232, + "thread": 0 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1586017, + "thread": 4 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1697635, + "thread": 2 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 1844446, + "thread": 9 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2142552, + "thread": 20 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2243853, + "thread": 25 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2407530, + "thread": 5 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2620738, + "thread": 27 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2705722, + "thread": 0 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2794906, + "thread": 24 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 2983679, + "thread": 8 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 3242798, + "thread": 3 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 3352171, + "thread": 8 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 3492710, + "thread": 20 + } + }, + { + "amount": "272.239373195", + "slot": { + "period": 3624452, + "thread": 24 + } + }, + { + "amount": "272.239373206", + "slot": { + "period": 3917835, + "thread": 27 + } + } + ], + "AU125xSthRJ5tc1qUrTwxxNS6Ze4jftvf324xquzQV8rDiR4F3mu8": [ + { + "amount": "99.834724044", + "slot": { + "period": 82430, + "thread": 10 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 308883, + "thread": 7 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 428409, + "thread": 16 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 568881, + "thread": 17 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 687890, + "thread": 1 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 902049, + "thread": 24 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1042855, + "thread": 14 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1207262, + "thread": 27 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1319574, + "thread": 20 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1486790, + "thread": 13 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1773608, + "thread": 18 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 1968618, + "thread": 3 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2030333, + "thread": 7 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2166351, + "thread": 16 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2407838, + "thread": 2 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2471304, + "thread": 4 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2690415, + "thread": 16 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2814931, + "thread": 1 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 2971405, + "thread": 26 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 3250618, + "thread": 29 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 3298335, + "thread": 7 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 3495189, + "thread": 9 + } + }, + { + "amount": "99.834724044", + "slot": { + "period": 3776627, + "thread": 6 + } + }, + { + "amount": "99.834724041", + "slot": { + "period": 3841061, + "thread": 17 + } + } + ], + "AU125yHqcJxpUgMbvQruBN1m6V9kGKEeDJjsdmUAdgF1PMpndkQe1": [ + { + "amount": "140.430647811", + "slot": { + "period": 125069, + "thread": 22 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 201985, + "thread": 5 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 444180, + "thread": 27 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 501089, + "thread": 15 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 785839, + "thread": 13 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 961014, + "thread": 23 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1125233, + "thread": 6 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1257918, + "thread": 2 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1338322, + "thread": 26 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1506845, + "thread": 1 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1777196, + "thread": 13 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 1960974, + "thread": 27 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2035986, + "thread": 14 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2285808, + "thread": 12 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2378553, + "thread": 11 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2585148, + "thread": 9 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2639436, + "thread": 6 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2871123, + "thread": 22 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 2962823, + "thread": 6 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 3174227, + "thread": 19 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 3422146, + "thread": 21 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 3602782, + "thread": 16 + } + }, + { + "amount": "140.430647811", + "slot": { + "period": 3631021, + "thread": 18 + } + }, + { + "amount": "140.430647806", + "slot": { + "period": 3827794, + "thread": 4 + } + } + ], + "AU1261ZPaS7mu53PRpPsUxxuHSsxUNWLzfk8CoNBaKG45zNp3YPaZ": [ + { + "amount": "203.910101813", + "slot": { + "period": 53649, + "thread": 5 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 292798, + "thread": 24 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 482024, + "thread": 23 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 587017, + "thread": 14 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 782667, + "thread": 15 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 954578, + "thread": 26 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1085440, + "thread": 21 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1159462, + "thread": 18 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1354671, + "thread": 3 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1511960, + "thread": 31 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1783239, + "thread": 27 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 1968354, + "thread": 24 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2051201, + "thread": 4 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2198033, + "thread": 29 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2341481, + "thread": 1 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2576462, + "thread": 23 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2699733, + "thread": 30 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 2899801, + "thread": 22 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 3025317, + "thread": 13 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 3173379, + "thread": 4 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 3429693, + "thread": 3 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 3532427, + "thread": 16 + } + }, + { + "amount": "203.910101813", + "slot": { + "period": 3753266, + "thread": 1 + } + }, + { + "amount": "203.910101819", + "slot": { + "period": 3819348, + "thread": 12 + } + } + ], + "AU1261vxRXFretK57fxEUxGVSweLV6XVe2bpJCKFQS6ASydEFGYtt": [ + { + "amount": "426.064829387", + "slot": { + "period": 130319, + "thread": 18 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 290538, + "thread": 14 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 340850, + "thread": 28 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 558759, + "thread": 12 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 776738, + "thread": 23 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 854940, + "thread": 25 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 984730, + "thread": 13 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 1300522, + "thread": 30 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 1322783, + "thread": 10 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 1516168, + "thread": 10 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 1688489, + "thread": 1 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 1905672, + "thread": 18 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2107971, + "thread": 17 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2279417, + "thread": 30 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2443111, + "thread": 13 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2597459, + "thread": 24 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2631592, + "thread": 25 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2868371, + "thread": 9 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 2969061, + "thread": 28 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 3163151, + "thread": 7 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 3337149, + "thread": 3 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 3521886, + "thread": 17 + } + }, + { + "amount": "426.064829387", + "slot": { + "period": 3717925, + "thread": 23 + } + }, + { + "amount": "426.064829378", + "slot": { + "period": 3868147, + "thread": 12 + } + } + ], + "AU12621fnD4FBNQueJpJqT8bdGcFKeShNCehxstyBMKEs19TV3EhC": [ + { + "amount": "305.799675865", + "slot": { + "period": 12122, + "thread": 27 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 235429, + "thread": 26 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 383287, + "thread": 18 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 512184, + "thread": 3 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 700417, + "thread": 24 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 873751, + "thread": 17 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1096951, + "thread": 11 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1154943, + "thread": 25 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1441737, + "thread": 27 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1598204, + "thread": 9 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1716757, + "thread": 12 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 1838837, + "thread": 1 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2063110, + "thread": 16 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2278378, + "thread": 18 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2412398, + "thread": 24 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2477599, + "thread": 19 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2731076, + "thread": 0 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 2810459, + "thread": 18 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 3074409, + "thread": 19 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 3200940, + "thread": 15 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 3432190, + "thread": 1 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 3604646, + "thread": 9 + } + }, + { + "amount": "305.799675865", + "slot": { + "period": 3733104, + "thread": 6 + } + }, + { + "amount": "305.799675861", + "slot": { + "period": 3905769, + "thread": 25 + } + } + ], + "AU126275BTTy4yRRb76QWpPpPD3b9umrLVdsD3VDvRVFvui7pC3cn": [ + { + "amount": "226.620179342", + "slot": { + "period": 44110, + "thread": 21 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 280073, + "thread": 17 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 333178, + "thread": 2 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 572443, + "thread": 11 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 719505, + "thread": 3 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 957391, + "thread": 0 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1019145, + "thread": 25 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1217579, + "thread": 31 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1348974, + "thread": 21 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1485381, + "thread": 26 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1650938, + "thread": 16 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 1888773, + "thread": 0 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2099423, + "thread": 19 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2185375, + "thread": 24 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2355870, + "thread": 7 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2551399, + "thread": 14 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2650327, + "thread": 19 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 2841732, + "thread": 30 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 3049054, + "thread": 25 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 3208141, + "thread": 9 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 3440641, + "thread": 16 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 3565990, + "thread": 0 + } + }, + { + "amount": "226.620179342", + "slot": { + "period": 3632864, + "thread": 25 + } + }, + { + "amount": "226.620179331", + "slot": { + "period": 3827000, + "thread": 15 + } + } + ], + "AU1262mMEw1RgTfn2VvZwMfa2L9CXnrNXKcMQnaPpa45Q7RNDgjaH": [ + { + "amount": "141.926789400", + "slot": { + "period": 167189, + "thread": 7 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 205173, + "thread": 3 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 455911, + "thread": 31 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 633473, + "thread": 5 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 793511, + "thread": 30 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 959720, + "thread": 11 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1064322, + "thread": 7 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1284585, + "thread": 19 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1466195, + "thread": 10 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1621912, + "thread": 8 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1696152, + "thread": 19 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1875758, + "thread": 14 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 1991401, + "thread": 20 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 2217077, + "thread": 29 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 2428270, + "thread": 19 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 2521077, + "thread": 22 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 2659314, + "thread": 2 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 2799445, + "thread": 4 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 3102474, + "thread": 23 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 3191085, + "thread": 25 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 3359763, + "thread": 10 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 3547092, + "thread": 18 + } + }, + { + "amount": "141.926789400", + "slot": { + "period": 3636215, + "thread": 6 + } + }, + { + "amount": "141.926789412", + "slot": { + "period": 3889368, + "thread": 17 + } + } + ], + "AU1262wyBySnSRjEZX6kY7m58dH9Yu7t6z5D27rp9AZHNUZw1N8Zh": [ + { + "amount": "172.101340379", + "slot": { + "period": 155868, + "thread": 18 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 209731, + "thread": 10 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 378092, + "thread": 13 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 494068, + "thread": 7 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 728071, + "thread": 12 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 942988, + "thread": 8 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1023070, + "thread": 0 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1239586, + "thread": 9 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1435291, + "thread": 12 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1570857, + "thread": 9 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1765250, + "thread": 7 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1842766, + "thread": 16 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 1987470, + "thread": 19 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 2254831, + "thread": 13 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 2298587, + "thread": 0 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 2593948, + "thread": 14 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 2634141, + "thread": 2 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 2817608, + "thread": 2 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 3078387, + "thread": 3 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 3140021, + "thread": 9 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 3345730, + "thread": 28 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 3540355, + "thread": 29 + } + }, + { + "amount": "172.101340379", + "slot": { + "period": 3663006, + "thread": 10 + } + }, + { + "amount": "172.101340371", + "slot": { + "period": 3862348, + "thread": 29 + } + } + ], + "AU12644VVsuWfJbctj3yveM8Cy8pLye1iHMYGtPHLuf43hVKvRk6N": [ + { + "amount": "140.488483878", + "slot": { + "period": 159996, + "thread": 19 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 223978, + "thread": 21 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 367149, + "thread": 23 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 582993, + "thread": 1 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 670166, + "thread": 22 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 913525, + "thread": 16 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1003522, + "thread": 19 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1274803, + "thread": 29 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1464650, + "thread": 4 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1519294, + "thread": 3 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1729895, + "thread": 22 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 1924105, + "thread": 1 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2017925, + "thread": 7 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2149546, + "thread": 10 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2409564, + "thread": 3 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2498381, + "thread": 11 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2697884, + "thread": 3 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 2802350, + "thread": 24 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 3069750, + "thread": 12 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 3197494, + "thread": 8 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 3293814, + "thread": 14 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 3576719, + "thread": 31 + } + }, + { + "amount": "140.488483878", + "slot": { + "period": 3704879, + "thread": 31 + } + }, + { + "amount": "140.488483873", + "slot": { + "period": 3793661, + "thread": 6 + } + } + ], + "AU1264n8kZiJLXXvHv9fg5RDqWphCzEz2187h7e3qWExWnNicXwy7": [ + { + "amount": "88.480204624", + "slot": { + "period": 154116, + "thread": 15 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 182399, + "thread": 10 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 373795, + "thread": 16 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 588525, + "thread": 24 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 699802, + "thread": 16 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 873505, + "thread": 29 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1065579, + "thread": 23 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1195531, + "thread": 23 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1389156, + "thread": 26 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1581802, + "thread": 7 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1734850, + "thread": 12 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 1934372, + "thread": 4 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2058678, + "thread": 22 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2170905, + "thread": 6 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2444613, + "thread": 3 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2591071, + "thread": 2 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2752446, + "thread": 2 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 2878366, + "thread": 11 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 3110681, + "thread": 7 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 3142740, + "thread": 7 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 3437159, + "thread": 30 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 3520230, + "thread": 24 + } + }, + { + "amount": "88.480204624", + "slot": { + "period": 3674206, + "thread": 13 + } + }, + { + "amount": "88.480204616", + "slot": { + "period": 3942497, + "thread": 27 + } + } + ], + "AU1265Rh7JgKmgR6FXafZeCsQXMBNFcDGuHBH2jRG1778YLofTonV": [ + { + "amount": "130.289313543", + "slot": { + "period": 42103, + "thread": 6 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 215354, + "thread": 2 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 435654, + "thread": 27 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 543015, + "thread": 19 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 720634, + "thread": 18 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 855194, + "thread": 4 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1139974, + "thread": 7 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1309517, + "thread": 21 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1368496, + "thread": 24 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1559631, + "thread": 21 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1775049, + "thread": 24 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 1952617, + "thread": 24 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2090532, + "thread": 30 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2267907, + "thread": 6 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2400981, + "thread": 4 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2598156, + "thread": 9 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2651412, + "thread": 28 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 2857918, + "thread": 10 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 3113875, + "thread": 13 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 3123311, + "thread": 21 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 3418052, + "thread": 30 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 3483577, + "thread": 8 + } + }, + { + "amount": "130.289313543", + "slot": { + "period": 3686990, + "thread": 26 + } + }, + { + "amount": "130.289313553", + "slot": { + "period": 3900067, + "thread": 6 + } + } + ], + "AU1265jYQzWGk6b1aicfxd7VzuPCqQYtgaXgBv522EvTnWTApkuym": [ + { + "amount": "659.121519651", + "slot": { + "period": 27304, + "thread": 20 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 280542, + "thread": 10 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 388860, + "thread": 22 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 560774, + "thread": 1 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 668192, + "thread": 30 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 909860, + "thread": 24 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1011096, + "thread": 18 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1295805, + "thread": 12 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1345808, + "thread": 31 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1485998, + "thread": 7 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1695861, + "thread": 23 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 1910838, + "thread": 30 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2092061, + "thread": 12 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2268227, + "thread": 5 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2363327, + "thread": 30 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2558811, + "thread": 24 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2690797, + "thread": 27 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 2899222, + "thread": 8 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 3026478, + "thread": 1 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 3284583, + "thread": 20 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 3395119, + "thread": 13 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 3463124, + "thread": 16 + } + }, + { + "amount": "659.121519651", + "slot": { + "period": 3740080, + "thread": 16 + } + }, + { + "amount": "659.121519650", + "slot": { + "period": 3813237, + "thread": 21 + } + } + ], + "AU1266GUES4N7tmPNcBykWYX6UVkdN4kXGRx6dQNt1YAWc66bDmks": [ + { + "amount": "189.841072884", + "slot": { + "period": 54286, + "thread": 25 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 167939, + "thread": 21 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 480309, + "thread": 22 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 573650, + "thread": 27 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 781840, + "thread": 28 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 926272, + "thread": 4 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1064674, + "thread": 13 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1302144, + "thread": 8 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1463105, + "thread": 10 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1575255, + "thread": 18 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1714173, + "thread": 2 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 1940873, + "thread": 31 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2038141, + "thread": 11 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2228982, + "thread": 21 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2382341, + "thread": 12 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2597380, + "thread": 2 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2761448, + "thread": 1 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2825400, + "thread": 0 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 2960890, + "thread": 20 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 3199139, + "thread": 30 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 3300146, + "thread": 23 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 3487251, + "thread": 22 + } + }, + { + "amount": "189.841072884", + "slot": { + "period": 3628707, + "thread": 8 + } + }, + { + "amount": "189.841072873", + "slot": { + "period": 3888605, + "thread": 26 + } + } + ], + "AU1266iF82ucnfiZgkLeiVHEpDnpoEsKYTKddAE8PwYEb4EHt12mY": [ + { + "amount": "194.243633084", + "slot": { + "period": 107688, + "thread": 24 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 247230, + "thread": 1 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 412104, + "thread": 8 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 563451, + "thread": 16 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 707692, + "thread": 7 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 920815, + "thread": 29 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 983848, + "thread": 12 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 1196577, + "thread": 15 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 1391235, + "thread": 14 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 1505203, + "thread": 27 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 1661678, + "thread": 31 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 1907926, + "thread": 8 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2056428, + "thread": 23 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2155190, + "thread": 12 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2320522, + "thread": 29 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2474196, + "thread": 21 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2777506, + "thread": 10 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 2792982, + "thread": 14 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 3008975, + "thread": 16 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 3222850, + "thread": 21 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 3414610, + "thread": 16 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 3464902, + "thread": 17 + } + }, + { + "amount": "194.243633084", + "slot": { + "period": 3759977, + "thread": 12 + } + }, + { + "amount": "194.243633077", + "slot": { + "period": 3925618, + "thread": 5 + } + } + ], + "AU1266vs6qtCVPFpULnvTUArYyaFwn6nwHUr2oZxiSoKEwmpubvwf": [ + { + "amount": "83.288821742", + "slot": { + "period": 87074, + "thread": 0 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 323219, + "thread": 7 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 457502, + "thread": 19 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 556736, + "thread": 3 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 754106, + "thread": 8 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 943660, + "thread": 8 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1132758, + "thread": 11 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1242285, + "thread": 14 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1455989, + "thread": 26 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1575127, + "thread": 6 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1785620, + "thread": 29 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 1954876, + "thread": 4 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2096365, + "thread": 22 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2165931, + "thread": 9 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2449170, + "thread": 16 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2572542, + "thread": 31 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2779029, + "thread": 8 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2868462, + "thread": 18 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 2981956, + "thread": 23 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 3272366, + "thread": 4 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 3312057, + "thread": 28 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 3471894, + "thread": 21 + } + }, + { + "amount": "83.288821742", + "slot": { + "period": 3710503, + "thread": 3 + } + }, + { + "amount": "83.288821751", + "slot": { + "period": 3916864, + "thread": 27 + } + } + ], + "AU1267PGLCJV87Xc5yzhh7EFjGTeeLpyHQPiMrJT9QNuUTYmUtwd3": [ + { + "amount": "355.688925633", + "slot": { + "period": 123223, + "thread": 0 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 237882, + "thread": 26 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 336481, + "thread": 13 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 616077, + "thread": 28 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 674175, + "thread": 28 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 900973, + "thread": 28 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1093766, + "thread": 19 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1258164, + "thread": 27 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1356272, + "thread": 17 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1596885, + "thread": 22 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1798649, + "thread": 18 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 1863124, + "thread": 10 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2110480, + "thread": 6 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2218452, + "thread": 6 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2434281, + "thread": 20 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2503880, + "thread": 29 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2737957, + "thread": 27 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 2879524, + "thread": 5 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 3018165, + "thread": 8 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 3194683, + "thread": 2 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 3427122, + "thread": 28 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 3460492, + "thread": 20 + } + }, + { + "amount": "355.688925633", + "slot": { + "period": 3694775, + "thread": 8 + } + }, + { + "amount": "355.688925629", + "slot": { + "period": 3936383, + "thread": 25 + } + } + ], + "AU1267oCLQKbS9eDQJV4LuSWEKP1c8kWstATHFwKmZFMBCtwfuBes": [ + { + "amount": "435.291181408", + "slot": { + "period": 155801, + "thread": 1 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 214250, + "thread": 3 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 422323, + "thread": 20 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 515633, + "thread": 31 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 739957, + "thread": 4 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 872224, + "thread": 7 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1094891, + "thread": 3 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1170582, + "thread": 9 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1367956, + "thread": 1 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1602020, + "thread": 1 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1711247, + "thread": 5 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 1810062, + "thread": 14 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2072707, + "thread": 29 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2272915, + "thread": 1 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2404270, + "thread": 4 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2563743, + "thread": 10 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2657152, + "thread": 26 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 2904824, + "thread": 6 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 3034988, + "thread": 16 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 3123149, + "thread": 11 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 3384997, + "thread": 11 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 3539418, + "thread": 19 + } + }, + { + "amount": "435.291181408", + "slot": { + "period": 3629241, + "thread": 18 + } + }, + { + "amount": "435.291181399", + "slot": { + "period": 3885154, + "thread": 20 + } + } + ], + "AU1268AxwUcDoHPRL2jZQLQfTfapfZorYycLgzE4Q9FruTZNDB2dw": [ + { + "amount": "425.795444708", + "slot": { + "period": 48328, + "thread": 28 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 274895, + "thread": 29 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 403215, + "thread": 18 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 595694, + "thread": 10 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 659630, + "thread": 28 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 821482, + "thread": 10 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 993628, + "thread": 16 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 1279562, + "thread": 29 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 1373594, + "thread": 6 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 1522498, + "thread": 28 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 1717372, + "thread": 29 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 1974371, + "thread": 2 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2134740, + "thread": 0 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2292064, + "thread": 28 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2426883, + "thread": 3 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2476594, + "thread": 5 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2684993, + "thread": 11 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 2842487, + "thread": 1 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 3016291, + "thread": 30 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 3152912, + "thread": 16 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 3442015, + "thread": 1 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 3591007, + "thread": 0 + } + }, + { + "amount": "425.795444708", + "slot": { + "period": 3682117, + "thread": 8 + } + }, + { + "amount": "425.795444711", + "slot": { + "period": 3811288, + "thread": 16 + } + } + ], + "AU1268JMRSAZMwGdeeTLfAoPhBrguU5bTgmwyA4vMqQWpTK6gMPZs": [ + { + "amount": "112.374255658", + "slot": { + "period": 126363, + "thread": 9 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 251577, + "thread": 31 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 377731, + "thread": 17 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 632622, + "thread": 31 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 684316, + "thread": 5 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 885081, + "thread": 16 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1099856, + "thread": 26 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1223672, + "thread": 3 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1384709, + "thread": 27 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1639779, + "thread": 27 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1792588, + "thread": 18 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 1843976, + "thread": 5 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2039512, + "thread": 29 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2286768, + "thread": 10 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2302997, + "thread": 18 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2519323, + "thread": 27 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2711310, + "thread": 9 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 2827737, + "thread": 5 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 3004382, + "thread": 14 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 3200155, + "thread": 26 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 3408366, + "thread": 10 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 3527575, + "thread": 9 + } + }, + { + "amount": "112.374255658", + "slot": { + "period": 3699863, + "thread": 16 + } + }, + { + "amount": "112.374255657", + "slot": { + "period": 3813666, + "thread": 5 + } + } + ], + "AU1268kEkUswWvXdA5LgGHeRJVS2PTXcc1z8vm3qM6gzG2GeagF9f": [ + { + "amount": "126.264039477", + "slot": { + "period": 102811, + "thread": 30 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 283223, + "thread": 3 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 482978, + "thread": 21 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 625524, + "thread": 23 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 756213, + "thread": 1 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 979499, + "thread": 3 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1117738, + "thread": 1 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1222424, + "thread": 15 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1402522, + "thread": 19 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1627892, + "thread": 17 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1756386, + "thread": 24 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 1951881, + "thread": 24 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2089551, + "thread": 12 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2204173, + "thread": 23 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2424258, + "thread": 17 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2519827, + "thread": 7 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2709103, + "thread": 15 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 2951737, + "thread": 26 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 3116072, + "thread": 22 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 3150322, + "thread": 15 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 3446396, + "thread": 19 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 3474408, + "thread": 30 + } + }, + { + "amount": "126.264039477", + "slot": { + "period": 3759947, + "thread": 5 + } + }, + { + "amount": "126.264039483", + "slot": { + "period": 3921996, + "thread": 2 + } + } + ], + "AU1268uh9tWn1FHDDDYNWf2GEqoH9Kfu8hdpaypzLEuz1H9VsQkmG": [ + { + "amount": "137.411734517", + "slot": { + "period": 68741, + "thread": 15 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 190544, + "thread": 7 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 410419, + "thread": 29 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 501099, + "thread": 20 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 769902, + "thread": 8 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 862516, + "thread": 12 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1068697, + "thread": 15 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1213736, + "thread": 26 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1320069, + "thread": 6 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1613439, + "thread": 3 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1756701, + "thread": 13 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 1894651, + "thread": 12 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2073048, + "thread": 7 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2239447, + "thread": 14 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2299348, + "thread": 15 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2522738, + "thread": 0 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2639051, + "thread": 18 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 2940742, + "thread": 10 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 3043654, + "thread": 23 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 3223795, + "thread": 24 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 3382260, + "thread": 22 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 3504274, + "thread": 1 + } + }, + { + "amount": "137.411734517", + "slot": { + "period": 3753099, + "thread": 18 + } + }, + { + "amount": "137.411734527", + "slot": { + "period": 3905665, + "thread": 20 + } + } + ], + "AU1269VubKyeik61BDy4Z818kcqw36VTimruYm5SeFGcgtWB2VLJK": [ + { + "amount": "88.957314624", + "slot": { + "period": 164038, + "thread": 20 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 311290, + "thread": 12 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 398110, + "thread": 13 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 519985, + "thread": 19 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 660822, + "thread": 2 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 830827, + "thread": 20 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1097844, + "thread": 30 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1151798, + "thread": 17 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1350492, + "thread": 0 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1573932, + "thread": 12 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1759598, + "thread": 2 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1872524, + "thread": 29 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 1977075, + "thread": 19 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2161060, + "thread": 17 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2451667, + "thread": 26 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2471550, + "thread": 23 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2691530, + "thread": 0 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2844380, + "thread": 8 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 2969814, + "thread": 20 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 3155593, + "thread": 6 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 3406961, + "thread": 10 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 3564766, + "thread": 6 + } + }, + { + "amount": "88.957314624", + "slot": { + "period": 3661767, + "thread": 28 + } + }, + { + "amount": "88.957314635", + "slot": { + "period": 3846020, + "thread": 29 + } + } + ], + "AU1269cwpVjZ5ZWW5YgAUuMo3waD3es5ZRE7QjjmRzHyBRWczdC6t": [ + { + "amount": "203.051896148", + "slot": { + "period": 102779, + "thread": 31 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 207241, + "thread": 24 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 405986, + "thread": 25 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 639687, + "thread": 18 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 681856, + "thread": 23 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 888523, + "thread": 28 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1103861, + "thread": 27 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1213585, + "thread": 3 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1461695, + "thread": 17 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1559879, + "thread": 9 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1681435, + "thread": 1 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 1847695, + "thread": 24 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2032145, + "thread": 4 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2155476, + "thread": 30 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2315716, + "thread": 5 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2480995, + "thread": 4 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2752399, + "thread": 21 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 2816013, + "thread": 4 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 3012791, + "thread": 17 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 3143459, + "thread": 18 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 3316966, + "thread": 14 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 3586905, + "thread": 9 + } + }, + { + "amount": "203.051896148", + "slot": { + "period": 3746910, + "thread": 26 + } + }, + { + "amount": "203.051896146", + "slot": { + "period": 3825337, + "thread": 7 + } + } + ], + "AU1269zisUtJwZ6tNcxUXzqjD5drgR1FVGB1hhBL5PArJU1rnjkrx": [ + { + "amount": "148.209602788", + "slot": { + "period": 71856, + "thread": 20 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 171359, + "thread": 2 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 340798, + "thread": 3 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 646710, + "thread": 28 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 710080, + "thread": 3 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 916534, + "thread": 4 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1002867, + "thread": 7 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1240199, + "thread": 26 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1407567, + "thread": 11 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1644115, + "thread": 9 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1678228, + "thread": 15 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 1880930, + "thread": 11 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2128881, + "thread": 10 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2180915, + "thread": 12 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2326888, + "thread": 7 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2603771, + "thread": 21 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2628431, + "thread": 17 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 2859282, + "thread": 7 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 3119478, + "thread": 22 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 3222298, + "thread": 20 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 3428572, + "thread": 1 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 3601838, + "thread": 27 + } + }, + { + "amount": "148.209602788", + "slot": { + "period": 3645816, + "thread": 0 + } + }, + { + "amount": "148.209602781", + "slot": { + "period": 3793775, + "thread": 24 + } + } + ], + "AU126A5wYsCk7ej9JKW7L9EUwSomP6d5CqRGT6Chyjjf1yMCDDNc": [ + { + "amount": "117.854901452", + "slot": { + "period": 154653, + "thread": 16 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 309042, + "thread": 10 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 382231, + "thread": 5 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 643606, + "thread": 25 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 801805, + "thread": 16 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 881216, + "thread": 26 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1105986, + "thread": 4 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1230578, + "thread": 2 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1471204, + "thread": 6 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1618029, + "thread": 31 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1805121, + "thread": 17 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 1853717, + "thread": 25 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2111520, + "thread": 0 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2291644, + "thread": 3 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2383355, + "thread": 4 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2533962, + "thread": 6 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2781492, + "thread": 30 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 2943057, + "thread": 18 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 3022156, + "thread": 4 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 3134767, + "thread": 1 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 3384975, + "thread": 30 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 3512448, + "thread": 24 + } + }, + { + "amount": "117.854901452", + "slot": { + "period": 3703620, + "thread": 16 + } + }, + { + "amount": "117.854901447", + "slot": { + "period": 3787374, + "thread": 26 + } + } + ], + "AU126BoS11FD46dEuMCxLm2PAJrSRPbpWv8HUSEKN4tXSASUGEPLt": [ + { + "amount": "452.331643274", + "slot": { + "period": 132684, + "thread": 28 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 319502, + "thread": 5 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 342749, + "thread": 9 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 554603, + "thread": 24 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 787943, + "thread": 8 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 907996, + "thread": 8 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1132416, + "thread": 21 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1297197, + "thread": 11 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1436736, + "thread": 25 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1518049, + "thread": 5 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1730472, + "thread": 3 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 1897893, + "thread": 19 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2092296, + "thread": 11 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2231762, + "thread": 0 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2438970, + "thread": 14 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2578416, + "thread": 6 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2686202, + "thread": 28 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 2928296, + "thread": 31 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 3109286, + "thread": 24 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 3239759, + "thread": 12 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 3372107, + "thread": 20 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 3605786, + "thread": 9 + } + }, + { + "amount": "452.331643274", + "slot": { + "period": 3659681, + "thread": 20 + } + }, + { + "amount": "452.331643264", + "slot": { + "period": 3815473, + "thread": 20 + } + } + ], + "AU126CA4RnQHXweZLMVkz43AgQWuLfbKraCP5jT5DP2VgaeMkSCfN": [ + { + "amount": "136.707857411", + "slot": { + "period": 46465, + "thread": 7 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 310313, + "thread": 1 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 397787, + "thread": 10 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 590761, + "thread": 27 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 660561, + "thread": 0 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 976396, + "thread": 9 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 992637, + "thread": 0 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 1268614, + "thread": 28 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 1391683, + "thread": 2 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 1605340, + "thread": 1 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 1726564, + "thread": 30 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 1843878, + "thread": 15 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2101736, + "thread": 14 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2252914, + "thread": 12 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2363686, + "thread": 19 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2512183, + "thread": 9 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2773739, + "thread": 29 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2881921, + "thread": 28 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 2973098, + "thread": 25 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 3208127, + "thread": 14 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 3339746, + "thread": 20 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 3511064, + "thread": 17 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 3749639, + "thread": 6 + } + }, + { + "amount": "136.707857411", + "slot": { + "period": 3792008, + "thread": 17 + } + } + ], + "AU126DXgDMFzMkaFcT5q8uqoCjpp5anUu9VGWNW6HYRQeGHscdPA6": [ + { + "amount": "184.995079450", + "slot": { + "period": 126729, + "thread": 26 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 317846, + "thread": 11 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 356492, + "thread": 27 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 606870, + "thread": 28 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 734115, + "thread": 16 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 889751, + "thread": 28 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1094576, + "thread": 28 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1314960, + "thread": 8 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1323068, + "thread": 21 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1645926, + "thread": 22 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1656243, + "thread": 29 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 1846668, + "thread": 25 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2133054, + "thread": 3 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2253939, + "thread": 28 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2321254, + "thread": 12 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2466509, + "thread": 15 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2773974, + "thread": 31 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2939620, + "thread": 24 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 2990793, + "thread": 3 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 3179631, + "thread": 23 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 3427971, + "thread": 3 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 3604447, + "thread": 4 + } + }, + { + "amount": "184.995079450", + "slot": { + "period": 3665575, + "thread": 10 + } + }, + { + "amount": "184.995079457", + "slot": { + "period": 3940709, + "thread": 1 + } + } + ], + "AU126E67kkRuvPqqry7aYCLtQw9mgiYbTQDnnXPUWakyNA36jU95m": [ + { + "amount": "89.176418409", + "slot": { + "period": 148717, + "thread": 3 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 238268, + "thread": 1 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 361813, + "thread": 22 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 571700, + "thread": 30 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 759346, + "thread": 28 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 975819, + "thread": 12 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1020490, + "thread": 25 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1276138, + "thread": 15 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1409584, + "thread": 10 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1610193, + "thread": 16 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1761507, + "thread": 0 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 1961934, + "thread": 2 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2086150, + "thread": 21 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2242455, + "thread": 17 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2408287, + "thread": 25 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2585306, + "thread": 24 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2711942, + "thread": 2 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2888644, + "thread": 8 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 2955159, + "thread": 0 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 3200897, + "thread": 29 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 3338275, + "thread": 2 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 3553054, + "thread": 13 + } + }, + { + "amount": "89.176418409", + "slot": { + "period": 3625332, + "thread": 5 + } + }, + { + "amount": "89.176418399", + "slot": { + "period": 3789560, + "thread": 10 + } + } + ], + "AU126Egz68cvz3QaWf3yhpk4bd2CAD991o7fA5TX37JvTU5XCyNGD": [ + { + "amount": "378.539014086", + "slot": { + "period": 45451, + "thread": 2 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 169887, + "thread": 0 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 355290, + "thread": 25 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 567073, + "thread": 8 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 724142, + "thread": 31 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 955951, + "thread": 22 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1133990, + "thread": 31 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1221500, + "thread": 4 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1358410, + "thread": 30 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1561919, + "thread": 2 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1713957, + "thread": 27 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 1966780, + "thread": 2 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2125461, + "thread": 9 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2237853, + "thread": 1 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2432328, + "thread": 24 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2576688, + "thread": 22 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2700012, + "thread": 10 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 2808015, + "thread": 5 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 3117084, + "thread": 23 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 3170787, + "thread": 11 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 3419512, + "thread": 16 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 3501828, + "thread": 27 + } + }, + { + "amount": "378.539014086", + "slot": { + "period": 3664003, + "thread": 13 + } + }, + { + "amount": "378.539014090", + "slot": { + "period": 3786747, + "thread": 26 + } + } + ], + "AU126Eqr2uCrQXR4Vezcf9CAYeAckFcyXR8zTLT3X4e9cdx6un3wB": [ + { + "amount": "223.364755386", + "slot": { + "period": 36838, + "thread": 18 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 181695, + "thread": 15 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 328697, + "thread": 3 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 597752, + "thread": 2 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 709014, + "thread": 22 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 906197, + "thread": 11 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1059675, + "thread": 29 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1244649, + "thread": 19 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1383655, + "thread": 7 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1588003, + "thread": 27 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1655359, + "thread": 7 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 1883716, + "thread": 28 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2117009, + "thread": 19 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2173750, + "thread": 22 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2433340, + "thread": 16 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2621558, + "thread": 23 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2626458, + "thread": 9 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 2869034, + "thread": 15 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 3092761, + "thread": 28 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 3258645, + "thread": 20 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 3321658, + "thread": 8 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 3615162, + "thread": 11 + } + }, + { + "amount": "223.364755386", + "slot": { + "period": 3737314, + "thread": 27 + } + }, + { + "amount": "223.364755376", + "slot": { + "period": 3928336, + "thread": 30 + } + } + ], + "AU126Fjg9t6JGVnRRFMSV2dqnK3B37USAoedCw7fXJSxJNjKiKhs2": [ + { + "amount": "278.669077600", + "slot": { + "period": 109602, + "thread": 19 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 313639, + "thread": 18 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 348475, + "thread": 24 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 601716, + "thread": 15 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 660942, + "thread": 21 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 945409, + "thread": 20 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1096092, + "thread": 5 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1152262, + "thread": 30 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1475957, + "thread": 24 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1497240, + "thread": 4 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1758737, + "thread": 15 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 1820587, + "thread": 4 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2082969, + "thread": 29 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2263512, + "thread": 28 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2310625, + "thread": 1 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2596286, + "thread": 1 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2674032, + "thread": 17 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2893713, + "thread": 3 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 2978911, + "thread": 27 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 3144624, + "thread": 7 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 3300083, + "thread": 7 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 3526251, + "thread": 2 + } + }, + { + "amount": "278.669077600", + "slot": { + "period": 3717907, + "thread": 18 + } + }, + { + "amount": "278.669077606", + "slot": { + "period": 3902162, + "thread": 1 + } + } + ], + "AU126HFTNuEoAaMR12tr4HJno8C6petcwfNAfTgwXcHQMytt65iNb": [ + { + "amount": "286.457564992", + "slot": { + "period": 77799, + "thread": 8 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 272621, + "thread": 13 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 451415, + "thread": 9 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 523856, + "thread": 26 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 692757, + "thread": 6 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 938637, + "thread": 6 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1023045, + "thread": 21 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1287104, + "thread": 29 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1370890, + "thread": 10 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1552051, + "thread": 12 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1767068, + "thread": 21 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 1870902, + "thread": 13 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2031646, + "thread": 14 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2269202, + "thread": 8 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2460373, + "thread": 16 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2620746, + "thread": 13 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2664411, + "thread": 26 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 2937471, + "thread": 18 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 3023923, + "thread": 12 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 3138180, + "thread": 10 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 3311117, + "thread": 6 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 3576731, + "thread": 9 + } + }, + { + "amount": "286.457564992", + "slot": { + "period": 3654013, + "thread": 23 + } + }, + { + "amount": "286.457565000", + "slot": { + "period": 3863931, + "thread": 12 + } + } + ], + "AU126HWx34TwBs8oBWPbdFXehY1NBUo3XgrMyD1Ljcxha3X21BpKv": [ + { + "amount": "249.080854899", + "slot": { + "period": 40414, + "thread": 31 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 194435, + "thread": 24 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 331014, + "thread": 29 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 611970, + "thread": 8 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 766953, + "thread": 2 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 888054, + "thread": 8 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1096178, + "thread": 31 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1174286, + "thread": 2 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1360834, + "thread": 20 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1553403, + "thread": 7 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1711853, + "thread": 26 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 1867254, + "thread": 13 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2130661, + "thread": 24 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2179591, + "thread": 2 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2348783, + "thread": 11 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2599784, + "thread": 11 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2744520, + "thread": 12 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 2863037, + "thread": 27 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 3004618, + "thread": 7 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 3196864, + "thread": 20 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 3336159, + "thread": 24 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 3526880, + "thread": 3 + } + }, + { + "amount": "249.080854899", + "slot": { + "period": 3678289, + "thread": 28 + } + }, + { + "amount": "249.080854892", + "slot": { + "period": 3784071, + "thread": 10 + } + } + ], + "AU126HkSXZ2FdgnPHdgd968Aiho3AqNRpUEtQw6pStSfFogBuo2WG": [ + { + "amount": "57.235183697", + "slot": { + "period": 157153, + "thread": 17 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 236159, + "thread": 23 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 339853, + "thread": 9 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 652951, + "thread": 20 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 800635, + "thread": 22 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 913132, + "thread": 11 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1124965, + "thread": 10 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1204367, + "thread": 31 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1454146, + "thread": 27 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1558093, + "thread": 4 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1799315, + "thread": 0 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 1902721, + "thread": 14 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2032882, + "thread": 10 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2245649, + "thread": 20 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2397135, + "thread": 29 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2609094, + "thread": 23 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2639765, + "thread": 18 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 2898433, + "thread": 15 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 3093933, + "thread": 15 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 3175604, + "thread": 21 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 3322626, + "thread": 30 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 3518319, + "thread": 6 + } + }, + { + "amount": "57.235183697", + "slot": { + "period": 3669912, + "thread": 13 + } + }, + { + "amount": "57.235183686", + "slot": { + "period": 3840554, + "thread": 3 + } + } + ], + "AU126HutNgBhmCuXkUUd5Kw3coeJCdCggKYARP58UKHwHU9kizc3H": [ + { + "amount": "289.109493754", + "slot": { + "period": 13075, + "thread": 0 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 265039, + "thread": 20 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 462993, + "thread": 4 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 525042, + "thread": 11 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 763653, + "thread": 18 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 936352, + "thread": 0 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1110586, + "thread": 20 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1171530, + "thread": 31 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1373537, + "thread": 20 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1530750, + "thread": 24 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1665438, + "thread": 19 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 1903375, + "thread": 14 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2047470, + "thread": 20 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2199662, + "thread": 27 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2314857, + "thread": 29 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2581970, + "thread": 8 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2691764, + "thread": 19 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2874568, + "thread": 26 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 2959354, + "thread": 10 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 3171056, + "thread": 30 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 3439806, + "thread": 15 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 3607803, + "thread": 22 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 3702039, + "thread": 1 + } + }, + { + "amount": "289.109493754", + "slot": { + "period": 3791948, + "thread": 6 + } + } + ], + "AU126Jp5JLyNCfGiSHTVzEfAqv1wWseHpZAi9qpkiddmX7DuY6iDE": [ + { + "amount": "150.777877062", + "slot": { + "period": 18597, + "thread": 15 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 281431, + "thread": 30 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 349921, + "thread": 15 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 593384, + "thread": 6 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 783411, + "thread": 15 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 925797, + "thread": 29 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 987201, + "thread": 1 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 1277985, + "thread": 24 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 1327203, + "thread": 0 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 1483515, + "thread": 21 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 1652336, + "thread": 0 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 1863005, + "thread": 18 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2010905, + "thread": 28 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2204820, + "thread": 13 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2305278, + "thread": 23 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2572514, + "thread": 0 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2649220, + "thread": 23 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 2805774, + "thread": 28 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 3025326, + "thread": 15 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 3258285, + "thread": 23 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 3370339, + "thread": 14 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 3608156, + "thread": 29 + } + }, + { + "amount": "150.777877062", + "slot": { + "period": 3643988, + "thread": 29 + } + }, + { + "amount": "150.777877069", + "slot": { + "period": 3874991, + "thread": 27 + } + } + ], + "AU126K1m8AZ5HC5erYee5N6QQbQxZWGRPxHCwBUeRdjeqphrvXYpW": [ + { + "amount": "56.342187513", + "slot": { + "period": 144929, + "thread": 31 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 249184, + "thread": 9 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 360743, + "thread": 13 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 547903, + "thread": 4 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 675395, + "thread": 2 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 963197, + "thread": 12 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1136856, + "thread": 2 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1239247, + "thread": 9 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1386968, + "thread": 7 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1608838, + "thread": 22 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1714644, + "thread": 31 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 1947304, + "thread": 26 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2003561, + "thread": 2 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2230684, + "thread": 23 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2336486, + "thread": 20 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2491404, + "thread": 15 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2739197, + "thread": 15 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 2859244, + "thread": 9 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 3091403, + "thread": 26 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 3222681, + "thread": 1 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 3365033, + "thread": 27 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 3481079, + "thread": 30 + } + }, + { + "amount": "56.342187513", + "slot": { + "period": 3638119, + "thread": 22 + } + }, + { + "amount": "56.342187517", + "slot": { + "period": 3851683, + "thread": 11 + } + } + ], + "AU126KJ5gs8X53SAcXVbs9b7UWJomh7RUGe38FCBZgmzXBLXeSQjb": [ + { + "amount": "59.149724245", + "slot": { + "period": 161694, + "thread": 0 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 173706, + "thread": 21 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 470039, + "thread": 6 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 599838, + "thread": 24 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 702758, + "thread": 24 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 868285, + "thread": 21 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1013627, + "thread": 18 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1178539, + "thread": 29 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1474721, + "thread": 29 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1563897, + "thread": 27 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1755609, + "thread": 28 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 1816571, + "thread": 25 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2076297, + "thread": 29 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2178199, + "thread": 5 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2428815, + "thread": 5 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2474276, + "thread": 6 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2784672, + "thread": 30 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 2829500, + "thread": 8 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 3097655, + "thread": 15 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 3185145, + "thread": 27 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 3376396, + "thread": 31 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 3506632, + "thread": 3 + } + }, + { + "amount": "59.149724245", + "slot": { + "period": 3776141, + "thread": 8 + } + }, + { + "amount": "59.149724242", + "slot": { + "period": 3828418, + "thread": 3 + } + } + ], + "AU126LsnGfcx6WAkh8syuKLjFuKHatB2r5SN1VsE4Xhm2ACuHBBR6": [ + { + "amount": "182.324294724", + "slot": { + "period": 111225, + "thread": 28 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 260915, + "thread": 18 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 339256, + "thread": 7 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 553003, + "thread": 17 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 728799, + "thread": 19 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 968119, + "thread": 3 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1010545, + "thread": 12 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1187788, + "thread": 27 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1479053, + "thread": 19 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1514894, + "thread": 0 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1784034, + "thread": 5 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 1936495, + "thread": 22 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2055647, + "thread": 15 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2208193, + "thread": 7 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2352850, + "thread": 29 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2550193, + "thread": 1 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2680520, + "thread": 12 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 2862803, + "thread": 13 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 3022021, + "thread": 16 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 3257482, + "thread": 26 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 3423126, + "thread": 20 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 3607778, + "thread": 23 + } + }, + { + "amount": "182.324294724", + "slot": { + "period": 3628948, + "thread": 22 + } + }, + { + "amount": "182.324294718", + "slot": { + "period": 3939337, + "thread": 1 + } + } + ], + "AU126Lw74d2hsPdG1KxMi4jYksUK9mi1Cw2EyDAfHryubvJ8StKBM": [ + { + "amount": "237.908880292", + "slot": { + "period": 166562, + "thread": 19 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 296022, + "thread": 24 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 488013, + "thread": 12 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 575662, + "thread": 28 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 677274, + "thread": 27 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 902315, + "thread": 14 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1036118, + "thread": 8 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1227560, + "thread": 5 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1455666, + "thread": 27 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1527516, + "thread": 18 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1671081, + "thread": 6 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 1889649, + "thread": 9 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2067428, + "thread": 22 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2187190, + "thread": 29 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2438859, + "thread": 2 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2524424, + "thread": 5 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2749408, + "thread": 18 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2937978, + "thread": 8 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 2960687, + "thread": 20 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 3207864, + "thread": 31 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 3359815, + "thread": 19 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 3529787, + "thread": 13 + } + }, + { + "amount": "237.908880292", + "slot": { + "period": 3768650, + "thread": 4 + } + }, + { + "amount": "237.908880302", + "slot": { + "period": 3913468, + "thread": 8 + } + } + ], + "AU126M4PjugQxv2KUJJuoNCe9wmw6KBwKE8kkE7Ap69E8Q8rB2Dxx": [ + { + "amount": "276.081033611", + "slot": { + "period": 102314, + "thread": 6 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 251650, + "thread": 21 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 419149, + "thread": 31 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 560164, + "thread": 31 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 660117, + "thread": 8 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 846393, + "thread": 15 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1007041, + "thread": 13 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1285258, + "thread": 10 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1391578, + "thread": 31 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1591938, + "thread": 16 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1663065, + "thread": 14 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 1916097, + "thread": 27 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2026419, + "thread": 15 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2155572, + "thread": 10 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2387831, + "thread": 14 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2533642, + "thread": 18 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2631824, + "thread": 28 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 2909809, + "thread": 27 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3015269, + "thread": 2 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3227718, + "thread": 2 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3418953, + "thread": 25 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3459435, + "thread": 15 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3705063, + "thread": 1 + } + }, + { + "amount": "276.081033611", + "slot": { + "period": 3945267, + "thread": 27 + } + } + ], + "AU126MBom7V6b9RaVG6YiNeqUwB8wmp5LTQtPGK6tudC8BFjYYTng": [ + { + "amount": "128.377660553", + "slot": { + "period": 121027, + "thread": 20 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 199259, + "thread": 3 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 430408, + "thread": 21 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 532449, + "thread": 30 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 732561, + "thread": 13 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 956775, + "thread": 12 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1086418, + "thread": 13 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1255370, + "thread": 14 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1356994, + "thread": 29 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1505572, + "thread": 6 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1680198, + "thread": 8 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 1832487, + "thread": 30 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2116691, + "thread": 30 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2247762, + "thread": 7 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2442160, + "thread": 6 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2575388, + "thread": 31 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2762312, + "thread": 20 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 2865687, + "thread": 27 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 3025752, + "thread": 27 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 3131910, + "thread": 6 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 3441865, + "thread": 24 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 3550837, + "thread": 16 + } + }, + { + "amount": "128.377660553", + "slot": { + "period": 3633167, + "thread": 1 + } + }, + { + "amount": "128.377660561", + "slot": { + "period": 3812988, + "thread": 2 + } + } + ], + "AU126MbQeSDkeaJXyudf7CG2GpUxZJm1Dsc59RonhmqrMDb6avJ4C": [ + { + "amount": "73.661521880", + "slot": { + "period": 18442, + "thread": 2 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 234734, + "thread": 22 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 336977, + "thread": 11 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 554422, + "thread": 11 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 772193, + "thread": 15 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 841375, + "thread": 1 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1037586, + "thread": 9 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1240068, + "thread": 8 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1452531, + "thread": 25 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1571500, + "thread": 17 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1681616, + "thread": 4 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 1860397, + "thread": 1 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2017053, + "thread": 26 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2260708, + "thread": 22 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2445854, + "thread": 6 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2553368, + "thread": 29 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2660677, + "thread": 4 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2928752, + "thread": 18 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 2992463, + "thread": 28 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 3277974, + "thread": 2 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 3325298, + "thread": 22 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 3499323, + "thread": 25 + } + }, + { + "amount": "73.661521880", + "slot": { + "period": 3643195, + "thread": 9 + } + }, + { + "amount": "73.661521890", + "slot": { + "period": 3814793, + "thread": 30 + } + } + ], + "AU126MsxKty6VuupmmiqG32QHVnQ8woP5A1ozJ3NkGcif1MGD5Rbz": [ + { + "amount": "3267.782482487", + "slot": { + "period": 58883, + "thread": 18 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 178805, + "thread": 25 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 436234, + "thread": 9 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 632138, + "thread": 31 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 767349, + "thread": 21 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 906130, + "thread": 2 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1018633, + "thread": 18 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1204677, + "thread": 15 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1446074, + "thread": 7 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1599312, + "thread": 2 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1746114, + "thread": 15 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 1858554, + "thread": 0 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2036596, + "thread": 3 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2236882, + "thread": 18 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2356652, + "thread": 6 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2591977, + "thread": 25 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2782892, + "thread": 2 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 2912001, + "thread": 21 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 3051464, + "thread": 6 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 3266180, + "thread": 21 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 3434532, + "thread": 31 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 3617456, + "thread": 10 + } + }, + { + "amount": "3267.782482487", + "slot": { + "period": 3688792, + "thread": 30 + } + }, + { + "amount": "3267.782482502", + "slot": { + "period": 3910590, + "thread": 11 + } + } + ], + "AU126N5HuJMr8BanxzL7XSFWXRLEuULMYRvDdZYUaZF5Hrz7SLkU": [ + { + "amount": "219.369954842", + "slot": { + "period": 108758, + "thread": 19 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 272162, + "thread": 24 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 407840, + "thread": 14 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 494724, + "thread": 9 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 668064, + "thread": 0 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 865123, + "thread": 5 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1002332, + "thread": 8 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1284237, + "thread": 16 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1452272, + "thread": 7 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1494140, + "thread": 2 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1756498, + "thread": 4 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 1849622, + "thread": 27 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2136661, + "thread": 6 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2167694, + "thread": 19 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2338960, + "thread": 4 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2487394, + "thread": 13 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2678916, + "thread": 24 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2818558, + "thread": 27 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 2996953, + "thread": 5 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 3149237, + "thread": 28 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 3339440, + "thread": 30 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 3547465, + "thread": 10 + } + }, + { + "amount": "219.369954842", + "slot": { + "period": 3630215, + "thread": 17 + } + }, + { + "amount": "219.369954834", + "slot": { + "period": 3822737, + "thread": 10 + } + } + ], + "AU126NwVaL7KRnmZ5hu8KsKF4vJJ64iCtCdCzVwjsES6JB2aTSeXN": [ + { + "amount": "151.777696865", + "slot": { + "period": 69808, + "thread": 15 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 275574, + "thread": 17 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 371898, + "thread": 28 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 517382, + "thread": 5 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 782623, + "thread": 11 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 932891, + "thread": 17 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1103734, + "thread": 14 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1283185, + "thread": 7 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1378589, + "thread": 15 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1555998, + "thread": 12 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1721820, + "thread": 10 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 1955505, + "thread": 3 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2016146, + "thread": 19 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2250714, + "thread": 2 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2328860, + "thread": 14 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2528980, + "thread": 26 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2756636, + "thread": 12 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 2877822, + "thread": 22 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 3050639, + "thread": 4 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 3192419, + "thread": 16 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 3381536, + "thread": 17 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 3600979, + "thread": 12 + } + }, + { + "amount": "151.777696865", + "slot": { + "period": 3760018, + "thread": 4 + } + }, + { + "amount": "151.777696861", + "slot": { + "period": 3826988, + "thread": 25 + } + } + ], + "AU126PHzEunU3u3haNwid7SJzMfmNcdwSUYRKS5WVrdL9uYKNFLZX": [ + { + "amount": "160.792632083", + "slot": { + "period": 87505, + "thread": 23 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 285244, + "thread": 30 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 365213, + "thread": 16 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 614802, + "thread": 14 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 806777, + "thread": 21 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 970554, + "thread": 8 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1130424, + "thread": 26 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1209036, + "thread": 22 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1348613, + "thread": 22 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1584931, + "thread": 14 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1745574, + "thread": 10 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 1891874, + "thread": 18 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2105895, + "thread": 9 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2164223, + "thread": 21 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2458567, + "thread": 6 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2583540, + "thread": 31 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2658587, + "thread": 20 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 2845470, + "thread": 12 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 3119907, + "thread": 26 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 3147858, + "thread": 18 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 3406866, + "thread": 24 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 3458604, + "thread": 2 + } + }, + { + "amount": "160.792632083", + "slot": { + "period": 3660279, + "thread": 3 + } + }, + { + "amount": "160.792632092", + "slot": { + "period": 3817380, + "thread": 16 + } + } + ], + "AU126PoMVmUt38BAD6XhAnoHWbYRYiBVyb7dZsiZjZY769Eyyv6i1": [ + { + "amount": "150.961346596", + "slot": { + "period": 76690, + "thread": 10 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 198385, + "thread": 6 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 360081, + "thread": 9 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 613360, + "thread": 7 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 738411, + "thread": 7 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 957023, + "thread": 8 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1098548, + "thread": 18 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1223543, + "thread": 6 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1458730, + "thread": 19 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1612087, + "thread": 4 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1649575, + "thread": 7 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 1927352, + "thread": 11 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2103142, + "thread": 24 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2272747, + "thread": 7 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2359276, + "thread": 1 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2504168, + "thread": 20 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2779212, + "thread": 27 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2929662, + "thread": 26 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 2993357, + "thread": 17 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 3208137, + "thread": 21 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 3295191, + "thread": 21 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 3468131, + "thread": 5 + } + }, + { + "amount": "150.961346596", + "slot": { + "period": 3650875, + "thread": 7 + } + }, + { + "amount": "150.961346604", + "slot": { + "period": 3927451, + "thread": 28 + } + } + ], + "AU126QaX8Z1C6pKARjn9Sx7Ui7HL9nZPfEAJLw6sb7J3AwsdfiQU1": [ + { + "amount": "75.743648445", + "slot": { + "period": 159194, + "thread": 26 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 240262, + "thread": 0 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 370197, + "thread": 22 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 613073, + "thread": 18 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 717924, + "thread": 7 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 833941, + "thread": 27 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1038668, + "thread": 23 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1176862, + "thread": 4 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1421654, + "thread": 13 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1552142, + "thread": 31 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1767412, + "thread": 6 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 1960542, + "thread": 3 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2024310, + "thread": 4 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2261175, + "thread": 19 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2461784, + "thread": 19 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2499378, + "thread": 6 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2747884, + "thread": 1 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 2830523, + "thread": 23 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 3052209, + "thread": 14 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 3164338, + "thread": 7 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 3423935, + "thread": 27 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 3531133, + "thread": 15 + } + }, + { + "amount": "75.743648445", + "slot": { + "period": 3693352, + "thread": 4 + } + }, + { + "amount": "75.743648441", + "slot": { + "period": 3867786, + "thread": 22 + } + } + ], + "AU126Qne9kfhFs1X3eWh8dS3U1zT2dhGKzYUAtbhmXB44girAcxkt": [ + { + "amount": "152.678864552", + "slot": { + "period": 123445, + "thread": 26 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 262585, + "thread": 19 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 424454, + "thread": 18 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 583597, + "thread": 24 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 715634, + "thread": 20 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 821896, + "thread": 29 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1030532, + "thread": 24 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1228526, + "thread": 17 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1344327, + "thread": 26 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1588136, + "thread": 15 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1782092, + "thread": 28 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 1907350, + "thread": 3 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2009136, + "thread": 24 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2186426, + "thread": 18 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2344031, + "thread": 30 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2554679, + "thread": 18 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2650681, + "thread": 4 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 2792812, + "thread": 8 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 3012138, + "thread": 30 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 3177738, + "thread": 16 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 3365133, + "thread": 29 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 3488452, + "thread": 17 + } + }, + { + "amount": "152.678864552", + "slot": { + "period": 3743204, + "thread": 8 + } + }, + { + "amount": "152.678864560", + "slot": { + "period": 3940185, + "thread": 14 + } + } + ], + "AU126RwSXEmD2HHGePqpCWWX2sfx2un7Y4te3MUF5QboNjigupSuH": [ + { + "amount": "242.638947436", + "slot": { + "period": 46494, + "thread": 10 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 308327, + "thread": 23 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 437040, + "thread": 31 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 591463, + "thread": 19 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 727427, + "thread": 2 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 977333, + "thread": 27 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1101717, + "thread": 13 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1266605, + "thread": 1 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1388225, + "thread": 24 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1633082, + "thread": 22 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1664462, + "thread": 29 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 1839899, + "thread": 0 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2124078, + "thread": 8 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2171538, + "thread": 31 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2409036, + "thread": 21 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2545404, + "thread": 2 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2714168, + "thread": 7 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 2874750, + "thread": 8 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 3083180, + "thread": 16 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 3187722, + "thread": 1 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 3448024, + "thread": 9 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 3563869, + "thread": 30 + } + }, + { + "amount": "242.638947436", + "slot": { + "period": 3732902, + "thread": 26 + } + }, + { + "amount": "242.638947448", + "slot": { + "period": 3900764, + "thread": 22 + } + } + ], + "AU126S1iav12eA6YpXse588K3VgtkDgKKqmik17aRRY93LjEA3TcA": [ + { + "amount": "204.156184272", + "slot": { + "period": 126002, + "thread": 26 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 307304, + "thread": 2 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 430625, + "thread": 15 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 644861, + "thread": 11 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 793973, + "thread": 23 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 869540, + "thread": 0 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1082170, + "thread": 5 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1268587, + "thread": 15 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1415093, + "thread": 20 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1516073, + "thread": 21 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1689514, + "thread": 5 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 1891418, + "thread": 30 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2083228, + "thread": 15 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2289250, + "thread": 13 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2305144, + "thread": 25 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2571543, + "thread": 2 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2713762, + "thread": 7 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 2898922, + "thread": 22 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 3016377, + "thread": 22 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 3176311, + "thread": 28 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 3353083, + "thread": 2 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 3469567, + "thread": 15 + } + }, + { + "amount": "204.156184272", + "slot": { + "period": 3682213, + "thread": 8 + } + }, + { + "amount": "204.156184267", + "slot": { + "period": 3920363, + "thread": 13 + } + } + ], + "AU126SALfngMMtnxr3a3gQbVUGXckBpZZ3fo7aSNLhy3orgZpfwn": [ + { + "amount": "259.667411433", + "slot": { + "period": 74212, + "thread": 31 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 281021, + "thread": 24 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 489840, + "thread": 10 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 572438, + "thread": 29 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 695222, + "thread": 3 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 898288, + "thread": 29 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1114972, + "thread": 16 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1312897, + "thread": 21 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1437424, + "thread": 28 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1498878, + "thread": 24 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1750005, + "thread": 1 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 1878980, + "thread": 30 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2057772, + "thread": 17 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2204438, + "thread": 11 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2322493, + "thread": 31 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2612784, + "thread": 5 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2666547, + "thread": 7 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 2824415, + "thread": 16 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 3088077, + "thread": 28 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 3152753, + "thread": 31 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 3406620, + "thread": 27 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 3601465, + "thread": 17 + } + }, + { + "amount": "259.667411433", + "slot": { + "period": 3638480, + "thread": 7 + } + }, + { + "amount": "259.667411429", + "slot": { + "period": 3887985, + "thread": 4 + } + } + ], + "AU126SNnqWhXbcdPJzRuGgZ4hiq5LboqnbQZwsjJVwywbYQhgHqZq": [ + { + "amount": "180.241481574", + "slot": { + "period": 138181, + "thread": 19 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 221651, + "thread": 10 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 377320, + "thread": 31 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 611420, + "thread": 3 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 663116, + "thread": 6 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 843573, + "thread": 23 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1141768, + "thread": 27 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1168514, + "thread": 0 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1458460, + "thread": 6 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1600409, + "thread": 6 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1768190, + "thread": 25 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 1962400, + "thread": 15 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2012021, + "thread": 7 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2242399, + "thread": 22 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2408463, + "thread": 13 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2564995, + "thread": 13 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2787309, + "thread": 20 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 2859098, + "thread": 27 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 3089917, + "thread": 15 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 3133024, + "thread": 29 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 3351816, + "thread": 20 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 3609560, + "thread": 25 + } + }, + { + "amount": "180.241481574", + "slot": { + "period": 3644474, + "thread": 31 + } + }, + { + "amount": "180.241481562", + "slot": { + "period": 3841194, + "thread": 27 + } + } + ], + "AU126T8D5Hh3amwR6FwDfqoMWndaaseJTWiKzf6Bh4tuLEyz3ySPj": [ + { + "amount": "296.204202447", + "slot": { + "period": 35754, + "thread": 12 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 234932, + "thread": 20 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 413468, + "thread": 27 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 503555, + "thread": 14 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 752340, + "thread": 21 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 919690, + "thread": 0 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1019047, + "thread": 3 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1273121, + "thread": 18 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1462600, + "thread": 19 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1627456, + "thread": 19 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1758894, + "thread": 10 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 1908244, + "thread": 1 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2043278, + "thread": 12 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2230741, + "thread": 11 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2329265, + "thread": 0 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2582886, + "thread": 3 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2739851, + "thread": 8 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 2804649, + "thread": 17 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 3087049, + "thread": 13 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 3135140, + "thread": 14 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 3303042, + "thread": 20 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 3509867, + "thread": 16 + } + }, + { + "amount": "296.204202447", + "slot": { + "period": 3660225, + "thread": 22 + } + }, + { + "amount": "296.204202458", + "slot": { + "period": 3789602, + "thread": 9 + } + } + ], + "AU126TvMp1CnZomvD14Nj1BjGvevCbdzjE3ihoxgM1qQ9huVutuNM": [ + { + "amount": "158.315143247", + "slot": { + "period": 65917, + "thread": 30 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 191709, + "thread": 6 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 369697, + "thread": 28 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 501117, + "thread": 27 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 676301, + "thread": 14 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 943132, + "thread": 1 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1124730, + "thread": 16 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1288537, + "thread": 20 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1435758, + "thread": 28 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1640803, + "thread": 15 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1720180, + "thread": 17 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1822189, + "thread": 27 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 1999137, + "thread": 10 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2157786, + "thread": 9 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2401796, + "thread": 17 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2554210, + "thread": 25 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2766775, + "thread": 13 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2844531, + "thread": 6 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 2986853, + "thread": 9 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 3161529, + "thread": 6 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 3444046, + "thread": 30 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 3486399, + "thread": 4 + } + }, + { + "amount": "158.315143247", + "slot": { + "period": 3660815, + "thread": 30 + } + }, + { + "amount": "158.315143257", + "slot": { + "period": 3885241, + "thread": 18 + } + } + ], + "AU126V6HaF4o9jCAYeCgKDQVjDUuSaEziJrAuSx36HK7xDrAH9PRW": [ + { + "amount": "221.065314940", + "slot": { + "period": 37944, + "thread": 27 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 229453, + "thread": 16 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 327428, + "thread": 22 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 602396, + "thread": 9 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 771518, + "thread": 23 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 950416, + "thread": 8 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1037438, + "thread": 30 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1316142, + "thread": 28 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1431512, + "thread": 2 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1561749, + "thread": 6 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1673671, + "thread": 7 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 1934174, + "thread": 23 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2011335, + "thread": 7 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2270457, + "thread": 12 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2452098, + "thread": 5 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2597385, + "thread": 28 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2663037, + "thread": 0 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 2931676, + "thread": 7 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 3039817, + "thread": 22 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 3135702, + "thread": 5 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 3393389, + "thread": 17 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 3550112, + "thread": 19 + } + }, + { + "amount": "221.065314940", + "slot": { + "period": 3738390, + "thread": 10 + } + }, + { + "amount": "221.065314948", + "slot": { + "period": 3861435, + "thread": 21 + } + } + ], + "AU126W5uwEx2JhWNTAodh2YaSrhe1Jwf1yJUhARq3QNpDbtrLfFjs": [ + { + "amount": "382.893964772", + "slot": { + "period": 120374, + "thread": 25 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 297676, + "thread": 17 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 382014, + "thread": 2 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 614268, + "thread": 6 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 659732, + "thread": 30 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 871489, + "thread": 15 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1011211, + "thread": 25 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1293578, + "thread": 3 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1447924, + "thread": 21 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1548537, + "thread": 28 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1762423, + "thread": 22 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1910831, + "thread": 19 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 1997181, + "thread": 15 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 2271551, + "thread": 0 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 2459696, + "thread": 2 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 2547101, + "thread": 24 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 2646135, + "thread": 27 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 2946681, + "thread": 19 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 3075688, + "thread": 26 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 3179803, + "thread": 30 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 3418633, + "thread": 25 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 3564266, + "thread": 3 + } + }, + { + "amount": "382.893964772", + "slot": { + "period": 3660836, + "thread": 17 + } + }, + { + "amount": "382.893964763", + "slot": { + "period": 3885721, + "thread": 24 + } + } + ], + "AU126X2HEMgr48Habe5evXga1VeNZ3LjCVGsZQxURSweZWnwBL1pA": [ + { + "amount": "272.627870651", + "slot": { + "period": 118380, + "thread": 19 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 304099, + "thread": 21 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 385717, + "thread": 20 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 511028, + "thread": 10 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 689268, + "thread": 30 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 930035, + "thread": 22 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1107837, + "thread": 19 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1202375, + "thread": 17 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1419920, + "thread": 20 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1483679, + "thread": 6 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1743320, + "thread": 23 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 1847766, + "thread": 11 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2080171, + "thread": 27 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2174023, + "thread": 23 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2325633, + "thread": 1 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2616125, + "thread": 1 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2634117, + "thread": 3 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 2925606, + "thread": 27 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 3080663, + "thread": 17 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 3207526, + "thread": 15 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 3396673, + "thread": 27 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 3616578, + "thread": 5 + } + }, + { + "amount": "272.627870651", + "slot": { + "period": 3749690, + "thread": 4 + } + }, + { + "amount": "272.627870650", + "slot": { + "period": 3905896, + "thread": 18 + } + } + ], + "AU126XSx4aAkCev9hJ6PMkHmzJ1BnXJeEJBF9F26k4HpBEJZgkUMj": [ + { + "amount": "53.581915261", + "slot": { + "period": 147359, + "thread": 5 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 299294, + "thread": 2 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 457159, + "thread": 9 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 592988, + "thread": 24 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 688437, + "thread": 23 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 936387, + "thread": 29 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1051672, + "thread": 9 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1177201, + "thread": 14 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1353710, + "thread": 25 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1549718, + "thread": 19 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1730194, + "thread": 18 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 1924636, + "thread": 29 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2029218, + "thread": 9 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2238144, + "thread": 30 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2348173, + "thread": 25 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2615921, + "thread": 10 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2646223, + "thread": 27 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2853155, + "thread": 2 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 2995695, + "thread": 5 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 3132912, + "thread": 12 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 3323895, + "thread": 27 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 3568267, + "thread": 3 + } + }, + { + "amount": "53.581915261", + "slot": { + "period": 3702407, + "thread": 23 + } + }, + { + "amount": "53.581915264", + "slot": { + "period": 3832719, + "thread": 11 + } + } + ], + "AU126Y3h9iYW8KMgwx8cgFDz2KMCXSYXkxP8gWChqhJXgfYa6sVEV": [ + { + "amount": "356.532639625", + "slot": { + "period": 135193, + "thread": 15 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 296019, + "thread": 14 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 351264, + "thread": 0 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 636751, + "thread": 20 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 706508, + "thread": 16 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 881347, + "thread": 2 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 990782, + "thread": 12 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1288250, + "thread": 15 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1467639, + "thread": 10 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1614891, + "thread": 6 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1683678, + "thread": 30 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1970651, + "thread": 14 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 1978748, + "thread": 16 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 2274380, + "thread": 1 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 2389467, + "thread": 8 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 2605889, + "thread": 22 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 2650910, + "thread": 7 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 2953246, + "thread": 31 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 3118880, + "thread": 9 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 3147662, + "thread": 7 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 3322879, + "thread": 7 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 3584694, + "thread": 11 + } + }, + { + "amount": "356.532639625", + "slot": { + "period": 3721207, + "thread": 8 + } + }, + { + "amount": "356.532639633", + "slot": { + "period": 3782121, + "thread": 8 + } + } + ], + "AU126Zjg9vpvNaftFVur7eJjmC8HRKqCNqBSgCJH3SjmekF6nTAej": [ + { + "amount": "53.017964802", + "slot": { + "period": 41489, + "thread": 9 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 250314, + "thread": 11 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 396593, + "thread": 29 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 508809, + "thread": 17 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 700432, + "thread": 12 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 880354, + "thread": 18 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1046134, + "thread": 1 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1240867, + "thread": 26 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1467990, + "thread": 0 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1501775, + "thread": 5 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1799786, + "thread": 7 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 1894939, + "thread": 6 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2113989, + "thread": 11 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2221604, + "thread": 29 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2454104, + "thread": 15 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2487597, + "thread": 21 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2778724, + "thread": 22 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2838714, + "thread": 13 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 2974709, + "thread": 14 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 3224304, + "thread": 13 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 3390787, + "thread": 14 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 3493279, + "thread": 23 + } + }, + { + "amount": "53.017964802", + "slot": { + "period": 3691444, + "thread": 21 + } + }, + { + "amount": "53.017964808", + "slot": { + "period": 3860580, + "thread": 30 + } + } + ], + "AU126cNQRgRd7iLmB4K22u5TGFXirBA9UqYs6zEHpXbjEEH6Atu8N": [ + { + "amount": "122.678835532", + "slot": { + "period": 151246, + "thread": 17 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 181164, + "thread": 19 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 404647, + "thread": 29 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 552565, + "thread": 12 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 673975, + "thread": 6 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 982372, + "thread": 13 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 983769, + "thread": 24 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 1188255, + "thread": 22 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 1443862, + "thread": 12 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 1579861, + "thread": 16 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 1688739, + "thread": 11 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 1969520, + "thread": 12 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2086361, + "thread": 24 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2181547, + "thread": 0 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2304818, + "thread": 26 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2546141, + "thread": 8 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2660864, + "thread": 15 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 2890771, + "thread": 17 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 3065829, + "thread": 27 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 3251710, + "thread": 8 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 3415630, + "thread": 25 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 3609787, + "thread": 15 + } + }, + { + "amount": "122.678835532", + "slot": { + "period": 3684140, + "thread": 17 + } + }, + { + "amount": "122.678835538", + "slot": { + "period": 3790159, + "thread": 6 + } + } + ], + "AU126cd2qi4qSZgyisoaUXRRQ4TD7GZ76t779bRwZLbvUjMF4matK": [ + { + "amount": "178.325185112", + "slot": { + "period": 144725, + "thread": 27 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 191486, + "thread": 29 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 351852, + "thread": 16 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 621995, + "thread": 29 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 714727, + "thread": 1 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 845385, + "thread": 15 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1020065, + "thread": 19 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1247760, + "thread": 24 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1437003, + "thread": 24 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1508488, + "thread": 29 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1744735, + "thread": 7 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 1852452, + "thread": 20 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2100053, + "thread": 31 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2186121, + "thread": 14 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2446128, + "thread": 24 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2508608, + "thread": 12 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2652362, + "thread": 31 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 2795025, + "thread": 7 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 3099843, + "thread": 29 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 3256867, + "thread": 18 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 3379000, + "thread": 20 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 3568482, + "thread": 16 + } + }, + { + "amount": "178.325185112", + "slot": { + "period": 3753291, + "thread": 24 + } + }, + { + "amount": "178.325185120", + "slot": { + "period": 3821528, + "thread": 24 + } + } + ], + "AU126d8j3dHX6zuDXEK8smiT45dcUB9VPwFN4wD34ts8LjCXDFvLe": [ + { + "amount": "126.176066272", + "slot": { + "period": 59256, + "thread": 27 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 271520, + "thread": 15 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 360808, + "thread": 30 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 597149, + "thread": 6 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 708171, + "thread": 29 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 948245, + "thread": 2 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1115707, + "thread": 9 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1197213, + "thread": 23 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1378975, + "thread": 4 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1499871, + "thread": 12 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1670372, + "thread": 23 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 1885383, + "thread": 25 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2036255, + "thread": 29 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2180249, + "thread": 16 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2404248, + "thread": 15 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2512585, + "thread": 15 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2689610, + "thread": 1 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 2806537, + "thread": 17 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 3116413, + "thread": 30 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 3129470, + "thread": 28 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 3389747, + "thread": 11 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 3563444, + "thread": 14 + } + }, + { + "amount": "126.176066272", + "slot": { + "period": 3712886, + "thread": 19 + } + }, + { + "amount": "126.176066282", + "slot": { + "period": 3889101, + "thread": 19 + } + } + ], + "AU126e9JU8V6X9EqZHnLWFRTZuyY9x2jC5YSH2cNxS1vPWagYGV65": [ + { + "amount": "51.716884793", + "slot": { + "period": 164430, + "thread": 9 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 190796, + "thread": 29 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 423102, + "thread": 7 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 531847, + "thread": 27 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 802084, + "thread": 10 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 891559, + "thread": 1 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1005727, + "thread": 23 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1299069, + "thread": 5 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1460409, + "thread": 25 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1541245, + "thread": 31 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1649902, + "thread": 26 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 1933684, + "thread": 11 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2037521, + "thread": 22 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2261526, + "thread": 10 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2313816, + "thread": 23 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2493474, + "thread": 4 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2735370, + "thread": 4 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 2900729, + "thread": 22 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 3051779, + "thread": 2 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 3250488, + "thread": 23 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 3334972, + "thread": 17 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 3601924, + "thread": 19 + } + }, + { + "amount": "51.716884793", + "slot": { + "period": 3751921, + "thread": 22 + } + }, + { + "amount": "51.716884797", + "slot": { + "period": 3876164, + "thread": 7 + } + } + ], + "AU126f42oRZAHivN7Vd5ubvuFFNVCwDnBbdD878iUZaCVTuR7oEd6": [ + { + "amount": "214.323347532", + "slot": { + "period": 155373, + "thread": 9 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 244545, + "thread": 15 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 363427, + "thread": 17 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 650959, + "thread": 11 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 681408, + "thread": 30 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 864465, + "thread": 12 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1051977, + "thread": 3 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1272498, + "thread": 25 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1450359, + "thread": 21 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1582893, + "thread": 30 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1719559, + "thread": 10 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 1809971, + "thread": 6 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2041557, + "thread": 29 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2149855, + "thread": 31 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2421753, + "thread": 14 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2577777, + "thread": 16 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2776265, + "thread": 10 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2830604, + "thread": 4 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 2993047, + "thread": 13 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 3262380, + "thread": 21 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 3294512, + "thread": 29 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 3503132, + "thread": 2 + } + }, + { + "amount": "214.323347532", + "slot": { + "period": 3710780, + "thread": 9 + } + }, + { + "amount": "214.323347524", + "slot": { + "period": 3931203, + "thread": 21 + } + } + ], + "AU126f4k5gd6smGHvKLGK31YQNZGLqu86HVKYE9pcHvw1JAPgh4A7": [ + { + "amount": "292.208014638", + "slot": { + "period": 119320, + "thread": 0 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 207227, + "thread": 8 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 474335, + "thread": 14 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 542309, + "thread": 22 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 769585, + "thread": 10 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 868114, + "thread": 31 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1095040, + "thread": 22 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1286334, + "thread": 4 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1400858, + "thread": 14 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1535764, + "thread": 13 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1717350, + "thread": 9 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 1886782, + "thread": 8 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2030638, + "thread": 14 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2149595, + "thread": 26 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2331806, + "thread": 8 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2608188, + "thread": 31 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2746546, + "thread": 16 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 2949649, + "thread": 15 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 3109836, + "thread": 10 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 3243214, + "thread": 31 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 3374407, + "thread": 23 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 3588338, + "thread": 15 + } + }, + { + "amount": "292.208014638", + "slot": { + "period": 3712668, + "thread": 27 + } + }, + { + "amount": "292.208014629", + "slot": { + "period": 3900320, + "thread": 4 + } + } + ], + "AU126g78jdPABSLxQ96f83jhXcxz6K3zydMaV9S4edpwjimoaRvi2": [ + { + "amount": "283.009113792", + "slot": { + "period": 30066, + "thread": 25 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 225581, + "thread": 26 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 359130, + "thread": 8 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 528272, + "thread": 18 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 716777, + "thread": 20 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 892034, + "thread": 23 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1073496, + "thread": 7 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1285101, + "thread": 31 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1339958, + "thread": 20 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1626625, + "thread": 23 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1768639, + "thread": 16 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 1814871, + "thread": 11 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2129607, + "thread": 21 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2228734, + "thread": 4 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2308783, + "thread": 3 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2585671, + "thread": 8 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2733134, + "thread": 9 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2809694, + "thread": 23 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 2969165, + "thread": 6 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 3223620, + "thread": 21 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 3349016, + "thread": 13 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 3519791, + "thread": 19 + } + }, + { + "amount": "283.009113792", + "slot": { + "period": 3721098, + "thread": 20 + } + }, + { + "amount": "283.009113791", + "slot": { + "period": 3905709, + "thread": 24 + } + } + ], + "AU126g9NAbTshDwVi1eApP36ZJTEYbBLn5uubhQvY1jLFLioExYPy": [ + { + "amount": "398.360655463", + "slot": { + "period": 88322, + "thread": 26 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 191893, + "thread": 3 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 380997, + "thread": 28 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 518745, + "thread": 12 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 726024, + "thread": 21 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 893545, + "thread": 28 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1009364, + "thread": 29 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1287748, + "thread": 24 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1445357, + "thread": 6 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1569742, + "thread": 8 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1804585, + "thread": 31 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 1965343, + "thread": 22 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2077825, + "thread": 6 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2278349, + "thread": 0 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2328621, + "thread": 27 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2566875, + "thread": 18 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2790053, + "thread": 28 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2916150, + "thread": 13 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 2961675, + "thread": 18 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 3200019, + "thread": 6 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 3349738, + "thread": 6 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 3471328, + "thread": 6 + } + }, + { + "amount": "398.360655463", + "slot": { + "period": 3731154, + "thread": 1 + } + }, + { + "amount": "398.360655467", + "slot": { + "period": 3866389, + "thread": 13 + } + } + ], + "AU126gDcWVC3nniJgXpxytTCuDEQToCJs2CPjprPWAmtnzNAKBopA": [ + { + "amount": "146.308809373", + "slot": { + "period": 102671, + "thread": 31 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 202797, + "thread": 0 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 352879, + "thread": 30 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 531157, + "thread": 6 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 673006, + "thread": 16 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 945605, + "thread": 7 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1086215, + "thread": 4 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1219997, + "thread": 22 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1332934, + "thread": 27 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1494064, + "thread": 28 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1792337, + "thread": 29 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 1909641, + "thread": 3 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2012082, + "thread": 5 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2264759, + "thread": 11 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2444938, + "thread": 18 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2590069, + "thread": 1 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2770938, + "thread": 15 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2797912, + "thread": 5 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 2981343, + "thread": 19 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 3268591, + "thread": 9 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 3353571, + "thread": 15 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 3483607, + "thread": 28 + } + }, + { + "amount": "146.308809373", + "slot": { + "period": 3709031, + "thread": 27 + } + }, + { + "amount": "146.308809383", + "slot": { + "period": 3828945, + "thread": 13 + } + } + ], + "AU126gJ58HxnXgsKFmzLGaZ18aTJphjQnQd3RAmJkVS9USMpdcar8": [ + { + "amount": "123.562261768", + "slot": { + "period": 112540, + "thread": 19 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 239767, + "thread": 7 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 384716, + "thread": 19 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 537698, + "thread": 3 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 780222, + "thread": 12 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 880943, + "thread": 29 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1123218, + "thread": 24 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1258432, + "thread": 5 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1391394, + "thread": 21 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1540192, + "thread": 7 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1678140, + "thread": 8 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1837830, + "thread": 25 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 1985858, + "thread": 14 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 2258273, + "thread": 31 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 2304324, + "thread": 29 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 2505467, + "thread": 26 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 2713961, + "thread": 16 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 2809374, + "thread": 2 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 3099095, + "thread": 22 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 3138263, + "thread": 12 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 3303656, + "thread": 25 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 3470482, + "thread": 25 + } + }, + { + "amount": "123.562261768", + "slot": { + "period": 3628382, + "thread": 14 + } + }, + { + "amount": "123.562261765", + "slot": { + "period": 3887371, + "thread": 17 + } + } + ], + "AU126hCmpB687pSWJPizM77FcAy6RDcwcHmBmCD2hqbARUY2JzNVk": [ + { + "amount": "522.658186774", + "slot": { + "period": 79686, + "thread": 22 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 308736, + "thread": 1 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 338521, + "thread": 31 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 555808, + "thread": 18 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 743148, + "thread": 9 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 910111, + "thread": 0 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1042671, + "thread": 2 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1287903, + "thread": 5 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1372947, + "thread": 22 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1585298, + "thread": 6 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1660614, + "thread": 24 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 1810607, + "thread": 20 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2059687, + "thread": 19 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2257559, + "thread": 8 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2363461, + "thread": 4 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2474257, + "thread": 4 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2786156, + "thread": 25 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 2847603, + "thread": 21 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 3008239, + "thread": 23 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 3124029, + "thread": 16 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 3401207, + "thread": 2 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 3497857, + "thread": 10 + } + }, + { + "amount": "522.658186774", + "slot": { + "period": 3712797, + "thread": 10 + } + }, + { + "amount": "522.658186777", + "slot": { + "period": 3865361, + "thread": 1 + } + } + ], + "AU126hFtp49ArYJvjqDQxHVoE8TnfhQUyrPwU7HDRoQNSLPgWqzEj": [ + { + "amount": "71.084736619", + "slot": { + "period": 128860, + "thread": 19 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 231753, + "thread": 4 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 457230, + "thread": 17 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 619851, + "thread": 6 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 746617, + "thread": 19 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 877729, + "thread": 27 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1112890, + "thread": 4 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1207575, + "thread": 11 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1341072, + "thread": 9 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1594771, + "thread": 19 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1784331, + "thread": 2 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 1835055, + "thread": 1 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2031568, + "thread": 6 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2246445, + "thread": 7 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2298243, + "thread": 2 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2538305, + "thread": 22 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2702552, + "thread": 19 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 2796174, + "thread": 29 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 3083434, + "thread": 30 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 3233372, + "thread": 15 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 3325287, + "thread": 12 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 3516032, + "thread": 22 + } + }, + { + "amount": "71.084736619", + "slot": { + "period": 3644253, + "thread": 19 + } + }, + { + "amount": "71.084736617", + "slot": { + "period": 3824898, + "thread": 1 + } + } + ], + "AU126hKjYiSAX78mYLhHuoEsZLUfS79MksZ8BeDa5Y7sPhDTMS3UA": [ + { + "amount": "224.069652393", + "slot": { + "period": 93872, + "thread": 10 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 286731, + "thread": 28 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 416601, + "thread": 11 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 646106, + "thread": 9 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 727810, + "thread": 11 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 910979, + "thread": 27 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1074796, + "thread": 25 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1232187, + "thread": 9 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1341674, + "thread": 9 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1543914, + "thread": 5 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1686847, + "thread": 1 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1875275, + "thread": 15 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 1979107, + "thread": 25 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2147493, + "thread": 19 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2357895, + "thread": 2 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2462639, + "thread": 2 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2753110, + "thread": 23 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2877132, + "thread": 26 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 2979610, + "thread": 26 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 3148667, + "thread": 6 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 3442601, + "thread": 18 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 3567655, + "thread": 21 + } + }, + { + "amount": "224.069652393", + "slot": { + "period": 3630817, + "thread": 7 + } + }, + { + "amount": "224.069652389", + "slot": { + "period": 3894916, + "thread": 26 + } + } + ], + "AU126hbSBtt8UPo2Jvd8UVddDzxZc6yz5fNBAhQ4K9fcn1j5MegwR": [ + { + "amount": "288.460848596", + "slot": { + "period": 75236, + "thread": 16 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 229089, + "thread": 5 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 381958, + "thread": 11 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 551950, + "thread": 28 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 796104, + "thread": 5 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 910656, + "thread": 24 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1033528, + "thread": 16 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1296539, + "thread": 26 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1338093, + "thread": 1 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1531475, + "thread": 10 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1670605, + "thread": 13 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1850687, + "thread": 19 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 1980501, + "thread": 14 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2244869, + "thread": 12 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2311503, + "thread": 6 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2579863, + "thread": 27 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2730013, + "thread": 22 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2846558, + "thread": 23 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 2987494, + "thread": 4 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 3203886, + "thread": 9 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 3346583, + "thread": 22 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 3475142, + "thread": 6 + } + }, + { + "amount": "288.460848596", + "slot": { + "period": 3722981, + "thread": 10 + } + }, + { + "amount": "288.460848592", + "slot": { + "period": 3822731, + "thread": 6 + } + } + ], + "AU126iqw6oPEMj544qND7rAaeJ6U1sH3DjGxhSUVjGx1UNSHZ9EQb": [ + { + "amount": "123.799155968", + "slot": { + "period": 98436, + "thread": 4 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 260661, + "thread": 7 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 417826, + "thread": 20 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 628487, + "thread": 28 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 702698, + "thread": 21 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 879517, + "thread": 0 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1127429, + "thread": 7 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1208978, + "thread": 22 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1416282, + "thread": 15 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1522929, + "thread": 15 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1720302, + "thread": 22 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1948061, + "thread": 28 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 1996495, + "thread": 19 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 2282892, + "thread": 7 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 2413029, + "thread": 1 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 2592829, + "thread": 30 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 2630014, + "thread": 26 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 2898004, + "thread": 2 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 3041003, + "thread": 7 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 3185443, + "thread": 13 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 3359278, + "thread": 16 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 3457791, + "thread": 10 + } + }, + { + "amount": "123.799155968", + "slot": { + "period": 3722433, + "thread": 17 + } + }, + { + "amount": "123.799155966", + "slot": { + "period": 3888437, + "thread": 7 + } + } + ], + "AU126j3DXGi9g1Mrqp6MKng2s5Jfh2Bam75wn1e5bqUrsmw1njR9g": [ + { + "amount": "183.170829798", + "slot": { + "period": 86113, + "thread": 14 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 169440, + "thread": 19 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 361031, + "thread": 25 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 501570, + "thread": 17 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 759351, + "thread": 3 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 828991, + "thread": 16 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1098844, + "thread": 18 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1254583, + "thread": 7 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1319361, + "thread": 27 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1547594, + "thread": 11 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1733664, + "thread": 19 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 1958398, + "thread": 23 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2003342, + "thread": 2 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2294866, + "thread": 2 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2419305, + "thread": 16 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2550361, + "thread": 28 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2764257, + "thread": 2 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 2844658, + "thread": 14 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 3088134, + "thread": 10 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 3234489, + "thread": 21 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 3383021, + "thread": 14 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 3559116, + "thread": 22 + } + }, + { + "amount": "183.170829798", + "slot": { + "period": 3718224, + "thread": 7 + } + }, + { + "amount": "183.170829789", + "slot": { + "period": 3912609, + "thread": 18 + } + } + ], + "AU126jafJbKXbEUec1oDDYUourHKQ3bieRVuwNFNadLQ6CNAGkXT7": [ + { + "amount": "61.387395608", + "slot": { + "period": 136543, + "thread": 4 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 259715, + "thread": 14 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 417667, + "thread": 4 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 640104, + "thread": 10 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 781822, + "thread": 31 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 964936, + "thread": 21 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1103528, + "thread": 14 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1271963, + "thread": 7 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1352002, + "thread": 19 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1494516, + "thread": 31 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1803383, + "thread": 3 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 1860448, + "thread": 13 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2134078, + "thread": 3 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2149742, + "thread": 8 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2380871, + "thread": 9 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2504975, + "thread": 6 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2740329, + "thread": 22 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 2905056, + "thread": 16 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 3044115, + "thread": 26 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 3216974, + "thread": 13 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 3291427, + "thread": 13 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 3520866, + "thread": 15 + } + }, + { + "amount": "61.387395608", + "slot": { + "period": 3691461, + "thread": 14 + } + }, + { + "amount": "61.387395613", + "slot": { + "period": 3879897, + "thread": 6 + } + } + ], + "AU126jos9W4XbVmVLDeLh4q6sFSshrF8hHtDMgJZke1LuBWqWUBWJ": [ + { + "amount": "485.267827341", + "slot": { + "period": 160691, + "thread": 26 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 222456, + "thread": 7 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 447973, + "thread": 20 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 517837, + "thread": 29 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 751315, + "thread": 23 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 874428, + "thread": 25 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1074783, + "thread": 15 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1207320, + "thread": 8 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1378957, + "thread": 13 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1522349, + "thread": 8 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1681182, + "thread": 26 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 1879976, + "thread": 27 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2002864, + "thread": 6 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2148624, + "thread": 24 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2440578, + "thread": 26 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2496768, + "thread": 4 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2787939, + "thread": 21 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 2945124, + "thread": 23 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 3019452, + "thread": 3 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 3225344, + "thread": 29 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 3318736, + "thread": 9 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 3490025, + "thread": 9 + } + }, + { + "amount": "485.267827341", + "slot": { + "period": 3653880, + "thread": 31 + } + }, + { + "amount": "485.267827348", + "slot": { + "period": 3835634, + "thread": 28 + } + } + ], + "AU126k547R4WZuPSdrVZfbhFBjQAAJTy642LpmW5YDVXP6gcKZcuh": [ + { + "amount": "242.333613413", + "slot": { + "period": 58861, + "thread": 30 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 192103, + "thread": 18 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 457888, + "thread": 5 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 631180, + "thread": 30 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 751770, + "thread": 7 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 910974, + "thread": 18 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1065046, + "thread": 22 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1204892, + "thread": 6 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1381810, + "thread": 29 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1603527, + "thread": 7 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1709066, + "thread": 20 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 1939490, + "thread": 1 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2017786, + "thread": 20 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2158464, + "thread": 25 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2390765, + "thread": 21 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2510124, + "thread": 27 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2706896, + "thread": 8 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 2918372, + "thread": 17 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 3119841, + "thread": 21 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 3223621, + "thread": 27 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 3359213, + "thread": 29 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 3582281, + "thread": 3 + } + }, + { + "amount": "242.333613413", + "slot": { + "period": 3685775, + "thread": 21 + } + }, + { + "amount": "242.333613410", + "slot": { + "period": 3833926, + "thread": 2 + } + } + ], + "AU126kCoitHvga3rZxffJbkAumfEgcHcXNiifLGvtUuAHob1xvAtB": [ + { + "amount": "224.927376822", + "slot": { + "period": 158344, + "thread": 20 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 315248, + "thread": 7 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 465454, + "thread": 17 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 520921, + "thread": 26 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 784530, + "thread": 24 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 882162, + "thread": 30 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1106092, + "thread": 2 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1203226, + "thread": 26 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1382034, + "thread": 19 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1594477, + "thread": 30 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1808080, + "thread": 13 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 1858946, + "thread": 5 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2011721, + "thread": 7 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2227614, + "thread": 14 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2349105, + "thread": 5 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2497388, + "thread": 14 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2771196, + "thread": 27 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 2809633, + "thread": 4 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 3004918, + "thread": 8 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 3166996, + "thread": 17 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 3288906, + "thread": 13 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 3512112, + "thread": 24 + } + }, + { + "amount": "224.927376822", + "slot": { + "period": 3622094, + "thread": 31 + } + }, + { + "amount": "224.927376818", + "slot": { + "period": 3914316, + "thread": 19 + } + } + ], + "AU126kHE1HWSLMBn5wW8X6yJjM6GfoKqW7UsqLowTcyZvLVZxzUwu": [ + { + "amount": "416.747459946", + "slot": { + "period": 151420, + "thread": 1 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 177299, + "thread": 19 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 385322, + "thread": 8 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 636033, + "thread": 31 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 804286, + "thread": 30 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 929056, + "thread": 2 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1140402, + "thread": 15 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1163445, + "thread": 0 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1328794, + "thread": 3 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1559346, + "thread": 18 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1727721, + "thread": 2 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 1840408, + "thread": 16 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2119753, + "thread": 25 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2263446, + "thread": 5 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2419029, + "thread": 6 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2602960, + "thread": 1 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2672834, + "thread": 23 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 2947738, + "thread": 23 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 3054013, + "thread": 2 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 3262960, + "thread": 0 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 3446696, + "thread": 14 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 3610431, + "thread": 7 + } + }, + { + "amount": "416.747459946", + "slot": { + "period": 3709216, + "thread": 15 + } + }, + { + "amount": "416.747459941", + "slot": { + "period": 3922068, + "thread": 17 + } + } + ], + "AU126kPAtzxvyE5V7DXVAbfLHjMkvCzEmPhRQNaczAAEGw7Cep7zy": [ + { + "amount": "388.787597230", + "slot": { + "period": 29609, + "thread": 7 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 228088, + "thread": 10 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 354013, + "thread": 20 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 627272, + "thread": 14 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 779627, + "thread": 18 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 968952, + "thread": 12 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 983683, + "thread": 8 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 1236457, + "thread": 24 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 1319450, + "thread": 25 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 1579034, + "thread": 23 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 1756534, + "thread": 8 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 1946569, + "thread": 22 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2105554, + "thread": 11 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2178324, + "thread": 15 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2306039, + "thread": 9 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2507652, + "thread": 19 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2678899, + "thread": 12 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 2887481, + "thread": 18 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 3083824, + "thread": 13 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 3140426, + "thread": 21 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 3365966, + "thread": 0 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 3575492, + "thread": 25 + } + }, + { + "amount": "388.787597230", + "slot": { + "period": 3631145, + "thread": 9 + } + }, + { + "amount": "388.787597229", + "slot": { + "period": 3887499, + "thread": 6 + } + } + ], + "AU126mcdrQMCmXMHNqKjz7CdKKsy5R2JysafRd92aWeYupc5VDHqv": [ + { + "amount": "267.412596508", + "slot": { + "period": 156863, + "thread": 7 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 179916, + "thread": 25 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 478397, + "thread": 14 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 501387, + "thread": 2 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 712280, + "thread": 22 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 956116, + "thread": 25 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1071456, + "thread": 1 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1186148, + "thread": 13 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1443455, + "thread": 20 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1497138, + "thread": 23 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1727987, + "thread": 14 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 1835881, + "thread": 13 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2111310, + "thread": 21 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2278401, + "thread": 18 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2378068, + "thread": 30 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2472158, + "thread": 11 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2711251, + "thread": 16 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 2943746, + "thread": 29 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 3073275, + "thread": 28 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 3261593, + "thread": 27 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 3406287, + "thread": 7 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 3567447, + "thread": 10 + } + }, + { + "amount": "267.412596508", + "slot": { + "period": 3723442, + "thread": 24 + } + }, + { + "amount": "267.412596518", + "slot": { + "period": 3807712, + "thread": 0 + } + } + ], + "AU126oLdV1gfCDKTbcxpXSauuFdWXEB8eS3RfXHeTfagqM9CJJ8AR": [ + { + "amount": "174.375183272", + "slot": { + "period": 52053, + "thread": 18 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 235115, + "thread": 28 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 431700, + "thread": 12 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 514611, + "thread": 2 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 782364, + "thread": 10 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 859460, + "thread": 21 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 987909, + "thread": 17 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 1202057, + "thread": 28 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 1360420, + "thread": 22 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 1523859, + "thread": 14 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 1743358, + "thread": 18 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 1931644, + "thread": 24 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2006860, + "thread": 0 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2206352, + "thread": 19 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2448723, + "thread": 12 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2622042, + "thread": 8 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2684506, + "thread": 2 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2931944, + "thread": 10 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 2999276, + "thread": 3 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 3225357, + "thread": 22 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 3329053, + "thread": 20 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 3507108, + "thread": 31 + } + }, + { + "amount": "174.375183272", + "slot": { + "period": 3626867, + "thread": 8 + } + }, + { + "amount": "174.375183279", + "slot": { + "period": 3879511, + "thread": 12 + } + } + ], + "AU126opqYhsqn9rHL9opT2Va9oP8GmKvda6c72mhJmG4WoKBktYzz": [ + { + "amount": "134.120951163", + "slot": { + "period": 86210, + "thread": 3 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 236860, + "thread": 29 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 486683, + "thread": 2 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 579462, + "thread": 24 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 659941, + "thread": 25 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 971584, + "thread": 31 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1049485, + "thread": 8 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1273766, + "thread": 2 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1462248, + "thread": 27 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1560342, + "thread": 7 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1648493, + "thread": 17 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 1824377, + "thread": 7 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2020424, + "thread": 1 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2242367, + "thread": 20 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2297253, + "thread": 20 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2490845, + "thread": 24 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2750720, + "thread": 31 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 2894860, + "thread": 25 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 3048231, + "thread": 9 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 3254218, + "thread": 10 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 3293705, + "thread": 10 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 3606972, + "thread": 22 + } + }, + { + "amount": "134.120951163", + "slot": { + "period": 3730117, + "thread": 20 + } + }, + { + "amount": "134.120951162", + "slot": { + "period": 3842860, + "thread": 20 + } + } + ], + "AU126pPMJjttezCQBxTM22HM8JAQWtBRSMgvsHJRr6CDbFDfVD46M": [ + { + "amount": "334.861695151", + "slot": { + "period": 51568, + "thread": 22 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 168995, + "thread": 7 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 448755, + "thread": 2 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 556519, + "thread": 30 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 715932, + "thread": 18 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 854522, + "thread": 18 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1107461, + "thread": 14 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1314185, + "thread": 12 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1412930, + "thread": 29 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1598188, + "thread": 28 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1741253, + "thread": 28 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 1883379, + "thread": 15 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2055349, + "thread": 7 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2177451, + "thread": 13 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2376505, + "thread": 29 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2464791, + "thread": 5 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2701223, + "thread": 24 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 2909934, + "thread": 26 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 3059633, + "thread": 26 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 3193256, + "thread": 4 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 3319351, + "thread": 26 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 3560427, + "thread": 12 + } + }, + { + "amount": "334.861695151", + "slot": { + "period": 3717441, + "thread": 16 + } + }, + { + "amount": "334.861695143", + "slot": { + "period": 3925154, + "thread": 1 + } + } + ], + "AU126pcsvsj7jHX5a3GYgsbe5XQmk5SxwHzpR5vD7cwRFocSnnahD": [ + { + "amount": "326.969490826", + "slot": { + "period": 27106, + "thread": 19 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 313289, + "thread": 18 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 383623, + "thread": 30 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 546816, + "thread": 22 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 811516, + "thread": 31 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 864544, + "thread": 10 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1144069, + "thread": 20 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1221445, + "thread": 9 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1376123, + "thread": 18 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1573256, + "thread": 16 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1756882, + "thread": 12 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 1915130, + "thread": 20 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2130092, + "thread": 10 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2165289, + "thread": 28 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2402163, + "thread": 9 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2498957, + "thread": 12 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2779784, + "thread": 28 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 2917861, + "thread": 1 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 3074542, + "thread": 10 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 3127878, + "thread": 10 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 3315334, + "thread": 30 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 3600456, + "thread": 29 + } + }, + { + "amount": "326.969490826", + "slot": { + "period": 3747750, + "thread": 5 + } + }, + { + "amount": "326.969490818", + "slot": { + "period": 3902672, + "thread": 22 + } + } + ], + "AU126q3yfe66XeQQbeoJ64E6YSbRS7h8m94uDseMjKH9RxhYFd1kG": [ + { + "amount": "379.655759120", + "slot": { + "period": 67268, + "thread": 20 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 187074, + "thread": 21 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 375093, + "thread": 4 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 568798, + "thread": 31 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 708406, + "thread": 1 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 879837, + "thread": 24 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1000726, + "thread": 18 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1195191, + "thread": 20 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1358997, + "thread": 25 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1617502, + "thread": 26 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1708766, + "thread": 13 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 1875689, + "thread": 10 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2140849, + "thread": 10 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2286057, + "thread": 17 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2415187, + "thread": 28 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2478093, + "thread": 2 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2752558, + "thread": 31 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 2869707, + "thread": 23 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 3108249, + "thread": 8 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 3180537, + "thread": 19 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 3397814, + "thread": 29 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 3616772, + "thread": 30 + } + }, + { + "amount": "379.655759120", + "slot": { + "period": 3718225, + "thread": 4 + } + }, + { + "amount": "379.655759116", + "slot": { + "period": 3841625, + "thread": 3 + } + } + ], + "AU126qJhkhNx5yynidqXhidEMcwzEmRE7eaMjYkg8viXb9UphhHwN": [ + { + "amount": "72.636011130", + "slot": { + "period": 35614, + "thread": 27 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 281640, + "thread": 11 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 333498, + "thread": 4 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 551706, + "thread": 31 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 745611, + "thread": 25 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 854895, + "thread": 5 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1008528, + "thread": 12 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1226489, + "thread": 0 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1401498, + "thread": 10 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1579754, + "thread": 10 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1666400, + "thread": 5 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1829428, + "thread": 27 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 1986428, + "thread": 4 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2289317, + "thread": 21 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2385203, + "thread": 15 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2617899, + "thread": 24 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2671880, + "thread": 31 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2867844, + "thread": 15 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 2966894, + "thread": 16 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 3194988, + "thread": 16 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 3418248, + "thread": 3 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 3597273, + "thread": 23 + } + }, + { + "amount": "72.636011130", + "slot": { + "period": 3620751, + "thread": 6 + } + }, + { + "amount": "72.636011137", + "slot": { + "period": 3875015, + "thread": 10 + } + } + ], + "AU126sWFYjH2kLXJFsNAGEoKCfMxPjTs4g3TaKw3fgkbofMfUrgmH": [ + { + "amount": "172.633654343", + "slot": { + "period": 85728, + "thread": 0 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 319017, + "thread": 2 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 330627, + "thread": 14 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 496392, + "thread": 5 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 677976, + "thread": 3 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 847610, + "thread": 26 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 992119, + "thread": 23 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 1277476, + "thread": 21 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 1361729, + "thread": 30 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 1573499, + "thread": 7 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 1769311, + "thread": 13 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 1920993, + "thread": 31 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2064257, + "thread": 4 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2213603, + "thread": 4 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2381148, + "thread": 1 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2620311, + "thread": 2 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2664852, + "thread": 21 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 2891968, + "thread": 28 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 3083014, + "thread": 20 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 3124742, + "thread": 5 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 3436528, + "thread": 0 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 3467004, + "thread": 2 + } + }, + { + "amount": "172.633654343", + "slot": { + "period": 3681611, + "thread": 30 + } + }, + { + "amount": "172.633654354", + "slot": { + "period": 3807593, + "thread": 5 + } + } + ], + "AU126sqpGskQiuPWbbD4CX71uCi4MwGgExFRcso7AxF51jgUG7G3R": [ + { + "amount": "193.336993068", + "slot": { + "period": 156933, + "thread": 18 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 243400, + "thread": 26 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 480391, + "thread": 18 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 628346, + "thread": 16 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 797078, + "thread": 3 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 829365, + "thread": 3 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1142815, + "thread": 9 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1223573, + "thread": 25 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1340895, + "thread": 15 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1566250, + "thread": 31 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1723205, + "thread": 2 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 1855182, + "thread": 4 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2043215, + "thread": 11 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2253746, + "thread": 26 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2415754, + "thread": 24 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2466129, + "thread": 25 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2733496, + "thread": 24 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 2857382, + "thread": 10 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 3065702, + "thread": 6 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 3258563, + "thread": 1 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 3338158, + "thread": 30 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 3563408, + "thread": 11 + } + }, + { + "amount": "193.336993068", + "slot": { + "period": 3767063, + "thread": 21 + } + }, + { + "amount": "193.336993059", + "slot": { + "period": 3861228, + "thread": 21 + } + } + ], + "AU126t8aNNNTzXNmBUMnGsHMavR2AR8p7tpH9Stuh2yWMrU5ErzPg": [ + { + "amount": "270.892765617", + "slot": { + "period": 44078, + "thread": 24 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 258931, + "thread": 5 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 487415, + "thread": 13 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 644333, + "thread": 26 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 695316, + "thread": 9 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 917916, + "thread": 5 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1131405, + "thread": 4 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1278966, + "thread": 21 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1425788, + "thread": 7 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1598818, + "thread": 26 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1649389, + "thread": 26 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 1931930, + "thread": 18 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2114617, + "thread": 10 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2164090, + "thread": 2 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2426384, + "thread": 1 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2479574, + "thread": 20 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2631266, + "thread": 8 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 2873596, + "thread": 9 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 3077732, + "thread": 28 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 3167715, + "thread": 24 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 3297207, + "thread": 30 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 3546285, + "thread": 12 + } + }, + { + "amount": "270.892765617", + "slot": { + "period": 3761520, + "thread": 5 + } + }, + { + "amount": "270.892765606", + "slot": { + "period": 3837489, + "thread": 0 + } + } + ], + "AU126tHkAyWTc9RDnD7FLv6EY34aTKNBNvaLw3kik3KRaW88trgBV": [ + { + "amount": "77.259224504", + "slot": { + "period": 141225, + "thread": 25 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 323219, + "thread": 22 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 392124, + "thread": 15 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 652900, + "thread": 20 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 725590, + "thread": 1 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 886375, + "thread": 14 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1078045, + "thread": 6 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1252684, + "thread": 12 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1378819, + "thread": 10 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1532270, + "thread": 3 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1647740, + "thread": 10 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 1842974, + "thread": 21 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2054084, + "thread": 23 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2228459, + "thread": 14 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2417339, + "thread": 26 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2613493, + "thread": 2 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2721755, + "thread": 6 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 2832032, + "thread": 29 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 3025988, + "thread": 29 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 3217776, + "thread": 15 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 3339929, + "thread": 12 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 3514011, + "thread": 8 + } + }, + { + "amount": "77.259224504", + "slot": { + "period": 3757055, + "thread": 16 + } + }, + { + "amount": "77.259224493", + "slot": { + "period": 3941436, + "thread": 24 + } + } + ], + "AU126ueNkEzZs6HiQDPgg8Zt3nKpdMLeMAUQUXuKnhP9m2kw1q5se": [ + { + "amount": "315.127203492", + "slot": { + "period": 75906, + "thread": 10 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 200325, + "thread": 5 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 335470, + "thread": 14 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 599156, + "thread": 17 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 769203, + "thread": 18 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 920784, + "thread": 5 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1147048, + "thread": 5 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1175254, + "thread": 26 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1472163, + "thread": 15 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1482496, + "thread": 20 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1754574, + "thread": 28 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 1887633, + "thread": 0 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2092557, + "thread": 22 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2282156, + "thread": 10 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2373730, + "thread": 28 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2490432, + "thread": 13 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2659650, + "thread": 13 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 2920963, + "thread": 19 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 3023267, + "thread": 15 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 3238969, + "thread": 5 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 3300591, + "thread": 9 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 3615874, + "thread": 6 + } + }, + { + "amount": "315.127203492", + "slot": { + "period": 3728961, + "thread": 23 + } + }, + { + "amount": "315.127203482", + "slot": { + "period": 3905471, + "thread": 18 + } + } + ], + "AU126w3zQziapcPiKYQAgkELAh9bUzu9fXCoz1SphydiqeZHYYsnd": [ + { + "amount": "83.518668833", + "slot": { + "period": 103627, + "thread": 28 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 213024, + "thread": 11 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 350266, + "thread": 25 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 643369, + "thread": 31 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 740851, + "thread": 6 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 957571, + "thread": 22 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1076361, + "thread": 28 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1306365, + "thread": 31 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1452868, + "thread": 8 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1500413, + "thread": 28 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1674678, + "thread": 7 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 1913143, + "thread": 15 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2015724, + "thread": 16 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2182187, + "thread": 2 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2324518, + "thread": 7 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2605199, + "thread": 3 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2787911, + "thread": 1 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 2805603, + "thread": 9 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 3110652, + "thread": 4 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 3250989, + "thread": 24 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 3299169, + "thread": 22 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 3491210, + "thread": 5 + } + }, + { + "amount": "83.518668833", + "slot": { + "period": 3718853, + "thread": 15 + } + }, + { + "amount": "83.518668823", + "slot": { + "period": 3839057, + "thread": 7 + } + } + ], + "AU126w7JRyiCbQJw8avX1ZargApXRPiiRKFNVgbRQpt7Dxco5KfmQ": [ + { + "amount": "449.082012803", + "slot": { + "period": 124550, + "thread": 24 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 274832, + "thread": 20 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 477249, + "thread": 6 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 497602, + "thread": 0 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 813155, + "thread": 17 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 923909, + "thread": 6 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1034614, + "thread": 7 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1155182, + "thread": 5 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1472732, + "thread": 17 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1488503, + "thread": 6 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1729179, + "thread": 7 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 1907282, + "thread": 0 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2034026, + "thread": 24 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2220431, + "thread": 27 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2311086, + "thread": 21 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2578852, + "thread": 24 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2679225, + "thread": 3 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 2878387, + "thread": 10 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 3055074, + "thread": 30 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 3153705, + "thread": 31 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 3364910, + "thread": 3 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 3520581, + "thread": 14 + } + }, + { + "amount": "449.082012803", + "slot": { + "period": 3712495, + "thread": 21 + } + }, + { + "amount": "449.082012813", + "slot": { + "period": 3904708, + "thread": 6 + } + } + ], + "AU126wKAgG9qM2jJL9sTxWmGEK7WjHHFkpeghNfR5knz7DU734RkY": [ + { + "amount": "604.723301636", + "slot": { + "period": 69252, + "thread": 16 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 224505, + "thread": 25 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 424192, + "thread": 16 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 600634, + "thread": 30 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 710036, + "thread": 5 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 952791, + "thread": 31 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1082593, + "thread": 27 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1234280, + "thread": 13 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1451868, + "thread": 26 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1516547, + "thread": 21 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1648778, + "thread": 21 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 1898471, + "thread": 22 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2118635, + "thread": 7 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2216122, + "thread": 27 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2426789, + "thread": 30 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2602446, + "thread": 17 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2631516, + "thread": 10 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2900934, + "thread": 1 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 2957246, + "thread": 10 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 3147036, + "thread": 20 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 3305519, + "thread": 16 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 3585079, + "thread": 10 + } + }, + { + "amount": "604.723301636", + "slot": { + "period": 3682941, + "thread": 8 + } + }, + { + "amount": "604.723301645", + "slot": { + "period": 3908158, + "thread": 19 + } + } + ], + "AU126wSZ1BPPQ3ZuBX8HegigS6wX1SizoXtoQjNsh937reDjTnsYP": [ + { + "amount": "538.406021183", + "slot": { + "period": 39597, + "thread": 26 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 279953, + "thread": 5 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 350228, + "thread": 12 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 513891, + "thread": 7 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 722233, + "thread": 5 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 936899, + "thread": 16 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1126165, + "thread": 27 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1215033, + "thread": 16 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1417445, + "thread": 23 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1599967, + "thread": 14 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1750666, + "thread": 31 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 1946535, + "thread": 30 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2136057, + "thread": 14 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2169882, + "thread": 10 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2427052, + "thread": 21 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2566423, + "thread": 29 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2636697, + "thread": 17 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 2854632, + "thread": 13 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 3012816, + "thread": 6 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 3155059, + "thread": 23 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 3296337, + "thread": 21 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 3463009, + "thread": 1 + } + }, + { + "amount": "538.406021183", + "slot": { + "period": 3703470, + "thread": 1 + } + }, + { + "amount": "538.406021188", + "slot": { + "period": 3855603, + "thread": 22 + } + } + ], + "AU126xPQfivq7UQz4op1qYgdPPG6Gmex2urxE1UQw5zs2q8oVMRha": [ + { + "amount": "558.221031959", + "slot": { + "period": 58582, + "thread": 27 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 185669, + "thread": 0 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 358899, + "thread": 29 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 496574, + "thread": 10 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 807512, + "thread": 27 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 948405, + "thread": 23 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1049299, + "thread": 3 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1260528, + "thread": 2 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1428649, + "thread": 4 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1620845, + "thread": 29 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1654183, + "thread": 1 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 1832540, + "thread": 23 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2062581, + "thread": 13 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2221065, + "thread": 25 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2404221, + "thread": 27 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2467030, + "thread": 20 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2678939, + "thread": 28 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 2921116, + "thread": 5 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 3085282, + "thread": 5 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 3256985, + "thread": 11 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 3329222, + "thread": 7 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 3568969, + "thread": 9 + } + }, + { + "amount": "558.221031959", + "slot": { + "period": 3759114, + "thread": 6 + } + }, + { + "amount": "558.221031955", + "slot": { + "period": 3801194, + "thread": 5 + } + } + ], + "AU126xQNnQj4PNhgc2unNL1af4jR5awTNai4NiDMNgF7pnUKT7skF": [ + { + "amount": "185.501403829", + "slot": { + "period": 59152, + "thread": 15 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 288723, + "thread": 17 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 380912, + "thread": 20 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 508494, + "thread": 7 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 805264, + "thread": 28 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 910074, + "thread": 16 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1059392, + "thread": 9 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1292935, + "thread": 25 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1326055, + "thread": 22 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1567815, + "thread": 30 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1787123, + "thread": 15 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 1913612, + "thread": 28 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2100320, + "thread": 7 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2277586, + "thread": 9 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2408228, + "thread": 31 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2547050, + "thread": 12 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2764384, + "thread": 6 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2851364, + "thread": 0 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 2956903, + "thread": 23 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 3205381, + "thread": 8 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 3348978, + "thread": 18 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 3479816, + "thread": 15 + } + }, + { + "amount": "185.501403829", + "slot": { + "period": 3747482, + "thread": 0 + } + }, + { + "amount": "185.501403828", + "slot": { + "period": 3894656, + "thread": 26 + } + } + ], + "AU126y83B5rxLPjDPA1CMdxdWAD4puo8pPkX4V4NJEhWcDECCx7Hn": [ + { + "amount": "477.815635157", + "slot": { + "period": 157660, + "thread": 9 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 192128, + "thread": 19 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 460024, + "thread": 17 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 638023, + "thread": 31 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 778035, + "thread": 6 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 850415, + "thread": 24 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1037175, + "thread": 31 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1303441, + "thread": 6 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1356637, + "thread": 4 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1588482, + "thread": 4 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1720411, + "thread": 8 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 1916201, + "thread": 18 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2081644, + "thread": 5 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2253962, + "thread": 12 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2382438, + "thread": 3 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2531326, + "thread": 9 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2673558, + "thread": 15 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 2861017, + "thread": 12 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 3090355, + "thread": 3 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 3195848, + "thread": 15 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 3328970, + "thread": 22 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 3509199, + "thread": 20 + } + }, + { + "amount": "477.815635157", + "slot": { + "period": 3668924, + "thread": 3 + } + }, + { + "amount": "477.815635154", + "slot": { + "period": 3797812, + "thread": 8 + } + } + ], + "AU126yDfc3x1L32AkjQvCNxdf1ZWiGKgiSbCxo39o5Ue3FduCa27x": [ + { + "amount": "202.558849250", + "slot": { + "period": 162952, + "thread": 18 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 220272, + "thread": 12 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 436068, + "thread": 28 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 529572, + "thread": 16 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 738708, + "thread": 28 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 821981, + "thread": 29 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1059877, + "thread": 20 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1289120, + "thread": 22 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1394629, + "thread": 29 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1520981, + "thread": 20 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1732163, + "thread": 20 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 1961259, + "thread": 2 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2117834, + "thread": 7 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2283870, + "thread": 20 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2297655, + "thread": 4 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2584803, + "thread": 2 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2762012, + "thread": 6 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 2855608, + "thread": 14 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 3009415, + "thread": 8 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 3157483, + "thread": 23 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 3347186, + "thread": 31 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 3451848, + "thread": 6 + } + }, + { + "amount": "202.558849250", + "slot": { + "period": 3640784, + "thread": 7 + } + }, + { + "amount": "202.558849244", + "slot": { + "period": 3896639, + "thread": 2 + } + } + ], + "AU126yd2ao8ZDVNfGJacmX7DfwMfVKmGJeMhvFrFkQAxG2wDZ8sBs": [ + { + "amount": "383.624813137", + "slot": { + "period": 95627, + "thread": 29 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 220113, + "thread": 0 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 442615, + "thread": 17 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 491863, + "thread": 12 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 684033, + "thread": 5 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 952527, + "thread": 23 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1062004, + "thread": 8 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1172470, + "thread": 14 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1380460, + "thread": 31 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1577720, + "thread": 17 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1738975, + "thread": 6 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 1930153, + "thread": 10 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2087594, + "thread": 19 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2201362, + "thread": 14 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2312376, + "thread": 12 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2497579, + "thread": 24 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2664292, + "thread": 21 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2895044, + "thread": 7 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 2956836, + "thread": 29 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 3231135, + "thread": 14 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 3390136, + "thread": 31 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 3484382, + "thread": 12 + } + }, + { + "amount": "383.624813137", + "slot": { + "period": 3718111, + "thread": 8 + } + }, + { + "amount": "383.624813131", + "slot": { + "period": 3940475, + "thread": 26 + } + } + ], + "AU126zTf2YaLmWTL1J5j1XKABvuifmzQVZhmVTSHUZNYdC24hMrZY": [ + { + "amount": "207.713531577", + "slot": { + "period": 35905, + "thread": 11 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 261450, + "thread": 16 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 466953, + "thread": 19 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 537938, + "thread": 22 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 686921, + "thread": 22 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 866305, + "thread": 21 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1032254, + "thread": 22 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1240605, + "thread": 30 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1448258, + "thread": 17 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1629363, + "thread": 20 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1768272, + "thread": 24 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1905676, + "thread": 0 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 1994201, + "thread": 8 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2210852, + "thread": 20 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2373208, + "thread": 23 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2501037, + "thread": 24 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2693424, + "thread": 14 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2866986, + "thread": 19 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 2966617, + "thread": 18 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 3227706, + "thread": 28 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 3403555, + "thread": 14 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 3522963, + "thread": 24 + } + }, + { + "amount": "207.713531577", + "slot": { + "period": 3634892, + "thread": 20 + } + }, + { + "amount": "207.713531583", + "slot": { + "period": 3819524, + "thread": 25 + } + } + ], + "AU12734SbbmUxNWdpv4cVBx2LyfSCg1zH5vfJeNFwF23LZRKJF3c7": [ + { + "amount": "141.788121771", + "slot": { + "period": 84900, + "thread": 12 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 251133, + "thread": 11 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 406698, + "thread": 27 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 603967, + "thread": 30 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 751906, + "thread": 26 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 952713, + "thread": 4 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1078233, + "thread": 5 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1314525, + "thread": 17 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1353282, + "thread": 29 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1516249, + "thread": 13 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1738715, + "thread": 24 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 1972616, + "thread": 8 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2003131, + "thread": 17 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2190752, + "thread": 16 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2429017, + "thread": 18 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2546038, + "thread": 3 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2782224, + "thread": 12 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2848269, + "thread": 25 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 2995270, + "thread": 23 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 3221866, + "thread": 28 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 3331759, + "thread": 2 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 3578451, + "thread": 16 + } + }, + { + "amount": "141.788121771", + "slot": { + "period": 3665959, + "thread": 6 + } + }, + { + "amount": "141.788121762", + "slot": { + "period": 3852260, + "thread": 9 + } + } + ], + "AU127442gKGbqxSRUc5W9LdDJPbRNJpNpA9Vzsr6kUEXWBM9QjG1r": [ + { + "amount": "145.263806643", + "slot": { + "period": 68684, + "thread": 18 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 305170, + "thread": 0 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 360919, + "thread": 10 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 599737, + "thread": 25 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 661389, + "thread": 10 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 933847, + "thread": 11 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1019989, + "thread": 23 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1153272, + "thread": 1 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1461170, + "thread": 12 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1505508, + "thread": 4 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1648479, + "thread": 12 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1882340, + "thread": 25 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 1977542, + "thread": 18 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2149514, + "thread": 2 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2352169, + "thread": 11 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2614613, + "thread": 27 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2777050, + "thread": 14 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2842507, + "thread": 26 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 2997083, + "thread": 23 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 3193481, + "thread": 24 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 3354125, + "thread": 22 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 3492074, + "thread": 16 + } + }, + { + "amount": "145.263806643", + "slot": { + "period": 3749767, + "thread": 31 + } + }, + { + "amount": "145.263806639", + "slot": { + "period": 3865954, + "thread": 1 + } + } + ], + "AU1274Mv3TLaNN9PNAAHg1XM6dSyEgAQfj6rT1WovRnk4pVsU5PsQ": [ + { + "amount": "766.336149448", + "slot": { + "period": 112766, + "thread": 30 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 229629, + "thread": 5 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 458910, + "thread": 26 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 599153, + "thread": 16 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 728953, + "thread": 31 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 965156, + "thread": 31 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1111149, + "thread": 31 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1317137, + "thread": 26 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1460482, + "thread": 13 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1633561, + "thread": 9 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1666021, + "thread": 4 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 1823252, + "thread": 24 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2135920, + "thread": 18 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2188286, + "thread": 9 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2425801, + "thread": 2 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2476461, + "thread": 8 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2695557, + "thread": 8 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 2849381, + "thread": 10 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 3070030, + "thread": 14 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 3189634, + "thread": 2 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 3430853, + "thread": 27 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 3610687, + "thread": 20 + } + }, + { + "amount": "766.336149448", + "slot": { + "period": 3702074, + "thread": 2 + } + }, + { + "amount": "766.336149445", + "slot": { + "period": 3946416, + "thread": 30 + } + } + ], + "AU12759RoiQXZdgnPxTdbmNdvz9zpWx8Kv4b4S34SBHMM6k36U5uC": [ + { + "amount": "86.218171496", + "slot": { + "period": 166129, + "thread": 15 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 243666, + "thread": 26 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 397253, + "thread": 5 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 535479, + "thread": 8 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 726288, + "thread": 13 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 873643, + "thread": 16 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 988955, + "thread": 2 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 1256233, + "thread": 4 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 1470929, + "thread": 6 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 1517193, + "thread": 25 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 1686479, + "thread": 29 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 1884806, + "thread": 22 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2109528, + "thread": 0 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2274656, + "thread": 4 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2316159, + "thread": 14 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2496845, + "thread": 7 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2653959, + "thread": 12 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 2887686, + "thread": 28 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 3115974, + "thread": 0 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 3170774, + "thread": 20 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 3380937, + "thread": 7 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 3509088, + "thread": 29 + } + }, + { + "amount": "86.218171496", + "slot": { + "period": 3771809, + "thread": 26 + } + }, + { + "amount": "86.218171485", + "slot": { + "period": 3906392, + "thread": 18 + } + } + ], + "AU1275cjg7UnnzmDH5ANnj1yV5jEhwshsbnbtLsWUq5KXC4otk94F": [ + { + "amount": "215.033324958", + "slot": { + "period": 21023, + "thread": 4 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 190779, + "thread": 10 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 417000, + "thread": 26 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 612031, + "thread": 7 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 743893, + "thread": 13 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 899306, + "thread": 1 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1010056, + "thread": 18 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1182277, + "thread": 30 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1376822, + "thread": 2 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1560350, + "thread": 4 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1671539, + "thread": 23 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1857120, + "thread": 26 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 1989037, + "thread": 7 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 2252112, + "thread": 10 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 2423263, + "thread": 28 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 2551969, + "thread": 24 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 2777669, + "thread": 6 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 2879780, + "thread": 9 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 3062154, + "thread": 6 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 3189350, + "thread": 15 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 3375951, + "thread": 31 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 3567382, + "thread": 15 + } + }, + { + "amount": "215.033324958", + "slot": { + "period": 3622978, + "thread": 7 + } + }, + { + "amount": "215.033324968", + "slot": { + "period": 3880400, + "thread": 13 + } + } + ], + "AU1275d8szfNyD8cFV6o3vyAy9Hm22ZPWQ1LmQ2ZZtvhzQS3i5x9e": [ + { + "amount": "243.970655444", + "slot": { + "period": 29179, + "thread": 13 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 200364, + "thread": 10 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 386616, + "thread": 1 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 616088, + "thread": 24 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 725301, + "thread": 28 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 829644, + "thread": 24 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1063346, + "thread": 1 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1279667, + "thread": 25 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1439063, + "thread": 12 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1608878, + "thread": 20 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1695046, + "thread": 11 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 1948574, + "thread": 29 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2117534, + "thread": 14 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2237349, + "thread": 28 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2297699, + "thread": 3 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2464090, + "thread": 0 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2662314, + "thread": 4 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 2929927, + "thread": 3 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 3075067, + "thread": 5 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 3165356, + "thread": 17 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 3291657, + "thread": 26 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 3553449, + "thread": 2 + } + }, + { + "amount": "243.970655444", + "slot": { + "period": 3676780, + "thread": 23 + } + }, + { + "amount": "243.970655442", + "slot": { + "period": 3887394, + "thread": 14 + } + } + ], + "AU12777DB68D1sMiiZXaYEtsGKkQyrxnzQyVcLRdsDtSjPtiMnDx2": [ + { + "amount": "364.815270652", + "slot": { + "period": 148315, + "thread": 24 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 238544, + "thread": 3 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 488443, + "thread": 16 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 542052, + "thread": 13 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 802312, + "thread": 16 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 938025, + "thread": 30 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 999266, + "thread": 4 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 1247456, + "thread": 23 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 1326456, + "thread": 24 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 1569255, + "thread": 19 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 1792382, + "thread": 16 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 1859881, + "thread": 13 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2069769, + "thread": 21 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2213484, + "thread": 22 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2408898, + "thread": 28 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2505890, + "thread": 31 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2765728, + "thread": 0 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 2855870, + "thread": 16 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 3003522, + "thread": 28 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 3201745, + "thread": 18 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 3448885, + "thread": 25 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 3594427, + "thread": 26 + } + }, + { + "amount": "364.815270652", + "slot": { + "period": 3700400, + "thread": 25 + } + }, + { + "amount": "364.815270647", + "slot": { + "period": 3913419, + "thread": 10 + } + } + ], + "AU12778M93poLa9ngXZxpfEumuZfsKww6XvdtcD99GUndB6iLS4Tn": [ + { + "amount": "201.255905208", + "slot": { + "period": 112855, + "thread": 5 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 297621, + "thread": 19 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 486702, + "thread": 14 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 590618, + "thread": 22 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 709948, + "thread": 11 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 889354, + "thread": 1 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1090317, + "thread": 22 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1313510, + "thread": 9 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1421624, + "thread": 7 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1639403, + "thread": 24 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1663159, + "thread": 22 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 1902239, + "thread": 18 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2051971, + "thread": 19 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2276068, + "thread": 26 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2356533, + "thread": 3 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2474358, + "thread": 31 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2754202, + "thread": 22 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2840381, + "thread": 17 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 2976441, + "thread": 28 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 3278381, + "thread": 9 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 3328979, + "thread": 4 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 3605532, + "thread": 27 + } + }, + { + "amount": "201.255905208", + "slot": { + "period": 3635823, + "thread": 22 + } + }, + { + "amount": "201.255905218", + "slot": { + "period": 3792759, + "thread": 11 + } + } + ], + "AU1277RCarMMatz7VhjTdoPSDr3gqh9eHcQs67CTNRozHUEYE7GqQ": [ + { + "amount": "174.202849338", + "slot": { + "period": 11591, + "thread": 24 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 323868, + "thread": 8 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 467565, + "thread": 31 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 628583, + "thread": 12 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 728912, + "thread": 18 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 941557, + "thread": 19 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1074245, + "thread": 30 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1208612, + "thread": 3 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1468908, + "thread": 26 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1597721, + "thread": 19 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1714601, + "thread": 19 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 1934085, + "thread": 9 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2006770, + "thread": 6 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2199805, + "thread": 15 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2455829, + "thread": 2 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2614579, + "thread": 13 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2752582, + "thread": 23 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 2852455, + "thread": 20 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 3006204, + "thread": 22 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 3131412, + "thread": 14 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 3417834, + "thread": 30 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 3590360, + "thread": 17 + } + }, + { + "amount": "174.202849338", + "slot": { + "period": 3717438, + "thread": 20 + } + }, + { + "amount": "174.202849327", + "slot": { + "period": 3787528, + "thread": 11 + } + } + ], + "AU1277XZqbuv4FqC7vcxAyNLXY7eH2xNPh9hPeR5ekD7Ta1T4pA4A": [ + { + "amount": "190.484659962", + "slot": { + "period": 147071, + "thread": 24 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 231056, + "thread": 16 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 340990, + "thread": 31 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 568697, + "thread": 25 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 767532, + "thread": 20 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 915562, + "thread": 16 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 991434, + "thread": 19 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 1169631, + "thread": 5 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 1478503, + "thread": 5 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 1503900, + "thread": 5 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 1741583, + "thread": 22 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 1919486, + "thread": 26 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2139904, + "thread": 29 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2165156, + "thread": 10 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2398146, + "thread": 25 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2614333, + "thread": 3 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2691367, + "thread": 4 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 2890574, + "thread": 25 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 3068148, + "thread": 12 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 3184727, + "thread": 16 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 3348934, + "thread": 28 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 3598217, + "thread": 3 + } + }, + { + "amount": "190.484659962", + "slot": { + "period": 3770404, + "thread": 30 + } + }, + { + "amount": "190.484659957", + "slot": { + "period": 3870844, + "thread": 31 + } + } + ], + "AU1277YtR6iRyQ8Cs77w5c4A1pS8sWrhkW1NfqcnhmEBti97XpgHr": [ + { + "amount": "112.696001537", + "slot": { + "period": 54947, + "thread": 14 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 247919, + "thread": 4 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 334117, + "thread": 8 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 558005, + "thread": 21 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 789469, + "thread": 5 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 839112, + "thread": 10 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1098393, + "thread": 13 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1151743, + "thread": 4 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1415438, + "thread": 3 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1610428, + "thread": 10 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1726604, + "thread": 0 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 1963764, + "thread": 26 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2081953, + "thread": 28 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2176432, + "thread": 27 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2369060, + "thread": 6 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2557197, + "thread": 12 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2663356, + "thread": 27 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 2945191, + "thread": 15 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 3007548, + "thread": 22 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 3134665, + "thread": 4 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 3308666, + "thread": 26 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 3520694, + "thread": 31 + } + }, + { + "amount": "112.696001537", + "slot": { + "period": 3745846, + "thread": 24 + } + }, + { + "amount": "112.696001528", + "slot": { + "period": 3935053, + "thread": 17 + } + } + ], + "AU12788ZK5wy656jW68q596nzXWq5mzBmBkZuNVcy4hL7hhrhRZGP": [ + { + "amount": "78.956064125", + "slot": { + "period": 57524, + "thread": 31 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 198692, + "thread": 31 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 453226, + "thread": 16 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 514664, + "thread": 13 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 688990, + "thread": 15 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 938331, + "thread": 30 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1146603, + "thread": 15 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1156549, + "thread": 26 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1476535, + "thread": 28 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1570894, + "thread": 26 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1707418, + "thread": 8 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 1945385, + "thread": 5 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2132203, + "thread": 16 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2188162, + "thread": 18 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2396324, + "thread": 23 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2584351, + "thread": 30 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2773318, + "thread": 13 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2916435, + "thread": 24 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 2961419, + "thread": 14 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 3147384, + "thread": 20 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 3341793, + "thread": 21 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 3544245, + "thread": 26 + } + }, + { + "amount": "78.956064125", + "slot": { + "period": 3626617, + "thread": 9 + } + }, + { + "amount": "78.956064121", + "slot": { + "period": 3934980, + "thread": 17 + } + } + ], + "AU1278QMXWXG7zdJSZYSXbkakTDPapHiXsUsM1HZh7Q5ekhYdhT3D": [ + { + "amount": "148.099376041", + "slot": { + "period": 139997, + "thread": 22 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 234326, + "thread": 3 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 358679, + "thread": 16 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 572421, + "thread": 10 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 744362, + "thread": 28 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 835140, + "thread": 26 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1074407, + "thread": 11 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1312570, + "thread": 24 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1467786, + "thread": 27 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1626256, + "thread": 31 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1701633, + "thread": 1 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 1956919, + "thread": 16 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2097410, + "thread": 28 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2256225, + "thread": 29 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2416713, + "thread": 18 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2575603, + "thread": 10 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2648445, + "thread": 12 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 2864331, + "thread": 2 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 3021828, + "thread": 21 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 3122153, + "thread": 19 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 3364805, + "thread": 0 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 3464764, + "thread": 31 + } + }, + { + "amount": "148.099376041", + "slot": { + "period": 3721002, + "thread": 16 + } + }, + { + "amount": "148.099376035", + "slot": { + "period": 3862264, + "thread": 3 + } + } + ], + "AU127914zUKwL3gXbV31a8ZLDMTbXFZFCWXLWVwRL4Jk5X6QBNYLv": [ + { + "amount": "188.122836758", + "slot": { + "period": 102900, + "thread": 6 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 321071, + "thread": 31 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 370797, + "thread": 1 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 617334, + "thread": 18 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 758898, + "thread": 21 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 844206, + "thread": 9 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1064782, + "thread": 17 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1215138, + "thread": 25 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1351735, + "thread": 30 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1569030, + "thread": 2 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1800577, + "thread": 23 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 1826931, + "thread": 17 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2143154, + "thread": 0 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2221936, + "thread": 26 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2401670, + "thread": 10 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2467697, + "thread": 30 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2685084, + "thread": 6 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2869617, + "thread": 10 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 2968201, + "thread": 14 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 3126886, + "thread": 30 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 3405350, + "thread": 9 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 3577391, + "thread": 23 + } + }, + { + "amount": "188.122836758", + "slot": { + "period": 3707291, + "thread": 10 + } + }, + { + "amount": "188.122836750", + "slot": { + "period": 3933029, + "thread": 3 + } + } + ], + "AU1279HeGxuQjhX1WXR4czEJkASXUscEHX6ZHRremMz8umMXZEFdV": [ + { + "amount": "394.675949638", + "slot": { + "period": 41560, + "thread": 28 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 194241, + "thread": 30 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 449975, + "thread": 7 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 549401, + "thread": 25 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 683523, + "thread": 23 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 882382, + "thread": 11 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1112028, + "thread": 19 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1237282, + "thread": 3 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1405289, + "thread": 1 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1488632, + "thread": 25 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1703095, + "thread": 23 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 1809107, + "thread": 6 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2124375, + "thread": 11 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2166318, + "thread": 16 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2311803, + "thread": 26 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2591746, + "thread": 28 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2687388, + "thread": 4 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 2887929, + "thread": 3 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 3012306, + "thread": 10 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 3192250, + "thread": 6 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 3349172, + "thread": 5 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 3585161, + "thread": 6 + } + }, + { + "amount": "394.675949638", + "slot": { + "period": 3684233, + "thread": 13 + } + }, + { + "amount": "394.675949630", + "slot": { + "period": 3923308, + "thread": 6 + } + } + ], + "AU127AQYwEpNiLihPA4oAc55KuT8T3cJZCD35NwnfW1WctC92eQET": [ + { + "amount": "175.248258997", + "slot": { + "period": 134450, + "thread": 10 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 269813, + "thread": 6 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 420713, + "thread": 3 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 549079, + "thread": 9 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 794127, + "thread": 14 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 927245, + "thread": 27 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1067710, + "thread": 14 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1195453, + "thread": 3 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1433183, + "thread": 4 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1502328, + "thread": 25 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1715835, + "thread": 7 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 1868202, + "thread": 3 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2073772, + "thread": 25 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2246428, + "thread": 15 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2459304, + "thread": 19 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2564777, + "thread": 21 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2720655, + "thread": 26 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 2830572, + "thread": 24 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 3073990, + "thread": 6 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 3244861, + "thread": 11 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 3330313, + "thread": 0 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 3522796, + "thread": 11 + } + }, + { + "amount": "175.248258997", + "slot": { + "period": 3736766, + "thread": 5 + } + }, + { + "amount": "175.248258987", + "slot": { + "period": 3820869, + "thread": 8 + } + } + ], + "AU127B6w4vKsJ4LWEAZJEELvoeoecj9gxph9F6askNXC3EcNfJLyR": [ + { + "amount": "146.211726369", + "slot": { + "period": 76917, + "thread": 24 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 263117, + "thread": 11 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 405541, + "thread": 24 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 597615, + "thread": 26 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 663630, + "thread": 27 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 869470, + "thread": 2 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1115349, + "thread": 18 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1170258, + "thread": 17 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1415073, + "thread": 20 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1546952, + "thread": 13 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1675282, + "thread": 8 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 1880966, + "thread": 12 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2114707, + "thread": 7 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2166932, + "thread": 3 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2330105, + "thread": 20 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2561560, + "thread": 8 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2639137, + "thread": 21 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 2845014, + "thread": 18 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 3082455, + "thread": 4 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 3283812, + "thread": 29 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 3358244, + "thread": 29 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 3455844, + "thread": 0 + } + }, + { + "amount": "146.211726369", + "slot": { + "period": 3681744, + "thread": 15 + } + }, + { + "amount": "146.211726364", + "slot": { + "period": 3929812, + "thread": 13 + } + } + ], + "AU127BNSzLqEszezjVoHaYAjCgKishQYXsaSbt2kyGUj8nxFDrMAw": [ + { + "amount": "150.256527003", + "slot": { + "period": 19121, + "thread": 24 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 200115, + "thread": 14 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 368680, + "thread": 30 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 631572, + "thread": 14 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 661034, + "thread": 27 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 842578, + "thread": 21 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1037788, + "thread": 25 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1251620, + "thread": 5 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1348526, + "thread": 3 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1558697, + "thread": 25 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1718282, + "thread": 12 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 1940213, + "thread": 4 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2100373, + "thread": 23 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2275798, + "thread": 10 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2438484, + "thread": 17 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2520291, + "thread": 29 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2746109, + "thread": 22 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2949041, + "thread": 24 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 2975255, + "thread": 27 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 3194694, + "thread": 25 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 3387064, + "thread": 15 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 3517064, + "thread": 4 + } + }, + { + "amount": "150.256527003", + "slot": { + "period": 3725222, + "thread": 20 + } + }, + { + "amount": "150.256527007", + "slot": { + "period": 3876058, + "thread": 17 + } + } + ], + "AU127BSLrPWnmE2XB9DExegew5V2BVmSJGSpBcBBwkhyCN5dqEBdH": [ + { + "amount": "215.507497754", + "slot": { + "period": 44890, + "thread": 0 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 306721, + "thread": 18 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 489789, + "thread": 13 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 640716, + "thread": 20 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 732381, + "thread": 12 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 847107, + "thread": 2 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1023821, + "thread": 18 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1209860, + "thread": 4 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1431428, + "thread": 10 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1496230, + "thread": 11 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1724683, + "thread": 28 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 1903258, + "thread": 16 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2050435, + "thread": 17 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2233671, + "thread": 25 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2302703, + "thread": 25 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2590274, + "thread": 10 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2662554, + "thread": 22 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2936497, + "thread": 26 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 2978856, + "thread": 4 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 3136751, + "thread": 0 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 3360137, + "thread": 0 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 3544732, + "thread": 13 + } + }, + { + "amount": "215.507497754", + "slot": { + "period": 3672340, + "thread": 14 + } + }, + { + "amount": "215.507497760", + "slot": { + "period": 3877027, + "thread": 24 + } + } + ], + "AU127BZaAHP9UMoHdD3hqeMdw3t22Hf7cq7K66vA9VDSpuAcgS5Et": [ + { + "amount": "88.631674684", + "slot": { + "period": 114994, + "thread": 25 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 167745, + "thread": 3 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 434161, + "thread": 5 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 609618, + "thread": 0 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 664400, + "thread": 7 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 856290, + "thread": 31 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1100084, + "thread": 20 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1221235, + "thread": 12 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1455366, + "thread": 10 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1512859, + "thread": 13 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1726122, + "thread": 13 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 1949932, + "thread": 16 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2098532, + "thread": 28 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2194479, + "thread": 31 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2344275, + "thread": 9 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2547808, + "thread": 18 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2648446, + "thread": 15 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 2940307, + "thread": 19 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 3051899, + "thread": 8 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 3206889, + "thread": 24 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 3367264, + "thread": 26 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 3528758, + "thread": 2 + } + }, + { + "amount": "88.631674684", + "slot": { + "period": 3631242, + "thread": 21 + } + }, + { + "amount": "88.631674683", + "slot": { + "period": 3856959, + "thread": 6 + } + } + ], + "AU127DfrwAQaFbciuQSRq2M24ntsWsje4XevKKNv1Qdrrusp6yTG2": [ + { + "amount": "84.045984713", + "slot": { + "period": 124528, + "thread": 31 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 205218, + "thread": 14 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 419773, + "thread": 8 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 625858, + "thread": 29 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 774342, + "thread": 3 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 829216, + "thread": 4 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1057494, + "thread": 6 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1270038, + "thread": 18 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1474019, + "thread": 23 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1565132, + "thread": 14 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1729809, + "thread": 19 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 1947794, + "thread": 14 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2096607, + "thread": 20 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2275189, + "thread": 13 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2352011, + "thread": 20 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2595796, + "thread": 16 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2695827, + "thread": 25 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2932078, + "thread": 14 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 2991293, + "thread": 22 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 3237493, + "thread": 25 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 3378759, + "thread": 29 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 3614987, + "thread": 3 + } + }, + { + "amount": "84.045984713", + "slot": { + "period": 3711511, + "thread": 30 + } + }, + { + "amount": "84.045984708", + "slot": { + "period": 3810186, + "thread": 13 + } + } + ], + "AU127FBA8sjpZ4egRFb9PSBLztX8MimmoNJKpu155hbrXvbz884kt": [ + { + "amount": "125.849886321", + "slot": { + "period": 132892, + "thread": 0 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 261726, + "thread": 10 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 437106, + "thread": 24 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 638912, + "thread": 9 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 722790, + "thread": 21 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 938340, + "thread": 12 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1066610, + "thread": 24 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1224281, + "thread": 12 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1390233, + "thread": 25 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1619597, + "thread": 16 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1650632, + "thread": 7 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 1829794, + "thread": 14 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2016068, + "thread": 12 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2282069, + "thread": 21 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2322890, + "thread": 13 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2568365, + "thread": 15 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2629107, + "thread": 28 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 2933202, + "thread": 5 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 3074144, + "thread": 4 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 3205493, + "thread": 29 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 3341403, + "thread": 10 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 3550209, + "thread": 7 + } + }, + { + "amount": "125.849886321", + "slot": { + "period": 3624532, + "thread": 6 + } + }, + { + "amount": "125.849886324", + "slot": { + "period": 3792366, + "thread": 2 + } + } + ], + "AU127Gk4XHLoGAVWn8oupUgF3Hfkr9bLZYxp6BhGooEeTZna7tsfA": [ + { + "amount": "536.418293512", + "slot": { + "period": 86022, + "thread": 11 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 218392, + "thread": 16 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 356821, + "thread": 17 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 602837, + "thread": 0 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 783479, + "thread": 29 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 867304, + "thread": 20 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1063241, + "thread": 24 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1189373, + "thread": 7 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1335809, + "thread": 29 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1523159, + "thread": 9 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1739428, + "thread": 27 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 1882755, + "thread": 7 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2045205, + "thread": 28 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2291972, + "thread": 23 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2336215, + "thread": 23 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2493076, + "thread": 1 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2723699, + "thread": 3 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2861076, + "thread": 27 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 2974878, + "thread": 1 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 3248915, + "thread": 5 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 3390574, + "thread": 15 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 3451365, + "thread": 17 + } + }, + { + "amount": "536.418293512", + "slot": { + "period": 3718662, + "thread": 30 + } + }, + { + "amount": "536.418293511", + "slot": { + "period": 3860386, + "thread": 18 + } + } + ], + "AU127H7qKqshBFRhqe8kU3Xq9DmPjPg9Sd1w9VbR4CBVruqS2rFJ9": [ + { + "amount": "169.884916850", + "slot": { + "period": 36203, + "thread": 13 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 201465, + "thread": 10 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 422551, + "thread": 11 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 648147, + "thread": 14 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 697380, + "thread": 24 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 930392, + "thread": 6 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1080098, + "thread": 23 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1241519, + "thread": 15 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1435618, + "thread": 16 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1585848, + "thread": 27 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1675516, + "thread": 8 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 1925500, + "thread": 0 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2104128, + "thread": 11 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2181827, + "thread": 4 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2310826, + "thread": 5 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2608821, + "thread": 31 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2667678, + "thread": 15 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2797669, + "thread": 4 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 2958684, + "thread": 3 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 3244194, + "thread": 13 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 3304743, + "thread": 23 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 3609234, + "thread": 5 + } + }, + { + "amount": "169.884916850", + "slot": { + "period": 3695435, + "thread": 19 + } + }, + { + "amount": "169.884916862", + "slot": { + "period": 3890144, + "thread": 5 + } + } + ], + "AU127HxiBKCyZZmjo3nfnMutT3ZTmidLjCcaMACzpKCGaWYpnNZFM": [ + { + "amount": "66.182389634", + "slot": { + "period": 139915, + "thread": 9 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 207195, + "thread": 1 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 379917, + "thread": 23 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 619044, + "thread": 21 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 699212, + "thread": 12 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 981348, + "thread": 11 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1090525, + "thread": 26 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1183218, + "thread": 6 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1366232, + "thread": 19 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1516817, + "thread": 12 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1711710, + "thread": 2 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1968023, + "thread": 25 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 1999200, + "thread": 2 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 2287883, + "thread": 20 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 2341944, + "thread": 18 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 2611952, + "thread": 31 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 2754147, + "thread": 22 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 2896508, + "thread": 5 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 3053136, + "thread": 21 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 3186024, + "thread": 8 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 3355574, + "thread": 31 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 3600875, + "thread": 18 + } + }, + { + "amount": "66.182389634", + "slot": { + "period": 3627702, + "thread": 12 + } + }, + { + "amount": "66.182389623", + "slot": { + "period": 3788283, + "thread": 29 + } + } + ], + "AU127HzeGqr3nTSf2h9LokGDku8SaLxmKAVubBB7N2GTP1HZ9kusN": [ + { + "amount": "191.190421918", + "slot": { + "period": 41675, + "thread": 16 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 280278, + "thread": 2 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 431445, + "thread": 11 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 653138, + "thread": 2 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 704993, + "thread": 22 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 953570, + "thread": 10 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1003036, + "thread": 12 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1225661, + "thread": 0 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1426358, + "thread": 26 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1551467, + "thread": 21 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1683594, + "thread": 4 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 1894448, + "thread": 17 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2103546, + "thread": 7 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2241083, + "thread": 17 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2443905, + "thread": 30 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2532504, + "thread": 11 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2782988, + "thread": 25 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 2819647, + "thread": 4 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 3117916, + "thread": 22 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 3219920, + "thread": 20 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 3316994, + "thread": 27 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 3608659, + "thread": 12 + } + }, + { + "amount": "191.190421918", + "slot": { + "period": 3646647, + "thread": 27 + } + }, + { + "amount": "191.190421920", + "slot": { + "period": 3821115, + "thread": 14 + } + } + ], + "AU127JMXQWg8HH2USygj91Hu6zuMzTE7tPLV9SgHQVLVSV5jGvRTe": [ + { + "amount": "55.192916888", + "slot": { + "period": 164082, + "thread": 11 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 274019, + "thread": 9 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 429615, + "thread": 6 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 569929, + "thread": 4 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 666881, + "thread": 22 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 929452, + "thread": 17 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1101830, + "thread": 31 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1313783, + "thread": 5 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1451320, + "thread": 10 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1569003, + "thread": 2 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1796040, + "thread": 15 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 1865468, + "thread": 19 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2050652, + "thread": 5 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2176841, + "thread": 8 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2427018, + "thread": 26 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2509469, + "thread": 13 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2775921, + "thread": 3 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 2912297, + "thread": 17 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 3094674, + "thread": 9 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 3259885, + "thread": 21 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 3338750, + "thread": 31 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 3563199, + "thread": 22 + } + }, + { + "amount": "55.192916888", + "slot": { + "period": 3634005, + "thread": 29 + } + }, + { + "amount": "55.192916882", + "slot": { + "period": 3940127, + "thread": 20 + } + } + ], + "AU127Jr4a5ynnvaBGkPkSTM8iFPNQ4pDNNHBAuE4WoZ3AUjN8vem3": [ + { + "amount": "123.355717158", + "slot": { + "period": 50904, + "thread": 11 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 294693, + "thread": 8 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 486744, + "thread": 11 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 527779, + "thread": 30 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 771217, + "thread": 31 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 975667, + "thread": 27 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 990923, + "thread": 4 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 1196184, + "thread": 15 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 1381218, + "thread": 20 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 1507744, + "thread": 27 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 1683644, + "thread": 15 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 1954342, + "thread": 9 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2002440, + "thread": 26 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2222080, + "thread": 1 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2334267, + "thread": 21 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2543687, + "thread": 29 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2737272, + "thread": 12 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2864793, + "thread": 15 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 2963368, + "thread": 9 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 3282602, + "thread": 3 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 3438273, + "thread": 5 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 3545306, + "thread": 5 + } + }, + { + "amount": "123.355717158", + "slot": { + "period": 3760584, + "thread": 23 + } + }, + { + "amount": "123.355717150", + "slot": { + "period": 3867969, + "thread": 21 + } + } + ], + "AU127LZQBh7mrhroqR1SKzeZYwrh3P9j4zcDNSawNwyfESR7qc3L6": [ + { + "amount": "230.032128280", + "slot": { + "period": 104510, + "thread": 21 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 191885, + "thread": 0 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 469062, + "thread": 3 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 500098, + "thread": 12 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 737623, + "thread": 2 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 901087, + "thread": 31 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1117764, + "thread": 26 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1151511, + "thread": 5 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1470909, + "thread": 26 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1522276, + "thread": 27 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1699632, + "thread": 25 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 1810851, + "thread": 19 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2110495, + "thread": 6 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2144231, + "thread": 8 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2345041, + "thread": 15 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2508359, + "thread": 14 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2670687, + "thread": 25 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 2795551, + "thread": 12 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 3059375, + "thread": 20 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 3285200, + "thread": 29 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 3437678, + "thread": 20 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 3602421, + "thread": 7 + } + }, + { + "amount": "230.032128280", + "slot": { + "period": 3627674, + "thread": 11 + } + }, + { + "amount": "230.032128274", + "slot": { + "period": 3863728, + "thread": 6 + } + } + ], + "AU127PDRvcgALPQGgMCcmPLsgnh9bdkKdCrAUsiM2Qa9Qa8iD3TaY": [ + { + "amount": "239.295481993", + "slot": { + "period": 137868, + "thread": 21 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 259561, + "thread": 0 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 347701, + "thread": 7 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 540454, + "thread": 21 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 682379, + "thread": 15 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 887847, + "thread": 28 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1144844, + "thread": 20 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1159107, + "thread": 9 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1377516, + "thread": 3 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1563259, + "thread": 12 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1752571, + "thread": 20 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 1845282, + "thread": 0 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2103621, + "thread": 5 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2243262, + "thread": 12 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2385476, + "thread": 2 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2602206, + "thread": 27 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2709153, + "thread": 31 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 2831547, + "thread": 15 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 3006452, + "thread": 19 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 3209992, + "thread": 19 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 3373384, + "thread": 3 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 3604431, + "thread": 31 + } + }, + { + "amount": "239.295481993", + "slot": { + "period": 3631946, + "thread": 18 + } + }, + { + "amount": "239.295481992", + "slot": { + "period": 3913949, + "thread": 10 + } + } + ], + "AU127QMh6kH8owFW4J6rMkupqDUz5H8KuRJoFHoSs66tRncujBxMK": [ + { + "amount": "80.769986166", + "slot": { + "period": 45932, + "thread": 16 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 271679, + "thread": 30 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 441912, + "thread": 21 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 583845, + "thread": 2 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 663463, + "thread": 19 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 908594, + "thread": 7 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 997885, + "thread": 8 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 1261058, + "thread": 9 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 1352115, + "thread": 9 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 1641790, + "thread": 9 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 1766726, + "thread": 26 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 1880254, + "thread": 13 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2062703, + "thread": 10 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2200631, + "thread": 7 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2404720, + "thread": 1 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2592862, + "thread": 28 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2719258, + "thread": 2 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 2908317, + "thread": 8 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 3056824, + "thread": 25 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 3213796, + "thread": 0 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 3431487, + "thread": 11 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 3535516, + "thread": 31 + } + }, + { + "amount": "80.769986166", + "slot": { + "period": 3687977, + "thread": 20 + } + }, + { + "amount": "80.769986160", + "slot": { + "period": 3941183, + "thread": 13 + } + } + ], + "AU127QNuxqaAhRYyyH87q7YUo8NEF9GCtE4kuUm7e7xknYiXrYt79": [ + { + "amount": "156.170204058", + "slot": { + "period": 68677, + "thread": 5 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 243227, + "thread": 17 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 434717, + "thread": 28 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 517150, + "thread": 0 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 741172, + "thread": 14 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 872980, + "thread": 25 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1028478, + "thread": 2 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1216894, + "thread": 23 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1335534, + "thread": 14 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1611857, + "thread": 22 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1674637, + "thread": 19 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1915507, + "thread": 23 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 1982606, + "thread": 21 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 2214687, + "thread": 2 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 2306803, + "thread": 17 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 2504690, + "thread": 1 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 2671184, + "thread": 17 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 2853903, + "thread": 0 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 3037759, + "thread": 19 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 3279284, + "thread": 5 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 3408683, + "thread": 0 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 3607595, + "thread": 25 + } + }, + { + "amount": "156.170204058", + "slot": { + "period": 3762583, + "thread": 5 + } + }, + { + "amount": "156.170204054", + "slot": { + "period": 3848956, + "thread": 4 + } + } + ], + "AU127Qyo2qpB5KMu8yoXLzwxPwTyFpqxyZUgg6hiXerPft6PUPAoQ": [ + { + "amount": "372.024693118", + "slot": { + "period": 92341, + "thread": 14 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 195695, + "thread": 10 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 355785, + "thread": 26 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 621973, + "thread": 5 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 808874, + "thread": 5 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 918530, + "thread": 29 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1049700, + "thread": 8 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1242736, + "thread": 3 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1374690, + "thread": 16 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1566418, + "thread": 6 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1724207, + "thread": 26 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 1940212, + "thread": 18 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2033516, + "thread": 8 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2228722, + "thread": 12 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2353482, + "thread": 10 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2564038, + "thread": 4 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2625914, + "thread": 26 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 2920724, + "thread": 13 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 3014199, + "thread": 10 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 3185404, + "thread": 0 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 3378890, + "thread": 7 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 3585164, + "thread": 22 + } + }, + { + "amount": "372.024693118", + "slot": { + "period": 3751949, + "thread": 19 + } + }, + { + "amount": "372.024693109", + "slot": { + "period": 3844479, + "thread": 30 + } + } + ], + "AU127RYDJM87Hapxi6wgYaggXgZiZMMco7j2xyuyHAz3TnvRd7RTN": [ + { + "amount": "527.244958650", + "slot": { + "period": 93812, + "thread": 7 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 305874, + "thread": 6 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 372973, + "thread": 21 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 622391, + "thread": 16 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 721749, + "thread": 22 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 871900, + "thread": 31 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1018231, + "thread": 23 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1209780, + "thread": 8 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1469567, + "thread": 1 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1633976, + "thread": 22 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1676073, + "thread": 26 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 1908448, + "thread": 19 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2096886, + "thread": 18 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2244399, + "thread": 22 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2429834, + "thread": 12 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2619383, + "thread": 10 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2769778, + "thread": 18 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 2942651, + "thread": 3 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 3066745, + "thread": 9 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 3239916, + "thread": 11 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 3349341, + "thread": 30 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 3541979, + "thread": 10 + } + }, + { + "amount": "527.244958650", + "slot": { + "period": 3669427, + "thread": 3 + } + }, + { + "amount": "527.244958653", + "slot": { + "period": 3893338, + "thread": 22 + } + } + ], + "AU127SR4dv8LkRd3Z1jBRuD4Td76fTr8zUmHxtkWMjAjE1Aiyy51p": [ + { + "amount": "131.863897344", + "slot": { + "period": 16150, + "thread": 25 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 223882, + "thread": 4 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 403689, + "thread": 10 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 497089, + "thread": 7 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 684870, + "thread": 28 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 874428, + "thread": 30 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1040422, + "thread": 18 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1218166, + "thread": 0 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1318079, + "thread": 23 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1582578, + "thread": 12 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1649805, + "thread": 12 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1955667, + "thread": 0 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 1993739, + "thread": 22 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 2200502, + "thread": 16 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 2441610, + "thread": 15 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 2499304, + "thread": 18 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 2687317, + "thread": 16 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 2873948, + "thread": 18 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 3112713, + "thread": 24 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 3273097, + "thread": 12 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 3298530, + "thread": 9 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 3475458, + "thread": 24 + } + }, + { + "amount": "131.863897344", + "slot": { + "period": 3704706, + "thread": 28 + } + }, + { + "amount": "131.863897341", + "slot": { + "period": 3782656, + "thread": 6 + } + } + ], + "AU127T55nzVXF5c9Z3A4seCVkD7rFDy2Roo7yY9Cuz49VPnczLScA": [ + { + "amount": "53.388926013", + "slot": { + "period": 57779, + "thread": 17 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 206048, + "thread": 22 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 330719, + "thread": 6 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 616160, + "thread": 27 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 771937, + "thread": 17 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 922169, + "thread": 14 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1101976, + "thread": 16 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1222845, + "thread": 24 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1326635, + "thread": 17 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1506649, + "thread": 11 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1709781, + "thread": 23 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1824044, + "thread": 23 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 1990512, + "thread": 10 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 2194837, + "thread": 18 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 2364590, + "thread": 21 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 2535431, + "thread": 16 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 2768976, + "thread": 3 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 2821122, + "thread": 26 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 3089255, + "thread": 2 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 3158012, + "thread": 25 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 3411273, + "thread": 0 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 3465206, + "thread": 14 + } + }, + { + "amount": "53.388926013", + "slot": { + "period": 3752932, + "thread": 22 + } + }, + { + "amount": "53.388926003", + "slot": { + "period": 3796848, + "thread": 31 + } + } + ], + "AU127TZ29YMTFtvBz6mGFmokGAEN3ZRPWVd1xArgqhy2iKXRsneyy": [ + { + "amount": "191.267828086", + "slot": { + "period": 38618, + "thread": 2 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 305328, + "thread": 29 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 491375, + "thread": 29 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 623021, + "thread": 28 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 686381, + "thread": 15 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 824881, + "thread": 5 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1072628, + "thread": 4 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1242090, + "thread": 0 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1446535, + "thread": 15 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1619929, + "thread": 24 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1665755, + "thread": 16 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 1878270, + "thread": 23 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2105668, + "thread": 18 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2218591, + "thread": 11 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2442161, + "thread": 2 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2537943, + "thread": 31 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2714081, + "thread": 7 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 2831252, + "thread": 31 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 3066826, + "thread": 18 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 3208821, + "thread": 24 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 3409782, + "thread": 14 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 3527915, + "thread": 8 + } + }, + { + "amount": "191.267828086", + "slot": { + "period": 3718041, + "thread": 1 + } + }, + { + "amount": "191.267828097", + "slot": { + "period": 3912755, + "thread": 27 + } + } + ], + "AU127TfvM9dN86q6MNHKHrcjJ8RZJM76biXEp7zmqxxHNuWvEC1Jc": [ + { + "amount": "183.852528308", + "slot": { + "period": 116579, + "thread": 11 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 177098, + "thread": 20 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 442076, + "thread": 17 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 535583, + "thread": 25 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 802789, + "thread": 30 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 893312, + "thread": 31 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1030917, + "thread": 15 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1295913, + "thread": 3 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1369040, + "thread": 10 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1491595, + "thread": 22 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1780001, + "thread": 19 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 1874948, + "thread": 16 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2100563, + "thread": 27 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2246241, + "thread": 27 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2414001, + "thread": 31 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2604860, + "thread": 11 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2689433, + "thread": 11 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2885009, + "thread": 3 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 2962849, + "thread": 10 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 3155699, + "thread": 30 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 3302423, + "thread": 23 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 3456776, + "thread": 24 + } + }, + { + "amount": "183.852528308", + "slot": { + "period": 3684318, + "thread": 31 + } + }, + { + "amount": "183.852528304", + "slot": { + "period": 3845139, + "thread": 21 + } + } + ], + "AU127UCtdhcwaSGeUjjnKrjcFq4ZV9vPXHMc54NafBEPEBQhPH3pJ": [ + { + "amount": "68.030434275", + "slot": { + "period": 42629, + "thread": 15 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 193550, + "thread": 13 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 336525, + "thread": 9 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 627798, + "thread": 23 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 704837, + "thread": 11 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 849723, + "thread": 25 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1090883, + "thread": 8 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1250573, + "thread": 13 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1460963, + "thread": 18 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1646429, + "thread": 8 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1658544, + "thread": 16 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 1840368, + "thread": 2 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2037373, + "thread": 17 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2249817, + "thread": 31 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2450635, + "thread": 17 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2583760, + "thread": 8 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2702421, + "thread": 21 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 2947994, + "thread": 23 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3099672, + "thread": 16 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3282833, + "thread": 26 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3448426, + "thread": 20 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3592278, + "thread": 13 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3629824, + "thread": 4 + } + }, + { + "amount": "68.030434275", + "slot": { + "period": 3910855, + "thread": 9 + } + } + ], + "AU127UQJjML16q5gzQxbutLNcDexdcYu31s2DPaUuriwWrtpxRy7X": [ + { + "amount": "80.459793280", + "slot": { + "period": 99570, + "thread": 20 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 266965, + "thread": 7 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 479164, + "thread": 4 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 537034, + "thread": 15 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 785090, + "thread": 10 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 837854, + "thread": 9 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1060484, + "thread": 1 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1272920, + "thread": 4 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1451033, + "thread": 2 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1584506, + "thread": 31 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1737408, + "thread": 6 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 1845471, + "thread": 29 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2035138, + "thread": 18 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2292267, + "thread": 6 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2440577, + "thread": 16 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2566663, + "thread": 31 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2633433, + "thread": 9 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2843361, + "thread": 27 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 2961674, + "thread": 23 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 3140734, + "thread": 22 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 3291166, + "thread": 19 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 3471311, + "thread": 11 + } + }, + { + "amount": "80.459793280", + "slot": { + "period": 3626451, + "thread": 18 + } + }, + { + "amount": "80.459793272", + "slot": { + "period": 3922214, + "thread": 16 + } + } + ], + "AU127UXyYHzJ97kEwoJpe7Q1ntsDRN7DFDhia6zdTrqhkXrRERhC2": [ + { + "amount": "274.113934861", + "slot": { + "period": 148156, + "thread": 17 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 252331, + "thread": 13 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 426113, + "thread": 6 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 536953, + "thread": 17 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 750898, + "thread": 14 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 846879, + "thread": 5 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1039352, + "thread": 17 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1175959, + "thread": 24 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1444929, + "thread": 13 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1552406, + "thread": 23 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1667079, + "thread": 14 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 1829039, + "thread": 21 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2097658, + "thread": 22 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2232151, + "thread": 16 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2385905, + "thread": 11 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2608505, + "thread": 30 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2743596, + "thread": 18 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 2820351, + "thread": 8 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 3022564, + "thread": 19 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 3227503, + "thread": 31 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 3315768, + "thread": 5 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 3484762, + "thread": 31 + } + }, + { + "amount": "274.113934861", + "slot": { + "period": 3711646, + "thread": 17 + } + }, + { + "amount": "274.113934863", + "slot": { + "period": 3903163, + "thread": 17 + } + } + ], + "AU127UZH4DEUMtq9YBqkG5kLBejGbv14iaCjBnE2gAVsnXSg3EKGA": [ + { + "amount": "75.756601518", + "slot": { + "period": 121429, + "thread": 17 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 321620, + "thread": 22 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 419115, + "thread": 2 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 511268, + "thread": 24 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 730073, + "thread": 4 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 941050, + "thread": 0 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1056140, + "thread": 27 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1168056, + "thread": 29 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1363924, + "thread": 22 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1644563, + "thread": 25 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1686971, + "thread": 25 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 1969564, + "thread": 7 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2107731, + "thread": 21 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2226885, + "thread": 20 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2424881, + "thread": 21 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2604990, + "thread": 27 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2627954, + "thread": 2 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2909638, + "thread": 26 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 2984874, + "thread": 0 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 3272078, + "thread": 2 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 3346641, + "thread": 29 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 3594931, + "thread": 5 + } + }, + { + "amount": "75.756601518", + "slot": { + "period": 3684355, + "thread": 20 + } + }, + { + "amount": "75.756601512", + "slot": { + "period": 3845022, + "thread": 23 + } + } + ], + "AU127V1PQJFGKR7c1BEDybe5AYKC2uZAFyXNzGv2DcFLpS3ydEYhz": [ + { + "amount": "125.763411109", + "slot": { + "period": 166340, + "thread": 3 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 213995, + "thread": 7 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 435248, + "thread": 0 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 499299, + "thread": 7 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 667472, + "thread": 28 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 918282, + "thread": 15 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1081659, + "thread": 31 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1176793, + "thread": 1 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1447062, + "thread": 25 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1532949, + "thread": 20 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1797360, + "thread": 0 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 1936323, + "thread": 17 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2111308, + "thread": 4 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2282799, + "thread": 10 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2442477, + "thread": 31 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2610989, + "thread": 26 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2761004, + "thread": 17 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 2920465, + "thread": 1 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 3036857, + "thread": 17 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 3252337, + "thread": 11 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 3414085, + "thread": 30 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 3552939, + "thread": 10 + } + }, + { + "amount": "125.763411109", + "slot": { + "period": 3753203, + "thread": 22 + } + }, + { + "amount": "125.763411099", + "slot": { + "period": 3887295, + "thread": 24 + } + } + ], + "AU127VDGQGf5cGP1xCaT8fBPt72UpaKzMkQ4jznsrGQdgXi1yjQJj": [ + { + "amount": "255.399840464", + "slot": { + "period": 13067, + "thread": 6 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 249992, + "thread": 22 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 359019, + "thread": 15 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 504162, + "thread": 1 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 797631, + "thread": 13 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 960129, + "thread": 4 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1117496, + "thread": 28 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1310335, + "thread": 18 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1435911, + "thread": 26 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1562597, + "thread": 25 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1740844, + "thread": 9 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 1953686, + "thread": 5 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2084354, + "thread": 6 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2278294, + "thread": 27 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2366175, + "thread": 14 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2479673, + "thread": 1 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2629307, + "thread": 18 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 2908134, + "thread": 27 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 3065068, + "thread": 16 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 3175163, + "thread": 28 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 3403129, + "thread": 22 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 3484008, + "thread": 5 + } + }, + { + "amount": "255.399840464", + "slot": { + "period": 3661163, + "thread": 1 + } + }, + { + "amount": "255.399840466", + "slot": { + "period": 3821993, + "thread": 5 + } + } + ], + "AU127W5euZFGSytqcfCYVzP7oKjSgwEwwXn7M8ArdWiKtqrwbE4bF": [ + { + "amount": "131.078058337", + "slot": { + "period": 111446, + "thread": 22 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 256422, + "thread": 16 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 476677, + "thread": 22 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 509622, + "thread": 0 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 759477, + "thread": 20 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 873272, + "thread": 19 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1006057, + "thread": 18 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1168847, + "thread": 24 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1479255, + "thread": 19 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1556976, + "thread": 21 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1764391, + "thread": 7 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 1861820, + "thread": 28 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2084132, + "thread": 0 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2205466, + "thread": 10 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2446848, + "thread": 25 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2611061, + "thread": 1 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2624776, + "thread": 5 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 2859483, + "thread": 15 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 3115020, + "thread": 12 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 3134524, + "thread": 7 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 3289826, + "thread": 12 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 3465131, + "thread": 31 + } + }, + { + "amount": "131.078058337", + "slot": { + "period": 3752751, + "thread": 13 + } + }, + { + "amount": "131.078058336", + "slot": { + "period": 3897697, + "thread": 31 + } + } + ], + "AU127WCnLMmo9usQZvfhtnsR1W3byaoHqnqQtnX7M4f7PjY23aD2T": [ + { + "amount": "153.759892322", + "slot": { + "period": 101840, + "thread": 19 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 182738, + "thread": 16 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 368485, + "thread": 9 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 533839, + "thread": 20 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 761169, + "thread": 29 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 829874, + "thread": 15 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1112120, + "thread": 7 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1300988, + "thread": 15 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1452017, + "thread": 2 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1604464, + "thread": 15 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1737040, + "thread": 13 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 1956774, + "thread": 29 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2078638, + "thread": 19 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2190826, + "thread": 16 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2304565, + "thread": 18 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2514496, + "thread": 13 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2712612, + "thread": 29 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 2865199, + "thread": 1 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 3047193, + "thread": 20 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 3238564, + "thread": 6 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 3315557, + "thread": 10 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 3516907, + "thread": 4 + } + }, + { + "amount": "153.759892322", + "slot": { + "period": 3768369, + "thread": 17 + } + }, + { + "amount": "153.759892315", + "slot": { + "period": 3834854, + "thread": 2 + } + } + ], + "AU127WZWRzatxs2dpbr4sci9qbYYYowdpB1wCaCnDUuUEmyVApfTb": [ + { + "amount": "387.495991361", + "slot": { + "period": 44321, + "thread": 20 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 265644, + "thread": 12 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 407019, + "thread": 10 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 541469, + "thread": 12 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 671763, + "thread": 31 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 918267, + "thread": 10 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1059182, + "thread": 19 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1261154, + "thread": 31 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1342709, + "thread": 31 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1496699, + "thread": 7 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1748029, + "thread": 14 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 1847154, + "thread": 19 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2052339, + "thread": 30 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2230890, + "thread": 15 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2438044, + "thread": 8 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2527565, + "thread": 31 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2703427, + "thread": 30 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 2923572, + "thread": 15 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 3049152, + "thread": 5 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 3161917, + "thread": 30 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 3389554, + "thread": 30 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 3596745, + "thread": 0 + } + }, + { + "amount": "387.495991361", + "slot": { + "period": 3711759, + "thread": 5 + } + }, + { + "amount": "387.495991360", + "slot": { + "period": 3840219, + "thread": 2 + } + } + ], + "AU127WjULhYPZgBSRrdkSgfcnRuJ1Thakw52yuJLuTu4BWv4XK6o": [ + { + "amount": "130.475813882", + "slot": { + "period": 105917, + "thread": 21 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 293574, + "thread": 29 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 332650, + "thread": 0 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 620409, + "thread": 11 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 739950, + "thread": 21 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 912325, + "thread": 14 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 984023, + "thread": 23 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 1260243, + "thread": 10 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 1411124, + "thread": 6 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 1527858, + "thread": 20 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 1726733, + "thread": 21 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 1885826, + "thread": 5 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2061545, + "thread": 15 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2201746, + "thread": 27 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2445844, + "thread": 15 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2593059, + "thread": 26 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2732688, + "thread": 12 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2830460, + "thread": 11 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 2986335, + "thread": 14 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 3271155, + "thread": 6 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 3386237, + "thread": 20 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 3585213, + "thread": 24 + } + }, + { + "amount": "130.475813882", + "slot": { + "period": 3642646, + "thread": 22 + } + }, + { + "amount": "130.475813881", + "slot": { + "period": 3822494, + "thread": 17 + } + } + ], + "AU127Wqf6626At5ygEJ8zfyDrFtVamHft8q7Hyef5fcUiiHvPJWYo": [ + { + "amount": "75.903594518", + "slot": { + "period": 123038, + "thread": 10 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 283657, + "thread": 1 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 464120, + "thread": 11 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 580549, + "thread": 8 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 674533, + "thread": 17 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 863604, + "thread": 4 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1023052, + "thread": 28 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1261896, + "thread": 28 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1478132, + "thread": 20 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1536330, + "thread": 6 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1787396, + "thread": 21 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1935069, + "thread": 17 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 1983996, + "thread": 28 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2174449, + "thread": 3 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2341986, + "thread": 9 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2533920, + "thread": 11 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2733409, + "thread": 20 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2919564, + "thread": 16 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 2973268, + "thread": 12 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 3283174, + "thread": 2 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 3319644, + "thread": 21 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 3467673, + "thread": 16 + } + }, + { + "amount": "75.903594518", + "slot": { + "period": 3654909, + "thread": 7 + } + }, + { + "amount": "75.903594511", + "slot": { + "period": 3902196, + "thread": 10 + } + } + ], + "AU127X5K5g6H8Ro85b6FnbmcAPaGguhwp51UX8ec7dDUDbGKYFpzk": [ + { + "amount": "210.976468772", + "slot": { + "period": 79090, + "thread": 2 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 305291, + "thread": 28 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 468378, + "thread": 31 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 531495, + "thread": 6 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 696446, + "thread": 14 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 850396, + "thread": 15 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1056333, + "thread": 26 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1252179, + "thread": 22 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1465698, + "thread": 9 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1499035, + "thread": 10 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1652091, + "thread": 3 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 1927086, + "thread": 0 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2062495, + "thread": 3 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2150375, + "thread": 28 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2313594, + "thread": 12 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2498017, + "thread": 24 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2756203, + "thread": 28 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 2951340, + "thread": 16 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 3094767, + "thread": 0 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 3203877, + "thread": 24 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 3339085, + "thread": 18 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 3494692, + "thread": 19 + } + }, + { + "amount": "210.976468772", + "slot": { + "period": 3728765, + "thread": 15 + } + }, + { + "amount": "210.976468771", + "slot": { + "period": 3886049, + "thread": 12 + } + } + ], + "AU127XBsVAp6DMinCgcij25jSr6A1msEB7wHwCoZscpS5o5UxGsJc": [ + { + "amount": "144.420538954", + "slot": { + "period": 19749, + "thread": 21 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 224941, + "thread": 8 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 339890, + "thread": 15 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 625283, + "thread": 28 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 700401, + "thread": 8 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 838027, + "thread": 3 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1022591, + "thread": 11 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1272720, + "thread": 21 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1448693, + "thread": 16 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1586717, + "thread": 8 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1777193, + "thread": 13 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 1958011, + "thread": 4 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2037859, + "thread": 0 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2169447, + "thread": 6 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2360673, + "thread": 2 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2490434, + "thread": 3 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2681143, + "thread": 23 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 2908927, + "thread": 3 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 3071130, + "thread": 11 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 3234567, + "thread": 25 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 3291785, + "thread": 15 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 3551932, + "thread": 6 + } + }, + { + "amount": "144.420538954", + "slot": { + "period": 3649777, + "thread": 15 + } + }, + { + "amount": "144.420538957", + "slot": { + "period": 3851856, + "thread": 5 + } + } + ], + "AU127XNf3GGm1WkiPz46DNb77CRNKmtJBXvpTeuPoUAUcZF9bdFkE": [ + { + "amount": "146.248131653", + "slot": { + "period": 92667, + "thread": 17 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 267048, + "thread": 31 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 401500, + "thread": 9 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 590450, + "thread": 19 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 820307, + "thread": 31 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 892343, + "thread": 11 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1056465, + "thread": 7 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1185119, + "thread": 28 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1405896, + "thread": 24 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1491343, + "thread": 2 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1808086, + "thread": 16 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 1886424, + "thread": 28 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2100879, + "thread": 30 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2267317, + "thread": 16 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2356390, + "thread": 13 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2477030, + "thread": 28 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2745555, + "thread": 14 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2940100, + "thread": 24 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 2987333, + "thread": 29 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 3282206, + "thread": 18 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 3330270, + "thread": 27 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 3589436, + "thread": 17 + } + }, + { + "amount": "146.248131653", + "slot": { + "period": 3708616, + "thread": 14 + } + }, + { + "amount": "146.248131658", + "slot": { + "period": 3899625, + "thread": 21 + } + } + ], + "AU127Z7KeeDFhMFp8QhJRjuVUAaVmoc9w3ou4agu4L8AmDg736edF": [ + { + "amount": "311.534824700", + "slot": { + "period": 33419, + "thread": 26 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 242773, + "thread": 23 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 469316, + "thread": 21 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 501486, + "thread": 29 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 758116, + "thread": 21 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 924472, + "thread": 1 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1091207, + "thread": 21 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1193680, + "thread": 25 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1443066, + "thread": 20 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1596123, + "thread": 23 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1712896, + "thread": 14 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 1965853, + "thread": 8 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2100244, + "thread": 31 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2188201, + "thread": 13 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2357035, + "thread": 18 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2481471, + "thread": 10 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2693575, + "thread": 29 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 2854417, + "thread": 4 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 3014417, + "thread": 17 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 3227950, + "thread": 8 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 3352743, + "thread": 2 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 3486326, + "thread": 25 + } + }, + { + "amount": "311.534824700", + "slot": { + "period": 3672454, + "thread": 21 + } + }, + { + "amount": "311.534824706", + "slot": { + "period": 3900616, + "thread": 17 + } + } + ], + "AU127ZXmwMQYwh3tvCDp1Juso8mVydS9UECbsBuM9i4c4Lufk9o6L": [ + { + "amount": "67.180540616", + "slot": { + "period": 144532, + "thread": 8 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 272486, + "thread": 1 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 441895, + "thread": 3 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 596843, + "thread": 26 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 724914, + "thread": 24 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 946920, + "thread": 23 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1080717, + "thread": 4 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1234157, + "thread": 22 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1473698, + "thread": 28 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1605697, + "thread": 5 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1713463, + "thread": 28 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1826340, + "thread": 12 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 1995190, + "thread": 31 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 2167063, + "thread": 14 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 2295673, + "thread": 26 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 2540223, + "thread": 17 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 2674977, + "thread": 13 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 2885251, + "thread": 3 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 3051276, + "thread": 30 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 3186963, + "thread": 3 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 3300841, + "thread": 27 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 3579282, + "thread": 4 + } + }, + { + "amount": "67.180540616", + "slot": { + "period": 3686115, + "thread": 26 + } + }, + { + "amount": "67.180540624", + "slot": { + "period": 3905337, + "thread": 8 + } + } + ], + "AU127a8iFEhdgDSDNxc9jB3Kwuge5W7GdHKaiX8hfk3KKb2ktKXjw": [ + { + "amount": "163.208650997", + "slot": { + "period": 92227, + "thread": 0 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 293879, + "thread": 2 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 402269, + "thread": 18 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 577233, + "thread": 8 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 708712, + "thread": 5 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 957924, + "thread": 1 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1075098, + "thread": 22 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1231179, + "thread": 3 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1392631, + "thread": 17 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1568555, + "thread": 26 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1679233, + "thread": 17 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1961667, + "thread": 21 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 1997026, + "thread": 30 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 2202349, + "thread": 0 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 2403752, + "thread": 7 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 2591817, + "thread": 1 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 2758908, + "thread": 28 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 2819654, + "thread": 17 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 3038473, + "thread": 31 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 3266786, + "thread": 15 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 3347833, + "thread": 30 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 3543565, + "thread": 13 + } + }, + { + "amount": "163.208650997", + "slot": { + "period": 3746294, + "thread": 7 + } + }, + { + "amount": "163.208650996", + "slot": { + "period": 3917732, + "thread": 11 + } + } + ], + "AU127aBsh6UsBDnBPdWzgvp7nggAcbB4tzFK298RfLsnWMzduZLQS": [ + { + "amount": "57.060620267", + "slot": { + "period": 159099, + "thread": 12 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 188962, + "thread": 9 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 471810, + "thread": 15 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 564856, + "thread": 15 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 790047, + "thread": 26 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 925059, + "thread": 30 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1146629, + "thread": 23 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1305438, + "thread": 1 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1477492, + "thread": 7 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1564764, + "thread": 1 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1698232, + "thread": 5 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 1902497, + "thread": 18 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2138119, + "thread": 27 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2184867, + "thread": 17 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2439594, + "thread": 5 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2587436, + "thread": 5 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2664262, + "thread": 23 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 2811059, + "thread": 21 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 3042070, + "thread": 11 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 3245434, + "thread": 13 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 3350406, + "thread": 30 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 3617275, + "thread": 18 + } + }, + { + "amount": "57.060620267", + "slot": { + "period": 3774769, + "thread": 8 + } + }, + { + "amount": "57.060620270", + "slot": { + "period": 3935568, + "thread": 0 + } + } + ], + "AU127aK1QuyNTj2vRCD8WCFuWtH254eMtoV9nd4uuFX8J5rWiLaJn": [ + { + "amount": "75.104749152", + "slot": { + "period": 38766, + "thread": 18 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 263344, + "thread": 0 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 394549, + "thread": 22 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 587007, + "thread": 21 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 760334, + "thread": 7 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 927172, + "thread": 25 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1116814, + "thread": 0 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1205381, + "thread": 0 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1457536, + "thread": 9 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1531891, + "thread": 17 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1671627, + "thread": 28 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 1936514, + "thread": 13 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2014982, + "thread": 13 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2211802, + "thread": 12 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2309113, + "thread": 22 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2530891, + "thread": 15 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2728902, + "thread": 13 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 2835011, + "thread": 3 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 3091452, + "thread": 0 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 3212313, + "thread": 17 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 3381370, + "thread": 26 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 3477983, + "thread": 24 + } + }, + { + "amount": "75.104749152", + "slot": { + "period": 3648346, + "thread": 16 + } + }, + { + "amount": "75.104749162", + "slot": { + "period": 3920023, + "thread": 14 + } + } + ], + "AU127aopsnrvdSQqhiHQR3TxSfJZPXbq2iAuMqrGXMHC3UKGinHv5": [ + { + "amount": "97.126245146", + "slot": { + "period": 51944, + "thread": 14 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 193669, + "thread": 0 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 387676, + "thread": 9 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 647016, + "thread": 21 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 677406, + "thread": 10 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 896826, + "thread": 9 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1028849, + "thread": 29 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1204128, + "thread": 5 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1438021, + "thread": 12 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1542588, + "thread": 16 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1790774, + "thread": 7 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 1942296, + "thread": 12 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2105347, + "thread": 22 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2262822, + "thread": 4 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2385771, + "thread": 30 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2566432, + "thread": 3 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2640160, + "thread": 27 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 2872730, + "thread": 15 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3046312, + "thread": 10 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3236437, + "thread": 9 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3433314, + "thread": 18 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3577417, + "thread": 18 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3696948, + "thread": 13 + } + }, + { + "amount": "97.126245146", + "slot": { + "period": 3844528, + "thread": 25 + } + } + ], + "AU127beid5MNPBuGeG8a3yqH3FRJCFGq6fUrxL3nRk6ir2eeCUXTf": [ + { + "amount": "201.150086101", + "slot": { + "period": 129845, + "thread": 25 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 169948, + "thread": 31 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 350255, + "thread": 2 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 550512, + "thread": 7 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 723214, + "thread": 1 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 950655, + "thread": 26 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1045536, + "thread": 24 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1176545, + "thread": 7 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1346205, + "thread": 28 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1589102, + "thread": 22 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1737224, + "thread": 5 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 1883980, + "thread": 1 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2033207, + "thread": 20 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2279417, + "thread": 3 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2297775, + "thread": 30 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2585983, + "thread": 16 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2631822, + "thread": 14 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2883306, + "thread": 22 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 2991050, + "thread": 27 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 3137975, + "thread": 20 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 3440767, + "thread": 2 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 3558599, + "thread": 27 + } + }, + { + "amount": "201.150086101", + "slot": { + "period": 3677785, + "thread": 7 + } + }, + { + "amount": "201.150086095", + "slot": { + "period": 3856597, + "thread": 29 + } + } + ], + "AU127dWK7aktheKGUc6FsV9kmFbuNT3cJPAnahjaEdwoqnwCQZ9Jw": [ + { + "amount": "130.671287287", + "slot": { + "period": 45354, + "thread": 29 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 272918, + "thread": 0 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 448302, + "thread": 31 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 500249, + "thread": 7 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 729098, + "thread": 10 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 895168, + "thread": 2 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1053077, + "thread": 5 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1290647, + "thread": 31 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1440809, + "thread": 10 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1556236, + "thread": 20 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1780986, + "thread": 18 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 1927105, + "thread": 9 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2032514, + "thread": 2 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2160474, + "thread": 0 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2424620, + "thread": 0 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2524062, + "thread": 14 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2748642, + "thread": 4 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 2812707, + "thread": 19 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 3016336, + "thread": 0 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 3177890, + "thread": 28 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 3447197, + "thread": 11 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 3460666, + "thread": 20 + } + }, + { + "amount": "130.671287287", + "slot": { + "period": 3776973, + "thread": 1 + } + }, + { + "amount": "130.671287281", + "slot": { + "period": 3903226, + "thread": 12 + } + } + ], + "AU127e6sz3amqE9t65htW2nDj7wwyJA5FkjqkBUH8WW8wUAMmkr2Z": [ + { + "amount": "1166.666666667", + "slot": { + "period": 33910, + "thread": 17 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 272683, + "thread": 6 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 477694, + "thread": 27 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 556686, + "thread": 15 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 716769, + "thread": 11 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 870581, + "thread": 7 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1056765, + "thread": 19 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1279128, + "thread": 4 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1420084, + "thread": 8 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1573925, + "thread": 20 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1697433, + "thread": 25 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1920651, + "thread": 0 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2027669, + "thread": 18 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2153397, + "thread": 19 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2300053, + "thread": 10 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2611151, + "thread": 11 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2667209, + "thread": 3 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2858989, + "thread": 22 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3021530, + "thread": 27 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3259323, + "thread": 22 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3351666, + "thread": 23 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3476016, + "thread": 29 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3619301, + "thread": 31 + } + }, + { + "amount": "1166.666666659", + "slot": { + "period": 3789045, + "thread": 14 + } + } + ], + "AU127eYHnCrRGJVy18gX8JXgGgNYVnKQ2K3rXXzN2WdUdbmvU9fXQ": [ + { + "amount": "71.404532969", + "slot": { + "period": 101794, + "thread": 8 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 283580, + "thread": 12 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 469225, + "thread": 29 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 551513, + "thread": 28 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 709158, + "thread": 23 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 881006, + "thread": 22 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1016561, + "thread": 3 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1178073, + "thread": 8 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1335711, + "thread": 9 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1609160, + "thread": 10 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1780515, + "thread": 23 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 1863988, + "thread": 1 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2041424, + "thread": 12 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2252169, + "thread": 7 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2435057, + "thread": 13 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2505537, + "thread": 18 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2759888, + "thread": 16 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 2893238, + "thread": 30 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 3016185, + "thread": 9 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 3186163, + "thread": 13 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 3306010, + "thread": 2 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 3497728, + "thread": 29 + } + }, + { + "amount": "71.404532969", + "slot": { + "period": 3637316, + "thread": 11 + } + }, + { + "amount": "71.404532976", + "slot": { + "period": 3804509, + "thread": 6 + } + } + ], + "AU127eoXpkZfNzfeevMxFWTP81o242gn2T8GVQjUzzBwE1JJD76hF": [ + { + "amount": "186.016060592", + "slot": { + "period": 58750, + "thread": 24 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 190525, + "thread": 31 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 421187, + "thread": 30 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 623697, + "thread": 25 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 660843, + "thread": 27 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 885261, + "thread": 5 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1082014, + "thread": 12 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1292560, + "thread": 16 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1447579, + "thread": 4 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1551574, + "thread": 15 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1705693, + "thread": 2 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 1827069, + "thread": 26 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2100974, + "thread": 11 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2188347, + "thread": 3 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2322906, + "thread": 0 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2544023, + "thread": 6 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2785352, + "thread": 26 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 2796090, + "thread": 4 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 3060914, + "thread": 2 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 3131116, + "thread": 14 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 3433659, + "thread": 31 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 3607686, + "thread": 17 + } + }, + { + "amount": "186.016060592", + "slot": { + "period": 3632156, + "thread": 11 + } + }, + { + "amount": "186.016060595", + "slot": { + "period": 3899393, + "thread": 21 + } + } + ], + "AU127ewKcmCPiG8N9XfXsdKqu6xFSkQ1XXJXNnp7DbPkVoKjSCsXD": [ + { + "amount": "291.794964302", + "slot": { + "period": 77992, + "thread": 3 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 170145, + "thread": 0 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 438547, + "thread": 24 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 560258, + "thread": 18 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 788655, + "thread": 27 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 871124, + "thread": 23 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1102298, + "thread": 30 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1213213, + "thread": 14 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1332415, + "thread": 7 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1527562, + "thread": 16 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1656590, + "thread": 30 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 1868735, + "thread": 14 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2005223, + "thread": 30 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2252256, + "thread": 9 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2434823, + "thread": 14 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2470882, + "thread": 9 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2636285, + "thread": 2 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 2864914, + "thread": 0 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 3003517, + "thread": 17 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 3166930, + "thread": 19 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 3334365, + "thread": 12 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 3611090, + "thread": 16 + } + }, + { + "amount": "291.794964302", + "slot": { + "period": 3646949, + "thread": 22 + } + }, + { + "amount": "291.794964295", + "slot": { + "period": 3810440, + "thread": 5 + } + } + ], + "AU127f9cGZZNiZMaQddNMsGV7Ux5NbvYVsdwEQxHP8etpSU4Dq8qE": [ + { + "amount": "286.022477020", + "slot": { + "period": 122443, + "thread": 17 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 202208, + "thread": 17 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 459393, + "thread": 20 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 616874, + "thread": 24 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 694091, + "thread": 17 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 968525, + "thread": 21 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1038709, + "thread": 15 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1246699, + "thread": 5 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1326756, + "thread": 5 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1488081, + "thread": 9 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1683857, + "thread": 6 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 1848451, + "thread": 23 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2130582, + "thread": 6 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2262957, + "thread": 15 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2312752, + "thread": 29 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2503249, + "thread": 1 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2722148, + "thread": 2 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2824587, + "thread": 27 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 2980730, + "thread": 7 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 3233160, + "thread": 0 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 3315605, + "thread": 5 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 3576182, + "thread": 15 + } + }, + { + "amount": "286.022477020", + "slot": { + "period": 3743029, + "thread": 11 + } + }, + { + "amount": "286.022477018", + "slot": { + "period": 3876151, + "thread": 23 + } + } + ], + "AU127fL4JAN9HkPAncDmzffN7deXdyxZQuwjFx3EAZ6MrWSKcmK7i": [ + { + "amount": "125.435551431", + "slot": { + "period": 110907, + "thread": 5 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 222790, + "thread": 7 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 361634, + "thread": 5 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 501678, + "thread": 5 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 763494, + "thread": 15 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 886603, + "thread": 6 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1065056, + "thread": 16 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1166458, + "thread": 27 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1473836, + "thread": 27 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1638241, + "thread": 22 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1702079, + "thread": 14 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 1935051, + "thread": 9 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2075307, + "thread": 23 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2231487, + "thread": 30 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2314670, + "thread": 17 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2495124, + "thread": 22 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2774995, + "thread": 28 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 2844236, + "thread": 29 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 3120429, + "thread": 4 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 3217099, + "thread": 24 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 3359271, + "thread": 8 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 3472837, + "thread": 13 + } + }, + { + "amount": "125.435551431", + "slot": { + "period": 3733771, + "thread": 19 + } + }, + { + "amount": "125.435551424", + "slot": { + "period": 3850559, + "thread": 8 + } + } + ], + "AU127fgSGfMQ5Ka29rHKzJ6ZgTNmhKwDGNnjGDGB2rH7bg5RMpweJ": [ + { + "amount": "105.451406790", + "slot": { + "period": 158974, + "thread": 19 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 217738, + "thread": 4 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 363144, + "thread": 9 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 614300, + "thread": 29 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 692977, + "thread": 16 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 848136, + "thread": 11 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1027823, + "thread": 7 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1195471, + "thread": 5 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1323455, + "thread": 3 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1624094, + "thread": 13 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1739473, + "thread": 11 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1950832, + "thread": 2 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 1985734, + "thread": 11 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 2155383, + "thread": 27 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 2326239, + "thread": 24 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 2512568, + "thread": 10 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 2695844, + "thread": 5 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 2934159, + "thread": 26 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 3058755, + "thread": 18 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 3131874, + "thread": 14 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 3426418, + "thread": 5 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 3611076, + "thread": 5 + } + }, + { + "amount": "105.451406790", + "slot": { + "period": 3623346, + "thread": 6 + } + }, + { + "amount": "105.451406786", + "slot": { + "period": 3915450, + "thread": 30 + } + } + ], + "AU127fgUSUuvgQjkA7mFZhqk1LE6isne3NkZhreVzWkFGeZDtSnT8": [ + { + "amount": "212.438575224", + "slot": { + "period": 105100, + "thread": 26 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 268132, + "thread": 27 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 370654, + "thread": 31 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 598530, + "thread": 16 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 689945, + "thread": 30 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 872629, + "thread": 1 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1070585, + "thread": 16 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1162256, + "thread": 7 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1440900, + "thread": 31 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1571690, + "thread": 23 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1670983, + "thread": 30 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 1893440, + "thread": 17 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2001026, + "thread": 19 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2238354, + "thread": 29 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2454378, + "thread": 29 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2611392, + "thread": 31 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2757196, + "thread": 4 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 2945924, + "thread": 21 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3036500, + "thread": 25 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3256884, + "thread": 19 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3415796, + "thread": 2 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3571912, + "thread": 1 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3763768, + "thread": 25 + } + }, + { + "amount": "212.438575224", + "slot": { + "period": 3848745, + "thread": 24 + } + } + ], + "AU127gX1rGeAJeytfMowGdk8fNqnRVCSurXv7NHh6RHFqYs7ijbpB": [ + { + "amount": "617.295997064", + "slot": { + "period": 129556, + "thread": 14 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 225999, + "thread": 30 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 471371, + "thread": 29 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 519398, + "thread": 29 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 677043, + "thread": 21 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 895025, + "thread": 12 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 990623, + "thread": 10 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 1288678, + "thread": 12 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 1427772, + "thread": 3 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 1587792, + "thread": 28 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 1776101, + "thread": 14 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 1878792, + "thread": 2 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2085590, + "thread": 15 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2277797, + "thread": 25 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2399898, + "thread": 7 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2589277, + "thread": 23 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2791345, + "thread": 20 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 2916159, + "thread": 9 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 3081105, + "thread": 20 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 3269402, + "thread": 12 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 3301880, + "thread": 22 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 3482459, + "thread": 28 + } + }, + { + "amount": "617.295997064", + "slot": { + "period": 3714960, + "thread": 28 + } + }, + { + "amount": "617.295997073", + "slot": { + "period": 3818425, + "thread": 18 + } + } + ], + "AU127h4Wkj2WZ8Mz5jrYJVbaUBJUNBFwsYen1apr5KwDJRVYs6LvK": [ + { + "amount": "164.205696265", + "slot": { + "period": 42649, + "thread": 3 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 191977, + "thread": 20 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 341315, + "thread": 9 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 532354, + "thread": 31 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 723644, + "thread": 31 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 955918, + "thread": 21 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1132386, + "thread": 5 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1231500, + "thread": 18 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1378859, + "thread": 7 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1500536, + "thread": 23 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1735048, + "thread": 8 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 1836485, + "thread": 31 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2103340, + "thread": 10 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2269241, + "thread": 5 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2457899, + "thread": 19 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2531806, + "thread": 29 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2675851, + "thread": 2 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 2948277, + "thread": 3 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 3033536, + "thread": 7 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 3260543, + "thread": 13 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 3351837, + "thread": 2 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 3462399, + "thread": 6 + } + }, + { + "amount": "164.205696265", + "slot": { + "period": 3705412, + "thread": 28 + } + }, + { + "amount": "164.205696267", + "slot": { + "period": 3918311, + "thread": 22 + } + } + ], + "AU127iWGmBq2S1dgXrRCSQSi7w3Ga2Pwbpt6jwGdjeZFGcKDDdKZg": [ + { + "amount": "133.481845440", + "slot": { + "period": 129430, + "thread": 7 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 236987, + "thread": 24 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 412269, + "thread": 18 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 652492, + "thread": 26 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 687272, + "thread": 4 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 851280, + "thread": 2 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1021141, + "thread": 3 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1262274, + "thread": 1 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1408839, + "thread": 20 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1550047, + "thread": 0 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1653224, + "thread": 22 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 1810516, + "thread": 10 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2142249, + "thread": 31 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2274730, + "thread": 20 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2337856, + "thread": 5 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2624309, + "thread": 8 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2670103, + "thread": 30 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 2818070, + "thread": 6 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 3112110, + "thread": 29 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 3285807, + "thread": 8 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 3346711, + "thread": 28 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 3558193, + "thread": 10 + } + }, + { + "amount": "133.481845440", + "slot": { + "period": 3709719, + "thread": 1 + } + }, + { + "amount": "133.481845441", + "slot": { + "period": 3936018, + "thread": 11 + } + } + ], + "AU127jEgSPM7nCC1WR9MBdVw9zfC44abP2LfMML1pCmZXaK2gAvth": [ + { + "amount": "185.458835266", + "slot": { + "period": 102523, + "thread": 15 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 188384, + "thread": 11 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 333997, + "thread": 11 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 650008, + "thread": 31 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 684112, + "thread": 30 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 956732, + "thread": 10 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 992503, + "thread": 9 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 1175767, + "thread": 23 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 1387396, + "thread": 30 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 1613503, + "thread": 8 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 1753189, + "thread": 27 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 1876543, + "thread": 10 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2140347, + "thread": 15 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2280188, + "thread": 19 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2443939, + "thread": 3 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2615169, + "thread": 0 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2756470, + "thread": 4 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2953329, + "thread": 26 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 2964645, + "thread": 16 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 3132711, + "thread": 9 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 3368777, + "thread": 14 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 3535255, + "thread": 8 + } + }, + { + "amount": "185.458835266", + "slot": { + "period": 3714019, + "thread": 18 + } + }, + { + "amount": "185.458835259", + "slot": { + "period": 3815208, + "thread": 27 + } + } + ], + "AU127kn5mv8MWDUapUgjqcwFciDFyzpD7V922TsvCgoRmXgZKfpiT": [ + { + "amount": "69.020513484", + "slot": { + "period": 102619, + "thread": 20 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 295373, + "thread": 30 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 421145, + "thread": 5 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 591192, + "thread": 31 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 674344, + "thread": 15 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 828939, + "thread": 27 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1056763, + "thread": 4 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1195235, + "thread": 1 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1423014, + "thread": 18 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1552480, + "thread": 11 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1740058, + "thread": 13 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 1930862, + "thread": 5 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2089446, + "thread": 25 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2258318, + "thread": 5 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2344012, + "thread": 5 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2538755, + "thread": 3 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2682797, + "thread": 12 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 2945649, + "thread": 9 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 3105889, + "thread": 6 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 3150413, + "thread": 10 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 3313518, + "thread": 28 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 3522803, + "thread": 15 + } + }, + { + "amount": "69.020513484", + "slot": { + "period": 3747353, + "thread": 15 + } + }, + { + "amount": "69.020513483", + "slot": { + "period": 3884060, + "thread": 20 + } + } + ], + "AU127mW6DNTxxuBP2c1Ny32ypgCsAzfihEduqgfbccwNBg5X8Eq8t": [ + { + "amount": "191.513688626", + "slot": { + "period": 132061, + "thread": 17 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 237818, + "thread": 4 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 370458, + "thread": 4 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 628713, + "thread": 26 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 759779, + "thread": 0 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 940123, + "thread": 18 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 998494, + "thread": 14 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 1256566, + "thread": 0 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 1434067, + "thread": 31 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 1620419, + "thread": 26 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 1684280, + "thread": 8 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 1925297, + "thread": 29 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2059634, + "thread": 14 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2144237, + "thread": 21 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2315507, + "thread": 29 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2562640, + "thread": 4 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2762374, + "thread": 10 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 2813657, + "thread": 29 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 3013497, + "thread": 0 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 3248835, + "thread": 18 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 3369272, + "thread": 10 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 3600567, + "thread": 2 + } + }, + { + "amount": "191.513688626", + "slot": { + "period": 3776711, + "thread": 26 + } + }, + { + "amount": "191.513688627", + "slot": { + "period": 3858517, + "thread": 30 + } + } + ], + "AU127nHBgx6aUW8UbN1nFMurM35hhTR2moMWmjyyGYMg55rY2Jxz2": [ + { + "amount": "281.450176835", + "slot": { + "period": 151938, + "thread": 23 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 179230, + "thread": 31 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 387274, + "thread": 2 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 642420, + "thread": 29 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 754397, + "thread": 4 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 956572, + "thread": 11 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1042596, + "thread": 4 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1154006, + "thread": 22 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1375386, + "thread": 21 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1482190, + "thread": 4 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1742046, + "thread": 24 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 1914478, + "thread": 25 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2113731, + "thread": 26 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2188312, + "thread": 10 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2421386, + "thread": 31 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2475251, + "thread": 7 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2750058, + "thread": 1 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 2807874, + "thread": 19 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 3038814, + "thread": 11 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 3141493, + "thread": 29 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 3302670, + "thread": 21 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 3457589, + "thread": 4 + } + }, + { + "amount": "281.450176835", + "slot": { + "period": 3712561, + "thread": 31 + } + }, + { + "amount": "281.450176837", + "slot": { + "period": 3867761, + "thread": 2 + } + } + ], + "AU127nxGkn9aakKn6kNhnQFwtPKFyWA5p49XLyUBz4RvXjnHWs6oh": [ + { + "amount": "135.115105130", + "slot": { + "period": 117343, + "thread": 1 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 168292, + "thread": 29 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 361770, + "thread": 4 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 504859, + "thread": 5 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 752027, + "thread": 8 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 909859, + "thread": 2 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1035844, + "thread": 18 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1282234, + "thread": 21 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1436052, + "thread": 6 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1543877, + "thread": 13 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1796004, + "thread": 3 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 1972601, + "thread": 6 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2052251, + "thread": 21 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2245812, + "thread": 12 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2414589, + "thread": 28 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2478295, + "thread": 9 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2693811, + "thread": 11 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2929286, + "thread": 1 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 2977192, + "thread": 24 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 3147537, + "thread": 18 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 3437004, + "thread": 26 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 3464814, + "thread": 29 + } + }, + { + "amount": "135.115105130", + "slot": { + "period": 3770046, + "thread": 20 + } + }, + { + "amount": "135.115105121", + "slot": { + "period": 3795493, + "thread": 23 + } + } + ], + "AU127ojCU7idWXoyKqmtBWSMDGSDm2QjPWFkzmUE5xgehFyWK7dDN": [ + { + "amount": "177.846299721", + "slot": { + "period": 20123, + "thread": 14 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 186334, + "thread": 27 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 435220, + "thread": 31 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 525813, + "thread": 4 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 678060, + "thread": 14 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 911731, + "thread": 17 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1128364, + "thread": 23 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1161245, + "thread": 0 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1413459, + "thread": 18 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1507381, + "thread": 7 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1712855, + "thread": 31 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 1961466, + "thread": 6 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2101275, + "thread": 23 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2169765, + "thread": 20 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2458528, + "thread": 23 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2532106, + "thread": 30 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2693711, + "thread": 6 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 2898557, + "thread": 3 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 3090762, + "thread": 9 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 3204703, + "thread": 11 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 3349746, + "thread": 31 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 3458323, + "thread": 7 + } + }, + { + "amount": "177.846299721", + "slot": { + "period": 3649631, + "thread": 9 + } + }, + { + "amount": "177.846299714", + "slot": { + "period": 3898475, + "thread": 27 + } + } + ], + "AU127ojkMgF4TZdpgYyGT9XWbMyBymw971HW1s1sK5vBGVFoo5RrD": [ + { + "amount": "155.561095232", + "slot": { + "period": 35065, + "thread": 0 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 277133, + "thread": 29 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 375361, + "thread": 7 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 585821, + "thread": 13 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 812166, + "thread": 31 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 844309, + "thread": 9 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1145426, + "thread": 15 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1291880, + "thread": 24 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1346886, + "thread": 28 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1550874, + "thread": 4 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1720748, + "thread": 13 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 1887735, + "thread": 18 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2098924, + "thread": 16 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2174266, + "thread": 11 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2429915, + "thread": 19 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2543347, + "thread": 8 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2651691, + "thread": 6 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 2818720, + "thread": 19 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 3092403, + "thread": 26 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 3161461, + "thread": 0 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 3429847, + "thread": 6 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 3547798, + "thread": 0 + } + }, + { + "amount": "155.561095232", + "slot": { + "period": 3626394, + "thread": 2 + } + }, + { + "amount": "155.561095235", + "slot": { + "period": 3852593, + "thread": 30 + } + } + ], + "AU127pzxJsL79L8v7eSGNVp45Nmu7mBU5XjnD8u2i8LZRPHpSumEg": [ + { + "amount": "115.685109206", + "slot": { + "period": 140099, + "thread": 20 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 212792, + "thread": 30 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 352173, + "thread": 11 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 502439, + "thread": 7 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 789932, + "thread": 9 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 911327, + "thread": 24 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1119648, + "thread": 27 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1266332, + "thread": 29 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1341277, + "thread": 12 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1556941, + "thread": 21 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1778102, + "thread": 29 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 1824156, + "thread": 5 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2105482, + "thread": 31 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2228386, + "thread": 15 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2376646, + "thread": 9 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2580691, + "thread": 10 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2632740, + "thread": 21 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 2924486, + "thread": 10 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 3049630, + "thread": 6 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 3254411, + "thread": 5 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 3392851, + "thread": 27 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 3544029, + "thread": 22 + } + }, + { + "amount": "115.685109206", + "slot": { + "period": 3764252, + "thread": 4 + } + }, + { + "amount": "115.685109217", + "slot": { + "period": 3815445, + "thread": 3 + } + } + ], + "AU127qCv69PYQzXBJbsxm4EoZcp4SMjXCzovhezeqeD68fyfrPM3E": [ + { + "amount": "327.373588638", + "slot": { + "period": 143002, + "thread": 15 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 319665, + "thread": 23 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 467125, + "thread": 31 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 509122, + "thread": 17 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 704669, + "thread": 27 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 894682, + "thread": 4 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1060432, + "thread": 19 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1255736, + "thread": 22 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1362919, + "thread": 22 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1610775, + "thread": 28 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1710875, + "thread": 20 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1887070, + "thread": 2 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 1984752, + "thread": 20 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 2292036, + "thread": 1 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 2370000, + "thread": 28 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 2590802, + "thread": 9 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 2700557, + "thread": 10 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 2854506, + "thread": 2 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 3074740, + "thread": 17 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 3277103, + "thread": 15 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 3317572, + "thread": 24 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 3490540, + "thread": 0 + } + }, + { + "amount": "327.373588638", + "slot": { + "period": 3775885, + "thread": 19 + } + }, + { + "amount": "327.373588639", + "slot": { + "period": 3823898, + "thread": 19 + } + } + ], + "AU127qM2bZKNUkjF7m83XshM2qoHsoxYeKADnQUoB4meugazaRU53": [ + { + "amount": "105.961751963", + "slot": { + "period": 51654, + "thread": 29 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 180427, + "thread": 11 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 470856, + "thread": 12 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 598186, + "thread": 20 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 689695, + "thread": 17 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 927751, + "thread": 2 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1120704, + "thread": 8 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1292995, + "thread": 14 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1413472, + "thread": 31 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1479711, + "thread": 13 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1705068, + "thread": 28 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 1896543, + "thread": 29 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2034654, + "thread": 7 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2252828, + "thread": 3 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2433787, + "thread": 24 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2466984, + "thread": 0 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2730150, + "thread": 30 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 2808013, + "thread": 30 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 3100545, + "thread": 18 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 3164215, + "thread": 26 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 3293743, + "thread": 22 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 3468492, + "thread": 25 + } + }, + { + "amount": "105.961751963", + "slot": { + "period": 3762530, + "thread": 27 + } + }, + { + "amount": "105.961751964", + "slot": { + "period": 3802079, + "thread": 20 + } + } + ], + "AU127qcCuAR7torrBoSXJMEcURwrRxh8RusZkAykMsgj2irYD7tUQ": [ + { + "amount": "80.280116143", + "slot": { + "period": 137650, + "thread": 22 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 246168, + "thread": 22 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 479677, + "thread": 27 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 632715, + "thread": 13 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 765093, + "thread": 8 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 945220, + "thread": 22 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1084407, + "thread": 20 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1191867, + "thread": 18 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1375407, + "thread": 11 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1549733, + "thread": 2 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1721639, + "thread": 3 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 1825995, + "thread": 0 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2056453, + "thread": 2 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2280197, + "thread": 29 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2311182, + "thread": 31 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2606484, + "thread": 2 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2750365, + "thread": 10 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 2917648, + "thread": 24 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 3040747, + "thread": 15 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 3231638, + "thread": 15 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 3391730, + "thread": 18 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 3533535, + "thread": 13 + } + }, + { + "amount": "80.280116143", + "slot": { + "period": 3729672, + "thread": 5 + } + }, + { + "amount": "80.280116151", + "slot": { + "period": 3787988, + "thread": 30 + } + } + ], + "AU127qiF2XPUXMRXWeSsx3gvGokKdLBTk99btqJ3Aa4DzpDQybS3e": [ + { + "amount": "185.735440364", + "slot": { + "period": 88877, + "thread": 1 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 323893, + "thread": 16 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 347591, + "thread": 11 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 520538, + "thread": 21 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 672416, + "thread": 21 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 856624, + "thread": 29 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1117161, + "thread": 19 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1208479, + "thread": 14 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1427254, + "thread": 7 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1528043, + "thread": 22 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1731684, + "thread": 5 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 1883586, + "thread": 5 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2032721, + "thread": 2 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2202786, + "thread": 14 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2331843, + "thread": 31 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2540328, + "thread": 24 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2716922, + "thread": 31 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 2831546, + "thread": 24 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 3019852, + "thread": 27 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 3135741, + "thread": 18 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 3306651, + "thread": 9 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 3510608, + "thread": 8 + } + }, + { + "amount": "185.735440364", + "slot": { + "period": 3779304, + "thread": 23 + } + }, + { + "amount": "185.735440355", + "slot": { + "period": 3931541, + "thread": 2 + } + } + ], + "AU127qqQ5yR2q5TpyBj2etBAt7Q4PgjoxE43CU549fc8eYVLALcxe": [ + { + "amount": "63.611347385", + "slot": { + "period": 20250, + "thread": 23 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 283828, + "thread": 18 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 460861, + "thread": 1 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 639794, + "thread": 14 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 771851, + "thread": 20 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 884300, + "thread": 16 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1082723, + "thread": 17 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1179917, + "thread": 14 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1392273, + "thread": 2 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1582941, + "thread": 27 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1772366, + "thread": 14 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 1836419, + "thread": 23 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2055384, + "thread": 20 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2199399, + "thread": 16 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2396284, + "thread": 2 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2517947, + "thread": 8 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2674585, + "thread": 5 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 2937518, + "thread": 19 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 3050267, + "thread": 13 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 3122136, + "thread": 11 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 3422992, + "thread": 20 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 3454966, + "thread": 22 + } + }, + { + "amount": "63.611347385", + "slot": { + "period": 3663471, + "thread": 22 + } + }, + { + "amount": "63.611347374", + "slot": { + "period": 3849685, + "thread": 0 + } + } + ], + "AU127r36gV65dxDeVh8wCrZyedNKNzxToojqXibeE8d4gixi52XVz": [ + { + "amount": "136.692657180", + "slot": { + "period": 161544, + "thread": 19 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 322277, + "thread": 14 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 462041, + "thread": 22 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 558503, + "thread": 0 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 748861, + "thread": 15 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 873016, + "thread": 25 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 998970, + "thread": 4 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 1213699, + "thread": 12 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 1362205, + "thread": 27 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 1590099, + "thread": 30 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 1802486, + "thread": 6 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 1943972, + "thread": 19 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2013757, + "thread": 28 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2255232, + "thread": 0 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2354993, + "thread": 19 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2472157, + "thread": 12 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2767217, + "thread": 18 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 2837000, + "thread": 10 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 3070424, + "thread": 24 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 3127252, + "thread": 24 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 3403411, + "thread": 20 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 3473248, + "thread": 30 + } + }, + { + "amount": "136.692657180", + "slot": { + "period": 3775120, + "thread": 7 + } + }, + { + "amount": "136.692657171", + "slot": { + "period": 3857379, + "thread": 4 + } + } + ], + "AU127rAKpLoLzXkp1ktgFsRZh3YBZNBsERF5CUj4KwGzr4xvccjdJ": [ + { + "amount": "344.020218878", + "slot": { + "period": 71114, + "thread": 22 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 185897, + "thread": 28 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 428504, + "thread": 6 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 628113, + "thread": 2 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 693929, + "thread": 15 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 973474, + "thread": 7 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1106867, + "thread": 10 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1173067, + "thread": 2 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1319547, + "thread": 4 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1564753, + "thread": 3 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1664645, + "thread": 6 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 1948333, + "thread": 4 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2117531, + "thread": 2 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2162957, + "thread": 20 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2382204, + "thread": 3 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2498274, + "thread": 7 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2643276, + "thread": 7 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2856627, + "thread": 5 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 2983671, + "thread": 7 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 3222953, + "thread": 5 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 3334307, + "thread": 9 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 3483877, + "thread": 19 + } + }, + { + "amount": "344.020218878", + "slot": { + "period": 3768799, + "thread": 29 + } + }, + { + "amount": "344.020218886", + "slot": { + "period": 3802727, + "thread": 14 + } + } + ], + "AU127rnQyHHrUZrp7PuV5hW3VnWXVCVcwkqXxsFqvAcQJQD3WrtWR": [ + { + "amount": "89.448981317", + "slot": { + "period": 139058, + "thread": 11 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 205505, + "thread": 13 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 403902, + "thread": 3 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 503537, + "thread": 25 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 683750, + "thread": 7 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 910808, + "thread": 12 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1132575, + "thread": 15 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1283216, + "thread": 4 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1323122, + "thread": 23 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1530216, + "thread": 18 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1673194, + "thread": 7 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1892235, + "thread": 17 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 1995455, + "thread": 20 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 2270967, + "thread": 14 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 2425279, + "thread": 30 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 2554317, + "thread": 7 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 2733454, + "thread": 13 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 2811397, + "thread": 27 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 3118870, + "thread": 27 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 3269369, + "thread": 17 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 3428374, + "thread": 16 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 3545405, + "thread": 1 + } + }, + { + "amount": "89.448981317", + "slot": { + "period": 3704834, + "thread": 2 + } + }, + { + "amount": "89.448981325", + "slot": { + "period": 3871881, + "thread": 1 + } + } + ], + "AU127ruU8EE8tJoKRUNQ1EW8cGsdjDPUVFFtRf1Pssa2apT6hn49p": [ + { + "amount": "455.559045536", + "slot": { + "period": 112224, + "thread": 14 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 320416, + "thread": 13 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 472922, + "thread": 13 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 598852, + "thread": 26 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 817189, + "thread": 6 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 905100, + "thread": 25 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1014011, + "thread": 13 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1232557, + "thread": 12 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1465503, + "thread": 3 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1631673, + "thread": 7 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1794632, + "thread": 26 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1929453, + "thread": 6 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 1998563, + "thread": 6 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 2148893, + "thread": 15 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 2404930, + "thread": 4 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 2462933, + "thread": 31 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 2701046, + "thread": 19 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 2941739, + "thread": 16 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 3093485, + "thread": 17 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 3219519, + "thread": 31 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 3292947, + "thread": 2 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 3594730, + "thread": 13 + } + }, + { + "amount": "455.559045536", + "slot": { + "period": 3747673, + "thread": 5 + } + }, + { + "amount": "455.559045544", + "slot": { + "period": 3836894, + "thread": 26 + } + } + ], + "AU127sRCGAuVqQpQviLzhspynLELMHPbU1TH2Arprjd6DC1q5T5hJ": [ + { + "amount": "413.821567050", + "slot": { + "period": 89178, + "thread": 11 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 229922, + "thread": 31 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 372966, + "thread": 14 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 526871, + "thread": 2 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 819254, + "thread": 14 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 895451, + "thread": 14 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1146107, + "thread": 21 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1300446, + "thread": 2 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1436121, + "thread": 11 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1628310, + "thread": 27 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1795725, + "thread": 28 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 1878318, + "thread": 18 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2067202, + "thread": 13 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2175409, + "thread": 16 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2400761, + "thread": 31 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2568399, + "thread": 7 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2720482, + "thread": 15 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 2848449, + "thread": 8 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3029309, + "thread": 22 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3224428, + "thread": 29 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3348420, + "thread": 7 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3467974, + "thread": 24 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3672854, + "thread": 2 + } + }, + { + "amount": "413.821567050", + "slot": { + "period": 3941728, + "thread": 28 + } + } + ], + "AU127smrfWggWLCMob8F9wxU9CrDdUDdncSP85LGpF8Z5gwkSYVbN": [ + { + "amount": "171.615957494", + "slot": { + "period": 156440, + "thread": 9 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 226089, + "thread": 28 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 441836, + "thread": 31 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 613004, + "thread": 28 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 712036, + "thread": 10 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 880351, + "thread": 23 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1002908, + "thread": 0 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1294934, + "thread": 13 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1364658, + "thread": 2 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1505789, + "thread": 1 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1658896, + "thread": 24 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 1975297, + "thread": 30 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2083077, + "thread": 20 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2174391, + "thread": 12 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2437923, + "thread": 19 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2522932, + "thread": 4 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2672046, + "thread": 4 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 2940712, + "thread": 28 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 3105577, + "thread": 29 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 3167534, + "thread": 12 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 3391532, + "thread": 13 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 3549842, + "thread": 22 + } + }, + { + "amount": "171.615957494", + "slot": { + "period": 3676551, + "thread": 28 + } + }, + { + "amount": "171.615957489", + "slot": { + "period": 3921235, + "thread": 15 + } + } + ], + "AU127wssunuqH67r6poRiyX85rE8rkNTmSAETdYXXi9QDM5EvAWNq": [ + { + "amount": "343.371579256", + "slot": { + "period": 38684, + "thread": 8 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 276239, + "thread": 12 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 452846, + "thread": 14 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 523315, + "thread": 20 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 738764, + "thread": 24 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 941450, + "thread": 31 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1111933, + "thread": 9 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1280183, + "thread": 25 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1434360, + "thread": 21 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1634254, + "thread": 10 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1727696, + "thread": 22 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 1813061, + "thread": 10 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2053150, + "thread": 18 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2181842, + "thread": 10 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2408478, + "thread": 29 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2474424, + "thread": 10 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2775952, + "thread": 19 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 2867965, + "thread": 2 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 3071814, + "thread": 14 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 3203157, + "thread": 15 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 3385660, + "thread": 18 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 3559821, + "thread": 27 + } + }, + { + "amount": "343.371579256", + "slot": { + "period": 3686639, + "thread": 11 + } + }, + { + "amount": "343.371579251", + "slot": { + "period": 3861659, + "thread": 5 + } + } + ], + "AU127xc76Z8nMJb2dcWAEZC2aSHUJgpewBKxYNGoj3zKuDPVs5nmD": [ + { + "amount": "198.554064609", + "slot": { + "period": 104390, + "thread": 9 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 194373, + "thread": 16 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 380834, + "thread": 14 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 556495, + "thread": 21 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 790144, + "thread": 8 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 837118, + "thread": 27 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1049380, + "thread": 31 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1300496, + "thread": 28 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1434021, + "thread": 0 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1608649, + "thread": 24 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1730500, + "thread": 15 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 1892790, + "thread": 25 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2093607, + "thread": 6 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2150924, + "thread": 12 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2336942, + "thread": 22 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2490125, + "thread": 28 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2683758, + "thread": 9 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 2914504, + "thread": 4 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 3054654, + "thread": 12 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 3208920, + "thread": 31 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 3413666, + "thread": 0 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 3554410, + "thread": 11 + } + }, + { + "amount": "198.554064609", + "slot": { + "period": 3766353, + "thread": 5 + } + }, + { + "amount": "198.554064607", + "slot": { + "period": 3905191, + "thread": 16 + } + } + ], + "AU127z8AXcSAHtUgqEQ8EdhnubmX9uwWYxMJ8DNUCCYgr2sfJJera": [ + { + "amount": "95.741387991", + "slot": { + "period": 65046, + "thread": 2 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 196657, + "thread": 3 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 399053, + "thread": 27 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 618594, + "thread": 15 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 811025, + "thread": 6 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 959335, + "thread": 3 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1041922, + "thread": 19 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1281567, + "thread": 0 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1438925, + "thread": 14 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1614026, + "thread": 4 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1698845, + "thread": 22 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 1838834, + "thread": 0 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2084555, + "thread": 15 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2221716, + "thread": 17 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2384087, + "thread": 1 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2615490, + "thread": 31 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2737552, + "thread": 16 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 2880821, + "thread": 0 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 3060374, + "thread": 11 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 3284995, + "thread": 11 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 3347416, + "thread": 24 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 3480666, + "thread": 24 + } + }, + { + "amount": "95.741387991", + "slot": { + "period": 3677105, + "thread": 5 + } + }, + { + "amount": "95.741388001", + "slot": { + "period": 3791344, + "thread": 30 + } + } + ], + "AU127zQ7tGvYJnYtXezfqtNjaDS6QtNdMKbQ9xBDQCs6NQkSJUNsc": [ + { + "amount": "78.177276905", + "slot": { + "period": 149179, + "thread": 21 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 214382, + "thread": 30 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 389849, + "thread": 4 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 589140, + "thread": 3 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 759100, + "thread": 21 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 869187, + "thread": 15 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1002309, + "thread": 31 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1163016, + "thread": 6 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1453286, + "thread": 7 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1538662, + "thread": 11 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1685226, + "thread": 27 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 1918843, + "thread": 25 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2051038, + "thread": 0 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2285961, + "thread": 29 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2353440, + "thread": 19 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2484962, + "thread": 15 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2786132, + "thread": 28 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2871529, + "thread": 13 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 2967222, + "thread": 12 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 3256659, + "thread": 30 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 3425957, + "thread": 15 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 3569427, + "thread": 29 + } + }, + { + "amount": "78.177276905", + "slot": { + "period": 3672180, + "thread": 20 + } + }, + { + "amount": "78.177276901", + "slot": { + "period": 3865401, + "thread": 9 + } + } + ], + "AU12819Egr2DjhYcC6str3s6oN4oi3aTJUR3cxheFNb4HgmfeKqVt": [ + { + "amount": "132.559414460", + "slot": { + "period": 70665, + "thread": 23 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 271214, + "thread": 23 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 356727, + "thread": 7 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 581462, + "thread": 31 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 699654, + "thread": 11 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 945210, + "thread": 1 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1130116, + "thread": 0 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1304406, + "thread": 2 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1334657, + "thread": 24 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1599889, + "thread": 14 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1717377, + "thread": 2 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 1884643, + "thread": 22 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2108188, + "thread": 3 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2172488, + "thread": 17 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2386051, + "thread": 0 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2579705, + "thread": 7 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2666773, + "thread": 26 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2930109, + "thread": 26 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 2994847, + "thread": 22 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 3176444, + "thread": 8 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 3321165, + "thread": 13 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 3472600, + "thread": 29 + } + }, + { + "amount": "132.559414460", + "slot": { + "period": 3741779, + "thread": 1 + } + }, + { + "amount": "132.559414459", + "slot": { + "period": 3806577, + "thread": 2 + } + } + ], + "AU1282M7dhJgjyxSgPxBkCgkjMr2a9ryqXpZ9WqLaqMDpX3sTPRpw": [ + { + "amount": "151.815260328", + "slot": { + "period": 127361, + "thread": 6 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 292460, + "thread": 10 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 404468, + "thread": 20 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 593941, + "thread": 26 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 691972, + "thread": 20 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 827492, + "thread": 4 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1145562, + "thread": 22 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1240373, + "thread": 14 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1357935, + "thread": 30 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1621464, + "thread": 25 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1666287, + "thread": 28 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 1933976, + "thread": 28 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2062690, + "thread": 3 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2285692, + "thread": 22 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2295826, + "thread": 19 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2566429, + "thread": 7 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2710794, + "thread": 7 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2869123, + "thread": 15 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 2980881, + "thread": 22 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 3148966, + "thread": 1 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 3423153, + "thread": 8 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 3525182, + "thread": 25 + } + }, + { + "amount": "151.815260328", + "slot": { + "period": 3769445, + "thread": 6 + } + }, + { + "amount": "151.815260332", + "slot": { + "period": 3868746, + "thread": 15 + } + } + ], + "AU128427SLnZr8CW6wEQZYmxtRykzXbQz59DXc43ZfcEkjxnPkFJG": [ + { + "amount": "306.110235788", + "slot": { + "period": 17204, + "thread": 20 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 315783, + "thread": 28 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 424380, + "thread": 31 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 508563, + "thread": 30 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 772564, + "thread": 15 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 965996, + "thread": 21 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1108630, + "thread": 9 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1298043, + "thread": 30 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1415921, + "thread": 17 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1635123, + "thread": 26 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1738845, + "thread": 25 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 1928033, + "thread": 6 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2128674, + "thread": 8 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2153933, + "thread": 29 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2361343, + "thread": 18 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2508860, + "thread": 14 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2652595, + "thread": 11 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2877208, + "thread": 23 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 2973378, + "thread": 1 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 3124083, + "thread": 3 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 3408523, + "thread": 15 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 3520464, + "thread": 3 + } + }, + { + "amount": "306.110235788", + "slot": { + "period": 3772570, + "thread": 23 + } + }, + { + "amount": "306.110235780", + "slot": { + "period": 3943161, + "thread": 13 + } + } + ], + "AU1285BUwFVTTfEguWN2jz7HgVWSbpcvvViEWotxUj9rZfxknyq3G": [ + { + "amount": "75.793187563", + "slot": { + "period": 75391, + "thread": 28 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 169797, + "thread": 11 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 474052, + "thread": 29 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 612881, + "thread": 0 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 676725, + "thread": 6 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 891939, + "thread": 12 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1005022, + "thread": 21 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1184047, + "thread": 16 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1474748, + "thread": 7 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1585450, + "thread": 3 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1684578, + "thread": 5 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 1832630, + "thread": 11 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2127769, + "thread": 15 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2259797, + "thread": 11 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2409533, + "thread": 26 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2507177, + "thread": 17 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2694883, + "thread": 27 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 2931585, + "thread": 24 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 3000253, + "thread": 2 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 3133469, + "thread": 14 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 3357017, + "thread": 27 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 3552345, + "thread": 19 + } + }, + { + "amount": "75.793187563", + "slot": { + "period": 3636113, + "thread": 11 + } + }, + { + "amount": "75.793187559", + "slot": { + "period": 3800880, + "thread": 10 + } + } + ], + "AU1285NCjWGRpuf4t2EodMpUyXb4eKatvN1RtoHt276FKSnsLB8Ux": [ + { + "amount": "251.523475903", + "slot": { + "period": 43016, + "thread": 4 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 178830, + "thread": 23 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 387006, + "thread": 24 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 553708, + "thread": 19 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 654254, + "thread": 24 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 974812, + "thread": 7 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1106157, + "thread": 12 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1289914, + "thread": 0 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1391533, + "thread": 12 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1621837, + "thread": 30 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1702678, + "thread": 28 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 1864336, + "thread": 22 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2084244, + "thread": 6 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2183180, + "thread": 29 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2432084, + "thread": 29 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2595792, + "thread": 1 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2749791, + "thread": 1 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 2872383, + "thread": 24 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 3120014, + "thread": 4 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 3139265, + "thread": 24 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 3420599, + "thread": 22 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 3552070, + "thread": 12 + } + }, + { + "amount": "251.523475903", + "slot": { + "period": 3751774, + "thread": 30 + } + }, + { + "amount": "251.523475893", + "slot": { + "period": 3805125, + "thread": 9 + } + } + ], + "AU1285yKFpzGnXcFJGse7QVRTXHwQRNfZqXbg19auXzfQ5DHnQc9K": [ + { + "amount": "53.731900363", + "slot": { + "period": 90797, + "thread": 5 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 271223, + "thread": 30 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 373005, + "thread": 23 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 599906, + "thread": 24 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 780226, + "thread": 11 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 909814, + "thread": 4 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 983732, + "thread": 15 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 1282556, + "thread": 10 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 1351008, + "thread": 28 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 1531944, + "thread": 11 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 1791187, + "thread": 6 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 1926896, + "thread": 25 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2059260, + "thread": 11 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2236033, + "thread": 5 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2354127, + "thread": 15 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2551072, + "thread": 29 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2703465, + "thread": 30 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 2932421, + "thread": 15 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 3088617, + "thread": 30 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 3262130, + "thread": 22 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 3292180, + "thread": 3 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 3455244, + "thread": 19 + } + }, + { + "amount": "53.731900363", + "slot": { + "period": 3660029, + "thread": 26 + } + }, + { + "amount": "53.731900355", + "slot": { + "period": 3851411, + "thread": 15 + } + } + ], + "AU12861RMaDBac8W63o64HGTzfVDWcwq3UDrrbMXCCuGN5CfUixsW": [ + { + "amount": "178.316424362", + "slot": { + "period": 130377, + "thread": 27 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 214369, + "thread": 4 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 413610, + "thread": 13 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 621443, + "thread": 8 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 685893, + "thread": 0 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 862876, + "thread": 29 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1095975, + "thread": 26 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1253618, + "thread": 11 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1464112, + "thread": 23 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1485081, + "thread": 23 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1802638, + "thread": 23 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 1873256, + "thread": 22 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2100890, + "thread": 25 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2182325, + "thread": 19 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2313017, + "thread": 26 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2536488, + "thread": 30 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2758763, + "thread": 29 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 2890702, + "thread": 18 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 3026097, + "thread": 1 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 3215176, + "thread": 20 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 3370874, + "thread": 16 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 3563282, + "thread": 23 + } + }, + { + "amount": "178.316424362", + "slot": { + "period": 3726667, + "thread": 7 + } + }, + { + "amount": "178.316424360", + "slot": { + "period": 3812811, + "thread": 0 + } + } + ], + "AU12872L6m5mLwcVrb9NwF5Qab8fGDYSw9SWjdKjuPrc8PVVE94qr": [ + { + "amount": "110.400860500", + "slot": { + "period": 119543, + "thread": 1 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 206122, + "thread": 23 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 389259, + "thread": 24 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 572751, + "thread": 16 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 767275, + "thread": 20 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 937860, + "thread": 5 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1119388, + "thread": 25 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1252899, + "thread": 1 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1456654, + "thread": 13 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1556045, + "thread": 1 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1736933, + "thread": 10 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 1875884, + "thread": 17 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2112367, + "thread": 1 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2183624, + "thread": 3 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2308700, + "thread": 7 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2613991, + "thread": 9 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2698861, + "thread": 4 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2925327, + "thread": 10 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 2965177, + "thread": 28 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 3239632, + "thread": 25 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 3384415, + "thread": 15 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 3465866, + "thread": 30 + } + }, + { + "amount": "110.400860500", + "slot": { + "period": 3684336, + "thread": 11 + } + }, + { + "amount": "110.400860490", + "slot": { + "period": 3925366, + "thread": 7 + } + } + ], + "AU1287SaF3i46h21u9cmQD7HkF2HcgAwvRAvjs2vU96PJnV5gu4bb": [ + { + "amount": "217.313225884", + "slot": { + "period": 85282, + "thread": 24 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 167466, + "thread": 5 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 450013, + "thread": 19 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 570902, + "thread": 0 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 820397, + "thread": 23 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 879894, + "thread": 11 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1134364, + "thread": 9 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1240175, + "thread": 10 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1332410, + "thread": 18 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1556016, + "thread": 15 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1799404, + "thread": 22 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 1866460, + "thread": 25 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2133154, + "thread": 13 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2190296, + "thread": 4 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2326449, + "thread": 27 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2509529, + "thread": 15 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2741442, + "thread": 6 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 2917383, + "thread": 30 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 3079443, + "thread": 27 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 3204258, + "thread": 25 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 3341323, + "thread": 1 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 3613599, + "thread": 29 + } + }, + { + "amount": "217.313225884", + "slot": { + "period": 3645702, + "thread": 17 + } + }, + { + "amount": "217.313225896", + "slot": { + "period": 3836976, + "thread": 3 + } + } + ], + "AU1287aiV6RLbnRJyp7MjN2SzpJjrHdzEmn2MxDBtoeugky39eUF": [ + { + "amount": "369.469056353", + "slot": { + "period": 11007, + "thread": 27 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 216467, + "thread": 22 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 392359, + "thread": 8 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 635636, + "thread": 20 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 682292, + "thread": 12 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 923903, + "thread": 22 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1023479, + "thread": 16 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1267394, + "thread": 11 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1461723, + "thread": 25 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1623664, + "thread": 0 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1720083, + "thread": 3 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 1926135, + "thread": 3 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2001409, + "thread": 10 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2183663, + "thread": 1 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2303295, + "thread": 19 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2593443, + "thread": 25 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2762037, + "thread": 9 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 2943627, + "thread": 0 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 3057033, + "thread": 21 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 3173589, + "thread": 31 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 3428819, + "thread": 15 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 3457600, + "thread": 17 + } + }, + { + "amount": "369.469056353", + "slot": { + "period": 3690545, + "thread": 30 + } + }, + { + "amount": "369.469056358", + "slot": { + "period": 3945783, + "thread": 1 + } + } + ], + "AU1287ugaSynLNjCfh1M7mDX7uamQnaDmdJw4YSUioS2qQ9uStXhH": [ + { + "amount": "61.720549925", + "slot": { + "period": 17434, + "thread": 5 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 288596, + "thread": 26 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 378518, + "thread": 22 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 596999, + "thread": 21 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 781801, + "thread": 29 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 899020, + "thread": 3 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1120699, + "thread": 19 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1235389, + "thread": 14 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1385471, + "thread": 23 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1548218, + "thread": 4 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1790787, + "thread": 19 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 1875503, + "thread": 12 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2126815, + "thread": 1 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2224734, + "thread": 6 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2405692, + "thread": 28 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2479584, + "thread": 28 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2626135, + "thread": 6 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 2948288, + "thread": 19 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 3073575, + "thread": 7 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 3151700, + "thread": 6 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 3316197, + "thread": 21 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 3568963, + "thread": 11 + } + }, + { + "amount": "61.720549925", + "slot": { + "period": 3632388, + "thread": 16 + } + }, + { + "amount": "61.720549932", + "slot": { + "period": 3888485, + "thread": 5 + } + } + ], + "AU1288NJXdYA8uequiFx8mEFoV7kgtBkeNyJSma4mRg4GzDx4RdDN": [ + { + "amount": "130.479751533", + "slot": { + "period": 161337, + "thread": 1 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 198513, + "thread": 13 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 375239, + "thread": 4 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 620161, + "thread": 23 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 656265, + "thread": 23 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 874234, + "thread": 21 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1068350, + "thread": 14 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1166001, + "thread": 20 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1476565, + "thread": 28 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1505897, + "thread": 28 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1728578, + "thread": 5 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 1906458, + "thread": 5 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2043246, + "thread": 20 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2196194, + "thread": 18 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2340306, + "thread": 12 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2465276, + "thread": 11 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2691485, + "thread": 22 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 2854953, + "thread": 9 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 3072073, + "thread": 11 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 3221160, + "thread": 25 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 3306999, + "thread": 20 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 3568586, + "thread": 29 + } + }, + { + "amount": "130.479751533", + "slot": { + "period": 3622263, + "thread": 17 + } + }, + { + "amount": "130.479751537", + "slot": { + "period": 3864692, + "thread": 18 + } + } + ], + "AU1288o4cSaNMpnAg4FRs69NWtFSdHeqTxaRwtp1wPpGuSrjmg6Jq": [ + { + "amount": "80.938206869", + "slot": { + "period": 156063, + "thread": 14 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 228508, + "thread": 9 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 471892, + "thread": 9 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 607399, + "thread": 0 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 749912, + "thread": 4 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 849201, + "thread": 2 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1126897, + "thread": 22 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1278583, + "thread": 27 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1463957, + "thread": 3 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1584690, + "thread": 29 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1776469, + "thread": 6 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 1949958, + "thread": 3 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2098123, + "thread": 30 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2249899, + "thread": 25 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2324673, + "thread": 13 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2465470, + "thread": 30 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2775689, + "thread": 1 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 2919228, + "thread": 23 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 3104831, + "thread": 14 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 3193872, + "thread": 4 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 3406265, + "thread": 10 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 3461249, + "thread": 14 + } + }, + { + "amount": "80.938206869", + "slot": { + "period": 3717204, + "thread": 3 + } + }, + { + "amount": "80.938206865", + "slot": { + "period": 3884928, + "thread": 29 + } + } + ], + "AU128AXVXQbhZVTWCsFR1LZ6yCBpPRYosyvLRfvNZ5XUzNmc96gwp": [ + { + "amount": "191.167024545", + "slot": { + "period": 136720, + "thread": 29 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 197540, + "thread": 16 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 428618, + "thread": 25 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 499616, + "thread": 18 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 707466, + "thread": 26 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 914930, + "thread": 14 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1056354, + "thread": 3 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1190604, + "thread": 26 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1346077, + "thread": 20 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1607665, + "thread": 0 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1799272, + "thread": 19 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 1954405, + "thread": 3 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2115331, + "thread": 7 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2220585, + "thread": 0 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2453657, + "thread": 31 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2547733, + "thread": 29 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2719795, + "thread": 2 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2902611, + "thread": 5 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 2954981, + "thread": 14 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 3187711, + "thread": 3 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 3376999, + "thread": 2 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 3538129, + "thread": 24 + } + }, + { + "amount": "191.167024545", + "slot": { + "period": 3700511, + "thread": 19 + } + }, + { + "amount": "191.167024541", + "slot": { + "period": 3882626, + "thread": 29 + } + } + ], + "AU128AuhKdvNiJ7CnNVcXG1KAmR1oDyawADT2sEcaPugyVfzMn7Ut": [ + { + "amount": "376.293273391", + "slot": { + "period": 24584, + "thread": 8 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 224080, + "thread": 9 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 447790, + "thread": 4 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 500275, + "thread": 13 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 777670, + "thread": 5 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 882372, + "thread": 20 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1131399, + "thread": 24 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1211747, + "thread": 22 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1398450, + "thread": 10 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1593405, + "thread": 9 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1709886, + "thread": 1 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 1903699, + "thread": 15 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2104489, + "thread": 17 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2154500, + "thread": 21 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2435213, + "thread": 31 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2500843, + "thread": 23 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2638848, + "thread": 10 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2952917, + "thread": 8 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 2981440, + "thread": 14 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 3279573, + "thread": 15 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 3364400, + "thread": 23 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 3529257, + "thread": 3 + } + }, + { + "amount": "376.293273391", + "slot": { + "period": 3738318, + "thread": 22 + } + }, + { + "amount": "376.293273397", + "slot": { + "period": 3806367, + "thread": 7 + } + } + ], + "AU128Bk9gy2sKoSPLMeSWPQAp2v9NK5K9aEagmDUjY3Pwgg5DY7im": [ + { + "amount": "234.445466963", + "slot": { + "period": 60644, + "thread": 21 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 231411, + "thread": 31 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 343512, + "thread": 0 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 604897, + "thread": 23 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 790234, + "thread": 11 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 834852, + "thread": 21 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1121098, + "thread": 6 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1204399, + "thread": 11 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1372083, + "thread": 7 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1531391, + "thread": 20 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1764274, + "thread": 27 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1956356, + "thread": 19 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 1999344, + "thread": 4 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 2167519, + "thread": 29 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 2457649, + "thread": 29 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 2521364, + "thread": 26 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 2682917, + "thread": 29 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 2922967, + "thread": 2 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 3080703, + "thread": 20 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 3216035, + "thread": 2 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 3411042, + "thread": 7 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 3592998, + "thread": 9 + } + }, + { + "amount": "234.445466963", + "slot": { + "period": 3671777, + "thread": 17 + } + }, + { + "amount": "234.445466956", + "slot": { + "period": 3792572, + "thread": 25 + } + } + ], + "AU128BpcF8TMCTp7ZacuPV4vAkfswbHD1GtShkE3JVDgPdWtQP4GN": [ + { + "amount": "279.128877291", + "slot": { + "period": 101174, + "thread": 5 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 287145, + "thread": 31 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 487214, + "thread": 20 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 635783, + "thread": 2 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 678420, + "thread": 11 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 888682, + "thread": 22 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1109207, + "thread": 17 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1169665, + "thread": 14 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1356104, + "thread": 14 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1526315, + "thread": 1 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1708277, + "thread": 13 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 1937794, + "thread": 23 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2015478, + "thread": 5 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2147864, + "thread": 4 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2436374, + "thread": 30 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2543364, + "thread": 18 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2644959, + "thread": 20 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 2853268, + "thread": 4 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 3052447, + "thread": 16 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 3280806, + "thread": 5 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 3306126, + "thread": 11 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 3574562, + "thread": 23 + } + }, + { + "amount": "279.128877291", + "slot": { + "period": 3733356, + "thread": 21 + } + }, + { + "amount": "279.128877280", + "slot": { + "period": 3823246, + "thread": 18 + } + } + ], + "AU128CNE5G5xEFNCAQuYejjdigzFvN2pbASrxm952wACVE2iiptLe": [ + { + "amount": "162.593005729", + "slot": { + "period": 158323, + "thread": 30 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 234931, + "thread": 16 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 413240, + "thread": 29 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 519460, + "thread": 20 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 775044, + "thread": 28 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 832813, + "thread": 15 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1111057, + "thread": 31 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1178174, + "thread": 7 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1391043, + "thread": 18 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1513645, + "thread": 20 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1731326, + "thread": 22 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 1914759, + "thread": 22 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2119920, + "thread": 18 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2202406, + "thread": 12 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2326016, + "thread": 15 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2528425, + "thread": 29 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2760253, + "thread": 19 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2931851, + "thread": 4 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 2992053, + "thread": 18 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 3226349, + "thread": 0 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 3324430, + "thread": 13 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 3459672, + "thread": 29 + } + }, + { + "amount": "162.593005729", + "slot": { + "period": 3767583, + "thread": 15 + } + }, + { + "amount": "162.593005722", + "slot": { + "period": 3902766, + "thread": 30 + } + } + ], + "AU128CQ7vNEt7J1Ssv7ApPJKh3Y3YjtrnWTQhyasHjmrn3UcjgBdM": [ + { + "amount": "199.703587589", + "slot": { + "period": 52067, + "thread": 3 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 231085, + "thread": 4 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 462952, + "thread": 4 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 587835, + "thread": 22 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 738568, + "thread": 26 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 876063, + "thread": 23 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1059004, + "thread": 14 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1278495, + "thread": 9 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1403932, + "thread": 30 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1643328, + "thread": 21 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1764612, + "thread": 15 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 1949101, + "thread": 29 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2081547, + "thread": 21 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2252385, + "thread": 12 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2307298, + "thread": 23 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2618858, + "thread": 12 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2685361, + "thread": 25 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2933242, + "thread": 26 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 2975731, + "thread": 30 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 3236922, + "thread": 6 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 3353486, + "thread": 9 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 3542788, + "thread": 23 + } + }, + { + "amount": "199.703587589", + "slot": { + "period": 3637609, + "thread": 19 + } + }, + { + "amount": "199.703587588", + "slot": { + "period": 3780788, + "thread": 5 + } + } + ], + "AU128DckTjgGyRY81P2tbDzsuXGLo5zBK8meVQxJoPcPAgvp8yZsF": [ + { + "amount": "147.272371499", + "slot": { + "period": 25537, + "thread": 6 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 305828, + "thread": 31 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 385829, + "thread": 8 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 639830, + "thread": 12 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 780649, + "thread": 3 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 956151, + "thread": 12 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1021477, + "thread": 13 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1225958, + "thread": 23 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1422569, + "thread": 30 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1612756, + "thread": 3 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1757720, + "thread": 16 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 1931175, + "thread": 27 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2025398, + "thread": 3 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2277438, + "thread": 4 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2362369, + "thread": 15 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2589076, + "thread": 14 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2662572, + "thread": 14 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2931475, + "thread": 5 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 2993026, + "thread": 9 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 3213638, + "thread": 15 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 3434903, + "thread": 26 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 3487149, + "thread": 12 + } + }, + { + "amount": "147.272371499", + "slot": { + "period": 3686844, + "thread": 31 + } + }, + { + "amount": "147.272371500", + "slot": { + "period": 3905439, + "thread": 31 + } + } + ], + "AU128Dibct9to3gn1F4QDRpEFMgJ3sxAyz2c5SVHL3a99oDDXEc8t": [ + { + "amount": "129.301301472", + "slot": { + "period": 81161, + "thread": 25 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 224367, + "thread": 7 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 421256, + "thread": 15 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 494122, + "thread": 26 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 751491, + "thread": 12 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 900542, + "thread": 3 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1018846, + "thread": 2 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1275720, + "thread": 23 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1382849, + "thread": 3 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1530128, + "thread": 15 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1745989, + "thread": 31 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 1823908, + "thread": 19 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2038587, + "thread": 11 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2246105, + "thread": 13 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2359822, + "thread": 10 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2473920, + "thread": 10 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2719679, + "thread": 14 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2918570, + "thread": 23 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 2999531, + "thread": 31 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 3197898, + "thread": 1 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 3302173, + "thread": 2 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 3524978, + "thread": 4 + } + }, + { + "amount": "129.301301472", + "slot": { + "period": 3703714, + "thread": 19 + } + }, + { + "amount": "129.301301480", + "slot": { + "period": 3896078, + "thread": 26 + } + } + ], + "AU128DqtE2SbDEF8LUt9gF4NKsWmcMADN4a4ruTG7UxPy6PKfDzGv": [ + { + "amount": "320.681095016", + "slot": { + "period": 20908, + "thread": 14 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 291233, + "thread": 21 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 370528, + "thread": 31 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 504969, + "thread": 20 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 670595, + "thread": 30 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 849123, + "thread": 29 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1037932, + "thread": 20 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1251179, + "thread": 5 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1378865, + "thread": 10 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1621051, + "thread": 10 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1760783, + "thread": 23 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 1972670, + "thread": 10 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2052863, + "thread": 0 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2287553, + "thread": 29 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2418909, + "thread": 25 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2613646, + "thread": 31 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2659078, + "thread": 14 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 2820102, + "thread": 31 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 3036330, + "thread": 17 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 3142419, + "thread": 25 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 3425360, + "thread": 17 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 3531700, + "thread": 5 + } + }, + { + "amount": "320.681095016", + "slot": { + "period": 3725119, + "thread": 26 + } + }, + { + "amount": "320.681095025", + "slot": { + "period": 3918511, + "thread": 26 + } + } + ], + "AU128EJgUgAsyux9sBZyG3j7hjx36ucxNszK84m5meoyS5ZYT26b7": [ + { + "amount": "147.763355410", + "slot": { + "period": 10954, + "thread": 16 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 200994, + "thread": 28 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 337286, + "thread": 16 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 526738, + "thread": 30 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 770683, + "thread": 20 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 976377, + "thread": 26 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1093969, + "thread": 5 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1216881, + "thread": 19 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1442040, + "thread": 21 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1598777, + "thread": 27 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1783329, + "thread": 11 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1971164, + "thread": 17 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 1979262, + "thread": 30 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 2207773, + "thread": 29 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 2331781, + "thread": 29 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 2565474, + "thread": 19 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 2729817, + "thread": 17 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 2851208, + "thread": 25 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 3024452, + "thread": 27 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 3280804, + "thread": 6 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 3380597, + "thread": 10 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 3482793, + "thread": 28 + } + }, + { + "amount": "147.763355410", + "slot": { + "period": 3686638, + "thread": 2 + } + }, + { + "amount": "147.763355409", + "slot": { + "period": 3928515, + "thread": 26 + } + } + ], + "AU128F74i1k54KcVvGVh1raaFuPCGN2CsKFpRQzJFbN4j7JGMC35Z": [ + { + "amount": "102.387476568", + "slot": { + "period": 41306, + "thread": 28 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 321584, + "thread": 13 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 373843, + "thread": 14 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 643968, + "thread": 20 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 795269, + "thread": 9 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 970165, + "thread": 1 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1128867, + "thread": 24 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1244411, + "thread": 14 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1417909, + "thread": 30 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1499044, + "thread": 19 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1706897, + "thread": 7 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 1974415, + "thread": 24 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2133069, + "thread": 29 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2204592, + "thread": 22 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2460434, + "thread": 3 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2537494, + "thread": 31 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2686977, + "thread": 13 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2884902, + "thread": 10 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 2987313, + "thread": 13 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 3257170, + "thread": 27 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 3389079, + "thread": 27 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 3565226, + "thread": 22 + } + }, + { + "amount": "102.387476568", + "slot": { + "period": 3714878, + "thread": 4 + } + }, + { + "amount": "102.387476558", + "slot": { + "period": 3838124, + "thread": 13 + } + } + ], + "AU128GPMBbDkWfGEKYx7KDBC7pUqh9zHd9jdmS9pYwLzghFZCuqo6": [ + { + "amount": "419.369213227", + "slot": { + "period": 124595, + "thread": 2 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 177189, + "thread": 28 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 416854, + "thread": 22 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 496793, + "thread": 28 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 712194, + "thread": 20 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 959636, + "thread": 13 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1028378, + "thread": 3 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1315006, + "thread": 4 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1452538, + "thread": 31 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1495623, + "thread": 10 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1658181, + "thread": 30 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1815596, + "thread": 14 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 1997063, + "thread": 14 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 2164723, + "thread": 24 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 2324114, + "thread": 28 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 2528758, + "thread": 31 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 2723441, + "thread": 6 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 2933171, + "thread": 8 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 3119241, + "thread": 28 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 3187807, + "thread": 13 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 3447815, + "thread": 6 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 3583382, + "thread": 0 + } + }, + { + "amount": "419.369213227", + "slot": { + "period": 3690470, + "thread": 30 + } + }, + { + "amount": "419.369213225", + "slot": { + "period": 3928998, + "thread": 2 + } + } + ], + "AU128GUBfD75s8xkvaABwf57Ubtj4e9W146FKpQheskjrGp5z2hpN": [ + { + "amount": "78.507042826", + "slot": { + "period": 76233, + "thread": 1 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 238595, + "thread": 18 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 384464, + "thread": 14 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 549184, + "thread": 0 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 781597, + "thread": 23 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 876043, + "thread": 23 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1144934, + "thread": 27 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1178535, + "thread": 26 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1364554, + "thread": 0 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1610841, + "thread": 26 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1744011, + "thread": 19 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 1975189, + "thread": 19 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2123792, + "thread": 29 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2210869, + "thread": 16 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2382226, + "thread": 3 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2536117, + "thread": 14 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2627369, + "thread": 29 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 2838207, + "thread": 4 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 3024799, + "thread": 28 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 3285942, + "thread": 7 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 3343512, + "thread": 8 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 3569271, + "thread": 8 + } + }, + { + "amount": "78.507042826", + "slot": { + "period": 3639987, + "thread": 13 + } + }, + { + "amount": "78.507042817", + "slot": { + "period": 3918893, + "thread": 9 + } + } + ], + "AU128GZGQWVe1eSjRp1PsBcktu2vWfpPsJ14HaexgF2CVuo14uZ1f": [ + { + "amount": "550.338089233", + "slot": { + "period": 129905, + "thread": 9 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 252517, + "thread": 25 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 470081, + "thread": 1 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 628952, + "thread": 14 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 723865, + "thread": 1 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 858504, + "thread": 24 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1061100, + "thread": 27 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1249564, + "thread": 31 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1437979, + "thread": 30 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1616535, + "thread": 20 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1756026, + "thread": 22 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 1905280, + "thread": 21 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2080534, + "thread": 1 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2292377, + "thread": 28 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2397058, + "thread": 29 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2547293, + "thread": 24 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2647089, + "thread": 21 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 2845045, + "thread": 31 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 3007585, + "thread": 11 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 3211418, + "thread": 5 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 3369559, + "thread": 27 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 3496176, + "thread": 15 + } + }, + { + "amount": "550.338089233", + "slot": { + "period": 3751208, + "thread": 13 + } + }, + { + "amount": "550.338089226", + "slot": { + "period": 3887971, + "thread": 5 + } + } + ], + "AU128GgsWfhfjgxRBtRnFN9u8HDke2AqNJu1Pvn33e5AK5G5LbYY6": [ + { + "amount": "100.082117548", + "slot": { + "period": 37294, + "thread": 2 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 230849, + "thread": 14 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 343726, + "thread": 12 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 583831, + "thread": 27 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 716677, + "thread": 17 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 870791, + "thread": 7 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1054851, + "thread": 29 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1163858, + "thread": 27 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1346583, + "thread": 15 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1583180, + "thread": 1 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1692138, + "thread": 27 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 1965449, + "thread": 5 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2055665, + "thread": 7 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2276051, + "thread": 14 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2415082, + "thread": 16 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2604146, + "thread": 1 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2680854, + "thread": 31 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2940050, + "thread": 28 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 2955258, + "thread": 14 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 3129690, + "thread": 27 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 3300538, + "thread": 15 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 3562455, + "thread": 14 + } + }, + { + "amount": "100.082117548", + "slot": { + "period": 3766918, + "thread": 3 + } + }, + { + "amount": "100.082117559", + "slot": { + "period": 3813969, + "thread": 6 + } + } + ], + "AU128JrqfMMBKoWbr7vveW2yjJ68wUkTX3mijgPKjZ6vw2BTVy2MD": [ + { + "amount": "4874.505115589", + "slot": { + "period": 145449, + "thread": 12 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 267331, + "thread": 20 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 432525, + "thread": 19 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 638352, + "thread": 21 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 815208, + "thread": 9 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 926766, + "thread": 28 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1047496, + "thread": 31 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1158364, + "thread": 7 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1352828, + "thread": 16 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1489983, + "thread": 21 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1749768, + "thread": 12 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 1852157, + "thread": 17 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2048701, + "thread": 13 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2219471, + "thread": 27 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2351049, + "thread": 20 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2613261, + "thread": 29 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2666371, + "thread": 7 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 2811847, + "thread": 5 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 3104555, + "thread": 23 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 3282759, + "thread": 14 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 3316134, + "thread": 20 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 3575680, + "thread": 20 + } + }, + { + "amount": "4874.505115589", + "slot": { + "period": 3740070, + "thread": 0 + } + }, + { + "amount": "4874.505115590", + "slot": { + "period": 3898717, + "thread": 29 + } + } + ], + "AU128KVg6QcPrpmcu7UMvyqtvqZnt1LUG4rSWHVyvHtDka5kDtfza": [ + { + "amount": "589.415442295", + "slot": { + "period": 146197, + "thread": 3 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 323369, + "thread": 14 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 350448, + "thread": 9 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 592638, + "thread": 2 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 760039, + "thread": 21 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 974155, + "thread": 3 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1037333, + "thread": 20 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1241830, + "thread": 29 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1372636, + "thread": 16 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1579951, + "thread": 12 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1790874, + "thread": 11 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 1956714, + "thread": 17 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2134713, + "thread": 1 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2196658, + "thread": 15 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2339970, + "thread": 24 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2465268, + "thread": 23 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2737411, + "thread": 5 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 2874812, + "thread": 29 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 3032109, + "thread": 26 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 3170760, + "thread": 23 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 3429393, + "thread": 11 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 3469047, + "thread": 14 + } + }, + { + "amount": "589.415442295", + "slot": { + "period": 3628094, + "thread": 8 + } + }, + { + "amount": "589.415442302", + "slot": { + "period": 3804277, + "thread": 6 + } + } + ], + "AU128Kp9kkK1Xk1B7cHDtuwGMDZuEwvJrfQnsG79NeYDsRpjHfUox": [ + { + "amount": "235.946341755", + "slot": { + "period": 38697, + "thread": 4 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 288302, + "thread": 16 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 385203, + "thread": 27 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 514050, + "thread": 9 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 691619, + "thread": 26 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 897836, + "thread": 22 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1057790, + "thread": 12 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1225043, + "thread": 30 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1406064, + "thread": 0 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1642772, + "thread": 20 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1685752, + "thread": 12 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 1939158, + "thread": 21 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2028294, + "thread": 23 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2156739, + "thread": 17 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2332025, + "thread": 26 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2506632, + "thread": 27 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2702814, + "thread": 24 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2932728, + "thread": 9 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 2963908, + "thread": 19 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 3212337, + "thread": 11 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 3403594, + "thread": 9 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 3542634, + "thread": 17 + } + }, + { + "amount": "235.946341755", + "slot": { + "period": 3726123, + "thread": 24 + } + }, + { + "amount": "235.946341744", + "slot": { + "period": 3906296, + "thread": 13 + } + } + ], + "AU128KpDjp1hyLYPD3JUijYDrFwnqxv1JrZncuVnsPoYArcLq2imX": [ + { + "amount": "94.749252627", + "slot": { + "period": 40556, + "thread": 1 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 200743, + "thread": 12 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 483318, + "thread": 22 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 534806, + "thread": 18 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 794692, + "thread": 13 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 870452, + "thread": 27 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1048297, + "thread": 10 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1204178, + "thread": 2 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1417665, + "thread": 20 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1569293, + "thread": 14 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1703504, + "thread": 18 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 1889347, + "thread": 22 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2134159, + "thread": 30 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2279320, + "thread": 1 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2462378, + "thread": 0 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2466395, + "thread": 9 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2709307, + "thread": 17 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2814775, + "thread": 14 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 2969150, + "thread": 3 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 3182756, + "thread": 2 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 3389450, + "thread": 23 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 3507485, + "thread": 1 + } + }, + { + "amount": "94.749252627", + "slot": { + "period": 3642544, + "thread": 9 + } + }, + { + "amount": "94.749252625", + "slot": { + "period": 3835584, + "thread": 31 + } + } + ], + "AU128KteThGgru5BiunjvzNerokPzxGhfYccFCAPqq3nDodmfHrz": [ + { + "amount": "131.174518201", + "slot": { + "period": 117274, + "thread": 31 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 205130, + "thread": 29 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 417528, + "thread": 6 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 537937, + "thread": 23 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 820533, + "thread": 8 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 849935, + "thread": 6 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1055953, + "thread": 9 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1163313, + "thread": 26 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1340107, + "thread": 10 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1565722, + "thread": 3 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1724310, + "thread": 5 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1891385, + "thread": 25 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 1994531, + "thread": 29 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 2243342, + "thread": 14 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 2396527, + "thread": 0 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 2493443, + "thread": 26 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 2670060, + "thread": 13 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 2942072, + "thread": 30 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 3026424, + "thread": 13 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 3191135, + "thread": 20 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 3314025, + "thread": 16 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 3538318, + "thread": 31 + } + }, + { + "amount": "131.174518201", + "slot": { + "period": 3719121, + "thread": 24 + } + }, + { + "amount": "131.174518200", + "slot": { + "period": 3822813, + "thread": 9 + } + } + ], + "AU128L8FpP6qNaAM8wosdMZbRGW1RsMZFDRMvHCoBkqj1YWAtCJub": [ + { + "amount": "146.883706889", + "slot": { + "period": 142509, + "thread": 12 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 289085, + "thread": 0 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 482837, + "thread": 12 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 532135, + "thread": 10 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 786477, + "thread": 11 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 865737, + "thread": 24 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1111412, + "thread": 5 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1315842, + "thread": 14 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1347559, + "thread": 31 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1610855, + "thread": 16 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1798570, + "thread": 24 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 1829334, + "thread": 19 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2024629, + "thread": 8 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2224915, + "thread": 16 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2420132, + "thread": 23 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2565727, + "thread": 4 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2698295, + "thread": 11 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 2849705, + "thread": 19 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 3054916, + "thread": 27 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 3199640, + "thread": 8 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 3373624, + "thread": 17 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 3476504, + "thread": 31 + } + }, + { + "amount": "146.883706889", + "slot": { + "period": 3645328, + "thread": 14 + } + }, + { + "amount": "146.883706884", + "slot": { + "period": 3838089, + "thread": 26 + } + } + ], + "AU128LXo9ibmyjJ3qqLYKdTinXzxetrjiDcZFamBXCbZ4L7bD2Xj8": [ + { + "amount": "356.457039758", + "slot": { + "period": 24689, + "thread": 12 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 272548, + "thread": 0 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 366244, + "thread": 22 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 528733, + "thread": 11 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 753960, + "thread": 31 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 939584, + "thread": 5 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1100186, + "thread": 29 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1253982, + "thread": 29 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1434119, + "thread": 4 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1599027, + "thread": 1 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1707343, + "thread": 20 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 1818439, + "thread": 3 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2070163, + "thread": 1 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2192395, + "thread": 29 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2452008, + "thread": 28 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2605059, + "thread": 11 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2761710, + "thread": 16 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 2852181, + "thread": 24 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 3092460, + "thread": 20 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 3142138, + "thread": 29 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 3333487, + "thread": 12 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 3601883, + "thread": 15 + } + }, + { + "amount": "356.457039758", + "slot": { + "period": 3669437, + "thread": 26 + } + }, + { + "amount": "356.457039749", + "slot": { + "period": 3876325, + "thread": 13 + } + } + ], + "AU128M4WbUMBXouRCexwW7TuR6f4NzuGXdy6GamZZC4BwswdTt38P": [ + { + "amount": "185.471637132", + "slot": { + "period": 40831, + "thread": 19 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 187655, + "thread": 31 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 373893, + "thread": 8 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 506887, + "thread": 31 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 738618, + "thread": 1 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 881192, + "thread": 21 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1124140, + "thread": 1 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1185004, + "thread": 7 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1345017, + "thread": 28 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1625339, + "thread": 18 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1667818, + "thread": 22 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 1845563, + "thread": 24 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2142719, + "thread": 25 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2266221, + "thread": 17 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2458479, + "thread": 4 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2518199, + "thread": 7 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2708459, + "thread": 11 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 2886189, + "thread": 31 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 3031417, + "thread": 1 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 3183387, + "thread": 2 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 3375740, + "thread": 17 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 3474368, + "thread": 1 + } + }, + { + "amount": "185.471637132", + "slot": { + "period": 3721545, + "thread": 0 + } + }, + { + "amount": "185.471637127", + "slot": { + "period": 3935124, + "thread": 0 + } + } + ], + "AU128MUqPMxeU5VrhVLwjqN5Ncmt6fSJDWubcKbuvxP22PL9atPfW": [ + { + "amount": "316.929903046", + "slot": { + "period": 142187, + "thread": 22 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 274007, + "thread": 0 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 482927, + "thread": 10 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 634722, + "thread": 22 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 664478, + "thread": 20 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 966497, + "thread": 12 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1010945, + "thread": 27 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1240424, + "thread": 18 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1418022, + "thread": 20 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1484356, + "thread": 13 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1795585, + "thread": 21 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 1912897, + "thread": 11 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2097346, + "thread": 8 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2202291, + "thread": 28 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2357801, + "thread": 19 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2609277, + "thread": 28 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2734900, + "thread": 3 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 2876193, + "thread": 5 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 3094484, + "thread": 3 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 3181859, + "thread": 8 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 3410522, + "thread": 12 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 3511890, + "thread": 17 + } + }, + { + "amount": "316.929903046", + "slot": { + "period": 3778739, + "thread": 21 + } + }, + { + "amount": "316.929903058", + "slot": { + "period": 3840412, + "thread": 0 + } + } + ], + "AU128NHaFSUy5nukHFCjYBguUtMRSFmQMiVrbjYZDLtNKtnZChRi6": [ + { + "amount": "100.254580061", + "slot": { + "period": 148077, + "thread": 23 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 169184, + "thread": 9 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 391762, + "thread": 7 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 571344, + "thread": 13 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 726431, + "thread": 17 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 963277, + "thread": 9 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 999857, + "thread": 22 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 1189720, + "thread": 8 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 1393954, + "thread": 8 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 1552688, + "thread": 28 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 1717076, + "thread": 30 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 1910677, + "thread": 26 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2061772, + "thread": 1 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2231326, + "thread": 18 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2401694, + "thread": 31 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2578295, + "thread": 28 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2684621, + "thread": 11 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 2894058, + "thread": 9 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 3095741, + "thread": 4 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 3154901, + "thread": 15 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 3349374, + "thread": 28 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 3556614, + "thread": 25 + } + }, + { + "amount": "100.254580061", + "slot": { + "period": 3771937, + "thread": 23 + } + }, + { + "amount": "100.254580070", + "slot": { + "period": 3832541, + "thread": 22 + } + } + ], + "AU128NQ23Hwu263rsCXH6BSNKsXMFZWout8QDv5CvD4AGr15tExfF": [ + { + "amount": "66.073150277", + "slot": { + "period": 89268, + "thread": 27 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 281049, + "thread": 16 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 392489, + "thread": 9 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 571141, + "thread": 6 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 804143, + "thread": 26 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 911098, + "thread": 7 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1009460, + "thread": 23 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1259443, + "thread": 6 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1342455, + "thread": 17 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1615437, + "thread": 0 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1802689, + "thread": 2 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 1934798, + "thread": 17 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2132509, + "thread": 6 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2186809, + "thread": 26 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2456937, + "thread": 15 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2610403, + "thread": 28 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2740628, + "thread": 2 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2914744, + "thread": 2 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 2973904, + "thread": 24 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 3165489, + "thread": 6 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 3449019, + "thread": 22 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 3472639, + "thread": 0 + } + }, + { + "amount": "66.073150277", + "slot": { + "period": 3716117, + "thread": 13 + } + }, + { + "amount": "66.073150281", + "slot": { + "period": 3790128, + "thread": 29 + } + } + ], + "AU128NXNbz1odDgGo2QL1Med4JAds2LKHvmBYptvnHQrJPTtucP9W": [ + { + "amount": "245.793360857", + "slot": { + "period": 124174, + "thread": 9 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 216241, + "thread": 3 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 438077, + "thread": 10 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 501831, + "thread": 29 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 671114, + "thread": 2 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 951690, + "thread": 26 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 995013, + "thread": 3 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 1280599, + "thread": 0 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 1353860, + "thread": 14 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 1583675, + "thread": 20 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 1745633, + "thread": 14 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 1936370, + "thread": 21 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2071166, + "thread": 6 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2234060, + "thread": 25 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2442268, + "thread": 14 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2558273, + "thread": 21 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2655619, + "thread": 17 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 2897532, + "thread": 3 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 3061881, + "thread": 24 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 3241056, + "thread": 16 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 3420868, + "thread": 27 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 3559769, + "thread": 7 + } + }, + { + "amount": "245.793360857", + "slot": { + "period": 3641021, + "thread": 2 + } + }, + { + "amount": "245.793360852", + "slot": { + "period": 3789645, + "thread": 8 + } + } + ], + "AU128Nk7pd1N83yaYZ9Lh3TLGewdz8WGnrS9pDF3xd13WFUY6Ntvf": [ + { + "amount": "256.501844741", + "slot": { + "period": 112561, + "thread": 23 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 318562, + "thread": 0 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 460427, + "thread": 15 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 516429, + "thread": 27 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 706861, + "thread": 0 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 840408, + "thread": 19 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1068080, + "thread": 31 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1238566, + "thread": 6 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1381844, + "thread": 14 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1601687, + "thread": 26 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1682288, + "thread": 5 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1957430, + "thread": 14 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 1976724, + "thread": 16 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 2183629, + "thread": 30 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 2444585, + "thread": 4 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 2472121, + "thread": 8 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 2704635, + "thread": 31 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 2941985, + "thread": 15 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 3066544, + "thread": 4 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 3227069, + "thread": 3 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 3312169, + "thread": 27 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 3459359, + "thread": 2 + } + }, + { + "amount": "256.501844741", + "slot": { + "period": 3764447, + "thread": 11 + } + }, + { + "amount": "256.501844738", + "slot": { + "period": 3824442, + "thread": 5 + } + } + ], + "AU128NyjMKBafriwH5k3efZFnyTayfnbyXbKYFvLBcYPjNp9WHA9M": [ + { + "amount": "115.461094268", + "slot": { + "period": 77449, + "thread": 29 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 196214, + "thread": 0 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 400913, + "thread": 11 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 551274, + "thread": 2 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 662809, + "thread": 23 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 847468, + "thread": 9 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1126313, + "thread": 31 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1168586, + "thread": 18 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1319809, + "thread": 1 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1551395, + "thread": 17 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1777678, + "thread": 0 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 1960978, + "thread": 30 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2008165, + "thread": 13 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2170634, + "thread": 20 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2431407, + "thread": 5 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2556992, + "thread": 11 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2781785, + "thread": 16 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 2853489, + "thread": 12 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 3008032, + "thread": 29 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 3160200, + "thread": 31 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 3424288, + "thread": 28 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 3491717, + "thread": 18 + } + }, + { + "amount": "115.461094268", + "slot": { + "period": 3650532, + "thread": 22 + } + }, + { + "amount": "115.461094277", + "slot": { + "period": 3895515, + "thread": 18 + } + } + ], + "AU128P23f8fRro6Lr9MqkDEQqbv78yiQbcn5XvnHoG9vDo6tbWWMQ": [ + { + "amount": "81.049079027", + "slot": { + "period": 91871, + "thread": 4 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 266257, + "thread": 26 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 404651, + "thread": 13 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 600934, + "thread": 21 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 774623, + "thread": 24 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 932747, + "thread": 24 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1014659, + "thread": 27 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1232398, + "thread": 16 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1426131, + "thread": 20 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1480233, + "thread": 4 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1681498, + "thread": 30 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 1845687, + "thread": 18 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2007313, + "thread": 17 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2203734, + "thread": 27 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2322202, + "thread": 6 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2598786, + "thread": 4 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2628975, + "thread": 8 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2840386, + "thread": 25 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 2981905, + "thread": 7 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 3262006, + "thread": 9 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 3397498, + "thread": 18 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 3456942, + "thread": 9 + } + }, + { + "amount": "81.049079027", + "slot": { + "period": 3715951, + "thread": 26 + } + }, + { + "amount": "81.049079017", + "slot": { + "period": 3802078, + "thread": 12 + } + } + ], + "AU128PBuTgFfgaTpL49Wk1rUuuMmqtk5joHZd6Eje9WUBdGh4r13r": [ + { + "amount": "162.282709922", + "slot": { + "period": 83015, + "thread": 11 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 181574, + "thread": 26 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 347933, + "thread": 22 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 499959, + "thread": 17 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 708420, + "thread": 19 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 886156, + "thread": 3 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1100820, + "thread": 1 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1195297, + "thread": 0 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1393378, + "thread": 6 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1499187, + "thread": 23 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1745750, + "thread": 30 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 1862813, + "thread": 31 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2054376, + "thread": 19 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2214488, + "thread": 22 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2433787, + "thread": 27 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2535196, + "thread": 30 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2733544, + "thread": 29 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2951903, + "thread": 1 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 2988190, + "thread": 15 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 3246394, + "thread": 15 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 3371826, + "thread": 28 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 3495710, + "thread": 8 + } + }, + { + "amount": "162.282709922", + "slot": { + "period": 3779299, + "thread": 27 + } + }, + { + "amount": "162.282709916", + "slot": { + "period": 3944991, + "thread": 26 + } + } + ], + "AU128PMja6NXBp5d4AkVtDLY9JT89TQbstE9XpTTtVkkAvKTxMRE4": [ + { + "amount": "334.888958671", + "slot": { + "period": 68467, + "thread": 14 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 235077, + "thread": 12 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 461178, + "thread": 26 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 649331, + "thread": 24 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 806092, + "thread": 19 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 834948, + "thread": 18 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1067288, + "thread": 7 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1290773, + "thread": 0 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1421634, + "thread": 21 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1646169, + "thread": 19 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1694753, + "thread": 18 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 1815906, + "thread": 31 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2044845, + "thread": 14 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2238721, + "thread": 30 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2363988, + "thread": 17 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2472233, + "thread": 28 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2735725, + "thread": 6 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 2911635, + "thread": 5 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 3061924, + "thread": 4 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 3151066, + "thread": 29 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 3305030, + "thread": 15 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 3474007, + "thread": 28 + } + }, + { + "amount": "334.888958671", + "slot": { + "period": 3724456, + "thread": 21 + } + }, + { + "amount": "334.888958672", + "slot": { + "period": 3858575, + "thread": 22 + } + } + ], + "AU128PW9sSiGR7WKhvwBNCGS8qHEt1vCJSoigFRxC5P41hdxbN5GZ": [ + { + "amount": "213.276694976", + "slot": { + "period": 40291, + "thread": 3 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 313945, + "thread": 31 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 409730, + "thread": 27 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 522731, + "thread": 13 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 790211, + "thread": 16 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 908255, + "thread": 17 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1136643, + "thread": 5 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1197928, + "thread": 18 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1389308, + "thread": 3 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1599962, + "thread": 3 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1696352, + "thread": 17 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 1911426, + "thread": 8 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2045805, + "thread": 14 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2218184, + "thread": 26 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2459172, + "thread": 13 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2528812, + "thread": 3 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2634016, + "thread": 8 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 2927495, + "thread": 30 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 3063223, + "thread": 6 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 3251090, + "thread": 31 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 3299029, + "thread": 31 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 3523197, + "thread": 10 + } + }, + { + "amount": "213.276694976", + "slot": { + "period": 3761419, + "thread": 18 + } + }, + { + "amount": "213.276694967", + "slot": { + "period": 3907007, + "thread": 5 + } + } + ], + "AU128Q3HUzjRHPcqHQN1fLWb7wo7HQGPXoxpxzr86yhQHAf35YJWd": [ + { + "amount": "373.315225656", + "slot": { + "period": 145969, + "thread": 24 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 189394, + "thread": 2 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 350509, + "thread": 26 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 532518, + "thread": 28 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 729083, + "thread": 27 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 947329, + "thread": 27 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1085686, + "thread": 28 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1217507, + "thread": 31 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1449930, + "thread": 6 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1565694, + "thread": 11 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1691032, + "thread": 12 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1920839, + "thread": 23 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 1981446, + "thread": 28 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2204793, + "thread": 24 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2453280, + "thread": 1 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2533280, + "thread": 6 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2766472, + "thread": 16 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2869680, + "thread": 9 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 2968641, + "thread": 21 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 3192700, + "thread": 31 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 3422118, + "thread": 8 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 3597131, + "thread": 16 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 3637634, + "thread": 0 + } + }, + { + "amount": "373.315225656", + "slot": { + "period": 3814159, + "thread": 5 + } + } + ], + "AU128QZvez2qui4UbmYFaX2gfbpjEMjiJ7Xg3LWECYrRHZoktgL75": [ + { + "amount": "124.311703714", + "slot": { + "period": 89711, + "thread": 17 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 247142, + "thread": 6 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 410217, + "thread": 4 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 625655, + "thread": 11 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 766995, + "thread": 7 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 886452, + "thread": 8 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1093720, + "thread": 19 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1270863, + "thread": 14 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1391081, + "thread": 10 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1633646, + "thread": 12 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1794060, + "thread": 26 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 1866841, + "thread": 29 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2068074, + "thread": 20 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2149225, + "thread": 2 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2391028, + "thread": 28 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2485163, + "thread": 28 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2757386, + "thread": 19 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 2807702, + "thread": 26 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3074057, + "thread": 2 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3223280, + "thread": 28 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3348133, + "thread": 0 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3553541, + "thread": 0 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3721587, + "thread": 13 + } + }, + { + "amount": "124.311703714", + "slot": { + "period": 3925701, + "thread": 18 + } + } + ], + "AU128QtqWT16Anydn7vqQeoPY9eUrNGu79uo4uMDQP3pTiQAoYPYU": [ + { + "amount": "88.663004443", + "slot": { + "period": 28530, + "thread": 4 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 212240, + "thread": 17 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 393644, + "thread": 23 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 638431, + "thread": 9 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 721888, + "thread": 9 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 888787, + "thread": 21 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1060003, + "thread": 12 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1210778, + "thread": 22 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1360116, + "thread": 13 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1486487, + "thread": 4 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1665480, + "thread": 3 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1970562, + "thread": 1 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 1979361, + "thread": 29 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 2171915, + "thread": 24 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 2352299, + "thread": 29 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 2468579, + "thread": 10 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 2724545, + "thread": 6 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 2940058, + "thread": 25 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 3108932, + "thread": 26 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 3262983, + "thread": 9 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 3386644, + "thread": 29 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 3540894, + "thread": 19 + } + }, + { + "amount": "88.663004443", + "slot": { + "period": 3696882, + "thread": 12 + } + }, + { + "amount": "88.663004450", + "slot": { + "period": 3851702, + "thread": 14 + } + } + ], + "AU128RKHvcYRtHR1qd7MNqy7AHHHrzCyL927PyuGQqCePt7CdZS7F": [ + { + "amount": "410.589677905", + "slot": { + "period": 50178, + "thread": 23 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 225573, + "thread": 6 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 354550, + "thread": 4 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 502718, + "thread": 10 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 740937, + "thread": 4 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 941024, + "thread": 7 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1122482, + "thread": 23 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1316032, + "thread": 7 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1373722, + "thread": 26 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1581864, + "thread": 0 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1702132, + "thread": 15 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 1959163, + "thread": 11 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2106136, + "thread": 2 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2150441, + "thread": 7 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2368397, + "thread": 25 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2489341, + "thread": 2 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2739948, + "thread": 19 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 2947866, + "thread": 17 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 3077716, + "thread": 13 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 3170788, + "thread": 4 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 3404777, + "thread": 5 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 3609434, + "thread": 6 + } + }, + { + "amount": "410.589677905", + "slot": { + "period": 3723581, + "thread": 0 + } + }, + { + "amount": "410.589677914", + "slot": { + "period": 3904540, + "thread": 8 + } + } + ], + "AU128RQUxXCoDoD1oMYhSPiV91UWBdhzGhKtxA9cexbtBX8v3y4zd": [ + { + "amount": "445.967927203", + "slot": { + "period": 141692, + "thread": 17 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 246127, + "thread": 24 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 359213, + "thread": 1 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 540976, + "thread": 28 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 667799, + "thread": 2 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 868697, + "thread": 29 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1052142, + "thread": 10 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1154553, + "thread": 27 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1365165, + "thread": 13 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1517312, + "thread": 19 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1752754, + "thread": 5 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1871362, + "thread": 20 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 1991352, + "thread": 13 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 2174123, + "thread": 8 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 2406860, + "thread": 26 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 2504965, + "thread": 8 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 2780689, + "thread": 25 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 2822605, + "thread": 14 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 3078786, + "thread": 23 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 3288141, + "thread": 9 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 3290228, + "thread": 20 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 3550502, + "thread": 21 + } + }, + { + "amount": "445.967927203", + "slot": { + "period": 3721967, + "thread": 4 + } + }, + { + "amount": "445.967927196", + "slot": { + "period": 3861374, + "thread": 28 + } + } + ], + "AU128RY1xMbeX5Wnktu2bRjCptdfbrvoti2QuyZC6huQ8jCQ6XRhy": [ + { + "amount": "134.145062531", + "slot": { + "period": 96353, + "thread": 6 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 265329, + "thread": 20 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 335963, + "thread": 16 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 603447, + "thread": 16 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 754252, + "thread": 19 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 946758, + "thread": 28 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 998002, + "thread": 3 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 1181550, + "thread": 29 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 1444209, + "thread": 18 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 1566257, + "thread": 1 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 1729928, + "thread": 29 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 1827167, + "thread": 11 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2000578, + "thread": 18 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2155074, + "thread": 8 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2299371, + "thread": 11 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2592226, + "thread": 1 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2750900, + "thread": 1 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2950227, + "thread": 28 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 2982394, + "thread": 8 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 3265143, + "thread": 23 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 3432317, + "thread": 30 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 3484940, + "thread": 7 + } + }, + { + "amount": "134.145062531", + "slot": { + "period": 3628509, + "thread": 20 + } + }, + { + "amount": "134.145062532", + "slot": { + "period": 3903170, + "thread": 7 + } + } + ], + "AU128SC1m3TFtefyUVLWVpZC1NySnFmYuQionCHtKcCQa9xyBgyMg": [ + { + "amount": "88.636946960", + "slot": { + "period": 79528, + "thread": 7 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 195854, + "thread": 10 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 444805, + "thread": 14 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 530911, + "thread": 9 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 715582, + "thread": 1 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 959561, + "thread": 18 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1133622, + "thread": 10 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1267028, + "thread": 14 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1363453, + "thread": 8 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1484894, + "thread": 22 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1752015, + "thread": 4 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 1832753, + "thread": 17 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2126701, + "thread": 8 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2181977, + "thread": 22 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2328737, + "thread": 10 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2575319, + "thread": 20 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2743390, + "thread": 1 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 2953445, + "thread": 28 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 3117225, + "thread": 6 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 3228968, + "thread": 28 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 3314619, + "thread": 2 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 3605485, + "thread": 31 + } + }, + { + "amount": "88.636946960", + "slot": { + "period": 3639643, + "thread": 5 + } + }, + { + "amount": "88.636946952", + "slot": { + "period": 3836297, + "thread": 11 + } + } + ], + "AU128SiCzUNuAZiTaXPp16tCdoTPdX9cbgezms9KKEZfsqM1gAr4p": [ + { + "amount": "178.426751123", + "slot": { + "period": 11396, + "thread": 12 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 293972, + "thread": 29 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 357242, + "thread": 10 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 539407, + "thread": 1 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 745752, + "thread": 28 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 822471, + "thread": 30 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1135971, + "thread": 14 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1197941, + "thread": 2 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1425085, + "thread": 4 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1612475, + "thread": 4 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1722661, + "thread": 27 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 1862007, + "thread": 8 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2100066, + "thread": 27 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2147155, + "thread": 30 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2337024, + "thread": 16 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2470809, + "thread": 16 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2723348, + "thread": 3 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 2886889, + "thread": 14 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 3081479, + "thread": 22 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 3209738, + "thread": 3 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 3413716, + "thread": 11 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 3558554, + "thread": 18 + } + }, + { + "amount": "178.426751123", + "slot": { + "period": 3620833, + "thread": 6 + } + }, + { + "amount": "178.426751112", + "slot": { + "period": 3785643, + "thread": 29 + } + } + ], + "AU128TRxy68mkQwPayQr8guML5Ua2pw9YZxrLP6FkFPeodny76GCY": [ + { + "amount": "52.422760000", + "slot": { + "period": 111506, + "thread": 19 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 220789, + "thread": 12 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 452075, + "thread": 20 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 559956, + "thread": 23 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 668685, + "thread": 24 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 868980, + "thread": 6 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1148511, + "thread": 20 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1309246, + "thread": 0 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1400834, + "thread": 7 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1537677, + "thread": 4 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1661956, + "thread": 18 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1909021, + "thread": 9 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 1988763, + "thread": 7 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 2190267, + "thread": 11 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 2436064, + "thread": 15 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 2468541, + "thread": 24 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 2768249, + "thread": 8 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 2901433, + "thread": 2 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 3044364, + "thread": 1 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 3194327, + "thread": 31 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 3305688, + "thread": 22 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 3528083, + "thread": 5 + } + }, + { + "amount": "52.422760000", + "slot": { + "period": 3638538, + "thread": 16 + } + }, + { + "amount": "52.422760009", + "slot": { + "period": 3848031, + "thread": 28 + } + } + ], + "AU128To3SP1D66xxNci6pKtMFMLjB5pwVDj5oWPCTJSw9Q56BDL5z": [ + { + "amount": "128.884560312", + "slot": { + "period": 58451, + "thread": 5 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 171833, + "thread": 27 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 381351, + "thread": 14 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 625924, + "thread": 26 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 759037, + "thread": 10 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 877741, + "thread": 4 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1026165, + "thread": 17 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1312100, + "thread": 9 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1320929, + "thread": 0 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1627354, + "thread": 15 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1670751, + "thread": 4 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 1898014, + "thread": 29 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2085581, + "thread": 2 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2180941, + "thread": 6 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2317624, + "thread": 11 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2500350, + "thread": 13 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2714341, + "thread": 30 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 2912570, + "thread": 16 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 3112621, + "thread": 8 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 3261671, + "thread": 22 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 3361815, + "thread": 18 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 3471504, + "thread": 1 + } + }, + { + "amount": "128.884560312", + "slot": { + "period": 3737819, + "thread": 21 + } + }, + { + "amount": "128.884560308", + "slot": { + "period": 3853203, + "thread": 2 + } + } + ], + "AU128UP72hixdM2LyDqXuFQGaPeqD3bkkeMSS91Wck6S2NiTXPDFB": [ + { + "amount": "116.624552420", + "slot": { + "period": 123364, + "thread": 22 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 256287, + "thread": 31 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 338703, + "thread": 2 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 550537, + "thread": 4 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 715550, + "thread": 16 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 973642, + "thread": 3 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1127337, + "thread": 19 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1244260, + "thread": 30 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1412950, + "thread": 5 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1634955, + "thread": 26 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1717832, + "thread": 8 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 1976030, + "thread": 18 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2069770, + "thread": 3 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2169077, + "thread": 11 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2375708, + "thread": 22 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2621847, + "thread": 21 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2751769, + "thread": 13 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 2903127, + "thread": 0 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 3003792, + "thread": 29 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 3172077, + "thread": 13 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 3428697, + "thread": 30 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 3614002, + "thread": 5 + } + }, + { + "amount": "116.624552420", + "slot": { + "period": 3677329, + "thread": 20 + } + }, + { + "amount": "116.624552430", + "slot": { + "period": 3935861, + "thread": 26 + } + } + ], + "AU128VPC5gcdNXfuM8bk8r3Vj9fVsrcwJ1vze2Snw22kMBHDaSCyN": [ + { + "amount": "72.816403153", + "slot": { + "period": 130692, + "thread": 15 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 277811, + "thread": 18 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 426704, + "thread": 18 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 503920, + "thread": 28 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 734185, + "thread": 25 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 958663, + "thread": 12 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1012667, + "thread": 6 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1176485, + "thread": 0 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1338187, + "thread": 28 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1595348, + "thread": 10 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1747042, + "thread": 17 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 1960700, + "thread": 2 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2108579, + "thread": 26 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2233855, + "thread": 10 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2407741, + "thread": 12 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2497979, + "thread": 3 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2721289, + "thread": 1 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 2921506, + "thread": 11 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 3061769, + "thread": 23 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 3268493, + "thread": 18 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 3300679, + "thread": 21 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 3459414, + "thread": 29 + } + }, + { + "amount": "72.816403153", + "slot": { + "period": 3658739, + "thread": 2 + } + }, + { + "amount": "72.816403164", + "slot": { + "period": 3838890, + "thread": 1 + } + } + ], + "AU128X8u5djeizD58NMS4LuQ9AQCTM6YYzGGX5DuhfqdwhzifioMG": [ + { + "amount": "137.198304781", + "slot": { + "period": 121294, + "thread": 28 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 315641, + "thread": 26 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 455104, + "thread": 30 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 650646, + "thread": 26 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 809298, + "thread": 17 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 918173, + "thread": 20 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1078563, + "thread": 26 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1168322, + "thread": 26 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1410139, + "thread": 28 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1599630, + "thread": 19 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1673293, + "thread": 20 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 1826069, + "thread": 21 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2124387, + "thread": 22 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2205464, + "thread": 13 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2350565, + "thread": 5 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2488698, + "thread": 16 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2719970, + "thread": 22 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 2812618, + "thread": 15 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 3058620, + "thread": 3 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 3239810, + "thread": 19 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 3433592, + "thread": 22 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 3459441, + "thread": 11 + } + }, + { + "amount": "137.198304781", + "slot": { + "period": 3719638, + "thread": 6 + } + }, + { + "amount": "137.198304783", + "slot": { + "period": 3897127, + "thread": 3 + } + } + ], + "AU128XYYjD4dSxrYQGyvwx6djx2p9FpWTwz7dtZv7aeKyM1fhKMCp": [ + { + "amount": "97.254636175", + "slot": { + "period": 150881, + "thread": 10 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 209136, + "thread": 31 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 342579, + "thread": 5 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 620281, + "thread": 8 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 819261, + "thread": 29 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 969616, + "thread": 24 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 996432, + "thread": 17 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 1238708, + "thread": 31 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 1362588, + "thread": 18 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 1491896, + "thread": 22 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 1683445, + "thread": 3 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 1952837, + "thread": 20 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2088177, + "thread": 15 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2205304, + "thread": 22 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2341380, + "thread": 24 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2616506, + "thread": 0 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2700420, + "thread": 19 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 2901683, + "thread": 14 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 3117729, + "thread": 24 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 3250960, + "thread": 7 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 3404444, + "thread": 21 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 3517489, + "thread": 18 + } + }, + { + "amount": "97.254636175", + "slot": { + "period": 3696851, + "thread": 26 + } + }, + { + "amount": "97.254636166", + "slot": { + "period": 3925654, + "thread": 3 + } + } + ], + "AU128XawwjftkLAZHoQ3Dm59zAVfuUNGJ8ZsKtRhmxBzZtA7WDQaY": [ + { + "amount": "284.370452125", + "slot": { + "period": 15889, + "thread": 0 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 194460, + "thread": 14 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 387305, + "thread": 15 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 645667, + "thread": 6 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 729796, + "thread": 31 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 850369, + "thread": 4 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1102923, + "thread": 31 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1280985, + "thread": 1 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1372357, + "thread": 13 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1492250, + "thread": 17 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1801750, + "thread": 24 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1935865, + "thread": 22 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 1990414, + "thread": 8 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 2153970, + "thread": 19 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 2455979, + "thread": 22 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 2554882, + "thread": 12 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 2710342, + "thread": 9 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 2883368, + "thread": 27 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 3085929, + "thread": 2 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 3250812, + "thread": 28 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 3388811, + "thread": 13 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 3473953, + "thread": 20 + } + }, + { + "amount": "284.370452125", + "slot": { + "period": 3704331, + "thread": 3 + } + }, + { + "amount": "284.370452128", + "slot": { + "period": 3911834, + "thread": 10 + } + } + ], + "AU128XpMrZemzqJXNMykKxGu3VbMjeXgfr1SekMREktviQiUiN49M": [ + { + "amount": "168.349656026", + "slot": { + "period": 61259, + "thread": 30 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 187682, + "thread": 0 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 399646, + "thread": 29 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 638204, + "thread": 11 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 787185, + "thread": 11 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 849569, + "thread": 14 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1128817, + "thread": 1 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1255706, + "thread": 2 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1362141, + "thread": 31 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1507829, + "thread": 10 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1776469, + "thread": 8 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 1853313, + "thread": 13 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2092387, + "thread": 31 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2192596, + "thread": 31 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2369279, + "thread": 26 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2577505, + "thread": 28 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2665702, + "thread": 15 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 2952004, + "thread": 11 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 3054010, + "thread": 27 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 3131826, + "thread": 19 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 3445682, + "thread": 4 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 3538842, + "thread": 24 + } + }, + { + "amount": "168.349656026", + "slot": { + "period": 3697382, + "thread": 2 + } + }, + { + "amount": "168.349656036", + "slot": { + "period": 3826400, + "thread": 27 + } + } + ], + "AU128YBEbprCzKCmP7Zjv2PwVFu7kNHuafwdvZz9TSz5Ce3WvQUN2": [ + { + "amount": "100.404564868", + "slot": { + "period": 150800, + "thread": 6 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 255869, + "thread": 4 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 369209, + "thread": 6 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 625006, + "thread": 30 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 683039, + "thread": 14 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 871308, + "thread": 6 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1095552, + "thread": 24 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1180609, + "thread": 10 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1335552, + "thread": 20 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1645302, + "thread": 10 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1781564, + "thread": 8 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 1817108, + "thread": 6 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2141300, + "thread": 5 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2151397, + "thread": 2 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2342718, + "thread": 4 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2497317, + "thread": 5 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2754236, + "thread": 21 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2845849, + "thread": 17 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 2975648, + "thread": 15 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 3132739, + "thread": 31 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 3337459, + "thread": 3 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 3569582, + "thread": 9 + } + }, + { + "amount": "100.404564868", + "slot": { + "period": 3688586, + "thread": 3 + } + }, + { + "amount": "100.404564875", + "slot": { + "period": 3909684, + "thread": 19 + } + } + ], + "AU128Ys4a63HN1xpqP7y3hvotHogN2cH78C5Ybch7b9d7rQ2xhqiF": [ + { + "amount": "201.729571526", + "slot": { + "period": 41387, + "thread": 2 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 251821, + "thread": 0 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 400429, + "thread": 27 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 563014, + "thread": 2 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 766739, + "thread": 3 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 935162, + "thread": 21 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 992096, + "thread": 22 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 1262460, + "thread": 15 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 1447451, + "thread": 24 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 1516935, + "thread": 1 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 1715596, + "thread": 0 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 1828982, + "thread": 24 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2102105, + "thread": 20 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2237437, + "thread": 17 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2400993, + "thread": 16 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2591157, + "thread": 30 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2643328, + "thread": 5 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 2903141, + "thread": 25 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 3055074, + "thread": 6 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 3249740, + "thread": 20 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 3440126, + "thread": 25 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 3463885, + "thread": 2 + } + }, + { + "amount": "201.729571526", + "slot": { + "period": 3766719, + "thread": 5 + } + }, + { + "amount": "201.729571529", + "slot": { + "period": 3917939, + "thread": 22 + } + } + ], + "AU128Zxv12fgkcm4wv6zDiSYjDJoDMPaEeQpMxmKqnqdTPUZPq5bt": [ + { + "amount": "57.307097169", + "slot": { + "period": 50274, + "thread": 16 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 309960, + "thread": 3 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 463003, + "thread": 8 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 624680, + "thread": 26 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 744359, + "thread": 13 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 910376, + "thread": 30 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1016401, + "thread": 23 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1221042, + "thread": 19 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1418034, + "thread": 7 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1561340, + "thread": 4 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1712803, + "thread": 1 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 1851063, + "thread": 3 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2041976, + "thread": 31 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2208129, + "thread": 0 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2321331, + "thread": 12 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2495868, + "thread": 27 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2789334, + "thread": 13 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 2932554, + "thread": 15 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 3065391, + "thread": 19 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 3251692, + "thread": 29 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 3317941, + "thread": 26 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 3486042, + "thread": 7 + } + }, + { + "amount": "57.307097169", + "slot": { + "period": 3633000, + "thread": 10 + } + }, + { + "amount": "57.307097172", + "slot": { + "period": 3813275, + "thread": 30 + } + } + ], + "AU128a6vWYRUuMFTsWWotXv2UBf6C8aRTvhE7qBisGmNBTGfPCuXw": [ + { + "amount": "171.777389028", + "slot": { + "period": 138267, + "thread": 26 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 272437, + "thread": 15 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 346990, + "thread": 8 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 576577, + "thread": 28 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 746799, + "thread": 7 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 920801, + "thread": 22 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1131566, + "thread": 7 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1282759, + "thread": 2 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1383235, + "thread": 16 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1574899, + "thread": 26 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1777449, + "thread": 16 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 1837583, + "thread": 31 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2020560, + "thread": 12 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2278372, + "thread": 12 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2453603, + "thread": 28 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2550346, + "thread": 27 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2752286, + "thread": 17 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 2870075, + "thread": 14 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 3062798, + "thread": 31 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 3179731, + "thread": 6 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 3367289, + "thread": 22 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 3523430, + "thread": 7 + } + }, + { + "amount": "171.777389028", + "slot": { + "period": 3769719, + "thread": 11 + } + }, + { + "amount": "171.777389017", + "slot": { + "period": 3817602, + "thread": 29 + } + } + ], + "AU128c63jESYx8bx79bCZt2x5P9VBLogEcETqpgViKwmuteKSxfuL": [ + { + "amount": "54.578479900", + "slot": { + "period": 33549, + "thread": 2 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 172208, + "thread": 0 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 480370, + "thread": 3 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 494874, + "thread": 4 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 810812, + "thread": 21 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 855689, + "thread": 25 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1107942, + "thread": 27 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1293182, + "thread": 14 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1375853, + "thread": 3 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1486484, + "thread": 8 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1673242, + "thread": 12 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 1918909, + "thread": 20 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2063374, + "thread": 12 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2255250, + "thread": 8 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2430303, + "thread": 9 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2616844, + "thread": 1 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2764581, + "thread": 5 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 2920485, + "thread": 1 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 3077578, + "thread": 5 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 3224753, + "thread": 20 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 3349175, + "thread": 16 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 3612668, + "thread": 11 + } + }, + { + "amount": "54.578479900", + "slot": { + "period": 3630665, + "thread": 11 + } + }, + { + "amount": "54.578479904", + "slot": { + "period": 3814716, + "thread": 7 + } + } + ], + "AU128cGRHdKQmU2YLNS5QmkBqdLq2j1RtsbxhpKuQ15LtJJpDioEu": [ + { + "amount": "169.528625964", + "slot": { + "period": 137162, + "thread": 28 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 300886, + "thread": 15 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 369871, + "thread": 6 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 594566, + "thread": 6 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 808164, + "thread": 25 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 829856, + "thread": 22 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1010764, + "thread": 30 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1260645, + "thread": 28 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1420903, + "thread": 29 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1632227, + "thread": 4 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1671319, + "thread": 7 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 1970860, + "thread": 24 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2139547, + "thread": 25 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2236161, + "thread": 11 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2459247, + "thread": 31 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2468839, + "thread": 10 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2646259, + "thread": 19 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 2884051, + "thread": 13 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 3093057, + "thread": 1 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 3225504, + "thread": 17 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 3409584, + "thread": 24 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 3611892, + "thread": 9 + } + }, + { + "amount": "169.528625964", + "slot": { + "period": 3743447, + "thread": 22 + } + }, + { + "amount": "169.528625962", + "slot": { + "period": 3937604, + "thread": 4 + } + } + ], + "AU128d6nQeuiXE3S6RGXmHvgZZSPs3AcoMN4FsonCzDyBykdX6wjo": [ + { + "amount": "467.518041052", + "slot": { + "period": 83503, + "thread": 29 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 209999, + "thread": 28 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 409445, + "thread": 12 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 584892, + "thread": 24 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 785285, + "thread": 21 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 957219, + "thread": 18 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1031585, + "thread": 21 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1245089, + "thread": 19 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1325355, + "thread": 21 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1496005, + "thread": 0 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1720088, + "thread": 2 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 1826810, + "thread": 30 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2023964, + "thread": 20 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2252122, + "thread": 14 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2402254, + "thread": 24 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2607615, + "thread": 29 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2674992, + "thread": 6 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 2830484, + "thread": 19 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 3109717, + "thread": 13 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 3263752, + "thread": 15 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 3415975, + "thread": 19 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 3477664, + "thread": 30 + } + }, + { + "amount": "467.518041052", + "slot": { + "period": 3636833, + "thread": 4 + } + }, + { + "amount": "467.518041041", + "slot": { + "period": 3843028, + "thread": 22 + } + } + ], + "AU128dd3cHwoyLg9vmCYRUjnCKJ5G8jFdtAsVAN7g1bFJNgXnX4HG": [ + { + "amount": "102.519431963", + "slot": { + "period": 151964, + "thread": 7 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 289582, + "thread": 30 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 349234, + "thread": 14 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 632605, + "thread": 3 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 717256, + "thread": 12 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 965141, + "thread": 6 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1107823, + "thread": 29 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1152985, + "thread": 19 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1472002, + "thread": 18 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1532087, + "thread": 6 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1790178, + "thread": 16 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 1830010, + "thread": 2 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2037541, + "thread": 11 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2208728, + "thread": 20 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2297201, + "thread": 17 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2487645, + "thread": 13 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2624910, + "thread": 31 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 2792963, + "thread": 30 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 3088226, + "thread": 16 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 3162727, + "thread": 14 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 3448037, + "thread": 27 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 3493716, + "thread": 12 + } + }, + { + "amount": "102.519431963", + "slot": { + "period": 3714113, + "thread": 13 + } + }, + { + "amount": "102.519431960", + "slot": { + "period": 3841576, + "thread": 5 + } + } + ], + "AU128hPgfokBSnWuGa7pbJwVrXbRoKEJeQXf24GuLuSncUfhLc57W": [ + { + "amount": "151.335791404", + "slot": { + "period": 87900, + "thread": 15 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 204916, + "thread": 20 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 370248, + "thread": 12 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 592087, + "thread": 1 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 787090, + "thread": 8 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 959162, + "thread": 18 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1116961, + "thread": 23 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1279419, + "thread": 27 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1419402, + "thread": 4 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1644987, + "thread": 31 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1754573, + "thread": 28 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 1831229, + "thread": 11 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2010166, + "thread": 31 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2239418, + "thread": 2 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2305286, + "thread": 22 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2497683, + "thread": 3 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2628831, + "thread": 10 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 2838064, + "thread": 24 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 3073434, + "thread": 29 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 3243629, + "thread": 31 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 3300370, + "thread": 25 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 3519911, + "thread": 31 + } + }, + { + "amount": "151.335791404", + "slot": { + "period": 3726106, + "thread": 12 + } + }, + { + "amount": "151.335791410", + "slot": { + "period": 3780220, + "thread": 3 + } + } + ], + "AU128hVSnHHpJbmp5g36f951ZBg4RuwGYkghbuRaaJCZQ9PGj7wch": [ + { + "amount": "144.336797034", + "slot": { + "period": 75031, + "thread": 4 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 230301, + "thread": 6 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 466498, + "thread": 1 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 558132, + "thread": 25 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 751304, + "thread": 22 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 916437, + "thread": 9 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1073557, + "thread": 21 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1273265, + "thread": 8 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1326765, + "thread": 22 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1604819, + "thread": 21 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1766195, + "thread": 11 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1871236, + "thread": 27 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 1991359, + "thread": 10 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 2211011, + "thread": 14 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 2404186, + "thread": 18 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 2582589, + "thread": 31 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 2788792, + "thread": 0 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 2895921, + "thread": 14 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3084873, + "thread": 7 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3252845, + "thread": 27 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3445110, + "thread": 24 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3595984, + "thread": 20 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3687025, + "thread": 22 + } + }, + { + "amount": "144.336797034", + "slot": { + "period": 3884538, + "thread": 14 + } + } + ], + "AU128hbLjng3XE25Le4AcGueSCWLqyyg4143Zton65t76Z3w6jkY5": [ + { + "amount": "69.944199308", + "slot": { + "period": 115332, + "thread": 12 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 206480, + "thread": 21 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 333934, + "thread": 9 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 591326, + "thread": 2 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 761240, + "thread": 24 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 977217, + "thread": 21 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1001787, + "thread": 7 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1201512, + "thread": 7 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1348087, + "thread": 27 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1520716, + "thread": 22 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1653437, + "thread": 19 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 1812069, + "thread": 7 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2031597, + "thread": 19 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2270231, + "thread": 15 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2397064, + "thread": 10 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2523602, + "thread": 16 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2658422, + "thread": 4 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2947799, + "thread": 20 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 2966373, + "thread": 7 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 3242625, + "thread": 26 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 3341835, + "thread": 22 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 3482278, + "thread": 12 + } + }, + { + "amount": "69.944199308", + "slot": { + "period": 3689198, + "thread": 25 + } + }, + { + "amount": "69.944199311", + "slot": { + "period": 3909809, + "thread": 30 + } + } + ], + "AU128hsoefdHQDjGNmymnF7qjr28amWUGEBmXkMnchSXxXxazgZ9E": [ + { + "amount": "69.893387632", + "slot": { + "period": 27997, + "thread": 10 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 299706, + "thread": 5 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 339230, + "thread": 27 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 591304, + "thread": 6 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 654047, + "thread": 2 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 826281, + "thread": 18 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1139672, + "thread": 26 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1281251, + "thread": 9 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1417729, + "thread": 25 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1645557, + "thread": 26 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1671293, + "thread": 2 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 1940435, + "thread": 12 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2104175, + "thread": 5 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2154139, + "thread": 8 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2421809, + "thread": 30 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2611550, + "thread": 12 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2766471, + "thread": 21 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 2928825, + "thread": 16 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 3056903, + "thread": 21 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 3246884, + "thread": 24 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 3332130, + "thread": 19 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 3473148, + "thread": 23 + } + }, + { + "amount": "69.893387632", + "slot": { + "period": 3635956, + "thread": 2 + } + }, + { + "amount": "69.893387627", + "slot": { + "period": 3820099, + "thread": 15 + } + } + ], + "AU128hwK8dA4N8qY2Noevu7m8Jtag7DfcSksZGUdw6swUcok7royL": [ + { + "amount": "320.468139558", + "slot": { + "period": 18860, + "thread": 25 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 286462, + "thread": 23 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 484880, + "thread": 3 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 574160, + "thread": 8 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 761391, + "thread": 17 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 875821, + "thread": 5 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1103963, + "thread": 5 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1234604, + "thread": 19 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1331204, + "thread": 13 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1642091, + "thread": 13 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1807637, + "thread": 9 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 1853718, + "thread": 4 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2114721, + "thread": 8 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2227862, + "thread": 5 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2435235, + "thread": 8 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2622822, + "thread": 25 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2676806, + "thread": 20 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 2812928, + "thread": 7 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 3035464, + "thread": 1 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 3140802, + "thread": 17 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 3344511, + "thread": 23 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 3553991, + "thread": 2 + } + }, + { + "amount": "320.468139558", + "slot": { + "period": 3680417, + "thread": 2 + } + }, + { + "amount": "320.468139555", + "slot": { + "period": 3834764, + "thread": 25 + } + } + ], + "AU128iVAwQy1McZNwVPoxBcL8qTVmutk9nKhWGz5yz1LR1igPBcpJ": [ + { + "amount": "83.604052279", + "slot": { + "period": 23423, + "thread": 19 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 237307, + "thread": 8 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 416556, + "thread": 13 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 565793, + "thread": 15 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 722456, + "thread": 23 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 972514, + "thread": 14 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1068130, + "thread": 21 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1305708, + "thread": 7 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1391099, + "thread": 8 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1504307, + "thread": 1 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1698752, + "thread": 20 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 1864952, + "thread": 19 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2067445, + "thread": 31 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2175645, + "thread": 8 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2345694, + "thread": 22 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2586890, + "thread": 21 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2631385, + "thread": 15 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 2906935, + "thread": 4 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 3065816, + "thread": 30 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 3239563, + "thread": 28 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 3348173, + "thread": 12 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 3576735, + "thread": 20 + } + }, + { + "amount": "83.604052279", + "slot": { + "period": 3697151, + "thread": 16 + } + }, + { + "amount": "83.604052269", + "slot": { + "period": 3897973, + "thread": 20 + } + } + ], + "AU128ibh3dZrxWd9Z3AcQJwXiPZ9QDCFXTyFdcJnjvoZA1iU7cvp6": [ + { + "amount": "194.790908944", + "slot": { + "period": 159859, + "thread": 7 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 186760, + "thread": 0 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 413348, + "thread": 25 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 516506, + "thread": 15 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 697188, + "thread": 21 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 944286, + "thread": 28 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1086369, + "thread": 27 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1165177, + "thread": 26 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1447576, + "thread": 5 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1559397, + "thread": 16 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1799973, + "thread": 6 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 1925679, + "thread": 8 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2075096, + "thread": 0 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2162159, + "thread": 26 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2418690, + "thread": 24 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2586038, + "thread": 16 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2643702, + "thread": 18 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 2941622, + "thread": 30 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 3074649, + "thread": 16 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 3183423, + "thread": 14 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 3446790, + "thread": 22 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 3531528, + "thread": 24 + } + }, + { + "amount": "194.790908944", + "slot": { + "period": 3670718, + "thread": 18 + } + }, + { + "amount": "194.790908934", + "slot": { + "period": 3820806, + "thread": 28 + } + } + ], + "AU128imdjBJhN3fV598JThjGCnWXHrXawCqUioyHdXa6LdN1EpWvM": [ + { + "amount": "159.960885785", + "slot": { + "period": 49405, + "thread": 16 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 268096, + "thread": 16 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 448276, + "thread": 13 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 571316, + "thread": 27 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 819393, + "thread": 17 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 965188, + "thread": 8 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 993329, + "thread": 1 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 1240365, + "thread": 17 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 1382243, + "thread": 19 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 1610065, + "thread": 18 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 1789972, + "thread": 3 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 1860479, + "thread": 14 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2005735, + "thread": 9 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2196359, + "thread": 28 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2301160, + "thread": 16 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2563682, + "thread": 29 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2757946, + "thread": 5 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 2831536, + "thread": 3 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 3086733, + "thread": 30 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 3165035, + "thread": 18 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 3380179, + "thread": 14 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 3555634, + "thread": 29 + } + }, + { + "amount": "159.960885785", + "slot": { + "period": 3768593, + "thread": 1 + } + }, + { + "amount": "159.960885782", + "slot": { + "period": 3909705, + "thread": 10 + } + } + ], + "AU128jAu1uHk9JHJ4yb5wShJSP6hHFYoK3v2YVWv9v4qtaLYVSa9i": [ + { + "amount": "316.240101439", + "slot": { + "period": 13700, + "thread": 7 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 271133, + "thread": 8 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 448516, + "thread": 8 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 544858, + "thread": 22 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 744601, + "thread": 17 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 871790, + "thread": 8 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1102723, + "thread": 13 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1307565, + "thread": 3 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1371092, + "thread": 15 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1556020, + "thread": 19 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1766930, + "thread": 30 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 1833877, + "thread": 5 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2056519, + "thread": 5 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2184899, + "thread": 10 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2420859, + "thread": 9 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2545588, + "thread": 29 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2735426, + "thread": 25 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2822413, + "thread": 13 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 2996888, + "thread": 12 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 3264948, + "thread": 0 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 3406346, + "thread": 13 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 3525030, + "thread": 4 + } + }, + { + "amount": "316.240101439", + "slot": { + "period": 3698201, + "thread": 24 + } + }, + { + "amount": "316.240101429", + "slot": { + "period": 3922067, + "thread": 16 + } + } + ], + "AU128kHhJmkorBmrxojMue3fo1QTPTEnuioKh2rpxJRD2hhJxdaeU": [ + { + "amount": "200.721251562", + "slot": { + "period": 15830, + "thread": 26 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 226206, + "thread": 29 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 353954, + "thread": 25 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 541247, + "thread": 30 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 685407, + "thread": 5 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 864847, + "thread": 7 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1050371, + "thread": 17 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1152610, + "thread": 19 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1459509, + "thread": 0 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1503703, + "thread": 17 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1650850, + "thread": 23 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1915236, + "thread": 25 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 1995138, + "thread": 26 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 2279446, + "thread": 25 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 2367244, + "thread": 24 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 2547055, + "thread": 25 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 2666848, + "thread": 23 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 2888406, + "thread": 30 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 3117234, + "thread": 23 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 3197008, + "thread": 26 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 3381247, + "thread": 19 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 3513005, + "thread": 27 + } + }, + { + "amount": "200.721251562", + "slot": { + "period": 3777966, + "thread": 6 + } + }, + { + "amount": "200.721251561", + "slot": { + "period": 3792474, + "thread": 29 + } + } + ], + "AU128nrnVq6a27jGNpnbH8zE4Rs1XfznJf1uYbDQm5GF6EAJMv2Vm": [ + { + "amount": "519.612762681", + "slot": { + "period": 162023, + "thread": 3 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 246331, + "thread": 9 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 393649, + "thread": 30 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 640121, + "thread": 31 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 744930, + "thread": 27 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 826218, + "thread": 23 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1114056, + "thread": 23 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1160511, + "thread": 4 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1431913, + "thread": 11 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1638031, + "thread": 27 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1773128, + "thread": 11 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 1822227, + "thread": 10 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2039833, + "thread": 11 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2271604, + "thread": 25 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2359350, + "thread": 2 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2523904, + "thread": 15 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2784323, + "thread": 0 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2950710, + "thread": 26 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 2993250, + "thread": 11 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 3215723, + "thread": 1 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 3418016, + "thread": 15 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 3513452, + "thread": 23 + } + }, + { + "amount": "519.612762681", + "slot": { + "period": 3708770, + "thread": 17 + } + }, + { + "amount": "519.612762687", + "slot": { + "period": 3848373, + "thread": 23 + } + } + ], + "AU128o5mj9c39ShuAvcP3njHUoEyYL6gmP2CzevULGg9SMiiS1yVK": [ + { + "amount": "306.773864698", + "slot": { + "period": 93682, + "thread": 4 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 236950, + "thread": 6 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 427662, + "thread": 26 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 561984, + "thread": 14 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 778176, + "thread": 29 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 951932, + "thread": 3 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1010556, + "thread": 26 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1289477, + "thread": 29 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1459696, + "thread": 17 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1618362, + "thread": 22 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1710817, + "thread": 31 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 1914566, + "thread": 17 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2047828, + "thread": 28 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2171098, + "thread": 20 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2399375, + "thread": 27 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2541638, + "thread": 0 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2689768, + "thread": 21 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2841787, + "thread": 16 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 2970258, + "thread": 6 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 3274292, + "thread": 1 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 3440090, + "thread": 22 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 3494130, + "thread": 31 + } + }, + { + "amount": "306.773864698", + "slot": { + "period": 3758730, + "thread": 23 + } + }, + { + "amount": "306.773864699", + "slot": { + "period": 3825966, + "thread": 24 + } + } + ], + "AU128oCKYRmTdEWpPAN9RXVNDFfL243goCP7KNTCHBJVd1MdN2Dbm": [ + { + "amount": "90.752283672", + "slot": { + "period": 141724, + "thread": 5 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 172772, + "thread": 25 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 349443, + "thread": 20 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 587061, + "thread": 0 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 671666, + "thread": 1 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 889922, + "thread": 6 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1065943, + "thread": 4 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1179936, + "thread": 21 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1379817, + "thread": 24 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1489289, + "thread": 10 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1776709, + "thread": 25 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1856715, + "thread": 19 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 1994554, + "thread": 26 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2255270, + "thread": 17 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2305835, + "thread": 2 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2623041, + "thread": 2 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2698171, + "thread": 14 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2908375, + "thread": 15 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 2966878, + "thread": 29 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 3203191, + "thread": 2 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 3420648, + "thread": 21 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 3551004, + "thread": 25 + } + }, + { + "amount": "90.752283672", + "slot": { + "period": 3660239, + "thread": 21 + } + }, + { + "amount": "90.752283684", + "slot": { + "period": 3785769, + "thread": 22 + } + } + ], + "AU128oZUf1MpJzds3LXinM3hDt9s7yXfri2kAD22PLndju45RZiDT": [ + { + "amount": "135.440241716", + "slot": { + "period": 113585, + "thread": 23 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 285387, + "thread": 26 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 435187, + "thread": 12 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 572813, + "thread": 19 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 767768, + "thread": 20 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 939405, + "thread": 27 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1112868, + "thread": 0 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1313184, + "thread": 26 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1384077, + "thread": 30 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1564267, + "thread": 25 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1783274, + "thread": 11 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 1874139, + "thread": 1 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2047044, + "thread": 22 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2184864, + "thread": 4 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2297877, + "thread": 17 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2567446, + "thread": 16 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2759399, + "thread": 6 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 2926393, + "thread": 6 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 3077689, + "thread": 17 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 3145936, + "thread": 31 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 3383270, + "thread": 15 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 3464531, + "thread": 15 + } + }, + { + "amount": "135.440241716", + "slot": { + "period": 3770433, + "thread": 10 + } + }, + { + "amount": "135.440241720", + "slot": { + "period": 3828345, + "thread": 21 + } + } + ], + "AU128ov2K6MNVAafRzhAr6CvVNaM2rbfkYcKVJBggqD5qW3jK6xh1": [ + { + "amount": "109.864036172", + "slot": { + "period": 40307, + "thread": 5 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 271268, + "thread": 4 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 447272, + "thread": 19 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 630641, + "thread": 2 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 801102, + "thread": 9 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 872120, + "thread": 9 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1120603, + "thread": 25 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1235836, + "thread": 27 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1375222, + "thread": 20 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1622412, + "thread": 4 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1655293, + "thread": 3 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 1864942, + "thread": 31 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2057976, + "thread": 30 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2228630, + "thread": 31 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2453614, + "thread": 15 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2609478, + "thread": 7 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2659698, + "thread": 4 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 2795434, + "thread": 26 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 3070099, + "thread": 8 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 3283220, + "thread": 17 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 3300417, + "thread": 16 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 3502802, + "thread": 31 + } + }, + { + "amount": "109.864036172", + "slot": { + "period": 3640279, + "thread": 13 + } + }, + { + "amount": "109.864036183", + "slot": { + "period": 3919532, + "thread": 18 + } + } + ], + "AU128pprYsJQ5XTvdxpiVr4pjbnN7d7gjEvDcNsps5tE9wZFH9X2C": [ + { + "amount": "99.629823998", + "slot": { + "period": 111494, + "thread": 27 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 205793, + "thread": 5 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 443513, + "thread": 0 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 611968, + "thread": 20 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 748838, + "thread": 23 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 930629, + "thread": 25 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1020816, + "thread": 3 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1178038, + "thread": 7 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1412598, + "thread": 22 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1515519, + "thread": 8 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1792052, + "thread": 27 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 1871605, + "thread": 25 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2125302, + "thread": 28 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2184706, + "thread": 26 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2295057, + "thread": 0 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2617308, + "thread": 7 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2633431, + "thread": 21 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 2917528, + "thread": 31 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 3045478, + "thread": 8 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 3170316, + "thread": 3 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 3332535, + "thread": 0 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 3518636, + "thread": 0 + } + }, + { + "amount": "99.629823998", + "slot": { + "period": 3772708, + "thread": 15 + } + }, + { + "amount": "99.629823986", + "slot": { + "period": 3853088, + "thread": 23 + } + } + ], + "AU128quQWXQL2QuoGjhBUeStLC2K3MUCxm2HdBPaYJsEzbv3ByhX5": [ + { + "amount": "88.155181042", + "slot": { + "period": 139061, + "thread": 9 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 320098, + "thread": 3 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 485367, + "thread": 24 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 570211, + "thread": 14 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 779603, + "thread": 31 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 931154, + "thread": 26 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1056265, + "thread": 11 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1205578, + "thread": 6 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1446281, + "thread": 17 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1558377, + "thread": 2 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1710027, + "thread": 15 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 1890607, + "thread": 28 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2017352, + "thread": 5 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2263338, + "thread": 27 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2409736, + "thread": 21 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2511990, + "thread": 24 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2656715, + "thread": 15 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 2812790, + "thread": 26 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 3084246, + "thread": 4 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 3239911, + "thread": 17 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 3422705, + "thread": 7 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 3460586, + "thread": 10 + } + }, + { + "amount": "88.155181042", + "slot": { + "period": 3738049, + "thread": 17 + } + }, + { + "amount": "88.155181046", + "slot": { + "period": 3905396, + "thread": 1 + } + } + ], + "AU128tMcjEuNfvrnR2qm9dmzPrQSgzd1WGpwDaoBM7NYZ5zRPjaQ8": [ + { + "amount": "363.091532948", + "slot": { + "period": 115153, + "thread": 18 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 288066, + "thread": 8 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 402515, + "thread": 29 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 612613, + "thread": 31 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 663462, + "thread": 19 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 880008, + "thread": 12 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1048678, + "thread": 18 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1204526, + "thread": 11 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1344847, + "thread": 3 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1529020, + "thread": 31 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1705636, + "thread": 7 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 1903550, + "thread": 5 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2136747, + "thread": 16 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2293637, + "thread": 12 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2435097, + "thread": 9 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2581135, + "thread": 20 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2754957, + "thread": 0 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2948711, + "thread": 25 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 2972052, + "thread": 4 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 3251406, + "thread": 6 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 3373952, + "thread": 7 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 3596030, + "thread": 29 + } + }, + { + "amount": "363.091532948", + "slot": { + "period": 3765057, + "thread": 31 + } + }, + { + "amount": "363.091532950", + "slot": { + "period": 3789088, + "thread": 8 + } + } + ], + "AU128uU7h1Qw37zxV4tTKgo8QWLTF5QHJZ9ZLdSsgB7zGaBDujk39": [ + { + "amount": "52.463725792", + "slot": { + "period": 157174, + "thread": 28 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 206461, + "thread": 19 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 360827, + "thread": 24 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 590727, + "thread": 7 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 724922, + "thread": 0 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 973671, + "thread": 25 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1135828, + "thread": 3 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1213098, + "thread": 24 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1329333, + "thread": 26 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1505700, + "thread": 19 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1716114, + "thread": 22 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 1942766, + "thread": 3 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2093311, + "thread": 11 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2273548, + "thread": 0 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2432340, + "thread": 11 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2589382, + "thread": 21 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2674421, + "thread": 20 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 2806850, + "thread": 5 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 3040355, + "thread": 27 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 3135219, + "thread": 19 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 3303715, + "thread": 16 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 3493698, + "thread": 8 + } + }, + { + "amount": "52.463725792", + "slot": { + "period": 3679582, + "thread": 0 + } + }, + { + "amount": "52.463725797", + "slot": { + "period": 3881397, + "thread": 13 + } + } + ], + "AU128uVZgdHdtJAY8PNXRE9q2ufsQvsoQDXzEhA8xoQ2DGoWhRGt": [ + { + "amount": "302.658137021", + "slot": { + "period": 95198, + "thread": 21 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 213740, + "thread": 10 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 431006, + "thread": 15 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 613409, + "thread": 25 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 678569, + "thread": 30 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 945425, + "thread": 18 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1061344, + "thread": 24 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1212747, + "thread": 3 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1364315, + "thread": 14 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1644064, + "thread": 20 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1659441, + "thread": 8 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 1971361, + "thread": 27 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2100686, + "thread": 8 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2207540, + "thread": 22 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2312356, + "thread": 29 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2556792, + "thread": 22 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2696075, + "thread": 29 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2904987, + "thread": 4 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 2994497, + "thread": 21 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 3146563, + "thread": 17 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 3417840, + "thread": 15 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 3511470, + "thread": 13 + } + }, + { + "amount": "302.658137021", + "slot": { + "period": 3697228, + "thread": 9 + } + }, + { + "amount": "302.658137015", + "slot": { + "period": 3829731, + "thread": 23 + } + } + ], + "AU128uuunh7LYatMqfjUEBueQwt4MGqNhUya9dXJfwcHy6mFnAYFK": [ + { + "amount": "221.085499780", + "slot": { + "period": 85265, + "thread": 29 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 202581, + "thread": 22 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 345080, + "thread": 31 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 611510, + "thread": 24 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 721058, + "thread": 27 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 849337, + "thread": 2 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1000492, + "thread": 25 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1172983, + "thread": 12 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1408473, + "thread": 23 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1559232, + "thread": 13 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1739781, + "thread": 18 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1936295, + "thread": 13 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 1998601, + "thread": 22 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 2273323, + "thread": 21 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 2454507, + "thread": 31 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 2500250, + "thread": 16 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 2724791, + "thread": 19 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 2873253, + "thread": 29 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 3078073, + "thread": 4 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 3181398, + "thread": 10 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 3338997, + "thread": 0 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 3509740, + "thread": 2 + } + }, + { + "amount": "221.085499780", + "slot": { + "period": 3720274, + "thread": 22 + } + }, + { + "amount": "221.085499769", + "slot": { + "period": 3921224, + "thread": 24 + } + } + ], + "AU128v4j4Bkxio459ZuaUAXqjGcsVZKvePB7ssZsBKHEXWDTTRdGt": [ + { + "amount": "198.316285221", + "slot": { + "period": 62409, + "thread": 10 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 276652, + "thread": 7 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 410728, + "thread": 1 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 648096, + "thread": 8 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 734827, + "thread": 13 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 825686, + "thread": 6 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1012833, + "thread": 25 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1247699, + "thread": 10 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1433153, + "thread": 14 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1585396, + "thread": 23 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1684063, + "thread": 11 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1902618, + "thread": 7 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 1988772, + "thread": 2 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 2284037, + "thread": 31 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 2334050, + "thread": 1 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 2560913, + "thread": 28 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 2755401, + "thread": 9 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 2929439, + "thread": 2 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 3052934, + "thread": 14 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 3221992, + "thread": 15 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 3339146, + "thread": 22 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 3464063, + "thread": 31 + } + }, + { + "amount": "198.316285221", + "slot": { + "period": 3778471, + "thread": 8 + } + }, + { + "amount": "198.316285227", + "slot": { + "period": 3789459, + "thread": 20 + } + } + ], + "AU128vLCmrpVodHZ6beFv7ewZbnkc1p1ZuvoBTiEukcVRhgtiLXNB": [ + { + "amount": "222.999485689", + "slot": { + "period": 51912, + "thread": 30 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 313663, + "thread": 27 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 344233, + "thread": 29 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 638668, + "thread": 28 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 692169, + "thread": 30 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 835143, + "thread": 10 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1137077, + "thread": 17 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1167730, + "thread": 11 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1365170, + "thread": 26 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1575811, + "thread": 8 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1721749, + "thread": 27 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 1895969, + "thread": 27 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2086608, + "thread": 8 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2271729, + "thread": 13 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2348688, + "thread": 14 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2607186, + "thread": 24 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2736041, + "thread": 0 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 2903756, + "thread": 26 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 3060045, + "thread": 6 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 3284521, + "thread": 21 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 3400643, + "thread": 22 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 3510156, + "thread": 24 + } + }, + { + "amount": "222.999485689", + "slot": { + "period": 3751252, + "thread": 30 + } + }, + { + "amount": "222.999485694", + "slot": { + "period": 3817512, + "thread": 21 + } + } + ], + "AU128vbNsgBs8Pc4vgTLawi2atAtq75V515FMn8p75FSAYJgfHpkW": [ + { + "amount": "86.212927472", + "slot": { + "period": 75390, + "thread": 4 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 295309, + "thread": 24 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 447989, + "thread": 8 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 514161, + "thread": 19 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 803605, + "thread": 0 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 899640, + "thread": 12 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1000477, + "thread": 2 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1281930, + "thread": 14 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1399941, + "thread": 28 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1497278, + "thread": 14 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1801943, + "thread": 14 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 1953812, + "thread": 9 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2108134, + "thread": 24 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2180576, + "thread": 2 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2366838, + "thread": 17 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2508000, + "thread": 0 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2777347, + "thread": 4 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2819454, + "thread": 21 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 2957856, + "thread": 7 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 3235853, + "thread": 6 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 3391128, + "thread": 0 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 3459789, + "thread": 18 + } + }, + { + "amount": "86.212927472", + "slot": { + "period": 3733817, + "thread": 17 + } + }, + { + "amount": "86.212927462", + "slot": { + "period": 3807188, + "thread": 26 + } + } + ], + "AU128wB9naxFTMvy4wZ5TJivtHCppkmvhv7zUrYQibW3YCfkVyD3b": [ + { + "amount": "136.559475678", + "slot": { + "period": 96391, + "thread": 10 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 254847, + "thread": 24 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 363471, + "thread": 26 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 558142, + "thread": 0 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 740483, + "thread": 8 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 969688, + "thread": 31 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1144388, + "thread": 2 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1205650, + "thread": 11 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1382670, + "thread": 30 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1601648, + "thread": 10 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1656366, + "thread": 22 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 1882667, + "thread": 1 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2003979, + "thread": 16 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2170205, + "thread": 31 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2359357, + "thread": 7 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2562594, + "thread": 10 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2768050, + "thread": 21 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2801872, + "thread": 30 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 2987583, + "thread": 1 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 3169499, + "thread": 6 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 3289196, + "thread": 15 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 3501050, + "thread": 2 + } + }, + { + "amount": "136.559475678", + "slot": { + "period": 3777351, + "thread": 7 + } + }, + { + "amount": "136.559475672", + "slot": { + "period": 3848572, + "thread": 29 + } + } + ], + "AU128yzDKib6mtuMUvPJp3q9ArCqmKXkeLbvQvQf7JhheLXWAbBv4": [ + { + "amount": "353.614783331", + "slot": { + "period": 27351, + "thread": 27 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 178687, + "thread": 3 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 340719, + "thread": 20 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 626679, + "thread": 0 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 743866, + "thread": 10 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 974754, + "thread": 30 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1012244, + "thread": 25 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1232307, + "thread": 14 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1412320, + "thread": 22 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1575927, + "thread": 25 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1754601, + "thread": 24 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 1952422, + "thread": 13 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2032440, + "thread": 18 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2195396, + "thread": 8 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2426396, + "thread": 13 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2492940, + "thread": 9 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2646385, + "thread": 25 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 2819696, + "thread": 17 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 3016325, + "thread": 2 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 3166977, + "thread": 18 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 3342826, + "thread": 17 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 3523617, + "thread": 3 + } + }, + { + "amount": "353.614783331", + "slot": { + "period": 3654553, + "thread": 13 + } + }, + { + "amount": "353.614783322", + "slot": { + "period": 3893535, + "thread": 1 + } + } + ], + "AU128z2Eicu15ZzGqwdmiFBv9hp7whHXjKV8z25UEyk1KxZMXx9yp": [ + { + "amount": "434.030145400", + "slot": { + "period": 67658, + "thread": 11 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 205739, + "thread": 18 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 474080, + "thread": 5 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 634369, + "thread": 5 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 685324, + "thread": 18 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 889644, + "thread": 28 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1003083, + "thread": 3 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1190653, + "thread": 25 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1376519, + "thread": 11 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1607660, + "thread": 30 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1785788, + "thread": 19 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 1973953, + "thread": 9 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2021719, + "thread": 19 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2156156, + "thread": 27 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2352082, + "thread": 8 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2589042, + "thread": 6 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2713894, + "thread": 3 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 2944836, + "thread": 28 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 3017645, + "thread": 25 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 3128864, + "thread": 15 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 3422055, + "thread": 2 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 3512806, + "thread": 19 + } + }, + { + "amount": "434.030145400", + "slot": { + "period": 3743120, + "thread": 3 + } + }, + { + "amount": "434.030145404", + "slot": { + "period": 3811205, + "thread": 10 + } + } + ], + "AU128z43AnrzwGDbx9tsGB4zxT6aAZKCSsnWgYReEqjQWgvA3irtD": [ + { + "amount": "139.370350050", + "slot": { + "period": 25751, + "thread": 31 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 282370, + "thread": 9 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 336062, + "thread": 8 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 622823, + "thread": 22 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 769796, + "thread": 26 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 971991, + "thread": 20 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1021105, + "thread": 31 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1245495, + "thread": 25 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1385649, + "thread": 30 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1568037, + "thread": 1 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1731540, + "thread": 30 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1832661, + "thread": 9 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 1978671, + "thread": 28 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 2178285, + "thread": 1 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 2329536, + "thread": 5 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 2546651, + "thread": 6 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 2670025, + "thread": 6 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 2943489, + "thread": 4 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3041756, + "thread": 9 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3275315, + "thread": 21 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3422599, + "thread": 17 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3617801, + "thread": 29 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3701385, + "thread": 19 + } + }, + { + "amount": "139.370350050", + "slot": { + "period": 3837645, + "thread": 11 + } + } + ], + "AU1291ncmDTKqnsE6SvGq8d9psA4UppTVx9mx91oN2vu6Nfm9ypmf": [ + { + "amount": "455.139031545", + "slot": { + "period": 122260, + "thread": 24 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 195849, + "thread": 15 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 326076, + "thread": 2 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 517794, + "thread": 26 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 681757, + "thread": 14 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 876147, + "thread": 7 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1140751, + "thread": 19 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1276528, + "thread": 23 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1405105, + "thread": 8 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1581824, + "thread": 13 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1749609, + "thread": 29 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 1922816, + "thread": 8 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2001094, + "thread": 6 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2162691, + "thread": 26 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2414768, + "thread": 3 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2512604, + "thread": 10 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2649904, + "thread": 21 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 2808697, + "thread": 3 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 3074286, + "thread": 25 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 3223703, + "thread": 28 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 3346273, + "thread": 12 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 3514472, + "thread": 24 + } + }, + { + "amount": "455.139031545", + "slot": { + "period": 3751379, + "thread": 11 + } + }, + { + "amount": "455.139031546", + "slot": { + "period": 3792100, + "thread": 12 + } + } + ], + "AU129357aPkLU6yWhW1ZibTg2eTW3dWS3UpnzjUQqsmBxtjz4kXP3": [ + { + "amount": "181.800568673", + "slot": { + "period": 88408, + "thread": 3 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 213035, + "thread": 15 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 404486, + "thread": 6 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 632295, + "thread": 10 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 803693, + "thread": 22 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 928886, + "thread": 13 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1069241, + "thread": 31 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1269645, + "thread": 6 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1418271, + "thread": 1 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1491603, + "thread": 15 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1703591, + "thread": 7 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 1912890, + "thread": 31 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2078491, + "thread": 4 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2259841, + "thread": 25 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2312013, + "thread": 8 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2564524, + "thread": 28 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2715952, + "thread": 13 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 2831760, + "thread": 6 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 3088464, + "thread": 30 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 3131064, + "thread": 27 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 3304710, + "thread": 9 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 3497927, + "thread": 18 + } + }, + { + "amount": "181.800568673", + "slot": { + "period": 3635313, + "thread": 28 + } + }, + { + "amount": "181.800568678", + "slot": { + "period": 3846207, + "thread": 31 + } + } + ], + "AU1293DcDpQobMPknFPgyFBnA3rA8FmQUHULB9qE8USXQwkjz42b3": [ + { + "amount": "167.850649645", + "slot": { + "period": 158079, + "thread": 1 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 319353, + "thread": 4 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 392771, + "thread": 4 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 594895, + "thread": 20 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 791228, + "thread": 18 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 836515, + "thread": 3 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1111249, + "thread": 5 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1223311, + "thread": 6 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1347118, + "thread": 24 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1546713, + "thread": 12 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1719169, + "thread": 14 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 1964928, + "thread": 26 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2039483, + "thread": 23 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2196607, + "thread": 7 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2362804, + "thread": 17 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2535962, + "thread": 0 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2699994, + "thread": 18 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 2927977, + "thread": 2 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 3069275, + "thread": 4 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 3229716, + "thread": 29 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 3380836, + "thread": 8 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 3569815, + "thread": 2 + } + }, + { + "amount": "167.850649645", + "slot": { + "period": 3778743, + "thread": 9 + } + }, + { + "amount": "167.850649653", + "slot": { + "period": 3870172, + "thread": 31 + } + } + ], + "AU1293timyLa4KajqUgrGvayynY8nwZb5oaaMCBm2eq8Pbf7Q1FxA": [ + { + "amount": "459.552079973", + "slot": { + "period": 141040, + "thread": 26 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 205967, + "thread": 14 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 356039, + "thread": 15 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 643006, + "thread": 16 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 724733, + "thread": 27 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 832967, + "thread": 21 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1105640, + "thread": 10 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1263096, + "thread": 15 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1381341, + "thread": 29 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1481748, + "thread": 22 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1665697, + "thread": 30 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 1925272, + "thread": 12 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2047916, + "thread": 1 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2214223, + "thread": 1 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2364404, + "thread": 23 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2466011, + "thread": 15 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2767998, + "thread": 2 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2805169, + "thread": 9 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 2999420, + "thread": 5 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 3255197, + "thread": 30 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 3313800, + "thread": 24 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 3503686, + "thread": 8 + } + }, + { + "amount": "459.552079973", + "slot": { + "period": 3631669, + "thread": 16 + } + }, + { + "amount": "459.552079983", + "slot": { + "period": 3911586, + "thread": 1 + } + } + ], + "AU12945qPfVKq7DmEjdLToekqEQ8pvmGEQfYBTJyrQqQFQSKQCiMQ": [ + { + "amount": "135.317175012", + "slot": { + "period": 40925, + "thread": 19 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 235498, + "thread": 12 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 342432, + "thread": 21 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 539790, + "thread": 2 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 792283, + "thread": 26 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 970911, + "thread": 4 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 984300, + "thread": 5 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 1288336, + "thread": 5 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 1325294, + "thread": 29 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 1504488, + "thread": 12 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 1680241, + "thread": 10 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 1824633, + "thread": 16 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2021097, + "thread": 12 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2269297, + "thread": 1 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2338701, + "thread": 11 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2611568, + "thread": 12 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2712352, + "thread": 2 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 2899322, + "thread": 18 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 3054874, + "thread": 9 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 3260049, + "thread": 4 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 3414705, + "thread": 15 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 3601120, + "thread": 1 + } + }, + { + "amount": "135.317175012", + "slot": { + "period": 3741081, + "thread": 6 + } + }, + { + "amount": "135.317175008", + "slot": { + "period": 3783186, + "thread": 11 + } + } + ], + "AU1294uDQc2KREGV6p3QowL6eCNf76SymepRdXNUDkbHuxSUFhM1P": [ + { + "amount": "146.962313934", + "slot": { + "period": 148304, + "thread": 20 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 171249, + "thread": 5 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 427756, + "thread": 22 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 628294, + "thread": 10 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 804499, + "thread": 21 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 898902, + "thread": 3 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1039769, + "thread": 6 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1271805, + "thread": 27 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1472682, + "thread": 23 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1515671, + "thread": 28 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1744048, + "thread": 25 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 1894905, + "thread": 17 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2028045, + "thread": 16 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2228561, + "thread": 3 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2442546, + "thread": 19 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2532794, + "thread": 16 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2711214, + "thread": 27 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2884460, + "thread": 26 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 2969238, + "thread": 0 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 3267031, + "thread": 9 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 3446307, + "thread": 10 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 3503641, + "thread": 16 + } + }, + { + "amount": "146.962313934", + "slot": { + "period": 3764215, + "thread": 16 + } + }, + { + "amount": "146.962313946", + "slot": { + "period": 3913036, + "thread": 9 + } + } + ], + "AU1295BNvP5yPoj8Q5sU4USn6xTkFHo8GKkbohR6zWTfuLr41nHYf": [ + { + "amount": "94.763408122", + "slot": { + "period": 26134, + "thread": 22 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 252924, + "thread": 17 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 329039, + "thread": 30 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 629150, + "thread": 9 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 722587, + "thread": 4 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 961139, + "thread": 29 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 987254, + "thread": 14 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 1230700, + "thread": 10 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 1478582, + "thread": 18 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 1594445, + "thread": 2 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 1684844, + "thread": 9 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 1947817, + "thread": 1 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2105392, + "thread": 25 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2243289, + "thread": 5 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2448936, + "thread": 5 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2510230, + "thread": 18 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2673911, + "thread": 18 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 2853286, + "thread": 4 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 3097609, + "thread": 26 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 3159808, + "thread": 31 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 3316546, + "thread": 3 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 3467518, + "thread": 9 + } + }, + { + "amount": "94.763408122", + "slot": { + "period": 3770503, + "thread": 9 + } + }, + { + "amount": "94.763408124", + "slot": { + "period": 3913820, + "thread": 26 + } + } + ], + "AU1295rKrZPJ1pQhq3t5NhGuuA1maL5ErQ4gvdBKWpqjaXirFaNQA": [ + { + "amount": "135.272832514", + "slot": { + "period": 158912, + "thread": 11 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 240100, + "thread": 24 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 421819, + "thread": 28 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 512481, + "thread": 25 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 741910, + "thread": 14 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 914266, + "thread": 7 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1135980, + "thread": 25 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1247055, + "thread": 8 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1334868, + "thread": 8 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1613757, + "thread": 2 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1679444, + "thread": 28 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 1963376, + "thread": 1 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2071974, + "thread": 21 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2152111, + "thread": 31 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2390138, + "thread": 9 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2551955, + "thread": 0 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2726219, + "thread": 29 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 2849189, + "thread": 22 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 3070892, + "thread": 25 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 3255590, + "thread": 28 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 3303512, + "thread": 17 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 3603787, + "thread": 3 + } + }, + { + "amount": "135.272832514", + "slot": { + "period": 3773712, + "thread": 17 + } + }, + { + "amount": "135.272832525", + "slot": { + "period": 3840415, + "thread": 1 + } + } + ], + "AU1296v9nwM2YchPrmToo3B9MioCrPtzLBkzJjbzFeeCgfpRws3m": [ + { + "amount": "360.667350595", + "slot": { + "period": 139620, + "thread": 25 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 235608, + "thread": 1 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 448677, + "thread": 3 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 535917, + "thread": 11 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 722626, + "thread": 13 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 872877, + "thread": 10 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1056316, + "thread": 25 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1246392, + "thread": 0 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1422940, + "thread": 6 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1529146, + "thread": 25 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1661890, + "thread": 1 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 1817232, + "thread": 5 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2001372, + "thread": 16 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2153689, + "thread": 27 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2369572, + "thread": 8 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2463031, + "thread": 17 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2656453, + "thread": 30 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 2793565, + "thread": 28 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3101684, + "thread": 6 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3217221, + "thread": 15 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3433354, + "thread": 29 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3487827, + "thread": 5 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3629342, + "thread": 5 + } + }, + { + "amount": "360.667350595", + "slot": { + "period": 3934677, + "thread": 8 + } + } + ], + "AU12971xzgyxE6QWY3vvFX89c4SeXwi2ifcw8bYrwU5xaQeoCPHxA": [ + { + "amount": "221.009514785", + "slot": { + "period": 22291, + "thread": 28 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 270117, + "thread": 21 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 389029, + "thread": 3 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 497519, + "thread": 29 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 749472, + "thread": 28 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 929885, + "thread": 23 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 986030, + "thread": 8 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 1181858, + "thread": 30 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 1409697, + "thread": 1 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 1558110, + "thread": 1 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 1661850, + "thread": 14 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 1974112, + "thread": 5 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2040109, + "thread": 1 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2288400, + "thread": 3 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2366064, + "thread": 0 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2534440, + "thread": 14 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2750560, + "thread": 8 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2934141, + "thread": 4 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 2995930, + "thread": 13 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 3262454, + "thread": 19 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 3352362, + "thread": 26 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 3464914, + "thread": 15 + } + }, + { + "amount": "221.009514785", + "slot": { + "period": 3637782, + "thread": 3 + } + }, + { + "amount": "221.009514778", + "slot": { + "period": 3911570, + "thread": 26 + } + } + ], + "AU1297tYn1fRsJrRsfBgw8CNuE11FLkAae53rGnVVXjZvc6SJoaCE": [ + { + "amount": "218.070608945", + "slot": { + "period": 134966, + "thread": 5 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 210355, + "thread": 21 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 363525, + "thread": 14 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 577797, + "thread": 27 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 819665, + "thread": 24 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 918249, + "thread": 5 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1018226, + "thread": 15 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1150951, + "thread": 20 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1463523, + "thread": 1 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1588967, + "thread": 10 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1772228, + "thread": 27 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 1875365, + "thread": 17 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2134278, + "thread": 7 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2281073, + "thread": 1 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2305366, + "thread": 19 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2494891, + "thread": 9 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2639840, + "thread": 3 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2908718, + "thread": 15 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 2998350, + "thread": 26 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 3209420, + "thread": 4 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 3401966, + "thread": 17 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 3581088, + "thread": 15 + } + }, + { + "amount": "218.070608945", + "slot": { + "period": 3758523, + "thread": 3 + } + }, + { + "amount": "218.070608944", + "slot": { + "period": 3873193, + "thread": 17 + } + } + ], + "AU1297xpw6d2FwwqzxzH3Upfa7hyhNzatAqKXRk7fDTLpT3xdRr2G": [ + { + "amount": "77.344271216", + "slot": { + "period": 65866, + "thread": 8 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 189141, + "thread": 28 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 351869, + "thread": 30 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 533102, + "thread": 30 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 670738, + "thread": 23 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 978251, + "thread": 15 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1126127, + "thread": 6 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1274544, + "thread": 23 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1479113, + "thread": 21 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1610022, + "thread": 2 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1658764, + "thread": 22 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 1923902, + "thread": 18 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2104437, + "thread": 16 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2205400, + "thread": 25 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2344195, + "thread": 1 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2505183, + "thread": 13 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2750914, + "thread": 24 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 2944962, + "thread": 20 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 3106625, + "thread": 13 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 3251611, + "thread": 21 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 3387569, + "thread": 4 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 3549827, + "thread": 17 + } + }, + { + "amount": "77.344271216", + "slot": { + "period": 3637545, + "thread": 20 + } + }, + { + "amount": "77.344271218", + "slot": { + "period": 3924995, + "thread": 14 + } + } + ], + "AU1298HfaYG8f84fuEN3TmWP4VSKFfXVHFuveYSpEiJPiZVwsX6KK": [ + { + "amount": "113.694903229", + "slot": { + "period": 131158, + "thread": 28 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 187550, + "thread": 25 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 375544, + "thread": 6 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 523862, + "thread": 3 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 815520, + "thread": 24 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 871139, + "thread": 6 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1046323, + "thread": 27 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1273961, + "thread": 3 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1386060, + "thread": 7 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1605700, + "thread": 30 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1775769, + "thread": 26 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 1969657, + "thread": 4 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2076156, + "thread": 0 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2250131, + "thread": 24 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2423445, + "thread": 18 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2604185, + "thread": 28 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2640661, + "thread": 14 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 2913479, + "thread": 22 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 3062596, + "thread": 20 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 3259086, + "thread": 19 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 3356008, + "thread": 21 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 3592209, + "thread": 24 + } + }, + { + "amount": "113.694903229", + "slot": { + "period": 3775894, + "thread": 16 + } + }, + { + "amount": "113.694903231", + "slot": { + "period": 3871895, + "thread": 9 + } + } + ], + "AU1298XyAHowNkvq3WUnDvJmxZRjPidTq4dPtiH8fgMrhSX44F4pV": [ + { + "amount": "215.370965226", + "slot": { + "period": 151723, + "thread": 19 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 222360, + "thread": 28 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 395447, + "thread": 9 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 520512, + "thread": 25 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 766311, + "thread": 7 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 849527, + "thread": 13 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1103578, + "thread": 13 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1260816, + "thread": 22 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1338564, + "thread": 3 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1575900, + "thread": 26 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1658699, + "thread": 0 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 1964869, + "thread": 11 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2050080, + "thread": 28 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2246613, + "thread": 3 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2395758, + "thread": 15 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2514225, + "thread": 2 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2729763, + "thread": 23 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 2935526, + "thread": 3 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 3103350, + "thread": 6 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 3125666, + "thread": 7 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 3363601, + "thread": 24 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 3501002, + "thread": 16 + } + }, + { + "amount": "215.370965226", + "slot": { + "period": 3705249, + "thread": 26 + } + }, + { + "amount": "215.370965217", + "slot": { + "period": 3911221, + "thread": 20 + } + } + ], + "AU129BbrqTgFGzKb3ocQdxMB8HrqKzbVzjSTT5rdCdFd5wv1Z8kJc": [ + { + "amount": "594.584347625", + "slot": { + "period": 114677, + "thread": 30 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 253146, + "thread": 28 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 455526, + "thread": 5 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 531079, + "thread": 12 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 742770, + "thread": 20 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 915337, + "thread": 1 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1044082, + "thread": 10 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1239913, + "thread": 4 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1453333, + "thread": 29 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1635690, + "thread": 7 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1679014, + "thread": 23 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 1855806, + "thread": 26 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2086713, + "thread": 6 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2158076, + "thread": 24 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2456528, + "thread": 22 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2611585, + "thread": 9 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2743816, + "thread": 15 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2828366, + "thread": 29 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 2986254, + "thread": 15 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 3229961, + "thread": 13 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 3318750, + "thread": 1 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 3597914, + "thread": 10 + } + }, + { + "amount": "594.584347625", + "slot": { + "period": 3779988, + "thread": 2 + } + }, + { + "amount": "594.584347631", + "slot": { + "period": 3939703, + "thread": 14 + } + } + ], + "AU129BmwgtuvBRCmQmVf9jqtDWqfkg1WdFiouX8z7Sp7NyFzZdSYC": [ + { + "amount": "90.274981592", + "slot": { + "period": 63842, + "thread": 5 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 267933, + "thread": 0 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 470239, + "thread": 22 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 494664, + "thread": 11 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 699789, + "thread": 9 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 933917, + "thread": 25 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1066920, + "thread": 26 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1171578, + "thread": 18 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1436438, + "thread": 14 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1532272, + "thread": 27 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1687996, + "thread": 13 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 1849024, + "thread": 0 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2089194, + "thread": 26 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2151090, + "thread": 17 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2333839, + "thread": 6 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2546688, + "thread": 5 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2691810, + "thread": 26 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 2923474, + "thread": 10 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 3017835, + "thread": 24 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 3254282, + "thread": 14 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 3388694, + "thread": 2 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 3525065, + "thread": 20 + } + }, + { + "amount": "90.274981592", + "slot": { + "period": 3649100, + "thread": 11 + } + }, + { + "amount": "90.274981583", + "slot": { + "period": 3831768, + "thread": 31 + } + } + ], + "AU129E4MUxNz8QukZBSwR8ZAPUmVx5XrKDX7udxz9MxDmBXPNaRZN": [ + { + "amount": "143.508025247", + "slot": { + "period": 103775, + "thread": 28 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 284296, + "thread": 5 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 354510, + "thread": 30 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 624658, + "thread": 21 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 719915, + "thread": 24 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 915768, + "thread": 4 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1145219, + "thread": 18 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1199350, + "thread": 16 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1427216, + "thread": 0 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1535565, + "thread": 5 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1723351, + "thread": 4 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 1975087, + "thread": 5 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2075486, + "thread": 29 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2259929, + "thread": 27 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2330119, + "thread": 18 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2580940, + "thread": 11 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2691135, + "thread": 0 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 2899535, + "thread": 19 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 3108109, + "thread": 14 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 3265302, + "thread": 23 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 3331897, + "thread": 18 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 3530290, + "thread": 10 + } + }, + { + "amount": "143.508025247", + "slot": { + "period": 3739053, + "thread": 6 + } + }, + { + "amount": "143.508025255", + "slot": { + "period": 3802556, + "thread": 20 + } + } + ], + "AU129FZQ6esEQP7nabd1YrBcrQ5MUNyesJT9vqz6oWa7TGPHPq9gY": [ + { + "amount": "112.894318210", + "slot": { + "period": 71485, + "thread": 11 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 175596, + "thread": 12 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 348789, + "thread": 17 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 612219, + "thread": 29 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 659568, + "thread": 15 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 924839, + "thread": 29 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1019271, + "thread": 20 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1316337, + "thread": 31 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1396223, + "thread": 16 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1550473, + "thread": 3 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1808907, + "thread": 25 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1847123, + "thread": 20 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 1990117, + "thread": 11 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 2184298, + "thread": 31 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 2451882, + "thread": 6 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 2622410, + "thread": 10 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 2652989, + "thread": 9 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 2944632, + "thread": 17 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 3088539, + "thread": 14 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 3246919, + "thread": 10 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 3308384, + "thread": 1 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 3487936, + "thread": 6 + } + }, + { + "amount": "112.894318210", + "slot": { + "period": 3647619, + "thread": 5 + } + }, + { + "amount": "112.894318217", + "slot": { + "period": 3906899, + "thread": 16 + } + } + ], + "AU129GL2NpV4UEam6LmNRtJuyKW8Zo3QcwbfASTM9iDKrb2iLUjfj": [ + { + "amount": "189.368039872", + "slot": { + "period": 120436, + "thread": 17 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 303864, + "thread": 29 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 449204, + "thread": 6 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 593519, + "thread": 12 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 753901, + "thread": 20 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 930272, + "thread": 12 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1019290, + "thread": 28 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1214112, + "thread": 8 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1331417, + "thread": 25 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1598075, + "thread": 11 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1729704, + "thread": 23 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1976074, + "thread": 14 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 1982892, + "thread": 26 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2194542, + "thread": 29 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2335211, + "thread": 19 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2498294, + "thread": 1 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2663655, + "thread": 7 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2893659, + "thread": 15 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 2976419, + "thread": 17 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 3187990, + "thread": 31 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 3313583, + "thread": 26 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 3583993, + "thread": 10 + } + }, + { + "amount": "189.368039872", + "slot": { + "period": 3714783, + "thread": 3 + } + }, + { + "amount": "189.368039867", + "slot": { + "period": 3866648, + "thread": 16 + } + } + ], + "AU129GQLcoe34WzD1QALcxbYwdUdR3pZfrbw3GQE3ZW7Y8onbXraa": [ + { + "amount": "299.212465714", + "slot": { + "period": 109036, + "thread": 2 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 207295, + "thread": 13 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 385323, + "thread": 2 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 597061, + "thread": 29 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 681316, + "thread": 1 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 867221, + "thread": 24 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1002237, + "thread": 5 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1312975, + "thread": 17 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1404845, + "thread": 1 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1526368, + "thread": 14 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1750265, + "thread": 1 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 1885309, + "thread": 14 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2111540, + "thread": 7 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2269112, + "thread": 21 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2315069, + "thread": 14 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2522662, + "thread": 15 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2646236, + "thread": 17 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 2866775, + "thread": 20 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 3063690, + "thread": 5 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 3215990, + "thread": 1 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 3428482, + "thread": 6 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 3538327, + "thread": 27 + } + }, + { + "amount": "299.212465714", + "slot": { + "period": 3625241, + "thread": 20 + } + }, + { + "amount": "299.212465712", + "slot": { + "period": 3844598, + "thread": 5 + } + } + ], + "AU129HS5rQvBu6iHNN2fQRis26HWr1AYS2yWK5r3isvTT9mXcQuoq": [ + { + "amount": "263.393923688", + "slot": { + "period": 34472, + "thread": 26 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 272439, + "thread": 13 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 454289, + "thread": 12 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 541417, + "thread": 24 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 732821, + "thread": 19 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 955044, + "thread": 23 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1016523, + "thread": 9 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1269669, + "thread": 15 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1375470, + "thread": 4 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1629837, + "thread": 28 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1723778, + "thread": 9 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 1935082, + "thread": 9 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2072711, + "thread": 26 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2165870, + "thread": 18 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2451930, + "thread": 15 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2522353, + "thread": 24 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2697313, + "thread": 22 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 2919028, + "thread": 21 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 3093287, + "thread": 8 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 3232466, + "thread": 7 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 3291310, + "thread": 11 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 3540157, + "thread": 30 + } + }, + { + "amount": "263.393923688", + "slot": { + "period": 3634293, + "thread": 2 + } + }, + { + "amount": "263.393923699", + "slot": { + "period": 3905032, + "thread": 5 + } + } + ], + "AU129HgVrcAm7DSJvskENmnRxFGyEsQSoj46FHMqSYnTyWqw8h8fd": [ + { + "amount": "415.602309114", + "slot": { + "period": 63525, + "thread": 27 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 252105, + "thread": 4 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 454330, + "thread": 7 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 517127, + "thread": 29 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 751879, + "thread": 8 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 852940, + "thread": 24 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 992494, + "thread": 22 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 1274977, + "thread": 31 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 1379406, + "thread": 18 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 1622466, + "thread": 5 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 1663234, + "thread": 17 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 1881361, + "thread": 17 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2127916, + "thread": 23 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2223664, + "thread": 23 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2383500, + "thread": 30 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2521513, + "thread": 2 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2788742, + "thread": 25 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 2852503, + "thread": 18 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 3078766, + "thread": 11 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 3151669, + "thread": 22 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 3351247, + "thread": 19 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 3615573, + "thread": 15 + } + }, + { + "amount": "415.602309114", + "slot": { + "period": 3687847, + "thread": 4 + } + }, + { + "amount": "415.602309121", + "slot": { + "period": 3842409, + "thread": 6 + } + } + ], + "AU129HnpAYeyHvCnHHCqdSExkZyNWkMpkRk6XRJegseeoPYgMiEWE": [ + { + "amount": "164.071913735", + "slot": { + "period": 80784, + "thread": 16 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 307386, + "thread": 12 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 410903, + "thread": 17 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 500897, + "thread": 17 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 675120, + "thread": 13 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 861225, + "thread": 18 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1039992, + "thread": 23 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1198523, + "thread": 1 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1443949, + "thread": 4 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1529289, + "thread": 29 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1805238, + "thread": 31 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1938231, + "thread": 18 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 1989596, + "thread": 19 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 2272228, + "thread": 25 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 2343313, + "thread": 13 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 2547139, + "thread": 10 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 2711743, + "thread": 22 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 2913108, + "thread": 25 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 3102388, + "thread": 26 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 3176176, + "thread": 7 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 3306588, + "thread": 7 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 3526615, + "thread": 21 + } + }, + { + "amount": "164.071913735", + "slot": { + "period": 3778944, + "thread": 31 + } + }, + { + "amount": "164.071913739", + "slot": { + "period": 3798413, + "thread": 28 + } + } + ], + "AU129HtU6vNWyzUzEAihtUNARUScazVFdW8WvDzEu4qqJPikAKo9c": [ + { + "amount": "141.214961506", + "slot": { + "period": 134371, + "thread": 0 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 289013, + "thread": 11 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 467374, + "thread": 25 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 601283, + "thread": 7 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 693948, + "thread": 6 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 821803, + "thread": 15 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 988027, + "thread": 26 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 1176023, + "thread": 11 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 1379579, + "thread": 20 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 1581939, + "thread": 20 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 1760358, + "thread": 25 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 1903414, + "thread": 2 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2027230, + "thread": 24 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2202364, + "thread": 14 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2320751, + "thread": 5 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2500151, + "thread": 11 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2666855, + "thread": 19 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2824600, + "thread": 24 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 2998094, + "thread": 29 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 3159358, + "thread": 9 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 3338529, + "thread": 7 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 3521671, + "thread": 5 + } + }, + { + "amount": "141.214961506", + "slot": { + "period": 3676990, + "thread": 2 + } + }, + { + "amount": "141.214961498", + "slot": { + "period": 3879595, + "thread": 18 + } + } + ], + "AU129JF2Mg8HjCDMAhLVgoQtAjP6pbMpPewRzsvStVH4VuYKo9V5v": [ + { + "amount": "362.978513903", + "slot": { + "period": 36857, + "thread": 22 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 238252, + "thread": 12 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 423552, + "thread": 18 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 574846, + "thread": 20 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 814061, + "thread": 5 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 835575, + "thread": 0 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1081896, + "thread": 8 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1213195, + "thread": 6 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1340580, + "thread": 28 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1505311, + "thread": 30 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1748865, + "thread": 30 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 1846988, + "thread": 2 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2135240, + "thread": 12 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2234548, + "thread": 25 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2384482, + "thread": 15 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2482623, + "thread": 18 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2661765, + "thread": 13 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 2939373, + "thread": 23 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 3045068, + "thread": 5 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 3168111, + "thread": 5 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 3388727, + "thread": 6 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 3483724, + "thread": 13 + } + }, + { + "amount": "362.978513903", + "slot": { + "period": 3626894, + "thread": 26 + } + }, + { + "amount": "362.978513901", + "slot": { + "period": 3794746, + "thread": 7 + } + } + ], + "AU129KcpsiGG3mVZNcE1RgYd99HG9DfGfMAevhNkqqkWEY24Rve6E": [ + { + "amount": "150.589320254", + "slot": { + "period": 165667, + "thread": 29 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 237744, + "thread": 22 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 476881, + "thread": 24 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 583644, + "thread": 26 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 705061, + "thread": 8 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 868057, + "thread": 31 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1046006, + "thread": 31 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1271287, + "thread": 15 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1415345, + "thread": 27 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1561348, + "thread": 25 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1774334, + "thread": 17 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 1864675, + "thread": 19 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2116824, + "thread": 1 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2183530, + "thread": 12 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2362668, + "thread": 21 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2470745, + "thread": 29 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2711128, + "thread": 13 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 2808956, + "thread": 19 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 3062724, + "thread": 5 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 3178994, + "thread": 19 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 3361804, + "thread": 31 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 3492121, + "thread": 17 + } + }, + { + "amount": "150.589320254", + "slot": { + "period": 3747391, + "thread": 17 + } + }, + { + "amount": "150.589320249", + "slot": { + "period": 3921367, + "thread": 12 + } + } + ], + "AU129Kh7ydrqZgCsR15eYkAxWokui5oEaPnVxiyDiNch184hMofTc": [ + { + "amount": "105.313700875", + "slot": { + "period": 66944, + "thread": 6 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 296186, + "thread": 10 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 413191, + "thread": 29 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 631336, + "thread": 31 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 703222, + "thread": 0 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 855306, + "thread": 29 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1095911, + "thread": 30 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1215841, + "thread": 18 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1414079, + "thread": 26 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1511107, + "thread": 15 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1781590, + "thread": 11 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 1872228, + "thread": 4 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2000952, + "thread": 4 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2207382, + "thread": 9 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2436131, + "thread": 28 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2577941, + "thread": 24 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2643806, + "thread": 17 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 2934734, + "thread": 6 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 3056180, + "thread": 27 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 3152945, + "thread": 2 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 3385555, + "thread": 20 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 3491213, + "thread": 31 + } + }, + { + "amount": "105.313700875", + "slot": { + "period": 3687008, + "thread": 26 + } + }, + { + "amount": "105.313700879", + "slot": { + "period": 3831011, + "thread": 18 + } + } + ], + "AU129LSAj6cGqPjNyVKQnZpvm3AxMXzCDFjxfTF9ecVX6ksLb6FUY": [ + { + "amount": "126.191544001", + "slot": { + "period": 32653, + "thread": 15 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 169207, + "thread": 20 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 436042, + "thread": 19 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 514879, + "thread": 1 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 805291, + "thread": 14 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 906062, + "thread": 0 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1027789, + "thread": 6 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1186368, + "thread": 11 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1401619, + "thread": 25 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1509316, + "thread": 21 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1678466, + "thread": 15 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 1869391, + "thread": 15 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2112073, + "thread": 3 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2251725, + "thread": 15 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2305836, + "thread": 18 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2594812, + "thread": 12 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2748718, + "thread": 26 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 2802186, + "thread": 29 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 3080105, + "thread": 29 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 3133001, + "thread": 19 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 3390152, + "thread": 28 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 3463942, + "thread": 11 + } + }, + { + "amount": "126.191544001", + "slot": { + "period": 3749065, + "thread": 21 + } + }, + { + "amount": "126.191544004", + "slot": { + "period": 3890138, + "thread": 26 + } + } + ], + "AU129MkCzgvT383Y9kXvQ21ikCCP7J46vQ1ci6iyE3E3nB9FAMxZ4": [ + { + "amount": "59.364843429", + "slot": { + "period": 114835, + "thread": 13 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 256140, + "thread": 18 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 330953, + "thread": 16 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 592705, + "thread": 7 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 757096, + "thread": 23 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 864577, + "thread": 4 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1075772, + "thread": 19 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1263456, + "thread": 30 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1439788, + "thread": 11 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1633137, + "thread": 7 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1709375, + "thread": 13 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 1971076, + "thread": 15 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2078363, + "thread": 9 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2182456, + "thread": 13 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2422207, + "thread": 31 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2555541, + "thread": 16 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2631165, + "thread": 21 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2944620, + "thread": 18 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 2973266, + "thread": 1 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 3247201, + "thread": 3 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 3404757, + "thread": 9 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 3583765, + "thread": 22 + } + }, + { + "amount": "59.364843429", + "slot": { + "period": 3775223, + "thread": 7 + } + }, + { + "amount": "59.364843432", + "slot": { + "period": 3787490, + "thread": 6 + } + } + ], + "AU129NiEQAw4My1Q9WkCLDB46JrRgiRMNe5QQV5xmK3gGZe61QeW9": [ + { + "amount": "231.042496986", + "slot": { + "period": 72467, + "thread": 14 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 198351, + "thread": 19 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 462502, + "thread": 19 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 641013, + "thread": 4 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 814558, + "thread": 29 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 968307, + "thread": 28 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1004181, + "thread": 10 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1244471, + "thread": 4 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1456296, + "thread": 10 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1539019, + "thread": 25 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1747190, + "thread": 5 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 1970702, + "thread": 17 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2124660, + "thread": 5 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2161752, + "thread": 27 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2439542, + "thread": 26 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2610498, + "thread": 16 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2640599, + "thread": 13 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2891061, + "thread": 1 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 2956905, + "thread": 6 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 3207804, + "thread": 16 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 3327288, + "thread": 7 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 3588640, + "thread": 0 + } + }, + { + "amount": "231.042496986", + "slot": { + "period": 3620978, + "thread": 20 + } + }, + { + "amount": "231.042496992", + "slot": { + "period": 3911560, + "thread": 5 + } + } + ], + "AU129P7SBfsRBE643SRr7SE4MimnaowdFUvb6dLe4AMrTrYnWEKck": [ + { + "amount": "316.208933680", + "slot": { + "period": 69684, + "thread": 17 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 186982, + "thread": 12 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 459447, + "thread": 0 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 597400, + "thread": 10 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 818519, + "thread": 0 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 933031, + "thread": 12 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1058538, + "thread": 26 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1193784, + "thread": 5 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1450545, + "thread": 26 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1515042, + "thread": 22 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1651628, + "thread": 1 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 1885459, + "thread": 28 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2000310, + "thread": 8 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2207165, + "thread": 18 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2442977, + "thread": 17 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2535946, + "thread": 30 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2666626, + "thread": 5 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 2792818, + "thread": 30 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 3059445, + "thread": 18 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 3227915, + "thread": 0 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 3413111, + "thread": 9 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 3482756, + "thread": 19 + } + }, + { + "amount": "316.208933680", + "slot": { + "period": 3761873, + "thread": 15 + } + }, + { + "amount": "316.208933684", + "slot": { + "period": 3916201, + "thread": 2 + } + } + ], + "AU129QA9CmfbxVGo1vMhyPebGJcKpokf57NTn9oURJ15XEnnF5oq4": [ + { + "amount": "119.746285010", + "slot": { + "period": 153703, + "thread": 22 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 233910, + "thread": 0 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 352208, + "thread": 28 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 538521, + "thread": 21 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 764496, + "thread": 18 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 968029, + "thread": 15 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 986069, + "thread": 23 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 1231560, + "thread": 19 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 1475070, + "thread": 21 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 1606959, + "thread": 16 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 1762197, + "thread": 13 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 1919142, + "thread": 12 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2099648, + "thread": 24 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2235607, + "thread": 3 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2354083, + "thread": 0 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2508692, + "thread": 8 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2789620, + "thread": 19 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2923949, + "thread": 14 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 2989017, + "thread": 19 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 3211753, + "thread": 6 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 3289300, + "thread": 8 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 3452940, + "thread": 26 + } + }, + { + "amount": "119.746285010", + "slot": { + "period": 3741210, + "thread": 21 + } + }, + { + "amount": "119.746285017", + "slot": { + "period": 3838272, + "thread": 11 + } + } + ], + "AU129Qwdk1rcfzFSim59r6yuDKWQ5VZwUKPCT9dfxvAEbHqQiwGPn": [ + { + "amount": "181.463864143", + "slot": { + "period": 117337, + "thread": 7 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 202406, + "thread": 28 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 405781, + "thread": 25 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 559892, + "thread": 30 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 674995, + "thread": 19 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 906303, + "thread": 26 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1120694, + "thread": 2 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1271480, + "thread": 10 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1321735, + "thread": 31 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1624437, + "thread": 6 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1666123, + "thread": 14 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 1957323, + "thread": 18 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2117475, + "thread": 27 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2277507, + "thread": 20 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2307501, + "thread": 4 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2568554, + "thread": 6 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2769586, + "thread": 22 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2951581, + "thread": 26 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 2955166, + "thread": 9 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 3173444, + "thread": 27 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 3439063, + "thread": 16 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 3524725, + "thread": 8 + } + }, + { + "amount": "181.463864143", + "slot": { + "period": 3668539, + "thread": 15 + } + }, + { + "amount": "181.463864138", + "slot": { + "period": 3892335, + "thread": 30 + } + } + ], + "AU129RCFJH1p9PnjW6RTBxShAZGP5VryQCUedaZjcoZmePxEhPocJ": [ + { + "amount": "104.595055888", + "slot": { + "period": 120076, + "thread": 30 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 267275, + "thread": 17 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 339664, + "thread": 8 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 579305, + "thread": 5 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 754488, + "thread": 3 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 911344, + "thread": 11 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1128754, + "thread": 29 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1167654, + "thread": 11 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1343436, + "thread": 24 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1501757, + "thread": 17 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1797447, + "thread": 0 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 1894988, + "thread": 26 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2001132, + "thread": 19 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2196007, + "thread": 5 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2384196, + "thread": 12 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2544553, + "thread": 4 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2683594, + "thread": 23 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 2898070, + "thread": 13 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 3036893, + "thread": 8 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 3167453, + "thread": 21 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 3427061, + "thread": 27 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 3551652, + "thread": 13 + } + }, + { + "amount": "104.595055888", + "slot": { + "period": 3671741, + "thread": 14 + } + }, + { + "amount": "104.595055895", + "slot": { + "period": 3910435, + "thread": 26 + } + } + ], + "AU129RU1ELFnJBK7ZWKGDfgJGTM5YKn7SpnAa3E3PpRFvrXBivYVw": [ + { + "amount": "192.573706568", + "slot": { + "period": 80873, + "thread": 25 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 301737, + "thread": 1 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 370235, + "thread": 15 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 644132, + "thread": 14 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 705072, + "thread": 19 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 951237, + "thread": 20 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1038504, + "thread": 31 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1214645, + "thread": 15 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1468893, + "thread": 11 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1508583, + "thread": 24 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1743206, + "thread": 8 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 1855430, + "thread": 3 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2026574, + "thread": 8 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2172454, + "thread": 25 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2443472, + "thread": 7 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2575937, + "thread": 18 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2771506, + "thread": 21 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 2942035, + "thread": 17 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 3014678, + "thread": 14 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 3208651, + "thread": 28 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 3363610, + "thread": 18 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 3557383, + "thread": 5 + } + }, + { + "amount": "192.573706568", + "slot": { + "period": 3702182, + "thread": 27 + } + }, + { + "amount": "192.573706567", + "slot": { + "period": 3781703, + "thread": 28 + } + } + ], + "AU129SLoabHQ587y3kZayTdivfEoKfaXbe66A8Xw8JF49Mw4ykXYr": [ + { + "amount": "102.954232447", + "slot": { + "period": 149353, + "thread": 24 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 261743, + "thread": 20 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 434684, + "thread": 10 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 609752, + "thread": 4 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 707162, + "thread": 0 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 953036, + "thread": 28 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1105922, + "thread": 6 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1184607, + "thread": 21 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1415475, + "thread": 29 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1496351, + "thread": 10 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1701616, + "thread": 29 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 1848754, + "thread": 13 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2082617, + "thread": 18 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2182988, + "thread": 18 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2400955, + "thread": 7 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2581033, + "thread": 9 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2706747, + "thread": 26 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 2847893, + "thread": 29 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 3082865, + "thread": 26 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 3176059, + "thread": 3 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 3309298, + "thread": 27 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 3514181, + "thread": 13 + } + }, + { + "amount": "102.954232447", + "slot": { + "period": 3675718, + "thread": 8 + } + }, + { + "amount": "102.954232439", + "slot": { + "period": 3911990, + "thread": 4 + } + } + ], + "AU129TLoMsaVxtYjmDddqJHnB236T5gcPt3WgtzeJ5LUwhc3AAKz9": [ + { + "amount": "97.820568417", + "slot": { + "period": 99904, + "thread": 6 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 285568, + "thread": 27 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 407403, + "thread": 18 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 569682, + "thread": 15 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 729849, + "thread": 8 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 973015, + "thread": 21 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1077785, + "thread": 31 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1157799, + "thread": 27 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1382171, + "thread": 10 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1550140, + "thread": 10 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1697194, + "thread": 5 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 1957865, + "thread": 6 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2118565, + "thread": 13 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2199003, + "thread": 2 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2445015, + "thread": 9 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2548750, + "thread": 22 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2678541, + "thread": 20 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 2910468, + "thread": 17 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 3075659, + "thread": 28 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 3158658, + "thread": 4 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 3337414, + "thread": 15 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 3585830, + "thread": 26 + } + }, + { + "amount": "97.820568417", + "slot": { + "period": 3694113, + "thread": 28 + } + }, + { + "amount": "97.820568426", + "slot": { + "period": 3944370, + "thread": 27 + } + } + ], + "AU129UCFHieWPi5YU3kCTvRdnB55bDRa38B7pg6BPXLV556tPYVBB": [ + { + "amount": "227.008204455", + "slot": { + "period": 138997, + "thread": 12 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 264650, + "thread": 29 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 490872, + "thread": 23 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 627776, + "thread": 0 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 752938, + "thread": 4 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 961594, + "thread": 7 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1095407, + "thread": 2 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1241483, + "thread": 4 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1439944, + "thread": 10 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1584238, + "thread": 9 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1661168, + "thread": 11 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 1903054, + "thread": 13 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2142245, + "thread": 5 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2244609, + "thread": 16 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2416270, + "thread": 17 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2526023, + "thread": 11 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2742534, + "thread": 19 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2872980, + "thread": 17 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 2979924, + "thread": 10 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 3166188, + "thread": 18 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 3310027, + "thread": 11 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 3575849, + "thread": 15 + } + }, + { + "amount": "227.008204455", + "slot": { + "period": 3629541, + "thread": 7 + } + }, + { + "amount": "227.008204463", + "slot": { + "period": 3803625, + "thread": 8 + } + } + ], + "AU129USYkvUGqdE3ARoByKuYv7YGeHDeg9Ctwth3Jr9AnaF1VKhve": [ + { + "amount": "223.691224386", + "slot": { + "period": 131733, + "thread": 20 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 171913, + "thread": 21 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 392111, + "thread": 28 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 607026, + "thread": 18 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 819656, + "thread": 11 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 907205, + "thread": 30 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 999647, + "thread": 7 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 1308772, + "thread": 3 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 1461453, + "thread": 12 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 1551253, + "thread": 9 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 1739741, + "thread": 2 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 1894085, + "thread": 8 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2052878, + "thread": 21 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2149883, + "thread": 11 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2392369, + "thread": 0 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2588207, + "thread": 3 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2715294, + "thread": 0 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 2846242, + "thread": 12 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 3012586, + "thread": 3 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 3280179, + "thread": 5 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 3293923, + "thread": 10 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 3500433, + "thread": 3 + } + }, + { + "amount": "223.691224386", + "slot": { + "period": 3636817, + "thread": 0 + } + }, + { + "amount": "223.691224389", + "slot": { + "period": 3937635, + "thread": 27 + } + } + ], + "AU129UyBiiWaf9UPmwyzxxXNfcSuq2AAUrUCPvXw5vs3JjKYN8gSJ": [ + { + "amount": "84.400115702", + "slot": { + "period": 112497, + "thread": 6 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 323344, + "thread": 30 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 437361, + "thread": 22 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 542363, + "thread": 13 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 671791, + "thread": 29 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 942901, + "thread": 19 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1122845, + "thread": 19 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1208101, + "thread": 13 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1353816, + "thread": 16 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1635771, + "thread": 22 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1798784, + "thread": 20 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 1810355, + "thread": 23 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2059437, + "thread": 19 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2257366, + "thread": 22 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2451052, + "thread": 22 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2539808, + "thread": 0 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2646049, + "thread": 12 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 2850050, + "thread": 4 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 3010973, + "thread": 1 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 3199646, + "thread": 15 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 3318521, + "thread": 31 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 3548475, + "thread": 6 + } + }, + { + "amount": "84.400115702", + "slot": { + "period": 3753100, + "thread": 11 + } + }, + { + "amount": "84.400115710", + "slot": { + "period": 3892486, + "thread": 24 + } + } + ], + "AU129WHKK6fCoUjZaHwpW7qCXByZU5ZNweJxEsA3hFJAji8KNJ1xf": [ + { + "amount": "81.515483030", + "slot": { + "period": 154564, + "thread": 2 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 250194, + "thread": 11 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 388749, + "thread": 18 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 593746, + "thread": 13 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 709674, + "thread": 2 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 929951, + "thread": 9 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1048324, + "thread": 14 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1156345, + "thread": 6 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1375262, + "thread": 22 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1480517, + "thread": 15 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1676712, + "thread": 15 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1843351, + "thread": 23 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 1986190, + "thread": 2 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2258055, + "thread": 10 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2460254, + "thread": 13 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2466068, + "thread": 26 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2680351, + "thread": 23 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2911020, + "thread": 2 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 2984749, + "thread": 22 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 3145925, + "thread": 29 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 3408874, + "thread": 13 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 3593198, + "thread": 15 + } + }, + { + "amount": "81.515483030", + "slot": { + "period": 3685175, + "thread": 30 + } + }, + { + "amount": "81.515483035", + "slot": { + "period": 3894484, + "thread": 4 + } + } + ], + "AU129WRaiBjeoxnfjxt1YU3hV495HKqZEEC9TzNdFzUfsBALFDRUE": [ + { + "amount": "51.441918983", + "slot": { + "period": 52942, + "thread": 10 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 283069, + "thread": 13 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 389147, + "thread": 10 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 637410, + "thread": 7 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 768513, + "thread": 17 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 901279, + "thread": 24 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 996440, + "thread": 0 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 1291826, + "thread": 26 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 1347077, + "thread": 10 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 1504259, + "thread": 28 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 1731226, + "thread": 19 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 1846166, + "thread": 21 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2024375, + "thread": 31 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2248936, + "thread": 15 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2421959, + "thread": 29 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2529336, + "thread": 28 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2680337, + "thread": 11 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 2883360, + "thread": 19 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 3111766, + "thread": 11 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 3220191, + "thread": 25 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 3430058, + "thread": 3 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 3573116, + "thread": 0 + } + }, + { + "amount": "51.441918983", + "slot": { + "period": 3734786, + "thread": 24 + } + }, + { + "amount": "51.441918989", + "slot": { + "period": 3801137, + "thread": 29 + } + } + ], + "AU129WgueCmCwm9CHASNNb3KxMkgy2i4FFXXukefqQVXeAznR1NtZ": [ + { + "amount": "79.095709254", + "slot": { + "period": 154363, + "thread": 7 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 231225, + "thread": 18 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 446689, + "thread": 31 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 571421, + "thread": 25 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 690805, + "thread": 15 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 874272, + "thread": 7 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1144591, + "thread": 4 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1245790, + "thread": 14 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1428422, + "thread": 15 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1491958, + "thread": 17 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1706072, + "thread": 8 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 1810130, + "thread": 29 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2101347, + "thread": 27 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2229703, + "thread": 21 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2412321, + "thread": 20 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2595226, + "thread": 17 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2784405, + "thread": 23 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 2883022, + "thread": 13 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 3054086, + "thread": 5 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 3243173, + "thread": 19 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 3409596, + "thread": 16 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 3597047, + "thread": 5 + } + }, + { + "amount": "79.095709254", + "slot": { + "period": 3760968, + "thread": 30 + } + }, + { + "amount": "79.095709256", + "slot": { + "period": 3875701, + "thread": 22 + } + } + ], + "AU129WhcJYotPnEujUxR6h4Uv2MaKc7fAvQvdSn2gPftC5uvrwDWu": [ + { + "amount": "185.585329518", + "slot": { + "period": 113776, + "thread": 26 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 171636, + "thread": 0 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 473186, + "thread": 27 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 580550, + "thread": 24 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 699343, + "thread": 24 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 849504, + "thread": 25 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1080970, + "thread": 23 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1284326, + "thread": 9 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1479104, + "thread": 25 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1538747, + "thread": 22 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1683867, + "thread": 21 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 1874157, + "thread": 4 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2121537, + "thread": 23 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2226331, + "thread": 14 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2352129, + "thread": 7 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2522629, + "thread": 8 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2724040, + "thread": 9 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 2926295, + "thread": 26 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3091169, + "thread": 15 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3217266, + "thread": 24 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3357202, + "thread": 1 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3450640, + "thread": 31 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3670113, + "thread": 20 + } + }, + { + "amount": "185.585329518", + "slot": { + "period": 3918861, + "thread": 10 + } + } + ], + "AU129XbXrpFw56emriYvCQDVKhRnCd4ButPgV4s7ub4xX3E6Nr9vX": [ + { + "amount": "54.223490387", + "slot": { + "period": 35009, + "thread": 28 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 282351, + "thread": 26 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 364519, + "thread": 7 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 630303, + "thread": 29 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 738489, + "thread": 12 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 903427, + "thread": 5 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1093248, + "thread": 10 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1261905, + "thread": 10 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1366527, + "thread": 9 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1485444, + "thread": 21 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1693129, + "thread": 11 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 1861633, + "thread": 23 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2053600, + "thread": 10 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2252853, + "thread": 22 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2458799, + "thread": 20 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2554891, + "thread": 10 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2772174, + "thread": 5 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 2910513, + "thread": 12 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 3037364, + "thread": 12 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 3218856, + "thread": 20 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 3362046, + "thread": 29 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 3505509, + "thread": 16 + } + }, + { + "amount": "54.223490387", + "slot": { + "period": 3768397, + "thread": 18 + } + }, + { + "amount": "54.223490385", + "slot": { + "period": 3788372, + "thread": 5 + } + } + ], + "AU129XkaUD6R7bgPXo43Q6Cz6FPDyYCMZ8eFmf3tVYtppKsQbDEeN": [ + { + "amount": "294.831895327", + "slot": { + "period": 103272, + "thread": 23 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 304583, + "thread": 15 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 424048, + "thread": 26 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 517015, + "thread": 25 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 792679, + "thread": 23 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 869362, + "thread": 27 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1112405, + "thread": 28 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1288263, + "thread": 16 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1389831, + "thread": 10 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1584336, + "thread": 2 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1662963, + "thread": 0 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 1822147, + "thread": 12 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2122252, + "thread": 8 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2207424, + "thread": 15 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2304647, + "thread": 6 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2544208, + "thread": 4 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2749566, + "thread": 5 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 2793925, + "thread": 27 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 3118537, + "thread": 17 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 3232672, + "thread": 12 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 3382780, + "thread": 7 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 3565626, + "thread": 25 + } + }, + { + "amount": "294.831895327", + "slot": { + "period": 3726532, + "thread": 17 + } + }, + { + "amount": "294.831895333", + "slot": { + "period": 3865842, + "thread": 25 + } + } + ], + "AU129XqbagGaxVsDWheFHz6yaPyG3MwpFeoLBcpx4ResbG6e32GXg": [ + { + "amount": "126.674399812", + "slot": { + "period": 141592, + "thread": 3 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 200295, + "thread": 30 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 472063, + "thread": 12 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 579484, + "thread": 5 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 768428, + "thread": 23 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 877399, + "thread": 29 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1130063, + "thread": 20 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1217845, + "thread": 2 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1365693, + "thread": 22 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1632099, + "thread": 31 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1648391, + "thread": 24 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1853409, + "thread": 10 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 1999026, + "thread": 26 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 2186608, + "thread": 6 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 2360747, + "thread": 25 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 2509105, + "thread": 31 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 2784250, + "thread": 2 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 2818626, + "thread": 10 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 3035093, + "thread": 23 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 3202911, + "thread": 9 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 3384883, + "thread": 31 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 3547218, + "thread": 19 + } + }, + { + "amount": "126.674399812", + "slot": { + "period": 3770519, + "thread": 2 + } + }, + { + "amount": "126.674399813", + "slot": { + "period": 3926725, + "thread": 11 + } + } + ], + "AU129bm6FpezfsYhUR9peSYTi4b7KUq2raFDTK8JJFuWV7A2grJsm": [ + { + "amount": "89.556507440", + "slot": { + "period": 102274, + "thread": 18 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 290120, + "thread": 7 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 478902, + "thread": 0 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 612571, + "thread": 16 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 711909, + "thread": 4 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 936859, + "thread": 3 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 990789, + "thread": 10 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1308515, + "thread": 23 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1374386, + "thread": 16 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1504551, + "thread": 4 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1654718, + "thread": 26 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1958409, + "thread": 15 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 1982806, + "thread": 21 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 2211826, + "thread": 16 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 2460803, + "thread": 13 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 2473518, + "thread": 24 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 2647823, + "thread": 8 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 2867377, + "thread": 3 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 3035273, + "thread": 3 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 3171336, + "thread": 8 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 3312952, + "thread": 6 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 3459028, + "thread": 17 + } + }, + { + "amount": "89.556507440", + "slot": { + "period": 3716734, + "thread": 0 + } + }, + { + "amount": "89.556507443", + "slot": { + "period": 3838664, + "thread": 26 + } + } + ], + "AU129d5MTGZmrSxmFiDgRkrFxHYmvNcrCd7TmtbRPkz7LXq4BY3RH": [ + { + "amount": "281.681590253", + "slot": { + "period": 34389, + "thread": 6 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 290610, + "thread": 22 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 384170, + "thread": 26 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 562027, + "thread": 4 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 754324, + "thread": 17 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 936023, + "thread": 0 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1008631, + "thread": 28 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1184268, + "thread": 23 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1443382, + "thread": 16 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1524134, + "thread": 12 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1763460, + "thread": 13 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 1884389, + "thread": 11 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2122203, + "thread": 30 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2186546, + "thread": 14 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2450501, + "thread": 20 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2533087, + "thread": 20 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2727451, + "thread": 19 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 2844546, + "thread": 25 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 3066178, + "thread": 27 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 3174332, + "thread": 3 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 3383427, + "thread": 9 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 3526866, + "thread": 25 + } + }, + { + "amount": "281.681590253", + "slot": { + "period": 3626121, + "thread": 8 + } + }, + { + "amount": "281.681590245", + "slot": { + "period": 3944843, + "thread": 6 + } + } + ], + "AU129ebXRmo2mfmA2UuMRohQQQ9n2Suyikvf6YRFrWRVHhJq2yCs3": [ + { + "amount": "160.878645062", + "slot": { + "period": 80757, + "thread": 28 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 184601, + "thread": 5 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 360593, + "thread": 10 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 511026, + "thread": 11 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 730155, + "thread": 1 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 926619, + "thread": 30 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1137085, + "thread": 7 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1198646, + "thread": 20 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1422330, + "thread": 5 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1533069, + "thread": 28 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1690529, + "thread": 2 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 1846040, + "thread": 30 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2029572, + "thread": 9 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2260352, + "thread": 1 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2452200, + "thread": 2 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2483210, + "thread": 24 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2778857, + "thread": 13 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 2842067, + "thread": 16 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 3014379, + "thread": 2 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 3154673, + "thread": 22 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 3300386, + "thread": 7 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 3511273, + "thread": 21 + } + }, + { + "amount": "160.878645062", + "slot": { + "period": 3721564, + "thread": 7 + } + }, + { + "amount": "160.878645054", + "slot": { + "period": 3878314, + "thread": 20 + } + } + ], + "AU129fQaRBMjUi9RZNKigKo8kCd1mcNL9pDzr6opZBmygWVJQN1KH": [ + { + "amount": "135.262448514", + "slot": { + "period": 99657, + "thread": 8 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 204968, + "thread": 22 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 481093, + "thread": 21 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 621109, + "thread": 7 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 753934, + "thread": 20 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 924854, + "thread": 17 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1126556, + "thread": 6 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1276984, + "thread": 24 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1339292, + "thread": 1 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1545708, + "thread": 2 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1788880, + "thread": 22 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 1874587, + "thread": 0 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2134104, + "thread": 0 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2154276, + "thread": 0 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2373640, + "thread": 17 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2467608, + "thread": 27 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2757650, + "thread": 15 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 2886636, + "thread": 11 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 3065911, + "thread": 13 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 3244309, + "thread": 5 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 3446561, + "thread": 14 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 3477044, + "thread": 1 + } + }, + { + "amount": "135.262448514", + "slot": { + "period": 3732644, + "thread": 2 + } + }, + { + "amount": "135.262448524", + "slot": { + "period": 3785441, + "thread": 11 + } + } + ], + "AU129ffySbTL6thXchihJJtCe5gxgpRMRaqS6KjheP8CNAaW6NHzj": [ + { + "amount": "133.463048554", + "slot": { + "period": 21190, + "thread": 25 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 247452, + "thread": 29 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 462861, + "thread": 2 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 626174, + "thread": 1 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 802956, + "thread": 16 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 977682, + "thread": 8 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1004558, + "thread": 0 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1197377, + "thread": 21 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1465811, + "thread": 18 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1491611, + "thread": 22 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1662944, + "thread": 14 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 1889879, + "thread": 11 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2032913, + "thread": 30 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2179372, + "thread": 11 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2389295, + "thread": 11 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2499000, + "thread": 31 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2733251, + "thread": 31 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 2843752, + "thread": 24 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 3007265, + "thread": 4 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 3206210, + "thread": 26 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 3375911, + "thread": 16 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 3515688, + "thread": 20 + } + }, + { + "amount": "133.463048554", + "slot": { + "period": 3624020, + "thread": 4 + } + }, + { + "amount": "133.463048565", + "slot": { + "period": 3812725, + "thread": 19 + } + } + ], + "AU129fnqk4NrXgegt3nP37Qzu1HeJ6Nd8ujbsFNTHXE28Zx7QSsjU": [ + { + "amount": "60.657300821", + "slot": { + "period": 88167, + "thread": 5 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 168033, + "thread": 10 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 438647, + "thread": 31 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 643855, + "thread": 13 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 729348, + "thread": 16 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 839881, + "thread": 0 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1134841, + "thread": 10 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1239928, + "thread": 21 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1378721, + "thread": 8 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1605333, + "thread": 0 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1795755, + "thread": 10 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 1972023, + "thread": 3 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2104143, + "thread": 30 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2293629, + "thread": 22 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2376765, + "thread": 12 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2539253, + "thread": 12 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2682472, + "thread": 31 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 2845543, + "thread": 10 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 3120615, + "thread": 27 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 3180876, + "thread": 5 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 3374809, + "thread": 28 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 3532549, + "thread": 18 + } + }, + { + "amount": "60.657300821", + "slot": { + "period": 3620148, + "thread": 21 + } + }, + { + "amount": "60.657300825", + "slot": { + "period": 3885852, + "thread": 28 + } + } + ], + "AU129gou2ZZLSN9NHBVyJns4Neg2UqKzxmzth5cw6dJa9QLF2YzAY": [ + { + "amount": "87.746288404", + "slot": { + "period": 50476, + "thread": 12 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 227377, + "thread": 24 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 475492, + "thread": 4 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 626886, + "thread": 23 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 681249, + "thread": 21 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 919053, + "thread": 2 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1075547, + "thread": 23 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1171814, + "thread": 12 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1467808, + "thread": 3 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1547075, + "thread": 6 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1701430, + "thread": 27 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 1878023, + "thread": 30 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2001694, + "thread": 12 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2243341, + "thread": 13 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2369388, + "thread": 25 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2549208, + "thread": 1 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2715936, + "thread": 9 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 2803567, + "thread": 30 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 3073034, + "thread": 17 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 3271118, + "thread": 9 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 3359514, + "thread": 12 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 3563368, + "thread": 24 + } + }, + { + "amount": "87.746288404", + "slot": { + "period": 3768288, + "thread": 6 + } + }, + { + "amount": "87.746288396", + "slot": { + "period": 3789204, + "thread": 16 + } + } + ], + "AU129gz5rDLZAcnrWDSYMaKyWgwYRxNEcd5MYiQwXhgrsb8g4V3jY": [ + { + "amount": "268.795457167", + "slot": { + "period": 13674, + "thread": 27 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 210703, + "thread": 0 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 374354, + "thread": 28 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 526521, + "thread": 12 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 681039, + "thread": 16 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 870651, + "thread": 26 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 984940, + "thread": 6 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 1194474, + "thread": 21 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 1443597, + "thread": 23 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 1536576, + "thread": 17 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 1729107, + "thread": 15 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 1888155, + "thread": 13 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2000073, + "thread": 22 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2188568, + "thread": 9 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2407643, + "thread": 12 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2473037, + "thread": 23 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2781996, + "thread": 31 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 2919581, + "thread": 19 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 3087228, + "thread": 26 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 3212369, + "thread": 15 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 3434316, + "thread": 17 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 3498059, + "thread": 10 + } + }, + { + "amount": "268.795457167", + "slot": { + "period": 3779061, + "thread": 14 + } + }, + { + "amount": "268.795457169", + "slot": { + "period": 3924432, + "thread": 12 + } + } + ], + "AU129hERtFEiM9412FGqz9sCawV5rDvM8WAxjFuyVTVStr5Bz6YRX": [ + { + "amount": "131.949330963", + "slot": { + "period": 21146, + "thread": 17 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 188510, + "thread": 6 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 458574, + "thread": 20 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 524894, + "thread": 26 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 705011, + "thread": 6 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 830286, + "thread": 22 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1120204, + "thread": 11 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1182645, + "thread": 15 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1465083, + "thread": 29 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1642903, + "thread": 25 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1748401, + "thread": 4 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 1886366, + "thread": 27 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2049823, + "thread": 20 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2168213, + "thread": 6 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2456497, + "thread": 4 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2480062, + "thread": 3 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2770752, + "thread": 7 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2872738, + "thread": 21 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 2988642, + "thread": 28 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 3144900, + "thread": 11 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 3387277, + "thread": 16 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 3589185, + "thread": 27 + } + }, + { + "amount": "131.949330963", + "slot": { + "period": 3683684, + "thread": 29 + } + }, + { + "amount": "131.949330954", + "slot": { + "period": 3871146, + "thread": 16 + } + } + ], + "AU129hN6ao4uw47eFTwM6Y2gyTKpJp4D22tuM6GnZ67qKqsSJRp7d": [ + { + "amount": "250.624966056", + "slot": { + "period": 37406, + "thread": 24 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 210036, + "thread": 25 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 353530, + "thread": 4 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 511029, + "thread": 21 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 767493, + "thread": 13 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 823124, + "thread": 16 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1076626, + "thread": 0 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1209565, + "thread": 15 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1472158, + "thread": 13 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1533159, + "thread": 15 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1723516, + "thread": 7 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 1887082, + "thread": 14 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2001049, + "thread": 30 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2188208, + "thread": 20 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2348166, + "thread": 28 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2472699, + "thread": 14 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2660071, + "thread": 28 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 2905603, + "thread": 22 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 3067441, + "thread": 8 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 3288108, + "thread": 19 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 3413049, + "thread": 6 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 3605012, + "thread": 4 + } + }, + { + "amount": "250.624966056", + "slot": { + "period": 3736720, + "thread": 5 + } + }, + { + "amount": "250.624966053", + "slot": { + "period": 3901150, + "thread": 14 + } + } + ], + "AU129htAiHhEnAUA4i6gAhJngLsJfEzU1vM1c7QPh764Dqci7FzTD": [ + { + "amount": "577.299017991", + "slot": { + "period": 12028, + "thread": 24 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 320538, + "thread": 20 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 471159, + "thread": 19 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 553009, + "thread": 9 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 744187, + "thread": 21 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 877954, + "thread": 2 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1026517, + "thread": 8 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1155412, + "thread": 22 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1429393, + "thread": 16 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1507231, + "thread": 3 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1688987, + "thread": 19 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 1896455, + "thread": 12 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2067342, + "thread": 28 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2223878, + "thread": 29 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2335579, + "thread": 1 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2572165, + "thread": 25 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2766581, + "thread": 26 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 2869775, + "thread": 12 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 3059269, + "thread": 2 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 3262517, + "thread": 10 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 3380560, + "thread": 13 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 3469239, + "thread": 21 + } + }, + { + "amount": "577.299017991", + "slot": { + "period": 3755921, + "thread": 29 + } + }, + { + "amount": "577.299017983", + "slot": { + "period": 3931731, + "thread": 14 + } + } + ], + "AU129hxuxRmE85ndPa13Fwh3kFzW49UePzaxGsLt1Vmqj2XAmooTP": [ + { + "amount": "58.272591064", + "slot": { + "period": 160738, + "thread": 10 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 245222, + "thread": 10 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 482021, + "thread": 2 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 639863, + "thread": 16 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 765395, + "thread": 4 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 932562, + "thread": 24 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1140225, + "thread": 4 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1181609, + "thread": 3 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1319241, + "thread": 21 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1618769, + "thread": 6 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1743115, + "thread": 17 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1855641, + "thread": 14 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 1982602, + "thread": 20 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2186366, + "thread": 19 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2312832, + "thread": 30 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2520813, + "thread": 9 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2757453, + "thread": 30 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2804952, + "thread": 20 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 2960364, + "thread": 16 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 3150021, + "thread": 5 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 3443045, + "thread": 11 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 3473026, + "thread": 25 + } + }, + { + "amount": "58.272591064", + "slot": { + "period": 3747598, + "thread": 8 + } + }, + { + "amount": "58.272591052", + "slot": { + "period": 3782953, + "thread": 10 + } + } + ], + "AU129iBaRGiL1dkmpK2eYZPFRGfiTkpmr5tuNUPBhGqT7Qp31FReK": [ + { + "amount": "338.227273701", + "slot": { + "period": 19737, + "thread": 29 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 290289, + "thread": 29 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 437700, + "thread": 1 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 587914, + "thread": 22 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 748276, + "thread": 25 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 833745, + "thread": 18 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1052356, + "thread": 0 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1193465, + "thread": 25 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1368142, + "thread": 8 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1481963, + "thread": 1 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1779805, + "thread": 12 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 1932815, + "thread": 7 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2016825, + "thread": 10 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2173271, + "thread": 24 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2309118, + "thread": 8 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2560215, + "thread": 3 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2752566, + "thread": 6 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 2854792, + "thread": 24 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 3037694, + "thread": 28 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 3230582, + "thread": 18 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 3426183, + "thread": 28 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 3528845, + "thread": 1 + } + }, + { + "amount": "338.227273701", + "slot": { + "period": 3733682, + "thread": 2 + } + }, + { + "amount": "338.227273692", + "slot": { + "period": 3821285, + "thread": 11 + } + } + ], + "AU129iJgQgWC2xZm8A313FKvyK3iqfvHpMoQpaKN4uWCNjgbPpYw8": [ + { + "amount": "156.426625341", + "slot": { + "period": 83864, + "thread": 5 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 217889, + "thread": 19 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 391105, + "thread": 28 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 545017, + "thread": 28 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 796429, + "thread": 7 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 968135, + "thread": 9 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1073532, + "thread": 9 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1288174, + "thread": 21 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1332106, + "thread": 1 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1598983, + "thread": 24 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1795424, + "thread": 29 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 1969083, + "thread": 28 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2079053, + "thread": 3 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2186345, + "thread": 15 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2305994, + "thread": 28 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2542447, + "thread": 15 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2744531, + "thread": 18 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 2891252, + "thread": 7 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 3023090, + "thread": 19 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 3189803, + "thread": 24 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 3345820, + "thread": 13 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 3474532, + "thread": 17 + } + }, + { + "amount": "156.426625341", + "slot": { + "period": 3623663, + "thread": 27 + } + }, + { + "amount": "156.426625340", + "slot": { + "period": 3932404, + "thread": 12 + } + } + ], + "AU129iN7vmahCLf16VyoWq8mjGLBbCNaJG7dsCnRxK9ZGrBJBw99D": [ + { + "amount": "139.896515711", + "slot": { + "period": 143833, + "thread": 6 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 175474, + "thread": 28 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 390090, + "thread": 15 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 566189, + "thread": 20 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 717117, + "thread": 24 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 928886, + "thread": 22 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1005704, + "thread": 1 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1310592, + "thread": 17 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1413738, + "thread": 18 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1593395, + "thread": 18 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1760761, + "thread": 18 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 1901981, + "thread": 27 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2128594, + "thread": 3 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2188676, + "thread": 22 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2348830, + "thread": 13 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2567025, + "thread": 24 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2630585, + "thread": 24 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2871859, + "thread": 26 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 2998001, + "thread": 24 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 3262091, + "thread": 17 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 3442387, + "thread": 12 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 3549468, + "thread": 19 + } + }, + { + "amount": "139.896515711", + "slot": { + "period": 3626890, + "thread": 14 + } + }, + { + "amount": "139.896515709", + "slot": { + "period": 3823052, + "thread": 8 + } + } + ], + "AU129j4hLa2SSQKcdTJHs52T3Rmz54SPBsaNbWjfEPxACBP7Hv2zc": [ + { + "amount": "151.606340019", + "slot": { + "period": 14003, + "thread": 26 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 322150, + "thread": 15 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 489773, + "thread": 4 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 514168, + "thread": 6 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 788910, + "thread": 6 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 908863, + "thread": 27 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1032184, + "thread": 26 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1167821, + "thread": 22 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1463023, + "thread": 27 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1635826, + "thread": 10 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1699775, + "thread": 25 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 1957366, + "thread": 10 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2032397, + "thread": 16 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2223805, + "thread": 24 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2339815, + "thread": 9 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2475333, + "thread": 26 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2651880, + "thread": 29 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 2817248, + "thread": 12 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 3078470, + "thread": 5 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 3253684, + "thread": 15 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 3439918, + "thread": 1 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 3574422, + "thread": 0 + } + }, + { + "amount": "151.606340019", + "slot": { + "period": 3724111, + "thread": 24 + } + }, + { + "amount": "151.606340020", + "slot": { + "period": 3914591, + "thread": 25 + } + } + ], + "AU129kRxoULxJka93DeHoUvdqTXVJ2GXZN9A662SpsdQPzg1BG9VF": [ + { + "amount": "148.638863083", + "slot": { + "period": 131908, + "thread": 4 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 188821, + "thread": 28 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 370502, + "thread": 23 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 640906, + "thread": 30 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 700466, + "thread": 19 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 822922, + "thread": 24 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1118109, + "thread": 22 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1290379, + "thread": 28 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1449963, + "thread": 1 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1611635, + "thread": 30 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1662653, + "thread": 5 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 1961907, + "thread": 11 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2086289, + "thread": 31 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2215506, + "thread": 4 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2365971, + "thread": 22 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2543178, + "thread": 3 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2723967, + "thread": 24 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2800790, + "thread": 8 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 2954164, + "thread": 14 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 3258539, + "thread": 21 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 3423002, + "thread": 17 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 3561983, + "thread": 18 + } + }, + { + "amount": "148.638863083", + "slot": { + "period": 3771140, + "thread": 0 + } + }, + { + "amount": "148.638863082", + "slot": { + "period": 3780374, + "thread": 0 + } + } + ], + "AU129maCN3J1DCvqkq6pQL6TdodGPi3SSHhhm1Yggbc74ecMDBEQV": [ + { + "amount": "124.935142061", + "slot": { + "period": 160917, + "thread": 20 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 278257, + "thread": 17 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 349034, + "thread": 9 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 620010, + "thread": 22 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 777289, + "thread": 21 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 837502, + "thread": 7 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1020108, + "thread": 7 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1191773, + "thread": 11 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1468904, + "thread": 6 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1604189, + "thread": 12 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1774885, + "thread": 21 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 1890621, + "thread": 20 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2050283, + "thread": 31 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2226888, + "thread": 14 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2443802, + "thread": 29 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2612526, + "thread": 31 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2768216, + "thread": 2 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2858365, + "thread": 24 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 2993066, + "thread": 9 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 3266399, + "thread": 26 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 3353680, + "thread": 10 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 3601556, + "thread": 24 + } + }, + { + "amount": "124.935142061", + "slot": { + "period": 3623516, + "thread": 22 + } + }, + { + "amount": "124.935142051", + "slot": { + "period": 3947163, + "thread": 1 + } + } + ], + "AU129mr1cGcWhVqsJEs9CH8mVvCbF68847VeNVPC5Q9yHV33Qgf3c": [ + { + "amount": "190.284188689", + "slot": { + "period": 155535, + "thread": 23 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 218878, + "thread": 1 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 431010, + "thread": 5 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 593555, + "thread": 22 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 680309, + "thread": 10 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 929328, + "thread": 2 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1138229, + "thread": 6 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1236391, + "thread": 24 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1351368, + "thread": 19 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1582659, + "thread": 29 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1702058, + "thread": 27 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 1956841, + "thread": 26 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2029777, + "thread": 9 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2233192, + "thread": 2 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2453698, + "thread": 12 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2603243, + "thread": 8 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2683141, + "thread": 6 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2880205, + "thread": 25 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 2993384, + "thread": 19 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 3150374, + "thread": 16 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 3330563, + "thread": 25 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 3502166, + "thread": 19 + } + }, + { + "amount": "190.284188689", + "slot": { + "period": 3712620, + "thread": 8 + } + }, + { + "amount": "190.284188685", + "slot": { + "period": 3916590, + "thread": 0 + } + } + ], + "AU129n2712SNsXDeAPFDLYRqXv1LHvrwoAjgcQpC7LxUcNtPi5tae": [ + { + "amount": "142.856484243", + "slot": { + "period": 76445, + "thread": 23 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 247959, + "thread": 13 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 391226, + "thread": 24 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 567742, + "thread": 6 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 699173, + "thread": 10 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 907985, + "thread": 3 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1002074, + "thread": 13 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1213819, + "thread": 31 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1389024, + "thread": 12 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1625351, + "thread": 10 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1707588, + "thread": 18 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 1841275, + "thread": 28 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2008891, + "thread": 26 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2192722, + "thread": 5 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2376669, + "thread": 4 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2577487, + "thread": 8 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2642698, + "thread": 14 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 2808770, + "thread": 5 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3057440, + "thread": 25 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3279938, + "thread": 13 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3300634, + "thread": 4 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3508433, + "thread": 29 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3779619, + "thread": 0 + } + }, + { + "amount": "142.856484243", + "slot": { + "period": 3862265, + "thread": 11 + } + } + ], + "AU129nccKqDBZVXCMJVWg6DnVrHuZmYrxsdZoradRm8QSwTvCf7i4": [ + { + "amount": "551.589202668", + "slot": { + "period": 22902, + "thread": 9 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 229402, + "thread": 5 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 424873, + "thread": 11 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 593206, + "thread": 0 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 758071, + "thread": 21 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 862593, + "thread": 7 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1048736, + "thread": 2 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1262310, + "thread": 2 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1443289, + "thread": 11 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1541898, + "thread": 24 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1721351, + "thread": 8 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 1899872, + "thread": 21 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2084773, + "thread": 29 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2293732, + "thread": 26 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2328170, + "thread": 15 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2491360, + "thread": 2 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2770069, + "thread": 15 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2947142, + "thread": 8 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 2995822, + "thread": 28 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 3183070, + "thread": 28 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 3391812, + "thread": 10 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 3468639, + "thread": 6 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 3754979, + "thread": 30 + } + }, + { + "amount": "551.589202668", + "slot": { + "period": 3856758, + "thread": 2 + } + } + ], + "AU129pRDZWYjmVwAHuhAbSrzRFs7AiTSUXEB5RC8mJhtkyRQb6ewv": [ + { + "amount": "129.763248333", + "slot": { + "period": 36209, + "thread": 27 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 204086, + "thread": 25 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 413196, + "thread": 3 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 598940, + "thread": 29 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 654482, + "thread": 4 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 849511, + "thread": 11 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1033391, + "thread": 13 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1258495, + "thread": 17 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1463670, + "thread": 20 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1573601, + "thread": 5 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1680352, + "thread": 2 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 1952584, + "thread": 12 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2067579, + "thread": 16 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2198820, + "thread": 22 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2376766, + "thread": 31 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2574568, + "thread": 5 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2677712, + "thread": 28 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2889241, + "thread": 19 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 2961070, + "thread": 23 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 3122541, + "thread": 22 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 3293693, + "thread": 11 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 3499588, + "thread": 16 + } + }, + { + "amount": "129.763248333", + "slot": { + "period": 3694397, + "thread": 3 + } + }, + { + "amount": "129.763248340", + "slot": { + "period": 3914551, + "thread": 27 + } + } + ], + "AU129pXbonqMuHFNHggvmr4JWpngfek7WUQUCfiqHj4ykbVAyLNaj": [ + { + "amount": "173.079641681", + "slot": { + "period": 54866, + "thread": 31 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 277340, + "thread": 8 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 465175, + "thread": 13 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 636652, + "thread": 3 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 699183, + "thread": 13 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 961676, + "thread": 0 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1015962, + "thread": 25 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1175151, + "thread": 19 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1432254, + "thread": 8 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1533576, + "thread": 29 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1662539, + "thread": 18 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 1956667, + "thread": 23 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2045384, + "thread": 23 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2253250, + "thread": 26 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2370899, + "thread": 26 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2490418, + "thread": 24 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2769345, + "thread": 3 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 2883102, + "thread": 10 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 3049338, + "thread": 24 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 3137224, + "thread": 30 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 3353295, + "thread": 18 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 3524237, + "thread": 11 + } + }, + { + "amount": "173.079641681", + "slot": { + "period": 3671364, + "thread": 15 + } + }, + { + "amount": "173.079641674", + "slot": { + "period": 3906002, + "thread": 30 + } + } + ], + "AU129pkBume21DD5mYcAKLpZTLSrGm2KyUySMjW9o4muAAtPYDG2q": [ + { + "amount": "163.379881686", + "slot": { + "period": 124927, + "thread": 16 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 201388, + "thread": 16 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 425708, + "thread": 15 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 631757, + "thread": 17 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 679412, + "thread": 0 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 845520, + "thread": 8 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1090724, + "thread": 1 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1186424, + "thread": 13 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1404415, + "thread": 10 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1484113, + "thread": 13 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1748284, + "thread": 7 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 1956031, + "thread": 21 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2106051, + "thread": 27 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2264583, + "thread": 6 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2378793, + "thread": 1 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2549170, + "thread": 18 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2722285, + "thread": 11 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2894258, + "thread": 22 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 2969335, + "thread": 10 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 3268416, + "thread": 16 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 3422042, + "thread": 31 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 3539369, + "thread": 18 + } + }, + { + "amount": "163.379881686", + "slot": { + "period": 3654098, + "thread": 2 + } + }, + { + "amount": "163.379881694", + "slot": { + "period": 3782801, + "thread": 31 + } + } + ], + "AU129psFEiaVu1TG7K9FK38zy3gCz2qJq4Wqb7YbGp1Cgft3wAnHp": [ + { + "amount": "248.981039315", + "slot": { + "period": 12787, + "thread": 29 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 232473, + "thread": 10 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 384657, + "thread": 13 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 513490, + "thread": 15 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 718486, + "thread": 15 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 934150, + "thread": 26 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1044272, + "thread": 5 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1188737, + "thread": 28 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1354718, + "thread": 21 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1612152, + "thread": 17 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1773897, + "thread": 31 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 1922029, + "thread": 3 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2129898, + "thread": 21 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2166235, + "thread": 25 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2360368, + "thread": 11 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2487336, + "thread": 5 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2637055, + "thread": 7 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 2830004, + "thread": 16 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 3011800, + "thread": 27 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 3206003, + "thread": 3 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 3297989, + "thread": 7 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 3459561, + "thread": 16 + } + }, + { + "amount": "248.981039315", + "slot": { + "period": 3661564, + "thread": 7 + } + }, + { + "amount": "248.981039326", + "slot": { + "period": 3894296, + "thread": 30 + } + } + ], + "AU129q5sZf4eT5JGY968STBoz4iuRWPhVaYRjE68dKQ3qUziFNKp8": [ + { + "amount": "339.266532894", + "slot": { + "period": 110077, + "thread": 15 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 295154, + "thread": 5 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 380502, + "thread": 23 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 533873, + "thread": 7 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 767652, + "thread": 10 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 857842, + "thread": 13 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1135973, + "thread": 10 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1254593, + "thread": 4 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1347732, + "thread": 9 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1532826, + "thread": 21 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1766232, + "thread": 28 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 1942823, + "thread": 27 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2090600, + "thread": 17 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2234549, + "thread": 23 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2385982, + "thread": 18 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2521953, + "thread": 14 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2696100, + "thread": 26 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 2816895, + "thread": 8 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 3078204, + "thread": 15 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 3280078, + "thread": 22 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 3330081, + "thread": 9 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 3507931, + "thread": 28 + } + }, + { + "amount": "339.266532894", + "slot": { + "period": 3686106, + "thread": 24 + } + }, + { + "amount": "339.266532905", + "slot": { + "period": 3906224, + "thread": 3 + } + } + ], + "AU129qmVUm2Kivb5HLBx2QSPyTCNruUJav7DC7djZpDeGiNGLbs6B": [ + { + "amount": "358.938321970", + "slot": { + "period": 75021, + "thread": 21 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 213564, + "thread": 31 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 337971, + "thread": 3 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 646744, + "thread": 8 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 813386, + "thread": 20 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 947670, + "thread": 27 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1039173, + "thread": 31 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1272840, + "thread": 28 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1411112, + "thread": 2 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1522098, + "thread": 5 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1673739, + "thread": 22 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 1938928, + "thread": 22 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2112492, + "thread": 2 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2208225, + "thread": 5 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2317445, + "thread": 26 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2564653, + "thread": 10 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2720060, + "thread": 7 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2945426, + "thread": 31 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 2966303, + "thread": 9 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 3153467, + "thread": 29 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 3338925, + "thread": 8 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 3506627, + "thread": 31 + } + }, + { + "amount": "358.938321970", + "slot": { + "period": 3748227, + "thread": 22 + } + }, + { + "amount": "358.938321982", + "slot": { + "period": 3892716, + "thread": 20 + } + } + ], + "AU129quP2EeeuDkAdQXBTNy1QVGCAz1HhxCVnqYd9y126nFxiYPfz": [ + { + "amount": "112.318306282", + "slot": { + "period": 150703, + "thread": 8 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 232883, + "thread": 1 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 488240, + "thread": 4 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 583384, + "thread": 8 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 803002, + "thread": 9 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 976740, + "thread": 0 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1025361, + "thread": 29 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1181181, + "thread": 13 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1426114, + "thread": 25 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1566891, + "thread": 11 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1684741, + "thread": 27 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 1943040, + "thread": 3 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2111368, + "thread": 0 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2159274, + "thread": 10 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2424259, + "thread": 3 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2516879, + "thread": 8 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2714938, + "thread": 8 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 2837860, + "thread": 22 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 3088245, + "thread": 13 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 3235766, + "thread": 31 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 3337766, + "thread": 27 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 3472148, + "thread": 21 + } + }, + { + "amount": "112.318306282", + "slot": { + "period": 3645414, + "thread": 0 + } + }, + { + "amount": "112.318306270", + "slot": { + "period": 3838101, + "thread": 14 + } + } + ], + "AU129rhBEs7u1dgGNp4XFkddJMKPSkzUbDXqGvWx8fgG8muFaMur": [ + { + "amount": "474.456146867", + "slot": { + "period": 43814, + "thread": 19 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 222866, + "thread": 15 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 361702, + "thread": 8 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 522169, + "thread": 31 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 770921, + "thread": 9 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 909796, + "thread": 21 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1054651, + "thread": 7 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1166578, + "thread": 29 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1360361, + "thread": 26 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1563959, + "thread": 9 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1653312, + "thread": 2 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1853306, + "thread": 29 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 1976595, + "thread": 10 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 2281183, + "thread": 6 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 2407829, + "thread": 9 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 2490703, + "thread": 3 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 2777838, + "thread": 8 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 2856830, + "thread": 9 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 3074905, + "thread": 10 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 3279672, + "thread": 18 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 3379334, + "thread": 24 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 3463715, + "thread": 14 + } + }, + { + "amount": "474.456146867", + "slot": { + "period": 3646139, + "thread": 9 + } + }, + { + "amount": "474.456146869", + "slot": { + "period": 3916837, + "thread": 1 + } + } + ], + "AU129sLxakrx5rQbVPfM38BTHH13s62DP4VGa5iB2ghyeAhcaLj7u": [ + { + "amount": "88.802966878", + "slot": { + "period": 61954, + "thread": 1 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 176691, + "thread": 8 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 437014, + "thread": 4 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 536210, + "thread": 2 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 808308, + "thread": 24 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 913277, + "thread": 6 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1029853, + "thread": 8 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1167001, + "thread": 19 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1326765, + "thread": 20 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1573097, + "thread": 20 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1720938, + "thread": 31 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 1844366, + "thread": 29 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2105443, + "thread": 6 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2198728, + "thread": 21 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2425020, + "thread": 4 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2509160, + "thread": 22 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2751853, + "thread": 0 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2900476, + "thread": 12 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 2994965, + "thread": 4 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 3214718, + "thread": 13 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 3337549, + "thread": 28 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 3519196, + "thread": 1 + } + }, + { + "amount": "88.802966878", + "slot": { + "period": 3722745, + "thread": 15 + } + }, + { + "amount": "88.802966888", + "slot": { + "period": 3822357, + "thread": 10 + } + } + ], + "AU129tBEntYKvoMbrGPXz4T1RDQ88t38H9jV9Fz4bFhYQgXnNyrhB": [ + { + "amount": "270.837984711", + "slot": { + "period": 105680, + "thread": 9 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 323713, + "thread": 5 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 395232, + "thread": 31 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 646130, + "thread": 9 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 804405, + "thread": 2 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 848923, + "thread": 27 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1079671, + "thread": 22 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1216278, + "thread": 7 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1336965, + "thread": 2 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1556097, + "thread": 9 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1648371, + "thread": 15 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 1819393, + "thread": 0 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2122159, + "thread": 6 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2258444, + "thread": 31 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2342496, + "thread": 8 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2473347, + "thread": 17 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2626912, + "thread": 4 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2892163, + "thread": 26 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 2994358, + "thread": 15 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 3254857, + "thread": 12 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 3350365, + "thread": 3 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 3491137, + "thread": 29 + } + }, + { + "amount": "270.837984711", + "slot": { + "period": 3637398, + "thread": 10 + } + }, + { + "amount": "270.837984702", + "slot": { + "period": 3919083, + "thread": 24 + } + } + ], + "AU129uM7rur6yWurN3pRFvgmhT5QkhKnMLNB9XvSMVoLKQhGK8cck": [ + { + "amount": "141.781363369", + "slot": { + "period": 155139, + "thread": 18 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 271263, + "thread": 19 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 464678, + "thread": 29 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 584533, + "thread": 26 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 753285, + "thread": 19 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 878607, + "thread": 23 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1024372, + "thread": 2 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1202006, + "thread": 30 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1471806, + "thread": 30 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1485927, + "thread": 22 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1750378, + "thread": 26 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1975532, + "thread": 29 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 1989433, + "thread": 25 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 2208159, + "thread": 26 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 2440034, + "thread": 1 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 2500965, + "thread": 5 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 2728895, + "thread": 28 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 2863489, + "thread": 12 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3078118, + "thread": 15 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3122199, + "thread": 18 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3330225, + "thread": 1 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3464103, + "thread": 9 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3639160, + "thread": 11 + } + }, + { + "amount": "141.781363369", + "slot": { + "period": 3936770, + "thread": 2 + } + } + ], + "AU129vA68BCxvVn3xM5M8QnaK2a8GQFBZi4VMGzJzH1HbqrpJvWts": [ + { + "amount": "76.382318529", + "slot": { + "period": 101860, + "thread": 15 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 307813, + "thread": 15 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 409198, + "thread": 26 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 646798, + "thread": 8 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 694887, + "thread": 17 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 959568, + "thread": 11 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1022903, + "thread": 3 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1163362, + "thread": 21 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1378878, + "thread": 19 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1608748, + "thread": 20 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1664981, + "thread": 17 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 1831254, + "thread": 2 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2001922, + "thread": 20 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2214458, + "thread": 26 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2423662, + "thread": 2 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2530895, + "thread": 8 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2690063, + "thread": 2 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2873069, + "thread": 19 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 2962136, + "thread": 9 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 3130524, + "thread": 0 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 3335083, + "thread": 5 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 3583696, + "thread": 19 + } + }, + { + "amount": "76.382318529", + "slot": { + "period": 3684000, + "thread": 10 + } + }, + { + "amount": "76.382318534", + "slot": { + "period": 3821501, + "thread": 4 + } + } + ], + "AU129vHJeqfrDdyvBju3ZKz5WDUgtNYBjYL3ADJm3gBWC2JybGLE4": [ + { + "amount": "130.439231214", + "slot": { + "period": 119768, + "thread": 9 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 182765, + "thread": 12 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 340089, + "thread": 18 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 564472, + "thread": 28 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 780138, + "thread": 19 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 982067, + "thread": 30 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1066777, + "thread": 5 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1185940, + "thread": 4 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1432533, + "thread": 26 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1556319, + "thread": 7 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1691980, + "thread": 23 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 1860686, + "thread": 31 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2118422, + "thread": 22 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2199155, + "thread": 25 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2334602, + "thread": 4 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2615480, + "thread": 31 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2660282, + "thread": 15 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 2878224, + "thread": 26 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 3109563, + "thread": 2 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 3250615, + "thread": 11 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 3326004, + "thread": 26 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 3523819, + "thread": 14 + } + }, + { + "amount": "130.439231214", + "slot": { + "period": 3705362, + "thread": 29 + } + }, + { + "amount": "130.439231213", + "slot": { + "period": 3858452, + "thread": 15 + } + } + ], + "AU129vTunpbi2NTrvsyG6dmCxTFsg61GbR2qCdQqUusA5RmLt2pD8": [ + { + "amount": "62.347135687", + "slot": { + "period": 103623, + "thread": 17 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 292187, + "thread": 13 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 411410, + "thread": 28 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 618904, + "thread": 7 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 708688, + "thread": 23 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 847953, + "thread": 1 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1103545, + "thread": 2 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1219908, + "thread": 15 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1400411, + "thread": 28 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1636755, + "thread": 29 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1688865, + "thread": 19 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 1882403, + "thread": 3 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2100476, + "thread": 5 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2258319, + "thread": 6 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2395136, + "thread": 5 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2492116, + "thread": 31 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2734094, + "thread": 14 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 2947401, + "thread": 27 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 3076643, + "thread": 28 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 3187939, + "thread": 7 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 3372247, + "thread": 1 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 3490836, + "thread": 4 + } + }, + { + "amount": "62.347135687", + "slot": { + "period": 3630020, + "thread": 16 + } + }, + { + "amount": "62.347135676", + "slot": { + "period": 3851877, + "thread": 12 + } + } + ], + "AU129wPTuNsTjUfkd619EQewke12LhdEasP1oCnshUMzGVt3gQbr7": [ + { + "amount": "298.769056914", + "slot": { + "period": 47116, + "thread": 10 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 287682, + "thread": 30 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 369486, + "thread": 12 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 570541, + "thread": 9 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 806064, + "thread": 19 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 943638, + "thread": 23 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1141127, + "thread": 27 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1290243, + "thread": 15 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1324034, + "thread": 11 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1529205, + "thread": 3 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1675545, + "thread": 11 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 1814089, + "thread": 10 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2040267, + "thread": 8 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2159700, + "thread": 14 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2397316, + "thread": 23 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2495443, + "thread": 30 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2628696, + "thread": 19 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 2875059, + "thread": 20 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3022738, + "thread": 6 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3253048, + "thread": 16 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3381153, + "thread": 26 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3484369, + "thread": 11 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3683773, + "thread": 4 + } + }, + { + "amount": "298.769056914", + "slot": { + "period": 3851340, + "thread": 12 + } + } + ], + "AU129wwkr5ssBr1YeaseW77AYhCcCMoKCKyCyVa1oPnWUDJe8LQdL": [ + { + "amount": "130.188201374", + "slot": { + "period": 50390, + "thread": 15 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 282689, + "thread": 16 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 447888, + "thread": 3 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 580065, + "thread": 7 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 781509, + "thread": 12 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 885214, + "thread": 25 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1046476, + "thread": 24 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1210348, + "thread": 13 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1429254, + "thread": 3 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1619449, + "thread": 30 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1711917, + "thread": 5 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 1964979, + "thread": 25 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2085942, + "thread": 3 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2222002, + "thread": 29 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2399301, + "thread": 14 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2612513, + "thread": 23 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2786781, + "thread": 26 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 2873631, + "thread": 18 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 3081953, + "thread": 0 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 3178353, + "thread": 28 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 3383345, + "thread": 25 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 3577585, + "thread": 12 + } + }, + { + "amount": "130.188201374", + "slot": { + "period": 3779437, + "thread": 11 + } + }, + { + "amount": "130.188201372", + "slot": { + "period": 3918946, + "thread": 16 + } + } + ], + "AU129xeVREVg4oqiozVnwqS1sonKAVK8ZG5pcRadxop37BJZekdyY": [ + { + "amount": "275.130949036", + "slot": { + "period": 147492, + "thread": 3 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 302592, + "thread": 20 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 378612, + "thread": 6 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 564001, + "thread": 27 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 730146, + "thread": 31 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 886703, + "thread": 23 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1069215, + "thread": 14 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1280535, + "thread": 2 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1471008, + "thread": 25 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1604699, + "thread": 20 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1696794, + "thread": 7 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 1880649, + "thread": 22 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2054813, + "thread": 22 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2144002, + "thread": 17 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2451661, + "thread": 29 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2527416, + "thread": 31 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2751737, + "thread": 17 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 2927242, + "thread": 7 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 3051531, + "thread": 17 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 3167413, + "thread": 14 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 3425258, + "thread": 2 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 3479270, + "thread": 21 + } + }, + { + "amount": "275.130949036", + "slot": { + "period": 3635432, + "thread": 31 + } + }, + { + "amount": "275.130949027", + "slot": { + "period": 3945800, + "thread": 19 + } + } + ], + "AU129xxBRyy9KDD23cy4iREPrLVDNYP5HuECpKEiKuWYv85He1X6E": [ + { + "amount": "642.991614663", + "slot": { + "period": 68143, + "thread": 15 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 274409, + "thread": 0 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 400346, + "thread": 4 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 565842, + "thread": 23 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 767006, + "thread": 5 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 835715, + "thread": 8 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1071561, + "thread": 27 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1152247, + "thread": 22 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1412583, + "thread": 31 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1606477, + "thread": 16 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1808393, + "thread": 6 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 1824314, + "thread": 29 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2002662, + "thread": 3 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2199710, + "thread": 17 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2369649, + "thread": 25 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2492046, + "thread": 13 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2651923, + "thread": 3 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2894429, + "thread": 11 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 2955789, + "thread": 11 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 3239926, + "thread": 4 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 3386857, + "thread": 24 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 3489838, + "thread": 15 + } + }, + { + "amount": "642.991614663", + "slot": { + "period": 3650498, + "thread": 1 + } + }, + { + "amount": "642.991614674", + "slot": { + "period": 3911083, + "thread": 15 + } + } + ], + "AU129y3gwJw8w8bMLh6dqZZGZoTyWUHt7HueRgp68V7x9eV3TGrq6": [ + { + "amount": "190.559356690", + "slot": { + "period": 65980, + "thread": 29 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 176609, + "thread": 27 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 424133, + "thread": 2 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 532749, + "thread": 16 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 768891, + "thread": 10 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 863869, + "thread": 9 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1130499, + "thread": 23 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1296599, + "thread": 9 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1333924, + "thread": 27 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1493103, + "thread": 13 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1739522, + "thread": 29 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 1848965, + "thread": 21 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2040275, + "thread": 16 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2158267, + "thread": 22 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2343414, + "thread": 22 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2587337, + "thread": 8 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2684191, + "thread": 20 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 2866040, + "thread": 9 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 3058921, + "thread": 24 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 3215947, + "thread": 2 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 3357132, + "thread": 26 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 3560700, + "thread": 19 + } + }, + { + "amount": "190.559356690", + "slot": { + "period": 3675844, + "thread": 10 + } + }, + { + "amount": "190.559356689", + "slot": { + "period": 3892827, + "thread": 30 + } + } + ], + "AU129yKU6czih472SiJV5Mmso46EoEZ1kT3KAeDmcGUgBCG2nhxZN": [ + { + "amount": "95.977406250", + "slot": { + "period": 158322, + "thread": 24 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 209021, + "thread": 8 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 420922, + "thread": 7 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 628938, + "thread": 5 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 722163, + "thread": 27 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 979740, + "thread": 5 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1028583, + "thread": 8 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1280581, + "thread": 15 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1329449, + "thread": 23 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1528809, + "thread": 28 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1720293, + "thread": 14 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 1880862, + "thread": 4 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2062119, + "thread": 28 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2248214, + "thread": 2 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2326702, + "thread": 13 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2483423, + "thread": 2 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2727795, + "thread": 27 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 2819282, + "thread": 31 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3054318, + "thread": 23 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3240137, + "thread": 15 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3339444, + "thread": 26 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3472888, + "thread": 22 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3760094, + "thread": 14 + } + }, + { + "amount": "95.977406250", + "slot": { + "period": 3885749, + "thread": 5 + } + } + ], + "AU129yhcdssk7EHtVLC4YPjAS7swVkamvXuzKGgmqcrcGLzwnZMgs": [ + { + "amount": "53.841013170", + "slot": { + "period": 118576, + "thread": 17 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 218929, + "thread": 29 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 335888, + "thread": 20 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 527176, + "thread": 19 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 759743, + "thread": 30 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 951417, + "thread": 7 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1135479, + "thread": 18 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1191447, + "thread": 11 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1475734, + "thread": 21 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1560256, + "thread": 27 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1764715, + "thread": 28 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 1908098, + "thread": 18 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2083789, + "thread": 0 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2233055, + "thread": 12 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2383997, + "thread": 29 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2519515, + "thread": 8 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2720599, + "thread": 10 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2828606, + "thread": 2 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 2982752, + "thread": 19 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 3213757, + "thread": 0 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 3303535, + "thread": 12 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 3546791, + "thread": 20 + } + }, + { + "amount": "53.841013170", + "slot": { + "period": 3650028, + "thread": 25 + } + }, + { + "amount": "53.841013178", + "slot": { + "period": 3820070, + "thread": 17 + } + } + ], + "AU12A1EXuEtzFSrQngroSYBVirLzUAKSWG8wBuTgLMxYmjFWLmaGL": [ + { + "amount": "266.013185120", + "slot": { + "period": 111190, + "thread": 2 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 266261, + "thread": 20 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 463957, + "thread": 1 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 530667, + "thread": 7 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 716910, + "thread": 22 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 822895, + "thread": 26 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1108385, + "thread": 27 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1254128, + "thread": 9 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1326668, + "thread": 28 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1564980, + "thread": 19 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1790466, + "thread": 30 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 1857548, + "thread": 29 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2056778, + "thread": 2 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2275856, + "thread": 16 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2389933, + "thread": 5 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2542526, + "thread": 11 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2705276, + "thread": 13 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 2842123, + "thread": 20 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 3001012, + "thread": 18 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 3254161, + "thread": 10 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 3311568, + "thread": 24 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 3473750, + "thread": 16 + } + }, + { + "amount": "266.013185120", + "slot": { + "period": 3621151, + "thread": 27 + } + }, + { + "amount": "266.013185119", + "slot": { + "period": 3792739, + "thread": 7 + } + } + ], + "AU12A1Nq1GRJbjPbYf58kN8UGUfokXDwfj9m6GhQeCh3t5Rkh2WCT": [ + { + "amount": "226.349718182", + "slot": { + "period": 149696, + "thread": 16 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 193222, + "thread": 0 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 467303, + "thread": 26 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 561749, + "thread": 10 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 719266, + "thread": 5 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 980764, + "thread": 0 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1149142, + "thread": 5 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1178134, + "thread": 10 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1366103, + "thread": 9 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1553541, + "thread": 16 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1671794, + "thread": 23 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 1951550, + "thread": 15 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2093149, + "thread": 27 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2293214, + "thread": 10 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2331452, + "thread": 16 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2582006, + "thread": 22 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2717948, + "thread": 12 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2925263, + "thread": 27 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 2956158, + "thread": 21 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 3174442, + "thread": 10 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 3365817, + "thread": 23 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 3589569, + "thread": 3 + } + }, + { + "amount": "226.349718182", + "slot": { + "period": 3699093, + "thread": 1 + } + }, + { + "amount": "226.349718187", + "slot": { + "period": 3829064, + "thread": 8 + } + } + ], + "AU12A1rFSyrusTd4jkKMKW6XY86BedncqLu7pntkAWQFeipsfoCf8": [ + { + "amount": "171.952051827", + "slot": { + "period": 123477, + "thread": 22 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 199194, + "thread": 9 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 344618, + "thread": 9 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 642958, + "thread": 13 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 795963, + "thread": 14 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 859668, + "thread": 7 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1125830, + "thread": 2 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1160259, + "thread": 13 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1426405, + "thread": 8 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1553555, + "thread": 2 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1789568, + "thread": 31 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 1883113, + "thread": 24 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2043031, + "thread": 5 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2263272, + "thread": 5 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2336723, + "thread": 17 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2470521, + "thread": 30 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2678065, + "thread": 8 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 2834783, + "thread": 4 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 3008452, + "thread": 0 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 3204232, + "thread": 11 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 3419033, + "thread": 4 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 3523963, + "thread": 10 + } + }, + { + "amount": "171.952051827", + "slot": { + "period": 3769622, + "thread": 9 + } + }, + { + "amount": "171.952051836", + "slot": { + "period": 3789696, + "thread": 27 + } + } + ], + "AU12A2PTnrvE3ZYff6c2AKFCdaxa18B4LixxeWSj4vr4s1Nn8jXnz": [ + { + "amount": "393.106884037", + "slot": { + "period": 96643, + "thread": 11 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 261144, + "thread": 17 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 429607, + "thread": 25 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 570927, + "thread": 2 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 790369, + "thread": 30 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 825255, + "thread": 26 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 988828, + "thread": 0 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 1213162, + "thread": 24 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 1420888, + "thread": 12 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 1534858, + "thread": 23 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 1793770, + "thread": 20 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 1889634, + "thread": 14 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2036239, + "thread": 14 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2244353, + "thread": 26 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2420269, + "thread": 18 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2608029, + "thread": 3 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2656760, + "thread": 19 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2919014, + "thread": 5 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 2965941, + "thread": 9 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 3174700, + "thread": 6 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 3421979, + "thread": 3 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 3561698, + "thread": 30 + } + }, + { + "amount": "393.106884037", + "slot": { + "period": 3645322, + "thread": 5 + } + }, + { + "amount": "393.106884048", + "slot": { + "period": 3942410, + "thread": 10 + } + } + ], + "AU12A2dqJKnHoK7KY9XUY1xmtuU7RL9CK7RCD2ujBJU8wXYWJzdd1": [ + { + "amount": "65.761501905", + "slot": { + "period": 44348, + "thread": 12 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 304779, + "thread": 18 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 350450, + "thread": 17 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 545036, + "thread": 23 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 732455, + "thread": 26 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 898910, + "thread": 15 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 988016, + "thread": 1 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 1162575, + "thread": 1 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 1383517, + "thread": 5 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 1486675, + "thread": 6 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 1735960, + "thread": 23 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 1921242, + "thread": 3 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2046284, + "thread": 16 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2172069, + "thread": 7 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2417742, + "thread": 23 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2510670, + "thread": 7 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2710111, + "thread": 11 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 2865702, + "thread": 3 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 3033462, + "thread": 21 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 3283260, + "thread": 30 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 3444983, + "thread": 16 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 3487649, + "thread": 29 + } + }, + { + "amount": "65.761501905", + "slot": { + "period": 3697804, + "thread": 24 + } + }, + { + "amount": "65.761501904", + "slot": { + "period": 3887430, + "thread": 14 + } + } + ], + "AU12A3odAmC6EPWTADBEW5DQek16WVNv7yQxDAZM3ZAscVorbK1Xr": [ + { + "amount": "129.295391448", + "slot": { + "period": 84549, + "thread": 31 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 285684, + "thread": 22 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 384527, + "thread": 27 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 523537, + "thread": 13 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 745311, + "thread": 23 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 949700, + "thread": 20 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1014862, + "thread": 10 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1265682, + "thread": 30 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1418069, + "thread": 14 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1507837, + "thread": 29 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1742679, + "thread": 5 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 1856031, + "thread": 5 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2064333, + "thread": 29 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2203600, + "thread": 8 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2433430, + "thread": 29 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2569554, + "thread": 25 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2636574, + "thread": 25 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 2947764, + "thread": 22 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 3036188, + "thread": 16 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 3179400, + "thread": 9 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 3420274, + "thread": 29 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 3476568, + "thread": 21 + } + }, + { + "amount": "129.295391448", + "slot": { + "period": 3752297, + "thread": 31 + } + }, + { + "amount": "129.295391457", + "slot": { + "period": 3868098, + "thread": 17 + } + } + ], + "AU12A4aDkZghWeqJ71F4Xgu8AQjFA44Bs79w8r8221WMFjKjPjijp": [ + { + "amount": "208.472808953", + "slot": { + "period": 123050, + "thread": 12 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 287326, + "thread": 12 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 481224, + "thread": 6 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 508912, + "thread": 7 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 735033, + "thread": 6 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 908191, + "thread": 5 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1139171, + "thread": 12 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1209099, + "thread": 2 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1400049, + "thread": 8 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1584099, + "thread": 7 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1746591, + "thread": 20 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1924334, + "thread": 1 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 1987551, + "thread": 9 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2281107, + "thread": 14 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2383575, + "thread": 4 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2501211, + "thread": 9 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2636394, + "thread": 4 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2875577, + "thread": 8 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 2965007, + "thread": 28 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 3165542, + "thread": 4 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 3402246, + "thread": 7 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 3594743, + "thread": 8 + } + }, + { + "amount": "208.472808953", + "slot": { + "period": 3732925, + "thread": 29 + } + }, + { + "amount": "208.472808963", + "slot": { + "period": 3795872, + "thread": 13 + } + } + ], + "AU12A4oFpDTEridc8Qnz3nwM8yWB5DqWNyuEAEYuMppP5iLWtxq2s": [ + { + "amount": "88.521470628", + "slot": { + "period": 57465, + "thread": 23 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 227083, + "thread": 30 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 367248, + "thread": 3 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 638798, + "thread": 11 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 810047, + "thread": 7 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 945517, + "thread": 7 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1026688, + "thread": 22 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1230278, + "thread": 3 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1388981, + "thread": 20 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1625484, + "thread": 2 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1802350, + "thread": 10 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 1821725, + "thread": 31 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2012397, + "thread": 29 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2263296, + "thread": 31 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2329254, + "thread": 9 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2567280, + "thread": 21 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2736639, + "thread": 24 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 2916231, + "thread": 25 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 3008280, + "thread": 6 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 3219645, + "thread": 20 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 3294670, + "thread": 10 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 3569936, + "thread": 0 + } + }, + { + "amount": "88.521470628", + "slot": { + "period": 3667456, + "thread": 21 + } + }, + { + "amount": "88.521470639", + "slot": { + "period": 3922010, + "thread": 9 + } + } + ], + "AU12A5bCkJngs6CbqXmaU2rfNp7b3mvURWQ9u5khsmDqcSDrEeSW6": [ + { + "amount": "142.809304863", + "slot": { + "period": 158109, + "thread": 10 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 316919, + "thread": 1 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 424894, + "thread": 25 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 587739, + "thread": 21 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 754539, + "thread": 24 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 863986, + "thread": 2 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1029107, + "thread": 16 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1212250, + "thread": 3 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1435527, + "thread": 30 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1634655, + "thread": 28 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1685907, + "thread": 13 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 1854404, + "thread": 16 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2128590, + "thread": 14 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2151847, + "thread": 14 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2400080, + "thread": 11 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2490444, + "thread": 30 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2790253, + "thread": 2 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2801437, + "thread": 6 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 2959537, + "thread": 1 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 3245485, + "thread": 17 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 3304950, + "thread": 3 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 3616509, + "thread": 5 + } + }, + { + "amount": "142.809304863", + "slot": { + "period": 3620640, + "thread": 12 + } + }, + { + "amount": "142.809304873", + "slot": { + "period": 3858086, + "thread": 1 + } + } + ], + "AU12A5ioXs1m3VNAGZT49kj34amMY6Pcjqqz5dcPe3mZZUEpHBDeg": [ + { + "amount": "693.752851840", + "slot": { + "period": 149732, + "thread": 18 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 189396, + "thread": 30 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 397653, + "thread": 8 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 586045, + "thread": 31 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 736921, + "thread": 7 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 846408, + "thread": 16 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1054902, + "thread": 14 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1311109, + "thread": 13 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1474233, + "thread": 28 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1547692, + "thread": 15 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1678008, + "thread": 23 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 1889557, + "thread": 29 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2021853, + "thread": 13 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2241531, + "thread": 5 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2348561, + "thread": 13 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2606231, + "thread": 14 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2776681, + "thread": 3 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 2926306, + "thread": 9 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 3110746, + "thread": 12 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 3133751, + "thread": 5 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 3355790, + "thread": 10 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 3579432, + "thread": 7 + } + }, + { + "amount": "693.752851840", + "slot": { + "period": 3655583, + "thread": 20 + } + }, + { + "amount": "693.752851848", + "slot": { + "period": 3804914, + "thread": 6 + } + } + ], + "AU12A6gHee9yJEfr7rey496HM319Dqb46BFjqZytPN1LMEkr9NDLg": [ + { + "amount": "227.016993447", + "slot": { + "period": 97970, + "thread": 5 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 298877, + "thread": 1 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 371825, + "thread": 5 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 532408, + "thread": 0 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 736555, + "thread": 30 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 877976, + "thread": 5 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1002080, + "thread": 27 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1150797, + "thread": 22 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1348468, + "thread": 19 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1611577, + "thread": 27 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1662763, + "thread": 17 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 1892333, + "thread": 13 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2069831, + "thread": 15 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2155023, + "thread": 25 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2346660, + "thread": 8 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2478580, + "thread": 28 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2752315, + "thread": 16 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2807804, + "thread": 12 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 2975568, + "thread": 12 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 3242112, + "thread": 20 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 3384174, + "thread": 18 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 3513769, + "thread": 29 + } + }, + { + "amount": "227.016993447", + "slot": { + "period": 3623714, + "thread": 4 + } + }, + { + "amount": "227.016993456", + "slot": { + "period": 3831370, + "thread": 26 + } + } + ], + "AU12A6vWxoPWKCW6sAiiHaZ5e7HXebfPnixH79dPxDM2rsZ2rvK9o": [ + { + "amount": "295.590970343", + "slot": { + "period": 30163, + "thread": 8 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 290713, + "thread": 10 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 455923, + "thread": 6 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 601184, + "thread": 19 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 804662, + "thread": 3 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 851130, + "thread": 23 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1055722, + "thread": 4 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1244738, + "thread": 6 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1470207, + "thread": 5 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1646869, + "thread": 7 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1702186, + "thread": 8 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 1887850, + "thread": 17 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2141496, + "thread": 13 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2168041, + "thread": 24 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2341632, + "thread": 25 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2590237, + "thread": 23 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2697711, + "thread": 15 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 2872399, + "thread": 9 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 3108265, + "thread": 13 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 3172453, + "thread": 11 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 3296946, + "thread": 26 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 3611473, + "thread": 17 + } + }, + { + "amount": "295.590970343", + "slot": { + "period": 3693913, + "thread": 21 + } + }, + { + "amount": "295.590970342", + "slot": { + "period": 3839539, + "thread": 11 + } + } + ], + "AU12A7MhRYRksgQgSj1536NxwmoLU3ZcWGyhZmSapFL1oCY9t7AVV": [ + { + "amount": "145.001104335", + "slot": { + "period": 17633, + "thread": 29 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 196788, + "thread": 8 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 416537, + "thread": 11 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 562259, + "thread": 29 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 760179, + "thread": 20 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 967257, + "thread": 9 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1122434, + "thread": 0 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1162410, + "thread": 16 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1352826, + "thread": 21 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1508640, + "thread": 23 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1784930, + "thread": 27 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 1973663, + "thread": 21 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2030633, + "thread": 14 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2152903, + "thread": 8 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2408867, + "thread": 2 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2559514, + "thread": 16 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2710966, + "thread": 31 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2836449, + "thread": 3 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 2983419, + "thread": 25 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 3125278, + "thread": 25 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 3430201, + "thread": 20 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 3583084, + "thread": 12 + } + }, + { + "amount": "145.001104335", + "slot": { + "period": 3644550, + "thread": 27 + } + }, + { + "amount": "145.001104339", + "slot": { + "period": 3842279, + "thread": 5 + } + } + ], + "AU12A856m7dkvN6E2aJPsz8KasSgDMD4LiqaorFZVAD3yh217h86P": [ + { + "amount": "129.757693963", + "slot": { + "period": 36452, + "thread": 25 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 292046, + "thread": 10 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 427648, + "thread": 29 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 566449, + "thread": 3 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 680380, + "thread": 23 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 897624, + "thread": 27 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1013512, + "thread": 9 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1172570, + "thread": 15 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1327286, + "thread": 9 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1596457, + "thread": 1 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1771772, + "thread": 20 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 1908062, + "thread": 16 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2049725, + "thread": 4 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2243588, + "thread": 3 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2391579, + "thread": 10 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2511173, + "thread": 19 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2784626, + "thread": 28 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2804993, + "thread": 12 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 2968758, + "thread": 16 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 3207138, + "thread": 0 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 3428987, + "thread": 3 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 3503457, + "thread": 30 + } + }, + { + "amount": "129.757693963", + "slot": { + "period": 3639676, + "thread": 17 + } + }, + { + "amount": "129.757693974", + "slot": { + "period": 3789767, + "thread": 1 + } + } + ], + "AU12A99YnRvUHkGrVufdP7j9Xc8cpWtoigh7omp7HUrXYsDLU6URf": [ + { + "amount": "151.721497277", + "slot": { + "period": 158046, + "thread": 15 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 186913, + "thread": 19 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 445961, + "thread": 28 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 648963, + "thread": 17 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 725872, + "thread": 2 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 830684, + "thread": 4 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1105084, + "thread": 21 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1237400, + "thread": 21 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1451253, + "thread": 30 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1533899, + "thread": 24 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1776754, + "thread": 18 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 1861354, + "thread": 16 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2087889, + "thread": 19 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2290367, + "thread": 17 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2354203, + "thread": 0 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2586861, + "thread": 9 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2751117, + "thread": 27 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2840817, + "thread": 25 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 2977094, + "thread": 15 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 3196251, + "thread": 16 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 3377869, + "thread": 10 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 3502330, + "thread": 23 + } + }, + { + "amount": "151.721497277", + "slot": { + "period": 3695154, + "thread": 13 + } + }, + { + "amount": "151.721497276", + "slot": { + "period": 3879163, + "thread": 28 + } + } + ], + "AU12A9oUfTYBYkFGQCLp8Snjg8GsLiCiyJk7xoFYyB2jYCgCgRjCg": [ + { + "amount": "260.614290156", + "slot": { + "period": 152819, + "thread": 11 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 211133, + "thread": 3 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 403625, + "thread": 1 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 537204, + "thread": 3 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 699267, + "thread": 28 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 863294, + "thread": 22 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1032520, + "thread": 5 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1266344, + "thread": 15 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1370794, + "thread": 25 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1520057, + "thread": 5 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1736671, + "thread": 0 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1885713, + "thread": 10 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 1995299, + "thread": 11 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 2261462, + "thread": 6 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 2351347, + "thread": 13 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 2482453, + "thread": 7 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 2697518, + "thread": 1 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 2868118, + "thread": 0 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 3015059, + "thread": 19 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 3208978, + "thread": 2 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 3397777, + "thread": 7 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 3539637, + "thread": 10 + } + }, + { + "amount": "260.614290156", + "slot": { + "period": 3738747, + "thread": 9 + } + }, + { + "amount": "260.614290155", + "slot": { + "period": 3888128, + "thread": 19 + } + } + ], + "AU12AAgYoiAmD6aPpU88YLVoppCVoWSQpshzfY5fmixmkuzECo8iJ": [ + { + "amount": "461.121895541", + "slot": { + "period": 102575, + "thread": 5 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 231525, + "thread": 16 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 343189, + "thread": 5 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 638404, + "thread": 25 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 723132, + "thread": 3 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 908190, + "thread": 4 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1111622, + "thread": 21 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1271638, + "thread": 14 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1479554, + "thread": 5 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1610708, + "thread": 7 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1714923, + "thread": 17 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 1864906, + "thread": 11 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2068674, + "thread": 14 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2166904, + "thread": 24 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2360389, + "thread": 18 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2482214, + "thread": 7 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2712029, + "thread": 14 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2822363, + "thread": 24 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 2981572, + "thread": 26 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 3124502, + "thread": 14 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 3405829, + "thread": 22 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 3583013, + "thread": 22 + } + }, + { + "amount": "461.121895541", + "slot": { + "period": 3634168, + "thread": 6 + } + }, + { + "amount": "461.121895545", + "slot": { + "period": 3831026, + "thread": 2 + } + } + ], + "AU12ABWTyQNHytU261TGHH7xRnUqaoCAzjDveNytPDYhrn1Ex9YKd": [ + { + "amount": "456.909327481", + "slot": { + "period": 65110, + "thread": 13 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 231585, + "thread": 1 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 393611, + "thread": 5 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 581810, + "thread": 7 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 809462, + "thread": 1 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 832681, + "thread": 17 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 985700, + "thread": 10 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 1170903, + "thread": 23 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 1395514, + "thread": 6 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 1582125, + "thread": 22 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 1666323, + "thread": 26 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 1832609, + "thread": 23 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2135870, + "thread": 11 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2266186, + "thread": 6 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2422956, + "thread": 12 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2607165, + "thread": 22 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2703321, + "thread": 6 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2806331, + "thread": 13 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 2963063, + "thread": 31 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 3217068, + "thread": 24 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 3393390, + "thread": 10 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 3576112, + "thread": 28 + } + }, + { + "amount": "456.909327481", + "slot": { + "period": 3666473, + "thread": 11 + } + }, + { + "amount": "456.909327477", + "slot": { + "period": 3846359, + "thread": 6 + } + } + ], + "AU12ABbFVAhV7CrjN5P2GqP8atyUCdKxixtPmYbfKAx7mswY3PKEP": [ + { + "amount": "75.288197084", + "slot": { + "period": 37558, + "thread": 21 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 294211, + "thread": 24 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 403952, + "thread": 19 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 575963, + "thread": 15 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 720463, + "thread": 5 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 930904, + "thread": 13 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1010228, + "thread": 17 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1181129, + "thread": 14 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1347872, + "thread": 13 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1551499, + "thread": 14 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1666249, + "thread": 11 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 1923968, + "thread": 22 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2136457, + "thread": 7 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2286180, + "thread": 28 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2419010, + "thread": 6 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2543845, + "thread": 4 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2721297, + "thread": 19 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 2915145, + "thread": 13 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 3014163, + "thread": 7 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 3147988, + "thread": 20 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 3414136, + "thread": 13 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 3500062, + "thread": 11 + } + }, + { + "amount": "75.288197084", + "slot": { + "period": 3707247, + "thread": 18 + } + }, + { + "amount": "75.288197082", + "slot": { + "period": 3883167, + "thread": 3 + } + } + ], + "AU12ABjv3xJGvkR95sGmE6oHCkLC8BWo2i3r6EwvhQWg9RiN1hhyD": [ + { + "amount": "182.810121495", + "slot": { + "period": 125108, + "thread": 29 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 256072, + "thread": 9 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 356540, + "thread": 8 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 638488, + "thread": 23 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 735681, + "thread": 21 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 901267, + "thread": 9 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1007437, + "thread": 20 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1249926, + "thread": 5 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1414620, + "thread": 7 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1627304, + "thread": 18 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1778523, + "thread": 11 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 1812328, + "thread": 21 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2067492, + "thread": 9 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2244094, + "thread": 5 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2423383, + "thread": 16 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2592544, + "thread": 19 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2683041, + "thread": 6 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 2809252, + "thread": 6 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3006008, + "thread": 23 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3175778, + "thread": 10 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3325693, + "thread": 3 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3590878, + "thread": 31 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3736501, + "thread": 16 + } + }, + { + "amount": "182.810121495", + "slot": { + "period": 3907224, + "thread": 17 + } + } + ], + "AU12ACBoiuHgA6aaqDEdddK4GBxB4YV3atvcJrfTtbmQqrnHfmEut": [ + { + "amount": "58.968418706", + "slot": { + "period": 139427, + "thread": 17 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 322419, + "thread": 18 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 413118, + "thread": 15 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 592907, + "thread": 31 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 809834, + "thread": 17 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 844983, + "thread": 17 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1040842, + "thread": 10 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1156259, + "thread": 2 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1429645, + "thread": 0 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1485772, + "thread": 6 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1788781, + "thread": 5 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 1845508, + "thread": 16 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2022216, + "thread": 16 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2255427, + "thread": 10 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2305434, + "thread": 20 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2581091, + "thread": 12 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2629060, + "thread": 27 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 2844021, + "thread": 6 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 3120904, + "thread": 18 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 3258826, + "thread": 31 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 3368784, + "thread": 14 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 3523010, + "thread": 7 + } + }, + { + "amount": "58.968418706", + "slot": { + "period": 3760990, + "thread": 6 + } + }, + { + "amount": "58.968418701", + "slot": { + "period": 3824487, + "thread": 13 + } + } + ], + "AU12ACrhU8KDKhwnCpbKNSFfL9NeKWKLTJtktAAMwwyqvcR4B6pQ4": [ + { + "amount": "425.932227719", + "slot": { + "period": 163774, + "thread": 28 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 263655, + "thread": 28 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 379210, + "thread": 23 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 593054, + "thread": 10 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 655955, + "thread": 2 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 870327, + "thread": 15 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1021206, + "thread": 8 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1285406, + "thread": 13 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1408430, + "thread": 21 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1535157, + "thread": 16 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1688622, + "thread": 13 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 1860617, + "thread": 0 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2099688, + "thread": 27 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2217847, + "thread": 27 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2459651, + "thread": 12 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2590219, + "thread": 0 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2725797, + "thread": 4 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 2849753, + "thread": 19 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 3002684, + "thread": 23 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 3275415, + "thread": 21 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 3330459, + "thread": 0 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 3560484, + "thread": 27 + } + }, + { + "amount": "425.932227719", + "slot": { + "period": 3632792, + "thread": 20 + } + }, + { + "amount": "425.932227710", + "slot": { + "period": 3925716, + "thread": 18 + } + } + ], + "AU12ADmoYpra6YGr4ZdSscFAZAz6Sy7nV2o7DUkuMV6gtrajEvbod": [ + { + "amount": "386.270308535", + "slot": { + "period": 53855, + "thread": 30 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 247933, + "thread": 13 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 463304, + "thread": 0 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 538899, + "thread": 21 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 684688, + "thread": 7 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 961006, + "thread": 6 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1063014, + "thread": 15 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1154425, + "thread": 15 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1326707, + "thread": 12 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1604310, + "thread": 10 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1677644, + "thread": 0 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 1976395, + "thread": 16 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2024072, + "thread": 29 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2240278, + "thread": 19 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2300231, + "thread": 17 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2555711, + "thread": 31 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2786165, + "thread": 23 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 2810616, + "thread": 20 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 3023245, + "thread": 12 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 3241533, + "thread": 5 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 3341269, + "thread": 19 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 3463665, + "thread": 30 + } + }, + { + "amount": "386.270308535", + "slot": { + "period": 3727190, + "thread": 30 + } + }, + { + "amount": "386.270308528", + "slot": { + "period": 3877189, + "thread": 19 + } + } + ], + "AU12AEET6qGJVspr4yPSUQjPvWhuWKxm18ATyRfFdkNT529eFhjik": [ + { + "amount": "76.157817866", + "slot": { + "period": 149339, + "thread": 12 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 282473, + "thread": 0 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 383576, + "thread": 13 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 529085, + "thread": 31 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 721026, + "thread": 4 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 853521, + "thread": 21 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1049470, + "thread": 31 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1229853, + "thread": 19 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1358434, + "thread": 31 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1480535, + "thread": 7 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1748152, + "thread": 4 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 1869313, + "thread": 30 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2128806, + "thread": 2 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2224341, + "thread": 14 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2438583, + "thread": 26 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2481074, + "thread": 24 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2773599, + "thread": 8 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 2891036, + "thread": 17 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 3043728, + "thread": 13 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 3170393, + "thread": 14 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 3400200, + "thread": 26 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 3511597, + "thread": 9 + } + }, + { + "amount": "76.157817866", + "slot": { + "period": 3779668, + "thread": 8 + } + }, + { + "amount": "76.157817867", + "slot": { + "period": 3883297, + "thread": 1 + } + } + ], + "AU12AEX8azfEUk6t9uQx41uMUbQmpQwk2BDpeHjHcUzK6U7vQJDi8": [ + { + "amount": "327.916815992", + "slot": { + "period": 140247, + "thread": 20 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 277493, + "thread": 26 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 380958, + "thread": 31 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 496097, + "thread": 6 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 661162, + "thread": 18 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 895976, + "thread": 17 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1014797, + "thread": 25 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1183969, + "thread": 1 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1382741, + "thread": 30 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1577530, + "thread": 14 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1727470, + "thread": 10 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 1956480, + "thread": 2 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2133688, + "thread": 20 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2275451, + "thread": 30 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2296767, + "thread": 7 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2504676, + "thread": 0 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2736405, + "thread": 27 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 2825656, + "thread": 6 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 3057150, + "thread": 17 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 3202037, + "thread": 19 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 3438137, + "thread": 25 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 3580320, + "thread": 5 + } + }, + { + "amount": "327.916815992", + "slot": { + "period": 3636076, + "thread": 11 + } + }, + { + "amount": "327.916815989", + "slot": { + "period": 3794864, + "thread": 27 + } + } + ], + "AU12AF9CuUKXV5URBzrJ6btaBr7UaxGzx59Smc86CshgQ7umNvZRx": [ + { + "amount": "11666.666666667", + "slot": { + "period": 89372, + "thread": 8 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 196528, + "thread": 3 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 334582, + "thread": 13 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 498393, + "thread": 21 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 764571, + "thread": 23 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 826338, + "thread": 17 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1037345, + "thread": 31 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1187364, + "thread": 29 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1384147, + "thread": 13 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1564667, + "thread": 13 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1789977, + "thread": 11 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1859486, + "thread": 2 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2027335, + "thread": 6 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2292012, + "thread": 1 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2329771, + "thread": 30 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2575194, + "thread": 1 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2726639, + "thread": 10 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2900865, + "thread": 12 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3036920, + "thread": 8 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3213076, + "thread": 18 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3449353, + "thread": 25 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3503698, + "thread": 12 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3719119, + "thread": 8 + } + }, + { + "amount": "11666.666666659", + "slot": { + "period": 3841617, + "thread": 3 + } + } + ], + "AU12AFN2yjorL1ZAcQnWw8mhCw7DzJkLVdz975JQmZJtLzQcJYzxw": [ + { + "amount": "100.890440756", + "slot": { + "period": 124514, + "thread": 20 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 181011, + "thread": 7 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 347590, + "thread": 22 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 640480, + "thread": 16 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 815034, + "thread": 18 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 846962, + "thread": 21 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1025457, + "thread": 20 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1263146, + "thread": 23 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1392030, + "thread": 29 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1508538, + "thread": 2 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1652974, + "thread": 28 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 1851828, + "thread": 3 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2110282, + "thread": 5 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2201718, + "thread": 3 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2380519, + "thread": 18 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2485460, + "thread": 11 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2652358, + "thread": 5 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 2895366, + "thread": 21 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 3089151, + "thread": 30 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 3199741, + "thread": 30 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 3350757, + "thread": 12 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 3490915, + "thread": 11 + } + }, + { + "amount": "100.890440756", + "slot": { + "period": 3700795, + "thread": 16 + } + }, + { + "amount": "100.890440746", + "slot": { + "period": 3916622, + "thread": 17 + } + } + ], + "AU12AFRWDcY5GXyupEQcU2XnKMaC5yb5NYrq1nw9ZU24LyyncL2kD": [ + { + "amount": "369.224016248", + "slot": { + "period": 35882, + "thread": 7 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 181875, + "thread": 14 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 324732, + "thread": 27 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 493039, + "thread": 12 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 728579, + "thread": 1 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 958246, + "thread": 26 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1096494, + "thread": 28 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1154037, + "thread": 6 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1451951, + "thread": 19 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1517450, + "thread": 17 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1735635, + "thread": 29 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 1850629, + "thread": 20 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2012047, + "thread": 16 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2254980, + "thread": 13 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2368718, + "thread": 5 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2577122, + "thread": 15 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2768555, + "thread": 20 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 2912892, + "thread": 19 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 3033911, + "thread": 4 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 3275222, + "thread": 6 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 3402636, + "thread": 25 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 3494090, + "thread": 17 + } + }, + { + "amount": "369.224016248", + "slot": { + "period": 3724134, + "thread": 5 + } + }, + { + "amount": "369.224016243", + "slot": { + "period": 3842218, + "thread": 2 + } + } + ], + "AU12AG84s5Kaisj8v3gJzYQe6D5rLdM2DYnahiRhBDmGDC5x52YdH": [ + { + "amount": "255.850449779", + "slot": { + "period": 74991, + "thread": 5 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 190146, + "thread": 15 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 346177, + "thread": 18 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 545268, + "thread": 19 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 666277, + "thread": 27 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 902787, + "thread": 15 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1004486, + "thread": 10 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1259911, + "thread": 16 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1381588, + "thread": 5 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1573206, + "thread": 28 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1739877, + "thread": 30 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 1927021, + "thread": 1 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2104805, + "thread": 11 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2200537, + "thread": 29 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2462076, + "thread": 5 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2563417, + "thread": 0 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2704809, + "thread": 0 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 2933561, + "thread": 23 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 3082104, + "thread": 30 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 3195180, + "thread": 19 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 3323112, + "thread": 27 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 3565009, + "thread": 16 + } + }, + { + "amount": "255.850449779", + "slot": { + "period": 3679529, + "thread": 17 + } + }, + { + "amount": "255.850449782", + "slot": { + "period": 3842116, + "thread": 19 + } + } + ], + "AU12AHCzSXhyqWRAqXxg1z9XcdaBrqN2CyVRw8Zeepny9XfhuZj3i": [ + { + "amount": "239.685649639", + "slot": { + "period": 28410, + "thread": 12 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 314594, + "thread": 4 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 406907, + "thread": 0 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 642858, + "thread": 28 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 675222, + "thread": 19 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 908685, + "thread": 20 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1049026, + "thread": 27 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1307121, + "thread": 8 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1389305, + "thread": 1 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1514727, + "thread": 19 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1744366, + "thread": 2 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 1933148, + "thread": 10 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2032297, + "thread": 19 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2172674, + "thread": 27 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2362644, + "thread": 15 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2550475, + "thread": 7 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2758537, + "thread": 7 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 2886092, + "thread": 20 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 3049166, + "thread": 6 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 3131518, + "thread": 10 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 3309299, + "thread": 21 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 3574509, + "thread": 19 + } + }, + { + "amount": "239.685649639", + "slot": { + "period": 3622597, + "thread": 17 + } + }, + { + "amount": "239.685649634", + "slot": { + "period": 3943763, + "thread": 29 + } + } + ], + "AU12AKAsCG2giz3Jg1D4nyTmU3utCXUq5WbQ9TE8vZdHtrkx9nkke": [ + { + "amount": "58.987485180", + "slot": { + "period": 14958, + "thread": 10 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 174300, + "thread": 13 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 451515, + "thread": 23 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 497426, + "thread": 26 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 779722, + "thread": 21 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 940090, + "thread": 28 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1013416, + "thread": 20 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1280868, + "thread": 12 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1466531, + "thread": 22 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1592449, + "thread": 18 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1768624, + "thread": 30 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 1822299, + "thread": 15 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2085128, + "thread": 8 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2280413, + "thread": 5 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2360675, + "thread": 0 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2614271, + "thread": 11 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2641386, + "thread": 17 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 2888818, + "thread": 6 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 3118465, + "thread": 19 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 3248073, + "thread": 5 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 3311050, + "thread": 21 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 3591156, + "thread": 10 + } + }, + { + "amount": "58.987485180", + "slot": { + "period": 3647016, + "thread": 18 + } + }, + { + "amount": "58.987485189", + "slot": { + "period": 3922483, + "thread": 8 + } + } + ], + "AU12AKZMJXjJGzonTXqi57egPiwqq8zPmXfJkrSamG8PESgjcUafA": [ + { + "amount": "137.327789975", + "slot": { + "period": 106382, + "thread": 9 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 272807, + "thread": 18 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 340186, + "thread": 3 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 584550, + "thread": 15 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 704998, + "thread": 29 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 941389, + "thread": 20 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1038834, + "thread": 15 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1153966, + "thread": 22 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1350727, + "thread": 4 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1639395, + "thread": 8 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1775268, + "thread": 28 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 1958899, + "thread": 20 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2099993, + "thread": 22 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2169117, + "thread": 9 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2408356, + "thread": 19 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2504541, + "thread": 14 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2626187, + "thread": 20 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 2800957, + "thread": 25 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 3062011, + "thread": 30 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 3131335, + "thread": 8 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 3370492, + "thread": 12 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 3497983, + "thread": 5 + } + }, + { + "amount": "137.327789975", + "slot": { + "period": 3705543, + "thread": 9 + } + }, + { + "amount": "137.327789974", + "slot": { + "period": 3845762, + "thread": 10 + } + } + ], + "AU12AKvUcTzbTxVmaKCGFm8NQFRX8WiEUw6oaat2ue7yYDYg4piSP": [ + { + "amount": "110.053731995", + "slot": { + "period": 42971, + "thread": 8 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 272840, + "thread": 9 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 353800, + "thread": 8 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 567443, + "thread": 27 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 677908, + "thread": 6 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 929271, + "thread": 3 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1033072, + "thread": 26 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1301034, + "thread": 24 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1343587, + "thread": 28 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1492126, + "thread": 10 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1719348, + "thread": 4 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 1874690, + "thread": 15 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2064215, + "thread": 23 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2178145, + "thread": 11 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2448333, + "thread": 11 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2622700, + "thread": 28 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2714108, + "thread": 24 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 2807651, + "thread": 25 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 3076835, + "thread": 9 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 3139980, + "thread": 31 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 3391707, + "thread": 31 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 3564786, + "thread": 10 + } + }, + { + "amount": "110.053731995", + "slot": { + "period": 3707238, + "thread": 18 + } + }, + { + "amount": "110.053731990", + "slot": { + "period": 3856622, + "thread": 24 + } + } + ], + "AU12ANGpMzuwXKk2gTUbU2pUrehVRXKBgNLbagbRwCGAo8zQBuis9": [ + { + "amount": "55.895748493", + "slot": { + "period": 137484, + "thread": 0 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 181032, + "thread": 29 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 480981, + "thread": 10 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 492400, + "thread": 15 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 769215, + "thread": 0 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 921979, + "thread": 12 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 985376, + "thread": 24 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 1236421, + "thread": 17 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 1365515, + "thread": 5 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 1578105, + "thread": 3 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 1722805, + "thread": 18 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 1955895, + "thread": 22 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2045204, + "thread": 11 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2252075, + "thread": 15 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2349128, + "thread": 11 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2489846, + "thread": 1 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2789996, + "thread": 12 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 2886175, + "thread": 6 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 3111986, + "thread": 29 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 3228847, + "thread": 22 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 3320948, + "thread": 10 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 3466387, + "thread": 9 + } + }, + { + "amount": "55.895748493", + "slot": { + "period": 3751269, + "thread": 25 + } + }, + { + "amount": "55.895748490", + "slot": { + "period": 3893795, + "thread": 25 + } + } + ], + "AU12ANt8C9wj9kkiq1Z1Z7SGLKangw7c8kzy6CcF5aY5DA1K3XKae": [ + { + "amount": "238.708456785", + "slot": { + "period": 117513, + "thread": 1 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 214749, + "thread": 2 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 353707, + "thread": 0 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 556507, + "thread": 28 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 696657, + "thread": 14 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 851503, + "thread": 17 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1111111, + "thread": 1 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1301452, + "thread": 8 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1341277, + "thread": 30 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1503701, + "thread": 29 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1728459, + "thread": 2 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 1894604, + "thread": 10 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2063704, + "thread": 12 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2258686, + "thread": 29 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2374527, + "thread": 2 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2606865, + "thread": 24 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2661214, + "thread": 6 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 2897155, + "thread": 6 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 3085537, + "thread": 23 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 3168018, + "thread": 13 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 3415793, + "thread": 15 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 3498307, + "thread": 31 + } + }, + { + "amount": "238.708456785", + "slot": { + "period": 3724378, + "thread": 13 + } + }, + { + "amount": "238.708456778", + "slot": { + "period": 3801671, + "thread": 0 + } + } + ], + "AU12APgaHPY9bZtPF6A1CRLGk6oEHwYpPNorUf6kfby9QwM2BrtR3": [ + { + "amount": "217.372769841", + "slot": { + "period": 94389, + "thread": 22 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 227190, + "thread": 11 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 331983, + "thread": 12 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 644605, + "thread": 25 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 712841, + "thread": 16 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 950208, + "thread": 8 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1004886, + "thread": 9 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1266944, + "thread": 30 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1343960, + "thread": 24 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1643713, + "thread": 19 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1774453, + "thread": 28 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 1841919, + "thread": 24 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2092270, + "thread": 30 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2261255, + "thread": 1 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2372627, + "thread": 29 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2478782, + "thread": 14 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2653017, + "thread": 8 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 2824427, + "thread": 21 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 3057583, + "thread": 4 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 3246024, + "thread": 14 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 3324412, + "thread": 31 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 3496911, + "thread": 15 + } + }, + { + "amount": "217.372769841", + "slot": { + "period": 3689153, + "thread": 5 + } + }, + { + "amount": "217.372769842", + "slot": { + "period": 3871056, + "thread": 12 + } + } + ], + "AU12ARQg5KGTDQoHsuvhwto4kA5x6KaChBadYUqEkSQp4hg72UrPp": [ + { + "amount": "149.339097431", + "slot": { + "period": 131924, + "thread": 26 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 236795, + "thread": 19 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 332976, + "thread": 5 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 517914, + "thread": 21 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 724303, + "thread": 21 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 982081, + "thread": 14 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 995374, + "thread": 30 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 1170679, + "thread": 14 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 1432064, + "thread": 21 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 1641848, + "thread": 17 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 1790792, + "thread": 23 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 1890870, + "thread": 17 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2057326, + "thread": 18 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2259757, + "thread": 23 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2426084, + "thread": 7 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2483827, + "thread": 28 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2636222, + "thread": 8 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 2860726, + "thread": 12 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 3031088, + "thread": 15 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 3137967, + "thread": 11 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 3407965, + "thread": 22 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 3610529, + "thread": 10 + } + }, + { + "amount": "149.339097431", + "slot": { + "period": 3631907, + "thread": 29 + } + }, + { + "amount": "149.339097426", + "slot": { + "period": 3817071, + "thread": 10 + } + } + ], + "AU12ARqpcVgyamienPMctRNnMt3TsoRYjAT5pMKA8VqY6iwwDLUxs": [ + { + "amount": "227.415831154", + "slot": { + "period": 68691, + "thread": 31 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 279350, + "thread": 15 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 475290, + "thread": 29 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 627625, + "thread": 26 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 760109, + "thread": 23 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 949488, + "thread": 12 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1086390, + "thread": 4 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1216825, + "thread": 5 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1449104, + "thread": 19 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1480531, + "thread": 20 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1649140, + "thread": 28 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 1858682, + "thread": 15 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2139505, + "thread": 15 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2197258, + "thread": 24 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2323564, + "thread": 8 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2576742, + "thread": 9 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2782254, + "thread": 1 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 2831889, + "thread": 13 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 3035748, + "thread": 9 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 3164549, + "thread": 11 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 3441150, + "thread": 17 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 3561130, + "thread": 1 + } + }, + { + "amount": "227.415831154", + "slot": { + "period": 3765422, + "thread": 16 + } + }, + { + "amount": "227.415831164", + "slot": { + "period": 3882720, + "thread": 12 + } + } + ], + "AU12AS28itYAJbr6nvJEv9TJG8mkV6ibUAjEHtV6SkrVSQmCn19Mm": [ + { + "amount": "283.234093530", + "slot": { + "period": 64511, + "thread": 31 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 220178, + "thread": 23 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 476990, + "thread": 31 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 573155, + "thread": 10 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 752236, + "thread": 1 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 941892, + "thread": 29 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1137908, + "thread": 20 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1284571, + "thread": 0 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1465825, + "thread": 30 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1508819, + "thread": 9 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1681876, + "thread": 9 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 1972088, + "thread": 19 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2008227, + "thread": 20 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2188430, + "thread": 27 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2394922, + "thread": 1 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2571842, + "thread": 15 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2720249, + "thread": 29 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 2844692, + "thread": 9 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 3073742, + "thread": 17 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 3237426, + "thread": 28 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 3351696, + "thread": 30 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 3478183, + "thread": 8 + } + }, + { + "amount": "283.234093530", + "slot": { + "period": 3663585, + "thread": 26 + } + }, + { + "amount": "283.234093536", + "slot": { + "period": 3867549, + "thread": 6 + } + } + ], + "AU12ASYgHSP88mJ1ppYGZMjtvrpXPLTRPR12aJQ52Ht2YsyfekzDY": [ + { + "amount": "282.361737113", + "slot": { + "period": 83036, + "thread": 27 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 263883, + "thread": 2 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 346565, + "thread": 9 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 493190, + "thread": 27 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 807985, + "thread": 0 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 846195, + "thread": 20 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1137882, + "thread": 6 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1249953, + "thread": 6 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1437917, + "thread": 26 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1498429, + "thread": 24 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1744244, + "thread": 26 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 1872372, + "thread": 23 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2064653, + "thread": 0 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2198052, + "thread": 30 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2429743, + "thread": 11 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2574920, + "thread": 30 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2788580, + "thread": 18 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 2893621, + "thread": 15 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 3091519, + "thread": 16 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 3151812, + "thread": 8 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 3412965, + "thread": 6 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 3540518, + "thread": 24 + } + }, + { + "amount": "282.361737113", + "slot": { + "period": 3730024, + "thread": 31 + } + }, + { + "amount": "282.361737111", + "slot": { + "period": 3880215, + "thread": 29 + } + } + ], + "AU12ASe1o8yBRy7JWV6D83W5wENdhefCzS5ZWwuprnbWgnouHCNcd": [ + { + "amount": "622.595654352", + "slot": { + "period": 33180, + "thread": 23 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 320996, + "thread": 16 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 359781, + "thread": 0 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 507597, + "thread": 14 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 662748, + "thread": 29 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 828822, + "thread": 16 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1105841, + "thread": 10 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1239713, + "thread": 5 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1448190, + "thread": 28 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1520135, + "thread": 30 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1790889, + "thread": 21 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 1965715, + "thread": 2 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2139399, + "thread": 22 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2272665, + "thread": 2 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2368147, + "thread": 10 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2519361, + "thread": 23 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2669449, + "thread": 21 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 2811231, + "thread": 30 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 3040229, + "thread": 7 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 3246469, + "thread": 11 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 3389859, + "thread": 18 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 3551318, + "thread": 13 + } + }, + { + "amount": "622.595654352", + "slot": { + "period": 3760016, + "thread": 27 + } + }, + { + "amount": "622.595654346", + "slot": { + "period": 3930573, + "thread": 8 + } + } + ], + "AU12ASfHggXZh9kMY5DMfR2mGH3eWzqtCeNzjyUrWtBvpBPk7Qn7B": [ + { + "amount": "382.553579081", + "slot": { + "period": 105069, + "thread": 12 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 254859, + "thread": 2 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 451493, + "thread": 23 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 630469, + "thread": 5 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 806107, + "thread": 28 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 981019, + "thread": 24 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1021288, + "thread": 24 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1216719, + "thread": 3 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1349621, + "thread": 9 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1590857, + "thread": 31 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1777438, + "thread": 22 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 1950788, + "thread": 20 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2017661, + "thread": 10 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2148787, + "thread": 17 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2386224, + "thread": 24 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2591716, + "thread": 10 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2669991, + "thread": 10 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 2851727, + "thread": 26 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 3069013, + "thread": 11 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 3186866, + "thread": 31 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 3299455, + "thread": 27 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 3563783, + "thread": 26 + } + }, + { + "amount": "382.553579081", + "slot": { + "period": 3738119, + "thread": 0 + } + }, + { + "amount": "382.553579071", + "slot": { + "period": 3829547, + "thread": 12 + } + } + ], + "AU12AT1wasQYYAfM6Jn1ReXSSxLHWoczhnEPnyJoGMwH6YLpQyxCH": [ + { + "amount": "299.353652579", + "slot": { + "period": 157442, + "thread": 7 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 216607, + "thread": 6 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 459877, + "thread": 3 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 554862, + "thread": 24 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 775765, + "thread": 31 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 891539, + "thread": 3 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1065471, + "thread": 17 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1214765, + "thread": 31 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1409739, + "thread": 21 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1642106, + "thread": 20 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1719276, + "thread": 31 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 1975848, + "thread": 14 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2073866, + "thread": 22 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2275594, + "thread": 21 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2395384, + "thread": 26 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2484125, + "thread": 11 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2755214, + "thread": 8 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2826620, + "thread": 5 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 2976252, + "thread": 11 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 3132747, + "thread": 13 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 3372095, + "thread": 26 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 3588398, + "thread": 6 + } + }, + { + "amount": "299.353652579", + "slot": { + "period": 3710889, + "thread": 25 + } + }, + { + "amount": "299.353652586", + "slot": { + "period": 3909547, + "thread": 11 + } + } + ], + "AU12AT8bkXQHx7AJBU5e6Zoy4jrzuEisi3LDTY5FoL3ahNkgmMR3i": [ + { + "amount": "93.928330131", + "slot": { + "period": 154615, + "thread": 13 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 317240, + "thread": 9 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 341592, + "thread": 27 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 496131, + "thread": 16 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 691913, + "thread": 25 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 916839, + "thread": 9 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1054529, + "thread": 2 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1241789, + "thread": 22 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1357582, + "thread": 22 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1551799, + "thread": 24 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1775749, + "thread": 16 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 1830315, + "thread": 24 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2095833, + "thread": 20 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2294838, + "thread": 28 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2304785, + "thread": 10 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2624185, + "thread": 24 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2741842, + "thread": 2 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 2893542, + "thread": 2 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 3096574, + "thread": 29 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 3175061, + "thread": 6 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 3300509, + "thread": 18 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 3520273, + "thread": 24 + } + }, + { + "amount": "93.928330131", + "slot": { + "period": 3704624, + "thread": 14 + } + }, + { + "amount": "93.928330128", + "slot": { + "period": 3782061, + "thread": 30 + } + } + ], + "AU12ATDCneykgaBqKM1qNdoCJAoLgRvhJMTJkUR8zN6dHdpyVVFJ9": [ + { + "amount": "436.105441582", + "slot": { + "period": 81905, + "thread": 19 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 250743, + "thread": 14 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 366292, + "thread": 22 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 639924, + "thread": 1 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 714363, + "thread": 20 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 975593, + "thread": 28 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1078121, + "thread": 25 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1286929, + "thread": 27 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1406296, + "thread": 3 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1537977, + "thread": 10 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1762240, + "thread": 7 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 1845839, + "thread": 8 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2138208, + "thread": 0 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2252864, + "thread": 21 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2366232, + "thread": 21 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2526404, + "thread": 20 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2767112, + "thread": 20 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 2812419, + "thread": 17 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 3039470, + "thread": 30 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 3183168, + "thread": 15 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 3428040, + "thread": 23 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 3503188, + "thread": 2 + } + }, + { + "amount": "436.105441582", + "slot": { + "period": 3630150, + "thread": 21 + } + }, + { + "amount": "436.105441584", + "slot": { + "period": 3877356, + "thread": 30 + } + } + ], + "AU12ATxEkCaNZZN9xeeUkcRdyUxCQFjkm9xhabCgtKTkuamsbSBmQ": [ + { + "amount": "425.937607296", + "slot": { + "period": 142336, + "thread": 11 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 173148, + "thread": 5 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 405417, + "thread": 21 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 595685, + "thread": 27 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 728768, + "thread": 29 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 968896, + "thread": 26 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1018232, + "thread": 15 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1156065, + "thread": 0 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1409614, + "thread": 15 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1598272, + "thread": 23 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1791283, + "thread": 29 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1917893, + "thread": 30 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 1999055, + "thread": 19 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 2155664, + "thread": 17 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 2438681, + "thread": 21 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 2619100, + "thread": 5 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 2682146, + "thread": 22 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 2927028, + "thread": 12 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 3114131, + "thread": 15 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 3180018, + "thread": 6 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 3426307, + "thread": 0 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 3577617, + "thread": 12 + } + }, + { + "amount": "425.937607296", + "slot": { + "period": 3730198, + "thread": 30 + } + }, + { + "amount": "425.937607294", + "slot": { + "period": 3923310, + "thread": 28 + } + } + ], + "AU12AUBLwzoLLCirAKZ4NJchA1Vz8MaMKhWsNhBpnMGbpufNvuYbd": [ + { + "amount": "81.398098544", + "slot": { + "period": 131218, + "thread": 28 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 184299, + "thread": 23 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 412262, + "thread": 31 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 615411, + "thread": 10 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 770699, + "thread": 6 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 900624, + "thread": 10 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1141882, + "thread": 5 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1188585, + "thread": 13 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1343015, + "thread": 17 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1633749, + "thread": 14 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1714254, + "thread": 28 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 1915167, + "thread": 9 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2117575, + "thread": 24 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2149022, + "thread": 26 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2341843, + "thread": 13 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2569695, + "thread": 9 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2726018, + "thread": 1 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2819864, + "thread": 30 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 2957604, + "thread": 24 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 3135748, + "thread": 28 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 3300686, + "thread": 31 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 3549915, + "thread": 20 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 3692567, + "thread": 2 + } + }, + { + "amount": "81.398098544", + "slot": { + "period": 3914168, + "thread": 0 + } + } + ], + "AU12AW25x92tYnVbvmmaAGf5TjcFjmf445GAShTVLVzgaFk1qKMSu": [ + { + "amount": "328.899439420", + "slot": { + "period": 117141, + "thread": 9 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 229204, + "thread": 29 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 418315, + "thread": 1 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 523398, + "thread": 12 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 777731, + "thread": 16 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 865129, + "thread": 3 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1101269, + "thread": 11 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1280131, + "thread": 31 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1372746, + "thread": 3 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1567679, + "thread": 8 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1669314, + "thread": 25 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 1826430, + "thread": 17 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2034458, + "thread": 29 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2256653, + "thread": 24 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2415020, + "thread": 25 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2610199, + "thread": 29 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2787952, + "thread": 31 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 2917689, + "thread": 28 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 3078096, + "thread": 15 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 3159770, + "thread": 19 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 3381323, + "thread": 22 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 3460420, + "thread": 3 + } + }, + { + "amount": "328.899439420", + "slot": { + "period": 3690545, + "thread": 23 + } + }, + { + "amount": "328.899439410", + "slot": { + "period": 3911821, + "thread": 7 + } + } + ], + "AU12AWPJ9Aa6vj1Dg67S8do2Ytoqt9RPySTWLj4GuP4gTETkGppa2": [ + { + "amount": "148.602416123", + "slot": { + "period": 146196, + "thread": 3 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 247494, + "thread": 22 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 330307, + "thread": 4 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 610849, + "thread": 12 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 712034, + "thread": 8 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 868225, + "thread": 3 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1073082, + "thread": 6 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1269081, + "thread": 6 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1427272, + "thread": 8 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1480411, + "thread": 27 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1741443, + "thread": 26 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 1919822, + "thread": 7 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2031331, + "thread": 3 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2275710, + "thread": 16 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2306454, + "thread": 6 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2526248, + "thread": 6 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2637149, + "thread": 13 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2901256, + "thread": 1 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 2978778, + "thread": 31 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 3160048, + "thread": 9 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 3351644, + "thread": 3 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 3545961, + "thread": 19 + } + }, + { + "amount": "148.602416123", + "slot": { + "period": 3685504, + "thread": 27 + } + }, + { + "amount": "148.602416115", + "slot": { + "period": 3869504, + "thread": 20 + } + } + ], + "AU12AY2HPSCnYQ5poDWZuPMXnAMR73k2V69nyQrq27KHngRXAUbwm": [ + { + "amount": "271.319949056", + "slot": { + "period": 80740, + "thread": 26 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 167490, + "thread": 16 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 425222, + "thread": 26 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 537088, + "thread": 15 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 759865, + "thread": 1 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 953863, + "thread": 25 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 996015, + "thread": 12 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 1211897, + "thread": 22 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 1323129, + "thread": 14 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 1606418, + "thread": 30 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 1689076, + "thread": 23 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 1923452, + "thread": 12 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2009696, + "thread": 1 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2209109, + "thread": 23 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2352714, + "thread": 20 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2581033, + "thread": 8 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2667577, + "thread": 16 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 2915950, + "thread": 5 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 3030795, + "thread": 6 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 3284337, + "thread": 9 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 3290576, + "thread": 23 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 3547101, + "thread": 14 + } + }, + { + "amount": "271.319949056", + "slot": { + "period": 3636183, + "thread": 10 + } + }, + { + "amount": "271.319949058", + "slot": { + "period": 3927011, + "thread": 7 + } + } + ], + "AU12AYBE86AKSV1sPJzKcE9Zb71s2WTGzb52UTVWtnkNS84uJcTwb": [ + { + "amount": "388.170207617", + "slot": { + "period": 42075, + "thread": 8 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 264888, + "thread": 18 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 457128, + "thread": 11 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 530724, + "thread": 13 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 758525, + "thread": 25 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 890646, + "thread": 13 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1139629, + "thread": 17 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1296635, + "thread": 25 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1374656, + "thread": 19 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1511263, + "thread": 22 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1670281, + "thread": 29 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 1842584, + "thread": 17 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2131569, + "thread": 4 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2252682, + "thread": 21 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2367201, + "thread": 14 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2513717, + "thread": 19 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2638362, + "thread": 17 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2819785, + "thread": 25 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 2977285, + "thread": 27 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 3276255, + "thread": 22 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 3443952, + "thread": 4 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 3469019, + "thread": 10 + } + }, + { + "amount": "388.170207617", + "slot": { + "period": 3650079, + "thread": 21 + } + }, + { + "amount": "388.170207626", + "slot": { + "period": 3889994, + "thread": 1 + } + } + ], + "AU12AYqtHz68b9AKQhx1QKehGxg5eReke6bUnpkYXKpmUBudmGeqy": [ + { + "amount": "306.965552025", + "slot": { + "period": 96416, + "thread": 26 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 238370, + "thread": 2 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 354165, + "thread": 31 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 577764, + "thread": 15 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 794615, + "thread": 9 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 976316, + "thread": 22 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1110285, + "thread": 20 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1169521, + "thread": 10 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1387108, + "thread": 28 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1629829, + "thread": 7 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1788795, + "thread": 20 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 1973440, + "thread": 27 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2087531, + "thread": 16 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2160084, + "thread": 4 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2302474, + "thread": 0 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2623250, + "thread": 7 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2705978, + "thread": 23 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2877976, + "thread": 7 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 2995046, + "thread": 11 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 3243905, + "thread": 3 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 3399608, + "thread": 10 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 3608468, + "thread": 15 + } + }, + { + "amount": "306.965552025", + "slot": { + "period": 3690599, + "thread": 13 + } + }, + { + "amount": "306.965552032", + "slot": { + "period": 3861952, + "thread": 6 + } + } + ], + "AU12AZaTQmHtL9nWzqCTGgPyKvNui3NHLqQ6iK2nSL8MRyHAhfGyB": [ + { + "amount": "244.046821884", + "slot": { + "period": 44611, + "thread": 30 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 225698, + "thread": 25 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 327368, + "thread": 13 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 523790, + "thread": 6 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 665668, + "thread": 27 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 869420, + "thread": 12 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1007599, + "thread": 12 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1291235, + "thread": 3 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1341295, + "thread": 6 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1568681, + "thread": 27 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1660992, + "thread": 25 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 1921054, + "thread": 10 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2007856, + "thread": 14 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2267035, + "thread": 14 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2336145, + "thread": 6 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2514661, + "thread": 24 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2693386, + "thread": 25 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 2948395, + "thread": 18 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 3096345, + "thread": 27 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 3284776, + "thread": 17 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 3386149, + "thread": 19 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 3606547, + "thread": 26 + } + }, + { + "amount": "244.046821884", + "slot": { + "period": 3682357, + "thread": 30 + } + }, + { + "amount": "244.046821873", + "slot": { + "period": 3840060, + "thread": 24 + } + } + ], + "AU12AZb1exL1rLvytVxZgg2wSP18UUUi4BC47uaQ28vRnsYFmc4L6": [ + { + "amount": "77.564888845", + "slot": { + "period": 116373, + "thread": 25 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 249239, + "thread": 18 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 462888, + "thread": 26 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 603715, + "thread": 14 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 773750, + "thread": 18 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 872780, + "thread": 28 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1071511, + "thread": 9 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1243919, + "thread": 12 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1333898, + "thread": 5 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1528234, + "thread": 9 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1797790, + "thread": 5 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 1880854, + "thread": 5 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2051663, + "thread": 30 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2221107, + "thread": 22 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2338085, + "thread": 4 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2612506, + "thread": 17 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2785576, + "thread": 5 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 2894352, + "thread": 8 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 3017385, + "thread": 23 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 3240897, + "thread": 2 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 3424545, + "thread": 11 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 3495262, + "thread": 30 + } + }, + { + "amount": "77.564888845", + "slot": { + "period": 3654609, + "thread": 6 + } + }, + { + "amount": "77.564888846", + "slot": { + "period": 3866378, + "thread": 14 + } + } + ], + "AU12AZnBDZh9Xaw3Vtjbr1aZhsrjj24QvkuGip7BVLQ53ymNobfJ": [ + { + "amount": "186.447092430", + "slot": { + "period": 16811, + "thread": 0 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 290458, + "thread": 26 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 455296, + "thread": 6 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 497451, + "thread": 5 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 686491, + "thread": 3 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 932699, + "thread": 15 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1086694, + "thread": 26 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1284494, + "thread": 23 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1438285, + "thread": 3 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1517920, + "thread": 28 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1667757, + "thread": 2 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 1829650, + "thread": 16 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2121123, + "thread": 31 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2163299, + "thread": 15 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2443096, + "thread": 11 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2517050, + "thread": 27 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2772367, + "thread": 3 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 2926288, + "thread": 10 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 3111550, + "thread": 13 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 3277724, + "thread": 26 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 3425754, + "thread": 23 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 3490265, + "thread": 2 + } + }, + { + "amount": "186.447092430", + "slot": { + "period": 3623618, + "thread": 0 + } + }, + { + "amount": "186.447092422", + "slot": { + "period": 3848396, + "thread": 0 + } + } + ], + "AU12AZsZQj3gPetQi96BFvqSLBNErmjueoPhQyUav2yGCZZb6Bcb8": [ + { + "amount": "82.153154977", + "slot": { + "period": 148979, + "thread": 13 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 269028, + "thread": 10 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 365042, + "thread": 16 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 608228, + "thread": 8 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 680651, + "thread": 4 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 886091, + "thread": 0 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1106643, + "thread": 11 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1300745, + "thread": 25 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1345820, + "thread": 27 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1536923, + "thread": 8 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1773553, + "thread": 9 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 1935964, + "thread": 8 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2046685, + "thread": 12 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2268709, + "thread": 1 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2388788, + "thread": 13 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2489154, + "thread": 2 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2753052, + "thread": 1 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2827552, + "thread": 28 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 2965822, + "thread": 3 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 3238481, + "thread": 22 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 3420518, + "thread": 11 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 3576478, + "thread": 22 + } + }, + { + "amount": "82.153154977", + "slot": { + "period": 3662124, + "thread": 12 + } + }, + { + "amount": "82.153154968", + "slot": { + "period": 3876693, + "thread": 10 + } + } + ], + "AU12AcSz6scG2Pt7SsMTaQAw4uyXqNWkdLLFXfBd5ho6Q8Mvtpfet": [ + { + "amount": "634.629366987", + "slot": { + "period": 17668, + "thread": 29 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 282885, + "thread": 17 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 440702, + "thread": 26 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 561244, + "thread": 2 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 660278, + "thread": 25 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 956218, + "thread": 21 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1129440, + "thread": 19 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1203116, + "thread": 9 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1460988, + "thread": 19 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1645573, + "thread": 31 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1759866, + "thread": 30 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 1887423, + "thread": 6 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2075340, + "thread": 15 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2246005, + "thread": 10 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2426143, + "thread": 10 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2549840, + "thread": 16 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2644107, + "thread": 10 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 2822761, + "thread": 1 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 3077419, + "thread": 14 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 3241251, + "thread": 31 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 3410990, + "thread": 2 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 3541872, + "thread": 21 + } + }, + { + "amount": "634.629366987", + "slot": { + "period": 3640545, + "thread": 10 + } + }, + { + "amount": "634.629366976", + "slot": { + "period": 3945590, + "thread": 20 + } + } + ], + "AU12AciXtggEi1AooYU3NrDwVuH4kPuoUW4Ho6KPdV9zENUcivbzG": [ + { + "amount": "285.663477525", + "slot": { + "period": 109710, + "thread": 6 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 198059, + "thread": 16 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 416931, + "thread": 9 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 537526, + "thread": 7 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 721408, + "thread": 31 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 946184, + "thread": 30 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 987250, + "thread": 5 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 1313141, + "thread": 26 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 1397847, + "thread": 26 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 1631922, + "thread": 5 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 1761387, + "thread": 16 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 1814885, + "thread": 23 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2123654, + "thread": 11 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2178962, + "thread": 14 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2316062, + "thread": 10 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2500430, + "thread": 8 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2741444, + "thread": 14 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 2933991, + "thread": 5 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 3093824, + "thread": 2 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 3275853, + "thread": 7 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 3365135, + "thread": 12 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 3545802, + "thread": 22 + } + }, + { + "amount": "285.663477525", + "slot": { + "period": 3678753, + "thread": 10 + } + }, + { + "amount": "285.663477536", + "slot": { + "period": 3859378, + "thread": 5 + } + } + ], + "AU12AewQTCeKpU7H9NadhvT4K8yoL1WPK7KtCFXQsDRyBhRiAihhb": [ + { + "amount": "342.767697534", + "slot": { + "period": 149880, + "thread": 17 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 304177, + "thread": 1 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 400278, + "thread": 30 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 627233, + "thread": 4 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 687384, + "thread": 26 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 825565, + "thread": 1 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1086851, + "thread": 20 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1191921, + "thread": 16 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1324684, + "thread": 31 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1646479, + "thread": 21 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1675801, + "thread": 19 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 1865334, + "thread": 15 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2034402, + "thread": 26 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2194539, + "thread": 22 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2341862, + "thread": 12 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2515985, + "thread": 31 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2630219, + "thread": 26 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 2932111, + "thread": 16 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 3012614, + "thread": 8 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 3232222, + "thread": 20 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 3392001, + "thread": 11 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 3607286, + "thread": 17 + } + }, + { + "amount": "342.767697534", + "slot": { + "period": 3763873, + "thread": 0 + } + }, + { + "amount": "342.767697546", + "slot": { + "period": 3866730, + "thread": 27 + } + } + ], + "AU12AezPSvZCTqVZFeJXhALAmSgPD8C1k6e9FyRMrejZS8TZnW4Mp": [ + { + "amount": "214.740534694", + "slot": { + "period": 35384, + "thread": 27 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 229475, + "thread": 1 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 359047, + "thread": 0 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 589501, + "thread": 18 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 696339, + "thread": 0 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 904654, + "thread": 19 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1132168, + "thread": 7 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1236140, + "thread": 1 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1321760, + "thread": 15 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1531868, + "thread": 13 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1696256, + "thread": 28 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 1908423, + "thread": 18 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2029521, + "thread": 6 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2273933, + "thread": 2 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2458097, + "thread": 10 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2576133, + "thread": 19 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2731715, + "thread": 25 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 2924061, + "thread": 17 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 3090487, + "thread": 10 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 3139620, + "thread": 4 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 3330514, + "thread": 27 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 3536373, + "thread": 26 + } + }, + { + "amount": "214.740534694", + "slot": { + "period": 3778411, + "thread": 30 + } + }, + { + "amount": "214.740534705", + "slot": { + "period": 3838478, + "thread": 10 + } + } + ], + "AU12AfQqMZDrLPjdwBPwaQBz8A7igi9YgWfnxr9S7sXv5JfDAVx55": [ + { + "amount": "118.709417179", + "slot": { + "period": 75090, + "thread": 10 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 170761, + "thread": 24 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 469370, + "thread": 13 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 529815, + "thread": 14 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 718835, + "thread": 3 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 835069, + "thread": 29 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1015108, + "thread": 12 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1292578, + "thread": 26 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1462219, + "thread": 16 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1603397, + "thread": 1 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1752248, + "thread": 8 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1824135, + "thread": 6 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 1978503, + "thread": 21 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 2174413, + "thread": 9 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 2376424, + "thread": 12 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 2598679, + "thread": 31 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 2655932, + "thread": 28 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 2886036, + "thread": 23 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 3031914, + "thread": 22 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 3182844, + "thread": 31 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 3343364, + "thread": 4 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 3592569, + "thread": 0 + } + }, + { + "amount": "118.709417179", + "slot": { + "period": 3728508, + "thread": 19 + } + }, + { + "amount": "118.709417171", + "slot": { + "period": 3884777, + "thread": 14 + } + } + ], + "AU12AfgYJEyDLzMQ8dCjAuUALuZ8WrkHDKjzTmoGipwQCgUARAfKq": [ + { + "amount": "364.463932819", + "slot": { + "period": 29601, + "thread": 30 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 169297, + "thread": 21 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 338933, + "thread": 16 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 549527, + "thread": 8 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 659179, + "thread": 22 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 863259, + "thread": 12 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 989804, + "thread": 15 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 1272454, + "thread": 25 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 1466731, + "thread": 22 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 1560348, + "thread": 17 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 1658546, + "thread": 29 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 1921557, + "thread": 14 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2074389, + "thread": 12 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2284308, + "thread": 22 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2457966, + "thread": 10 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2612228, + "thread": 7 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2674848, + "thread": 6 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 2909711, + "thread": 17 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 3106663, + "thread": 12 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 3208590, + "thread": 4 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 3304249, + "thread": 21 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 3607478, + "thread": 15 + } + }, + { + "amount": "364.463932819", + "slot": { + "period": 3759262, + "thread": 15 + } + }, + { + "amount": "364.463932818", + "slot": { + "period": 3921259, + "thread": 25 + } + } + ], + "AU12AhyzTffWEa3y9jHBa8NU5rMzh4LDShQQRqVdYX9TUAPhydc8S": [ + { + "amount": "438.034178455", + "slot": { + "period": 83003, + "thread": 27 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 303863, + "thread": 5 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 472748, + "thread": 5 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 569637, + "thread": 19 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 708010, + "thread": 6 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 869599, + "thread": 6 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1049956, + "thread": 27 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1240475, + "thread": 14 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1358887, + "thread": 0 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1588494, + "thread": 16 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1709061, + "thread": 18 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 1849767, + "thread": 22 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2063225, + "thread": 19 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2289833, + "thread": 25 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2446620, + "thread": 0 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2608260, + "thread": 17 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2640039, + "thread": 31 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2927056, + "thread": 3 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 2956140, + "thread": 10 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 3149360, + "thread": 31 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 3334262, + "thread": 4 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 3511960, + "thread": 12 + } + }, + { + "amount": "438.034178455", + "slot": { + "period": 3649512, + "thread": 13 + } + }, + { + "amount": "438.034178454", + "slot": { + "period": 3844568, + "thread": 3 + } + } + ], + "AU12Aj6BYGj34G3hEiR5oZGF6sPJpDkdN6PMXSmyNYE58qwZxY3Et": [ + { + "amount": "143.235251557", + "slot": { + "period": 132486, + "thread": 30 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 238163, + "thread": 12 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 463065, + "thread": 8 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 534202, + "thread": 22 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 704365, + "thread": 28 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 979008, + "thread": 3 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1109843, + "thread": 6 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1172911, + "thread": 1 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1419938, + "thread": 28 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1516750, + "thread": 3 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1734325, + "thread": 22 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 1930005, + "thread": 3 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2021707, + "thread": 0 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2166457, + "thread": 11 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2439528, + "thread": 2 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2601744, + "thread": 24 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2660175, + "thread": 9 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 2867557, + "thread": 11 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 3030469, + "thread": 14 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 3200785, + "thread": 15 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 3311358, + "thread": 7 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 3590662, + "thread": 26 + } + }, + { + "amount": "143.235251557", + "slot": { + "period": 3669159, + "thread": 9 + } + }, + { + "amount": "143.235251558", + "slot": { + "period": 3826065, + "thread": 24 + } + } + ], + "AU12AjNrkvG6wSUmpxQCMikk6no8PooJG2GT678mE1oQFqr8rRWTT": [ + { + "amount": "55.235642789", + "slot": { + "period": 166701, + "thread": 27 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 260186, + "thread": 20 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 415376, + "thread": 22 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 635958, + "thread": 4 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 716326, + "thread": 17 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 945128, + "thread": 9 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1109119, + "thread": 18 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1196751, + "thread": 22 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1383572, + "thread": 26 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1616651, + "thread": 8 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1768781, + "thread": 7 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 1962900, + "thread": 9 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2030870, + "thread": 24 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2235882, + "thread": 30 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2296978, + "thread": 11 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2622788, + "thread": 1 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2631114, + "thread": 11 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2942276, + "thread": 8 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 2975921, + "thread": 21 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 3194645, + "thread": 15 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 3431108, + "thread": 9 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 3513868, + "thread": 6 + } + }, + { + "amount": "55.235642789", + "slot": { + "period": 3655142, + "thread": 30 + } + }, + { + "amount": "55.235642797", + "slot": { + "period": 3869496, + "thread": 8 + } + } + ], + "AU12AjecGc75EgKwT2vwzG3geM8YPeFnHdTcrXkG6mUP6wADALvE5": [ + { + "amount": "121.241838060", + "slot": { + "period": 98585, + "thread": 17 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 260166, + "thread": 13 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 460377, + "thread": 6 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 510057, + "thread": 3 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 789874, + "thread": 14 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 976275, + "thread": 12 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1036978, + "thread": 12 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1186591, + "thread": 17 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1357359, + "thread": 1 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1483892, + "thread": 3 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1766603, + "thread": 7 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 1892703, + "thread": 13 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2066485, + "thread": 3 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2269530, + "thread": 31 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2440046, + "thread": 23 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2469190, + "thread": 3 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2715987, + "thread": 27 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2903565, + "thread": 22 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 2954351, + "thread": 30 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 3143204, + "thread": 15 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 3378353, + "thread": 23 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 3457605, + "thread": 14 + } + }, + { + "amount": "121.241838060", + "slot": { + "period": 3635110, + "thread": 26 + } + }, + { + "amount": "121.241838066", + "slot": { + "period": 3846921, + "thread": 17 + } + } + ], + "AU12AkooPfv5v5p65LNZPH4fzM7bQaYB5vdUzSrJwTaQdZoNQ2Pk1": [ + { + "amount": "385.020864900", + "slot": { + "period": 21393, + "thread": 10 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 192794, + "thread": 20 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 411356, + "thread": 17 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 544418, + "thread": 22 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 815828, + "thread": 7 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 888458, + "thread": 9 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1087394, + "thread": 12 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1196053, + "thread": 24 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1368634, + "thread": 5 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1524373, + "thread": 0 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1765751, + "thread": 6 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 1920315, + "thread": 19 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2019311, + "thread": 4 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2290704, + "thread": 29 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2411657, + "thread": 18 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2477891, + "thread": 8 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2681548, + "thread": 16 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 2860761, + "thread": 18 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 3003995, + "thread": 31 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 3217774, + "thread": 13 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 3296378, + "thread": 18 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 3520674, + "thread": 30 + } + }, + { + "amount": "385.020864900", + "slot": { + "period": 3724533, + "thread": 20 + } + }, + { + "amount": "385.020864902", + "slot": { + "period": 3825272, + "thread": 2 + } + } + ], + "AU12AkwyBMh8FfPTqUv66QtZeH7LC55nhgMreKnyysVK9go64YqPa": [ + { + "amount": "120.958164796", + "slot": { + "period": 49442, + "thread": 29 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 242877, + "thread": 9 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 444167, + "thread": 11 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 500807, + "thread": 12 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 653989, + "thread": 0 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 895039, + "thread": 23 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1013268, + "thread": 22 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1266020, + "thread": 20 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1449559, + "thread": 11 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1490632, + "thread": 6 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1740677, + "thread": 21 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 1861478, + "thread": 7 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2016963, + "thread": 4 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2178644, + "thread": 0 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2368547, + "thread": 27 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2464734, + "thread": 9 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2720500, + "thread": 26 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2860919, + "thread": 31 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 2999917, + "thread": 19 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 3250126, + "thread": 18 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 3440465, + "thread": 24 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 3487842, + "thread": 18 + } + }, + { + "amount": "120.958164796", + "slot": { + "period": 3641943, + "thread": 16 + } + }, + { + "amount": "120.958164788", + "slot": { + "period": 3896182, + "thread": 28 + } + } + ], + "AU12AmtoNW2NZh1LqgF1nceNf3nVitth4jAqw94vzqnDBSpkVbRL1": [ + { + "amount": "478.013362997", + "slot": { + "period": 98268, + "thread": 8 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 192124, + "thread": 30 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 376218, + "thread": 22 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 607926, + "thread": 11 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 779317, + "thread": 7 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 952787, + "thread": 0 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1016530, + "thread": 24 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1302944, + "thread": 14 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1382517, + "thread": 22 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1608798, + "thread": 5 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1759485, + "thread": 4 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 1883598, + "thread": 27 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2005223, + "thread": 10 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2265027, + "thread": 15 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2388913, + "thread": 25 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2465810, + "thread": 11 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2654634, + "thread": 31 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 2887197, + "thread": 28 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 3068870, + "thread": 29 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 3133110, + "thread": 5 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 3338240, + "thread": 22 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 3547681, + "thread": 5 + } + }, + { + "amount": "478.013362997", + "slot": { + "period": 3763253, + "thread": 9 + } + }, + { + "amount": "478.013362986", + "slot": { + "period": 3890783, + "thread": 28 + } + } + ], + "AU12AngmMp3fqhmeLLZTqFiPVGvvT9ipLayLW5p9JupGdo8PfRNUN": [ + { + "amount": "478.469611716", + "slot": { + "period": 156657, + "thread": 25 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 306830, + "thread": 13 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 394585, + "thread": 1 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 539754, + "thread": 8 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 761562, + "thread": 15 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 946339, + "thread": 16 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 999902, + "thread": 8 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 1205054, + "thread": 12 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 1396855, + "thread": 10 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 1620334, + "thread": 7 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 1738632, + "thread": 23 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 1894835, + "thread": 10 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2130665, + "thread": 23 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2181971, + "thread": 19 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2375213, + "thread": 1 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2613009, + "thread": 23 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2749951, + "thread": 11 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 2849416, + "thread": 16 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 3055496, + "thread": 7 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 3204901, + "thread": 24 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 3380719, + "thread": 24 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 3583516, + "thread": 31 + } + }, + { + "amount": "478.469611716", + "slot": { + "period": 3715648, + "thread": 11 + } + }, + { + "amount": "478.469611722", + "slot": { + "period": 3870919, + "thread": 21 + } + } + ], + "AU12AoBB9Bmcj2vRkxfraoU6YqWfVp8rY1QNN791DxqML8tC6qE3Y": [ + { + "amount": "481.856554883", + "slot": { + "period": 62433, + "thread": 17 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 244196, + "thread": 30 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 380636, + "thread": 17 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 517624, + "thread": 7 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 744843, + "thread": 12 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 916623, + "thread": 9 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1007709, + "thread": 5 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1228021, + "thread": 1 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1475473, + "thread": 31 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1556609, + "thread": 23 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1668704, + "thread": 20 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 1933105, + "thread": 30 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2107456, + "thread": 19 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2248596, + "thread": 26 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2353645, + "thread": 8 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2524314, + "thread": 29 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2775601, + "thread": 23 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 2884930, + "thread": 12 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 3017914, + "thread": 30 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 3150296, + "thread": 29 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 3372988, + "thread": 0 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 3548992, + "thread": 17 + } + }, + { + "amount": "481.856554883", + "slot": { + "period": 3677314, + "thread": 2 + } + }, + { + "amount": "481.856554879", + "slot": { + "period": 3854589, + "thread": 1 + } + } + ], + "AU12ApbY7GyZ8NUQDHipvQjCnzDCJNbmFsPozrTGgwKiB69zRraGq": [ + { + "amount": "209.388978876", + "slot": { + "period": 56436, + "thread": 31 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 310148, + "thread": 27 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 472657, + "thread": 1 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 616039, + "thread": 6 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 700387, + "thread": 18 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 948424, + "thread": 25 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1010735, + "thread": 19 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1292712, + "thread": 20 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1440363, + "thread": 24 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1566611, + "thread": 10 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1663256, + "thread": 0 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 1841893, + "thread": 26 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2063653, + "thread": 30 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2250901, + "thread": 12 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2364104, + "thread": 19 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2569661, + "thread": 4 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2789609, + "thread": 9 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 2909454, + "thread": 5 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 3047654, + "thread": 8 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 3157014, + "thread": 1 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 3370924, + "thread": 27 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 3471612, + "thread": 30 + } + }, + { + "amount": "209.388978876", + "slot": { + "period": 3720546, + "thread": 24 + } + }, + { + "amount": "209.388978870", + "slot": { + "period": 3861861, + "thread": 27 + } + } + ], + "AU12AprsvXjbYniqD7sjXdR1Vb1uiMTiZHC8CyG8v6pwBhYJdgooF": [ + { + "amount": "306.754615484", + "slot": { + "period": 49877, + "thread": 23 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 292053, + "thread": 15 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 370145, + "thread": 0 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 594160, + "thread": 5 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 713443, + "thread": 20 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 925281, + "thread": 20 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 988707, + "thread": 24 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1316248, + "thread": 8 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1463002, + "thread": 8 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1491141, + "thread": 16 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1740641, + "thread": 4 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1971696, + "thread": 9 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 1988994, + "thread": 14 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 2207329, + "thread": 20 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 2364679, + "thread": 4 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 2545557, + "thread": 27 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 2625323, + "thread": 15 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 2942371, + "thread": 27 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 3003906, + "thread": 18 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 3156172, + "thread": 25 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 3443616, + "thread": 24 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 3505345, + "thread": 23 + } + }, + { + "amount": "306.754615484", + "slot": { + "period": 3753648, + "thread": 30 + } + }, + { + "amount": "306.754615491", + "slot": { + "period": 3781101, + "thread": 6 + } + } + ], + "AU12Aq8t9cj9yhZJA1EHjez2u21MMFf5UzVxei9NcEgdB3gWLvA4K": [ + { + "amount": "165.395502545", + "slot": { + "period": 156781, + "thread": 21 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 251726, + "thread": 22 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 368330, + "thread": 20 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 529281, + "thread": 20 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 803053, + "thread": 20 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 975003, + "thread": 4 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1141614, + "thread": 18 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1292316, + "thread": 9 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1396843, + "thread": 13 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1537175, + "thread": 4 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1708753, + "thread": 13 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 1843767, + "thread": 29 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2007278, + "thread": 5 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2245887, + "thread": 25 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2381896, + "thread": 4 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2588244, + "thread": 26 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2677923, + "thread": 17 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 2834129, + "thread": 31 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 3048807, + "thread": 20 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 3131097, + "thread": 8 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 3403535, + "thread": 27 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 3510400, + "thread": 7 + } + }, + { + "amount": "165.395502545", + "slot": { + "period": 3696622, + "thread": 3 + } + }, + { + "amount": "165.395502552", + "slot": { + "period": 3798533, + "thread": 18 + } + } + ], + "AU12AqGmV8Mzb64g9vy9hhoNpvJRBcVNjo31RhjknpjciDo7AU3Q3": [ + { + "amount": "102.817132271", + "slot": { + "period": 35597, + "thread": 26 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 264357, + "thread": 1 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 458396, + "thread": 27 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 607470, + "thread": 12 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 774194, + "thread": 13 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 828139, + "thread": 19 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1086601, + "thread": 31 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1289394, + "thread": 29 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1445992, + "thread": 1 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1577534, + "thread": 29 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1801431, + "thread": 21 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 1899566, + "thread": 7 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2011122, + "thread": 22 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2266828, + "thread": 17 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2396433, + "thread": 1 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2525978, + "thread": 9 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2725584, + "thread": 20 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 2806648, + "thread": 30 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 3059119, + "thread": 16 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 3174799, + "thread": 22 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 3301752, + "thread": 29 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 3485978, + "thread": 29 + } + }, + { + "amount": "102.817132271", + "slot": { + "period": 3764118, + "thread": 4 + } + }, + { + "amount": "102.817132262", + "slot": { + "period": 3863246, + "thread": 5 + } + } + ], + "AU12AqPh2qB3dVufuCeQbqrX3reBa65WvdvtKTPHZ79NVfkwWLEec": [ + { + "amount": "171.930972543", + "slot": { + "period": 82354, + "thread": 8 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 214573, + "thread": 17 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 386540, + "thread": 6 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 564033, + "thread": 14 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 702857, + "thread": 8 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 916858, + "thread": 29 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1072817, + "thread": 29 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1188135, + "thread": 11 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1371190, + "thread": 10 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1489384, + "thread": 7 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1737978, + "thread": 20 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 1844268, + "thread": 10 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2118644, + "thread": 7 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2147333, + "thread": 9 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2300166, + "thread": 11 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2557192, + "thread": 5 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2750416, + "thread": 22 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 2874044, + "thread": 26 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 3025547, + "thread": 1 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 3208855, + "thread": 6 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 3389203, + "thread": 25 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 3581554, + "thread": 6 + } + }, + { + "amount": "171.930972543", + "slot": { + "period": 3711319, + "thread": 10 + } + }, + { + "amount": "171.930972539", + "slot": { + "period": 3917048, + "thread": 18 + } + } + ], + "AU12AqifyENG23J9qqQMtWqEqqoixdYZEAYM4tA6ajhTrzyF9tQXo": [ + { + "amount": "72.861145836", + "slot": { + "period": 154922, + "thread": 21 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 175302, + "thread": 4 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 372586, + "thread": 17 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 573902, + "thread": 22 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 750527, + "thread": 18 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 899073, + "thread": 23 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1011329, + "thread": 23 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1299045, + "thread": 4 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1367788, + "thread": 3 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1639240, + "thread": 29 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1659986, + "thread": 23 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 1923740, + "thread": 0 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2112173, + "thread": 27 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2216223, + "thread": 1 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2368217, + "thread": 25 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2527563, + "thread": 18 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2738532, + "thread": 3 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2817848, + "thread": 0 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 2983613, + "thread": 0 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 3144822, + "thread": 11 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 3381021, + "thread": 18 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 3507166, + "thread": 29 + } + }, + { + "amount": "72.861145836", + "slot": { + "period": 3665715, + "thread": 28 + } + }, + { + "amount": "72.861145828", + "slot": { + "period": 3890389, + "thread": 6 + } + } + ], + "AU12ArL5ESbeeCEnbJvSXUL4ScMaxEjgUXAPReKyf7ca82JpVrxBX": [ + { + "amount": "175.612113574", + "slot": { + "period": 125451, + "thread": 1 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 180235, + "thread": 30 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 340477, + "thread": 26 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 516875, + "thread": 15 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 685176, + "thread": 30 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 917622, + "thread": 1 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1111673, + "thread": 27 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1282495, + "thread": 4 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1469302, + "thread": 29 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1486706, + "thread": 14 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1781156, + "thread": 30 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 1928934, + "thread": 20 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2018338, + "thread": 10 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2257355, + "thread": 30 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2432227, + "thread": 8 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2465851, + "thread": 15 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2707230, + "thread": 5 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2882965, + "thread": 31 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 2979681, + "thread": 6 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 3275416, + "thread": 19 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 3361765, + "thread": 29 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 3617301, + "thread": 8 + } + }, + { + "amount": "175.612113574", + "slot": { + "period": 3622833, + "thread": 17 + } + }, + { + "amount": "175.612113562", + "slot": { + "period": 3869781, + "thread": 6 + } + } + ], + "AU12AriQqcTKdrVFjA82N1c5tvjgybBWj2haK2NfJroBAPMtVCgAc": [ + { + "amount": "228.850043738", + "slot": { + "period": 128100, + "thread": 6 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 293700, + "thread": 7 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 447506, + "thread": 5 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 603681, + "thread": 15 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 724929, + "thread": 31 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 901165, + "thread": 15 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1084506, + "thread": 14 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1155141, + "thread": 21 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1364338, + "thread": 10 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1600630, + "thread": 3 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1718731, + "thread": 22 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 1935387, + "thread": 11 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2051411, + "thread": 1 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2250700, + "thread": 29 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2323037, + "thread": 23 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2560536, + "thread": 23 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2686330, + "thread": 17 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 2855446, + "thread": 16 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 3108784, + "thread": 5 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 3199601, + "thread": 16 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 3377020, + "thread": 29 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 3583064, + "thread": 9 + } + }, + { + "amount": "228.850043738", + "slot": { + "period": 3630699, + "thread": 27 + } + }, + { + "amount": "228.850043743", + "slot": { + "period": 3938218, + "thread": 11 + } + } + ], + "AU12ArqQYAjbwzv9yNSYYmGbJm4gD4h7FauGrGTHjCKANJSkaEWtq": [ + { + "amount": "113.903483423", + "slot": { + "period": 21984, + "thread": 28 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 273900, + "thread": 16 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 396568, + "thread": 7 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 494852, + "thread": 30 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 729694, + "thread": 15 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 837517, + "thread": 7 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1037934, + "thread": 24 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1221812, + "thread": 2 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1418380, + "thread": 16 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1627035, + "thread": 21 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1739715, + "thread": 13 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 1927453, + "thread": 6 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2001397, + "thread": 1 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2232241, + "thread": 14 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2323756, + "thread": 16 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2569282, + "thread": 20 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2632371, + "thread": 2 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 2882453, + "thread": 31 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 3076729, + "thread": 29 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 3275437, + "thread": 17 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 3374181, + "thread": 18 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 3479175, + "thread": 28 + } + }, + { + "amount": "113.903483423", + "slot": { + "period": 3696140, + "thread": 17 + } + }, + { + "amount": "113.903483426", + "slot": { + "period": 3882859, + "thread": 3 + } + } + ], + "AU12AtgDCPLt5YHUFAHs7bfjqCGCaeNyT1YH4q9jdsrtCv7Vn7MGE": [ + { + "amount": "254.867988031", + "slot": { + "period": 163471, + "thread": 23 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 204063, + "thread": 12 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 446251, + "thread": 26 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 520403, + "thread": 6 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 774620, + "thread": 11 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 972902, + "thread": 25 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1038579, + "thread": 2 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1255892, + "thread": 23 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1377755, + "thread": 23 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1490225, + "thread": 1 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1677414, + "thread": 26 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 1820067, + "thread": 29 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2142244, + "thread": 14 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2167685, + "thread": 14 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2310140, + "thread": 31 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2570993, + "thread": 9 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2625622, + "thread": 26 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 2943836, + "thread": 21 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 3046733, + "thread": 28 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 3259447, + "thread": 28 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 3320606, + "thread": 17 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 3475731, + "thread": 11 + } + }, + { + "amount": "254.867988031", + "slot": { + "period": 3619363, + "thread": 7 + } + }, + { + "amount": "254.867988036", + "slot": { + "period": 3844992, + "thread": 16 + } + } + ], + "AU12AvJhGmesFovq6hr3Vqkd6sDQbMa6B1BG1XgXkEHewUKjQiWUE": [ + { + "amount": "83.551760057", + "slot": { + "period": 62513, + "thread": 25 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 263095, + "thread": 17 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 464011, + "thread": 2 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 647989, + "thread": 0 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 673965, + "thread": 22 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 932741, + "thread": 13 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1044419, + "thread": 13 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1216980, + "thread": 11 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1323571, + "thread": 10 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1538833, + "thread": 13 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1755720, + "thread": 0 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1922343, + "thread": 11 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 1988618, + "thread": 7 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 2159048, + "thread": 4 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 2319188, + "thread": 13 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 2613492, + "thread": 24 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 2718164, + "thread": 12 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 2847309, + "thread": 23 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 3089323, + "thread": 10 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 3180959, + "thread": 2 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 3294388, + "thread": 6 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 3578668, + "thread": 16 + } + }, + { + "amount": "83.551760057", + "slot": { + "period": 3665017, + "thread": 8 + } + }, + { + "amount": "83.551760058", + "slot": { + "period": 3860922, + "thread": 12 + } + } + ], + "AU12AvwLghLEdSVKLMxEsYdA3opPBSaVHXZVsGkLXxn1EfMbsaGa5": [ + { + "amount": "242.798245878", + "slot": { + "period": 97645, + "thread": 7 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 281730, + "thread": 22 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 373470, + "thread": 1 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 515333, + "thread": 10 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 715158, + "thread": 31 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 836564, + "thread": 6 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1008034, + "thread": 22 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1308388, + "thread": 13 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1456812, + "thread": 4 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1599729, + "thread": 14 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1787445, + "thread": 28 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1843681, + "thread": 21 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 1994443, + "thread": 27 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 2204100, + "thread": 11 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 2435743, + "thread": 23 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 2598610, + "thread": 3 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 2685567, + "thread": 10 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 2926405, + "thread": 23 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 3008172, + "thread": 26 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 3165733, + "thread": 7 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 3331371, + "thread": 15 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 3494238, + "thread": 14 + } + }, + { + "amount": "242.798245878", + "slot": { + "period": 3775237, + "thread": 26 + } + }, + { + "amount": "242.798245885", + "slot": { + "period": 3880613, + "thread": 23 + } + } + ], + "AU12AwaPbLNe8DakumC579NTVZwxXpRNmtbpLMisZWMouSexNS4HA": [ + { + "amount": "53.423132391", + "slot": { + "period": 138661, + "thread": 6 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 200635, + "thread": 31 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 414934, + "thread": 19 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 504128, + "thread": 18 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 794911, + "thread": 5 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 933549, + "thread": 15 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 993437, + "thread": 15 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 1246796, + "thread": 31 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 1441196, + "thread": 0 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 1504334, + "thread": 22 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 1694107, + "thread": 8 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 1931249, + "thread": 7 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2093389, + "thread": 26 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2159112, + "thread": 7 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2405501, + "thread": 7 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2474941, + "thread": 27 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2757057, + "thread": 3 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2863495, + "thread": 25 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 2989734, + "thread": 27 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 3219885, + "thread": 18 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 3322726, + "thread": 1 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 3585742, + "thread": 18 + } + }, + { + "amount": "53.423132391", + "slot": { + "period": 3740522, + "thread": 3 + } + }, + { + "amount": "53.423132382", + "slot": { + "period": 3858162, + "thread": 30 + } + } + ], + "AU12AxV1rzRHr8PpxbNzA16PTUPngcTctCA8GcZtP1F5munWAXCU2": [ + { + "amount": "641.349969736", + "slot": { + "period": 112159, + "thread": 6 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 251346, + "thread": 24 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 376556, + "thread": 24 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 558481, + "thread": 14 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 679005, + "thread": 3 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 856844, + "thread": 1 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1084222, + "thread": 22 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1253135, + "thread": 1 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1453009, + "thread": 3 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1490973, + "thread": 5 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1669840, + "thread": 26 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 1875112, + "thread": 31 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2118751, + "thread": 4 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2275586, + "thread": 6 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2388955, + "thread": 28 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2547237, + "thread": 27 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2667183, + "thread": 17 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 2921343, + "thread": 28 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 3119077, + "thread": 1 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 3216360, + "thread": 7 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 3370621, + "thread": 22 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 3607417, + "thread": 19 + } + }, + { + "amount": "641.349969736", + "slot": { + "period": 3708058, + "thread": 3 + } + }, + { + "amount": "641.349969737", + "slot": { + "period": 3868520, + "thread": 22 + } + } + ], + "AU12AyAduSXf7mx68oqiBUf1nQJBT1UozN4k8AZKaoeVXU2NVmfVT": [ + { + "amount": "157.658997589", + "slot": { + "period": 130092, + "thread": 15 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 197161, + "thread": 23 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 427576, + "thread": 24 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 641492, + "thread": 0 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 786199, + "thread": 25 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 945383, + "thread": 27 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1122780, + "thread": 16 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1162666, + "thread": 31 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1466477, + "thread": 8 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1646223, + "thread": 21 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1789259, + "thread": 27 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 1820507, + "thread": 18 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2097586, + "thread": 12 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2197564, + "thread": 9 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2392141, + "thread": 16 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2608975, + "thread": 16 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2745585, + "thread": 21 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 2825510, + "thread": 26 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 3104719, + "thread": 30 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 3164555, + "thread": 28 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 3412250, + "thread": 14 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 3590457, + "thread": 23 + } + }, + { + "amount": "157.658997589", + "slot": { + "period": 3756107, + "thread": 16 + } + }, + { + "amount": "157.658997579", + "slot": { + "period": 3899285, + "thread": 0 + } + } + ], + "AU12Ayxtvp34m8nwP367nxVdWLydBZdoWR2hrFo6TtkdGTHC94opk": [ + { + "amount": "159.536693706", + "slot": { + "period": 130194, + "thread": 24 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 252603, + "thread": 22 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 348002, + "thread": 20 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 571002, + "thread": 14 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 792253, + "thread": 0 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 911060, + "thread": 30 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1027634, + "thread": 13 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1167963, + "thread": 28 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1439982, + "thread": 2 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1630320, + "thread": 12 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1715733, + "thread": 7 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 1809595, + "thread": 11 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2005502, + "thread": 30 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2176823, + "thread": 3 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2346874, + "thread": 30 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2545360, + "thread": 5 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2716515, + "thread": 17 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2935390, + "thread": 5 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 2962510, + "thread": 20 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 3197150, + "thread": 4 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 3302232, + "thread": 31 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 3473225, + "thread": 30 + } + }, + { + "amount": "159.536693706", + "slot": { + "period": 3714384, + "thread": 17 + } + }, + { + "amount": "159.536693711", + "slot": { + "period": 3940351, + "thread": 9 + } + } + ], + "AU12AzVqVRq5vEDQHf1sg2nFMSw1oHxPxAqZX7WPbup5fyAdGSQwD": [ + { + "amount": "106.198732714", + "slot": { + "period": 135353, + "thread": 16 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 217223, + "thread": 24 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 361873, + "thread": 18 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 563640, + "thread": 22 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 715867, + "thread": 21 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 956037, + "thread": 11 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1065132, + "thread": 9 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1277189, + "thread": 9 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1451724, + "thread": 20 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1544405, + "thread": 22 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1684505, + "thread": 6 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 1866537, + "thread": 20 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2047652, + "thread": 13 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2162182, + "thread": 18 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2405938, + "thread": 8 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2467803, + "thread": 5 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2699233, + "thread": 6 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2917288, + "thread": 10 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 2963660, + "thread": 5 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 3179079, + "thread": 29 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 3373879, + "thread": 0 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 3600569, + "thread": 14 + } + }, + { + "amount": "106.198732714", + "slot": { + "period": 3746068, + "thread": 22 + } + }, + { + "amount": "106.198732706", + "slot": { + "period": 3878418, + "thread": 8 + } + } + ], + "AU12AzYhi7foPAmZi5ftPtAvFJkxDcvnHASsWSf1wrQn4yB1VgwkZ": [ + { + "amount": "107.749746810", + "slot": { + "period": 115631, + "thread": 9 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 279077, + "thread": 7 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 442956, + "thread": 15 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 517062, + "thread": 21 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 670599, + "thread": 2 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 894030, + "thread": 25 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1082576, + "thread": 30 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1214825, + "thread": 23 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1341471, + "thread": 10 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1587242, + "thread": 30 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1755948, + "thread": 13 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1975815, + "thread": 15 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 1995296, + "thread": 8 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 2208876, + "thread": 25 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 2410271, + "thread": 3 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 2489354, + "thread": 18 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 2684171, + "thread": 13 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 2941643, + "thread": 11 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 3081525, + "thread": 28 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 3163901, + "thread": 7 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 3382191, + "thread": 5 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 3491774, + "thread": 7 + } + }, + { + "amount": "107.749746810", + "slot": { + "period": 3773270, + "thread": 28 + } + }, + { + "amount": "107.749746808", + "slot": { + "period": 3873521, + "thread": 10 + } + } + ], + "AU12B1CFDz9P46DHGs8jRdMSc9nzf8SzDaBHYtqwWaxDH1P5YZzT7": [ + { + "amount": "698.372841509", + "slot": { + "period": 47988, + "thread": 17 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 176618, + "thread": 13 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 360025, + "thread": 19 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 638193, + "thread": 2 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 771858, + "thread": 22 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 853251, + "thread": 19 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1027661, + "thread": 23 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1273340, + "thread": 12 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1460989, + "thread": 21 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1615883, + "thread": 22 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1752851, + "thread": 4 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 1855543, + "thread": 4 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2086598, + "thread": 9 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2188378, + "thread": 31 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2450460, + "thread": 20 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2497830, + "thread": 21 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2729851, + "thread": 6 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 2884477, + "thread": 23 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 3038787, + "thread": 18 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 3242278, + "thread": 8 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 3389208, + "thread": 0 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 3608845, + "thread": 0 + } + }, + { + "amount": "698.372841509", + "slot": { + "period": 3648272, + "thread": 18 + } + }, + { + "amount": "698.372841506", + "slot": { + "period": 3942095, + "thread": 24 + } + } + ], + "AU12B1ciQg6n9KVgfJV2NQYMxFTLmZdjyqdKB2vny9bVu9h9pAxsC": [ + { + "amount": "172.210432454", + "slot": { + "period": 126703, + "thread": 7 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 256505, + "thread": 18 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 464430, + "thread": 29 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 578687, + "thread": 26 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 694900, + "thread": 7 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 883648, + "thread": 11 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1045329, + "thread": 25 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1275801, + "thread": 28 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1473198, + "thread": 27 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1517768, + "thread": 20 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1664946, + "thread": 29 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 1913317, + "thread": 24 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2122074, + "thread": 11 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2152556, + "thread": 18 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2419947, + "thread": 24 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2524899, + "thread": 19 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2748657, + "thread": 27 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 2836961, + "thread": 14 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 3058129, + "thread": 11 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 3275881, + "thread": 22 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 3290937, + "thread": 26 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 3530312, + "thread": 31 + } + }, + { + "amount": "172.210432454", + "slot": { + "period": 3729366, + "thread": 31 + } + }, + { + "amount": "172.210432445", + "slot": { + "period": 3807061, + "thread": 13 + } + } + ], + "AU12B1wkzBGpxokQXMi78zc1j11tC2GDBpHcQAhrCajkK8ambodNZ": [ + { + "amount": "79.060796575", + "slot": { + "period": 125535, + "thread": 1 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 257584, + "thread": 22 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 404150, + "thread": 24 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 528614, + "thread": 10 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 698096, + "thread": 13 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 852843, + "thread": 11 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1087929, + "thread": 23 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1280773, + "thread": 31 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1448699, + "thread": 31 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1583099, + "thread": 13 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1749239, + "thread": 11 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 1846133, + "thread": 19 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2134617, + "thread": 5 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2212485, + "thread": 2 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2363814, + "thread": 19 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2603859, + "thread": 3 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2631775, + "thread": 6 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 2827759, + "thread": 8 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 3034405, + "thread": 31 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 3262484, + "thread": 9 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 3375033, + "thread": 25 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 3500995, + "thread": 27 + } + }, + { + "amount": "79.060796575", + "slot": { + "period": 3642086, + "thread": 31 + } + }, + { + "amount": "79.060796576", + "slot": { + "period": 3894251, + "thread": 12 + } + } + ], + "AU12B29RbeXVf1HD9YnzFERK5Z9ex6NrCjUrKGoqsNQZk8HbGN3Xq": [ + { + "amount": "142.296818708", + "slot": { + "period": 23153, + "thread": 27 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 179406, + "thread": 26 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 481802, + "thread": 8 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 507586, + "thread": 4 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 788949, + "thread": 6 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 823730, + "thread": 2 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1088226, + "thread": 24 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1219323, + "thread": 27 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1423481, + "thread": 3 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1621236, + "thread": 29 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1705644, + "thread": 27 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 1900998, + "thread": 21 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2054734, + "thread": 20 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2159744, + "thread": 21 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2343364, + "thread": 30 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2608685, + "thread": 31 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2787475, + "thread": 29 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 2876741, + "thread": 2 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 3014651, + "thread": 31 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 3141365, + "thread": 13 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 3405553, + "thread": 15 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 3524980, + "thread": 24 + } + }, + { + "amount": "142.296818708", + "slot": { + "period": 3624062, + "thread": 11 + } + }, + { + "amount": "142.296818702", + "slot": { + "period": 3932984, + "thread": 29 + } + } + ], + "AU12B2Gu7HtX7rW5n8Mv5XA4bnJvgwRoFRphZk93bdQDUt48pi56m": [ + { + "amount": "288.075638620", + "slot": { + "period": 91381, + "thread": 6 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 320002, + "thread": 4 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 434419, + "thread": 12 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 584807, + "thread": 7 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 786295, + "thread": 16 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 924091, + "thread": 24 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1057033, + "thread": 12 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1221328, + "thread": 14 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1349049, + "thread": 11 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1543537, + "thread": 23 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1770902, + "thread": 24 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1850767, + "thread": 13 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 1989271, + "thread": 11 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 2188464, + "thread": 17 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 2296685, + "thread": 16 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 2608355, + "thread": 5 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 2722110, + "thread": 3 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 2915683, + "thread": 4 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 3112190, + "thread": 22 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 3158732, + "thread": 19 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 3387796, + "thread": 31 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 3542075, + "thread": 0 + } + }, + { + "amount": "288.075638620", + "slot": { + "period": 3642408, + "thread": 21 + } + }, + { + "amount": "288.075638615", + "slot": { + "period": 3945171, + "thread": 7 + } + } + ], + "AU12B34h6Rifp8oYAdtsmUzfxMGKS5UJsXvisa1sRU711zG1ZrGtY": [ + { + "amount": "286.813283066", + "slot": { + "period": 79480, + "thread": 10 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 262905, + "thread": 19 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 341246, + "thread": 24 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 596528, + "thread": 26 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 806391, + "thread": 4 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 938727, + "thread": 4 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1047680, + "thread": 17 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1159393, + "thread": 30 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1393946, + "thread": 26 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1611979, + "thread": 14 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1707439, + "thread": 6 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 1959931, + "thread": 26 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2101503, + "thread": 4 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2173772, + "thread": 7 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2323280, + "thread": 16 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2505162, + "thread": 16 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2631968, + "thread": 17 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 2803925, + "thread": 29 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 3024181, + "thread": 26 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 3232769, + "thread": 9 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 3294654, + "thread": 12 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 3496734, + "thread": 24 + } + }, + { + "amount": "286.813283066", + "slot": { + "period": 3624480, + "thread": 11 + } + }, + { + "amount": "286.813283072", + "slot": { + "period": 3807984, + "thread": 15 + } + } + ], + "AU12B3RWmA65szNtCo3EoLYJdxiaqBRNoj3QwXoKC4wF6zKek4Chy": [ + { + "amount": "203.376492507", + "slot": { + "period": 56010, + "thread": 1 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 172414, + "thread": 7 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 403456, + "thread": 25 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 523656, + "thread": 24 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 786332, + "thread": 25 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 894201, + "thread": 2 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1035740, + "thread": 16 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1189996, + "thread": 23 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1478162, + "thread": 12 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1571174, + "thread": 31 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1801350, + "thread": 16 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1907030, + "thread": 7 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 1993895, + "thread": 16 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 2219833, + "thread": 3 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 2335574, + "thread": 30 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 2536076, + "thread": 4 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 2721137, + "thread": 14 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 2832682, + "thread": 8 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 3078301, + "thread": 19 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 3236533, + "thread": 8 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 3427725, + "thread": 15 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 3543052, + "thread": 14 + } + }, + { + "amount": "203.376492507", + "slot": { + "period": 3696223, + "thread": 30 + } + }, + { + "amount": "203.376492509", + "slot": { + "period": 3930388, + "thread": 17 + } + } + ], + "AU12B3rBiPXgp71mLxa5u3JWgVpsDBFFAgYYx9LekH9mozzMbCeey": [ + { + "amount": "110.124432682", + "slot": { + "period": 139150, + "thread": 23 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 307018, + "thread": 8 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 423224, + "thread": 15 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 649639, + "thread": 26 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 787821, + "thread": 17 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 910287, + "thread": 12 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1043040, + "thread": 6 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1232057, + "thread": 8 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1471394, + "thread": 25 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1627209, + "thread": 5 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1661823, + "thread": 4 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 1865513, + "thread": 16 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2013947, + "thread": 17 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2154650, + "thread": 27 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2351943, + "thread": 6 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2517656, + "thread": 24 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2778880, + "thread": 14 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2873929, + "thread": 8 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 2958553, + "thread": 0 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 3134282, + "thread": 23 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 3370374, + "thread": 1 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 3523744, + "thread": 27 + } + }, + { + "amount": "110.124432682", + "slot": { + "period": 3632500, + "thread": 28 + } + }, + { + "amount": "110.124432675", + "slot": { + "period": 3936409, + "thread": 17 + } + } + ], + "AU12B5bqtBcf7mFhf1phYGwk7XN39dqZ27psVq8vzBQLX8i9haHdG": [ + { + "amount": "69.267947110", + "slot": { + "period": 158544, + "thread": 22 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 320092, + "thread": 3 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 343382, + "thread": 27 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 548481, + "thread": 8 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 797134, + "thread": 26 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 881416, + "thread": 10 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1107769, + "thread": 31 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1295599, + "thread": 13 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1453330, + "thread": 31 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1534947, + "thread": 29 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1805226, + "thread": 14 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 1912042, + "thread": 3 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2094757, + "thread": 13 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2226322, + "thread": 28 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2331792, + "thread": 29 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2601772, + "thread": 6 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2638797, + "thread": 30 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2857921, + "thread": 10 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 2984741, + "thread": 22 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 3242204, + "thread": 3 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 3389909, + "thread": 30 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 3450846, + "thread": 23 + } + }, + { + "amount": "69.267947110", + "slot": { + "period": 3669369, + "thread": 31 + } + }, + { + "amount": "69.267947098", + "slot": { + "period": 3786545, + "thread": 25 + } + } + ], + "AU12B6LPgMqcrMLcLKLsRkTck1yZREovgDKX4Te2319zp1AGYHQ46": [ + { + "amount": "110.381969273", + "slot": { + "period": 60771, + "thread": 9 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 210217, + "thread": 6 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 404586, + "thread": 25 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 600733, + "thread": 3 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 800023, + "thread": 20 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 952072, + "thread": 10 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1101201, + "thread": 23 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1227973, + "thread": 23 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1440676, + "thread": 23 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1577101, + "thread": 13 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1689270, + "thread": 24 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1868256, + "thread": 18 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 1982080, + "thread": 13 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 2263906, + "thread": 14 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 2298233, + "thread": 16 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 2544213, + "thread": 26 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 2777247, + "thread": 1 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 2818694, + "thread": 18 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3021075, + "thread": 5 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3256060, + "thread": 24 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3387715, + "thread": 27 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3477135, + "thread": 30 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3657195, + "thread": 22 + } + }, + { + "amount": "110.381969273", + "slot": { + "period": 3931726, + "thread": 9 + } + } + ], + "AU12B6aLi8a2CcpRTSGC4Mw9hNLwYvVarQpzrSerLqvNvpejPPfCL": [ + { + "amount": "369.295213972", + "slot": { + "period": 82889, + "thread": 29 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 216193, + "thread": 6 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 444900, + "thread": 12 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 554374, + "thread": 21 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 729426, + "thread": 27 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 907310, + "thread": 9 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1022061, + "thread": 3 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1311485, + "thread": 17 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1354714, + "thread": 3 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1620476, + "thread": 9 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1753096, + "thread": 26 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 1828789, + "thread": 2 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2139444, + "thread": 5 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2271061, + "thread": 24 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2341784, + "thread": 12 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2471850, + "thread": 17 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2630370, + "thread": 20 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 2838268, + "thread": 19 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 3014226, + "thread": 3 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 3126584, + "thread": 21 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 3433038, + "thread": 20 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 3603280, + "thread": 14 + } + }, + { + "amount": "369.295213972", + "slot": { + "period": 3750876, + "thread": 4 + } + }, + { + "amount": "369.295213967", + "slot": { + "period": 3840762, + "thread": 4 + } + } + ], + "AU12B7tyVHJcukXsQN4cviCJsmswBJ4GZMdi69n5CEjBYZi5LA4zq": [ + { + "amount": "151.244265598", + "slot": { + "period": 64248, + "thread": 25 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 267644, + "thread": 28 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 472181, + "thread": 2 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 613856, + "thread": 15 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 722421, + "thread": 27 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 839270, + "thread": 21 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1010438, + "thread": 24 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1205301, + "thread": 2 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1467030, + "thread": 27 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1596556, + "thread": 0 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1689694, + "thread": 23 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 1905884, + "thread": 30 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2050079, + "thread": 27 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2181829, + "thread": 29 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2400490, + "thread": 17 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2584677, + "thread": 15 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2647637, + "thread": 29 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 2861672, + "thread": 23 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 3109998, + "thread": 16 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 3283250, + "thread": 12 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 3305990, + "thread": 0 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 3577558, + "thread": 29 + } + }, + { + "amount": "151.244265598", + "slot": { + "period": 3688158, + "thread": 21 + } + }, + { + "amount": "151.244265586", + "slot": { + "period": 3801977, + "thread": 2 + } + } + ], + "AU12B8qGNJM71PwNDJJzXwuhNay9jMLACzB6CoQUPmEtmQHYmY8pE": [ + { + "amount": "186.775023750", + "slot": { + "period": 61565, + "thread": 26 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 179774, + "thread": 29 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 366412, + "thread": 2 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 638432, + "thread": 15 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 781731, + "thread": 10 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 845308, + "thread": 14 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1088057, + "thread": 2 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1297340, + "thread": 10 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1476987, + "thread": 16 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1536190, + "thread": 3 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1720474, + "thread": 31 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 1921807, + "thread": 10 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2010311, + "thread": 0 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2177930, + "thread": 29 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2450596, + "thread": 4 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2511301, + "thread": 0 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2753593, + "thread": 17 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 2810620, + "thread": 29 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 3048808, + "thread": 16 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 3176965, + "thread": 12 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 3311734, + "thread": 16 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 3568094, + "thread": 19 + } + }, + { + "amount": "186.775023750", + "slot": { + "period": 3636117, + "thread": 24 + } + }, + { + "amount": "186.775023756", + "slot": { + "period": 3882299, + "thread": 19 + } + } + ], + "AU12B9ot4wR4nvXmdzGRVAVA5qcoxvR9ui44JTfQ5CD8BWNGU1w82": [ + { + "amount": "59.801749827", + "slot": { + "period": 132781, + "thread": 28 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 169595, + "thread": 22 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 416621, + "thread": 31 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 642796, + "thread": 12 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 749514, + "thread": 10 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 932762, + "thread": 23 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1004569, + "thread": 20 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1312510, + "thread": 6 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1456114, + "thread": 28 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1627788, + "thread": 29 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1657353, + "thread": 22 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 1838525, + "thread": 20 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2006797, + "thread": 18 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2187990, + "thread": 31 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2392557, + "thread": 30 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2497957, + "thread": 16 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2709959, + "thread": 29 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2846135, + "thread": 12 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 2975481, + "thread": 13 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 3204952, + "thread": 29 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 3308562, + "thread": 20 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 3591661, + "thread": 19 + } + }, + { + "amount": "59.801749827", + "slot": { + "period": 3742301, + "thread": 5 + } + }, + { + "amount": "59.801749834", + "slot": { + "period": 3925614, + "thread": 1 + } + } + ], + "AU12BAGPQ7UUxjdr4mN12SwacCF5vmpVVudQBDGbJ18g2YSbRPNgN": [ + { + "amount": "256.045257197", + "slot": { + "period": 76796, + "thread": 14 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 225870, + "thread": 4 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 403945, + "thread": 0 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 561136, + "thread": 28 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 666441, + "thread": 14 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 909346, + "thread": 24 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 990586, + "thread": 11 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 1184368, + "thread": 21 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 1359135, + "thread": 29 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 1631639, + "thread": 19 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 1722612, + "thread": 11 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 1818093, + "thread": 31 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2103327, + "thread": 19 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2173268, + "thread": 0 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2358433, + "thread": 4 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2553697, + "thread": 6 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2685243, + "thread": 21 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2843446, + "thread": 30 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 2997085, + "thread": 29 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 3161945, + "thread": 1 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 3438802, + "thread": 18 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 3495556, + "thread": 17 + } + }, + { + "amount": "256.045257197", + "slot": { + "period": 3646995, + "thread": 19 + } + }, + { + "amount": "256.045257203", + "slot": { + "period": 3868927, + "thread": 19 + } + } + ], + "AU12BBFuTkyCPZsSoJXaSNhR4mMURSmAHhxdoaxW5bt38QqhoBFYH": [ + { + "amount": "228.106511758", + "slot": { + "period": 99281, + "thread": 3 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 241601, + "thread": 17 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 485415, + "thread": 24 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 531241, + "thread": 10 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 726881, + "thread": 17 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 916233, + "thread": 20 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1110251, + "thread": 20 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1215025, + "thread": 7 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1451766, + "thread": 7 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1518754, + "thread": 10 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1755384, + "thread": 12 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 1815313, + "thread": 31 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2043356, + "thread": 25 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2153240, + "thread": 24 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2411041, + "thread": 15 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2533759, + "thread": 9 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2653339, + "thread": 0 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 2819540, + "thread": 6 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 3003875, + "thread": 10 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 3154408, + "thread": 23 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 3428905, + "thread": 24 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 3520125, + "thread": 19 + } + }, + { + "amount": "228.106511758", + "slot": { + "period": 3749652, + "thread": 12 + } + }, + { + "amount": "228.106511767", + "slot": { + "period": 3883455, + "thread": 13 + } + } + ], + "AU12BC81Y2ckdSAfiTjt2rgd3hTAr2zy6TNwKndefF4ao43RXZrV2": [ + { + "amount": "154.839526337", + "slot": { + "period": 88025, + "thread": 22 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 237564, + "thread": 31 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 335149, + "thread": 14 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 492679, + "thread": 0 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 770136, + "thread": 16 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 830726, + "thread": 29 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1055548, + "thread": 13 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1280109, + "thread": 10 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1460003, + "thread": 6 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1503188, + "thread": 23 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1779275, + "thread": 14 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 1818297, + "thread": 18 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2068099, + "thread": 21 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2192119, + "thread": 25 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2347564, + "thread": 18 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2513439, + "thread": 5 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2711596, + "thread": 26 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2832223, + "thread": 27 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 2985049, + "thread": 16 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 3216872, + "thread": 28 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 3325424, + "thread": 13 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 3548561, + "thread": 0 + } + }, + { + "amount": "154.839526337", + "slot": { + "period": 3731077, + "thread": 8 + } + }, + { + "amount": "154.839526329", + "slot": { + "period": 3806269, + "thread": 8 + } + } + ], + "AU12BCTXykiUmGutaopn6ujmVK3BwSg9eEcw8UdVsfKVdQ7Q4aWKA": [ + { + "amount": "164.273057209", + "slot": { + "period": 106973, + "thread": 2 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 189933, + "thread": 28 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 459669, + "thread": 4 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 506940, + "thread": 15 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 668957, + "thread": 27 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 926536, + "thread": 7 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1120050, + "thread": 10 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1219639, + "thread": 10 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1404293, + "thread": 24 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1505950, + "thread": 12 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1767684, + "thread": 11 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 1817867, + "thread": 31 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2016139, + "thread": 28 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2207897, + "thread": 13 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2432170, + "thread": 5 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2604630, + "thread": 29 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2740605, + "thread": 19 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 2830902, + "thread": 10 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 3107203, + "thread": 1 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 3153797, + "thread": 0 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 3355681, + "thread": 5 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 3498388, + "thread": 19 + } + }, + { + "amount": "164.273057209", + "slot": { + "period": 3636065, + "thread": 22 + } + }, + { + "amount": "164.273057211", + "slot": { + "period": 3850277, + "thread": 21 + } + } + ], + "AU12BE8Lk8kBRcHDo2Tumgw8MjKiZ8XmHNFLzptKtrXqtehEhxRrm": [ + { + "amount": "419.833032923", + "slot": { + "period": 161665, + "thread": 3 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 313657, + "thread": 28 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 344177, + "thread": 25 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 583672, + "thread": 29 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 701335, + "thread": 3 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 974284, + "thread": 13 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1056004, + "thread": 18 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1230144, + "thread": 1 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1417396, + "thread": 4 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1481360, + "thread": 18 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1704782, + "thread": 6 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 1921113, + "thread": 30 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2091979, + "thread": 13 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2218746, + "thread": 15 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2460291, + "thread": 24 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2519612, + "thread": 1 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2632133, + "thread": 8 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 2807922, + "thread": 23 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 3117052, + "thread": 5 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 3249364, + "thread": 28 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 3377006, + "thread": 27 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 3558549, + "thread": 18 + } + }, + { + "amount": "419.833032923", + "slot": { + "period": 3688254, + "thread": 20 + } + }, + { + "amount": "419.833032920", + "slot": { + "period": 3915034, + "thread": 20 + } + } + ], + "AU12BERK4omvivzqFbeFKrb58UHcxUQVdTE1CjFovh8VPBUEceTnJ": [ + { + "amount": "62.984231900", + "slot": { + "period": 76308, + "thread": 1 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 217267, + "thread": 22 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 405719, + "thread": 0 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 530641, + "thread": 27 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 657732, + "thread": 13 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 826526, + "thread": 5 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1146347, + "thread": 4 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1298352, + "thread": 9 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1417779, + "thread": 0 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1560692, + "thread": 17 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1674063, + "thread": 0 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 1903850, + "thread": 0 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2071908, + "thread": 27 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2261309, + "thread": 15 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2440596, + "thread": 8 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2497842, + "thread": 22 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2625074, + "thread": 15 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 2913072, + "thread": 30 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 3081321, + "thread": 14 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 3183864, + "thread": 10 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 3402564, + "thread": 13 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 3468727, + "thread": 20 + } + }, + { + "amount": "62.984231900", + "slot": { + "period": 3694947, + "thread": 27 + } + }, + { + "amount": "62.984231893", + "slot": { + "period": 3836327, + "thread": 7 + } + } + ], + "AU12BEorJRTCNvN8aYNpRjaqRmWB46i7nKo3a657mPn4vH4MGG7As": [ + { + "amount": "69.832894030", + "slot": { + "period": 79049, + "thread": 9 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 244255, + "thread": 22 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 467662, + "thread": 2 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 515597, + "thread": 5 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 658878, + "thread": 10 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 935085, + "thread": 28 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1005041, + "thread": 20 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1208830, + "thread": 31 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1389112, + "thread": 13 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1618101, + "thread": 22 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1738362, + "thread": 13 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 1820724, + "thread": 0 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2126725, + "thread": 9 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2253015, + "thread": 7 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2327189, + "thread": 10 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2582109, + "thread": 2 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2725286, + "thread": 20 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2797824, + "thread": 5 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 2955130, + "thread": 7 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 3146845, + "thread": 4 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 3362690, + "thread": 20 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 3504525, + "thread": 4 + } + }, + { + "amount": "69.832894030", + "slot": { + "period": 3708324, + "thread": 8 + } + }, + { + "amount": "69.832894031", + "slot": { + "period": 3845594, + "thread": 19 + } + } + ], + "AU12BFN4GK7B1WsssW3qvBUUjJgy8fpqggoXnkHa8f2WRpiKSTanp": [ + { + "amount": "151.973428614", + "slot": { + "period": 65721, + "thread": 15 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 223014, + "thread": 23 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 338281, + "thread": 31 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 624428, + "thread": 9 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 723643, + "thread": 19 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 891242, + "thread": 28 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1089396, + "thread": 12 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1220991, + "thread": 24 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1358088, + "thread": 24 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1484835, + "thread": 12 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1766184, + "thread": 16 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1958360, + "thread": 4 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 1996658, + "thread": 17 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 2291398, + "thread": 6 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 2312169, + "thread": 24 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 2569850, + "thread": 19 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 2752271, + "thread": 26 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 2838959, + "thread": 21 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 3038722, + "thread": 15 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 3194772, + "thread": 11 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 3340991, + "thread": 6 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 3612390, + "thread": 21 + } + }, + { + "amount": "151.973428614", + "slot": { + "period": 3777323, + "thread": 0 + } + }, + { + "amount": "151.973428625", + "slot": { + "period": 3867053, + "thread": 10 + } + } + ], + "AU12BG5VCCsSWE1N1hnJmgW48BVSbXry3XsZB7DEFkLVtwfbjaecg": [ + { + "amount": "472.328516203", + "slot": { + "period": 74018, + "thread": 20 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 206584, + "thread": 3 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 368525, + "thread": 6 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 566986, + "thread": 27 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 782027, + "thread": 7 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 865474, + "thread": 20 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1143171, + "thread": 22 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1271922, + "thread": 8 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1385385, + "thread": 12 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1508561, + "thread": 26 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1758837, + "thread": 20 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1858954, + "thread": 31 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 1983246, + "thread": 28 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 2254447, + "thread": 12 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 2318531, + "thread": 24 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 2589877, + "thread": 15 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 2759262, + "thread": 21 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 2838899, + "thread": 29 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 3054120, + "thread": 5 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 3218044, + "thread": 31 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 3341552, + "thread": 4 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 3612709, + "thread": 6 + } + }, + { + "amount": "472.328516203", + "slot": { + "period": 3743749, + "thread": 27 + } + }, + { + "amount": "472.328516195", + "slot": { + "period": 3784285, + "thread": 5 + } + } + ], + "AU12BGjS4HoHQvddDABP41yWMMWfhwUAWkdHsrqmeUyrZJXmqF7cW": [ + { + "amount": "152.636839172", + "slot": { + "period": 77211, + "thread": 26 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 322102, + "thread": 31 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 407256, + "thread": 8 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 630793, + "thread": 0 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 759105, + "thread": 9 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 853814, + "thread": 8 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1138019, + "thread": 9 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1315414, + "thread": 21 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1349694, + "thread": 7 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1502289, + "thread": 13 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1678134, + "thread": 6 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 1907414, + "thread": 29 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2088935, + "thread": 18 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2147164, + "thread": 3 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2378719, + "thread": 11 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2472859, + "thread": 10 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2706496, + "thread": 6 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 2910748, + "thread": 4 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 3007721, + "thread": 2 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 3233673, + "thread": 26 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 3317777, + "thread": 5 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 3456381, + "thread": 21 + } + }, + { + "amount": "152.636839172", + "slot": { + "period": 3678152, + "thread": 2 + } + }, + { + "amount": "152.636839179", + "slot": { + "period": 3829157, + "thread": 12 + } + } + ], + "AU12BGtMrabKMuq4ftA3RkiL95R7wsEkNQpokDjavEkkxJ59dV8eo": [ + { + "amount": "255.317846026", + "slot": { + "period": 97042, + "thread": 28 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 252821, + "thread": 3 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 371115, + "thread": 30 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 573312, + "thread": 28 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 667167, + "thread": 15 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 980691, + "thread": 16 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1014618, + "thread": 27 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1227457, + "thread": 20 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1448498, + "thread": 26 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1518498, + "thread": 18 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1749048, + "thread": 9 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 1941398, + "thread": 24 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2087811, + "thread": 6 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2217585, + "thread": 8 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2371748, + "thread": 28 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2568685, + "thread": 25 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2735484, + "thread": 22 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 2877699, + "thread": 1 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 3115274, + "thread": 9 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 3150417, + "thread": 8 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 3395486, + "thread": 18 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 3570815, + "thread": 18 + } + }, + { + "amount": "255.317846026", + "slot": { + "period": 3651889, + "thread": 17 + } + }, + { + "amount": "255.317846031", + "slot": { + "period": 3794144, + "thread": 6 + } + } + ], + "AU12BH5ckXGA35vD4nV1n8xt3voMwJEqknNcgfBBqqhQbyxG4ys2v": [ + { + "amount": "73.066619000", + "slot": { + "period": 89640, + "thread": 28 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 217063, + "thread": 12 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 379368, + "thread": 19 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 551215, + "thread": 31 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 669181, + "thread": 26 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 925789, + "thread": 31 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1090788, + "thread": 26 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1229037, + "thread": 12 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1418861, + "thread": 12 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1638868, + "thread": 21 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1714239, + "thread": 9 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 1865574, + "thread": 25 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2088214, + "thread": 16 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2240937, + "thread": 19 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2402024, + "thread": 25 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2524025, + "thread": 22 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2764319, + "thread": 8 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 2923344, + "thread": 0 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 3006881, + "thread": 20 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 3288505, + "thread": 23 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 3388929, + "thread": 14 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 3521351, + "thread": 11 + } + }, + { + "amount": "73.066619000", + "slot": { + "period": 3693771, + "thread": 19 + } + }, + { + "amount": "73.066619008", + "slot": { + "period": 3944861, + "thread": 23 + } + } + ], + "AU12BJAiTksWPg15AyMH5UffGvsCrgxU1fJ1pnwXgzqEqVUqCsznU": [ + { + "amount": "233.004430307", + "slot": { + "period": 41805, + "thread": 6 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 312549, + "thread": 31 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 400404, + "thread": 23 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 620152, + "thread": 3 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 715279, + "thread": 1 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 859772, + "thread": 20 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1127034, + "thread": 6 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1198488, + "thread": 10 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1412950, + "thread": 31 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1596097, + "thread": 16 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1787740, + "thread": 6 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 1847249, + "thread": 15 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2052626, + "thread": 12 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2144609, + "thread": 19 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2297970, + "thread": 25 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2607824, + "thread": 17 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2694043, + "thread": 12 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2889841, + "thread": 29 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 2995286, + "thread": 6 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 3256297, + "thread": 31 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 3340314, + "thread": 22 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 3539929, + "thread": 10 + } + }, + { + "amount": "233.004430307", + "slot": { + "period": 3720313, + "thread": 30 + } + }, + { + "amount": "233.004430302", + "slot": { + "period": 3901209, + "thread": 4 + } + } + ], + "AU12BJYUcaYEfSWFeEv47vRbuGSA4iGvHNfSwxWTYc2WT2hLeC8Pu": [ + { + "amount": "119.290404439", + "slot": { + "period": 43184, + "thread": 31 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 183361, + "thread": 7 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 484829, + "thread": 27 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 542749, + "thread": 18 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 792636, + "thread": 5 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 829641, + "thread": 10 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1041004, + "thread": 5 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1299507, + "thread": 21 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1395708, + "thread": 23 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1531835, + "thread": 23 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1652337, + "thread": 15 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 1885334, + "thread": 24 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2120068, + "thread": 4 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2162297, + "thread": 26 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2389517, + "thread": 12 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2579688, + "thread": 11 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2720679, + "thread": 29 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 2829691, + "thread": 29 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 3089320, + "thread": 14 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 3201127, + "thread": 7 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 3305212, + "thread": 9 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 3484596, + "thread": 2 + } + }, + { + "amount": "119.290404439", + "slot": { + "period": 3700396, + "thread": 27 + } + }, + { + "amount": "119.290404431", + "slot": { + "period": 3923463, + "thread": 27 + } + } + ], + "AU12BL6t9hMPTfkEtUMhkL3pwhrbLn9FypYfYN7Q7et6XhzZk1k2": [ + { + "amount": "132.606923425", + "slot": { + "period": 164282, + "thread": 13 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 259692, + "thread": 24 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 331915, + "thread": 1 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 643445, + "thread": 16 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 676306, + "thread": 8 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 930727, + "thread": 13 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1097308, + "thread": 2 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1218057, + "thread": 22 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1355859, + "thread": 16 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1642868, + "thread": 29 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1764776, + "thread": 13 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 1931388, + "thread": 30 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2120481, + "thread": 29 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2273220, + "thread": 25 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2366186, + "thread": 11 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2483585, + "thread": 21 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2631875, + "thread": 1 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 2911709, + "thread": 6 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 3052422, + "thread": 1 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 3280039, + "thread": 31 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 3415575, + "thread": 22 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 3602509, + "thread": 3 + } + }, + { + "amount": "132.606923425", + "slot": { + "period": 3739492, + "thread": 22 + } + }, + { + "amount": "132.606923421", + "slot": { + "period": 3849564, + "thread": 28 + } + } + ], + "AU12BLCAsZ6uHv2t1mkrHsVHkz1XAWAHbzZFjPuYzNj9D4oKfJAvr": [ + { + "amount": "222.841615923", + "slot": { + "period": 41246, + "thread": 2 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 185130, + "thread": 0 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 396375, + "thread": 18 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 636464, + "thread": 4 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 740978, + "thread": 28 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 821645, + "thread": 18 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1133627, + "thread": 2 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1253802, + "thread": 25 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1453863, + "thread": 0 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1604350, + "thread": 21 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1782342, + "thread": 23 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 1936848, + "thread": 24 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2098138, + "thread": 0 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2206986, + "thread": 28 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2381498, + "thread": 12 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2525101, + "thread": 7 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2692200, + "thread": 23 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 2803386, + "thread": 30 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 3087183, + "thread": 18 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 3255302, + "thread": 17 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 3361706, + "thread": 2 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 3477675, + "thread": 29 + } + }, + { + "amount": "222.841615923", + "slot": { + "period": 3755352, + "thread": 3 + } + }, + { + "amount": "222.841615917", + "slot": { + "period": 3890224, + "thread": 27 + } + } + ], + "AU12BLK3EoNpncK9mXKiK4k9MJc3F6RohqfUBGu6qD3gTwFcbFnWg": [ + { + "amount": "758.565883142", + "slot": { + "period": 13901, + "thread": 16 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 238757, + "thread": 10 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 337148, + "thread": 29 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 589514, + "thread": 27 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 653797, + "thread": 22 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 840011, + "thread": 3 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1127118, + "thread": 17 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1205111, + "thread": 24 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1334281, + "thread": 23 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1643295, + "thread": 21 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1654870, + "thread": 6 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 1971931, + "thread": 14 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2037438, + "thread": 30 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2261235, + "thread": 8 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2378395, + "thread": 28 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2564537, + "thread": 19 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2689673, + "thread": 17 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2880740, + "thread": 20 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 2993441, + "thread": 5 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 3149233, + "thread": 1 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 3443060, + "thread": 1 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 3535290, + "thread": 31 + } + }, + { + "amount": "758.565883142", + "slot": { + "period": 3627404, + "thread": 15 + } + }, + { + "amount": "758.565883145", + "slot": { + "period": 3884330, + "thread": 9 + } + } + ], + "AU12BLQUWV4jntdTP2cG11mcjSJkRGd9fr1y86qxERTaC9RRhf6NJ": [ + { + "amount": "75.141801296", + "slot": { + "period": 135606, + "thread": 1 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 264227, + "thread": 17 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 427480, + "thread": 16 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 496590, + "thread": 6 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 762307, + "thread": 29 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 880433, + "thread": 15 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1015006, + "thread": 7 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1186668, + "thread": 29 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1379262, + "thread": 21 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1524211, + "thread": 21 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1685406, + "thread": 7 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 1913108, + "thread": 8 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2051044, + "thread": 30 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2216418, + "thread": 20 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2373035, + "thread": 27 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2602779, + "thread": 28 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2659276, + "thread": 4 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2916643, + "thread": 29 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 2999958, + "thread": 1 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 3259767, + "thread": 18 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 3313410, + "thread": 13 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 3469443, + "thread": 5 + } + }, + { + "amount": "75.141801296", + "slot": { + "period": 3733885, + "thread": 19 + } + }, + { + "amount": "75.141801303", + "slot": { + "period": 3833026, + "thread": 6 + } + } + ], + "AU12BLdoLvr1pBCyoYpxLSk6jTYeYzLEBuJWPnJZQyrgc3b1S5NP8": [ + { + "amount": "64.141238685", + "slot": { + "period": 128885, + "thread": 16 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 267841, + "thread": 0 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 371150, + "thread": 7 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 509015, + "thread": 26 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 737391, + "thread": 14 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 900244, + "thread": 10 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1083293, + "thread": 20 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1167977, + "thread": 17 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1340402, + "thread": 29 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1537064, + "thread": 25 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1652767, + "thread": 26 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1864333, + "thread": 26 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 1979357, + "thread": 1 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 2283296, + "thread": 3 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 2328819, + "thread": 9 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 2564657, + "thread": 2 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 2653806, + "thread": 11 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 2852633, + "thread": 2 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 3082147, + "thread": 19 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 3244722, + "thread": 21 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 3367648, + "thread": 10 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 3558113, + "thread": 4 + } + }, + { + "amount": "64.141238685", + "slot": { + "period": 3749457, + "thread": 23 + } + }, + { + "amount": "64.141238680", + "slot": { + "period": 3909372, + "thread": 8 + } + } + ], + "AU12BMEryyTKPMH5mwsLn8g1jTHxCd7kTXbcYpWeBdWQbAtUqPgbc": [ + { + "amount": "87.839419256", + "slot": { + "period": 79607, + "thread": 6 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 215578, + "thread": 9 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 404691, + "thread": 18 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 494787, + "thread": 15 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 691157, + "thread": 11 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 862140, + "thread": 21 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1035842, + "thread": 2 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1161275, + "thread": 9 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1431265, + "thread": 5 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1494296, + "thread": 15 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1749217, + "thread": 24 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 1919019, + "thread": 0 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2110476, + "thread": 7 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2290117, + "thread": 23 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2349141, + "thread": 29 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2564977, + "thread": 20 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2647725, + "thread": 27 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 2891681, + "thread": 12 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 3087977, + "thread": 14 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 3210496, + "thread": 3 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 3336879, + "thread": 3 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 3492073, + "thread": 8 + } + }, + { + "amount": "87.839419256", + "slot": { + "period": 3641580, + "thread": 0 + } + }, + { + "amount": "87.839419268", + "slot": { + "period": 3898209, + "thread": 7 + } + } + ], + "AU12BN16HTXWfEQ3GQ2UPjcgeVXtsHSXBPaDF6Ffnw1r5kHHNda41": [ + { + "amount": "90.067653205", + "slot": { + "period": 96458, + "thread": 22 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 249374, + "thread": 3 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 443441, + "thread": 2 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 523323, + "thread": 0 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 664765, + "thread": 8 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 950908, + "thread": 17 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1081949, + "thread": 31 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1294707, + "thread": 20 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1382390, + "thread": 4 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1479818, + "thread": 4 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1716958, + "thread": 28 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 1828990, + "thread": 10 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2071513, + "thread": 1 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2273992, + "thread": 27 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2343464, + "thread": 22 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2476775, + "thread": 15 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2658956, + "thread": 18 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2928094, + "thread": 20 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 2985987, + "thread": 21 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 3275701, + "thread": 30 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 3427707, + "thread": 6 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 3468676, + "thread": 14 + } + }, + { + "amount": "90.067653205", + "slot": { + "period": 3713133, + "thread": 3 + } + }, + { + "amount": "90.067653208", + "slot": { + "period": 3794216, + "thread": 6 + } + } + ], + "AU12BNM9nCkf6PmLEjc6qnWsES5yxaVge3i65jmHNKnfXrLZHUrUX": [ + { + "amount": "320.312889827", + "slot": { + "period": 59659, + "thread": 4 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 249564, + "thread": 7 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 467900, + "thread": 3 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 523042, + "thread": 26 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 807693, + "thread": 3 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 978174, + "thread": 20 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1025374, + "thread": 11 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1183881, + "thread": 6 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1329602, + "thread": 22 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1497501, + "thread": 7 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1789827, + "thread": 22 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 1815277, + "thread": 20 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2060163, + "thread": 7 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2187085, + "thread": 10 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2438173, + "thread": 18 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2509008, + "thread": 2 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2703509, + "thread": 12 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2882030, + "thread": 24 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 2958561, + "thread": 14 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 3271224, + "thread": 16 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 3341885, + "thread": 28 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 3588977, + "thread": 2 + } + }, + { + "amount": "320.312889827", + "slot": { + "period": 3643046, + "thread": 27 + } + }, + { + "amount": "320.312889830", + "slot": { + "period": 3818492, + "thread": 3 + } + } + ], + "AU12BQXur4Vhna2QBjU7uijURoU89VT2s7yX46dANX5fYCyzX9UFB": [ + { + "amount": "88.508401232", + "slot": { + "period": 44823, + "thread": 13 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 265991, + "thread": 21 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 394996, + "thread": 5 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 640760, + "thread": 17 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 666586, + "thread": 8 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 898776, + "thread": 30 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1020663, + "thread": 9 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1290182, + "thread": 8 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1392240, + "thread": 12 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1614897, + "thread": 27 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1719128, + "thread": 3 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 1917472, + "thread": 20 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2030692, + "thread": 9 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2189165, + "thread": 23 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2303618, + "thread": 21 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2566425, + "thread": 0 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2674769, + "thread": 15 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2907736, + "thread": 17 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 2960771, + "thread": 6 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 3133438, + "thread": 25 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 3348698, + "thread": 16 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 3511750, + "thread": 8 + } + }, + { + "amount": "88.508401232", + "slot": { + "period": 3749241, + "thread": 25 + } + }, + { + "amount": "88.508401243", + "slot": { + "period": 3934318, + "thread": 21 + } + } + ], + "AU12BQbtEueDJsK8rXkL7Rbj94JvAZzSo8x2XuBd4ioyRdYhBZeRK": [ + { + "amount": "79.025892543", + "slot": { + "period": 23088, + "thread": 19 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 272021, + "thread": 17 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 397208, + "thread": 11 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 652376, + "thread": 29 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 767088, + "thread": 11 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 867284, + "thread": 2 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1120261, + "thread": 1 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1217568, + "thread": 3 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1429262, + "thread": 17 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1597509, + "thread": 17 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1668140, + "thread": 18 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 1868188, + "thread": 10 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2102699, + "thread": 22 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2227472, + "thread": 4 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2333017, + "thread": 30 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2527637, + "thread": 29 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2675328, + "thread": 2 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 2822779, + "thread": 13 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 3042240, + "thread": 4 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 3179046, + "thread": 31 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 3295452, + "thread": 4 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 3521120, + "thread": 4 + } + }, + { + "amount": "79.025892543", + "slot": { + "period": 3676029, + "thread": 22 + } + }, + { + "amount": "79.025892538", + "slot": { + "period": 3944334, + "thread": 9 + } + } + ], + "AU12BQt9MpTcj4nyBDfx8xBjutryrBs3wGvWukcVEK5YDhoUfYj1u": [ + { + "amount": "1063.079918255", + "slot": { + "period": 87761, + "thread": 11 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 263112, + "thread": 28 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 398782, + "thread": 21 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 514649, + "thread": 22 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 719782, + "thread": 0 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 883593, + "thread": 24 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1027182, + "thread": 3 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1301955, + "thread": 23 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1377190, + "thread": 23 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1553388, + "thread": 25 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1797225, + "thread": 21 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 1879408, + "thread": 28 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2011851, + "thread": 15 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2188678, + "thread": 7 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2318679, + "thread": 8 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2576731, + "thread": 3 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2727216, + "thread": 23 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 2849608, + "thread": 26 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 3118660, + "thread": 31 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 3129143, + "thread": 31 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 3312963, + "thread": 21 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 3545001, + "thread": 30 + } + }, + { + "amount": "1063.079918255", + "slot": { + "period": 3735653, + "thread": 24 + } + }, + { + "amount": "1063.079918244", + "slot": { + "period": 3884422, + "thread": 23 + } + } + ], + "AU12BRo2U2sioMNf6EGtjCAtvzAFWXuhKmPu3yKzBbH4WVEc6pkkw": [ + { + "amount": "517.447930148", + "slot": { + "period": 147245, + "thread": 27 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 264243, + "thread": 18 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 449804, + "thread": 2 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 603810, + "thread": 13 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 693648, + "thread": 16 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 827839, + "thread": 10 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1008667, + "thread": 11 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1197744, + "thread": 28 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1395989, + "thread": 15 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1553517, + "thread": 3 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1696673, + "thread": 28 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 1865901, + "thread": 6 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2123724, + "thread": 1 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2279679, + "thread": 26 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2352572, + "thread": 5 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2531979, + "thread": 3 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2777569, + "thread": 3 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 2895258, + "thread": 1 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 3073584, + "thread": 15 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 3168736, + "thread": 20 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 3370304, + "thread": 4 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 3536738, + "thread": 24 + } + }, + { + "amount": "517.447930148", + "slot": { + "period": 3724223, + "thread": 15 + } + }, + { + "amount": "517.447930142", + "slot": { + "period": 3945932, + "thread": 30 + } + } + ], + "AU12BRtGn7AWhADhVPkEwcZ1GvnTbiAwbNen89wWbHP2bbWQQHme8": [ + { + "amount": "202.046706761", + "slot": { + "period": 124013, + "thread": 24 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 296613, + "thread": 3 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 441332, + "thread": 27 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 584821, + "thread": 4 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 767072, + "thread": 27 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 862887, + "thread": 7 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1070852, + "thread": 8 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1202914, + "thread": 18 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1390599, + "thread": 17 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1626502, + "thread": 16 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1790065, + "thread": 20 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 1820264, + "thread": 30 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2028212, + "thread": 26 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2168505, + "thread": 2 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2391453, + "thread": 1 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2504717, + "thread": 29 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2749787, + "thread": 10 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2914857, + "thread": 7 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 2991018, + "thread": 30 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 3166867, + "thread": 2 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 3343137, + "thread": 1 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 3615041, + "thread": 24 + } + }, + { + "amount": "202.046706761", + "slot": { + "period": 3746567, + "thread": 13 + } + }, + { + "amount": "202.046706772", + "slot": { + "period": 3850174, + "thread": 4 + } + } + ], + "AU12BRuaoXkQfibAAmgAqNkRqJvUUfgYtp1i1m6inPiBzuZYfEwp": [ + { + "amount": "250.881999646", + "slot": { + "period": 82049, + "thread": 20 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 302810, + "thread": 26 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 440753, + "thread": 26 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 561590, + "thread": 28 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 685234, + "thread": 7 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 954554, + "thread": 29 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1049126, + "thread": 11 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1152896, + "thread": 7 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1478382, + "thread": 28 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1539680, + "thread": 0 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1775091, + "thread": 29 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 1895776, + "thread": 31 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2031898, + "thread": 20 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2178027, + "thread": 1 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2405176, + "thread": 12 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2542033, + "thread": 15 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2653600, + "thread": 8 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 2903748, + "thread": 10 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 3099486, + "thread": 29 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 3177666, + "thread": 0 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 3387673, + "thread": 26 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 3594333, + "thread": 28 + } + }, + { + "amount": "250.881999646", + "slot": { + "period": 3752431, + "thread": 3 + } + }, + { + "amount": "250.881999655", + "slot": { + "period": 3881943, + "thread": 30 + } + } + ], + "AU12BS5Bw4hAW79QQttjSNFmn4sWJK4QdwXdK8V231XPMBtSXEG3G": [ + { + "amount": "515.780718255", + "slot": { + "period": 146048, + "thread": 12 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 230159, + "thread": 25 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 411228, + "thread": 24 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 649051, + "thread": 6 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 737112, + "thread": 0 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 918795, + "thread": 31 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1044736, + "thread": 29 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1235144, + "thread": 30 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1471250, + "thread": 16 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1545532, + "thread": 21 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1715566, + "thread": 25 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 1854924, + "thread": 25 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2023354, + "thread": 18 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2262323, + "thread": 7 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2353851, + "thread": 6 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2486814, + "thread": 9 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2748548, + "thread": 5 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 2842504, + "thread": 10 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 3039720, + "thread": 24 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 3191730, + "thread": 25 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 3427130, + "thread": 12 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 3591147, + "thread": 7 + } + }, + { + "amount": "515.780718255", + "slot": { + "period": 3718591, + "thread": 5 + } + }, + { + "amount": "515.780718248", + "slot": { + "period": 3909578, + "thread": 20 + } + } + ], + "AU12BSb7vFyCLHKxoHqJEQThoNYVrg2goqfkjN3jS3WvT8VbvL9oF": [ + { + "amount": "53.558864641", + "slot": { + "period": 151247, + "thread": 22 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 243200, + "thread": 23 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 337763, + "thread": 14 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 527013, + "thread": 16 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 794068, + "thread": 4 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 957610, + "thread": 22 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1104521, + "thread": 23 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1260735, + "thread": 27 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1375630, + "thread": 31 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1513979, + "thread": 22 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1756641, + "thread": 9 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 1827070, + "thread": 30 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2131996, + "thread": 15 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2207626, + "thread": 28 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2428205, + "thread": 16 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2489892, + "thread": 4 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2749213, + "thread": 16 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2946452, + "thread": 10 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 2989857, + "thread": 1 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 3166969, + "thread": 26 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 3420691, + "thread": 16 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 3471978, + "thread": 9 + } + }, + { + "amount": "53.558864641", + "slot": { + "period": 3661421, + "thread": 15 + } + }, + { + "amount": "53.558864642", + "slot": { + "period": 3939490, + "thread": 30 + } + } + ], + "AU12BSw9CjBj4upSZwmwaPdUsrz4MvzFAr38nEEsmMLfqH4eeGyfq": [ + { + "amount": "70.527003986", + "slot": { + "period": 96776, + "thread": 4 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 289082, + "thread": 16 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 428510, + "thread": 4 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 509339, + "thread": 16 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 688632, + "thread": 8 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 829347, + "thread": 19 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1138824, + "thread": 11 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1262279, + "thread": 30 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1454323, + "thread": 3 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1634971, + "thread": 19 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1695996, + "thread": 19 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 1923135, + "thread": 4 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2031941, + "thread": 23 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2207361, + "thread": 5 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2385626, + "thread": 30 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2542159, + "thread": 17 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2706742, + "thread": 1 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2798151, + "thread": 24 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 2986839, + "thread": 25 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 3162593, + "thread": 15 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 3344754, + "thread": 27 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 3525468, + "thread": 30 + } + }, + { + "amount": "70.527003986", + "slot": { + "period": 3698745, + "thread": 27 + } + }, + { + "amount": "70.527003989", + "slot": { + "period": 3923298, + "thread": 22 + } + } + ], + "AU12BTB1svvU4AisXxCtYWyhtAjjKwwUQYWozw63ajAPCzE1756jZ": [ + { + "amount": "166.115224930", + "slot": { + "period": 132327, + "thread": 20 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 314989, + "thread": 31 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 396023, + "thread": 25 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 562941, + "thread": 18 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 740074, + "thread": 6 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 868180, + "thread": 4 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1016190, + "thread": 22 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1171998, + "thread": 1 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1445846, + "thread": 23 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1560013, + "thread": 11 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1746710, + "thread": 24 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1897231, + "thread": 30 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 1987181, + "thread": 16 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 2188503, + "thread": 15 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 2404122, + "thread": 24 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 2579810, + "thread": 24 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 2687578, + "thread": 2 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 2860415, + "thread": 10 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 3038167, + "thread": 26 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 3132841, + "thread": 18 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 3296891, + "thread": 17 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 3521392, + "thread": 3 + } + }, + { + "amount": "166.115224930", + "slot": { + "period": 3707619, + "thread": 6 + } + }, + { + "amount": "166.115224936", + "slot": { + "period": 3889360, + "thread": 19 + } + } + ], + "AU12BTHqcZRVWBaSPb1FVqTSY4qscHKhAJoyCEfYtpYFm5Jneoa96": [ + { + "amount": "155.481346388", + "slot": { + "period": 140756, + "thread": 20 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 205056, + "thread": 28 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 488846, + "thread": 15 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 632968, + "thread": 15 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 774057, + "thread": 26 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 962250, + "thread": 6 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1078496, + "thread": 23 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1158795, + "thread": 19 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1412523, + "thread": 22 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1599720, + "thread": 1 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1796761, + "thread": 16 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 1941109, + "thread": 28 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2074992, + "thread": 22 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2283853, + "thread": 31 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2353361, + "thread": 22 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2522498, + "thread": 0 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2773701, + "thread": 19 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 2837479, + "thread": 17 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 3040954, + "thread": 8 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 3217369, + "thread": 27 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 3448553, + "thread": 2 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 3610580, + "thread": 4 + } + }, + { + "amount": "155.481346388", + "slot": { + "period": 3667016, + "thread": 24 + } + }, + { + "amount": "155.481346398", + "slot": { + "period": 3831754, + "thread": 16 + } + } + ], + "AU12BUyzctEKkRDEyeqaJcbYhZHk3ggHagHnu2RYNUTjPPsX5o6oF": [ + { + "amount": "272.757436149", + "slot": { + "period": 140195, + "thread": 14 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 260549, + "thread": 6 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 409113, + "thread": 24 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 649543, + "thread": 6 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 712701, + "thread": 26 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 977440, + "thread": 22 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1003783, + "thread": 17 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1245767, + "thread": 20 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1366220, + "thread": 4 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1639216, + "thread": 11 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1654075, + "thread": 19 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1814435, + "thread": 19 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 1996713, + "thread": 29 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 2248878, + "thread": 8 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 2443233, + "thread": 8 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 2472764, + "thread": 27 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 2753443, + "thread": 1 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 2926208, + "thread": 3 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 3116568, + "thread": 23 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 3202066, + "thread": 9 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 3351431, + "thread": 4 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 3617393, + "thread": 15 + } + }, + { + "amount": "272.757436149", + "slot": { + "period": 3689972, + "thread": 19 + } + }, + { + "amount": "272.757436143", + "slot": { + "period": 3874247, + "thread": 30 + } + } + ], + "AU12BVsHcswQSJR2dKejeGXXkWsaWN6Gur4F1naQ9kV9WAyKEz1eL": [ + { + "amount": "350.824501333", + "slot": { + "period": 17593, + "thread": 18 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 184661, + "thread": 21 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 356952, + "thread": 12 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 610265, + "thread": 25 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 771098, + "thread": 23 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 909953, + "thread": 24 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1129790, + "thread": 7 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1233393, + "thread": 12 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1459373, + "thread": 5 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1636805, + "thread": 16 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1754083, + "thread": 23 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 1883563, + "thread": 29 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2046306, + "thread": 24 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2173843, + "thread": 23 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2396554, + "thread": 20 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2566627, + "thread": 30 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2756355, + "thread": 13 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2918946, + "thread": 29 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 2987410, + "thread": 29 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 3167743, + "thread": 4 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 3333571, + "thread": 17 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 3486601, + "thread": 17 + } + }, + { + "amount": "350.824501333", + "slot": { + "period": 3725000, + "thread": 31 + } + }, + { + "amount": "350.824501326", + "slot": { + "period": 3854786, + "thread": 13 + } + } + ], + "AU12BVwffnTB6EPnkpeBVJmLeYd28ZFuaT5AaLdyD7UFrXGB4xL3A": [ + { + "amount": "236.992629024", + "slot": { + "period": 46758, + "thread": 15 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 243796, + "thread": 23 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 476972, + "thread": 15 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 498715, + "thread": 2 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 680405, + "thread": 28 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 875066, + "thread": 29 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 996661, + "thread": 30 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 1198400, + "thread": 17 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 1468240, + "thread": 14 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 1489013, + "thread": 14 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 1728498, + "thread": 20 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 1854195, + "thread": 16 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2092045, + "thread": 10 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2250609, + "thread": 0 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2436637, + "thread": 16 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2594351, + "thread": 12 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2699297, + "thread": 16 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2886574, + "thread": 13 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 2999314, + "thread": 17 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 3160893, + "thread": 28 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 3380075, + "thread": 19 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 3563459, + "thread": 24 + } + }, + { + "amount": "236.992629024", + "slot": { + "period": 3639511, + "thread": 23 + } + }, + { + "amount": "236.992629026", + "slot": { + "period": 3936604, + "thread": 16 + } + } + ], + "AU12BWXeb3Y1pcLAm5vnudAcZUVoVzrv9T7tU6vKErBgw4HRQYR2F": [ + { + "amount": "62.003245108", + "slot": { + "period": 87178, + "thread": 10 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 247593, + "thread": 27 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 433845, + "thread": 2 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 507894, + "thread": 19 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 677764, + "thread": 9 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 851696, + "thread": 19 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1140933, + "thread": 10 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1280178, + "thread": 24 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1344526, + "thread": 4 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1501605, + "thread": 3 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1745991, + "thread": 27 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 1902937, + "thread": 19 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2142623, + "thread": 14 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2280102, + "thread": 17 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2430155, + "thread": 23 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2477309, + "thread": 30 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2711704, + "thread": 20 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 2814742, + "thread": 4 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 3089539, + "thread": 27 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 3200935, + "thread": 26 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 3370529, + "thread": 30 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 3581427, + "thread": 11 + } + }, + { + "amount": "62.003245108", + "slot": { + "period": 3742453, + "thread": 4 + } + }, + { + "amount": "62.003245105", + "slot": { + "period": 3940027, + "thread": 23 + } + } + ], + "AU12BXm4tXWckGVaKSREBQRQQCza4Lk6VAcPnS3K2YuDkt5R8BgZs": [ + { + "amount": "139.779940897", + "slot": { + "period": 119166, + "thread": 8 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 210451, + "thread": 19 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 487027, + "thread": 1 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 591943, + "thread": 4 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 819483, + "thread": 2 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 878279, + "thread": 0 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1014164, + "thread": 14 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1284026, + "thread": 15 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1436408, + "thread": 17 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1528558, + "thread": 7 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1756106, + "thread": 20 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 1930087, + "thread": 8 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2093587, + "thread": 5 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2186282, + "thread": 28 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2322526, + "thread": 29 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2513294, + "thread": 18 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2756353, + "thread": 17 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 2838987, + "thread": 10 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 3029367, + "thread": 24 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 3267082, + "thread": 26 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 3396757, + "thread": 4 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 3573713, + "thread": 22 + } + }, + { + "amount": "139.779940897", + "slot": { + "period": 3634777, + "thread": 21 + } + }, + { + "amount": "139.779940899", + "slot": { + "period": 3935008, + "thread": 14 + } + } + ], + "AU12BXv55CbF7zCmqkr5ySCCMti2YhUksJS37btcwitKLcuUt29uX": [ + { + "amount": "55.450248930", + "slot": { + "period": 147734, + "thread": 27 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 227812, + "thread": 7 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 354497, + "thread": 20 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 542145, + "thread": 12 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 783532, + "thread": 28 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 848920, + "thread": 10 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1123943, + "thread": 29 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1227050, + "thread": 5 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1367360, + "thread": 15 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1621626, + "thread": 28 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1658941, + "thread": 22 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1869650, + "thread": 6 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 1993902, + "thread": 9 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 2245868, + "thread": 2 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 2303376, + "thread": 31 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 2494234, + "thread": 17 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 2746385, + "thread": 8 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 2805096, + "thread": 19 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 3091365, + "thread": 25 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 3147407, + "thread": 22 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 3383613, + "thread": 18 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 3460618, + "thread": 30 + } + }, + { + "amount": "55.450248930", + "slot": { + "period": 3756420, + "thread": 18 + } + }, + { + "amount": "55.450248920", + "slot": { + "period": 3813792, + "thread": 19 + } + } + ], + "AU12BYGQeWsbJ4b3g97U7jWD3m7ABFhA8H5TpRsmLwj5kEL3dE5Yv": [ + { + "amount": "229.146459678", + "slot": { + "period": 149025, + "thread": 0 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 313375, + "thread": 24 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 389793, + "thread": 22 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 493870, + "thread": 20 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 720282, + "thread": 3 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 957345, + "thread": 1 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1023648, + "thread": 14 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1189301, + "thread": 11 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1443446, + "thread": 19 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1552380, + "thread": 5 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1705854, + "thread": 1 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 1973151, + "thread": 0 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2033033, + "thread": 2 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2258013, + "thread": 26 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2311581, + "thread": 0 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2496165, + "thread": 24 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2631945, + "thread": 2 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 2812653, + "thread": 8 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 3019048, + "thread": 5 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 3136688, + "thread": 4 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 3357989, + "thread": 12 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 3465228, + "thread": 4 + } + }, + { + "amount": "229.146459678", + "slot": { + "period": 3653962, + "thread": 1 + } + }, + { + "amount": "229.146459675", + "slot": { + "period": 3939881, + "thread": 30 + } + } + ], + "AU12BZ9LPkLhvzapb5siJmT44gtERrPv6GzrEvXc6Seh7kbTFtv6B": [ + { + "amount": "470.082621267", + "slot": { + "period": 110515, + "thread": 30 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 250632, + "thread": 3 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 329736, + "thread": 25 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 575372, + "thread": 27 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 736734, + "thread": 11 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 926112, + "thread": 20 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1145353, + "thread": 26 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1261556, + "thread": 20 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1339585, + "thread": 10 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1530737, + "thread": 31 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1803740, + "thread": 17 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 1923100, + "thread": 27 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2031454, + "thread": 25 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2213817, + "thread": 16 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2361303, + "thread": 12 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2599446, + "thread": 19 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2672492, + "thread": 14 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2870174, + "thread": 5 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 2993241, + "thread": 15 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 3189279, + "thread": 2 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 3363754, + "thread": 9 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 3506845, + "thread": 1 + } + }, + { + "amount": "470.082621267", + "slot": { + "period": 3735600, + "thread": 10 + } + }, + { + "amount": "470.082621269", + "slot": { + "period": 3896647, + "thread": 7 + } + } + ], + "AU12BaF1D1RNLe1154m46UfAhPiE2yiuMeEBbo6gZHgDFR9q3VzKU": [ + { + "amount": "132.171272046", + "slot": { + "period": 32697, + "thread": 14 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 245092, + "thread": 14 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 384671, + "thread": 1 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 630406, + "thread": 16 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 733688, + "thread": 17 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 879129, + "thread": 11 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1135916, + "thread": 9 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1225787, + "thread": 25 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1329637, + "thread": 16 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1479670, + "thread": 22 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1807757, + "thread": 17 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 1862351, + "thread": 14 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2136907, + "thread": 7 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2167312, + "thread": 9 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2451007, + "thread": 1 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2511731, + "thread": 15 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2692276, + "thread": 12 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 2807328, + "thread": 2 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3095454, + "thread": 19 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3254391, + "thread": 9 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3306746, + "thread": 9 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3455073, + "thread": 12 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3643423, + "thread": 16 + } + }, + { + "amount": "132.171272046", + "slot": { + "period": 3789383, + "thread": 0 + } + } + ], + "AU12BagpqiR2Knv6oc8fjStZP57TmKchw6eGxr53NztfgVTgqSPrC": [ + { + "amount": "137.824416664", + "slot": { + "period": 61729, + "thread": 15 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 323549, + "thread": 20 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 421636, + "thread": 12 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 494891, + "thread": 12 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 808975, + "thread": 14 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 844564, + "thread": 6 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1002020, + "thread": 13 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1287526, + "thread": 3 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1400106, + "thread": 14 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1617493, + "thread": 10 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1807958, + "thread": 9 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 1958688, + "thread": 10 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2043147, + "thread": 22 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2164386, + "thread": 4 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2384358, + "thread": 4 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2503809, + "thread": 1 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2634924, + "thread": 9 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2792354, + "thread": 0 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 2995932, + "thread": 13 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 3155761, + "thread": 23 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 3348400, + "thread": 9 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 3460141, + "thread": 25 + } + }, + { + "amount": "137.824416664", + "slot": { + "period": 3722521, + "thread": 14 + } + }, + { + "amount": "137.824416656", + "slot": { + "period": 3810880, + "thread": 3 + } + } + ], + "AU12BbTEsWu22dvUvDEycZQwcHCsVrtur5jkNg8rYKZrpYBGFgxC2": [ + { + "amount": "59.406845857", + "slot": { + "period": 162330, + "thread": 12 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 176903, + "thread": 14 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 450852, + "thread": 29 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 551134, + "thread": 30 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 800169, + "thread": 20 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 978732, + "thread": 13 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1117201, + "thread": 10 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1276981, + "thread": 16 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1467701, + "thread": 14 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1605364, + "thread": 4 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1758327, + "thread": 3 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 1829212, + "thread": 3 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2112075, + "thread": 12 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2233335, + "thread": 22 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2410778, + "thread": 28 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2549471, + "thread": 7 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2642004, + "thread": 28 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 2800020, + "thread": 18 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 3072835, + "thread": 13 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 3149009, + "thread": 7 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 3331741, + "thread": 27 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 3450966, + "thread": 4 + } + }, + { + "amount": "59.406845857", + "slot": { + "period": 3628132, + "thread": 2 + } + }, + { + "amount": "59.406845852", + "slot": { + "period": 3799381, + "thread": 27 + } + } + ], + "AU12BcNgaHh1EyNv7aV9MRWAVXGsxQRsxazHvnm1ZwUdPdZxDvi5E": [ + { + "amount": "630.805988655", + "slot": { + "period": 122299, + "thread": 6 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 219828, + "thread": 2 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 468152, + "thread": 29 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 609396, + "thread": 16 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 710461, + "thread": 0 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 922149, + "thread": 23 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1006572, + "thread": 16 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1226074, + "thread": 21 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1329892, + "thread": 20 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1511527, + "thread": 14 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1661510, + "thread": 1 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 1974765, + "thread": 9 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2139338, + "thread": 13 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2252377, + "thread": 6 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2313474, + "thread": 10 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2584198, + "thread": 16 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2679459, + "thread": 11 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 2879378, + "thread": 9 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 3084063, + "thread": 15 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 3185386, + "thread": 0 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 3331375, + "thread": 19 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 3457470, + "thread": 23 + } + }, + { + "amount": "630.805988655", + "slot": { + "period": 3744463, + "thread": 16 + } + }, + { + "amount": "630.805988644", + "slot": { + "period": 3937913, + "thread": 22 + } + } + ], + "AU12BcgSY4PXmABBK16xWT7vsKHUrr57goqtTnqfvaVei4p17YgSQ": [ + { + "amount": "164.065106695", + "slot": { + "period": 100139, + "thread": 12 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 269947, + "thread": 10 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 425246, + "thread": 28 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 625338, + "thread": 7 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 790825, + "thread": 23 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 937684, + "thread": 2 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1080521, + "thread": 29 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1195080, + "thread": 23 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1471056, + "thread": 9 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1549105, + "thread": 6 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1688827, + "thread": 8 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 1939033, + "thread": 12 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2011364, + "thread": 15 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2286239, + "thread": 4 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2357838, + "thread": 8 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2587860, + "thread": 16 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2720074, + "thread": 18 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 2948365, + "thread": 28 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 3070054, + "thread": 28 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 3227642, + "thread": 15 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 3415765, + "thread": 25 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 3595048, + "thread": 29 + } + }, + { + "amount": "164.065106695", + "slot": { + "period": 3712670, + "thread": 14 + } + }, + { + "amount": "164.065106702", + "slot": { + "period": 3875480, + "thread": 0 + } + } + ], + "AU12Bd3cD8Acs8hZtSfNjRLTeU1K3NDPBCG6TbZV85WH76FoheVDS": [ + { + "amount": "189.696883083", + "slot": { + "period": 152726, + "thread": 6 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 313174, + "thread": 22 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 405952, + "thread": 29 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 542999, + "thread": 13 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 667743, + "thread": 22 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 854851, + "thread": 7 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1079946, + "thread": 9 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1173880, + "thread": 30 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1381856, + "thread": 21 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1492202, + "thread": 3 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1795547, + "thread": 18 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 1882618, + "thread": 31 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2079892, + "thread": 11 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2289324, + "thread": 8 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2411865, + "thread": 21 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2599556, + "thread": 18 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2698376, + "thread": 6 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 2848194, + "thread": 10 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 3002385, + "thread": 23 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 3168276, + "thread": 12 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 3301618, + "thread": 1 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 3606764, + "thread": 23 + } + }, + { + "amount": "189.696883083", + "slot": { + "period": 3778095, + "thread": 9 + } + }, + { + "amount": "189.696883093", + "slot": { + "period": 3832169, + "thread": 8 + } + } + ], + "AU12BeiiJEUY5kdu3SKzTnAP1cMtZcgadpirfiwibZ9YkZFZQWD9k": [ + { + "amount": "334.545123434", + "slot": { + "period": 59891, + "thread": 6 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 315888, + "thread": 13 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 475707, + "thread": 10 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 513955, + "thread": 28 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 653640, + "thread": 4 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 825610, + "thread": 14 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 997284, + "thread": 12 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 1312523, + "thread": 25 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 1327290, + "thread": 7 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 1623910, + "thread": 22 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 1684974, + "thread": 10 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 1841036, + "thread": 5 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2125450, + "thread": 4 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2286750, + "thread": 28 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2308715, + "thread": 21 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2583739, + "thread": 8 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2773357, + "thread": 23 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2904592, + "thread": 11 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 2999321, + "thread": 24 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 3211956, + "thread": 9 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 3363666, + "thread": 27 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 3602091, + "thread": 26 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 3672893, + "thread": 18 + } + }, + { + "amount": "334.545123434", + "slot": { + "period": 3818371, + "thread": 7 + } + } + ], + "AU12Bg7Wfmg2PToiwP1DiueK2XekBN83tYXdwbcBhfXRREi9qtNyT": [ + { + "amount": "55.621666434", + "slot": { + "period": 41774, + "thread": 7 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 169325, + "thread": 11 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 401484, + "thread": 19 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 604475, + "thread": 15 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 746509, + "thread": 28 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 848505, + "thread": 23 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1148883, + "thread": 7 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1255501, + "thread": 24 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1463257, + "thread": 21 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1590984, + "thread": 26 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1803522, + "thread": 22 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 1920618, + "thread": 26 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2020133, + "thread": 29 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2261466, + "thread": 4 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2391020, + "thread": 15 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2509514, + "thread": 18 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2661214, + "thread": 2 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2918102, + "thread": 28 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 2989317, + "thread": 11 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 3214103, + "thread": 4 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 3414035, + "thread": 16 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 3530843, + "thread": 26 + } + }, + { + "amount": "55.621666434", + "slot": { + "period": 3714560, + "thread": 1 + } + }, + { + "amount": "55.621666446", + "slot": { + "period": 3841550, + "thread": 6 + } + } + ], + "AU12BhkjhwKGrbNd7czYweoVCLMrzj3fyyUGLyk6dHemhK6EBeShZ": [ + { + "amount": "104.961031278", + "slot": { + "period": 110669, + "thread": 7 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 302156, + "thread": 10 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 396679, + "thread": 15 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 588640, + "thread": 28 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 673338, + "thread": 1 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 954438, + "thread": 19 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1122470, + "thread": 29 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1180567, + "thread": 13 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1402481, + "thread": 17 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1531342, + "thread": 11 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1717079, + "thread": 5 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 1966023, + "thread": 11 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2089350, + "thread": 25 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2239651, + "thread": 3 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2454596, + "thread": 0 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2547839, + "thread": 26 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2778901, + "thread": 13 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 2941340, + "thread": 15 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 3084801, + "thread": 1 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 3274565, + "thread": 20 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 3291872, + "thread": 31 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 3613208, + "thread": 24 + } + }, + { + "amount": "104.961031278", + "slot": { + "period": 3740544, + "thread": 20 + } + }, + { + "amount": "104.961031290", + "slot": { + "period": 3831239, + "thread": 5 + } + } + ], + "AU12Bjf1BLQ4CqnVBrutREedcyxj3d2ZeoqLv9W8Xp7MmgQc5MLZo": [ + { + "amount": "85.057624470", + "slot": { + "period": 86065, + "thread": 2 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 186938, + "thread": 1 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 348519, + "thread": 8 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 625350, + "thread": 26 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 662067, + "thread": 14 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 920617, + "thread": 16 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1036383, + "thread": 18 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1294430, + "thread": 24 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1447686, + "thread": 29 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1573767, + "thread": 0 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1712236, + "thread": 5 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 1870989, + "thread": 31 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2064761, + "thread": 27 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2282015, + "thread": 18 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2339474, + "thread": 15 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2614201, + "thread": 10 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2717497, + "thread": 31 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 2953575, + "thread": 31 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 3030680, + "thread": 4 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 3202692, + "thread": 25 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 3293959, + "thread": 3 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 3616199, + "thread": 20 + } + }, + { + "amount": "85.057624470", + "slot": { + "period": 3663528, + "thread": 0 + } + }, + { + "amount": "85.057624469", + "slot": { + "period": 3882601, + "thread": 30 + } + } + ], + "AU12BkJ9g9jLA15UepN21k3Yms9MGW77p4DFqVTy7zgMD3M4jjHpu": [ + { + "amount": "95.978506779", + "slot": { + "period": 126923, + "thread": 9 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 252289, + "thread": 15 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 456834, + "thread": 14 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 512472, + "thread": 9 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 773241, + "thread": 27 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 981667, + "thread": 11 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1134074, + "thread": 15 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1158667, + "thread": 21 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1326432, + "thread": 29 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1635400, + "thread": 24 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1716186, + "thread": 14 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 1897735, + "thread": 21 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2111020, + "thread": 31 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2234107, + "thread": 21 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2343509, + "thread": 6 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2499499, + "thread": 28 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2681522, + "thread": 13 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2888178, + "thread": 13 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 2979989, + "thread": 23 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 3126852, + "thread": 9 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 3421699, + "thread": 5 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 3576243, + "thread": 0 + } + }, + { + "amount": "95.978506779", + "slot": { + "period": 3680860, + "thread": 27 + } + }, + { + "amount": "95.978506775", + "slot": { + "period": 3852297, + "thread": 17 + } + } + ], + "AU12BkLE3RkCWv8BScJXUCr3jtRs1oLmE9vsNc5nCD5HBcBHy2dGD": [ + { + "amount": "105.535800671", + "slot": { + "period": 162028, + "thread": 4 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 267843, + "thread": 20 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 450393, + "thread": 18 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 636843, + "thread": 15 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 690458, + "thread": 11 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 842852, + "thread": 3 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1044101, + "thread": 15 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1264669, + "thread": 22 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1376237, + "thread": 9 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1529764, + "thread": 23 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1805790, + "thread": 8 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 1916812, + "thread": 30 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2115353, + "thread": 20 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2260524, + "thread": 19 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2313606, + "thread": 13 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2619345, + "thread": 21 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2728357, + "thread": 8 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2870907, + "thread": 12 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 2979362, + "thread": 4 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 3276769, + "thread": 10 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 3385194, + "thread": 8 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 3589920, + "thread": 28 + } + }, + { + "amount": "105.535800671", + "slot": { + "period": 3650037, + "thread": 21 + } + }, + { + "amount": "105.535800669", + "slot": { + "period": 3913500, + "thread": 8 + } + } + ], + "AU12BkhmgDCdDdpRomU5k4VvHsiMFYF5YDb5XmgZqNSxeVJ8utHmP": [ + { + "amount": "187.284856323", + "slot": { + "period": 148523, + "thread": 30 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 293975, + "thread": 25 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 342694, + "thread": 8 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 641137, + "thread": 26 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 758444, + "thread": 31 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 928275, + "thread": 28 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1004603, + "thread": 26 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1220686, + "thread": 20 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1398686, + "thread": 5 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1634450, + "thread": 6 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1681130, + "thread": 19 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 1898300, + "thread": 10 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2098110, + "thread": 24 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2258910, + "thread": 19 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2396033, + "thread": 19 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2510701, + "thread": 17 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2742937, + "thread": 16 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 2819413, + "thread": 22 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 3094005, + "thread": 29 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 3288137, + "thread": 12 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 3353962, + "thread": 9 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 3520644, + "thread": 18 + } + }, + { + "amount": "187.284856323", + "slot": { + "period": 3655053, + "thread": 8 + } + }, + { + "amount": "187.284856314", + "slot": { + "period": 3914086, + "thread": 29 + } + } + ], + "AU12BmSd3QTfnRg45dfwcpsYPML4czwPsieydUsgZcxhhmdoJewXb": [ + { + "amount": "420.702049434", + "slot": { + "period": 41290, + "thread": 21 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 201469, + "thread": 26 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 394347, + "thread": 26 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 612716, + "thread": 24 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 673917, + "thread": 12 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 892771, + "thread": 12 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1025970, + "thread": 9 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1185533, + "thread": 19 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1439638, + "thread": 22 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1645418, + "thread": 14 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1780257, + "thread": 3 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 1879153, + "thread": 5 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2096272, + "thread": 26 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2149323, + "thread": 0 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2350843, + "thread": 15 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2604412, + "thread": 31 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2738940, + "thread": 18 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 2904155, + "thread": 25 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 3058618, + "thread": 17 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 3254632, + "thread": 25 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 3347582, + "thread": 12 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 3597856, + "thread": 2 + } + }, + { + "amount": "420.702049434", + "slot": { + "period": 3635367, + "thread": 14 + } + }, + { + "amount": "420.702049441", + "slot": { + "period": 3877458, + "thread": 10 + } + } + ], + "AU12BnFQuv7YDEqhkphunvkonjtGVfRpShforRV75jDPcnVPyd6J9": [ + { + "amount": "128.641660482", + "slot": { + "period": 126015, + "thread": 10 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 256246, + "thread": 4 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 469461, + "thread": 4 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 592883, + "thread": 10 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 820016, + "thread": 9 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 930227, + "thread": 7 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 982821, + "thread": 3 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 1154670, + "thread": 6 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 1369383, + "thread": 27 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 1492327, + "thread": 22 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 1798875, + "thread": 5 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 1819735, + "thread": 28 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2023413, + "thread": 3 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2184825, + "thread": 7 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2392774, + "thread": 15 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2548858, + "thread": 8 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2711023, + "thread": 15 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 2937377, + "thread": 31 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 3006228, + "thread": 0 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 3243380, + "thread": 1 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 3378129, + "thread": 17 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 3539961, + "thread": 15 + } + }, + { + "amount": "128.641660482", + "slot": { + "period": 3755562, + "thread": 2 + } + }, + { + "amount": "128.641660481", + "slot": { + "period": 3814767, + "thread": 3 + } + } + ], + "AU12BpU76cPbWhPJBLgiNqRNDMACh9XbTCndu2TdiEsbxKMZ5AWwc": [ + { + "amount": "148.358426991", + "slot": { + "period": 143272, + "thread": 3 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 187547, + "thread": 30 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 396706, + "thread": 16 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 532207, + "thread": 31 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 707262, + "thread": 9 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 825981, + "thread": 12 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1098163, + "thread": 13 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1184221, + "thread": 21 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1324058, + "thread": 4 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1599113, + "thread": 0 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1750670, + "thread": 27 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 1860827, + "thread": 29 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2067247, + "thread": 25 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2294378, + "thread": 13 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2347189, + "thread": 2 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2466612, + "thread": 0 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2731307, + "thread": 18 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2880698, + "thread": 19 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 2985431, + "thread": 17 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 3203295, + "thread": 19 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 3426230, + "thread": 16 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 3544463, + "thread": 13 + } + }, + { + "amount": "148.358426991", + "slot": { + "period": 3631628, + "thread": 28 + } + }, + { + "amount": "148.358426999", + "slot": { + "period": 3873025, + "thread": 22 + } + } + ], + "AU12BpuftYK1tGSHukHBtnwyDQZuBhdKx3j7DdWoiV9xbRS1ykTck": [ + { + "amount": "114.147125573", + "slot": { + "period": 135862, + "thread": 3 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 276868, + "thread": 5 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 353749, + "thread": 15 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 516553, + "thread": 8 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 669446, + "thread": 5 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 953343, + "thread": 21 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1084181, + "thread": 26 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1165981, + "thread": 7 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1459209, + "thread": 28 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1548559, + "thread": 22 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1704298, + "thread": 2 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 1850747, + "thread": 2 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2043577, + "thread": 16 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2163257, + "thread": 14 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2306887, + "thread": 3 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2573412, + "thread": 0 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2629898, + "thread": 18 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 2894559, + "thread": 11 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3103754, + "thread": 13 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3223524, + "thread": 18 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3341497, + "thread": 16 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3465936, + "thread": 28 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3723270, + "thread": 22 + } + }, + { + "amount": "114.147125573", + "slot": { + "period": 3857048, + "thread": 12 + } + } + ], + "AU12BqRsC9iqTkkXGXitzJsT3Dbktf2wHoWLHBp7vzP5CGMrJ8otY": [ + { + "amount": "133.095079223", + "slot": { + "period": 15438, + "thread": 16 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 280827, + "thread": 11 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 397379, + "thread": 24 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 545365, + "thread": 18 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 810198, + "thread": 21 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 868000, + "thread": 24 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1056374, + "thread": 30 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1224719, + "thread": 16 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1400423, + "thread": 4 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1516988, + "thread": 2 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1753141, + "thread": 11 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 1903244, + "thread": 1 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2014516, + "thread": 7 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2260615, + "thread": 24 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2391401, + "thread": 4 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2524793, + "thread": 0 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2697451, + "thread": 13 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 2921080, + "thread": 2 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 3019776, + "thread": 28 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 3186589, + "thread": 8 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 3302102, + "thread": 5 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 3546180, + "thread": 3 + } + }, + { + "amount": "133.095079223", + "slot": { + "period": 3677012, + "thread": 17 + } + }, + { + "amount": "133.095079226", + "slot": { + "period": 3823544, + "thread": 3 + } + } + ], + "AU12BsAbEUVN7e4L4vA1CBQG7CMb3R2tYCmoFh941u28vxA5us27s": [ + { + "amount": "121.780978618", + "slot": { + "period": 17972, + "thread": 5 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 243774, + "thread": 18 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 480495, + "thread": 2 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 545445, + "thread": 10 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 798067, + "thread": 25 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 892834, + "thread": 21 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 993982, + "thread": 21 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 1296995, + "thread": 18 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 1450335, + "thread": 25 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 1487795, + "thread": 20 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 1715435, + "thread": 23 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 1838886, + "thread": 14 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2121195, + "thread": 29 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2231072, + "thread": 30 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2350907, + "thread": 5 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2598593, + "thread": 24 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2695799, + "thread": 20 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 2944476, + "thread": 4 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 3078589, + "thread": 4 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 3233713, + "thread": 27 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 3428683, + "thread": 27 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 3466598, + "thread": 16 + } + }, + { + "amount": "121.780978618", + "slot": { + "period": 3621990, + "thread": 30 + } + }, + { + "amount": "121.780978625", + "slot": { + "period": 3869449, + "thread": 13 + } + } + ], + "AU12BspYnSQsHoGgXhjmzRWzSTYa7HTE8xDdGMFKHu6qiWNqVWMuU": [ + { + "amount": "234.037645547", + "slot": { + "period": 19089, + "thread": 7 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 303811, + "thread": 22 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 417592, + "thread": 8 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 512649, + "thread": 5 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 785966, + "thread": 27 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 957632, + "thread": 4 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1040350, + "thread": 3 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1196752, + "thread": 29 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1441697, + "thread": 0 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1606173, + "thread": 4 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1766011, + "thread": 12 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 1905847, + "thread": 28 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2034537, + "thread": 27 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2148752, + "thread": 25 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2417866, + "thread": 12 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2580642, + "thread": 23 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2752735, + "thread": 16 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 2842566, + "thread": 9 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 3022575, + "thread": 1 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 3176002, + "thread": 19 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 3427769, + "thread": 28 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 3495959, + "thread": 31 + } + }, + { + "amount": "234.037645547", + "slot": { + "period": 3702026, + "thread": 25 + } + }, + { + "amount": "234.037645540", + "slot": { + "period": 3787199, + "thread": 23 + } + } + ], + "AU12Bt4vy91kb4s1D8R1gA1FqLxynBMCrqU1rDEkzy6v7WvkHf1Fk": [ + { + "amount": "138.213472527", + "slot": { + "period": 87116, + "thread": 19 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 251576, + "thread": 26 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 341971, + "thread": 19 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 637954, + "thread": 31 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 676335, + "thread": 7 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 937696, + "thread": 0 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1040564, + "thread": 29 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1260599, + "thread": 0 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1441000, + "thread": 16 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1645978, + "thread": 26 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1661691, + "thread": 30 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 1872080, + "thread": 16 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2136044, + "thread": 23 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2238883, + "thread": 10 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2454522, + "thread": 13 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2514909, + "thread": 22 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2658992, + "thread": 18 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 2924492, + "thread": 4 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 3004006, + "thread": 2 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 3174981, + "thread": 13 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 3414506, + "thread": 25 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 3511549, + "thread": 16 + } + }, + { + "amount": "138.213472527", + "slot": { + "period": 3673867, + "thread": 11 + } + }, + { + "amount": "138.213472532", + "slot": { + "period": 3866966, + "thread": 8 + } + } + ], + "AU12BtymBEcBiMspdSoB7Uf8ENQEV4cWgMH3Jgz84asFD1NcgEb6a": [ + { + "amount": "54.205067633", + "slot": { + "period": 83815, + "thread": 23 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 323398, + "thread": 0 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 434531, + "thread": 9 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 505422, + "thread": 6 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 710514, + "thread": 19 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 918621, + "thread": 5 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1012871, + "thread": 17 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1312777, + "thread": 15 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1454757, + "thread": 11 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1514685, + "thread": 17 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1808364, + "thread": 27 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 1836192, + "thread": 0 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2114315, + "thread": 7 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2276459, + "thread": 18 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2350002, + "thread": 7 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2537525, + "thread": 14 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2759453, + "thread": 1 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 2926235, + "thread": 5 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 3069621, + "thread": 10 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 3227578, + "thread": 24 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 3393603, + "thread": 19 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 3542715, + "thread": 13 + } + }, + { + "amount": "54.205067633", + "slot": { + "period": 3682674, + "thread": 4 + } + }, + { + "amount": "54.205067643", + "slot": { + "period": 3942848, + "thread": 11 + } + } + ], + "AU12BudNsJSLvVbXMvoaKVjSDpkHdhGWVB4pD7jQ523kCLNmQEFUE": [ + { + "amount": "85.042544435", + "slot": { + "period": 25416, + "thread": 24 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 289463, + "thread": 29 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 346789, + "thread": 15 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 540032, + "thread": 14 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 810658, + "thread": 16 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 943957, + "thread": 31 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1119494, + "thread": 21 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1177521, + "thread": 13 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1452112, + "thread": 25 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1577911, + "thread": 6 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1768107, + "thread": 31 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 1937875, + "thread": 14 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2111413, + "thread": 30 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2180699, + "thread": 9 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2366785, + "thread": 8 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2566021, + "thread": 28 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2658719, + "thread": 25 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 2839837, + "thread": 5 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 3110361, + "thread": 6 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 3140694, + "thread": 5 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 3432929, + "thread": 24 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 3511709, + "thread": 3 + } + }, + { + "amount": "85.042544435", + "slot": { + "period": 3681292, + "thread": 19 + } + }, + { + "amount": "85.042544440", + "slot": { + "period": 3932888, + "thread": 6 + } + } + ], + "AU12BwsQk1yc9zNEWRX2hKzih2iPPPsxa25rasZBuNiKVs39TA511": [ + { + "amount": "121.228828782", + "slot": { + "period": 134022, + "thread": 27 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 218593, + "thread": 21 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 455630, + "thread": 1 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 581406, + "thread": 16 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 671182, + "thread": 2 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 859005, + "thread": 0 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1024361, + "thread": 8 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1282670, + "thread": 4 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1338550, + "thread": 15 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1541395, + "thread": 30 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1745366, + "thread": 3 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 1837831, + "thread": 10 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2090087, + "thread": 13 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2245556, + "thread": 23 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2460044, + "thread": 28 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2575146, + "thread": 18 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2638723, + "thread": 27 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2951105, + "thread": 3 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 2964490, + "thread": 26 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 3134801, + "thread": 31 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 3402388, + "thread": 3 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 3512881, + "thread": 21 + } + }, + { + "amount": "121.228828782", + "slot": { + "period": 3748009, + "thread": 7 + } + }, + { + "amount": "121.228828791", + "slot": { + "period": 3862626, + "thread": 23 + } + } + ], + "AU12Bx8UQRsuRcYjLCLYWwKb4X3PAJsYq6SPHBVavBXnZyh42UmVb": [ + { + "amount": "210.348801364", + "slot": { + "period": 158274, + "thread": 29 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 187888, + "thread": 29 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 393781, + "thread": 22 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 624121, + "thread": 27 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 682411, + "thread": 6 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 950456, + "thread": 23 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1027699, + "thread": 0 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1224020, + "thread": 16 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1452464, + "thread": 30 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1548438, + "thread": 30 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1659883, + "thread": 3 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 1824528, + "thread": 1 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2073404, + "thread": 0 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2241924, + "thread": 6 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2411392, + "thread": 29 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2500729, + "thread": 29 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2694952, + "thread": 17 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2928326, + "thread": 24 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 2978568, + "thread": 8 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 3164314, + "thread": 24 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 3348303, + "thread": 27 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 3590210, + "thread": 7 + } + }, + { + "amount": "210.348801364", + "slot": { + "period": 3771066, + "thread": 15 + } + }, + { + "amount": "210.348801365", + "slot": { + "period": 3831976, + "thread": 31 + } + } + ], + "AU12BxcWJBzcQxCnYmPzsVoNPfWWoi6Z2LdkMX5XDyReFqGhdT6Ek": [ + { + "amount": "298.226882832", + "slot": { + "period": 156056, + "thread": 13 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 191967, + "thread": 2 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 334365, + "thread": 3 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 568963, + "thread": 0 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 791830, + "thread": 12 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 870567, + "thread": 19 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1136090, + "thread": 11 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1201175, + "thread": 3 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1356115, + "thread": 30 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1501299, + "thread": 25 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1785557, + "thread": 30 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 1909630, + "thread": 3 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2085763, + "thread": 9 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2256729, + "thread": 1 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2380960, + "thread": 15 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2500383, + "thread": 2 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2724468, + "thread": 18 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 2894809, + "thread": 14 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 3012999, + "thread": 7 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 3259798, + "thread": 9 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 3352304, + "thread": 8 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 3466108, + "thread": 30 + } + }, + { + "amount": "298.226882832", + "slot": { + "period": 3729884, + "thread": 13 + } + }, + { + "amount": "298.226882825", + "slot": { + "period": 3917944, + "thread": 8 + } + } + ], + "AU12ByMUs8srUMbvi6qvRJfoMgJ8HV7WYRupYRV1t5QD7wSagCk2k": [ + { + "amount": "144.894598880", + "slot": { + "period": 149836, + "thread": 7 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 267987, + "thread": 4 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 470658, + "thread": 16 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 562773, + "thread": 4 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 714572, + "thread": 23 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 929757, + "thread": 9 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1020175, + "thread": 27 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1165561, + "thread": 0 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1332761, + "thread": 27 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1508025, + "thread": 27 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1751932, + "thread": 16 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 1838569, + "thread": 22 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2108118, + "thread": 9 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2238555, + "thread": 13 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2358638, + "thread": 16 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2614024, + "thread": 25 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2745124, + "thread": 10 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 2904893, + "thread": 10 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 3098936, + "thread": 1 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 3242374, + "thread": 6 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 3440787, + "thread": 1 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 3467688, + "thread": 10 + } + }, + { + "amount": "144.894598880", + "slot": { + "period": 3745798, + "thread": 28 + } + }, + { + "amount": "144.894598891", + "slot": { + "period": 3937850, + "thread": 13 + } + } + ], + "AU12ByMiGaCmEUX4ohbihzAsevMzUCtTdYrErCQsixsShfYfpx1BQ": [ + { + "amount": "100.876817865", + "slot": { + "period": 120569, + "thread": 10 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 214003, + "thread": 28 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 349003, + "thread": 1 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 625862, + "thread": 6 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 746412, + "thread": 22 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 920816, + "thread": 25 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1017669, + "thread": 31 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1214740, + "thread": 20 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1452680, + "thread": 21 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1617313, + "thread": 13 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1789954, + "thread": 10 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 1963752, + "thread": 12 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2088707, + "thread": 23 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2260806, + "thread": 8 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2329122, + "thread": 3 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2497661, + "thread": 14 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2716810, + "thread": 11 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2938899, + "thread": 20 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 2959471, + "thread": 5 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 3239019, + "thread": 21 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 3404115, + "thread": 22 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 3468030, + "thread": 19 + } + }, + { + "amount": "100.876817865", + "slot": { + "period": 3712068, + "thread": 6 + } + }, + { + "amount": "100.876817868", + "slot": { + "period": 3921569, + "thread": 10 + } + } + ], + "AU12C19taJ4U1hJMcihPkV4kDMB92zC5X2A8xreauF1Fz4UvFA4nz": [ + { + "amount": "82.443089864", + "slot": { + "period": 52240, + "thread": 24 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 295662, + "thread": 28 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 471213, + "thread": 9 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 512829, + "thread": 23 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 686279, + "thread": 3 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 893636, + "thread": 3 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1042645, + "thread": 17 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1285992, + "thread": 18 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1342146, + "thread": 24 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1578212, + "thread": 16 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1746090, + "thread": 13 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 1930794, + "thread": 8 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2048113, + "thread": 18 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2209862, + "thread": 15 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2436824, + "thread": 30 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2473424, + "thread": 4 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2663729, + "thread": 26 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 2917380, + "thread": 19 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 3014301, + "thread": 28 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 3233904, + "thread": 15 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 3331589, + "thread": 2 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 3602117, + "thread": 15 + } + }, + { + "amount": "82.443089864", + "slot": { + "period": 3742488, + "thread": 1 + } + }, + { + "amount": "82.443089856", + "slot": { + "period": 3794912, + "thread": 19 + } + } + ], + "AU12C1WWuGAg1q6HBkkhR7AokcA72s5wodziXSs2kgWykA53K7p1B": [ + { + "amount": "364.612221975", + "slot": { + "period": 158453, + "thread": 26 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 211443, + "thread": 2 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 446490, + "thread": 15 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 593311, + "thread": 21 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 699098, + "thread": 12 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 826395, + "thread": 22 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1148637, + "thread": 0 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1297180, + "thread": 11 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1426083, + "thread": 15 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1484390, + "thread": 22 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1657800, + "thread": 20 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 1913823, + "thread": 27 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2004846, + "thread": 12 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2155538, + "thread": 14 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2457656, + "thread": 8 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2544028, + "thread": 21 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2743159, + "thread": 30 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 2923886, + "thread": 4 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 3116763, + "thread": 25 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 3168204, + "thread": 23 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 3345468, + "thread": 18 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 3558402, + "thread": 28 + } + }, + { + "amount": "364.612221975", + "slot": { + "period": 3765810, + "thread": 12 + } + }, + { + "amount": "364.612221978", + "slot": { + "period": 3869140, + "thread": 26 + } + } + ], + "AU12C1X8gCBDyF9wTjmhkHFdgsi2Xa9TAPwbBueNJW4fbKxvrCHFw": [ + { + "amount": "149.658357956", + "slot": { + "period": 141550, + "thread": 8 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 242573, + "thread": 3 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 479838, + "thread": 14 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 632559, + "thread": 31 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 793212, + "thread": 21 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 933627, + "thread": 3 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1094803, + "thread": 18 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1196625, + "thread": 29 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1328142, + "thread": 27 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1554861, + "thread": 9 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1759598, + "thread": 9 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 1970572, + "thread": 19 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2096978, + "thread": 7 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2148265, + "thread": 8 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2406296, + "thread": 26 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2584452, + "thread": 19 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2671021, + "thread": 26 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 2811586, + "thread": 13 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 3114080, + "thread": 13 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 3183432, + "thread": 12 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 3447121, + "thread": 28 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 3495573, + "thread": 30 + } + }, + { + "amount": "149.658357956", + "slot": { + "period": 3650766, + "thread": 11 + } + }, + { + "amount": "149.658357947", + "slot": { + "period": 3898184, + "thread": 9 + } + } + ], + "AU12C3TsewVeDcb2qninFh4SVHRvWgz617dBXrpqjcY2ozBJBSNp": [ + { + "amount": "279.433572153", + "slot": { + "period": 57218, + "thread": 31 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 253262, + "thread": 10 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 474810, + "thread": 2 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 606841, + "thread": 4 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 771267, + "thread": 29 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 905185, + "thread": 22 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1041525, + "thread": 5 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1179236, + "thread": 15 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1453435, + "thread": 18 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1610458, + "thread": 23 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1692884, + "thread": 12 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 1951415, + "thread": 25 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2060432, + "thread": 20 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2168153, + "thread": 20 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2333607, + "thread": 9 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2544304, + "thread": 22 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2770399, + "thread": 13 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 2837390, + "thread": 9 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 3119527, + "thread": 17 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 3157925, + "thread": 0 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 3401150, + "thread": 1 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 3567796, + "thread": 1 + } + }, + { + "amount": "279.433572153", + "slot": { + "period": 3657836, + "thread": 10 + } + }, + { + "amount": "279.433572144", + "slot": { + "period": 3891478, + "thread": 11 + } + } + ], + "AU12C3czkKXC1ZNy2o1E2S5Q3mVx5B3LUGA9VcChhbpmh21MnwV9e": [ + { + "amount": "644.026625655", + "slot": { + "period": 30076, + "thread": 12 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 229985, + "thread": 1 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 350313, + "thread": 10 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 562149, + "thread": 22 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 802931, + "thread": 22 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 889647, + "thread": 2 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1145608, + "thread": 4 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1237135, + "thread": 25 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1411145, + "thread": 9 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1632828, + "thread": 30 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1653049, + "thread": 24 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 1970529, + "thread": 11 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2100669, + "thread": 5 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2223659, + "thread": 27 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2401349, + "thread": 4 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2496676, + "thread": 31 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2738552, + "thread": 11 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 2934741, + "thread": 28 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 3052629, + "thread": 21 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 3246158, + "thread": 31 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 3294551, + "thread": 14 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 3537946, + "thread": 1 + } + }, + { + "amount": "644.026625655", + "slot": { + "period": 3701156, + "thread": 29 + } + }, + { + "amount": "644.026625645", + "slot": { + "period": 3837455, + "thread": 22 + } + } + ], + "AU12C4dZc7p5WFQc9ZZsaRqjjoKq1A6jgCwxVBVjLtJXzF8yLZmTU": [ + { + "amount": "324.583015955", + "slot": { + "period": 135454, + "thread": 4 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 296556, + "thread": 28 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 446072, + "thread": 28 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 573299, + "thread": 10 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 714430, + "thread": 14 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 906672, + "thread": 13 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1122000, + "thread": 24 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1183892, + "thread": 16 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1413796, + "thread": 25 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1552710, + "thread": 26 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1665154, + "thread": 19 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 1854980, + "thread": 3 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2135105, + "thread": 26 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2186731, + "thread": 4 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2365782, + "thread": 16 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2488890, + "thread": 25 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2778925, + "thread": 0 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 2940153, + "thread": 25 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 3107059, + "thread": 27 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 3276170, + "thread": 9 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 3339302, + "thread": 27 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 3517780, + "thread": 4 + } + }, + { + "amount": "324.583015955", + "slot": { + "period": 3644539, + "thread": 0 + } + }, + { + "amount": "324.583015962", + "slot": { + "period": 3891674, + "thread": 9 + } + } + ], + "AU12C4fgDdY75CvbsDKfVHnTM2DeCwfuKhzYNAqgiZ6KapcXcRiNp": [ + { + "amount": "72.081767739", + "slot": { + "period": 161963, + "thread": 1 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 183647, + "thread": 31 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 469213, + "thread": 0 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 638895, + "thread": 16 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 659873, + "thread": 15 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 945896, + "thread": 25 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1051299, + "thread": 22 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1249859, + "thread": 14 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1363496, + "thread": 16 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1564203, + "thread": 14 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1791949, + "thread": 18 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1858583, + "thread": 31 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 1991220, + "thread": 9 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 2156575, + "thread": 14 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 2351799, + "thread": 7 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 2618373, + "thread": 13 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 2736322, + "thread": 27 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 2814820, + "thread": 19 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 3055432, + "thread": 19 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 3177774, + "thread": 6 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 3376395, + "thread": 17 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 3507952, + "thread": 27 + } + }, + { + "amount": "72.081767739", + "slot": { + "period": 3680257, + "thread": 20 + } + }, + { + "amount": "72.081767742", + "slot": { + "period": 3828497, + "thread": 18 + } + } + ], + "AU12C4zAe8M6xDRC7buogt74BufoPCRieaCFsazjeNLJFBeJvNLn8": [ + { + "amount": "171.331618282", + "slot": { + "period": 115189, + "thread": 11 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 181176, + "thread": 29 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 450701, + "thread": 13 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 519485, + "thread": 19 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 695669, + "thread": 16 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 829373, + "thread": 1 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1136847, + "thread": 17 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1159918, + "thread": 25 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1396723, + "thread": 11 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1640851, + "thread": 15 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1786388, + "thread": 3 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 1910306, + "thread": 19 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2051107, + "thread": 5 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2241816, + "thread": 3 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2312874, + "thread": 26 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2538455, + "thread": 0 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2737650, + "thread": 18 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2934184, + "thread": 26 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 2980728, + "thread": 26 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 3206012, + "thread": 2 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 3364511, + "thread": 7 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 3613012, + "thread": 16 + } + }, + { + "amount": "171.331618282", + "slot": { + "period": 3644902, + "thread": 8 + } + }, + { + "amount": "171.331618278", + "slot": { + "period": 3849846, + "thread": 10 + } + } + ], + "AU12C5K5Ez3RKnPXREztrZT7AGbYSHsPAVLWRQqEGqfPAk684evH9": [ + { + "amount": "294.475810217", + "slot": { + "period": 63354, + "thread": 26 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 260323, + "thread": 24 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 375950, + "thread": 4 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 530827, + "thread": 18 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 810148, + "thread": 31 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 871867, + "thread": 1 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1004700, + "thread": 15 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1277465, + "thread": 5 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1340956, + "thread": 18 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1577011, + "thread": 15 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1762084, + "thread": 9 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 1885372, + "thread": 31 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2055956, + "thread": 7 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2249574, + "thread": 16 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2384813, + "thread": 3 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2535829, + "thread": 13 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2736341, + "thread": 29 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 2877764, + "thread": 16 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 3120770, + "thread": 4 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 3284611, + "thread": 28 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 3345947, + "thread": 0 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 3452919, + "thread": 2 + } + }, + { + "amount": "294.475810217", + "slot": { + "period": 3630187, + "thread": 14 + } + }, + { + "amount": "294.475810212", + "slot": { + "period": 3856325, + "thread": 17 + } + } + ], + "AU12C5wQMvLMD8kWznWawrUJcyudWig5odPcDxgNXU73H4uxhbvv2": [ + { + "amount": "729.166666667", + "slot": { + "period": 14937, + "thread": 22 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 290596, + "thread": 16 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 389183, + "thread": 6 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 607107, + "thread": 25 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 721029, + "thread": 11 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 935683, + "thread": 26 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1098713, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1316122, + "thread": 6 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1436531, + "thread": 16 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1572186, + "thread": 0 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1729838, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1863170, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2065372, + "thread": 28 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2265084, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2442658, + "thread": 14 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2476059, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2705648, + "thread": 9 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2802068, + "thread": 14 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3100384, + "thread": 21 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3138661, + "thread": 28 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3328443, + "thread": 27 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3617821, + "thread": 1 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3704098, + "thread": 8 + } + }, + { + "amount": "729.166666659", + "slot": { + "period": 3930192, + "thread": 7 + } + } + ], + "AU12C6uhGJNhixydiDuiX3atTZ9NBhpiJP1VS1zSiVi4dyAUQh64n": [ + { + "amount": "144.964481552", + "slot": { + "period": 93908, + "thread": 23 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 227627, + "thread": 7 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 458070, + "thread": 28 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 501969, + "thread": 27 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 663313, + "thread": 10 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 907023, + "thread": 29 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1134487, + "thread": 3 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1308068, + "thread": 29 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1370982, + "thread": 0 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1541093, + "thread": 10 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1723375, + "thread": 26 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 1834472, + "thread": 7 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2086662, + "thread": 22 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2191442, + "thread": 12 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2402901, + "thread": 3 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2611536, + "thread": 27 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2763066, + "thread": 10 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2938035, + "thread": 20 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 2959289, + "thread": 24 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 3175848, + "thread": 2 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 3364997, + "thread": 22 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 3614425, + "thread": 16 + } + }, + { + "amount": "144.964481552", + "slot": { + "period": 3718681, + "thread": 22 + } + }, + { + "amount": "144.964481542", + "slot": { + "period": 3934457, + "thread": 1 + } + } + ], + "AU12C7E8VuUZkR8vCXfFNeMtCyz4uRFT5SJZK5CmWcwLuXJRLUqik": [ + { + "amount": "123.037582217", + "slot": { + "period": 31408, + "thread": 25 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 212692, + "thread": 18 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 409664, + "thread": 16 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 516741, + "thread": 10 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 743922, + "thread": 28 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 888965, + "thread": 11 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1084164, + "thread": 11 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1265621, + "thread": 5 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1353474, + "thread": 31 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1568067, + "thread": 28 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1798518, + "thread": 4 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 1823294, + "thread": 9 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2083665, + "thread": 6 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2174154, + "thread": 13 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2447508, + "thread": 18 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2476548, + "thread": 26 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2627694, + "thread": 10 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 2837349, + "thread": 17 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 3098552, + "thread": 15 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 3262871, + "thread": 26 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 3383763, + "thread": 24 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 3450989, + "thread": 8 + } + }, + { + "amount": "123.037582217", + "slot": { + "period": 3694591, + "thread": 8 + } + }, + { + "amount": "123.037582213", + "slot": { + "period": 3847151, + "thread": 18 + } + } + ], + "AU12CAcrDG7ey66bw3ZBqX6KT2PvWMFFYfzFiBH5oDvvCu3QrWBMw": [ + { + "amount": "325.033073794", + "slot": { + "period": 36327, + "thread": 8 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 257068, + "thread": 25 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 356734, + "thread": 8 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 530847, + "thread": 0 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 668425, + "thread": 5 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 955648, + "thread": 26 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1090330, + "thread": 21 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1258355, + "thread": 13 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1326527, + "thread": 3 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1560578, + "thread": 21 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1686262, + "thread": 1 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 1938862, + "thread": 24 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2058535, + "thread": 2 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2168320, + "thread": 8 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2413696, + "thread": 1 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2537604, + "thread": 21 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2649858, + "thread": 20 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 2828355, + "thread": 15 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 3004368, + "thread": 17 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 3182174, + "thread": 22 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 3362932, + "thread": 3 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 3508233, + "thread": 12 + } + }, + { + "amount": "325.033073794", + "slot": { + "period": 3660135, + "thread": 3 + } + }, + { + "amount": "325.033073791", + "slot": { + "period": 3841558, + "thread": 31 + } + } + ], + "AU12CBCxMHE5Qa7ZjhrSQS7vviZ3AfE3k5sqgwrUee5hoVGxN5XA8": [ + { + "amount": "277.552697776", + "slot": { + "period": 13879, + "thread": 2 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 185685, + "thread": 24 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 484264, + "thread": 29 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 591442, + "thread": 28 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 682472, + "thread": 15 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 920532, + "thread": 20 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1029529, + "thread": 7 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1296967, + "thread": 5 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1366673, + "thread": 0 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1531373, + "thread": 20 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1685773, + "thread": 31 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 1884312, + "thread": 24 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2016539, + "thread": 18 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2247989, + "thread": 3 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2390102, + "thread": 17 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2505568, + "thread": 1 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2710259, + "thread": 2 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2824758, + "thread": 8 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 2980658, + "thread": 26 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 3211315, + "thread": 21 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 3326933, + "thread": 10 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 3550774, + "thread": 29 + } + }, + { + "amount": "277.552697776", + "slot": { + "period": 3772631, + "thread": 3 + } + }, + { + "amount": "277.552697779", + "slot": { + "period": 3916722, + "thread": 14 + } + } + ], + "AU12CCgsziCemCJnViXCZCp4F5rp8FUwRfyRZ8pH39oHfnhLWdp3X": [ + { + "amount": "221.563224636", + "slot": { + "period": 73287, + "thread": 28 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 270224, + "thread": 28 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 453542, + "thread": 25 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 590117, + "thread": 13 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 753313, + "thread": 2 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 828437, + "thread": 8 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1031842, + "thread": 11 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1186787, + "thread": 20 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1354523, + "thread": 13 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1631341, + "thread": 13 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1762815, + "thread": 27 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 1850169, + "thread": 12 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2077626, + "thread": 19 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2285813, + "thread": 20 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2460973, + "thread": 9 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2537811, + "thread": 30 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2689315, + "thread": 18 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2830067, + "thread": 5 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 2966905, + "thread": 13 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 3225207, + "thread": 8 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 3344878, + "thread": 10 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 3547008, + "thread": 31 + } + }, + { + "amount": "221.563224636", + "slot": { + "period": 3761643, + "thread": 19 + } + }, + { + "amount": "221.563224643", + "slot": { + "period": 3838312, + "thread": 0 + } + } + ], + "AU12CD53gB9rUNwMpCzCQXiZJTm5nz31oxUPkPzx475g8VFRZs4AL": [ + { + "amount": "133.486330712", + "slot": { + "period": 24537, + "thread": 17 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 209012, + "thread": 10 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 434447, + "thread": 11 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 650521, + "thread": 6 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 773361, + "thread": 8 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 874342, + "thread": 14 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1147031, + "thread": 27 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1277089, + "thread": 30 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1475367, + "thread": 24 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1645626, + "thread": 0 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1770053, + "thread": 2 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 1910945, + "thread": 0 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2023675, + "thread": 18 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2167180, + "thread": 15 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2356533, + "thread": 22 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2467445, + "thread": 8 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2634041, + "thread": 24 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 2914049, + "thread": 10 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 3086305, + "thread": 21 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 3276033, + "thread": 6 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 3434225, + "thread": 17 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 3602708, + "thread": 7 + } + }, + { + "amount": "133.486330712", + "slot": { + "period": 3692841, + "thread": 15 + } + }, + { + "amount": "133.486330716", + "slot": { + "period": 3903614, + "thread": 23 + } + } + ], + "AU12CDXCV2wAbwWFM1sP67opVJdb7VYnwXDky9adwiDgZpjiv6u1U": [ + { + "amount": "121.479677580", + "slot": { + "period": 64015, + "thread": 27 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 299968, + "thread": 14 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 476944, + "thread": 30 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 598743, + "thread": 30 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 721074, + "thread": 9 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 924865, + "thread": 20 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1057361, + "thread": 10 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1293917, + "thread": 30 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1324732, + "thread": 21 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1514313, + "thread": 18 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1688449, + "thread": 14 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 1849034, + "thread": 14 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2065222, + "thread": 0 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2264201, + "thread": 27 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2459946, + "thread": 1 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2538397, + "thread": 4 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2721094, + "thread": 13 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2819224, + "thread": 7 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 2981468, + "thread": 6 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 3284488, + "thread": 9 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 3297428, + "thread": 3 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 3548391, + "thread": 15 + } + }, + { + "amount": "121.479677580", + "slot": { + "period": 3710102, + "thread": 10 + } + }, + { + "amount": "121.479677587", + "slot": { + "period": 3810120, + "thread": 11 + } + } + ], + "AU12CE7sBWMFA9JR2mzGkifAfo6GTwKMW5MsWnZ9zdZLy4FnEKL88": [ + { + "amount": "593.804448864", + "slot": { + "period": 52606, + "thread": 7 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 285793, + "thread": 12 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 445768, + "thread": 31 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 652793, + "thread": 31 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 704765, + "thread": 25 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 878400, + "thread": 23 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1135404, + "thread": 8 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1301140, + "thread": 2 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1349105, + "thread": 16 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1541741, + "thread": 10 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1678874, + "thread": 11 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 1922283, + "thread": 20 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2135375, + "thread": 31 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2182493, + "thread": 7 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2383077, + "thread": 28 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2505328, + "thread": 28 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2714629, + "thread": 27 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 2873804, + "thread": 29 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 3074593, + "thread": 12 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 3190012, + "thread": 25 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 3301250, + "thread": 4 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 3560996, + "thread": 24 + } + }, + { + "amount": "593.804448864", + "slot": { + "period": 3720079, + "thread": 31 + } + }, + { + "amount": "593.804448872", + "slot": { + "period": 3799644, + "thread": 11 + } + } + ], + "AU12CEEjCb3quW2H4ekJ2fNR6dQmJvwbWjyqgND7i9sdqXs6WzadH": [ + { + "amount": "76.008983632", + "slot": { + "period": 46695, + "thread": 11 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 237584, + "thread": 26 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 474806, + "thread": 6 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 511376, + "thread": 26 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 775183, + "thread": 0 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 931987, + "thread": 3 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1025461, + "thread": 22 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1288410, + "thread": 29 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1391620, + "thread": 25 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1642093, + "thread": 21 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1746550, + "thread": 29 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 1930721, + "thread": 20 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2087417, + "thread": 4 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2214969, + "thread": 21 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2454423, + "thread": 28 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2621659, + "thread": 1 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2678953, + "thread": 20 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 2945774, + "thread": 15 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 3014507, + "thread": 26 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 3230592, + "thread": 14 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 3341415, + "thread": 18 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 3581003, + "thread": 15 + } + }, + { + "amount": "76.008983632", + "slot": { + "period": 3639491, + "thread": 26 + } + }, + { + "amount": "76.008983636", + "slot": { + "period": 3911737, + "thread": 25 + } + } + ], + "AU12CEU4soWckmFutaC1onU6pjXnaNgm1kmirEoqBmpNvYGsozBEV": [ + { + "amount": "65.230405048", + "slot": { + "period": 72477, + "thread": 2 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 282678, + "thread": 18 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 465573, + "thread": 10 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 517858, + "thread": 0 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 806669, + "thread": 29 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 941021, + "thread": 16 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1121103, + "thread": 15 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1234429, + "thread": 18 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1405614, + "thread": 24 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1625523, + "thread": 11 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1794941, + "thread": 17 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 1810896, + "thread": 0 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2122198, + "thread": 17 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2230349, + "thread": 25 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2388994, + "thread": 2 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2556105, + "thread": 7 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2739998, + "thread": 31 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 2862585, + "thread": 6 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 3088352, + "thread": 9 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 3144951, + "thread": 11 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 3417131, + "thread": 27 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 3470676, + "thread": 2 + } + }, + { + "amount": "65.230405048", + "slot": { + "period": 3705299, + "thread": 23 + } + }, + { + "amount": "65.230405056", + "slot": { + "period": 3788010, + "thread": 21 + } + } + ], + "AU12CFbGocrcpgaVMviCh2UvXwag8ifdWzULhjjSXqDe7biAoUcaA": [ + { + "amount": "277.533985149", + "slot": { + "period": 94366, + "thread": 9 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 319222, + "thread": 23 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 426501, + "thread": 22 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 596013, + "thread": 30 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 808446, + "thread": 23 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 887767, + "thread": 4 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1049308, + "thread": 25 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1181290, + "thread": 5 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1361310, + "thread": 25 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1583530, + "thread": 12 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1675636, + "thread": 14 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 1937300, + "thread": 4 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2104694, + "thread": 7 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2294591, + "thread": 23 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2347696, + "thread": 18 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2477545, + "thread": 0 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2715947, + "thread": 12 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2804198, + "thread": 30 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 2956692, + "thread": 17 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 3213027, + "thread": 0 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 3352538, + "thread": 26 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 3500048, + "thread": 10 + } + }, + { + "amount": "277.533985149", + "slot": { + "period": 3622200, + "thread": 2 + } + }, + { + "amount": "277.533985146", + "slot": { + "period": 3927092, + "thread": 31 + } + } + ], + "AU12CGpoYh4vvF8yEP8Wh36uVEhmarjG3S7SGM428GenQsoZdztwL": [ + { + "amount": "120.292187569", + "slot": { + "period": 62063, + "thread": 16 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 182166, + "thread": 25 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 341431, + "thread": 5 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 576875, + "thread": 4 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 682614, + "thread": 26 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 910221, + "thread": 28 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1014269, + "thread": 20 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1201165, + "thread": 18 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1458268, + "thread": 17 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1596129, + "thread": 15 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1712349, + "thread": 8 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1851050, + "thread": 3 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 1990038, + "thread": 17 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2286090, + "thread": 0 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2440741, + "thread": 11 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2533294, + "thread": 4 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2722311, + "thread": 4 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2796397, + "thread": 17 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 2974672, + "thread": 27 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 3224300, + "thread": 21 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 3386316, + "thread": 17 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 3534540, + "thread": 15 + } + }, + { + "amount": "120.292187569", + "slot": { + "period": 3633220, + "thread": 2 + } + }, + { + "amount": "120.292187562", + "slot": { + "period": 3798785, + "thread": 26 + } + } + ], + "AU12CHGXZapU3Fu98dnAE1RvCmSzTDPW1h5yLHaAHeo2YrhhbRXme": [ + { + "amount": "130.787293174", + "slot": { + "period": 149229, + "thread": 20 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 231053, + "thread": 24 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 458367, + "thread": 3 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 603637, + "thread": 31 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 718437, + "thread": 9 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 978695, + "thread": 3 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1036058, + "thread": 30 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1159470, + "thread": 30 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1443401, + "thread": 11 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1512358, + "thread": 17 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1782795, + "thread": 8 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 1848820, + "thread": 25 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2013162, + "thread": 6 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2147421, + "thread": 14 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2333404, + "thread": 26 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2492449, + "thread": 31 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2697877, + "thread": 1 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 2947032, + "thread": 11 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 3030205, + "thread": 4 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 3253688, + "thread": 16 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 3323203, + "thread": 27 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 3478546, + "thread": 26 + } + }, + { + "amount": "130.787293174", + "slot": { + "period": 3647273, + "thread": 22 + } + }, + { + "amount": "130.787293162", + "slot": { + "period": 3916696, + "thread": 21 + } + } + ], + "AU12CHd4knPCsu2tWxYobVgV9phHx5j5nXqP38HwhkpmRS6hMQaiR": [ + { + "amount": "165.199377402", + "slot": { + "period": 86521, + "thread": 18 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 175377, + "thread": 21 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 421209, + "thread": 12 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 492238, + "thread": 22 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 725919, + "thread": 24 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 950717, + "thread": 0 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1121669, + "thread": 7 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1291212, + "thread": 5 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1457348, + "thread": 7 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1516056, + "thread": 9 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1694814, + "thread": 10 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 1935912, + "thread": 13 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2070540, + "thread": 14 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2152941, + "thread": 13 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2398549, + "thread": 2 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2551210, + "thread": 21 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2773725, + "thread": 1 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 2891685, + "thread": 12 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 3021069, + "thread": 0 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 3244736, + "thread": 28 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 3442323, + "thread": 28 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 3581027, + "thread": 4 + } + }, + { + "amount": "165.199377402", + "slot": { + "period": 3760439, + "thread": 16 + } + }, + { + "amount": "165.199377390", + "slot": { + "period": 3944708, + "thread": 26 + } + } + ], + "AU12CKVyD5fkEHnbVRHDEyWLDFD1FLRHQg7bXfhzw1Kor1ZwhL95B": [ + { + "amount": "328.510409328", + "slot": { + "period": 26894, + "thread": 13 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 278511, + "thread": 9 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 463727, + "thread": 24 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 501873, + "thread": 7 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 712322, + "thread": 31 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 912679, + "thread": 2 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1108911, + "thread": 30 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1158419, + "thread": 23 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1370479, + "thread": 17 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1578973, + "thread": 12 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1766776, + "thread": 18 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 1815289, + "thread": 1 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2136576, + "thread": 26 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2212452, + "thread": 17 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2399961, + "thread": 9 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2470734, + "thread": 3 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2710921, + "thread": 2 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 2841969, + "thread": 0 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 3030604, + "thread": 28 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 3252133, + "thread": 6 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 3436352, + "thread": 1 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 3497356, + "thread": 29 + } + }, + { + "amount": "328.510409328", + "slot": { + "period": 3745327, + "thread": 15 + } + }, + { + "amount": "328.510409338", + "slot": { + "period": 3865942, + "thread": 1 + } + } + ], + "AU12CKYC9rj7js5TTimFN5Vpdou3qktxBAtkFFExeyTBiRcBTmpBF": [ + { + "amount": "130.202163193", + "slot": { + "period": 118709, + "thread": 10 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 270130, + "thread": 8 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 452174, + "thread": 4 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 532971, + "thread": 19 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 717382, + "thread": 7 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 895137, + "thread": 4 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1016749, + "thread": 16 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1224974, + "thread": 29 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1347455, + "thread": 30 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1591269, + "thread": 18 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1647703, + "thread": 12 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 1966696, + "thread": 1 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2046702, + "thread": 6 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2181274, + "thread": 6 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2373141, + "thread": 20 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2472697, + "thread": 8 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2707946, + "thread": 28 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 2952162, + "thread": 2 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 3012181, + "thread": 23 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 3285473, + "thread": 6 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 3351516, + "thread": 22 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 3523885, + "thread": 25 + } + }, + { + "amount": "130.202163193", + "slot": { + "period": 3712454, + "thread": 9 + } + }, + { + "amount": "130.202163188", + "slot": { + "period": 3864821, + "thread": 20 + } + } + ], + "AU12CKYXidLR1NcgpBbyz2zbDPj71rv8vbxUJfChYYceu7DcmdZhT": [ + { + "amount": "111.116031796", + "slot": { + "period": 163504, + "thread": 3 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 202756, + "thread": 16 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 374768, + "thread": 26 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 549455, + "thread": 7 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 680813, + "thread": 0 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 959213, + "thread": 30 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1008070, + "thread": 12 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1196186, + "thread": 11 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1336760, + "thread": 6 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1570024, + "thread": 23 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1765696, + "thread": 21 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 1810553, + "thread": 31 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2017943, + "thread": 14 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2144847, + "thread": 16 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2390295, + "thread": 21 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2549862, + "thread": 18 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2685123, + "thread": 5 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 2907098, + "thread": 22 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 3106285, + "thread": 8 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 3185598, + "thread": 13 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 3388544, + "thread": 17 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 3607654, + "thread": 23 + } + }, + { + "amount": "111.116031796", + "slot": { + "period": 3730442, + "thread": 11 + } + }, + { + "amount": "111.116031793", + "slot": { + "period": 3826213, + "thread": 15 + } + } + ], + "AU12CL3BzSm67RLvqtG9p5jvqgDT6My8P9soqwRJ3zkg8PmEpxTHc": [ + { + "amount": "355.580764616", + "slot": { + "period": 51069, + "thread": 29 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 292480, + "thread": 13 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 369751, + "thread": 21 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 598096, + "thread": 4 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 753748, + "thread": 30 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 946812, + "thread": 13 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1033374, + "thread": 15 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1159867, + "thread": 12 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1418353, + "thread": 13 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1489190, + "thread": 3 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1683852, + "thread": 20 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 1934865, + "thread": 21 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2063416, + "thread": 13 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2214507, + "thread": 12 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2333687, + "thread": 5 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2499831, + "thread": 2 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2777022, + "thread": 18 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 2876293, + "thread": 6 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 3121019, + "thread": 29 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 3286603, + "thread": 9 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 3448525, + "thread": 31 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 3609229, + "thread": 28 + } + }, + { + "amount": "355.580764616", + "slot": { + "period": 3763068, + "thread": 23 + } + }, + { + "amount": "355.580764617", + "slot": { + "period": 3877092, + "thread": 10 + } + } + ], + "AU12CLeVxxdXAFgDFWtQygwekUtv6DakgM1FZrhGt3t7ax1TK7hd4": [ + { + "amount": "134.781375614", + "slot": { + "period": 95417, + "thread": 14 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 207336, + "thread": 4 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 433277, + "thread": 17 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 588917, + "thread": 5 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 804301, + "thread": 19 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 925072, + "thread": 4 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1096820, + "thread": 30 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1162942, + "thread": 28 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1438825, + "thread": 29 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1518314, + "thread": 16 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1769686, + "thread": 12 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 1909735, + "thread": 24 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2072043, + "thread": 28 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2261273, + "thread": 15 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2304687, + "thread": 4 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2588960, + "thread": 8 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2746151, + "thread": 17 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2914861, + "thread": 29 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 2985835, + "thread": 12 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 3242881, + "thread": 14 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 3330612, + "thread": 22 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 3535019, + "thread": 18 + } + }, + { + "amount": "134.781375614", + "slot": { + "period": 3760016, + "thread": 30 + } + }, + { + "amount": "134.781375609", + "slot": { + "period": 3801916, + "thread": 5 + } + } + ], + "AU12CLgeZyWeqJDYuTE9mt4uR8HBtZ4noXe2d939kyeXD4F8NUSHY": [ + { + "amount": "122.735047457", + "slot": { + "period": 11503, + "thread": 9 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 194596, + "thread": 22 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 367440, + "thread": 1 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 548040, + "thread": 13 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 725445, + "thread": 28 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 920613, + "thread": 24 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1122840, + "thread": 29 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1207461, + "thread": 3 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1454880, + "thread": 9 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1614907, + "thread": 10 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1725751, + "thread": 30 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 1948045, + "thread": 11 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2009757, + "thread": 13 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2144484, + "thread": 18 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2306619, + "thread": 5 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2481781, + "thread": 29 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2789749, + "thread": 10 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 2871792, + "thread": 10 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 3031406, + "thread": 11 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 3149941, + "thread": 28 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 3300547, + "thread": 26 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 3608305, + "thread": 8 + } + }, + { + "amount": "122.735047457", + "slot": { + "period": 3766156, + "thread": 5 + } + }, + { + "amount": "122.735047463", + "slot": { + "period": 3917966, + "thread": 31 + } + } + ], + "AU12CLhUMFUQn9avpnf3epB7RHDXdozQ1VLEuzaqb4qtvZ2rBqMa": [ + { + "amount": "124.186943412", + "slot": { + "period": 48485, + "thread": 0 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 277961, + "thread": 14 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 439557, + "thread": 17 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 568471, + "thread": 11 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 802411, + "thread": 26 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 870058, + "thread": 22 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 986847, + "thread": 27 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 1194034, + "thread": 3 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 1419116, + "thread": 19 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 1560701, + "thread": 3 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 1665864, + "thread": 4 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 1929794, + "thread": 30 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2106885, + "thread": 19 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2177775, + "thread": 7 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2308458, + "thread": 14 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2600746, + "thread": 31 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2743962, + "thread": 23 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2823673, + "thread": 31 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 2964791, + "thread": 12 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 3123775, + "thread": 18 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 3437904, + "thread": 13 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 3498819, + "thread": 13 + } + }, + { + "amount": "124.186943412", + "slot": { + "period": 3778011, + "thread": 4 + } + }, + { + "amount": "124.186943407", + "slot": { + "period": 3788670, + "thread": 14 + } + } + ], + "AU12CMC2GuntBy5pAJHTH7NZZp9Ms1m4KFSqBoaVdG2KhMhiKFXK7": [ + { + "amount": "85.489601693", + "slot": { + "period": 41110, + "thread": 0 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 281131, + "thread": 8 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 467823, + "thread": 29 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 570981, + "thread": 9 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 751662, + "thread": 15 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 879843, + "thread": 29 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1136128, + "thread": 28 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1264764, + "thread": 5 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1393946, + "thread": 30 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1632702, + "thread": 16 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1780579, + "thread": 17 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 1897814, + "thread": 0 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2107795, + "thread": 30 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2185435, + "thread": 14 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2424986, + "thread": 30 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2476834, + "thread": 5 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2721543, + "thread": 29 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 2902648, + "thread": 6 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 3049949, + "thread": 31 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 3243731, + "thread": 2 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 3366625, + "thread": 22 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 3486303, + "thread": 8 + } + }, + { + "amount": "85.489601693", + "slot": { + "period": 3651610, + "thread": 28 + } + }, + { + "amount": "85.489601689", + "slot": { + "period": 3847301, + "thread": 25 + } + } + ], + "AU12CMCPRXbvYsVysAhyELHdXkEP8eXMMFYyKS6ESbNhZTv6VkNHJ": [ + { + "amount": "276.541670323", + "slot": { + "period": 109946, + "thread": 7 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 253502, + "thread": 7 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 481743, + "thread": 8 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 607470, + "thread": 17 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 722148, + "thread": 6 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 922562, + "thread": 5 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1064852, + "thread": 18 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1224528, + "thread": 7 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1429923, + "thread": 19 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1561037, + "thread": 17 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1769837, + "thread": 18 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1908036, + "thread": 6 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 1996939, + "thread": 2 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 2163975, + "thread": 30 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 2407671, + "thread": 14 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 2528238, + "thread": 30 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 2788365, + "thread": 0 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 2910578, + "thread": 14 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 3079849, + "thread": 31 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 3196693, + "thread": 12 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 3355395, + "thread": 10 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 3476151, + "thread": 26 + } + }, + { + "amount": "276.541670323", + "slot": { + "period": 3697415, + "thread": 15 + } + }, + { + "amount": "276.541670319", + "slot": { + "period": 3936100, + "thread": 2 + } + } + ], + "AU12CMsnWNgd2efKDVqGRuLQ9eFQjAoAX9XvuWia4pXHoNHPrtLTv": [ + { + "amount": "171.659540247", + "slot": { + "period": 64788, + "thread": 20 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 272097, + "thread": 21 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 407713, + "thread": 3 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 606728, + "thread": 16 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 802435, + "thread": 23 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 847325, + "thread": 30 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1118841, + "thread": 29 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1268391, + "thread": 0 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1470533, + "thread": 30 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1637837, + "thread": 8 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1710931, + "thread": 31 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 1944472, + "thread": 0 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2133060, + "thread": 18 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2237763, + "thread": 12 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2429050, + "thread": 9 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2541131, + "thread": 2 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2641839, + "thread": 4 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 2844257, + "thread": 5 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 3118480, + "thread": 22 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 3276276, + "thread": 11 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 3407554, + "thread": 25 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 3542934, + "thread": 29 + } + }, + { + "amount": "171.659540247", + "slot": { + "period": 3692752, + "thread": 30 + } + }, + { + "amount": "171.659540244", + "slot": { + "period": 3923847, + "thread": 27 + } + } + ], + "AU12CNNrv7bCnR7Wr7oANQ5sfioPz71WaRu754bVbXac6cWN8xhca": [ + { + "amount": "131.011122486", + "slot": { + "period": 114689, + "thread": 2 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 238747, + "thread": 10 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 474737, + "thread": 23 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 537566, + "thread": 30 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 702767, + "thread": 26 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 922683, + "thread": 18 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1068340, + "thread": 30 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1178167, + "thread": 30 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1334445, + "thread": 5 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1600184, + "thread": 11 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1675795, + "thread": 21 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 1937122, + "thread": 17 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2042117, + "thread": 27 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2287039, + "thread": 19 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2422433, + "thread": 22 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2473748, + "thread": 14 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2788088, + "thread": 24 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 2823527, + "thread": 6 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 3080997, + "thread": 23 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 3225303, + "thread": 12 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 3300266, + "thread": 8 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 3510452, + "thread": 23 + } + }, + { + "amount": "131.011122486", + "slot": { + "period": 3637276, + "thread": 8 + } + }, + { + "amount": "131.011122478", + "slot": { + "period": 3886596, + "thread": 20 + } + } + ], + "AU12CNqsisz636xMCMQvdYxNefTTU2e97VHwd3q3Pvj8n67Rkjo6q": [ + { + "amount": "415.008279969", + "slot": { + "period": 164187, + "thread": 31 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 250432, + "thread": 23 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 404459, + "thread": 17 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 562951, + "thread": 1 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 690390, + "thread": 22 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 835804, + "thread": 29 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1044916, + "thread": 1 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1277701, + "thread": 6 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1390968, + "thread": 31 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1515183, + "thread": 31 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1696851, + "thread": 25 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 1925058, + "thread": 17 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2141115, + "thread": 4 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2237654, + "thread": 15 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2413724, + "thread": 10 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2513543, + "thread": 21 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2687861, + "thread": 9 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 2801993, + "thread": 10 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 3081977, + "thread": 22 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 3280597, + "thread": 19 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 3410395, + "thread": 17 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 3506433, + "thread": 14 + } + }, + { + "amount": "415.008279969", + "slot": { + "period": 3620338, + "thread": 27 + } + }, + { + "amount": "415.008279968", + "slot": { + "period": 3891166, + "thread": 12 + } + } + ], + "AU12CPrftTPgRgTrBi6xU2qxHRoSw1pVQESspckC5wByoRbu1LQcx": [ + { + "amount": "151.619586642", + "slot": { + "period": 126543, + "thread": 3 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 313119, + "thread": 0 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 459022, + "thread": 0 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 612705, + "thread": 0 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 719748, + "thread": 10 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 955230, + "thread": 11 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1031193, + "thread": 18 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1253438, + "thread": 3 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1402367, + "thread": 23 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1630469, + "thread": 26 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1694221, + "thread": 28 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 1934697, + "thread": 17 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2101465, + "thread": 15 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2263610, + "thread": 4 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2452136, + "thread": 8 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2545518, + "thread": 15 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2781627, + "thread": 11 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 2919983, + "thread": 21 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 3064088, + "thread": 24 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 3135998, + "thread": 3 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 3336519, + "thread": 8 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 3516956, + "thread": 25 + } + }, + { + "amount": "151.619586642", + "slot": { + "period": 3711367, + "thread": 3 + } + }, + { + "amount": "151.619586635", + "slot": { + "period": 3873378, + "thread": 2 + } + } + ], + "AU12CQ2eoz62U4EkB7pHm4est5aH5AuA3AdieAQCsXp5y1oNnRB5o": [ + { + "amount": "554166.666666667", + "slot": { + "period": 167400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 324000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 491400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 653400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 820800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 982800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1150200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1317600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1479600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1647000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1809000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1976400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2143800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2295000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2462400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2624400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2791800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2953800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3121200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3288600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3450600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3618000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3780000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3947400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4114800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4266000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4433400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4595400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4762800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4924800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5092200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5259600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5421600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5589000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5751000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5918400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6085800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6237000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6404400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6566400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6733800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6895800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7063200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7230600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7392600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7560000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7722000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7889400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8056800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8213400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8380800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8542800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8710200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8872200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9039600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9207000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9369000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9536400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9698400, + "thread": 0 + } + }, + { + "amount": "554166.666666647", + "slot": { + "period": 9865800, + "thread": 0 + } + } + ], + "AU12CQ9CYtMgeyPwrFG9ckSun53R3TEEQvtJRhw4z8nJXkpeedzDJ": [ + { + "amount": "164.111992249", + "slot": { + "period": 66157, + "thread": 16 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 270776, + "thread": 0 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 367460, + "thread": 8 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 579201, + "thread": 11 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 790469, + "thread": 30 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 976359, + "thread": 24 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1074634, + "thread": 23 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1310902, + "thread": 30 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1462597, + "thread": 7 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1623416, + "thread": 8 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1695454, + "thread": 21 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 1809674, + "thread": 11 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2031392, + "thread": 13 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2187643, + "thread": 21 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2305482, + "thread": 23 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2531802, + "thread": 29 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2703476, + "thread": 1 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 2895644, + "thread": 18 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 3114177, + "thread": 18 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 3195028, + "thread": 9 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 3442561, + "thread": 23 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 3610847, + "thread": 30 + } + }, + { + "amount": "164.111992249", + "slot": { + "period": 3736409, + "thread": 6 + } + }, + { + "amount": "164.111992244", + "slot": { + "period": 3832023, + "thread": 13 + } + } + ], + "AU12CQsZKbRGBoYHqEPJQdH6EewudawLYpExt7w1Mm84Nmpfs5tLU": [ + { + "amount": "185.320296489", + "slot": { + "period": 162056, + "thread": 13 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 213869, + "thread": 22 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 444333, + "thread": 16 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 496073, + "thread": 1 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 756748, + "thread": 22 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 981173, + "thread": 2 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 983059, + "thread": 7 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 1282173, + "thread": 30 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 1331761, + "thread": 11 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 1636409, + "thread": 13 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 1680528, + "thread": 27 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 1893826, + "thread": 14 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2091168, + "thread": 11 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2170614, + "thread": 11 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2309093, + "thread": 29 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2559499, + "thread": 18 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2645547, + "thread": 4 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 2937645, + "thread": 30 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 3013016, + "thread": 13 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 3135483, + "thread": 30 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 3438276, + "thread": 16 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 3503370, + "thread": 15 + } + }, + { + "amount": "185.320296489", + "slot": { + "period": 3689822, + "thread": 20 + } + }, + { + "amount": "185.320296488", + "slot": { + "period": 3815446, + "thread": 11 + } + } + ], + "AU12CR4oKhGUR8Zxdwu4qerdbNi9SzwgirChgyn1wfRBq7fSJWtWu": [ + { + "amount": "385.980613036", + "slot": { + "period": 158633, + "thread": 30 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 189829, + "thread": 14 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 352123, + "thread": 15 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 645748, + "thread": 25 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 812627, + "thread": 6 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 830085, + "thread": 7 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1098605, + "thread": 3 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1206636, + "thread": 4 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1370280, + "thread": 30 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1572442, + "thread": 29 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1776202, + "thread": 1 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1965365, + "thread": 15 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 1993780, + "thread": 1 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 2275517, + "thread": 3 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 2348931, + "thread": 2 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 2618946, + "thread": 28 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 2728911, + "thread": 20 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 2896448, + "thread": 23 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 3012481, + "thread": 20 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 3263048, + "thread": 17 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 3380132, + "thread": 7 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 3481989, + "thread": 13 + } + }, + { + "amount": "385.980613036", + "slot": { + "period": 3722939, + "thread": 31 + } + }, + { + "amount": "385.980613024", + "slot": { + "period": 3899479, + "thread": 20 + } + } + ], + "AU12CRF5yj6jBA4o4QHRvTZjF78oZGo4rkJ44dC7zApAm92DTTBkM": [ + { + "amount": "399.772903908", + "slot": { + "period": 106704, + "thread": 19 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 221739, + "thread": 19 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 403453, + "thread": 13 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 562074, + "thread": 5 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 728776, + "thread": 27 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 937685, + "thread": 7 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1077284, + "thread": 14 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1150968, + "thread": 22 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1402220, + "thread": 28 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1605793, + "thread": 4 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1703510, + "thread": 0 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1827869, + "thread": 9 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 1998004, + "thread": 12 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2176406, + "thread": 9 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2391154, + "thread": 30 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2597568, + "thread": 14 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2772931, + "thread": 0 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2915977, + "thread": 6 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 2982692, + "thread": 13 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 3158393, + "thread": 19 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 3432224, + "thread": 12 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 3499011, + "thread": 17 + } + }, + { + "amount": "399.772903908", + "slot": { + "period": 3729563, + "thread": 22 + } + }, + { + "amount": "399.772903902", + "slot": { + "period": 3946763, + "thread": 30 + } + } + ], + "AU12CRpvUDFMTihhtcAv3dGCMzDebDtRNAr2Tgcc19NaXMKMYojTs": [ + { + "amount": "181.203881359", + "slot": { + "period": 57795, + "thread": 20 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 270677, + "thread": 2 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 407881, + "thread": 9 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 636060, + "thread": 17 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 699325, + "thread": 29 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 965637, + "thread": 22 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1144681, + "thread": 10 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1286805, + "thread": 13 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1473333, + "thread": 17 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1522747, + "thread": 14 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1783909, + "thread": 30 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 1933228, + "thread": 14 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2124441, + "thread": 1 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2183892, + "thread": 4 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2387622, + "thread": 3 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2498429, + "thread": 14 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2755390, + "thread": 5 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2843795, + "thread": 28 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 2977684, + "thread": 6 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 3221777, + "thread": 24 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 3306376, + "thread": 24 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 3533012, + "thread": 4 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 3752152, + "thread": 3 + } + }, + { + "amount": "181.203881359", + "slot": { + "period": 3812533, + "thread": 23 + } + } + ], + "AU12CSYiZgaJ5npTxPdU3u5GnquFAAffjCJZtsyQZvpFikFKHM7xk": [ + { + "amount": "133.621196257", + "slot": { + "period": 70066, + "thread": 10 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 246316, + "thread": 21 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 378496, + "thread": 20 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 600417, + "thread": 24 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 745576, + "thread": 31 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 862741, + "thread": 21 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 993690, + "thread": 12 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 1165153, + "thread": 18 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 1447219, + "thread": 29 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 1581156, + "thread": 14 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 1652629, + "thread": 16 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 1809699, + "thread": 0 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2027968, + "thread": 2 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2168024, + "thread": 31 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2303332, + "thread": 15 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2516402, + "thread": 7 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2663445, + "thread": 13 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 2928600, + "thread": 23 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 3098600, + "thread": 23 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 3271500, + "thread": 16 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 3313407, + "thread": 8 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 3470321, + "thread": 22 + } + }, + { + "amount": "133.621196257", + "slot": { + "period": 3712160, + "thread": 1 + } + }, + { + "amount": "133.621196267", + "slot": { + "period": 3784679, + "thread": 23 + } + } + ], + "AU12CTKZr2e76H9vjz6rwBjhc1i9M6kpECLMPJZcci9oRCZnTDsMT": [ + { + "amount": "350.375012566", + "slot": { + "period": 135039, + "thread": 21 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 232075, + "thread": 23 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 357699, + "thread": 9 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 621792, + "thread": 2 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 750483, + "thread": 19 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 912210, + "thread": 10 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1054531, + "thread": 26 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1285202, + "thread": 26 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1424968, + "thread": 1 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1644022, + "thread": 23 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1752896, + "thread": 16 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1939377, + "thread": 22 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 1977453, + "thread": 12 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 2149111, + "thread": 7 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 2315364, + "thread": 6 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 2579955, + "thread": 20 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 2672262, + "thread": 15 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 2926573, + "thread": 0 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 3008943, + "thread": 9 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 3205740, + "thread": 15 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 3361726, + "thread": 24 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 3570879, + "thread": 18 + } + }, + { + "amount": "350.375012566", + "slot": { + "period": 3753028, + "thread": 20 + } + }, + { + "amount": "350.375012569", + "slot": { + "period": 3789476, + "thread": 17 + } + } + ], + "AU12CUGRbKEJ87z7x6FVLPJwGtJAPteDaY519rzuvxKSKk4DijUQq": [ + { + "amount": "53.908156726", + "slot": { + "period": 134246, + "thread": 6 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 263321, + "thread": 5 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 335814, + "thread": 15 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 618536, + "thread": 3 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 746034, + "thread": 19 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 979261, + "thread": 31 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1052724, + "thread": 17 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1175347, + "thread": 9 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1325142, + "thread": 13 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1617360, + "thread": 12 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1788925, + "thread": 12 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 1854648, + "thread": 18 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2040671, + "thread": 15 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2293675, + "thread": 24 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2340014, + "thread": 2 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2609617, + "thread": 27 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2790300, + "thread": 23 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 2898064, + "thread": 26 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 3104333, + "thread": 23 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 3126945, + "thread": 0 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 3307152, + "thread": 4 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 3552581, + "thread": 16 + } + }, + { + "amount": "53.908156726", + "slot": { + "period": 3658512, + "thread": 19 + } + }, + { + "amount": "53.908156723", + "slot": { + "period": 3889723, + "thread": 21 + } + } + ], + "AU12CUqh5kB1mGSbENKLdyvNsTeWSMK5hsE3XriQsXzjGWqrViCyr": [ + { + "amount": "168.155402641", + "slot": { + "period": 30950, + "thread": 22 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 285236, + "thread": 26 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 345844, + "thread": 26 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 602365, + "thread": 0 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 658942, + "thread": 9 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 881788, + "thread": 25 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 995425, + "thread": 3 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 1260098, + "thread": 5 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 1471365, + "thread": 30 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 1603040, + "thread": 11 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 1774577, + "thread": 15 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 1947761, + "thread": 11 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2088645, + "thread": 3 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2244655, + "thread": 29 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2435940, + "thread": 25 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2498112, + "thread": 20 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2753975, + "thread": 25 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 2946496, + "thread": 3 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 3100342, + "thread": 6 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 3149290, + "thread": 23 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 3336395, + "thread": 12 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 3502724, + "thread": 13 + } + }, + { + "amount": "168.155402641", + "slot": { + "period": 3723596, + "thread": 13 + } + }, + { + "amount": "168.155402638", + "slot": { + "period": 3842545, + "thread": 12 + } + } + ], + "AU12CV5WbhTgjtSY8FVQwfZPhV6tt1ifebRNco4frgX3hYgJ8tEXB": [ + { + "amount": "504.268999428", + "slot": { + "period": 112764, + "thread": 4 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 194614, + "thread": 29 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 490490, + "thread": 12 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 571555, + "thread": 10 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 794931, + "thread": 0 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 921004, + "thread": 24 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 985620, + "thread": 20 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 1238992, + "thread": 1 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 1368217, + "thread": 22 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 1503770, + "thread": 24 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 1682423, + "thread": 25 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 1949833, + "thread": 19 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2068803, + "thread": 23 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2158667, + "thread": 21 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2394893, + "thread": 11 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2525329, + "thread": 1 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2773799, + "thread": 31 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 2891057, + "thread": 30 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 3109227, + "thread": 21 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 3205831, + "thread": 4 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 3359842, + "thread": 0 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 3586176, + "thread": 17 + } + }, + { + "amount": "504.268999428", + "slot": { + "period": 3693341, + "thread": 14 + } + }, + { + "amount": "504.268999435", + "slot": { + "period": 3941901, + "thread": 25 + } + } + ], + "AU12CVPCzspSicqMNRV1HuyLjH8BR4btY3zxi2iqyT8eTLYD8Qy3k": [ + { + "amount": "110.753336918", + "slot": { + "period": 41678, + "thread": 19 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 228966, + "thread": 11 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 463328, + "thread": 14 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 652285, + "thread": 22 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 712708, + "thread": 4 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 867738, + "thread": 22 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1061522, + "thread": 8 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1274544, + "thread": 26 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1370278, + "thread": 16 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1528851, + "thread": 8 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1656115, + "thread": 0 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 1825516, + "thread": 19 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2142784, + "thread": 1 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2149833, + "thread": 10 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2456842, + "thread": 6 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2464224, + "thread": 22 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2729899, + "thread": 13 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2919755, + "thread": 29 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 2977874, + "thread": 15 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 3222761, + "thread": 23 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 3446349, + "thread": 3 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 3475921, + "thread": 19 + } + }, + { + "amount": "110.753336918", + "slot": { + "period": 3729279, + "thread": 23 + } + }, + { + "amount": "110.753336929", + "slot": { + "period": 3816140, + "thread": 18 + } + } + ], + "AU12CWUnRPJQbFmBAbXfVSj9b1kfQNySHA2eCXkycdmnQHJv2rN5S": [ + { + "amount": "614.997242105", + "slot": { + "period": 129439, + "thread": 1 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 174385, + "thread": 17 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 424235, + "thread": 3 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 646951, + "thread": 20 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 778697, + "thread": 18 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 875556, + "thread": 8 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1135822, + "thread": 28 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1239469, + "thread": 8 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1346793, + "thread": 0 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1513508, + "thread": 12 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1704790, + "thread": 9 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1829579, + "thread": 2 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 1990559, + "thread": 7 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 2214419, + "thread": 15 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 2410676, + "thread": 27 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 2544573, + "thread": 9 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 2653345, + "thread": 15 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 2934145, + "thread": 18 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 3109579, + "thread": 27 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 3267416, + "thread": 13 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 3374082, + "thread": 28 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 3547981, + "thread": 3 + } + }, + { + "amount": "614.997242105", + "slot": { + "period": 3744122, + "thread": 17 + } + }, + { + "amount": "614.997242098", + "slot": { + "period": 3860179, + "thread": 16 + } + } + ], + "AU12CWbNTyZoesYMGu1xsQnUrgdUodzWkRSCSdWZdt98RxXjAaukR": [ + { + "amount": "66.707399745", + "slot": { + "period": 135450, + "thread": 4 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 175664, + "thread": 2 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 414763, + "thread": 19 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 643449, + "thread": 12 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 665759, + "thread": 26 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 869946, + "thread": 11 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1140978, + "thread": 3 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1152584, + "thread": 16 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1385391, + "thread": 16 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1550687, + "thread": 21 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1674047, + "thread": 30 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1902413, + "thread": 24 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 1992278, + "thread": 24 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 2250619, + "thread": 6 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 2337943, + "thread": 17 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 2467887, + "thread": 6 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 2745667, + "thread": 18 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 2943648, + "thread": 13 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 3059209, + "thread": 10 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 3212434, + "thread": 7 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 3425961, + "thread": 30 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 3466153, + "thread": 20 + } + }, + { + "amount": "66.707399745", + "slot": { + "period": 3688408, + "thread": 23 + } + }, + { + "amount": "66.707399734", + "slot": { + "period": 3855091, + "thread": 31 + } + } + ], + "AU12CWpEjeJNr7GYqxsmM9e6W1A9AyqcmDG1qdbBePWoVe43hkDnj": [ + { + "amount": "285.732042355", + "slot": { + "period": 84286, + "thread": 27 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 273882, + "thread": 8 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 412256, + "thread": 7 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 607791, + "thread": 13 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 718258, + "thread": 28 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 938806, + "thread": 26 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1025598, + "thread": 19 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1263099, + "thread": 11 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1470980, + "thread": 15 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1548317, + "thread": 19 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1712728, + "thread": 6 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 1922249, + "thread": 1 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2060224, + "thread": 14 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2207097, + "thread": 15 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2339211, + "thread": 19 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2574377, + "thread": 29 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2685373, + "thread": 9 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 2816731, + "thread": 0 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 3058003, + "thread": 1 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 3145042, + "thread": 14 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 3432447, + "thread": 23 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 3551586, + "thread": 31 + } + }, + { + "amount": "285.732042355", + "slot": { + "period": 3766180, + "thread": 25 + } + }, + { + "amount": "285.732042351", + "slot": { + "period": 3938948, + "thread": 4 + } + } + ], + "AU12CXSbsgfMjYAW6qPP7EQHU9uLvtCHG823dEVSW3URrYQreas5s": [ + { + "amount": "181.878639752", + "slot": { + "period": 24059, + "thread": 7 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 309648, + "thread": 4 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 341365, + "thread": 8 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 526695, + "thread": 20 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 696355, + "thread": 5 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 894970, + "thread": 21 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1025231, + "thread": 3 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1162389, + "thread": 7 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1474038, + "thread": 7 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1620851, + "thread": 1 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1763739, + "thread": 29 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1947432, + "thread": 20 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 1991365, + "thread": 19 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2263675, + "thread": 27 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2453330, + "thread": 26 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2519490, + "thread": 8 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2697053, + "thread": 1 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2799519, + "thread": 10 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 2981288, + "thread": 16 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 3130965, + "thread": 12 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 3288733, + "thread": 24 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 3588298, + "thread": 2 + } + }, + { + "amount": "181.878639752", + "slot": { + "period": 3649832, + "thread": 27 + } + }, + { + "amount": "181.878639740", + "slot": { + "period": 3912877, + "thread": 11 + } + } + ], + "AU12CXa7ibysExwunc31Mud6f3AwNKcKboA8Lw3GpHfsnfKJewnXg": [ + { + "amount": "51.594414329", + "slot": { + "period": 95973, + "thread": 26 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 213034, + "thread": 29 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 471357, + "thread": 16 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 526430, + "thread": 15 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 672919, + "thread": 1 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 982069, + "thread": 24 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1071570, + "thread": 4 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1245281, + "thread": 19 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1450527, + "thread": 23 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1644148, + "thread": 4 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1737461, + "thread": 5 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 1820789, + "thread": 17 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2139599, + "thread": 15 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2262802, + "thread": 0 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2303551, + "thread": 31 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2611096, + "thread": 31 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2641577, + "thread": 14 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 2847570, + "thread": 25 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 3057766, + "thread": 14 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 3175710, + "thread": 15 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 3311559, + "thread": 6 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 3543499, + "thread": 17 + } + }, + { + "amount": "51.594414329", + "slot": { + "period": 3764879, + "thread": 23 + } + }, + { + "amount": "51.594414337", + "slot": { + "period": 3793237, + "thread": 13 + } + } + ], + "AU12CXdtnff8NjDWSPK1GXR8kWEHcxcMZxA6bxsRv7CVWpput9QKg": [ + { + "amount": "54.436201453", + "slot": { + "period": 138829, + "thread": 20 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 224062, + "thread": 29 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 485339, + "thread": 31 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 527163, + "thread": 10 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 686485, + "thread": 28 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 946964, + "thread": 8 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1091570, + "thread": 5 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1211801, + "thread": 3 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1367847, + "thread": 26 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1564197, + "thread": 0 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1740229, + "thread": 4 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 1871781, + "thread": 2 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2026219, + "thread": 22 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2158095, + "thread": 17 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2412935, + "thread": 2 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2542331, + "thread": 14 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2646625, + "thread": 27 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2928915, + "thread": 17 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 2958629, + "thread": 19 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 3238974, + "thread": 13 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 3296124, + "thread": 26 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 3603991, + "thread": 20 + } + }, + { + "amount": "54.436201453", + "slot": { + "period": 3679892, + "thread": 1 + } + }, + { + "amount": "54.436201444", + "slot": { + "period": 3918363, + "thread": 1 + } + } + ], + "AU12CXsCKLJUy8n5VrjtjxWFd7KdEdmtjpCNQnF84awydvWoWxkL4": [ + { + "amount": "180.602242378", + "slot": { + "period": 156268, + "thread": 30 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 298342, + "thread": 28 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 417636, + "thread": 18 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 639732, + "thread": 22 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 776220, + "thread": 17 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 979285, + "thread": 10 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1080832, + "thread": 8 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1201932, + "thread": 13 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1357550, + "thread": 20 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1544121, + "thread": 10 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1774118, + "thread": 8 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 1841698, + "thread": 27 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2040489, + "thread": 3 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2232521, + "thread": 29 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2330759, + "thread": 9 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2552870, + "thread": 5 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2711231, + "thread": 21 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 2805506, + "thread": 1 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 3112123, + "thread": 0 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 3205766, + "thread": 0 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 3295958, + "thread": 30 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 3578739, + "thread": 23 + } + }, + { + "amount": "180.602242378", + "slot": { + "period": 3628246, + "thread": 9 + } + }, + { + "amount": "180.602242388", + "slot": { + "period": 3793104, + "thread": 18 + } + } + ], + "AU12CXzzPYnbAN4ofU8dsS88tQWZBBMay4oozZ1Gd7fqvMVSMTJSC": [ + { + "amount": "128.573915334", + "slot": { + "period": 63911, + "thread": 25 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 269075, + "thread": 2 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 487887, + "thread": 9 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 550897, + "thread": 12 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 726168, + "thread": 11 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 968543, + "thread": 9 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1016841, + "thread": 8 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1165013, + "thread": 6 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1360560, + "thread": 18 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1532856, + "thread": 7 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1734539, + "thread": 19 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 1891057, + "thread": 1 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2087008, + "thread": 9 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2228673, + "thread": 5 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2327325, + "thread": 5 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2477533, + "thread": 8 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2753859, + "thread": 19 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 2882647, + "thread": 14 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 3009269, + "thread": 1 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 3170692, + "thread": 4 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 3313682, + "thread": 26 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 3597286, + "thread": 13 + } + }, + { + "amount": "128.573915334", + "slot": { + "period": 3679024, + "thread": 7 + } + }, + { + "amount": "128.573915329", + "slot": { + "period": 3809809, + "thread": 30 + } + } + ], + "AU12CY3pGeSktUQVgNzZ6ZWtRLaAcgUVQFGmZ34REbUxqq1UeY9MD": [ + { + "amount": "87.027920922", + "slot": { + "period": 18212, + "thread": 12 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 322152, + "thread": 17 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 327053, + "thread": 20 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 542787, + "thread": 11 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 740924, + "thread": 23 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 949217, + "thread": 23 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1015476, + "thread": 31 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1218677, + "thread": 29 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1361631, + "thread": 25 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1566092, + "thread": 31 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1676319, + "thread": 18 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1821935, + "thread": 13 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 1983126, + "thread": 31 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 2258896, + "thread": 9 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 2390558, + "thread": 27 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 2553573, + "thread": 1 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 2673520, + "thread": 2 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 2806365, + "thread": 15 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 3064478, + "thread": 20 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 3173619, + "thread": 0 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 3295393, + "thread": 28 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 3503778, + "thread": 13 + } + }, + { + "amount": "87.027920922", + "slot": { + "period": 3694575, + "thread": 19 + } + }, + { + "amount": "87.027920913", + "slot": { + "period": 3943373, + "thread": 22 + } + } + ], + "AU12CYY4iJk8zwdE9SJdqwqwTJbHmxXwKLWrQYLfVZGXp736nA8R": [ + { + "amount": "151.772989019", + "slot": { + "period": 136348, + "thread": 5 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 275954, + "thread": 24 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 357521, + "thread": 7 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 625091, + "thread": 17 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 675681, + "thread": 22 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 845852, + "thread": 21 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1058274, + "thread": 8 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1278643, + "thread": 9 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1454316, + "thread": 17 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1602687, + "thread": 5 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1691729, + "thread": 3 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 1929075, + "thread": 20 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2057260, + "thread": 19 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2275407, + "thread": 10 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2330015, + "thread": 31 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2544249, + "thread": 7 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2641756, + "thread": 23 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 2862346, + "thread": 7 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 3021761, + "thread": 12 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 3177743, + "thread": 2 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 3439831, + "thread": 0 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 3492478, + "thread": 18 + } + }, + { + "amount": "151.772989019", + "slot": { + "period": 3639110, + "thread": 0 + } + }, + { + "amount": "151.772989025", + "slot": { + "period": 3871566, + "thread": 31 + } + } + ], + "AU12CYu61pPAJr9KZ54Cdei2ufCKneVEWL2CjnuoQnngM2pE2ckVb": [ + { + "amount": "219.179525856", + "slot": { + "period": 39296, + "thread": 25 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 272743, + "thread": 24 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 336687, + "thread": 20 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 564476, + "thread": 10 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 691698, + "thread": 18 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 850756, + "thread": 9 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1108910, + "thread": 15 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1213617, + "thread": 29 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1324076, + "thread": 10 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1585332, + "thread": 9 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1704395, + "thread": 9 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 1933936, + "thread": 1 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2081692, + "thread": 2 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2210371, + "thread": 31 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2443374, + "thread": 7 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2570378, + "thread": 29 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2777161, + "thread": 16 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 2825728, + "thread": 11 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 3036269, + "thread": 1 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 3235995, + "thread": 16 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 3375214, + "thread": 28 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 3467260, + "thread": 6 + } + }, + { + "amount": "219.179525856", + "slot": { + "period": 3640632, + "thread": 28 + } + }, + { + "amount": "219.179525854", + "slot": { + "period": 3804052, + "thread": 9 + } + } + ], + "AU12CZJQEBHMFAKHQssf2Rs5SQnkuUX2f23TcE6D9k4NsARrMGy8z": [ + { + "amount": "106.797485061", + "slot": { + "period": 86924, + "thread": 18 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 280521, + "thread": 23 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 461638, + "thread": 3 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 592387, + "thread": 18 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 668565, + "thread": 21 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 916601, + "thread": 4 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1135007, + "thread": 22 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1263406, + "thread": 2 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1373300, + "thread": 19 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1593171, + "thread": 3 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1650417, + "thread": 25 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 1833391, + "thread": 16 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2023498, + "thread": 28 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2183913, + "thread": 29 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2344073, + "thread": 1 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2529073, + "thread": 20 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2771730, + "thread": 16 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2818508, + "thread": 1 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 2989349, + "thread": 31 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 3208185, + "thread": 23 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 3449267, + "thread": 6 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 3605374, + "thread": 24 + } + }, + { + "amount": "106.797485061", + "slot": { + "period": 3719690, + "thread": 23 + } + }, + { + "amount": "106.797485068", + "slot": { + "period": 3847907, + "thread": 24 + } + } + ], + "AU12CZXka1Eia4wUwZp8VZ6DC7oPK99bFPjv6xMcJQkWkxRUcK9T4": [ + { + "amount": "121.603115795", + "slot": { + "period": 156881, + "thread": 12 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 323534, + "thread": 19 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 491323, + "thread": 17 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 511465, + "thread": 15 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 714967, + "thread": 12 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 902152, + "thread": 30 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1023299, + "thread": 18 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1310338, + "thread": 22 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1332321, + "thread": 1 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1499674, + "thread": 27 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1665451, + "thread": 17 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 1962437, + "thread": 0 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2057760, + "thread": 30 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2149070, + "thread": 14 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2413266, + "thread": 18 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2481994, + "thread": 8 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2624808, + "thread": 27 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 2945865, + "thread": 6 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 3119925, + "thread": 20 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 3280960, + "thread": 17 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 3335919, + "thread": 30 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 3520013, + "thread": 15 + } + }, + { + "amount": "121.603115795", + "slot": { + "period": 3743338, + "thread": 2 + } + }, + { + "amount": "121.603115789", + "slot": { + "period": 3899752, + "thread": 18 + } + } + ], + "AU12Ca4LnqtTFioyDJUeo3N3iFReY5yyqiSckSyas4gdDei2yH843": [ + { + "amount": "538.378405719", + "slot": { + "period": 91240, + "thread": 19 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 309109, + "thread": 12 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 390715, + "thread": 3 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 629545, + "thread": 29 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 677057, + "thread": 20 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 840962, + "thread": 15 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1113171, + "thread": 13 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1251392, + "thread": 29 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1388287, + "thread": 24 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1600751, + "thread": 21 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1793909, + "thread": 12 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 1872088, + "thread": 16 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2042494, + "thread": 14 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2221854, + "thread": 12 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2317628, + "thread": 2 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2552911, + "thread": 10 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2677190, + "thread": 19 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 2896711, + "thread": 21 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 3018022, + "thread": 8 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 3159969, + "thread": 8 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 3375813, + "thread": 10 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 3580442, + "thread": 5 + } + }, + { + "amount": "538.378405719", + "slot": { + "period": 3630461, + "thread": 16 + } + }, + { + "amount": "538.378405721", + "slot": { + "period": 3897711, + "thread": 0 + } + } + ], + "AU12CaJ6zDvf5BhmoRJhYtSDkU4cT8TXrfWU4qTNooXd9u9cHLvnS": [ + { + "amount": "614.992658171", + "slot": { + "period": 151692, + "thread": 14 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 174214, + "thread": 13 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 454124, + "thread": 26 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 640483, + "thread": 6 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 710951, + "thread": 30 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 982219, + "thread": 13 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1011199, + "thread": 10 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1294223, + "thread": 19 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1450761, + "thread": 14 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1549847, + "thread": 3 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1738408, + "thread": 23 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 1971310, + "thread": 18 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2129781, + "thread": 25 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2197656, + "thread": 3 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2432027, + "thread": 0 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2523222, + "thread": 27 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2679562, + "thread": 4 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2802362, + "thread": 26 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 2975192, + "thread": 3 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 3281244, + "thread": 30 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 3345543, + "thread": 13 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 3454419, + "thread": 11 + } + }, + { + "amount": "614.992658171", + "slot": { + "period": 3663913, + "thread": 5 + } + }, + { + "amount": "614.992658167", + "slot": { + "period": 3899870, + "thread": 13 + } + } + ], + "AU12CayzjjxYyUYjoGwsbjX387gi32vNnh9qqLLN1zk7L3dzUhBn": [ + { + "amount": "79.194220215", + "slot": { + "period": 47641, + "thread": 31 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 171810, + "thread": 11 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 408456, + "thread": 30 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 638997, + "thread": 4 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 803225, + "thread": 8 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 877952, + "thread": 0 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1116318, + "thread": 18 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1261984, + "thread": 30 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1330925, + "thread": 7 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1594195, + "thread": 24 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1671306, + "thread": 25 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 1831068, + "thread": 29 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2056531, + "thread": 15 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2286416, + "thread": 21 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2300692, + "thread": 6 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2606512, + "thread": 2 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2643710, + "thread": 9 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 2861788, + "thread": 17 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 3086781, + "thread": 22 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 3123380, + "thread": 10 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 3330406, + "thread": 4 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 3458849, + "thread": 3 + } + }, + { + "amount": "79.194220215", + "slot": { + "period": 3658131, + "thread": 10 + } + }, + { + "amount": "79.194220213", + "slot": { + "period": 3930077, + "thread": 22 + } + } + ], + "AU12Cb33d2Q9iYJH2RVdBTe4sZhzHoYXEjtZMfJUcsM7Mxiybmisj": [ + { + "amount": "66.493327752", + "slot": { + "period": 113552, + "thread": 23 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 280055, + "thread": 25 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 349508, + "thread": 3 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 565775, + "thread": 2 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 702004, + "thread": 31 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 913746, + "thread": 4 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1013053, + "thread": 14 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1200132, + "thread": 4 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1324555, + "thread": 5 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1605301, + "thread": 19 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1701777, + "thread": 27 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 1827099, + "thread": 2 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2090053, + "thread": 5 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2230968, + "thread": 9 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2341156, + "thread": 16 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2514592, + "thread": 19 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2789191, + "thread": 4 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 2802212, + "thread": 14 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 3095880, + "thread": 1 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 3202316, + "thread": 23 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 3370327, + "thread": 22 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 3488594, + "thread": 12 + } + }, + { + "amount": "66.493327752", + "slot": { + "period": 3658648, + "thread": 11 + } + }, + { + "amount": "66.493327745", + "slot": { + "period": 3891448, + "thread": 11 + } + } + ], + "AU12Cbyzxcr879iyWVDpL9amTeTyhKUu1WC46Bk896KiyvG32wiEc": [ + { + "amount": "281.112827041", + "slot": { + "period": 138021, + "thread": 16 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 194556, + "thread": 28 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 481295, + "thread": 9 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 572919, + "thread": 16 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 664220, + "thread": 18 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 945075, + "thread": 10 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1024876, + "thread": 27 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1194727, + "thread": 25 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1446794, + "thread": 26 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1595497, + "thread": 8 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1684200, + "thread": 15 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 1956208, + "thread": 6 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2009692, + "thread": 9 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2224965, + "thread": 0 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2451006, + "thread": 10 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2575494, + "thread": 8 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2705145, + "thread": 17 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 2911521, + "thread": 23 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 3100655, + "thread": 8 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 3227039, + "thread": 23 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 3388830, + "thread": 25 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 3519237, + "thread": 16 + } + }, + { + "amount": "281.112827041", + "slot": { + "period": 3729047, + "thread": 20 + } + }, + { + "amount": "281.112827044", + "slot": { + "period": 3825229, + "thread": 11 + } + } + ], + "AU12CcFYWGeszuWCku78vUjEbamAdv5EHMKQrvi69NhAyWwRWGJ6n": [ + { + "amount": "521.220996460", + "slot": { + "period": 135349, + "thread": 0 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 236263, + "thread": 10 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 365617, + "thread": 21 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 593183, + "thread": 2 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 807030, + "thread": 31 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 877091, + "thread": 31 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1102268, + "thread": 10 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1269620, + "thread": 19 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1455810, + "thread": 7 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1564355, + "thread": 13 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1707154, + "thread": 30 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 1829958, + "thread": 22 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2041094, + "thread": 27 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2189366, + "thread": 25 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2371974, + "thread": 2 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2591978, + "thread": 21 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2716572, + "thread": 19 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2931946, + "thread": 1 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 2962604, + "thread": 22 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 3225473, + "thread": 15 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 3392754, + "thread": 23 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 3501322, + "thread": 2 + } + }, + { + "amount": "521.220996460", + "slot": { + "period": 3763959, + "thread": 24 + } + }, + { + "amount": "521.220996469", + "slot": { + "period": 3814915, + "thread": 28 + } + } + ], + "AU12CcT22MooddzH1t5ei4qjxEY4VcwXaT6yWdKQTqYu8cKH2dupx": [ + { + "amount": "162.969152899", + "slot": { + "period": 122588, + "thread": 2 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 260558, + "thread": 23 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 405897, + "thread": 29 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 619623, + "thread": 12 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 662714, + "thread": 12 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 970941, + "thread": 1 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1149753, + "thread": 22 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1196039, + "thread": 23 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1393648, + "thread": 26 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1553785, + "thread": 23 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1774105, + "thread": 6 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 1928327, + "thread": 25 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2075624, + "thread": 18 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2171395, + "thread": 9 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2421502, + "thread": 25 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2623956, + "thread": 6 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2773197, + "thread": 10 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 2833962, + "thread": 9 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 3113839, + "thread": 24 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 3223013, + "thread": 22 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 3355348, + "thread": 31 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 3528516, + "thread": 21 + } + }, + { + "amount": "162.969152899", + "slot": { + "period": 3717303, + "thread": 15 + } + }, + { + "amount": "162.969152905", + "slot": { + "period": 3860951, + "thread": 7 + } + } + ], + "AU12CcVroUAYDGQrtNizKeFjW9x129Hr7j24UBiGfi2ACiXhYZUNa": [ + { + "amount": "390.747329040", + "slot": { + "period": 21654, + "thread": 5 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 266413, + "thread": 5 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 341561, + "thread": 7 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 544300, + "thread": 6 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 770371, + "thread": 7 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 900648, + "thread": 15 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1066650, + "thread": 29 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1234447, + "thread": 24 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1430892, + "thread": 7 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1598169, + "thread": 29 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1682450, + "thread": 26 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 1815460, + "thread": 30 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2140077, + "thread": 21 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2205803, + "thread": 20 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2459896, + "thread": 14 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2517551, + "thread": 29 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2652259, + "thread": 3 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 2795459, + "thread": 4 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 3118565, + "thread": 8 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 3225065, + "thread": 30 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 3368135, + "thread": 11 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 3527920, + "thread": 23 + } + }, + { + "amount": "390.747329040", + "slot": { + "period": 3714102, + "thread": 17 + } + }, + { + "amount": "390.747329047", + "slot": { + "period": 3856461, + "thread": 4 + } + } + ], + "AU12CciA1MZEZWuPoMDs8buiy7y7U3kvwkXMqGdP6UwUx1qwSN8qV": [ + { + "amount": "89.760046994", + "slot": { + "period": 41711, + "thread": 13 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 246669, + "thread": 20 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 490941, + "thread": 28 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 503214, + "thread": 21 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 694697, + "thread": 3 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 856092, + "thread": 29 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 990303, + "thread": 8 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1255142, + "thread": 4 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1460053, + "thread": 11 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1528614, + "thread": 15 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1757253, + "thread": 5 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1839927, + "thread": 0 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 1989396, + "thread": 26 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2232338, + "thread": 28 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2357519, + "thread": 17 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2620298, + "thread": 25 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2724301, + "thread": 22 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2943801, + "thread": 5 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 2971634, + "thread": 21 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 3153223, + "thread": 25 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 3385656, + "thread": 25 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 3506734, + "thread": 22 + } + }, + { + "amount": "89.760046994", + "slot": { + "period": 3708958, + "thread": 26 + } + }, + { + "amount": "89.760047001", + "slot": { + "period": 3836252, + "thread": 13 + } + } + ], + "AU12CcisxWmx4GWoysG2ZZMbSMdQE2nqHX6xDEQkVeZYtcjH2s6DA": [ + { + "amount": "466.071939009", + "slot": { + "period": 111394, + "thread": 20 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 322295, + "thread": 11 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 457469, + "thread": 28 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 619350, + "thread": 31 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 685811, + "thread": 19 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 904230, + "thread": 19 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1062788, + "thread": 21 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1159774, + "thread": 10 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1455906, + "thread": 11 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1627564, + "thread": 28 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1667961, + "thread": 9 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 1873723, + "thread": 26 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2013295, + "thread": 8 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2198729, + "thread": 5 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2380147, + "thread": 2 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2543373, + "thread": 12 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2725406, + "thread": 29 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 2795346, + "thread": 5 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 3100321, + "thread": 21 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 3243261, + "thread": 30 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 3393243, + "thread": 27 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 3592056, + "thread": 13 + } + }, + { + "amount": "466.071939009", + "slot": { + "period": 3654633, + "thread": 19 + } + }, + { + "amount": "466.071939000", + "slot": { + "period": 3902594, + "thread": 1 + } + } + ], + "AU12CdFHw6uyiGzttQCcaE3ExbEtPVd1azDc25oQSM6DtzqCs4fSZ": [ + { + "amount": "53.152032652", + "slot": { + "period": 128614, + "thread": 30 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 185327, + "thread": 29 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 427617, + "thread": 20 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 585379, + "thread": 0 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 818629, + "thread": 4 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 868405, + "thread": 18 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1056317, + "thread": 13 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1201904, + "thread": 9 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1386219, + "thread": 30 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1607610, + "thread": 21 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1669678, + "thread": 25 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 1809887, + "thread": 14 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2001311, + "thread": 20 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2230591, + "thread": 30 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2315531, + "thread": 13 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2585675, + "thread": 19 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2790909, + "thread": 25 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 2832053, + "thread": 11 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 3082110, + "thread": 20 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 3193636, + "thread": 16 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 3397065, + "thread": 9 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 3547923, + "thread": 9 + } + }, + { + "amount": "53.152032652", + "slot": { + "period": 3770816, + "thread": 15 + } + }, + { + "amount": "53.152032641", + "slot": { + "period": 3840087, + "thread": 29 + } + } + ], + "AU12CdKe4UZqPPyKfPA21jzpyxThDriYcrduuURd64fpjDu81H3ui": [ + { + "amount": "107.730540955", + "slot": { + "period": 109548, + "thread": 24 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 318232, + "thread": 24 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 333843, + "thread": 30 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 528781, + "thread": 18 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 701987, + "thread": 16 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 979669, + "thread": 18 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 987314, + "thread": 0 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 1204999, + "thread": 6 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 1471502, + "thread": 0 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 1593752, + "thread": 19 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 1798946, + "thread": 17 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 1917806, + "thread": 8 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2056409, + "thread": 14 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2260841, + "thread": 11 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2453867, + "thread": 9 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2596143, + "thread": 23 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2739229, + "thread": 11 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 2905637, + "thread": 20 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 3104547, + "thread": 13 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 3229126, + "thread": 8 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 3319243, + "thread": 13 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 3561759, + "thread": 29 + } + }, + { + "amount": "107.730540955", + "slot": { + "period": 3731305, + "thread": 12 + } + }, + { + "amount": "107.730540949", + "slot": { + "period": 3929085, + "thread": 25 + } + } + ], + "AU12CeXRAM6fwSyzLGksSx7HdDnFQVGwyAZk8QPVQ7tBENhm3Hs9x": [ + { + "amount": "352.396406782", + "slot": { + "period": 29043, + "thread": 18 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 307560, + "thread": 2 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 434769, + "thread": 0 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 587968, + "thread": 6 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 710925, + "thread": 19 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 887630, + "thread": 22 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1100717, + "thread": 31 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1274892, + "thread": 21 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1327985, + "thread": 8 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1614509, + "thread": 26 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1800402, + "thread": 27 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 1970525, + "thread": 24 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2029366, + "thread": 17 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2278019, + "thread": 31 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2362133, + "thread": 1 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2561284, + "thread": 21 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2765841, + "thread": 25 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 2949436, + "thread": 0 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 3035433, + "thread": 29 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 3129454, + "thread": 22 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 3316802, + "thread": 7 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 3601610, + "thread": 19 + } + }, + { + "amount": "352.396406782", + "slot": { + "period": 3707687, + "thread": 8 + } + }, + { + "amount": "352.396406776", + "slot": { + "period": 3810411, + "thread": 26 + } + } + ], + "AU12Cfj5fWR7QCqzxP24oqNfawwZZhjzKx6JpuKnscLyAtpFxG6SL": [ + { + "amount": "129.332294524", + "slot": { + "period": 47304, + "thread": 14 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 270735, + "thread": 18 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 446256, + "thread": 8 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 512658, + "thread": 5 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 677163, + "thread": 11 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 973708, + "thread": 25 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1090246, + "thread": 30 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1317275, + "thread": 0 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1340436, + "thread": 18 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1538000, + "thread": 21 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1787260, + "thread": 14 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 1849411, + "thread": 14 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2035683, + "thread": 23 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2236730, + "thread": 27 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2372157, + "thread": 0 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2531666, + "thread": 15 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2730801, + "thread": 8 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 2822024, + "thread": 4 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 3099652, + "thread": 18 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 3204461, + "thread": 3 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 3433107, + "thread": 6 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 3480279, + "thread": 9 + } + }, + { + "amount": "129.332294524", + "slot": { + "period": 3765659, + "thread": 26 + } + }, + { + "amount": "129.332294530", + "slot": { + "period": 3892874, + "thread": 18 + } + } + ], + "AU12CgWTDqZ36DYGtbHSotxWAg1jaTYiyP2ZJeskQveV1yJimnB2c": [ + { + "amount": "77.141252363", + "slot": { + "period": 134579, + "thread": 9 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 305968, + "thread": 11 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 477550, + "thread": 27 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 573211, + "thread": 7 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 661679, + "thread": 11 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 912408, + "thread": 4 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1064907, + "thread": 3 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1281033, + "thread": 30 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1391654, + "thread": 26 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1564655, + "thread": 24 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1674987, + "thread": 12 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 1861974, + "thread": 2 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2128467, + "thread": 5 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2213247, + "thread": 29 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2420821, + "thread": 6 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2466015, + "thread": 17 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2707410, + "thread": 8 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 2883376, + "thread": 23 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 3040738, + "thread": 31 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 3227487, + "thread": 27 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 3327244, + "thread": 21 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 3518356, + "thread": 4 + } + }, + { + "amount": "77.141252363", + "slot": { + "period": 3779073, + "thread": 20 + } + }, + { + "amount": "77.141252355", + "slot": { + "period": 3814476, + "thread": 16 + } + } + ], + "AU12CgzFVG2xmwbC26EQFFoqnSgio1jU3AfqMvboPnufv2Y83TFvL": [ + { + "amount": "264.090462854", + "slot": { + "period": 122258, + "thread": 29 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 262579, + "thread": 5 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 464149, + "thread": 28 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 651801, + "thread": 27 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 662139, + "thread": 20 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 822624, + "thread": 13 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1032466, + "thread": 24 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1316633, + "thread": 18 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1336572, + "thread": 26 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1584496, + "thread": 4 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1703243, + "thread": 16 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 1970053, + "thread": 4 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2015616, + "thread": 13 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2242365, + "thread": 28 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2414171, + "thread": 3 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2514243, + "thread": 18 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2710748, + "thread": 17 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 2798242, + "thread": 21 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 3065979, + "thread": 18 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 3164040, + "thread": 7 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 3296604, + "thread": 28 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 3602321, + "thread": 9 + } + }, + { + "amount": "264.090462854", + "slot": { + "period": 3646098, + "thread": 31 + } + }, + { + "amount": "264.090462865", + "slot": { + "period": 3928761, + "thread": 28 + } + } + ], + "AU12ChmC1JV8iNNnmze2CqfvKXLbDEReXxMHEkSy9sXLLUziQWZE4": [ + { + "amount": "125.643661693", + "slot": { + "period": 96807, + "thread": 10 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 292856, + "thread": 9 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 366040, + "thread": 19 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 540656, + "thread": 11 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 722703, + "thread": 24 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 840721, + "thread": 8 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1027038, + "thread": 20 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1202735, + "thread": 22 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1320837, + "thread": 19 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1590994, + "thread": 13 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1668179, + "thread": 0 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 1956207, + "thread": 4 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2123525, + "thread": 13 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2186242, + "thread": 17 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2386256, + "thread": 21 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2472026, + "thread": 4 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2691409, + "thread": 30 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 2875075, + "thread": 10 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 3028436, + "thread": 14 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 3167129, + "thread": 3 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 3293201, + "thread": 13 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 3503812, + "thread": 17 + } + }, + { + "amount": "125.643661693", + "slot": { + "period": 3675940, + "thread": 17 + } + }, + { + "amount": "125.643661698", + "slot": { + "period": 3919847, + "thread": 21 + } + } + ], + "AU12ChrV4BnoTxaW4sCV788nATfBjkD6u9KN1v2cu5Xodi6bSP38C": [ + { + "amount": "154.077682103", + "slot": { + "period": 112450, + "thread": 6 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 245606, + "thread": 6 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 422436, + "thread": 5 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 545975, + "thread": 13 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 813011, + "thread": 15 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 893195, + "thread": 17 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1000455, + "thread": 22 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1192293, + "thread": 12 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1372992, + "thread": 23 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1493334, + "thread": 5 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1683654, + "thread": 24 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 1855742, + "thread": 22 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2111649, + "thread": 25 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2263041, + "thread": 18 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2351913, + "thread": 23 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2537621, + "thread": 1 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2691093, + "thread": 4 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2914722, + "thread": 1 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 2997928, + "thread": 14 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 3191563, + "thread": 16 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 3432173, + "thread": 24 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 3486174, + "thread": 15 + } + }, + { + "amount": "154.077682103", + "slot": { + "period": 3760442, + "thread": 21 + } + }, + { + "amount": "154.077682110", + "slot": { + "period": 3817980, + "thread": 24 + } + } + ], + "AU12CiJDg655GxN3RWiGw3xXt7pQPeTXJ4ULbVgPLFLrvCeDT8oZs": [ + { + "amount": "95.102821727", + "slot": { + "period": 111455, + "thread": 8 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 251336, + "thread": 11 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 470087, + "thread": 7 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 506008, + "thread": 19 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 778135, + "thread": 28 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 874439, + "thread": 1 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1100151, + "thread": 14 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1254630, + "thread": 22 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1328793, + "thread": 11 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1565710, + "thread": 23 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1791139, + "thread": 13 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 1962878, + "thread": 25 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2063788, + "thread": 4 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2268690, + "thread": 27 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2360515, + "thread": 0 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2488754, + "thread": 15 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2693444, + "thread": 28 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 2891825, + "thread": 29 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 3060650, + "thread": 23 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 3228706, + "thread": 20 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 3404989, + "thread": 3 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 3490718, + "thread": 3 + } + }, + { + "amount": "95.102821727", + "slot": { + "period": 3707007, + "thread": 12 + } + }, + { + "amount": "95.102821724", + "slot": { + "period": 3936481, + "thread": 3 + } + } + ], + "AU12CiU31sCNb5cbsFsRcxjEQJndrM5d4Wa4ia5HCrAt3JdY7AGoi": [ + { + "amount": "145.950568358", + "slot": { + "period": 132226, + "thread": 23 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 318884, + "thread": 29 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 438175, + "thread": 6 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 524797, + "thread": 25 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 714254, + "thread": 7 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 849302, + "thread": 2 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1140962, + "thread": 25 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1174767, + "thread": 25 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1346703, + "thread": 19 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1616627, + "thread": 16 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1672519, + "thread": 12 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1817139, + "thread": 27 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 1998407, + "thread": 11 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 2146747, + "thread": 21 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 2359275, + "thread": 16 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 2478689, + "thread": 8 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 2693791, + "thread": 27 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 2925304, + "thread": 3 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 3023194, + "thread": 10 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 3279093, + "thread": 24 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 3408204, + "thread": 6 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 3535387, + "thread": 22 + } + }, + { + "amount": "145.950568358", + "slot": { + "period": 3720270, + "thread": 14 + } + }, + { + "amount": "145.950568359", + "slot": { + "period": 3850598, + "thread": 5 + } + } + ], + "AU12CixMAZstRyAadKiChWze1N63CsRiSpqsVtiRsEiyQS3259Nw1": [ + { + "amount": "183.378895888", + "slot": { + "period": 159161, + "thread": 11 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 308900, + "thread": 7 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 478687, + "thread": 12 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 588125, + "thread": 21 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 684937, + "thread": 21 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 853526, + "thread": 6 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1128477, + "thread": 21 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1154300, + "thread": 23 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1475142, + "thread": 10 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1538918, + "thread": 7 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1808502, + "thread": 0 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 1824014, + "thread": 13 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2105789, + "thread": 3 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2159201, + "thread": 2 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2461185, + "thread": 2 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2476340, + "thread": 1 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2646473, + "thread": 25 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 2940701, + "thread": 13 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 3015884, + "thread": 28 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 3136463, + "thread": 19 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 3290622, + "thread": 27 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 3598567, + "thread": 1 + } + }, + { + "amount": "183.378895888", + "slot": { + "period": 3779645, + "thread": 1 + } + }, + { + "amount": "183.378895879", + "slot": { + "period": 3835827, + "thread": 23 + } + } + ], + "AU12Cjk3sVxU72S1TQT3x1dGo3cBUFo213Ab78kumd4xXUuJrvouY": [ + { + "amount": "232.381890337", + "slot": { + "period": 158995, + "thread": 15 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 175532, + "thread": 12 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 349873, + "thread": 17 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 569327, + "thread": 13 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 781441, + "thread": 10 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 867205, + "thread": 29 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1073253, + "thread": 23 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1173932, + "thread": 3 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1355108, + "thread": 24 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1546278, + "thread": 3 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1720869, + "thread": 18 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1842092, + "thread": 21 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 1984761, + "thread": 17 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2226822, + "thread": 9 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2350171, + "thread": 17 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2508891, + "thread": 10 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2779293, + "thread": 31 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2898954, + "thread": 1 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 2972804, + "thread": 14 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 3228162, + "thread": 22 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 3352322, + "thread": 6 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 3455654, + "thread": 10 + } + }, + { + "amount": "232.381890337", + "slot": { + "period": 3709055, + "thread": 24 + } + }, + { + "amount": "232.381890336", + "slot": { + "period": 3788063, + "thread": 11 + } + } + ], + "AU12CjyNsFwnRnJr9aq3gtx2XRE8zvcfTvnw8Qcoma6NDM4oskbkH": [ + { + "amount": "108.707995255", + "slot": { + "period": 42496, + "thread": 24 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 194164, + "thread": 26 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 331490, + "thread": 27 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 571387, + "thread": 2 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 726143, + "thread": 21 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 885976, + "thread": 25 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1030876, + "thread": 26 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1219546, + "thread": 27 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1377508, + "thread": 5 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1608263, + "thread": 26 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1750870, + "thread": 5 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1917272, + "thread": 15 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 1993500, + "thread": 2 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 2212732, + "thread": 31 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 2345141, + "thread": 29 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 2600120, + "thread": 10 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 2744020, + "thread": 12 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 2805264, + "thread": 27 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 3063849, + "thread": 21 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 3277729, + "thread": 23 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 3418961, + "thread": 27 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 3517830, + "thread": 3 + } + }, + { + "amount": "108.707995255", + "slot": { + "period": 3688350, + "thread": 10 + } + }, + { + "amount": "108.707995260", + "slot": { + "period": 3872504, + "thread": 4 + } + } + ], + "AU12CkGcrfKy75R7yiBSUYQS5Ni7FMcuahGhJEXeA81iKWsrqqGTz": [ + { + "amount": "99.940020978", + "slot": { + "period": 61699, + "thread": 6 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 274572, + "thread": 15 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 357122, + "thread": 21 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 552900, + "thread": 27 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 731724, + "thread": 20 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 832681, + "thread": 23 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1094030, + "thread": 20 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1164120, + "thread": 26 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1452433, + "thread": 16 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1504142, + "thread": 1 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1657691, + "thread": 11 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 1927142, + "thread": 1 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2018031, + "thread": 2 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2263875, + "thread": 28 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2390295, + "thread": 28 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2616548, + "thread": 31 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2749924, + "thread": 27 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 2838075, + "thread": 4 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 3035110, + "thread": 14 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 3213812, + "thread": 16 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 3359542, + "thread": 2 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 3556070, + "thread": 10 + } + }, + { + "amount": "99.940020978", + "slot": { + "period": 3729947, + "thread": 20 + } + }, + { + "amount": "99.940020966", + "slot": { + "period": 3904327, + "thread": 29 + } + } + ], + "AU12CkP3jEzeXoUrsfKDfJsgL1haKkwhbfzFWxm4P6QzTFR4YGY7m": [ + { + "amount": "81.938724353", + "slot": { + "period": 104708, + "thread": 28 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 294022, + "thread": 16 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 369345, + "thread": 7 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 633619, + "thread": 11 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 726337, + "thread": 12 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 873172, + "thread": 0 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 983566, + "thread": 25 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1221620, + "thread": 8 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1318707, + "thread": 12 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1615412, + "thread": 27 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1666925, + "thread": 7 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1942651, + "thread": 8 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 1980064, + "thread": 6 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2275696, + "thread": 6 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2308434, + "thread": 26 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2529283, + "thread": 3 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2666406, + "thread": 12 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2842520, + "thread": 2 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 2965775, + "thread": 31 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 3203096, + "thread": 29 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 3373387, + "thread": 15 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 3577168, + "thread": 17 + } + }, + { + "amount": "81.938724353", + "slot": { + "period": 3654236, + "thread": 8 + } + }, + { + "amount": "81.938724350", + "slot": { + "period": 3897850, + "thread": 24 + } + } + ], + "AU12CkXM7BGDMWmT2BAbQdWvms2HJtCrjUBq9KAySXWza9VwfRj1A": [ + { + "amount": "219.412893649", + "slot": { + "period": 97860, + "thread": 14 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 290557, + "thread": 29 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 460733, + "thread": 24 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 600566, + "thread": 12 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 742805, + "thread": 5 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 979057, + "thread": 19 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1013336, + "thread": 14 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1203578, + "thread": 23 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1393007, + "thread": 28 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1611819, + "thread": 20 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1658156, + "thread": 31 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 1825699, + "thread": 19 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2072901, + "thread": 12 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2281181, + "thread": 0 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2403253, + "thread": 3 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2568259, + "thread": 18 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2702355, + "thread": 23 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 2938799, + "thread": 26 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 3101711, + "thread": 10 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 3215629, + "thread": 11 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 3376126, + "thread": 10 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 3602011, + "thread": 14 + } + }, + { + "amount": "219.412893649", + "slot": { + "period": 3733411, + "thread": 13 + } + }, + { + "amount": "219.412893657", + "slot": { + "period": 3826696, + "thread": 6 + } + } + ], + "AU12Cm1B62Mv2oyxSSnYaQfwVsKkw9qtnPZDdA3xYZ43fQyQAxH2x": [ + { + "amount": "70.776232982", + "slot": { + "period": 53411, + "thread": 2 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 190230, + "thread": 8 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 327854, + "thread": 24 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 614835, + "thread": 15 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 707340, + "thread": 27 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 956469, + "thread": 4 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1000035, + "thread": 3 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1241849, + "thread": 28 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1407884, + "thread": 7 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1529775, + "thread": 0 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1650336, + "thread": 28 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 1922783, + "thread": 2 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2051664, + "thread": 25 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2244535, + "thread": 10 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2340777, + "thread": 14 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2608852, + "thread": 11 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2722782, + "thread": 10 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2804789, + "thread": 19 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 2997423, + "thread": 2 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 3235998, + "thread": 19 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 3357269, + "thread": 20 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 3517804, + "thread": 11 + } + }, + { + "amount": "70.776232982", + "slot": { + "period": 3724065, + "thread": 25 + } + }, + { + "amount": "70.776232979", + "slot": { + "period": 3812170, + "thread": 16 + } + } + ], + "AU12Cm1eoBfztsEon7ydBeM6vdUhFMvpwFDC4KFi8oo7iFgNDLAfg": [ + { + "amount": "53.852958841", + "slot": { + "period": 136256, + "thread": 28 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 301971, + "thread": 6 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 358890, + "thread": 0 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 632363, + "thread": 1 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 685684, + "thread": 10 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 948617, + "thread": 1 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 999162, + "thread": 31 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 1171106, + "thread": 31 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 1391561, + "thread": 7 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 1575784, + "thread": 3 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 1680598, + "thread": 14 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 1905276, + "thread": 1 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2034916, + "thread": 27 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2206262, + "thread": 7 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2319283, + "thread": 24 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2583407, + "thread": 31 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2644980, + "thread": 30 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 2927159, + "thread": 25 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 3032916, + "thread": 5 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 3218289, + "thread": 4 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 3373582, + "thread": 2 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 3544494, + "thread": 10 + } + }, + { + "amount": "53.852958841", + "slot": { + "period": 3663165, + "thread": 12 + } + }, + { + "amount": "53.852958831", + "slot": { + "period": 3928121, + "thread": 16 + } + } + ], + "AU12CmDM9yXd9svAB6NkupozQDXVEpmRCwF92aKcej72amxtXqhXf": [ + { + "amount": "268.743433591", + "slot": { + "period": 106298, + "thread": 1 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 225321, + "thread": 17 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 381391, + "thread": 15 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 626220, + "thread": 8 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 798646, + "thread": 30 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 874259, + "thread": 23 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1042858, + "thread": 29 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1227967, + "thread": 11 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1466794, + "thread": 4 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1592956, + "thread": 9 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1788237, + "thread": 7 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 1843435, + "thread": 16 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2138496, + "thread": 16 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2164245, + "thread": 31 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2368115, + "thread": 25 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2599515, + "thread": 12 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2712447, + "thread": 27 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 2836782, + "thread": 15 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 3091792, + "thread": 25 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 3162594, + "thread": 10 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 3335411, + "thread": 14 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 3475220, + "thread": 9 + } + }, + { + "amount": "268.743433591", + "slot": { + "period": 3693335, + "thread": 8 + } + }, + { + "amount": "268.743433599", + "slot": { + "period": 3944435, + "thread": 13 + } + } + ], + "AU12CmYbtjYtPBLrK19W54zZNC74T5E6TCgQrEZTAJCEuRS9Zfpsv": [ + { + "amount": "385.961490000", + "slot": { + "period": 146966, + "thread": 5 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 174019, + "thread": 25 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 443264, + "thread": 24 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 617468, + "thread": 26 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 726039, + "thread": 16 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 960852, + "thread": 12 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1104195, + "thread": 20 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1227490, + "thread": 14 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1366704, + "thread": 2 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1541702, + "thread": 21 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1798477, + "thread": 13 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 1869101, + "thread": 28 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2022711, + "thread": 26 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2283464, + "thread": 23 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2331381, + "thread": 24 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2511794, + "thread": 4 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2637353, + "thread": 23 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2864509, + "thread": 16 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 2975378, + "thread": 0 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 3254665, + "thread": 14 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 3355568, + "thread": 5 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 3560713, + "thread": 4 + } + }, + { + "amount": "385.961490000", + "slot": { + "period": 3708013, + "thread": 6 + } + }, + { + "amount": "385.961489991", + "slot": { + "period": 3787011, + "thread": 16 + } + } + ], + "AU12CmjFymxWNXRvJgT7DNsTmVz4WACYM7vgifL65F13hqqcnJ8Ru": [ + { + "amount": "376.308947715", + "slot": { + "period": 96605, + "thread": 16 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 190496, + "thread": 18 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 354252, + "thread": 28 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 560773, + "thread": 16 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 768288, + "thread": 8 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 934370, + "thread": 10 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1001370, + "thread": 1 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1182610, + "thread": 26 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1384885, + "thread": 12 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1646421, + "thread": 21 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1749100, + "thread": 12 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 1811314, + "thread": 0 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2078539, + "thread": 6 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2237818, + "thread": 21 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2458457, + "thread": 18 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2521383, + "thread": 22 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2648200, + "thread": 28 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 2909552, + "thread": 15 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 3079443, + "thread": 18 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 3285511, + "thread": 30 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 3406656, + "thread": 6 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 3480084, + "thread": 16 + } + }, + { + "amount": "376.308947715", + "slot": { + "period": 3627773, + "thread": 31 + } + }, + { + "amount": "376.308947714", + "slot": { + "period": 3816148, + "thread": 25 + } + } + ], + "AU12CmtTQyttdrMW3nQRNVP9qAAeGyzLH8HinXSzX6vDbwsWmF2Ap": [ + { + "amount": "137.130058467", + "slot": { + "period": 39614, + "thread": 17 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 260029, + "thread": 23 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 382912, + "thread": 25 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 540477, + "thread": 8 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 723796, + "thread": 20 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 958244, + "thread": 29 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1051958, + "thread": 20 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1171771, + "thread": 17 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1393496, + "thread": 26 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1550541, + "thread": 20 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1772836, + "thread": 15 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 1926614, + "thread": 29 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2077449, + "thread": 17 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2268200, + "thread": 2 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2395551, + "thread": 16 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2564164, + "thread": 2 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2723530, + "thread": 7 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2910074, + "thread": 16 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 2955877, + "thread": 3 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 3183723, + "thread": 6 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 3449253, + "thread": 15 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 3588633, + "thread": 20 + } + }, + { + "amount": "137.130058467", + "slot": { + "period": 3638491, + "thread": 26 + } + }, + { + "amount": "137.130058461", + "slot": { + "period": 3917719, + "thread": 19 + } + } + ], + "AU12CnUgNizME8ZqjN3m4F3689vmMU4qv3PeUsbbc4odtNXZD4J2Q": [ + { + "amount": "97.581411435", + "slot": { + "period": 108813, + "thread": 1 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 289652, + "thread": 21 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 344717, + "thread": 28 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 621065, + "thread": 9 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 717599, + "thread": 12 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 860234, + "thread": 28 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1124962, + "thread": 2 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1284385, + "thread": 31 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1319606, + "thread": 6 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1493550, + "thread": 28 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1795095, + "thread": 30 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 1947347, + "thread": 2 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2072175, + "thread": 28 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2177779, + "thread": 23 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2390408, + "thread": 12 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2473061, + "thread": 20 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2627654, + "thread": 10 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 2819416, + "thread": 15 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 3071464, + "thread": 4 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 3221408, + "thread": 26 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 3414415, + "thread": 12 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 3455105, + "thread": 29 + } + }, + { + "amount": "97.581411435", + "slot": { + "period": 3749670, + "thread": 11 + } + }, + { + "amount": "97.581411431", + "slot": { + "period": 3781250, + "thread": 23 + } + } + ], + "AU12CnhZS3qigkZk8WtB5anQDywX8wGhQqdm2RyEgYpoxWDreGyUb": [ + { + "amount": "389.021475263", + "slot": { + "period": 30890, + "thread": 10 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 266293, + "thread": 12 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 420360, + "thread": 18 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 622841, + "thread": 27 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 748266, + "thread": 10 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 881530, + "thread": 5 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 988129, + "thread": 0 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 1292666, + "thread": 14 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 1443138, + "thread": 30 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 1581754, + "thread": 9 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 1748600, + "thread": 23 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 1841509, + "thread": 9 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2140914, + "thread": 3 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2194819, + "thread": 14 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2373719, + "thread": 16 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2560058, + "thread": 14 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2747910, + "thread": 2 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2856540, + "thread": 5 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 2978161, + "thread": 18 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 3254903, + "thread": 19 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 3370594, + "thread": 13 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 3616835, + "thread": 9 + } + }, + { + "amount": "389.021475263", + "slot": { + "period": 3644126, + "thread": 22 + } + }, + { + "amount": "389.021475252", + "slot": { + "period": 3925100, + "thread": 29 + } + } + ], + "AU12CoAHrVTNR63YfBHEsEHjvNqoBC6QiMVwpU9MmrxBs9mHmLhWC": [ + { + "amount": "223.938054104", + "slot": { + "period": 35736, + "thread": 10 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 227162, + "thread": 21 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 415649, + "thread": 0 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 533896, + "thread": 3 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 818931, + "thread": 18 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 932681, + "thread": 23 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1071050, + "thread": 22 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1158464, + "thread": 24 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1381920, + "thread": 29 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1626138, + "thread": 16 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1691670, + "thread": 1 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 1922107, + "thread": 27 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2112076, + "thread": 4 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2273936, + "thread": 21 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2419129, + "thread": 9 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2620621, + "thread": 7 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2709791, + "thread": 1 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2901265, + "thread": 26 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 2975368, + "thread": 27 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 3266883, + "thread": 2 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 3386826, + "thread": 14 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 3459908, + "thread": 30 + } + }, + { + "amount": "223.938054104", + "slot": { + "period": 3768253, + "thread": 20 + } + }, + { + "amount": "223.938054097", + "slot": { + "period": 3880627, + "thread": 30 + } + } + ], + "AU12Cp2R2WVEgSmkevFh9gyiALd7p25t8vW1pdNGfNght2cAyhchr": [ + { + "amount": "267.236990901", + "slot": { + "period": 25638, + "thread": 0 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 224755, + "thread": 30 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 427015, + "thread": 3 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 633310, + "thread": 20 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 723442, + "thread": 19 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 837202, + "thread": 11 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1071819, + "thread": 2 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1251554, + "thread": 21 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1373442, + "thread": 28 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1634484, + "thread": 20 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1664446, + "thread": 0 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1882629, + "thread": 14 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 1981335, + "thread": 28 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 2253860, + "thread": 28 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 2440859, + "thread": 1 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 2574106, + "thread": 11 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 2776483, + "thread": 25 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 2830985, + "thread": 27 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 3051683, + "thread": 25 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 3227447, + "thread": 10 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 3371045, + "thread": 10 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 3617372, + "thread": 0 + } + }, + { + "amount": "267.236990901", + "slot": { + "period": 3718146, + "thread": 12 + } + }, + { + "amount": "267.236990893", + "slot": { + "period": 3888621, + "thread": 20 + } + } + ], + "AU12CpimofRHd3PvvY7mUTwCtA8QuSKV4txBNBH8XHQ4NnGMAzUUb": [ + { + "amount": "288.997029400", + "slot": { + "period": 92525, + "thread": 17 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 226308, + "thread": 9 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 489682, + "thread": 8 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 579569, + "thread": 17 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 656997, + "thread": 13 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 923922, + "thread": 23 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1055330, + "thread": 20 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1192840, + "thread": 5 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1414890, + "thread": 24 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1526756, + "thread": 4 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1660791, + "thread": 25 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1962285, + "thread": 8 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 1999405, + "thread": 14 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 2290826, + "thread": 31 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 2316855, + "thread": 29 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 2529540, + "thread": 30 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 2754948, + "thread": 22 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 2855991, + "thread": 14 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 3090198, + "thread": 1 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 3176138, + "thread": 6 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 3418923, + "thread": 12 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 3572493, + "thread": 13 + } + }, + { + "amount": "288.997029400", + "slot": { + "period": 3708378, + "thread": 5 + } + }, + { + "amount": "288.997029409", + "slot": { + "period": 3860848, + "thread": 18 + } + } + ], + "AU12CpynWWxjvYPBB5MJ12nCnqutTFX5uPG6SKudHHpeTpwEaR3d6": [ + { + "amount": "373.561162082", + "slot": { + "period": 108520, + "thread": 22 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 225847, + "thread": 13 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 431355, + "thread": 17 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 554576, + "thread": 19 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 777250, + "thread": 20 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 927256, + "thread": 23 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1136837, + "thread": 31 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1172549, + "thread": 18 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1328045, + "thread": 1 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1611374, + "thread": 9 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1804644, + "thread": 2 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 1812811, + "thread": 18 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2030245, + "thread": 25 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2218997, + "thread": 9 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2327858, + "thread": 11 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2557418, + "thread": 5 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2656686, + "thread": 17 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 2878602, + "thread": 7 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 3008748, + "thread": 30 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 3271355, + "thread": 30 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 3345845, + "thread": 27 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 3485001, + "thread": 11 + } + }, + { + "amount": "373.561162082", + "slot": { + "period": 3637565, + "thread": 2 + } + }, + { + "amount": "373.561162085", + "slot": { + "period": 3895430, + "thread": 12 + } + } + ], + "AU12Cr1hbwA5eG76X8GEXggjxKWX4Ea9YRRoxUAXGiP8oSVZiN77X": [ + { + "amount": "309.753866543", + "slot": { + "period": 132453, + "thread": 1 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 210938, + "thread": 25 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 444311, + "thread": 12 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 640344, + "thread": 3 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 750836, + "thread": 8 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 930409, + "thread": 23 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1101424, + "thread": 24 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1280982, + "thread": 21 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1468854, + "thread": 13 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1487240, + "thread": 12 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1661598, + "thread": 13 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 1949001, + "thread": 9 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2111977, + "thread": 1 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2154322, + "thread": 25 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2386579, + "thread": 18 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2479028, + "thread": 17 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2633734, + "thread": 14 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 2886794, + "thread": 0 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 3017202, + "thread": 27 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 3249818, + "thread": 3 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 3423747, + "thread": 6 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 3567192, + "thread": 10 + } + }, + { + "amount": "309.753866543", + "slot": { + "period": 3661367, + "thread": 27 + } + }, + { + "amount": "309.753866551", + "slot": { + "period": 3909249, + "thread": 26 + } + } + ], + "AU12CrLCEZHDU9GQ5eHFX8bx4wiWUE3GJJwiomEUEzxjyi7RozLs9": [ + { + "amount": "272.872156407", + "slot": { + "period": 31546, + "thread": 11 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 316635, + "thread": 23 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 367777, + "thread": 29 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 570830, + "thread": 13 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 713296, + "thread": 18 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 915259, + "thread": 14 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1103519, + "thread": 30 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1225793, + "thread": 19 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1425406, + "thread": 12 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1519981, + "thread": 18 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1805132, + "thread": 8 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 1922971, + "thread": 10 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2097915, + "thread": 3 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2148707, + "thread": 14 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2302899, + "thread": 26 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2588071, + "thread": 7 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2723843, + "thread": 8 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 2896244, + "thread": 10 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 3010242, + "thread": 12 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 3276121, + "thread": 3 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 3442188, + "thread": 8 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 3501174, + "thread": 28 + } + }, + { + "amount": "272.872156407", + "slot": { + "period": 3752341, + "thread": 15 + } + }, + { + "amount": "272.872156414", + "slot": { + "period": 3809731, + "thread": 21 + } + } + ], + "AU12CrPrTHmSaGXLS14orM8x8dFpn5detbDEBKK5Y5hqhfsGdH6iW": [ + { + "amount": "55.926635488", + "slot": { + "period": 70080, + "thread": 15 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 275559, + "thread": 10 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 397212, + "thread": 29 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 637115, + "thread": 3 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 780585, + "thread": 27 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 865221, + "thread": 14 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 990860, + "thread": 31 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 1288889, + "thread": 10 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 1469531, + "thread": 24 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 1642889, + "thread": 1 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 1744893, + "thread": 9 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 1872885, + "thread": 2 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2037869, + "thread": 0 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2270180, + "thread": 2 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2458627, + "thread": 8 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2473953, + "thread": 26 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2774520, + "thread": 15 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 2885012, + "thread": 20 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 3064142, + "thread": 26 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 3235980, + "thread": 11 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 3376558, + "thread": 13 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 3457242, + "thread": 12 + } + }, + { + "amount": "55.926635488", + "slot": { + "period": 3705891, + "thread": 0 + } + }, + { + "amount": "55.926635483", + "slot": { + "period": 3877146, + "thread": 22 + } + } + ], + "AU12Craupcg7xG3ihmuLJQn2gFGGemRoKiaGrsP5uzj8TVjiTqXjr": [ + { + "amount": "237.723262257", + "slot": { + "period": 106859, + "thread": 5 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 217990, + "thread": 13 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 429299, + "thread": 23 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 580930, + "thread": 12 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 722291, + "thread": 12 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 825879, + "thread": 8 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1003338, + "thread": 0 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1242865, + "thread": 12 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1462436, + "thread": 5 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1549348, + "thread": 8 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1728859, + "thread": 4 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 1952288, + "thread": 19 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2066579, + "thread": 20 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2248386, + "thread": 11 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2444557, + "thread": 12 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2502422, + "thread": 30 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2789071, + "thread": 14 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2952427, + "thread": 27 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 2956541, + "thread": 28 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 3256882, + "thread": 28 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 3443650, + "thread": 15 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 3464475, + "thread": 27 + } + }, + { + "amount": "237.723262257", + "slot": { + "period": 3725832, + "thread": 8 + } + }, + { + "amount": "237.723262265", + "slot": { + "period": 3782138, + "thread": 12 + } + } + ], + "AU12Crr16PzGGaMiztGCVK2HoMvv3LiLrYtM3efL7y65Di8xCU6WD": [ + { + "amount": "425.144868091", + "slot": { + "period": 43756, + "thread": 22 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 307472, + "thread": 11 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 406729, + "thread": 21 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 517676, + "thread": 31 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 689124, + "thread": 2 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 974901, + "thread": 20 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1046489, + "thread": 29 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1264230, + "thread": 5 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1322681, + "thread": 6 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1497626, + "thread": 3 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1654446, + "thread": 8 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 1966815, + "thread": 19 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2108073, + "thread": 13 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2243425, + "thread": 2 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2407532, + "thread": 12 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2619185, + "thread": 25 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2694561, + "thread": 6 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 2925802, + "thread": 16 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 3007869, + "thread": 15 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 3168369, + "thread": 15 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 3371005, + "thread": 30 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 3479114, + "thread": 31 + } + }, + { + "amount": "425.144868091", + "slot": { + "period": 3627094, + "thread": 0 + } + }, + { + "amount": "425.144868093", + "slot": { + "period": 3785340, + "thread": 16 + } + } + ], + "AU12CsspgoReNEanYg1je6PNPpiL5jR28uwkLJvxbcVmCDoPDZSAU": [ + { + "amount": "87.600622694", + "slot": { + "period": 87082, + "thread": 15 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 293478, + "thread": 17 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 430415, + "thread": 20 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 611417, + "thread": 29 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 815660, + "thread": 24 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 966358, + "thread": 25 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1061281, + "thread": 2 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1189564, + "thread": 30 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1404234, + "thread": 7 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1642213, + "thread": 8 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1715893, + "thread": 1 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 1867008, + "thread": 11 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2108684, + "thread": 3 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2290974, + "thread": 10 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2460405, + "thread": 4 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2590962, + "thread": 29 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2721996, + "thread": 19 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 2794671, + "thread": 13 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 3061689, + "thread": 21 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 3250733, + "thread": 5 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 3441228, + "thread": 3 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 3487165, + "thread": 28 + } + }, + { + "amount": "87.600622694", + "slot": { + "period": 3652126, + "thread": 4 + } + }, + { + "amount": "87.600622705", + "slot": { + "period": 3945012, + "thread": 21 + } + } + ], + "AU12Csx98x5qP1tnji5ZEaTGZDnr3G3TkKTxdceaqeWiPUz1gAm6V": [ + { + "amount": "147.920590078", + "slot": { + "period": 90845, + "thread": 31 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 271558, + "thread": 1 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 344934, + "thread": 23 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 647191, + "thread": 12 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 657186, + "thread": 31 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 938915, + "thread": 4 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1065986, + "thread": 19 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1312181, + "thread": 12 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1418695, + "thread": 15 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1607080, + "thread": 20 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1754443, + "thread": 5 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 1872944, + "thread": 16 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2020331, + "thread": 27 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2157722, + "thread": 4 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2354284, + "thread": 13 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2529103, + "thread": 12 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2634132, + "thread": 10 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 2948481, + "thread": 14 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 3118949, + "thread": 27 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 3131315, + "thread": 8 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 3414743, + "thread": 5 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 3478224, + "thread": 6 + } + }, + { + "amount": "147.920590078", + "slot": { + "period": 3738087, + "thread": 17 + } + }, + { + "amount": "147.920590090", + "slot": { + "period": 3804559, + "thread": 14 + } + } + ], + "AU12CtA62QztrihRuayt58H3k9aNK8BJuarqbwd7nhYh38tjuLuSz": [ + { + "amount": "307.964730753", + "slot": { + "period": 127079, + "thread": 5 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 267299, + "thread": 27 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 333505, + "thread": 18 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 515304, + "thread": 27 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 768342, + "thread": 23 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 841800, + "thread": 16 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1103236, + "thread": 22 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1203747, + "thread": 31 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1373799, + "thread": 3 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1574307, + "thread": 6 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1804811, + "thread": 4 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1935294, + "thread": 24 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 1998998, + "thread": 25 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 2257476, + "thread": 27 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 2301399, + "thread": 17 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 2620290, + "thread": 26 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 2650124, + "thread": 13 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 2941023, + "thread": 30 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 3110825, + "thread": 29 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 3287437, + "thread": 1 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 3363593, + "thread": 3 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 3510553, + "thread": 16 + } + }, + { + "amount": "307.964730753", + "slot": { + "period": 3751459, + "thread": 19 + } + }, + { + "amount": "307.964730746", + "slot": { + "period": 3848867, + "thread": 18 + } + } + ], + "AU12Ctr5dmSMQuvDTKdnLct7obVGkxJxikifLzZfJLyiYAX61JSg2": [ + { + "amount": "97.107498067", + "slot": { + "period": 16002, + "thread": 10 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 230432, + "thread": 15 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 327332, + "thread": 1 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 510575, + "thread": 29 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 735509, + "thread": 24 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 952331, + "thread": 5 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1064491, + "thread": 26 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1222964, + "thread": 20 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1367971, + "thread": 5 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1506316, + "thread": 7 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1668102, + "thread": 26 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 1946766, + "thread": 15 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2064096, + "thread": 0 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2236168, + "thread": 26 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2360355, + "thread": 12 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2508132, + "thread": 15 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2785141, + "thread": 21 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 2797259, + "thread": 18 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 3087337, + "thread": 31 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 3159927, + "thread": 27 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 3340336, + "thread": 6 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 3596601, + "thread": 12 + } + }, + { + "amount": "97.107498067", + "slot": { + "period": 3619137, + "thread": 13 + } + }, + { + "amount": "97.107498074", + "slot": { + "period": 3859179, + "thread": 19 + } + } + ], + "AU12CvBsUxNmLbhpDTGnstVin4Jkt6xYCP5S67Av72huKxVxv8Kg8": [ + { + "amount": "212.163512882", + "slot": { + "period": 75582, + "thread": 17 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 218906, + "thread": 10 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 450676, + "thread": 16 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 559120, + "thread": 3 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 739735, + "thread": 17 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 836232, + "thread": 1 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1049588, + "thread": 9 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1228428, + "thread": 29 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1340335, + "thread": 15 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1615277, + "thread": 2 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1782116, + "thread": 8 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 1905819, + "thread": 7 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2035148, + "thread": 0 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2190603, + "thread": 29 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2450363, + "thread": 21 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2471925, + "thread": 1 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2646110, + "thread": 16 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2916313, + "thread": 29 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 2990263, + "thread": 22 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 3284583, + "thread": 7 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 3303135, + "thread": 11 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 3557799, + "thread": 12 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 3683125, + "thread": 20 + } + }, + { + "amount": "212.163512882", + "slot": { + "period": 3883805, + "thread": 28 + } + } + ], + "AU12CwcmdqTmiYzBoNn9TUM4S4vN3KLc4RWxvNScj7gTq4nsA8xgS": [ + { + "amount": "559.592518588", + "slot": { + "period": 91879, + "thread": 11 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 235280, + "thread": 3 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 443154, + "thread": 18 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 532673, + "thread": 19 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 707565, + "thread": 1 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 941443, + "thread": 0 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1115269, + "thread": 4 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1254233, + "thread": 20 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1402184, + "thread": 4 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1600982, + "thread": 18 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1780068, + "thread": 19 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 1919086, + "thread": 13 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2070902, + "thread": 12 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2227473, + "thread": 11 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2306631, + "thread": 23 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2539909, + "thread": 9 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2771986, + "thread": 8 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 2858462, + "thread": 3 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 3112116, + "thread": 7 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 3268868, + "thread": 20 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 3379914, + "thread": 24 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 3581571, + "thread": 11 + } + }, + { + "amount": "559.592518588", + "slot": { + "period": 3779968, + "thread": 31 + } + }, + { + "amount": "559.592518581", + "slot": { + "period": 3942729, + "thread": 24 + } + } + ], + "AU12Cx2z5tSNxmD6mD1bcDuEqhWJWG2iXBDjk2q5L52VWUvngtF9R": [ + { + "amount": "292.928711334", + "slot": { + "period": 65408, + "thread": 16 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 298405, + "thread": 6 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 430464, + "thread": 23 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 574293, + "thread": 30 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 806904, + "thread": 0 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 851271, + "thread": 16 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1032973, + "thread": 7 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1227780, + "thread": 15 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1406331, + "thread": 2 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1480668, + "thread": 31 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1788429, + "thread": 2 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 1954902, + "thread": 30 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2046934, + "thread": 25 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2173058, + "thread": 10 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2446614, + "thread": 7 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2599475, + "thread": 21 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2654825, + "thread": 6 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 2817242, + "thread": 1 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 3063777, + "thread": 30 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 3216333, + "thread": 16 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 3398358, + "thread": 3 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 3467151, + "thread": 4 + } + }, + { + "amount": "292.928711334", + "slot": { + "period": 3642590, + "thread": 16 + } + }, + { + "amount": "292.928711335", + "slot": { + "period": 3817381, + "thread": 25 + } + } + ], + "AU12CxfHzDXfPesprFa7icRps52U26AuyUvu1vdFmQuJGJ4ujmyN2": [ + { + "amount": "227.382843147", + "slot": { + "period": 158845, + "thread": 8 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 243208, + "thread": 26 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 412247, + "thread": 26 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 532139, + "thread": 9 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 664000, + "thread": 3 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 838195, + "thread": 29 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1044011, + "thread": 21 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1220118, + "thread": 21 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1361380, + "thread": 4 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1516145, + "thread": 30 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1729911, + "thread": 31 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 1904683, + "thread": 9 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2065049, + "thread": 8 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2226263, + "thread": 14 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2341221, + "thread": 27 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2563136, + "thread": 13 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2680465, + "thread": 19 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 2803265, + "thread": 30 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 3060052, + "thread": 4 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 3222352, + "thread": 27 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 3376735, + "thread": 10 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 3495500, + "thread": 31 + } + }, + { + "amount": "227.382843147", + "slot": { + "period": 3704011, + "thread": 14 + } + }, + { + "amount": "227.382843140", + "slot": { + "period": 3803939, + "thread": 28 + } + } + ], + "AU12CyBdFhxptefzyUNXCtdH9SgfLHwfTFLABN5mtiqWnA3Ez7v7P": [ + { + "amount": "484.915672492", + "slot": { + "period": 102914, + "thread": 13 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 199738, + "thread": 27 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 431068, + "thread": 9 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 602995, + "thread": 3 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 668920, + "thread": 4 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 884446, + "thread": 16 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 985487, + "thread": 1 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1161980, + "thread": 2 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1349235, + "thread": 5 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1485187, + "thread": 4 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1782006, + "thread": 15 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1853308, + "thread": 30 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 1993912, + "thread": 7 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 2293755, + "thread": 31 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 2305594, + "thread": 0 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 2488692, + "thread": 8 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 2737074, + "thread": 18 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 2858796, + "thread": 13 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 3083751, + "thread": 5 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 3140995, + "thread": 8 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 3363130, + "thread": 7 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 3536551, + "thread": 20 + } + }, + { + "amount": "484.915672492", + "slot": { + "period": 3640135, + "thread": 16 + } + }, + { + "amount": "484.915672496", + "slot": { + "period": 3913687, + "thread": 1 + } + } + ], + "AU12CydPC1bneJcgmTtvw7GGsyHgXvoAkgfX8rQFaDJYkSMQChHgu": [ + { + "amount": "67.435012014", + "slot": { + "period": 101990, + "thread": 21 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 265940, + "thread": 28 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 474605, + "thread": 20 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 639554, + "thread": 0 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 816604, + "thread": 27 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 905296, + "thread": 27 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1146312, + "thread": 28 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1219944, + "thread": 0 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1431178, + "thread": 31 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1503617, + "thread": 18 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1741071, + "thread": 6 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1945891, + "thread": 25 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 1998536, + "thread": 24 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 2160304, + "thread": 31 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 2456378, + "thread": 11 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 2548890, + "thread": 21 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 2730799, + "thread": 1 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 2885703, + "thread": 29 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 3026870, + "thread": 21 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 3250796, + "thread": 3 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 3324839, + "thread": 9 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 3514817, + "thread": 7 + } + }, + { + "amount": "67.435012014", + "slot": { + "period": 3688750, + "thread": 19 + } + }, + { + "amount": "67.435012021", + "slot": { + "period": 3921056, + "thread": 12 + } + } + ], + "AU12CzGsqVhHR9cGgoxde2XPGKbjUn8sYyZcSSRahA1hn3SDdjMvH": [ + { + "amount": "206.461458608", + "slot": { + "period": 85142, + "thread": 23 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 185553, + "thread": 0 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 389153, + "thread": 4 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 568467, + "thread": 19 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 735130, + "thread": 10 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 925325, + "thread": 16 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1124883, + "thread": 7 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1228755, + "thread": 30 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1355097, + "thread": 12 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1603485, + "thread": 26 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1776013, + "thread": 16 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 1861258, + "thread": 21 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2100810, + "thread": 27 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2267195, + "thread": 24 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2324504, + "thread": 29 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2574166, + "thread": 3 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2675758, + "thread": 26 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2950084, + "thread": 11 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 2957381, + "thread": 31 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 3287853, + "thread": 14 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 3385261, + "thread": 13 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 3496511, + "thread": 11 + } + }, + { + "amount": "206.461458608", + "slot": { + "period": 3729854, + "thread": 29 + } + }, + { + "amount": "206.461458597", + "slot": { + "period": 3805983, + "thread": 10 + } + } + ], + "AU12CzfFQYp8vDtCd8BE2eJaHnBL1oEJXgLnZ1aJaFs1MGgTJvKfv": [ + { + "amount": "135.924827561", + "slot": { + "period": 143804, + "thread": 13 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 263348, + "thread": 24 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 407892, + "thread": 27 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 632815, + "thread": 30 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 779095, + "thread": 3 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 924116, + "thread": 23 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 984039, + "thread": 15 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 1274350, + "thread": 16 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 1461934, + "thread": 26 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 1493183, + "thread": 19 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 1700526, + "thread": 13 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 1918859, + "thread": 27 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2008813, + "thread": 10 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2228435, + "thread": 16 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2429295, + "thread": 18 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2578417, + "thread": 11 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2694891, + "thread": 8 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 2924407, + "thread": 15 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 3045793, + "thread": 18 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 3277680, + "thread": 1 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 3445273, + "thread": 11 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 3523307, + "thread": 18 + } + }, + { + "amount": "135.924827561", + "slot": { + "period": 3743477, + "thread": 30 + } + }, + { + "amount": "135.924827568", + "slot": { + "period": 3883325, + "thread": 3 + } + } + ], + "AU12D12q7K96NJH96eFFv1gW936xNy5WD3P9KzwcJNeM2bisBMehe": [ + { + "amount": "132.992882805", + "slot": { + "period": 52155, + "thread": 13 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 288830, + "thread": 22 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 396021, + "thread": 24 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 521073, + "thread": 29 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 759817, + "thread": 14 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 859496, + "thread": 28 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1022256, + "thread": 17 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1210666, + "thread": 21 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1420804, + "thread": 19 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1594073, + "thread": 2 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1797457, + "thread": 11 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 1920718, + "thread": 2 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2098798, + "thread": 22 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2259343, + "thread": 5 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2302319, + "thread": 0 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2493406, + "thread": 27 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2786052, + "thread": 21 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2848571, + "thread": 11 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 2995107, + "thread": 15 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 3222580, + "thread": 25 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 3354585, + "thread": 23 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 3455207, + "thread": 9 + } + }, + { + "amount": "132.992882805", + "slot": { + "period": 3760581, + "thread": 0 + } + }, + { + "amount": "132.992882798", + "slot": { + "period": 3784734, + "thread": 16 + } + } + ], + "AU12D1EkhgkWJQgswdABJxWNzGngjwCe8DrwPtvjGnKPkMp1rKn8g": [ + { + "amount": "124.342650368", + "slot": { + "period": 114587, + "thread": 0 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 265354, + "thread": 29 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 389750, + "thread": 30 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 650886, + "thread": 31 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 661524, + "thread": 11 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 946010, + "thread": 0 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1056033, + "thread": 9 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1266503, + "thread": 21 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1324090, + "thread": 0 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1501546, + "thread": 12 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1808642, + "thread": 18 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 1830047, + "thread": 3 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2038919, + "thread": 12 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2260960, + "thread": 2 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2436218, + "thread": 30 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2501424, + "thread": 28 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2659843, + "thread": 23 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2793049, + "thread": 0 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 2960187, + "thread": 20 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 3210170, + "thread": 31 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 3417188, + "thread": 25 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 3488644, + "thread": 2 + } + }, + { + "amount": "124.342650368", + "slot": { + "period": 3643273, + "thread": 13 + } + }, + { + "amount": "124.342650378", + "slot": { + "period": 3889189, + "thread": 19 + } + } + ], + "AU12D1X3UAP2YXDBs5Duhr5bwRANVKPRR66z9nhKdY7XpUyjyATC8": [ + { + "amount": "82.342170993", + "slot": { + "period": 100580, + "thread": 25 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 187063, + "thread": 30 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 445965, + "thread": 19 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 649339, + "thread": 15 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 655139, + "thread": 11 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 941987, + "thread": 10 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1111648, + "thread": 11 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1264539, + "thread": 3 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1387162, + "thread": 18 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1566241, + "thread": 30 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1800498, + "thread": 18 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 1933515, + "thread": 13 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2129855, + "thread": 3 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2158360, + "thread": 2 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2396052, + "thread": 3 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2516942, + "thread": 25 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2702400, + "thread": 7 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2939710, + "thread": 0 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 2955393, + "thread": 29 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 3131684, + "thread": 31 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 3374131, + "thread": 16 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 3483552, + "thread": 20 + } + }, + { + "amount": "82.342170993", + "slot": { + "period": 3629371, + "thread": 0 + } + }, + { + "amount": "82.342171004", + "slot": { + "period": 3922629, + "thread": 13 + } + } + ], + "AU12D2cHMQjVS7Yh2yHczBbkdvgQMfB9v34QCLy2aPUvF35pPTLLu": [ + { + "amount": "289.919115406", + "slot": { + "period": 86284, + "thread": 0 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 213815, + "thread": 14 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 471410, + "thread": 7 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 589168, + "thread": 9 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 683358, + "thread": 2 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 904119, + "thread": 8 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1075394, + "thread": 23 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1186142, + "thread": 25 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1413993, + "thread": 27 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1591705, + "thread": 2 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1712199, + "thread": 29 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 1932935, + "thread": 24 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2132405, + "thread": 29 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2188667, + "thread": 2 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2317959, + "thread": 28 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2477105, + "thread": 19 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2750559, + "thread": 14 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 2894256, + "thread": 29 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 3105583, + "thread": 10 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 3242616, + "thread": 28 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 3294345, + "thread": 23 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 3535116, + "thread": 27 + } + }, + { + "amount": "289.919115406", + "slot": { + "period": 3769440, + "thread": 16 + } + }, + { + "amount": "289.919115395", + "slot": { + "period": 3853279, + "thread": 2 + } + } + ], + "AU12D3MtyG94EUVVeLwFyRQd5WuhcdPktrHEzm3v1L1gdH7TQJFS6": [ + { + "amount": "138.331859667", + "slot": { + "period": 73799, + "thread": 19 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 264359, + "thread": 27 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 431507, + "thread": 18 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 500142, + "thread": 2 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 791609, + "thread": 5 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 972555, + "thread": 27 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1089106, + "thread": 12 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1169754, + "thread": 20 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1367992, + "thread": 6 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1515262, + "thread": 22 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1720760, + "thread": 21 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 1818701, + "thread": 3 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2073938, + "thread": 12 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2272622, + "thread": 10 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2329681, + "thread": 11 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2509477, + "thread": 23 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2626701, + "thread": 31 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 2890373, + "thread": 19 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3072663, + "thread": 24 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3177643, + "thread": 22 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3305768, + "thread": 12 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3482019, + "thread": 17 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3620634, + "thread": 12 + } + }, + { + "amount": "138.331859667", + "slot": { + "period": 3895402, + "thread": 30 + } + } + ], + "AU12D3NzsjX9msBh9wS43uywQFUTX2VHdiWXmArk94Krgnd6Tp2V": [ + { + "amount": "120.666961863", + "slot": { + "period": 92064, + "thread": 14 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 306411, + "thread": 10 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 358562, + "thread": 19 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 557264, + "thread": 24 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 667528, + "thread": 20 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 851942, + "thread": 31 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1142588, + "thread": 5 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1284112, + "thread": 18 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1335033, + "thread": 23 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1588918, + "thread": 31 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1752598, + "thread": 22 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 1825859, + "thread": 17 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2010402, + "thread": 13 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2200560, + "thread": 14 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2421704, + "thread": 12 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2522860, + "thread": 1 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2782721, + "thread": 20 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 2882850, + "thread": 2 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 3087883, + "thread": 18 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 3164362, + "thread": 27 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 3340426, + "thread": 15 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 3537252, + "thread": 28 + } + }, + { + "amount": "120.666961863", + "slot": { + "period": 3743819, + "thread": 7 + } + }, + { + "amount": "120.666961864", + "slot": { + "period": 3780443, + "thread": 18 + } + } + ], + "AU12D47yfS3Xybp4txfzXPF5sieminW4eMPUyV83shkv4bn1DjR8x": [ + { + "amount": "193.090567389", + "slot": { + "period": 131231, + "thread": 31 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 247413, + "thread": 11 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 447641, + "thread": 4 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 505282, + "thread": 16 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 674690, + "thread": 1 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 938093, + "thread": 9 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1070570, + "thread": 29 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1302164, + "thread": 28 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1321587, + "thread": 23 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1542174, + "thread": 10 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1738385, + "thread": 18 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 1828958, + "thread": 1 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2128339, + "thread": 23 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2207905, + "thread": 20 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2393952, + "thread": 15 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2478003, + "thread": 15 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2715789, + "thread": 18 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 2894705, + "thread": 24 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 3012916, + "thread": 4 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 3159533, + "thread": 12 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 3444110, + "thread": 24 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 3613519, + "thread": 12 + } + }, + { + "amount": "193.090567389", + "slot": { + "period": 3722604, + "thread": 15 + } + }, + { + "amount": "193.090567391", + "slot": { + "period": 3838924, + "thread": 3 + } + } + ], + "AU12D4WZUHXv5cYjz6SZrbgHpaMky5y7bqTFSL4fbvffSAtTQB5Rk": [ + { + "amount": "94.171713412", + "slot": { + "period": 154789, + "thread": 19 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 261710, + "thread": 23 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 442592, + "thread": 28 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 573721, + "thread": 1 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 811621, + "thread": 23 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 879002, + "thread": 8 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1146269, + "thread": 11 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1293105, + "thread": 5 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1395913, + "thread": 25 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1513944, + "thread": 19 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1713799, + "thread": 16 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1872909, + "thread": 5 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 1980774, + "thread": 26 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 2196418, + "thread": 22 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 2421904, + "thread": 24 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 2528285, + "thread": 3 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 2667301, + "thread": 1 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 2870022, + "thread": 1 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 3016845, + "thread": 11 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 3160353, + "thread": 16 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 3347377, + "thread": 19 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 3594462, + "thread": 28 + } + }, + { + "amount": "94.171713412", + "slot": { + "period": 3684931, + "thread": 9 + } + }, + { + "amount": "94.171713406", + "slot": { + "period": 3921957, + "thread": 19 + } + } + ], + "AU12D4uoA3DRYJs7ALfNExtmRK6A5s2yMuJMtLSsWxGJsru5T2ELo": [ + { + "amount": "187.729193154", + "slot": { + "period": 132024, + "thread": 21 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 217285, + "thread": 17 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 416890, + "thread": 12 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 622267, + "thread": 28 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 675487, + "thread": 16 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 935024, + "thread": 12 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1067470, + "thread": 13 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1271680, + "thread": 8 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1419896, + "thread": 30 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1569165, + "thread": 20 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1730093, + "thread": 20 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1835246, + "thread": 1 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 1996609, + "thread": 0 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 2183183, + "thread": 22 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 2295324, + "thread": 18 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 2486698, + "thread": 4 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 2721442, + "thread": 2 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 2869527, + "thread": 31 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 3015250, + "thread": 19 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 3278037, + "thread": 19 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 3422664, + "thread": 7 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 3490031, + "thread": 29 + } + }, + { + "amount": "187.729193154", + "slot": { + "period": 3703326, + "thread": 13 + } + }, + { + "amount": "187.729193153", + "slot": { + "period": 3880766, + "thread": 26 + } + } + ], + "AU12D5oGRhykLXZZgP1otEP6WS8pj43HMeRJaskrgxngEGz2mq81k": [ + { + "amount": "233.005527113", + "slot": { + "period": 76793, + "thread": 14 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 312241, + "thread": 6 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 449733, + "thread": 7 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 623739, + "thread": 11 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 761891, + "thread": 20 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 877528, + "thread": 2 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1144379, + "thread": 13 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1179589, + "thread": 13 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1443011, + "thread": 3 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1503003, + "thread": 16 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1702791, + "thread": 18 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 1938716, + "thread": 8 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2141871, + "thread": 31 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2292100, + "thread": 16 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2455819, + "thread": 18 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2561209, + "thread": 18 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2747774, + "thread": 27 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 2806128, + "thread": 11 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 3092245, + "thread": 1 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 3250599, + "thread": 24 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 3403707, + "thread": 12 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 3532274, + "thread": 9 + } + }, + { + "amount": "233.005527113", + "slot": { + "period": 3654505, + "thread": 4 + } + }, + { + "amount": "233.005527102", + "slot": { + "period": 3908624, + "thread": 10 + } + } + ], + "AU12D7uJ9CX3WVacPFcH1HJ9vASmu84ChqMQAy1Dn1QPu6SkHdvvT": [ + { + "amount": "257.259734033", + "slot": { + "period": 103492, + "thread": 24 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 245519, + "thread": 20 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 447694, + "thread": 4 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 517270, + "thread": 16 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 772852, + "thread": 12 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 966499, + "thread": 4 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1140174, + "thread": 22 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1152394, + "thread": 5 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1342995, + "thread": 19 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1550232, + "thread": 26 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1802789, + "thread": 29 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 1887619, + "thread": 31 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2005474, + "thread": 4 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2168785, + "thread": 28 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2419747, + "thread": 28 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2610559, + "thread": 18 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2705527, + "thread": 19 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2847590, + "thread": 25 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 2962748, + "thread": 25 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 3140684, + "thread": 29 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 3405552, + "thread": 28 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 3594290, + "thread": 12 + } + }, + { + "amount": "257.259734033", + "slot": { + "period": 3646093, + "thread": 19 + } + }, + { + "amount": "257.259734041", + "slot": { + "period": 3874205, + "thread": 23 + } + } + ], + "AU12D8i5hB1uV7Ryp8fbSemz5r4M8ovo18JoysQyKeNjpjziBsweF": [ + { + "amount": "127.228410906", + "slot": { + "period": 131621, + "thread": 13 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 291406, + "thread": 22 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 407933, + "thread": 1 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 598567, + "thread": 12 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 790578, + "thread": 27 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 843531, + "thread": 12 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1057346, + "thread": 23 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1299092, + "thread": 20 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1357715, + "thread": 27 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1580602, + "thread": 23 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1758804, + "thread": 18 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 1906151, + "thread": 6 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2003338, + "thread": 7 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2189343, + "thread": 27 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2443022, + "thread": 23 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2502095, + "thread": 8 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2731584, + "thread": 19 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 2893589, + "thread": 5 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 3043746, + "thread": 26 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 3149297, + "thread": 26 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 3352467, + "thread": 30 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 3483258, + "thread": 17 + } + }, + { + "amount": "127.228410906", + "slot": { + "period": 3765821, + "thread": 13 + } + }, + { + "amount": "127.228410915", + "slot": { + "period": 3904250, + "thread": 1 + } + } + ], + "AU12D8q9sSLr2uB3sbT2vYDYwmjzZDabUcyTahC87WVhbCGQDxH2z": [ + { + "amount": "150.145446163", + "slot": { + "period": 165403, + "thread": 3 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 248236, + "thread": 20 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 425940, + "thread": 9 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 612247, + "thread": 29 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 702107, + "thread": 31 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 935167, + "thread": 27 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1083034, + "thread": 17 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1211734, + "thread": 5 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1426855, + "thread": 21 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1593395, + "thread": 21 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1745561, + "thread": 10 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 1944995, + "thread": 1 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2018695, + "thread": 7 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2248479, + "thread": 29 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2349565, + "thread": 11 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2469243, + "thread": 4 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2728214, + "thread": 6 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 2944789, + "thread": 25 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 3006034, + "thread": 2 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 3215278, + "thread": 16 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 3433366, + "thread": 7 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 3509266, + "thread": 14 + } + }, + { + "amount": "150.145446163", + "slot": { + "period": 3667723, + "thread": 20 + } + }, + { + "amount": "150.145446165", + "slot": { + "period": 3885532, + "thread": 22 + } + } + ], + "AU12D91UZd7RjFNu9ByhvLRnzRaXc7v11XSeyRAWnayVYNvzmMwt1": [ + { + "amount": "142.558859375", + "slot": { + "period": 88826, + "thread": 4 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 309668, + "thread": 11 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 359089, + "thread": 18 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 608665, + "thread": 13 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 781358, + "thread": 18 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 902095, + "thread": 23 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1132904, + "thread": 8 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1241603, + "thread": 1 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1414698, + "thread": 0 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1480690, + "thread": 16 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1803102, + "thread": 8 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 1938937, + "thread": 15 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2004837, + "thread": 19 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2183961, + "thread": 15 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2298646, + "thread": 26 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2622760, + "thread": 4 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2703068, + "thread": 18 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 2798152, + "thread": 25 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 3042185, + "thread": 24 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 3284136, + "thread": 7 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 3297146, + "thread": 25 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 3461726, + "thread": 14 + } + }, + { + "amount": "142.558859375", + "slot": { + "period": 3623756, + "thread": 11 + } + }, + { + "amount": "142.558859368", + "slot": { + "period": 3799018, + "thread": 11 + } + } + ], + "AU12D91zPQiBB1Dg3UbkZPRXsdEA4g5yNj1gQGFTEYbLNiuAmb1BS": [ + { + "amount": "354.103488240", + "slot": { + "period": 43848, + "thread": 7 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 263537, + "thread": 17 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 403819, + "thread": 5 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 607674, + "thread": 26 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 796276, + "thread": 27 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 924010, + "thread": 11 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1074872, + "thread": 23 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1220826, + "thread": 21 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1440032, + "thread": 3 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1627431, + "thread": 23 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1657686, + "thread": 15 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 1826483, + "thread": 16 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2064598, + "thread": 0 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2163137, + "thread": 26 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2359463, + "thread": 12 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2540283, + "thread": 11 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2752867, + "thread": 22 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 2904048, + "thread": 2 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 3087072, + "thread": 16 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 3281906, + "thread": 25 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 3369285, + "thread": 18 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 3578196, + "thread": 28 + } + }, + { + "amount": "354.103488240", + "slot": { + "period": 3658566, + "thread": 9 + } + }, + { + "amount": "354.103488244", + "slot": { + "period": 3805732, + "thread": 6 + } + } + ], + "AU12D9oDHfZy15zbtivkhHyJDdMrFC421XP16Sbc4TXwEgB97JFx": [ + { + "amount": "491.377813762", + "slot": { + "period": 95350, + "thread": 7 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 244521, + "thread": 25 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 487906, + "thread": 18 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 511302, + "thread": 21 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 689848, + "thread": 21 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 943112, + "thread": 1 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1034449, + "thread": 14 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1304545, + "thread": 7 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1333062, + "thread": 8 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1624037, + "thread": 4 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1753723, + "thread": 11 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 1948755, + "thread": 4 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2120090, + "thread": 24 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2161017, + "thread": 25 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2346750, + "thread": 23 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2547347, + "thread": 5 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2773762, + "thread": 4 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 2947568, + "thread": 0 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 3014418, + "thread": 17 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 3256417, + "thread": 12 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 3294542, + "thread": 16 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 3553677, + "thread": 8 + } + }, + { + "amount": "491.377813762", + "slot": { + "period": 3671482, + "thread": 16 + } + }, + { + "amount": "491.377813768", + "slot": { + "period": 3929918, + "thread": 12 + } + } + ], + "AU12D9v7oy9GPD6nNPd8j5WVrBe3eeyUREtRthx5Rj65Qn9jJrbAM": [ + { + "amount": "84.340515028", + "slot": { + "period": 105526, + "thread": 9 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 199001, + "thread": 10 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 351105, + "thread": 8 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 600015, + "thread": 23 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 705701, + "thread": 24 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 963532, + "thread": 25 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1137966, + "thread": 9 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1171896, + "thread": 7 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1353428, + "thread": 6 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1553870, + "thread": 2 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1709543, + "thread": 21 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 1853826, + "thread": 30 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2045699, + "thread": 19 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2231298, + "thread": 13 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2442782, + "thread": 16 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2533853, + "thread": 23 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2712335, + "thread": 24 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2902517, + "thread": 6 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 2959154, + "thread": 14 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 3247590, + "thread": 9 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 3443417, + "thread": 16 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 3546059, + "thread": 30 + } + }, + { + "amount": "84.340515028", + "slot": { + "period": 3651912, + "thread": 16 + } + }, + { + "amount": "84.340515027", + "slot": { + "period": 3825933, + "thread": 26 + } + } + ], + "AU12D9vTbmgYQtSBKocVDYq62fLB2sBxw8TLumWEZGV9dCxganefS": [ + { + "amount": "149.879435741", + "slot": { + "period": 35769, + "thread": 23 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 265548, + "thread": 20 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 470135, + "thread": 29 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 606082, + "thread": 24 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 747322, + "thread": 21 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 932351, + "thread": 3 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1122172, + "thread": 31 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1268615, + "thread": 3 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1420368, + "thread": 2 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1624706, + "thread": 1 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1679320, + "thread": 27 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1878817, + "thread": 7 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 1987512, + "thread": 0 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 2198412, + "thread": 20 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 2335837, + "thread": 7 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 2483869, + "thread": 5 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 2729892, + "thread": 3 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 2915745, + "thread": 5 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3005175, + "thread": 27 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3274047, + "thread": 2 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3438913, + "thread": 19 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3450719, + "thread": 28 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3662485, + "thread": 4 + } + }, + { + "amount": "149.879435741", + "slot": { + "period": 3806749, + "thread": 31 + } + } + ], + "AU12DBgy61TKLsecYJ7jQxnsmHgZVGHXr8XAm7dD5sBENsuPHcfyG": [ + { + "amount": "289.642491539", + "slot": { + "period": 153401, + "thread": 14 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 234591, + "thread": 29 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 368092, + "thread": 19 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 550439, + "thread": 20 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 770601, + "thread": 3 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 822104, + "thread": 25 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1076784, + "thread": 9 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1215029, + "thread": 25 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1418974, + "thread": 14 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1614602, + "thread": 13 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1662916, + "thread": 25 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 1940267, + "thread": 28 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2056474, + "thread": 30 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2242827, + "thread": 9 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2331917, + "thread": 29 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2543779, + "thread": 5 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2676012, + "thread": 15 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2872955, + "thread": 1 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 2991616, + "thread": 20 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 3238601, + "thread": 15 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 3316077, + "thread": 12 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 3558187, + "thread": 17 + } + }, + { + "amount": "289.642491539", + "slot": { + "period": 3754438, + "thread": 25 + } + }, + { + "amount": "289.642491529", + "slot": { + "period": 3918298, + "thread": 27 + } + } + ], + "AU12DCuHovDPAF9vWVooVxYEWCV2zL8cZ5Kw8CNv9pbDUUPk5Hyuz": [ + { + "amount": "133.791928169", + "slot": { + "period": 57013, + "thread": 21 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 211583, + "thread": 28 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 459287, + "thread": 6 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 650262, + "thread": 18 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 813856, + "thread": 0 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 826228, + "thread": 23 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1117298, + "thread": 2 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1240552, + "thread": 5 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1450872, + "thread": 10 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1493605, + "thread": 26 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1647032, + "thread": 9 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1968228, + "thread": 24 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 1994245, + "thread": 6 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 2201622, + "thread": 2 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 2368432, + "thread": 11 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 2515136, + "thread": 2 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 2775164, + "thread": 29 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 2885867, + "thread": 12 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 3014315, + "thread": 26 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 3227345, + "thread": 4 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 3379599, + "thread": 9 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 3492361, + "thread": 12 + } + }, + { + "amount": "133.791928169", + "slot": { + "period": 3618728, + "thread": 6 + } + }, + { + "amount": "133.791928180", + "slot": { + "period": 3908051, + "thread": 14 + } + } + ], + "AU12DD57VmrzyJQy7qkXwBcPNXJ5ewhaCPXTyjUTbkoka5eNBLA9a": [ + { + "amount": "231.026343357", + "slot": { + "period": 79035, + "thread": 15 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 315073, + "thread": 6 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 453668, + "thread": 25 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 577668, + "thread": 25 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 794545, + "thread": 4 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 862317, + "thread": 30 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1050294, + "thread": 20 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1175243, + "thread": 10 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1323650, + "thread": 22 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1567775, + "thread": 5 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1803510, + "thread": 15 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 1968047, + "thread": 0 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2046772, + "thread": 14 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2280350, + "thread": 4 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2417461, + "thread": 25 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2504587, + "thread": 22 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2637879, + "thread": 13 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 2808915, + "thread": 12 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 3086480, + "thread": 7 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 3211268, + "thread": 30 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 3446659, + "thread": 14 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 3507311, + "thread": 22 + } + }, + { + "amount": "231.026343357", + "slot": { + "period": 3717863, + "thread": 22 + } + }, + { + "amount": "231.026343353", + "slot": { + "period": 3922134, + "thread": 10 + } + } + ], + "AU12DD8gnbMuBFCJ6UaLjCEUNmLYKsWoUGaVBBm5rrVwJpKHFyzEn": [ + { + "amount": "447.692389111", + "slot": { + "period": 138632, + "thread": 19 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 173159, + "thread": 12 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 331147, + "thread": 13 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 620507, + "thread": 29 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 775455, + "thread": 19 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 912519, + "thread": 23 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1055144, + "thread": 21 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1290571, + "thread": 18 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1346041, + "thread": 4 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1530415, + "thread": 27 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1692582, + "thread": 20 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 1828399, + "thread": 0 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2107375, + "thread": 24 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2260506, + "thread": 4 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2433133, + "thread": 11 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2554512, + "thread": 5 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2772261, + "thread": 4 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 2807926, + "thread": 26 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 3037359, + "thread": 27 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 3236371, + "thread": 30 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 3335136, + "thread": 31 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 3470400, + "thread": 12 + } + }, + { + "amount": "447.692389111", + "slot": { + "period": 3715990, + "thread": 0 + } + }, + { + "amount": "447.692389108", + "slot": { + "period": 3839409, + "thread": 25 + } + } + ], + "AU12DEJ8XwDLKrAURnUgmmS9cpr96ZK3vigiE4U6vn81yrTxfYYYF": [ + { + "amount": "493.717746436", + "slot": { + "period": 134270, + "thread": 18 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 285141, + "thread": 5 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 340945, + "thread": 16 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 588525, + "thread": 12 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 689226, + "thread": 7 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 945589, + "thread": 17 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1040555, + "thread": 4 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1300863, + "thread": 23 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1430764, + "thread": 4 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1596651, + "thread": 26 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1789239, + "thread": 24 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 1873307, + "thread": 26 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2131559, + "thread": 11 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2253870, + "thread": 17 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2358255, + "thread": 30 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2575197, + "thread": 28 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2770051, + "thread": 27 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 2832266, + "thread": 22 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 3003783, + "thread": 5 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 3200080, + "thread": 19 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 3408297, + "thread": 10 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 3597845, + "thread": 26 + } + }, + { + "amount": "493.717746436", + "slot": { + "period": 3680251, + "thread": 2 + } + }, + { + "amount": "493.717746431", + "slot": { + "period": 3794280, + "thread": 3 + } + } + ], + "AU12DEqtaiC3yAgBxJGHXq4WpeP8uEBobSsZs2vLZv5AyqCjLcwNE": [ + { + "amount": "192.538156058", + "slot": { + "period": 36869, + "thread": 15 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 305472, + "thread": 27 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 430381, + "thread": 9 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 629108, + "thread": 5 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 813251, + "thread": 12 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 896553, + "thread": 1 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1095933, + "thread": 30 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1299614, + "thread": 29 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1405917, + "thread": 4 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1606124, + "thread": 27 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1725694, + "thread": 23 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 1850652, + "thread": 17 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2098717, + "thread": 4 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2227912, + "thread": 23 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2412407, + "thread": 5 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2528744, + "thread": 22 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2659666, + "thread": 16 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2806511, + "thread": 26 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 2976757, + "thread": 22 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 3232239, + "thread": 20 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 3353926, + "thread": 16 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 3560175, + "thread": 4 + } + }, + { + "amount": "192.538156058", + "slot": { + "period": 3637238, + "thread": 22 + } + }, + { + "amount": "192.538156069", + "slot": { + "period": 3855973, + "thread": 12 + } + } + ], + "AU12DGazixvxKCg5N4E9nR4pxehza61hpAxi7VWG6FbYrQqrfern2": [ + { + "amount": "162.802273636", + "slot": { + "period": 58544, + "thread": 21 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 264633, + "thread": 19 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 359294, + "thread": 8 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 629657, + "thread": 14 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 771736, + "thread": 0 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 852509, + "thread": 7 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1026814, + "thread": 1 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1172063, + "thread": 24 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1358646, + "thread": 2 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1630290, + "thread": 21 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1769991, + "thread": 6 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 1850604, + "thread": 18 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2018136, + "thread": 15 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2144656, + "thread": 4 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2394379, + "thread": 7 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2568381, + "thread": 0 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2701289, + "thread": 1 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 2809988, + "thread": 29 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 3079969, + "thread": 5 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 3175716, + "thread": 19 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 3440745, + "thread": 17 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 3505335, + "thread": 7 + } + }, + { + "amount": "162.802273636", + "slot": { + "period": 3665694, + "thread": 12 + } + }, + { + "amount": "162.802273633", + "slot": { + "period": 3907588, + "thread": 22 + } + } + ], + "AU12DHNGrwemCXqPb1GgPMME8SbjU4H2kg4hUPikRuhL4Nr7vapQN": [ + { + "amount": "295.266449873", + "slot": { + "period": 31676, + "thread": 28 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 206831, + "thread": 2 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 372570, + "thread": 1 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 522329, + "thread": 0 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 659270, + "thread": 25 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 890758, + "thread": 27 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1036044, + "thread": 9 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1240885, + "thread": 18 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1422087, + "thread": 8 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1539870, + "thread": 17 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1705935, + "thread": 17 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 1936802, + "thread": 28 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2035694, + "thread": 26 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2220713, + "thread": 28 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2378942, + "thread": 0 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2469061, + "thread": 9 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2734488, + "thread": 4 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 2833655, + "thread": 16 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 3118321, + "thread": 20 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 3261515, + "thread": 30 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 3350566, + "thread": 21 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 3560869, + "thread": 10 + } + }, + { + "amount": "295.266449873", + "slot": { + "period": 3761427, + "thread": 15 + } + }, + { + "amount": "295.266449876", + "slot": { + "period": 3843639, + "thread": 14 + } + } + ], + "AU12DHUJj9KRzxsGqgB2fqn8wp91f72hp7izp4AxcyGXscgQZpGY6": [ + { + "amount": "404.439103639", + "slot": { + "period": 96142, + "thread": 24 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 316095, + "thread": 21 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 327800, + "thread": 23 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 513470, + "thread": 17 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 686505, + "thread": 18 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 899381, + "thread": 24 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1052775, + "thread": 28 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1234684, + "thread": 9 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1330153, + "thread": 15 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1527335, + "thread": 11 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1698437, + "thread": 22 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 1968057, + "thread": 23 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2088877, + "thread": 4 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2149270, + "thread": 21 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2341134, + "thread": 1 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2617695, + "thread": 17 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2716198, + "thread": 4 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 2820775, + "thread": 7 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 3036051, + "thread": 24 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 3158160, + "thread": 27 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 3350264, + "thread": 4 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 3612796, + "thread": 27 + } + }, + { + "amount": "404.439103639", + "slot": { + "period": 3735246, + "thread": 1 + } + }, + { + "amount": "404.439103640", + "slot": { + "period": 3791055, + "thread": 30 + } + } + ], + "AU12DHnswyQg8EBCM6WGwKzMptZKLErMoS4zrZ66xoMzTbPPG3bSo": [ + { + "amount": "82.189550134", + "slot": { + "period": 105924, + "thread": 31 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 286117, + "thread": 4 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 368605, + "thread": 30 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 524576, + "thread": 18 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 658006, + "thread": 25 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 911121, + "thread": 26 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1099932, + "thread": 6 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1177368, + "thread": 7 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1401991, + "thread": 7 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1541332, + "thread": 10 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1685993, + "thread": 21 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 1925697, + "thread": 15 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2000931, + "thread": 7 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2256154, + "thread": 30 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2451819, + "thread": 16 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2500275, + "thread": 27 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2666122, + "thread": 22 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 2845576, + "thread": 0 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 3093008, + "thread": 6 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 3181229, + "thread": 9 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 3410061, + "thread": 27 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 3481698, + "thread": 24 + } + }, + { + "amount": "82.189550134", + "slot": { + "period": 3696889, + "thread": 27 + } + }, + { + "amount": "82.189550145", + "slot": { + "period": 3797545, + "thread": 0 + } + } + ], + "AU12DKZ55LDvM4qsKdmbL5pZoSY3mdr7Z9gm7zYzjMYE9BAwzHgyB": [ + { + "amount": "147.360843798", + "slot": { + "period": 38689, + "thread": 3 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 263169, + "thread": 30 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 374971, + "thread": 1 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 565997, + "thread": 16 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 815588, + "thread": 4 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 926835, + "thread": 4 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1002717, + "thread": 22 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1314078, + "thread": 28 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1465360, + "thread": 12 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1488685, + "thread": 30 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1711855, + "thread": 14 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 1914729, + "thread": 22 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2008161, + "thread": 6 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2233198, + "thread": 28 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2327793, + "thread": 25 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2503307, + "thread": 15 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2685469, + "thread": 14 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2800228, + "thread": 19 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 2975143, + "thread": 8 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 3189748, + "thread": 6 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 3303172, + "thread": 6 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 3502573, + "thread": 4 + } + }, + { + "amount": "147.360843798", + "slot": { + "period": 3709915, + "thread": 15 + } + }, + { + "amount": "147.360843808", + "slot": { + "period": 3805368, + "thread": 0 + } + } + ], + "AU12DKZpfzv1dUCFrCqFaygwo7D5DMvHmjXTbqCqKa1efw91YYfg3": [ + { + "amount": "258.340920269", + "slot": { + "period": 137581, + "thread": 22 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 303395, + "thread": 16 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 380905, + "thread": 2 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 648904, + "thread": 6 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 696842, + "thread": 15 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 897399, + "thread": 20 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1069974, + "thread": 19 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1181526, + "thread": 31 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1384224, + "thread": 15 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1566986, + "thread": 26 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1765774, + "thread": 31 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1864996, + "thread": 19 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 1997451, + "thread": 4 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 2163170, + "thread": 24 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 2389676, + "thread": 5 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 2513499, + "thread": 30 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 2657266, + "thread": 28 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 2822203, + "thread": 8 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 3087620, + "thread": 27 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 3172628, + "thread": 10 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 3421757, + "thread": 9 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 3600076, + "thread": 18 + } + }, + { + "amount": "258.340920269", + "slot": { + "period": 3775431, + "thread": 5 + } + }, + { + "amount": "258.340920258", + "slot": { + "period": 3926669, + "thread": 31 + } + } + ], + "AU12DLDqv1k5t8YT819CfpN97KvgHQo9MpuGasmBYn7tzFrCE4gv8": [ + { + "amount": "298.933555821", + "slot": { + "period": 74642, + "thread": 12 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 205326, + "thread": 21 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 405857, + "thread": 15 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 530042, + "thread": 31 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 738246, + "thread": 31 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 831855, + "thread": 20 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1047858, + "thread": 25 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1296870, + "thread": 25 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1333335, + "thread": 3 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1557117, + "thread": 3 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1744418, + "thread": 12 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 1958484, + "thread": 11 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2046598, + "thread": 1 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2184150, + "thread": 4 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2345948, + "thread": 3 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2494430, + "thread": 10 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2726669, + "thread": 27 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2876373, + "thread": 17 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 2997755, + "thread": 21 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 3186820, + "thread": 4 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 3321689, + "thread": 21 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 3458642, + "thread": 19 + } + }, + { + "amount": "298.933555821", + "slot": { + "period": 3721556, + "thread": 17 + } + }, + { + "amount": "298.933555812", + "slot": { + "period": 3799965, + "thread": 18 + } + } + ], + "AU12DLGLL5u8pcErvXCk1SNv6Cy9oDWC8ZWShnV2Z4N7H28ZPsCFm": [ + { + "amount": "195.046586673", + "slot": { + "period": 133168, + "thread": 30 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 299689, + "thread": 19 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 466323, + "thread": 19 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 589024, + "thread": 27 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 743781, + "thread": 3 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 953455, + "thread": 30 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1047246, + "thread": 10 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1263180, + "thread": 19 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1431319, + "thread": 9 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1558900, + "thread": 25 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1676559, + "thread": 12 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 1970842, + "thread": 21 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2046362, + "thread": 26 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2171934, + "thread": 11 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2426314, + "thread": 26 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2595762, + "thread": 16 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2712314, + "thread": 10 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 2850517, + "thread": 15 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 3000856, + "thread": 18 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 3286754, + "thread": 4 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 3323679, + "thread": 7 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 3486174, + "thread": 16 + } + }, + { + "amount": "195.046586673", + "slot": { + "period": 3662214, + "thread": 19 + } + }, + { + "amount": "195.046586674", + "slot": { + "period": 3897632, + "thread": 3 + } + } + ], + "AU12DLHiYgKtY89cfLC6zKyhmNN2J6P9LLtAhEMpwnSQLyxZcCzD2": [ + { + "amount": "374.190887073", + "slot": { + "period": 43282, + "thread": 13 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 203431, + "thread": 9 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 487736, + "thread": 14 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 500877, + "thread": 2 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 714747, + "thread": 13 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 906126, + "thread": 18 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1102185, + "thread": 6 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1153679, + "thread": 11 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1388423, + "thread": 12 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1504333, + "thread": 28 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1761024, + "thread": 9 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 1848091, + "thread": 21 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2031507, + "thread": 15 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2149585, + "thread": 14 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2455414, + "thread": 23 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2469128, + "thread": 12 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2668365, + "thread": 7 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2915854, + "thread": 1 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 2963634, + "thread": 7 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 3226470, + "thread": 30 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 3410356, + "thread": 28 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 3588380, + "thread": 19 + } + }, + { + "amount": "374.190887073", + "slot": { + "period": 3749445, + "thread": 21 + } + }, + { + "amount": "374.190887082", + "slot": { + "period": 3827825, + "thread": 13 + } + } + ], + "AU12DLiVdryDMXiDaJchYkQsYy76QKfdXPL47XeuoozJTWogVj6ES": [ + { + "amount": "362.533114004", + "slot": { + "period": 125310, + "thread": 11 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 256495, + "thread": 25 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 454152, + "thread": 6 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 589360, + "thread": 22 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 763422, + "thread": 4 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 864160, + "thread": 3 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1065419, + "thread": 22 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1229388, + "thread": 19 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1452016, + "thread": 7 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1616479, + "thread": 24 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1773986, + "thread": 10 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 1867670, + "thread": 23 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2118207, + "thread": 28 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2258345, + "thread": 8 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2385908, + "thread": 25 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2584690, + "thread": 14 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2640001, + "thread": 1 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2896073, + "thread": 29 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 2980797, + "thread": 5 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 3250743, + "thread": 31 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 3325480, + "thread": 5 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 3551396, + "thread": 8 + } + }, + { + "amount": "362.533114004", + "slot": { + "period": 3765269, + "thread": 6 + } + }, + { + "amount": "362.533114009", + "slot": { + "period": 3820569, + "thread": 10 + } + } + ], + "AU12DLmAmDi5Vdhm8RGcD76gP5ymXBy4L6uCNBPKYjX9pTDSHcibP": [ + { + "amount": "728.545585226", + "slot": { + "period": 137891, + "thread": 17 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 270321, + "thread": 25 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 430173, + "thread": 8 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 505700, + "thread": 7 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 659040, + "thread": 19 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 935438, + "thread": 28 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1132983, + "thread": 14 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1242640, + "thread": 19 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1330088, + "thread": 28 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1592990, + "thread": 3 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1788341, + "thread": 4 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 1825214, + "thread": 16 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2130989, + "thread": 6 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2192409, + "thread": 27 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2328101, + "thread": 26 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2594699, + "thread": 23 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2767034, + "thread": 13 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 2861233, + "thread": 29 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 3072380, + "thread": 20 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 3198467, + "thread": 26 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 3410599, + "thread": 9 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 3565303, + "thread": 26 + } + }, + { + "amount": "728.545585226", + "slot": { + "period": 3775651, + "thread": 20 + } + }, + { + "amount": "728.545585218", + "slot": { + "period": 3894086, + "thread": 17 + } + } + ], + "AU12DM2PNzojsc15ji28BPLWxTP6yZE1cCip2GADSwdhc2txA59Zn": [ + { + "amount": "266.429874338", + "slot": { + "period": 88670, + "thread": 13 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 220294, + "thread": 16 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 413843, + "thread": 2 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 622075, + "thread": 3 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 710692, + "thread": 7 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 944217, + "thread": 19 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1103217, + "thread": 29 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1158590, + "thread": 18 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1420856, + "thread": 10 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1543326, + "thread": 11 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1779848, + "thread": 8 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 1820153, + "thread": 1 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2008796, + "thread": 31 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2283414, + "thread": 24 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2402265, + "thread": 26 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2544540, + "thread": 9 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2738731, + "thread": 20 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 2953394, + "thread": 24 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3096444, + "thread": 31 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3243369, + "thread": 2 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3366453, + "thread": 17 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3551389, + "thread": 15 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3759268, + "thread": 24 + } + }, + { + "amount": "266.429874338", + "slot": { + "period": 3898633, + "thread": 27 + } + } + ], + "AU12DNDzZK52cBrUdgo27vDjz6sGbV2Hs2PNnwQm9ZJ4dWtSvL6sG": [ + { + "amount": "170.491859378", + "slot": { + "period": 162419, + "thread": 0 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 240058, + "thread": 4 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 344611, + "thread": 6 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 611269, + "thread": 30 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 683809, + "thread": 22 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 916480, + "thread": 25 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1149369, + "thread": 26 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1290532, + "thread": 29 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1435452, + "thread": 5 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1487281, + "thread": 22 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1756951, + "thread": 13 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 1861139, + "thread": 29 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2059912, + "thread": 31 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2278114, + "thread": 0 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2404379, + "thread": 20 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2529051, + "thread": 5 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2738538, + "thread": 16 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 2873042, + "thread": 22 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 3003807, + "thread": 31 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 3211236, + "thread": 3 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 3334674, + "thread": 8 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 3543779, + "thread": 8 + } + }, + { + "amount": "170.491859378", + "slot": { + "period": 3734619, + "thread": 2 + } + }, + { + "amount": "170.491859369", + "slot": { + "period": 3800993, + "thread": 31 + } + } + ], + "AU12DNG6NbpePB4DTkKhaEfzjN2Z25mhmUijR4iS4EdKVNBRQPkRv": [ + { + "amount": "181.358479320", + "slot": { + "period": 11398, + "thread": 16 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 297434, + "thread": 7 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 382630, + "thread": 20 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 537360, + "thread": 26 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 709529, + "thread": 20 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 958699, + "thread": 29 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1131682, + "thread": 14 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1194471, + "thread": 31 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1470520, + "thread": 14 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1584505, + "thread": 15 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1802552, + "thread": 28 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 1934923, + "thread": 20 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2009608, + "thread": 27 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2230590, + "thread": 20 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2454159, + "thread": 21 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2615390, + "thread": 3 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2771126, + "thread": 19 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 2866941, + "thread": 17 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 3001547, + "thread": 2 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 3247395, + "thread": 14 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 3420381, + "thread": 19 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 3494986, + "thread": 12 + } + }, + { + "amount": "181.358479320", + "slot": { + "period": 3764963, + "thread": 1 + } + }, + { + "amount": "181.358479316", + "slot": { + "period": 3919549, + "thread": 20 + } + } + ], + "AU12DNyTxw3KVFEBbynwPY2LqXtjnvZsccpXa9BMJfMTrMjQhs7z4": [ + { + "amount": "54.624003594", + "slot": { + "period": 103824, + "thread": 8 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 307407, + "thread": 18 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 373008, + "thread": 31 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 624907, + "thread": 19 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 738234, + "thread": 16 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 902516, + "thread": 20 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1106403, + "thread": 29 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1163237, + "thread": 9 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1362133, + "thread": 29 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1548460, + "thread": 10 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1672699, + "thread": 2 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 1927066, + "thread": 15 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2044687, + "thread": 16 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2153161, + "thread": 18 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2322851, + "thread": 4 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2508088, + "thread": 4 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2649049, + "thread": 30 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2871806, + "thread": 24 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 2993698, + "thread": 23 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 3190048, + "thread": 31 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 3290218, + "thread": 11 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 3617295, + "thread": 14 + } + }, + { + "amount": "54.624003594", + "slot": { + "period": 3732499, + "thread": 30 + } + }, + { + "amount": "54.624003589", + "slot": { + "period": 3889184, + "thread": 17 + } + } + ], + "AU12DPBNaqQoy7FLePUewCKngyLyrTFfhUwwyi2qn4cRmZt1fXuhS": [ + { + "amount": "155.452281201", + "slot": { + "period": 165653, + "thread": 0 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 272433, + "thread": 18 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 482398, + "thread": 25 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 612084, + "thread": 16 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 695316, + "thread": 10 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 862372, + "thread": 22 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1111317, + "thread": 18 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1211503, + "thread": 4 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1474966, + "thread": 2 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1520331, + "thread": 16 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1689025, + "thread": 13 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 1834211, + "thread": 0 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2003541, + "thread": 21 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2294930, + "thread": 19 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2404497, + "thread": 17 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2471824, + "thread": 19 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2652454, + "thread": 8 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2893675, + "thread": 2 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 2998197, + "thread": 18 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 3180147, + "thread": 16 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 3354917, + "thread": 15 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 3543608, + "thread": 22 + } + }, + { + "amount": "155.452281201", + "slot": { + "period": 3677789, + "thread": 26 + } + }, + { + "amount": "155.452281209", + "slot": { + "period": 3866191, + "thread": 14 + } + } + ], + "AU12DPD3noMC8Lx8ZB3sHGCXHaWYrDjBb4VgEqycnsYa4874FGDGx": [ + { + "amount": "459.402844103", + "slot": { + "period": 21788, + "thread": 12 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 314277, + "thread": 7 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 429377, + "thread": 6 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 651982, + "thread": 11 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 759975, + "thread": 26 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 909819, + "thread": 13 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1030167, + "thread": 22 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1302787, + "thread": 10 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1342761, + "thread": 2 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1633497, + "thread": 18 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1773218, + "thread": 7 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 1823079, + "thread": 29 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2091581, + "thread": 1 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2180011, + "thread": 2 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2404705, + "thread": 4 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2471227, + "thread": 7 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2736473, + "thread": 2 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 2930461, + "thread": 28 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 3004944, + "thread": 2 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 3160737, + "thread": 23 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 3387948, + "thread": 31 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 3506295, + "thread": 6 + } + }, + { + "amount": "459.402844103", + "slot": { + "period": 3705691, + "thread": 28 + } + }, + { + "amount": "459.402844097", + "slot": { + "period": 3811189, + "thread": 14 + } + } + ], + "AU12DPJoB4YCHHvkfoAzeRHrGep7cGfrbS3t7scbkBQxfwmr9fLRE": [ + { + "amount": "5833.333333333", + "slot": { + "period": 104882, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 227923, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 390724, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 537880, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 692081, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 960964, + "thread": 14 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1062754, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1204417, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1361970, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1614820, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1691153, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1869901, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2004188, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2216867, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2383902, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2600861, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2699107, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2812374, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3000720, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3242763, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3390130, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3589968, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3668005, + "thread": 4 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3908333, + "thread": 28 + } + } + ], + "AU12DPSY98Vez9oFB7xtPD8Sxa9rG4CRBebqnZ9eCvrt124Ym5Ntb": [ + { + "amount": "449.415051267", + "slot": { + "period": 159182, + "thread": 28 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 254425, + "thread": 12 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 346356, + "thread": 10 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 587203, + "thread": 22 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 809713, + "thread": 13 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 909403, + "thread": 10 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1114486, + "thread": 7 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1306211, + "thread": 3 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1350969, + "thread": 16 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1604801, + "thread": 20 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1676547, + "thread": 6 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1919222, + "thread": 9 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 1993451, + "thread": 1 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 2291309, + "thread": 24 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 2331991, + "thread": 30 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 2531022, + "thread": 6 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 2635509, + "thread": 27 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 2901365, + "thread": 15 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 3100833, + "thread": 28 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 3212364, + "thread": 2 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 3434030, + "thread": 15 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 3515777, + "thread": 1 + } + }, + { + "amount": "449.415051267", + "slot": { + "period": 3715065, + "thread": 29 + } + }, + { + "amount": "449.415051278", + "slot": { + "period": 3916707, + "thread": 14 + } + } + ], + "AU12DPhB9L3LwyRTn1ALHFphtHK6ZtjYua8MHdzNLZjzAkAWp4gXi": [ + { + "amount": "384.086649440", + "slot": { + "period": 162634, + "thread": 1 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 304079, + "thread": 20 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 409745, + "thread": 7 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 624244, + "thread": 28 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 776228, + "thread": 28 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 836683, + "thread": 17 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 987754, + "thread": 17 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 1160835, + "thread": 13 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 1388306, + "thread": 22 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 1634382, + "thread": 7 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 1690324, + "thread": 24 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 1875424, + "thread": 22 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2077795, + "thread": 14 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2160435, + "thread": 27 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2446173, + "thread": 19 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2611760, + "thread": 10 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2656371, + "thread": 20 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2830266, + "thread": 20 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 2975715, + "thread": 10 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 3216797, + "thread": 12 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 3434865, + "thread": 21 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 3476544, + "thread": 20 + } + }, + { + "amount": "384.086649440", + "slot": { + "period": 3628382, + "thread": 6 + } + }, + { + "amount": "384.086649450", + "slot": { + "period": 3880902, + "thread": 7 + } + } + ], + "AU12DQCRxRh6YFGzEnxpuqdAig1eMoskwK6BoQ3rqqbt1HbRn63L9": [ + { + "amount": "253.832282001", + "slot": { + "period": 71676, + "thread": 5 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 195808, + "thread": 19 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 444155, + "thread": 30 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 596881, + "thread": 13 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 689182, + "thread": 20 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 865544, + "thread": 23 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1011088, + "thread": 0 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1302751, + "thread": 5 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1418507, + "thread": 18 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1592439, + "thread": 14 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1713737, + "thread": 2 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 1973263, + "thread": 5 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2048871, + "thread": 6 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2226211, + "thread": 0 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2318481, + "thread": 12 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2505321, + "thread": 3 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2714723, + "thread": 4 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 2908931, + "thread": 9 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 3036651, + "thread": 0 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 3124034, + "thread": 2 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 3367343, + "thread": 17 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 3564718, + "thread": 7 + } + }, + { + "amount": "253.832282001", + "slot": { + "period": 3706231, + "thread": 2 + } + }, + { + "amount": "253.832281993", + "slot": { + "period": 3837392, + "thread": 23 + } + } + ], + "AU12DRSJCf65sFmNY2zCLLSu3kXZJyUiExHbqDK29hQNaqAnngLej": [ + { + "amount": "504.169284218", + "slot": { + "period": 149147, + "thread": 15 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 242155, + "thread": 28 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 344716, + "thread": 30 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 564816, + "thread": 28 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 768381, + "thread": 31 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 920732, + "thread": 3 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1053766, + "thread": 10 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1192354, + "thread": 11 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1380068, + "thread": 22 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1604662, + "thread": 7 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1804327, + "thread": 30 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 1839393, + "thread": 25 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2079109, + "thread": 20 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2167991, + "thread": 23 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2371281, + "thread": 22 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2482758, + "thread": 23 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2695260, + "thread": 27 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 2908420, + "thread": 4 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 3013791, + "thread": 12 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 3186854, + "thread": 23 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 3403324, + "thread": 27 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 3530135, + "thread": 4 + } + }, + { + "amount": "504.169284218", + "slot": { + "period": 3751661, + "thread": 17 + } + }, + { + "amount": "504.169284229", + "slot": { + "period": 3919988, + "thread": 18 + } + } + ], + "AU12DRXKGnspnZzC9K9Dm8CtjWtZF7pfjavad4ebQTLwfCpujZad1": [ + { + "amount": "313.344173956", + "slot": { + "period": 151488, + "thread": 5 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 199106, + "thread": 11 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 404005, + "thread": 17 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 534953, + "thread": 16 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 814980, + "thread": 22 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 907941, + "thread": 26 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1044795, + "thread": 19 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1183953, + "thread": 4 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1427249, + "thread": 9 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1562327, + "thread": 21 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1767256, + "thread": 16 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 1845216, + "thread": 20 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2033036, + "thread": 25 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2207831, + "thread": 4 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2400330, + "thread": 8 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2551764, + "thread": 11 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2696463, + "thread": 30 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 2891437, + "thread": 24 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 3080987, + "thread": 21 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 3145507, + "thread": 5 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 3312189, + "thread": 13 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 3464262, + "thread": 1 + } + }, + { + "amount": "313.344173956", + "slot": { + "period": 3731785, + "thread": 12 + } + }, + { + "amount": "313.344173958", + "slot": { + "period": 3813445, + "thread": 14 + } + } + ], + "AU12DRfRrtfDHmyFnPDqeYGXWkAfEQfqA7beeP8wM8YdbWUtUPK4h": [ + { + "amount": "51.522157528", + "slot": { + "period": 80771, + "thread": 28 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 178396, + "thread": 25 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 343864, + "thread": 3 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 585058, + "thread": 10 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 770504, + "thread": 5 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 919653, + "thread": 18 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 998713, + "thread": 15 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 1301334, + "thread": 12 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 1478160, + "thread": 12 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 1583583, + "thread": 2 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 1655730, + "thread": 3 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 1832521, + "thread": 9 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2115614, + "thread": 0 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2152441, + "thread": 9 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2312082, + "thread": 8 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2572308, + "thread": 3 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2632149, + "thread": 30 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 2928575, + "thread": 1 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 3083582, + "thread": 30 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 3203401, + "thread": 17 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 3394300, + "thread": 19 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 3552804, + "thread": 3 + } + }, + { + "amount": "51.522157528", + "slot": { + "period": 3702791, + "thread": 14 + } + }, + { + "amount": "51.522157529", + "slot": { + "period": 3879635, + "thread": 10 + } + } + ], + "AU12DRwAze7FkZmXXjf143PguqJcYd6XufDKkqbQmDeQU2Xo3PoF3": [ + { + "amount": "123048.916666667", + "slot": { + "period": 159122, + "thread": 28 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 235607, + "thread": 0 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 374101, + "thread": 26 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 645822, + "thread": 16 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 801888, + "thread": 20 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 884327, + "thread": 1 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1046267, + "thread": 10 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1158240, + "thread": 7 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1420527, + "thread": 29 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1585255, + "thread": 16 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1684759, + "thread": 30 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 1955309, + "thread": 5 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2106989, + "thread": 26 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2235596, + "thread": 25 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2456425, + "thread": 4 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2600193, + "thread": 4 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2662559, + "thread": 26 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2905990, + "thread": 22 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 2963025, + "thread": 26 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 3187442, + "thread": 22 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 3438784, + "thread": 31 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 3614688, + "thread": 13 + } + }, + { + "amount": "123048.916666667", + "slot": { + "period": 3763776, + "thread": 16 + } + }, + { + "amount": "123048.916666659", + "slot": { + "period": 3892147, + "thread": 27 + } + } + ], + "AU12DS5UenT8Vot7MXyFWVAA3ytD5ZmwV91bM1CJEs9LzswbG6tvU": [ + { + "amount": "66.387613713", + "slot": { + "period": 86765, + "thread": 19 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 250783, + "thread": 1 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 387029, + "thread": 27 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 501207, + "thread": 3 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 785670, + "thread": 5 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 950605, + "thread": 6 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1133454, + "thread": 29 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1150737, + "thread": 18 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1357648, + "thread": 21 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1515509, + "thread": 14 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1649424, + "thread": 12 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 1939296, + "thread": 11 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2108525, + "thread": 6 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2172834, + "thread": 22 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2363341, + "thread": 15 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2509288, + "thread": 24 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2664030, + "thread": 13 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 2796464, + "thread": 14 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 3114396, + "thread": 29 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 3125312, + "thread": 20 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 3312347, + "thread": 20 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 3477760, + "thread": 24 + } + }, + { + "amount": "66.387613713", + "slot": { + "period": 3770170, + "thread": 18 + } + }, + { + "amount": "66.387613705", + "slot": { + "period": 3840985, + "thread": 29 + } + } + ], + "AU12DSn2Sx6rMhxS2noMpdWVh3nYxqmMkCUYTMTBQ7Qqt4MGaYxxW": [ + { + "amount": "87.017356446", + "slot": { + "period": 81676, + "thread": 29 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 220078, + "thread": 28 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 384423, + "thread": 12 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 529299, + "thread": 20 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 786713, + "thread": 15 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 853532, + "thread": 9 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1061190, + "thread": 14 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1208736, + "thread": 18 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1463070, + "thread": 20 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1610810, + "thread": 11 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1704239, + "thread": 0 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 1848759, + "thread": 5 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2003283, + "thread": 16 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2277909, + "thread": 10 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2306109, + "thread": 22 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2485580, + "thread": 14 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2705622, + "thread": 16 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2930760, + "thread": 20 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 2996195, + "thread": 6 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 3225945, + "thread": 19 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 3439570, + "thread": 24 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 3470195, + "thread": 0 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 3671630, + "thread": 3 + } + }, + { + "amount": "87.017356446", + "slot": { + "period": 3862074, + "thread": 29 + } + } + ], + "AU12DT9tEYbnU4PNMCLCEi63tQfDQiSXgNU68oYjj4uScF4Fm783T": [ + { + "amount": "278.729245390", + "slot": { + "period": 160770, + "thread": 8 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 273483, + "thread": 17 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 416457, + "thread": 28 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 556515, + "thread": 9 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 719310, + "thread": 12 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 894794, + "thread": 3 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 990041, + "thread": 29 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 1164305, + "thread": 18 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 1358934, + "thread": 6 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 1509652, + "thread": 9 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 1727384, + "thread": 0 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 1956000, + "thread": 26 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2051574, + "thread": 21 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2187020, + "thread": 30 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2304789, + "thread": 6 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2593318, + "thread": 26 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2708067, + "thread": 3 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2934004, + "thread": 3 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 2959261, + "thread": 25 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 3187512, + "thread": 15 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 3446410, + "thread": 4 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 3514843, + "thread": 25 + } + }, + { + "amount": "278.729245390", + "slot": { + "period": 3681895, + "thread": 29 + } + }, + { + "amount": "278.729245398", + "slot": { + "period": 3812702, + "thread": 25 + } + } + ], + "AU12DTuzcQZdkZwhJqtHNtgMwiRXTxuvrdsYqSFBqQhfSjhFxuxtK": [ + { + "amount": "60.902339627", + "slot": { + "period": 92850, + "thread": 27 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 191498, + "thread": 10 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 456283, + "thread": 30 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 495508, + "thread": 11 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 763890, + "thread": 12 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 967299, + "thread": 17 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1137978, + "thread": 28 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1169198, + "thread": 21 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1442738, + "thread": 28 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1531782, + "thread": 3 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1793922, + "thread": 25 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 1848670, + "thread": 23 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2099353, + "thread": 26 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2163889, + "thread": 15 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2442458, + "thread": 19 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2619715, + "thread": 5 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2723475, + "thread": 27 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2819891, + "thread": 17 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 2969745, + "thread": 25 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 3186626, + "thread": 7 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 3438698, + "thread": 14 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 3601502, + "thread": 7 + } + }, + { + "amount": "60.902339627", + "slot": { + "period": 3738615, + "thread": 4 + } + }, + { + "amount": "60.902339638", + "slot": { + "period": 3898966, + "thread": 17 + } + } + ], + "AU12DVKAW2DegrhVBGD1YFtmqCt9LrJigJbQpVr8uwaFZy4BHCHPL": [ + { + "amount": "335.192974188", + "slot": { + "period": 156112, + "thread": 9 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 278701, + "thread": 10 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 471942, + "thread": 4 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 557358, + "thread": 19 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 743513, + "thread": 13 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 981052, + "thread": 23 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1072681, + "thread": 18 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1286173, + "thread": 29 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1428680, + "thread": 28 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1639861, + "thread": 27 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1731365, + "thread": 2 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1964429, + "thread": 23 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 1994668, + "thread": 16 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 2237235, + "thread": 15 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 2298728, + "thread": 12 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 2495999, + "thread": 18 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 2658759, + "thread": 8 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 2902035, + "thread": 10 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 3114654, + "thread": 3 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 3252483, + "thread": 22 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 3440250, + "thread": 24 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 3504651, + "thread": 22 + } + }, + { + "amount": "335.192974188", + "slot": { + "period": 3751342, + "thread": 20 + } + }, + { + "amount": "335.192974180", + "slot": { + "period": 3830952, + "thread": 9 + } + } + ], + "AU12DXM52dbjHHsAiV5DXY4CVdqFYJhjEnt3hQGLAb3sPjb7dBywX": [ + { + "amount": "208.332751738", + "slot": { + "period": 86814, + "thread": 10 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 292750, + "thread": 0 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 477764, + "thread": 29 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 572952, + "thread": 27 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 808384, + "thread": 30 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 870228, + "thread": 1 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1026898, + "thread": 0 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1159003, + "thread": 6 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1341283, + "thread": 31 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1567780, + "thread": 24 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1711326, + "thread": 14 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 1899688, + "thread": 4 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2003997, + "thread": 23 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2239746, + "thread": 25 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2310744, + "thread": 16 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2620802, + "thread": 2 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2739152, + "thread": 12 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 2914740, + "thread": 1 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3082539, + "thread": 11 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3279849, + "thread": 23 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3371079, + "thread": 20 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3598443, + "thread": 8 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3674533, + "thread": 4 + } + }, + { + "amount": "208.332751738", + "slot": { + "period": 3874474, + "thread": 14 + } + } + ], + "AU12DXNR6qNQPcdvv16WVxykc82RFk3Y13GQLMpRp87W3HXNhx5EL": [ + { + "amount": "142.076836921", + "slot": { + "period": 75360, + "thread": 21 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 269825, + "thread": 2 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 453884, + "thread": 14 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 534277, + "thread": 25 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 680126, + "thread": 2 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 982555, + "thread": 17 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1080545, + "thread": 26 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1284540, + "thread": 16 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1367535, + "thread": 0 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1592643, + "thread": 28 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1739190, + "thread": 10 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 1886141, + "thread": 28 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2021639, + "thread": 20 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2226874, + "thread": 18 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2391104, + "thread": 12 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2596792, + "thread": 10 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2662318, + "thread": 9 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 2939343, + "thread": 21 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 3091986, + "thread": 25 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 3280677, + "thread": 28 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 3405948, + "thread": 18 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 3584940, + "thread": 22 + } + }, + { + "amount": "142.076836921", + "slot": { + "period": 3723371, + "thread": 30 + } + }, + { + "amount": "142.076836924", + "slot": { + "period": 3782846, + "thread": 2 + } + } + ], + "AU12DXpTn3YCvbvARDPi75EanffvyPYoTBwFMaFaKCvrXGv54kL8B": [ + { + "amount": "56.785666020", + "slot": { + "period": 109798, + "thread": 16 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 306413, + "thread": 27 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 487184, + "thread": 31 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 612574, + "thread": 22 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 723238, + "thread": 15 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 943545, + "thread": 28 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1123355, + "thread": 10 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1285769, + "thread": 20 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1477874, + "thread": 23 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1576146, + "thread": 12 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1688899, + "thread": 0 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 1942950, + "thread": 21 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2065493, + "thread": 15 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2220638, + "thread": 11 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2412281, + "thread": 28 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2569863, + "thread": 19 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2651042, + "thread": 10 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2841671, + "thread": 23 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 2967826, + "thread": 26 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 3228777, + "thread": 28 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 3448176, + "thread": 2 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 3604130, + "thread": 11 + } + }, + { + "amount": "56.785666020", + "slot": { + "period": 3730100, + "thread": 26 + } + }, + { + "amount": "56.785666024", + "slot": { + "period": 3848922, + "thread": 22 + } + } + ], + "AU12DYNGMNcKasV5Cqvjihdz4NLSyLdh85yFMD7AZZfbSH5tzG3YN": [ + { + "amount": "244.538719673", + "slot": { + "period": 79403, + "thread": 15 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 172646, + "thread": 31 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 487614, + "thread": 16 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 539502, + "thread": 17 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 756448, + "thread": 28 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 928902, + "thread": 30 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1015603, + "thread": 25 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1213494, + "thread": 13 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1381322, + "thread": 6 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1504974, + "thread": 4 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1677796, + "thread": 14 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 1882445, + "thread": 9 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2074546, + "thread": 21 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2284153, + "thread": 28 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2335409, + "thread": 16 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2603344, + "thread": 2 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2703875, + "thread": 6 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 2839958, + "thread": 22 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 3110486, + "thread": 8 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 3244348, + "thread": 8 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 3330340, + "thread": 28 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 3516628, + "thread": 3 + } + }, + { + "amount": "244.538719673", + "slot": { + "period": 3704807, + "thread": 20 + } + }, + { + "amount": "244.538719670", + "slot": { + "period": 3899143, + "thread": 26 + } + } + ], + "AU12DZ2a2EUhC2TKvqfqdX5J4yr9unzfaAo6uLyf5LEuCCYrJgtou": [ + { + "amount": "116.332648319", + "slot": { + "period": 20672, + "thread": 20 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 224490, + "thread": 5 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 455166, + "thread": 24 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 517747, + "thread": 27 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 778724, + "thread": 20 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 935285, + "thread": 4 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1139193, + "thread": 27 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1191905, + "thread": 30 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1331354, + "thread": 7 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1625350, + "thread": 25 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1724858, + "thread": 27 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 1858663, + "thread": 31 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2136405, + "thread": 29 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2234593, + "thread": 3 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2437105, + "thread": 13 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2623507, + "thread": 31 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2687775, + "thread": 16 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 2792821, + "thread": 10 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 3044795, + "thread": 5 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 3253931, + "thread": 17 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 3388679, + "thread": 17 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 3473666, + "thread": 21 + } + }, + { + "amount": "116.332648319", + "slot": { + "period": 3645626, + "thread": 2 + } + }, + { + "amount": "116.332648314", + "slot": { + "period": 3921408, + "thread": 7 + } + } + ], + "AU12DZXTGKoVpFjVppY5TLXGsM2axHe6oYGSGER6MrguY4mHE6C7i": [ + { + "amount": "150.433722968", + "slot": { + "period": 50959, + "thread": 29 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 217727, + "thread": 3 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 453510, + "thread": 24 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 527810, + "thread": 6 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 764323, + "thread": 10 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 840057, + "thread": 28 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1148718, + "thread": 5 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1278125, + "thread": 24 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1448074, + "thread": 2 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1604884, + "thread": 24 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1736254, + "thread": 2 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 1878005, + "thread": 24 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2047301, + "thread": 20 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2160485, + "thread": 31 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2336518, + "thread": 14 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2607113, + "thread": 24 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2788125, + "thread": 22 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 2877625, + "thread": 10 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 3014500, + "thread": 25 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 3138480, + "thread": 14 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 3366279, + "thread": 11 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 3603765, + "thread": 27 + } + }, + { + "amount": "150.433722968", + "slot": { + "period": 3683210, + "thread": 2 + } + }, + { + "amount": "150.433722965", + "slot": { + "period": 3935970, + "thread": 20 + } + } + ], + "AU12DZoXEW2oUoA8smni7fiUWSotwojDLUbncPMdMMBjNjPiGqgr9": [ + { + "amount": "309.612998796", + "slot": { + "period": 144256, + "thread": 3 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 184741, + "thread": 3 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 417347, + "thread": 7 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 566022, + "thread": 13 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 718811, + "thread": 4 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 882855, + "thread": 17 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1120045, + "thread": 20 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1247315, + "thread": 11 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1339183, + "thread": 19 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1589302, + "thread": 11 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1673610, + "thread": 21 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 1907458, + "thread": 14 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2106249, + "thread": 0 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2241870, + "thread": 17 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2365172, + "thread": 28 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2524843, + "thread": 10 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2736571, + "thread": 6 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 2864494, + "thread": 15 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 3084843, + "thread": 5 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 3271985, + "thread": 8 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 3418038, + "thread": 31 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 3531884, + "thread": 23 + } + }, + { + "amount": "309.612998796", + "slot": { + "period": 3618868, + "thread": 30 + } + }, + { + "amount": "309.612998785", + "slot": { + "period": 3783319, + "thread": 23 + } + } + ], + "AU12DZpdpEh8cuxPriL181qFcRsWtFZAuC5qErY4v3BaM4889zka": [ + { + "amount": "317.528211707", + "slot": { + "period": 158161, + "thread": 31 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 261409, + "thread": 31 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 371164, + "thread": 14 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 500974, + "thread": 30 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 781750, + "thread": 28 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 824852, + "thread": 11 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1105337, + "thread": 8 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1209282, + "thread": 18 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1349915, + "thread": 2 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1577481, + "thread": 14 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1798189, + "thread": 10 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 1881308, + "thread": 19 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2041788, + "thread": 30 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2206242, + "thread": 11 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2445478, + "thread": 0 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2591282, + "thread": 21 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2663163, + "thread": 9 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 2895459, + "thread": 2 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3003421, + "thread": 26 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3211639, + "thread": 0 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3351409, + "thread": 18 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3578548, + "thread": 17 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3728352, + "thread": 31 + } + }, + { + "amount": "317.528211707", + "slot": { + "period": 3789917, + "thread": 14 + } + } + ], + "AU12DZuTv6xXV34JAfwmgmc8KCj7a9xiRxZ64j6Pt4aQd2LXTuYzB": [ + { + "amount": "429.555530686", + "slot": { + "period": 101171, + "thread": 19 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 255529, + "thread": 12 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 405797, + "thread": 20 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 568239, + "thread": 0 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 804220, + "thread": 11 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 861692, + "thread": 15 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1009456, + "thread": 10 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1226034, + "thread": 29 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1462724, + "thread": 6 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1626359, + "thread": 19 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1803396, + "thread": 22 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 1814261, + "thread": 3 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2039707, + "thread": 9 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2221327, + "thread": 7 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2356980, + "thread": 15 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2517490, + "thread": 8 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2763724, + "thread": 6 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 2948761, + "thread": 4 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 3025578, + "thread": 14 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 3257581, + "thread": 7 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 3421428, + "thread": 31 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 3483495, + "thread": 15 + } + }, + { + "amount": "429.555530686", + "slot": { + "period": 3698521, + "thread": 5 + } + }, + { + "amount": "429.555530684", + "slot": { + "period": 3927615, + "thread": 17 + } + } + ], + "AU12DaH5xfbNV7LFiMAhws6jwf36sFMzYHbn1yjyFnLPXQ9m3S1QW": [ + { + "amount": "97.652233181", + "slot": { + "period": 94050, + "thread": 13 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 309923, + "thread": 17 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 407365, + "thread": 4 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 564420, + "thread": 19 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 791745, + "thread": 26 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 960541, + "thread": 11 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1116556, + "thread": 29 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1213560, + "thread": 17 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1325847, + "thread": 27 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1594248, + "thread": 30 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1769130, + "thread": 16 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 1819172, + "thread": 29 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2132178, + "thread": 7 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2196165, + "thread": 18 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2439206, + "thread": 14 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2614274, + "thread": 31 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2748191, + "thread": 14 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 2930540, + "thread": 2 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 3110806, + "thread": 28 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 3183417, + "thread": 16 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 3296054, + "thread": 0 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 3586167, + "thread": 1 + } + }, + { + "amount": "97.652233181", + "slot": { + "period": 3639507, + "thread": 16 + } + }, + { + "amount": "97.652233173", + "slot": { + "period": 3875698, + "thread": 2 + } + } + ], + "AU12De8GYaJ4Ro7jg6sQx7Af3URo5dmCNEnvvgKQWkzcAdkHeqgvA": [ + { + "amount": "439.520650377", + "slot": { + "period": 150673, + "thread": 27 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 194508, + "thread": 9 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 480855, + "thread": 7 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 642019, + "thread": 17 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 817697, + "thread": 30 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 922496, + "thread": 22 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1131434, + "thread": 28 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1150241, + "thread": 18 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1436982, + "thread": 24 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1486133, + "thread": 16 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1700137, + "thread": 20 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 1948072, + "thread": 22 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2043780, + "thread": 9 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2179018, + "thread": 18 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2336695, + "thread": 2 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2497957, + "thread": 6 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2727724, + "thread": 10 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 2948256, + "thread": 8 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 3023382, + "thread": 2 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 3271722, + "thread": 5 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 3341278, + "thread": 14 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 3469164, + "thread": 13 + } + }, + { + "amount": "439.520650377", + "slot": { + "period": 3717463, + "thread": 12 + } + }, + { + "amount": "439.520650382", + "slot": { + "period": 3869286, + "thread": 24 + } + } + ], + "AU12De9YjxUBw1HjHrrjG6X6AC4BYQ1m9GtSGx6GJeZj96TguGTs3": [ + { + "amount": "137.833978790", + "slot": { + "period": 140555, + "thread": 31 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 210282, + "thread": 30 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 384095, + "thread": 6 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 598543, + "thread": 22 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 810400, + "thread": 23 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 887441, + "thread": 23 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 987659, + "thread": 30 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 1297069, + "thread": 21 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 1395640, + "thread": 18 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 1645460, + "thread": 16 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 1758148, + "thread": 5 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 1856536, + "thread": 16 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2087870, + "thread": 6 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2172236, + "thread": 1 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2341708, + "thread": 19 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2470063, + "thread": 7 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2654978, + "thread": 5 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 2912566, + "thread": 29 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 3083250, + "thread": 24 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 3238154, + "thread": 30 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 3303545, + "thread": 3 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 3549267, + "thread": 16 + } + }, + { + "amount": "137.833978790", + "slot": { + "period": 3729667, + "thread": 3 + } + }, + { + "amount": "137.833978779", + "slot": { + "period": 3871097, + "thread": 18 + } + } + ], + "AU12DeJtGjdFwsSnXepAVnyiXPBpSuiE6FgmQw4N94TyHepjrAV3J": [ + { + "amount": "195.845637137", + "slot": { + "period": 23922, + "thread": 3 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 238111, + "thread": 4 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 476736, + "thread": 6 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 507766, + "thread": 1 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 695842, + "thread": 1 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 852317, + "thread": 21 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1030519, + "thread": 9 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1190733, + "thread": 0 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1345450, + "thread": 27 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1622831, + "thread": 22 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1747904, + "thread": 13 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 1817358, + "thread": 4 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2057569, + "thread": 22 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2228513, + "thread": 24 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2417021, + "thread": 16 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2561426, + "thread": 26 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2675207, + "thread": 2 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2898596, + "thread": 5 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 2998506, + "thread": 6 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 3135249, + "thread": 7 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 3437619, + "thread": 7 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 3491667, + "thread": 1 + } + }, + { + "amount": "195.845637137", + "slot": { + "period": 3702474, + "thread": 1 + } + }, + { + "amount": "195.845637133", + "slot": { + "period": 3934513, + "thread": 24 + } + } + ], + "AU12DeikQv9Wyb88yfJtnfaxepWFmNanUUWvo2MrCJqgkSVno3kFx": [ + { + "amount": "149.528130650", + "slot": { + "period": 47513, + "thread": 9 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 318330, + "thread": 17 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 378393, + "thread": 1 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 620771, + "thread": 18 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 668127, + "thread": 20 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 893096, + "thread": 1 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1070037, + "thread": 19 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1312726, + "thread": 18 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1329157, + "thread": 4 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1524695, + "thread": 18 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1675073, + "thread": 21 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1975448, + "thread": 9 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 1976801, + "thread": 8 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 2181859, + "thread": 22 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 2299144, + "thread": 27 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 2545352, + "thread": 2 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 2717525, + "thread": 3 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 2824209, + "thread": 13 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 3068589, + "thread": 17 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 3272831, + "thread": 25 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 3349868, + "thread": 8 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 3588618, + "thread": 0 + } + }, + { + "amount": "149.528130650", + "slot": { + "period": 3678050, + "thread": 20 + } + }, + { + "amount": "149.528130640", + "slot": { + "period": 3841767, + "thread": 0 + } + } + ], + "AU12Df1HAmohFMGSwxtYYS1YnoNQXL6wwVgdikzTDMrGSYxtiQjV9": [ + { + "amount": "254.738505878", + "slot": { + "period": 115588, + "thread": 23 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 178456, + "thread": 11 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 462603, + "thread": 11 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 649031, + "thread": 24 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 803928, + "thread": 6 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 841607, + "thread": 12 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1131993, + "thread": 31 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1247273, + "thread": 11 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1347398, + "thread": 14 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1554206, + "thread": 3 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1717781, + "thread": 22 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 1904946, + "thread": 10 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2042508, + "thread": 27 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2265424, + "thread": 17 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2296638, + "thread": 14 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2565195, + "thread": 17 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2771872, + "thread": 13 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 2846274, + "thread": 24 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 3111406, + "thread": 2 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 3286385, + "thread": 13 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 3374212, + "thread": 29 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 3507286, + "thread": 25 + } + }, + { + "amount": "254.738505878", + "slot": { + "period": 3635044, + "thread": 24 + } + }, + { + "amount": "254.738505884", + "slot": { + "period": 3894481, + "thread": 30 + } + } + ], + "AU12DfDcrLrpJkrk4DJ9L4BGxkCudf1V6pY5c9Derqmmxge6oXReD": [ + { + "amount": "165.205087263", + "slot": { + "period": 58873, + "thread": 21 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 224653, + "thread": 6 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 447427, + "thread": 4 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 651674, + "thread": 23 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 773290, + "thread": 3 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 917521, + "thread": 9 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1003955, + "thread": 7 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1191205, + "thread": 10 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1475531, + "thread": 1 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1527943, + "thread": 11 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1733588, + "thread": 28 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 1949078, + "thread": 5 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2062152, + "thread": 3 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2265950, + "thread": 2 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2357567, + "thread": 21 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2580686, + "thread": 31 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2751278, + "thread": 0 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2875297, + "thread": 29 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 2965754, + "thread": 12 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 3189773, + "thread": 1 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 3381288, + "thread": 10 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 3503676, + "thread": 21 + } + }, + { + "amount": "165.205087263", + "slot": { + "period": 3623103, + "thread": 25 + } + }, + { + "amount": "165.205087261", + "slot": { + "period": 3786032, + "thread": 28 + } + } + ], + "AU12DfSF4DACNPdR4g8uZe8hqrBpd8NWnH9avYZSY1AT5MM14qBzw": [ + { + "amount": "555.357929725", + "slot": { + "period": 150456, + "thread": 12 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 189345, + "thread": 31 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 452060, + "thread": 24 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 579522, + "thread": 28 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 755690, + "thread": 6 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 844375, + "thread": 29 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1074084, + "thread": 23 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1258099, + "thread": 26 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1427773, + "thread": 4 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1626946, + "thread": 1 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1741803, + "thread": 13 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 1890246, + "thread": 8 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2049870, + "thread": 4 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2214568, + "thread": 8 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2426749, + "thread": 28 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2478781, + "thread": 5 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2752593, + "thread": 24 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 2881385, + "thread": 12 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 3022550, + "thread": 24 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 3274052, + "thread": 25 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 3318905, + "thread": 27 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 3497117, + "thread": 17 + } + }, + { + "amount": "555.357929725", + "slot": { + "period": 3742929, + "thread": 0 + } + }, + { + "amount": "555.357929726", + "slot": { + "period": 3799277, + "thread": 17 + } + } + ], + "AU12DgTsczsxaPm9JosTN9n4Una2WhDDbSsNksNwUv8HbuCAVNUQo": [ + { + "amount": "74.828449292", + "slot": { + "period": 49955, + "thread": 16 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 303651, + "thread": 9 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 328749, + "thread": 9 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 632840, + "thread": 6 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 751206, + "thread": 10 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 941879, + "thread": 16 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1091022, + "thread": 19 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1257385, + "thread": 6 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1461295, + "thread": 0 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1581021, + "thread": 13 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1768457, + "thread": 27 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 1895526, + "thread": 0 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2128630, + "thread": 17 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2193976, + "thread": 25 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2374581, + "thread": 27 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2619982, + "thread": 26 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2773051, + "thread": 23 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 2907343, + "thread": 0 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 3044359, + "thread": 11 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 3126374, + "thread": 25 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 3400351, + "thread": 29 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 3567412, + "thread": 5 + } + }, + { + "amount": "74.828449292", + "slot": { + "period": 3723188, + "thread": 8 + } + }, + { + "amount": "74.828449291", + "slot": { + "period": 3854173, + "thread": 3 + } + } + ], + "AU12DgWJzpzfZqGJ1WZZZcemPA8juWcn6ki7qTpQxPaX3BJ4e7mm1": [ + { + "amount": "260.156477145", + "slot": { + "period": 81126, + "thread": 31 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 248026, + "thread": 12 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 417589, + "thread": 22 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 630337, + "thread": 26 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 659676, + "thread": 28 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 938421, + "thread": 12 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1011575, + "thread": 26 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1180678, + "thread": 31 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1423147, + "thread": 14 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1575733, + "thread": 5 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1719663, + "thread": 23 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 1951963, + "thread": 27 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2028665, + "thread": 5 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2258831, + "thread": 24 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2457858, + "thread": 30 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2580624, + "thread": 30 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2685204, + "thread": 3 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 2820625, + "thread": 18 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 3037046, + "thread": 24 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 3250818, + "thread": 30 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 3322406, + "thread": 9 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 3610228, + "thread": 15 + } + }, + { + "amount": "260.156477145", + "slot": { + "period": 3658517, + "thread": 3 + } + }, + { + "amount": "260.156477140", + "slot": { + "period": 3885893, + "thread": 9 + } + } + ], + "AU12DgYFsAunZWX9eYDjJKnqgLs3AYkgt978XS56sUQeQryhEHSFr": [ + { + "amount": "107.792649177", + "slot": { + "period": 57588, + "thread": 29 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 178928, + "thread": 1 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 454252, + "thread": 24 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 560077, + "thread": 29 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 721303, + "thread": 5 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 878979, + "thread": 3 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1087301, + "thread": 9 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1217922, + "thread": 18 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1349032, + "thread": 3 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1604850, + "thread": 28 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1747986, + "thread": 5 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 1841438, + "thread": 22 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2077814, + "thread": 15 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2144599, + "thread": 13 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2415371, + "thread": 20 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2521551, + "thread": 0 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2748524, + "thread": 4 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 2832717, + "thread": 31 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 3003841, + "thread": 23 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 3264980, + "thread": 7 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 3435036, + "thread": 3 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 3490811, + "thread": 12 + } + }, + { + "amount": "107.792649177", + "slot": { + "period": 3716373, + "thread": 11 + } + }, + { + "amount": "107.792649174", + "slot": { + "period": 3801605, + "thread": 5 + } + } + ], + "AU12DgZD5TRpir7cuAHz9WhC1du4cR3UEYtR9bnpskG8XzXeBSFVk": [ + { + "amount": "324.092725929", + "slot": { + "period": 156989, + "thread": 29 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 214832, + "thread": 25 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 338255, + "thread": 29 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 597297, + "thread": 25 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 701953, + "thread": 15 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 914917, + "thread": 4 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1107368, + "thread": 25 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1178228, + "thread": 2 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1401348, + "thread": 25 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1527386, + "thread": 0 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1695828, + "thread": 14 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 1821846, + "thread": 12 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2074031, + "thread": 14 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2273748, + "thread": 26 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2443696, + "thread": 24 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2594829, + "thread": 3 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2715084, + "thread": 2 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 2882370, + "thread": 15 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 3047939, + "thread": 8 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 3125900, + "thread": 1 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 3370338, + "thread": 27 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 3584064, + "thread": 10 + } + }, + { + "amount": "324.092725929", + "slot": { + "period": 3777898, + "thread": 2 + } + }, + { + "amount": "324.092725940", + "slot": { + "period": 3894903, + "thread": 27 + } + } + ], + "AU12DgqUaS4D94FcsPVcHa5EaNtwgyDSiUC6Ed6xFfhPwXAqv9vdp": [ + { + "amount": "91.347265935", + "slot": { + "period": 140001, + "thread": 2 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 174544, + "thread": 28 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 393598, + "thread": 13 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 522613, + "thread": 13 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 699464, + "thread": 20 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 937310, + "thread": 18 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1003798, + "thread": 24 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1308263, + "thread": 2 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1448870, + "thread": 28 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1603888, + "thread": 27 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1680556, + "thread": 21 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 1930026, + "thread": 11 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2077023, + "thread": 14 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2168365, + "thread": 16 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2311654, + "thread": 18 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2524633, + "thread": 5 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2764217, + "thread": 12 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 2923668, + "thread": 26 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 3073771, + "thread": 10 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 3171027, + "thread": 14 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 3423742, + "thread": 13 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 3464801, + "thread": 15 + } + }, + { + "amount": "91.347265935", + "slot": { + "period": 3624795, + "thread": 21 + } + }, + { + "amount": "91.347265925", + "slot": { + "period": 3797706, + "thread": 5 + } + } + ], + "AU12DhYt2WmT5B51oKAHDsRCZKgssJDAVtDmfpLfwJw7uYyzVWF7Y": [ + { + "amount": "672.392759065", + "slot": { + "period": 113912, + "thread": 10 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 235062, + "thread": 14 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 388485, + "thread": 30 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 515641, + "thread": 16 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 734562, + "thread": 22 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 875327, + "thread": 2 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1113452, + "thread": 20 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1163395, + "thread": 17 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1338951, + "thread": 15 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1536864, + "thread": 23 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1713668, + "thread": 23 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 1826093, + "thread": 15 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2080609, + "thread": 1 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2250809, + "thread": 26 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2298062, + "thread": 29 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2615213, + "thread": 21 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2759037, + "thread": 31 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 2867184, + "thread": 16 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 3060488, + "thread": 29 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 3205868, + "thread": 16 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 3398343, + "thread": 16 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 3571848, + "thread": 20 + } + }, + { + "amount": "672.392759065", + "slot": { + "period": 3690001, + "thread": 1 + } + }, + { + "amount": "672.392759060", + "slot": { + "period": 3908983, + "thread": 22 + } + } + ], + "AU12DjQoipyfAox9G7bfw17F4ovDb2D9ey5tM3ZBDCEF6hmPdEm5w": [ + { + "amount": "382.121017547", + "slot": { + "period": 116355, + "thread": 21 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 225317, + "thread": 0 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 420882, + "thread": 31 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 638870, + "thread": 5 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 786262, + "thread": 29 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 945074, + "thread": 14 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1128433, + "thread": 26 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1294162, + "thread": 29 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1427669, + "thread": 1 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1484385, + "thread": 3 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1788885, + "thread": 29 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 1936374, + "thread": 27 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2128167, + "thread": 14 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2192513, + "thread": 3 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2338785, + "thread": 13 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2595551, + "thread": 19 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2660215, + "thread": 20 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 2820815, + "thread": 21 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 3034976, + "thread": 25 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 3159248, + "thread": 8 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 3346676, + "thread": 3 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 3497374, + "thread": 17 + } + }, + { + "amount": "382.121017547", + "slot": { + "period": 3709385, + "thread": 30 + } + }, + { + "amount": "382.121017537", + "slot": { + "period": 3821045, + "thread": 6 + } + } + ], + "AU12Dk2VTUXNTiLr3g77guhNGtyfriX3x45CEYpoZVoyR77ajdg1H": [ + { + "amount": "248.302930134", + "slot": { + "period": 123264, + "thread": 29 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 200289, + "thread": 11 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 343285, + "thread": 22 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 615556, + "thread": 19 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 737651, + "thread": 11 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 903221, + "thread": 0 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 984483, + "thread": 26 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 1302403, + "thread": 3 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 1387183, + "thread": 9 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 1481614, + "thread": 29 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 1748159, + "thread": 13 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 1838579, + "thread": 16 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2099289, + "thread": 25 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2264251, + "thread": 15 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2297702, + "thread": 2 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2609003, + "thread": 21 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2668082, + "thread": 3 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2928096, + "thread": 29 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 2978999, + "thread": 14 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 3241822, + "thread": 24 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 3366901, + "thread": 8 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 3576613, + "thread": 22 + } + }, + { + "amount": "248.302930134", + "slot": { + "period": 3666642, + "thread": 5 + } + }, + { + "amount": "248.302930126", + "slot": { + "period": 3875835, + "thread": 14 + } + } + ], + "AU12DkU5qNVzffULDeLowJLpQriHheg5WAbNvcfXgd5ujAGxTPUM9": [ + { + "amount": "445.141188007", + "slot": { + "period": 99268, + "thread": 6 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 222411, + "thread": 24 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 482415, + "thread": 19 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 637361, + "thread": 6 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 745269, + "thread": 0 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 837275, + "thread": 28 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 992921, + "thread": 19 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 1204680, + "thread": 8 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 1351145, + "thread": 23 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 1570140, + "thread": 15 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 1777752, + "thread": 14 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 1936632, + "thread": 26 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2021144, + "thread": 0 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2224970, + "thread": 29 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2459701, + "thread": 6 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2566516, + "thread": 1 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2655547, + "thread": 6 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 2805994, + "thread": 9 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 3032044, + "thread": 9 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 3184103, + "thread": 27 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 3437141, + "thread": 31 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 3483174, + "thread": 27 + } + }, + { + "amount": "445.141188007", + "slot": { + "period": 3694061, + "thread": 7 + } + }, + { + "amount": "445.141188005", + "slot": { + "period": 3849693, + "thread": 3 + } + } + ], + "AU12DkaD8b9Ew8He9n54yrUs35GpAKA4kfK3h4dvy6VZt7VNucinH": [ + { + "amount": "390.475898415", + "slot": { + "period": 51532, + "thread": 4 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 322761, + "thread": 21 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 460243, + "thread": 2 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 649163, + "thread": 5 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 704746, + "thread": 30 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 889374, + "thread": 31 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1099058, + "thread": 24 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1306085, + "thread": 29 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1335936, + "thread": 13 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1535805, + "thread": 24 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1750624, + "thread": 24 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 1884374, + "thread": 4 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2064337, + "thread": 29 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2231920, + "thread": 11 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2389508, + "thread": 16 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2532719, + "thread": 24 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2697824, + "thread": 14 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2873189, + "thread": 10 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 2980061, + "thread": 4 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 3192597, + "thread": 1 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 3317676, + "thread": 19 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 3607509, + "thread": 24 + } + }, + { + "amount": "390.475898415", + "slot": { + "period": 3628812, + "thread": 12 + } + }, + { + "amount": "390.475898414", + "slot": { + "period": 3802221, + "thread": 22 + } + } + ], + "AU12DmY6d73ztqLb9Khzh3ErFBGb38pfYK3sYYhSWbKoNpNoQEYYD": [ + { + "amount": "55.973491461", + "slot": { + "period": 105780, + "thread": 18 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 259255, + "thread": 14 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 340550, + "thread": 10 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 615085, + "thread": 3 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 701695, + "thread": 19 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 967271, + "thread": 20 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1015241, + "thread": 24 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1217882, + "thread": 22 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1420936, + "thread": 29 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1491644, + "thread": 5 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1787707, + "thread": 27 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 1821721, + "thread": 20 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2000704, + "thread": 3 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2163033, + "thread": 2 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2417424, + "thread": 27 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2595841, + "thread": 15 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2668517, + "thread": 8 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2947104, + "thread": 14 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 2967265, + "thread": 6 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 3236168, + "thread": 6 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 3423580, + "thread": 18 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 3522329, + "thread": 0 + } + }, + { + "amount": "55.973491461", + "slot": { + "period": 3741159, + "thread": 29 + } + }, + { + "amount": "55.973491451", + "slot": { + "period": 3896513, + "thread": 7 + } + } + ], + "AU12DmZC4SPHG1EiNL3Y6b1koekDSmy9Di1qc74BPMoVnzNk1Yw4N": [ + { + "amount": "704.743458614", + "slot": { + "period": 113485, + "thread": 20 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 200957, + "thread": 9 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 356235, + "thread": 18 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 624729, + "thread": 23 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 773701, + "thread": 12 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 933564, + "thread": 29 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1119646, + "thread": 9 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1279328, + "thread": 31 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1322381, + "thread": 6 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1590537, + "thread": 10 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1695451, + "thread": 19 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 1943511, + "thread": 9 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2123774, + "thread": 27 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2156764, + "thread": 26 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2303597, + "thread": 9 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2527924, + "thread": 0 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2735698, + "thread": 1 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 2809210, + "thread": 4 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 3019566, + "thread": 4 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 3240107, + "thread": 16 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 3328256, + "thread": 12 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 3476967, + "thread": 22 + } + }, + { + "amount": "704.743458614", + "slot": { + "period": 3625879, + "thread": 3 + } + }, + { + "amount": "704.743458602", + "slot": { + "period": 3817139, + "thread": 13 + } + } + ], + "AU12DnA7VQ3ySXSJ554ximnZT5xBoPERF1EvTsFPrJN2oyLXozD1e": [ + { + "amount": "248.925647394", + "slot": { + "period": 107646, + "thread": 30 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 242691, + "thread": 1 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 398605, + "thread": 1 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 621734, + "thread": 8 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 749802, + "thread": 21 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 976239, + "thread": 20 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1014965, + "thread": 18 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1304475, + "thread": 7 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1318120, + "thread": 18 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1575809, + "thread": 24 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1744958, + "thread": 24 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 1931270, + "thread": 8 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2086025, + "thread": 15 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2276561, + "thread": 6 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2345946, + "thread": 13 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2525204, + "thread": 12 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2686780, + "thread": 1 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 2910182, + "thread": 15 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 3106876, + "thread": 27 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 3257993, + "thread": 20 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 3426974, + "thread": 30 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 3568668, + "thread": 4 + } + }, + { + "amount": "248.925647394", + "slot": { + "period": 3743308, + "thread": 2 + } + }, + { + "amount": "248.925647386", + "slot": { + "period": 3810357, + "thread": 15 + } + } + ], + "AU12DnN4Ab1DJnngu5gEHbk57LvNmA6KvnMACE3X2YAvNwJxrJxPL": [ + { + "amount": "217.677400660", + "slot": { + "period": 76313, + "thread": 7 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 179432, + "thread": 2 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 470679, + "thread": 20 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 536604, + "thread": 27 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 670502, + "thread": 4 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 931160, + "thread": 4 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 993203, + "thread": 31 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 1220278, + "thread": 12 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 1333973, + "thread": 21 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 1542865, + "thread": 23 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 1653411, + "thread": 28 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 1940073, + "thread": 22 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2009022, + "thread": 24 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2185207, + "thread": 24 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2413185, + "thread": 23 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2533097, + "thread": 29 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2737537, + "thread": 31 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 2791947, + "thread": 16 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 3004386, + "thread": 20 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 3125174, + "thread": 29 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 3429337, + "thread": 1 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 3570297, + "thread": 25 + } + }, + { + "amount": "217.677400660", + "slot": { + "period": 3670457, + "thread": 21 + } + }, + { + "amount": "217.677400655", + "slot": { + "period": 3848765, + "thread": 30 + } + } + ], + "AU12DnU3a8mXVJLMq6DWU2gqQepA3PRe47Ni2WEyYsqLrY7XWtd7p": [ + { + "amount": "52.641293987", + "slot": { + "period": 64116, + "thread": 25 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 305250, + "thread": 28 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 491050, + "thread": 13 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 502236, + "thread": 18 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 757696, + "thread": 3 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 946745, + "thread": 20 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1126369, + "thread": 11 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1238695, + "thread": 1 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1418736, + "thread": 3 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1582780, + "thread": 0 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1686348, + "thread": 0 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1874144, + "thread": 31 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 1994944, + "thread": 8 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2273036, + "thread": 19 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2391901, + "thread": 21 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2591006, + "thread": 23 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2767683, + "thread": 4 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2798408, + "thread": 15 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 2983747, + "thread": 12 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 3266475, + "thread": 16 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 3321810, + "thread": 9 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 3593037, + "thread": 20 + } + }, + { + "amount": "52.641293987", + "slot": { + "period": 3642719, + "thread": 20 + } + }, + { + "amount": "52.641293980", + "slot": { + "period": 3921861, + "thread": 9 + } + } + ], + "AU12Dnu91kTXtSYJ5KTuBc6XZ3Bk8s7GQnPpbQvWqySYEvjycbCbr": [ + { + "amount": "73.024971492", + "slot": { + "period": 154711, + "thread": 21 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 187599, + "thread": 4 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 405381, + "thread": 26 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 651780, + "thread": 13 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 683443, + "thread": 11 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 825501, + "thread": 27 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1120576, + "thread": 6 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1258728, + "thread": 9 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1354594, + "thread": 21 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1570141, + "thread": 15 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1744426, + "thread": 21 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 1891896, + "thread": 31 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2008718, + "thread": 12 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2197672, + "thread": 3 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2420002, + "thread": 31 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2542104, + "thread": 17 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2743645, + "thread": 2 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 2888634, + "thread": 23 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 3005142, + "thread": 13 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 3284565, + "thread": 21 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 3364276, + "thread": 13 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 3450809, + "thread": 31 + } + }, + { + "amount": "73.024971492", + "slot": { + "period": 3779017, + "thread": 17 + } + }, + { + "amount": "73.024971497", + "slot": { + "period": 3841749, + "thread": 13 + } + } + ], + "AU12DonXBP9HdN4zTfpnxmKs9YzdkxULZk8NqXe3447r1uQnvuxF2": [ + { + "amount": "147.249275579", + "slot": { + "period": 60402, + "thread": 15 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 198258, + "thread": 18 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 401886, + "thread": 3 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 503886, + "thread": 22 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 732343, + "thread": 3 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 839319, + "thread": 20 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1054738, + "thread": 27 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1299367, + "thread": 22 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1366848, + "thread": 6 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1641171, + "thread": 18 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1692608, + "thread": 14 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 1847775, + "thread": 13 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2138932, + "thread": 1 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2257690, + "thread": 10 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2331200, + "thread": 24 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2559113, + "thread": 10 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2788316, + "thread": 29 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2943136, + "thread": 25 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 2988254, + "thread": 18 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 3210844, + "thread": 14 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 3399726, + "thread": 23 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 3564503, + "thread": 0 + } + }, + { + "amount": "147.249275579", + "slot": { + "period": 3658051, + "thread": 13 + } + }, + { + "amount": "147.249275569", + "slot": { + "period": 3873992, + "thread": 18 + } + } + ], + "AU12Dp1eRfWgHU7xuVgjGGALhAVg67fgUFm3N8dURq2CE92E7T1iD": [ + { + "amount": "16203.716666667", + "slot": { + "period": 70821, + "thread": 3 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 213005, + "thread": 27 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 351622, + "thread": 20 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 582595, + "thread": 30 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 773054, + "thread": 29 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 865594, + "thread": 12 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1047361, + "thread": 25 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1306098, + "thread": 21 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1390964, + "thread": 21 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1583594, + "thread": 19 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1653326, + "thread": 8 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1958703, + "thread": 11 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2007364, + "thread": 11 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2199392, + "thread": 15 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2383476, + "thread": 7 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2518425, + "thread": 29 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2631853, + "thread": 25 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2808960, + "thread": 31 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2972872, + "thread": 1 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3131124, + "thread": 9 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3429934, + "thread": 27 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3608366, + "thread": 12 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3665516, + "thread": 15 + } + }, + { + "amount": "16203.716666659", + "slot": { + "period": 3928741, + "thread": 9 + } + } + ], + "AU12DpCEn1hK8diLBTeBM3Y9m5djNbDy1snqnJfP6g6D9aMKRqHpr": [ + { + "amount": "178.369271245", + "slot": { + "period": 29123, + "thread": 16 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 311638, + "thread": 3 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 388742, + "thread": 14 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 546958, + "thread": 30 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 790997, + "thread": 12 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 836273, + "thread": 10 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1115793, + "thread": 24 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1307656, + "thread": 16 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1387861, + "thread": 27 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1562385, + "thread": 14 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1656850, + "thread": 3 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 1968384, + "thread": 29 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2013126, + "thread": 14 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2214376, + "thread": 31 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2435889, + "thread": 25 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2513048, + "thread": 17 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2666377, + "thread": 27 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2934975, + "thread": 19 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 2957832, + "thread": 3 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 3215812, + "thread": 7 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 3400406, + "thread": 19 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 3534883, + "thread": 15 + } + }, + { + "amount": "178.369271245", + "slot": { + "period": 3621518, + "thread": 14 + } + }, + { + "amount": "178.369271236", + "slot": { + "period": 3842026, + "thread": 28 + } + } + ], + "AU12DpYMxt8WvM4G2D5iC82jvWkmfRYnQuZYFzB7G1gEgv1rXQgBt": [ + { + "amount": "67.170418108", + "slot": { + "period": 38901, + "thread": 3 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 315142, + "thread": 3 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 459204, + "thread": 23 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 601944, + "thread": 16 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 740683, + "thread": 24 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 957088, + "thread": 2 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1031065, + "thread": 23 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1308947, + "thread": 30 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1328189, + "thread": 29 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1581214, + "thread": 9 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1702168, + "thread": 1 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 1810953, + "thread": 6 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2115164, + "thread": 1 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2149594, + "thread": 21 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2301366, + "thread": 21 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2496399, + "thread": 15 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2672862, + "thread": 28 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 2859529, + "thread": 11 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 3089742, + "thread": 6 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 3284015, + "thread": 10 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 3293463, + "thread": 26 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 3587524, + "thread": 5 + } + }, + { + "amount": "67.170418108", + "slot": { + "period": 3632889, + "thread": 29 + } + }, + { + "amount": "67.170418109", + "slot": { + "period": 3790762, + "thread": 13 + } + } + ], + "AU12DpwXq4rHD7djej7PqCLZjdH1wKfS2Jkj1NVmqeRGkBFFbEYYk": [ + { + "amount": "142.406825745", + "slot": { + "period": 137149, + "thread": 23 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 283681, + "thread": 7 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 480506, + "thread": 6 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 503304, + "thread": 16 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 760638, + "thread": 3 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 914811, + "thread": 7 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1026744, + "thread": 7 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1271906, + "thread": 18 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1459264, + "thread": 0 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1599831, + "thread": 15 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1687628, + "thread": 30 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 1917631, + "thread": 19 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2116001, + "thread": 13 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2150166, + "thread": 7 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2361049, + "thread": 25 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2463453, + "thread": 13 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2680685, + "thread": 26 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2877952, + "thread": 21 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 2958708, + "thread": 18 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 3156398, + "thread": 25 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 3291153, + "thread": 30 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 3512246, + "thread": 7 + } + }, + { + "amount": "142.406825745", + "slot": { + "period": 3676279, + "thread": 1 + } + }, + { + "amount": "142.406825742", + "slot": { + "period": 3926716, + "thread": 27 + } + } + ], + "AU12Dqi2QiQeszuNAsjDrCCb1bReC2C4rAGX2PxsPvoWcNBZSWdjS": [ + { + "amount": "340.996370107", + "slot": { + "period": 131995, + "thread": 7 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 178960, + "thread": 10 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 327484, + "thread": 11 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 632430, + "thread": 20 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 657211, + "thread": 21 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 851966, + "thread": 7 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1009148, + "thread": 31 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1288880, + "thread": 24 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1413906, + "thread": 6 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1511984, + "thread": 0 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1722498, + "thread": 27 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 1928138, + "thread": 19 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2089135, + "thread": 11 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2187520, + "thread": 21 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2342770, + "thread": 11 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2516247, + "thread": 11 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2748098, + "thread": 22 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 2943846, + "thread": 10 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 3089553, + "thread": 13 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 3138388, + "thread": 11 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 3312882, + "thread": 18 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 3525328, + "thread": 20 + } + }, + { + "amount": "340.996370107", + "slot": { + "period": 3706694, + "thread": 17 + } + }, + { + "amount": "340.996370113", + "slot": { + "period": 3887497, + "thread": 8 + } + } + ], + "AU12Dr6zHvsCPhs6DNbyBmskfTv4Y5LsbUCibjAEUuanm3RMsYnvH": [ + { + "amount": "117.883524519", + "slot": { + "period": 90318, + "thread": 24 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 196292, + "thread": 8 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 484805, + "thread": 23 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 538532, + "thread": 28 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 794613, + "thread": 2 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 922433, + "thread": 13 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1125643, + "thread": 31 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1175922, + "thread": 9 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1467857, + "thread": 11 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1483352, + "thread": 18 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1699814, + "thread": 27 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 1848849, + "thread": 21 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2142526, + "thread": 11 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2212385, + "thread": 0 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2380237, + "thread": 17 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2528242, + "thread": 14 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2697312, + "thread": 22 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 2806275, + "thread": 6 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 3094961, + "thread": 4 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 3231188, + "thread": 20 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 3317316, + "thread": 9 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 3470421, + "thread": 18 + } + }, + { + "amount": "117.883524519", + "slot": { + "period": 3730703, + "thread": 14 + } + }, + { + "amount": "117.883524528", + "slot": { + "period": 3788540, + "thread": 14 + } + } + ], + "AU12DraSGfsTkEE3KjaqS6DGSUoeXrQZbnPvvYnGMKYBhJ7CrRUQs": [ + { + "amount": "284.806696052", + "slot": { + "period": 156183, + "thread": 28 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 274303, + "thread": 2 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 348709, + "thread": 8 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 637365, + "thread": 8 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 674700, + "thread": 14 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 868426, + "thread": 19 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1112753, + "thread": 4 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1225352, + "thread": 13 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1446504, + "thread": 3 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1550660, + "thread": 15 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1675769, + "thread": 20 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 1933643, + "thread": 10 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2139375, + "thread": 16 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2267364, + "thread": 6 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2386675, + "thread": 31 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2532615, + "thread": 14 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2701432, + "thread": 31 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 2937767, + "thread": 4 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 3083280, + "thread": 2 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 3248631, + "thread": 29 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 3401302, + "thread": 8 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 3457715, + "thread": 10 + } + }, + { + "amount": "284.806696052", + "slot": { + "period": 3649304, + "thread": 14 + } + }, + { + "amount": "284.806696047", + "slot": { + "period": 3936784, + "thread": 26 + } + } + ], + "AU12DrgXnriymt25JDkepVZ9gcNd7TqWymUYmTHLqFmKn1PKAJsHn": [ + { + "amount": "248.058437255", + "slot": { + "period": 40278, + "thread": 0 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 226600, + "thread": 27 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 390988, + "thread": 25 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 584911, + "thread": 1 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 653529, + "thread": 30 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 898074, + "thread": 17 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1072497, + "thread": 20 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1212476, + "thread": 27 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1451149, + "thread": 16 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1548622, + "thread": 24 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1651336, + "thread": 28 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 1884407, + "thread": 1 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2016457, + "thread": 26 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2242630, + "thread": 5 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2418541, + "thread": 29 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2500938, + "thread": 25 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2674486, + "thread": 24 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 2844542, + "thread": 22 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 3015596, + "thread": 8 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 3175909, + "thread": 0 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 3391536, + "thread": 11 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 3582895, + "thread": 9 + } + }, + { + "amount": "248.058437255", + "slot": { + "period": 3737870, + "thread": 19 + } + }, + { + "amount": "248.058437252", + "slot": { + "period": 3791948, + "thread": 13 + } + } + ], + "AU12DsUfWNK7mCv9rQitQbinVf9am6gNTAiFfRf4s6TFhf1UxGQK7": [ + { + "amount": "64.247238114", + "slot": { + "period": 107088, + "thread": 17 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 313968, + "thread": 8 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 449651, + "thread": 28 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 622092, + "thread": 23 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 663125, + "thread": 21 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 897805, + "thread": 18 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1071315, + "thread": 29 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1199141, + "thread": 0 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1449546, + "thread": 30 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1497513, + "thread": 9 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1760629, + "thread": 27 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 1891826, + "thread": 10 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2136756, + "thread": 17 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2187343, + "thread": 23 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2342064, + "thread": 11 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2618840, + "thread": 3 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2630467, + "thread": 30 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 2823192, + "thread": 5 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 3003645, + "thread": 15 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 3264637, + "thread": 23 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 3430685, + "thread": 20 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 3459108, + "thread": 1 + } + }, + { + "amount": "64.247238114", + "slot": { + "period": 3655129, + "thread": 10 + } + }, + { + "amount": "64.247238116", + "slot": { + "period": 3879279, + "thread": 16 + } + } + ], + "AU12DumbogKfy8JTjDZVF5F3VgWsLFt7XrbmvbnzwqjE78HEaHq4f": [ + { + "amount": "159.311117450", + "slot": { + "period": 48051, + "thread": 8 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 278688, + "thread": 17 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 326839, + "thread": 15 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 562972, + "thread": 5 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 750002, + "thread": 5 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 934074, + "thread": 16 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 994466, + "thread": 20 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 1235528, + "thread": 7 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 1317939, + "thread": 19 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 1628850, + "thread": 23 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 1732375, + "thread": 28 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 1810861, + "thread": 22 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2114627, + "thread": 10 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2247392, + "thread": 14 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2308018, + "thread": 14 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2527033, + "thread": 26 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2650723, + "thread": 17 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 2832916, + "thread": 21 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3030091, + "thread": 12 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3150178, + "thread": 28 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3295271, + "thread": 28 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3576736, + "thread": 9 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3734857, + "thread": 4 + } + }, + { + "amount": "159.311117450", + "slot": { + "period": 3814199, + "thread": 17 + } + } + ], + "AU12Dv3QTq46QYCQyiSyjKMeG2G4N72HvbmsbhYiypiMxXXNMnYpj": [ + { + "amount": "316.668240286", + "slot": { + "period": 92020, + "thread": 29 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 220113, + "thread": 18 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 436666, + "thread": 19 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 501525, + "thread": 30 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 777828, + "thread": 19 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 889430, + "thread": 20 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1022940, + "thread": 5 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1200220, + "thread": 30 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1446006, + "thread": 17 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1596467, + "thread": 8 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1732534, + "thread": 28 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 1947306, + "thread": 24 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2078552, + "thread": 30 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2242448, + "thread": 1 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2437348, + "thread": 13 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2475295, + "thread": 22 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2762590, + "thread": 8 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 2871705, + "thread": 2 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 3016836, + "thread": 26 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 3266994, + "thread": 25 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 3325044, + "thread": 22 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 3518749, + "thread": 29 + } + }, + { + "amount": "316.668240286", + "slot": { + "period": 3766882, + "thread": 27 + } + }, + { + "amount": "316.668240294", + "slot": { + "period": 3921519, + "thread": 4 + } + } + ], + "AU12DyFiQin1vx6VaVRkRA98DsCRvac2H3NvC1ZkHcjMkXyuoTx7t": [ + { + "amount": "146.529157891", + "slot": { + "period": 46205, + "thread": 2 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 240864, + "thread": 8 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 371962, + "thread": 28 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 607765, + "thread": 11 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 738809, + "thread": 15 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 913860, + "thread": 10 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1043170, + "thread": 13 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1188385, + "thread": 13 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1380675, + "thread": 9 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1563546, + "thread": 3 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1684937, + "thread": 16 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 1839729, + "thread": 9 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2076905, + "thread": 24 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2289687, + "thread": 6 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2339611, + "thread": 22 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2600473, + "thread": 26 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2752254, + "thread": 12 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 2953031, + "thread": 31 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 3067661, + "thread": 11 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 3247980, + "thread": 14 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 3378265, + "thread": 28 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 3582468, + "thread": 14 + } + }, + { + "amount": "146.529157891", + "slot": { + "period": 3733557, + "thread": 24 + } + }, + { + "amount": "146.529157890", + "slot": { + "period": 3910762, + "thread": 7 + } + } + ], + "AU12DyfjNNrfhHdnDx4sai5YtH7FxHzFA37uPNorCh7984PyQuG6t": [ + { + "amount": "87.291462266", + "slot": { + "period": 98360, + "thread": 23 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 278865, + "thread": 0 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 487689, + "thread": 3 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 567765, + "thread": 25 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 716166, + "thread": 18 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 856010, + "thread": 1 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1097323, + "thread": 5 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1256558, + "thread": 19 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1453644, + "thread": 8 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1512056, + "thread": 4 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1664153, + "thread": 18 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 1823955, + "thread": 23 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2045770, + "thread": 10 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2148555, + "thread": 20 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2367111, + "thread": 1 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2591123, + "thread": 20 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2640193, + "thread": 31 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2891723, + "thread": 14 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 2998832, + "thread": 23 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 3125359, + "thread": 5 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 3430029, + "thread": 4 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 3548210, + "thread": 17 + } + }, + { + "amount": "87.291462266", + "slot": { + "period": 3757934, + "thread": 22 + } + }, + { + "amount": "87.291462262", + "slot": { + "period": 3842736, + "thread": 29 + } + } + ], + "AU12DywyEQQoH91L4gztzgkiKDwYYMDsfrAVc7xERhS6ZtPTErYr9": [ + { + "amount": "96.727020138", + "slot": { + "period": 122393, + "thread": 22 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 167431, + "thread": 15 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 458224, + "thread": 30 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 644213, + "thread": 10 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 756299, + "thread": 8 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 821752, + "thread": 3 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1069093, + "thread": 4 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1303283, + "thread": 10 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1408545, + "thread": 3 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1544194, + "thread": 10 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1701095, + "thread": 15 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1908894, + "thread": 9 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 1998506, + "thread": 22 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 2242855, + "thread": 14 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 2382165, + "thread": 25 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 2536642, + "thread": 19 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 2687567, + "thread": 0 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 2841777, + "thread": 25 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3066544, + "thread": 8 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3148470, + "thread": 7 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3349148, + "thread": 14 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3479647, + "thread": 17 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3685164, + "thread": 2 + } + }, + { + "amount": "96.727020138", + "slot": { + "period": 3832392, + "thread": 1 + } + } + ], + "AU12DzNZphAGFMa8RqtgorKM3m756pRPexbeAUCP9utzuSydmx7Rj": [ + { + "amount": "364.304239725", + "slot": { + "period": 160102, + "thread": 22 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 220860, + "thread": 19 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 390202, + "thread": 4 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 521612, + "thread": 1 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 684269, + "thread": 5 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 837343, + "thread": 9 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1055545, + "thread": 19 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1176556, + "thread": 8 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1370454, + "thread": 23 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1629571, + "thread": 18 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1663752, + "thread": 13 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 1809139, + "thread": 23 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2002466, + "thread": 31 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2268379, + "thread": 15 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2400532, + "thread": 4 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2509912, + "thread": 14 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2694515, + "thread": 3 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2855816, + "thread": 16 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 2997467, + "thread": 11 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 3272722, + "thread": 29 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 3362351, + "thread": 5 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 3495258, + "thread": 5 + } + }, + { + "amount": "364.304239725", + "slot": { + "period": 3667941, + "thread": 5 + } + }, + { + "amount": "364.304239722", + "slot": { + "period": 3935946, + "thread": 16 + } + } + ], + "AU12E1BTTGZLwcRcFVFG7Truc3BzQPbRNCox8zFeJ2rMKm7nKw6So": [ + { + "amount": "265.409051948", + "slot": { + "period": 14062, + "thread": 14 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 266104, + "thread": 24 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 429183, + "thread": 26 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 616230, + "thread": 4 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 782010, + "thread": 12 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 884574, + "thread": 23 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1143011, + "thread": 18 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1262528, + "thread": 12 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1458221, + "thread": 5 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1540487, + "thread": 23 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1684896, + "thread": 5 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 1941019, + "thread": 2 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2056729, + "thread": 10 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2242440, + "thread": 31 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2365256, + "thread": 28 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2501474, + "thread": 19 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2629563, + "thread": 31 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 2871275, + "thread": 19 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 3017005, + "thread": 30 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 3181155, + "thread": 11 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 3385179, + "thread": 23 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 3510092, + "thread": 20 + } + }, + { + "amount": "265.409051948", + "slot": { + "period": 3703646, + "thread": 18 + } + }, + { + "amount": "265.409051956", + "slot": { + "period": 3782676, + "thread": 16 + } + } + ], + "AU12E1G8VjJTDEjGTJPJX5spbhPuKtQQjhsvoybsXrZiMyzcnhtAp": [ + { + "amount": "182.791449391", + "slot": { + "period": 25030, + "thread": 25 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 174962, + "thread": 27 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 467802, + "thread": 17 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 592199, + "thread": 26 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 684155, + "thread": 1 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 968550, + "thread": 9 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1095004, + "thread": 12 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1294763, + "thread": 9 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1320405, + "thread": 8 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1481772, + "thread": 13 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1755665, + "thread": 1 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 1873747, + "thread": 30 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2090558, + "thread": 30 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2242632, + "thread": 26 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2325927, + "thread": 17 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2594417, + "thread": 25 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2742011, + "thread": 19 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 2893457, + "thread": 27 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 3100027, + "thread": 29 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 3267470, + "thread": 29 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 3418937, + "thread": 13 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 3591533, + "thread": 30 + } + }, + { + "amount": "182.791449391", + "slot": { + "period": 3631974, + "thread": 22 + } + }, + { + "amount": "182.791449400", + "slot": { + "period": 3901579, + "thread": 22 + } + } + ], + "AU12E1X9M9Q4dEUxtFXYJEuocU6814WXXcmjTrhTxFpWAunFna65a": [ + { + "amount": "298.913865730", + "slot": { + "period": 117514, + "thread": 31 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 171689, + "thread": 18 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 361423, + "thread": 15 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 645099, + "thread": 27 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 690668, + "thread": 18 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 935767, + "thread": 25 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1051112, + "thread": 21 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1296491, + "thread": 20 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1391324, + "thread": 30 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1594327, + "thread": 1 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1685621, + "thread": 8 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 1934476, + "thread": 11 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2137999, + "thread": 12 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2274649, + "thread": 12 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2313404, + "thread": 26 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2481421, + "thread": 24 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2766582, + "thread": 2 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2858158, + "thread": 4 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 2980810, + "thread": 18 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 3171458, + "thread": 1 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 3328169, + "thread": 26 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 3527446, + "thread": 8 + } + }, + { + "amount": "298.913865730", + "slot": { + "period": 3692506, + "thread": 1 + } + }, + { + "amount": "298.913865727", + "slot": { + "period": 3823571, + "thread": 23 + } + } + ], + "AU12E26VMsqCNuR9YFDrUFx1JxJXEHtXJdDU1fRJ6zu4BfnskC56e": [ + { + "amount": "309.056850594", + "slot": { + "period": 91084, + "thread": 6 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 310184, + "thread": 27 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 452116, + "thread": 18 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 624361, + "thread": 10 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 798250, + "thread": 30 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 929445, + "thread": 14 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1055763, + "thread": 20 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1216426, + "thread": 12 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1323921, + "thread": 14 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1621693, + "thread": 13 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1744844, + "thread": 16 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 1920700, + "thread": 26 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2133830, + "thread": 16 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2214643, + "thread": 8 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2462262, + "thread": 26 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2536095, + "thread": 29 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2758803, + "thread": 24 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 2949282, + "thread": 29 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 3063382, + "thread": 13 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 3202518, + "thread": 28 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 3297452, + "thread": 29 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 3516886, + "thread": 18 + } + }, + { + "amount": "309.056850594", + "slot": { + "period": 3677779, + "thread": 30 + } + }, + { + "amount": "309.056850585", + "slot": { + "period": 3896841, + "thread": 29 + } + } + ], + "AU12E27riTAY8zvQDGpNHY6gMgkpWemzh5F5hxoPkpAa8QYBH4f9a": [ + { + "amount": "267.670744454", + "slot": { + "period": 21993, + "thread": 29 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 218158, + "thread": 21 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 392520, + "thread": 13 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 512484, + "thread": 29 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 694243, + "thread": 29 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 868509, + "thread": 6 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1017808, + "thread": 26 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1192184, + "thread": 29 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1459423, + "thread": 10 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1492778, + "thread": 27 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1739371, + "thread": 16 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 1889968, + "thread": 11 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2013538, + "thread": 18 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2289247, + "thread": 29 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2385698, + "thread": 15 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2578838, + "thread": 19 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2643992, + "thread": 8 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2910673, + "thread": 14 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 2984604, + "thread": 23 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 3166169, + "thread": 25 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 3308340, + "thread": 23 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 3593481, + "thread": 17 + } + }, + { + "amount": "267.670744454", + "slot": { + "period": 3694850, + "thread": 2 + } + }, + { + "amount": "267.670744452", + "slot": { + "period": 3830114, + "thread": 12 + } + } + ], + "AU12E36SCg437doNQor89rg9MSEdYCG34chWC93vXn31KXdBGS4rr": [ + { + "amount": "244.469685818", + "slot": { + "period": 133645, + "thread": 25 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 229903, + "thread": 3 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 343271, + "thread": 7 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 517150, + "thread": 13 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 784136, + "thread": 6 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 918795, + "thread": 11 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1044913, + "thread": 3 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1232352, + "thread": 15 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1454029, + "thread": 19 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1503954, + "thread": 24 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1670759, + "thread": 18 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 1869860, + "thread": 16 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2133765, + "thread": 16 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2284941, + "thread": 10 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2362390, + "thread": 3 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2609358, + "thread": 4 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2759245, + "thread": 22 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 2840575, + "thread": 0 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 3056585, + "thread": 23 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 3220982, + "thread": 26 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 3382272, + "thread": 1 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 3486347, + "thread": 25 + } + }, + { + "amount": "244.469685818", + "slot": { + "period": 3714748, + "thread": 12 + } + }, + { + "amount": "244.469685828", + "slot": { + "period": 3880050, + "thread": 16 + } + } + ], + "AU12E45EergJ1mc4qDuh4rwudA6Gf3QaRaN9k64H8GLEqyTeRG4Vw": [ + { + "amount": "64.240018043", + "slot": { + "period": 39605, + "thread": 2 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 215543, + "thread": 2 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 419576, + "thread": 25 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 499431, + "thread": 4 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 716186, + "thread": 13 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 907468, + "thread": 30 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1045142, + "thread": 25 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1210491, + "thread": 1 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1447967, + "thread": 19 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1635223, + "thread": 9 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1716557, + "thread": 14 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 1848143, + "thread": 18 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2019397, + "thread": 30 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2200993, + "thread": 5 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2331033, + "thread": 29 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2540919, + "thread": 5 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2742376, + "thread": 23 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 2845525, + "thread": 4 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 3118278, + "thread": 15 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 3152991, + "thread": 26 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 3433698, + "thread": 8 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 3561738, + "thread": 7 + } + }, + { + "amount": "64.240018043", + "slot": { + "period": 3701021, + "thread": 20 + } + }, + { + "amount": "64.240018038", + "slot": { + "period": 3924538, + "thread": 22 + } + } + ], + "AU12E6LbDSDnr1m6sQge91oeKioaNQZLTAHr3RVXFgP3q3VhTEMpb": [ + { + "amount": "273.445689424", + "slot": { + "period": 137826, + "thread": 29 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 207368, + "thread": 27 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 379392, + "thread": 17 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 557446, + "thread": 25 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 701915, + "thread": 31 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 909682, + "thread": 28 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1123766, + "thread": 8 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1279846, + "thread": 11 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1463613, + "thread": 3 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1564187, + "thread": 28 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1787105, + "thread": 13 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 1911566, + "thread": 8 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2032594, + "thread": 30 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2245471, + "thread": 16 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2345778, + "thread": 7 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2544052, + "thread": 29 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2646978, + "thread": 9 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 2822346, + "thread": 28 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 3053285, + "thread": 31 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 3124573, + "thread": 27 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 3445392, + "thread": 6 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 3490602, + "thread": 20 + } + }, + { + "amount": "273.445689424", + "slot": { + "period": 3671938, + "thread": 31 + } + }, + { + "amount": "273.445689423", + "slot": { + "period": 3783630, + "thread": 23 + } + } + ], + "AU12E6WT3V1P3DboB71mbzgsgtwu7HZXh1sJ9HgZaeKR52ztwb4GV": [ + { + "amount": "65.294843813", + "slot": { + "period": 44850, + "thread": 25 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 269383, + "thread": 3 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 391677, + "thread": 13 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 495349, + "thread": 26 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 812089, + "thread": 3 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 859430, + "thread": 17 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 985484, + "thread": 14 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 1239769, + "thread": 8 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 1477893, + "thread": 10 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 1548759, + "thread": 24 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 1752125, + "thread": 7 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 1819062, + "thread": 26 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2140965, + "thread": 30 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2198451, + "thread": 11 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2375581, + "thread": 10 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2465210, + "thread": 26 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2658955, + "thread": 19 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 2904468, + "thread": 22 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 3094917, + "thread": 22 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 3157660, + "thread": 1 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 3298119, + "thread": 27 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 3483760, + "thread": 12 + } + }, + { + "amount": "65.294843813", + "slot": { + "period": 3746986, + "thread": 26 + } + }, + { + "amount": "65.294843821", + "slot": { + "period": 3881856, + "thread": 8 + } + } + ], + "AU12E6dSYRHMD2ksSnMBXA398V4P6XMRW9ZvxqwT3XXXK1x3eETPZ": [ + { + "amount": "151.235241644", + "slot": { + "period": 155085, + "thread": 19 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 285451, + "thread": 5 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 447577, + "thread": 24 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 542871, + "thread": 24 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 658036, + "thread": 16 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 870771, + "thread": 12 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1017217, + "thread": 25 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1205327, + "thread": 16 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1413588, + "thread": 30 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1555664, + "thread": 29 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1789716, + "thread": 23 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 1818532, + "thread": 27 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2138704, + "thread": 2 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2193568, + "thread": 25 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2391665, + "thread": 22 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2579468, + "thread": 16 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2749947, + "thread": 31 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 2821487, + "thread": 2 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 3047898, + "thread": 21 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 3230927, + "thread": 23 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 3323527, + "thread": 9 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 3547455, + "thread": 25 + } + }, + { + "amount": "151.235241644", + "slot": { + "period": 3662341, + "thread": 17 + } + }, + { + "amount": "151.235241653", + "slot": { + "period": 3923875, + "thread": 2 + } + } + ], + "AU12E6nGph4yCrqVmDjJJokG9SNhSiV1pGih2Vy7K9yU7rWnLhuJU": [ + { + "amount": "59.289875266", + "slot": { + "period": 35529, + "thread": 7 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 274779, + "thread": 14 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 342870, + "thread": 21 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 574458, + "thread": 26 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 710129, + "thread": 0 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 830395, + "thread": 9 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1075433, + "thread": 3 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1195288, + "thread": 30 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1430874, + "thread": 28 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1635690, + "thread": 20 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1790171, + "thread": 19 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 1911004, + "thread": 4 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2000651, + "thread": 28 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2237921, + "thread": 15 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2459897, + "thread": 6 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2573521, + "thread": 22 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2768085, + "thread": 28 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 2857504, + "thread": 13 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 3115937, + "thread": 19 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 3189923, + "thread": 8 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 3388481, + "thread": 4 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 3598518, + "thread": 6 + } + }, + { + "amount": "59.289875266", + "slot": { + "period": 3667971, + "thread": 2 + } + }, + { + "amount": "59.289875256", + "slot": { + "period": 3943630, + "thread": 24 + } + } + ], + "AU12E7drNmgVqC6kxd3N71fFuQrfBetuCGY4XG9YZc3koYAMbGCaA": [ + { + "amount": "220.143354502", + "slot": { + "period": 32908, + "thread": 21 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 305545, + "thread": 26 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 429781, + "thread": 5 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 539809, + "thread": 23 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 747894, + "thread": 6 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 841759, + "thread": 10 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1108652, + "thread": 24 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1200405, + "thread": 28 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1448488, + "thread": 31 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1509883, + "thread": 22 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1756180, + "thread": 2 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1845572, + "thread": 10 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 1982111, + "thread": 16 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 2285974, + "thread": 22 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 2304424, + "thread": 23 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 2606093, + "thread": 21 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 2646170, + "thread": 5 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 2880406, + "thread": 18 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3044798, + "thread": 10 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3193445, + "thread": 11 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3447981, + "thread": 20 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3612753, + "thread": 31 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3777653, + "thread": 18 + } + }, + { + "amount": "220.143354502", + "slot": { + "period": 3917246, + "thread": 20 + } + } + ], + "AU12E9VpmZzSx8zfCU8wgxDRvkLqtgTV9QT9ohnrWiUPyhRFwvp62": [ + { + "amount": "171.631014439", + "slot": { + "period": 142054, + "thread": 26 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 322001, + "thread": 30 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 347274, + "thread": 29 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 562207, + "thread": 30 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 785134, + "thread": 14 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 831102, + "thread": 28 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1085240, + "thread": 14 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1248279, + "thread": 6 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1361431, + "thread": 25 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1499114, + "thread": 30 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1756911, + "thread": 4 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 1853699, + "thread": 4 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2015942, + "thread": 29 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2244147, + "thread": 13 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2304910, + "thread": 11 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2541182, + "thread": 13 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2768950, + "thread": 13 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 2886107, + "thread": 12 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 3031512, + "thread": 3 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 3211022, + "thread": 22 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 3318982, + "thread": 2 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 3462856, + "thread": 28 + } + }, + { + "amount": "171.631014439", + "slot": { + "period": 3657076, + "thread": 31 + } + }, + { + "amount": "171.631014444", + "slot": { + "period": 3805666, + "thread": 17 + } + } + ], + "AU12EATZs2qFvhDGWMDyZqNGi5FZU57X1egAHdWFwRBPYcQWBbNVS": [ + { + "amount": "60.667688884", + "slot": { + "period": 94684, + "thread": 4 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 290840, + "thread": 4 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 456965, + "thread": 20 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 517611, + "thread": 7 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 811536, + "thread": 3 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 877838, + "thread": 16 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1099740, + "thread": 22 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1257817, + "thread": 7 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1448794, + "thread": 0 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1641775, + "thread": 23 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1701110, + "thread": 22 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 1900564, + "thread": 0 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2015840, + "thread": 1 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2239144, + "thread": 0 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2358976, + "thread": 17 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2594925, + "thread": 7 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2745791, + "thread": 12 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 2832064, + "thread": 4 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 3089865, + "thread": 10 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 3261302, + "thread": 11 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 3416864, + "thread": 20 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 3454103, + "thread": 31 + } + }, + { + "amount": "60.667688884", + "slot": { + "period": 3705139, + "thread": 4 + } + }, + { + "amount": "60.667688873", + "slot": { + "period": 3908049, + "thread": 23 + } + } + ], + "AU12EAafDgr9HgMpGd31RKGWCVbgMS9CJ64LfrMhQXyMgTtgcgYfq": [ + { + "amount": "54.811415448", + "slot": { + "period": 43464, + "thread": 6 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 233214, + "thread": 17 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 362785, + "thread": 5 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 641777, + "thread": 1 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 745024, + "thread": 20 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 849153, + "thread": 31 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 988960, + "thread": 14 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 1317347, + "thread": 19 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 1442897, + "thread": 15 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 1606396, + "thread": 18 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 1805713, + "thread": 17 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 1963673, + "thread": 6 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2001582, + "thread": 22 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2255485, + "thread": 29 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2413626, + "thread": 28 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2495006, + "thread": 29 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2682464, + "thread": 15 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 2926372, + "thread": 0 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 3000701, + "thread": 4 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 3206607, + "thread": 17 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 3339670, + "thread": 7 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 3521140, + "thread": 19 + } + }, + { + "amount": "54.811415448", + "slot": { + "period": 3667055, + "thread": 13 + } + }, + { + "amount": "54.811415443", + "slot": { + "period": 3926216, + "thread": 10 + } + } + ], + "AU12EAqTDQtqDaBuiXCFhF7VHU8AM2cHavGq34keaVaHVWCtqLm5s": [ + { + "amount": "440.761499512", + "slot": { + "period": 60511, + "thread": 0 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 167666, + "thread": 17 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 352636, + "thread": 25 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 640807, + "thread": 30 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 715406, + "thread": 7 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 911114, + "thread": 2 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1097976, + "thread": 7 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1165246, + "thread": 1 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1356809, + "thread": 31 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1622862, + "thread": 4 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1698595, + "thread": 0 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 1844703, + "thread": 10 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2117453, + "thread": 12 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2233837, + "thread": 17 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2419616, + "thread": 24 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2472897, + "thread": 19 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2666424, + "thread": 7 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 2796415, + "thread": 29 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3023373, + "thread": 16 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3232936, + "thread": 2 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3329506, + "thread": 10 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3601865, + "thread": 15 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3683218, + "thread": 14 + } + }, + { + "amount": "440.761499512", + "slot": { + "period": 3921642, + "thread": 7 + } + } + ], + "AU12EEm1u5N9wf9XTWPc4v6V4E98k8ZJWPK2m6FPAojx5k4Ajbq8N": [ + { + "amount": "153.786830496", + "slot": { + "period": 152526, + "thread": 30 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 168341, + "thread": 20 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 481484, + "thread": 8 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 652218, + "thread": 2 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 698465, + "thread": 4 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 901261, + "thread": 9 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1043055, + "thread": 14 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1206266, + "thread": 30 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1361802, + "thread": 16 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1555408, + "thread": 21 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1735015, + "thread": 0 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1975285, + "thread": 20 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 1977067, + "thread": 4 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 2294761, + "thread": 15 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 2327531, + "thread": 27 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 2591674, + "thread": 29 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 2665418, + "thread": 10 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 2919646, + "thread": 4 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 3073620, + "thread": 16 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 3214279, + "thread": 5 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 3359748, + "thread": 16 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 3460168, + "thread": 18 + } + }, + { + "amount": "153.786830496", + "slot": { + "period": 3718119, + "thread": 23 + } + }, + { + "amount": "153.786830486", + "slot": { + "period": 3920109, + "thread": 23 + } + } + ], + "AU12EFP948KC9Ltd1JevZpmNKoj46m1Pj9GFBp1MtWX87ysTHZEcw": [ + { + "amount": "225.233872474", + "slot": { + "period": 136645, + "thread": 9 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 277355, + "thread": 14 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 448596, + "thread": 28 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 528861, + "thread": 13 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 810430, + "thread": 15 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 892707, + "thread": 28 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1092355, + "thread": 12 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1212642, + "thread": 9 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1340239, + "thread": 1 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1563867, + "thread": 3 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1786582, + "thread": 17 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 1825352, + "thread": 13 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2115303, + "thread": 1 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2202871, + "thread": 13 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2295335, + "thread": 10 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2525969, + "thread": 21 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2779425, + "thread": 30 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2833857, + "thread": 4 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 2967719, + "thread": 3 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 3183675, + "thread": 13 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 3290848, + "thread": 19 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 3600220, + "thread": 22 + } + }, + { + "amount": "225.233872474", + "slot": { + "period": 3627948, + "thread": 31 + } + }, + { + "amount": "225.233872483", + "slot": { + "period": 3870342, + "thread": 12 + } + } + ], + "AU12EFbdpFB2iw5DTYXSNHPpY1sXceQNZKgLq3NKeggWqNraSaKW2": [ + { + "amount": "393.798871463", + "slot": { + "period": 69074, + "thread": 14 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 231389, + "thread": 22 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 362625, + "thread": 12 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 652638, + "thread": 25 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 742571, + "thread": 17 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 968293, + "thread": 2 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1131727, + "thread": 7 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1314665, + "thread": 31 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1400777, + "thread": 31 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1485507, + "thread": 12 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1648467, + "thread": 11 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 1860465, + "thread": 2 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2043274, + "thread": 24 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2270484, + "thread": 15 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2344388, + "thread": 15 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2579984, + "thread": 17 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2694842, + "thread": 8 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 2801976, + "thread": 26 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 3091220, + "thread": 17 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 3195952, + "thread": 5 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 3324211, + "thread": 3 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 3551696, + "thread": 19 + } + }, + { + "amount": "393.798871463", + "slot": { + "period": 3651587, + "thread": 24 + } + }, + { + "amount": "393.798871473", + "slot": { + "period": 3891983, + "thread": 9 + } + } + ], + "AU12EFrnFoWziwN8Np5y9spqH39Psx2EhQHnFywSGkNcrWVBqKFRU": [ + { + "amount": "182.427081149", + "slot": { + "period": 65705, + "thread": 12 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 216513, + "thread": 5 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 326379, + "thread": 2 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 607507, + "thread": 28 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 784235, + "thread": 25 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 953305, + "thread": 19 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1034303, + "thread": 28 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1284789, + "thread": 13 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1365629, + "thread": 31 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1639921, + "thread": 30 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1711903, + "thread": 0 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 1884037, + "thread": 5 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2019493, + "thread": 1 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2175984, + "thread": 15 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2392767, + "thread": 17 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2539179, + "thread": 8 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2707540, + "thread": 12 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 2948401, + "thread": 0 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 3055849, + "thread": 28 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 3273090, + "thread": 13 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 3360057, + "thread": 6 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 3506633, + "thread": 19 + } + }, + { + "amount": "182.427081149", + "slot": { + "period": 3655465, + "thread": 23 + } + }, + { + "amount": "182.427081158", + "slot": { + "period": 3806825, + "thread": 25 + } + } + ], + "AU12EGMgzLbP6EcKK9CGp2TqWMcLGjiPLKP6Z4VVf1wmzuCXtSE6K": [ + { + "amount": "99.022867030", + "slot": { + "period": 142216, + "thread": 11 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 226379, + "thread": 29 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 339244, + "thread": 24 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 651377, + "thread": 28 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 777937, + "thread": 13 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 865450, + "thread": 14 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1090995, + "thread": 18 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1306436, + "thread": 1 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1454323, + "thread": 14 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1512073, + "thread": 29 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1763723, + "thread": 2 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 1862952, + "thread": 3 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2023861, + "thread": 13 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2207769, + "thread": 6 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2423119, + "thread": 23 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2556490, + "thread": 29 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2748397, + "thread": 4 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2885963, + "thread": 2 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 2982063, + "thread": 10 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 3218249, + "thread": 28 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 3329608, + "thread": 8 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 3513049, + "thread": 1 + } + }, + { + "amount": "99.022867030", + "slot": { + "period": 3763261, + "thread": 4 + } + }, + { + "amount": "99.022867037", + "slot": { + "period": 3885607, + "thread": 0 + } + } + ], + "AU12EGf2dxFT6K2HcEgy9WBnUgLxjiK86ZVgUmxw3mmZuKBUnXhfg": [ + { + "amount": "102.787812881", + "slot": { + "period": 93850, + "thread": 17 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 186282, + "thread": 26 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 367126, + "thread": 21 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 573989, + "thread": 5 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 804816, + "thread": 2 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 871976, + "thread": 5 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1123263, + "thread": 5 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1311392, + "thread": 27 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1464570, + "thread": 23 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1536620, + "thread": 10 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1804203, + "thread": 21 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 1871600, + "thread": 10 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2103071, + "thread": 11 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2232299, + "thread": 17 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2318323, + "thread": 17 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2535287, + "thread": 7 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2753643, + "thread": 20 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 2942133, + "thread": 29 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 3114226, + "thread": 26 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 3263896, + "thread": 10 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 3330568, + "thread": 30 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 3470157, + "thread": 14 + } + }, + { + "amount": "102.787812881", + "slot": { + "period": 3677918, + "thread": 20 + } + }, + { + "amount": "102.787812890", + "slot": { + "period": 3845420, + "thread": 20 + } + } + ], + "AU12EHHUWstibGjDf7nqhoLH6hivRbT2xwzGVA8NBy37BmuhNgJMi": [ + { + "amount": "148.027105383", + "slot": { + "period": 99940, + "thread": 16 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 304824, + "thread": 12 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 392982, + "thread": 21 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 520611, + "thread": 26 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 716740, + "thread": 14 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 930084, + "thread": 30 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1110591, + "thread": 19 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1185800, + "thread": 20 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1393827, + "thread": 30 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1567456, + "thread": 27 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1756527, + "thread": 14 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 1819817, + "thread": 13 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2071206, + "thread": 26 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2147905, + "thread": 20 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2367973, + "thread": 17 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2526265, + "thread": 10 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2717735, + "thread": 5 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 2827512, + "thread": 29 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3047441, + "thread": 10 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3264601, + "thread": 6 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3433195, + "thread": 18 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3554048, + "thread": 1 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3723941, + "thread": 1 + } + }, + { + "amount": "148.027105383", + "slot": { + "period": 3807911, + "thread": 28 + } + } + ], + "AU12EHZs6VbU1nmNvN17YSPXXUZ1dM4DN6JAyvqHqbg3E4dA4h4S3": [ + { + "amount": "235.988150364", + "slot": { + "period": 66817, + "thread": 3 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 207062, + "thread": 12 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 482915, + "thread": 29 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 527750, + "thread": 14 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 798307, + "thread": 28 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 833906, + "thread": 8 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1022896, + "thread": 3 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1183148, + "thread": 5 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1471132, + "thread": 25 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1557809, + "thread": 14 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1747882, + "thread": 23 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 1912966, + "thread": 30 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2092902, + "thread": 28 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2153130, + "thread": 11 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2317494, + "thread": 0 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2518089, + "thread": 12 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2696056, + "thread": 20 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2927213, + "thread": 29 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 2994815, + "thread": 11 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 3187184, + "thread": 11 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 3349708, + "thread": 26 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 3509062, + "thread": 0 + } + }, + { + "amount": "235.988150364", + "slot": { + "period": 3696051, + "thread": 27 + } + }, + { + "amount": "235.988150354", + "slot": { + "period": 3858865, + "thread": 20 + } + } + ], + "AU12EHaspkdbBcn8EaCddaYYCpMQJRa9jSXtMb813CQrpJ618bFsZ": [ + { + "amount": "140.055530427", + "slot": { + "period": 166411, + "thread": 26 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 288765, + "thread": 24 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 411261, + "thread": 2 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 530246, + "thread": 7 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 774302, + "thread": 24 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 946032, + "thread": 25 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 991497, + "thread": 2 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 1272096, + "thread": 2 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 1364597, + "thread": 25 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 1556003, + "thread": 16 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 1767452, + "thread": 8 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 1932096, + "thread": 12 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2032498, + "thread": 29 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2222344, + "thread": 6 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2415875, + "thread": 25 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2479528, + "thread": 30 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2653079, + "thread": 18 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 2813947, + "thread": 9 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 3100069, + "thread": 4 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 3140323, + "thread": 19 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 3399945, + "thread": 7 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 3467931, + "thread": 15 + } + }, + { + "amount": "140.055530427", + "slot": { + "period": 3742643, + "thread": 9 + } + }, + { + "amount": "140.055530431", + "slot": { + "period": 3852693, + "thread": 16 + } + } + ], + "AU12EHyfvnVPGsq7EvoYAkV7d75BipvmDtgatg9Z7A9cDJHpjEpx5": [ + { + "amount": "436.405950101", + "slot": { + "period": 51431, + "thread": 3 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 284866, + "thread": 4 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 405642, + "thread": 7 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 611884, + "thread": 18 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 686304, + "thread": 8 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 919100, + "thread": 4 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1131406, + "thread": 0 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1196472, + "thread": 9 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1390805, + "thread": 29 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1608075, + "thread": 5 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1740620, + "thread": 20 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1849765, + "thread": 27 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 1987168, + "thread": 4 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 2162561, + "thread": 26 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 2339630, + "thread": 23 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 2464337, + "thread": 25 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 2757368, + "thread": 13 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 2839187, + "thread": 8 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 3017932, + "thread": 3 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 3240833, + "thread": 2 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 3317002, + "thread": 11 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 3515055, + "thread": 25 + } + }, + { + "amount": "436.405950101", + "slot": { + "period": 3625899, + "thread": 9 + } + }, + { + "amount": "436.405950092", + "slot": { + "period": 3942295, + "thread": 10 + } + } + ], + "AU12ELU3QWL3n7dx9mrSnBbKjQdqpeV5wW3atgihYfv3auqdjCoLC": [ + { + "amount": "1112.785973591", + "slot": { + "period": 94098, + "thread": 9 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 293128, + "thread": 24 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 338213, + "thread": 14 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 522997, + "thread": 27 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 731613, + "thread": 24 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 972703, + "thread": 28 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1088743, + "thread": 9 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1161987, + "thread": 29 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1337220, + "thread": 14 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1618140, + "thread": 21 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1720674, + "thread": 24 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 1848145, + "thread": 13 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2118278, + "thread": 30 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2162477, + "thread": 24 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2446133, + "thread": 25 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2556041, + "thread": 13 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2697712, + "thread": 10 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2831147, + "thread": 25 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 2998669, + "thread": 10 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 3260242, + "thread": 25 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 3299219, + "thread": 10 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 3472637, + "thread": 27 + } + }, + { + "amount": "1112.785973591", + "slot": { + "period": 3622497, + "thread": 24 + } + }, + { + "amount": "1112.785973597", + "slot": { + "period": 3925083, + "thread": 19 + } + } + ], + "AU12ELpjyKXfvwjwY7WF1UvbTb2m2Y4i3XSmSzjxcyqVMcpSnwuxi": [ + { + "amount": "332.088892812", + "slot": { + "period": 147286, + "thread": 9 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 192537, + "thread": 2 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 335676, + "thread": 15 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 514174, + "thread": 26 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 692852, + "thread": 18 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 883600, + "thread": 16 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1025417, + "thread": 19 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1290359, + "thread": 20 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1334812, + "thread": 1 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1570519, + "thread": 14 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1716425, + "thread": 4 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 1862895, + "thread": 28 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2054804, + "thread": 13 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2175515, + "thread": 1 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2373132, + "thread": 21 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2482649, + "thread": 25 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2638751, + "thread": 2 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 2910444, + "thread": 4 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 3036838, + "thread": 20 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 3247063, + "thread": 2 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 3383742, + "thread": 25 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 3583369, + "thread": 30 + } + }, + { + "amount": "332.088892812", + "slot": { + "period": 3640412, + "thread": 22 + } + }, + { + "amount": "332.088892823", + "slot": { + "period": 3787419, + "thread": 30 + } + } + ], + "AU12EM4CwZAGkgK9c4QMo9Y4B3cz6ggezJCJQPtShVAjLjQFCTUpj": [ + { + "amount": "54.647151598", + "slot": { + "period": 112605, + "thread": 13 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 258588, + "thread": 6 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 384280, + "thread": 26 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 582367, + "thread": 26 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 704672, + "thread": 8 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 837979, + "thread": 2 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1049442, + "thread": 9 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1220486, + "thread": 23 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1383288, + "thread": 5 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1514154, + "thread": 3 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1753179, + "thread": 28 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 1812090, + "thread": 6 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2139890, + "thread": 30 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2196212, + "thread": 28 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2318922, + "thread": 18 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2612124, + "thread": 19 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2640878, + "thread": 15 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 2900132, + "thread": 1 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 3087143, + "thread": 16 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 3193701, + "thread": 7 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 3393521, + "thread": 31 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 3461365, + "thread": 3 + } + }, + { + "amount": "54.647151598", + "slot": { + "period": 3729337, + "thread": 28 + } + }, + { + "amount": "54.647151607", + "slot": { + "period": 3899409, + "thread": 21 + } + } + ], + "AU12EML3cZKGAt9miEWmPV6Nj4mWJYpmazqVAz8xPg4tuZjkLC8uf": [ + { + "amount": "345.402611945", + "slot": { + "period": 16793, + "thread": 1 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 276155, + "thread": 20 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 455246, + "thread": 15 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 534685, + "thread": 10 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 747422, + "thread": 22 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 890726, + "thread": 5 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1017458, + "thread": 31 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1163341, + "thread": 25 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1322251, + "thread": 5 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1614097, + "thread": 10 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1672313, + "thread": 2 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1878398, + "thread": 13 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 1983193, + "thread": 30 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 2180627, + "thread": 17 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 2307950, + "thread": 3 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 2613632, + "thread": 0 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 2767348, + "thread": 7 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 2838450, + "thread": 12 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 3032200, + "thread": 2 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 3133461, + "thread": 0 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 3371892, + "thread": 3 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 3543892, + "thread": 4 + } + }, + { + "amount": "345.402611945", + "slot": { + "period": 3716380, + "thread": 22 + } + }, + { + "amount": "345.402611939", + "slot": { + "period": 3824821, + "thread": 2 + } + } + ], + "AU12EMSmmpfS9zNBdMAVEvW8gMB3ifGRpaBoqacB7GEjHQYoU37Z7": [ + { + "amount": "216.954540511", + "slot": { + "period": 34743, + "thread": 10 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 276199, + "thread": 1 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 402953, + "thread": 29 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 595907, + "thread": 8 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 693994, + "thread": 13 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 890189, + "thread": 27 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 988292, + "thread": 10 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 1205386, + "thread": 3 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 1425222, + "thread": 19 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 1636652, + "thread": 11 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 1701890, + "thread": 4 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 1837876, + "thread": 13 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2088287, + "thread": 23 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2208386, + "thread": 20 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2350735, + "thread": 8 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2519365, + "thread": 4 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2694584, + "thread": 13 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 2933085, + "thread": 21 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 3035824, + "thread": 7 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 3180172, + "thread": 10 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 3338641, + "thread": 30 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 3488928, + "thread": 24 + } + }, + { + "amount": "216.954540511", + "slot": { + "period": 3709772, + "thread": 13 + } + }, + { + "amount": "216.954540504", + "slot": { + "period": 3922530, + "thread": 30 + } + } + ], + "AU12ENT2GddmMMYR86ygdgjpDUqQMhHfhgS6H3GLM4iFVE8JmZ7cu": [ + { + "amount": "76.558808709", + "slot": { + "period": 53660, + "thread": 12 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 255239, + "thread": 18 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 368361, + "thread": 15 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 598882, + "thread": 1 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 678671, + "thread": 3 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 821753, + "thread": 15 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 989746, + "thread": 12 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 1170546, + "thread": 5 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 1406708, + "thread": 9 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 1508229, + "thread": 5 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 1726013, + "thread": 2 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 1960863, + "thread": 1 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2009627, + "thread": 28 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2219164, + "thread": 8 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2349540, + "thread": 18 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2532003, + "thread": 5 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2664348, + "thread": 19 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 2860036, + "thread": 1 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 3069302, + "thread": 3 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 3148460, + "thread": 19 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 3382122, + "thread": 25 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 3610987, + "thread": 23 + } + }, + { + "amount": "76.558808709", + "slot": { + "period": 3694981, + "thread": 14 + } + }, + { + "amount": "76.558808715", + "slot": { + "period": 3863900, + "thread": 29 + } + } + ], + "AU12EPCPEHy3aAXRiUFy7hjBuPntDXYQP4R2MGsaV9kyApGGy5AJv": [ + { + "amount": "76.942591670", + "slot": { + "period": 52602, + "thread": 29 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 233847, + "thread": 7 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 388136, + "thread": 7 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 583390, + "thread": 17 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 674022, + "thread": 6 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 965908, + "thread": 26 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1036418, + "thread": 1 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1208582, + "thread": 16 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1427979, + "thread": 20 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1606283, + "thread": 4 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1791361, + "thread": 9 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 1971188, + "thread": 19 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2062372, + "thread": 26 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2291879, + "thread": 29 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2439111, + "thread": 12 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2548156, + "thread": 19 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2691349, + "thread": 30 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2916926, + "thread": 1 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 2965980, + "thread": 25 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 3274644, + "thread": 2 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 3322363, + "thread": 1 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 3506014, + "thread": 9 + } + }, + { + "amount": "76.942591670", + "slot": { + "period": 3677336, + "thread": 6 + } + }, + { + "amount": "76.942591676", + "slot": { + "period": 3854426, + "thread": 0 + } + } + ], + "AU12EQFw7KzHffYChVrNhqdo6uj3HFrMqqnVsgwzYrpJf8EaZQmL1": [ + { + "amount": "150.169419351", + "slot": { + "period": 114527, + "thread": 27 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 220929, + "thread": 2 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 435653, + "thread": 25 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 534716, + "thread": 24 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 700087, + "thread": 9 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 911058, + "thread": 10 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1012518, + "thread": 3 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1224450, + "thread": 26 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1465388, + "thread": 2 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1564729, + "thread": 27 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1764714, + "thread": 2 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 1886053, + "thread": 24 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2023198, + "thread": 27 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2167492, + "thread": 16 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2459337, + "thread": 13 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2554418, + "thread": 7 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2724318, + "thread": 8 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 2826900, + "thread": 28 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 3059131, + "thread": 22 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 3177806, + "thread": 15 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 3305045, + "thread": 4 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 3515630, + "thread": 26 + } + }, + { + "amount": "150.169419351", + "slot": { + "period": 3768202, + "thread": 11 + } + }, + { + "amount": "150.169419348", + "slot": { + "period": 3785422, + "thread": 25 + } + } + ], + "AU12EQqvc4Z8zv352eA129wVbMLmPwKExDHj1SABujHyrxdoFGLf2": [ + { + "amount": "554.822485598", + "slot": { + "period": 135672, + "thread": 12 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 314629, + "thread": 14 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 442979, + "thread": 22 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 607309, + "thread": 21 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 673780, + "thread": 5 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 836582, + "thread": 15 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1001901, + "thread": 23 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1184369, + "thread": 8 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1395518, + "thread": 14 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1487813, + "thread": 15 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1728461, + "thread": 5 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 1864412, + "thread": 2 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2013808, + "thread": 12 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2181867, + "thread": 17 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2445247, + "thread": 2 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2471903, + "thread": 4 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2763813, + "thread": 7 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2914397, + "thread": 17 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 2963100, + "thread": 9 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 3228671, + "thread": 19 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 3412061, + "thread": 18 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 3603364, + "thread": 9 + } + }, + { + "amount": "554.822485598", + "slot": { + "period": 3634027, + "thread": 24 + } + }, + { + "amount": "554.822485610", + "slot": { + "period": 3844642, + "thread": 10 + } + } + ], + "AU12ESbG6TSS2cL2e3HqTTpccdKdvSwctzdyeaXFNtqAUKgTfxyai": [ + { + "amount": "117.043709711", + "slot": { + "period": 93469, + "thread": 28 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 244308, + "thread": 7 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 398150, + "thread": 15 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 627894, + "thread": 8 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 795983, + "thread": 0 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 820942, + "thread": 1 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1077967, + "thread": 17 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1241159, + "thread": 27 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1401906, + "thread": 24 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1609050, + "thread": 8 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1734161, + "thread": 2 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 1930712, + "thread": 14 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2108800, + "thread": 31 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2254203, + "thread": 16 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2311364, + "thread": 21 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2483166, + "thread": 22 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2684891, + "thread": 14 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 2919988, + "thread": 14 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 3077039, + "thread": 14 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 3277640, + "thread": 17 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 3369919, + "thread": 16 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 3509036, + "thread": 29 + } + }, + { + "amount": "117.043709711", + "slot": { + "period": 3654757, + "thread": 26 + } + }, + { + "amount": "117.043709715", + "slot": { + "period": 3809346, + "thread": 24 + } + } + ], + "AU12ETvsYTuZ7NgtDYTSHmbpcRWMcNwxwgU54x8TpWcnY7iLQ4auD": [ + { + "amount": "332.151003459", + "slot": { + "period": 151430, + "thread": 10 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 200299, + "thread": 21 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 430615, + "thread": 27 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 596913, + "thread": 25 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 766406, + "thread": 26 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 847846, + "thread": 22 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1022812, + "thread": 2 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1168014, + "thread": 21 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1443149, + "thread": 15 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1621723, + "thread": 22 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1779774, + "thread": 18 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 1893435, + "thread": 2 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2097050, + "thread": 29 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2166685, + "thread": 14 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2436872, + "thread": 17 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2470521, + "thread": 1 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2711858, + "thread": 18 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 2924748, + "thread": 26 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 3064662, + "thread": 31 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 3246578, + "thread": 6 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 3390408, + "thread": 9 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 3480056, + "thread": 17 + } + }, + { + "amount": "332.151003459", + "slot": { + "period": 3746709, + "thread": 31 + } + }, + { + "amount": "332.151003456", + "slot": { + "period": 3887677, + "thread": 31 + } + } + ], + "AU12EU9MDCnrSLwdVSXvH4xiC5UJqW8K72mHgjYfMy6Y39yK1yY4T": [ + { + "amount": "228.103631463", + "slot": { + "period": 148600, + "thread": 26 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 287473, + "thread": 17 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 330449, + "thread": 4 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 626405, + "thread": 17 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 765283, + "thread": 28 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 966250, + "thread": 5 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1147573, + "thread": 23 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1203103, + "thread": 7 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1473209, + "thread": 2 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1641800, + "thread": 1 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1685726, + "thread": 0 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 1854035, + "thread": 1 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2042368, + "thread": 12 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2198252, + "thread": 2 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2443586, + "thread": 29 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2603435, + "thread": 9 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2736697, + "thread": 10 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2811195, + "thread": 13 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 2961738, + "thread": 17 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 3160587, + "thread": 2 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 3304739, + "thread": 13 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 3612576, + "thread": 21 + } + }, + { + "amount": "228.103631463", + "slot": { + "period": 3758267, + "thread": 28 + } + }, + { + "amount": "228.103631465", + "slot": { + "period": 3884715, + "thread": 21 + } + } + ], + "AU12EUTucgCMD4qAUhgbuez36EuZFsCWhmQQMxmTYiJU7J7YRESJ9": [ + { + "amount": "126.414849347", + "slot": { + "period": 126454, + "thread": 20 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 239246, + "thread": 19 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 331650, + "thread": 22 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 646333, + "thread": 5 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 761479, + "thread": 22 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 823016, + "thread": 23 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1054668, + "thread": 21 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1226935, + "thread": 7 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1361944, + "thread": 18 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1561606, + "thread": 29 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1717143, + "thread": 20 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1812053, + "thread": 12 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 1990419, + "thread": 4 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 2290715, + "thread": 6 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 2319488, + "thread": 23 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 2551198, + "thread": 26 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 2707624, + "thread": 31 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 2941057, + "thread": 9 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 3069356, + "thread": 16 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 3250475, + "thread": 22 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 3384790, + "thread": 29 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 3472306, + "thread": 30 + } + }, + { + "amount": "126.414849347", + "slot": { + "period": 3695192, + "thread": 8 + } + }, + { + "amount": "126.414849354", + "slot": { + "period": 3873716, + "thread": 23 + } + } + ], + "AU12EV5YdWpauVnW9HMpAG3Q9f51SwYwkETFySdQVaLGXJhjrVznD": [ + { + "amount": "180.444271174", + "slot": { + "period": 143640, + "thread": 31 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 261193, + "thread": 11 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 489953, + "thread": 17 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 649331, + "thread": 7 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 682933, + "thread": 2 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 851278, + "thread": 1 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1147710, + "thread": 19 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1230763, + "thread": 8 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1462035, + "thread": 9 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1623867, + "thread": 26 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1712678, + "thread": 25 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 1827505, + "thread": 14 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2007147, + "thread": 22 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2160453, + "thread": 14 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2425541, + "thread": 13 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2474414, + "thread": 8 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2670592, + "thread": 22 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 2890211, + "thread": 24 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 3067878, + "thread": 13 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 3224371, + "thread": 4 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 3315973, + "thread": 23 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 3497931, + "thread": 30 + } + }, + { + "amount": "180.444271174", + "slot": { + "period": 3632893, + "thread": 30 + } + }, + { + "amount": "180.444271171", + "slot": { + "period": 3802817, + "thread": 15 + } + } + ], + "AU12EVHxBpo4tcy8Zo9f8LhK2sH1Z9NGGC7Yp1creNWeW7wfb2aLB": [ + { + "amount": "90.404701666", + "slot": { + "period": 151565, + "thread": 23 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 240900, + "thread": 7 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 350502, + "thread": 5 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 646998, + "thread": 1 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 706822, + "thread": 18 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 968397, + "thread": 21 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1029585, + "thread": 2 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1218242, + "thread": 26 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1400636, + "thread": 14 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1640443, + "thread": 20 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1768815, + "thread": 5 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 1940462, + "thread": 0 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2013999, + "thread": 23 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2257184, + "thread": 15 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2388481, + "thread": 6 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2612885, + "thread": 24 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2749964, + "thread": 7 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 2821223, + "thread": 21 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 3060418, + "thread": 9 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 3266980, + "thread": 17 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 3343529, + "thread": 23 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 3574652, + "thread": 14 + } + }, + { + "amount": "90.404701666", + "slot": { + "period": 3684535, + "thread": 29 + } + }, + { + "amount": "90.404701661", + "slot": { + "period": 3915283, + "thread": 17 + } + } + ], + "AU12EVrvwW6LB5P7La63FDzuKGjwht3R9Vf8Sh4Byy1MvdB44u3yj": [ + { + "amount": "612.018030686", + "slot": { + "period": 146956, + "thread": 10 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 182143, + "thread": 3 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 411680, + "thread": 21 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 545985, + "thread": 22 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 737087, + "thread": 0 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 836243, + "thread": 27 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1053520, + "thread": 16 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1150811, + "thread": 23 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1390447, + "thread": 30 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1589174, + "thread": 19 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1787549, + "thread": 12 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 1875077, + "thread": 28 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2102984, + "thread": 17 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2264898, + "thread": 11 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2392162, + "thread": 30 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2522694, + "thread": 16 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2745441, + "thread": 7 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 2807243, + "thread": 25 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 3118285, + "thread": 26 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 3230030, + "thread": 23 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 3424280, + "thread": 17 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 3571867, + "thread": 30 + } + }, + { + "amount": "612.018030686", + "slot": { + "period": 3751341, + "thread": 30 + } + }, + { + "amount": "612.018030680", + "slot": { + "period": 3864792, + "thread": 11 + } + } + ], + "AU12EWVXH9NJgybhUKrM7h7bLgUvsbzRsu57HomAiTD27C3mwFTX9": [ + { + "amount": "500.616641294", + "slot": { + "period": 72963, + "thread": 15 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 178530, + "thread": 27 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 431444, + "thread": 15 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 553006, + "thread": 9 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 684378, + "thread": 18 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 885510, + "thread": 3 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1043987, + "thread": 11 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1258168, + "thread": 5 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1340460, + "thread": 5 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1624721, + "thread": 24 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1696553, + "thread": 17 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 1883804, + "thread": 20 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2106394, + "thread": 21 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2210392, + "thread": 31 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2324128, + "thread": 9 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2587601, + "thread": 4 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2693970, + "thread": 31 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2863492, + "thread": 21 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 2970655, + "thread": 5 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 3176485, + "thread": 3 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 3301682, + "thread": 13 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 3554347, + "thread": 11 + } + }, + { + "amount": "500.616641294", + "slot": { + "period": 3646789, + "thread": 10 + } + }, + { + "amount": "500.616641295", + "slot": { + "period": 3867091, + "thread": 1 + } + } + ], + "AU12EWXA7Kg9iZPDfhKbTB76ehj1FCabDZhdd8ANj7DnFe6KczjcT": [ + { + "amount": "142.276862017", + "slot": { + "period": 35278, + "thread": 18 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 183855, + "thread": 6 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 476288, + "thread": 21 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 497162, + "thread": 28 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 668567, + "thread": 16 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 934147, + "thread": 30 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1041641, + "thread": 29 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1160197, + "thread": 6 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1401835, + "thread": 16 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1483730, + "thread": 22 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1754608, + "thread": 26 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 1924088, + "thread": 10 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2052119, + "thread": 11 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2163502, + "thread": 16 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2297090, + "thread": 25 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2548677, + "thread": 5 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2754752, + "thread": 24 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 2865925, + "thread": 3 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 3095051, + "thread": 19 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 3161221, + "thread": 30 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 3424154, + "thread": 19 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 3596250, + "thread": 11 + } + }, + { + "amount": "142.276862017", + "slot": { + "period": 3660701, + "thread": 1 + } + }, + { + "amount": "142.276862015", + "slot": { + "period": 3932444, + "thread": 13 + } + } + ], + "AU12EX1L3ti8o6F6qXRPdPhxkwdmjW4dSiqJYJRM9UuTwnN5c1nzV": [ + { + "amount": "296.380823664", + "slot": { + "period": 92758, + "thread": 4 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 278237, + "thread": 27 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 426360, + "thread": 26 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 565073, + "thread": 22 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 658506, + "thread": 25 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 906931, + "thread": 18 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1147924, + "thread": 8 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1295734, + "thread": 19 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1371806, + "thread": 0 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1592363, + "thread": 0 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1743620, + "thread": 23 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 1914768, + "thread": 19 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2036522, + "thread": 2 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2270566, + "thread": 5 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2442517, + "thread": 10 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2575733, + "thread": 1 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2657939, + "thread": 12 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2850448, + "thread": 8 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 2961640, + "thread": 21 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 3262691, + "thread": 29 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 3429237, + "thread": 13 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 3465614, + "thread": 31 + } + }, + { + "amount": "296.380823664", + "slot": { + "period": 3705249, + "thread": 21 + } + }, + { + "amount": "296.380823673", + "slot": { + "period": 3841854, + "thread": 8 + } + } + ], + "AU12EXyvNfKW8mkE6STBos4auh3jNaXZmjvED9buKBPsMnip6WB8c": [ + { + "amount": "233.670287236", + "slot": { + "period": 102778, + "thread": 26 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 260498, + "thread": 12 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 485431, + "thread": 19 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 643064, + "thread": 10 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 790952, + "thread": 30 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 827327, + "thread": 25 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1114972, + "thread": 25 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1258610, + "thread": 9 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1428705, + "thread": 26 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1597643, + "thread": 20 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1652799, + "thread": 0 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 1906255, + "thread": 12 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2013822, + "thread": 6 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2144114, + "thread": 24 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2351207, + "thread": 28 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2614389, + "thread": 6 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2702526, + "thread": 0 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2917294, + "thread": 29 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 2999271, + "thread": 3 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 3130427, + "thread": 2 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 3397203, + "thread": 28 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 3589599, + "thread": 28 + } + }, + { + "amount": "233.670287236", + "slot": { + "period": 3656700, + "thread": 24 + } + }, + { + "amount": "233.670287239", + "slot": { + "period": 3784502, + "thread": 11 + } + } + ], + "AU12EYY3EBjBPYxRuZDu6FUvBKP4FBNHzUDPXpr3RZx4Srbtnqyrk": [ + { + "amount": "506.254833607", + "slot": { + "period": 124372, + "thread": 12 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 226482, + "thread": 2 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 490807, + "thread": 23 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 590544, + "thread": 9 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 801467, + "thread": 25 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 966748, + "thread": 2 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1057245, + "thread": 6 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1199614, + "thread": 11 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1457046, + "thread": 15 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1492779, + "thread": 8 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1690356, + "thread": 1 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 1887158, + "thread": 5 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2051936, + "thread": 0 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2230496, + "thread": 11 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2340584, + "thread": 10 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2571117, + "thread": 28 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2773179, + "thread": 31 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2810638, + "thread": 20 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 2981791, + "thread": 19 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 3166356, + "thread": 1 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 3299324, + "thread": 4 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 3472802, + "thread": 28 + } + }, + { + "amount": "506.254833607", + "slot": { + "period": 3713023, + "thread": 3 + } + }, + { + "amount": "506.254833596", + "slot": { + "period": 3891745, + "thread": 6 + } + } + ], + "AU12EZsF8Ff7sXe821G3MJUzeVRGDiXAcVpxjBb3oMww3SdAETUZZ": [ + { + "amount": "331.551213765", + "slot": { + "period": 129709, + "thread": 14 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 246310, + "thread": 25 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 441050, + "thread": 22 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 539282, + "thread": 25 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 784205, + "thread": 22 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 946307, + "thread": 14 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1022610, + "thread": 21 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1209666, + "thread": 10 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1464450, + "thread": 11 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1576074, + "thread": 10 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1699173, + "thread": 1 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 1920631, + "thread": 4 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2041672, + "thread": 20 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2188671, + "thread": 9 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2444941, + "thread": 1 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2511257, + "thread": 12 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2758647, + "thread": 11 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 2815754, + "thread": 0 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 3031552, + "thread": 12 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 3242008, + "thread": 29 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 3372744, + "thread": 16 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 3545176, + "thread": 30 + } + }, + { + "amount": "331.551213765", + "slot": { + "period": 3642501, + "thread": 23 + } + }, + { + "amount": "331.551213757", + "slot": { + "period": 3931626, + "thread": 2 + } + } + ], + "AU12EZwHswTwQz74nNojnStopDbK2vtrVo1RX9Fd82UPyhRpESSf9": [ + { + "amount": "424.198071287", + "slot": { + "period": 86552, + "thread": 13 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 286484, + "thread": 7 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 468848, + "thread": 23 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 550692, + "thread": 3 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 678750, + "thread": 31 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 917641, + "thread": 21 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1087930, + "thread": 9 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1187967, + "thread": 26 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1327720, + "thread": 19 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1559458, + "thread": 2 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1771698, + "thread": 1 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 1839157, + "thread": 24 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2128932, + "thread": 30 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2189807, + "thread": 17 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2347464, + "thread": 29 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2615104, + "thread": 16 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2779130, + "thread": 8 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2902107, + "thread": 29 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 2998428, + "thread": 25 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 3231433, + "thread": 5 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 3299141, + "thread": 8 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 3556513, + "thread": 27 + } + }, + { + "amount": "424.198071287", + "slot": { + "period": 3735771, + "thread": 4 + } + }, + { + "amount": "424.198071283", + "slot": { + "period": 3868131, + "thread": 23 + } + } + ], + "AU12EaR2NyLMh4FKxA1RK2CinTdisasrjw1uc6DjoPex5ijEijs41": [ + { + "amount": "357.444207802", + "slot": { + "period": 151280, + "thread": 10 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 252784, + "thread": 18 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 347812, + "thread": 22 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 618668, + "thread": 11 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 787088, + "thread": 25 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 855650, + "thread": 18 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1009525, + "thread": 24 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1272334, + "thread": 5 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1389022, + "thread": 17 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1533580, + "thread": 26 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1658335, + "thread": 16 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 1940647, + "thread": 0 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2123760, + "thread": 2 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2211657, + "thread": 29 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2424160, + "thread": 19 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2559476, + "thread": 25 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2723880, + "thread": 3 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 2952797, + "thread": 8 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 3098786, + "thread": 18 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 3238982, + "thread": 23 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 3416671, + "thread": 18 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 3451424, + "thread": 24 + } + }, + { + "amount": "357.444207802", + "slot": { + "period": 3631261, + "thread": 2 + } + }, + { + "amount": "357.444207792", + "slot": { + "period": 3938157, + "thread": 15 + } + } + ], + "AU12EafH7XKZ8GssHWEAXcGYuqKyj1Z8kB2oozS6y94Sm59N9Qh3t": [ + { + "amount": "89.475420440", + "slot": { + "period": 115969, + "thread": 22 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 313290, + "thread": 22 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 449548, + "thread": 12 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 626771, + "thread": 2 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 775557, + "thread": 29 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 924834, + "thread": 29 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1021998, + "thread": 5 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1304837, + "thread": 31 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1459035, + "thread": 14 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1530081, + "thread": 1 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1785033, + "thread": 15 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 1842318, + "thread": 21 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2117281, + "thread": 14 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2153211, + "thread": 11 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2430841, + "thread": 15 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2519800, + "thread": 6 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2724131, + "thread": 6 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 2854345, + "thread": 31 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 3092818, + "thread": 16 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 3262950, + "thread": 26 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 3344171, + "thread": 11 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 3605392, + "thread": 8 + } + }, + { + "amount": "89.475420440", + "slot": { + "period": 3651226, + "thread": 31 + } + }, + { + "amount": "89.475420439", + "slot": { + "period": 3812791, + "thread": 17 + } + } + ], + "AU12EbcCBD9skMqixUJrK6nmhic3KJAMY7PSFQmkJQjYRScvDbEnA": [ + { + "amount": "425.981671406", + "slot": { + "period": 24125, + "thread": 9 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 264966, + "thread": 18 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 457359, + "thread": 13 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 616000, + "thread": 2 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 776662, + "thread": 14 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 922322, + "thread": 26 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1133261, + "thread": 4 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1269477, + "thread": 27 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1370487, + "thread": 8 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1560345, + "thread": 10 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1730911, + "thread": 19 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 1949126, + "thread": 16 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2097865, + "thread": 20 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2286455, + "thread": 13 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2385905, + "thread": 30 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2580245, + "thread": 21 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2707531, + "thread": 28 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 2926619, + "thread": 21 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 3034935, + "thread": 9 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 3159307, + "thread": 26 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 3423023, + "thread": 30 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 3556000, + "thread": 21 + } + }, + { + "amount": "425.981671406", + "slot": { + "period": 3706377, + "thread": 1 + } + }, + { + "amount": "425.981671415", + "slot": { + "period": 3888396, + "thread": 14 + } + } + ], + "AU12EdK7k2Xk3A6PDWoheK3S8r1B1fM7rZZqDBEUV2sEihcwapmgW": [ + { + "amount": "417.010197806", + "slot": { + "period": 35442, + "thread": 9 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 238849, + "thread": 1 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 474284, + "thread": 9 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 555057, + "thread": 29 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 805918, + "thread": 6 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 860628, + "thread": 17 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1103789, + "thread": 15 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1170116, + "thread": 14 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1376270, + "thread": 27 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1502306, + "thread": 4 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1709027, + "thread": 28 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 1897361, + "thread": 18 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2110631, + "thread": 15 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2227568, + "thread": 8 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2451847, + "thread": 16 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2619384, + "thread": 23 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2668057, + "thread": 21 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2943218, + "thread": 15 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 2983728, + "thread": 11 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 3189482, + "thread": 2 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 3410638, + "thread": 29 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 3573621, + "thread": 7 + } + }, + { + "amount": "417.010197806", + "slot": { + "period": 3647678, + "thread": 23 + } + }, + { + "amount": "417.010197802", + "slot": { + "period": 3821355, + "thread": 7 + } + } + ], + "AU12EdKtFcsoCxFuvkj4Z7Pw7KG9bNjGTRK8WvSMFeBLaRDa3ekKK": [ + { + "amount": "59.069826818", + "slot": { + "period": 15357, + "thread": 26 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 321018, + "thread": 22 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 335032, + "thread": 1 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 591052, + "thread": 10 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 819805, + "thread": 25 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 828931, + "thread": 13 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 995646, + "thread": 30 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 1269065, + "thread": 18 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 1358963, + "thread": 26 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 1604979, + "thread": 9 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 1713228, + "thread": 29 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 1973272, + "thread": 7 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2115656, + "thread": 19 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2277654, + "thread": 11 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2458729, + "thread": 27 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2489000, + "thread": 24 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2723424, + "thread": 22 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2931626, + "thread": 17 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 2989730, + "thread": 28 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 3154150, + "thread": 16 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 3348821, + "thread": 17 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 3495034, + "thread": 31 + } + }, + { + "amount": "59.069826818", + "slot": { + "period": 3643140, + "thread": 9 + } + }, + { + "amount": "59.069826827", + "slot": { + "period": 3808409, + "thread": 21 + } + } + ], + "AU12Ede836Gt5Y22vXaHH7hq4Q1iHiec4vDTYaS629NJC2QdBQMAk": [ + { + "amount": "505.055326991", + "slot": { + "period": 160183, + "thread": 8 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 239583, + "thread": 5 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 390898, + "thread": 8 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 647064, + "thread": 3 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 716418, + "thread": 5 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 958230, + "thread": 30 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1025441, + "thread": 29 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1227644, + "thread": 8 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1419318, + "thread": 8 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1557241, + "thread": 12 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1670012, + "thread": 11 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 1898376, + "thread": 13 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2013997, + "thread": 2 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2197906, + "thread": 21 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2419374, + "thread": 22 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2527374, + "thread": 22 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2686512, + "thread": 18 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 2924039, + "thread": 19 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 3056157, + "thread": 13 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 3278942, + "thread": 21 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 3341635, + "thread": 26 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 3565364, + "thread": 17 + } + }, + { + "amount": "505.055326991", + "slot": { + "period": 3640084, + "thread": 22 + } + }, + { + "amount": "505.055326994", + "slot": { + "period": 3839103, + "thread": 15 + } + } + ], + "AU12EdhSKNy35YhufpdRMTjJcsgn5EC7awC8UnNTjuECpJoELHEow": [ + { + "amount": "310.215215289", + "slot": { + "period": 112164, + "thread": 29 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 299944, + "thread": 22 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 353236, + "thread": 17 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 601051, + "thread": 17 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 663008, + "thread": 8 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 963970, + "thread": 24 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1120775, + "thread": 29 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1269142, + "thread": 10 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1386130, + "thread": 2 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1534640, + "thread": 31 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1747157, + "thread": 23 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 1857920, + "thread": 7 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2065589, + "thread": 22 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2159737, + "thread": 4 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2358229, + "thread": 8 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2506077, + "thread": 0 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2711223, + "thread": 5 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 2948808, + "thread": 27 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 3023124, + "thread": 26 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 3201899, + "thread": 30 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 3405636, + "thread": 1 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 3478952, + "thread": 18 + } + }, + { + "amount": "310.215215289", + "slot": { + "period": 3691405, + "thread": 6 + } + }, + { + "amount": "310.215215278", + "slot": { + "period": 3817388, + "thread": 2 + } + } + ], + "AU12Ee15PXUmkCXriarKcocNfeczVaww4ZPg2nM6PVyRe8qHSFvic": [ + { + "amount": "200.541740028", + "slot": { + "period": 37578, + "thread": 30 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 242305, + "thread": 23 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 345819, + "thread": 1 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 522233, + "thread": 21 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 737819, + "thread": 17 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 873746, + "thread": 22 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1114923, + "thread": 15 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1258577, + "thread": 18 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1391495, + "thread": 12 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1637444, + "thread": 16 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1687731, + "thread": 26 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 1917688, + "thread": 13 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2022475, + "thread": 13 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2150403, + "thread": 27 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2336258, + "thread": 0 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2606467, + "thread": 9 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2754563, + "thread": 21 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2810436, + "thread": 9 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 2985111, + "thread": 30 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 3161453, + "thread": 22 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 3378600, + "thread": 24 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 3500617, + "thread": 8 + } + }, + { + "amount": "200.541740028", + "slot": { + "period": 3638220, + "thread": 5 + } + }, + { + "amount": "200.541740023", + "slot": { + "period": 3885791, + "thread": 4 + } + } + ], + "AU12EeoUFTzhoSDdCaX4r6gjTPpDwXrPaUMukQGYowQZDMHg8bbWD": [ + { + "amount": "360.818706252", + "slot": { + "period": 19141, + "thread": 29 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 168311, + "thread": 13 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 447285, + "thread": 10 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 534387, + "thread": 10 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 672926, + "thread": 17 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 936788, + "thread": 13 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1045288, + "thread": 9 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1156885, + "thread": 26 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1318688, + "thread": 23 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1607643, + "thread": 12 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1797644, + "thread": 7 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 1835038, + "thread": 4 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2112398, + "thread": 11 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2265014, + "thread": 16 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2416403, + "thread": 22 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2469584, + "thread": 3 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2700302, + "thread": 22 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 2938166, + "thread": 2 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 3036184, + "thread": 7 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 3196916, + "thread": 5 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 3319199, + "thread": 1 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 3566870, + "thread": 18 + } + }, + { + "amount": "360.818706252", + "slot": { + "period": 3691588, + "thread": 26 + } + }, + { + "amount": "360.818706251", + "slot": { + "period": 3786657, + "thread": 10 + } + } + ], + "AU12EeoyEmF8i4Jkp5SPsGjVJDZyFttctTRSevpgmmqwAjAhVYgsL": [ + { + "amount": "121.303587862", + "slot": { + "period": 115907, + "thread": 8 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 190434, + "thread": 16 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 334755, + "thread": 4 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 573132, + "thread": 30 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 657860, + "thread": 17 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 972771, + "thread": 4 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1130379, + "thread": 10 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1183840, + "thread": 21 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1341361, + "thread": 7 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1599451, + "thread": 10 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1663131, + "thread": 0 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 1848640, + "thread": 9 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2132236, + "thread": 2 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2182404, + "thread": 22 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2446887, + "thread": 3 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2536157, + "thread": 2 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2663996, + "thread": 12 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 2941642, + "thread": 31 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 3086087, + "thread": 1 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 3275607, + "thread": 25 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 3384305, + "thread": 15 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 3562620, + "thread": 15 + } + }, + { + "amount": "121.303587862", + "slot": { + "period": 3764013, + "thread": 0 + } + }, + { + "amount": "121.303587850", + "slot": { + "period": 3797898, + "thread": 9 + } + } + ], + "AU12EfA7W45asWjXK1jB9LBBPKEWL8zEE6VgMYRCw6e14KtVgK74w": [ + { + "amount": "113.401703425", + "slot": { + "period": 20302, + "thread": 1 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 212345, + "thread": 31 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 417520, + "thread": 7 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 634628, + "thread": 22 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 728174, + "thread": 6 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 908430, + "thread": 27 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1064871, + "thread": 19 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1250676, + "thread": 14 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1334212, + "thread": 29 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1536635, + "thread": 11 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1727541, + "thread": 7 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 1832914, + "thread": 23 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2022515, + "thread": 8 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2164426, + "thread": 21 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2452279, + "thread": 8 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2597728, + "thread": 21 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2733358, + "thread": 25 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2894925, + "thread": 2 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 2993046, + "thread": 3 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 3177207, + "thread": 29 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 3402591, + "thread": 16 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 3566342, + "thread": 7 + } + }, + { + "amount": "113.401703425", + "slot": { + "period": 3778169, + "thread": 13 + } + }, + { + "amount": "113.401703419", + "slot": { + "period": 3845887, + "thread": 29 + } + } + ], + "AU12EfrkNzZFrq2KcAV1NzpMRnSjhPHMT2JCoEDnVnoqxEVSkeaFi": [ + { + "amount": "270.817152284", + "slot": { + "period": 112940, + "thread": 1 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 214099, + "thread": 7 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 463678, + "thread": 3 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 523806, + "thread": 24 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 799047, + "thread": 25 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 948331, + "thread": 29 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1082912, + "thread": 1 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1203609, + "thread": 31 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1448105, + "thread": 16 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1499449, + "thread": 8 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1801886, + "thread": 24 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 1888741, + "thread": 27 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2106220, + "thread": 16 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2171043, + "thread": 21 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2318903, + "thread": 16 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2492803, + "thread": 9 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2740277, + "thread": 28 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 2820618, + "thread": 6 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 3101655, + "thread": 19 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 3154395, + "thread": 24 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 3389353, + "thread": 10 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 3615129, + "thread": 17 + } + }, + { + "amount": "270.817152284", + "slot": { + "period": 3711705, + "thread": 0 + } + }, + { + "amount": "270.817152287", + "slot": { + "period": 3926005, + "thread": 24 + } + } + ], + "AU12EgEkpSg8i1HebCKhasA8fL9jsSobiSadQLiZZXaCXLaMM3SbQ": [ + { + "amount": "85.624813843", + "slot": { + "period": 26003, + "thread": 9 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 267158, + "thread": 9 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 344683, + "thread": 6 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 597807, + "thread": 31 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 779799, + "thread": 22 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 907737, + "thread": 25 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1010826, + "thread": 30 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1271727, + "thread": 31 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1461679, + "thread": 14 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1601999, + "thread": 20 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1670848, + "thread": 15 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 1829000, + "thread": 23 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2124193, + "thread": 17 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2264990, + "thread": 14 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2324842, + "thread": 1 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2533776, + "thread": 2 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2738534, + "thread": 23 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2933963, + "thread": 28 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 2981903, + "thread": 14 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 3220078, + "thread": 9 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 3382141, + "thread": 27 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 3487480, + "thread": 29 + } + }, + { + "amount": "85.624813843", + "slot": { + "period": 3708272, + "thread": 21 + } + }, + { + "amount": "85.624813844", + "slot": { + "period": 3946984, + "thread": 16 + } + } + ], + "AU12EguAKNBpLccqZAs46TA5GeJdrNMVr1muer1KPSwZFTynMuznv": [ + { + "amount": "196.427086529", + "slot": { + "period": 136922, + "thread": 21 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 169467, + "thread": 7 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 400277, + "thread": 2 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 507841, + "thread": 12 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 790698, + "thread": 21 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 847322, + "thread": 3 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 994650, + "thread": 27 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 1158938, + "thread": 9 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 1455645, + "thread": 31 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 1645516, + "thread": 29 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 1772943, + "thread": 28 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 1909930, + "thread": 16 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2089051, + "thread": 5 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2254295, + "thread": 13 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2326104, + "thread": 16 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2604571, + "thread": 25 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2696913, + "thread": 28 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 2944706, + "thread": 21 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 3036525, + "thread": 25 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 3145521, + "thread": 27 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 3325307, + "thread": 1 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 3451202, + "thread": 29 + } + }, + { + "amount": "196.427086529", + "slot": { + "period": 3766717, + "thread": 10 + } + }, + { + "amount": "196.427086534", + "slot": { + "period": 3917489, + "thread": 12 + } + } + ], + "AU12EhEJZN3V2XRyYWjWPS1XT3dCwYAzxVJy1LGDB18ptESHBKSXs": [ + { + "amount": "237.177421075", + "slot": { + "period": 71671, + "thread": 1 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 225062, + "thread": 20 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 447565, + "thread": 0 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 584601, + "thread": 13 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 694084, + "thread": 8 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 904875, + "thread": 1 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1141574, + "thread": 19 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1210898, + "thread": 21 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1394091, + "thread": 25 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1605717, + "thread": 8 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1804309, + "thread": 28 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 1945631, + "thread": 7 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2031492, + "thread": 24 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2224670, + "thread": 26 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2433215, + "thread": 30 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2616315, + "thread": 18 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2787069, + "thread": 18 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 2901165, + "thread": 14 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 3061544, + "thread": 10 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 3159356, + "thread": 6 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 3378999, + "thread": 7 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 3583044, + "thread": 10 + } + }, + { + "amount": "237.177421075", + "slot": { + "period": 3695781, + "thread": 1 + } + }, + { + "amount": "237.177421064", + "slot": { + "period": 3900573, + "thread": 16 + } + } + ], + "AU12EhGeWEE8CYPQXaiQAtyfoFyLaDeQRUEfB3cyjcDkpm64EBh7u": [ + { + "amount": "267.293833436", + "slot": { + "period": 67166, + "thread": 27 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 291809, + "thread": 29 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 422619, + "thread": 27 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 568554, + "thread": 12 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 732395, + "thread": 19 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 867494, + "thread": 20 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 999350, + "thread": 15 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 1250318, + "thread": 4 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 1462119, + "thread": 22 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 1547225, + "thread": 10 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 1656943, + "thread": 0 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 1838805, + "thread": 8 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2121096, + "thread": 9 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2183403, + "thread": 1 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2440957, + "thread": 28 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2486286, + "thread": 14 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2706625, + "thread": 18 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2884143, + "thread": 9 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 2990786, + "thread": 19 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 3189408, + "thread": 14 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 3384444, + "thread": 3 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 3485597, + "thread": 21 + } + }, + { + "amount": "267.293833436", + "slot": { + "period": 3697544, + "thread": 10 + } + }, + { + "amount": "267.293833430", + "slot": { + "period": 3933053, + "thread": 0 + } + } + ], + "AU12EhT7EcphyW2H7yjomEg2ergmdDSSNpQvey4vns7FPFyBDijaY": [ + { + "amount": "130.028063233", + "slot": { + "period": 64574, + "thread": 21 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 275790, + "thread": 17 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 330826, + "thread": 12 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 625671, + "thread": 15 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 750717, + "thread": 31 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 873775, + "thread": 21 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1054723, + "thread": 23 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1158447, + "thread": 16 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1355386, + "thread": 7 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1586526, + "thread": 1 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1775546, + "thread": 9 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1811915, + "thread": 15 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 1978998, + "thread": 23 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 2157903, + "thread": 13 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 2388510, + "thread": 12 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 2577165, + "thread": 16 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 2740331, + "thread": 22 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 2917472, + "thread": 30 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 3082047, + "thread": 23 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 3217483, + "thread": 19 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 3309228, + "thread": 4 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 3554782, + "thread": 11 + } + }, + { + "amount": "130.028063233", + "slot": { + "period": 3661241, + "thread": 20 + } + }, + { + "amount": "130.028063226", + "slot": { + "period": 3872241, + "thread": 29 + } + } + ], + "AU12EhuSVZKKApVAWj3iSds5pizYqjKBtk1fYtMHzwmHG3oBvyHi2": [ + { + "amount": "122.323499334", + "slot": { + "period": 36598, + "thread": 20 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 254991, + "thread": 31 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 387617, + "thread": 3 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 629512, + "thread": 25 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 665942, + "thread": 11 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 821414, + "thread": 23 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1114414, + "thread": 28 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1289058, + "thread": 25 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1396604, + "thread": 2 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1544169, + "thread": 13 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1744887, + "thread": 28 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 1964583, + "thread": 21 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2106643, + "thread": 8 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2209175, + "thread": 13 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2429616, + "thread": 27 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2488051, + "thread": 3 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2705027, + "thread": 18 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2863406, + "thread": 31 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 2971109, + "thread": 14 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 3277601, + "thread": 10 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 3422193, + "thread": 12 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 3539830, + "thread": 16 + } + }, + { + "amount": "122.323499334", + "slot": { + "period": 3656545, + "thread": 17 + } + }, + { + "amount": "122.323499339", + "slot": { + "period": 3813993, + "thread": 22 + } + } + ], + "AU12EiUehJDpsXTovLFeNktcWTfzLy4NyvLxCbfwnKZp5BTVxc4f1": [ + { + "amount": "488.880694952", + "slot": { + "period": 110003, + "thread": 9 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 275382, + "thread": 13 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 452676, + "thread": 6 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 576077, + "thread": 28 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 705687, + "thread": 11 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 966797, + "thread": 28 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1140156, + "thread": 5 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1312401, + "thread": 11 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1463741, + "thread": 6 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1481586, + "thread": 13 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1766275, + "thread": 7 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 1968496, + "thread": 16 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2031674, + "thread": 22 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2145159, + "thread": 9 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2395700, + "thread": 28 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2478664, + "thread": 1 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2760132, + "thread": 27 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 2924120, + "thread": 23 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 3108794, + "thread": 14 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 3194441, + "thread": 16 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 3418314, + "thread": 4 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 3551501, + "thread": 25 + } + }, + { + "amount": "488.880694952", + "slot": { + "period": 3666333, + "thread": 18 + } + }, + { + "amount": "488.880694963", + "slot": { + "period": 3820694, + "thread": 4 + } + } + ], + "AU12Ejo6pep5woVyPnZtdffTyK23ZfK7d1QnnzoMoS7KDBDbVtA4z": [ + { + "amount": "106.444427427", + "slot": { + "period": 148507, + "thread": 29 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 205376, + "thread": 1 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 417822, + "thread": 15 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 496491, + "thread": 7 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 759397, + "thread": 12 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 910639, + "thread": 19 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1130197, + "thread": 23 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1267371, + "thread": 30 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1395155, + "thread": 14 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1498351, + "thread": 15 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1796887, + "thread": 24 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 1904822, + "thread": 23 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2051173, + "thread": 8 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2212949, + "thread": 21 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2432922, + "thread": 16 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2618628, + "thread": 4 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2651448, + "thread": 6 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 2899369, + "thread": 27 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 3077402, + "thread": 21 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 3193889, + "thread": 10 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 3406749, + "thread": 3 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 3578523, + "thread": 0 + } + }, + { + "amount": "106.444427427", + "slot": { + "period": 3777315, + "thread": 30 + } + }, + { + "amount": "106.444427422", + "slot": { + "period": 3821604, + "thread": 21 + } + } + ], + "AU12Ejy87tCHvV6BtxiHyVX6LwGCYMMwDRMic4NTcpZCu81xA2ZGY": [ + { + "amount": "60.534190440", + "slot": { + "period": 118424, + "thread": 31 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 171712, + "thread": 25 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 404144, + "thread": 26 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 581168, + "thread": 30 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 819120, + "thread": 11 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 855923, + "thread": 1 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1080749, + "thread": 29 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1159908, + "thread": 27 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1342887, + "thread": 27 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1577440, + "thread": 4 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1799989, + "thread": 24 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1871540, + "thread": 4 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 1979114, + "thread": 15 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 2228868, + "thread": 10 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 2310360, + "thread": 11 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 2567399, + "thread": 10 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 2708653, + "thread": 20 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 2889411, + "thread": 28 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 3027004, + "thread": 25 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 3150351, + "thread": 25 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 3431448, + "thread": 27 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 3587011, + "thread": 19 + } + }, + { + "amount": "60.534190440", + "slot": { + "period": 3773295, + "thread": 26 + } + }, + { + "amount": "60.534190449", + "slot": { + "period": 3936820, + "thread": 16 + } + } + ], + "AU12EkLo3KXs2h89ndHmVTuy3XHAQz6gT8aBLhPqU1LAriVjrEEVe": [ + { + "amount": "106.292068514", + "slot": { + "period": 66617, + "thread": 6 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 313393, + "thread": 8 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 421171, + "thread": 0 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 509168, + "thread": 27 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 771259, + "thread": 11 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 885954, + "thread": 23 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1019832, + "thread": 5 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1254684, + "thread": 19 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1411064, + "thread": 1 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1522855, + "thread": 3 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1700615, + "thread": 27 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 1966974, + "thread": 26 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2088589, + "thread": 30 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2226511, + "thread": 9 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2316120, + "thread": 15 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2572408, + "thread": 22 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2630695, + "thread": 5 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2807858, + "thread": 9 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 2973068, + "thread": 0 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 3202143, + "thread": 9 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 3344903, + "thread": 26 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 3524054, + "thread": 2 + } + }, + { + "amount": "106.292068514", + "slot": { + "period": 3725880, + "thread": 22 + } + }, + { + "amount": "106.292068516", + "slot": { + "period": 3872910, + "thread": 3 + } + } + ], + "AU12EmJj7BB8XY8gcG5mHjECxretw1uGTE7pLgiRoLbfAvTms6iTB": [ + { + "amount": "216.393649477", + "slot": { + "period": 66720, + "thread": 2 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 181495, + "thread": 9 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 376232, + "thread": 10 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 614491, + "thread": 23 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 688897, + "thread": 31 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 821313, + "thread": 12 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1074585, + "thread": 6 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1154561, + "thread": 21 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1423698, + "thread": 23 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1574657, + "thread": 30 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1749547, + "thread": 20 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 1974226, + "thread": 0 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2042012, + "thread": 12 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2265408, + "thread": 7 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2377854, + "thread": 28 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2617648, + "thread": 0 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2732634, + "thread": 9 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 2840047, + "thread": 2 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 3094271, + "thread": 3 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 3267417, + "thread": 17 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 3316820, + "thread": 3 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 3487157, + "thread": 18 + } + }, + { + "amount": "216.393649477", + "slot": { + "period": 3623973, + "thread": 27 + } + }, + { + "amount": "216.393649468", + "slot": { + "period": 3786762, + "thread": 9 + } + } + ], + "AU12EnKvoc8tBWgcdRHrw6J3NMoKKjDqaXgHqKMpULt83H9PSGrCz": [ + { + "amount": "194.831552243", + "slot": { + "period": 86779, + "thread": 18 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 279669, + "thread": 16 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 333079, + "thread": 19 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 648223, + "thread": 5 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 677900, + "thread": 27 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 966219, + "thread": 5 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1142632, + "thread": 26 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1309650, + "thread": 5 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1475784, + "thread": 21 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1518617, + "thread": 31 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1661510, + "thread": 27 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 1877202, + "thread": 12 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2098453, + "thread": 23 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2164315, + "thread": 19 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2339830, + "thread": 16 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2569411, + "thread": 13 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2731015, + "thread": 12 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2847714, + "thread": 8 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 2982914, + "thread": 9 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 3209390, + "thread": 24 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 3428692, + "thread": 5 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 3478229, + "thread": 7 + } + }, + { + "amount": "194.831552243", + "slot": { + "period": 3752327, + "thread": 21 + } + }, + { + "amount": "194.831552236", + "slot": { + "period": 3884804, + "thread": 10 + } + } + ], + "AU12EnXnv7qKfJdDFQYZsrFfQmTJFxybhEzNv2vqpmG4gKVGqBkqG": [ + { + "amount": "546.712112041", + "slot": { + "period": 121920, + "thread": 18 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 268258, + "thread": 0 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 434534, + "thread": 22 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 520475, + "thread": 21 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 708212, + "thread": 5 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 974545, + "thread": 21 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1101452, + "thread": 25 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1195426, + "thread": 26 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1373199, + "thread": 13 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1518989, + "thread": 16 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1652056, + "thread": 27 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1941130, + "thread": 7 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 1997666, + "thread": 30 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 2225491, + "thread": 1 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 2437424, + "thread": 12 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 2621040, + "thread": 25 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 2700071, + "thread": 19 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 2820052, + "thread": 8 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 3007512, + "thread": 19 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 3165703, + "thread": 31 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 3395482, + "thread": 13 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 3498610, + "thread": 6 + } + }, + { + "amount": "546.712112041", + "slot": { + "period": 3763626, + "thread": 30 + } + }, + { + "amount": "546.712112044", + "slot": { + "period": 3852617, + "thread": 18 + } + } + ], + "AU12EnYkjtgEt1nog23fXTeLiDUrcgH6MY8m2DyVu8UvTJnxPWQGm": [ + { + "amount": "621.076254234", + "slot": { + "period": 38472, + "thread": 1 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 316996, + "thread": 10 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 352225, + "thread": 30 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 542612, + "thread": 10 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 657511, + "thread": 27 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 952138, + "thread": 26 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1025385, + "thread": 29 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1253090, + "thread": 11 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1393394, + "thread": 18 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1511543, + "thread": 20 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1750320, + "thread": 26 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 1888838, + "thread": 17 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2143252, + "thread": 16 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2158975, + "thread": 31 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2422216, + "thread": 11 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2574053, + "thread": 28 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2731258, + "thread": 29 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 2906813, + "thread": 25 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 3064897, + "thread": 1 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 3241224, + "thread": 25 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 3365477, + "thread": 25 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 3526608, + "thread": 2 + } + }, + { + "amount": "621.076254234", + "slot": { + "period": 3705787, + "thread": 3 + } + }, + { + "amount": "621.076254222", + "slot": { + "period": 3900040, + "thread": 4 + } + } + ], + "AU12EoarDGsYAcsXrGzWTXgsSEFeEuMEEGusfRgFvS3ocgKCaQu3Q": [ + { + "amount": "75.587870171", + "slot": { + "period": 58014, + "thread": 15 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 259603, + "thread": 2 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 370676, + "thread": 22 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 497419, + "thread": 10 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 750523, + "thread": 19 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 892293, + "thread": 11 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1057378, + "thread": 10 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1237261, + "thread": 13 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1399347, + "thread": 0 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1582099, + "thread": 18 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1688526, + "thread": 10 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 1859460, + "thread": 31 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2012660, + "thread": 19 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2225356, + "thread": 27 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2448940, + "thread": 3 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2588154, + "thread": 7 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2677791, + "thread": 18 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2894455, + "thread": 8 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 2991460, + "thread": 27 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 3273033, + "thread": 0 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 3436014, + "thread": 3 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 3477890, + "thread": 15 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 3689464, + "thread": 8 + } + }, + { + "amount": "75.587870171", + "slot": { + "period": 3923848, + "thread": 13 + } + } + ], + "AU12EowKhZcEis62UAcSZrk8eNuFNbEm136BU3MV8T8Rwc9t7v1Gr": [ + { + "amount": "111.967611032", + "slot": { + "period": 49346, + "thread": 21 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 238609, + "thread": 28 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 329855, + "thread": 27 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 647206, + "thread": 23 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 669853, + "thread": 10 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 878321, + "thread": 9 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1141987, + "thread": 24 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1227409, + "thread": 4 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1442414, + "thread": 30 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1522020, + "thread": 9 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1736455, + "thread": 6 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 1939108, + "thread": 7 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2130625, + "thread": 21 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2189894, + "thread": 23 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2353186, + "thread": 13 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2483668, + "thread": 5 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2763555, + "thread": 30 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 2903531, + "thread": 16 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 3057856, + "thread": 15 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 3190507, + "thread": 16 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 3442024, + "thread": 3 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 3598537, + "thread": 14 + } + }, + { + "amount": "111.967611032", + "slot": { + "period": 3679703, + "thread": 8 + } + }, + { + "amount": "111.967611034", + "slot": { + "period": 3833917, + "thread": 8 + } + } + ], + "AU12EpVAhvi3e3fbv63ygrEb9dKMUSdij3Q48KnXSD5AkmUiVPNJo": [ + { + "amount": "84.257059971", + "slot": { + "period": 62037, + "thread": 25 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 277654, + "thread": 10 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 489448, + "thread": 30 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 535043, + "thread": 16 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 812156, + "thread": 20 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 912951, + "thread": 7 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 988367, + "thread": 16 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 1231282, + "thread": 5 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 1381413, + "thread": 28 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 1506088, + "thread": 4 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 1682361, + "thread": 6 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 1919254, + "thread": 28 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2115370, + "thread": 15 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2216779, + "thread": 9 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2311345, + "thread": 27 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2558456, + "thread": 2 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2731657, + "thread": 24 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 2814267, + "thread": 14 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 3025612, + "thread": 15 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 3121754, + "thread": 25 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 3358720, + "thread": 6 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 3499195, + "thread": 24 + } + }, + { + "amount": "84.257059971", + "slot": { + "period": 3752392, + "thread": 18 + } + }, + { + "amount": "84.257059966", + "slot": { + "period": 3850559, + "thread": 9 + } + } + ], + "AU12EpxZL9ZERUd3BnchTRSneeJHoyhzGVQxUfyqJHkuHPATkrtmt": [ + { + "amount": "323.231344246", + "slot": { + "period": 130986, + "thread": 16 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 283895, + "thread": 14 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 333014, + "thread": 30 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 514711, + "thread": 13 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 807303, + "thread": 21 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 966406, + "thread": 26 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 996403, + "thread": 21 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 1168650, + "thread": 25 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 1450167, + "thread": 17 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 1589521, + "thread": 5 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 1681499, + "thread": 26 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 1909998, + "thread": 17 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2110219, + "thread": 25 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2235253, + "thread": 9 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2300506, + "thread": 31 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2485443, + "thread": 31 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2703286, + "thread": 20 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 2931347, + "thread": 13 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 3012636, + "thread": 16 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 3266402, + "thread": 31 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 3351704, + "thread": 13 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 3526942, + "thread": 28 + } + }, + { + "amount": "323.231344246", + "slot": { + "period": 3661358, + "thread": 20 + } + }, + { + "amount": "323.231344245", + "slot": { + "period": 3838928, + "thread": 17 + } + } + ], + "AU12Erh2Y9ssRtT5GJfh7uLkFGMr4qgaNgu9BQ9SPk1hqtpWetGWY": [ + { + "amount": "54.980585461", + "slot": { + "period": 151688, + "thread": 25 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 168415, + "thread": 1 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 394914, + "thread": 18 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 613702, + "thread": 21 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 689939, + "thread": 21 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 847929, + "thread": 7 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1142093, + "thread": 1 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1272198, + "thread": 0 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1448526, + "thread": 17 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1578482, + "thread": 10 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1760613, + "thread": 5 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 1833008, + "thread": 3 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2047831, + "thread": 8 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2234204, + "thread": 6 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2406598, + "thread": 14 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2529373, + "thread": 10 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2749864, + "thread": 31 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 2935045, + "thread": 22 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 3120254, + "thread": 26 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 3233437, + "thread": 19 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 3414772, + "thread": 19 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 3543146, + "thread": 26 + } + }, + { + "amount": "54.980585461", + "slot": { + "period": 3682092, + "thread": 15 + } + }, + { + "amount": "54.980585468", + "slot": { + "period": 3862562, + "thread": 27 + } + } + ], + "AU12EsXY91hDgCvEijHS7DwHXu8r8vJTFRmUvsfsXou9q6KL4Fcwh": [ + { + "amount": "265.302692036", + "slot": { + "period": 49557, + "thread": 13 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 271816, + "thread": 27 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 377375, + "thread": 8 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 570140, + "thread": 31 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 664723, + "thread": 20 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 918619, + "thread": 17 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1146956, + "thread": 14 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1249183, + "thread": 6 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1407896, + "thread": 4 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1485672, + "thread": 10 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1732904, + "thread": 22 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 1906713, + "thread": 8 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2054826, + "thread": 29 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2280598, + "thread": 1 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2307063, + "thread": 1 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2504172, + "thread": 28 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2746460, + "thread": 12 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 2868370, + "thread": 13 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 3103304, + "thread": 30 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 3199346, + "thread": 12 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 3317735, + "thread": 24 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 3508132, + "thread": 0 + } + }, + { + "amount": "265.302692036", + "slot": { + "period": 3756782, + "thread": 26 + } + }, + { + "amount": "265.302692029", + "slot": { + "period": 3896856, + "thread": 24 + } + } + ], + "AU12EsdV8ZvSCQoHBvsZQEsimCy8UGWKu9S4Aeai1MYuq5dsxv3p2": [ + { + "amount": "230.910419000", + "slot": { + "period": 86834, + "thread": 10 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 308145, + "thread": 10 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 436187, + "thread": 23 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 546272, + "thread": 11 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 752206, + "thread": 12 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 858372, + "thread": 24 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1055995, + "thread": 14 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1211096, + "thread": 30 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1410494, + "thread": 23 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1605189, + "thread": 21 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1691232, + "thread": 18 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 1934632, + "thread": 6 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2061449, + "thread": 12 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2163460, + "thread": 16 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2307863, + "thread": 5 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2613807, + "thread": 27 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2725884, + "thread": 10 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 2909595, + "thread": 30 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 3003077, + "thread": 4 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 3150151, + "thread": 28 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 3368696, + "thread": 6 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 3459572, + "thread": 19 + } + }, + { + "amount": "230.910419000", + "slot": { + "period": 3723891, + "thread": 28 + } + }, + { + "amount": "230.910419004", + "slot": { + "period": 3935032, + "thread": 2 + } + } + ], + "AU12Esi7VQLK6hrJS4CLw36TRQbSiBRusk9hxZn5QPWGxm25QjWkt": [ + { + "amount": "207.584117748", + "slot": { + "period": 69216, + "thread": 4 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 244672, + "thread": 26 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 490059, + "thread": 2 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 578302, + "thread": 21 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 799635, + "thread": 18 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 836306, + "thread": 26 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1112390, + "thread": 19 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1184900, + "thread": 14 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1397041, + "thread": 7 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1635862, + "thread": 11 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1709624, + "thread": 20 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1820988, + "thread": 3 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 1999180, + "thread": 13 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 2241594, + "thread": 6 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 2379385, + "thread": 11 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 2504890, + "thread": 14 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 2771643, + "thread": 15 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 2821484, + "thread": 16 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 3071428, + "thread": 18 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 3227309, + "thread": 7 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 3396099, + "thread": 0 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 3581836, + "thread": 12 + } + }, + { + "amount": "207.584117748", + "slot": { + "period": 3772043, + "thread": 15 + } + }, + { + "amount": "207.584117740", + "slot": { + "period": 3929949, + "thread": 28 + } + } + ], + "AU12EtCXmiEWVnDpGifLVzf15wF6vNHmEtvTq93QmH5pzNomYdEv2": [ + { + "amount": "70.635205957", + "slot": { + "period": 130989, + "thread": 17 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 298477, + "thread": 28 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 377939, + "thread": 11 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 583198, + "thread": 6 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 753306, + "thread": 0 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 834821, + "thread": 9 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1131955, + "thread": 29 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1237359, + "thread": 25 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1372570, + "thread": 30 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1525297, + "thread": 7 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1740980, + "thread": 8 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 1834493, + "thread": 14 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2028822, + "thread": 24 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2263092, + "thread": 1 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2310660, + "thread": 30 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2559538, + "thread": 10 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2657664, + "thread": 26 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 2802143, + "thread": 26 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 3103537, + "thread": 27 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 3222807, + "thread": 28 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 3313769, + "thread": 22 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 3497631, + "thread": 1 + } + }, + { + "amount": "70.635205957", + "slot": { + "period": 3642649, + "thread": 29 + } + }, + { + "amount": "70.635205950", + "slot": { + "period": 3798496, + "thread": 30 + } + } + ], + "AU12Eti5rzs3K6vd6HKy1vySCadHBjQFmcvT2MVjx4JPqf9sdCGrM": [ + { + "amount": "198.339395202", + "slot": { + "period": 104169, + "thread": 24 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 246344, + "thread": 27 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 350412, + "thread": 30 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 510482, + "thread": 5 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 778302, + "thread": 17 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 929183, + "thread": 25 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1008636, + "thread": 9 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1187971, + "thread": 8 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1392715, + "thread": 31 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1510687, + "thread": 19 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1671580, + "thread": 18 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 1974256, + "thread": 23 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2084472, + "thread": 26 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2196508, + "thread": 15 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2314907, + "thread": 12 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2492572, + "thread": 22 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2721871, + "thread": 17 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 2925415, + "thread": 15 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 3102625, + "thread": 6 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 3282100, + "thread": 6 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 3373738, + "thread": 17 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 3469503, + "thread": 17 + } + }, + { + "amount": "198.339395202", + "slot": { + "period": 3626985, + "thread": 0 + } + }, + { + "amount": "198.339395209", + "slot": { + "period": 3885320, + "thread": 30 + } + } + ], + "AU12EuCrpZvbMhtuQFXERsHyDUqa94ntgR7vDmkNPu1y8JmuNckU3": [ + { + "amount": "349.073682635", + "slot": { + "period": 33291, + "thread": 19 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 203812, + "thread": 18 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 401182, + "thread": 20 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 546016, + "thread": 17 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 782013, + "thread": 9 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 881618, + "thread": 27 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1112181, + "thread": 1 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1220307, + "thread": 20 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1470211, + "thread": 6 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1515050, + "thread": 31 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1657799, + "thread": 5 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 1897184, + "thread": 23 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2071466, + "thread": 23 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2145309, + "thread": 18 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2461419, + "thread": 23 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2610565, + "thread": 24 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2791125, + "thread": 27 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2896133, + "thread": 15 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 2964775, + "thread": 16 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 3161349, + "thread": 17 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 3422338, + "thread": 21 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 3524183, + "thread": 19 + } + }, + { + "amount": "349.073682635", + "slot": { + "period": 3630825, + "thread": 15 + } + }, + { + "amount": "349.073682646", + "slot": { + "period": 3835336, + "thread": 18 + } + } + ], + "AU12Euf218GoTLFXvo9DjAh4saNNMTGycns2EXibW9rWpQ38M1dhz": [ + { + "amount": "503.325336958", + "slot": { + "period": 158967, + "thread": 14 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 168028, + "thread": 2 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 441570, + "thread": 13 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 612396, + "thread": 29 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 707954, + "thread": 5 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 837224, + "thread": 8 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1079132, + "thread": 4 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1248006, + "thread": 27 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1361974, + "thread": 4 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1534416, + "thread": 4 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1759501, + "thread": 12 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1846169, + "thread": 7 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 1999641, + "thread": 29 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 2273554, + "thread": 30 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 2405764, + "thread": 11 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 2519809, + "thread": 4 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 2654566, + "thread": 17 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 2927154, + "thread": 20 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 3004925, + "thread": 9 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 3137158, + "thread": 26 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 3438328, + "thread": 19 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 3554114, + "thread": 30 + } + }, + { + "amount": "503.325336958", + "slot": { + "period": 3751280, + "thread": 3 + } + }, + { + "amount": "503.325336954", + "slot": { + "period": 3937312, + "thread": 6 + } + } + ], + "AU12EuwvhHMRVmjqL4W71EQtTwqQVPN4xg293ejtJwdHoJfW5BQU4": [ + { + "amount": "98.738537925", + "slot": { + "period": 36129, + "thread": 21 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 323771, + "thread": 21 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 461643, + "thread": 8 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 605843, + "thread": 24 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 795164, + "thread": 8 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 935520, + "thread": 20 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1088726, + "thread": 0 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1225548, + "thread": 26 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1446203, + "thread": 26 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1605068, + "thread": 16 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1794654, + "thread": 10 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 1853283, + "thread": 23 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2002522, + "thread": 8 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2214768, + "thread": 16 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2313524, + "thread": 20 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2525376, + "thread": 18 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2664520, + "thread": 2 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2841122, + "thread": 24 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 2960009, + "thread": 14 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 3282019, + "thread": 16 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 3412609, + "thread": 6 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 3516185, + "thread": 19 + } + }, + { + "amount": "98.738537925", + "slot": { + "period": 3675080, + "thread": 24 + } + }, + { + "amount": "98.738537931", + "slot": { + "period": 3833162, + "thread": 21 + } + } + ], + "AU12EvEfAztMVGDLLrvwxti39d1s3rY4b55xsGqd5LiaqxKPfBpoQ": [ + { + "amount": "132.727885732", + "slot": { + "period": 39353, + "thread": 14 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 283836, + "thread": 9 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 392703, + "thread": 19 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 566838, + "thread": 21 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 716698, + "thread": 18 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 852984, + "thread": 19 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1078851, + "thread": 29 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1263949, + "thread": 29 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1470822, + "thread": 0 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1534221, + "thread": 7 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1657714, + "thread": 21 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 1833938, + "thread": 30 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2096214, + "thread": 31 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2205247, + "thread": 2 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2386760, + "thread": 2 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2547730, + "thread": 15 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2625390, + "thread": 4 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 2893862, + "thread": 26 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 3002523, + "thread": 27 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 3211952, + "thread": 13 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 3360826, + "thread": 13 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 3556593, + "thread": 9 + } + }, + { + "amount": "132.727885732", + "slot": { + "period": 3695174, + "thread": 28 + } + }, + { + "amount": "132.727885730", + "slot": { + "period": 3839938, + "thread": 11 + } + } + ], + "AU12EwjNp8yDeWW2htaPVTBjsYuJMWh4Vd14drpdvKho3dxpHtuge": [ + { + "amount": "598.983382159", + "slot": { + "period": 154772, + "thread": 10 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 317524, + "thread": 24 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 359293, + "thread": 25 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 603960, + "thread": 0 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 704691, + "thread": 9 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 975294, + "thread": 26 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1088051, + "thread": 7 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1277361, + "thread": 22 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1429067, + "thread": 21 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1605427, + "thread": 1 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1763896, + "thread": 14 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 1834670, + "thread": 9 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2142165, + "thread": 19 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2243995, + "thread": 31 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2341996, + "thread": 18 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2601439, + "thread": 2 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2685372, + "thread": 16 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 2839731, + "thread": 22 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 3017333, + "thread": 12 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 3164402, + "thread": 5 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 3308107, + "thread": 4 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 3501704, + "thread": 6 + } + }, + { + "amount": "598.983382159", + "slot": { + "period": 3656576, + "thread": 19 + } + }, + { + "amount": "598.983382168", + "slot": { + "period": 3809742, + "thread": 12 + } + } + ], + "AU12ExP9qGLYTe1vgPJGw5BZcTxGsezUmdZV7WWtkzG7eFbJRGYKY": [ + { + "amount": "116.095977338", + "slot": { + "period": 45211, + "thread": 30 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 311105, + "thread": 20 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 351821, + "thread": 28 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 493076, + "thread": 22 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 687696, + "thread": 13 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 837103, + "thread": 13 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1099465, + "thread": 6 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1221881, + "thread": 13 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1423859, + "thread": 2 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1602168, + "thread": 7 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1666330, + "thread": 28 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 1929397, + "thread": 15 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2037270, + "thread": 19 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2290353, + "thread": 20 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2342593, + "thread": 1 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2573807, + "thread": 25 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2784320, + "thread": 13 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 2807713, + "thread": 8 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3107070, + "thread": 12 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3251418, + "thread": 21 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3390815, + "thread": 10 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3562077, + "thread": 15 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3721029, + "thread": 10 + } + }, + { + "amount": "116.095977338", + "slot": { + "period": 3794920, + "thread": 17 + } + } + ], + "AU12ExzBCvSiehb4Jgt7srnJkyMvJU5EDSCnzRRxsr1v4DP1bN6wz": [ + { + "amount": "320.875017471", + "slot": { + "period": 123376, + "thread": 8 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 214312, + "thread": 14 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 489454, + "thread": 3 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 550580, + "thread": 31 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 731172, + "thread": 27 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 942669, + "thread": 12 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1147685, + "thread": 1 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1230724, + "thread": 16 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1341549, + "thread": 1 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1557008, + "thread": 28 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1753319, + "thread": 9 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 1835270, + "thread": 16 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2097584, + "thread": 21 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2178314, + "thread": 24 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2302975, + "thread": 16 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2621102, + "thread": 29 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2655697, + "thread": 17 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 2882905, + "thread": 10 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 3036633, + "thread": 28 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 3169500, + "thread": 8 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 3443016, + "thread": 12 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 3453785, + "thread": 5 + } + }, + { + "amount": "320.875017471", + "slot": { + "period": 3699250, + "thread": 24 + } + }, + { + "amount": "320.875017467", + "slot": { + "period": 3880431, + "thread": 21 + } + } + ], + "AU12EyJETxwdBJ1gZhaRt8QpSc1h3W5seAmiTw4o6qFTfMCsddXBd": [ + { + "amount": "92.010817790", + "slot": { + "period": 55307, + "thread": 23 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 274592, + "thread": 8 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 467132, + "thread": 28 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 613031, + "thread": 9 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 780227, + "thread": 14 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 925915, + "thread": 4 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1011907, + "thread": 13 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1152417, + "thread": 29 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1442603, + "thread": 22 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1482278, + "thread": 14 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1727515, + "thread": 24 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 1945520, + "thread": 8 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2059487, + "thread": 5 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2158638, + "thread": 25 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2426359, + "thread": 16 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2546963, + "thread": 8 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2675688, + "thread": 25 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 2823936, + "thread": 13 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 3003226, + "thread": 22 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 3163391, + "thread": 7 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 3369764, + "thread": 26 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 3596994, + "thread": 1 + } + }, + { + "amount": "92.010817790", + "slot": { + "period": 3729429, + "thread": 19 + } + }, + { + "amount": "92.010817791", + "slot": { + "period": 3780667, + "thread": 2 + } + } + ], + "AU12EzW9jbbfCZ8hLvQi7mVy7ZyBSbmdVZ27LbKztzz8Prqpq1nd2": [ + { + "amount": "75.315656819", + "slot": { + "period": 144686, + "thread": 31 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 290578, + "thread": 22 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 377906, + "thread": 13 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 510675, + "thread": 10 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 690618, + "thread": 16 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 972170, + "thread": 0 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1072924, + "thread": 29 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1260702, + "thread": 10 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1417548, + "thread": 27 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1635601, + "thread": 11 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1785108, + "thread": 21 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 1839853, + "thread": 27 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2113536, + "thread": 29 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2291778, + "thread": 27 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2304548, + "thread": 12 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2568813, + "thread": 27 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2646881, + "thread": 17 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 2835046, + "thread": 2 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 3003984, + "thread": 2 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 3238743, + "thread": 9 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 3429109, + "thread": 9 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 3616817, + "thread": 7 + } + }, + { + "amount": "75.315656819", + "slot": { + "period": 3675759, + "thread": 16 + } + }, + { + "amount": "75.315656811", + "slot": { + "period": 3789989, + "thread": 1 + } + } + ], + "AU12F15aM1TzZypYv8GuiJHheXPb85nDkaKuP6CLPVVgZQmmjwHTt": [ + { + "amount": "433.630208594", + "slot": { + "period": 14668, + "thread": 28 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 184540, + "thread": 20 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 383322, + "thread": 4 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 491469, + "thread": 26 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 808016, + "thread": 22 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 849484, + "thread": 27 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1092801, + "thread": 21 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1175913, + "thread": 1 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1428909, + "thread": 0 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1501825, + "thread": 28 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1793852, + "thread": 28 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 1934760, + "thread": 25 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2055880, + "thread": 7 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2228637, + "thread": 7 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2299455, + "thread": 15 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2559098, + "thread": 20 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2756773, + "thread": 4 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 2818211, + "thread": 24 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 3088649, + "thread": 16 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 3265521, + "thread": 27 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 3427623, + "thread": 11 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 3526762, + "thread": 24 + } + }, + { + "amount": "433.630208594", + "slot": { + "period": 3620211, + "thread": 7 + } + }, + { + "amount": "433.630208596", + "slot": { + "period": 3844527, + "thread": 30 + } + } + ], + "AU12F2G9hQ9KsGxsaW9q85VpVfPDRCbxANCGLskv4Tokkcm6rWYak": [ + { + "amount": "105.571733932", + "slot": { + "period": 11076, + "thread": 26 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 248513, + "thread": 22 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 483187, + "thread": 12 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 524713, + "thread": 22 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 755232, + "thread": 26 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 842935, + "thread": 21 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1062028, + "thread": 15 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1216900, + "thread": 5 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1464638, + "thread": 31 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1508304, + "thread": 23 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1769374, + "thread": 24 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 1849916, + "thread": 14 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2015739, + "thread": 15 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2151521, + "thread": 25 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2379481, + "thread": 14 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2470163, + "thread": 1 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2657496, + "thread": 14 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 2861965, + "thread": 18 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 3059436, + "thread": 18 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 3122506, + "thread": 11 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 3304592, + "thread": 30 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 3616276, + "thread": 17 + } + }, + { + "amount": "105.571733932", + "slot": { + "period": 3735111, + "thread": 13 + } + }, + { + "amount": "105.571733943", + "slot": { + "period": 3829538, + "thread": 8 + } + } + ], + "AU12F2PkYx9cKSZMmTvUDDF3RuesM1j11tT41fpxvFAnkvNAf6gC1": [ + { + "amount": "144.054425256", + "slot": { + "period": 91044, + "thread": 8 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 192460, + "thread": 28 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 477704, + "thread": 13 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 516597, + "thread": 26 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 780916, + "thread": 22 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 860930, + "thread": 21 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1062189, + "thread": 1 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1241417, + "thread": 24 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1380365, + "thread": 30 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1617952, + "thread": 25 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1666533, + "thread": 12 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 1930189, + "thread": 8 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2033480, + "thread": 11 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2283785, + "thread": 12 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2379905, + "thread": 16 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2476957, + "thread": 23 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2671852, + "thread": 29 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2838646, + "thread": 16 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 2972578, + "thread": 1 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 3225119, + "thread": 27 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 3318680, + "thread": 17 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 3541962, + "thread": 0 + } + }, + { + "amount": "144.054425256", + "slot": { + "period": 3697563, + "thread": 27 + } + }, + { + "amount": "144.054425261", + "slot": { + "period": 3945207, + "thread": 7 + } + } + ], + "AU12F3AY8dXtTaTEMVXMmSZrX4Z4y17gjqt32KwUF4iVFLpxpeyTT": [ + { + "amount": "80.205532521", + "slot": { + "period": 43101, + "thread": 17 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 305704, + "thread": 17 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 467173, + "thread": 12 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 509169, + "thread": 4 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 686369, + "thread": 7 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 839103, + "thread": 0 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1004855, + "thread": 19 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1189642, + "thread": 18 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1380378, + "thread": 25 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1619143, + "thread": 29 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1728248, + "thread": 8 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 1925536, + "thread": 23 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2040330, + "thread": 31 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2193066, + "thread": 8 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2423395, + "thread": 22 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2535711, + "thread": 2 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2774376, + "thread": 6 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2907334, + "thread": 15 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 2998094, + "thread": 5 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 3288477, + "thread": 3 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 3304525, + "thread": 27 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 3540002, + "thread": 19 + } + }, + { + "amount": "80.205532521", + "slot": { + "period": 3757238, + "thread": 3 + } + }, + { + "amount": "80.205532526", + "slot": { + "period": 3823504, + "thread": 6 + } + } + ], + "AU12F3V5ypu1G8tHQN8bF9n8DuRX6QAZ7p7bMH86QUF9ShpELVBu6": [ + { + "amount": "261.170909461", + "slot": { + "period": 154722, + "thread": 28 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 190570, + "thread": 5 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 336226, + "thread": 0 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 633934, + "thread": 20 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 763045, + "thread": 12 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 876592, + "thread": 13 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 994731, + "thread": 25 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 1284477, + "thread": 7 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 1473217, + "thread": 19 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 1560500, + "thread": 12 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 1709681, + "thread": 28 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 1818611, + "thread": 20 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2112751, + "thread": 13 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2163339, + "thread": 31 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2370430, + "thread": 24 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2602211, + "thread": 8 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2740026, + "thread": 31 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 2902120, + "thread": 0 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 3044046, + "thread": 0 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 3244020, + "thread": 26 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 3392014, + "thread": 3 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 3493305, + "thread": 28 + } + }, + { + "amount": "261.170909461", + "slot": { + "period": 3712203, + "thread": 23 + } + }, + { + "amount": "261.170909455", + "slot": { + "period": 3827492, + "thread": 12 + } + } + ], + "AU12F3wxhSaRQt7XVSae9M61ZA4eB2ejX6DMWVFYbVUot4yr6Z7Ha": [ + { + "amount": "114.784005260", + "slot": { + "period": 90638, + "thread": 14 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 240664, + "thread": 29 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 435969, + "thread": 30 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 581063, + "thread": 28 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 746697, + "thread": 0 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 919840, + "thread": 6 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1024049, + "thread": 23 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1249460, + "thread": 6 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1436950, + "thread": 27 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1522849, + "thread": 24 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1783254, + "thread": 4 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 1842029, + "thread": 0 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2105395, + "thread": 8 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2230430, + "thread": 7 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2327850, + "thread": 29 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2509769, + "thread": 22 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2698878, + "thread": 7 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 2822089, + "thread": 13 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 3028226, + "thread": 7 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 3253546, + "thread": 19 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 3444478, + "thread": 8 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 3490897, + "thread": 31 + } + }, + { + "amount": "114.784005260", + "slot": { + "period": 3640409, + "thread": 17 + } + }, + { + "amount": "114.784005258", + "slot": { + "period": 3784407, + "thread": 29 + } + } + ], + "AU12F4ESsPcjUXm7j3yBpBiCtPSKpTp2YNf1WBXtDsTUHTzCbRGVS": [ + { + "amount": "603.047722909", + "slot": { + "period": 11206, + "thread": 21 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 296894, + "thread": 19 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 424783, + "thread": 21 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 572411, + "thread": 19 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 688721, + "thread": 4 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 977356, + "thread": 29 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1125603, + "thread": 24 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1264533, + "thread": 10 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1479389, + "thread": 1 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1487038, + "thread": 7 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1730689, + "thread": 23 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 1843710, + "thread": 19 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2130500, + "thread": 23 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2184760, + "thread": 27 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2407543, + "thread": 5 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2512170, + "thread": 24 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2644210, + "thread": 14 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 2921976, + "thread": 13 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 3048358, + "thread": 16 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 3248194, + "thread": 20 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 3413106, + "thread": 19 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 3553141, + "thread": 30 + } + }, + { + "amount": "603.047722909", + "slot": { + "period": 3772781, + "thread": 0 + } + }, + { + "amount": "603.047722920", + "slot": { + "period": 3842581, + "thread": 16 + } + } + ], + "AU12F4Wvk1PFiPnAEMF7R1hUSpMgkda9roLijhA7YqR2xdUykeLMr": [ + { + "amount": "631.828016948", + "slot": { + "period": 165221, + "thread": 19 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 310101, + "thread": 25 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 484032, + "thread": 5 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 532689, + "thread": 31 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 782490, + "thread": 3 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 878635, + "thread": 13 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1013567, + "thread": 3 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1234363, + "thread": 24 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1475989, + "thread": 29 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1512365, + "thread": 12 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1805964, + "thread": 13 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1919325, + "thread": 11 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 1992363, + "thread": 6 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 2160643, + "thread": 9 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 2345780, + "thread": 22 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 2545851, + "thread": 31 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 2652203, + "thread": 30 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 2913970, + "thread": 19 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 3055736, + "thread": 14 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 3221848, + "thread": 4 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 3397788, + "thread": 30 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 3508824, + "thread": 15 + } + }, + { + "amount": "631.828016948", + "slot": { + "period": 3662283, + "thread": 5 + } + }, + { + "amount": "631.828016937", + "slot": { + "period": 3816503, + "thread": 2 + } + } + ], + "AU12F5FAuuKZQkSZu9xBjrgvkCrH7jGrMhwKhuRQeUDUJvcmMJZBv": [ + { + "amount": "63.908290787", + "slot": { + "period": 41870, + "thread": 19 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 263073, + "thread": 24 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 463202, + "thread": 1 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 611020, + "thread": 26 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 728555, + "thread": 16 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 824457, + "thread": 23 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1006440, + "thread": 16 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1230505, + "thread": 4 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1422552, + "thread": 22 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1634892, + "thread": 25 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1760228, + "thread": 6 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1853595, + "thread": 22 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 1982377, + "thread": 12 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 2243445, + "thread": 1 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 2431852, + "thread": 3 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 2536785, + "thread": 28 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 2789761, + "thread": 17 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 2837888, + "thread": 12 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 3118196, + "thread": 0 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 3279896, + "thread": 5 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 3439375, + "thread": 22 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 3542843, + "thread": 4 + } + }, + { + "amount": "63.908290787", + "slot": { + "period": 3714155, + "thread": 27 + } + }, + { + "amount": "63.908290789", + "slot": { + "period": 3887374, + "thread": 1 + } + } + ], + "AU12F644xiB5NhJzZzXwhZuyciPJuqPwZeZhcTscnfz6WcbALQY2c": [ + { + "amount": "185.929199314", + "slot": { + "period": 155755, + "thread": 17 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 173409, + "thread": 5 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 337355, + "thread": 4 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 601454, + "thread": 23 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 729008, + "thread": 30 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 927245, + "thread": 11 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1054177, + "thread": 19 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1187596, + "thread": 10 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1347128, + "thread": 13 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1543262, + "thread": 26 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1688825, + "thread": 14 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 1892985, + "thread": 4 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2088153, + "thread": 30 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2248041, + "thread": 31 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2390142, + "thread": 30 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2477404, + "thread": 5 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2729526, + "thread": 22 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2886691, + "thread": 11 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 2962860, + "thread": 9 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 3154878, + "thread": 22 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 3336880, + "thread": 3 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 3599858, + "thread": 12 + } + }, + { + "amount": "185.929199314", + "slot": { + "period": 3695479, + "thread": 3 + } + }, + { + "amount": "185.929199318", + "slot": { + "period": 3808016, + "thread": 0 + } + } + ], + "AU12F6fLR3K12dGkp2TLpFapmAreFd9srGB8Yt9XQiGep5vwZAKE": [ + { + "amount": "76.805846566", + "slot": { + "period": 20959, + "thread": 0 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 205670, + "thread": 24 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 487878, + "thread": 17 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 541727, + "thread": 6 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 717503, + "thread": 9 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 850337, + "thread": 2 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1130414, + "thread": 1 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1215277, + "thread": 6 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1373100, + "thread": 13 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1545812, + "thread": 12 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1742433, + "thread": 18 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 1890535, + "thread": 30 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2025338, + "thread": 17 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2213470, + "thread": 10 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2315297, + "thread": 2 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2527900, + "thread": 29 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2663107, + "thread": 28 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 2807128, + "thread": 12 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 3016125, + "thread": 5 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 3281930, + "thread": 0 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 3366184, + "thread": 10 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 3577280, + "thread": 4 + } + }, + { + "amount": "76.805846566", + "slot": { + "period": 3736151, + "thread": 2 + } + }, + { + "amount": "76.805846571", + "slot": { + "period": 3790517, + "thread": 5 + } + } + ], + "AU12F6ystNW8y9Etu7aT7wdf3zVfQx3gm2H76zX4NyJYVh3r9Up73": [ + { + "amount": "417.312363712", + "slot": { + "period": 92528, + "thread": 2 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 284588, + "thread": 6 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 332203, + "thread": 3 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 559804, + "thread": 1 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 718604, + "thread": 18 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 922635, + "thread": 29 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1008603, + "thread": 12 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1300664, + "thread": 5 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1469669, + "thread": 4 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1590817, + "thread": 15 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1684008, + "thread": 12 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 1880216, + "thread": 15 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2046010, + "thread": 15 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2189584, + "thread": 25 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2296608, + "thread": 3 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2619561, + "thread": 4 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2675882, + "thread": 7 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 2953515, + "thread": 11 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 3059436, + "thread": 0 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 3261030, + "thread": 28 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 3362204, + "thread": 26 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 3540918, + "thread": 28 + } + }, + { + "amount": "417.312363712", + "slot": { + "period": 3749752, + "thread": 30 + } + }, + { + "amount": "417.312363724", + "slot": { + "period": 3924453, + "thread": 8 + } + } + ], + "AU12F7QBTyQFSAoiL9pLP7dBjLPrC6KmH8uev76eYUJiH2BiKQxpr": [ + { + "amount": "626.974571523", + "slot": { + "period": 66078, + "thread": 8 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 249863, + "thread": 17 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 442312, + "thread": 22 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 531893, + "thread": 2 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 818409, + "thread": 30 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 902630, + "thread": 7 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1077995, + "thread": 27 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1186187, + "thread": 18 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1455242, + "thread": 5 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1611628, + "thread": 4 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1658111, + "thread": 10 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 1945778, + "thread": 26 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2004462, + "thread": 13 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2238409, + "thread": 23 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2449899, + "thread": 20 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2601015, + "thread": 15 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2631917, + "thread": 31 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 2901270, + "thread": 21 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 3095476, + "thread": 23 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 3229160, + "thread": 1 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 3370128, + "thread": 29 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 3561034, + "thread": 27 + } + }, + { + "amount": "626.974571523", + "slot": { + "period": 3627627, + "thread": 21 + } + }, + { + "amount": "626.974571533", + "slot": { + "period": 3888288, + "thread": 8 + } + } + ], + "AU12F8CmDAmUTWbcmgKmPJfdiTt7Wv5Uw97ugXr8roCCdyYx2KXtn": [ + { + "amount": "174.608650658", + "slot": { + "period": 24819, + "thread": 22 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 207371, + "thread": 13 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 403935, + "thread": 17 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 544189, + "thread": 9 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 722549, + "thread": 24 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 909883, + "thread": 20 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1037314, + "thread": 11 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1276685, + "thread": 2 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1367463, + "thread": 18 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1480773, + "thread": 23 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1712191, + "thread": 10 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 1817604, + "thread": 6 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2021897, + "thread": 18 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2159043, + "thread": 11 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2330706, + "thread": 5 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2540301, + "thread": 27 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2739924, + "thread": 28 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 2876526, + "thread": 19 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 3011949, + "thread": 31 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 3209685, + "thread": 20 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 3412688, + "thread": 29 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 3468612, + "thread": 21 + } + }, + { + "amount": "174.608650658", + "slot": { + "period": 3708736, + "thread": 25 + } + }, + { + "amount": "174.608650655", + "slot": { + "period": 3877452, + "thread": 22 + } + } + ], + "AU12F8oJavay1Eh2PpgFfGYzKugDgn7iZkvPjKVvmjF931PdSJA6": [ + { + "amount": "283.882707009", + "slot": { + "period": 154176, + "thread": 27 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 171455, + "thread": 25 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 435056, + "thread": 27 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 647357, + "thread": 5 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 716391, + "thread": 23 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 972655, + "thread": 18 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1131746, + "thread": 15 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1305358, + "thread": 0 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1463129, + "thread": 31 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1540186, + "thread": 24 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1716166, + "thread": 23 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 1929508, + "thread": 23 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2040182, + "thread": 11 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2163694, + "thread": 30 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2385115, + "thread": 28 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2513066, + "thread": 28 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2627337, + "thread": 24 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 2929087, + "thread": 10 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 3090081, + "thread": 2 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 3182804, + "thread": 9 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 3393554, + "thread": 21 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 3537432, + "thread": 2 + } + }, + { + "amount": "283.882707009", + "slot": { + "period": 3674648, + "thread": 5 + } + }, + { + "amount": "283.882707006", + "slot": { + "period": 3848779, + "thread": 4 + } + } + ], + "AU12F93MpsLKaWWdhnJzBPSrnoZUUAPs5XNBe8H5vVcw51vVEDwZr": [ + { + "amount": "254.399090135", + "slot": { + "period": 150531, + "thread": 6 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 306765, + "thread": 10 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 416868, + "thread": 13 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 559122, + "thread": 27 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 657578, + "thread": 6 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 882694, + "thread": 6 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1063287, + "thread": 30 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1173612, + "thread": 14 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1422120, + "thread": 14 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1502450, + "thread": 29 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1683154, + "thread": 8 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 1856005, + "thread": 9 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2137906, + "thread": 13 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2161214, + "thread": 19 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2397429, + "thread": 15 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2580099, + "thread": 18 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2752944, + "thread": 0 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 2945095, + "thread": 5 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3061171, + "thread": 27 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3158693, + "thread": 21 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3318744, + "thread": 6 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3545479, + "thread": 5 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3686887, + "thread": 29 + } + }, + { + "amount": "254.399090135", + "slot": { + "period": 3845191, + "thread": 17 + } + } + ], + "AU12F9ov7MUKDox9tfMRZ7jqz7tPuhZJM9BvtJSdoKbtr9qXjhuCu": [ + { + "amount": "536.365758575", + "slot": { + "period": 78741, + "thread": 19 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 294462, + "thread": 20 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 421685, + "thread": 26 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 608847, + "thread": 26 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 772690, + "thread": 23 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 864838, + "thread": 4 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1001408, + "thread": 19 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1189717, + "thread": 2 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1390581, + "thread": 31 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1519973, + "thread": 9 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1786566, + "thread": 30 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 1841706, + "thread": 7 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2021310, + "thread": 27 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2182013, + "thread": 4 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2302122, + "thread": 3 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2570558, + "thread": 14 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2718287, + "thread": 0 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 2806343, + "thread": 23 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 3055181, + "thread": 1 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 3255813, + "thread": 16 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 3439977, + "thread": 13 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 3470903, + "thread": 25 + } + }, + { + "amount": "536.365758575", + "slot": { + "period": 3631965, + "thread": 5 + } + }, + { + "amount": "536.365758579", + "slot": { + "period": 3857005, + "thread": 19 + } + } + ], + "AU12FAL2mCHM63MoxECmMWGW2dptDv7Sgq2ng7iMHnJRx9zhphER6": [ + { + "amount": "35880.833333333", + "slot": { + "period": 140580, + "thread": 31 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 210327, + "thread": 14 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 356864, + "thread": 16 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 624354, + "thread": 6 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 771354, + "thread": 28 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 977004, + "thread": 10 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1074059, + "thread": 22 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1230748, + "thread": 22 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1419898, + "thread": 12 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1558178, + "thread": 12 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1720436, + "thread": 10 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 1903574, + "thread": 25 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2051906, + "thread": 14 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2239522, + "thread": 26 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2297762, + "thread": 6 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2466468, + "thread": 15 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2671116, + "thread": 27 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 2908024, + "thread": 24 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 3043151, + "thread": 12 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 3244062, + "thread": 28 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 3361028, + "thread": 4 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 3597793, + "thread": 25 + } + }, + { + "amount": "35880.833333333", + "slot": { + "period": 3734302, + "thread": 13 + } + }, + { + "amount": "35880.833333341", + "slot": { + "period": 3914819, + "thread": 7 + } + } + ], + "AU12FAkVa251W7DnPReFVYEADMdiqsaEEhc7BHB4qXNK86AoV1C4J": [ + { + "amount": "496.047231610", + "slot": { + "period": 106506, + "thread": 14 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 242935, + "thread": 1 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 394685, + "thread": 1 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 611353, + "thread": 5 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 746614, + "thread": 4 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 951955, + "thread": 15 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1149615, + "thread": 23 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1272022, + "thread": 27 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1346759, + "thread": 8 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1488934, + "thread": 0 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1665752, + "thread": 7 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 1889050, + "thread": 29 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2045587, + "thread": 6 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2153162, + "thread": 17 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2450744, + "thread": 6 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2558989, + "thread": 20 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2655150, + "thread": 16 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2890410, + "thread": 1 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 2966288, + "thread": 13 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 3283782, + "thread": 14 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 3443677, + "thread": 14 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 3517050, + "thread": 27 + } + }, + { + "amount": "496.047231610", + "slot": { + "period": 3701733, + "thread": 0 + } + }, + { + "amount": "496.047231612", + "slot": { + "period": 3881534, + "thread": 18 + } + } + ], + "AU12FBPk91w6YmXQRLMsDb4F74o5GLqvMd1MjVgYHGND3m6Zxe7Qh": [ + { + "amount": "57.923686865", + "slot": { + "period": 114707, + "thread": 18 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 257041, + "thread": 14 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 422655, + "thread": 0 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 609441, + "thread": 8 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 721662, + "thread": 11 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 924417, + "thread": 8 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1012768, + "thread": 31 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1232015, + "thread": 8 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1387270, + "thread": 19 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1568482, + "thread": 12 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1712701, + "thread": 17 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 1879288, + "thread": 13 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2048950, + "thread": 0 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2186074, + "thread": 2 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2410298, + "thread": 3 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2527691, + "thread": 9 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2654796, + "thread": 8 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 2926108, + "thread": 6 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 3022315, + "thread": 5 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 3136037, + "thread": 12 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 3335919, + "thread": 12 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 3613053, + "thread": 0 + } + }, + { + "amount": "57.923686865", + "slot": { + "period": 3663093, + "thread": 18 + } + }, + { + "amount": "57.923686867", + "slot": { + "period": 3902849, + "thread": 27 + } + } + ], + "AU12FDbHBjm4wJGCWh8ZtiX98hCL3gD8eYxcseakXWMpm9ZzQRe7": [ + { + "amount": "109.689076200", + "slot": { + "period": 147906, + "thread": 23 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 210158, + "thread": 4 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 472770, + "thread": 16 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 510018, + "thread": 10 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 784475, + "thread": 6 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 947673, + "thread": 16 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 986220, + "thread": 20 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 1231643, + "thread": 1 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 1384658, + "thread": 4 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 1574614, + "thread": 29 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 1734063, + "thread": 12 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 1834687, + "thread": 3 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2002610, + "thread": 19 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2286073, + "thread": 16 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2359030, + "thread": 20 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2578331, + "thread": 17 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2761387, + "thread": 2 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 2840372, + "thread": 19 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 3097903, + "thread": 4 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 3235932, + "thread": 8 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 3352433, + "thread": 29 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 3601637, + "thread": 7 + } + }, + { + "amount": "109.689076200", + "slot": { + "period": 3664690, + "thread": 9 + } + }, + { + "amount": "109.689076193", + "slot": { + "period": 3802737, + "thread": 7 + } + } + ], + "AU12FDqLXxWogEbPNeh4w43z9C1KSnRFfQaTHyYuCTuZfNnE9pnJ1": [ + { + "amount": "295.182429234", + "slot": { + "period": 100114, + "thread": 28 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 243671, + "thread": 4 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 464245, + "thread": 1 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 581486, + "thread": 3 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 712876, + "thread": 26 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 920360, + "thread": 0 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1029320, + "thread": 13 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1171355, + "thread": 4 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1427601, + "thread": 6 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1517825, + "thread": 21 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1699173, + "thread": 23 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 1905446, + "thread": 2 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2012125, + "thread": 6 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2176038, + "thread": 6 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2354107, + "thread": 6 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2622152, + "thread": 2 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2664088, + "thread": 6 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 2861351, + "thread": 7 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 3037301, + "thread": 31 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 3220011, + "thread": 28 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 3415500, + "thread": 9 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 3474759, + "thread": 21 + } + }, + { + "amount": "295.182429234", + "slot": { + "period": 3662282, + "thread": 12 + } + }, + { + "amount": "295.182429237", + "slot": { + "period": 3868738, + "thread": 23 + } + } + ], + "AU12FE5NBUGcttoUbko5QUsMzw6CtrCP2uEibWJEvA1wbiEhs9VBc": [ + { + "amount": "154.411071575", + "slot": { + "period": 133022, + "thread": 27 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 247676, + "thread": 25 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 446940, + "thread": 10 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 548599, + "thread": 1 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 790978, + "thread": 31 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 889678, + "thread": 15 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1024932, + "thread": 19 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1198373, + "thread": 5 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1472484, + "thread": 25 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1628605, + "thread": 24 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1786126, + "thread": 2 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 1909755, + "thread": 26 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2086756, + "thread": 22 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2152452, + "thread": 0 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2431266, + "thread": 18 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2518147, + "thread": 23 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2772799, + "thread": 22 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 2839567, + "thread": 18 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 3073305, + "thread": 28 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 3130325, + "thread": 9 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 3418215, + "thread": 3 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 3599755, + "thread": 22 + } + }, + { + "amount": "154.411071575", + "slot": { + "period": 3668299, + "thread": 31 + } + }, + { + "amount": "154.411071568", + "slot": { + "period": 3806772, + "thread": 13 + } + } + ], + "AU12FELgDBrx6UEDr7S6Wfa2wj9djkNJCRZm1KDpmDbPVrdzQ3XNT": [ + { + "amount": "598.518552999", + "slot": { + "period": 133601, + "thread": 21 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 279184, + "thread": 22 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 349942, + "thread": 28 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 500315, + "thread": 6 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 803715, + "thread": 24 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 880241, + "thread": 4 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1041589, + "thread": 30 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1205280, + "thread": 10 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1356767, + "thread": 22 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1643289, + "thread": 15 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1713899, + "thread": 24 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1944164, + "thread": 30 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 1996092, + "thread": 11 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 2204012, + "thread": 14 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 2303644, + "thread": 0 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 2588591, + "thread": 24 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 2700504, + "thread": 21 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 2910104, + "thread": 7 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 3101991, + "thread": 31 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 3179432, + "thread": 26 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 3331794, + "thread": 18 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 3473965, + "thread": 26 + } + }, + { + "amount": "598.518552999", + "slot": { + "period": 3638702, + "thread": 6 + } + }, + { + "amount": "598.518553002", + "slot": { + "period": 3882651, + "thread": 6 + } + } + ], + "AU12FEPhQUMwKfHvkpozszoWbGNGDkLsBcKaqZyJuwq7T9vQk4Ugd": [ + { + "amount": "155.223599268", + "slot": { + "period": 101938, + "thread": 16 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 276765, + "thread": 25 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 368141, + "thread": 7 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 579668, + "thread": 16 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 699376, + "thread": 7 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 876348, + "thread": 12 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1031070, + "thread": 16 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1267945, + "thread": 2 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1374248, + "thread": 12 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1625549, + "thread": 13 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1765531, + "thread": 27 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 1809766, + "thread": 5 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2053811, + "thread": 24 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2253505, + "thread": 14 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2363029, + "thread": 28 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2598380, + "thread": 8 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2655796, + "thread": 3 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2891910, + "thread": 29 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 2970903, + "thread": 7 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 3246798, + "thread": 17 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 3429949, + "thread": 4 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 3540298, + "thread": 1 + } + }, + { + "amount": "155.223599268", + "slot": { + "period": 3775359, + "thread": 27 + } + }, + { + "amount": "155.223599266", + "slot": { + "period": 3929592, + "thread": 28 + } + } + ], + "AU12FES5ijgqV4JuP1V7D5h4n5wQX4N3hSAgmziuWf8jzJiBGKkxF": [ + { + "amount": "467.405977107", + "slot": { + "period": 29883, + "thread": 9 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 275750, + "thread": 12 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 455400, + "thread": 28 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 527600, + "thread": 13 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 811663, + "thread": 1 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 902603, + "thread": 31 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1128249, + "thread": 15 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1288187, + "thread": 1 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1340285, + "thread": 19 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1497257, + "thread": 8 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1799027, + "thread": 30 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 1857516, + "thread": 7 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2060265, + "thread": 25 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2267601, + "thread": 23 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2371742, + "thread": 25 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2519732, + "thread": 12 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2624460, + "thread": 3 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 2819551, + "thread": 31 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 3117348, + "thread": 14 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 3170545, + "thread": 21 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 3330204, + "thread": 1 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 3592306, + "thread": 6 + } + }, + { + "amount": "467.405977107", + "slot": { + "period": 3651645, + "thread": 5 + } + }, + { + "amount": "467.405977102", + "slot": { + "period": 3871035, + "thread": 27 + } + } + ], + "AU12FErnT3bnxTM5TzqkupqVF3auEEdoZLpw5BmCAF7GwLcWHLyLx": [ + { + "amount": "317.563866785", + "slot": { + "period": 133372, + "thread": 18 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 292986, + "thread": 22 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 376098, + "thread": 25 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 539130, + "thread": 1 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 787309, + "thread": 24 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 821359, + "thread": 21 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1036448, + "thread": 12 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1312862, + "thread": 25 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1451222, + "thread": 4 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1493767, + "thread": 5 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1648515, + "thread": 8 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 1873337, + "thread": 24 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2140720, + "thread": 29 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2256523, + "thread": 25 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2458546, + "thread": 5 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2483460, + "thread": 26 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2699104, + "thread": 17 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 2891715, + "thread": 18 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 3011105, + "thread": 25 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 3204338, + "thread": 5 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 3397982, + "thread": 30 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 3548325, + "thread": 14 + } + }, + { + "amount": "317.563866785", + "slot": { + "period": 3639546, + "thread": 17 + } + }, + { + "amount": "317.563866793", + "slot": { + "period": 3861514, + "thread": 25 + } + } + ], + "AU12FF6vqHxBSqNtLRdHBnjvvVCk9V9UYoLqUmJr3ULSwwZuoJ4a4": [ + { + "amount": "183.778693573", + "slot": { + "period": 111335, + "thread": 24 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 212087, + "thread": 7 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 433108, + "thread": 31 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 607758, + "thread": 29 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 688964, + "thread": 0 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 972193, + "thread": 11 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1108955, + "thread": 13 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1291463, + "thread": 3 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1410069, + "thread": 10 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1561266, + "thread": 27 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1667714, + "thread": 15 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1813511, + "thread": 23 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 1997005, + "thread": 7 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 2148134, + "thread": 7 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 2329925, + "thread": 25 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 2551564, + "thread": 5 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 2626476, + "thread": 10 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 2803808, + "thread": 15 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 3009727, + "thread": 16 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 3244144, + "thread": 25 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 3363094, + "thread": 19 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 3526411, + "thread": 1 + } + }, + { + "amount": "183.778693573", + "slot": { + "period": 3735065, + "thread": 27 + } + }, + { + "amount": "183.778693564", + "slot": { + "period": 3878248, + "thread": 15 + } + } + ], + "AU12FFV7LrzB9VT2AjUTNq8t85FWec2ue8jQoJ3FtpgSbLc9pAKry": [ + { + "amount": "223.390478219", + "slot": { + "period": 129849, + "thread": 17 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 174995, + "thread": 9 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 471130, + "thread": 22 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 575617, + "thread": 7 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 721009, + "thread": 28 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 953029, + "thread": 10 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1150034, + "thread": 22 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1166378, + "thread": 10 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1455639, + "thread": 6 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1550394, + "thread": 27 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1718662, + "thread": 4 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 1951343, + "thread": 17 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2045413, + "thread": 31 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2293450, + "thread": 24 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2451304, + "thread": 11 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2500640, + "thread": 21 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2765347, + "thread": 29 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 2798766, + "thread": 28 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 3103380, + "thread": 1 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 3167983, + "thread": 4 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 3384629, + "thread": 31 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 3588048, + "thread": 1 + } + }, + { + "amount": "223.390478219", + "slot": { + "period": 3651152, + "thread": 18 + } + }, + { + "amount": "223.390478214", + "slot": { + "period": 3846488, + "thread": 28 + } + } + ], + "AU12FGxSGyaUnip8vPMBYqXbrYbfzeGX5ygVGycDbH37Bc6Snx5aM": [ + { + "amount": "119.006390630", + "slot": { + "period": 92723, + "thread": 7 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 292745, + "thread": 22 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 405488, + "thread": 20 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 610109, + "thread": 19 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 703287, + "thread": 22 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 840702, + "thread": 4 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 997426, + "thread": 17 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 1185481, + "thread": 23 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 1421809, + "thread": 12 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 1557948, + "thread": 10 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 1661569, + "thread": 11 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 1932347, + "thread": 18 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2091440, + "thread": 28 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2256309, + "thread": 28 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2324026, + "thread": 19 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2596960, + "thread": 8 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2627737, + "thread": 23 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 2923597, + "thread": 7 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 3073086, + "thread": 30 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 3271720, + "thread": 7 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 3355215, + "thread": 25 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 3552362, + "thread": 14 + } + }, + { + "amount": "119.006390630", + "slot": { + "period": 3657419, + "thread": 6 + } + }, + { + "amount": "119.006390632", + "slot": { + "period": 3931437, + "thread": 4 + } + } + ], + "AU12FHBxQDrdNShKn4eB83UCusE69AQevSibHyusR6p8Qe5ga3Wug": [ + { + "amount": "137.480469133", + "slot": { + "period": 96985, + "thread": 19 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 259248, + "thread": 23 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 475021, + "thread": 18 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 522318, + "thread": 14 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 696459, + "thread": 2 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 959522, + "thread": 2 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1083006, + "thread": 28 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1241861, + "thread": 18 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1472903, + "thread": 21 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1545857, + "thread": 25 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1719603, + "thread": 1 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 1813842, + "thread": 28 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2049120, + "thread": 5 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2161034, + "thread": 27 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2377870, + "thread": 4 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2506411, + "thread": 25 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2682684, + "thread": 9 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 2935591, + "thread": 18 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 3045065, + "thread": 17 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 3147039, + "thread": 18 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 3291106, + "thread": 18 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 3468028, + "thread": 20 + } + }, + { + "amount": "137.480469133", + "slot": { + "period": 3657739, + "thread": 17 + } + }, + { + "amount": "137.480469131", + "slot": { + "period": 3868240, + "thread": 31 + } + } + ], + "AU12FHMi4cS6BnzhwUVmZEjPmjeetp6R8LzzVQ4PvQuCarWaHdv4Y": [ + { + "amount": "142.343496157", + "slot": { + "period": 98947, + "thread": 16 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 270514, + "thread": 7 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 446468, + "thread": 7 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 591221, + "thread": 9 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 786333, + "thread": 19 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 980194, + "thread": 19 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1044470, + "thread": 29 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1310019, + "thread": 9 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1442114, + "thread": 21 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1603875, + "thread": 28 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1695441, + "thread": 18 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 1876086, + "thread": 15 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2010856, + "thread": 17 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2168347, + "thread": 25 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2357194, + "thread": 29 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2594328, + "thread": 25 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2786536, + "thread": 18 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 2852462, + "thread": 5 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 3024450, + "thread": 1 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 3177938, + "thread": 22 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 3431745, + "thread": 25 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 3604981, + "thread": 6 + } + }, + { + "amount": "142.343496157", + "slot": { + "period": 3722165, + "thread": 29 + } + }, + { + "amount": "142.343496168", + "slot": { + "period": 3926715, + "thread": 11 + } + } + ], + "AU12FJqd1XEU9wrs6rEXmpNiSfALYypnsN7DGxLDjHWWHPmr7WEF8": [ + { + "amount": "413.863345667", + "slot": { + "period": 145937, + "thread": 19 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 303107, + "thread": 26 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 349650, + "thread": 30 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 629090, + "thread": 21 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 669240, + "thread": 24 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 869111, + "thread": 29 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 994386, + "thread": 15 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 1253617, + "thread": 2 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 1403971, + "thread": 10 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 1573417, + "thread": 22 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 1665894, + "thread": 31 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 1946526, + "thread": 4 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2084858, + "thread": 31 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2254624, + "thread": 3 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2447696, + "thread": 26 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2506425, + "thread": 6 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2635269, + "thread": 1 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 2886426, + "thread": 11 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 3060931, + "thread": 27 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 3154481, + "thread": 13 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 3345060, + "thread": 18 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 3581116, + "thread": 5 + } + }, + { + "amount": "413.863345667", + "slot": { + "period": 3776625, + "thread": 6 + } + }, + { + "amount": "413.863345678", + "slot": { + "period": 3809169, + "thread": 10 + } + } + ], + "AU12FM9qec1oJCRgeRsDwu6uVpJgwFk1BF12nXL7eNrRHoaxK35hX": [ + { + "amount": "246.573456097", + "slot": { + "period": 157927, + "thread": 3 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 174747, + "thread": 27 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 340151, + "thread": 25 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 516668, + "thread": 11 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 742383, + "thread": 14 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 974269, + "thread": 29 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1020613, + "thread": 1 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1228693, + "thread": 16 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1351811, + "thread": 20 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1640066, + "thread": 6 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1765716, + "thread": 0 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 1842930, + "thread": 20 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2056774, + "thread": 18 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2225163, + "thread": 17 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2432823, + "thread": 8 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2551469, + "thread": 17 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2751266, + "thread": 22 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 2932010, + "thread": 5 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 3026787, + "thread": 0 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 3121692, + "thread": 13 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 3420950, + "thread": 8 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 3458319, + "thread": 8 + } + }, + { + "amount": "246.573456097", + "slot": { + "period": 3732834, + "thread": 30 + } + }, + { + "amount": "246.573456087", + "slot": { + "period": 3826541, + "thread": 14 + } + } + ], + "AU12FMq7dZQ2TGKF39U1heCYDVvDC6mNyqNNrBKx1YSBqanMJP6Rz": [ + { + "amount": "192.329707000", + "slot": { + "period": 113193, + "thread": 7 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 280832, + "thread": 9 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 455729, + "thread": 15 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 623835, + "thread": 26 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 773908, + "thread": 4 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 841811, + "thread": 31 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1042580, + "thread": 5 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1184285, + "thread": 11 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1321518, + "thread": 5 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1544815, + "thread": 12 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1719186, + "thread": 27 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 1920652, + "thread": 4 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2031775, + "thread": 20 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2259873, + "thread": 22 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2388868, + "thread": 30 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2504714, + "thread": 29 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2790057, + "thread": 13 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 2851481, + "thread": 22 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 3114027, + "thread": 31 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 3153947, + "thread": 11 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 3332922, + "thread": 19 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 3487221, + "thread": 25 + } + }, + { + "amount": "192.329707000", + "slot": { + "period": 3670244, + "thread": 19 + } + }, + { + "amount": "192.329706998", + "slot": { + "period": 3924909, + "thread": 6 + } + } + ], + "AU12FMvf1AcaqBiENu7Cx9962ALhZi6XqvP5ATnQQya6byS5mJUAi": [ + { + "amount": "163.300964723", + "slot": { + "period": 45166, + "thread": 21 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 177978, + "thread": 20 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 468859, + "thread": 1 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 589719, + "thread": 4 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 677862, + "thread": 17 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 907692, + "thread": 13 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1098530, + "thread": 19 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1190750, + "thread": 29 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1330505, + "thread": 17 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1563159, + "thread": 7 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1672750, + "thread": 28 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 1859502, + "thread": 20 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2010819, + "thread": 5 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2255817, + "thread": 4 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2433260, + "thread": 18 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2482235, + "thread": 18 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2649173, + "thread": 7 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 2884502, + "thread": 10 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 3030644, + "thread": 2 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 3286863, + "thread": 25 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 3325711, + "thread": 17 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 3566069, + "thread": 13 + } + }, + { + "amount": "163.300964723", + "slot": { + "period": 3732682, + "thread": 21 + } + }, + { + "amount": "163.300964732", + "slot": { + "period": 3935276, + "thread": 9 + } + } + ], + "AU12FNEUTMJaT6hxVhih4aMRFGSr1kuyhhFj3hTmyFEZUxoKAqG5R": [ + { + "amount": "102.992179163", + "slot": { + "period": 106219, + "thread": 31 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 322649, + "thread": 0 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 336308, + "thread": 4 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 607821, + "thread": 5 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 755491, + "thread": 28 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 932221, + "thread": 8 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1133546, + "thread": 13 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1171544, + "thread": 26 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1374917, + "thread": 15 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1541640, + "thread": 16 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1721739, + "thread": 22 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 1884657, + "thread": 8 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2092510, + "thread": 11 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2273538, + "thread": 17 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2405157, + "thread": 8 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2613873, + "thread": 15 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2631747, + "thread": 23 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2864267, + "thread": 21 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 2973313, + "thread": 9 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 3230655, + "thread": 24 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 3289301, + "thread": 29 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 3529670, + "thread": 3 + } + }, + { + "amount": "102.992179163", + "slot": { + "period": 3632198, + "thread": 6 + } + }, + { + "amount": "102.992179167", + "slot": { + "period": 3841571, + "thread": 27 + } + } + ], + "AU12FNSV3n2yKT1y6XEZkdcdBNrwMzdJ2r6gwueBtNpbPNP13nhSa": [ + { + "amount": "179.215228727", + "slot": { + "period": 83703, + "thread": 17 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 266371, + "thread": 24 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 444737, + "thread": 0 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 646856, + "thread": 15 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 736490, + "thread": 24 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 849525, + "thread": 4 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1091000, + "thread": 18 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1251604, + "thread": 10 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1366763, + "thread": 0 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1563596, + "thread": 0 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1741406, + "thread": 11 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 1962508, + "thread": 10 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2042336, + "thread": 8 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2273087, + "thread": 17 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2391652, + "thread": 30 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2510033, + "thread": 22 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2686339, + "thread": 30 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2869937, + "thread": 19 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 2998490, + "thread": 30 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 3240645, + "thread": 24 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 3367201, + "thread": 20 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 3522542, + "thread": 21 + } + }, + { + "amount": "179.215228727", + "slot": { + "period": 3674187, + "thread": 21 + } + }, + { + "amount": "179.215228724", + "slot": { + "period": 3847379, + "thread": 29 + } + } + ], + "AU12FPYv9Q3Ttvh5esVrE8LiW8onpMRawHQmtrBRiSyZPuuyDndd3": [ + { + "amount": "151.054674172", + "slot": { + "period": 107247, + "thread": 16 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 272923, + "thread": 12 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 363467, + "thread": 7 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 587202, + "thread": 20 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 709370, + "thread": 25 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 897691, + "thread": 28 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1064818, + "thread": 11 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1197462, + "thread": 20 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1423836, + "thread": 24 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1489507, + "thread": 2 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1706318, + "thread": 2 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 1868859, + "thread": 0 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2097911, + "thread": 11 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2261649, + "thread": 1 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2364502, + "thread": 18 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2528761, + "thread": 1 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2707057, + "thread": 8 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 2877305, + "thread": 29 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 3029610, + "thread": 19 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 3239861, + "thread": 7 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 3321986, + "thread": 6 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 3540191, + "thread": 25 + } + }, + { + "amount": "151.054674172", + "slot": { + "period": 3721423, + "thread": 13 + } + }, + { + "amount": "151.054674161", + "slot": { + "period": 3794973, + "thread": 9 + } + } + ], + "AU12FPb3PaWzKYpQ2K7ogVNm6ukMH7XTaxvqLoS4Xc6SdCqta3n1V": [ + { + "amount": "300.166615329", + "slot": { + "period": 46734, + "thread": 1 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 208316, + "thread": 6 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 441345, + "thread": 7 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 602296, + "thread": 10 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 691740, + "thread": 19 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 834859, + "thread": 8 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1012958, + "thread": 6 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1184389, + "thread": 5 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1471429, + "thread": 11 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1553616, + "thread": 28 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1769840, + "thread": 2 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1942304, + "thread": 13 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 1996307, + "thread": 30 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2291584, + "thread": 23 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2441494, + "thread": 5 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2535706, + "thread": 23 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2767897, + "thread": 12 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2943702, + "thread": 19 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 2968729, + "thread": 6 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 3219517, + "thread": 14 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 3358725, + "thread": 17 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 3570642, + "thread": 12 + } + }, + { + "amount": "300.166615329", + "slot": { + "period": 3776389, + "thread": 18 + } + }, + { + "amount": "300.166615328", + "slot": { + "period": 3909103, + "thread": 21 + } + } + ], + "AU12FQ5ADRpVUVyYxbtV6iHxuGJHNXLBT8xqyQf3NikCAoUsp1Ddi": [ + { + "amount": "287.381347370", + "slot": { + "period": 93363, + "thread": 8 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 201937, + "thread": 17 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 410431, + "thread": 2 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 527101, + "thread": 15 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 769429, + "thread": 14 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 859271, + "thread": 26 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1104555, + "thread": 9 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1316405, + "thread": 5 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1377670, + "thread": 29 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1543194, + "thread": 21 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1667967, + "thread": 28 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 1976331, + "thread": 6 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2137877, + "thread": 1 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2284555, + "thread": 12 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2357825, + "thread": 22 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2567090, + "thread": 20 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2744676, + "thread": 21 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2869862, + "thread": 1 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 2963780, + "thread": 24 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 3136331, + "thread": 31 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 3373596, + "thread": 26 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 3597925, + "thread": 21 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 3700184, + "thread": 13 + } + }, + { + "amount": "287.381347370", + "slot": { + "period": 3862242, + "thread": 0 + } + } + ], + "AU12FSTyXQ3GXGQLZfHjJZ387mch6BjBtj2DS16FXLN4qn4MGKpXW": [ + { + "amount": "576.440481769", + "slot": { + "period": 64026, + "thread": 10 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 192011, + "thread": 7 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 412143, + "thread": 4 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 639360, + "thread": 8 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 677174, + "thread": 6 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 975185, + "thread": 19 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1057844, + "thread": 21 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1273982, + "thread": 18 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1447768, + "thread": 6 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1594601, + "thread": 0 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1752135, + "thread": 28 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1949800, + "thread": 1 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 1989607, + "thread": 18 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 2251615, + "thread": 10 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 2459859, + "thread": 23 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 2507117, + "thread": 24 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 2737621, + "thread": 22 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 2875517, + "thread": 23 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 3104580, + "thread": 18 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 3201956, + "thread": 6 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 3419103, + "thread": 27 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 3537123, + "thread": 31 + } + }, + { + "amount": "576.440481769", + "slot": { + "period": 3631318, + "thread": 12 + } + }, + { + "amount": "576.440481775", + "slot": { + "period": 3844059, + "thread": 27 + } + } + ], + "AU12FSYrkSPcusNA7xdaCSSFa5uaNXt4125pigvqAjpyFPDuixjFR": [ + { + "amount": "127.170395424", + "slot": { + "period": 141432, + "thread": 19 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 284799, + "thread": 27 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 405072, + "thread": 29 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 644607, + "thread": 24 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 781473, + "thread": 27 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 918387, + "thread": 16 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1102509, + "thread": 12 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1227792, + "thread": 7 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1381218, + "thread": 0 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1632482, + "thread": 16 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1687621, + "thread": 16 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 1881176, + "thread": 30 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2089907, + "thread": 13 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2203590, + "thread": 8 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2342309, + "thread": 3 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2509401, + "thread": 11 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2666022, + "thread": 16 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 2794357, + "thread": 15 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 3100667, + "thread": 16 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 3192049, + "thread": 31 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 3304350, + "thread": 1 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 3543270, + "thread": 22 + } + }, + { + "amount": "127.170395424", + "slot": { + "period": 3618724, + "thread": 15 + } + }, + { + "amount": "127.170395422", + "slot": { + "period": 3930949, + "thread": 18 + } + } + ], + "AU12FSa1DM62RvYwP7RjhVBGo5ojwwyXBeRwkvZCXZJ2ELmpab5WN": [ + { + "amount": "599.748168391", + "slot": { + "period": 75408, + "thread": 23 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 253299, + "thread": 11 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 403510, + "thread": 16 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 524152, + "thread": 11 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 713324, + "thread": 6 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 897757, + "thread": 25 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 996495, + "thread": 27 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 1278008, + "thread": 29 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 1417918, + "thread": 28 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 1504325, + "thread": 23 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 1655402, + "thread": 10 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 1835505, + "thread": 14 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2051630, + "thread": 15 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2148519, + "thread": 22 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2453655, + "thread": 21 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2620871, + "thread": 26 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2626849, + "thread": 14 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 2810980, + "thread": 0 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 3105164, + "thread": 13 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 3141240, + "thread": 21 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 3447426, + "thread": 12 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 3603249, + "thread": 23 + } + }, + { + "amount": "599.748168391", + "slot": { + "period": 3752758, + "thread": 17 + } + }, + { + "amount": "599.748168398", + "slot": { + "period": 3916134, + "thread": 13 + } + } + ], + "AU12FSt5b8K4psHyJSZSL3tfd6SvrBnh61S5ENxUuj5jd8zqRiBsy": [ + { + "amount": "171.421892679", + "slot": { + "period": 76233, + "thread": 15 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 298724, + "thread": 21 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 368517, + "thread": 18 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 518097, + "thread": 24 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 715879, + "thread": 25 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 975054, + "thread": 10 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1103367, + "thread": 13 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1180117, + "thread": 17 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1361010, + "thread": 9 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1574242, + "thread": 8 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1713371, + "thread": 25 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 1914404, + "thread": 14 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2089371, + "thread": 22 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2152158, + "thread": 16 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2453452, + "thread": 30 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2522417, + "thread": 21 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2666786, + "thread": 15 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 2900444, + "thread": 28 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 3037730, + "thread": 16 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 3205037, + "thread": 19 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 3298502, + "thread": 13 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 3509887, + "thread": 7 + } + }, + { + "amount": "171.421892679", + "slot": { + "period": 3717682, + "thread": 21 + } + }, + { + "amount": "171.421892683", + "slot": { + "period": 3816352, + "thread": 18 + } + } + ], + "AU12FTQhcMy26mK75o98hqsCfuwXHsJFd9eFnzZSeimkSLKvzExqR": [ + { + "amount": "72.308812526", + "slot": { + "period": 163078, + "thread": 5 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 218519, + "thread": 23 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 332435, + "thread": 31 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 542236, + "thread": 0 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 803351, + "thread": 9 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 968946, + "thread": 11 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1011479, + "thread": 21 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1271019, + "thread": 15 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1444029, + "thread": 1 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1633901, + "thread": 14 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1739899, + "thread": 10 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 1854354, + "thread": 23 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2112171, + "thread": 12 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2279210, + "thread": 15 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2339368, + "thread": 21 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2464171, + "thread": 14 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2715821, + "thread": 26 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 2891458, + "thread": 6 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 3057042, + "thread": 19 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 3214754, + "thread": 11 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 3307351, + "thread": 27 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 3553469, + "thread": 17 + } + }, + { + "amount": "72.308812526", + "slot": { + "period": 3778487, + "thread": 6 + } + }, + { + "amount": "72.308812519", + "slot": { + "period": 3894129, + "thread": 21 + } + } + ], + "AU12FTcpCLT5KJ74S9v6xhrWKVwCi1WgtL5Tpwz66rWJEAhFYLQkS": [ + { + "amount": "176.741811284", + "slot": { + "period": 46708, + "thread": 13 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 311134, + "thread": 18 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 417777, + "thread": 19 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 510851, + "thread": 27 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 731035, + "thread": 5 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 972123, + "thread": 15 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1072034, + "thread": 7 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1236510, + "thread": 12 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1420749, + "thread": 1 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1490631, + "thread": 26 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1802496, + "thread": 18 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 1866987, + "thread": 14 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2008665, + "thread": 18 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2283735, + "thread": 1 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2432551, + "thread": 27 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2501769, + "thread": 28 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2683122, + "thread": 6 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 2792325, + "thread": 23 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 3068094, + "thread": 18 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 3188410, + "thread": 8 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 3410774, + "thread": 21 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 3541080, + "thread": 10 + } + }, + { + "amount": "176.741811284", + "slot": { + "period": 3620569, + "thread": 24 + } + }, + { + "amount": "176.741811290", + "slot": { + "period": 3850831, + "thread": 15 + } + } + ], + "AU12FU6yuXTAXJtq4fNt7G2fc9ZyNhwtppkjzpbhh97HVm8sjTuJT": [ + { + "amount": "127.641176292", + "slot": { + "period": 70092, + "thread": 14 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 269595, + "thread": 20 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 432052, + "thread": 26 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 610474, + "thread": 16 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 654211, + "thread": 9 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 939060, + "thread": 3 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1141140, + "thread": 30 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1202745, + "thread": 3 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1396433, + "thread": 18 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1490689, + "thread": 12 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1698270, + "thread": 10 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 1824306, + "thread": 28 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2111109, + "thread": 11 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2223353, + "thread": 22 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2379674, + "thread": 10 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2487949, + "thread": 24 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2768502, + "thread": 25 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 2892877, + "thread": 27 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 3080318, + "thread": 21 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 3205629, + "thread": 16 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 3356058, + "thread": 14 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 3468573, + "thread": 13 + } + }, + { + "amount": "127.641176292", + "slot": { + "period": 3699518, + "thread": 7 + } + }, + { + "amount": "127.641176300", + "slot": { + "period": 3913641, + "thread": 29 + } + } + ], + "AU12FUBCNM5FyRYVk3ckERkVnMWwqFNLXWqNSpPrvSCS99AH9X8Ea": [ + { + "amount": "104.764493216", + "slot": { + "period": 137542, + "thread": 6 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 305849, + "thread": 29 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 488114, + "thread": 27 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 550881, + "thread": 23 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 807350, + "thread": 0 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 907702, + "thread": 9 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1132364, + "thread": 19 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1180034, + "thread": 20 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1362630, + "thread": 3 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1627337, + "thread": 7 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1719918, + "thread": 30 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 1941600, + "thread": 13 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2134774, + "thread": 20 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2286148, + "thread": 1 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2408387, + "thread": 15 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2477122, + "thread": 31 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2635443, + "thread": 20 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2885892, + "thread": 12 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 2975437, + "thread": 15 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 3147996, + "thread": 0 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 3395963, + "thread": 12 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 3461936, + "thread": 2 + } + }, + { + "amount": "104.764493216", + "slot": { + "period": 3624144, + "thread": 11 + } + }, + { + "amount": "104.764493228", + "slot": { + "period": 3790172, + "thread": 7 + } + } + ], + "AU12FUMbpkKL5JTeCsCsvXywQ1hd8ueqx7dRKJMzG27Da4wyAKyak": [ + { + "amount": "555.368195720", + "slot": { + "period": 25103, + "thread": 17 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 180368, + "thread": 3 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 433284, + "thread": 8 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 650969, + "thread": 19 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 694384, + "thread": 24 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 871591, + "thread": 3 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 987234, + "thread": 20 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 1213935, + "thread": 5 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 1387059, + "thread": 15 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 1505872, + "thread": 12 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 1807286, + "thread": 24 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 1903995, + "thread": 20 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2029013, + "thread": 13 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2220967, + "thread": 6 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2406413, + "thread": 10 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2511678, + "thread": 2 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2765581, + "thread": 10 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 2835643, + "thread": 1 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 3056184, + "thread": 3 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 3130429, + "thread": 16 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 3344773, + "thread": 16 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 3512207, + "thread": 17 + } + }, + { + "amount": "555.368195720", + "slot": { + "period": 3626243, + "thread": 5 + } + }, + { + "amount": "555.368195717", + "slot": { + "period": 3876134, + "thread": 4 + } + } + ], + "AU12FUPsZhKmmzrymfM2wQZbajUq4xntHokiwfFSNVVjrd74RMUB": [ + { + "amount": "157.046404980", + "slot": { + "period": 34073, + "thread": 5 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 203378, + "thread": 8 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 400960, + "thread": 4 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 586914, + "thread": 21 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 719432, + "thread": 20 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 959432, + "thread": 15 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1017693, + "thread": 15 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1217035, + "thread": 6 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1393306, + "thread": 12 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1505814, + "thread": 12 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1690576, + "thread": 10 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 1970636, + "thread": 11 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2096295, + "thread": 6 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2239559, + "thread": 1 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2419469, + "thread": 11 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2546601, + "thread": 10 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2656251, + "thread": 0 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 2853675, + "thread": 1 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 3019862, + "thread": 0 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 3129581, + "thread": 19 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 3335737, + "thread": 28 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 3543620, + "thread": 5 + } + }, + { + "amount": "157.046404980", + "slot": { + "period": 3633621, + "thread": 1 + } + }, + { + "amount": "157.046404983", + "slot": { + "period": 3929817, + "thread": 14 + } + } + ], + "AU12FUWXQRyBf4WLUpxF1tFMHs6RZAxYb2PAm9ibrFe3qx9EjJrRd": [ + { + "amount": "144.634752811", + "slot": { + "period": 30261, + "thread": 12 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 235207, + "thread": 12 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 361410, + "thread": 1 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 543520, + "thread": 29 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 779109, + "thread": 1 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 935050, + "thread": 30 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1027835, + "thread": 16 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1203726, + "thread": 22 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1444045, + "thread": 22 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1646566, + "thread": 1 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1748739, + "thread": 13 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 1959443, + "thread": 16 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2133019, + "thread": 20 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2189260, + "thread": 7 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2409613, + "thread": 18 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2592916, + "thread": 31 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2746064, + "thread": 18 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 2870642, + "thread": 8 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 3073054, + "thread": 14 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 3232805, + "thread": 19 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 3353985, + "thread": 10 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 3549138, + "thread": 11 + } + }, + { + "amount": "144.634752811", + "slot": { + "period": 3664340, + "thread": 24 + } + }, + { + "amount": "144.634752805", + "slot": { + "period": 3821380, + "thread": 11 + } + } + ], + "AU12FVWVAXicAa6LJVV8ThJo8J43RshKddimDG7LXBybqE8rEf3Av": [ + { + "amount": "333.394320237", + "slot": { + "period": 94209, + "thread": 2 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 288135, + "thread": 18 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 421478, + "thread": 11 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 548273, + "thread": 27 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 706429, + "thread": 3 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 909191, + "thread": 21 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1043057, + "thread": 15 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1171216, + "thread": 10 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1478527, + "thread": 30 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1481772, + "thread": 2 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1726940, + "thread": 16 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 1918725, + "thread": 6 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2019608, + "thread": 16 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2294908, + "thread": 25 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2313019, + "thread": 16 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2568630, + "thread": 26 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2709070, + "thread": 0 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2929610, + "thread": 8 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 2983198, + "thread": 16 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 3132012, + "thread": 29 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 3313765, + "thread": 23 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 3600542, + "thread": 2 + } + }, + { + "amount": "333.394320237", + "slot": { + "period": 3739837, + "thread": 7 + } + }, + { + "amount": "333.394320231", + "slot": { + "period": 3907065, + "thread": 10 + } + } + ], + "AU12FXNWWpaAGmshUi7mMLYMcMfCa9ceLiQGhGeYt2pPJxerq6KGx": [ + { + "amount": "316.352022550", + "slot": { + "period": 146657, + "thread": 17 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 307695, + "thread": 12 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 380345, + "thread": 16 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 563198, + "thread": 24 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 730858, + "thread": 25 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 951122, + "thread": 5 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1056753, + "thread": 27 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1205320, + "thread": 0 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1421454, + "thread": 31 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1621662, + "thread": 14 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1716470, + "thread": 29 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 1821989, + "thread": 25 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2075887, + "thread": 20 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2256982, + "thread": 25 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2336553, + "thread": 10 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2587605, + "thread": 17 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2641636, + "thread": 26 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 2879487, + "thread": 12 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 3116020, + "thread": 30 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 3189843, + "thread": 3 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 3369239, + "thread": 15 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 3538936, + "thread": 10 + } + }, + { + "amount": "316.352022550", + "slot": { + "period": 3652076, + "thread": 6 + } + }, + { + "amount": "316.352022541", + "slot": { + "period": 3885889, + "thread": 10 + } + } + ], + "AU12FXYJm8VxJd7uZXf1s6FsZuuEpmqvK4e38pnRms5JX5E3yPbnU": [ + { + "amount": "148.186047569", + "slot": { + "period": 111681, + "thread": 7 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 290647, + "thread": 23 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 335500, + "thread": 2 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 585561, + "thread": 14 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 740730, + "thread": 26 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 822545, + "thread": 12 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1092722, + "thread": 3 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1206988, + "thread": 16 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1419404, + "thread": 23 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1568081, + "thread": 3 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1724515, + "thread": 3 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 1932429, + "thread": 27 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2075091, + "thread": 20 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2245197, + "thread": 17 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2450418, + "thread": 15 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2556850, + "thread": 25 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2717487, + "thread": 31 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 2921461, + "thread": 7 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 3046198, + "thread": 23 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 3189081, + "thread": 27 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 3416462, + "thread": 28 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 3548258, + "thread": 4 + } + }, + { + "amount": "148.186047569", + "slot": { + "period": 3722356, + "thread": 11 + } + }, + { + "amount": "148.186047574", + "slot": { + "period": 3929836, + "thread": 21 + } + } + ], + "AU12FYemCH98WZAuwH6DQnwsf97qehoAZDkshBR6tsSRgC3KmDc2t": [ + { + "amount": "162.023754497", + "slot": { + "period": 146667, + "thread": 7 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 242462, + "thread": 1 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 354829, + "thread": 23 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 528437, + "thread": 27 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 770869, + "thread": 26 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 859471, + "thread": 3 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1137199, + "thread": 26 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1250634, + "thread": 28 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1446206, + "thread": 8 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1603085, + "thread": 10 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1676466, + "thread": 12 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 1858170, + "thread": 15 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2022142, + "thread": 2 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2149525, + "thread": 26 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2441773, + "thread": 15 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2471865, + "thread": 16 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2732756, + "thread": 2 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 2932521, + "thread": 23 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 3047928, + "thread": 1 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 3170313, + "thread": 19 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 3402554, + "thread": 13 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 3569297, + "thread": 29 + } + }, + { + "amount": "162.023754497", + "slot": { + "period": 3653617, + "thread": 8 + } + }, + { + "amount": "162.023754489", + "slot": { + "period": 3786729, + "thread": 23 + } + } + ], + "AU12FYz4RSduxFT4kh6k6Hc36TZpxjLzxMM1SC6u2Enkpb8qNMSpV": [ + { + "amount": "261.382216809", + "slot": { + "period": 75509, + "thread": 7 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 193785, + "thread": 0 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 461761, + "thread": 14 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 652308, + "thread": 16 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 770605, + "thread": 30 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 980199, + "thread": 10 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1011795, + "thread": 4 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1162021, + "thread": 24 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1430097, + "thread": 6 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1528314, + "thread": 24 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1732704, + "thread": 5 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 1899958, + "thread": 15 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2027417, + "thread": 17 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2190775, + "thread": 19 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2458879, + "thread": 16 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2487083, + "thread": 5 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2748166, + "thread": 14 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 2792067, + "thread": 26 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 3033458, + "thread": 0 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 3264626, + "thread": 31 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 3437938, + "thread": 18 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 3567844, + "thread": 18 + } + }, + { + "amount": "261.382216809", + "slot": { + "period": 3768250, + "thread": 12 + } + }, + { + "amount": "261.382216820", + "slot": { + "period": 3837720, + "thread": 3 + } + } + ], + "AU12FZAxxARqyCWyePCTNsYJ2GHzFFQiwhU95deg73nnPh4Uiv2Ws": [ + { + "amount": "153.490207102", + "slot": { + "period": 89002, + "thread": 22 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 315866, + "thread": 13 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 482076, + "thread": 7 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 652045, + "thread": 25 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 697466, + "thread": 12 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 880042, + "thread": 26 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1014744, + "thread": 5 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1182931, + "thread": 9 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1319361, + "thread": 29 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1566597, + "thread": 2 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1661753, + "thread": 18 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 1876970, + "thread": 18 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2009832, + "thread": 16 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2203988, + "thread": 28 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2451001, + "thread": 16 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2612327, + "thread": 29 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2782668, + "thread": 19 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 2864266, + "thread": 7 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 3103829, + "thread": 25 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 3241824, + "thread": 15 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 3335205, + "thread": 26 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 3597031, + "thread": 7 + } + }, + { + "amount": "153.490207102", + "slot": { + "period": 3686672, + "thread": 11 + } + }, + { + "amount": "153.490207109", + "slot": { + "period": 3900901, + "thread": 16 + } + } + ], + "AU12FaMAxw7TaiwL5LpN7ezW5WxFFyRpqErvvLQtpEsayQPbiv2fz": [ + { + "amount": "171.633916506", + "slot": { + "period": 153211, + "thread": 4 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 222736, + "thread": 13 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 349662, + "thread": 28 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 653272, + "thread": 0 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 719559, + "thread": 8 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 958222, + "thread": 2 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1049484, + "thread": 18 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1219711, + "thread": 26 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1361286, + "thread": 22 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1534864, + "thread": 13 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1710644, + "thread": 30 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 1822019, + "thread": 29 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2069938, + "thread": 15 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2240466, + "thread": 1 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2328929, + "thread": 13 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2510527, + "thread": 19 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2648159, + "thread": 19 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 2810163, + "thread": 17 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 3035551, + "thread": 29 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 3216220, + "thread": 26 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 3327919, + "thread": 2 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 3490257, + "thread": 1 + } + }, + { + "amount": "171.633916506", + "slot": { + "period": 3671742, + "thread": 10 + } + }, + { + "amount": "171.633916510", + "slot": { + "period": 3907261, + "thread": 4 + } + } + ], + "AU12Fb91HZjnp1JnpuAZD5qjPupkbDWBWojoBF8hXNxTDyPVWX3rm": [ + { + "amount": "56.588772988", + "slot": { + "period": 104384, + "thread": 31 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 272051, + "thread": 16 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 443938, + "thread": 4 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 558262, + "thread": 13 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 747232, + "thread": 21 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 833296, + "thread": 17 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1071381, + "thread": 28 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1199666, + "thread": 18 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1468062, + "thread": 30 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1490358, + "thread": 8 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1681467, + "thread": 11 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 1852171, + "thread": 17 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2043224, + "thread": 0 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2192664, + "thread": 25 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2396250, + "thread": 29 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2483368, + "thread": 31 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2759433, + "thread": 9 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 2903137, + "thread": 6 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 3003082, + "thread": 10 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 3280120, + "thread": 0 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 3382231, + "thread": 1 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 3503766, + "thread": 15 + } + }, + { + "amount": "56.588772988", + "slot": { + "period": 3629027, + "thread": 1 + } + }, + { + "amount": "56.588772978", + "slot": { + "period": 3825955, + "thread": 25 + } + } + ], + "AU12FbKUyT3Sue3vVADcqTMA4rWnNryt73WXCYjmWa9DEvkh9MN2F": [ + { + "amount": "445.894628360", + "slot": { + "period": 97921, + "thread": 16 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 278519, + "thread": 5 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 365167, + "thread": 29 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 503043, + "thread": 20 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 666150, + "thread": 14 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 920395, + "thread": 17 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1076591, + "thread": 8 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1205660, + "thread": 31 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1431273, + "thread": 6 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1541771, + "thread": 25 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1689468, + "thread": 28 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 1916059, + "thread": 21 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2111833, + "thread": 16 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2254970, + "thread": 22 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2449274, + "thread": 3 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2518198, + "thread": 15 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2773762, + "thread": 16 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 2925483, + "thread": 31 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 3002277, + "thread": 5 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 3266089, + "thread": 22 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 3367504, + "thread": 26 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 3601874, + "thread": 6 + } + }, + { + "amount": "445.894628360", + "slot": { + "period": 3651397, + "thread": 7 + } + }, + { + "amount": "445.894628367", + "slot": { + "period": 3801055, + "thread": 8 + } + } + ], + "AU12FdCjwBi13d94opRmJHBW9LpJShZheeEkfZaKchXdi9k2ipgN5": [ + { + "amount": "125.687183195", + "slot": { + "period": 24711, + "thread": 20 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 294719, + "thread": 13 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 466071, + "thread": 1 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 589044, + "thread": 22 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 808487, + "thread": 3 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 920374, + "thread": 30 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1100586, + "thread": 31 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1169135, + "thread": 23 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1319879, + "thread": 7 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1483937, + "thread": 14 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1779470, + "thread": 3 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 1845277, + "thread": 31 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2129036, + "thread": 31 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2202560, + "thread": 30 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2395756, + "thread": 24 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2525789, + "thread": 15 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2696750, + "thread": 4 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 2862400, + "thread": 15 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 3015085, + "thread": 11 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 3162563, + "thread": 24 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 3331007, + "thread": 20 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 3517244, + "thread": 19 + } + }, + { + "amount": "125.687183195", + "slot": { + "period": 3633282, + "thread": 29 + } + }, + { + "amount": "125.687183200", + "slot": { + "period": 3876043, + "thread": 4 + } + } + ], + "AU12FerWotxnnkJYy2d2JK9YCjMn6xEx8wn8UgbUiyfXCwCMMJWt": [ + { + "amount": "263.342982423", + "slot": { + "period": 50474, + "thread": 8 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 194159, + "thread": 18 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 359448, + "thread": 1 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 620170, + "thread": 27 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 769816, + "thread": 16 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 963039, + "thread": 22 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1023829, + "thread": 12 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1296318, + "thread": 5 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1392692, + "thread": 1 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1521889, + "thread": 15 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1783856, + "thread": 4 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 1940755, + "thread": 12 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2049869, + "thread": 22 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2294464, + "thread": 6 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2444711, + "thread": 30 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2485723, + "thread": 27 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2652366, + "thread": 11 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 2946201, + "thread": 29 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 3111284, + "thread": 7 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 3163380, + "thread": 2 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 3439635, + "thread": 15 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 3608088, + "thread": 23 + } + }, + { + "amount": "263.342982423", + "slot": { + "period": 3640067, + "thread": 24 + } + }, + { + "amount": "263.342982434", + "slot": { + "period": 3860941, + "thread": 29 + } + } + ], + "AU12FfzSstzkqWgGnagz1dV8oLYAeurENaEW69PyRL9tUkjF62YpN": [ + { + "amount": "517.240314157", + "slot": { + "period": 86453, + "thread": 1 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 322986, + "thread": 17 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 333025, + "thread": 22 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 588862, + "thread": 3 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 661952, + "thread": 25 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 842098, + "thread": 18 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1099592, + "thread": 12 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1294794, + "thread": 22 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1338221, + "thread": 0 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1603555, + "thread": 13 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1733196, + "thread": 15 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 1824455, + "thread": 9 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2132702, + "thread": 12 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2185463, + "thread": 18 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2389605, + "thread": 5 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2493736, + "thread": 3 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2759597, + "thread": 7 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2926122, + "thread": 21 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 2964048, + "thread": 15 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 3235226, + "thread": 12 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 3362836, + "thread": 1 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 3493477, + "thread": 16 + } + }, + { + "amount": "517.240314157", + "slot": { + "period": 3724641, + "thread": 26 + } + }, + { + "amount": "517.240314162", + "slot": { + "period": 3784325, + "thread": 4 + } + } + ], + "AU12Fg1C9hxkEWrUQaAFSR6Q3XBC2YGaU4EnEmHa5cXkN94nsWome": [ + { + "amount": "225.185302859", + "slot": { + "period": 84251, + "thread": 23 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 251861, + "thread": 21 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 354829, + "thread": 23 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 502660, + "thread": 25 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 779708, + "thread": 15 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 924284, + "thread": 12 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1091855, + "thread": 0 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1151209, + "thread": 25 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1345968, + "thread": 20 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1532425, + "thread": 1 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1732310, + "thread": 15 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 1826009, + "thread": 3 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2116080, + "thread": 5 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2160563, + "thread": 17 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2428303, + "thread": 8 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2546161, + "thread": 9 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2787446, + "thread": 10 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2935385, + "thread": 26 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 2964630, + "thread": 8 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 3145113, + "thread": 27 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 3370800, + "thread": 29 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 3482107, + "thread": 24 + } + }, + { + "amount": "225.185302859", + "slot": { + "period": 3724137, + "thread": 22 + } + }, + { + "amount": "225.185302857", + "slot": { + "period": 3944417, + "thread": 31 + } + } + ], + "AU12FgDdWwvPobJnqhis6XGkQ51PNePFgPqHxpxNTLk5hpbqy2BgK": [ + { + "amount": "127.281073696", + "slot": { + "period": 160741, + "thread": 16 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 295528, + "thread": 1 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 352823, + "thread": 2 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 597448, + "thread": 13 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 708338, + "thread": 6 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 948427, + "thread": 18 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1049529, + "thread": 15 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1306298, + "thread": 20 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1455727, + "thread": 2 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1528907, + "thread": 21 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1767816, + "thread": 2 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 1869419, + "thread": 26 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2049828, + "thread": 9 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2235831, + "thread": 19 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2422471, + "thread": 18 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2490626, + "thread": 17 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2743733, + "thread": 20 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 2870685, + "thread": 21 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 3065191, + "thread": 26 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 3212776, + "thread": 1 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 3382768, + "thread": 30 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 3568218, + "thread": 2 + } + }, + { + "amount": "127.281073696", + "slot": { + "period": 3761023, + "thread": 7 + } + }, + { + "amount": "127.281073697", + "slot": { + "period": 3919091, + "thread": 29 + } + } + ], + "AU12FgHj2erw9L66yCSyT4sL9EQ978UmSCmvP4omqk693JyWMxHAM": [ + { + "amount": "617.420040895", + "slot": { + "period": 113346, + "thread": 3 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 232518, + "thread": 7 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 413293, + "thread": 24 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 521980, + "thread": 20 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 721236, + "thread": 13 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 821124, + "thread": 10 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1053718, + "thread": 18 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1178120, + "thread": 12 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1323084, + "thread": 30 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1640528, + "thread": 14 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1776543, + "thread": 7 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 1945238, + "thread": 13 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2015559, + "thread": 6 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2245899, + "thread": 12 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2379221, + "thread": 18 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2584993, + "thread": 17 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2724853, + "thread": 27 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2940639, + "thread": 25 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 2968116, + "thread": 9 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 3157004, + "thread": 15 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 3421502, + "thread": 11 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 3531113, + "thread": 27 + } + }, + { + "amount": "617.420040895", + "slot": { + "period": 3644831, + "thread": 6 + } + }, + { + "amount": "617.420040887", + "slot": { + "period": 3885678, + "thread": 31 + } + } + ], + "AU12FgimGkWY6xhbtmALZHS214bPLHC2kwivB1gKwLRUS3pWbjpkH": [ + { + "amount": "459.818704910", + "slot": { + "period": 154657, + "thread": 4 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 213224, + "thread": 15 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 442953, + "thread": 22 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 548530, + "thread": 2 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 707832, + "thread": 11 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 909101, + "thread": 30 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1130058, + "thread": 21 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1250985, + "thread": 29 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1321674, + "thread": 17 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1495960, + "thread": 12 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1659309, + "thread": 14 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1922794, + "thread": 30 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 1987013, + "thread": 27 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 2206901, + "thread": 16 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 2434632, + "thread": 11 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 2534510, + "thread": 23 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 2695547, + "thread": 17 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 2940240, + "thread": 22 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 3051955, + "thread": 27 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 3192378, + "thread": 29 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 3328163, + "thread": 29 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 3458673, + "thread": 22 + } + }, + { + "amount": "459.818704910", + "slot": { + "period": 3688114, + "thread": 5 + } + }, + { + "amount": "459.818704913", + "slot": { + "period": 3884517, + "thread": 0 + } + } + ], + "AU12FhuAwLbLvPpV96P8wZqewbU4xey4imq1kuL2M4Pbk3pWik8az": [ + { + "amount": "245.290945039", + "slot": { + "period": 64799, + "thread": 7 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 300947, + "thread": 7 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 482057, + "thread": 26 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 626636, + "thread": 11 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 797292, + "thread": 23 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 844069, + "thread": 11 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1044020, + "thread": 15 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1227910, + "thread": 31 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1377610, + "thread": 0 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1612174, + "thread": 15 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1777459, + "thread": 14 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 1940863, + "thread": 14 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2107133, + "thread": 2 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2291609, + "thread": 24 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2364859, + "thread": 19 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2487810, + "thread": 9 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2638029, + "thread": 5 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 2831162, + "thread": 2 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 3074411, + "thread": 31 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 3238938, + "thread": 30 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 3359727, + "thread": 2 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 3563880, + "thread": 13 + } + }, + { + "amount": "245.290945039", + "slot": { + "period": 3636468, + "thread": 3 + } + }, + { + "amount": "245.290945028", + "slot": { + "period": 3922953, + "thread": 6 + } + } + ], + "AU12Fi6DkNSHsZMz3LYB8whbGmZuxJkjUV5t6J2xXNt5VUNHppxpy": [ + { + "amount": "199.073360026", + "slot": { + "period": 162996, + "thread": 9 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 184246, + "thread": 0 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 451751, + "thread": 3 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 594289, + "thread": 26 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 755519, + "thread": 10 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 825522, + "thread": 24 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1134637, + "thread": 16 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1246818, + "thread": 3 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1423295, + "thread": 17 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1625894, + "thread": 3 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1713855, + "thread": 14 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 1952511, + "thread": 19 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2069609, + "thread": 11 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2201743, + "thread": 30 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2371479, + "thread": 15 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2544641, + "thread": 12 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2677674, + "thread": 17 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2844001, + "thread": 29 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 2958780, + "thread": 16 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 3170015, + "thread": 27 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 3360029, + "thread": 20 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 3539990, + "thread": 7 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 3686407, + "thread": 15 + } + }, + { + "amount": "199.073360026", + "slot": { + "period": 3895548, + "thread": 24 + } + } + ], + "AU12FinFqE97tgmrB1VWjbM6pLtdSUeHF92tzVjhzbEUo9NBY8cu5": [ + { + "amount": "146.707118470", + "slot": { + "period": 133478, + "thread": 6 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 263596, + "thread": 19 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 346759, + "thread": 16 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 600126, + "thread": 24 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 763301, + "thread": 20 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 973476, + "thread": 25 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1124561, + "thread": 11 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1303550, + "thread": 16 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1397762, + "thread": 17 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1575809, + "thread": 21 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1653805, + "thread": 26 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1825636, + "thread": 9 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 1982520, + "thread": 26 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 2192185, + "thread": 12 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 2377950, + "thread": 26 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 2530673, + "thread": 31 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 2724059, + "thread": 29 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 2798715, + "thread": 16 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 3029607, + "thread": 2 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 3222295, + "thread": 25 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 3374285, + "thread": 21 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 3552400, + "thread": 17 + } + }, + { + "amount": "146.707118470", + "slot": { + "period": 3708543, + "thread": 25 + } + }, + { + "amount": "146.707118460", + "slot": { + "period": 3791331, + "thread": 24 + } + } + ], + "AU12Fk4mmun6YHhyaFczQgogmtKf6XmE41mt88GZC9KVUarXuSHaN": [ + { + "amount": "177.753174332", + "slot": { + "period": 164074, + "thread": 1 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 286852, + "thread": 31 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 445367, + "thread": 30 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 567985, + "thread": 12 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 700711, + "thread": 21 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 944168, + "thread": 22 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1134110, + "thread": 20 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1291454, + "thread": 6 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1362617, + "thread": 4 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1575039, + "thread": 0 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1769383, + "thread": 21 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 1930249, + "thread": 21 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2129793, + "thread": 22 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2168305, + "thread": 8 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2343350, + "thread": 30 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2600282, + "thread": 15 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2786172, + "thread": 12 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2929513, + "thread": 6 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 2991372, + "thread": 16 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 3187092, + "thread": 28 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 3443808, + "thread": 31 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 3468556, + "thread": 10 + } + }, + { + "amount": "177.753174332", + "slot": { + "period": 3702539, + "thread": 12 + } + }, + { + "amount": "177.753174320", + "slot": { + "period": 3829251, + "thread": 11 + } + } + ], + "AU12FkRYtKAhGUDBEJ4CZw3iGDkkc4ApiaJPUi1fFv52Uispb47af": [ + { + "amount": "194.298184562", + "slot": { + "period": 84486, + "thread": 4 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 295414, + "thread": 21 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 393285, + "thread": 26 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 561537, + "thread": 8 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 663824, + "thread": 26 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 912143, + "thread": 20 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1147473, + "thread": 14 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1288352, + "thread": 1 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1477516, + "thread": 12 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1532314, + "thread": 30 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1693097, + "thread": 17 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 1910480, + "thread": 1 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2113510, + "thread": 14 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2291008, + "thread": 18 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2425197, + "thread": 26 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2544666, + "thread": 6 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2738679, + "thread": 3 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 2946658, + "thread": 15 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 3057044, + "thread": 23 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 3282592, + "thread": 24 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 3330014, + "thread": 26 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 3580230, + "thread": 2 + } + }, + { + "amount": "194.298184562", + "slot": { + "period": 3698768, + "thread": 1 + } + }, + { + "amount": "194.298184568", + "slot": { + "period": 3820078, + "thread": 8 + } + } + ], + "AU12Fkn2WmMpWH3vYfUAR93XGfuGPNcFQ65q7JEwBj5TiuGH36QiK": [ + { + "amount": "130.412433939", + "slot": { + "period": 81547, + "thread": 25 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 243334, + "thread": 10 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 333692, + "thread": 31 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 529682, + "thread": 15 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 667577, + "thread": 6 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 874984, + "thread": 30 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1069634, + "thread": 14 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1302323, + "thread": 2 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1406555, + "thread": 7 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1597290, + "thread": 24 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1724444, + "thread": 28 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 1965735, + "thread": 19 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2061754, + "thread": 27 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2276413, + "thread": 19 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2315125, + "thread": 14 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2559377, + "thread": 19 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2759529, + "thread": 30 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 2834869, + "thread": 13 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 3069064, + "thread": 25 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 3195445, + "thread": 5 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 3379942, + "thread": 4 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 3617154, + "thread": 13 + } + }, + { + "amount": "130.412433939", + "slot": { + "period": 3624216, + "thread": 15 + } + }, + { + "amount": "130.412433941", + "slot": { + "period": 3945086, + "thread": 8 + } + } + ], + "AU12Fm4KeJmapbM9VzY9u7cgQLgv9KXKMHbq87zctFbKECkqe4s5U": [ + { + "amount": "69.032236823", + "slot": { + "period": 45821, + "thread": 25 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 243728, + "thread": 9 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 427096, + "thread": 2 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 503291, + "thread": 17 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 814054, + "thread": 30 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 917494, + "thread": 27 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1007658, + "thread": 31 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1262774, + "thread": 7 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1397704, + "thread": 10 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1601736, + "thread": 22 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1679687, + "thread": 7 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 1881452, + "thread": 16 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2114176, + "thread": 6 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2197979, + "thread": 17 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2352453, + "thread": 27 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2607643, + "thread": 12 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2654490, + "thread": 9 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2904086, + "thread": 14 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 2979126, + "thread": 20 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 3194524, + "thread": 24 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 3380196, + "thread": 1 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 3508047, + "thread": 5 + } + }, + { + "amount": "69.032236823", + "slot": { + "period": 3687471, + "thread": 26 + } + }, + { + "amount": "69.032236817", + "slot": { + "period": 3815861, + "thread": 15 + } + } + ], + "AU12Fmmm1iyL9skPe9AjYfUNzvKHycofD1MFJiEdxeEcZdzj16H4G": [ + { + "amount": "62.231303998", + "slot": { + "period": 137446, + "thread": 2 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 240854, + "thread": 31 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 452948, + "thread": 21 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 504338, + "thread": 23 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 709893, + "thread": 11 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 937542, + "thread": 13 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 991719, + "thread": 17 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1286412, + "thread": 7 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1421632, + "thread": 15 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1505451, + "thread": 12 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1670990, + "thread": 7 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1976025, + "thread": 3 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 1998036, + "thread": 27 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 2244503, + "thread": 25 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 2358437, + "thread": 12 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 2537700, + "thread": 16 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 2636274, + "thread": 0 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 2812994, + "thread": 8 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 3065563, + "thread": 12 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 3255614, + "thread": 4 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 3416186, + "thread": 30 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 3557171, + "thread": 22 + } + }, + { + "amount": "62.231303998", + "slot": { + "period": 3745872, + "thread": 19 + } + }, + { + "amount": "62.231304005", + "slot": { + "period": 3824527, + "thread": 10 + } + } + ], + "AU12FoQBSX9HiLSMvujcjUjvsqYUL3NFjqdwZQVSmCn7GTuWAM1SP": [ + { + "amount": "136.733981542", + "slot": { + "period": 105612, + "thread": 26 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 307751, + "thread": 4 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 334172, + "thread": 15 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 627770, + "thread": 1 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 674145, + "thread": 25 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 973308, + "thread": 13 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1046899, + "thread": 24 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1209688, + "thread": 28 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1335632, + "thread": 20 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1625375, + "thread": 22 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1670396, + "thread": 30 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 1833755, + "thread": 27 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2053412, + "thread": 26 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2283981, + "thread": 10 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2360770, + "thread": 7 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2492052, + "thread": 26 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2713056, + "thread": 21 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 2829521, + "thread": 6 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 3001465, + "thread": 5 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 3156061, + "thread": 3 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 3379935, + "thread": 3 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 3489625, + "thread": 23 + } + }, + { + "amount": "136.733981542", + "slot": { + "period": 3634589, + "thread": 22 + } + }, + { + "amount": "136.733981538", + "slot": { + "period": 3898003, + "thread": 11 + } + } + ], + "AU12FqDQxBiaCnRmGbVzN9v2BgVgBcgkbMWdxJX7n8iPntnBkKQjW": [ + { + "amount": "369.441656868", + "slot": { + "period": 20711, + "thread": 23 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 288387, + "thread": 6 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 339184, + "thread": 15 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 627229, + "thread": 31 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 815447, + "thread": 30 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 962619, + "thread": 29 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1094424, + "thread": 18 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1228040, + "thread": 19 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1402495, + "thread": 8 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1630427, + "thread": 7 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1664938, + "thread": 2 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 1881286, + "thread": 31 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2040268, + "thread": 4 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2222489, + "thread": 30 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2445339, + "thread": 25 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2618245, + "thread": 23 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2764070, + "thread": 7 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2792116, + "thread": 8 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 2987905, + "thread": 17 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 3254946, + "thread": 1 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 3320908, + "thread": 10 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 3495199, + "thread": 9 + } + }, + { + "amount": "369.441656868", + "slot": { + "period": 3734563, + "thread": 14 + } + }, + { + "amount": "369.441656858", + "slot": { + "period": 3858911, + "thread": 8 + } + } + ], + "AU12Fqsn27WsZp4KzmL2QEUzZyJATMS7L5LmP3kHgFTWBNrZUVCwy": [ + { + "amount": "233.002587448", + "slot": { + "period": 49048, + "thread": 18 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 206772, + "thread": 24 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 441110, + "thread": 12 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 581004, + "thread": 10 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 670261, + "thread": 17 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 846372, + "thread": 14 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1124893, + "thread": 9 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1312850, + "thread": 10 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1317661, + "thread": 17 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1617212, + "thread": 13 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1766342, + "thread": 28 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 1834697, + "thread": 3 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2080806, + "thread": 22 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2280551, + "thread": 0 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2437860, + "thread": 8 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2538937, + "thread": 21 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2632242, + "thread": 13 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 2883974, + "thread": 7 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 3062389, + "thread": 2 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 3233547, + "thread": 25 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 3333135, + "thread": 19 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 3567262, + "thread": 30 + } + }, + { + "amount": "233.002587448", + "slot": { + "period": 3745873, + "thread": 30 + } + }, + { + "amount": "233.002587442", + "slot": { + "period": 3866594, + "thread": 3 + } + } + ], + "AU12Fr4iHPZ3zQ23H7yaqgHXnGR4Lhpe4Yy1jkpBgfoPa9ZmgDC9k": [ + { + "amount": "256.405692157", + "slot": { + "period": 127291, + "thread": 21 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 275545, + "thread": 26 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 477392, + "thread": 0 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 599765, + "thread": 24 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 682940, + "thread": 28 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 837210, + "thread": 13 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1048785, + "thread": 20 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1206623, + "thread": 8 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1476363, + "thread": 11 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1538373, + "thread": 7 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1729140, + "thread": 14 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 1974828, + "thread": 16 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2127094, + "thread": 28 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2208863, + "thread": 18 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2310001, + "thread": 26 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2478693, + "thread": 28 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2755196, + "thread": 12 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 2892437, + "thread": 9 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 3054698, + "thread": 24 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 3213138, + "thread": 16 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 3335835, + "thread": 0 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 3556381, + "thread": 6 + } + }, + { + "amount": "256.405692157", + "slot": { + "period": 3682397, + "thread": 23 + } + }, + { + "amount": "256.405692151", + "slot": { + "period": 3939867, + "thread": 22 + } + } + ], + "AU12FranKXghrYcGsBZqYZsfZwosK9akKFa5jciahHAoYBrGWdRnx": [ + { + "amount": "367.276634832", + "slot": { + "period": 134415, + "thread": 8 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 238703, + "thread": 22 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 395375, + "thread": 16 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 650412, + "thread": 24 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 694755, + "thread": 1 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 874598, + "thread": 0 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1138696, + "thread": 7 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1301808, + "thread": 28 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1377016, + "thread": 8 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1641067, + "thread": 8 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1663782, + "thread": 29 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 1867142, + "thread": 24 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2024798, + "thread": 2 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2180325, + "thread": 14 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2296980, + "thread": 17 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2486080, + "thread": 9 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2706288, + "thread": 2 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 2823085, + "thread": 29 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 3047922, + "thread": 3 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 3288464, + "thread": 17 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 3388735, + "thread": 30 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 3505275, + "thread": 21 + } + }, + { + "amount": "367.276634832", + "slot": { + "period": 3679128, + "thread": 0 + } + }, + { + "amount": "367.276634827", + "slot": { + "period": 3896857, + "thread": 29 + } + } + ], + "AU12FsmyQqhXXPTLoVAA8KEyv7D55E8Gez9kdZjoczrPQ6YVB8TWb": [ + { + "amount": "169.252335544", + "slot": { + "period": 97437, + "thread": 31 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 278474, + "thread": 29 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 361590, + "thread": 3 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 509780, + "thread": 25 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 720668, + "thread": 20 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 952100, + "thread": 8 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1034852, + "thread": 14 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1212861, + "thread": 23 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1444700, + "thread": 12 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1577821, + "thread": 3 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1732695, + "thread": 9 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 1951216, + "thread": 24 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2088937, + "thread": 24 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2270157, + "thread": 1 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2414627, + "thread": 9 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2560263, + "thread": 26 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2785232, + "thread": 12 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 2949466, + "thread": 2 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 3058053, + "thread": 7 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 3198575, + "thread": 21 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 3391421, + "thread": 18 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 3456580, + "thread": 7 + } + }, + { + "amount": "169.252335544", + "slot": { + "period": 3618424, + "thread": 4 + } + }, + { + "amount": "169.252335539", + "slot": { + "period": 3806683, + "thread": 19 + } + } + ], + "AU12Ft31LbJUBi6C5rWeFz7RBVnMuQpfof11U9hyocMMPDzQLDDjP": [ + { + "amount": "168.745239303", + "slot": { + "period": 124640, + "thread": 6 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 301883, + "thread": 13 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 445939, + "thread": 29 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 585856, + "thread": 21 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 693232, + "thread": 22 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 949580, + "thread": 20 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1078846, + "thread": 13 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1177378, + "thread": 16 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1376038, + "thread": 8 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1497831, + "thread": 4 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1788019, + "thread": 21 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 1810378, + "thread": 12 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2046520, + "thread": 20 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2261289, + "thread": 7 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2455024, + "thread": 4 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2616102, + "thread": 8 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2769908, + "thread": 14 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 2873762, + "thread": 12 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 3021622, + "thread": 31 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 3168415, + "thread": 17 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 3393006, + "thread": 23 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 3576296, + "thread": 0 + } + }, + { + "amount": "168.745239303", + "slot": { + "period": 3634757, + "thread": 27 + } + }, + { + "amount": "168.745239313", + "slot": { + "period": 3808523, + "thread": 6 + } + } + ], + "AU12FuDZgUqh1cPKTiNKHEQLwQY2mWNj4aCNM7CJeKJpZgRUoCKhX": [ + { + "amount": "290.136207604", + "slot": { + "period": 117733, + "thread": 15 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 254872, + "thread": 25 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 330468, + "thread": 24 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 560068, + "thread": 28 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 710317, + "thread": 6 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 870328, + "thread": 5 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1007914, + "thread": 19 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1208417, + "thread": 3 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1324783, + "thread": 18 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1498446, + "thread": 25 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1709464, + "thread": 25 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 1860409, + "thread": 11 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2119127, + "thread": 3 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2174328, + "thread": 26 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2403782, + "thread": 18 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2590250, + "thread": 25 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2746786, + "thread": 10 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 2927888, + "thread": 20 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 3119244, + "thread": 3 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 3280313, + "thread": 31 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 3425356, + "thread": 4 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 3500400, + "thread": 1 + } + }, + { + "amount": "290.136207604", + "slot": { + "period": 3712511, + "thread": 2 + } + }, + { + "amount": "290.136207592", + "slot": { + "period": 3920385, + "thread": 10 + } + } + ], + "AU12FuYKRAMyZ1WT4iz2PNuNePjdiVXHnyZ1YY1UucfcKMBBUcBRc": [ + { + "amount": "223.218702234", + "slot": { + "period": 31560, + "thread": 28 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 228107, + "thread": 23 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 489263, + "thread": 15 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 652404, + "thread": 11 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 779010, + "thread": 17 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 938510, + "thread": 6 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1011146, + "thread": 20 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1218689, + "thread": 15 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1366152, + "thread": 20 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1592824, + "thread": 17 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1759725, + "thread": 30 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 1888586, + "thread": 24 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2120407, + "thread": 7 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2192811, + "thread": 12 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2366972, + "thread": 23 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2608722, + "thread": 27 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2629260, + "thread": 23 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 2880016, + "thread": 7 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 3015698, + "thread": 0 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 3239731, + "thread": 0 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 3351196, + "thread": 12 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 3565920, + "thread": 15 + } + }, + { + "amount": "223.218702234", + "slot": { + "period": 3723152, + "thread": 12 + } + }, + { + "amount": "223.218702239", + "slot": { + "period": 3938466, + "thread": 3 + } + } + ], + "AU12FvW6bdSeB4tgsD9kdwKfmxw3Zap4TEzpKDdfWDeCBSwKzrai": [ + { + "amount": "267.163657125", + "slot": { + "period": 62531, + "thread": 21 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 180188, + "thread": 24 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 444321, + "thread": 23 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 623827, + "thread": 30 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 799916, + "thread": 0 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 866263, + "thread": 23 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 989902, + "thread": 9 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 1210973, + "thread": 31 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 1453812, + "thread": 31 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 1612927, + "thread": 7 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 1727586, + "thread": 21 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 1863703, + "thread": 17 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2113007, + "thread": 23 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2237182, + "thread": 25 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2445325, + "thread": 10 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2491657, + "thread": 5 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2651417, + "thread": 24 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 2875999, + "thread": 4 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 3042077, + "thread": 29 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 3280717, + "thread": 17 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 3298298, + "thread": 19 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 3557031, + "thread": 24 + } + }, + { + "amount": "267.163657125", + "slot": { + "period": 3686476, + "thread": 6 + } + }, + { + "amount": "267.163657114", + "slot": { + "period": 3938397, + "thread": 28 + } + } + ], + "AU12FveFSDbstW6pTZFwP1C9UtZo45ouFcKe5iGBgutBS2yhePHEN": [ + { + "amount": "176.504632295", + "slot": { + "period": 87002, + "thread": 22 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 308920, + "thread": 14 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 383682, + "thread": 4 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 635324, + "thread": 26 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 794912, + "thread": 13 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 857970, + "thread": 11 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1023818, + "thread": 7 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1273895, + "thread": 14 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1387166, + "thread": 25 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1596697, + "thread": 13 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1680555, + "thread": 8 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 1857126, + "thread": 9 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2022500, + "thread": 2 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2262660, + "thread": 15 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2316387, + "thread": 1 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2588060, + "thread": 4 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2630487, + "thread": 14 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 2931130, + "thread": 1 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 3090723, + "thread": 18 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 3235021, + "thread": 22 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 3425789, + "thread": 5 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 3580400, + "thread": 1 + } + }, + { + "amount": "176.504632295", + "slot": { + "period": 3660476, + "thread": 9 + } + }, + { + "amount": "176.504632303", + "slot": { + "period": 3891781, + "thread": 22 + } + } + ], + "AU12FxnfvRXMH6njZvY9uYFfm2tht8es8xQNk6WekNrNbjMBqBfY6": [ + { + "amount": "242.081292331", + "slot": { + "period": 77901, + "thread": 24 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 203075, + "thread": 11 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 489002, + "thread": 6 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 557668, + "thread": 23 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 721053, + "thread": 30 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 914036, + "thread": 14 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1130389, + "thread": 5 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1171580, + "thread": 20 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1338319, + "thread": 29 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1507963, + "thread": 30 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1808647, + "thread": 8 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1939268, + "thread": 30 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 1990452, + "thread": 7 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 2205342, + "thread": 17 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 2442670, + "thread": 4 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 2589273, + "thread": 10 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 2686641, + "thread": 12 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 2917088, + "thread": 12 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 3084450, + "thread": 4 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 3211524, + "thread": 14 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 3423983, + "thread": 1 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 3546129, + "thread": 23 + } + }, + { + "amount": "242.081292331", + "slot": { + "period": 3755691, + "thread": 11 + } + }, + { + "amount": "242.081292330", + "slot": { + "period": 3823755, + "thread": 11 + } + } + ], + "AU12FyBUUJLjgxAGRJKaRzJMbj5hZDmAxqTRsgtTkmEUvA4U29t3i": [ + { + "amount": "135.569545665", + "slot": { + "period": 117077, + "thread": 27 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 169556, + "thread": 11 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 468102, + "thread": 6 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 554342, + "thread": 10 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 711527, + "thread": 14 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 915364, + "thread": 8 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1148944, + "thread": 9 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1217589, + "thread": 22 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1377758, + "thread": 23 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1591605, + "thread": 19 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1741213, + "thread": 3 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1860064, + "thread": 26 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 1992370, + "thread": 4 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 2224958, + "thread": 28 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 2369493, + "thread": 14 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 2612323, + "thread": 27 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 2650048, + "thread": 12 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 2883550, + "thread": 25 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3059081, + "thread": 14 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3155080, + "thread": 1 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3396171, + "thread": 17 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3477467, + "thread": 24 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3757036, + "thread": 26 + } + }, + { + "amount": "135.569545665", + "slot": { + "period": 3916915, + "thread": 7 + } + } + ], + "AU12FyCXhb6zzu5GrvkzkrJFNgFH1KNFfFbn3MzV7sMkAmQ9TGmx8": [ + { + "amount": "263.349788427", + "slot": { + "period": 46087, + "thread": 28 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 299596, + "thread": 10 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 462913, + "thread": 9 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 645855, + "thread": 27 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 816214, + "thread": 30 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 866979, + "thread": 20 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1077620, + "thread": 14 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1304608, + "thread": 24 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1356342, + "thread": 16 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1561850, + "thread": 16 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1742455, + "thread": 17 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 1822641, + "thread": 11 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2132596, + "thread": 1 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2174732, + "thread": 6 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2344358, + "thread": 3 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2472460, + "thread": 30 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2754814, + "thread": 2 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 2930061, + "thread": 8 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 3073707, + "thread": 16 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 3193177, + "thread": 2 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 3364969, + "thread": 13 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 3453106, + "thread": 0 + } + }, + { + "amount": "263.349788427", + "slot": { + "period": 3661639, + "thread": 16 + } + }, + { + "amount": "263.349788420", + "slot": { + "period": 3816102, + "thread": 16 + } + } + ], + "AU12FynbSRqBrWeEbcoWCL3eXtP4H54E1z65iMhVfJxCeA4tZF46f": [ + { + "amount": "327.649200999", + "slot": { + "period": 85259, + "thread": 25 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 239404, + "thread": 7 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 324505, + "thread": 7 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 492169, + "thread": 9 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 778373, + "thread": 0 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 869084, + "thread": 18 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1010021, + "thread": 21 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1276942, + "thread": 30 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1417751, + "thread": 11 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1562260, + "thread": 31 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1762828, + "thread": 20 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 1930087, + "thread": 0 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2036518, + "thread": 28 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2288886, + "thread": 9 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2371551, + "thread": 18 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2527346, + "thread": 29 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2788895, + "thread": 27 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2821396, + "thread": 13 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 2982246, + "thread": 26 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 3246885, + "thread": 18 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 3423691, + "thread": 2 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 3567664, + "thread": 19 + } + }, + { + "amount": "327.649200999", + "slot": { + "period": 3691557, + "thread": 17 + } + }, + { + "amount": "327.649201002", + "slot": { + "period": 3811187, + "thread": 8 + } + } + ], + "AU12Fzmk4Aeqk2W7yaDGDy2u4DR1w5eYZZtBnvXSTNLZgM3R6ycbd": [ + { + "amount": "115.858119328", + "slot": { + "period": 69333, + "thread": 10 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 198294, + "thread": 12 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 328310, + "thread": 30 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 617146, + "thread": 21 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 683750, + "thread": 7 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 968892, + "thread": 5 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1024059, + "thread": 20 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1190230, + "thread": 9 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1411194, + "thread": 9 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1494821, + "thread": 29 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1742627, + "thread": 17 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 1965704, + "thread": 21 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2043269, + "thread": 0 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2276360, + "thread": 24 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2326280, + "thread": 28 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2485694, + "thread": 31 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2720826, + "thread": 25 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 2900878, + "thread": 3 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 3113812, + "thread": 13 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 3224193, + "thread": 15 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 3337051, + "thread": 26 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 3470015, + "thread": 14 + } + }, + { + "amount": "115.858119328", + "slot": { + "period": 3625754, + "thread": 6 + } + }, + { + "amount": "115.858119325", + "slot": { + "period": 3803603, + "thread": 24 + } + } + ], + "AU12G1QKmauoQ4udmB4exYvYRNeuvDrvytFt5EdckLBc27qAAo7R3": [ + { + "amount": "135.161243673", + "slot": { + "period": 112982, + "thread": 30 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 170357, + "thread": 18 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 414758, + "thread": 11 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 560632, + "thread": 21 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 790446, + "thread": 18 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 862361, + "thread": 14 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1029565, + "thread": 0 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1166447, + "thread": 23 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1366019, + "thread": 15 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1483453, + "thread": 12 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1780666, + "thread": 29 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1959352, + "thread": 8 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 1979598, + "thread": 26 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 2273261, + "thread": 16 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 2311865, + "thread": 8 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 2477545, + "thread": 5 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 2761231, + "thread": 24 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 2901067, + "thread": 2 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 3085449, + "thread": 3 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 3176493, + "thread": 28 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 3318373, + "thread": 5 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 3478337, + "thread": 29 + } + }, + { + "amount": "135.161243673", + "slot": { + "period": 3760669, + "thread": 30 + } + }, + { + "amount": "135.161243665", + "slot": { + "period": 3934705, + "thread": 7 + } + } + ], + "AU12G1gmLnH6iz9EJsBQHS6XhmXYfovz5NL1aPg2ao78T3zttHVjY": [ + { + "amount": "127.518127490", + "slot": { + "period": 105305, + "thread": 20 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 180208, + "thread": 4 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 473951, + "thread": 3 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 616924, + "thread": 5 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 713937, + "thread": 21 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 953877, + "thread": 24 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1054172, + "thread": 5 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1197936, + "thread": 22 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1417971, + "thread": 1 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1549145, + "thread": 27 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1792826, + "thread": 7 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 1901866, + "thread": 13 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2012147, + "thread": 30 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2260643, + "thread": 26 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2393113, + "thread": 25 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2572748, + "thread": 6 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2741216, + "thread": 23 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2793878, + "thread": 24 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 2996855, + "thread": 31 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 3221526, + "thread": 16 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 3301980, + "thread": 23 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 3579699, + "thread": 14 + } + }, + { + "amount": "127.518127490", + "slot": { + "period": 3690327, + "thread": 27 + } + }, + { + "amount": "127.518127496", + "slot": { + "period": 3792698, + "thread": 17 + } + } + ], + "AU12G2Did729Z1Ph3u22sx3XHm27nQFDbe7nVEHbzMTjSaFVWRh14": [ + { + "amount": "95.707446229", + "slot": { + "period": 129306, + "thread": 3 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 197950, + "thread": 22 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 372766, + "thread": 22 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 650965, + "thread": 7 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 709360, + "thread": 5 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 910062, + "thread": 31 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1145908, + "thread": 22 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1165262, + "thread": 23 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1443595, + "thread": 2 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1571678, + "thread": 22 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1731104, + "thread": 25 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 1947855, + "thread": 4 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2084626, + "thread": 29 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2217088, + "thread": 26 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2436733, + "thread": 12 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2544763, + "thread": 12 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2687915, + "thread": 22 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2840092, + "thread": 2 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 2959180, + "thread": 24 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 3265617, + "thread": 17 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 3396257, + "thread": 17 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 3599537, + "thread": 15 + } + }, + { + "amount": "95.707446229", + "slot": { + "period": 3765343, + "thread": 9 + } + }, + { + "amount": "95.707446232", + "slot": { + "period": 3785534, + "thread": 11 + } + } + ], + "AU12G3CxoXLKJquBxPfADGY5mQzpWDWV9kgyyaiaxWHL4iZADreqU": [ + { + "amount": "53.513437026", + "slot": { + "period": 43883, + "thread": 12 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 200053, + "thread": 24 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 378635, + "thread": 11 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 540585, + "thread": 6 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 754967, + "thread": 13 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 846411, + "thread": 9 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1115337, + "thread": 13 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1282042, + "thread": 1 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1404661, + "thread": 28 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1536979, + "thread": 18 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1702774, + "thread": 23 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 1937105, + "thread": 27 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2005982, + "thread": 18 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2227013, + "thread": 18 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2308031, + "thread": 13 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2478718, + "thread": 22 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2787214, + "thread": 24 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 2804856, + "thread": 21 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3061204, + "thread": 29 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3129091, + "thread": 11 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3415557, + "thread": 21 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3557086, + "thread": 13 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3723260, + "thread": 4 + } + }, + { + "amount": "53.513437026", + "slot": { + "period": 3801732, + "thread": 5 + } + } + ], + "AU12G43iJ8xVsGHvvywbMAnMsKCpi5zThnpSXLpYUmESsiyS6wEsi": [ + { + "amount": "492.096855747", + "slot": { + "period": 130005, + "thread": 31 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 280579, + "thread": 23 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 479746, + "thread": 15 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 556785, + "thread": 25 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 732652, + "thread": 12 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 843927, + "thread": 4 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1000056, + "thread": 6 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1315710, + "thread": 4 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1358736, + "thread": 1 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1579766, + "thread": 26 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1716585, + "thread": 28 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 1822198, + "thread": 3 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2074446, + "thread": 30 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2285181, + "thread": 28 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2361162, + "thread": 28 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2520026, + "thread": 22 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2636728, + "thread": 16 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 2859056, + "thread": 7 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 3050559, + "thread": 3 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 3168278, + "thread": 29 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 3349278, + "thread": 20 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 3537873, + "thread": 10 + } + }, + { + "amount": "492.096855747", + "slot": { + "period": 3685030, + "thread": 28 + } + }, + { + "amount": "492.096855744", + "slot": { + "period": 3818276, + "thread": 26 + } + } + ], + "AU12G4Z9L8moN3CBT3Wo3edgbT2monpBBMw1oXR1iSQ3mSsnU2H6r": [ + { + "amount": "138.149944839", + "slot": { + "period": 63691, + "thread": 28 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 234027, + "thread": 14 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 345992, + "thread": 3 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 592758, + "thread": 19 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 783555, + "thread": 15 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 966018, + "thread": 8 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1105612, + "thread": 29 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1206563, + "thread": 1 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1370814, + "thread": 19 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1534602, + "thread": 24 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1731286, + "thread": 13 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 1889819, + "thread": 13 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2005702, + "thread": 11 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2266732, + "thread": 4 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2360549, + "thread": 27 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2484896, + "thread": 13 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2731008, + "thread": 10 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 2900030, + "thread": 3 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 3041773, + "thread": 20 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 3233659, + "thread": 26 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 3448276, + "thread": 12 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 3514862, + "thread": 14 + } + }, + { + "amount": "138.149944839", + "slot": { + "period": 3627349, + "thread": 9 + } + }, + { + "amount": "138.149944847", + "slot": { + "period": 3877249, + "thread": 8 + } + } + ], + "AU12G5Q7EkrXKwqBPoag6r7tvXFBGjEwzu4cMr8GDjbpCaCAJRw5f": [ + { + "amount": "141.885022200", + "slot": { + "period": 144210, + "thread": 19 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 169378, + "thread": 17 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 425253, + "thread": 21 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 557884, + "thread": 13 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 718166, + "thread": 16 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 866002, + "thread": 10 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1107984, + "thread": 13 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1224446, + "thread": 26 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1318742, + "thread": 8 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1601845, + "thread": 31 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1765364, + "thread": 4 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 1842581, + "thread": 29 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2142531, + "thread": 18 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2196675, + "thread": 27 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2324257, + "thread": 5 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2611776, + "thread": 1 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2767002, + "thread": 28 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 2947620, + "thread": 15 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 3014567, + "thread": 21 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 3152145, + "thread": 19 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 3438554, + "thread": 18 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 3484837, + "thread": 7 + } + }, + { + "amount": "141.885022200", + "slot": { + "period": 3702377, + "thread": 27 + } + }, + { + "amount": "141.885022205", + "slot": { + "period": 3797502, + "thread": 1 + } + } + ], + "AU12G6ZUeHDzZJmYhPnMvVLoL82ZV62jQWC6gVRX9gAZHFoPfT7B2": [ + { + "amount": "198.873987343", + "slot": { + "period": 36336, + "thread": 23 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 272864, + "thread": 12 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 467877, + "thread": 30 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 589128, + "thread": 0 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 680703, + "thread": 13 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 913481, + "thread": 15 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1013576, + "thread": 11 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1279542, + "thread": 0 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1364958, + "thread": 18 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1637708, + "thread": 14 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1713238, + "thread": 8 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 1835667, + "thread": 17 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2105733, + "thread": 21 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2232934, + "thread": 11 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2405258, + "thread": 17 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2532251, + "thread": 23 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2635422, + "thread": 17 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2821608, + "thread": 30 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 2958404, + "thread": 28 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 3131762, + "thread": 8 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 3432128, + "thread": 19 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 3464526, + "thread": 10 + } + }, + { + "amount": "198.873987343", + "slot": { + "period": 3658856, + "thread": 19 + } + }, + { + "amount": "198.873987344", + "slot": { + "period": 3852292, + "thread": 4 + } + } + ], + "AU12G6bV6KKrvtXV183SiQeZAavkC1H8uzKSk7Uqr4LCoRkCJGKbW": [ + { + "amount": "56.436536960", + "slot": { + "period": 40972, + "thread": 23 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 205131, + "thread": 12 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 337114, + "thread": 26 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 536989, + "thread": 0 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 805699, + "thread": 21 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 862694, + "thread": 3 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1098074, + "thread": 1 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1238568, + "thread": 30 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1471809, + "thread": 17 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1530996, + "thread": 16 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1686668, + "thread": 4 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 1886933, + "thread": 5 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2104245, + "thread": 27 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2262234, + "thread": 11 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2423370, + "thread": 17 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2574727, + "thread": 30 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2757099, + "thread": 6 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 2865387, + "thread": 27 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 3114414, + "thread": 26 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 3204584, + "thread": 29 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 3427208, + "thread": 5 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 3495304, + "thread": 10 + } + }, + { + "amount": "56.436536960", + "slot": { + "period": 3675158, + "thread": 21 + } + }, + { + "amount": "56.436536968", + "slot": { + "period": 3847057, + "thread": 2 + } + } + ], + "AU12G94x1J2rBKJrCwHucrt6SPVuRUd1MBkVmL4QNcWr7tQSaeBQo": [ + { + "amount": "135.397823969", + "slot": { + "period": 84326, + "thread": 16 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 236466, + "thread": 9 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 374697, + "thread": 31 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 647495, + "thread": 21 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 776300, + "thread": 27 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 878713, + "thread": 15 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1071598, + "thread": 29 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1291487, + "thread": 30 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1364747, + "thread": 2 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1526735, + "thread": 14 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1753585, + "thread": 29 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 1947756, + "thread": 7 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2069639, + "thread": 31 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2215774, + "thread": 15 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2461976, + "thread": 12 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2542364, + "thread": 26 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2709454, + "thread": 2 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 2826825, + "thread": 24 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 3110517, + "thread": 19 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 3130923, + "thread": 14 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 3444375, + "thread": 11 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 3600445, + "thread": 26 + } + }, + { + "amount": "135.397823969", + "slot": { + "period": 3658332, + "thread": 21 + } + }, + { + "amount": "135.397823962", + "slot": { + "period": 3808242, + "thread": 7 + } + } + ], + "AU12G9gCno59qAXhh2AFRwaDZAxLzookhPbcNuKFHGt62cVVcpUKa": [ + { + "amount": "152.348877212", + "slot": { + "period": 23356, + "thread": 30 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 312601, + "thread": 8 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 412394, + "thread": 21 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 518064, + "thread": 18 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 721771, + "thread": 1 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 840743, + "thread": 27 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1034871, + "thread": 3 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1293451, + "thread": 14 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1344622, + "thread": 18 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1608012, + "thread": 12 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1708798, + "thread": 5 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 1865999, + "thread": 30 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2108980, + "thread": 8 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2284067, + "thread": 31 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2438618, + "thread": 22 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2582973, + "thread": 4 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2756496, + "thread": 2 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 2838859, + "thread": 4 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 3063188, + "thread": 4 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 3177727, + "thread": 31 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 3424580, + "thread": 9 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 3461554, + "thread": 21 + } + }, + { + "amount": "152.348877212", + "slot": { + "period": 3657887, + "thread": 27 + } + }, + { + "amount": "152.348877203", + "slot": { + "period": 3876591, + "thread": 6 + } + } + ], + "AU12GA8VjgF4esVpaGLDpjb8wZErzPBXaDHYk4tW4stvbYeSi6R9N": [ + { + "amount": "69.977236723", + "slot": { + "period": 112881, + "thread": 22 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 194470, + "thread": 18 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 423585, + "thread": 1 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 568482, + "thread": 15 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 797078, + "thread": 14 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 955089, + "thread": 19 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1150123, + "thread": 0 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1153761, + "thread": 4 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1464506, + "thread": 22 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1554269, + "thread": 30 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1739645, + "thread": 4 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1931458, + "thread": 1 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 1987817, + "thread": 2 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 2185247, + "thread": 22 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 2396538, + "thread": 31 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 2599731, + "thread": 1 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 2697612, + "thread": 8 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 2834881, + "thread": 25 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 3109278, + "thread": 20 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 3225727, + "thread": 14 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 3388269, + "thread": 10 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 3610857, + "thread": 6 + } + }, + { + "amount": "69.977236723", + "slot": { + "period": 3713456, + "thread": 1 + } + }, + { + "amount": "69.977236729", + "slot": { + "period": 3927232, + "thread": 19 + } + } + ], + "AU12GAJZYb874w8UfHgiWViNjhbVNWtwrs2gE3p55DSNFJmRSf3Fn": [ + { + "amount": "131.058096925", + "slot": { + "period": 149744, + "thread": 23 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 191017, + "thread": 11 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 347810, + "thread": 1 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 627846, + "thread": 29 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 659482, + "thread": 1 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 899301, + "thread": 27 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 988678, + "thread": 23 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 1160655, + "thread": 5 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 1394318, + "thread": 0 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 1526755, + "thread": 19 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 1723879, + "thread": 4 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 1851080, + "thread": 26 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2032928, + "thread": 21 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2244948, + "thread": 8 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2429835, + "thread": 16 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2602954, + "thread": 14 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2646418, + "thread": 4 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 2856701, + "thread": 18 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 3061775, + "thread": 20 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 3215204, + "thread": 28 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 3363411, + "thread": 6 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 3599401, + "thread": 29 + } + }, + { + "amount": "131.058096925", + "slot": { + "period": 3660716, + "thread": 23 + } + }, + { + "amount": "131.058096916", + "slot": { + "period": 3833431, + "thread": 10 + } + } + ], + "AU12GAT8VrJhbmjHjvgPVK6vPT1LFNan9jBPgMyFZPyJCN5uQrayG": [ + { + "amount": "178.656700290", + "slot": { + "period": 107335, + "thread": 12 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 182403, + "thread": 16 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 464599, + "thread": 0 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 559527, + "thread": 10 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 737263, + "thread": 26 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 884417, + "thread": 6 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1026860, + "thread": 13 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1223404, + "thread": 31 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1336952, + "thread": 12 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1548518, + "thread": 6 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1752059, + "thread": 26 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 1956575, + "thread": 28 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2014637, + "thread": 14 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2148631, + "thread": 30 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2323562, + "thread": 30 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2535122, + "thread": 12 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2759567, + "thread": 22 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 2944889, + "thread": 29 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 3042221, + "thread": 29 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 3191721, + "thread": 25 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 3303355, + "thread": 13 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 3602548, + "thread": 16 + } + }, + { + "amount": "178.656700290", + "slot": { + "period": 3681450, + "thread": 27 + } + }, + { + "amount": "178.656700286", + "slot": { + "period": 3885142, + "thread": 8 + } + } + ], + "AU12GAcAPPPGDoXRgjmLWdivhnrhcS3NBV1D4SB3oX2kNygegpyFZ": [ + { + "amount": "186.976579736", + "slot": { + "period": 134367, + "thread": 4 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 268364, + "thread": 16 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 361521, + "thread": 19 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 595619, + "thread": 19 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 669005, + "thread": 3 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 975770, + "thread": 8 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1063625, + "thread": 19 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1216221, + "thread": 25 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1336129, + "thread": 4 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1593051, + "thread": 19 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1779764, + "thread": 21 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 1898006, + "thread": 26 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2025708, + "thread": 28 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2158277, + "thread": 5 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2350912, + "thread": 26 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2613485, + "thread": 8 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2764859, + "thread": 20 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 2944691, + "thread": 24 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 3041966, + "thread": 25 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 3174024, + "thread": 0 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 3390574, + "thread": 26 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 3575353, + "thread": 1 + } + }, + { + "amount": "186.976579736", + "slot": { + "period": 3652307, + "thread": 15 + } + }, + { + "amount": "186.976579746", + "slot": { + "period": 3905951, + "thread": 1 + } + } + ], + "AU12GAsJ1fVLQaQEcPZ9nN7AtTB6uEkmKGJTUQ8iYi2HuC3qbkFYG": [ + { + "amount": "469.301148377", + "slot": { + "period": 136878, + "thread": 15 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 275041, + "thread": 27 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 483338, + "thread": 21 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 524758, + "thread": 17 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 764926, + "thread": 2 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 970587, + "thread": 22 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1111696, + "thread": 15 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1180108, + "thread": 4 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1464771, + "thread": 18 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1618933, + "thread": 12 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1798224, + "thread": 31 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1878457, + "thread": 5 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 1983579, + "thread": 6 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 2198424, + "thread": 7 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 2340491, + "thread": 5 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 2512113, + "thread": 8 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 2712022, + "thread": 20 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 2841579, + "thread": 1 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 3004616, + "thread": 2 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 3207803, + "thread": 22 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 3411609, + "thread": 1 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 3491553, + "thread": 23 + } + }, + { + "amount": "469.301148377", + "slot": { + "period": 3686744, + "thread": 19 + } + }, + { + "amount": "469.301148384", + "slot": { + "period": 3840945, + "thread": 15 + } + } + ], + "AU12GAvcHVCRGckb5VBh1Sxgg9qs4qc7zYeJ35Tfgxqoh9hqB55VS": [ + { + "amount": "261.672270694", + "slot": { + "period": 94279, + "thread": 13 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 197174, + "thread": 9 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 376362, + "thread": 15 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 572905, + "thread": 9 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 715878, + "thread": 11 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 950523, + "thread": 17 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1082725, + "thread": 5 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1164051, + "thread": 2 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1434654, + "thread": 12 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1524017, + "thread": 5 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1726732, + "thread": 19 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1822373, + "thread": 19 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 1993172, + "thread": 15 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 2284697, + "thread": 8 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 2299166, + "thread": 28 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 2514831, + "thread": 29 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 2632880, + "thread": 2 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 2881712, + "thread": 25 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 3002316, + "thread": 15 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 3252418, + "thread": 31 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 3412014, + "thread": 14 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 3580399, + "thread": 0 + } + }, + { + "amount": "261.672270694", + "slot": { + "period": 3625989, + "thread": 18 + } + }, + { + "amount": "261.672270686", + "slot": { + "period": 3909748, + "thread": 3 + } + } + ], + "AU12GBJhPVZ6m2c8PVZ6zrFwrQvcbUVzU5Vy6QKQGeHHG1419oV4b": [ + { + "amount": "372.755704338", + "slot": { + "period": 148098, + "thread": 9 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 284108, + "thread": 29 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 424416, + "thread": 12 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 536211, + "thread": 10 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 803635, + "thread": 22 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 923660, + "thread": 28 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1091660, + "thread": 4 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1313855, + "thread": 16 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1346629, + "thread": 16 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1575153, + "thread": 20 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1747922, + "thread": 25 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 1907773, + "thread": 18 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2086355, + "thread": 29 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2181066, + "thread": 20 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2306063, + "thread": 11 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2599905, + "thread": 14 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2698264, + "thread": 6 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 2890572, + "thread": 23 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 3099575, + "thread": 22 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 3125519, + "thread": 24 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 3310038, + "thread": 23 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 3530473, + "thread": 26 + } + }, + { + "amount": "372.755704338", + "slot": { + "period": 3775361, + "thread": 3 + } + }, + { + "amount": "372.755704333", + "slot": { + "period": 3922239, + "thread": 14 + } + } + ], + "AU12GBiBJgDAdA2FEf7M3aWpKqeAvJmtrGRsLUv3RNMxJBUzq1sca": [ + { + "amount": "333.858176594", + "slot": { + "period": 140013, + "thread": 18 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 204592, + "thread": 7 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 359251, + "thread": 8 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 625932, + "thread": 20 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 693381, + "thread": 29 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 920607, + "thread": 21 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1002584, + "thread": 20 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1312815, + "thread": 18 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1395420, + "thread": 27 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1517425, + "thread": 10 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1717936, + "thread": 7 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 1812691, + "thread": 10 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2072246, + "thread": 11 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2284301, + "thread": 3 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2330874, + "thread": 3 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2584239, + "thread": 26 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2779839, + "thread": 9 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 2951030, + "thread": 10 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 3073675, + "thread": 10 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 3271016, + "thread": 7 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 3401046, + "thread": 23 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 3508875, + "thread": 30 + } + }, + { + "amount": "333.858176594", + "slot": { + "period": 3735756, + "thread": 17 + } + }, + { + "amount": "333.858176600", + "slot": { + "period": 3905331, + "thread": 7 + } + } + ], + "AU12GCbsRZSQ7PKRdnX11B37XwrTopAccmVmCVZtUk6tGmjmYmuBQ": [ + { + "amount": "70.412147324", + "slot": { + "period": 109256, + "thread": 6 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 233338, + "thread": 7 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 338094, + "thread": 1 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 555265, + "thread": 31 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 801093, + "thread": 2 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 916808, + "thread": 25 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1079785, + "thread": 24 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1234135, + "thread": 22 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1472326, + "thread": 23 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1487695, + "thread": 8 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1686089, + "thread": 6 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 1923978, + "thread": 29 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2011546, + "thread": 4 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2255346, + "thread": 4 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2341883, + "thread": 23 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2528221, + "thread": 6 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2632535, + "thread": 2 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 2850585, + "thread": 15 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 3004626, + "thread": 22 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 3165676, + "thread": 28 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 3392020, + "thread": 17 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 3571936, + "thread": 25 + } + }, + { + "amount": "70.412147324", + "slot": { + "period": 3701294, + "thread": 28 + } + }, + { + "amount": "70.412147316", + "slot": { + "period": 3933395, + "thread": 0 + } + } + ], + "AU12GDNXuJnGaJqod6pK4eHAjTd3aPMDwWbNB3ijJcx2FbgXFDhMw": [ + { + "amount": "77.893649301", + "slot": { + "period": 127157, + "thread": 24 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 262406, + "thread": 7 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 452624, + "thread": 25 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 645097, + "thread": 12 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 727557, + "thread": 4 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 961156, + "thread": 28 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1127518, + "thread": 3 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1182984, + "thread": 30 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1463199, + "thread": 15 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1480160, + "thread": 9 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1766626, + "thread": 8 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 1816737, + "thread": 14 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2039442, + "thread": 23 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2181024, + "thread": 5 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2301787, + "thread": 0 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2493374, + "thread": 17 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2632682, + "thread": 7 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2826480, + "thread": 13 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 2956694, + "thread": 26 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 3172940, + "thread": 14 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 3323318, + "thread": 15 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 3490558, + "thread": 22 + } + }, + { + "amount": "77.893649301", + "slot": { + "period": 3689138, + "thread": 29 + } + }, + { + "amount": "77.893649298", + "slot": { + "period": 3860041, + "thread": 10 + } + } + ], + "AU12GEddnoAURReSgzqFPmxVzrqLBRBruj4c1vVQ6y598L6BAyx5v": [ + { + "amount": "93.899826433", + "slot": { + "period": 68138, + "thread": 15 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 255486, + "thread": 6 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 422208, + "thread": 29 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 562996, + "thread": 16 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 751473, + "thread": 9 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 952510, + "thread": 9 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1105790, + "thread": 20 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1166066, + "thread": 16 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1320905, + "thread": 1 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1636598, + "thread": 16 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1779188, + "thread": 14 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 1855278, + "thread": 30 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2024863, + "thread": 5 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2236972, + "thread": 6 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2408178, + "thread": 10 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2561302, + "thread": 17 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2768925, + "thread": 25 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 2857332, + "thread": 23 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 3059045, + "thread": 8 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 3195199, + "thread": 7 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 3432759, + "thread": 1 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 3505948, + "thread": 12 + } + }, + { + "amount": "93.899826433", + "slot": { + "period": 3684786, + "thread": 21 + } + }, + { + "amount": "93.899826442", + "slot": { + "period": 3897051, + "thread": 10 + } + } + ], + "AU12GFLNVud8GJwPdvRT5ep4WwytpnChfdUQuv868JWJ67eyDpK1h": [ + { + "amount": "111.817835813", + "slot": { + "period": 135211, + "thread": 3 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 204084, + "thread": 20 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 414925, + "thread": 21 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 611140, + "thread": 24 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 791158, + "thread": 10 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 846027, + "thread": 5 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1136564, + "thread": 9 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1316808, + "thread": 18 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1388507, + "thread": 9 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1511873, + "thread": 16 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1760793, + "thread": 11 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 1922226, + "thread": 9 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2116274, + "thread": 8 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2237251, + "thread": 26 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2333669, + "thread": 7 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2550704, + "thread": 4 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2759293, + "thread": 13 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 2831060, + "thread": 3 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 3083831, + "thread": 29 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 3144752, + "thread": 6 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 3351674, + "thread": 31 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 3453479, + "thread": 24 + } + }, + { + "amount": "111.817835813", + "slot": { + "period": 3742605, + "thread": 5 + } + }, + { + "amount": "111.817835817", + "slot": { + "period": 3857447, + "thread": 1 + } + } + ], + "AU12GFzoMrzSfKf5d4TYMjmJKX1k5wHiteEuUbueenUwhuC9yiCe6": [ + { + "amount": "80.310086142", + "slot": { + "period": 155545, + "thread": 17 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 237431, + "thread": 30 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 484065, + "thread": 30 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 521629, + "thread": 29 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 757756, + "thread": 9 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 874402, + "thread": 14 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 985308, + "thread": 26 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 1297653, + "thread": 9 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 1368319, + "thread": 4 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 1492289, + "thread": 20 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 1763836, + "thread": 9 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 1864046, + "thread": 3 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2115079, + "thread": 20 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2183142, + "thread": 1 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2300090, + "thread": 1 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2483805, + "thread": 8 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2789904, + "thread": 7 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 2861340, + "thread": 0 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 3109026, + "thread": 10 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 3286986, + "thread": 4 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 3418160, + "thread": 28 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 3592369, + "thread": 16 + } + }, + { + "amount": "80.310086142", + "slot": { + "period": 3738526, + "thread": 23 + } + }, + { + "amount": "80.310086130", + "slot": { + "period": 3827347, + "thread": 22 + } + } + ], + "AU12GGjD3eQF3fFPtqANc8RfUmQ8q1V291PMQxFHmSyxERnEbCrF5": [ + { + "amount": "226.414704330", + "slot": { + "period": 16764, + "thread": 30 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 266158, + "thread": 5 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 326791, + "thread": 16 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 614675, + "thread": 12 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 815768, + "thread": 11 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 824211, + "thread": 0 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1009408, + "thread": 26 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1248080, + "thread": 30 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1408915, + "thread": 19 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1595562, + "thread": 5 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1781170, + "thread": 20 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 1822635, + "thread": 20 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2102575, + "thread": 19 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2255303, + "thread": 23 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2441997, + "thread": 7 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2612388, + "thread": 2 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2760202, + "thread": 8 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2799045, + "thread": 30 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 2986103, + "thread": 13 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 3250194, + "thread": 16 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 3365414, + "thread": 2 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 3456222, + "thread": 0 + } + }, + { + "amount": "226.414704330", + "slot": { + "period": 3727483, + "thread": 26 + } + }, + { + "amount": "226.414704320", + "slot": { + "period": 3864181, + "thread": 27 + } + } + ], + "AU12GH2xkvn1N2JecqZqJpNRA49AuzS9u2mXCvY1XiomJZioDNwwC": [ + { + "amount": "55.558445846", + "slot": { + "period": 118474, + "thread": 9 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 304794, + "thread": 2 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 345842, + "thread": 13 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 510305, + "thread": 19 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 665640, + "thread": 12 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 932915, + "thread": 15 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1083238, + "thread": 27 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1260428, + "thread": 29 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1382793, + "thread": 30 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1494425, + "thread": 14 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1765952, + "thread": 7 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 1889125, + "thread": 24 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2078659, + "thread": 25 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2218452, + "thread": 24 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2321789, + "thread": 31 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2562991, + "thread": 1 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2780386, + "thread": 26 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 2930319, + "thread": 24 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 3113480, + "thread": 19 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 3128852, + "thread": 9 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 3375735, + "thread": 24 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 3605205, + "thread": 16 + } + }, + { + "amount": "55.558445846", + "slot": { + "period": 3670269, + "thread": 3 + } + }, + { + "amount": "55.558445851", + "slot": { + "period": 3851187, + "thread": 7 + } + } + ], + "AU12GHD1x7rW2LuJ7Ku281ZGkuTFJbRWwngdCHM3LHB1kSU3sS3xd": [ + { + "amount": "216.691952004", + "slot": { + "period": 26129, + "thread": 31 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 254725, + "thread": 3 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 376168, + "thread": 20 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 593877, + "thread": 13 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 666379, + "thread": 3 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 944138, + "thread": 26 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1132198, + "thread": 27 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1286558, + "thread": 22 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1470745, + "thread": 28 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1591832, + "thread": 22 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1747678, + "thread": 23 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 1899118, + "thread": 28 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2124789, + "thread": 20 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2164584, + "thread": 28 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2444362, + "thread": 8 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2529151, + "thread": 17 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2668232, + "thread": 30 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 2876708, + "thread": 7 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 3047362, + "thread": 20 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 3230570, + "thread": 21 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 3405595, + "thread": 14 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 3545559, + "thread": 19 + } + }, + { + "amount": "216.691952004", + "slot": { + "period": 3654845, + "thread": 26 + } + }, + { + "amount": "216.691951993", + "slot": { + "period": 3920929, + "thread": 24 + } + } + ], + "AU12GHGUpiaCKBQEm9e96GGDrLN4PchJVGqFBJwTpmpMzmcjKdmpt": [ + { + "amount": "196.801487593", + "slot": { + "period": 94545, + "thread": 2 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 189459, + "thread": 21 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 482001, + "thread": 7 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 567168, + "thread": 20 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 735811, + "thread": 25 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 951963, + "thread": 5 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1033725, + "thread": 8 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1218033, + "thread": 25 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1389741, + "thread": 15 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1576017, + "thread": 17 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1802314, + "thread": 0 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 1974323, + "thread": 14 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2132127, + "thread": 21 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2281056, + "thread": 21 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2350702, + "thread": 15 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2551858, + "thread": 6 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2658004, + "thread": 31 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2876259, + "thread": 22 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 2997153, + "thread": 0 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 3212710, + "thread": 19 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 3435902, + "thread": 21 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 3575110, + "thread": 28 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 3761841, + "thread": 16 + } + }, + { + "amount": "196.801487593", + "slot": { + "period": 3852634, + "thread": 25 + } + } + ], + "AU12GHotyXbYa44eefnNgWkCeZsAq8z9HAEYH3Qh9p6H1RhH1WyXN": [ + { + "amount": "122.509530616", + "slot": { + "period": 69255, + "thread": 30 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 241705, + "thread": 6 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 415209, + "thread": 16 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 493377, + "thread": 15 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 690458, + "thread": 30 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 938680, + "thread": 31 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1017223, + "thread": 10 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1259443, + "thread": 28 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1401229, + "thread": 22 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1572089, + "thread": 18 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1759053, + "thread": 3 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 1878774, + "thread": 10 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2129981, + "thread": 5 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2163852, + "thread": 6 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2386317, + "thread": 25 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2488094, + "thread": 30 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2761247, + "thread": 0 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2919857, + "thread": 20 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 2972337, + "thread": 11 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 3190922, + "thread": 21 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 3393596, + "thread": 7 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 3574432, + "thread": 8 + } + }, + { + "amount": "122.509530616", + "slot": { + "period": 3778224, + "thread": 8 + } + }, + { + "amount": "122.509530605", + "slot": { + "period": 3839340, + "thread": 14 + } + } + ], + "AU12GJFqnt279jffk7JQoTuCY51J3HyJsJyvVQ9Fb8rkCv29Zx1Sz": [ + { + "amount": "123.476440711", + "slot": { + "period": 47839, + "thread": 2 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 228226, + "thread": 14 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 484762, + "thread": 10 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 560144, + "thread": 29 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 691493, + "thread": 19 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 974532, + "thread": 24 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1058190, + "thread": 14 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1153271, + "thread": 26 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1432028, + "thread": 10 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1603235, + "thread": 14 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1705360, + "thread": 31 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 1889338, + "thread": 29 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2035871, + "thread": 8 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2251536, + "thread": 4 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2347138, + "thread": 5 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2479357, + "thread": 22 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2658367, + "thread": 11 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 2915954, + "thread": 23 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 3034672, + "thread": 25 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 3170932, + "thread": 17 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 3368203, + "thread": 20 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 3491100, + "thread": 17 + } + }, + { + "amount": "123.476440711", + "slot": { + "period": 3745496, + "thread": 10 + } + }, + { + "amount": "123.476440701", + "slot": { + "period": 3891310, + "thread": 16 + } + } + ], + "AU12GJcN1vjeHqW46z1WDL9a7wXxw5qNpqNhwKD5WXQR71auD4gSY": [ + { + "amount": "104.798392970", + "slot": { + "period": 144406, + "thread": 31 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 219768, + "thread": 22 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 486156, + "thread": 19 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 569064, + "thread": 2 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 786547, + "thread": 10 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 959599, + "thread": 18 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1038604, + "thread": 5 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1304837, + "thread": 0 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1457864, + "thread": 11 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1536509, + "thread": 6 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1673056, + "thread": 13 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1955184, + "thread": 26 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 1978729, + "thread": 16 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2176093, + "thread": 2 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2445257, + "thread": 14 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2614534, + "thread": 0 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2685428, + "thread": 24 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2895092, + "thread": 6 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 2966883, + "thread": 7 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 3258742, + "thread": 3 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 3320212, + "thread": 8 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 3547417, + "thread": 11 + } + }, + { + "amount": "104.798392970", + "slot": { + "period": 3767861, + "thread": 31 + } + }, + { + "amount": "104.798392981", + "slot": { + "period": 3797750, + "thread": 29 + } + } + ], + "AU12GJodS4emtzQfaVcqpY9C56nQV8MppsqZe6NagWHuYxmT1L3Lb": [ + { + "amount": "469.035349717", + "slot": { + "period": 62782, + "thread": 11 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 293448, + "thread": 3 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 333381, + "thread": 3 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 639629, + "thread": 16 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 804342, + "thread": 20 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 827157, + "thread": 13 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 989696, + "thread": 27 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 1307718, + "thread": 6 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 1403268, + "thread": 25 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 1522402, + "thread": 29 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 1767277, + "thread": 25 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 1926154, + "thread": 27 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2078327, + "thread": 23 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2254724, + "thread": 0 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2376530, + "thread": 2 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2507929, + "thread": 28 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2720820, + "thread": 6 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 2821840, + "thread": 8 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 3120855, + "thread": 5 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 3213832, + "thread": 31 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 3349320, + "thread": 31 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 3601402, + "thread": 3 + } + }, + { + "amount": "469.035349717", + "slot": { + "period": 3687283, + "thread": 11 + } + }, + { + "amount": "469.035349722", + "slot": { + "period": 3927376, + "thread": 2 + } + } + ], + "AU12GKeafFzCTjx4A78JCZ6D6wK2aRtrUcYkZsoY5xi1kWbv7ah7k": [ + { + "amount": "150.792369624", + "slot": { + "period": 52858, + "thread": 23 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 244848, + "thread": 10 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 416262, + "thread": 18 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 599249, + "thread": 0 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 770820, + "thread": 8 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 841911, + "thread": 18 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1133097, + "thread": 15 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1235293, + "thread": 14 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1381151, + "thread": 11 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1536287, + "thread": 2 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1700570, + "thread": 25 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 1955151, + "thread": 9 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2028805, + "thread": 3 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2180122, + "thread": 14 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2343451, + "thread": 11 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2600802, + "thread": 24 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2785899, + "thread": 20 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 2921077, + "thread": 14 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 3083406, + "thread": 8 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 3137806, + "thread": 29 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 3376539, + "thread": 30 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 3503848, + "thread": 18 + } + }, + { + "amount": "150.792369624", + "slot": { + "period": 3685602, + "thread": 11 + } + }, + { + "amount": "150.792369617", + "slot": { + "period": 3894250, + "thread": 17 + } + } + ], + "AU12GKuidMxzraUePdqcNc4Bf7ucJYo24Pwdv3FUVnkpbtnYHUrLF": [ + { + "amount": "143.715461461", + "slot": { + "period": 118797, + "thread": 29 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 219113, + "thread": 25 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 328675, + "thread": 26 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 518275, + "thread": 8 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 689353, + "thread": 13 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 856334, + "thread": 19 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 993412, + "thread": 19 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 1167059, + "thread": 30 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 1437424, + "thread": 7 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 1633799, + "thread": 18 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 1727696, + "thread": 13 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 1901379, + "thread": 21 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2044957, + "thread": 18 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2166340, + "thread": 31 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2383482, + "thread": 27 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2540622, + "thread": 3 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2779379, + "thread": 14 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 2914852, + "thread": 6 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 3062327, + "thread": 25 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 3126287, + "thread": 30 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 3374279, + "thread": 30 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 3480470, + "thread": 6 + } + }, + { + "amount": "143.715461461", + "slot": { + "period": 3654404, + "thread": 23 + } + }, + { + "amount": "143.715461458", + "slot": { + "period": 3906558, + "thread": 7 + } + } + ], + "AU12GLfm3sruvnBRPnGyhyfomuvj8tLKqEDiNk2y2KztAv6w3oWvv": [ + { + "amount": "167.417251831", + "slot": { + "period": 27982, + "thread": 22 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 242719, + "thread": 5 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 411404, + "thread": 22 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 567147, + "thread": 21 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 815593, + "thread": 17 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 955844, + "thread": 0 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1005221, + "thread": 1 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1261564, + "thread": 26 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1371940, + "thread": 27 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1584085, + "thread": 6 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1801218, + "thread": 27 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 1853323, + "thread": 17 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2137250, + "thread": 5 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2165595, + "thread": 6 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2450776, + "thread": 23 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2564984, + "thread": 21 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2749016, + "thread": 9 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 2932812, + "thread": 0 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 3119723, + "thread": 4 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 3267916, + "thread": 28 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 3445418, + "thread": 20 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 3606490, + "thread": 8 + } + }, + { + "amount": "167.417251831", + "slot": { + "period": 3772648, + "thread": 12 + } + }, + { + "amount": "167.417251838", + "slot": { + "period": 3874397, + "thread": 23 + } + } + ], + "AU12GLpoFFW9DPH9yC6AUNd3QaeW9SmbdiJs2XwWuAHybtM5FhDXv": [ + { + "amount": "179.060270631", + "slot": { + "period": 71240, + "thread": 19 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 229747, + "thread": 20 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 333825, + "thread": 13 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 633974, + "thread": 5 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 784399, + "thread": 23 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 970196, + "thread": 12 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1126282, + "thread": 31 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1253891, + "thread": 24 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1439325, + "thread": 4 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1508144, + "thread": 2 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1716160, + "thread": 31 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 1927599, + "thread": 25 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2115272, + "thread": 31 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2294685, + "thread": 22 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2346804, + "thread": 27 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2503625, + "thread": 17 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2670587, + "thread": 20 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 2845404, + "thread": 0 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 3059306, + "thread": 13 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 3209706, + "thread": 17 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 3408765, + "thread": 26 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 3574765, + "thread": 14 + } + }, + { + "amount": "179.060270631", + "slot": { + "period": 3663195, + "thread": 25 + } + }, + { + "amount": "179.060270630", + "slot": { + "period": 3864067, + "thread": 27 + } + } + ], + "AU12GMsp1dM9j6rFsxUEugnu3d7foaiC7Y3FN3PK9x8WvPucy7iHp": [ + { + "amount": "119.483672127", + "slot": { + "period": 127605, + "thread": 0 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 309167, + "thread": 21 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 357701, + "thread": 4 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 574516, + "thread": 5 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 694001, + "thread": 11 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 887662, + "thread": 8 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 983737, + "thread": 17 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1305926, + "thread": 3 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1436736, + "thread": 7 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1511843, + "thread": 1 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1709136, + "thread": 15 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1959351, + "thread": 28 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 1996447, + "thread": 31 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 2155658, + "thread": 0 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 2349913, + "thread": 7 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 2536090, + "thread": 24 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 2754628, + "thread": 10 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 2849615, + "thread": 8 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 3048566, + "thread": 3 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 3141439, + "thread": 6 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 3333986, + "thread": 8 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 3583107, + "thread": 0 + } + }, + { + "amount": "119.483672127", + "slot": { + "period": 3633087, + "thread": 25 + } + }, + { + "amount": "119.483672122", + "slot": { + "period": 3908987, + "thread": 31 + } + } + ], + "AU12GNQaCxN8AXQdLfA4bVRwrivW1KhCauV3GSZYbwjMjEtDxUdqq": [ + { + "amount": "68.088288817", + "slot": { + "period": 105567, + "thread": 2 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 212264, + "thread": 14 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 331703, + "thread": 29 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 640813, + "thread": 5 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 781307, + "thread": 21 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 926694, + "thread": 31 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1062558, + "thread": 19 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1203868, + "thread": 24 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1389047, + "thread": 22 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1601930, + "thread": 29 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1730771, + "thread": 20 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1820099, + "thread": 22 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 1978481, + "thread": 14 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2281741, + "thread": 31 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2334158, + "thread": 2 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2502542, + "thread": 28 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2657547, + "thread": 12 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2916264, + "thread": 5 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 2957214, + "thread": 18 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 3266887, + "thread": 10 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 3441951, + "thread": 18 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 3595375, + "thread": 12 + } + }, + { + "amount": "68.088288817", + "slot": { + "period": 3670883, + "thread": 11 + } + }, + { + "amount": "68.088288827", + "slot": { + "period": 3887621, + "thread": 11 + } + } + ], + "AU12GNZGGCtSphxKkf6JFYfmbWEabMgVGCXkfmrk3CbZ7S14QPy82": [ + { + "amount": "54.113924889", + "slot": { + "period": 20206, + "thread": 2 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 241092, + "thread": 12 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 436707, + "thread": 13 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 636583, + "thread": 23 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 781252, + "thread": 3 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 883950, + "thread": 24 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 992569, + "thread": 15 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 1166026, + "thread": 14 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 1345669, + "thread": 18 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 1588243, + "thread": 5 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 1650065, + "thread": 8 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 1904628, + "thread": 13 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2006762, + "thread": 11 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2176889, + "thread": 10 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2336600, + "thread": 22 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2573265, + "thread": 5 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2627696, + "thread": 12 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2854940, + "thread": 3 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 2966683, + "thread": 13 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 3276895, + "thread": 30 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 3421624, + "thread": 12 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 3492020, + "thread": 18 + } + }, + { + "amount": "54.113924889", + "slot": { + "period": 3764215, + "thread": 18 + } + }, + { + "amount": "54.113924892", + "slot": { + "period": 3921709, + "thread": 23 + } + } + ], + "AU12GNijhdtQSVmukSBgYt7MXFTLcpAt6j1pKQKxabNAacQo4rSBe": [ + { + "amount": "511.397233696", + "slot": { + "period": 88240, + "thread": 24 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 195634, + "thread": 22 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 414811, + "thread": 0 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 551555, + "thread": 15 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 800423, + "thread": 18 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 846989, + "thread": 31 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1072571, + "thread": 10 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1192335, + "thread": 9 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1445574, + "thread": 6 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1499522, + "thread": 18 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1715034, + "thread": 23 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 1973895, + "thread": 31 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2062318, + "thread": 5 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2258355, + "thread": 10 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2420152, + "thread": 21 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2594210, + "thread": 27 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2755130, + "thread": 4 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 2906268, + "thread": 19 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 3055614, + "thread": 13 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 3220251, + "thread": 23 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 3334680, + "thread": 9 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 3521570, + "thread": 13 + } + }, + { + "amount": "511.397233696", + "slot": { + "period": 3772120, + "thread": 8 + } + }, + { + "amount": "511.397233687", + "slot": { + "period": 3802673, + "thread": 28 + } + } + ], + "AU12GP8euqBuc97dc4NmiF1AG82We6PRZMWU6aRvVuzipgBBWkQpn": [ + { + "amount": "118.952998252", + "slot": { + "period": 43547, + "thread": 29 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 207541, + "thread": 18 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 448008, + "thread": 15 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 556609, + "thread": 12 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 772890, + "thread": 3 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 844919, + "thread": 3 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 997618, + "thread": 16 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 1302641, + "thread": 4 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 1435430, + "thread": 31 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 1517856, + "thread": 26 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 1671134, + "thread": 10 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 1928033, + "thread": 1 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2087794, + "thread": 20 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2173423, + "thread": 19 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2428633, + "thread": 10 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2522272, + "thread": 27 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2701058, + "thread": 5 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 2894930, + "thread": 7 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 3044188, + "thread": 23 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 3246723, + "thread": 11 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 3378470, + "thread": 19 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 3531861, + "thread": 8 + } + }, + { + "amount": "118.952998252", + "slot": { + "period": 3646811, + "thread": 30 + } + }, + { + "amount": "118.952998251", + "slot": { + "period": 3796974, + "thread": 5 + } + } + ], + "AU12GPueBCs2zNrN9JYzcdpeeUNZ9N1fdFGbB4u6s4REfhQigDvSe": [ + { + "amount": "224.150575561", + "slot": { + "period": 98277, + "thread": 4 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 171134, + "thread": 16 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 345911, + "thread": 15 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 631273, + "thread": 9 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 807851, + "thread": 15 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 829917, + "thread": 9 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1108783, + "thread": 14 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1218874, + "thread": 16 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1395857, + "thread": 14 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1541282, + "thread": 28 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1663768, + "thread": 30 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 1870739, + "thread": 0 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2026796, + "thread": 26 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2149774, + "thread": 27 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2384497, + "thread": 3 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2614907, + "thread": 21 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2630288, + "thread": 12 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 2843526, + "thread": 5 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 3011655, + "thread": 19 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 3210557, + "thread": 14 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 3297171, + "thread": 2 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 3575586, + "thread": 22 + } + }, + { + "amount": "224.150575561", + "slot": { + "period": 3718884, + "thread": 30 + } + }, + { + "amount": "224.150575558", + "slot": { + "period": 3872153, + "thread": 9 + } + } + ], + "AU12GRBcxnyJ8JK5bvysrsEmqpj6cM3gkV7v69CVVBtNPYuAwWu3G": [ + { + "amount": "545.068597217", + "slot": { + "period": 23589, + "thread": 23 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 262144, + "thread": 13 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 445904, + "thread": 26 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 618414, + "thread": 27 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 768406, + "thread": 6 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 861414, + "thread": 15 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1032814, + "thread": 31 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1291945, + "thread": 29 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1422946, + "thread": 11 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1623849, + "thread": 10 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1668663, + "thread": 16 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 1831823, + "thread": 11 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2051162, + "thread": 11 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2274558, + "thread": 2 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2324057, + "thread": 24 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2471425, + "thread": 6 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2720262, + "thread": 5 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 2824821, + "thread": 16 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 3065139, + "thread": 0 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 3237819, + "thread": 7 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 3363765, + "thread": 10 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 3464457, + "thread": 16 + } + }, + { + "amount": "545.068597217", + "slot": { + "period": 3644698, + "thread": 21 + } + }, + { + "amount": "545.068597220", + "slot": { + "period": 3889722, + "thread": 20 + } + } + ], + "AU12GRdCayXNqcCRL6ifTV4svBsUxQaV7spdHNhAKVmtRDXkbqNKT": [ + { + "amount": "490.598603065", + "slot": { + "period": 93961, + "thread": 0 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 199737, + "thread": 18 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 454187, + "thread": 9 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 578824, + "thread": 30 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 771286, + "thread": 1 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 972689, + "thread": 1 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1056251, + "thread": 18 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1218334, + "thread": 25 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1394923, + "thread": 8 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1568701, + "thread": 21 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1691942, + "thread": 18 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 1809124, + "thread": 14 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2022286, + "thread": 17 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2246668, + "thread": 13 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2461193, + "thread": 26 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2558494, + "thread": 6 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2784269, + "thread": 6 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 2876272, + "thread": 19 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 3107421, + "thread": 6 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 3263550, + "thread": 8 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 3313222, + "thread": 28 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 3545661, + "thread": 12 + } + }, + { + "amount": "490.598603065", + "slot": { + "period": 3628454, + "thread": 5 + } + }, + { + "amount": "490.598603055", + "slot": { + "period": 3845027, + "thread": 24 + } + } + ], + "AU12GRr3sDsGDwiAVeU2KMFpWA9N1WyB6f3XV7YgVEranLHSeXoKY": [ + { + "amount": "204.121354421", + "slot": { + "period": 160460, + "thread": 21 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 171047, + "thread": 26 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 395127, + "thread": 23 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 531450, + "thread": 16 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 716154, + "thread": 22 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 834830, + "thread": 29 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1026973, + "thread": 17 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1286610, + "thread": 25 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1459316, + "thread": 2 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1597031, + "thread": 12 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1744493, + "thread": 25 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 1819859, + "thread": 5 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2033988, + "thread": 0 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2191896, + "thread": 3 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2451937, + "thread": 29 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2543597, + "thread": 27 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2654873, + "thread": 15 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2933426, + "thread": 22 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 2968613, + "thread": 22 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 3268615, + "thread": 14 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 3314783, + "thread": 23 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 3454893, + "thread": 30 + } + }, + { + "amount": "204.121354421", + "slot": { + "period": 3618897, + "thread": 5 + } + }, + { + "amount": "204.121354429", + "slot": { + "period": 3883605, + "thread": 2 + } + } + ], + "AU12GRrvDwaDK85urtj97DkzR8FXUqb4ejshGTDZ6o9KNL6iMj1Eb": [ + { + "amount": "108.547017543", + "slot": { + "period": 102957, + "thread": 23 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 222462, + "thread": 10 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 455945, + "thread": 6 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 631821, + "thread": 6 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 788563, + "thread": 2 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 863783, + "thread": 8 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1017855, + "thread": 0 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1195091, + "thread": 22 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1390249, + "thread": 0 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1634805, + "thread": 23 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1706691, + "thread": 14 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 1951650, + "thread": 28 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2108155, + "thread": 19 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2265275, + "thread": 2 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2454873, + "thread": 3 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2499410, + "thread": 22 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2747756, + "thread": 7 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 2848975, + "thread": 27 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 3035484, + "thread": 6 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 3167464, + "thread": 31 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 3420890, + "thread": 3 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 3520369, + "thread": 5 + } + }, + { + "amount": "108.547017543", + "slot": { + "period": 3655158, + "thread": 14 + } + }, + { + "amount": "108.547017542", + "slot": { + "period": 3808246, + "thread": 28 + } + } + ], + "AU12GSZp2zmVjo9T5wWF2vmZ6jV2xMuoNNJTZSua6cPo8cx5AiNKy": [ + { + "amount": "216.021440212", + "slot": { + "period": 69461, + "thread": 0 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 216543, + "thread": 26 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 360272, + "thread": 5 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 565749, + "thread": 1 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 715945, + "thread": 10 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 911946, + "thread": 6 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1035453, + "thread": 13 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1166530, + "thread": 24 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1373921, + "thread": 19 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1585269, + "thread": 15 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1708231, + "thread": 3 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 1923936, + "thread": 22 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2102420, + "thread": 28 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2205452, + "thread": 6 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2374920, + "thread": 21 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2578418, + "thread": 21 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2653729, + "thread": 4 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 2879881, + "thread": 4 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 3037878, + "thread": 3 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 3156334, + "thread": 13 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 3383758, + "thread": 4 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 3540933, + "thread": 21 + } + }, + { + "amount": "216.021440212", + "slot": { + "period": 3773060, + "thread": 20 + } + }, + { + "amount": "216.021440210", + "slot": { + "period": 3784229, + "thread": 13 + } + } + ], + "AU12GTH6iEUW6aoYDZ3BNwKncQAJbvUdjQnZQJ2yiVCVMd5Lp9SLE": [ + { + "amount": "290.678430899", + "slot": { + "period": 25361, + "thread": 18 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 243667, + "thread": 21 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 355926, + "thread": 12 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 557256, + "thread": 17 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 797264, + "thread": 1 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 921276, + "thread": 8 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1091276, + "thread": 29 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1200096, + "thread": 16 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1334223, + "thread": 11 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1539525, + "thread": 6 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1701993, + "thread": 7 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 1900870, + "thread": 15 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2019782, + "thread": 7 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2156152, + "thread": 10 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2329225, + "thread": 26 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2535918, + "thread": 2 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2691496, + "thread": 17 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 2925814, + "thread": 17 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 3083612, + "thread": 18 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 3279145, + "thread": 4 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 3307407, + "thread": 8 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 3514591, + "thread": 3 + } + }, + { + "amount": "290.678430899", + "slot": { + "period": 3648024, + "thread": 22 + } + }, + { + "amount": "290.678430897", + "slot": { + "period": 3907399, + "thread": 2 + } + } + ], + "AU12GTKuSakJ7JKD7w1AqEDn31qbDXA2YGqru4kFzEwUHmWF2LgVC": [ + { + "amount": "300.301214134", + "slot": { + "period": 91391, + "thread": 20 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 187921, + "thread": 27 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 437521, + "thread": 28 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 550758, + "thread": 14 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 688733, + "thread": 12 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 863117, + "thread": 12 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1148425, + "thread": 4 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1287048, + "thread": 24 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1392808, + "thread": 6 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1562916, + "thread": 4 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1756998, + "thread": 30 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 1967727, + "thread": 19 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2030138, + "thread": 6 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2271202, + "thread": 22 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2296628, + "thread": 21 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2555613, + "thread": 12 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2680805, + "thread": 12 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2898328, + "thread": 23 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 2976789, + "thread": 13 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 3135949, + "thread": 6 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 3313417, + "thread": 14 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 3584016, + "thread": 18 + } + }, + { + "amount": "300.301214134", + "slot": { + "period": 3653100, + "thread": 16 + } + }, + { + "amount": "300.301214140", + "slot": { + "period": 3906016, + "thread": 15 + } + } + ], + "AU12GTnKx8yFv9XPKSEf211D1ZGfuYu6Yn82YnPH1ownjhymDpPte": [ + { + "amount": "221.717656126", + "slot": { + "period": 94025, + "thread": 18 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 276223, + "thread": 3 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 378605, + "thread": 20 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 562253, + "thread": 4 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 776899, + "thread": 11 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 982162, + "thread": 15 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1073590, + "thread": 7 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1207675, + "thread": 4 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1463824, + "thread": 23 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1493999, + "thread": 6 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1718550, + "thread": 6 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 1879750, + "thread": 20 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2011999, + "thread": 31 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2201907, + "thread": 11 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2391337, + "thread": 6 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2569375, + "thread": 18 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2722603, + "thread": 9 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 2890635, + "thread": 22 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 3056829, + "thread": 4 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 3124036, + "thread": 2 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 3335530, + "thread": 17 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 3488678, + "thread": 23 + } + }, + { + "amount": "221.717656126", + "slot": { + "period": 3655806, + "thread": 0 + } + }, + { + "amount": "221.717656114", + "slot": { + "period": 3866537, + "thread": 20 + } + } + ], + "AU12GUDXciQ9gNcRKg6mvWTiq81Ddz6USvQnaKXr7MGipNFDZJRWo": [ + { + "amount": "345.514598909", + "slot": { + "period": 48299, + "thread": 9 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 283890, + "thread": 10 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 329559, + "thread": 10 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 581089, + "thread": 3 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 743861, + "thread": 28 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 870038, + "thread": 8 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 991415, + "thread": 25 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 1268478, + "thread": 26 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 1448386, + "thread": 13 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 1480364, + "thread": 13 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 1786523, + "thread": 4 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 1914167, + "thread": 11 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2091106, + "thread": 17 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2283562, + "thread": 6 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2402358, + "thread": 11 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2574999, + "thread": 1 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2784889, + "thread": 9 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 2812555, + "thread": 22 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 3016065, + "thread": 1 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 3192246, + "thread": 6 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 3438750, + "thread": 0 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 3471177, + "thread": 24 + } + }, + { + "amount": "345.514598909", + "slot": { + "period": 3686032, + "thread": 18 + } + }, + { + "amount": "345.514598910", + "slot": { + "period": 3789012, + "thread": 19 + } + } + ], + "AU12GULBTfzLMzzj4rnbZdsD8vNQ2vHAxmnU8vHcX3bpf5fTBWGMF": [ + { + "amount": "126.759276904", + "slot": { + "period": 38164, + "thread": 24 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 258086, + "thread": 22 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 365472, + "thread": 11 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 557882, + "thread": 8 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 761723, + "thread": 28 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 913891, + "thread": 24 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1000407, + "thread": 4 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1163605, + "thread": 1 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1389765, + "thread": 13 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1638534, + "thread": 5 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1649462, + "thread": 14 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 1935892, + "thread": 0 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2113802, + "thread": 6 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2261302, + "thread": 2 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2408695, + "thread": 13 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2481131, + "thread": 5 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2791602, + "thread": 1 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 2915492, + "thread": 5 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 3046410, + "thread": 4 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 3134808, + "thread": 18 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 3449096, + "thread": 18 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 3514206, + "thread": 26 + } + }, + { + "amount": "126.759276904", + "slot": { + "period": 3715301, + "thread": 5 + } + }, + { + "amount": "126.759276898", + "slot": { + "period": 3806988, + "thread": 2 + } + } + ], + "AU12GUdT6r4jHkoBfypyiCEkPwbj7VFnKRaq2YdUThnAozU5gNWUp": [ + { + "amount": "144.426541100", + "slot": { + "period": 16165, + "thread": 8 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 251977, + "thread": 2 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 433447, + "thread": 3 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 623863, + "thread": 21 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 789455, + "thread": 11 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 877485, + "thread": 31 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1036840, + "thread": 27 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1261511, + "thread": 19 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1417846, + "thread": 31 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1494974, + "thread": 27 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1666666, + "thread": 8 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 1906220, + "thread": 19 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2099789, + "thread": 3 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2285017, + "thread": 22 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2329245, + "thread": 4 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2520065, + "thread": 15 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2705937, + "thread": 13 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 2907281, + "thread": 18 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 3066972, + "thread": 18 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 3160764, + "thread": 31 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 3397081, + "thread": 25 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 3460507, + "thread": 21 + } + }, + { + "amount": "144.426541100", + "slot": { + "period": 3700295, + "thread": 20 + } + }, + { + "amount": "144.426541107", + "slot": { + "period": 3898553, + "thread": 14 + } + } + ], + "AU12GVES8mRzXfX7qsKAUg1eeUHnEw2diE2h9KnjQwH4hfC8bTzFi": [ + { + "amount": "458.716280008", + "slot": { + "period": 24093, + "thread": 24 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 170043, + "thread": 28 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 410286, + "thread": 9 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 565942, + "thread": 30 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 814462, + "thread": 29 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 857878, + "thread": 3 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1043259, + "thread": 7 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1171123, + "thread": 3 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1364277, + "thread": 16 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1547867, + "thread": 11 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1743535, + "thread": 23 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 1847667, + "thread": 25 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2138026, + "thread": 31 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2184212, + "thread": 31 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2299078, + "thread": 11 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2592613, + "thread": 18 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2775005, + "thread": 26 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 2912104, + "thread": 20 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 3043939, + "thread": 24 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 3177292, + "thread": 19 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 3433419, + "thread": 3 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 3524988, + "thread": 5 + } + }, + { + "amount": "458.716280008", + "slot": { + "period": 3681266, + "thread": 31 + } + }, + { + "amount": "458.716280010", + "slot": { + "period": 3937108, + "thread": 14 + } + } + ], + "AU12GVFviQFXTZqDxX3NKJ2o6YRed6VQPNtLhg5GGJm1n6M9JjayF": [ + { + "amount": "542.161032370", + "slot": { + "period": 61131, + "thread": 2 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 302258, + "thread": 23 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 476377, + "thread": 4 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 593682, + "thread": 28 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 746777, + "thread": 0 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 868633, + "thread": 17 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1035809, + "thread": 3 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1298160, + "thread": 8 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1325415, + "thread": 11 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1566067, + "thread": 21 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1793691, + "thread": 23 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 1852126, + "thread": 31 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2079064, + "thread": 7 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2179149, + "thread": 4 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2347961, + "thread": 25 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2589920, + "thread": 1 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2670852, + "thread": 12 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 2934159, + "thread": 22 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 3071373, + "thread": 29 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 3228389, + "thread": 29 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 3297521, + "thread": 24 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 3552488, + "thread": 25 + } + }, + { + "amount": "542.161032370", + "slot": { + "period": 3629042, + "thread": 5 + } + }, + { + "amount": "542.161032379", + "slot": { + "period": 3891400, + "thread": 1 + } + } + ], + "AU12GWx4jyNg3QaVxYgKEA29oFCgrkMJkzgvs7R9FavRkbhSy8aWk": [ + { + "amount": "126.257771325", + "slot": { + "period": 55507, + "thread": 11 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 180831, + "thread": 29 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 480053, + "thread": 31 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 616631, + "thread": 7 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 819504, + "thread": 7 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 865113, + "thread": 0 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1118178, + "thread": 12 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1275590, + "thread": 29 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1321306, + "thread": 28 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1575644, + "thread": 15 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1801952, + "thread": 0 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 1812961, + "thread": 7 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2114816, + "thread": 29 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2270005, + "thread": 24 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2431324, + "thread": 2 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2597887, + "thread": 15 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2695291, + "thread": 25 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 2905983, + "thread": 26 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 3006605, + "thread": 7 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 3129374, + "thread": 28 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 3424169, + "thread": 26 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 3575856, + "thread": 30 + } + }, + { + "amount": "126.257771325", + "slot": { + "period": 3749930, + "thread": 3 + } + }, + { + "amount": "126.257771327", + "slot": { + "period": 3849847, + "thread": 19 + } + } + ], + "AU12GXmbKVfWqQcaPuJEhU3dVfDGLB8ioeHJQJKU6QTQYKSFGAjGa": [ + { + "amount": "495.691184131", + "slot": { + "period": 102265, + "thread": 21 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 280276, + "thread": 14 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 455568, + "thread": 0 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 643364, + "thread": 30 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 817504, + "thread": 4 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 842033, + "thread": 31 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1119261, + "thread": 31 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1178818, + "thread": 30 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1328463, + "thread": 24 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1601889, + "thread": 16 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1790074, + "thread": 24 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 1830247, + "thread": 6 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2139378, + "thread": 24 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2191389, + "thread": 12 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2444485, + "thread": 26 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2594620, + "thread": 4 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2744363, + "thread": 5 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 2816600, + "thread": 1 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 3021894, + "thread": 1 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 3129598, + "thread": 0 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 3408308, + "thread": 13 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 3549925, + "thread": 29 + } + }, + { + "amount": "495.691184131", + "slot": { + "period": 3685910, + "thread": 9 + } + }, + { + "amount": "495.691184138", + "slot": { + "period": 3852300, + "thread": 3 + } + } + ], + "AU12GYKEfi9Sq5fBU8PfGbsrsM1y6h4Ff9DtzYMf7FvVa155zwf7r": [ + { + "amount": "75.945046007", + "slot": { + "period": 49976, + "thread": 27 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 248380, + "thread": 24 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 435905, + "thread": 26 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 574679, + "thread": 9 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 767252, + "thread": 13 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 970853, + "thread": 27 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1147042, + "thread": 4 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1227067, + "thread": 18 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1318914, + "thread": 30 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1615551, + "thread": 5 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1759627, + "thread": 9 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 1848145, + "thread": 5 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2008976, + "thread": 29 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2160710, + "thread": 12 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2440124, + "thread": 12 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2505733, + "thread": 25 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2739974, + "thread": 5 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 2818483, + "thread": 13 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 3052440, + "thread": 7 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 3223927, + "thread": 10 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 3362779, + "thread": 13 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 3582106, + "thread": 8 + } + }, + { + "amount": "75.945046007", + "slot": { + "period": 3683199, + "thread": 22 + } + }, + { + "amount": "75.945046005", + "slot": { + "period": 3811548, + "thread": 26 + } + } + ], + "AU12GZUWXfWR1xVeBDbm4DzFqL7f1S77ETBqE4y2y3Sum6AGinb5r": [ + { + "amount": "77.006313562", + "slot": { + "period": 138161, + "thread": 9 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 208169, + "thread": 24 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 352754, + "thread": 16 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 509049, + "thread": 26 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 659705, + "thread": 2 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 867590, + "thread": 30 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1000649, + "thread": 10 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1160990, + "thread": 23 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1393288, + "thread": 18 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1488275, + "thread": 21 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1704965, + "thread": 3 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1944115, + "thread": 29 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 1995032, + "thread": 30 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2292811, + "thread": 29 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2354635, + "thread": 30 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2515517, + "thread": 0 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2725734, + "thread": 24 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2860938, + "thread": 13 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 2973925, + "thread": 3 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 3279254, + "thread": 1 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 3316288, + "thread": 20 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 3498229, + "thread": 3 + } + }, + { + "amount": "77.006313562", + "slot": { + "period": 3677885, + "thread": 29 + } + }, + { + "amount": "77.006313574", + "slot": { + "period": 3852650, + "thread": 17 + } + } + ], + "AU12GaZgtcWAzgAszLXW7fW3Sqzh9xrBuwJc9nvTinQqXM6SjBasF": [ + { + "amount": "567.050511052", + "slot": { + "period": 47360, + "thread": 16 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 244466, + "thread": 12 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 436604, + "thread": 9 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 544523, + "thread": 1 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 672812, + "thread": 23 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 853367, + "thread": 11 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1141378, + "thread": 20 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1273490, + "thread": 15 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1422475, + "thread": 27 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1639195, + "thread": 7 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1672539, + "thread": 4 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 1892680, + "thread": 19 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2130455, + "thread": 7 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2176500, + "thread": 26 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2430671, + "thread": 12 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2622296, + "thread": 13 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2735968, + "thread": 20 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 2873813, + "thread": 20 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 3027372, + "thread": 4 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 3280363, + "thread": 26 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 3376473, + "thread": 14 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 3504116, + "thread": 24 + } + }, + { + "amount": "567.050511052", + "slot": { + "period": 3633243, + "thread": 25 + } + }, + { + "amount": "567.050511042", + "slot": { + "period": 3880962, + "thread": 25 + } + } + ], + "AU12Gb52E6Qv7oUDXAkH9WUtWHK7XbcRud9zcGHLkscbnNKB7UdJB": [ + { + "amount": "92.178771712", + "slot": { + "period": 143941, + "thread": 4 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 194543, + "thread": 11 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 358860, + "thread": 4 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 633290, + "thread": 19 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 784081, + "thread": 8 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 875727, + "thread": 28 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1058820, + "thread": 1 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1275472, + "thread": 31 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1419814, + "thread": 13 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1555431, + "thread": 21 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1705647, + "thread": 22 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 1952455, + "thread": 8 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2085263, + "thread": 14 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2191450, + "thread": 6 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2313693, + "thread": 9 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2523922, + "thread": 26 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2687036, + "thread": 2 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2918408, + "thread": 2 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 2972014, + "thread": 29 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 3237452, + "thread": 22 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 3355828, + "thread": 10 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 3528911, + "thread": 0 + } + }, + { + "amount": "92.178771712", + "slot": { + "period": 3766694, + "thread": 5 + } + }, + { + "amount": "92.178771719", + "slot": { + "period": 3882310, + "thread": 2 + } + } + ], + "AU12GbdoRPs8uMokrB8Kgqe2PgNbD5q1zZ34tgTBrKrK1TCowJaNn": [ + { + "amount": "191.572378106", + "slot": { + "period": 43385, + "thread": 27 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 227482, + "thread": 0 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 450208, + "thread": 6 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 541654, + "thread": 11 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 683595, + "thread": 20 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 864662, + "thread": 8 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1146944, + "thread": 30 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1202906, + "thread": 5 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1452439, + "thread": 22 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1552380, + "thread": 24 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1806868, + "thread": 24 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 1950636, + "thread": 16 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2105442, + "thread": 6 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2273672, + "thread": 12 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2323945, + "thread": 11 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2499742, + "thread": 26 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2719616, + "thread": 29 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 2885457, + "thread": 8 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 3024211, + "thread": 27 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 3249276, + "thread": 9 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 3423735, + "thread": 30 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 3531876, + "thread": 29 + } + }, + { + "amount": "191.572378106", + "slot": { + "period": 3745254, + "thread": 19 + } + }, + { + "amount": "191.572378101", + "slot": { + "period": 3794701, + "thread": 8 + } + } + ], + "AU12GbnCXRexmpZTLkzFqz81TFcgotnessdxDL3WjVNQTZVccmT8G": [ + { + "amount": "98.277660870", + "slot": { + "period": 159746, + "thread": 2 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 271585, + "thread": 30 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 452617, + "thread": 5 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 612631, + "thread": 7 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 657290, + "thread": 2 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 949354, + "thread": 9 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1052329, + "thread": 5 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1157306, + "thread": 0 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1424976, + "thread": 29 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1611187, + "thread": 0 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1770300, + "thread": 15 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 1816655, + "thread": 3 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2078865, + "thread": 18 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2183969, + "thread": 31 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2457076, + "thread": 30 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2493602, + "thread": 3 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2660801, + "thread": 25 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2825208, + "thread": 10 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 2969502, + "thread": 4 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 3218145, + "thread": 9 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 3346817, + "thread": 17 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 3492834, + "thread": 29 + } + }, + { + "amount": "98.277660870", + "slot": { + "period": 3773559, + "thread": 2 + } + }, + { + "amount": "98.277660876", + "slot": { + "period": 3912544, + "thread": 27 + } + } + ], + "AU12GbtSob5kFfQhLuSr6XezpBmmX99YCLDUiuw1bqppQUsPc7Jdj": [ + { + "amount": "74.397847728", + "slot": { + "period": 157241, + "thread": 31 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 221257, + "thread": 24 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 334651, + "thread": 6 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 557789, + "thread": 10 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 688658, + "thread": 2 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 979389, + "thread": 30 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1069689, + "thread": 5 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1166602, + "thread": 16 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1343555, + "thread": 21 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1545437, + "thread": 25 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1664783, + "thread": 21 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 1920297, + "thread": 19 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2126694, + "thread": 24 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2268932, + "thread": 4 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2361180, + "thread": 16 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2486567, + "thread": 5 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2646600, + "thread": 24 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 2875331, + "thread": 28 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3113845, + "thread": 27 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3254858, + "thread": 24 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3332049, + "thread": 6 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3510736, + "thread": 7 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3706357, + "thread": 9 + } + }, + { + "amount": "74.397847728", + "slot": { + "period": 3802614, + "thread": 11 + } + } + ], + "AU12GcURkmq9Ei7VW9me9n9d1Z7o1oNwvM73ENwH9xk6s931x3v75": [ + { + "amount": "214.173179183", + "slot": { + "period": 57079, + "thread": 16 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 281115, + "thread": 7 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 430215, + "thread": 18 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 593357, + "thread": 11 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 734447, + "thread": 15 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 832224, + "thread": 21 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1132770, + "thread": 13 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1173952, + "thread": 22 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1383749, + "thread": 10 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1486411, + "thread": 8 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1777509, + "thread": 26 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 1840032, + "thread": 22 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2035480, + "thread": 26 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2277031, + "thread": 23 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2337511, + "thread": 17 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2519588, + "thread": 12 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2691110, + "thread": 25 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2825750, + "thread": 21 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 2955924, + "thread": 28 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 3217995, + "thread": 14 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 3396483, + "thread": 10 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 3508408, + "thread": 26 + } + }, + { + "amount": "214.173179183", + "slot": { + "period": 3730578, + "thread": 21 + } + }, + { + "amount": "214.173179192", + "slot": { + "period": 3929502, + "thread": 14 + } + } + ], + "AU12GcnTSrxt7occkYYFBNZGytQvaSfqDQ4MikYAAGqY71JS4appF": [ + { + "amount": "57.661845893", + "slot": { + "period": 113968, + "thread": 11 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 202217, + "thread": 15 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 404190, + "thread": 12 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 617886, + "thread": 28 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 761544, + "thread": 30 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 850020, + "thread": 10 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1079075, + "thread": 13 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1164681, + "thread": 28 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1367313, + "thread": 28 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1566506, + "thread": 15 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1738431, + "thread": 23 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 1967209, + "thread": 18 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2029607, + "thread": 13 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2275344, + "thread": 2 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2354617, + "thread": 25 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2616060, + "thread": 26 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2735629, + "thread": 20 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 2911372, + "thread": 18 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 3019800, + "thread": 22 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 3287387, + "thread": 9 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 3440893, + "thread": 20 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 3568108, + "thread": 26 + } + }, + { + "amount": "57.661845893", + "slot": { + "period": 3760542, + "thread": 20 + } + }, + { + "amount": "57.661845896", + "slot": { + "period": 3810306, + "thread": 4 + } + } + ], + "AU12GcpwGxBpxWPHrg873ngJdHFyEmYxvu8YFUdruaRt6tewWyZin": [ + { + "amount": "234.361608634", + "slot": { + "period": 25322, + "thread": 0 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 236709, + "thread": 1 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 351588, + "thread": 0 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 599281, + "thread": 16 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 679736, + "thread": 29 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 855876, + "thread": 31 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1105751, + "thread": 26 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1221173, + "thread": 19 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1380424, + "thread": 19 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1524835, + "thread": 11 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1760033, + "thread": 2 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 1856425, + "thread": 21 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2108910, + "thread": 7 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2205339, + "thread": 15 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2410537, + "thread": 19 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2494076, + "thread": 31 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2684674, + "thread": 15 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 2893850, + "thread": 8 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 3040793, + "thread": 11 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 3197578, + "thread": 14 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 3387876, + "thread": 13 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 3458529, + "thread": 10 + } + }, + { + "amount": "234.361608634", + "slot": { + "period": 3633223, + "thread": 14 + } + }, + { + "amount": "234.361608637", + "slot": { + "period": 3876964, + "thread": 29 + } + } + ], + "AU12GdAXF8oq5ddgcU4Ck4xfRjBPpC9JgaVmNj5QtsFmZfCdJCoiV": [ + { + "amount": "239.545267476", + "slot": { + "period": 140696, + "thread": 19 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 306514, + "thread": 7 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 427433, + "thread": 21 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 497103, + "thread": 17 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 769926, + "thread": 27 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 975680, + "thread": 17 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1126088, + "thread": 21 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1203710, + "thread": 24 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1392823, + "thread": 29 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1637830, + "thread": 22 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1712431, + "thread": 29 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 1889941, + "thread": 20 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2077361, + "thread": 12 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2270559, + "thread": 9 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2311989, + "thread": 11 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2508936, + "thread": 21 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2722869, + "thread": 26 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 2878206, + "thread": 10 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 3010266, + "thread": 9 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 3154832, + "thread": 18 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 3298262, + "thread": 9 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 3479332, + "thread": 10 + } + }, + { + "amount": "239.545267476", + "slot": { + "period": 3718074, + "thread": 22 + } + }, + { + "amount": "239.545267477", + "slot": { + "period": 3879632, + "thread": 30 + } + } + ], + "AU12GdE4PsmTAZW7a59s1HypHNatDugT2BDqkRGTvKnGv6aQJ3STV": [ + { + "amount": "218.092230175", + "slot": { + "period": 43948, + "thread": 11 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 224446, + "thread": 31 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 431521, + "thread": 27 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 500604, + "thread": 23 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 676341, + "thread": 1 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 959042, + "thread": 24 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1081296, + "thread": 3 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1298423, + "thread": 12 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1377687, + "thread": 5 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1589109, + "thread": 16 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1674648, + "thread": 4 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 1960788, + "thread": 15 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2012833, + "thread": 5 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2200829, + "thread": 4 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2380968, + "thread": 0 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2565281, + "thread": 30 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2679221, + "thread": 21 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 2914737, + "thread": 22 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 3107007, + "thread": 6 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 3250339, + "thread": 20 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 3316371, + "thread": 13 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 3521924, + "thread": 7 + } + }, + { + "amount": "218.092230175", + "slot": { + "period": 3773163, + "thread": 19 + } + }, + { + "amount": "218.092230171", + "slot": { + "period": 3812732, + "thread": 6 + } + } + ], + "AU12GdUqxTWkSGr93hWPtptGs3xMZtJP5VVY8bPYuj6hGNbrgyVQG": [ + { + "amount": "319.723462827", + "slot": { + "period": 114477, + "thread": 11 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 251867, + "thread": 25 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 488729, + "thread": 6 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 593880, + "thread": 8 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 735945, + "thread": 13 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 894105, + "thread": 3 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1119844, + "thread": 30 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1288285, + "thread": 16 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1352660, + "thread": 16 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1606084, + "thread": 19 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1744457, + "thread": 18 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 1868966, + "thread": 9 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2134074, + "thread": 9 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2272184, + "thread": 25 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2364064, + "thread": 28 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2466322, + "thread": 26 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2626583, + "thread": 1 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 2839595, + "thread": 12 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 3069389, + "thread": 10 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 3230603, + "thread": 2 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 3344682, + "thread": 28 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 3537738, + "thread": 16 + } + }, + { + "amount": "319.723462827", + "slot": { + "period": 3696089, + "thread": 19 + } + }, + { + "amount": "319.723462832", + "slot": { + "period": 3831375, + "thread": 15 + } + } + ], + "AU12GeXmCJcc8BehXzrQcyKFs4S3BsBQPuMdy4UVBgYFfiBBJaDWd": [ + { + "amount": "137.031854889", + "slot": { + "period": 141092, + "thread": 4 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 307606, + "thread": 17 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 346833, + "thread": 23 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 562489, + "thread": 17 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 760638, + "thread": 20 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 966101, + "thread": 13 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 983049, + "thread": 21 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 1237488, + "thread": 18 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 1447773, + "thread": 0 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 1611393, + "thread": 28 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 1683081, + "thread": 28 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 1886989, + "thread": 0 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2116092, + "thread": 26 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2292240, + "thread": 9 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2307579, + "thread": 12 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2577582, + "thread": 1 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2645260, + "thread": 27 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 2838706, + "thread": 20 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 3105423, + "thread": 29 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 3263659, + "thread": 19 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 3439276, + "thread": 28 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 3527088, + "thread": 14 + } + }, + { + "amount": "137.031854889", + "slot": { + "period": 3729485, + "thread": 10 + } + }, + { + "amount": "137.031854884", + "slot": { + "period": 3922221, + "thread": 7 + } + } + ], + "AU12Gf7qoaYyhk5gawZu9etLh7c7iFn96ZpHv8eXfcxcifPZ6czbU": [ + { + "amount": "386.531554141", + "slot": { + "period": 134981, + "thread": 17 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 320157, + "thread": 5 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 356839, + "thread": 11 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 493396, + "thread": 19 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 788186, + "thread": 18 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 973929, + "thread": 24 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1019370, + "thread": 4 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1200912, + "thread": 9 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1441566, + "thread": 10 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1619298, + "thread": 4 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1762576, + "thread": 26 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 1882176, + "thread": 8 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2068284, + "thread": 24 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2287115, + "thread": 4 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2455949, + "thread": 16 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2572962, + "thread": 16 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2734652, + "thread": 27 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 2949027, + "thread": 11 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 3055523, + "thread": 9 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 3196380, + "thread": 7 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 3438645, + "thread": 4 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 3562014, + "thread": 11 + } + }, + { + "amount": "386.531554141", + "slot": { + "period": 3642635, + "thread": 21 + } + }, + { + "amount": "386.531554142", + "slot": { + "period": 3915372, + "thread": 21 + } + } + ], + "AU12GfDGCnUUeHgRoPuqYCkDj4uV79bJHUw4g7N2oroBiVSzQG4rW": [ + { + "amount": "206.083812039", + "slot": { + "period": 72998, + "thread": 27 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 295591, + "thread": 9 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 369040, + "thread": 23 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 608504, + "thread": 24 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 770926, + "thread": 5 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 850486, + "thread": 17 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1049955, + "thread": 7 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1197793, + "thread": 13 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1466253, + "thread": 21 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1571462, + "thread": 6 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1754750, + "thread": 30 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 1939771, + "thread": 10 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2084018, + "thread": 11 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2155792, + "thread": 31 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2407137, + "thread": 24 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2568401, + "thread": 31 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2756243, + "thread": 17 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 2900768, + "thread": 17 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 3092635, + "thread": 12 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 3263036, + "thread": 0 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 3379215, + "thread": 17 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 3547259, + "thread": 23 + } + }, + { + "amount": "206.083812039", + "slot": { + "period": 3636952, + "thread": 31 + } + }, + { + "amount": "206.083812050", + "slot": { + "period": 3942006, + "thread": 26 + } + } + ], + "AU12GfaLdJgk9pAbQqot2aqL5YZ3635cSywxUXiBJ3aEbbW9ZgMYK": [ + { + "amount": "363.392130931", + "slot": { + "period": 75270, + "thread": 23 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 232330, + "thread": 16 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 417749, + "thread": 1 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 587412, + "thread": 29 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 719146, + "thread": 8 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 884727, + "thread": 24 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1101378, + "thread": 2 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1231931, + "thread": 20 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1378020, + "thread": 15 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1620858, + "thread": 23 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1768791, + "thread": 16 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 1868028, + "thread": 20 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2099910, + "thread": 6 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2272530, + "thread": 26 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2381252, + "thread": 15 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2508024, + "thread": 30 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2632776, + "thread": 28 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 2794483, + "thread": 12 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 3045260, + "thread": 22 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 3267353, + "thread": 23 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 3307959, + "thread": 15 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 3590121, + "thread": 22 + } + }, + { + "amount": "363.392130931", + "slot": { + "period": 3639052, + "thread": 3 + } + }, + { + "amount": "363.392130920", + "slot": { + "period": 3920633, + "thread": 26 + } + } + ], + "AU12GgarBUNuuw4FVWQ8LMrFF8BPCmaRaRsSK2s6JPweLpbHZozG8": [ + { + "amount": "122.299782494", + "slot": { + "period": 131354, + "thread": 21 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 231720, + "thread": 5 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 483269, + "thread": 20 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 524355, + "thread": 31 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 688278, + "thread": 14 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 978855, + "thread": 22 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 989579, + "thread": 12 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1199477, + "thread": 15 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1407238, + "thread": 21 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1546744, + "thread": 19 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1668325, + "thread": 13 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1835252, + "thread": 29 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 1994449, + "thread": 22 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 2247481, + "thread": 11 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 2455728, + "thread": 24 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 2541008, + "thread": 11 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 2702378, + "thread": 28 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 2942235, + "thread": 16 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 3079844, + "thread": 25 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 3276234, + "thread": 29 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 3434767, + "thread": 1 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 3593788, + "thread": 10 + } + }, + { + "amount": "122.299782494", + "slot": { + "period": 3767146, + "thread": 7 + } + }, + { + "amount": "122.299782482", + "slot": { + "period": 3865540, + "thread": 29 + } + } + ], + "AU12GhPkhakDFWM4mi2NLFEYaaGmV6qHjZ2u1GHpJq8kGsoh7HX6Y": [ + { + "amount": "458.751046799", + "slot": { + "period": 98434, + "thread": 21 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 284336, + "thread": 14 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 427810, + "thread": 26 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 638317, + "thread": 6 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 751344, + "thread": 4 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 849445, + "thread": 13 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1124771, + "thread": 14 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1263850, + "thread": 23 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1402173, + "thread": 7 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1545413, + "thread": 8 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1752188, + "thread": 10 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 1943578, + "thread": 22 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2138540, + "thread": 15 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2153416, + "thread": 23 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2376682, + "thread": 11 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2564066, + "thread": 1 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2745340, + "thread": 10 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 2824765, + "thread": 15 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 3116065, + "thread": 12 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 3288255, + "thread": 26 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 3408570, + "thread": 7 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 3524265, + "thread": 2 + } + }, + { + "amount": "458.751046799", + "slot": { + "period": 3680176, + "thread": 9 + } + }, + { + "amount": "458.751046798", + "slot": { + "period": 3907931, + "thread": 19 + } + } + ], + "AU12GhvLmZNrS6Rai3YDqRQ5c9F13xFuYYCaHCru4CgRZmE5vWHHb": [ + { + "amount": "152.768777562", + "slot": { + "period": 97985, + "thread": 8 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 227279, + "thread": 24 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 327940, + "thread": 1 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 586255, + "thread": 28 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 686936, + "thread": 3 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 890729, + "thread": 1 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1060601, + "thread": 9 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1220103, + "thread": 28 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1449328, + "thread": 4 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1614811, + "thread": 8 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1798776, + "thread": 7 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1815901, + "thread": 9 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 1987437, + "thread": 14 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 2216726, + "thread": 1 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 2446602, + "thread": 27 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 2585236, + "thread": 30 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 2746998, + "thread": 15 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 2825494, + "thread": 21 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 3010118, + "thread": 8 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 3189071, + "thread": 7 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 3406023, + "thread": 11 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 3490017, + "thread": 1 + } + }, + { + "amount": "152.768777562", + "slot": { + "period": 3728386, + "thread": 4 + } + }, + { + "amount": "152.768777567", + "slot": { + "period": 3791404, + "thread": 27 + } + } + ], + "AU12Gid1vd1kKtEFkX9NGk4poU8JWFQ6czLWtMBNmdSZUGS27EWrB": [ + { + "amount": "97.063820990", + "slot": { + "period": 160388, + "thread": 30 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 260075, + "thread": 8 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 430900, + "thread": 6 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 593441, + "thread": 9 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 667071, + "thread": 24 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 843647, + "thread": 21 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1099296, + "thread": 19 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1249706, + "thread": 3 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1409245, + "thread": 10 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1570475, + "thread": 3 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1691882, + "thread": 13 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 1973205, + "thread": 14 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2022613, + "thread": 22 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2185799, + "thread": 19 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2396696, + "thread": 4 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2595987, + "thread": 18 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2756901, + "thread": 3 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2862738, + "thread": 11 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 2970542, + "thread": 22 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 3282279, + "thread": 0 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 3381278, + "thread": 19 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 3613395, + "thread": 3 + } + }, + { + "amount": "97.063820990", + "slot": { + "period": 3667759, + "thread": 14 + } + }, + { + "amount": "97.063821002", + "slot": { + "period": 3912100, + "thread": 18 + } + } + ], + "AU12GiwmdUSoLVZ9y4RbnmttJ6ZNmXjdVix4wxZJRoeViMPKb9vTE": [ + { + "amount": "97.122661831", + "slot": { + "period": 106156, + "thread": 2 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 315924, + "thread": 16 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 388719, + "thread": 20 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 543035, + "thread": 16 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 695685, + "thread": 9 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 874916, + "thread": 15 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1072844, + "thread": 26 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1286894, + "thread": 18 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1371207, + "thread": 6 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1630356, + "thread": 5 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1655464, + "thread": 5 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1943571, + "thread": 2 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 1983755, + "thread": 26 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 2270953, + "thread": 15 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 2431772, + "thread": 19 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 2465552, + "thread": 6 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 2765836, + "thread": 27 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 2892582, + "thread": 3 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 3024568, + "thread": 10 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 3170847, + "thread": 6 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 3323814, + "thread": 30 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 3515343, + "thread": 25 + } + }, + { + "amount": "97.122661831", + "slot": { + "period": 3677944, + "thread": 0 + } + }, + { + "amount": "97.122661835", + "slot": { + "period": 3877099, + "thread": 10 + } + } + ], + "AU12GjfSd14mkmg9PxNQkpwQvCsqtVKK3pV7QUuLY4QVJaq6P6sGA": [ + { + "amount": "251.201468940", + "slot": { + "period": 159160, + "thread": 8 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 301937, + "thread": 22 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 409971, + "thread": 23 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 537538, + "thread": 21 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 721834, + "thread": 23 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 905400, + "thread": 4 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1043734, + "thread": 20 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1223697, + "thread": 13 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1461659, + "thread": 3 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1592870, + "thread": 8 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1749799, + "thread": 7 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 1879462, + "thread": 18 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2011937, + "thread": 27 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2181922, + "thread": 24 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2337140, + "thread": 6 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2514152, + "thread": 27 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2741127, + "thread": 22 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 2806680, + "thread": 25 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 3067820, + "thread": 20 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 3126293, + "thread": 30 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 3317335, + "thread": 9 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 3597032, + "thread": 20 + } + }, + { + "amount": "251.201468940", + "slot": { + "period": 3623343, + "thread": 8 + } + }, + { + "amount": "251.201468942", + "slot": { + "period": 3838786, + "thread": 12 + } + } + ], + "AU12GjfnwRexWaDCZ48xzDtcDbW4M43dLofYvzPgJgbjnwgFu1VNc": [ + { + "amount": "228.404246709", + "slot": { + "period": 26163, + "thread": 7 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 247459, + "thread": 18 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 427506, + "thread": 4 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 534522, + "thread": 25 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 820133, + "thread": 29 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 886179, + "thread": 8 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1100834, + "thread": 29 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1286174, + "thread": 29 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1430754, + "thread": 5 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1549353, + "thread": 12 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1745896, + "thread": 15 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 1843569, + "thread": 18 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2045467, + "thread": 22 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2243966, + "thread": 2 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2430067, + "thread": 22 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2597273, + "thread": 26 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2709632, + "thread": 24 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 2813565, + "thread": 6 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3064626, + "thread": 4 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3277243, + "thread": 18 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3349203, + "thread": 31 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3502398, + "thread": 10 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3726828, + "thread": 22 + } + }, + { + "amount": "228.404246709", + "slot": { + "period": 3876060, + "thread": 6 + } + } + ], + "AU12GkGdafu7Fy5Xx9UUpJvc6M7RWd5XiXuj64MBepY9yYL3n27xt": [ + { + "amount": "237.092027530", + "slot": { + "period": 94961, + "thread": 17 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 196107, + "thread": 15 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 375935, + "thread": 31 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 639212, + "thread": 8 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 818650, + "thread": 24 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 825963, + "thread": 22 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1122063, + "thread": 18 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1229579, + "thread": 28 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1354608, + "thread": 21 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1567220, + "thread": 26 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1756436, + "thread": 8 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1946552, + "thread": 9 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 1990126, + "thread": 10 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 2178168, + "thread": 16 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 2330082, + "thread": 26 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 2536121, + "thread": 21 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 2636796, + "thread": 28 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 2813779, + "thread": 29 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 3032514, + "thread": 24 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 3234179, + "thread": 11 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 3447903, + "thread": 17 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 3510576, + "thread": 18 + } + }, + { + "amount": "237.092027530", + "slot": { + "period": 3757110, + "thread": 14 + } + }, + { + "amount": "237.092027521", + "slot": { + "period": 3795968, + "thread": 0 + } + } + ], + "AU12GkGqHVEY8Ra9CyutvVMm7ghnvuuMqvs5GHD2dCqnuN9PyecrH": [ + { + "amount": "279.041694778", + "slot": { + "period": 146286, + "thread": 7 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 290877, + "thread": 4 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 452594, + "thread": 23 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 492272, + "thread": 16 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 700735, + "thread": 14 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 902215, + "thread": 11 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1016606, + "thread": 6 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1289915, + "thread": 4 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1408391, + "thread": 7 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1521785, + "thread": 9 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1745874, + "thread": 5 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 1914697, + "thread": 9 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2125105, + "thread": 13 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2174758, + "thread": 3 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2398826, + "thread": 30 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2530844, + "thread": 24 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2728539, + "thread": 3 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 2909934, + "thread": 29 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 3022194, + "thread": 14 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 3283331, + "thread": 15 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 3425321, + "thread": 21 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 3507198, + "thread": 22 + } + }, + { + "amount": "279.041694778", + "slot": { + "period": 3761492, + "thread": 9 + } + }, + { + "amount": "279.041694783", + "slot": { + "period": 3840038, + "thread": 3 + } + } + ], + "AU12GkSM8vM2gY8uybobDmaWKjEqE7W3YC4fo4JaeybwASi8MV3ML": [ + { + "amount": "167.935863705", + "slot": { + "period": 42141, + "thread": 25 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 309107, + "thread": 1 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 399054, + "thread": 6 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 611475, + "thread": 6 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 755583, + "thread": 11 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 934684, + "thread": 22 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1103448, + "thread": 2 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1206160, + "thread": 26 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1394352, + "thread": 19 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1528721, + "thread": 10 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1720547, + "thread": 27 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 1818662, + "thread": 12 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2139290, + "thread": 8 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2244219, + "thread": 13 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2337514, + "thread": 16 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2596181, + "thread": 0 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2744984, + "thread": 10 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 2829647, + "thread": 7 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 3055117, + "thread": 14 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 3220611, + "thread": 20 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 3353168, + "thread": 20 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 3544233, + "thread": 2 + } + }, + { + "amount": "167.935863705", + "slot": { + "period": 3717256, + "thread": 15 + } + }, + { + "amount": "167.935863702", + "slot": { + "period": 3935247, + "thread": 28 + } + } + ], + "AU12GkYYWiWoqLXEjdh7YbLo1qUXr3hDyYDxUEdRh84wkdqA8bk3X": [ + { + "amount": "215.311180469", + "slot": { + "period": 79026, + "thread": 20 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 180898, + "thread": 5 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 336079, + "thread": 8 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 564927, + "thread": 1 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 779461, + "thread": 25 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 872263, + "thread": 29 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1009303, + "thread": 9 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1249471, + "thread": 15 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1323175, + "thread": 23 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1558545, + "thread": 13 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1689667, + "thread": 1 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 1903182, + "thread": 6 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2120199, + "thread": 22 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2290227, + "thread": 22 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2364846, + "thread": 22 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2594437, + "thread": 21 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2760779, + "thread": 2 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 2893049, + "thread": 22 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 3021180, + "thread": 2 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 3257569, + "thread": 23 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 3319142, + "thread": 0 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 3570306, + "thread": 21 + } + }, + { + "amount": "215.311180469", + "slot": { + "period": 3735022, + "thread": 14 + } + }, + { + "amount": "215.311180463", + "slot": { + "period": 3847352, + "thread": 4 + } + } + ], + "AU12Gm6vfn1cwbpCA6wpCDaqZWSXiANiUgEyAnehYq4Krdz58Mqw2": [ + { + "amount": "421.793843105", + "slot": { + "period": 107411, + "thread": 29 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 190410, + "thread": 3 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 344845, + "thread": 18 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 638002, + "thread": 17 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 790314, + "thread": 3 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 959536, + "thread": 27 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1149378, + "thread": 27 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1189102, + "thread": 31 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1360213, + "thread": 21 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1510435, + "thread": 31 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1687934, + "thread": 24 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 1837698, + "thread": 23 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2129157, + "thread": 14 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2234111, + "thread": 16 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2389426, + "thread": 24 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2476999, + "thread": 3 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2703007, + "thread": 23 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2845405, + "thread": 7 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 2997037, + "thread": 3 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 3207597, + "thread": 19 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 3436729, + "thread": 14 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 3568371, + "thread": 20 + } + }, + { + "amount": "421.793843105", + "slot": { + "period": 3631279, + "thread": 10 + } + }, + { + "amount": "421.793843112", + "slot": { + "period": 3884669, + "thread": 12 + } + } + ], + "AU12GmAGvQqnLP7XbhucDMRAV125rvGsPaou2hkVqyAKTk72RJBZG": [ + { + "amount": "370.145275679", + "slot": { + "period": 136347, + "thread": 0 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 231932, + "thread": 15 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 407601, + "thread": 23 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 514254, + "thread": 19 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 654025, + "thread": 5 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 946362, + "thread": 6 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 996424, + "thread": 0 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 1259950, + "thread": 22 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 1457806, + "thread": 22 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 1629607, + "thread": 14 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 1747466, + "thread": 28 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 1958757, + "thread": 15 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2088966, + "thread": 17 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2257374, + "thread": 28 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2411682, + "thread": 30 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2496152, + "thread": 16 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2670303, + "thread": 18 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 2866746, + "thread": 13 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 3086714, + "thread": 2 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 3224792, + "thread": 14 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 3337443, + "thread": 31 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 3453949, + "thread": 27 + } + }, + { + "amount": "370.145275679", + "slot": { + "period": 3746064, + "thread": 16 + } + }, + { + "amount": "370.145275674", + "slot": { + "period": 3791174, + "thread": 30 + } + } + ], + "AU12Gmzn86Ev8Yjs6CH7CTnCu1dD3PQqMtBdu8gZYx3rLPzF3nhEr": [ + { + "amount": "109.013578824", + "slot": { + "period": 62396, + "thread": 11 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 219770, + "thread": 4 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 468870, + "thread": 25 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 617638, + "thread": 0 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 680754, + "thread": 3 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 882702, + "thread": 21 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1062935, + "thread": 23 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1231321, + "thread": 23 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1424123, + "thread": 16 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1622104, + "thread": 24 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1705581, + "thread": 19 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 1958404, + "thread": 14 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2122898, + "thread": 15 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2221187, + "thread": 22 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2420363, + "thread": 12 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2602442, + "thread": 5 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2769823, + "thread": 18 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2797813, + "thread": 16 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 2959403, + "thread": 24 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 3176827, + "thread": 12 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 3345328, + "thread": 0 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 3534652, + "thread": 28 + } + }, + { + "amount": "109.013578824", + "slot": { + "period": 3748909, + "thread": 11 + } + }, + { + "amount": "109.013578835", + "slot": { + "period": 3878331, + "thread": 21 + } + } + ], + "AU12GnLHbdEPU3apiWW48eqfjA6p8qUaAqwLUbmyn3qN1pGvsuyFj": [ + { + "amount": "184.818137272", + "slot": { + "period": 16869, + "thread": 2 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 173297, + "thread": 28 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 395789, + "thread": 14 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 561259, + "thread": 4 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 751734, + "thread": 7 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 827647, + "thread": 16 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1016128, + "thread": 27 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1153813, + "thread": 0 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1338241, + "thread": 27 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1594609, + "thread": 18 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1789160, + "thread": 21 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 1976180, + "thread": 14 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2002193, + "thread": 11 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2216262, + "thread": 9 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2427633, + "thread": 15 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2591421, + "thread": 14 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2686525, + "thread": 30 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 2793309, + "thread": 19 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 3065899, + "thread": 31 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 3174293, + "thread": 21 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 3399509, + "thread": 17 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 3522453, + "thread": 11 + } + }, + { + "amount": "184.818137272", + "slot": { + "period": 3668994, + "thread": 1 + } + }, + { + "amount": "184.818137274", + "slot": { + "period": 3931465, + "thread": 0 + } + } + ], + "AU12GnmPgy5U5pQicZsvA18YYVuBAPub4JiZ81tDX5WtPqyyRCn8W": [ + { + "amount": "120.361254080", + "slot": { + "period": 150994, + "thread": 19 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 229732, + "thread": 30 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 389265, + "thread": 29 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 644220, + "thread": 22 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 750368, + "thread": 30 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 940673, + "thread": 7 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1067578, + "thread": 16 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1191615, + "thread": 13 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1391558, + "thread": 2 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1523007, + "thread": 14 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1687025, + "thread": 13 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 1896441, + "thread": 1 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2087203, + "thread": 8 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2203772, + "thread": 25 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2311560, + "thread": 1 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2587280, + "thread": 26 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2784474, + "thread": 28 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 2853079, + "thread": 27 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 3082782, + "thread": 4 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 3150038, + "thread": 18 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 3398687, + "thread": 4 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 3506380, + "thread": 25 + } + }, + { + "amount": "120.361254080", + "slot": { + "period": 3672785, + "thread": 14 + } + }, + { + "amount": "120.361254092", + "slot": { + "period": 3863140, + "thread": 3 + } + } + ], + "AU12Go8pxdEDKTshT6824uNK4CJxiq2FDwHTJ2ahzFWssAsBPetPC": [ + { + "amount": "86.760733016", + "slot": { + "period": 16385, + "thread": 31 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 266886, + "thread": 8 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 374618, + "thread": 27 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 642275, + "thread": 23 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 820145, + "thread": 6 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 884813, + "thread": 31 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1110900, + "thread": 3 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1302701, + "thread": 5 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1436589, + "thread": 24 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1562543, + "thread": 8 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1730065, + "thread": 20 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 1895863, + "thread": 12 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2121083, + "thread": 17 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2274064, + "thread": 14 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2335787, + "thread": 12 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2620221, + "thread": 6 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2662203, + "thread": 15 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2886405, + "thread": 2 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 2997982, + "thread": 5 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 3241013, + "thread": 27 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 3295316, + "thread": 4 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 3477747, + "thread": 5 + } + }, + { + "amount": "86.760733016", + "slot": { + "period": 3647869, + "thread": 20 + } + }, + { + "amount": "86.760733006", + "slot": { + "period": 3840556, + "thread": 3 + } + } + ], + "AU12Gp5Fmgttr2vtmv9onaYzjUtziPHTGgwktD1GQUgvuPNfNpTb": [ + { + "amount": "309.162962461", + "slot": { + "period": 110382, + "thread": 26 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 190754, + "thread": 13 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 377975, + "thread": 14 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 603828, + "thread": 15 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 769603, + "thread": 28 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 971323, + "thread": 30 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1105097, + "thread": 2 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1220544, + "thread": 17 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1471602, + "thread": 3 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1546552, + "thread": 23 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1792755, + "thread": 23 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 1819211, + "thread": 6 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2058203, + "thread": 30 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2167854, + "thread": 26 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2304350, + "thread": 14 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2569819, + "thread": 30 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2674099, + "thread": 25 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2857551, + "thread": 18 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 2982830, + "thread": 1 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 3205998, + "thread": 28 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 3422782, + "thread": 24 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 3489334, + "thread": 26 + } + }, + { + "amount": "309.162962461", + "slot": { + "period": 3724531, + "thread": 17 + } + }, + { + "amount": "309.162962453", + "slot": { + "period": 3806053, + "thread": 28 + } + } + ], + "AU12Gpte46B9dxhM1fzcYwEaTYUDCqaGwepCZjpvwxY1njEDnNuHJ": [ + { + "amount": "269.270347976", + "slot": { + "period": 35435, + "thread": 21 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 270545, + "thread": 15 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 399942, + "thread": 20 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 618556, + "thread": 17 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 676130, + "thread": 8 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 867640, + "thread": 18 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1149352, + "thread": 19 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1259058, + "thread": 9 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1355385, + "thread": 7 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1483130, + "thread": 10 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1670256, + "thread": 0 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 1951430, + "thread": 6 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2017642, + "thread": 19 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2152040, + "thread": 18 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2388109, + "thread": 22 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2566816, + "thread": 11 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2638603, + "thread": 27 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 2839075, + "thread": 2 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 3106509, + "thread": 23 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 3267298, + "thread": 30 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 3301235, + "thread": 17 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 3592449, + "thread": 26 + } + }, + { + "amount": "269.270347976", + "slot": { + "period": 3701169, + "thread": 17 + } + }, + { + "amount": "269.270347964", + "slot": { + "period": 3813003, + "thread": 31 + } + } + ], + "AU12GqjTLVpwWKWZGJoAAoJCbH8jnxQzAXMJ8etZ85VMSRmjJGE9C": [ + { + "amount": "115.479575348", + "slot": { + "period": 109406, + "thread": 26 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 202758, + "thread": 4 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 469736, + "thread": 16 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 604304, + "thread": 21 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 799786, + "thread": 17 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 932476, + "thread": 0 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1093742, + "thread": 5 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1180949, + "thread": 1 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1346846, + "thread": 25 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1487906, + "thread": 19 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1807547, + "thread": 17 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 1912580, + "thread": 19 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2069039, + "thread": 0 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2216052, + "thread": 3 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2330451, + "thread": 4 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2539823, + "thread": 0 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2662332, + "thread": 7 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 2802881, + "thread": 5 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 3032191, + "thread": 21 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 3143612, + "thread": 14 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 3357651, + "thread": 27 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 3605400, + "thread": 2 + } + }, + { + "amount": "115.479575348", + "slot": { + "period": 3710924, + "thread": 22 + } + }, + { + "amount": "115.479575351", + "slot": { + "period": 3862830, + "thread": 18 + } + } + ], + "AU12GsZFQFzqBUvTmNiwCwoKYzUAqYVzzFZDwcRqiu6dR2mCdwd5d": [ + { + "amount": "260.473060702", + "slot": { + "period": 141496, + "thread": 25 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 168571, + "thread": 5 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 467648, + "thread": 13 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 500805, + "thread": 31 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 789018, + "thread": 21 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 950676, + "thread": 28 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1125871, + "thread": 20 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1289970, + "thread": 27 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1414435, + "thread": 2 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1546724, + "thread": 0 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1756821, + "thread": 20 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 1812315, + "thread": 0 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2023464, + "thread": 9 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2241192, + "thread": 18 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2432172, + "thread": 13 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2529301, + "thread": 19 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2709454, + "thread": 19 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 2945972, + "thread": 25 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 3098881, + "thread": 23 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 3193769, + "thread": 24 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 3309329, + "thread": 9 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 3538182, + "thread": 11 + } + }, + { + "amount": "260.473060702", + "slot": { + "period": 3724957, + "thread": 5 + } + }, + { + "amount": "260.473060714", + "slot": { + "period": 3862245, + "thread": 1 + } + } + ], + "AU12Gsi2uHTMjTd2c79VjLki9KtVu2Js2e4wnoZjXFvd3gWdHXaFa": [ + { + "amount": "130.910316389", + "slot": { + "period": 88206, + "thread": 21 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 304881, + "thread": 16 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 423818, + "thread": 12 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 649730, + "thread": 23 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 705555, + "thread": 7 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 911697, + "thread": 4 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1002977, + "thread": 23 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1233437, + "thread": 6 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1332657, + "thread": 29 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1599492, + "thread": 1 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1791902, + "thread": 12 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 1824183, + "thread": 15 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2068940, + "thread": 31 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2265691, + "thread": 1 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2430244, + "thread": 24 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2610014, + "thread": 28 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2630619, + "thread": 6 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 2827331, + "thread": 26 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 3105466, + "thread": 1 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 3249181, + "thread": 17 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 3335668, + "thread": 31 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 3605749, + "thread": 18 + } + }, + { + "amount": "130.910316389", + "slot": { + "period": 3727981, + "thread": 0 + } + }, + { + "amount": "130.910316400", + "slot": { + "period": 3874336, + "thread": 1 + } + } + ], + "AU12Gu2DKE9Vppp4DhLwMSLiMS9EQ1aDwpQtqVtxJPYxdrA4AFVNA": [ + { + "amount": "56.708717371", + "slot": { + "period": 44717, + "thread": 7 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 282003, + "thread": 12 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 361320, + "thread": 13 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 508440, + "thread": 3 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 800576, + "thread": 28 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 940860, + "thread": 11 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1106078, + "thread": 25 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1205813, + "thread": 16 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1460938, + "thread": 26 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1526695, + "thread": 2 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1763288, + "thread": 22 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 1867369, + "thread": 1 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2128571, + "thread": 13 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2145377, + "thread": 26 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2342916, + "thread": 18 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2470671, + "thread": 23 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2628292, + "thread": 16 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 2913805, + "thread": 11 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 3030885, + "thread": 16 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 3165045, + "thread": 23 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 3438820, + "thread": 16 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 3541215, + "thread": 28 + } + }, + { + "amount": "56.708717371", + "slot": { + "period": 3687040, + "thread": 23 + } + }, + { + "amount": "56.708717366", + "slot": { + "period": 3944677, + "thread": 25 + } + } + ], + "AU12GuDvw9P7cYZ3gCGvC8aL2UJ8npTcVq7jPioGCC4vwuY31r48g": [ + { + "amount": "279.991757261", + "slot": { + "period": 154296, + "thread": 19 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 195360, + "thread": 24 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 471044, + "thread": 13 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 529654, + "thread": 11 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 753370, + "thread": 30 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 880102, + "thread": 13 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1096713, + "thread": 10 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1165658, + "thread": 21 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1442104, + "thread": 9 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1583703, + "thread": 13 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1766601, + "thread": 3 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 1954734, + "thread": 25 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2075175, + "thread": 26 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2271040, + "thread": 27 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2318892, + "thread": 8 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2534582, + "thread": 7 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2681153, + "thread": 8 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 2827120, + "thread": 9 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 3018486, + "thread": 25 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 3126290, + "thread": 28 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 3450522, + "thread": 16 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 3461847, + "thread": 3 + } + }, + { + "amount": "279.991757261", + "slot": { + "period": 3772920, + "thread": 14 + } + }, + { + "amount": "279.991757262", + "slot": { + "period": 3799995, + "thread": 7 + } + } + ], + "AU12GuHgQaj3zL96NUyST8s45uAJLK134gqd8xoW97S3bXEN9iQWM": [ + { + "amount": "453.122702858", + "slot": { + "period": 103375, + "thread": 9 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 304040, + "thread": 18 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 406549, + "thread": 4 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 535557, + "thread": 3 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 674643, + "thread": 31 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 876063, + "thread": 25 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1013337, + "thread": 0 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1158646, + "thread": 13 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1393533, + "thread": 30 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1522649, + "thread": 25 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1755907, + "thread": 31 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 1863790, + "thread": 30 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2021268, + "thread": 30 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2145432, + "thread": 31 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2360813, + "thread": 8 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2467401, + "thread": 4 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2627817, + "thread": 15 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 2915375, + "thread": 29 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 3100216, + "thread": 1 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 3173195, + "thread": 11 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 3295752, + "thread": 7 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 3514370, + "thread": 8 + } + }, + { + "amount": "453.122702858", + "slot": { + "period": 3619354, + "thread": 3 + } + }, + { + "amount": "453.122702852", + "slot": { + "period": 3806295, + "thread": 23 + } + } + ], + "AU12GupuJfKfUbFZJnsntdgHU94Jryc9ejvjxMJZQUcjokmyYKjJc": [ + { + "amount": "371.143383312", + "slot": { + "period": 157202, + "thread": 13 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 319791, + "thread": 16 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 324230, + "thread": 28 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 491587, + "thread": 0 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 661012, + "thread": 19 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 833888, + "thread": 25 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 985297, + "thread": 31 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 1282675, + "thread": 18 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 1440012, + "thread": 22 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 1622803, + "thread": 5 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 1759088, + "thread": 11 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 1840463, + "thread": 9 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2133816, + "thread": 13 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2253252, + "thread": 20 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2355329, + "thread": 31 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2608858, + "thread": 18 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2733457, + "thread": 10 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 2823138, + "thread": 19 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 3055846, + "thread": 3 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 3193810, + "thread": 18 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 3397037, + "thread": 21 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 3457771, + "thread": 25 + } + }, + { + "amount": "371.143383312", + "slot": { + "period": 3678672, + "thread": 22 + } + }, + { + "amount": "371.143383317", + "slot": { + "period": 3910195, + "thread": 26 + } + } + ], + "AU12GuuBv3pbaixj1HHPxH1DE5PxtAURxCo7eUgtVsqg73mQPSpbi": [ + { + "amount": "160.241788304", + "slot": { + "period": 54471, + "thread": 31 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 281679, + "thread": 13 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 416537, + "thread": 0 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 514833, + "thread": 21 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 796265, + "thread": 1 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 971453, + "thread": 16 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1073163, + "thread": 9 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1302076, + "thread": 13 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1376456, + "thread": 4 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1506897, + "thread": 28 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1738175, + "thread": 6 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 1846669, + "thread": 17 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2063228, + "thread": 22 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2238605, + "thread": 10 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2445371, + "thread": 9 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2513754, + "thread": 27 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2733431, + "thread": 5 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 2812027, + "thread": 31 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 3103799, + "thread": 1 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 3133917, + "thread": 3 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 3425477, + "thread": 26 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 3555707, + "thread": 1 + } + }, + { + "amount": "160.241788304", + "slot": { + "period": 3734734, + "thread": 4 + } + }, + { + "amount": "160.241788306", + "slot": { + "period": 3928843, + "thread": 5 + } + } + ], + "AU12GvY3tvhJqVN2yZmL8htxP9vwiyriT2cyzah2QKozjKEqHaWRo": [ + { + "amount": "252.124259777", + "slot": { + "period": 160256, + "thread": 28 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 209350, + "thread": 16 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 475983, + "thread": 26 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 594034, + "thread": 19 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 747813, + "thread": 16 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 870324, + "thread": 29 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1073806, + "thread": 11 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1219449, + "thread": 26 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1412856, + "thread": 22 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1583204, + "thread": 17 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1785375, + "thread": 20 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 1815966, + "thread": 6 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2059950, + "thread": 30 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2181967, + "thread": 15 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2335106, + "thread": 22 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2601171, + "thread": 3 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2786976, + "thread": 8 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2915402, + "thread": 3 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 2973383, + "thread": 17 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 3197702, + "thread": 13 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 3434526, + "thread": 27 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 3555959, + "thread": 18 + } + }, + { + "amount": "252.124259777", + "slot": { + "period": 3776444, + "thread": 9 + } + }, + { + "amount": "252.124259780", + "slot": { + "period": 3875916, + "thread": 5 + } + } + ], + "AU12GwbikSnzrK73TTc63fM8Z9Ci2nY6ENAE6QBaQ7gbUNTZohxFS": [ + { + "amount": "150.672596989", + "slot": { + "period": 24317, + "thread": 9 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 178537, + "thread": 1 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 458930, + "thread": 7 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 583741, + "thread": 19 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 720341, + "thread": 8 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 858159, + "thread": 4 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1115977, + "thread": 13 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1266958, + "thread": 30 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1416926, + "thread": 7 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1575194, + "thread": 9 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1801220, + "thread": 19 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 1901327, + "thread": 17 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2085494, + "thread": 29 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2188418, + "thread": 28 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2353161, + "thread": 24 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2621111, + "thread": 17 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2723762, + "thread": 5 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 2835330, + "thread": 22 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 3050398, + "thread": 6 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 3166017, + "thread": 7 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 3366901, + "thread": 17 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 3564784, + "thread": 6 + } + }, + { + "amount": "150.672596989", + "slot": { + "period": 3670570, + "thread": 11 + } + }, + { + "amount": "150.672596992", + "slot": { + "period": 3917997, + "thread": 20 + } + } + ], + "AU12Gx4Szq228wtJu3tZH7ZmLLNKWovoGVsBoyh8akJnhiP2HrkQh": [ + { + "amount": "231.831184880", + "slot": { + "period": 54099, + "thread": 26 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 247604, + "thread": 6 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 457569, + "thread": 12 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 571452, + "thread": 9 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 731384, + "thread": 14 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 911039, + "thread": 25 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1067186, + "thread": 20 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1240579, + "thread": 9 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1385736, + "thread": 22 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1576026, + "thread": 6 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1682087, + "thread": 29 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 1903838, + "thread": 8 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2069167, + "thread": 13 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2232760, + "thread": 4 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2450761, + "thread": 27 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2527301, + "thread": 31 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2684219, + "thread": 10 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 2926404, + "thread": 2 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 3042134, + "thread": 7 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 3271648, + "thread": 28 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 3399982, + "thread": 7 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 3533427, + "thread": 7 + } + }, + { + "amount": "231.831184880", + "slot": { + "period": 3653201, + "thread": 4 + } + }, + { + "amount": "231.831184874", + "slot": { + "period": 3884535, + "thread": 10 + } + } + ], + "AU12GyCG771EdQnj3kiNo9NaUkBp7jHNoCyCn5BsELSAMgN46ku1f": [ + { + "amount": "17484.833333333", + "slot": { + "period": 81692, + "thread": 21 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 230946, + "thread": 19 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 478465, + "thread": 15 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 634901, + "thread": 30 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 794041, + "thread": 9 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 826739, + "thread": 4 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1054159, + "thread": 1 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1220201, + "thread": 5 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1377499, + "thread": 3 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1539357, + "thread": 24 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1746050, + "thread": 17 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1881787, + "thread": 3 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 1986785, + "thread": 7 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 2255806, + "thread": 5 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 2408818, + "thread": 30 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 2524935, + "thread": 23 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 2758144, + "thread": 29 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 2840303, + "thread": 12 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 3054156, + "thread": 24 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 3194053, + "thread": 19 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 3395252, + "thread": 10 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 3587707, + "thread": 18 + } + }, + { + "amount": "17484.833333333", + "slot": { + "period": 3694474, + "thread": 18 + } + }, + { + "amount": "17484.833333341", + "slot": { + "period": 3875624, + "thread": 0 + } + } + ], + "AU12GyR8RtFuekUdyDpwVBuC8WUw1tGEuxA2TJvM4Gq7s9xg5uh82": [ + { + "amount": "374.339469272", + "slot": { + "period": 81882, + "thread": 28 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 317773, + "thread": 15 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 375594, + "thread": 25 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 610668, + "thread": 11 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 686505, + "thread": 25 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 885753, + "thread": 8 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1058313, + "thread": 20 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1247590, + "thread": 3 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1389543, + "thread": 17 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1543993, + "thread": 17 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1735430, + "thread": 19 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1903253, + "thread": 29 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 1978539, + "thread": 1 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 2168140, + "thread": 3 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 2408868, + "thread": 31 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 2593130, + "thread": 2 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 2733941, + "thread": 24 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 2918720, + "thread": 28 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 3011569, + "thread": 16 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 3286400, + "thread": 20 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 3390665, + "thread": 5 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 3479863, + "thread": 18 + } + }, + { + "amount": "374.339469272", + "slot": { + "period": 3723228, + "thread": 8 + } + }, + { + "amount": "374.339469262", + "slot": { + "period": 3858209, + "thread": 22 + } + } + ], + "AU12GyZj8gxP5Kjf8GZ8AAvXR4CMzPXLe9pZqbRGnp4A5w7qoyQi4": [ + { + "amount": "95.000992064", + "slot": { + "period": 143840, + "thread": 24 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 323615, + "thread": 30 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 418574, + "thread": 8 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 540465, + "thread": 27 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 685396, + "thread": 24 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 909704, + "thread": 11 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1015787, + "thread": 7 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1297318, + "thread": 10 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1318532, + "thread": 21 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1622603, + "thread": 28 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1795543, + "thread": 19 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 1911414, + "thread": 26 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2129993, + "thread": 3 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2196283, + "thread": 16 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2312907, + "thread": 22 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2598282, + "thread": 18 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2768439, + "thread": 30 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 2911987, + "thread": 26 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 3011760, + "thread": 2 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 3152428, + "thread": 13 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 3352118, + "thread": 7 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 3616512, + "thread": 24 + } + }, + { + "amount": "95.000992064", + "slot": { + "period": 3738847, + "thread": 15 + } + }, + { + "amount": "95.000992067", + "slot": { + "period": 3933429, + "thread": 8 + } + } + ], + "AU12GyqYjsPuuigALzToFSUE5qN6Rw3L5FD34o6ym3DDCzdVcwrHU": [ + { + "amount": "92.306346284", + "slot": { + "period": 132547, + "thread": 0 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 197601, + "thread": 26 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 355906, + "thread": 23 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 492992, + "thread": 7 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 740937, + "thread": 19 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 932614, + "thread": 19 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1036076, + "thread": 18 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1202148, + "thread": 22 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1446332, + "thread": 29 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1495508, + "thread": 17 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1769595, + "thread": 15 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1909994, + "thread": 26 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 1996595, + "thread": 2 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 2215750, + "thread": 8 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 2327833, + "thread": 17 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 2501891, + "thread": 21 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 2640246, + "thread": 17 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 2901137, + "thread": 23 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 3010997, + "thread": 8 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 3140025, + "thread": 15 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 3302436, + "thread": 6 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 3480077, + "thread": 25 + } + }, + { + "amount": "92.306346284", + "slot": { + "period": 3765812, + "thread": 4 + } + }, + { + "amount": "92.306346275", + "slot": { + "period": 3915922, + "thread": 3 + } + } + ], + "AU12GzCKQVEfVMisDX8xUnGkLeHsPF7uFJVcgj3oPif1xHRMS3NQz": [ + { + "amount": "129.377725726", + "slot": { + "period": 25146, + "thread": 1 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 210889, + "thread": 8 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 336650, + "thread": 27 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 600203, + "thread": 19 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 726242, + "thread": 9 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 954503, + "thread": 21 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1034130, + "thread": 16 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1178872, + "thread": 30 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1449611, + "thread": 0 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1639938, + "thread": 0 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1647159, + "thread": 18 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 1941043, + "thread": 30 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2128646, + "thread": 5 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2259035, + "thread": 8 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2353203, + "thread": 28 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2480940, + "thread": 24 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2775153, + "thread": 3 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 2889833, + "thread": 13 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 3051167, + "thread": 31 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 3152517, + "thread": 23 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 3296178, + "thread": 7 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 3589085, + "thread": 29 + } + }, + { + "amount": "129.377725726", + "slot": { + "period": 3730664, + "thread": 2 + } + }, + { + "amount": "129.377725727", + "slot": { + "period": 3800727, + "thread": 18 + } + } + ], + "AU12H1VnwCeaJpBXYKpDQDpkrMqiW2HfGCm94ScvPy7VzQuFLwiTp": [ + { + "amount": "272.136636164", + "slot": { + "period": 49538, + "thread": 23 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 230981, + "thread": 19 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 455973, + "thread": 31 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 611689, + "thread": 19 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 701018, + "thread": 9 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 955506, + "thread": 29 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1130681, + "thread": 18 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1290428, + "thread": 6 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1367284, + "thread": 28 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1622403, + "thread": 25 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1663617, + "thread": 19 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 1847775, + "thread": 7 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2135295, + "thread": 13 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2277022, + "thread": 1 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2328285, + "thread": 4 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2589897, + "thread": 16 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2691151, + "thread": 29 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2929623, + "thread": 20 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 2961136, + "thread": 1 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 3211968, + "thread": 12 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 3440852, + "thread": 31 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 3555714, + "thread": 0 + } + }, + { + "amount": "272.136636164", + "slot": { + "period": 3769838, + "thread": 21 + } + }, + { + "amount": "272.136636162", + "slot": { + "period": 3785687, + "thread": 27 + } + } + ], + "AU12H2nczUmvAQhkatnfcE3dq3mAgKBfTwndB4iXYP8mS9oNzbKWs": [ + { + "amount": "67.190430329", + "slot": { + "period": 13221, + "thread": 29 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 319845, + "thread": 31 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 368789, + "thread": 31 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 510552, + "thread": 10 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 769586, + "thread": 16 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 832424, + "thread": 25 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1134228, + "thread": 26 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1267700, + "thread": 1 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1449953, + "thread": 4 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1511800, + "thread": 27 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1680579, + "thread": 11 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 1827126, + "thread": 17 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2091947, + "thread": 29 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2265167, + "thread": 3 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2433191, + "thread": 9 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2548011, + "thread": 30 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2740554, + "thread": 1 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 2840522, + "thread": 31 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 3080962, + "thread": 19 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 3244274, + "thread": 9 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 3415109, + "thread": 9 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 3577933, + "thread": 16 + } + }, + { + "amount": "67.190430329", + "slot": { + "period": 3625623, + "thread": 12 + } + }, + { + "amount": "67.190430320", + "slot": { + "period": 3841367, + "thread": 11 + } + } + ], + "AU12H4KXPo3gVd9K58MWjXAJvKCKpWBQrKM6BVXf3zg91cyVViQV3": [ + { + "amount": "64.720137279", + "slot": { + "period": 119267, + "thread": 27 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 200558, + "thread": 2 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 335790, + "thread": 14 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 636464, + "thread": 28 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 700516, + "thread": 12 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 847596, + "thread": 30 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1012900, + "thread": 21 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1178600, + "thread": 5 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1344436, + "thread": 6 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1642599, + "thread": 24 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1724968, + "thread": 25 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 1878353, + "thread": 16 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2002115, + "thread": 7 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2221230, + "thread": 26 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2415123, + "thread": 20 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2475915, + "thread": 9 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2684664, + "thread": 19 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2941241, + "thread": 9 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 2980068, + "thread": 23 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 3150845, + "thread": 10 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 3411784, + "thread": 21 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 3593712, + "thread": 12 + } + }, + { + "amount": "64.720137279", + "slot": { + "period": 3681823, + "thread": 4 + } + }, + { + "amount": "64.720137278", + "slot": { + "period": 3868486, + "thread": 20 + } + } + ], + "AU12H4WR77Jr5SGVTnw2WGqd8EuwxRn396HuJ18qebc8FJfvRMm6C": [ + { + "amount": "120.689484330", + "slot": { + "period": 155085, + "thread": 29 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 194572, + "thread": 31 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 325370, + "thread": 30 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 615649, + "thread": 25 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 701035, + "thread": 7 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 976157, + "thread": 12 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1134055, + "thread": 18 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1200226, + "thread": 9 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1469263, + "thread": 31 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1575348, + "thread": 13 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1749236, + "thread": 6 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 1909633, + "thread": 17 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2120735, + "thread": 20 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2217143, + "thread": 1 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2313288, + "thread": 14 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2611217, + "thread": 23 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2751929, + "thread": 6 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 2793247, + "thread": 15 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 3008574, + "thread": 27 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 3189649, + "thread": 21 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 3360834, + "thread": 19 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 3598445, + "thread": 6 + } + }, + { + "amount": "120.689484330", + "slot": { + "period": 3736747, + "thread": 15 + } + }, + { + "amount": "120.689484329", + "slot": { + "period": 3901066, + "thread": 6 + } + } + ], + "AU12H4vLguWpTdceJkS87qM5UrtNgiCjPiScGB1KQWgbC8Pt2Rd14": [ + { + "amount": "121.995851012", + "slot": { + "period": 157219, + "thread": 7 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 274471, + "thread": 15 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 449362, + "thread": 30 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 497648, + "thread": 27 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 818281, + "thread": 22 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 855175, + "thread": 0 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1129888, + "thread": 26 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1230725, + "thread": 1 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1377800, + "thread": 8 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1537537, + "thread": 8 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1702082, + "thread": 20 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 1823765, + "thread": 14 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2091315, + "thread": 15 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2161955, + "thread": 14 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2380279, + "thread": 17 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2597566, + "thread": 29 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2704344, + "thread": 24 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 2938065, + "thread": 27 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 3008854, + "thread": 26 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 3225353, + "thread": 29 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 3371749, + "thread": 19 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 3462878, + "thread": 9 + } + }, + { + "amount": "121.995851012", + "slot": { + "period": 3655006, + "thread": 5 + } + }, + { + "amount": "121.995851020", + "slot": { + "period": 3941834, + "thread": 1 + } + } + ], + "AU12H5KoiyrBjafN59ZXnwtG3wE5JCznC1soCw5Ma5d4nreSMff4h": [ + { + "amount": "92.066860836", + "slot": { + "period": 16328, + "thread": 18 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 195637, + "thread": 22 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 364389, + "thread": 12 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 555040, + "thread": 15 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 801011, + "thread": 1 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 828009, + "thread": 15 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1002046, + "thread": 16 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1193297, + "thread": 13 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1330494, + "thread": 0 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1634095, + "thread": 6 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1733238, + "thread": 29 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 1835072, + "thread": 11 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2087042, + "thread": 19 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2258606, + "thread": 8 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2334033, + "thread": 6 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2599959, + "thread": 9 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2665944, + "thread": 15 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2921117, + "thread": 11 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 2997872, + "thread": 9 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 3185077, + "thread": 12 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 3402444, + "thread": 13 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 3512588, + "thread": 6 + } + }, + { + "amount": "92.066860836", + "slot": { + "period": 3665376, + "thread": 3 + } + }, + { + "amount": "92.066860837", + "slot": { + "period": 3826259, + "thread": 13 + } + } + ], + "AU12H64camuUC1WcwcmTRYp3jRrfYRNMVyQ9iuAwRdxde7mDafQv4": [ + { + "amount": "217.528680220", + "slot": { + "period": 15593, + "thread": 29 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 212477, + "thread": 1 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 482724, + "thread": 10 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 551109, + "thread": 5 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 783998, + "thread": 19 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 852493, + "thread": 15 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1119252, + "thread": 7 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1250964, + "thread": 21 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1438509, + "thread": 16 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1516696, + "thread": 1 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1695648, + "thread": 25 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 1852898, + "thread": 15 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2082998, + "thread": 27 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2270489, + "thread": 21 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2363647, + "thread": 16 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2524337, + "thread": 15 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2689573, + "thread": 14 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 2818347, + "thread": 8 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 3018543, + "thread": 17 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 3268512, + "thread": 3 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 3318946, + "thread": 1 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 3582263, + "thread": 17 + } + }, + { + "amount": "217.528680220", + "slot": { + "period": 3681196, + "thread": 6 + } + }, + { + "amount": "217.528680232", + "slot": { + "period": 3942949, + "thread": 8 + } + } + ], + "AU12H6mW3aqQPhyHKngjfLMo7MjzNncYwYzo3XYTcY9TdmtsQf8K3": [ + { + "amount": "176.622990399", + "slot": { + "period": 145830, + "thread": 13 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 242670, + "thread": 28 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 420534, + "thread": 13 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 527173, + "thread": 20 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 779765, + "thread": 25 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 853360, + "thread": 10 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1068396, + "thread": 24 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1302497, + "thread": 10 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1326023, + "thread": 22 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1505914, + "thread": 4 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1690843, + "thread": 28 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 1835989, + "thread": 4 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2067020, + "thread": 27 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2216273, + "thread": 1 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2305426, + "thread": 18 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2507815, + "thread": 22 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2625935, + "thread": 12 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 2813016, + "thread": 13 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 3076654, + "thread": 12 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 3157325, + "thread": 10 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 3430603, + "thread": 15 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 3564108, + "thread": 30 + } + }, + { + "amount": "176.622990399", + "slot": { + "period": 3695058, + "thread": 16 + } + }, + { + "amount": "176.622990407", + "slot": { + "period": 3924893, + "thread": 14 + } + } + ], + "AU12H7L1WxtUZPz7kxRC8Agkh5KuRfisog2Rov6GuDE2pnvKRat96": [ + { + "amount": "129.043965022", + "slot": { + "period": 155016, + "thread": 20 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 317562, + "thread": 28 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 367361, + "thread": 28 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 577061, + "thread": 17 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 723831, + "thread": 0 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 954677, + "thread": 18 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1120293, + "thread": 29 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1255937, + "thread": 28 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1440548, + "thread": 22 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1636210, + "thread": 7 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1751176, + "thread": 7 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 1845647, + "thread": 9 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2102382, + "thread": 22 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2164102, + "thread": 31 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2410149, + "thread": 2 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2618835, + "thread": 16 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2627174, + "thread": 29 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 2833921, + "thread": 12 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 3062645, + "thread": 13 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 3187955, + "thread": 1 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 3364004, + "thread": 30 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 3597017, + "thread": 18 + } + }, + { + "amount": "129.043965022", + "slot": { + "period": 3770628, + "thread": 3 + } + }, + { + "amount": "129.043965012", + "slot": { + "period": 3882234, + "thread": 24 + } + } + ], + "AU12H7oeGQ2ggM6FD468W44NT6BtYtLKT8LaL3fiMwmVLVkGZEza4": [ + { + "amount": "340.674970099", + "slot": { + "period": 166411, + "thread": 21 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 184202, + "thread": 31 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 424840, + "thread": 9 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 597209, + "thread": 25 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 739561, + "thread": 2 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 858339, + "thread": 11 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1053815, + "thread": 6 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1295087, + "thread": 22 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1352509, + "thread": 13 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1511784, + "thread": 24 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1700898, + "thread": 21 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 1915239, + "thread": 13 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2109523, + "thread": 27 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2197421, + "thread": 28 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2368384, + "thread": 25 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2465492, + "thread": 15 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2652639, + "thread": 0 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2851916, + "thread": 28 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 2969458, + "thread": 11 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 3169649, + "thread": 10 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 3438052, + "thread": 1 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 3587650, + "thread": 18 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 3776381, + "thread": 11 + } + }, + { + "amount": "340.674970099", + "slot": { + "period": 3785484, + "thread": 13 + } + } + ], + "AU12H7pHWz49SSwU745PcDo2s2HZvmKKVQEWqVa3Ky81bPfBkjGWV": [ + { + "amount": "530.572360392", + "slot": { + "period": 46116, + "thread": 3 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 208241, + "thread": 0 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 415097, + "thread": 24 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 625336, + "thread": 24 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 741457, + "thread": 11 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 925554, + "thread": 21 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1142893, + "thread": 30 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1204727, + "thread": 21 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1370644, + "thread": 18 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1613193, + "thread": 19 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1696730, + "thread": 13 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 1900975, + "thread": 11 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2091694, + "thread": 12 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2228797, + "thread": 16 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2296933, + "thread": 31 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2602498, + "thread": 23 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2786542, + "thread": 21 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 2818775, + "thread": 25 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 3065153, + "thread": 8 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 3136577, + "thread": 10 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 3365041, + "thread": 4 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 3521189, + "thread": 8 + } + }, + { + "amount": "530.572360392", + "slot": { + "period": 3665527, + "thread": 19 + } + }, + { + "amount": "530.572360394", + "slot": { + "period": 3937008, + "thread": 16 + } + } + ], + "AU12H8D3ZE5qXUgkk9AhmY2QNfyCUyBFMxBdyamegkJra82rtZy7W": [ + { + "amount": "63.379641393", + "slot": { + "period": 154847, + "thread": 1 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 178735, + "thread": 10 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 380383, + "thread": 23 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 538944, + "thread": 28 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 713748, + "thread": 8 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 861809, + "thread": 17 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1143216, + "thread": 25 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1220276, + "thread": 29 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1362383, + "thread": 7 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1492569, + "thread": 16 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1656365, + "thread": 11 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 1832490, + "thread": 13 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2069166, + "thread": 30 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2260252, + "thread": 13 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2374747, + "thread": 16 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2554865, + "thread": 8 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2703508, + "thread": 25 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 2871639, + "thread": 26 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 3100421, + "thread": 30 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 3216160, + "thread": 13 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 3436156, + "thread": 12 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 3589726, + "thread": 23 + } + }, + { + "amount": "63.379641393", + "slot": { + "period": 3754266, + "thread": 29 + } + }, + { + "amount": "63.379641396", + "slot": { + "period": 3925242, + "thread": 20 + } + } + ], + "AU12H94A9qRyceLWMavX6cGiVdi4y79851cUs51SFyk2Qn8hN1WLf": [ + { + "amount": "67.887416979", + "slot": { + "period": 122484, + "thread": 29 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 283033, + "thread": 25 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 464401, + "thread": 22 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 539592, + "thread": 20 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 653454, + "thread": 18 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 911125, + "thread": 21 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1091047, + "thread": 19 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1308147, + "thread": 16 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1362579, + "thread": 14 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1585613, + "thread": 11 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1699767, + "thread": 23 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 1955735, + "thread": 15 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2117691, + "thread": 13 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2161184, + "thread": 20 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2350829, + "thread": 11 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2549824, + "thread": 12 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2644797, + "thread": 26 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 2823845, + "thread": 22 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 3003318, + "thread": 5 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 3168539, + "thread": 11 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 3368929, + "thread": 4 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 3599158, + "thread": 8 + } + }, + { + "amount": "67.887416979", + "slot": { + "period": 3651093, + "thread": 23 + } + }, + { + "amount": "67.887416977", + "slot": { + "period": 3818613, + "thread": 12 + } + } + ], + "AU12H9SeNADKQ9kCYAkQAYfHWNVinfK8uxVW7xn75VUUDgMLe54AJ": [ + { + "amount": "134.083923528", + "slot": { + "period": 71980, + "thread": 2 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 246831, + "thread": 17 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 411065, + "thread": 10 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 537004, + "thread": 31 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 777074, + "thread": 17 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 891838, + "thread": 7 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1039564, + "thread": 24 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1244323, + "thread": 16 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1394359, + "thread": 19 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1535195, + "thread": 2 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1721604, + "thread": 23 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 1845149, + "thread": 20 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2016574, + "thread": 13 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2181511, + "thread": 5 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2386199, + "thread": 13 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2568068, + "thread": 19 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2676591, + "thread": 18 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2833262, + "thread": 9 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 2985531, + "thread": 1 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 3145242, + "thread": 2 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 3393726, + "thread": 5 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 3579714, + "thread": 24 + } + }, + { + "amount": "134.083923528", + "slot": { + "period": 3712537, + "thread": 28 + } + }, + { + "amount": "134.083923524", + "slot": { + "period": 3796476, + "thread": 3 + } + } + ], + "AU12H9WPeBLSLN2vtimxgUaCUHPCu1ULLFPmynQ3tyft9oZPbPNgx": [ + { + "amount": "112.974469257", + "slot": { + "period": 41362, + "thread": 5 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 206219, + "thread": 18 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 412616, + "thread": 1 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 534716, + "thread": 18 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 778996, + "thread": 13 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 963825, + "thread": 14 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1101458, + "thread": 5 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1165869, + "thread": 1 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1419424, + "thread": 18 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1613064, + "thread": 8 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1687189, + "thread": 24 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 1947331, + "thread": 24 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2131944, + "thread": 30 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2201150, + "thread": 27 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2448221, + "thread": 25 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2620924, + "thread": 8 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2624957, + "thread": 22 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2896951, + "thread": 3 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 2978129, + "thread": 14 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 3184931, + "thread": 10 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 3372030, + "thread": 20 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 3517967, + "thread": 20 + } + }, + { + "amount": "112.974469257", + "slot": { + "period": 3723638, + "thread": 3 + } + }, + { + "amount": "112.974469253", + "slot": { + "period": 3894767, + "thread": 21 + } + } + ], + "AU12HA39o1kJcgcxpqEf2Mvj9c9qjufN5gWjp3ZioGVo8ame5NWe9": [ + { + "amount": "99.302794652", + "slot": { + "period": 11044, + "thread": 20 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 253221, + "thread": 15 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 428965, + "thread": 31 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 650077, + "thread": 2 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 795732, + "thread": 30 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 953083, + "thread": 13 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1006238, + "thread": 5 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1156680, + "thread": 19 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1455755, + "thread": 26 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1494253, + "thread": 29 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1700417, + "thread": 27 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 1929889, + "thread": 9 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2059216, + "thread": 22 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2190891, + "thread": 15 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2359140, + "thread": 22 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2468243, + "thread": 1 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2688672, + "thread": 27 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2875699, + "thread": 28 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 2966818, + "thread": 27 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 3179690, + "thread": 25 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 3314413, + "thread": 8 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 3559246, + "thread": 22 + } + }, + { + "amount": "99.302794652", + "slot": { + "period": 3663179, + "thread": 4 + } + }, + { + "amount": "99.302794662", + "slot": { + "period": 3917583, + "thread": 8 + } + } + ], + "AU12HAon41hv7mkhteFw6ZGEfhXm3i5Y6AGn329e2sUZwRLtpNL1C": [ + { + "amount": "173.783302846", + "slot": { + "period": 81443, + "thread": 1 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 189150, + "thread": 31 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 439996, + "thread": 19 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 504175, + "thread": 31 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 815499, + "thread": 12 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 866628, + "thread": 8 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 993648, + "thread": 20 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1158035, + "thread": 19 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1461759, + "thread": 15 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1535029, + "thread": 12 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1712478, + "thread": 25 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1870502, + "thread": 18 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 1977282, + "thread": 22 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 2152497, + "thread": 24 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 2389450, + "thread": 11 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 2620799, + "thread": 4 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 2756505, + "thread": 1 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 2866485, + "thread": 25 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 3040775, + "thread": 29 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 3226952, + "thread": 21 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 3444559, + "thread": 2 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 3586090, + "thread": 18 + } + }, + { + "amount": "173.783302846", + "slot": { + "period": 3776531, + "thread": 25 + } + }, + { + "amount": "173.783302850", + "slot": { + "period": 3942411, + "thread": 31 + } + } + ], + "AU12HAs3YW6YKDK5Vmiv8QUML1DjMQe9PphNcAM56Xh6fsz5YLt3U": [ + { + "amount": "152.823077241", + "slot": { + "period": 131557, + "thread": 29 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 268388, + "thread": 10 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 482756, + "thread": 10 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 572259, + "thread": 1 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 675682, + "thread": 27 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 894105, + "thread": 10 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1067555, + "thread": 4 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1301501, + "thread": 5 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1410683, + "thread": 28 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1539645, + "thread": 4 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1668033, + "thread": 14 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 1963953, + "thread": 9 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2107983, + "thread": 8 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2265072, + "thread": 7 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2410305, + "thread": 19 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2524920, + "thread": 31 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2730881, + "thread": 14 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 2913522, + "thread": 4 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 3100337, + "thread": 13 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 3286774, + "thread": 16 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 3405882, + "thread": 24 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 3542045, + "thread": 10 + } + }, + { + "amount": "152.823077241", + "slot": { + "period": 3739856, + "thread": 15 + } + }, + { + "amount": "152.823077243", + "slot": { + "period": 3873931, + "thread": 28 + } + } + ], + "AU12HBKrSYSjdijx8MT15Y42NdT5aAosojUMjEoiHXVbiXGSdn9zF": [ + { + "amount": "214.650163035", + "slot": { + "period": 11829, + "thread": 21 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 306757, + "thread": 28 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 378211, + "thread": 24 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 529771, + "thread": 31 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 710679, + "thread": 8 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 883492, + "thread": 7 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1109664, + "thread": 7 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1291514, + "thread": 31 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1420323, + "thread": 29 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1646506, + "thread": 22 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1773928, + "thread": 18 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 1968639, + "thread": 20 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2141734, + "thread": 29 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2209831, + "thread": 14 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2405000, + "thread": 10 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2528002, + "thread": 13 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2632923, + "thread": 23 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 2837217, + "thread": 24 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 3003946, + "thread": 20 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 3135463, + "thread": 29 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 3420455, + "thread": 21 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 3465900, + "thread": 26 + } + }, + { + "amount": "214.650163035", + "slot": { + "period": 3732799, + "thread": 18 + } + }, + { + "amount": "214.650163034", + "slot": { + "period": 3917776, + "thread": 8 + } + } + ], + "AU12HBXcLYjvFaj5tPK7fSf6yMGP6SXuL7eZd4KQuAPNkTB146cN5": [ + { + "amount": "126.971404675", + "slot": { + "period": 159376, + "thread": 24 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 255234, + "thread": 4 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 337354, + "thread": 25 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 652757, + "thread": 18 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 726902, + "thread": 31 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 869283, + "thread": 1 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1002609, + "thread": 7 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1161586, + "thread": 5 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1345514, + "thread": 25 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1569973, + "thread": 24 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1747382, + "thread": 24 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 1902944, + "thread": 29 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2009782, + "thread": 15 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2198189, + "thread": 29 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2402473, + "thread": 11 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2575949, + "thread": 21 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2780174, + "thread": 1 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2938306, + "thread": 31 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 2979758, + "thread": 13 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 3203723, + "thread": 14 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 3437774, + "thread": 15 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 3594791, + "thread": 21 + } + }, + { + "amount": "126.971404675", + "slot": { + "period": 3698583, + "thread": 6 + } + }, + { + "amount": "126.971404672", + "slot": { + "period": 3865697, + "thread": 6 + } + } + ], + "AU12HBefqQou4vGFAyifepdcnGPHcoC4uN8okkoyqqjoPsvTYAaKC": [ + { + "amount": "53.152327342", + "slot": { + "period": 55645, + "thread": 25 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 225342, + "thread": 21 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 480912, + "thread": 2 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 519356, + "thread": 0 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 696317, + "thread": 10 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 968991, + "thread": 12 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1028145, + "thread": 21 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1160430, + "thread": 3 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1377178, + "thread": 5 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1537945, + "thread": 24 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1732249, + "thread": 15 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 1894783, + "thread": 28 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2058473, + "thread": 8 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2151678, + "thread": 30 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2398258, + "thread": 24 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2572692, + "thread": 19 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2720514, + "thread": 23 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 2792520, + "thread": 1 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 3004241, + "thread": 19 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 3147908, + "thread": 27 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 3422965, + "thread": 25 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 3572515, + "thread": 13 + } + }, + { + "amount": "53.152327342", + "slot": { + "period": 3763929, + "thread": 18 + } + }, + { + "amount": "53.152327335", + "slot": { + "period": 3875364, + "thread": 31 + } + } + ], + "AU12HCJWBHcjkL1GzR56GhWjpmGLUvnLZWtSjecBaoKXvWaLsgbtB": [ + { + "amount": "54.222266342", + "slot": { + "period": 64998, + "thread": 18 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 225946, + "thread": 29 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 423913, + "thread": 4 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 604525, + "thread": 22 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 771705, + "thread": 4 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 893068, + "thread": 29 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1131701, + "thread": 20 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1242013, + "thread": 6 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1416806, + "thread": 27 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1525005, + "thread": 20 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1744166, + "thread": 25 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 1841078, + "thread": 24 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2007641, + "thread": 10 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2215632, + "thread": 13 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2439583, + "thread": 26 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2540061, + "thread": 4 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2748469, + "thread": 20 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 2924727, + "thread": 3 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 3033042, + "thread": 13 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 3274216, + "thread": 6 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 3347799, + "thread": 6 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 3607461, + "thread": 7 + } + }, + { + "amount": "54.222266342", + "slot": { + "period": 3667539, + "thread": 4 + } + }, + { + "amount": "54.222266336", + "slot": { + "period": 3803244, + "thread": 2 + } + } + ], + "AU12HCyjQrzzvomanpmcWaF8dEkwBdtDKHz8uYjw4kjBFCQ7C5xFX": [ + { + "amount": "226.734062060", + "slot": { + "period": 163275, + "thread": 24 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 294959, + "thread": 24 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 488412, + "thread": 28 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 636182, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 752303, + "thread": 25 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 980000, + "thread": 14 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1149076, + "thread": 8 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1165205, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1437777, + "thread": 3 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1548836, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1735479, + "thread": 27 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1862903, + "thread": 23 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 1999059, + "thread": 20 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2166549, + "thread": 16 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2427737, + "thread": 5 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2555386, + "thread": 25 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2716848, + "thread": 3 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2833201, + "thread": 16 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 2969137, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 3254794, + "thread": 11 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 3395278, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 3554318, + "thread": 1 + } + }, + { + "amount": "226.734062060", + "slot": { + "period": 3664943, + "thread": 21 + } + }, + { + "amount": "226.734062065", + "slot": { + "period": 3875118, + "thread": 7 + } + } + ], + "AU12HDPxUyDcCBmW5h2BKsTmMoa5Y64pzf9oVi49Q4iAcx4drCw7r": [ + { + "amount": "88.360330567", + "slot": { + "period": 47613, + "thread": 9 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 270170, + "thread": 24 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 441830, + "thread": 11 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 585604, + "thread": 28 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 744856, + "thread": 9 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 936757, + "thread": 27 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1029665, + "thread": 20 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1223986, + "thread": 16 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1335274, + "thread": 13 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1483344, + "thread": 2 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1651212, + "thread": 21 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 1886963, + "thread": 2 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2131892, + "thread": 11 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2256746, + "thread": 9 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2391160, + "thread": 14 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2482454, + "thread": 13 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2731875, + "thread": 28 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2906557, + "thread": 26 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 2954780, + "thread": 27 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 3269061, + "thread": 21 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 3414059, + "thread": 11 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 3479655, + "thread": 11 + } + }, + { + "amount": "88.360330567", + "slot": { + "period": 3735197, + "thread": 23 + } + }, + { + "amount": "88.360330573", + "slot": { + "period": 3904322, + "thread": 12 + } + } + ], + "AU12HDerYWcBmjmVEnN8fQ5QuJRp2rHn7MCn15zS5cej8gkGEcEgi": [ + { + "amount": "477.745720015", + "slot": { + "period": 134101, + "thread": 18 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 187838, + "thread": 20 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 479212, + "thread": 30 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 619385, + "thread": 31 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 813743, + "thread": 15 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 954911, + "thread": 23 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1027837, + "thread": 21 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1173057, + "thread": 18 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1338992, + "thread": 29 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1635563, + "thread": 20 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1721179, + "thread": 13 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 1821804, + "thread": 6 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2026916, + "thread": 8 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2225615, + "thread": 10 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2421942, + "thread": 14 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2472929, + "thread": 13 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2694075, + "thread": 24 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 2928759, + "thread": 18 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 3102270, + "thread": 16 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 3222781, + "thread": 25 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 3298439, + "thread": 15 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 3496157, + "thread": 9 + } + }, + { + "amount": "477.745720015", + "slot": { + "period": 3620088, + "thread": 11 + } + }, + { + "amount": "477.745720023", + "slot": { + "period": 3816419, + "thread": 8 + } + } + ], + "AU12HE23uxrwRUkJegchrcdnQfh8j6GT1bW3oSRhBqXMskAzzyH8n": [ + { + "amount": "162.979052626", + "slot": { + "period": 52710, + "thread": 12 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 306731, + "thread": 26 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 459008, + "thread": 2 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 640269, + "thread": 11 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 813006, + "thread": 28 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 871393, + "thread": 1 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1027768, + "thread": 9 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1305879, + "thread": 4 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1472133, + "thread": 23 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1617188, + "thread": 3 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1753421, + "thread": 25 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1937493, + "thread": 13 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 1992428, + "thread": 12 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 2222357, + "thread": 20 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 2317899, + "thread": 3 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 2540830, + "thread": 17 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 2769801, + "thread": 22 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 2833693, + "thread": 28 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 3019565, + "thread": 28 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 3277505, + "thread": 16 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 3338564, + "thread": 18 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 3466168, + "thread": 16 + } + }, + { + "amount": "162.979052626", + "slot": { + "period": 3668019, + "thread": 26 + } + }, + { + "amount": "162.979052632", + "slot": { + "period": 3870996, + "thread": 5 + } + } + ], + "AU12HE4EfjNbej8AmRYsYunoqtzEACjSVKEiUwN72g6UEmTZtGiAi": [ + { + "amount": "201.515114921", + "slot": { + "period": 159335, + "thread": 6 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 205895, + "thread": 7 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 363412, + "thread": 10 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 553751, + "thread": 8 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 692198, + "thread": 22 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 881731, + "thread": 20 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1129848, + "thread": 13 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1307764, + "thread": 17 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1470767, + "thread": 1 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1607888, + "thread": 15 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1696632, + "thread": 31 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 1836490, + "thread": 2 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2019859, + "thread": 27 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2184049, + "thread": 6 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2393980, + "thread": 21 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2590456, + "thread": 17 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2730575, + "thread": 15 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 2831288, + "thread": 8 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 3016365, + "thread": 16 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 3269783, + "thread": 12 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 3384038, + "thread": 9 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 3473324, + "thread": 11 + } + }, + { + "amount": "201.515114921", + "slot": { + "period": 3708137, + "thread": 12 + } + }, + { + "amount": "201.515114931", + "slot": { + "period": 3826366, + "thread": 7 + } + } + ], + "AU12HE4uXneMs2YmdEEG43piRSTNmadenhoRaYLCbjEG6nWRABB4g": [ + { + "amount": "129.454520122", + "slot": { + "period": 143799, + "thread": 12 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 232618, + "thread": 28 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 443515, + "thread": 18 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 501170, + "thread": 19 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 719944, + "thread": 3 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 886520, + "thread": 21 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1061900, + "thread": 21 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1279938, + "thread": 22 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1380710, + "thread": 11 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1601368, + "thread": 2 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1735441, + "thread": 1 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 1935642, + "thread": 1 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2075980, + "thread": 20 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2284684, + "thread": 22 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2359108, + "thread": 5 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2622189, + "thread": 6 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2652122, + "thread": 26 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 2880557, + "thread": 25 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3110895, + "thread": 30 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3257437, + "thread": 22 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3327062, + "thread": 8 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3548928, + "thread": 14 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3718185, + "thread": 20 + } + }, + { + "amount": "129.454520122", + "slot": { + "period": 3929381, + "thread": 18 + } + } + ], + "AU12HF8nHxbMa9SvZ6MsyZALFYKg6mVruWUsQcYM1aNsTnhsevsw5": [ + { + "amount": "170.655595914", + "slot": { + "period": 75211, + "thread": 2 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 258874, + "thread": 28 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 491208, + "thread": 6 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 617687, + "thread": 2 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 666332, + "thread": 17 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 828392, + "thread": 30 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1136041, + "thread": 0 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1169979, + "thread": 12 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1328618, + "thread": 23 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1633011, + "thread": 9 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1712936, + "thread": 24 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 1819867, + "thread": 31 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2007143, + "thread": 17 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2234363, + "thread": 21 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2330059, + "thread": 22 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2500792, + "thread": 31 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2674938, + "thread": 12 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 2870855, + "thread": 21 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 3049470, + "thread": 27 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 3124359, + "thread": 8 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 3426383, + "thread": 1 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 3604293, + "thread": 2 + } + }, + { + "amount": "170.655595914", + "slot": { + "period": 3708793, + "thread": 13 + } + }, + { + "amount": "170.655595913", + "slot": { + "period": 3852536, + "thread": 22 + } + } + ], + "AU12HFCPTqJgYVMhP6okWSuXBxbpUvqJtSLh3LyHHSH7u6o4SAni6": [ + { + "amount": "219.961781379", + "slot": { + "period": 46790, + "thread": 26 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 241015, + "thread": 30 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 459669, + "thread": 29 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 503487, + "thread": 22 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 687296, + "thread": 0 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 929123, + "thread": 1 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1051294, + "thread": 24 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1277773, + "thread": 4 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1359518, + "thread": 3 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1561540, + "thread": 14 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1771781, + "thread": 23 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 1937588, + "thread": 27 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2104753, + "thread": 6 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2243237, + "thread": 17 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2419887, + "thread": 21 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2545053, + "thread": 13 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2635612, + "thread": 9 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 2836250, + "thread": 5 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 3071086, + "thread": 13 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 3252980, + "thread": 16 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 3391710, + "thread": 11 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 3525995, + "thread": 31 + } + }, + { + "amount": "219.961781379", + "slot": { + "period": 3712682, + "thread": 8 + } + }, + { + "amount": "219.961781383", + "slot": { + "period": 3836021, + "thread": 12 + } + } + ], + "AU12HHjAWYJRBk4pYuN6PH9HzQAo1j5AnS5VG5BsGtA2zZAsa5Khk": [ + { + "amount": "242.062217560", + "slot": { + "period": 137757, + "thread": 4 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 272057, + "thread": 9 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 339694, + "thread": 6 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 494128, + "thread": 11 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 803617, + "thread": 2 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 872977, + "thread": 8 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1060850, + "thread": 25 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1164212, + "thread": 1 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1395250, + "thread": 3 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1502689, + "thread": 29 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1784842, + "thread": 7 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 1971605, + "thread": 30 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2092010, + "thread": 1 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2185000, + "thread": 18 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2341055, + "thread": 11 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2488720, + "thread": 15 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2717670, + "thread": 23 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 2849608, + "thread": 22 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 3067680, + "thread": 24 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 3203536, + "thread": 18 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 3296850, + "thread": 0 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 3471714, + "thread": 17 + } + }, + { + "amount": "242.062217560", + "slot": { + "period": 3672587, + "thread": 21 + } + }, + { + "amount": "242.062217553", + "slot": { + "period": 3864920, + "thread": 5 + } + } + ], + "AU12HKvYTdXV8Hbd6Df1N2Yv2SiGNrMCRejCtJ4V9F3h13UqMhsxk": [ + { + "amount": "173.774970963", + "slot": { + "period": 162040, + "thread": 26 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 264241, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 354903, + "thread": 11 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 493333, + "thread": 27 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 761621, + "thread": 25 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 974455, + "thread": 22 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1004907, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1248832, + "thread": 11 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1411855, + "thread": 3 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1481053, + "thread": 15 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1740273, + "thread": 15 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 1963610, + "thread": 10 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2020549, + "thread": 1 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2157385, + "thread": 23 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2411072, + "thread": 2 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2518414, + "thread": 13 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2756163, + "thread": 5 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2952881, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 2979256, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 3127544, + "thread": 18 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 3360500, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 3558728, + "thread": 31 + } + }, + { + "amount": "173.774970963", + "slot": { + "period": 3777371, + "thread": 2 + } + }, + { + "amount": "173.774970960", + "slot": { + "period": 3883532, + "thread": 16 + } + } + ], + "AU12HL7m5mVaN28ra6yCbT3Nm5XpgKjsPUFbgD393jnYXKcMksufx": [ + { + "amount": "140.925817453", + "slot": { + "period": 90624, + "thread": 11 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 298190, + "thread": 23 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 327780, + "thread": 3 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 516078, + "thread": 7 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 795865, + "thread": 6 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 834805, + "thread": 15 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1086536, + "thread": 9 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1176575, + "thread": 11 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1431784, + "thread": 8 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1515833, + "thread": 4 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1719051, + "thread": 15 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 1897913, + "thread": 21 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2139268, + "thread": 9 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2189962, + "thread": 11 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2450793, + "thread": 29 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2479807, + "thread": 3 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2778972, + "thread": 25 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2836224, + "thread": 9 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 2974378, + "thread": 9 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 3155241, + "thread": 22 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 3346259, + "thread": 21 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 3541935, + "thread": 7 + } + }, + { + "amount": "140.925817453", + "slot": { + "period": 3736510, + "thread": 6 + } + }, + { + "amount": "140.925817448", + "slot": { + "period": 3845397, + "thread": 8 + } + } + ], + "AU12HLPk2Ui5mSQznBj8z17rVGr4F7ydMSnthSrvbYefubuHamis3": [ + { + "amount": "250.721115757", + "slot": { + "period": 14621, + "thread": 22 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 221127, + "thread": 11 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 418487, + "thread": 1 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 628461, + "thread": 15 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 706444, + "thread": 0 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 902475, + "thread": 7 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1055440, + "thread": 10 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1292652, + "thread": 14 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1318114, + "thread": 15 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1533223, + "thread": 21 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1682108, + "thread": 25 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 1840134, + "thread": 2 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2114781, + "thread": 1 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2151102, + "thread": 28 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2309120, + "thread": 16 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2487101, + "thread": 22 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2627616, + "thread": 13 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 2821921, + "thread": 26 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 3031886, + "thread": 8 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 3270736, + "thread": 13 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 3298481, + "thread": 27 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 3553884, + "thread": 16 + } + }, + { + "amount": "250.721115757", + "slot": { + "period": 3619839, + "thread": 5 + } + }, + { + "amount": "250.721115762", + "slot": { + "period": 3791953, + "thread": 7 + } + } + ], + "AU12HMLEL1NrxsmyeWsptDKYUHbjM96C6pPpJXBQKsFTPwxRdxBvD": [ + { + "amount": "270.211275433", + "slot": { + "period": 136083, + "thread": 25 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 266281, + "thread": 7 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 388536, + "thread": 17 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 614269, + "thread": 14 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 780010, + "thread": 24 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 971822, + "thread": 22 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1061646, + "thread": 16 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1209177, + "thread": 25 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1410235, + "thread": 6 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1547039, + "thread": 17 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1802800, + "thread": 25 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 1849287, + "thread": 18 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2093326, + "thread": 24 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2266866, + "thread": 28 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2413784, + "thread": 19 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2508055, + "thread": 14 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2661175, + "thread": 14 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2849761, + "thread": 25 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 2999577, + "thread": 10 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 3170622, + "thread": 1 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 3391957, + "thread": 25 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 3477590, + "thread": 14 + } + }, + { + "amount": "270.211275433", + "slot": { + "period": 3688790, + "thread": 19 + } + }, + { + "amount": "270.211275441", + "slot": { + "period": 3806764, + "thread": 12 + } + } + ], + "AU12HMRMWkW9yntwnRJnbuv1mMT4MfZP9eX32TMosvvireutwaZw4": [ + { + "amount": "150.791698151", + "slot": { + "period": 125498, + "thread": 5 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 263362, + "thread": 3 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 325507, + "thread": 12 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 558192, + "thread": 10 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 790098, + "thread": 18 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 954721, + "thread": 2 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1102997, + "thread": 23 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1224071, + "thread": 27 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1361497, + "thread": 13 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1493513, + "thread": 23 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1691431, + "thread": 4 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 1912448, + "thread": 2 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2133595, + "thread": 1 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2148361, + "thread": 22 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2372577, + "thread": 18 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2570601, + "thread": 29 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2684474, + "thread": 20 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 2827701, + "thread": 8 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 3014832, + "thread": 3 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 3168687, + "thread": 9 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 3354008, + "thread": 28 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 3612043, + "thread": 6 + } + }, + { + "amount": "150.791698151", + "slot": { + "period": 3779320, + "thread": 31 + } + }, + { + "amount": "150.791698162", + "slot": { + "period": 3845206, + "thread": 8 + } + } + ], + "AU12HMSDJhWFd64vPdtYX1QXGQ4YVU1adG6Pr2oLiGCiTYVrRgezX": [ + { + "amount": "117.325090031", + "slot": { + "period": 45816, + "thread": 30 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 307750, + "thread": 8 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 392693, + "thread": 13 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 554135, + "thread": 2 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 820180, + "thread": 24 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 850859, + "thread": 19 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1049496, + "thread": 9 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1269026, + "thread": 15 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1366424, + "thread": 5 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1590254, + "thread": 16 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1724525, + "thread": 31 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 1838817, + "thread": 5 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2116504, + "thread": 6 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2242535, + "thread": 10 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2401724, + "thread": 19 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2577162, + "thread": 10 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2652643, + "thread": 20 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 2794204, + "thread": 9 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 3040521, + "thread": 8 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 3234174, + "thread": 1 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 3381548, + "thread": 26 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 3554603, + "thread": 3 + } + }, + { + "amount": "117.325090031", + "slot": { + "period": 3709502, + "thread": 14 + } + }, + { + "amount": "117.325090024", + "slot": { + "period": 3900589, + "thread": 6 + } + } + ], + "AU12HMvyhrtfxhP3paVzcVoeSmz1LhjpPPAAAQrAzUHCTVwNKxPxN": [ + { + "amount": "567.488430438", + "slot": { + "period": 103705, + "thread": 28 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 303317, + "thread": 24 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 436921, + "thread": 2 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 513917, + "thread": 7 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 751927, + "thread": 0 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 854427, + "thread": 9 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1044157, + "thread": 23 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1232132, + "thread": 1 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1355811, + "thread": 16 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1558574, + "thread": 10 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1766236, + "thread": 2 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 1971478, + "thread": 17 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2140424, + "thread": 8 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2239637, + "thread": 25 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2419330, + "thread": 11 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2519305, + "thread": 1 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2756601, + "thread": 12 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 2914483, + "thread": 19 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 3011341, + "thread": 29 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 3182776, + "thread": 26 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 3341118, + "thread": 7 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 3495087, + "thread": 6 + } + }, + { + "amount": "567.488430438", + "slot": { + "period": 3649212, + "thread": 4 + } + }, + { + "amount": "567.488430431", + "slot": { + "period": 3793759, + "thread": 19 + } + } + ], + "AU12HNL4Hz9YhxQMRpieqt4ARXocGedRMzQ4P2qJgT41mQ88eD8yH": [ + { + "amount": "155.113033146", + "slot": { + "period": 99793, + "thread": 7 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 267612, + "thread": 31 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 375908, + "thread": 24 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 615045, + "thread": 0 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 706677, + "thread": 22 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 913431, + "thread": 12 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1010029, + "thread": 30 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1218789, + "thread": 29 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1379609, + "thread": 18 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1622218, + "thread": 13 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1772710, + "thread": 27 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 1863319, + "thread": 27 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2129885, + "thread": 12 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2217501, + "thread": 8 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2425442, + "thread": 29 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2533986, + "thread": 1 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2727293, + "thread": 2 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2947989, + "thread": 29 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 2955036, + "thread": 22 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 3152959, + "thread": 23 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 3366519, + "thread": 8 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 3507424, + "thread": 18 + } + }, + { + "amount": "155.113033146", + "slot": { + "period": 3641998, + "thread": 18 + } + }, + { + "amount": "155.113033134", + "slot": { + "period": 3804002, + "thread": 29 + } + } + ], + "AU12HNqVuU5jaiRwSZ5qJCobf6QDStmnn82e71PCAL9dNWCRGt88b": [ + { + "amount": "335.209219087", + "slot": { + "period": 13644, + "thread": 0 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 224454, + "thread": 2 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 329761, + "thread": 26 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 610935, + "thread": 12 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 711258, + "thread": 24 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 951103, + "thread": 7 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1063600, + "thread": 29 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1303777, + "thread": 24 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1333256, + "thread": 4 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1633907, + "thread": 30 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1788359, + "thread": 3 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 1899632, + "thread": 21 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2127483, + "thread": 19 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2231036, + "thread": 29 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2347326, + "thread": 23 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2499425, + "thread": 3 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2636607, + "thread": 26 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 2947112, + "thread": 17 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 3056407, + "thread": 1 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 3150043, + "thread": 22 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 3322177, + "thread": 22 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 3611657, + "thread": 29 + } + }, + { + "amount": "335.209219087", + "slot": { + "period": 3625309, + "thread": 1 + } + }, + { + "amount": "335.209219076", + "slot": { + "period": 3856570, + "thread": 9 + } + } + ], + "AU12HP5pNDPowhHKQyrh74v9Cn45Y3S6dy4D4q8DGTUDMZsp3PWnq": [ + { + "amount": "108.358166214", + "slot": { + "period": 29735, + "thread": 4 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 198996, + "thread": 1 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 379765, + "thread": 15 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 537995, + "thread": 14 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 736765, + "thread": 29 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 946718, + "thread": 27 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1040989, + "thread": 25 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1313214, + "thread": 2 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1434124, + "thread": 31 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1573044, + "thread": 19 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1675874, + "thread": 6 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 1857247, + "thread": 12 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2075157, + "thread": 28 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2294958, + "thread": 15 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2405007, + "thread": 6 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2490298, + "thread": 12 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2740335, + "thread": 3 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2861343, + "thread": 26 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 2992079, + "thread": 29 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 3147526, + "thread": 13 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 3362512, + "thread": 20 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 3512030, + "thread": 20 + } + }, + { + "amount": "108.358166214", + "slot": { + "period": 3667736, + "thread": 14 + } + }, + { + "amount": "108.358166203", + "slot": { + "period": 3936745, + "thread": 2 + } + } + ], + "AU12HPBvwtHksqGUrf7L7Xj84Ef3KcsmgZNYPnh4PvmBYTwrQHrKX": [ + { + "amount": "200.889038384", + "slot": { + "period": 101922, + "thread": 5 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 321709, + "thread": 15 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 427578, + "thread": 16 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 527129, + "thread": 20 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 681247, + "thread": 18 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 937354, + "thread": 3 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1047580, + "thread": 0 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1172288, + "thread": 16 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1463839, + "thread": 8 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1540429, + "thread": 19 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1747787, + "thread": 26 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 1877630, + "thread": 28 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2136609, + "thread": 10 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2262908, + "thread": 25 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2340804, + "thread": 25 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2555425, + "thread": 24 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2725683, + "thread": 21 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2874616, + "thread": 15 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 2957768, + "thread": 4 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 3151885, + "thread": 24 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 3367093, + "thread": 6 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 3546393, + "thread": 20 + } + }, + { + "amount": "200.889038384", + "slot": { + "period": 3699352, + "thread": 20 + } + }, + { + "amount": "200.889038387", + "slot": { + "period": 3901657, + "thread": 27 + } + } + ], + "AU12HPKZdFNNLwkTT6jRJwuRsASm2Hev5eusrLB9MfPrZyqRFgn4V": [ + { + "amount": "62.234293764", + "slot": { + "period": 79627, + "thread": 15 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 303142, + "thread": 31 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 359793, + "thread": 23 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 652198, + "thread": 6 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 712957, + "thread": 9 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 959896, + "thread": 22 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1063704, + "thread": 4 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1155025, + "thread": 15 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1422799, + "thread": 31 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1494356, + "thread": 28 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1668986, + "thread": 13 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 1889342, + "thread": 24 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2032733, + "thread": 26 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2196416, + "thread": 25 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2334286, + "thread": 18 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2512331, + "thread": 11 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2778675, + "thread": 18 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 2879922, + "thread": 29 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 3090940, + "thread": 3 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 3284004, + "thread": 3 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 3405280, + "thread": 6 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 3554977, + "thread": 23 + } + }, + { + "amount": "62.234293764", + "slot": { + "period": 3727663, + "thread": 24 + } + }, + { + "amount": "62.234293757", + "slot": { + "period": 3813279, + "thread": 13 + } + } + ], + "AU12HPNpWMajDdXEnnnkfGjUxcZU4YfkoVHjo1TAGyDePfTxCDX3z": [ + { + "amount": "1403.565293533", + "slot": { + "period": 141635, + "thread": 29 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 288506, + "thread": 18 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 458751, + "thread": 20 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 507197, + "thread": 20 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 780703, + "thread": 13 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 964602, + "thread": 17 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1015402, + "thread": 22 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1215657, + "thread": 12 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1431943, + "thread": 12 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1549221, + "thread": 18 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1719372, + "thread": 15 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1867876, + "thread": 17 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 1989793, + "thread": 28 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2267560, + "thread": 10 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2344775, + "thread": 19 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2550808, + "thread": 13 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2759651, + "thread": 20 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2845737, + "thread": 0 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 2989573, + "thread": 11 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 3221739, + "thread": 22 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 3299582, + "thread": 7 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 3571936, + "thread": 21 + } + }, + { + "amount": "1403.565293533", + "slot": { + "period": 3738393, + "thread": 25 + } + }, + { + "amount": "1403.565293518", + "slot": { + "period": 3841739, + "thread": 3 + } + } + ], + "AU12HPoBpBRKWf7Si8dKgkTUFAtYHGKeqkkQFAtGknPaUB7oCe2LD": [ + { + "amount": "60.642745419", + "slot": { + "period": 15971, + "thread": 28 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 213606, + "thread": 27 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 326664, + "thread": 2 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 637408, + "thread": 22 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 678065, + "thread": 12 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 835231, + "thread": 15 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1097156, + "thread": 15 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1214627, + "thread": 20 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1331892, + "thread": 23 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1601489, + "thread": 20 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1727161, + "thread": 7 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 1949818, + "thread": 15 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2138068, + "thread": 15 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2156516, + "thread": 8 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2414850, + "thread": 0 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2501785, + "thread": 0 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2777725, + "thread": 3 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 2830082, + "thread": 20 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 3103560, + "thread": 28 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 3131084, + "thread": 26 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 3415839, + "thread": 26 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 3566260, + "thread": 17 + } + }, + { + "amount": "60.642745419", + "slot": { + "period": 3644991, + "thread": 23 + } + }, + { + "amount": "60.642745411", + "slot": { + "period": 3937196, + "thread": 27 + } + } + ], + "AU12HQZcSEUWn2K8zB33XcFxcHaUvG9SYRfkkZfpYc2ZYChQU3A8J": [ + { + "amount": "186.190480378", + "slot": { + "period": 132057, + "thread": 10 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 244985, + "thread": 26 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 413427, + "thread": 30 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 607664, + "thread": 21 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 711806, + "thread": 21 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 880303, + "thread": 28 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1107180, + "thread": 22 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1155441, + "thread": 10 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1440217, + "thread": 25 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1496875, + "thread": 3 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1674018, + "thread": 2 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 1816714, + "thread": 13 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2071734, + "thread": 7 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2213212, + "thread": 12 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2460466, + "thread": 25 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2536712, + "thread": 4 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2770447, + "thread": 28 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2842291, + "thread": 4 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 2994454, + "thread": 12 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 3161314, + "thread": 3 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 3395201, + "thread": 31 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 3602368, + "thread": 27 + } + }, + { + "amount": "186.190480378", + "slot": { + "period": 3659968, + "thread": 29 + } + }, + { + "amount": "186.190480371", + "slot": { + "period": 3805348, + "thread": 30 + } + } + ], + "AU12HSrp2Yk8hahvqiBRELFsRRYTBVgzEB1W1jaHaFJqtW51V77nZ": [ + { + "amount": "168.497864982", + "slot": { + "period": 53334, + "thread": 17 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 322711, + "thread": 1 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 384899, + "thread": 18 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 599839, + "thread": 29 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 709053, + "thread": 18 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 852716, + "thread": 0 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1076345, + "thread": 12 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1154147, + "thread": 3 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1328882, + "thread": 7 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1586605, + "thread": 4 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1737192, + "thread": 29 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 1863916, + "thread": 7 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2070744, + "thread": 25 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2230426, + "thread": 4 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2423700, + "thread": 27 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2537976, + "thread": 15 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2677282, + "thread": 17 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 2800238, + "thread": 2 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 3023378, + "thread": 10 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 3183856, + "thread": 20 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 3355037, + "thread": 15 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 3616049, + "thread": 0 + } + }, + { + "amount": "168.497864982", + "slot": { + "period": 3733222, + "thread": 12 + } + }, + { + "amount": "168.497864979", + "slot": { + "period": 3823665, + "thread": 3 + } + } + ], + "AU12HTijUMKn3pA4JytJBX22GXoPsUr8asyphJadLYUCn4wCRc6Uq": [ + { + "amount": "123.639218058", + "slot": { + "period": 112460, + "thread": 2 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 257768, + "thread": 14 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 471466, + "thread": 5 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 545092, + "thread": 27 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 758019, + "thread": 27 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 890850, + "thread": 7 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1018400, + "thread": 7 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1312272, + "thread": 0 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1339434, + "thread": 26 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1574642, + "thread": 31 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1699185, + "thread": 31 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 1849826, + "thread": 29 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2090124, + "thread": 26 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2203851, + "thread": 31 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2347263, + "thread": 28 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2521734, + "thread": 17 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2696946, + "thread": 7 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 2934169, + "thread": 7 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 3080694, + "thread": 0 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 3223550, + "thread": 22 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 3391008, + "thread": 15 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 3504303, + "thread": 1 + } + }, + { + "amount": "123.639218058", + "slot": { + "period": 3726576, + "thread": 26 + } + }, + { + "amount": "123.639218051", + "slot": { + "period": 3850415, + "thread": 12 + } + } + ], + "AU12HTvAaxxru1Yu9A4GQZcjrerZhVnvA9jevS5aEgGgWyFDNbMj5": [ + { + "amount": "541.475523497", + "slot": { + "period": 79869, + "thread": 23 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 275757, + "thread": 25 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 476634, + "thread": 29 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 628138, + "thread": 18 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 788853, + "thread": 29 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 835150, + "thread": 19 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1145984, + "thread": 4 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1243637, + "thread": 8 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1420630, + "thread": 18 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1554454, + "thread": 27 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1647587, + "thread": 3 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 1940862, + "thread": 21 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2075845, + "thread": 6 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2184759, + "thread": 12 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2395068, + "thread": 16 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2489362, + "thread": 11 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2733679, + "thread": 24 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 2920024, + "thread": 21 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 3050916, + "thread": 14 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 3197144, + "thread": 30 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 3325000, + "thread": 21 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 3559205, + "thread": 7 + } + }, + { + "amount": "541.475523497", + "slot": { + "period": 3670886, + "thread": 4 + } + }, + { + "amount": "541.475523499", + "slot": { + "period": 3900980, + "thread": 17 + } + } + ], + "AU12HTyY2KSdkNzZiLkD7u6Ee5bciRkYxigSDzKLc5skVYhNujyD7": [ + { + "amount": "214.005220928", + "slot": { + "period": 79112, + "thread": 13 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 241610, + "thread": 14 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 328248, + "thread": 24 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 552065, + "thread": 31 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 661931, + "thread": 11 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 980137, + "thread": 23 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1058737, + "thread": 20 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1219147, + "thread": 9 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1419873, + "thread": 10 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1510192, + "thread": 9 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1763734, + "thread": 1 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 1912356, + "thread": 16 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2084429, + "thread": 17 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2209960, + "thread": 27 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2319030, + "thread": 26 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2478820, + "thread": 7 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2650393, + "thread": 20 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 2880047, + "thread": 24 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 3058824, + "thread": 8 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 3287955, + "thread": 30 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 3335688, + "thread": 26 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 3460305, + "thread": 30 + } + }, + { + "amount": "214.005220928", + "slot": { + "period": 3736174, + "thread": 11 + } + }, + { + "amount": "214.005220927", + "slot": { + "period": 3879308, + "thread": 5 + } + } + ], + "AU12HUmprchXYbSzu59v94XZUNWEmtYxgbHYazXGXqdFCScrjFgNJ": [ + { + "amount": "145.867764253", + "slot": { + "period": 125879, + "thread": 0 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 205712, + "thread": 19 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 485225, + "thread": 30 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 642355, + "thread": 15 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 724588, + "thread": 27 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 943141, + "thread": 7 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1052907, + "thread": 0 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1299981, + "thread": 27 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1460424, + "thread": 7 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1643086, + "thread": 8 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1761352, + "thread": 24 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 1938202, + "thread": 17 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2114649, + "thread": 20 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2185755, + "thread": 11 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2366666, + "thread": 28 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2551691, + "thread": 14 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2783963, + "thread": 29 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2928224, + "thread": 14 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 2994883, + "thread": 25 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 3127413, + "thread": 31 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 3402427, + "thread": 0 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 3573257, + "thread": 6 + } + }, + { + "amount": "145.867764253", + "slot": { + "period": 3764939, + "thread": 18 + } + }, + { + "amount": "145.867764246", + "slot": { + "period": 3896600, + "thread": 31 + } + } + ], + "AU12HVLPV3x9cUm6eZe5daTZhXHRR8KnPvAfKvoa8X9FhN9PtubhZ": [ + { + "amount": "450.147661531", + "slot": { + "period": 92395, + "thread": 8 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 212864, + "thread": 26 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 397835, + "thread": 31 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 529138, + "thread": 31 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 811963, + "thread": 19 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 848747, + "thread": 24 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1148216, + "thread": 20 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1294467, + "thread": 20 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1325503, + "thread": 15 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1556283, + "thread": 20 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1760927, + "thread": 17 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 1882699, + "thread": 0 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2142317, + "thread": 7 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2154807, + "thread": 28 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2364218, + "thread": 26 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2516790, + "thread": 3 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2631324, + "thread": 25 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 2876223, + "thread": 31 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 3118955, + "thread": 12 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 3207172, + "thread": 28 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 3349504, + "thread": 23 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 3472837, + "thread": 18 + } + }, + { + "amount": "450.147661531", + "slot": { + "period": 3627852, + "thread": 13 + } + }, + { + "amount": "450.147661541", + "slot": { + "period": 3796720, + "thread": 15 + } + } + ], + "AU12HVPR7aCgCQ1oiU6cQ6nkEiQfhYEV49knrWDs31wmUgU5REnJu": [ + { + "amount": "54.125884214", + "slot": { + "period": 89897, + "thread": 17 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 284974, + "thread": 24 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 429083, + "thread": 16 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 528017, + "thread": 9 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 819320, + "thread": 14 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 948767, + "thread": 22 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1027289, + "thread": 7 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1218532, + "thread": 11 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1319471, + "thread": 4 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1564770, + "thread": 18 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1727934, + "thread": 24 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 1947762, + "thread": 0 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2136651, + "thread": 21 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2215838, + "thread": 14 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2339660, + "thread": 13 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2605582, + "thread": 20 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2698364, + "thread": 27 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2935259, + "thread": 20 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 2976058, + "thread": 15 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 3235536, + "thread": 14 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 3315711, + "thread": 24 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 3483540, + "thread": 20 + } + }, + { + "amount": "54.125884214", + "slot": { + "period": 3769681, + "thread": 20 + } + }, + { + "amount": "54.125884209", + "slot": { + "period": 3843567, + "thread": 15 + } + } + ], + "AU12HVREQq85K38m8K5ggVhEi3X55cA1ivP83W4gESp2NTsF9eYWf": [ + { + "amount": "101.992890793", + "slot": { + "period": 105253, + "thread": 30 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 177315, + "thread": 9 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 377021, + "thread": 28 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 548832, + "thread": 16 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 666995, + "thread": 7 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 932441, + "thread": 29 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 991917, + "thread": 6 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 1221274, + "thread": 19 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 1430156, + "thread": 6 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 1586628, + "thread": 30 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 1778705, + "thread": 1 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 1944343, + "thread": 14 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2020955, + "thread": 9 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2278842, + "thread": 2 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2418991, + "thread": 10 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2476000, + "thread": 4 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2674722, + "thread": 13 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 2873709, + "thread": 31 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 3061261, + "thread": 14 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 3281195, + "thread": 9 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 3411411, + "thread": 2 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 3616405, + "thread": 15 + } + }, + { + "amount": "101.992890793", + "slot": { + "period": 3671458, + "thread": 13 + } + }, + { + "amount": "101.992890783", + "slot": { + "period": 3784386, + "thread": 15 + } + } + ], + "AU12HVjkZ2f5stJCmcDr7y7tkor2svVUKqh1gzxpD9MJbTGAZVXQJ": [ + { + "amount": "1166.666666667", + "slot": { + "period": 42882, + "thread": 20 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 290899, + "thread": 21 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 480345, + "thread": 2 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 563233, + "thread": 13 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 657840, + "thread": 2 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 883316, + "thread": 7 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1041408, + "thread": 26 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1216138, + "thread": 10 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1458108, + "thread": 12 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1568027, + "thread": 12 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1807665, + "thread": 10 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1939526, + "thread": 19 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2115173, + "thread": 9 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2172060, + "thread": 13 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2424403, + "thread": 28 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2572471, + "thread": 23 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2695548, + "thread": 29 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2854416, + "thread": 0 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3077641, + "thread": 4 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3127164, + "thread": 17 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3393293, + "thread": 22 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3588032, + "thread": 21 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3714971, + "thread": 28 + } + }, + { + "amount": "1166.666666659", + "slot": { + "period": 3817904, + "thread": 4 + } + } + ], + "AU12HVyXji8XpSrUwLMYxRGmBdMqcNFqbdir6sKLEBfHdVioqeWhE": [ + { + "amount": "420.836320089", + "slot": { + "period": 166859, + "thread": 20 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 259601, + "thread": 14 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 412750, + "thread": 25 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 532300, + "thread": 28 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 742175, + "thread": 3 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 862213, + "thread": 25 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1066920, + "thread": 16 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1283538, + "thread": 23 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1341365, + "thread": 6 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1639598, + "thread": 18 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1776873, + "thread": 11 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 1853932, + "thread": 23 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2014183, + "thread": 8 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2271479, + "thread": 30 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2383713, + "thread": 19 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2562856, + "thread": 8 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2712192, + "thread": 7 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2813476, + "thread": 21 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 2985006, + "thread": 11 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 3214801, + "thread": 4 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 3292310, + "thread": 5 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 3487493, + "thread": 12 + } + }, + { + "amount": "420.836320089", + "slot": { + "period": 3649647, + "thread": 16 + } + }, + { + "amount": "420.836320099", + "slot": { + "period": 3821276, + "thread": 13 + } + } + ], + "AU12HXeZJpMPwQVcP5oWxntb5SiMLHvmTrSHKuUi8fuvRF67FaReK": [ + { + "amount": "155.804694225", + "slot": { + "period": 131674, + "thread": 8 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 287983, + "thread": 28 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 409798, + "thread": 18 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 552591, + "thread": 17 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 731818, + "thread": 19 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 934938, + "thread": 22 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1065421, + "thread": 10 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1238007, + "thread": 11 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1366651, + "thread": 14 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1555824, + "thread": 22 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1769316, + "thread": 3 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 1830714, + "thread": 25 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2036854, + "thread": 7 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2291480, + "thread": 11 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2416644, + "thread": 22 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2567912, + "thread": 6 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2640463, + "thread": 27 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 2857164, + "thread": 22 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 3002089, + "thread": 10 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 3174423, + "thread": 11 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 3342569, + "thread": 4 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 3454953, + "thread": 10 + } + }, + { + "amount": "155.804694225", + "slot": { + "period": 3680346, + "thread": 6 + } + }, + { + "amount": "155.804694235", + "slot": { + "period": 3872956, + "thread": 21 + } + } + ], + "AU12HY68wjcXWkBimMGJ3KUSwfN3SsuxXMxQg36WXhvgMGwA4ELQh": [ + { + "amount": "106.772145244", + "slot": { + "period": 39627, + "thread": 17 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 211337, + "thread": 15 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 424897, + "thread": 14 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 550335, + "thread": 19 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 802626, + "thread": 3 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 867399, + "thread": 30 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1146120, + "thread": 6 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1309646, + "thread": 19 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1456440, + "thread": 23 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1635797, + "thread": 4 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1775911, + "thread": 12 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 1910747, + "thread": 13 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2126220, + "thread": 12 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2161768, + "thread": 28 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2458882, + "thread": 26 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2529380, + "thread": 31 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2698988, + "thread": 13 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2947102, + "thread": 17 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 2955089, + "thread": 22 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 3272043, + "thread": 17 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 3427692, + "thread": 18 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 3554433, + "thread": 22 + } + }, + { + "amount": "106.772145244", + "slot": { + "period": 3675582, + "thread": 27 + } + }, + { + "amount": "106.772145250", + "slot": { + "period": 3786709, + "thread": 17 + } + } + ], + "AU12HYQ8zuZTzTVrwinDyWEnCff3kTTBGPZ65wtecLSjcs7PjkT9z": [ + { + "amount": "85.428445073", + "slot": { + "period": 92632, + "thread": 25 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 263822, + "thread": 7 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 355057, + "thread": 29 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 549081, + "thread": 13 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 795598, + "thread": 0 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 880251, + "thread": 17 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1022816, + "thread": 4 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1192446, + "thread": 6 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1347670, + "thread": 14 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1592181, + "thread": 16 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1716946, + "thread": 6 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1882877, + "thread": 14 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 1994719, + "thread": 22 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2218386, + "thread": 22 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2303025, + "thread": 8 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2504171, + "thread": 0 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2774889, + "thread": 2 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2815909, + "thread": 0 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 2957964, + "thread": 28 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 3277295, + "thread": 12 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 3322363, + "thread": 9 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 3491241, + "thread": 4 + } + }, + { + "amount": "85.428445073", + "slot": { + "period": 3710236, + "thread": 0 + } + }, + { + "amount": "85.428445063", + "slot": { + "period": 3862922, + "thread": 31 + } + } + ], + "AU12HZ1r1qoVaeRZri9QsUGg6NefBUh2KhJFXEhcchst3uwBfcxPp": [ + { + "amount": "178.315444323", + "slot": { + "period": 27319, + "thread": 5 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 258539, + "thread": 27 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 325430, + "thread": 15 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 503327, + "thread": 26 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 750006, + "thread": 30 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 956686, + "thread": 3 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1107107, + "thread": 12 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1242748, + "thread": 9 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1330686, + "thread": 1 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1576552, + "thread": 15 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1744365, + "thread": 29 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 1846029, + "thread": 17 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2132728, + "thread": 1 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2289816, + "thread": 24 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2359725, + "thread": 14 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2547008, + "thread": 7 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2677819, + "thread": 21 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2796388, + "thread": 7 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 2973434, + "thread": 28 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 3162893, + "thread": 30 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 3415344, + "thread": 20 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 3513692, + "thread": 14 + } + }, + { + "amount": "178.315444323", + "slot": { + "period": 3747473, + "thread": 4 + } + }, + { + "amount": "178.315444328", + "slot": { + "period": 3944334, + "thread": 9 + } + } + ], + "AU12HaHYqnFUErCELjpzqmbJWUT3RwyqB7AnD46itLNBECxeWp4tH": [ + { + "amount": "223.877143298", + "slot": { + "period": 126880, + "thread": 26 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 216211, + "thread": 12 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 447739, + "thread": 30 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 531361, + "thread": 8 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 796496, + "thread": 24 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 937473, + "thread": 11 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 994583, + "thread": 28 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 1238927, + "thread": 7 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 1358669, + "thread": 5 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 1610799, + "thread": 26 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 1724263, + "thread": 16 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 1838062, + "thread": 13 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2119849, + "thread": 4 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2192473, + "thread": 29 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2399294, + "thread": 6 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2621209, + "thread": 6 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2722819, + "thread": 10 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 2794159, + "thread": 25 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 3022518, + "thread": 26 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 3161930, + "thread": 29 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 3298759, + "thread": 12 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 3565543, + "thread": 16 + } + }, + { + "amount": "223.877143298", + "slot": { + "period": 3664364, + "thread": 2 + } + }, + { + "amount": "223.877143292", + "slot": { + "period": 3923299, + "thread": 30 + } + } + ], + "AU12HasPFnjo9FehS8SVgEW61xmwAdxMu5hs1xdbPpFWVdfVYwrQy": [ + { + "amount": "63.719700471", + "slot": { + "period": 35662, + "thread": 23 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 196603, + "thread": 1 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 454535, + "thread": 16 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 627151, + "thread": 30 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 757834, + "thread": 4 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 958809, + "thread": 6 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1088151, + "thread": 10 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1221103, + "thread": 25 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1442849, + "thread": 13 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1555401, + "thread": 29 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1672840, + "thread": 11 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 1839439, + "thread": 17 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2014112, + "thread": 1 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2258571, + "thread": 11 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2380231, + "thread": 15 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2500150, + "thread": 21 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2779576, + "thread": 31 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 2916050, + "thread": 1 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 3003122, + "thread": 22 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 3229877, + "thread": 8 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 3295497, + "thread": 12 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 3598341, + "thread": 8 + } + }, + { + "amount": "63.719700471", + "slot": { + "period": 3730221, + "thread": 20 + } + }, + { + "amount": "63.719700470", + "slot": { + "period": 3848427, + "thread": 14 + } + } + ], + "AU12HbEy8i9H8aJnPbF3gY11NDzSx3yhC8Tteq4UymWj89uRn7ULt": [ + { + "amount": "111.471787503", + "slot": { + "period": 139659, + "thread": 21 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 247839, + "thread": 9 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 364371, + "thread": 18 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 534085, + "thread": 11 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 759666, + "thread": 10 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 917443, + "thread": 3 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1031629, + "thread": 11 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1168068, + "thread": 30 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1425215, + "thread": 22 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1618300, + "thread": 26 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1746838, + "thread": 6 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 1862907, + "thread": 30 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2097264, + "thread": 15 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2164855, + "thread": 20 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2439347, + "thread": 12 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2612760, + "thread": 5 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2676256, + "thread": 2 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 2951734, + "thread": 5 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 3081556, + "thread": 4 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 3280738, + "thread": 12 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 3324074, + "thread": 19 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 3483107, + "thread": 11 + } + }, + { + "amount": "111.471787503", + "slot": { + "period": 3708657, + "thread": 0 + } + }, + { + "amount": "111.471787500", + "slot": { + "period": 3918903, + "thread": 27 + } + } + ], + "AU12HcbyUsFg2rQ1hEhrwUU6vJ45tK4zvwoLcLDDeqnTXx7yE3pvN": [ + { + "amount": "327.032484724", + "slot": { + "period": 55691, + "thread": 10 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 196608, + "thread": 3 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 427467, + "thread": 4 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 635034, + "thread": 24 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 666915, + "thread": 15 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 920588, + "thread": 0 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1048361, + "thread": 10 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1186646, + "thread": 11 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1352232, + "thread": 26 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1554862, + "thread": 6 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1717949, + "thread": 31 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 1882952, + "thread": 22 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2004899, + "thread": 17 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2267916, + "thread": 1 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2368939, + "thread": 2 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2508677, + "thread": 5 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2636302, + "thread": 31 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 2917750, + "thread": 26 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 3008117, + "thread": 6 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 3127177, + "thread": 14 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 3378912, + "thread": 18 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 3544012, + "thread": 26 + } + }, + { + "amount": "327.032484724", + "slot": { + "period": 3766414, + "thread": 6 + } + }, + { + "amount": "327.032484727", + "slot": { + "period": 3906418, + "thread": 27 + } + } + ], + "AU12Hd5G31DsKN5RAFbvghVwyWjFakLoXafg3afm3UfFmwq1Tpywc": [ + { + "amount": "180.979638800", + "slot": { + "period": 106092, + "thread": 20 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 270008, + "thread": 6 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 482735, + "thread": 15 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 652062, + "thread": 30 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 694372, + "thread": 17 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 897728, + "thread": 13 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1003441, + "thread": 7 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1257217, + "thread": 6 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1432590, + "thread": 25 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1637455, + "thread": 10 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1733107, + "thread": 19 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 1924833, + "thread": 18 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2057734, + "thread": 26 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2237969, + "thread": 0 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2363379, + "thread": 20 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2615388, + "thread": 13 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2655456, + "thread": 31 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2842810, + "thread": 5 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 2992324, + "thread": 22 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 3174566, + "thread": 15 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 3415954, + "thread": 19 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 3452988, + "thread": 6 + } + }, + { + "amount": "180.979638800", + "slot": { + "period": 3696380, + "thread": 3 + } + }, + { + "amount": "180.979638805", + "slot": { + "period": 3915393, + "thread": 11 + } + } + ], + "AU12HdCwVSGmZwq1UFfvtseGN9QNHukB39UxenHsjMPCzaRZLHFnK": [ + { + "amount": "106.116350196", + "slot": { + "period": 83110, + "thread": 18 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 223733, + "thread": 0 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 480675, + "thread": 9 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 585583, + "thread": 12 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 728398, + "thread": 1 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 975294, + "thread": 7 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1009368, + "thread": 29 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1243895, + "thread": 22 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1432636, + "thread": 30 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1509054, + "thread": 30 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1658566, + "thread": 14 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 1876604, + "thread": 18 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2039267, + "thread": 20 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2258985, + "thread": 27 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2295864, + "thread": 31 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2569319, + "thread": 1 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2767976, + "thread": 18 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2937032, + "thread": 19 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 2997584, + "thread": 23 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 3281286, + "thread": 23 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 3319625, + "thread": 16 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 3469503, + "thread": 21 + } + }, + { + "amount": "106.116350196", + "slot": { + "period": 3746685, + "thread": 10 + } + }, + { + "amount": "106.116350205", + "slot": { + "period": 3849737, + "thread": 29 + } + } + ], + "AU12He7xmvXTdT1BbRrV5WPCKcRMgpG2fjiJu5naKLJRMQNwvjTZA": [ + { + "amount": "131.741272271", + "slot": { + "period": 51871, + "thread": 14 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 206979, + "thread": 3 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 339230, + "thread": 17 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 641286, + "thread": 8 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 768662, + "thread": 13 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 923986, + "thread": 24 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1038792, + "thread": 3 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1208641, + "thread": 14 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1318988, + "thread": 8 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1563430, + "thread": 22 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1801931, + "thread": 26 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1930111, + "thread": 27 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 1986143, + "thread": 14 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2166282, + "thread": 12 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2322687, + "thread": 17 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2600366, + "thread": 21 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2790080, + "thread": 16 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2794425, + "thread": 18 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 2962796, + "thread": 31 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 3251774, + "thread": 5 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 3437284, + "thread": 30 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 3511529, + "thread": 26 + } + }, + { + "amount": "131.741272271", + "slot": { + "period": 3758222, + "thread": 31 + } + }, + { + "amount": "131.741272260", + "slot": { + "period": 3782668, + "thread": 20 + } + } + ], + "AU12HeDjge5CxUxeDXbeQm2CLy4hAJxwTiCreYDCzgDR4jygU3BCr": [ + { + "amount": "92.496257288", + "slot": { + "period": 164434, + "thread": 6 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 293395, + "thread": 18 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 371564, + "thread": 31 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 502752, + "thread": 26 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 702131, + "thread": 21 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 957106, + "thread": 26 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1041266, + "thread": 2 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1221762, + "thread": 8 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1450279, + "thread": 4 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1570929, + "thread": 4 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1719375, + "thread": 6 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 1873444, + "thread": 24 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2034001, + "thread": 13 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2173242, + "thread": 26 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2443907, + "thread": 25 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2576269, + "thread": 31 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2659895, + "thread": 1 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 2909872, + "thread": 5 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 3006255, + "thread": 12 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 3179787, + "thread": 20 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 3290986, + "thread": 31 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 3617871, + "thread": 2 + } + }, + { + "amount": "92.496257288", + "slot": { + "period": 3677617, + "thread": 10 + } + }, + { + "amount": "92.496257295", + "slot": { + "period": 3922711, + "thread": 30 + } + } + ], + "AU12HeH8BYZQegfKreRdDgJSs6UUByJvY3tbkc1c1FR6u6jSAkHm7": [ + { + "amount": "92.204917572", + "slot": { + "period": 136337, + "thread": 8 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 288166, + "thread": 4 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 431448, + "thread": 18 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 491764, + "thread": 10 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 780451, + "thread": 13 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 908888, + "thread": 24 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1040846, + "thread": 20 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1317096, + "thread": 29 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1400557, + "thread": 5 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1636517, + "thread": 28 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1717986, + "thread": 15 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 1867756, + "thread": 10 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2106934, + "thread": 11 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2244497, + "thread": 11 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2351055, + "thread": 2 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2557215, + "thread": 21 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2639411, + "thread": 9 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 2866367, + "thread": 5 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 3021671, + "thread": 21 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 3250557, + "thread": 17 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 3410597, + "thread": 12 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 3516093, + "thread": 19 + } + }, + { + "amount": "92.204917572", + "slot": { + "period": 3727859, + "thread": 13 + } + }, + { + "amount": "92.204917575", + "slot": { + "period": 3838572, + "thread": 13 + } + } + ], + "AU12HeMg443UyRDqmZVpbdUwucEwYaFst9FWSNZgzywCeY8Sy6KDz": [ + { + "amount": "187.471556610", + "slot": { + "period": 92513, + "thread": 29 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 177908, + "thread": 5 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 409815, + "thread": 2 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 512984, + "thread": 16 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 770073, + "thread": 14 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 824864, + "thread": 21 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1115992, + "thread": 1 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1252307, + "thread": 31 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1440667, + "thread": 11 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1588350, + "thread": 19 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1682634, + "thread": 28 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 1816190, + "thread": 11 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2045621, + "thread": 28 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2197171, + "thread": 7 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2375002, + "thread": 29 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2560622, + "thread": 6 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2713803, + "thread": 2 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2803759, + "thread": 9 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 2987879, + "thread": 31 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 3259857, + "thread": 23 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 3359752, + "thread": 18 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 3506372, + "thread": 10 + } + }, + { + "amount": "187.471556610", + "slot": { + "period": 3738091, + "thread": 30 + } + }, + { + "amount": "187.471556618", + "slot": { + "period": 3934921, + "thread": 3 + } + } + ], + "AU12HgpfKYxek2FqkQg2D3dvjyasuctiWzhsP7Z4cTbGxy5sXXWJM": [ + { + "amount": "422.094087364", + "slot": { + "period": 25894, + "thread": 15 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 256442, + "thread": 0 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 375743, + "thread": 4 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 493960, + "thread": 4 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 820332, + "thread": 10 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 906880, + "thread": 28 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1147926, + "thread": 7 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1312957, + "thread": 13 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1434077, + "thread": 8 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1484458, + "thread": 14 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1765038, + "thread": 21 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 1857666, + "thread": 13 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2084343, + "thread": 26 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2186083, + "thread": 26 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2345298, + "thread": 28 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2617750, + "thread": 5 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2710938, + "thread": 26 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 2819921, + "thread": 7 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 3040689, + "thread": 24 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 3139743, + "thread": 6 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 3385041, + "thread": 31 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 3492590, + "thread": 20 + } + }, + { + "amount": "422.094087364", + "slot": { + "period": 3709701, + "thread": 31 + } + }, + { + "amount": "422.094087368", + "slot": { + "period": 3881038, + "thread": 8 + } + } + ], + "AU12Hh2DrcnQvyMg2qGnMHQYwxAa4ELcEdUM516we3y3GeL2LS8cq": [ + { + "amount": "280.644818410", + "slot": { + "period": 63704, + "thread": 28 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 177193, + "thread": 26 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 480033, + "thread": 4 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 545890, + "thread": 8 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 677823, + "thread": 31 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 944693, + "thread": 17 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1115905, + "thread": 3 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1239213, + "thread": 24 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1343561, + "thread": 28 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1617174, + "thread": 31 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1773307, + "thread": 18 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 1935958, + "thread": 10 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2028472, + "thread": 16 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2279439, + "thread": 22 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2367585, + "thread": 0 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2520388, + "thread": 9 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2668630, + "thread": 23 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2885875, + "thread": 4 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 2976973, + "thread": 24 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 3207352, + "thread": 2 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 3352397, + "thread": 18 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 3617893, + "thread": 26 + } + }, + { + "amount": "280.644818410", + "slot": { + "period": 3704776, + "thread": 11 + } + }, + { + "amount": "280.644818413", + "slot": { + "period": 3853656, + "thread": 9 + } + } + ], + "AU12Hh8i4csPAJtzWAm16ANcgqsFbPkaa3QCmDTzBRKfiT5vhCZFy": [ + { + "amount": "2770.833333333", + "slot": { + "period": 82686, + "thread": 20 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 243352, + "thread": 29 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 340673, + "thread": 7 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 547131, + "thread": 11 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 761615, + "thread": 5 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 850064, + "thread": 27 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1078957, + "thread": 0 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1258665, + "thread": 10 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1427744, + "thread": 4 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1588314, + "thread": 8 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1716549, + "thread": 30 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1898116, + "thread": 4 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2114760, + "thread": 16 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2153924, + "thread": 5 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2340014, + "thread": 31 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2479330, + "thread": 3 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2638079, + "thread": 23 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2887063, + "thread": 23 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2971931, + "thread": 23 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3219543, + "thread": 26 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3385108, + "thread": 1 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3459510, + "thread": 30 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3691196, + "thread": 12 + } + }, + { + "amount": "2770.833333341", + "slot": { + "period": 3838147, + "thread": 9 + } + } + ], + "AU12HhgGJW7qs5kKpBrzDLrKr3H5fLk16rbJNDby1urVsH3mTUF7o": [ + { + "amount": "440.234448907", + "slot": { + "period": 26451, + "thread": 7 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 260297, + "thread": 10 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 388521, + "thread": 9 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 626247, + "thread": 13 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 752075, + "thread": 14 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 910025, + "thread": 3 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1127174, + "thread": 15 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1161501, + "thread": 20 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1384078, + "thread": 17 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1547521, + "thread": 12 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1783320, + "thread": 29 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1914913, + "thread": 19 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 1988223, + "thread": 19 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 2159225, + "thread": 29 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 2349674, + "thread": 28 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 2535446, + "thread": 25 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 2629464, + "thread": 29 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 2899827, + "thread": 2 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 3059311, + "thread": 2 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 3135598, + "thread": 25 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 3436874, + "thread": 22 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 3615648, + "thread": 3 + } + }, + { + "amount": "440.234448907", + "slot": { + "period": 3689002, + "thread": 28 + } + }, + { + "amount": "440.234448898", + "slot": { + "period": 3933016, + "thread": 12 + } + } + ], + "AU12HhvCyQaeBDid2AZe3EpUfVBAFnasKUK3hjEKVE7geHS7RGN58": [ + { + "amount": "205.051386179", + "slot": { + "period": 50760, + "thread": 5 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 206501, + "thread": 13 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 437974, + "thread": 0 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 578170, + "thread": 21 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 666906, + "thread": 16 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 907642, + "thread": 5 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1102621, + "thread": 14 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1201403, + "thread": 28 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1444395, + "thread": 18 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1569162, + "thread": 30 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1807264, + "thread": 22 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 1968477, + "thread": 2 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2031142, + "thread": 28 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2231320, + "thread": 19 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2445161, + "thread": 10 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2474106, + "thread": 25 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2625879, + "thread": 1 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2939450, + "thread": 27 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 2959212, + "thread": 9 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 3129018, + "thread": 20 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 3402825, + "thread": 27 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 3496612, + "thread": 7 + } + }, + { + "amount": "205.051386179", + "slot": { + "period": 3744119, + "thread": 13 + } + }, + { + "amount": "205.051386169", + "slot": { + "period": 3823416, + "thread": 4 + } + } + ], + "AU12HmLqovgTX1ML9RoQG6X4wSnVCKPZiF8EEVzM7T6nwVJezFwAm": [ + { + "amount": "204.470612326", + "slot": { + "period": 153764, + "thread": 26 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 261313, + "thread": 31 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 476676, + "thread": 31 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 634748, + "thread": 3 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 682898, + "thread": 8 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 828410, + "thread": 23 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1012061, + "thread": 27 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1299327, + "thread": 28 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1344457, + "thread": 24 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1620162, + "thread": 14 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1785888, + "thread": 12 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1914629, + "thread": 16 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 1978252, + "thread": 14 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 2225058, + "thread": 8 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 2462230, + "thread": 9 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 2568939, + "thread": 0 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 2636761, + "thread": 30 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 2833945, + "thread": 21 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 3000308, + "thread": 3 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 3169431, + "thread": 1 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 3310142, + "thread": 8 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 3600632, + "thread": 18 + } + }, + { + "amount": "204.470612326", + "slot": { + "period": 3727443, + "thread": 31 + } + }, + { + "amount": "204.470612314", + "slot": { + "period": 3857218, + "thread": 23 + } + } + ], + "AU12HmbRHo57ajXrPLerMiHuRNX9xzZcnJbMzo7s9UYzPnmjYLoZi": [ + { + "amount": "179.611483884", + "slot": { + "period": 35599, + "thread": 4 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 309008, + "thread": 6 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 391732, + "thread": 24 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 636201, + "thread": 13 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 739990, + "thread": 10 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 975620, + "thread": 22 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1005492, + "thread": 28 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1177345, + "thread": 20 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1318921, + "thread": 3 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1497748, + "thread": 15 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1669613, + "thread": 14 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 1903898, + "thread": 6 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2045775, + "thread": 11 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2274908, + "thread": 1 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2352991, + "thread": 17 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2472796, + "thread": 5 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2747889, + "thread": 15 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 2796318, + "thread": 9 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 3116142, + "thread": 31 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 3267071, + "thread": 23 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 3433888, + "thread": 22 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 3539468, + "thread": 7 + } + }, + { + "amount": "179.611483884", + "slot": { + "period": 3728733, + "thread": 3 + } + }, + { + "amount": "179.611483880", + "slot": { + "period": 3861031, + "thread": 1 + } + } + ], + "AU12HnCE5B4sJs92eDLSaUA1UDJEtVCB84EuGYt52RU3TAQiduTXE": [ + { + "amount": "151.646186190", + "slot": { + "period": 87853, + "thread": 13 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 292378, + "thread": 10 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 422958, + "thread": 26 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 619453, + "thread": 23 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 818717, + "thread": 14 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 909717, + "thread": 12 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1016542, + "thread": 14 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1225458, + "thread": 22 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1464191, + "thread": 28 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1528670, + "thread": 27 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1805645, + "thread": 25 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 1972346, + "thread": 15 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2071982, + "thread": 22 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2192291, + "thread": 29 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2372965, + "thread": 5 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2618722, + "thread": 19 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2692185, + "thread": 27 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 2803878, + "thread": 29 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 3102703, + "thread": 5 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 3241146, + "thread": 21 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 3379473, + "thread": 10 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 3546416, + "thread": 14 + } + }, + { + "amount": "151.646186190", + "slot": { + "period": 3731674, + "thread": 4 + } + }, + { + "amount": "151.646186200", + "slot": { + "period": 3895141, + "thread": 29 + } + } + ], + "AU12HnSmAHP4Ptxf7VzF4SPTPVknxjHe55nkiNTjfP1eBycf6f5BP": [ + { + "amount": "86.374797540", + "slot": { + "period": 14234, + "thread": 9 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 264882, + "thread": 7 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 404896, + "thread": 1 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 624870, + "thread": 13 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 733051, + "thread": 14 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 870016, + "thread": 2 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1141908, + "thread": 2 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1217641, + "thread": 27 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1335121, + "thread": 13 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1599356, + "thread": 28 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1770632, + "thread": 17 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 1834587, + "thread": 8 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2094655, + "thread": 25 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2244077, + "thread": 26 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2301258, + "thread": 12 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2476847, + "thread": 14 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2713028, + "thread": 12 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2929900, + "thread": 13 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 2981675, + "thread": 23 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 3156555, + "thread": 14 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 3409416, + "thread": 2 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 3521204, + "thread": 26 + } + }, + { + "amount": "86.374797540", + "slot": { + "period": 3751578, + "thread": 13 + } + }, + { + "amount": "86.374797547", + "slot": { + "period": 3876789, + "thread": 3 + } + } + ], + "AU12Hnrns7Y3PE9X9ZKK2AAKsAp1pjuDA8HZc7FtQxg5JnPF9utbN": [ + { + "amount": "84.951038213", + "slot": { + "period": 131182, + "thread": 11 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 249996, + "thread": 6 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 418692, + "thread": 23 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 649033, + "thread": 22 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 673499, + "thread": 0 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 856750, + "thread": 31 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1098898, + "thread": 21 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1239544, + "thread": 0 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1373125, + "thread": 19 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1598555, + "thread": 30 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1710971, + "thread": 2 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 1969864, + "thread": 8 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2100632, + "thread": 2 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2184522, + "thread": 31 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2411980, + "thread": 27 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2600084, + "thread": 24 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2655072, + "thread": 4 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2886360, + "thread": 20 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 2960961, + "thread": 6 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 3244614, + "thread": 6 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 3337051, + "thread": 15 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 3455985, + "thread": 16 + } + }, + { + "amount": "84.951038213", + "slot": { + "period": 3745168, + "thread": 26 + } + }, + { + "amount": "84.951038221", + "slot": { + "period": 3877326, + "thread": 26 + } + } + ], + "AU12HpgWiStoRQTrBrVjgVr7kpKvfN3GBh1xZS5R4fG5uwjjJr5Br": [ + { + "amount": "228.730058662", + "slot": { + "period": 26624, + "thread": 13 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 249462, + "thread": 20 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 331763, + "thread": 27 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 633232, + "thread": 20 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 806913, + "thread": 1 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 888432, + "thread": 8 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1090944, + "thread": 8 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1184127, + "thread": 13 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1389127, + "thread": 31 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1570379, + "thread": 0 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1703917, + "thread": 14 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 1816466, + "thread": 16 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2140610, + "thread": 5 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2246985, + "thread": 2 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2404737, + "thread": 17 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2528057, + "thread": 18 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2654887, + "thread": 4 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 2858182, + "thread": 12 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 3077784, + "thread": 29 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 3143648, + "thread": 14 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 3368959, + "thread": 12 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 3453611, + "thread": 4 + } + }, + { + "amount": "228.730058662", + "slot": { + "period": 3662225, + "thread": 10 + } + }, + { + "amount": "228.730058666", + "slot": { + "period": 3921724, + "thread": 15 + } + } + ], + "AU12HqJiwVQe8WszBjdPKvLA4hznhaXRjuJg1A1rb2iuSEMsvNkb": [ + { + "amount": "248.472938628", + "slot": { + "period": 86821, + "thread": 28 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 257470, + "thread": 5 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 468047, + "thread": 11 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 650321, + "thread": 28 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 685728, + "thread": 21 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 926469, + "thread": 8 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1059351, + "thread": 27 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1254772, + "thread": 9 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1365049, + "thread": 0 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1589074, + "thread": 21 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1786333, + "thread": 24 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 1859875, + "thread": 20 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2035344, + "thread": 22 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2273803, + "thread": 23 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2348523, + "thread": 28 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2619627, + "thread": 5 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2752654, + "thread": 19 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 2881602, + "thread": 14 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 3036713, + "thread": 10 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 3127471, + "thread": 27 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 3312377, + "thread": 19 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 3589816, + "thread": 10 + } + }, + { + "amount": "248.472938628", + "slot": { + "period": 3700913, + "thread": 12 + } + }, + { + "amount": "248.472938640", + "slot": { + "period": 3927401, + "thread": 27 + } + } + ], + "AU12HqVbuQ4H9U8vSU3zBEAF5UJNhVDHXxRvvSUE1Au8AmE8B2bGs": [ + { + "amount": "552.066285653", + "slot": { + "period": 143909, + "thread": 9 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 304749, + "thread": 19 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 476656, + "thread": 6 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 557604, + "thread": 24 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 780229, + "thread": 24 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 876789, + "thread": 18 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1076245, + "thread": 11 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1179250, + "thread": 23 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1358213, + "thread": 24 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1571548, + "thread": 8 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1661871, + "thread": 28 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 1890491, + "thread": 24 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2134587, + "thread": 13 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2218065, + "thread": 29 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2449878, + "thread": 29 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2464058, + "thread": 8 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2725045, + "thread": 17 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 2873308, + "thread": 10 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 3069088, + "thread": 0 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 3282721, + "thread": 0 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 3430520, + "thread": 16 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 3533911, + "thread": 16 + } + }, + { + "amount": "552.066285653", + "slot": { + "period": 3687148, + "thread": 24 + } + }, + { + "amount": "552.066285645", + "slot": { + "period": 3900787, + "thread": 2 + } + } + ], + "AU12HqXdupRUjCK5ZcDwQgBBVeuvFhuZVMBBvXkzfVN1vgZvRQfqS": [ + { + "amount": "362.838651078", + "slot": { + "period": 72985, + "thread": 15 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 172367, + "thread": 29 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 475748, + "thread": 15 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 571251, + "thread": 15 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 684245, + "thread": 10 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 915123, + "thread": 12 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1068951, + "thread": 9 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1201967, + "thread": 11 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1352695, + "thread": 5 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1633761, + "thread": 22 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1654288, + "thread": 7 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 1923950, + "thread": 2 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2143514, + "thread": 3 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2244424, + "thread": 28 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2304110, + "thread": 23 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2585901, + "thread": 26 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2679570, + "thread": 14 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 2942848, + "thread": 14 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 3014048, + "thread": 11 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 3244505, + "thread": 8 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 3422311, + "thread": 5 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 3555537, + "thread": 7 + } + }, + { + "amount": "362.838651078", + "slot": { + "period": 3625680, + "thread": 6 + } + }, + { + "amount": "362.838651071", + "slot": { + "period": 3830743, + "thread": 1 + } + } + ], + "AU12HrBbKWrd1AxotywqAHsWcqfy43EHRfTJUeEyVcjrixH3Nx6kG": [ + { + "amount": "440.766180999", + "slot": { + "period": 57108, + "thread": 5 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 309279, + "thread": 10 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 341052, + "thread": 11 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 588072, + "thread": 1 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 684171, + "thread": 19 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 852709, + "thread": 5 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1017472, + "thread": 0 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1317506, + "thread": 24 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1477095, + "thread": 17 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1507409, + "thread": 23 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1764679, + "thread": 3 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 1969250, + "thread": 29 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2060355, + "thread": 9 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2152194, + "thread": 26 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2460738, + "thread": 5 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2549802, + "thread": 20 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2662014, + "thread": 24 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 2891451, + "thread": 21 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 3080270, + "thread": 13 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 3162067, + "thread": 21 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 3426089, + "thread": 6 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 3511351, + "thread": 19 + } + }, + { + "amount": "440.766180999", + "slot": { + "period": 3735120, + "thread": 17 + } + }, + { + "amount": "440.766181002", + "slot": { + "period": 3917331, + "thread": 13 + } + } + ], + "AU12HrJGTDmosqXk3o946n9MHQQeCL24NFa8XG64AoSp3dCn8SYTY": [ + { + "amount": "57.865057682", + "slot": { + "period": 122027, + "thread": 27 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 230007, + "thread": 31 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 416441, + "thread": 27 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 616942, + "thread": 23 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 775660, + "thread": 2 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 885050, + "thread": 10 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1008765, + "thread": 23 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1223022, + "thread": 31 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1429291, + "thread": 4 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1571549, + "thread": 10 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1761243, + "thread": 23 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 1872411, + "thread": 6 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2089067, + "thread": 9 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2178774, + "thread": 30 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2348075, + "thread": 4 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2515966, + "thread": 15 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2653762, + "thread": 16 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 2941690, + "thread": 9 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 3114488, + "thread": 26 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 3231409, + "thread": 15 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 3385659, + "thread": 4 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 3555303, + "thread": 10 + } + }, + { + "amount": "57.865057682", + "slot": { + "period": 3768018, + "thread": 7 + } + }, + { + "amount": "57.865057670", + "slot": { + "period": 3869278, + "thread": 16 + } + } + ], + "AU12Hs9NoRrMTRtpHvEuz8gNmtKEy38CctdLWJnkedKYSHVDyR1qv": [ + { + "amount": "467.589685940", + "slot": { + "period": 102297, + "thread": 24 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 273356, + "thread": 6 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 437816, + "thread": 2 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 499219, + "thread": 9 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 737849, + "thread": 31 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 823824, + "thread": 20 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1049603, + "thread": 14 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1273039, + "thread": 11 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1423841, + "thread": 2 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1541963, + "thread": 19 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1694845, + "thread": 10 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 1841548, + "thread": 17 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2010375, + "thread": 27 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2201995, + "thread": 0 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2439262, + "thread": 13 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2590097, + "thread": 19 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2709463, + "thread": 15 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 2950529, + "thread": 23 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 3062454, + "thread": 11 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 3233421, + "thread": 24 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 3345724, + "thread": 14 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 3541210, + "thread": 3 + } + }, + { + "amount": "467.589685940", + "slot": { + "period": 3734017, + "thread": 20 + } + }, + { + "amount": "467.589685929", + "slot": { + "period": 3939802, + "thread": 14 + } + } + ], + "AU12HtRzt5KJarnVy55pVff3odUakEXCojyBdBgeNRLrNCQRKHfia": [ + { + "amount": "57.594353662", + "slot": { + "period": 102082, + "thread": 2 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 237299, + "thread": 5 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 383876, + "thread": 29 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 640017, + "thread": 21 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 762018, + "thread": 23 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 836394, + "thread": 19 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1084899, + "thread": 27 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1260949, + "thread": 18 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1394020, + "thread": 18 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1556957, + "thread": 0 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1763622, + "thread": 5 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 1957237, + "thread": 18 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2090402, + "thread": 14 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2156707, + "thread": 30 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2336667, + "thread": 12 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2602388, + "thread": 22 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2772006, + "thread": 30 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 2951288, + "thread": 31 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 3108482, + "thread": 26 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 3257890, + "thread": 15 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 3292748, + "thread": 25 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 3491560, + "thread": 16 + } + }, + { + "amount": "57.594353662", + "slot": { + "period": 3753184, + "thread": 29 + } + }, + { + "amount": "57.594353659", + "slot": { + "period": 3927973, + "thread": 27 + } + } + ], + "AU12HtWLyCcDbUzkYippAdEREFRwE3dFWSR3LYgybc1LjJ8JUaKQz": [ + { + "amount": "2916.666666667", + "slot": { + "period": 79651, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 265114, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 471886, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 546137, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 686667, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 905980, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1092829, + "thread": 18 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1245560, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1462108, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1571401, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1702991, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1837750, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2141449, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2185348, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2444841, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2610349, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2753335, + "thread": 3 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2832365, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3013676, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3236258, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3406823, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3601702, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3718244, + "thread": 12 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3863508, + "thread": 3 + } + } + ], + "AU12HuM3aS28RwJ8d8gGKZRERUG6c3TBVEmgKnhbHu7EvD4QMGn61": [ + { + "amount": "98.937509485", + "slot": { + "period": 128468, + "thread": 10 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 305718, + "thread": 8 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 414366, + "thread": 26 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 612746, + "thread": 12 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 819798, + "thread": 27 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 871291, + "thread": 30 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1008417, + "thread": 21 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1220104, + "thread": 7 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1390960, + "thread": 17 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1532980, + "thread": 1 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1689334, + "thread": 2 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 1812229, + "thread": 27 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2086241, + "thread": 16 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2266709, + "thread": 24 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2419171, + "thread": 10 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2577101, + "thread": 1 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2728564, + "thread": 12 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 2915344, + "thread": 12 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 3034119, + "thread": 15 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 3216244, + "thread": 19 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 3402169, + "thread": 12 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 3538733, + "thread": 20 + } + }, + { + "amount": "98.937509485", + "slot": { + "period": 3618899, + "thread": 18 + } + }, + { + "amount": "98.937509491", + "slot": { + "period": 3889559, + "thread": 9 + } + } + ], + "AU12HvzXHuQncKqHxubfvnPdBrZm5TXgjUzNnZt3baGyyXtT8iTJR": [ + { + "amount": "483.631511403", + "slot": { + "period": 157498, + "thread": 12 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 228576, + "thread": 16 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 467815, + "thread": 6 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 575654, + "thread": 30 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 656355, + "thread": 1 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 831899, + "thread": 9 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1024523, + "thread": 21 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1245305, + "thread": 6 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1387504, + "thread": 30 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1578127, + "thread": 13 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1760799, + "thread": 26 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 1860491, + "thread": 1 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2022732, + "thread": 14 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2254441, + "thread": 8 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2385894, + "thread": 9 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2621241, + "thread": 30 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2632713, + "thread": 13 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 2795839, + "thread": 28 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 3059544, + "thread": 30 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 3156423, + "thread": 8 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 3361107, + "thread": 1 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 3597334, + "thread": 30 + } + }, + { + "amount": "483.631511403", + "slot": { + "period": 3639103, + "thread": 8 + } + }, + { + "amount": "483.631511400", + "slot": { + "period": 3880327, + "thread": 7 + } + } + ], + "AU12HwZpJJojBynNmBMogP3c2dtkTPPRNV9kg33NMP4VeCMTAfRP6": [ + { + "amount": "636.256772235", + "slot": { + "period": 102169, + "thread": 19 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 208976, + "thread": 25 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 486894, + "thread": 2 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 640502, + "thread": 31 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 722468, + "thread": 4 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 910455, + "thread": 1 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1020976, + "thread": 16 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1279490, + "thread": 22 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1356236, + "thread": 3 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1626739, + "thread": 14 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1706413, + "thread": 3 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 1963037, + "thread": 10 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2107571, + "thread": 2 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2288329, + "thread": 1 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2437965, + "thread": 2 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2581937, + "thread": 23 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2745619, + "thread": 26 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 2939237, + "thread": 19 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 3109066, + "thread": 14 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 3267590, + "thread": 24 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 3312167, + "thread": 16 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 3610827, + "thread": 30 + } + }, + { + "amount": "636.256772235", + "slot": { + "period": 3663268, + "thread": 13 + } + }, + { + "amount": "636.256772238", + "slot": { + "period": 3797904, + "thread": 3 + } + } + ], + "AU12Hx6Ykb7LtuPKS6LD3Um2hMcMLYcQwDB9gQywgyiNbctv4fYje": [ + { + "amount": "206.001309542", + "slot": { + "period": 152662, + "thread": 20 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 191697, + "thread": 19 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 426652, + "thread": 17 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 552785, + "thread": 17 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 820721, + "thread": 31 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 900767, + "thread": 6 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1050570, + "thread": 28 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1232861, + "thread": 12 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1438687, + "thread": 24 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1644203, + "thread": 20 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1677746, + "thread": 20 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 1826535, + "thread": 14 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2036115, + "thread": 2 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2240318, + "thread": 1 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2314932, + "thread": 25 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2484387, + "thread": 7 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2645470, + "thread": 9 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 2805044, + "thread": 23 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 3118047, + "thread": 0 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 3273447, + "thread": 1 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 3435284, + "thread": 12 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 3462168, + "thread": 31 + } + }, + { + "amount": "206.001309542", + "slot": { + "period": 3747086, + "thread": 28 + } + }, + { + "amount": "206.001309539", + "slot": { + "period": 3893564, + "thread": 7 + } + } + ], + "AU12HyAhHwo6yfaKRHHCzXZ9yx9r75rPfizdxfqKxpVdT6hTdFEfQ": [ + { + "amount": "81.334188162", + "slot": { + "period": 145566, + "thread": 4 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 317137, + "thread": 7 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 325135, + "thread": 21 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 505074, + "thread": 31 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 803556, + "thread": 25 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 861297, + "thread": 15 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1115392, + "thread": 11 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1290240, + "thread": 0 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1359672, + "thread": 12 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1557557, + "thread": 16 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1683533, + "thread": 26 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1831710, + "thread": 0 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 1980196, + "thread": 17 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 2243580, + "thread": 16 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 2308795, + "thread": 16 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 2525544, + "thread": 8 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 2753977, + "thread": 14 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 2838563, + "thread": 5 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 3011636, + "thread": 19 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 3185503, + "thread": 12 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 3335791, + "thread": 23 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 3491037, + "thread": 23 + } + }, + { + "amount": "81.334188162", + "slot": { + "period": 3678260, + "thread": 6 + } + }, + { + "amount": "81.334188160", + "slot": { + "period": 3875782, + "thread": 15 + } + } + ], + "AU12HyMFhckmeDPNHX2zFQDAkzdVKxR3ffaE7rCtgkhWTi27NQiq2": [ + { + "amount": "160.646827739", + "slot": { + "period": 54910, + "thread": 16 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 266767, + "thread": 29 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 451942, + "thread": 18 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 630215, + "thread": 13 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 772918, + "thread": 21 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 872309, + "thread": 30 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1070305, + "thread": 0 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1215473, + "thread": 1 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1425729, + "thread": 30 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1629318, + "thread": 23 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1693793, + "thread": 6 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1890017, + "thread": 28 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 1976751, + "thread": 23 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2222111, + "thread": 25 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2431911, + "thread": 29 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2482145, + "thread": 27 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2744774, + "thread": 31 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2831644, + "thread": 18 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 2958058, + "thread": 8 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 3153230, + "thread": 7 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 3432484, + "thread": 3 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 3545597, + "thread": 17 + } + }, + { + "amount": "160.646827739", + "slot": { + "period": 3633977, + "thread": 27 + } + }, + { + "amount": "160.646827745", + "slot": { + "period": 3872999, + "thread": 11 + } + } + ], + "AU12Hzxf9i943uXSc3NQCPhG7UZnKbH2MJrL6Gi2s4LW5VeSUMuPK": [ + { + "amount": "135.392398327", + "slot": { + "period": 79573, + "thread": 5 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 204851, + "thread": 1 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 409289, + "thread": 18 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 558240, + "thread": 17 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 701265, + "thread": 15 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 918959, + "thread": 27 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1091952, + "thread": 9 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1168874, + "thread": 19 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1422954, + "thread": 16 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1570843, + "thread": 17 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1718498, + "thread": 29 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 1969137, + "thread": 25 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2047755, + "thread": 31 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2147531, + "thread": 23 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2386731, + "thread": 23 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2498668, + "thread": 0 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2655576, + "thread": 9 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2944877, + "thread": 9 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 2980635, + "thread": 13 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 3197506, + "thread": 28 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 3397912, + "thread": 3 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 3589064, + "thread": 17 + } + }, + { + "amount": "135.392398327", + "slot": { + "period": 3724914, + "thread": 18 + } + }, + { + "amount": "135.392398332", + "slot": { + "period": 3945890, + "thread": 15 + } + } + ], + "AU12J1KrE6uM7m8p2HHj4srxSem39WqqPkxK3uptsYJDsyqWmxBdH": [ + { + "amount": "504.382766862", + "slot": { + "period": 45502, + "thread": 1 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 273871, + "thread": 24 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 444042, + "thread": 27 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 618291, + "thread": 2 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 702384, + "thread": 23 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 902679, + "thread": 24 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1100736, + "thread": 3 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1257680, + "thread": 31 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1464254, + "thread": 5 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1536970, + "thread": 27 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1722191, + "thread": 3 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 1890550, + "thread": 15 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2116107, + "thread": 18 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2268905, + "thread": 1 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2343084, + "thread": 31 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2525704, + "thread": 9 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2640664, + "thread": 13 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 2798119, + "thread": 6 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 3003351, + "thread": 5 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 3132228, + "thread": 7 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 3305477, + "thread": 8 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 3483645, + "thread": 27 + } + }, + { + "amount": "504.382766862", + "slot": { + "period": 3678396, + "thread": 2 + } + }, + { + "amount": "504.382766850", + "slot": { + "period": 3856582, + "thread": 13 + } + } + ], + "AU12J2EXTUbSbNCriUbitJFBRxX2dF9g1qhRXS8murgMv4PdUrr1H": [ + { + "amount": "65.514456590", + "slot": { + "period": 157419, + "thread": 5 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 261980, + "thread": 28 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 409840, + "thread": 12 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 587254, + "thread": 14 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 747283, + "thread": 3 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 894216, + "thread": 15 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1082281, + "thread": 9 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1275920, + "thread": 6 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1370809, + "thread": 23 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1500043, + "thread": 19 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1689058, + "thread": 28 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 1844805, + "thread": 28 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2071263, + "thread": 10 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2269538, + "thread": 24 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2424538, + "thread": 13 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2466496, + "thread": 3 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2668493, + "thread": 24 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 2801546, + "thread": 0 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 3085099, + "thread": 23 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 3156273, + "thread": 28 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 3411871, + "thread": 29 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 3466889, + "thread": 7 + } + }, + { + "amount": "65.514456590", + "slot": { + "period": 3692054, + "thread": 5 + } + }, + { + "amount": "65.514456581", + "slot": { + "period": 3881849, + "thread": 9 + } + } + ], + "AU12J2JbKdQLV2K6JJZs1AJUoLc5mNaXF3TNgF2wkNRfeZbcYeMDV": [ + { + "amount": "77.215886029", + "slot": { + "period": 150787, + "thread": 4 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 317076, + "thread": 30 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 396858, + "thread": 16 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 594383, + "thread": 16 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 735456, + "thread": 22 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 954070, + "thread": 16 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1081390, + "thread": 9 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1207054, + "thread": 26 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1432418, + "thread": 22 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1632891, + "thread": 28 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1719667, + "thread": 19 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 1881046, + "thread": 16 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2069478, + "thread": 26 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2246043, + "thread": 10 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2357284, + "thread": 18 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2576353, + "thread": 13 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2725132, + "thread": 14 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 2812455, + "thread": 13 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 3029604, + "thread": 19 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 3241748, + "thread": 25 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 3313398, + "thread": 29 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 3541116, + "thread": 9 + } + }, + { + "amount": "77.215886029", + "slot": { + "period": 3726543, + "thread": 20 + } + }, + { + "amount": "77.215886022", + "slot": { + "period": 3843859, + "thread": 9 + } + } + ], + "AU12J2x7NNMyfJA6QstxsSqSBbzZHoQn8587XZY2u7rjgbB58SobU": [ + { + "amount": "94.192480632", + "slot": { + "period": 146081, + "thread": 9 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 189597, + "thread": 31 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 450304, + "thread": 10 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 539437, + "thread": 12 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 768054, + "thread": 28 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 834125, + "thread": 26 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1080580, + "thread": 24 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1218700, + "thread": 15 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1386290, + "thread": 9 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1519416, + "thread": 31 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1738397, + "thread": 27 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 1950991, + "thread": 29 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2049042, + "thread": 5 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2255283, + "thread": 14 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2339372, + "thread": 7 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2588087, + "thread": 20 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2655912, + "thread": 6 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 2902365, + "thread": 14 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 3052048, + "thread": 20 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 3167758, + "thread": 18 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 3425167, + "thread": 3 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 3538343, + "thread": 27 + } + }, + { + "amount": "94.192480632", + "slot": { + "period": 3672326, + "thread": 16 + } + }, + { + "amount": "94.192480633", + "slot": { + "period": 3834809, + "thread": 23 + } + } + ], + "AU12J3F1jZNyu8mEnPM73a6JNuUVgGwooaFe1AADENM1A1A63D45r": [ + { + "amount": "1838.407027307", + "slot": { + "period": 79726, + "thread": 2 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 216586, + "thread": 3 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 442564, + "thread": 7 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 503680, + "thread": 9 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 673744, + "thread": 27 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 980405, + "thread": 23 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1004164, + "thread": 0 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1248516, + "thread": 5 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1433670, + "thread": 7 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1521103, + "thread": 9 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1708182, + "thread": 30 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 1824290, + "thread": 5 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2076646, + "thread": 27 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2259900, + "thread": 3 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2431456, + "thread": 2 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2494435, + "thread": 14 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2699114, + "thread": 10 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 2874139, + "thread": 9 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 3077915, + "thread": 25 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 3203015, + "thread": 26 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 3386861, + "thread": 4 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 3507282, + "thread": 23 + } + }, + { + "amount": "1838.407027307", + "slot": { + "period": 3738285, + "thread": 24 + } + }, + { + "amount": "1838.407027298", + "slot": { + "period": 3858582, + "thread": 28 + } + } + ], + "AU12J42KpR6ChnpHMZUptkwWAWzqxJNzWdXQh8oQn32eLWuELWMoG": [ + { + "amount": "181.237846256", + "slot": { + "period": 11216, + "thread": 31 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 299341, + "thread": 26 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 341351, + "thread": 2 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 633212, + "thread": 8 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 742303, + "thread": 30 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 823679, + "thread": 5 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 983091, + "thread": 19 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 1278119, + "thread": 19 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 1358667, + "thread": 9 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 1597916, + "thread": 29 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 1805034, + "thread": 21 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 1872759, + "thread": 11 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2087474, + "thread": 12 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2164208, + "thread": 11 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2363917, + "thread": 12 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2490304, + "thread": 22 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2752500, + "thread": 1 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2942146, + "thread": 22 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 2998297, + "thread": 23 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 3254555, + "thread": 7 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 3406118, + "thread": 17 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 3530822, + "thread": 19 + } + }, + { + "amount": "181.237846256", + "slot": { + "period": 3688886, + "thread": 8 + } + }, + { + "amount": "181.237846263", + "slot": { + "period": 3908609, + "thread": 6 + } + } + ], + "AU12J4SnFhP5gVAiNpEaT4uXZcZXjSsDAHatenp9xAj6TLaJ4DDjt": [ + { + "amount": "256.246012966", + "slot": { + "period": 96822, + "thread": 22 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 237555, + "thread": 27 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 414051, + "thread": 1 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 608545, + "thread": 12 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 722841, + "thread": 13 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 979811, + "thread": 20 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1049802, + "thread": 14 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1289344, + "thread": 0 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1319422, + "thread": 18 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1506915, + "thread": 25 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1728348, + "thread": 5 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 1883578, + "thread": 10 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2003043, + "thread": 25 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2201292, + "thread": 15 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2364168, + "thread": 24 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2486685, + "thread": 26 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2767032, + "thread": 0 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2808760, + "thread": 28 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 2954104, + "thread": 9 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 3159412, + "thread": 12 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 3318295, + "thread": 14 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 3569589, + "thread": 17 + } + }, + { + "amount": "256.246012966", + "slot": { + "period": 3648029, + "thread": 13 + } + }, + { + "amount": "256.246012959", + "slot": { + "period": 3822083, + "thread": 1 + } + } + ], + "AU12J4oCnjFZJ75YU3H1A7V73nJ1wTNFd9xFKHyh5e8WgpUGTJj29": [ + { + "amount": "52.736170113", + "slot": { + "period": 122145, + "thread": 29 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 281459, + "thread": 24 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 380713, + "thread": 23 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 640498, + "thread": 30 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 792490, + "thread": 25 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 831474, + "thread": 19 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1065531, + "thread": 9 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1188279, + "thread": 28 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1394333, + "thread": 25 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1531921, + "thread": 0 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1658194, + "thread": 25 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1812236, + "thread": 11 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 1989873, + "thread": 24 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 2240380, + "thread": 11 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 2446732, + "thread": 1 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 2543778, + "thread": 16 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 2690901, + "thread": 29 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 2813781, + "thread": 23 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 3102839, + "thread": 22 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 3141159, + "thread": 30 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 3325809, + "thread": 23 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 3491595, + "thread": 5 + } + }, + { + "amount": "52.736170113", + "slot": { + "period": 3730009, + "thread": 5 + } + }, + { + "amount": "52.736170114", + "slot": { + "period": 3934542, + "thread": 8 + } + } + ], + "AU12J5eMuL5o6Nz5EjuoojVyJ4PyAyTH4jJqgXVkFeTYKFXe58yKM": [ + { + "amount": "406.064821336", + "slot": { + "period": 50978, + "thread": 3 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 281099, + "thread": 17 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 330790, + "thread": 14 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 618488, + "thread": 19 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 764526, + "thread": 1 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 860963, + "thread": 3 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1099855, + "thread": 12 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1154036, + "thread": 4 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1358416, + "thread": 3 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1494382, + "thread": 11 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1726737, + "thread": 11 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 1958332, + "thread": 8 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2131418, + "thread": 31 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2169147, + "thread": 9 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2425430, + "thread": 2 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2572732, + "thread": 13 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2746740, + "thread": 25 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 2865891, + "thread": 31 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 3100714, + "thread": 7 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 3128190, + "thread": 18 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 3410571, + "thread": 1 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 3494900, + "thread": 15 + } + }, + { + "amount": "406.064821336", + "slot": { + "period": 3746410, + "thread": 3 + } + }, + { + "amount": "406.064821347", + "slot": { + "period": 3869258, + "thread": 4 + } + } + ], + "AU12J5tpY3X4Sd53hKSCy7VG8JqeoduYRFwiSmm4VKbTX6aKAnxRg": [ + { + "amount": "92.971383638", + "slot": { + "period": 73930, + "thread": 25 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 207057, + "thread": 23 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 366135, + "thread": 11 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 588178, + "thread": 25 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 719012, + "thread": 24 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 982264, + "thread": 20 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1136606, + "thread": 13 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1278498, + "thread": 12 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1393855, + "thread": 5 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1552798, + "thread": 6 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1730618, + "thread": 17 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 1831691, + "thread": 21 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2117164, + "thread": 21 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2266779, + "thread": 13 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2391349, + "thread": 1 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2469885, + "thread": 16 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2653252, + "thread": 17 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2810514, + "thread": 15 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 2975238, + "thread": 6 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 3277620, + "thread": 28 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 3386629, + "thread": 17 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 3534415, + "thread": 8 + } + }, + { + "amount": "92.971383638", + "slot": { + "period": 3639866, + "thread": 11 + } + }, + { + "amount": "92.971383637", + "slot": { + "period": 3901405, + "thread": 12 + } + } + ], + "AU12J63pwpAsRx2MMViw2jHLRyy1M88A7D8FHjRCBEBaBrpq1iUk3": [ + { + "amount": "225.127250990", + "slot": { + "period": 39928, + "thread": 4 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 183750, + "thread": 10 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 475592, + "thread": 25 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 636823, + "thread": 20 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 819003, + "thread": 12 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 977881, + "thread": 14 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1076466, + "thread": 30 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1289805, + "thread": 25 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1381721, + "thread": 17 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1501828, + "thread": 11 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1791695, + "thread": 1 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 1881081, + "thread": 9 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2012139, + "thread": 10 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2236049, + "thread": 18 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2375934, + "thread": 18 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2513324, + "thread": 5 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2725252, + "thread": 14 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 2823090, + "thread": 31 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 3037049, + "thread": 13 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 3205362, + "thread": 18 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 3357888, + "thread": 19 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 3490057, + "thread": 2 + } + }, + { + "amount": "225.127250990", + "slot": { + "period": 3679460, + "thread": 8 + } + }, + { + "amount": "225.127250983", + "slot": { + "period": 3818632, + "thread": 14 + } + } + ], + "AU12J6yDmFcVsuZA43ACQGimawEGo3Ce3jhm2dj18PsVVW9P43dDr": [ + { + "amount": "344.315367832", + "slot": { + "period": 22887, + "thread": 17 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 194450, + "thread": 27 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 379261, + "thread": 4 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 554542, + "thread": 15 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 803049, + "thread": 15 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 921278, + "thread": 5 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1147780, + "thread": 16 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1220772, + "thread": 16 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1336700, + "thread": 7 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1632578, + "thread": 30 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1720632, + "thread": 23 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 1970098, + "thread": 13 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2029354, + "thread": 25 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2246620, + "thread": 25 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2319741, + "thread": 24 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2621205, + "thread": 14 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2774855, + "thread": 22 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2864242, + "thread": 7 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 2970772, + "thread": 25 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 3267656, + "thread": 12 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 3434998, + "thread": 24 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 3560488, + "thread": 12 + } + }, + { + "amount": "344.315367832", + "slot": { + "period": 3627658, + "thread": 13 + } + }, + { + "amount": "344.315367820", + "slot": { + "period": 3912536, + "thread": 9 + } + } + ], + "AU12J87gFrWo2wta2C543yX63ifkdhTRtBfYVyCWAmYFqrZnoCKiQ": [ + { + "amount": "126.240569475", + "slot": { + "period": 55676, + "thread": 5 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 266237, + "thread": 10 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 407177, + "thread": 19 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 592816, + "thread": 9 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 754529, + "thread": 8 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 927968, + "thread": 23 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1015593, + "thread": 30 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1268494, + "thread": 15 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1337635, + "thread": 20 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1525962, + "thread": 12 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1680559, + "thread": 8 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 1913749, + "thread": 14 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2016323, + "thread": 2 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2164214, + "thread": 24 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2315902, + "thread": 7 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2473242, + "thread": 12 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2626450, + "thread": 19 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 2884426, + "thread": 9 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 3076467, + "thread": 25 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 3251034, + "thread": 19 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 3326343, + "thread": 27 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 3512832, + "thread": 16 + } + }, + { + "amount": "126.240569475", + "slot": { + "period": 3633023, + "thread": 26 + } + }, + { + "amount": "126.240569469", + "slot": { + "period": 3827073, + "thread": 7 + } + } + ], + "AU12J9gi8YypGqvvH75BD3atxP7NZAiucZAv7KoNMofJvP6r9CmDK": [ + { + "amount": "158.665406548", + "slot": { + "period": 31970, + "thread": 30 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 214694, + "thread": 7 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 423135, + "thread": 28 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 633565, + "thread": 18 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 713142, + "thread": 27 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 914096, + "thread": 23 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 994835, + "thread": 7 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1239238, + "thread": 28 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1452985, + "thread": 8 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1512315, + "thread": 19 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1699918, + "thread": 30 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1935047, + "thread": 13 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 1993836, + "thread": 13 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2233895, + "thread": 28 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2326788, + "thread": 24 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2559423, + "thread": 6 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2730994, + "thread": 2 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2948642, + "thread": 31 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 2965421, + "thread": 2 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 3228173, + "thread": 14 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 3350846, + "thread": 2 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 3555821, + "thread": 21 + } + }, + { + "amount": "158.665406548", + "slot": { + "period": 3690038, + "thread": 26 + } + }, + { + "amount": "158.665406556", + "slot": { + "period": 3925633, + "thread": 17 + } + } + ], + "AU12JBW6QyGHdKwURidZRfUh7SxeUZ3UF7XB6h4QpoSNYwwhL3jjj": [ + { + "amount": "203.323864360", + "slot": { + "period": 135259, + "thread": 13 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 203668, + "thread": 4 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 389380, + "thread": 11 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 500017, + "thread": 9 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 762275, + "thread": 20 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 907127, + "thread": 6 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1013121, + "thread": 14 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1169223, + "thread": 29 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1354990, + "thread": 9 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1511185, + "thread": 14 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1745549, + "thread": 28 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 1944398, + "thread": 31 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2129629, + "thread": 19 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2249644, + "thread": 14 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2328978, + "thread": 29 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2594303, + "thread": 11 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2710974, + "thread": 6 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2825610, + "thread": 25 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 2984122, + "thread": 20 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 3256665, + "thread": 24 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 3298201, + "thread": 3 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 3554913, + "thread": 4 + } + }, + { + "amount": "203.323864360", + "slot": { + "period": 3733237, + "thread": 18 + } + }, + { + "amount": "203.323864363", + "slot": { + "period": 3885873, + "thread": 12 + } + } + ], + "AU12JCQoMoc7DXMZjmAqQ7BrJy7YbArj8buEWJDEb6j9Bfd4xqDAV": [ + { + "amount": "183.862274779", + "slot": { + "period": 161499, + "thread": 26 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 218590, + "thread": 17 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 366318, + "thread": 21 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 526769, + "thread": 28 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 781048, + "thread": 25 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 863890, + "thread": 14 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1105721, + "thread": 28 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1159579, + "thread": 22 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1412076, + "thread": 8 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1528316, + "thread": 22 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1774710, + "thread": 13 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 1943487, + "thread": 4 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2067318, + "thread": 15 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2282320, + "thread": 27 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2329248, + "thread": 31 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2547867, + "thread": 28 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2751293, + "thread": 0 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2895519, + "thread": 24 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 2972625, + "thread": 0 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 3175831, + "thread": 9 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 3292785, + "thread": 3 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 3467874, + "thread": 9 + } + }, + { + "amount": "183.862274779", + "slot": { + "period": 3702650, + "thread": 2 + } + }, + { + "amount": "183.862274790", + "slot": { + "period": 3804610, + "thread": 29 + } + } + ], + "AU12JCr2WNeVAfcnRis5eejwQYuW9cFxUD4dDDLnBeEcqCgyPiVX": [ + { + "amount": "579.604072321", + "slot": { + "period": 132163, + "thread": 19 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 226761, + "thread": 19 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 465593, + "thread": 17 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 623722, + "thread": 17 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 662645, + "thread": 4 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 832859, + "thread": 8 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1098843, + "thread": 11 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1150513, + "thread": 18 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1358558, + "thread": 7 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1597197, + "thread": 14 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1791034, + "thread": 29 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 1971699, + "thread": 2 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2012543, + "thread": 4 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2163605, + "thread": 16 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2426321, + "thread": 17 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2543666, + "thread": 18 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2631950, + "thread": 11 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2900689, + "thread": 2 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 2980233, + "thread": 29 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 3206435, + "thread": 30 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 3401308, + "thread": 10 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 3601643, + "thread": 13 + } + }, + { + "amount": "579.604072321", + "slot": { + "period": 3697790, + "thread": 1 + } + }, + { + "amount": "579.604072331", + "slot": { + "period": 3807645, + "thread": 17 + } + } + ], + "AU12JCyTrhcUJu71GWXMrwHK1TNKQcxpzTykjqLD1StxbgKqGPAGe": [ + { + "amount": "1271.121482522", + "slot": { + "period": 50551, + "thread": 2 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 312618, + "thread": 14 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 355164, + "thread": 23 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 554102, + "thread": 0 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 808394, + "thread": 7 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 846124, + "thread": 3 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1055456, + "thread": 1 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1191214, + "thread": 12 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1438367, + "thread": 21 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1635866, + "thread": 23 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1691383, + "thread": 19 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 1917601, + "thread": 10 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2022599, + "thread": 16 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2292106, + "thread": 6 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2407116, + "thread": 16 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2619972, + "thread": 24 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2759197, + "thread": 3 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 2897576, + "thread": 24 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 3078813, + "thread": 22 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 3263235, + "thread": 0 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 3426814, + "thread": 22 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 3530412, + "thread": 17 + } + }, + { + "amount": "1271.121482522", + "slot": { + "period": 3748463, + "thread": 12 + } + }, + { + "amount": "1271.121482528", + "slot": { + "period": 3842576, + "thread": 4 + } + } + ], + "AU12JE3HgTFnBKKvf4QPwRaiRwmhgvvT7KE4hfPZ17M9kFizi2jd8": [ + { + "amount": "64.069883639", + "slot": { + "period": 122418, + "thread": 16 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 245756, + "thread": 27 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 328887, + "thread": 2 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 519560, + "thread": 27 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 766872, + "thread": 14 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 842092, + "thread": 13 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1115410, + "thread": 28 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1284998, + "thread": 7 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1341136, + "thread": 22 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1622359, + "thread": 20 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1681756, + "thread": 23 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 1817799, + "thread": 10 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2141301, + "thread": 21 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2165026, + "thread": 1 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2439156, + "thread": 1 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2597765, + "thread": 30 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2712511, + "thread": 25 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 2835638, + "thread": 18 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 3002957, + "thread": 11 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 3220739, + "thread": 18 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 3380791, + "thread": 24 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 3589074, + "thread": 23 + } + }, + { + "amount": "64.069883639", + "slot": { + "period": 3743184, + "thread": 6 + } + }, + { + "amount": "64.069883638", + "slot": { + "period": 3923953, + "thread": 27 + } + } + ], + "AU12JE7B5tcLJHgkTAktGG8fKxhT4KHzAi6nMiktXxc1evNARTbUY": [ + { + "amount": "199.000185441", + "slot": { + "period": 25402, + "thread": 23 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 234797, + "thread": 3 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 377513, + "thread": 15 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 644245, + "thread": 23 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 745845, + "thread": 29 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 947259, + "thread": 31 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1027415, + "thread": 15 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1167372, + "thread": 4 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1430422, + "thread": 10 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1570317, + "thread": 8 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1734500, + "thread": 6 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 1824057, + "thread": 4 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2116802, + "thread": 27 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2251263, + "thread": 30 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2430092, + "thread": 5 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2597773, + "thread": 29 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2636949, + "thread": 1 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2828341, + "thread": 20 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 2998436, + "thread": 28 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 3284685, + "thread": 29 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 3326483, + "thread": 5 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 3590578, + "thread": 17 + } + }, + { + "amount": "199.000185441", + "slot": { + "period": 3708917, + "thread": 24 + } + }, + { + "amount": "199.000185432", + "slot": { + "period": 3896134, + "thread": 28 + } + } + ], + "AU12JExWmkzhBUD88C1hWcb9P2EpAuFAX1TbUruEqFgBFfhG1zrxN": [ + { + "amount": "143.603590800", + "slot": { + "period": 111661, + "thread": 25 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 322276, + "thread": 20 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 487564, + "thread": 8 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 589552, + "thread": 1 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 706771, + "thread": 4 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 864138, + "thread": 30 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1130018, + "thread": 23 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1150422, + "thread": 22 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1348491, + "thread": 15 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1627892, + "thread": 9 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1677281, + "thread": 23 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 1891641, + "thread": 4 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2039755, + "thread": 26 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2257245, + "thread": 13 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2315009, + "thread": 3 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2617384, + "thread": 10 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2730349, + "thread": 15 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2883901, + "thread": 20 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 2954505, + "thread": 30 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 3191556, + "thread": 15 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 3425041, + "thread": 2 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 3580391, + "thread": 24 + } + }, + { + "amount": "143.603590800", + "slot": { + "period": 3697245, + "thread": 29 + } + }, + { + "amount": "143.603590799", + "slot": { + "period": 3936694, + "thread": 11 + } + } + ], + "AU12JFKjPWFKb4wYhw88dZkx9GYWcej429grsQkN2p8Vc8yjumt7S": [ + { + "amount": "118.203124207", + "slot": { + "period": 74094, + "thread": 30 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 266034, + "thread": 7 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 375579, + "thread": 30 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 631253, + "thread": 25 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 702798, + "thread": 31 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 862261, + "thread": 12 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1147372, + "thread": 7 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1244377, + "thread": 27 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1437273, + "thread": 28 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1641573, + "thread": 16 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1669736, + "thread": 5 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 1920496, + "thread": 0 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2048975, + "thread": 26 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2293268, + "thread": 18 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2323948, + "thread": 25 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2498120, + "thread": 9 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2748575, + "thread": 28 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 2870471, + "thread": 4 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 3095615, + "thread": 29 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 3159209, + "thread": 16 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 3429870, + "thread": 22 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 3582535, + "thread": 6 + } + }, + { + "amount": "118.203124207", + "slot": { + "period": 3705104, + "thread": 13 + } + }, + { + "amount": "118.203124213", + "slot": { + "period": 3851524, + "thread": 10 + } + } + ], + "AU12JFcS8Jj1Vhs6GPH1g5rhCVae5anWTobQRskbgwrzuZ7iTbyMD": [ + { + "amount": "67.594834054", + "slot": { + "period": 104801, + "thread": 7 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 317687, + "thread": 25 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 357734, + "thread": 31 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 552554, + "thread": 8 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 796340, + "thread": 23 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 924173, + "thread": 15 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1030470, + "thread": 9 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1199119, + "thread": 17 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1358793, + "thread": 26 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1512026, + "thread": 19 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1746691, + "thread": 28 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 1949027, + "thread": 18 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2002848, + "thread": 12 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2285673, + "thread": 7 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2302707, + "thread": 9 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2529848, + "thread": 21 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2733827, + "thread": 27 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 2837324, + "thread": 2 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 3061265, + "thread": 28 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 3188227, + "thread": 28 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 3441934, + "thread": 29 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 3478761, + "thread": 22 + } + }, + { + "amount": "67.594834054", + "slot": { + "period": 3766119, + "thread": 3 + } + }, + { + "amount": "67.594834045", + "slot": { + "period": 3808477, + "thread": 19 + } + } + ], + "AU12JFrvFeL9nSmyDA2YfZdpesyvNEhSuKuqMb4aZHvbvMQc1yzqk": [ + { + "amount": "237.049348229", + "slot": { + "period": 59409, + "thread": 9 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 224857, + "thread": 23 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 349236, + "thread": 27 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 510373, + "thread": 2 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 731897, + "thread": 16 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 939217, + "thread": 23 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1093980, + "thread": 19 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1251954, + "thread": 12 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1420527, + "thread": 1 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1499363, + "thread": 1 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1751525, + "thread": 22 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 1937701, + "thread": 4 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2090604, + "thread": 0 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2160939, + "thread": 3 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2414377, + "thread": 26 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2525728, + "thread": 16 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2646865, + "thread": 4 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 2831488, + "thread": 17 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 3115635, + "thread": 19 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 3197058, + "thread": 25 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 3290494, + "thread": 11 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 3466779, + "thread": 8 + } + }, + { + "amount": "237.049348229", + "slot": { + "period": 3712458, + "thread": 11 + } + }, + { + "amount": "237.049348239", + "slot": { + "period": 3816505, + "thread": 11 + } + } + ], + "AU12JFzcCuSnPSMk5YqUuSEvhbvzBUUn6WAekM8iFZYattkny8c1Y": [ + { + "amount": "205.745871333", + "slot": { + "period": 51597, + "thread": 13 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 231139, + "thread": 7 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 410530, + "thread": 26 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 524463, + "thread": 30 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 715845, + "thread": 19 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 824557, + "thread": 1 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1120948, + "thread": 12 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1229405, + "thread": 20 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1450268, + "thread": 11 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1547547, + "thread": 7 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1778386, + "thread": 17 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 1909503, + "thread": 6 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2035404, + "thread": 29 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2259541, + "thread": 19 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2329700, + "thread": 9 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2533111, + "thread": 29 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2704354, + "thread": 26 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 2810601, + "thread": 29 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 3066187, + "thread": 20 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 3211477, + "thread": 13 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 3408146, + "thread": 22 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 3603128, + "thread": 17 + } + }, + { + "amount": "205.745871333", + "slot": { + "period": 3619722, + "thread": 20 + } + }, + { + "amount": "205.745871324", + "slot": { + "period": 3943834, + "thread": 1 + } + } + ], + "AU12JGAHKRPqcbw3npNhdZ17ebdkALj4R8Nvqd2FX497Wvpankp5y": [ + { + "amount": "239.288982595", + "slot": { + "period": 42431, + "thread": 20 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 297978, + "thread": 10 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 458803, + "thread": 6 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 494541, + "thread": 29 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 692339, + "thread": 29 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 861465, + "thread": 13 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1101734, + "thread": 4 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1272623, + "thread": 16 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1392464, + "thread": 22 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1597593, + "thread": 3 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1651490, + "thread": 5 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 1880236, + "thread": 26 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2084056, + "thread": 25 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2229767, + "thread": 0 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2296145, + "thread": 16 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2603124, + "thread": 9 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2731901, + "thread": 17 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 2929686, + "thread": 0 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 3103439, + "thread": 1 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 3267053, + "thread": 29 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 3315386, + "thread": 18 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 3592653, + "thread": 8 + } + }, + { + "amount": "239.288982595", + "slot": { + "period": 3708546, + "thread": 26 + } + }, + { + "amount": "239.288982592", + "slot": { + "period": 3890389, + "thread": 9 + } + } + ], + "AU12JGDS2EkrJE3UWegpdynxitLh8Z1TM7xLUxzFLQrDsAc8p1yXQ": [ + { + "amount": "502.257989115", + "slot": { + "period": 139321, + "thread": 15 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 320759, + "thread": 7 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 455212, + "thread": 29 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 644438, + "thread": 14 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 783312, + "thread": 1 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 911299, + "thread": 23 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1076312, + "thread": 21 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1258276, + "thread": 28 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1450605, + "thread": 8 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1590002, + "thread": 23 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1795834, + "thread": 18 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1921837, + "thread": 25 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 1978554, + "thread": 22 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 2145640, + "thread": 0 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 2369083, + "thread": 0 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 2606691, + "thread": 27 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 2749398, + "thread": 20 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 2899963, + "thread": 30 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 3051488, + "thread": 8 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 3129947, + "thread": 28 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 3368257, + "thread": 30 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 3504538, + "thread": 10 + } + }, + { + "amount": "502.257989115", + "slot": { + "period": 3672578, + "thread": 15 + } + }, + { + "amount": "502.257989120", + "slot": { + "period": 3812904, + "thread": 1 + } + } + ], + "AU12JHRVfBL2wp7Q5kUKr6uXh31wL8peXteSdCKPzfrQypgo5SsQg": [ + { + "amount": "80.817516558", + "slot": { + "period": 46671, + "thread": 2 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 270913, + "thread": 22 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 370943, + "thread": 14 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 507872, + "thread": 28 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 698251, + "thread": 1 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 953544, + "thread": 10 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1069159, + "thread": 14 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1196578, + "thread": 18 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1462377, + "thread": 0 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1510422, + "thread": 21 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1694485, + "thread": 17 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 1952449, + "thread": 28 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2121428, + "thread": 25 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2179586, + "thread": 13 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2436054, + "thread": 29 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2584742, + "thread": 25 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2679055, + "thread": 29 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2889809, + "thread": 31 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 2954644, + "thread": 14 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 3237042, + "thread": 1 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 3363463, + "thread": 10 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 3579568, + "thread": 0 + } + }, + { + "amount": "80.817516558", + "slot": { + "period": 3641679, + "thread": 25 + } + }, + { + "amount": "80.817516557", + "slot": { + "period": 3932780, + "thread": 19 + } + } + ], + "AU12JJ1Ae93zkbuaLN3kk7bCsHrsHQMuTj8BwqRpdDUJPefmTuD76": [ + { + "amount": "435.600386542", + "slot": { + "period": 17118, + "thread": 14 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 310554, + "thread": 28 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 464814, + "thread": 25 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 645305, + "thread": 10 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 741782, + "thread": 19 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 932735, + "thread": 19 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1128648, + "thread": 31 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1197628, + "thread": 8 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1415927, + "thread": 29 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1535930, + "thread": 20 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1757778, + "thread": 10 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 1856676, + "thread": 9 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2117434, + "thread": 8 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2212310, + "thread": 15 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2317500, + "thread": 21 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2521211, + "thread": 15 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2643516, + "thread": 6 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2930534, + "thread": 8 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 2977623, + "thread": 22 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 3159139, + "thread": 0 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 3295678, + "thread": 26 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 3556505, + "thread": 16 + } + }, + { + "amount": "435.600386542", + "slot": { + "period": 3689320, + "thread": 7 + } + }, + { + "amount": "435.600386530", + "slot": { + "period": 3859895, + "thread": 1 + } + } + ], + "AU12JJ9ntgPXo4zDNtF8oGerAUe6crkEAGjU6ALxsDXu1o6oG1d8X": [ + { + "amount": "92.308959442", + "slot": { + "period": 28392, + "thread": 4 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 316240, + "thread": 22 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 381969, + "thread": 5 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 494907, + "thread": 31 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 746660, + "thread": 6 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 944527, + "thread": 30 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1045553, + "thread": 6 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1302911, + "thread": 8 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1440190, + "thread": 30 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1537958, + "thread": 0 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1675424, + "thread": 20 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 1904718, + "thread": 7 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2124928, + "thread": 22 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2172859, + "thread": 27 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2435921, + "thread": 13 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2506912, + "thread": 1 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2649381, + "thread": 0 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 2877611, + "thread": 1 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 3052729, + "thread": 6 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 3243904, + "thread": 7 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 3294557, + "thread": 27 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 3522884, + "thread": 12 + } + }, + { + "amount": "92.308959442", + "slot": { + "period": 3706398, + "thread": 14 + } + }, + { + "amount": "92.308959446", + "slot": { + "period": 3945188, + "thread": 30 + } + } + ], + "AU12JJDHCcuqyRaUrnmL8ae3fxk2Yzb8xrBMwqwxKuvf56oC4RNbc": [ + { + "amount": "53.991398986", + "slot": { + "period": 148193, + "thread": 12 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 306059, + "thread": 6 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 420911, + "thread": 23 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 604863, + "thread": 27 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 676773, + "thread": 18 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 875683, + "thread": 28 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1023910, + "thread": 18 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1246626, + "thread": 31 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1340105, + "thread": 28 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1481828, + "thread": 16 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1730362, + "thread": 28 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 1954032, + "thread": 22 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2029984, + "thread": 28 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2224167, + "thread": 0 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2303088, + "thread": 31 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2489795, + "thread": 1 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2742056, + "thread": 29 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2844049, + "thread": 23 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 2983815, + "thread": 12 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 3133538, + "thread": 0 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 3375776, + "thread": 13 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 3528032, + "thread": 9 + } + }, + { + "amount": "53.991398986", + "slot": { + "period": 3752271, + "thread": 21 + } + }, + { + "amount": "53.991398992", + "slot": { + "period": 3841044, + "thread": 31 + } + } + ], + "AU12JJXe9Zeeo53AgX69go1kN6rWE8UeAgNGVUmnGPCESLrPED91Z": [ + { + "amount": "210.315867384", + "slot": { + "period": 159494, + "thread": 23 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 305614, + "thread": 18 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 360026, + "thread": 31 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 568353, + "thread": 8 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 724779, + "thread": 18 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 895774, + "thread": 8 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1129632, + "thread": 28 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1246234, + "thread": 8 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1389418, + "thread": 22 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1561488, + "thread": 16 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1664628, + "thread": 31 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 1830315, + "thread": 14 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2038405, + "thread": 13 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2226267, + "thread": 1 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2424552, + "thread": 10 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2509898, + "thread": 13 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2693923, + "thread": 20 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 2916540, + "thread": 21 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 3059429, + "thread": 10 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 3231446, + "thread": 10 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 3342234, + "thread": 25 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 3552937, + "thread": 17 + } + }, + { + "amount": "210.315867384", + "slot": { + "period": 3755045, + "thread": 31 + } + }, + { + "amount": "210.315867383", + "slot": { + "period": 3810957, + "thread": 2 + } + } + ], + "AU12JJcuxcuG6GGQYGgVHYLqS6grGeWst8tRpN4AdM7NymTmfnQDY": [ + { + "amount": "100.885118269", + "slot": { + "period": 107951, + "thread": 16 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 319293, + "thread": 25 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 439533, + "thread": 7 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 528557, + "thread": 27 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 676847, + "thread": 30 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 887738, + "thread": 30 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1107752, + "thread": 23 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1212292, + "thread": 17 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1322843, + "thread": 28 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1629214, + "thread": 18 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1743198, + "thread": 31 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 1920540, + "thread": 30 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2050343, + "thread": 8 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2155621, + "thread": 1 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2425786, + "thread": 14 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2569723, + "thread": 22 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2681008, + "thread": 29 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2906293, + "thread": 20 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 2958344, + "thread": 24 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 3254663, + "thread": 29 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 3318065, + "thread": 6 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 3559131, + "thread": 23 + } + }, + { + "amount": "100.885118269", + "slot": { + "period": 3765301, + "thread": 4 + } + }, + { + "amount": "100.885118264", + "slot": { + "period": 3889566, + "thread": 13 + } + } + ], + "AU12JJkroNXeK3LJ597Nr8h1RpPc8WfEWNjaBbDqwKbqQMFAjEkYf": [ + { + "amount": "183.630658626", + "slot": { + "period": 51826, + "thread": 18 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 225717, + "thread": 13 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 342726, + "thread": 7 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 593100, + "thread": 10 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 726855, + "thread": 26 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 956643, + "thread": 24 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1138708, + "thread": 6 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1161964, + "thread": 25 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1355044, + "thread": 26 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1575150, + "thread": 0 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1678767, + "thread": 1 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 1924609, + "thread": 4 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2090856, + "thread": 0 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2234068, + "thread": 4 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2363444, + "thread": 20 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2528317, + "thread": 3 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2763866, + "thread": 14 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 2925545, + "thread": 4 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 3094742, + "thread": 10 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 3157315, + "thread": 14 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 3355400, + "thread": 25 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 3523568, + "thread": 8 + } + }, + { + "amount": "183.630658626", + "slot": { + "period": 3620547, + "thread": 4 + } + }, + { + "amount": "183.630658630", + "slot": { + "period": 3889860, + "thread": 2 + } + } + ], + "AU12JKNAn7Ra6oVbTv7FPwxEV9xUUmeNibbb6j5JKu12DkGAKgWoP": [ + { + "amount": "117.106778803", + "slot": { + "period": 31988, + "thread": 2 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 191284, + "thread": 22 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 342883, + "thread": 23 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 592740, + "thread": 15 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 675249, + "thread": 21 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 917372, + "thread": 18 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1094768, + "thread": 2 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1291602, + "thread": 26 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1471929, + "thread": 31 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1641370, + "thread": 22 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1707989, + "thread": 8 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 1889343, + "thread": 13 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2127641, + "thread": 13 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2280374, + "thread": 7 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2303655, + "thread": 13 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2494982, + "thread": 31 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2773738, + "thread": 27 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 2857149, + "thread": 23 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 3011471, + "thread": 6 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 3285955, + "thread": 14 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 3307272, + "thread": 27 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 3563515, + "thread": 11 + } + }, + { + "amount": "117.106778803", + "slot": { + "period": 3770590, + "thread": 28 + } + }, + { + "amount": "117.106778794", + "slot": { + "period": 3814728, + "thread": 25 + } + } + ], + "AU12JKZkBtcie7FkgZYny7URSALdCSmGgvEXZS9dZCWNg7Y2pVHSk": [ + { + "amount": "99.355759177", + "slot": { + "period": 160195, + "thread": 2 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 241050, + "thread": 31 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 365360, + "thread": 0 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 524066, + "thread": 29 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 688405, + "thread": 13 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 868689, + "thread": 2 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1100316, + "thread": 16 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1150274, + "thread": 21 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1337689, + "thread": 6 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1551507, + "thread": 28 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1755643, + "thread": 1 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 1843723, + "thread": 27 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2094024, + "thread": 21 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2156713, + "thread": 3 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2340842, + "thread": 6 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2535274, + "thread": 5 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2759381, + "thread": 26 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 2878061, + "thread": 8 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 3009106, + "thread": 21 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 3269342, + "thread": 19 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 3315788, + "thread": 25 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 3516959, + "thread": 26 + } + }, + { + "amount": "99.355759177", + "slot": { + "period": 3676806, + "thread": 0 + } + }, + { + "amount": "99.355759178", + "slot": { + "period": 3855076, + "thread": 2 + } + } + ], + "AU12JLSeXsH45z9EZchjgBARhPiaXN3m4P9EnNhEmCSfdLCA854mL": [ + { + "amount": "226.494736596", + "slot": { + "period": 52736, + "thread": 3 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 173967, + "thread": 2 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 475161, + "thread": 14 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 608404, + "thread": 9 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 803830, + "thread": 30 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 982576, + "thread": 21 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1020844, + "thread": 30 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1195337, + "thread": 16 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1409851, + "thread": 13 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1625057, + "thread": 3 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1702861, + "thread": 27 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 1857517, + "thread": 11 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2047738, + "thread": 13 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2250263, + "thread": 12 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2436138, + "thread": 14 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2607479, + "thread": 11 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2673876, + "thread": 21 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2915080, + "thread": 1 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 2974069, + "thread": 11 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 3213543, + "thread": 11 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 3358372, + "thread": 12 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 3483792, + "thread": 20 + } + }, + { + "amount": "226.494736596", + "slot": { + "period": 3682287, + "thread": 3 + } + }, + { + "amount": "226.494736607", + "slot": { + "period": 3825624, + "thread": 1 + } + } + ], + "AU12JLi2hg2xAcYbTUPdLxtviRPdtypTiRg9TqkR6GDdT3U47eScc": [ + { + "amount": "210.323775646", + "slot": { + "period": 86916, + "thread": 11 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 246713, + "thread": 21 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 362244, + "thread": 7 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 549504, + "thread": 14 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 684374, + "thread": 4 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 912587, + "thread": 20 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1048143, + "thread": 14 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1185726, + "thread": 7 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1450056, + "thread": 14 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1539657, + "thread": 7 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1794990, + "thread": 8 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 1893108, + "thread": 13 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2134653, + "thread": 0 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2174900, + "thread": 5 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2376260, + "thread": 31 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2612575, + "thread": 27 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2743341, + "thread": 0 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 2866733, + "thread": 0 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 3018702, + "thread": 11 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 3197950, + "thread": 17 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 3349547, + "thread": 2 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 3485985, + "thread": 7 + } + }, + { + "amount": "210.323775646", + "slot": { + "period": 3718890, + "thread": 28 + } + }, + { + "amount": "210.323775637", + "slot": { + "period": 3885055, + "thread": 23 + } + } + ], + "AU12JNTPo42C4bUW5NxainBZ4pESdjWNiVTZNJ1pUk6xWfSomKggn": [ + { + "amount": "234.253662624", + "slot": { + "period": 108185, + "thread": 3 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 312738, + "thread": 9 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 341603, + "thread": 31 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 615838, + "thread": 18 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 761130, + "thread": 22 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 831276, + "thread": 17 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1003931, + "thread": 20 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1206154, + "thread": 11 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1419030, + "thread": 0 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1491809, + "thread": 11 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1667906, + "thread": 7 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1917231, + "thread": 17 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 1988671, + "thread": 20 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 2277626, + "thread": 8 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 2457976, + "thread": 2 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 2564964, + "thread": 16 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 2645388, + "thread": 12 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 2872874, + "thread": 21 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 3092853, + "thread": 20 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 3127949, + "thread": 10 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 3364662, + "thread": 1 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 3528410, + "thread": 28 + } + }, + { + "amount": "234.253662624", + "slot": { + "period": 3701572, + "thread": 9 + } + }, + { + "amount": "234.253662625", + "slot": { + "period": 3845666, + "thread": 29 + } + } + ], + "AU12JNg7SH2FnsHoekmUQEc8CvtDTAnJFZ1aXku27u6HmL3bQQbSa": [ + { + "amount": "215.231683454", + "slot": { + "period": 105804, + "thread": 21 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 220004, + "thread": 9 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 328849, + "thread": 30 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 522095, + "thread": 24 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 772300, + "thread": 26 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 906725, + "thread": 5 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1120104, + "thread": 9 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1249737, + "thread": 20 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1452635, + "thread": 19 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1546560, + "thread": 17 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1753041, + "thread": 22 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 1967872, + "thread": 16 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2094203, + "thread": 26 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2291180, + "thread": 26 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2400186, + "thread": 0 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2516550, + "thread": 13 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2753007, + "thread": 12 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 2831559, + "thread": 15 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 3021787, + "thread": 11 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 3238562, + "thread": 4 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 3421628, + "thread": 1 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 3565061, + "thread": 24 + } + }, + { + "amount": "215.231683454", + "slot": { + "period": 3662686, + "thread": 17 + } + }, + { + "amount": "215.231683444", + "slot": { + "period": 3938834, + "thread": 5 + } + } + ], + "AU12JNv9UxBKSUwCHoSRMWEbkMU3NSYy94saYf1NJwZHArpKBViCj": [ + { + "amount": "114.267302918", + "slot": { + "period": 82809, + "thread": 29 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 203430, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 425822, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 639043, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 656986, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 963265, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1008283, + "thread": 3 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1271357, + "thread": 6 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1345657, + "thread": 17 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1571410, + "thread": 4 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1718279, + "thread": 24 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 1827326, + "thread": 27 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2047475, + "thread": 5 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2291363, + "thread": 16 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2323492, + "thread": 14 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2559826, + "thread": 20 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2655636, + "thread": 14 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2879736, + "thread": 5 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 2993085, + "thread": 8 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 3270789, + "thread": 16 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 3394439, + "thread": 31 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 3529276, + "thread": 30 + } + }, + { + "amount": "114.267302918", + "slot": { + "period": 3635936, + "thread": 9 + } + }, + { + "amount": "114.267302909", + "slot": { + "period": 3938738, + "thread": 3 + } + } + ], + "AU12JPVaRt663kQdhhHWaCQmyAwoLvp2CT2mBqFxVvRbPnjPpgtvF": [ + { + "amount": "119.881547043", + "slot": { + "period": 18695, + "thread": 20 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 273252, + "thread": 12 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 424224, + "thread": 16 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 510962, + "thread": 16 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 658658, + "thread": 15 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 974816, + "thread": 24 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1033007, + "thread": 10 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1176213, + "thread": 26 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1405780, + "thread": 19 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1563060, + "thread": 4 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1730574, + "thread": 0 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 1959525, + "thread": 16 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2090026, + "thread": 6 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2228409, + "thread": 23 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2421557, + "thread": 18 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2572912, + "thread": 15 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2644844, + "thread": 28 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 2854287, + "thread": 27 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 3040391, + "thread": 7 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 3176633, + "thread": 1 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 3326983, + "thread": 29 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 3521557, + "thread": 28 + } + }, + { + "amount": "119.881547043", + "slot": { + "period": 3678162, + "thread": 5 + } + }, + { + "amount": "119.881547053", + "slot": { + "period": 3782155, + "thread": 2 + } + } + ], + "AU12JPWs7XfzLDbP4JCZb7nG8WxoV4rmdBjZdu1CsazZZadiHs51j": [ + { + "amount": "55.123745467", + "slot": { + "period": 104544, + "thread": 11 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 274986, + "thread": 15 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 327639, + "thread": 24 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 649705, + "thread": 27 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 805197, + "thread": 21 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 940895, + "thread": 26 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1097560, + "thread": 2 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1226253, + "thread": 29 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1462102, + "thread": 21 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1639631, + "thread": 15 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1703193, + "thread": 22 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 1943386, + "thread": 3 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2074343, + "thread": 20 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2163182, + "thread": 18 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2458437, + "thread": 29 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2519812, + "thread": 11 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2642075, + "thread": 20 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 2856203, + "thread": 20 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 3017790, + "thread": 19 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 3241864, + "thread": 10 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 3404216, + "thread": 24 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 3518484, + "thread": 13 + } + }, + { + "amount": "55.123745467", + "slot": { + "period": 3764608, + "thread": 30 + } + }, + { + "amount": "55.123745470", + "slot": { + "period": 3869216, + "thread": 19 + } + } + ], + "AU12JPdnPRzf2hCaqssmK4dKHTHNGdfYdM4Y2Krs7j2FZaZkRRSiu": [ + { + "amount": "174.551408613", + "slot": { + "period": 124598, + "thread": 14 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 167758, + "thread": 28 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 445236, + "thread": 9 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 500624, + "thread": 0 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 783074, + "thread": 13 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 979865, + "thread": 19 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1008072, + "thread": 25 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1233538, + "thread": 22 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1374137, + "thread": 12 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1514104, + "thread": 28 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1712727, + "thread": 22 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 1896406, + "thread": 31 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2039765, + "thread": 20 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2214610, + "thread": 20 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2365445, + "thread": 19 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2535688, + "thread": 27 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2729180, + "thread": 7 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 2813916, + "thread": 22 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 3022724, + "thread": 18 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 3181224, + "thread": 21 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 3303820, + "thread": 1 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 3575340, + "thread": 2 + } + }, + { + "amount": "174.551408613", + "slot": { + "period": 3757930, + "thread": 18 + } + }, + { + "amount": "174.551408607", + "slot": { + "period": 3794005, + "thread": 8 + } + } + ], + "AU12JPmY3u67NPUGPoBubUvWS2y694aES3YWzpxX7TzQN9W21aSbD": [ + { + "amount": "144.928311047", + "slot": { + "period": 121474, + "thread": 1 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 181223, + "thread": 7 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 392073, + "thread": 23 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 564578, + "thread": 14 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 674770, + "thread": 27 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 930067, + "thread": 28 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1031966, + "thread": 1 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1213941, + "thread": 1 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1360251, + "thread": 27 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1630057, + "thread": 25 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1676606, + "thread": 29 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 1835012, + "thread": 12 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2044033, + "thread": 16 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2232166, + "thread": 22 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2340360, + "thread": 20 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2601118, + "thread": 1 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2637516, + "thread": 11 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 2937184, + "thread": 3 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 3028825, + "thread": 18 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 3145288, + "thread": 28 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 3367918, + "thread": 12 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 3603949, + "thread": 29 + } + }, + { + "amount": "144.928311047", + "slot": { + "period": 3680803, + "thread": 5 + } + }, + { + "amount": "144.928311040", + "slot": { + "period": 3946393, + "thread": 11 + } + } + ], + "AU12JRCJ7UvzCP7HGdkb9DbEYLAZb1jfdhEZZ9pefAAuSRt3kyU7E": [ + { + "amount": "105.064249166", + "slot": { + "period": 126378, + "thread": 8 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 298270, + "thread": 11 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 420205, + "thread": 30 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 589828, + "thread": 31 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 795075, + "thread": 2 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 959938, + "thread": 8 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1052954, + "thread": 26 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1274101, + "thread": 27 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1392599, + "thread": 0 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1560608, + "thread": 0 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1789293, + "thread": 21 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 1944624, + "thread": 16 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2092923, + "thread": 25 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2237352, + "thread": 13 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2423807, + "thread": 7 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2553389, + "thread": 19 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2691030, + "thread": 0 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 2941789, + "thread": 24 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 3065819, + "thread": 26 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 3233949, + "thread": 31 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 3329187, + "thread": 2 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 3582787, + "thread": 15 + } + }, + { + "amount": "105.064249166", + "slot": { + "period": 3690784, + "thread": 30 + } + }, + { + "amount": "105.064249157", + "slot": { + "period": 3806430, + "thread": 30 + } + } + ], + "AU12JSihPZCGsG6BJmPUZ1SAomAd86SCn8oJdZwQMHdQrdSd2t9xX": [ + { + "amount": "192.928228232", + "slot": { + "period": 91274, + "thread": 28 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 225175, + "thread": 1 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 391432, + "thread": 24 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 512631, + "thread": 24 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 691467, + "thread": 27 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 851068, + "thread": 8 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1086592, + "thread": 9 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1189837, + "thread": 22 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1376908, + "thread": 9 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1552549, + "thread": 5 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1771207, + "thread": 17 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 1875551, + "thread": 11 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2009918, + "thread": 2 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2250663, + "thread": 25 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2450374, + "thread": 30 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2541342, + "thread": 14 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2744131, + "thread": 30 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 2849927, + "thread": 19 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 3102864, + "thread": 29 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 3153342, + "thread": 19 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 3342439, + "thread": 5 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 3563925, + "thread": 16 + } + }, + { + "amount": "192.928228232", + "slot": { + "period": 3693853, + "thread": 28 + } + }, + { + "amount": "192.928228229", + "slot": { + "period": 3933219, + "thread": 2 + } + } + ], + "AU12JT5hKGqrHfn7UvKuVZxauVwVY4nbti7XVzfEye157dYck8yvQ": [ + { + "amount": "189.804366084", + "slot": { + "period": 18389, + "thread": 0 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 297771, + "thread": 6 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 449728, + "thread": 24 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 515204, + "thread": 17 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 755199, + "thread": 23 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 847891, + "thread": 5 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1055261, + "thread": 12 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1178272, + "thread": 23 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1409925, + "thread": 7 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1579254, + "thread": 22 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1656923, + "thread": 17 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 1917456, + "thread": 28 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2058370, + "thread": 31 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2178174, + "thread": 4 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2364498, + "thread": 3 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2594161, + "thread": 5 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2769624, + "thread": 19 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 2922664, + "thread": 22 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 3095668, + "thread": 0 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 3253221, + "thread": 11 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 3341867, + "thread": 13 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 3457583, + "thread": 23 + } + }, + { + "amount": "189.804366084", + "slot": { + "period": 3757854, + "thread": 8 + } + }, + { + "amount": "189.804366073", + "slot": { + "period": 3856917, + "thread": 8 + } + } + ], + "AU12JTLpcZCxynknivW4m7Qy7u2P89f885TvDHA7o5Sg1zyMiHzXy": [ + { + "amount": "63.779571873", + "slot": { + "period": 67631, + "thread": 6 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 302776, + "thread": 30 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 339498, + "thread": 8 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 519508, + "thread": 7 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 815823, + "thread": 2 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 952935, + "thread": 11 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 999301, + "thread": 9 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 1284020, + "thread": 14 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 1345279, + "thread": 24 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 1633714, + "thread": 2 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 1764775, + "thread": 23 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 1919614, + "thread": 14 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2123980, + "thread": 12 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2279417, + "thread": 16 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2450273, + "thread": 8 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2623454, + "thread": 31 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2701086, + "thread": 21 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 2872740, + "thread": 30 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 3017714, + "thread": 1 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 3205900, + "thread": 30 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 3366428, + "thread": 22 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 3476533, + "thread": 5 + } + }, + { + "amount": "63.779571873", + "slot": { + "period": 3732714, + "thread": 7 + } + }, + { + "amount": "63.779571869", + "slot": { + "period": 3920065, + "thread": 0 + } + } + ], + "AU12JTrZMw4jjoVpzwMBZYg6BvMJiPemjSoH3nWMyxvoR9YhWrjgW": [ + { + "amount": "259.731425196", + "slot": { + "period": 65710, + "thread": 18 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 223811, + "thread": 31 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 457071, + "thread": 26 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 616938, + "thread": 10 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 725938, + "thread": 17 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 913717, + "thread": 10 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1048268, + "thread": 21 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1207624, + "thread": 14 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1393981, + "thread": 0 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1484751, + "thread": 6 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1789956, + "thread": 29 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 1944504, + "thread": 7 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2039599, + "thread": 17 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2256094, + "thread": 16 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2314483, + "thread": 11 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2485364, + "thread": 10 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2677279, + "thread": 8 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2841852, + "thread": 20 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 2957845, + "thread": 3 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 3235781, + "thread": 10 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 3319778, + "thread": 7 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 3534973, + "thread": 22 + } + }, + { + "amount": "259.731425196", + "slot": { + "period": 3732154, + "thread": 11 + } + }, + { + "amount": "259.731425191", + "slot": { + "period": 3834920, + "thread": 26 + } + } + ], + "AU12JUUaJQEs335AQ9E1QpoJycCdRa5mpiWfL1igjrNJhnc9xkBNQ": [ + { + "amount": "106.297443682", + "slot": { + "period": 50727, + "thread": 22 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 261963, + "thread": 7 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 380608, + "thread": 21 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 616684, + "thread": 21 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 729294, + "thread": 3 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 905101, + "thread": 29 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1012400, + "thread": 12 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1178168, + "thread": 13 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1444191, + "thread": 14 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1627675, + "thread": 10 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1680992, + "thread": 14 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 1899495, + "thread": 22 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2098974, + "thread": 22 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2266693, + "thread": 15 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2393591, + "thread": 0 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2503729, + "thread": 21 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2642408, + "thread": 11 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2807209, + "thread": 22 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 2986207, + "thread": 12 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 3223958, + "thread": 10 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 3356458, + "thread": 17 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 3483318, + "thread": 13 + } + }, + { + "amount": "106.297443682", + "slot": { + "period": 3692806, + "thread": 2 + } + }, + { + "amount": "106.297443677", + "slot": { + "period": 3937056, + "thread": 16 + } + } + ], + "AU12JUfMkWHBjo7sw21Ki8m6X2Ag7QgfGrfovPzL89FyHVczgRqET": [ + { + "amount": "151.023689429", + "slot": { + "period": 91799, + "thread": 31 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 224146, + "thread": 5 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 386234, + "thread": 24 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 523635, + "thread": 14 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 727487, + "thread": 25 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 886828, + "thread": 30 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1091577, + "thread": 19 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1290139, + "thread": 6 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1462509, + "thread": 13 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1559547, + "thread": 7 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1667196, + "thread": 17 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 1887859, + "thread": 7 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2120997, + "thread": 5 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2188541, + "thread": 12 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2350601, + "thread": 12 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2500979, + "thread": 1 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2781662, + "thread": 21 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 2857486, + "thread": 15 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 3085024, + "thread": 20 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 3176234, + "thread": 30 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 3340361, + "thread": 7 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 3537293, + "thread": 6 + } + }, + { + "amount": "151.023689429", + "slot": { + "period": 3710988, + "thread": 15 + } + }, + { + "amount": "151.023689432", + "slot": { + "period": 3913241, + "thread": 16 + } + } + ], + "AU12JWjbTBcj4ELVQFY3hZJrex3WPq4AeAVUXtLhh1RcQZKom4kjz": [ + { + "amount": "212.883500334", + "slot": { + "period": 90236, + "thread": 2 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 278639, + "thread": 22 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 360247, + "thread": 19 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 555793, + "thread": 0 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 684467, + "thread": 2 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 962935, + "thread": 1 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1148385, + "thread": 1 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1199518, + "thread": 24 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1452527, + "thread": 16 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1519110, + "thread": 9 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1657977, + "thread": 21 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 1832727, + "thread": 25 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2077591, + "thread": 4 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2186053, + "thread": 22 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2348122, + "thread": 16 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2558833, + "thread": 27 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2770097, + "thread": 15 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2841639, + "thread": 19 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 2987390, + "thread": 8 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 3175504, + "thread": 19 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 3381139, + "thread": 15 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 3475561, + "thread": 28 + } + }, + { + "amount": "212.883500334", + "slot": { + "period": 3735957, + "thread": 6 + } + }, + { + "amount": "212.883500343", + "slot": { + "period": 3791174, + "thread": 28 + } + } + ], + "AU12JXLc7CMUVp7JvBTyVUbEvu5XVeDnVagcpvd2XVwuExPxHYi2Y": [ + { + "amount": "166.430742599", + "slot": { + "period": 30571, + "thread": 4 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 290595, + "thread": 19 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 385934, + "thread": 26 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 492612, + "thread": 24 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 688740, + "thread": 8 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 841777, + "thread": 21 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1052531, + "thread": 24 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1298888, + "thread": 22 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1444899, + "thread": 19 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1556738, + "thread": 14 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1689817, + "thread": 13 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 1900183, + "thread": 17 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2121711, + "thread": 11 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2252117, + "thread": 12 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2406715, + "thread": 27 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2574842, + "thread": 8 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2676934, + "thread": 11 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 2832642, + "thread": 25 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 3117225, + "thread": 7 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 3121287, + "thread": 29 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 3299653, + "thread": 15 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 3589047, + "thread": 19 + } + }, + { + "amount": "166.430742599", + "slot": { + "period": 3686507, + "thread": 11 + } + }, + { + "amount": "166.430742590", + "slot": { + "period": 3848870, + "thread": 30 + } + } + ], + "AU12JXeXUC1bjA9EEtS59gDdriCPiqNBnvwk2zq9uu8ijT2UvHdga": [ + { + "amount": "70.420816261", + "slot": { + "period": 102803, + "thread": 23 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 296526, + "thread": 2 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 434073, + "thread": 30 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 607386, + "thread": 10 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 737771, + "thread": 0 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 933445, + "thread": 5 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1079157, + "thread": 21 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1189815, + "thread": 0 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1369934, + "thread": 1 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1560200, + "thread": 3 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1669564, + "thread": 26 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1862959, + "thread": 27 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 1978810, + "thread": 10 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2157064, + "thread": 16 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2400986, + "thread": 25 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2489336, + "thread": 17 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2762447, + "thread": 6 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2904194, + "thread": 30 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 2966482, + "thread": 4 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 3145284, + "thread": 21 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 3396909, + "thread": 12 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 3549983, + "thread": 20 + } + }, + { + "amount": "70.420816261", + "slot": { + "period": 3630492, + "thread": 15 + } + }, + { + "amount": "70.420816268", + "slot": { + "period": 3845776, + "thread": 31 + } + } + ], + "AU12JZ3TuN5Ko4zhS61x4r2RVNxzyU8M6YDnkc1sgRQXQUKkvmFda": [ + { + "amount": "279.733431103", + "slot": { + "period": 54748, + "thread": 4 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 213016, + "thread": 28 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 470843, + "thread": 16 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 612977, + "thread": 29 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 767720, + "thread": 21 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 965550, + "thread": 26 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1059475, + "thread": 29 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1180540, + "thread": 28 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1334562, + "thread": 28 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1605887, + "thread": 29 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1767022, + "thread": 17 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 1885918, + "thread": 23 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2009400, + "thread": 13 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2165634, + "thread": 24 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2450422, + "thread": 7 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2550963, + "thread": 0 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2663042, + "thread": 5 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 2842464, + "thread": 9 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 3120789, + "thread": 18 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 3142999, + "thread": 21 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 3298526, + "thread": 4 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 3534821, + "thread": 12 + } + }, + { + "amount": "279.733431103", + "slot": { + "period": 3700774, + "thread": 15 + } + }, + { + "amount": "279.733431106", + "slot": { + "period": 3899587, + "thread": 10 + } + } + ], + "AU12JaZXipyYiczrXCUejENbYEvBArna28SdwPZoJyHYGAi89iv4A": [ + { + "amount": "163.891488371", + "slot": { + "period": 159570, + "thread": 13 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 183210, + "thread": 9 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 483138, + "thread": 24 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 648658, + "thread": 22 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 769715, + "thread": 31 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 909888, + "thread": 15 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1091247, + "thread": 10 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1185436, + "thread": 3 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1337473, + "thread": 13 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1560268, + "thread": 28 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1698046, + "thread": 3 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 1868902, + "thread": 20 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2137000, + "thread": 10 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2276206, + "thread": 13 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2352524, + "thread": 21 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2471620, + "thread": 19 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2740033, + "thread": 26 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 2858309, + "thread": 11 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 3098011, + "thread": 16 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 3191063, + "thread": 16 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 3312622, + "thread": 12 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 3529350, + "thread": 14 + } + }, + { + "amount": "163.891488371", + "slot": { + "period": 3734794, + "thread": 14 + } + }, + { + "amount": "163.891488362", + "slot": { + "period": 3821310, + "thread": 20 + } + } + ], + "AU12JazqNb85rCWTbrpeFcaATM3atpEMDqF6r2V4DAN3pDcJWuu6s": [ + { + "amount": "144.294006159", + "slot": { + "period": 147377, + "thread": 15 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 283613, + "thread": 23 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 404202, + "thread": 16 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 569742, + "thread": 16 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 728762, + "thread": 25 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 936216, + "thread": 28 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1087938, + "thread": 20 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1275191, + "thread": 6 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1349903, + "thread": 15 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1512192, + "thread": 3 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1671452, + "thread": 17 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1869978, + "thread": 11 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 1993145, + "thread": 25 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 2213515, + "thread": 22 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 2339027, + "thread": 0 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 2483076, + "thread": 9 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 2717586, + "thread": 9 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 2824029, + "thread": 9 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 3017509, + "thread": 0 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 3279048, + "thread": 11 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 3342961, + "thread": 1 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 3567458, + "thread": 11 + } + }, + { + "amount": "144.294006159", + "slot": { + "period": 3669012, + "thread": 21 + } + }, + { + "amount": "144.294006163", + "slot": { + "period": 3823200, + "thread": 14 + } + } + ], + "AU12JetSW2kxxYeXyry3yC2AkgrvFDqKuH4u52gcBQc1K6ptjwk1m": [ + { + "amount": "135.893896351", + "slot": { + "period": 65508, + "thread": 6 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 298958, + "thread": 27 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 442855, + "thread": 4 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 561687, + "thread": 2 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 725491, + "thread": 18 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 824784, + "thread": 22 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1055539, + "thread": 28 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1213311, + "thread": 9 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1438178, + "thread": 25 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1507261, + "thread": 7 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1750778, + "thread": 0 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 1921816, + "thread": 5 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2000932, + "thread": 23 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2235767, + "thread": 0 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2462164, + "thread": 28 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2532659, + "thread": 11 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2640143, + "thread": 30 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 2879566, + "thread": 18 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 3004483, + "thread": 17 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 3270266, + "thread": 20 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 3313160, + "thread": 25 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 3579568, + "thread": 21 + } + }, + { + "amount": "135.893896351", + "slot": { + "period": 3694210, + "thread": 18 + } + }, + { + "amount": "135.893896350", + "slot": { + "period": 3914816, + "thread": 29 + } + } + ], + "AU12Jf4MazHa1QZDL6gsxYQtZUwwab1QtwveCT7H6Xtx6Lh4dPN4q": [ + { + "amount": "124.283631699", + "slot": { + "period": 30239, + "thread": 6 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 319825, + "thread": 16 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 485595, + "thread": 17 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 504860, + "thread": 24 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 767143, + "thread": 13 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 857915, + "thread": 19 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1077664, + "thread": 29 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1304113, + "thread": 3 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1379344, + "thread": 5 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1581461, + "thread": 11 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1684977, + "thread": 30 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 1827163, + "thread": 0 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2031354, + "thread": 27 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2245914, + "thread": 5 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2427887, + "thread": 7 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2566403, + "thread": 16 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2717667, + "thread": 11 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 2819495, + "thread": 25 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 3121148, + "thread": 26 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 3123175, + "thread": 11 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 3429009, + "thread": 19 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 3494135, + "thread": 31 + } + }, + { + "amount": "124.283631699", + "slot": { + "period": 3677051, + "thread": 18 + } + }, + { + "amount": "124.283631708", + "slot": { + "period": 3869268, + "thread": 20 + } + } + ], + "AU12Jfh86eYZDN1N26CGiYEc736X16MpiaMspBb414yWPaQYKdk1z": [ + { + "amount": "214.679757507", + "slot": { + "period": 98476, + "thread": 4 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 241748, + "thread": 26 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 377262, + "thread": 22 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 564728, + "thread": 30 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 750114, + "thread": 18 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 973599, + "thread": 13 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1065601, + "thread": 15 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1170848, + "thread": 20 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1388346, + "thread": 27 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1524607, + "thread": 25 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1692959, + "thread": 3 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 1815048, + "thread": 28 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2022341, + "thread": 23 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2266306, + "thread": 5 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2334917, + "thread": 16 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2542443, + "thread": 24 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2706020, + "thread": 29 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 2874888, + "thread": 13 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 3099170, + "thread": 24 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 3136460, + "thread": 1 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 3352023, + "thread": 14 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 3468034, + "thread": 7 + } + }, + { + "amount": "214.679757507", + "slot": { + "period": 3691327, + "thread": 14 + } + }, + { + "amount": "214.679757510", + "slot": { + "period": 3853297, + "thread": 26 + } + } + ], + "AU12Jfha1Jkwi6vy2C46FZRKn8ej4zoQWLuvJFD9SE3Z3dfQbPkho": [ + { + "amount": "170.970504582", + "slot": { + "period": 107484, + "thread": 31 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 249236, + "thread": 6 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 485996, + "thread": 24 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 569312, + "thread": 2 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 803292, + "thread": 27 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 942977, + "thread": 26 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 983311, + "thread": 16 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 1258222, + "thread": 14 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 1404057, + "thread": 11 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 1628869, + "thread": 31 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 1702444, + "thread": 17 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 1848185, + "thread": 22 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2068875, + "thread": 20 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2191225, + "thread": 7 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2360588, + "thread": 18 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2571461, + "thread": 30 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2638640, + "thread": 22 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2794712, + "thread": 21 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 2975162, + "thread": 21 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 3220239, + "thread": 15 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 3427511, + "thread": 26 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 3546693, + "thread": 30 + } + }, + { + "amount": "170.970504582", + "slot": { + "period": 3654402, + "thread": 5 + } + }, + { + "amount": "170.970504586", + "slot": { + "period": 3873194, + "thread": 26 + } + } + ], + "AU12JfmS8uQ4gM83jDcirxDCcKoZ17EQ867sg1msohMKXFBbXZrvF": [ + { + "amount": "373.671066795", + "slot": { + "period": 97642, + "thread": 11 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 297761, + "thread": 11 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 439962, + "thread": 9 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 543773, + "thread": 4 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 813947, + "thread": 22 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 933292, + "thread": 20 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1088353, + "thread": 20 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1170673, + "thread": 31 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1476598, + "thread": 7 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1575378, + "thread": 10 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1796958, + "thread": 11 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 1964086, + "thread": 4 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2100930, + "thread": 14 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2216460, + "thread": 19 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2311768, + "thread": 6 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2602235, + "thread": 7 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2737103, + "thread": 11 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 2800460, + "thread": 4 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3041480, + "thread": 20 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3180016, + "thread": 14 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3317330, + "thread": 1 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3515338, + "thread": 6 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3766388, + "thread": 1 + } + }, + { + "amount": "373.671066795", + "slot": { + "period": 3798434, + "thread": 14 + } + } + ], + "AU12JfxYXF23wvemE5SiJMqgCq4YacE2qUbMiKVQKQAXSfdDuyYfB": [ + { + "amount": "66.510021861", + "slot": { + "period": 61061, + "thread": 21 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 323449, + "thread": 4 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 432352, + "thread": 26 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 589614, + "thread": 14 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 744944, + "thread": 25 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 888716, + "thread": 28 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1066382, + "thread": 3 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1262730, + "thread": 16 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1462646, + "thread": 5 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1482514, + "thread": 22 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1671140, + "thread": 28 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 1971252, + "thread": 18 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2109530, + "thread": 30 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2203811, + "thread": 16 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2361692, + "thread": 21 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2595986, + "thread": 1 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2765979, + "thread": 6 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 2864598, + "thread": 13 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 3065407, + "thread": 4 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 3280708, + "thread": 23 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 3412337, + "thread": 12 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 3578317, + "thread": 24 + } + }, + { + "amount": "66.510021861", + "slot": { + "period": 3718298, + "thread": 7 + } + }, + { + "amount": "66.510021863", + "slot": { + "period": 3800133, + "thread": 16 + } + } + ], + "AU12Jg9VyqDnBuoWFqp3va3Aikr4Wz5ZBfAyUv7Qc9xEHBQmQED7p": [ + { + "amount": "186.404005432", + "slot": { + "period": 126828, + "thread": 13 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 233950, + "thread": 20 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 339901, + "thread": 11 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 527736, + "thread": 3 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 675578, + "thread": 18 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 954316, + "thread": 31 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1143376, + "thread": 11 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1221289, + "thread": 3 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1357835, + "thread": 0 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1535335, + "thread": 23 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1793980, + "thread": 29 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 1934072, + "thread": 28 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2005569, + "thread": 17 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2212223, + "thread": 24 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2393378, + "thread": 20 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2527093, + "thread": 30 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2636649, + "thread": 4 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 2821190, + "thread": 5 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 3081326, + "thread": 28 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 3185907, + "thread": 1 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 3417309, + "thread": 0 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 3536376, + "thread": 6 + } + }, + { + "amount": "186.404005432", + "slot": { + "period": 3625378, + "thread": 27 + } + }, + { + "amount": "186.404005433", + "slot": { + "period": 3821751, + "thread": 16 + } + } + ], + "AU12JgPEPixMKCMEx98cVmDkGQk8h81EaXGqQFDTSkVPnLMRm7huU": [ + { + "amount": "119.128276066", + "slot": { + "period": 96847, + "thread": 19 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 243577, + "thread": 6 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 464163, + "thread": 28 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 568926, + "thread": 25 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 661129, + "thread": 6 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 951829, + "thread": 2 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1026397, + "thread": 31 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1225157, + "thread": 14 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1424107, + "thread": 20 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1618468, + "thread": 31 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1691493, + "thread": 2 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 1972225, + "thread": 8 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2094190, + "thread": 28 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2146470, + "thread": 18 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2369432, + "thread": 28 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2509716, + "thread": 26 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2658605, + "thread": 16 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2873027, + "thread": 13 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 2967454, + "thread": 9 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 3210657, + "thread": 5 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 3446052, + "thread": 22 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 3609666, + "thread": 17 + } + }, + { + "amount": "119.128276066", + "slot": { + "period": 3776110, + "thread": 30 + } + }, + { + "amount": "119.128276061", + "slot": { + "period": 3798285, + "thread": 30 + } + } + ], + "AU12JgnorVKroLPgT1RdBYJa4Z4MGyVdrg6mcxok1vGGGN4onfwfN": [ + { + "amount": "283.147974018", + "slot": { + "period": 116949, + "thread": 20 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 312580, + "thread": 16 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 403390, + "thread": 0 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 587827, + "thread": 4 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 694856, + "thread": 8 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 972014, + "thread": 28 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1106945, + "thread": 3 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1291899, + "thread": 31 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1444170, + "thread": 23 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1584134, + "thread": 27 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1693855, + "thread": 22 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 1910834, + "thread": 9 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2028997, + "thread": 21 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2238210, + "thread": 30 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2333371, + "thread": 6 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2524584, + "thread": 21 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2711394, + "thread": 31 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 2852786, + "thread": 19 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 3115888, + "thread": 2 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 3162692, + "thread": 18 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 3357276, + "thread": 29 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 3607754, + "thread": 25 + } + }, + { + "amount": "283.147974018", + "slot": { + "period": 3704240, + "thread": 22 + } + }, + { + "amount": "283.147974011", + "slot": { + "period": 3832328, + "thread": 13 + } + } + ], + "AU12JgsayyYY3Y9ehQrvgEV9ug8vrywAhoGLSFx6NmJs99BCJHuHo": [ + { + "amount": "73.664251638", + "slot": { + "period": 36737, + "thread": 15 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 283559, + "thread": 31 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 453103, + "thread": 15 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 584932, + "thread": 14 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 696444, + "thread": 8 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 972124, + "thread": 17 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 985982, + "thread": 16 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 1259760, + "thread": 29 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 1398408, + "thread": 1 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 1498400, + "thread": 1 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 1650940, + "thread": 9 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 1955369, + "thread": 5 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2070941, + "thread": 23 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2291331, + "thread": 29 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2335044, + "thread": 14 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2504030, + "thread": 13 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2676401, + "thread": 20 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 2822160, + "thread": 11 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 3090395, + "thread": 25 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 3221280, + "thread": 24 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 3378018, + "thread": 2 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 3586795, + "thread": 28 + } + }, + { + "amount": "73.664251638", + "slot": { + "period": 3739477, + "thread": 0 + } + }, + { + "amount": "73.664251633", + "slot": { + "period": 3923045, + "thread": 9 + } + } + ], + "AU12JhLorzneKW7ecw2rWWwXRc6tu6utBct5shBBbHvW2Rspyds78": [ + { + "amount": "56.582398808", + "slot": { + "period": 16886, + "thread": 29 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 279604, + "thread": 29 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 417927, + "thread": 19 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 492228, + "thread": 13 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 772782, + "thread": 5 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 918324, + "thread": 24 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1137615, + "thread": 2 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1161350, + "thread": 29 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1419399, + "thread": 30 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1528028, + "thread": 17 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1726412, + "thread": 4 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 1969150, + "thread": 16 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2024142, + "thread": 24 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2248602, + "thread": 23 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2349038, + "thread": 3 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2545713, + "thread": 27 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2763764, + "thread": 8 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 2945468, + "thread": 5 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 3009515, + "thread": 9 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 3149462, + "thread": 5 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 3433157, + "thread": 6 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 3475665, + "thread": 26 + } + }, + { + "amount": "56.582398808", + "slot": { + "period": 3753919, + "thread": 25 + } + }, + { + "amount": "56.582398799", + "slot": { + "period": 3784554, + "thread": 6 + } + } + ], + "AU12JiKEJt6oBEywA6KrxL7hHEncm7gdFC4bNwE7LQU2bKtHPKDZZ": [ + { + "amount": "487.350144125", + "slot": { + "period": 18687, + "thread": 21 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 203632, + "thread": 9 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 341225, + "thread": 3 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 573666, + "thread": 11 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 746433, + "thread": 0 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 858572, + "thread": 13 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1086416, + "thread": 18 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1170617, + "thread": 16 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1369605, + "thread": 9 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1646090, + "thread": 24 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1780732, + "thread": 27 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 1940539, + "thread": 19 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2042246, + "thread": 10 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2254081, + "thread": 8 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2455526, + "thread": 21 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2614110, + "thread": 30 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2753990, + "thread": 12 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 2828766, + "thread": 27 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 3029671, + "thread": 18 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 3238744, + "thread": 30 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 3397491, + "thread": 6 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 3538618, + "thread": 11 + } + }, + { + "amount": "487.350144125", + "slot": { + "period": 3671866, + "thread": 28 + } + }, + { + "amount": "487.350144130", + "slot": { + "period": 3830760, + "thread": 1 + } + } + ], + "AU12Jix45ACbRBUVAK2ns2yuNF5W75DzScHK5CWntzKFt59iNxLTR": [ + { + "amount": "159.033924829", + "slot": { + "period": 63354, + "thread": 27 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 301724, + "thread": 13 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 379268, + "thread": 14 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 579044, + "thread": 0 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 667117, + "thread": 22 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 887466, + "thread": 29 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1103564, + "thread": 2 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1310455, + "thread": 23 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1469132, + "thread": 21 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1630843, + "thread": 23 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1678476, + "thread": 28 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 1892867, + "thread": 3 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2129431, + "thread": 27 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2191164, + "thread": 13 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2449130, + "thread": 17 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2515172, + "thread": 22 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2626384, + "thread": 28 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 2891106, + "thread": 18 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 3110404, + "thread": 27 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 3162875, + "thread": 12 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 3393041, + "thread": 7 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 3502036, + "thread": 24 + } + }, + { + "amount": "159.033924829", + "slot": { + "period": 3714948, + "thread": 7 + } + }, + { + "amount": "159.033924833", + "slot": { + "period": 3917671, + "thread": 31 + } + } + ], + "AU12JkHwXycSpbG3PCBEEZKwGJLPNsqRrXDLiuT7YpqC9chXGth5w": [ + { + "amount": "59.731475415", + "slot": { + "period": 139154, + "thread": 30 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 206371, + "thread": 1 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 436147, + "thread": 17 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 537275, + "thread": 11 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 656779, + "thread": 16 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 830533, + "thread": 17 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1087847, + "thread": 7 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1268697, + "thread": 1 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1412594, + "thread": 11 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1539092, + "thread": 24 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1666252, + "thread": 16 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 1956900, + "thread": 4 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2057829, + "thread": 12 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2205187, + "thread": 24 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2442069, + "thread": 28 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2589267, + "thread": 10 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2673397, + "thread": 3 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 2842406, + "thread": 20 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 3118824, + "thread": 15 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 3155326, + "thread": 23 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 3386634, + "thread": 9 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 3523004, + "thread": 1 + } + }, + { + "amount": "59.731475415", + "slot": { + "period": 3747303, + "thread": 28 + } + }, + { + "amount": "59.731475424", + "slot": { + "period": 3939538, + "thread": 17 + } + } + ], + "AU12JkdNnYDKof4fsvy8PuAUSL4rBjgmdV65DuJ91rX5AiEMds85j": [ + { + "amount": "695.456120306", + "slot": { + "period": 103505, + "thread": 6 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 238935, + "thread": 5 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 333034, + "thread": 6 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 518547, + "thread": 2 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 815205, + "thread": 15 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 863074, + "thread": 4 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1102717, + "thread": 1 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1195401, + "thread": 0 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1377359, + "thread": 3 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1573488, + "thread": 14 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1697141, + "thread": 26 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1824256, + "thread": 23 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 1994809, + "thread": 18 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 2243010, + "thread": 0 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 2338331, + "thread": 5 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 2591616, + "thread": 4 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 2732428, + "thread": 31 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 2829827, + "thread": 25 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 3120979, + "thread": 22 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 3148375, + "thread": 27 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 3388298, + "thread": 22 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 3488276, + "thread": 13 + } + }, + { + "amount": "695.456120306", + "slot": { + "period": 3711322, + "thread": 19 + } + }, + { + "amount": "695.456120295", + "slot": { + "period": 3918669, + "thread": 22 + } + } + ], + "AU12Jm5zxPjCc4jJTxBoNNegjM36KQZa2tERhjxmc7Pxbe5hUaq4e": [ + { + "amount": "413.574154917", + "slot": { + "period": 57734, + "thread": 17 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 286585, + "thread": 16 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 382143, + "thread": 19 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 557049, + "thread": 23 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 811096, + "thread": 21 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 851330, + "thread": 27 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1000653, + "thread": 17 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1266617, + "thread": 18 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1353004, + "thread": 11 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1576453, + "thread": 22 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1734569, + "thread": 5 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 1892153, + "thread": 7 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2018035, + "thread": 20 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2258570, + "thread": 12 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2353556, + "thread": 24 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2594716, + "thread": 28 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2690553, + "thread": 16 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2877211, + "thread": 15 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 2983809, + "thread": 29 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 3283682, + "thread": 11 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 3379200, + "thread": 9 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 3460015, + "thread": 14 + } + }, + { + "amount": "413.574154917", + "slot": { + "period": 3749479, + "thread": 1 + } + }, + { + "amount": "413.574154923", + "slot": { + "period": 3842742, + "thread": 28 + } + } + ], + "AU12JmJwwauqxT3iLLwFYqD7ULkg5pnf3XMgLdWSYrQdmaa6Nv1Bd": [ + { + "amount": "249.372638716", + "slot": { + "period": 17969, + "thread": 1 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 169106, + "thread": 23 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 435778, + "thread": 13 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 619483, + "thread": 4 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 686032, + "thread": 6 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 904449, + "thread": 28 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1132560, + "thread": 27 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1298023, + "thread": 19 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1323600, + "thread": 22 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1590106, + "thread": 11 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1799767, + "thread": 8 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 1926346, + "thread": 12 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2006221, + "thread": 19 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2218096, + "thread": 20 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2399791, + "thread": 20 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2608861, + "thread": 5 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2710725, + "thread": 14 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 2936078, + "thread": 27 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 3055541, + "thread": 16 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 3204561, + "thread": 7 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 3386988, + "thread": 20 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 3608413, + "thread": 1 + } + }, + { + "amount": "249.372638716", + "slot": { + "period": 3751463, + "thread": 7 + } + }, + { + "amount": "249.372638707", + "slot": { + "period": 3935068, + "thread": 21 + } + } + ], + "AU12JpWyUumF7DzQjb2GnDxmEHsWhXJaTnE49RfwpzWd6NTxdGqoK": [ + { + "amount": "60.089256685", + "slot": { + "period": 55842, + "thread": 24 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 273427, + "thread": 27 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 441842, + "thread": 18 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 573882, + "thread": 0 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 673907, + "thread": 26 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 879865, + "thread": 8 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1104249, + "thread": 28 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1157466, + "thread": 1 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1344399, + "thread": 25 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1550725, + "thread": 20 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1750792, + "thread": 28 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 1853286, + "thread": 20 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2088701, + "thread": 16 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2187730, + "thread": 20 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2406167, + "thread": 14 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2531849, + "thread": 23 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2784554, + "thread": 19 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 2909612, + "thread": 8 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 3073746, + "thread": 28 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 3143827, + "thread": 4 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 3323682, + "thread": 31 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 3450924, + "thread": 15 + } + }, + { + "amount": "60.089256685", + "slot": { + "period": 3709462, + "thread": 23 + } + }, + { + "amount": "60.089256686", + "slot": { + "period": 3793314, + "thread": 21 + } + } + ], + "AU12JqoNVPwcwcLTKem45pcqRS1wAquw16WHEcuwKF9oiLABF91ca": [ + { + "amount": "189.255966904", + "slot": { + "period": 137655, + "thread": 15 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 296788, + "thread": 9 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 458844, + "thread": 31 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 538150, + "thread": 28 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 720624, + "thread": 22 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 887798, + "thread": 14 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1126417, + "thread": 27 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1204178, + "thread": 3 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1345662, + "thread": 4 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1539438, + "thread": 25 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1769038, + "thread": 8 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 1848121, + "thread": 31 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2060839, + "thread": 0 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2153219, + "thread": 1 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2313310, + "thread": 27 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2582954, + "thread": 14 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2693372, + "thread": 6 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 2807506, + "thread": 9 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 3000497, + "thread": 28 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 3180572, + "thread": 0 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 3414959, + "thread": 0 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 3575711, + "thread": 18 + } + }, + { + "amount": "189.255966904", + "slot": { + "period": 3689856, + "thread": 15 + } + }, + { + "amount": "189.255966907", + "slot": { + "period": 3907368, + "thread": 31 + } + } + ], + "AU12JrBZt6UszNCdg62iwGUa9gmdaudZ2GMG1wP7z3A5xfRU9mMZZ": [ + { + "amount": "229.566226056", + "slot": { + "period": 151220, + "thread": 28 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 222133, + "thread": 11 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 411769, + "thread": 21 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 611479, + "thread": 12 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 736962, + "thread": 21 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 923510, + "thread": 20 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1052029, + "thread": 31 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1304633, + "thread": 22 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1407506, + "thread": 31 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1486868, + "thread": 7 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1769235, + "thread": 13 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 1824663, + "thread": 5 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2109448, + "thread": 21 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2209575, + "thread": 7 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2427358, + "thread": 12 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2578620, + "thread": 12 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2632158, + "thread": 20 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2800466, + "thread": 28 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 2975797, + "thread": 5 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 3189354, + "thread": 1 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 3300111, + "thread": 23 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 3503752, + "thread": 26 + } + }, + { + "amount": "229.566226056", + "slot": { + "period": 3664725, + "thread": 26 + } + }, + { + "amount": "229.566226065", + "slot": { + "period": 3845099, + "thread": 26 + } + } + ], + "AU12Js9LGTVyG88C1mrwxFZFxGRVKZH6ipxd7PJUYjk51gXGQmMPs": [ + { + "amount": "88.837062380", + "slot": { + "period": 129617, + "thread": 24 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 262841, + "thread": 9 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 410241, + "thread": 3 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 565818, + "thread": 17 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 694250, + "thread": 11 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 883099, + "thread": 4 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1060104, + "thread": 1 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1195535, + "thread": 16 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1402104, + "thread": 29 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1627649, + "thread": 24 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1740360, + "thread": 3 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 1849639, + "thread": 7 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2004614, + "thread": 8 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2156626, + "thread": 5 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2363739, + "thread": 2 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2531774, + "thread": 20 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2660442, + "thread": 5 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2879650, + "thread": 4 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 2997107, + "thread": 31 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 3229897, + "thread": 2 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 3446437, + "thread": 17 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 3536579, + "thread": 19 + } + }, + { + "amount": "88.837062380", + "slot": { + "period": 3673706, + "thread": 9 + } + }, + { + "amount": "88.837062384", + "slot": { + "period": 3812150, + "thread": 20 + } + } + ], + "AU12JsKbTQ3UUvnWusSBPUrtGANnU6sctWunJxqrkKKEa4548qeLc": [ + { + "amount": "68.112343128", + "slot": { + "period": 71739, + "thread": 15 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 289697, + "thread": 1 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 464434, + "thread": 12 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 559223, + "thread": 7 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 770647, + "thread": 8 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 965175, + "thread": 5 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1071403, + "thread": 0 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1243790, + "thread": 31 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1323930, + "thread": 0 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1512863, + "thread": 9 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1683407, + "thread": 17 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 1811464, + "thread": 30 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2123323, + "thread": 21 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2228723, + "thread": 17 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2356010, + "thread": 13 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2609013, + "thread": 6 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2658145, + "thread": 4 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 2888353, + "thread": 12 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 3077007, + "thread": 4 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 3134919, + "thread": 22 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 3376499, + "thread": 1 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 3615992, + "thread": 24 + } + }, + { + "amount": "68.112343128", + "slot": { + "period": 3703143, + "thread": 21 + } + }, + { + "amount": "68.112343117", + "slot": { + "period": 3912939, + "thread": 22 + } + } + ], + "AU12JsuY7vQtM1JdXx26LV1s4oXPdr39mBuyJxffxvsoU8PxpDApN": [ + { + "amount": "150.492873398", + "slot": { + "period": 159049, + "thread": 9 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 270660, + "thread": 23 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 359969, + "thread": 18 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 554373, + "thread": 6 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 740727, + "thread": 7 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 827510, + "thread": 17 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1029167, + "thread": 15 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1252601, + "thread": 27 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1432817, + "thread": 10 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1598101, + "thread": 10 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1759309, + "thread": 23 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 1862272, + "thread": 16 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2061247, + "thread": 22 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2243248, + "thread": 29 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2360840, + "thread": 29 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2520691, + "thread": 24 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2739584, + "thread": 16 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2818950, + "thread": 19 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 2961725, + "thread": 17 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 3233167, + "thread": 17 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 3446206, + "thread": 3 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 3552222, + "thread": 16 + } + }, + { + "amount": "150.492873398", + "slot": { + "period": 3746820, + "thread": 19 + } + }, + { + "amount": "150.492873406", + "slot": { + "period": 3942355, + "thread": 15 + } + } + ], + "AU12JtAWkF58gkBRp6r1eH8mMKVS18T8myNGmX1jBJzJECRuWDNSS": [ + { + "amount": "178.923345468", + "slot": { + "period": 143852, + "thread": 15 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 273723, + "thread": 7 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 372060, + "thread": 14 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 571094, + "thread": 10 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 698534, + "thread": 19 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 909544, + "thread": 31 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1091818, + "thread": 3 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1284275, + "thread": 14 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1458255, + "thread": 30 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1605078, + "thread": 21 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1739392, + "thread": 14 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 1967200, + "thread": 25 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2093441, + "thread": 23 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2269157, + "thread": 4 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2326934, + "thread": 9 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2470383, + "thread": 13 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2696119, + "thread": 22 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2851086, + "thread": 5 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 2978950, + "thread": 29 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 3234841, + "thread": 11 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 3346150, + "thread": 17 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 3610873, + "thread": 15 + } + }, + { + "amount": "178.923345468", + "slot": { + "period": 3712174, + "thread": 29 + } + }, + { + "amount": "178.923345474", + "slot": { + "period": 3909949, + "thread": 0 + } + } + ], + "AU12JtDuVTBXgqiF9ycMjvqbmWvSXakKhW75bMMoFtuNzWQtMvXZQ": [ + { + "amount": "282.928122608", + "slot": { + "period": 162023, + "thread": 2 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 293689, + "thread": 20 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 481341, + "thread": 23 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 630173, + "thread": 19 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 805734, + "thread": 2 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 881638, + "thread": 25 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1118065, + "thread": 13 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1241558, + "thread": 7 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1424020, + "thread": 30 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1509016, + "thread": 0 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1759410, + "thread": 22 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 1953655, + "thread": 0 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2104215, + "thread": 9 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2189820, + "thread": 29 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2341199, + "thread": 2 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2520307, + "thread": 20 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2755692, + "thread": 31 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2806141, + "thread": 4 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 2971539, + "thread": 10 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 3225357, + "thread": 29 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 3320237, + "thread": 27 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 3471270, + "thread": 22 + } + }, + { + "amount": "282.928122608", + "slot": { + "period": 3704490, + "thread": 10 + } + }, + { + "amount": "282.928122597", + "slot": { + "period": 3849063, + "thread": 18 + } + } + ], + "AU12JtMt5bdo9GN3tUnXMm7niChX6RXEM4GTM1Q6NL4LLVuERuWqR": [ + { + "amount": "590.724829872", + "slot": { + "period": 93307, + "thread": 13 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 212777, + "thread": 14 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 340484, + "thread": 10 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 581576, + "thread": 23 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 663909, + "thread": 22 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 922077, + "thread": 15 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1036571, + "thread": 2 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1170722, + "thread": 31 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1388267, + "thread": 22 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1589895, + "thread": 13 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1748073, + "thread": 24 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 1972090, + "thread": 4 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2053734, + "thread": 7 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2211430, + "thread": 10 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2459562, + "thread": 17 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2604900, + "thread": 17 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2733817, + "thread": 23 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2805145, + "thread": 15 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 2959264, + "thread": 27 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 3236624, + "thread": 8 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 3312850, + "thread": 26 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 3589644, + "thread": 9 + } + }, + { + "amount": "590.724829872", + "slot": { + "period": 3707403, + "thread": 12 + } + }, + { + "amount": "590.724829866", + "slot": { + "period": 3942162, + "thread": 20 + } + } + ], + "AU12JtVvaPtGjsF2SnyhiTwQWcM899AWiKDp2gq889u6LspnYFWGX": [ + { + "amount": "103.477753575", + "slot": { + "period": 83138, + "thread": 22 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 280415, + "thread": 24 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 375122, + "thread": 15 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 518423, + "thread": 23 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 668696, + "thread": 9 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 854465, + "thread": 12 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1118935, + "thread": 11 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1155777, + "thread": 1 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1372714, + "thread": 12 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1508421, + "thread": 4 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1757400, + "thread": 10 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 1924259, + "thread": 26 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2045459, + "thread": 4 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2195063, + "thread": 3 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2325635, + "thread": 15 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2500569, + "thread": 8 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2649010, + "thread": 10 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 2868605, + "thread": 25 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 3045265, + "thread": 11 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 3253183, + "thread": 7 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 3290679, + "thread": 14 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 3484046, + "thread": 27 + } + }, + { + "amount": "103.477753575", + "slot": { + "period": 3620950, + "thread": 17 + } + }, + { + "amount": "103.477753567", + "slot": { + "period": 3917843, + "thread": 21 + } + } + ], + "AU12JtbgufJNgyrm9puaMYSiyyw5rmr1nCLRYEBZpt6ThneW8VDdL": [ + { + "amount": "418.484869588", + "slot": { + "period": 96349, + "thread": 10 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 191148, + "thread": 28 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 426413, + "thread": 14 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 595524, + "thread": 3 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 667758, + "thread": 8 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 938003, + "thread": 12 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1051409, + "thread": 16 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1190455, + "thread": 29 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1435365, + "thread": 25 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1486656, + "thread": 24 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1710754, + "thread": 11 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 1921300, + "thread": 22 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2016033, + "thread": 28 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2262383, + "thread": 19 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2402372, + "thread": 25 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2573645, + "thread": 29 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2784861, + "thread": 0 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 2865714, + "thread": 5 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 3072400, + "thread": 2 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 3268462, + "thread": 30 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 3385056, + "thread": 26 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 3609402, + "thread": 3 + } + }, + { + "amount": "418.484869588", + "slot": { + "period": 3687211, + "thread": 19 + } + }, + { + "amount": "418.484869586", + "slot": { + "period": 3939819, + "thread": 14 + } + } + ], + "AU12JtmwvkjBFtHVfaPbY6WfzkFDEbGGTh3ZReKE28etDvoNHyt8A": [ + { + "amount": "244.108515081", + "slot": { + "period": 17578, + "thread": 8 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 247854, + "thread": 8 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 424289, + "thread": 2 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 640176, + "thread": 9 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 710548, + "thread": 28 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 902957, + "thread": 10 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1128414, + "thread": 25 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1284961, + "thread": 28 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1333660, + "thread": 12 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1612954, + "thread": 23 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1701855, + "thread": 6 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 1906372, + "thread": 6 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2029749, + "thread": 23 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2280616, + "thread": 19 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2388719, + "thread": 12 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2614571, + "thread": 21 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2726706, + "thread": 22 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2873852, + "thread": 28 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 2992156, + "thread": 25 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 3288019, + "thread": 31 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 3402297, + "thread": 11 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 3606665, + "thread": 15 + } + }, + { + "amount": "244.108515081", + "slot": { + "period": 3678079, + "thread": 20 + } + }, + { + "amount": "244.108515085", + "slot": { + "period": 3855177, + "thread": 6 + } + } + ], + "AU12JtqvvtyYsgHUas3xTxVRK7cUX31escrWb6oZyx3ith8acX86q": [ + { + "amount": "152.788471208", + "slot": { + "period": 99186, + "thread": 16 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 308106, + "thread": 14 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 423014, + "thread": 28 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 592712, + "thread": 15 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 727344, + "thread": 19 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 866584, + "thread": 13 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1016254, + "thread": 18 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1312538, + "thread": 5 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1435661, + "thread": 23 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1573712, + "thread": 21 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1767758, + "thread": 30 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 1926293, + "thread": 12 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2119841, + "thread": 21 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2265566, + "thread": 1 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2395630, + "thread": 12 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2586191, + "thread": 15 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2652147, + "thread": 14 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 2886738, + "thread": 10 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 3062268, + "thread": 11 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 3172928, + "thread": 27 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 3396674, + "thread": 7 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 3596093, + "thread": 16 + } + }, + { + "amount": "152.788471208", + "slot": { + "period": 3777520, + "thread": 29 + } + }, + { + "amount": "152.788471217", + "slot": { + "period": 3868448, + "thread": 22 + } + } + ], + "AU12JuML2ZXajBNhQZDyxQECufNW6xHHPh1v9GhGHJza4TTpRNr3P": [ + { + "amount": "121.157104087", + "slot": { + "period": 134495, + "thread": 26 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 273007, + "thread": 21 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 358713, + "thread": 6 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 617436, + "thread": 23 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 794418, + "thread": 0 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 824113, + "thread": 28 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1012290, + "thread": 15 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1303472, + "thread": 17 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1336070, + "thread": 5 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1540980, + "thread": 22 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1746609, + "thread": 17 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 1873586, + "thread": 11 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2054026, + "thread": 30 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2265900, + "thread": 26 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2432644, + "thread": 25 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2538009, + "thread": 20 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2641443, + "thread": 29 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2801603, + "thread": 11 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 2967684, + "thread": 5 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 3171591, + "thread": 31 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 3425508, + "thread": 26 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 3564613, + "thread": 19 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 3644396, + "thread": 10 + } + }, + { + "amount": "121.157104087", + "slot": { + "period": 3946170, + "thread": 11 + } + } + ], + "AU12JukS2SdE9F3XYsP5gdUx3cX2nFxpScfGHSDfNKFKPJMzd3BbG": [ + { + "amount": "94.981924999", + "slot": { + "period": 51210, + "thread": 28 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 303407, + "thread": 16 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 389374, + "thread": 13 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 558291, + "thread": 24 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 816697, + "thread": 15 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 906640, + "thread": 7 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1123853, + "thread": 8 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1179524, + "thread": 7 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1328129, + "thread": 17 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1573274, + "thread": 21 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1703350, + "thread": 21 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 1922712, + "thread": 28 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2114661, + "thread": 30 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2251240, + "thread": 6 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2301419, + "thread": 13 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2619882, + "thread": 28 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2646328, + "thread": 2 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 2925859, + "thread": 10 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 3045599, + "thread": 4 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 3191425, + "thread": 4 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 3339300, + "thread": 21 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 3498624, + "thread": 26 + } + }, + { + "amount": "94.981924999", + "slot": { + "period": 3642338, + "thread": 25 + } + }, + { + "amount": "94.981924996", + "slot": { + "period": 3940988, + "thread": 0 + } + } + ], + "AU12JurFhemD6iJYbNE5Gy3DYdLx3ESnfUq9Cs88JmSN4SS8uSHbP": [ + { + "amount": "1166.666666667", + "slot": { + "period": 97493, + "thread": 29 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 185608, + "thread": 22 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 469533, + "thread": 0 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 641006, + "thread": 5 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 737564, + "thread": 18 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 902040, + "thread": 4 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1077788, + "thread": 16 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1243047, + "thread": 26 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1352371, + "thread": 0 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1622026, + "thread": 21 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1747429, + "thread": 16 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 1905328, + "thread": 27 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2111459, + "thread": 10 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2183453, + "thread": 15 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2370782, + "thread": 3 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2583104, + "thread": 3 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2700028, + "thread": 1 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 2935115, + "thread": 25 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3007204, + "thread": 7 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3211929, + "thread": 2 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3445483, + "thread": 27 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3497379, + "thread": 12 + } + }, + { + "amount": "1166.666666667", + "slot": { + "period": 3666449, + "thread": 17 + } + }, + { + "amount": "1166.666666659", + "slot": { + "period": 3845801, + "thread": 0 + } + } + ], + "AU12Jv3roVMRqs7fonMLkGCaEWUKqPN3R6UtMPT9ds5A2ogy17Tqs": [ + { + "amount": "212.055473943", + "slot": { + "period": 115404, + "thread": 1 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 309885, + "thread": 3 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 373537, + "thread": 7 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 651410, + "thread": 19 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 814253, + "thread": 21 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 891600, + "thread": 14 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1112861, + "thread": 16 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1268018, + "thread": 10 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1416567, + "thread": 8 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1541590, + "thread": 14 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1782229, + "thread": 13 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1884931, + "thread": 30 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 1990240, + "thread": 25 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2282620, + "thread": 21 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2298198, + "thread": 30 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2464172, + "thread": 23 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2763101, + "thread": 30 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2936096, + "thread": 3 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 2966985, + "thread": 7 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 3137794, + "thread": 23 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 3421903, + "thread": 19 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 3598800, + "thread": 12 + } + }, + { + "amount": "212.055473943", + "slot": { + "period": 3626811, + "thread": 6 + } + }, + { + "amount": "212.055473941", + "slot": { + "period": 3898260, + "thread": 18 + } + } + ], + "AU12Jv8GJvKZy3r7kdHSbGjrafVtYAMghZ7M47W9EZMrSwoDMFmt1": [ + { + "amount": "311.753560027", + "slot": { + "period": 48843, + "thread": 25 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 267399, + "thread": 6 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 382047, + "thread": 1 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 576455, + "thread": 23 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 672002, + "thread": 6 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 838117, + "thread": 5 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1106035, + "thread": 23 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1257293, + "thread": 27 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1344412, + "thread": 12 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1495921, + "thread": 15 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1705640, + "thread": 4 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 1860166, + "thread": 3 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2105633, + "thread": 5 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2260668, + "thread": 23 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2370532, + "thread": 16 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2599886, + "thread": 0 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2644151, + "thread": 7 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 2827178, + "thread": 28 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 3062149, + "thread": 8 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 3264850, + "thread": 10 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 3336521, + "thread": 24 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 3522033, + "thread": 0 + } + }, + { + "amount": "311.753560027", + "slot": { + "period": 3647012, + "thread": 16 + } + }, + { + "amount": "311.753560019", + "slot": { + "period": 3799888, + "thread": 26 + } + } + ], + "AU12JvWpf3s6dGJ8PwsCRtvqucJjMS9BriNsjcrmH9vULrC45z7qU": [ + { + "amount": "141.231572527", + "slot": { + "period": 136088, + "thread": 20 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 192047, + "thread": 22 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 401884, + "thread": 20 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 561269, + "thread": 21 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 686685, + "thread": 2 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 924074, + "thread": 4 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1087231, + "thread": 31 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1237829, + "thread": 28 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1348405, + "thread": 31 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1628597, + "thread": 10 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1755062, + "thread": 21 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 1963486, + "thread": 24 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2126794, + "thread": 16 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2279532, + "thread": 1 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2423218, + "thread": 10 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2510772, + "thread": 11 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2763300, + "thread": 14 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 2866484, + "thread": 27 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 3036553, + "thread": 14 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 3238773, + "thread": 14 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 3294676, + "thread": 25 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 3556971, + "thread": 19 + } + }, + { + "amount": "141.231572527", + "slot": { + "period": 3754310, + "thread": 2 + } + }, + { + "amount": "141.231572530", + "slot": { + "period": 3851288, + "thread": 8 + } + } + ], + "AU12JwojNcwxzKCijp4SSRv89eioGAXTgNnaLC1pTeWCdy2ofPS51": [ + { + "amount": "213.905603558", + "slot": { + "period": 137353, + "thread": 15 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 252953, + "thread": 6 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 373795, + "thread": 1 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 627948, + "thread": 16 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 715670, + "thread": 4 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 873611, + "thread": 5 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1015652, + "thread": 12 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1169576, + "thread": 25 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1445280, + "thread": 1 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1608960, + "thread": 8 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1728359, + "thread": 22 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1843735, + "thread": 10 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 1987722, + "thread": 2 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2162179, + "thread": 1 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2384476, + "thread": 25 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2550442, + "thread": 15 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2659981, + "thread": 8 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2860860, + "thread": 31 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 2969572, + "thread": 27 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 3124718, + "thread": 6 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 3421927, + "thread": 23 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 3531081, + "thread": 12 + } + }, + { + "amount": "213.905603558", + "slot": { + "period": 3732749, + "thread": 16 + } + }, + { + "amount": "213.905603564", + "slot": { + "period": 3807429, + "thread": 22 + } + } + ], + "AU12K1i2g7QqKPdv6n48KoXpgz8ax5mwQyV2qWEgk4ujYVxHpwoZ6": [ + { + "amount": "177.052204863", + "slot": { + "period": 97471, + "thread": 27 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 212282, + "thread": 7 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 398052, + "thread": 2 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 641026, + "thread": 17 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 678265, + "thread": 31 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 972789, + "thread": 31 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1018670, + "thread": 29 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1199597, + "thread": 19 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1328717, + "thread": 23 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1561702, + "thread": 2 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1779848, + "thread": 10 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 1841276, + "thread": 23 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2143367, + "thread": 21 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2231152, + "thread": 10 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2422039, + "thread": 28 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2471945, + "thread": 5 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2788327, + "thread": 24 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2926272, + "thread": 18 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 2957110, + "thread": 1 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 3203602, + "thread": 8 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 3437198, + "thread": 3 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 3574217, + "thread": 21 + } + }, + { + "amount": "177.052204863", + "slot": { + "period": 3653664, + "thread": 12 + } + }, + { + "amount": "177.052204868", + "slot": { + "period": 3941728, + "thread": 26 + } + } + ], + "AU12K1nsKWSQeMfK9MSq9dNGkmA1Y1FAHrmcUGGorG74HAm8P9iiT": [ + { + "amount": "211.048879336", + "slot": { + "period": 120629, + "thread": 4 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 207963, + "thread": 14 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 451659, + "thread": 0 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 495046, + "thread": 20 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 788962, + "thread": 9 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 968813, + "thread": 1 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1010293, + "thread": 1 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1170155, + "thread": 8 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1415723, + "thread": 15 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1607452, + "thread": 22 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1693150, + "thread": 12 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1894578, + "thread": 3 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 1994051, + "thread": 25 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 2286201, + "thread": 12 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 2376812, + "thread": 24 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 2540339, + "thread": 4 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 2645570, + "thread": 24 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 2856833, + "thread": 29 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 3003558, + "thread": 28 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 3225772, + "thread": 29 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 3296284, + "thread": 7 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 3591883, + "thread": 31 + } + }, + { + "amount": "211.048879336", + "slot": { + "period": 3747836, + "thread": 0 + } + }, + { + "amount": "211.048879325", + "slot": { + "period": 3825098, + "thread": 16 + } + } + ], + "AU12K2JdW4UXL9hrGh2ZSsyvoi4CQG5WmCN1tePqmQqK7ffgcvey1": [ + { + "amount": "351.439911113", + "slot": { + "period": 144522, + "thread": 6 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 322117, + "thread": 7 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 473265, + "thread": 18 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 580306, + "thread": 30 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 728393, + "thread": 18 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 912776, + "thread": 3 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1089713, + "thread": 28 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1208718, + "thread": 10 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1347379, + "thread": 10 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1625588, + "thread": 0 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1704162, + "thread": 2 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1817013, + "thread": 13 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 1979622, + "thread": 30 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 2207692, + "thread": 6 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 2462069, + "thread": 7 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 2504474, + "thread": 16 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 2635922, + "thread": 2 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 2846512, + "thread": 7 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 3047311, + "thread": 9 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 3284469, + "thread": 14 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 3417893, + "thread": 16 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 3469253, + "thread": 2 + } + }, + { + "amount": "351.439911113", + "slot": { + "period": 3648974, + "thread": 25 + } + }, + { + "amount": "351.439911106", + "slot": { + "period": 3893801, + "thread": 19 + } + } + ], + "AU12K4GSg1w2L4gnR9vn59q1FxBJqKPRSgPou4VEuZk4rYrzUvsvh": [ + { + "amount": "411.960830516", + "slot": { + "period": 65798, + "thread": 3 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 252573, + "thread": 18 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 443123, + "thread": 2 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 646772, + "thread": 17 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 754958, + "thread": 11 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 873425, + "thread": 14 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1057481, + "thread": 11 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1250053, + "thread": 31 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1373848, + "thread": 11 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1513889, + "thread": 9 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1756002, + "thread": 3 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 1892299, + "thread": 26 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2089349, + "thread": 24 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2183045, + "thread": 3 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2363499, + "thread": 11 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2541869, + "thread": 2 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2768682, + "thread": 29 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 2906312, + "thread": 24 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 3101345, + "thread": 23 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 3153699, + "thread": 8 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 3433997, + "thread": 27 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 3566894, + "thread": 7 + } + }, + { + "amount": "411.960830516", + "slot": { + "period": 3651580, + "thread": 21 + } + }, + { + "amount": "411.960830519", + "slot": { + "period": 3863637, + "thread": 4 + } + } + ], + "AU12K4W8vgtoeTYbYx9VrP4ZjRt9jDUcPtjqh17nAcwrpJ1axG5fh": [ + { + "amount": "527.970473942", + "slot": { + "period": 123206, + "thread": 20 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 254745, + "thread": 8 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 490705, + "thread": 4 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 604860, + "thread": 22 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 771098, + "thread": 26 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 933890, + "thread": 15 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1100005, + "thread": 29 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1301772, + "thread": 5 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1365826, + "thread": 24 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1502057, + "thread": 18 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1688878, + "thread": 13 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 1959759, + "thread": 2 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2085052, + "thread": 11 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2190981, + "thread": 16 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2366773, + "thread": 0 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2568663, + "thread": 19 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2670040, + "thread": 28 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2945222, + "thread": 30 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 2995713, + "thread": 30 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 3249784, + "thread": 20 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 3328567, + "thread": 31 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 3538908, + "thread": 11 + } + }, + { + "amount": "527.970473942", + "slot": { + "period": 3675855, + "thread": 25 + } + }, + { + "amount": "527.970473944", + "slot": { + "period": 3923827, + "thread": 26 + } + } + ], + "AU12K55Tik4bgh9tGQsowvwmE8L4zxif2kCGFvnBz91NUwo24dh8": [ + { + "amount": "76.332162259", + "slot": { + "period": 95608, + "thread": 29 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 217539, + "thread": 7 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 434280, + "thread": 1 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 586530, + "thread": 20 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 721255, + "thread": 20 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 883144, + "thread": 9 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1082305, + "thread": 7 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1194204, + "thread": 10 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1360192, + "thread": 13 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1598208, + "thread": 10 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1693160, + "thread": 13 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 1901013, + "thread": 8 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2111363, + "thread": 16 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2286124, + "thread": 14 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2444608, + "thread": 8 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2508674, + "thread": 3 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2787631, + "thread": 13 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 2828812, + "thread": 19 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 3053983, + "thread": 7 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 3261656, + "thread": 9 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 3426769, + "thread": 23 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 3491015, + "thread": 2 + } + }, + { + "amount": "76.332162259", + "slot": { + "period": 3730837, + "thread": 2 + } + }, + { + "amount": "76.332162268", + "slot": { + "period": 3839202, + "thread": 31 + } + } + ], + "AU12K5gHBrdzViVrB4tJAaA4it6Lf4oEGec4qk6MW3v3vGS96N4cJ": [ + { + "amount": "146.923787062", + "slot": { + "period": 54684, + "thread": 5 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 217904, + "thread": 2 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 481020, + "thread": 4 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 633173, + "thread": 26 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 690279, + "thread": 23 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 846163, + "thread": 26 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1035583, + "thread": 26 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1191708, + "thread": 5 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1432456, + "thread": 22 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1485000, + "thread": 23 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1688740, + "thread": 11 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1876921, + "thread": 24 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 1981441, + "thread": 20 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2164214, + "thread": 21 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2298685, + "thread": 21 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2560485, + "thread": 7 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2645973, + "thread": 23 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2889752, + "thread": 9 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 2969619, + "thread": 10 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 3270286, + "thread": 13 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 3366561, + "thread": 14 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 3461630, + "thread": 8 + } + }, + { + "amount": "146.923787062", + "slot": { + "period": 3729124, + "thread": 15 + } + }, + { + "amount": "146.923787066", + "slot": { + "period": 3808217, + "thread": 6 + } + } + ], + "AU12K5ubMYFUxdGHoDXeXTranggzHvNMMvZTAnjKK5WBXqqcFbh6m": [ + { + "amount": "229.320031361", + "slot": { + "period": 139923, + "thread": 13 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 186045, + "thread": 3 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 326863, + "thread": 16 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 545540, + "thread": 22 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 752594, + "thread": 22 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 919333, + "thread": 7 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1109577, + "thread": 1 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1291663, + "thread": 21 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1318476, + "thread": 13 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1522912, + "thread": 21 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1659542, + "thread": 7 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1949938, + "thread": 14 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 1990491, + "thread": 16 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 2225243, + "thread": 3 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 2438586, + "thread": 15 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 2471096, + "thread": 18 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 2662938, + "thread": 21 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 2827176, + "thread": 6 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 3019495, + "thread": 3 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 3194081, + "thread": 8 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 3429556, + "thread": 28 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 3519993, + "thread": 29 + } + }, + { + "amount": "229.320031361", + "slot": { + "period": 3718716, + "thread": 26 + } + }, + { + "amount": "229.320031365", + "slot": { + "period": 3825817, + "thread": 27 + } + } + ], + "AU12K63d7aNedExXiSyhJDNiBXwd5HL8aSL31PgVz5JtqbeT7kJeq": [ + { + "amount": "191.448932766", + "slot": { + "period": 59080, + "thread": 28 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 197701, + "thread": 20 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 329744, + "thread": 14 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 622606, + "thread": 4 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 815605, + "thread": 14 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 943727, + "thread": 5 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1047947, + "thread": 18 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1237677, + "thread": 1 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1432336, + "thread": 7 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1483832, + "thread": 15 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1729277, + "thread": 9 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 1963883, + "thread": 23 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2086147, + "thread": 17 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2290572, + "thread": 1 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2394874, + "thread": 18 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2494401, + "thread": 15 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2736860, + "thread": 4 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 2845701, + "thread": 30 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 3004035, + "thread": 7 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 3268315, + "thread": 29 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 3329111, + "thread": 26 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 3482396, + "thread": 1 + } + }, + { + "amount": "191.448932766", + "slot": { + "period": 3644679, + "thread": 8 + } + }, + { + "amount": "191.448932754", + "slot": { + "period": 3813440, + "thread": 26 + } + } + ], + "AU12K7CMVyZfhHcNqV6Jg2HWf2MtrK1rcF9KGKL18faYLCtLwMH7G": [ + { + "amount": "254.724321808", + "slot": { + "period": 61492, + "thread": 27 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 243232, + "thread": 25 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 370949, + "thread": 28 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 597098, + "thread": 24 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 761502, + "thread": 20 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 852256, + "thread": 0 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1037039, + "thread": 4 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1305621, + "thread": 29 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1320679, + "thread": 30 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1614143, + "thread": 21 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1764144, + "thread": 7 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 1967401, + "thread": 27 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2041017, + "thread": 16 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2196793, + "thread": 23 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2334154, + "thread": 31 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2571901, + "thread": 23 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2652086, + "thread": 6 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 2906846, + "thread": 2 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 3076544, + "thread": 9 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 3200543, + "thread": 11 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 3355440, + "thread": 0 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 3608028, + "thread": 7 + } + }, + { + "amount": "254.724321808", + "slot": { + "period": 3626874, + "thread": 2 + } + }, + { + "amount": "254.724321797", + "slot": { + "period": 3810730, + "thread": 12 + } + } + ], + "AU12K8cZoSHT9RdYAnjf2BrBd21vdfckkhqXowzkE958o7fb1Mxw2": [ + { + "amount": "170.023148115", + "slot": { + "period": 80967, + "thread": 18 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 222636, + "thread": 31 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 483749, + "thread": 30 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 649521, + "thread": 20 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 668731, + "thread": 18 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 928728, + "thread": 30 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1005468, + "thread": 14 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1187732, + "thread": 28 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1402701, + "thread": 9 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1618814, + "thread": 30 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1684310, + "thread": 29 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1828076, + "thread": 10 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 1996280, + "thread": 26 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2252968, + "thread": 12 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2435716, + "thread": 26 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2545930, + "thread": 0 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2776028, + "thread": 24 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2837223, + "thread": 25 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 2994422, + "thread": 6 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 3271219, + "thread": 1 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 3292047, + "thread": 17 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 3615883, + "thread": 24 + } + }, + { + "amount": "170.023148115", + "slot": { + "period": 3622657, + "thread": 28 + } + }, + { + "amount": "170.023148105", + "slot": { + "period": 3918240, + "thread": 7 + } + } + ], + "AU12K8m7HweM3vS5NQphTL2qSg7wrHX6weB5mLhTC7BsuRhGRVLMS": [ + { + "amount": "301.683718636", + "slot": { + "period": 165226, + "thread": 11 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 295409, + "thread": 16 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 395124, + "thread": 20 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 502052, + "thread": 4 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 716117, + "thread": 19 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 971779, + "thread": 17 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1140469, + "thread": 31 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1300227, + "thread": 14 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1327765, + "thread": 25 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1526193, + "thread": 24 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1807606, + "thread": 27 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 1918400, + "thread": 11 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2109274, + "thread": 20 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2154111, + "thread": 10 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2362014, + "thread": 24 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2564425, + "thread": 9 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2674704, + "thread": 9 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 2892862, + "thread": 20 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 3072632, + "thread": 31 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 3255736, + "thread": 31 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 3398571, + "thread": 5 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 3531056, + "thread": 3 + } + }, + { + "amount": "301.683718636", + "slot": { + "period": 3716845, + "thread": 16 + } + }, + { + "amount": "301.683718640", + "slot": { + "period": 3818829, + "thread": 13 + } + } + ], + "AU12KBnLkLs7uRkwymRFqnA2mXkZJCNzbYfC84L42Y6QxzgjEEyrf": [ + { + "amount": "272.691415783", + "slot": { + "period": 151246, + "thread": 1 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 283479, + "thread": 18 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 336391, + "thread": 8 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 507580, + "thread": 3 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 728342, + "thread": 21 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 942328, + "thread": 19 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1107742, + "thread": 27 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1288413, + "thread": 11 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1455947, + "thread": 24 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1492200, + "thread": 22 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1694135, + "thread": 10 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 1859805, + "thread": 11 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2082076, + "thread": 12 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2201720, + "thread": 16 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2324721, + "thread": 17 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2471737, + "thread": 24 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2689422, + "thread": 18 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 2795360, + "thread": 19 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 3102215, + "thread": 0 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 3288492, + "thread": 25 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 3411620, + "thread": 28 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 3521195, + "thread": 24 + } + }, + { + "amount": "272.691415783", + "slot": { + "period": 3623948, + "thread": 9 + } + }, + { + "amount": "272.691415778", + "slot": { + "period": 3935875, + "thread": 22 + } + } + ], + "AU12KBwThA4wYah2r9iYMjPqrb7KFXiM9qF2AcSh4oSTQB4v5ahWN": [ + { + "amount": "178.975174040", + "slot": { + "period": 160365, + "thread": 21 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 260621, + "thread": 1 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 417238, + "thread": 7 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 566960, + "thread": 24 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 708188, + "thread": 18 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 870203, + "thread": 0 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1126706, + "thread": 8 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1232889, + "thread": 9 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1369771, + "thread": 4 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1519020, + "thread": 13 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1754251, + "thread": 1 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1907728, + "thread": 4 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 1983929, + "thread": 8 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2291593, + "thread": 18 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2427823, + "thread": 18 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2493876, + "thread": 1 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2720784, + "thread": 26 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2886186, + "thread": 4 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 2954862, + "thread": 28 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 3165263, + "thread": 25 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 3309546, + "thread": 26 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 3558692, + "thread": 18 + } + }, + { + "amount": "178.975174040", + "slot": { + "period": 3700693, + "thread": 7 + } + }, + { + "amount": "178.975174039", + "slot": { + "period": 3947214, + "thread": 3 + } + } + ], + "AU12KEFDHxMYALbRasHHnWYy7fJ8Rtc1atgBJo5hbNe84RFDXFmEr": [ + { + "amount": "135.430837798", + "slot": { + "period": 108569, + "thread": 13 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 239680, + "thread": 7 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 352414, + "thread": 21 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 524340, + "thread": 23 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 755939, + "thread": 20 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 969844, + "thread": 7 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1044183, + "thread": 25 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1276650, + "thread": 28 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1397405, + "thread": 29 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1613040, + "thread": 29 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1796056, + "thread": 7 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 1870201, + "thread": 11 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2140705, + "thread": 3 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2245871, + "thread": 9 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2354803, + "thread": 5 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2483594, + "thread": 10 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2684375, + "thread": 24 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2792955, + "thread": 28 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 2985039, + "thread": 24 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 3175905, + "thread": 15 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 3424046, + "thread": 20 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 3552655, + "thread": 20 + } + }, + { + "amount": "135.430837798", + "slot": { + "period": 3657807, + "thread": 28 + } + }, + { + "amount": "135.430837803", + "slot": { + "period": 3863528, + "thread": 1 + } + } + ], + "AU12KEKAXoQqtVCSsdfDffrQAbvL2CcwtGEWB18Dz3uQqkqa5u7V8": [ + { + "amount": "292.962520491", + "slot": { + "period": 111592, + "thread": 3 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 239495, + "thread": 2 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 409686, + "thread": 0 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 561779, + "thread": 1 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 704236, + "thread": 29 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 892940, + "thread": 13 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1149791, + "thread": 15 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1244828, + "thread": 26 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1458696, + "thread": 13 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1481866, + "thread": 4 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1658126, + "thread": 25 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 1931757, + "thread": 12 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2095862, + "thread": 18 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2289978, + "thread": 15 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2428476, + "thread": 2 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2491489, + "thread": 14 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2734221, + "thread": 2 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2824909, + "thread": 30 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 2999043, + "thread": 16 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 3243107, + "thread": 8 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 3313777, + "thread": 3 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 3482337, + "thread": 31 + } + }, + { + "amount": "292.962520491", + "slot": { + "period": 3725498, + "thread": 13 + } + }, + { + "amount": "292.962520482", + "slot": { + "period": 3815196, + "thread": 6 + } + } + ], + "AU12KF9DEJwtWGYepfXSSe1QBFd4NzAZWD7gdLWrzLEjHk9BVnY4C": [ + { + "amount": "165.400924314", + "slot": { + "period": 116906, + "thread": 9 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 314420, + "thread": 1 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 482548, + "thread": 25 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 569041, + "thread": 6 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 677632, + "thread": 18 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 871674, + "thread": 25 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1044963, + "thread": 15 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1313500, + "thread": 25 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1386062, + "thread": 16 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1618645, + "thread": 21 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1650148, + "thread": 11 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 1966406, + "thread": 25 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2117397, + "thread": 14 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2173379, + "thread": 25 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2333011, + "thread": 15 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2466577, + "thread": 3 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2750944, + "thread": 19 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 2843346, + "thread": 23 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 3071984, + "thread": 16 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 3186922, + "thread": 16 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 3415664, + "thread": 8 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 3572949, + "thread": 1 + } + }, + { + "amount": "165.400924314", + "slot": { + "period": 3652071, + "thread": 12 + } + }, + { + "amount": "165.400924319", + "slot": { + "period": 3787266, + "thread": 23 + } + } + ], + "AU12KFnvhh2H6E7wngcdhdYSjUj16Wf7nuNM67nYjzQn1mgwZezdz": [ + { + "amount": "79.835770477", + "slot": { + "period": 165285, + "thread": 1 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 228592, + "thread": 29 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 328922, + "thread": 1 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 514919, + "thread": 25 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 734583, + "thread": 12 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 912480, + "thread": 3 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 999171, + "thread": 19 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 1212194, + "thread": 17 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 1349570, + "thread": 11 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 1584297, + "thread": 3 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 1682884, + "thread": 31 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 1816998, + "thread": 9 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2123494, + "thread": 15 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2157678, + "thread": 7 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2342081, + "thread": 18 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2496992, + "thread": 25 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2727116, + "thread": 17 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2860719, + "thread": 0 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 2999993, + "thread": 15 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 3252589, + "thread": 10 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 3299465, + "thread": 17 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 3588672, + "thread": 0 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 3650880, + "thread": 28 + } + }, + { + "amount": "79.835770477", + "slot": { + "period": 3906746, + "thread": 24 + } + } + ], + "AU12KGeFjFcd9cRSGQ4gaxyp7aVRuMJaZyvcN9jsqEucBQSAVZYJA": [ + { + "amount": "190.675003030", + "slot": { + "period": 51901, + "thread": 19 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 270787, + "thread": 19 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 475600, + "thread": 8 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 605436, + "thread": 1 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 763680, + "thread": 24 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 928246, + "thread": 13 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1059017, + "thread": 1 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1288233, + "thread": 24 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1479380, + "thread": 1 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1497233, + "thread": 1 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1667783, + "thread": 9 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 1953622, + "thread": 2 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2040007, + "thread": 15 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2171212, + "thread": 10 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2404592, + "thread": 15 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2509139, + "thread": 12 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2727874, + "thread": 4 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2791977, + "thread": 31 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 2961058, + "thread": 7 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 3240443, + "thread": 24 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 3382771, + "thread": 10 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 3558090, + "thread": 8 + } + }, + { + "amount": "190.675003030", + "slot": { + "period": 3750946, + "thread": 28 + } + }, + { + "amount": "190.675003036", + "slot": { + "period": 3843531, + "thread": 27 + } + } + ], + "AU12KGh3QF1LuzVkAvhp5HZ1yC5UFgYKBY3eXpmu3JgFNsf9HyxFC": [ + { + "amount": "2333.333333333", + "slot": { + "period": 67939, + "thread": 11 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 181970, + "thread": 7 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 325271, + "thread": 17 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 649853, + "thread": 28 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 743677, + "thread": 12 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 828113, + "thread": 2 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1076731, + "thread": 17 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1275449, + "thread": 21 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1462687, + "thread": 22 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1546556, + "thread": 28 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1720733, + "thread": 17 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 1812233, + "thread": 28 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2002229, + "thread": 29 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2241383, + "thread": 24 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2436905, + "thread": 27 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2548989, + "thread": 25 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2765849, + "thread": 23 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 2863245, + "thread": 25 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 3112079, + "thread": 25 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 3230409, + "thread": 19 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 3319200, + "thread": 27 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 3563814, + "thread": 20 + } + }, + { + "amount": "2333.333333333", + "slot": { + "period": 3680799, + "thread": 16 + } + }, + { + "amount": "2333.333333341", + "slot": { + "period": 3922129, + "thread": 24 + } + } + ], + "AU12KJUH8GyeiBJT72yfYTsGQpP8Ga8S4RAf7An3wgUdGmfD3AeA9": [ + { + "amount": "135.539186955", + "slot": { + "period": 14299, + "thread": 11 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 212218, + "thread": 13 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 339328, + "thread": 16 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 653216, + "thread": 3 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 805319, + "thread": 27 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 908351, + "thread": 12 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1084445, + "thread": 16 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1248100, + "thread": 7 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1413500, + "thread": 13 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1545178, + "thread": 22 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1678957, + "thread": 6 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 1971989, + "thread": 19 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2064295, + "thread": 2 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2256444, + "thread": 8 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2453772, + "thread": 18 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2493616, + "thread": 13 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2626237, + "thread": 5 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2827868, + "thread": 31 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 2967874, + "thread": 22 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 3178021, + "thread": 22 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 3361980, + "thread": 15 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 3573688, + "thread": 6 + } + }, + { + "amount": "135.539186955", + "slot": { + "period": 3636937, + "thread": 21 + } + }, + { + "amount": "135.539186949", + "slot": { + "period": 3835144, + "thread": 24 + } + } + ], + "AU12KKFb1nomccMkKtsbJxQSZHHHwAJm6AqNmTU17nD5NMgUQjF72": [ + { + "amount": "420.431046200", + "slot": { + "period": 42709, + "thread": 26 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 212439, + "thread": 6 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 329976, + "thread": 6 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 549103, + "thread": 28 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 671808, + "thread": 6 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 931807, + "thread": 9 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1021347, + "thread": 27 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1246750, + "thread": 28 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1382072, + "thread": 15 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1579367, + "thread": 4 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1737043, + "thread": 15 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1926159, + "thread": 20 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 1995165, + "thread": 2 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2224308, + "thread": 24 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2321682, + "thread": 31 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2609543, + "thread": 5 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2734572, + "thread": 16 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2843160, + "thread": 11 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 2994827, + "thread": 15 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 3287582, + "thread": 3 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 3373021, + "thread": 14 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 3597728, + "thread": 28 + } + }, + { + "amount": "420.431046200", + "slot": { + "period": 3684026, + "thread": 1 + } + }, + { + "amount": "420.431046191", + "slot": { + "period": 3841655, + "thread": 21 + } + } + ], + "AU12KKafaSkxiWZpxzrxGdDKbWs2xFSou541SbqNxN4vafrJoJ67j": [ + { + "amount": "83.752232774", + "slot": { + "period": 51336, + "thread": 17 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 267962, + "thread": 10 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 357040, + "thread": 13 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 565262, + "thread": 18 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 781781, + "thread": 26 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 954982, + "thread": 29 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1052973, + "thread": 31 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1177708, + "thread": 22 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1461549, + "thread": 17 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1559173, + "thread": 31 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1758448, + "thread": 19 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 1897377, + "thread": 9 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2064251, + "thread": 16 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2198427, + "thread": 20 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2322103, + "thread": 26 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2477110, + "thread": 25 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2768419, + "thread": 15 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2942462, + "thread": 29 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 2963379, + "thread": 12 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 3133287, + "thread": 30 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 3298844, + "thread": 26 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 3573059, + "thread": 29 + } + }, + { + "amount": "83.752232774", + "slot": { + "period": 3686652, + "thread": 8 + } + }, + { + "amount": "83.752232775", + "slot": { + "period": 3923701, + "thread": 26 + } + } + ], + "AU12KLgydsBCSC18qXJPgMeSgZKzdHexptN2U49N5kbwQ2szrLQpR": [ + { + "amount": "83.067873822", + "slot": { + "period": 41276, + "thread": 4 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 302936, + "thread": 19 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 349248, + "thread": 30 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 523435, + "thread": 8 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 728181, + "thread": 23 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 910387, + "thread": 31 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1003889, + "thread": 22 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1292435, + "thread": 0 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1345085, + "thread": 25 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1557782, + "thread": 28 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1770211, + "thread": 22 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1818464, + "thread": 13 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 1996698, + "thread": 4 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2240607, + "thread": 9 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2434315, + "thread": 5 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2466371, + "thread": 18 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2750756, + "thread": 27 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2909878, + "thread": 24 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 2995351, + "thread": 2 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 3255455, + "thread": 27 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 3426689, + "thread": 6 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 3607776, + "thread": 31 + } + }, + { + "amount": "83.067873822", + "slot": { + "period": 3641183, + "thread": 15 + } + }, + { + "amount": "83.067873833", + "slot": { + "period": 3824846, + "thread": 10 + } + } + ], + "AU12KMcbCFcVb4hyCFscjchC59Diva79yuyr9ewQoYhC5Y4iPcqBi": [ + { + "amount": "60.813721403", + "slot": { + "period": 145301, + "thread": 23 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 178974, + "thread": 7 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 324119, + "thread": 28 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 497304, + "thread": 0 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 771688, + "thread": 4 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 831045, + "thread": 24 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1105606, + "thread": 7 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1279052, + "thread": 26 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1404483, + "thread": 3 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1586953, + "thread": 31 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1695916, + "thread": 0 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 1942769, + "thread": 25 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2047762, + "thread": 29 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2253209, + "thread": 1 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2337290, + "thread": 11 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2518838, + "thread": 3 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2646633, + "thread": 29 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 2860511, + "thread": 31 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 3010918, + "thread": 4 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 3283123, + "thread": 2 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 3338798, + "thread": 31 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 3539405, + "thread": 25 + } + }, + { + "amount": "60.813721403", + "slot": { + "period": 3777299, + "thread": 17 + } + }, + { + "amount": "60.813721396", + "slot": { + "period": 3812874, + "thread": 5 + } + } + ], + "AU12KMkvGS8qL9G6hpxpCtb24hesAAVGEGL7snBkLH2RmkbPWNCCZ": [ + { + "amount": "201.273593380", + "slot": { + "period": 154408, + "thread": 6 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 294855, + "thread": 2 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 418363, + "thread": 1 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 638188, + "thread": 1 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 774775, + "thread": 17 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 957614, + "thread": 9 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1014891, + "thread": 5 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1156736, + "thread": 31 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1459932, + "thread": 20 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1622435, + "thread": 22 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1701275, + "thread": 3 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 1837535, + "thread": 23 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2007009, + "thread": 20 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2219881, + "thread": 4 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2335853, + "thread": 18 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2489753, + "thread": 9 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2628174, + "thread": 3 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2940019, + "thread": 24 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 2987847, + "thread": 7 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 3196547, + "thread": 26 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 3302286, + "thread": 17 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 3582474, + "thread": 0 + } + }, + { + "amount": "201.273593380", + "slot": { + "period": 3741922, + "thread": 20 + } + }, + { + "amount": "201.273593368", + "slot": { + "period": 3802557, + "thread": 6 + } + } + ], + "AU12KMmYmM9zLGCjj3zBShSwJyjCGhCeK5DLDiD6KHs55pni8KQ4P": [ + { + "amount": "200.939030925", + "slot": { + "period": 67058, + "thread": 1 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 192487, + "thread": 15 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 424576, + "thread": 30 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 534278, + "thread": 26 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 712882, + "thread": 2 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 943580, + "thread": 8 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1005683, + "thread": 22 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1168628, + "thread": 5 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1368338, + "thread": 2 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1619448, + "thread": 31 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1718878, + "thread": 6 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 1826349, + "thread": 31 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2016523, + "thread": 30 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2152562, + "thread": 5 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2338598, + "thread": 5 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2616895, + "thread": 15 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2742359, + "thread": 31 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 2849242, + "thread": 11 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 3054301, + "thread": 9 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 3199952, + "thread": 18 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 3375353, + "thread": 9 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 3512745, + "thread": 23 + } + }, + { + "amount": "200.939030925", + "slot": { + "period": 3628122, + "thread": 10 + } + }, + { + "amount": "200.939030924", + "slot": { + "period": 3834969, + "thread": 27 + } + } + ], + "AU12KPuMgjYhS1AmBZy6fyq3ozDaarm4LkLtjwKJeKS6EdQERS8B3": [ + { + "amount": "147.527183601", + "slot": { + "period": 152821, + "thread": 11 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 271086, + "thread": 17 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 469461, + "thread": 1 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 551463, + "thread": 6 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 658188, + "thread": 9 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 827177, + "thread": 19 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 993060, + "thread": 24 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 1151721, + "thread": 18 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 1474199, + "thread": 9 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 1606842, + "thread": 14 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 1694461, + "thread": 2 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 1873846, + "thread": 26 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2142303, + "thread": 20 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2243494, + "thread": 31 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2378413, + "thread": 1 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2576075, + "thread": 2 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2644223, + "thread": 24 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 2852508, + "thread": 10 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 3094890, + "thread": 22 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 3123769, + "thread": 6 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 3341942, + "thread": 26 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 3525059, + "thread": 0 + } + }, + { + "amount": "147.527183601", + "slot": { + "period": 3766502, + "thread": 3 + } + }, + { + "amount": "147.527183607", + "slot": { + "period": 3843020, + "thread": 12 + } + } + ], + "AU12KPzGMm5j9aaLF3KvdXyxeeeC84pHzVo7vgkNnH5osrBYDRivF": [ + { + "amount": "235.470965745", + "slot": { + "period": 33802, + "thread": 4 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 184410, + "thread": 1 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 407290, + "thread": 20 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 514692, + "thread": 19 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 695664, + "thread": 14 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 881010, + "thread": 28 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1014484, + "thread": 12 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1265176, + "thread": 7 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1323951, + "thread": 3 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1601873, + "thread": 18 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1669924, + "thread": 2 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 1965757, + "thread": 28 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2017118, + "thread": 21 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2152622, + "thread": 22 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2312382, + "thread": 7 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2476753, + "thread": 29 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2695606, + "thread": 7 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2918856, + "thread": 13 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 2966626, + "thread": 28 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 3265376, + "thread": 30 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 3411143, + "thread": 23 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 3480000, + "thread": 13 + } + }, + { + "amount": "235.470965745", + "slot": { + "period": 3750254, + "thread": 19 + } + }, + { + "amount": "235.470965736", + "slot": { + "period": 3846785, + "thread": 30 + } + } + ], + "AU12KQ5jrtJ4K3yrqALovopJB5229qdwpB9Q3HL522cxadtBrLXmo": [ + { + "amount": "97.710955689", + "slot": { + "period": 26120, + "thread": 0 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 184190, + "thread": 14 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 361341, + "thread": 7 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 527529, + "thread": 13 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 720970, + "thread": 3 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 955165, + "thread": 2 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1120541, + "thread": 4 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1227470, + "thread": 25 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1393422, + "thread": 26 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1532288, + "thread": 7 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1762614, + "thread": 24 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 1940043, + "thread": 7 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2080251, + "thread": 18 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2195893, + "thread": 13 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2360939, + "thread": 23 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2497062, + "thread": 0 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2686897, + "thread": 9 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 2798232, + "thread": 19 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 3108223, + "thread": 20 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 3286943, + "thread": 31 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 3431910, + "thread": 27 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 3482368, + "thread": 20 + } + }, + { + "amount": "97.710955689", + "slot": { + "period": 3654084, + "thread": 0 + } + }, + { + "amount": "97.710955690", + "slot": { + "period": 3875631, + "thread": 21 + } + } + ], + "AU12KQN5oyQXX6uLbee8xPV86zqLGLnkUbMAgKjVzpAoTJ7nswX8Z": [ + { + "amount": "254.819468212", + "slot": { + "period": 30928, + "thread": 18 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 178503, + "thread": 6 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 384255, + "thread": 14 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 587293, + "thread": 17 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 683311, + "thread": 25 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 965447, + "thread": 24 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1080616, + "thread": 24 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1161410, + "thread": 16 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1386515, + "thread": 7 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1640249, + "thread": 12 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1709454, + "thread": 15 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 1846827, + "thread": 17 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2093504, + "thread": 18 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2170661, + "thread": 19 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2398711, + "thread": 5 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2590641, + "thread": 10 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2715029, + "thread": 20 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2793026, + "thread": 21 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 2957110, + "thread": 7 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 3200028, + "thread": 25 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 3334559, + "thread": 4 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 3582312, + "thread": 2 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 3619789, + "thread": 12 + } + }, + { + "amount": "254.819468212", + "slot": { + "period": 3934886, + "thread": 3 + } + } + ], + "AU12KQcTSWuVbGQnimLQMrCSf8McnFwSmjGmBQK2vjLFN4QQ6AS4Y": [ + { + "amount": "264.446381584", + "slot": { + "period": 113263, + "thread": 21 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 231397, + "thread": 24 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 455859, + "thread": 18 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 650138, + "thread": 24 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 680465, + "thread": 5 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 918491, + "thread": 4 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1090835, + "thread": 4 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1216274, + "thread": 2 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1384631, + "thread": 3 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1597075, + "thread": 12 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1667977, + "thread": 17 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 1934600, + "thread": 4 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2088898, + "thread": 8 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2205569, + "thread": 23 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2381882, + "thread": 19 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2506351, + "thread": 5 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2690692, + "thread": 6 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2910330, + "thread": 5 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 2967971, + "thread": 21 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 3185814, + "thread": 18 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 3297985, + "thread": 15 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 3494509, + "thread": 26 + } + }, + { + "amount": "264.446381584", + "slot": { + "period": 3696236, + "thread": 22 + } + }, + { + "amount": "264.446381593", + "slot": { + "period": 3884771, + "thread": 4 + } + } + ], + "AU12KRujUXx2jzWdNvFtp7uQeFpyed7brsmt63cJEguJu6tMrq91B": [ + { + "amount": "99.643663535", + "slot": { + "period": 41972, + "thread": 26 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 308263, + "thread": 9 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 490077, + "thread": 30 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 591099, + "thread": 14 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 663622, + "thread": 28 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 869708, + "thread": 23 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1144598, + "thread": 26 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1189661, + "thread": 15 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1332077, + "thread": 19 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1594384, + "thread": 17 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1785285, + "thread": 3 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1812528, + "thread": 23 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 1988118, + "thread": 18 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 2274108, + "thread": 30 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 2311217, + "thread": 13 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 2563599, + "thread": 2 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 2764107, + "thread": 27 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 2861594, + "thread": 14 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 3020888, + "thread": 30 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 3127929, + "thread": 24 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 3332863, + "thread": 13 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 3610168, + "thread": 12 + } + }, + { + "amount": "99.643663535", + "slot": { + "period": 3640196, + "thread": 26 + } + }, + { + "amount": "99.643663529", + "slot": { + "period": 3784957, + "thread": 21 + } + } + ], + "AU12KS72qdRmzFqvfqkZwjwM2pmCimZi3A7gTyo5vCgWcEX6SCKzR": [ + { + "amount": "482.328022641", + "slot": { + "period": 117661, + "thread": 28 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 264253, + "thread": 23 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 331650, + "thread": 21 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 496889, + "thread": 1 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 666332, + "thread": 13 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 944723, + "thread": 20 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1055579, + "thread": 7 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1254506, + "thread": 31 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1396001, + "thread": 24 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1514243, + "thread": 9 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1654227, + "thread": 31 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 1973010, + "thread": 0 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2008839, + "thread": 31 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2213423, + "thread": 14 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2347378, + "thread": 6 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2588919, + "thread": 9 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2786325, + "thread": 0 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 2934371, + "thread": 8 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 3065197, + "thread": 9 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 3260561, + "thread": 10 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 3442764, + "thread": 27 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 3491475, + "thread": 0 + } + }, + { + "amount": "482.328022641", + "slot": { + "period": 3709274, + "thread": 7 + } + }, + { + "amount": "482.328022647", + "slot": { + "period": 3780587, + "thread": 29 + } + } + ], + "AU12KSNdVN7kp3fBcFxX5vSbejBjUJDvTdcToh2Dxq9516zzeUEYc": [ + { + "amount": "333.927931868", + "slot": { + "period": 62122, + "thread": 26 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 256222, + "thread": 16 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 344882, + "thread": 22 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 575725, + "thread": 9 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 815891, + "thread": 10 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 958040, + "thread": 16 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1104389, + "thread": 17 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1186331, + "thread": 5 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1409030, + "thread": 31 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1491831, + "thread": 20 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1749234, + "thread": 20 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1913845, + "thread": 23 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 1993278, + "thread": 30 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 2153272, + "thread": 6 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 2461016, + "thread": 6 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 2503847, + "thread": 22 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 2782712, + "thread": 8 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 2953376, + "thread": 24 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 3004585, + "thread": 14 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 3233239, + "thread": 31 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 3385197, + "thread": 23 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 3567015, + "thread": 12 + } + }, + { + "amount": "333.927931868", + "slot": { + "period": 3641120, + "thread": 5 + } + }, + { + "amount": "333.927931856", + "slot": { + "period": 3857867, + "thread": 4 + } + } + ], + "AU12KShdVbyPqJGhQsCVJUtQGggwnvGEeKWCF4L2uPi2koPT9WnkH": [ + { + "amount": "252.594526855", + "slot": { + "period": 68314, + "thread": 20 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 264247, + "thread": 24 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 373882, + "thread": 13 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 552685, + "thread": 2 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 735076, + "thread": 27 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 912974, + "thread": 20 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1095578, + "thread": 23 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1165104, + "thread": 6 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1366779, + "thread": 7 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1559546, + "thread": 8 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1680994, + "thread": 10 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 1875746, + "thread": 31 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2051818, + "thread": 14 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2154916, + "thread": 13 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2379574, + "thread": 27 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2494877, + "thread": 4 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2782259, + "thread": 8 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 2896728, + "thread": 5 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 3043269, + "thread": 0 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 3199537, + "thread": 23 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 3312798, + "thread": 17 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 3547518, + "thread": 31 + } + }, + { + "amount": "252.594526855", + "slot": { + "period": 3714172, + "thread": 27 + } + }, + { + "amount": "252.594526848", + "slot": { + "period": 3864371, + "thread": 17 + } + } + ], + "AU12KSnyTxodnU4SfrkFdvmUqfxCNxH9GbQzo2bB8J9ZCvkL3kDwJ": [ + { + "amount": "246.602092694", + "slot": { + "period": 130748, + "thread": 14 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 316887, + "thread": 9 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 426659, + "thread": 8 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 575373, + "thread": 9 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 794785, + "thread": 15 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 867110, + "thread": 7 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1030454, + "thread": 28 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1219469, + "thread": 6 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1440486, + "thread": 17 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1488343, + "thread": 29 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1806829, + "thread": 26 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 1810207, + "thread": 16 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2039638, + "thread": 12 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2259522, + "thread": 28 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2376918, + "thread": 21 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2462884, + "thread": 26 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2719068, + "thread": 12 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 2816661, + "thread": 10 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 3004357, + "thread": 8 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 3159087, + "thread": 0 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 3313557, + "thread": 16 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 3540191, + "thread": 20 + } + }, + { + "amount": "246.602092694", + "slot": { + "period": 3642162, + "thread": 23 + } + }, + { + "amount": "246.602092695", + "slot": { + "period": 3887953, + "thread": 4 + } + } + ], + "AU12KTJrGY9NNNNR2ttuBSKqQugXeR3eDZDzSxzVxaobimKadj9K1": [ + { + "amount": "59.519437918", + "slot": { + "period": 58466, + "thread": 24 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 204732, + "thread": 23 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 467951, + "thread": 15 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 579324, + "thread": 18 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 767594, + "thread": 15 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 885504, + "thread": 23 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1003102, + "thread": 17 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1281459, + "thread": 21 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1445811, + "thread": 27 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1572306, + "thread": 8 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1713585, + "thread": 2 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 1946753, + "thread": 30 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2103616, + "thread": 7 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2250730, + "thread": 1 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2348731, + "thread": 10 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2462751, + "thread": 2 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2666074, + "thread": 29 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2919034, + "thread": 1 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 2978911, + "thread": 24 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 3249146, + "thread": 24 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 3345521, + "thread": 26 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 3600711, + "thread": 26 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 3776108, + "thread": 14 + } + }, + { + "amount": "59.519437918", + "slot": { + "period": 3939016, + "thread": 4 + } + } + ], + "AU12KTnXysSpdrF18RHjPp7x1WTPLncfyLwZMhdEuNaQg7SHbxx1P": [ + { + "amount": "153.349828206", + "slot": { + "period": 52583, + "thread": 25 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 295871, + "thread": 2 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 345836, + "thread": 23 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 536759, + "thread": 10 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 686086, + "thread": 13 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 825760, + "thread": 3 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1081403, + "thread": 21 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1173271, + "thread": 25 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1423869, + "thread": 11 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1585972, + "thread": 26 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1743113, + "thread": 8 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 1821588, + "thread": 22 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2131465, + "thread": 3 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2182915, + "thread": 14 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2335154, + "thread": 14 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2611946, + "thread": 15 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2627357, + "thread": 0 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 2870955, + "thread": 17 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 3094439, + "thread": 11 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 3285808, + "thread": 27 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 3443306, + "thread": 9 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 3499417, + "thread": 13 + } + }, + { + "amount": "153.349828206", + "slot": { + "period": 3753551, + "thread": 28 + } + }, + { + "amount": "153.349828209", + "slot": { + "period": 3868433, + "thread": 2 + } + } + ], + "AU12KUcVTT7v9wj9y1Ynev6MzYXH7yDn74fJ96dLZz6TejxQY7KUp": [ + { + "amount": "320.110200838", + "slot": { + "period": 153243, + "thread": 8 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 260640, + "thread": 26 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 437763, + "thread": 0 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 628626, + "thread": 13 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 685845, + "thread": 8 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 862129, + "thread": 5 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1004864, + "thread": 5 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1315429, + "thread": 0 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1468511, + "thread": 3 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1503516, + "thread": 4 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1649173, + "thread": 30 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 1876312, + "thread": 11 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2042777, + "thread": 5 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2243015, + "thread": 26 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2301878, + "thread": 17 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2531312, + "thread": 13 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2707041, + "thread": 15 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2842227, + "thread": 20 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 2999621, + "thread": 14 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 3270144, + "thread": 15 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 3366626, + "thread": 16 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 3524031, + "thread": 26 + } + }, + { + "amount": "320.110200838", + "slot": { + "period": 3755774, + "thread": 13 + } + }, + { + "amount": "320.110200850", + "slot": { + "period": 3810901, + "thread": 24 + } + } + ], + "AU12KWmm1WGKPPApn3huXo5mfn4bGkjb4oPtSEEEhoWGqSsmNxvFq": [ + { + "amount": "266.161623487", + "slot": { + "period": 130323, + "thread": 13 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 198197, + "thread": 14 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 480462, + "thread": 9 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 520050, + "thread": 19 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 798466, + "thread": 7 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 924440, + "thread": 20 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1010190, + "thread": 28 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1195990, + "thread": 2 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1459177, + "thread": 18 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1635579, + "thread": 10 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1673588, + "thread": 11 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1822818, + "thread": 23 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 1982206, + "thread": 21 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 2212789, + "thread": 23 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 2359616, + "thread": 18 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 2571359, + "thread": 15 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 2676472, + "thread": 10 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 2950447, + "thread": 4 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 3017374, + "thread": 19 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 3273888, + "thread": 24 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 3394979, + "thread": 2 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 3474199, + "thread": 8 + } + }, + { + "amount": "266.161623487", + "slot": { + "period": 3638588, + "thread": 23 + } + }, + { + "amount": "266.161623480", + "slot": { + "period": 3798822, + "thread": 1 + } + } + ], + "AU12KXHa4pCNmb2U6t1zMWcigEQBuNJzYZrwiKgycHYje6h8Dv7Kq": [ + { + "amount": "95.885955672", + "slot": { + "period": 157139, + "thread": 2 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 243587, + "thread": 16 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 396797, + "thread": 30 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 534249, + "thread": 0 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 790920, + "thread": 9 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 834451, + "thread": 21 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1005412, + "thread": 2 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1234806, + "thread": 29 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1458198, + "thread": 25 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1616559, + "thread": 31 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1733767, + "thread": 17 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 1889246, + "thread": 10 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2127802, + "thread": 18 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2148101, + "thread": 3 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2458504, + "thread": 27 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2584579, + "thread": 8 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2628429, + "thread": 15 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 2910734, + "thread": 6 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 3046075, + "thread": 0 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 3129355, + "thread": 22 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 3444040, + "thread": 19 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 3589085, + "thread": 3 + } + }, + { + "amount": "95.885955672", + "slot": { + "period": 3721204, + "thread": 28 + } + }, + { + "amount": "95.885955660", + "slot": { + "period": 3917992, + "thread": 5 + } + } + ], + "AU12KXJ46xBm8m25t9BeWGCJgF75pEMGGsrb5tykF2khrvZJTkAKS": [ + { + "amount": "157.433213095", + "slot": { + "period": 51502, + "thread": 13 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 254299, + "thread": 25 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 374826, + "thread": 27 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 574042, + "thread": 28 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 670581, + "thread": 16 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 873725, + "thread": 29 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1113764, + "thread": 3 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1254645, + "thread": 31 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1395070, + "thread": 5 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1508305, + "thread": 11 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1702195, + "thread": 3 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 1874377, + "thread": 20 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2118576, + "thread": 14 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2158840, + "thread": 5 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2346177, + "thread": 12 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2532987, + "thread": 4 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2761605, + "thread": 31 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2799655, + "thread": 25 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 2975423, + "thread": 25 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 3165050, + "thread": 25 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 3423519, + "thread": 11 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 3577212, + "thread": 5 + } + }, + { + "amount": "157.433213095", + "slot": { + "period": 3775101, + "thread": 4 + } + }, + { + "amount": "157.433213100", + "slot": { + "period": 3818928, + "thread": 31 + } + } + ], + "AU12KYb8dgnnibpMHqSBzKK3XaJyNHgnLGymSLqDj2i7DusVJSYWc": [ + { + "amount": "272.729718560", + "slot": { + "period": 102870, + "thread": 22 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 281361, + "thread": 20 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 454688, + "thread": 7 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 512717, + "thread": 31 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 740351, + "thread": 14 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 978897, + "thread": 23 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1136281, + "thread": 4 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1183085, + "thread": 21 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1417639, + "thread": 5 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1526658, + "thread": 3 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1765403, + "thread": 22 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 1917208, + "thread": 6 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2062904, + "thread": 2 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2158350, + "thread": 19 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2368769, + "thread": 22 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2472410, + "thread": 22 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2642194, + "thread": 17 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2869476, + "thread": 29 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 2981043, + "thread": 0 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 3200716, + "thread": 1 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 3322897, + "thread": 21 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 3536960, + "thread": 9 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 3751574, + "thread": 4 + } + }, + { + "amount": "272.729718560", + "slot": { + "period": 3933686, + "thread": 31 + } + } + ], + "AU12KaKN6irAowYAvwwesgVZqsQSuekUMzJrCeZs1bNB7Lg5rGzT": [ + { + "amount": "160.581950440", + "slot": { + "period": 130157, + "thread": 14 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 237874, + "thread": 4 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 371821, + "thread": 0 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 594618, + "thread": 2 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 672339, + "thread": 10 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 858720, + "thread": 20 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1026179, + "thread": 9 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1292655, + "thread": 7 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1390902, + "thread": 15 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1559416, + "thread": 12 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1715991, + "thread": 8 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 1824192, + "thread": 15 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2096087, + "thread": 25 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2247134, + "thread": 7 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2429944, + "thread": 6 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2475297, + "thread": 20 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2700324, + "thread": 23 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 2858547, + "thread": 1 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 3068625, + "thread": 0 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 3205796, + "thread": 24 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 3368721, + "thread": 27 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 3491640, + "thread": 10 + } + }, + { + "amount": "160.581950440", + "slot": { + "period": 3715862, + "thread": 4 + } + }, + { + "amount": "160.581950452", + "slot": { + "period": 3900458, + "thread": 6 + } + } + ], + "AU12KcDvnrhi2AxABugH24iP3CQ62GQ5HqnR59uT6dFmseQ2R4Kx8": [ + { + "amount": "70.499425843", + "slot": { + "period": 34880, + "thread": 0 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 282068, + "thread": 30 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 376854, + "thread": 2 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 550722, + "thread": 7 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 756149, + "thread": 0 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 850250, + "thread": 28 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1053193, + "thread": 27 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1258895, + "thread": 22 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1358140, + "thread": 9 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1633704, + "thread": 10 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1745686, + "thread": 28 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 1851980, + "thread": 19 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2086336, + "thread": 19 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2250468, + "thread": 1 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2317658, + "thread": 31 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2499940, + "thread": 12 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2749117, + "thread": 11 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 2945619, + "thread": 15 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 3086634, + "thread": 0 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 3132532, + "thread": 21 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 3388538, + "thread": 29 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 3500052, + "thread": 12 + } + }, + { + "amount": "70.499425843", + "slot": { + "period": 3622897, + "thread": 15 + } + }, + { + "amount": "70.499425837", + "slot": { + "period": 3915703, + "thread": 17 + } + } + ], + "AU12KcNAPtJr4piWzEDAJWGTVzn3kHp349QKDWnT3iqgTWCreEyd6": [ + { + "amount": "712.950000000", + "slot": { + "period": 94330, + "thread": 6 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 280120, + "thread": 6 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 422155, + "thread": 23 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 518447, + "thread": 20 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 735747, + "thread": 30 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 940930, + "thread": 13 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1066634, + "thread": 2 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1251285, + "thread": 16 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1450624, + "thread": 27 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1483869, + "thread": 14 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1773109, + "thread": 3 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 1915020, + "thread": 18 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2116029, + "thread": 23 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2201671, + "thread": 26 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2369464, + "thread": 28 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2513417, + "thread": 0 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2733820, + "thread": 22 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2803118, + "thread": 21 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 2962072, + "thread": 23 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 3133728, + "thread": 31 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 3327052, + "thread": 27 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 3515238, + "thread": 1 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 3705704, + "thread": 7 + } + }, + { + "amount": "712.950000000", + "slot": { + "period": 3909940, + "thread": 25 + } + } + ], + "AU12KcV1g1B7hQEr1d4EG6wRgScMaDrrW7X22Lo4tSsRfvSJpJrJC": [ + { + "amount": "206.801180997", + "slot": { + "period": 69678, + "thread": 16 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 275084, + "thread": 29 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 329529, + "thread": 2 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 650932, + "thread": 12 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 694779, + "thread": 22 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 865497, + "thread": 31 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1015579, + "thread": 5 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1158645, + "thread": 7 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1350107, + "thread": 20 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1523758, + "thread": 24 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1792972, + "thread": 2 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 1901865, + "thread": 10 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2000021, + "thread": 31 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2147489, + "thread": 2 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2365058, + "thread": 12 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2481216, + "thread": 18 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2760914, + "thread": 18 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 2832195, + "thread": 30 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 3114544, + "thread": 18 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 3262372, + "thread": 21 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 3442826, + "thread": 9 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 3466571, + "thread": 27 + } + }, + { + "amount": "206.801180997", + "slot": { + "period": 3623622, + "thread": 26 + } + }, + { + "amount": "206.801181004", + "slot": { + "period": 3828370, + "thread": 15 + } + } + ], + "AU12Kd4PFfj4uNTjgCe8PviTqdDDEE6ikw3xHCDx6UT1MCeVwcdTk": [ + { + "amount": "134.514650920", + "slot": { + "period": 148127, + "thread": 26 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 288602, + "thread": 8 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 420676, + "thread": 4 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 525104, + "thread": 12 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 810620, + "thread": 4 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 975769, + "thread": 15 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1068840, + "thread": 2 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1227489, + "thread": 30 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1317643, + "thread": 11 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1605567, + "thread": 23 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1706295, + "thread": 17 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 1934771, + "thread": 30 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2047686, + "thread": 23 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2273907, + "thread": 1 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2310385, + "thread": 19 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2507059, + "thread": 4 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2789479, + "thread": 22 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2938198, + "thread": 5 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 2973368, + "thread": 14 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 3164265, + "thread": 7 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 3359331, + "thread": 13 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 3496442, + "thread": 17 + } + }, + { + "amount": "134.514650920", + "slot": { + "period": 3658897, + "thread": 25 + } + }, + { + "amount": "134.514650914", + "slot": { + "period": 3785335, + "thread": 18 + } + } + ], + "AU12Ketn62DTBCqaE6CfuYEZPYpSmU9SLgwHPiz13WVpWxzfLodGy": [ + { + "amount": "161.582671045", + "slot": { + "period": 45021, + "thread": 6 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 225674, + "thread": 14 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 442920, + "thread": 30 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 586001, + "thread": 23 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 778146, + "thread": 14 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 884092, + "thread": 5 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1095797, + "thread": 13 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1262546, + "thread": 18 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1391551, + "thread": 27 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1643259, + "thread": 9 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1703617, + "thread": 2 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 1868733, + "thread": 2 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2130995, + "thread": 11 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2168994, + "thread": 5 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2452350, + "thread": 12 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2537005, + "thread": 14 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2678249, + "thread": 12 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2937411, + "thread": 8 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 2981789, + "thread": 13 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 3258555, + "thread": 22 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 3374495, + "thread": 11 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 3598020, + "thread": 17 + } + }, + { + "amount": "161.582671045", + "slot": { + "period": 3619088, + "thread": 27 + } + }, + { + "amount": "161.582671035", + "slot": { + "period": 3859136, + "thread": 3 + } + } + ], + "AU12Kf5xhM8byLgRJwKVMJrpAhwXvXxwpz4AacJ945ZZAU8qT5gmk": [ + { + "amount": "57.607451310", + "slot": { + "period": 26313, + "thread": 5 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 242351, + "thread": 8 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 378310, + "thread": 25 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 558359, + "thread": 13 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 689442, + "thread": 15 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 837306, + "thread": 1 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1048184, + "thread": 23 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1203480, + "thread": 22 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1355157, + "thread": 14 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1522717, + "thread": 10 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1787193, + "thread": 12 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 1863284, + "thread": 4 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2140570, + "thread": 6 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2168309, + "thread": 7 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2363987, + "thread": 11 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2469693, + "thread": 0 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2707129, + "thread": 8 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 2922549, + "thread": 26 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 3037471, + "thread": 4 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 3138592, + "thread": 3 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 3450249, + "thread": 11 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 3490140, + "thread": 19 + } + }, + { + "amount": "57.607451310", + "slot": { + "period": 3647022, + "thread": 22 + } + }, + { + "amount": "57.607451317", + "slot": { + "period": 3824811, + "thread": 18 + } + } + ], + "AU12Kf7FCATaeGqHNwDVEUzDp82YFsto7wfzvecKHTFWzLnESZud5": [ + { + "amount": "146.438763041", + "slot": { + "period": 13156, + "thread": 8 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 294114, + "thread": 5 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 341130, + "thread": 2 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 513926, + "thread": 28 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 683779, + "thread": 3 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 829281, + "thread": 16 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1099004, + "thread": 25 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1151933, + "thread": 28 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1455463, + "thread": 13 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1535548, + "thread": 27 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1743771, + "thread": 10 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1841628, + "thread": 9 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 1992956, + "thread": 18 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 2271059, + "thread": 8 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 2359353, + "thread": 31 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 2540056, + "thread": 9 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 2774709, + "thread": 7 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 2894984, + "thread": 1 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 3068601, + "thread": 31 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 3265958, + "thread": 0 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 3397570, + "thread": 1 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 3482879, + "thread": 16 + } + }, + { + "amount": "146.438763041", + "slot": { + "period": 3731142, + "thread": 9 + } + }, + { + "amount": "146.438763051", + "slot": { + "period": 3886103, + "thread": 9 + } + } + ], + "AU12KfnDxgdhPMqGJrYBrNGPAtfFGsfCjdaEoCShB9bH4dJbhgXbe": [ + { + "amount": "68.182718027", + "slot": { + "period": 76573, + "thread": 11 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 200459, + "thread": 14 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 339281, + "thread": 22 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 513418, + "thread": 8 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 787992, + "thread": 9 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 936907, + "thread": 7 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1116203, + "thread": 22 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1174359, + "thread": 8 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1349975, + "thread": 6 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1582349, + "thread": 16 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1743396, + "thread": 0 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 1835704, + "thread": 17 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2024328, + "thread": 17 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2242698, + "thread": 11 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2416892, + "thread": 17 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2503634, + "thread": 3 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2678656, + "thread": 6 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 2812342, + "thread": 8 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 3040413, + "thread": 13 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 3180972, + "thread": 4 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 3414925, + "thread": 16 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 3496801, + "thread": 22 + } + }, + { + "amount": "68.182718027", + "slot": { + "period": 3713592, + "thread": 28 + } + }, + { + "amount": "68.182718021", + "slot": { + "period": 3831149, + "thread": 13 + } + } + ], + "AU12KfprfWsXUYseeVq6xWVmBcExUNi24KDWe2hkFKWcKw3iEgHSU": [ + { + "amount": "247.076179843", + "slot": { + "period": 132965, + "thread": 17 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 313663, + "thread": 30 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 449198, + "thread": 1 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 574458, + "thread": 26 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 761976, + "thread": 12 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 866545, + "thread": 21 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 984819, + "thread": 10 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 1281733, + "thread": 10 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 1381664, + "thread": 15 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 1643178, + "thread": 18 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 1776240, + "thread": 5 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 1878572, + "thread": 13 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2121812, + "thread": 6 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2166767, + "thread": 12 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2366178, + "thread": 10 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2611991, + "thread": 13 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2640003, + "thread": 7 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2904428, + "thread": 29 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 2969202, + "thread": 26 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 3259134, + "thread": 17 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 3412477, + "thread": 19 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 3533502, + "thread": 6 + } + }, + { + "amount": "247.076179843", + "slot": { + "period": 3628166, + "thread": 22 + } + }, + { + "amount": "247.076179850", + "slot": { + "period": 3841630, + "thread": 2 + } + } + ], + "AU12Kg8H8JPGv6La8Dp1D67t4GywmEv8RckSH1evxHG8W9zwrTR76": [ + { + "amount": "51.599069405", + "slot": { + "period": 104725, + "thread": 0 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 264783, + "thread": 24 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 383569, + "thread": 18 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 560608, + "thread": 22 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 725119, + "thread": 1 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 928317, + "thread": 22 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1018031, + "thread": 26 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1275234, + "thread": 6 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1334065, + "thread": 24 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1486292, + "thread": 31 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1776376, + "thread": 22 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1910374, + "thread": 9 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 1998755, + "thread": 20 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2293521, + "thread": 22 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2452728, + "thread": 6 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2501416, + "thread": 31 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2636885, + "thread": 12 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2820024, + "thread": 17 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 2954901, + "thread": 2 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 3257639, + "thread": 8 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 3427205, + "thread": 12 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 3495302, + "thread": 30 + } + }, + { + "amount": "51.599069405", + "slot": { + "period": 3776770, + "thread": 3 + } + }, + { + "amount": "51.599069415", + "slot": { + "period": 3787131, + "thread": 8 + } + } + ], + "AU12KgZcRiEArjnge5HFbKmh6ueWCLb4NvZUWNwe7YzzN6UqncPZZ": [ + { + "amount": "375.467288937", + "slot": { + "period": 40224, + "thread": 14 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 235696, + "thread": 27 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 325458, + "thread": 16 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 499484, + "thread": 23 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 664092, + "thread": 25 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 874918, + "thread": 10 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1122315, + "thread": 28 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1187622, + "thread": 0 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1402835, + "thread": 7 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1573864, + "thread": 23 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1687678, + "thread": 24 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 1897250, + "thread": 20 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2102487, + "thread": 16 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2201610, + "thread": 22 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2405547, + "thread": 7 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2604532, + "thread": 0 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2760005, + "thread": 12 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 2840036, + "thread": 31 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 3040294, + "thread": 4 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 3229572, + "thread": 29 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 3442766, + "thread": 10 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 3512029, + "thread": 7 + } + }, + { + "amount": "375.467288937", + "slot": { + "period": 3667352, + "thread": 3 + } + }, + { + "amount": "375.467288930", + "slot": { + "period": 3883471, + "thread": 12 + } + } + ], + "AU12Kh1GQnUf1FaK2oYwn235TnmVGgnWtwR3oK471tpikUG83384W": [ + { + "amount": "188.004895779", + "slot": { + "period": 129239, + "thread": 7 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 211322, + "thread": 25 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 349001, + "thread": 18 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 598654, + "thread": 27 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 672914, + "thread": 21 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 913902, + "thread": 16 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1080841, + "thread": 16 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1286148, + "thread": 22 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1467905, + "thread": 27 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1591555, + "thread": 22 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1690284, + "thread": 31 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 1852424, + "thread": 24 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2085792, + "thread": 25 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2195172, + "thread": 21 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2305255, + "thread": 22 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2496113, + "thread": 26 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2632013, + "thread": 6 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 2868441, + "thread": 2 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 3109650, + "thread": 8 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 3185885, + "thread": 21 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 3389183, + "thread": 3 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 3460456, + "thread": 19 + } + }, + { + "amount": "188.004895779", + "slot": { + "period": 3716564, + "thread": 1 + } + }, + { + "amount": "188.004895774", + "slot": { + "period": 3895025, + "thread": 8 + } + } + ], + "AU12Khaq7gHLQNZKcAEY1vUhQpPuWWV3ThHPfh3CY94KJueH3iXqU": [ + { + "amount": "62.613604556", + "slot": { + "period": 160679, + "thread": 8 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 316198, + "thread": 29 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 330737, + "thread": 14 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 524987, + "thread": 19 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 765671, + "thread": 8 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 894262, + "thread": 2 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1036261, + "thread": 4 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1195192, + "thread": 2 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1376338, + "thread": 3 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1609544, + "thread": 4 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1698394, + "thread": 8 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 1844502, + "thread": 31 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2002719, + "thread": 14 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2240893, + "thread": 20 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2459272, + "thread": 10 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2546430, + "thread": 14 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2728126, + "thread": 23 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 2929643, + "thread": 4 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 3004690, + "thread": 4 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 3280564, + "thread": 1 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 3444216, + "thread": 16 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 3572299, + "thread": 9 + } + }, + { + "amount": "62.613604556", + "slot": { + "period": 3763249, + "thread": 17 + } + }, + { + "amount": "62.613604555", + "slot": { + "period": 3827605, + "thread": 27 + } + } + ], + "AU12KhnZrT7TdcYfpbD7hn7mujnx2gHoXHXxuv8RCMjHjpJhKhFKX": [ + { + "amount": "80.623584945", + "slot": { + "period": 63936, + "thread": 16 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 187562, + "thread": 14 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 402429, + "thread": 2 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 513053, + "thread": 21 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 815638, + "thread": 16 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 893528, + "thread": 5 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 999670, + "thread": 27 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 1231418, + "thread": 6 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 1403478, + "thread": 15 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 1611396, + "thread": 16 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 1724034, + "thread": 20 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 1900760, + "thread": 24 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2097369, + "thread": 29 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2294548, + "thread": 11 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2398208, + "thread": 31 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2529919, + "thread": 4 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2782671, + "thread": 7 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 2905356, + "thread": 15 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 3011687, + "thread": 5 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 3151608, + "thread": 31 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 3294763, + "thread": 19 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 3552230, + "thread": 25 + } + }, + { + "amount": "80.623584945", + "slot": { + "period": 3777542, + "thread": 29 + } + }, + { + "amount": "80.623584938", + "slot": { + "period": 3843344, + "thread": 31 + } + } + ], + "AU12KhuGXaRfW6DD959nBWXqmkq77qhF2mmB27bve6rRoqrRzw2TN": [ + { + "amount": "125.897796839", + "slot": { + "period": 32193, + "thread": 24 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 177561, + "thread": 21 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 403847, + "thread": 2 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 531800, + "thread": 14 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 745064, + "thread": 21 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 842284, + "thread": 0 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 984870, + "thread": 13 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1212601, + "thread": 30 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1456632, + "thread": 22 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1517842, + "thread": 19 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1663997, + "thread": 17 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1967635, + "thread": 8 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 1981503, + "thread": 8 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 2215078, + "thread": 10 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 2303205, + "thread": 2 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 2546467, + "thread": 4 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 2772739, + "thread": 15 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 2904604, + "thread": 24 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 3051920, + "thread": 25 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 3152835, + "thread": 27 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 3336608, + "thread": 6 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 3494500, + "thread": 19 + } + }, + { + "amount": "125.897796839", + "slot": { + "period": 3653214, + "thread": 11 + } + }, + { + "amount": "125.897796850", + "slot": { + "period": 3898808, + "thread": 24 + } + } + ], + "AU12KifvR16itZNnCNaekDBGLofqyjz3uzem2SVjyaC7udvFtirRN": [ + { + "amount": "134.612531809", + "slot": { + "period": 158893, + "thread": 15 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 264989, + "thread": 16 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 382873, + "thread": 30 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 537959, + "thread": 25 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 783228, + "thread": 29 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 857824, + "thread": 13 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1091535, + "thread": 7 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1240068, + "thread": 20 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1332310, + "thread": 8 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1624103, + "thread": 18 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1788640, + "thread": 2 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 1893226, + "thread": 8 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2091182, + "thread": 23 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2249040, + "thread": 21 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2352897, + "thread": 29 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2549804, + "thread": 3 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2781118, + "thread": 10 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 2819391, + "thread": 1 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 3054170, + "thread": 27 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 3205335, + "thread": 25 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 3335912, + "thread": 20 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 3568534, + "thread": 3 + } + }, + { + "amount": "134.612531809", + "slot": { + "period": 3750566, + "thread": 25 + } + }, + { + "amount": "134.612531810", + "slot": { + "period": 3795951, + "thread": 8 + } + } + ], + "AU12KitrfyjibAm8nYCj79zUXDtiJKoiR1mNSFPsnbHN1LVXqR7if": [ + { + "amount": "93.614425260", + "slot": { + "period": 16338, + "thread": 10 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 234818, + "thread": 0 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 378121, + "thread": 19 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 566129, + "thread": 17 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 711320, + "thread": 15 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 843451, + "thread": 16 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1032278, + "thread": 9 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1155884, + "thread": 25 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1448517, + "thread": 0 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1528210, + "thread": 13 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1670316, + "thread": 24 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 1908724, + "thread": 24 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2039260, + "thread": 10 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2160034, + "thread": 24 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2396253, + "thread": 18 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2619192, + "thread": 5 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2753267, + "thread": 29 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2850651, + "thread": 24 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 2994117, + "thread": 1 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 3281547, + "thread": 12 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 3291368, + "thread": 16 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 3597776, + "thread": 26 + } + }, + { + "amount": "93.614425260", + "slot": { + "period": 3706038, + "thread": 13 + } + }, + { + "amount": "93.614425259", + "slot": { + "period": 3855634, + "thread": 8 + } + } + ], + "AU12KizFHZmhHUMgf4XEvbMxAhhc2nbjHCoQuGEQm1HgBGfuqnVXr": [ + { + "amount": "670.763036757", + "slot": { + "period": 94331, + "thread": 10 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 267089, + "thread": 25 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 452201, + "thread": 11 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 495094, + "thread": 17 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 782482, + "thread": 21 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 849448, + "thread": 22 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 995808, + "thread": 24 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 1215717, + "thread": 5 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 1464491, + "thread": 25 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 1549912, + "thread": 14 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 1738379, + "thread": 4 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 1974565, + "thread": 23 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2141069, + "thread": 21 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2165921, + "thread": 5 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2348226, + "thread": 26 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2549674, + "thread": 4 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2753524, + "thread": 18 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 2886152, + "thread": 23 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 3069260, + "thread": 23 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 3214714, + "thread": 20 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 3410294, + "thread": 25 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 3500288, + "thread": 21 + } + }, + { + "amount": "670.763036757", + "slot": { + "period": 3704468, + "thread": 6 + } + }, + { + "amount": "670.763036758", + "slot": { + "period": 3915153, + "thread": 0 + } + } + ], + "AU12KjVMopSgDQZbkbm9SpRKPmkfGUPDmWPHuks2AiNS1yaVQFxQf": [ + { + "amount": "57.672690521", + "slot": { + "period": 74879, + "thread": 13 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 173150, + "thread": 27 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 432868, + "thread": 1 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 552358, + "thread": 8 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 761198, + "thread": 15 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 882075, + "thread": 9 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1078430, + "thread": 11 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1203758, + "thread": 26 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1393631, + "thread": 28 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1606057, + "thread": 5 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1754733, + "thread": 3 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 1932299, + "thread": 28 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2016450, + "thread": 27 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2157066, + "thread": 31 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2411428, + "thread": 2 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2580434, + "thread": 26 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2684342, + "thread": 1 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 2948458, + "thread": 4 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 3010704, + "thread": 25 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 3219583, + "thread": 28 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 3387260, + "thread": 2 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 3557123, + "thread": 9 + } + }, + { + "amount": "57.672690521", + "slot": { + "period": 3652363, + "thread": 16 + } + }, + { + "amount": "57.672690516", + "slot": { + "period": 3888406, + "thread": 20 + } + } + ], + "AU12Kjh2fq2EzEAKgc3ArgMQkrncLnGccZAx3mQtMd1YsbkBGPKjs": [ + { + "amount": "679.313825732", + "slot": { + "period": 18836, + "thread": 27 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 260150, + "thread": 15 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 440411, + "thread": 23 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 551973, + "thread": 17 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 719990, + "thread": 28 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 963518, + "thread": 31 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1058226, + "thread": 25 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1252307, + "thread": 16 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1363228, + "thread": 12 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1618317, + "thread": 13 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1762545, + "thread": 31 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 1882483, + "thread": 6 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2057399, + "thread": 29 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2294698, + "thread": 22 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2388948, + "thread": 30 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2537052, + "thread": 15 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2624804, + "thread": 31 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 2909755, + "thread": 31 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 3085196, + "thread": 11 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 3138889, + "thread": 3 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 3385735, + "thread": 15 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 3566045, + "thread": 5 + } + }, + { + "amount": "679.313825732", + "slot": { + "period": 3622271, + "thread": 7 + } + }, + { + "amount": "679.313825727", + "slot": { + "period": 3831211, + "thread": 4 + } + } + ], + "AU12KkwJewSXz9DWPtyTmQoyoqKuDnpBmtYKagL9xhQqyrqeNxL9q": [ + { + "amount": "194.072043446", + "slot": { + "period": 114128, + "thread": 5 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 278946, + "thread": 22 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 419420, + "thread": 24 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 649590, + "thread": 12 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 818550, + "thread": 12 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 923095, + "thread": 10 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1037671, + "thread": 13 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1257115, + "thread": 22 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1376257, + "thread": 14 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1634726, + "thread": 20 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1749762, + "thread": 12 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 1887113, + "thread": 8 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2026579, + "thread": 15 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2150317, + "thread": 4 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2396353, + "thread": 12 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2538496, + "thread": 14 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2657623, + "thread": 2 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2868447, + "thread": 24 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 2967573, + "thread": 15 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 3228683, + "thread": 16 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 3353859, + "thread": 19 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 3613904, + "thread": 20 + } + }, + { + "amount": "194.072043446", + "slot": { + "period": 3713288, + "thread": 30 + } + }, + { + "amount": "194.072043447", + "slot": { + "period": 3902958, + "thread": 21 + } + } + ], + "AU12Km1K8N12qyG5pX1rwpbGy36z1QZS6jemmpEeiB6xP2PAkQmF6": [ + { + "amount": "54.545890550", + "slot": { + "period": 10902, + "thread": 30 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 294292, + "thread": 0 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 411062, + "thread": 19 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 624319, + "thread": 7 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 704021, + "thread": 6 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 861718, + "thread": 13 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 993223, + "thread": 1 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 1286683, + "thread": 12 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 1440374, + "thread": 0 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 1623289, + "thread": 24 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 1665582, + "thread": 29 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 1912076, + "thread": 10 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2053096, + "thread": 12 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2229467, + "thread": 3 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2335297, + "thread": 2 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2524619, + "thread": 23 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2754584, + "thread": 28 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 2898038, + "thread": 6 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 3013889, + "thread": 25 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 3173053, + "thread": 15 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 3293624, + "thread": 23 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 3551722, + "thread": 14 + } + }, + { + "amount": "54.545890550", + "slot": { + "period": 3757188, + "thread": 27 + } + }, + { + "amount": "54.545890560", + "slot": { + "period": 3927583, + "thread": 4 + } + } + ], + "AU12Km2WEFsPBcjzfFGaBHZYVAk9JXKUjzE983zSMm98YsikeC1Vj": [ + { + "amount": "182.912597608", + "slot": { + "period": 98190, + "thread": 25 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 180813, + "thread": 10 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 460186, + "thread": 29 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 567648, + "thread": 7 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 682977, + "thread": 3 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 967703, + "thread": 10 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 990263, + "thread": 21 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 1152907, + "thread": 25 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 1449215, + "thread": 14 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 1602680, + "thread": 28 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 1775836, + "thread": 16 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 1822353, + "thread": 19 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2104298, + "thread": 29 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2185799, + "thread": 29 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2429993, + "thread": 3 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2549235, + "thread": 1 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2655874, + "thread": 12 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 2833335, + "thread": 10 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 3043929, + "thread": 6 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 3242720, + "thread": 3 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 3448236, + "thread": 4 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 3585307, + "thread": 24 + } + }, + { + "amount": "182.912597608", + "slot": { + "period": 3775706, + "thread": 25 + } + }, + { + "amount": "182.912597616", + "slot": { + "period": 3831263, + "thread": 3 + } + } + ], + "AU12KmQPSe6VfDfpRmuG2dZt8d9NKvxM3DLpACC5cniuhPbUZgGrX": [ + { + "amount": "113.181647341", + "slot": { + "period": 143289, + "thread": 21 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 304342, + "thread": 27 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 472337, + "thread": 27 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 595920, + "thread": 9 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 745616, + "thread": 6 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 864563, + "thread": 16 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1083984, + "thread": 14 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1255048, + "thread": 17 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1344055, + "thread": 13 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1627764, + "thread": 1 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1686024, + "thread": 31 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1965567, + "thread": 28 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 1982546, + "thread": 10 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2192478, + "thread": 8 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2458198, + "thread": 1 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2513121, + "thread": 6 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2700753, + "thread": 31 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2887549, + "thread": 11 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 2988572, + "thread": 14 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 3127633, + "thread": 21 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 3430243, + "thread": 17 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 3601756, + "thread": 28 + } + }, + { + "amount": "113.181647341", + "slot": { + "period": 3627741, + "thread": 5 + } + }, + { + "amount": "113.181647342", + "slot": { + "period": 3858759, + "thread": 26 + } + } + ], + "AU12KmTxdhvA5Bp4zQgJbru41Z4XZECQMiYpgvb472n2jSPTkhuEf": [ + { + "amount": "210.685208598", + "slot": { + "period": 51136, + "thread": 16 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 323111, + "thread": 8 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 407598, + "thread": 25 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 492414, + "thread": 5 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 707394, + "thread": 10 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 944333, + "thread": 25 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1001582, + "thread": 1 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1254613, + "thread": 19 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1332520, + "thread": 30 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1576316, + "thread": 29 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1706161, + "thread": 24 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 1878544, + "thread": 11 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2105715, + "thread": 18 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2153654, + "thread": 25 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2438309, + "thread": 23 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2467096, + "thread": 1 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2624608, + "thread": 27 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2811792, + "thread": 9 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 2999205, + "thread": 0 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 3280254, + "thread": 18 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 3442240, + "thread": 7 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 3538515, + "thread": 0 + } + }, + { + "amount": "210.685208598", + "slot": { + "period": 3705801, + "thread": 21 + } + }, + { + "amount": "210.685208597", + "slot": { + "period": 3834075, + "thread": 14 + } + } + ], + "AU12Kmk1cEPHEWguquoWe9R6mFYw89BWqAESoFU5jeLa2UbwSxxnG": [ + { + "amount": "95.620044888", + "slot": { + "period": 131172, + "thread": 6 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 173099, + "thread": 3 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 371247, + "thread": 28 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 577009, + "thread": 28 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 793746, + "thread": 1 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 864513, + "thread": 9 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1105773, + "thread": 26 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1213514, + "thread": 16 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1402996, + "thread": 12 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1498144, + "thread": 14 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1651569, + "thread": 11 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 1856254, + "thread": 2 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2133663, + "thread": 19 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2187715, + "thread": 6 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2421705, + "thread": 2 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2511501, + "thread": 0 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2714093, + "thread": 16 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2792756, + "thread": 12 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 2988425, + "thread": 19 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 3161608, + "thread": 30 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 3394100, + "thread": 31 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 3482961, + "thread": 5 + } + }, + { + "amount": "95.620044888", + "slot": { + "period": 3768909, + "thread": 3 + } + }, + { + "amount": "95.620044878", + "slot": { + "period": 3827923, + "thread": 3 + } + } + ], + "AU12KmkUoECSkzWJuxtpkJ8mcmE56waBGMJrZ3CtjtYmJc3pem7w2": [ + { + "amount": "520.583563921", + "slot": { + "period": 117984, + "thread": 0 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 179437, + "thread": 15 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 482713, + "thread": 8 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 552047, + "thread": 12 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 810138, + "thread": 10 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 851651, + "thread": 2 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1083787, + "thread": 11 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1207501, + "thread": 26 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1478178, + "thread": 12 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1631077, + "thread": 3 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1710057, + "thread": 16 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 1859042, + "thread": 22 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2065368, + "thread": 3 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2278920, + "thread": 1 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2333720, + "thread": 23 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2493114, + "thread": 28 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2786165, + "thread": 3 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 2946324, + "thread": 31 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 3041674, + "thread": 4 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 3193041, + "thread": 9 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 3444816, + "thread": 12 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 3479895, + "thread": 13 + } + }, + { + "amount": "520.583563921", + "slot": { + "period": 3739237, + "thread": 28 + } + }, + { + "amount": "520.583563924", + "slot": { + "period": 3861559, + "thread": 26 + } + } + ], + "AU12KmnoLbXx4Cq85FpHXUfdcHj2RuxAFp9hL8T7xrebVoQLdrjZJ": [ + { + "amount": "280.434709011", + "slot": { + "period": 145512, + "thread": 22 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 303045, + "thread": 15 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 419371, + "thread": 5 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 649093, + "thread": 22 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 784962, + "thread": 3 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 844652, + "thread": 29 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1127769, + "thread": 1 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1302982, + "thread": 18 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1412635, + "thread": 14 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1517284, + "thread": 21 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1665486, + "thread": 13 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 1886771, + "thread": 24 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2064761, + "thread": 2 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2208993, + "thread": 8 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2340122, + "thread": 25 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2588913, + "thread": 18 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2756604, + "thread": 18 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 2950800, + "thread": 10 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 3078016, + "thread": 30 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 3243060, + "thread": 3 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 3393252, + "thread": 11 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 3518666, + "thread": 24 + } + }, + { + "amount": "280.434709011", + "slot": { + "period": 3714773, + "thread": 24 + } + }, + { + "amount": "280.434709018", + "slot": { + "period": 3817607, + "thread": 26 + } + } + ], + "AU12Ko1TNhTyDN8XNnEe6VipPxammpLtjPdGtxNA9kcGHzjE8nSBc": [ + { + "amount": "204.996951632", + "slot": { + "period": 96232, + "thread": 7 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 258542, + "thread": 20 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 338344, + "thread": 4 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 616786, + "thread": 15 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 761829, + "thread": 28 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 866425, + "thread": 2 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1023539, + "thread": 3 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1198729, + "thread": 1 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1354999, + "thread": 9 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1572267, + "thread": 3 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1742673, + "thread": 31 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 1878729, + "thread": 4 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2037480, + "thread": 18 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2222696, + "thread": 11 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2406008, + "thread": 11 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2589254, + "thread": 16 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2774521, + "thread": 3 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2794154, + "thread": 25 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 2969715, + "thread": 31 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 3177846, + "thread": 3 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 3408017, + "thread": 13 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 3474029, + "thread": 28 + } + }, + { + "amount": "204.996951632", + "slot": { + "period": 3693205, + "thread": 28 + } + }, + { + "amount": "204.996951621", + "slot": { + "period": 3792460, + "thread": 4 + } + } + ], + "AU12Kp3Ar6mvCjq66bGZzViKJiArQhCt3jE4ZJXLZGQgeYxFgVkhm": [ + { + "amount": "501.953341717", + "slot": { + "period": 78372, + "thread": 22 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 323463, + "thread": 20 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 419741, + "thread": 21 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 576004, + "thread": 15 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 802032, + "thread": 23 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 843241, + "thread": 11 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1121648, + "thread": 12 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1207438, + "thread": 29 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1386020, + "thread": 5 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1501819, + "thread": 8 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1796049, + "thread": 26 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 1824432, + "thread": 8 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2080210, + "thread": 17 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2275495, + "thread": 28 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2450221, + "thread": 17 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2588336, + "thread": 9 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2707109, + "thread": 12 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 2828977, + "thread": 14 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 3021905, + "thread": 3 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 3187000, + "thread": 24 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 3352616, + "thread": 24 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 3493816, + "thread": 1 + } + }, + { + "amount": "501.953341717", + "slot": { + "period": 3776415, + "thread": 6 + } + }, + { + "amount": "501.953341726", + "slot": { + "period": 3781074, + "thread": 6 + } + } + ], + "AU12Kq2bR5BSAPHb6St4GJu2PG5EHGrh5zYMEpE82kRsoDQfGmZVi": [ + { + "amount": "233.589423932", + "slot": { + "period": 163377, + "thread": 0 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 181553, + "thread": 19 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 358815, + "thread": 8 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 609076, + "thread": 8 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 682573, + "thread": 2 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 841814, + "thread": 2 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1012738, + "thread": 6 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1239173, + "thread": 21 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1351710, + "thread": 8 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1594933, + "thread": 31 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1744852, + "thread": 29 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 1820104, + "thread": 2 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2047361, + "thread": 13 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2187272, + "thread": 2 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2365972, + "thread": 15 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2560406, + "thread": 20 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2679723, + "thread": 10 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 2870835, + "thread": 12 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 3063790, + "thread": 23 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 3137527, + "thread": 16 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 3368069, + "thread": 19 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 3574964, + "thread": 11 + } + }, + { + "amount": "233.589423932", + "slot": { + "period": 3671612, + "thread": 6 + } + }, + { + "amount": "233.589423935", + "slot": { + "period": 3862666, + "thread": 1 + } + } + ], + "AU12Kq5j2teV8iJRCTiAGdgVzJwHoJXo9jh6RQhyTtfC5nDT4AHKn": [ + { + "amount": "466.618179823", + "slot": { + "period": 120213, + "thread": 11 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 250711, + "thread": 7 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 472158, + "thread": 3 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 532433, + "thread": 30 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 691152, + "thread": 0 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 859197, + "thread": 14 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1097898, + "thread": 25 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1254554, + "thread": 12 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1478821, + "thread": 29 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1614159, + "thread": 8 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1649966, + "thread": 18 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1882882, + "thread": 23 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 1988366, + "thread": 25 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 2281868, + "thread": 25 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 2303923, + "thread": 7 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 2610446, + "thread": 19 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 2668441, + "thread": 17 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 2948832, + "thread": 24 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 3002825, + "thread": 13 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 3276102, + "thread": 31 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 3332928, + "thread": 26 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 3566518, + "thread": 13 + } + }, + { + "amount": "466.618179823", + "slot": { + "period": 3778761, + "thread": 24 + } + }, + { + "amount": "466.618179812", + "slot": { + "period": 3820118, + "thread": 3 + } + } + ], + "AU12Kq9Xtorg1dWr6pDizFM24Jm4fwpRTJjrkdFiGNCwQrtBvcfd5": [ + { + "amount": "475.735625994", + "slot": { + "period": 57509, + "thread": 14 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 239335, + "thread": 0 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 400041, + "thread": 2 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 513591, + "thread": 6 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 741821, + "thread": 10 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 832636, + "thread": 19 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1141016, + "thread": 2 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1222080, + "thread": 25 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1336659, + "thread": 12 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1619136, + "thread": 3 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1704073, + "thread": 22 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 1945714, + "thread": 31 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2012197, + "thread": 9 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2290806, + "thread": 15 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2322029, + "thread": 9 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2584307, + "thread": 5 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2730175, + "thread": 22 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 2820333, + "thread": 12 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 3066675, + "thread": 0 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 3201946, + "thread": 10 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 3308939, + "thread": 27 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 3569276, + "thread": 4 + } + }, + { + "amount": "475.735625994", + "slot": { + "period": 3773771, + "thread": 23 + } + }, + { + "amount": "475.735625992", + "slot": { + "period": 3926005, + "thread": 10 + } + } + ], + "AU12KqJDViFQUsNiRPdmVMXBTJSZXhTLBTUbSXbrFYhJr6Mc6CMbt": [ + { + "amount": "86.771976231", + "slot": { + "period": 30771, + "thread": 16 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 283753, + "thread": 21 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 459201, + "thread": 2 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 641892, + "thread": 8 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 787203, + "thread": 25 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 872154, + "thread": 1 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1064347, + "thread": 27 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1266864, + "thread": 6 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1419498, + "thread": 10 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1594217, + "thread": 11 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1749517, + "thread": 9 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 1868029, + "thread": 16 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2122685, + "thread": 29 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2220744, + "thread": 11 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2311490, + "thread": 12 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2602979, + "thread": 29 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2718432, + "thread": 13 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 2827024, + "thread": 9 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 3082958, + "thread": 20 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 3125174, + "thread": 10 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 3417427, + "thread": 20 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 3504804, + "thread": 28 + } + }, + { + "amount": "86.771976231", + "slot": { + "period": 3702188, + "thread": 11 + } + }, + { + "amount": "86.771976237", + "slot": { + "period": 3833194, + "thread": 15 + } + } + ], + "AU12KqUPCd3VW9fiES5LiSTMAgfc3NJx6TXLTjVJwnpWwkzhHdUPU": [ + { + "amount": "148.849317756", + "slot": { + "period": 153898, + "thread": 23 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 234850, + "thread": 14 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 375986, + "thread": 2 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 618408, + "thread": 19 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 749966, + "thread": 31 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 831420, + "thread": 10 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1105717, + "thread": 30 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1158976, + "thread": 30 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1388585, + "thread": 11 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1573390, + "thread": 29 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1725148, + "thread": 6 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 1849253, + "thread": 20 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2128409, + "thread": 4 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2202314, + "thread": 2 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2379027, + "thread": 25 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2603712, + "thread": 25 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2677353, + "thread": 4 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2888495, + "thread": 28 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 2957707, + "thread": 19 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 3283871, + "thread": 0 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 3318865, + "thread": 4 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 3461251, + "thread": 2 + } + }, + { + "amount": "148.849317756", + "slot": { + "period": 3706321, + "thread": 30 + } + }, + { + "amount": "148.849317752", + "slot": { + "period": 3866335, + "thread": 31 + } + } + ], + "AU12Kqg2qYZ8PL1giU5wtcau4ryKD1qJdQHz3suiFLdEZ9GjfnQY7": [ + { + "amount": "98.953412724", + "slot": { + "period": 95109, + "thread": 22 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 222896, + "thread": 13 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 411307, + "thread": 2 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 509177, + "thread": 22 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 653449, + "thread": 4 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 898970, + "thread": 18 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1101800, + "thread": 25 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1231521, + "thread": 20 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1384581, + "thread": 31 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1558533, + "thread": 18 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1778419, + "thread": 6 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 1853432, + "thread": 16 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2038012, + "thread": 24 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2214779, + "thread": 13 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2420784, + "thread": 7 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2558887, + "thread": 4 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2753773, + "thread": 13 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 2802818, + "thread": 25 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 3081589, + "thread": 16 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 3209097, + "thread": 20 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 3427313, + "thread": 0 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 3517977, + "thread": 5 + } + }, + { + "amount": "98.953412724", + "slot": { + "period": 3647167, + "thread": 31 + } + }, + { + "amount": "98.953412735", + "slot": { + "period": 3797138, + "thread": 6 + } + } + ], + "AU12KqqM8R7ozDy5zKwP11WSoP7Sy1aSVLP7sP5ayRGEVjwBxLgGb": [ + { + "amount": "84.872832073", + "slot": { + "period": 144962, + "thread": 23 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 289932, + "thread": 4 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 469560, + "thread": 11 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 612066, + "thread": 16 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 690545, + "thread": 29 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 865273, + "thread": 2 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1045969, + "thread": 1 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1267967, + "thread": 10 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1342105, + "thread": 29 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1543652, + "thread": 8 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1764299, + "thread": 3 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 1898695, + "thread": 15 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2022738, + "thread": 7 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2167472, + "thread": 27 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2315409, + "thread": 10 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2495054, + "thread": 31 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2654469, + "thread": 7 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 2889666, + "thread": 13 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 3026137, + "thread": 25 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 3227676, + "thread": 6 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 3350025, + "thread": 26 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 3591175, + "thread": 16 + } + }, + { + "amount": "84.872832073", + "slot": { + "period": 3729512, + "thread": 6 + } + }, + { + "amount": "84.872832068", + "slot": { + "period": 3871672, + "thread": 3 + } + } + ], + "AU12KrdsUsMTzteautDRd5p4MnYQ8u4Yyhkyu1XMTNrReEL5Pm472": [ + { + "amount": "156.858801667", + "slot": { + "period": 73425, + "thread": 29 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 215739, + "thread": 18 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 478016, + "thread": 17 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 550584, + "thread": 25 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 664346, + "thread": 28 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 972943, + "thread": 0 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1009022, + "thread": 7 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1306583, + "thread": 13 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1426394, + "thread": 12 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1596967, + "thread": 18 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1765937, + "thread": 15 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 1839749, + "thread": 11 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2114188, + "thread": 15 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2228729, + "thread": 28 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2450149, + "thread": 25 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2508938, + "thread": 5 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2788404, + "thread": 26 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2942513, + "thread": 27 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 2960139, + "thread": 10 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 3182794, + "thread": 14 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 3377124, + "thread": 10 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 3463946, + "thread": 20 + } + }, + { + "amount": "156.858801667", + "slot": { + "period": 3732654, + "thread": 3 + } + }, + { + "amount": "156.858801674", + "slot": { + "period": 3933196, + "thread": 7 + } + } + ], + "AU12KsfPMFYqW2RHJkXJPX7RFRzRMKLLdab1gvswRxkAT265PTSGB": [ + { + "amount": "476.046209526", + "slot": { + "period": 82047, + "thread": 23 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 312737, + "thread": 15 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 458273, + "thread": 30 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 620311, + "thread": 9 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 714925, + "thread": 1 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 914883, + "thread": 20 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1128989, + "thread": 7 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1270984, + "thread": 19 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1377136, + "thread": 17 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1559650, + "thread": 22 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1664254, + "thread": 29 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 1811688, + "thread": 3 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2022407, + "thread": 18 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2205562, + "thread": 5 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2370325, + "thread": 23 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2558944, + "thread": 8 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2658709, + "thread": 26 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 2884816, + "thread": 26 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 3110696, + "thread": 17 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 3269083, + "thread": 27 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 3351065, + "thread": 14 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 3558097, + "thread": 3 + } + }, + { + "amount": "476.046209526", + "slot": { + "period": 3779663, + "thread": 14 + } + }, + { + "amount": "476.046209537", + "slot": { + "period": 3860003, + "thread": 11 + } + } + ], + "AU12Kua5MaJLCeYq2ZYTm7UNPM2YoXyMKkFVt67GgVjLAvn5QLtHX": [ + { + "amount": "257.027508476", + "slot": { + "period": 30109, + "thread": 31 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 238419, + "thread": 4 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 359387, + "thread": 6 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 605939, + "thread": 29 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 750318, + "thread": 4 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 922399, + "thread": 7 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1083891, + "thread": 16 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1305432, + "thread": 12 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1370964, + "thread": 6 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1619840, + "thread": 23 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1704171, + "thread": 3 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 1846575, + "thread": 16 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2090476, + "thread": 15 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2246997, + "thread": 27 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2388522, + "thread": 23 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2479288, + "thread": 3 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2693712, + "thread": 6 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 2904169, + "thread": 2 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 3104705, + "thread": 20 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 3273951, + "thread": 6 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 3291996, + "thread": 10 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 3537814, + "thread": 24 + } + }, + { + "amount": "257.027508476", + "slot": { + "period": 3680240, + "thread": 15 + } + }, + { + "amount": "257.027508470", + "slot": { + "period": 3923472, + "thread": 31 + } + } + ], + "AU12KukrKjPtuRHPcp6EFxtStHEN5auMW8UGi9UuABStMpie9rWiX": [ + { + "amount": "220.255100589", + "slot": { + "period": 22530, + "thread": 12 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 235591, + "thread": 17 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 440802, + "thread": 22 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 536997, + "thread": 5 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 665302, + "thread": 19 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 982557, + "thread": 17 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1132826, + "thread": 27 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1316155, + "thread": 13 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1332920, + "thread": 10 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1612565, + "thread": 9 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1768335, + "thread": 30 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1892263, + "thread": 25 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 1983682, + "thread": 1 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2242948, + "thread": 7 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2346812, + "thread": 14 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2577954, + "thread": 9 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2634913, + "thread": 20 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2903977, + "thread": 0 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 2962102, + "thread": 19 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 3197848, + "thread": 24 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 3340066, + "thread": 19 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 3486809, + "thread": 17 + } + }, + { + "amount": "220.255100589", + "slot": { + "period": 3733386, + "thread": 6 + } + }, + { + "amount": "220.255100597", + "slot": { + "period": 3863869, + "thread": 31 + } + } + ], + "AU12KwfAFRkMAzaHWBtpmT82WwBXRqXMorgXJGLHQHZtFZJ6ybbYV": [ + { + "amount": "345.495038559", + "slot": { + "period": 159959, + "thread": 24 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 242622, + "thread": 24 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 427607, + "thread": 20 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 641976, + "thread": 10 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 761477, + "thread": 10 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 938679, + "thread": 17 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1004394, + "thread": 28 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1151627, + "thread": 28 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1357560, + "thread": 16 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1503536, + "thread": 19 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1739460, + "thread": 9 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 1947351, + "thread": 27 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2096686, + "thread": 9 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2263850, + "thread": 28 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2423139, + "thread": 0 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2604979, + "thread": 4 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2645699, + "thread": 14 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 2916486, + "thread": 21 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3109415, + "thread": 4 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3145956, + "thread": 2 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3345925, + "thread": 13 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3497595, + "thread": 1 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3628696, + "thread": 6 + } + }, + { + "amount": "345.495038559", + "slot": { + "period": 3899896, + "thread": 5 + } + } + ], + "AU12Kx3pWG8PU17VTYCpVFvhLveFpt1z6JrJH4QdTANHGj9jHd6YN": [ + { + "amount": "180.629304905", + "slot": { + "period": 83346, + "thread": 30 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 293788, + "thread": 22 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 341229, + "thread": 11 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 642355, + "thread": 22 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 709101, + "thread": 2 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 975437, + "thread": 16 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1031137, + "thread": 4 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1301515, + "thread": 11 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1333365, + "thread": 19 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1632345, + "thread": 28 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1769225, + "thread": 4 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 1934994, + "thread": 4 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2052873, + "thread": 13 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2257129, + "thread": 10 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2375359, + "thread": 9 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2511412, + "thread": 10 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2684211, + "thread": 1 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 2904024, + "thread": 0 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 3073676, + "thread": 23 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 3246409, + "thread": 11 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 3392257, + "thread": 7 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 3567679, + "thread": 27 + } + }, + { + "amount": "180.629304905", + "slot": { + "period": 3700787, + "thread": 22 + } + }, + { + "amount": "180.629304915", + "slot": { + "period": 3842335, + "thread": 8 + } + } + ], + "AU12Kx6h6r6ShUYzake2YNYsexYSGcQ1n8LahP2U9y51FhKvF5yAw": [ + { + "amount": "68.265862646", + "slot": { + "period": 152226, + "thread": 14 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 189900, + "thread": 7 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 366011, + "thread": 18 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 649690, + "thread": 28 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 749122, + "thread": 9 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 913973, + "thread": 25 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 998000, + "thread": 21 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 1265262, + "thread": 18 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 1386269, + "thread": 19 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 1519197, + "thread": 7 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 1719358, + "thread": 19 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 1969102, + "thread": 29 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2136695, + "thread": 30 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2229350, + "thread": 0 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2409973, + "thread": 31 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2543323, + "thread": 20 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2747233, + "thread": 29 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 2812778, + "thread": 3 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 3019748, + "thread": 0 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 3143500, + "thread": 0 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 3368939, + "thread": 10 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 3558885, + "thread": 12 + } + }, + { + "amount": "68.265862646", + "slot": { + "period": 3688026, + "thread": 2 + } + }, + { + "amount": "68.265862634", + "slot": { + "period": 3921100, + "thread": 31 + } + } + ], + "AU12KxKPSS1DQ2q2MBFpwpzFecZEvuSy4J7SRYnrzThPU68Ahimn8": [ + { + "amount": "369.253891912", + "slot": { + "period": 30569, + "thread": 0 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 313433, + "thread": 23 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 367319, + "thread": 15 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 578819, + "thread": 21 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 654183, + "thread": 1 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 922071, + "thread": 13 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1068158, + "thread": 23 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1179135, + "thread": 20 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1379313, + "thread": 31 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1586081, + "thread": 20 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1742010, + "thread": 28 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1847285, + "thread": 2 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 1987567, + "thread": 21 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 2215125, + "thread": 6 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 2359642, + "thread": 24 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 2577197, + "thread": 18 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 2717904, + "thread": 4 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 2871537, + "thread": 10 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 3116492, + "thread": 17 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 3189088, + "thread": 20 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 3326193, + "thread": 8 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 3579557, + "thread": 9 + } + }, + { + "amount": "369.253891912", + "slot": { + "period": 3703663, + "thread": 31 + } + }, + { + "amount": "369.253891904", + "slot": { + "period": 3877485, + "thread": 14 + } + } + ], + "AU12KzeTzP8G7xrRAtiCEWdhi531Kg9kEbXnJsP1vRnuovkMWcv21": [ + { + "amount": "219.397252499", + "slot": { + "period": 161834, + "thread": 23 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 206664, + "thread": 10 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 437663, + "thread": 10 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 639368, + "thread": 29 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 721468, + "thread": 27 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 845807, + "thread": 21 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1081965, + "thread": 16 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1263450, + "thread": 10 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1362117, + "thread": 20 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1485813, + "thread": 2 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1684252, + "thread": 13 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 1856239, + "thread": 23 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2063570, + "thread": 18 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2243645, + "thread": 1 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2354310, + "thread": 19 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2544938, + "thread": 31 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2661662, + "thread": 19 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 2825339, + "thread": 8 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 3081937, + "thread": 12 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 3127234, + "thread": 29 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 3405034, + "thread": 16 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 3468377, + "thread": 15 + } + }, + { + "amount": "219.397252499", + "slot": { + "period": 3731960, + "thread": 10 + } + }, + { + "amount": "219.397252507", + "slot": { + "period": 3820489, + "thread": 24 + } + } + ], + "AU12Kzf9295GwUQkDo24mPDzDVGX1X5L4cff1nv78nJATx5pqeXVR": [ + { + "amount": "55.397986024", + "slot": { + "period": 142360, + "thread": 0 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 276210, + "thread": 24 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 402865, + "thread": 4 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 642197, + "thread": 1 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 736955, + "thread": 16 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 958337, + "thread": 15 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1016778, + "thread": 4 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1220461, + "thread": 31 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1356826, + "thread": 20 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1611162, + "thread": 25 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1764236, + "thread": 6 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 1895358, + "thread": 4 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2090046, + "thread": 17 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2270718, + "thread": 16 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2443486, + "thread": 16 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2544085, + "thread": 6 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2667930, + "thread": 0 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2840578, + "thread": 24 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 2959620, + "thread": 2 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 3175178, + "thread": 7 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 3418307, + "thread": 7 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 3581111, + "thread": 1 + } + }, + { + "amount": "55.397986024", + "slot": { + "period": 3662231, + "thread": 3 + } + }, + { + "amount": "55.397986028", + "slot": { + "period": 3855523, + "thread": 9 + } + } + ], + "AU12L1gB3MxG4TgRbDgAv9BGCQRS7DgccsqwMmpZ5oh7cNFoDyzLS": [ + { + "amount": "216.157033090", + "slot": { + "period": 57274, + "thread": 3 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 258702, + "thread": 28 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 349567, + "thread": 28 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 636445, + "thread": 7 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 678564, + "thread": 7 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 960733, + "thread": 22 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 990237, + "thread": 21 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 1214164, + "thread": 11 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 1449560, + "thread": 12 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 1514341, + "thread": 15 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 1754560, + "thread": 16 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 1919616, + "thread": 11 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2125855, + "thread": 29 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2213820, + "thread": 25 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2362231, + "thread": 25 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2611011, + "thread": 21 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2739350, + "thread": 30 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 2951475, + "thread": 26 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 3109706, + "thread": 27 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 3228881, + "thread": 6 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 3439022, + "thread": 21 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 3502475, + "thread": 28 + } + }, + { + "amount": "216.157033090", + "slot": { + "period": 3706468, + "thread": 18 + } + }, + { + "amount": "216.157033095", + "slot": { + "period": 3843148, + "thread": 6 + } + } + ], + "AU12L1mzvMBZkatH6DHnwZ1ZWHoRZKcxZ3BZSXMop1kUF4i2x4JSo": [ + { + "amount": "152.562803512", + "slot": { + "period": 68202, + "thread": 23 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 289758, + "thread": 4 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 396850, + "thread": 23 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 578649, + "thread": 22 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 705337, + "thread": 11 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 953904, + "thread": 2 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 993310, + "thread": 22 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 1207564, + "thread": 10 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 1378821, + "thread": 6 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 1490906, + "thread": 19 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 1788247, + "thread": 29 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 1840498, + "thread": 30 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2066525, + "thread": 25 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2209603, + "thread": 0 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2405881, + "thread": 14 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2477552, + "thread": 6 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2742703, + "thread": 15 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 2918098, + "thread": 2 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 3062317, + "thread": 19 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 3236309, + "thread": 27 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 3389498, + "thread": 15 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 3496885, + "thread": 12 + } + }, + { + "amount": "152.562803512", + "slot": { + "period": 3743057, + "thread": 15 + } + }, + { + "amount": "152.562803522", + "slot": { + "period": 3835065, + "thread": 16 + } + } + ], + "AU12L1swMBNjMg4EBRpEMRvijkRvqE4HknDJ6fYzyGUa5oa64uv47": [ + { + "amount": "62.809480176", + "slot": { + "period": 102035, + "thread": 1 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 204592, + "thread": 15 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 469474, + "thread": 13 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 539833, + "thread": 30 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 661204, + "thread": 22 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 920386, + "thread": 21 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1034198, + "thread": 2 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1245773, + "thread": 9 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1447628, + "thread": 23 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1559945, + "thread": 15 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1726869, + "thread": 30 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 1825692, + "thread": 26 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2142654, + "thread": 11 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2285032, + "thread": 6 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2416940, + "thread": 27 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2617897, + "thread": 9 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2791677, + "thread": 29 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 2949710, + "thread": 29 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 3057250, + "thread": 7 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 3131838, + "thread": 27 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 3388928, + "thread": 5 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 3458154, + "thread": 19 + } + }, + { + "amount": "62.809480176", + "slot": { + "period": 3738329, + "thread": 28 + } + }, + { + "amount": "62.809480166", + "slot": { + "period": 3811505, + "thread": 22 + } + } + ], + "AU12L27DQNtsyumN8JbGedqhUASPjRnVgR9RXaCYurX7zLtFT6aYs": [ + { + "amount": "509.162128432", + "slot": { + "period": 62904, + "thread": 5 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 248880, + "thread": 26 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 376295, + "thread": 26 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 632880, + "thread": 16 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 706384, + "thread": 3 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 881281, + "thread": 31 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1132748, + "thread": 3 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1287483, + "thread": 14 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1467863, + "thread": 20 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1618603, + "thread": 12 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1782374, + "thread": 18 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 1907178, + "thread": 6 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2021614, + "thread": 8 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2175349, + "thread": 21 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2396247, + "thread": 13 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2471419, + "thread": 16 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2655181, + "thread": 26 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 2810257, + "thread": 18 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 3110405, + "thread": 15 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 3166577, + "thread": 6 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 3381599, + "thread": 14 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 3467536, + "thread": 11 + } + }, + { + "amount": "509.162128432", + "slot": { + "period": 3621671, + "thread": 10 + } + }, + { + "amount": "509.162128429", + "slot": { + "period": 3810926, + "thread": 13 + } + } + ], + "AU12L27EkcKYgakJpYybw5NzC3RX7ya6XcpJSmVpHkWMa8vyVLuDW": [ + { + "amount": "235.189606997", + "slot": { + "period": 15732, + "thread": 15 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 243933, + "thread": 2 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 426758, + "thread": 23 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 532832, + "thread": 20 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 677293, + "thread": 25 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 911709, + "thread": 24 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1117576, + "thread": 26 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1171674, + "thread": 7 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1341671, + "thread": 24 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1485696, + "thread": 23 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1719368, + "thread": 6 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 1943183, + "thread": 19 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2127348, + "thread": 29 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2258372, + "thread": 27 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2398651, + "thread": 23 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2578560, + "thread": 29 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2649605, + "thread": 14 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 2876892, + "thread": 31 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 3015824, + "thread": 12 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 3137233, + "thread": 26 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 3366364, + "thread": 1 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 3522784, + "thread": 10 + } + }, + { + "amount": "235.189606997", + "slot": { + "period": 3741031, + "thread": 22 + } + }, + { + "amount": "235.189607007", + "slot": { + "period": 3878627, + "thread": 13 + } + } + ], + "AU12L2g3TVvaVgwBXcKwbrku3vzWKj5CMYALnhizED2vJvpU2EpAH": [ + { + "amount": "134.750683432", + "slot": { + "period": 32164, + "thread": 4 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 274165, + "thread": 10 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 325228, + "thread": 1 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 501674, + "thread": 17 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 683253, + "thread": 11 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 844720, + "thread": 2 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1123376, + "thread": 2 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1285945, + "thread": 7 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1353201, + "thread": 27 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1514891, + "thread": 17 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1696876, + "thread": 5 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 1869571, + "thread": 17 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2074805, + "thread": 29 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2287789, + "thread": 26 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2315203, + "thread": 19 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2542113, + "thread": 6 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2768077, + "thread": 13 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 2937897, + "thread": 1 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 3082251, + "thread": 10 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 3277841, + "thread": 11 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 3312055, + "thread": 16 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 3541076, + "thread": 30 + } + }, + { + "amount": "134.750683432", + "slot": { + "period": 3642277, + "thread": 9 + } + }, + { + "amount": "134.750683421", + "slot": { + "period": 3788610, + "thread": 15 + } + } + ], + "AU12L2h5dLDw5aTad8ZDxtwFHzSxTbzVYsdMvS2y6mACAsqXmuoo2": [ + { + "amount": "427.448618104", + "slot": { + "period": 30634, + "thread": 22 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 307154, + "thread": 8 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 325241, + "thread": 24 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 609375, + "thread": 29 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 820201, + "thread": 17 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 955037, + "thread": 23 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1101209, + "thread": 8 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1290019, + "thread": 20 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1423961, + "thread": 16 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1605826, + "thread": 1 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1705727, + "thread": 18 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 1912273, + "thread": 16 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2032220, + "thread": 10 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2228019, + "thread": 6 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2409853, + "thread": 22 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2481424, + "thread": 5 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2703238, + "thread": 7 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 2856559, + "thread": 16 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 3095759, + "thread": 8 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 3172805, + "thread": 19 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 3298980, + "thread": 19 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 3551427, + "thread": 17 + } + }, + { + "amount": "427.448618104", + "slot": { + "period": 3661398, + "thread": 2 + } + }, + { + "amount": "427.448618095", + "slot": { + "period": 3799993, + "thread": 2 + } + } + ], + "AU12L37bUQnLUe7ac7yU3jMqTpvyA8pEK5ypxWyYYeufYWAyD91it": [ + { + "amount": "84.833566032", + "slot": { + "period": 68082, + "thread": 11 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 181887, + "thread": 16 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 406402, + "thread": 4 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 510888, + "thread": 31 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 777375, + "thread": 26 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 896442, + "thread": 6 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1104348, + "thread": 17 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1216425, + "thread": 30 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1343655, + "thread": 20 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1495551, + "thread": 1 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1656472, + "thread": 18 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 1920188, + "thread": 30 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2080782, + "thread": 17 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2161455, + "thread": 3 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2403027, + "thread": 14 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2561281, + "thread": 23 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2752999, + "thread": 20 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 2821910, + "thread": 6 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 3056982, + "thread": 25 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 3270009, + "thread": 14 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 3297781, + "thread": 4 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 3463227, + "thread": 3 + } + }, + { + "amount": "84.833566032", + "slot": { + "period": 3690287, + "thread": 9 + } + }, + { + "amount": "84.833566030", + "slot": { + "period": 3780850, + "thread": 24 + } + } + ], + "AU12L3VygF7gEEdHrK7uhbhdnkCd5qZBipFMAf1CFmHgKGZ118gF9": [ + { + "amount": "72.380423604", + "slot": { + "period": 101333, + "thread": 29 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 286352, + "thread": 5 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 378432, + "thread": 13 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 537583, + "thread": 15 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 727595, + "thread": 30 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 894078, + "thread": 24 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1103474, + "thread": 3 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1170385, + "thread": 18 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1401634, + "thread": 12 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1587521, + "thread": 21 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1753269, + "thread": 26 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 1960147, + "thread": 18 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2123623, + "thread": 29 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2199807, + "thread": 14 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2407415, + "thread": 20 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2475400, + "thread": 16 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2722990, + "thread": 27 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 2813723, + "thread": 5 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 3089401, + "thread": 21 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 3288474, + "thread": 31 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 3369743, + "thread": 19 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 3523909, + "thread": 30 + } + }, + { + "amount": "72.380423604", + "slot": { + "period": 3659747, + "thread": 14 + } + }, + { + "amount": "72.380423605", + "slot": { + "period": 3891121, + "thread": 22 + } + } + ], + "AU12L3oWnn8SsYDgxmAGRH1Ao2ZroqPyVVneWsuCLqUKoWu2QqZmd": [ + { + "amount": "185.457728198", + "slot": { + "period": 74592, + "thread": 7 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 246775, + "thread": 12 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 338797, + "thread": 28 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 640716, + "thread": 13 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 737819, + "thread": 15 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 911663, + "thread": 7 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1047745, + "thread": 21 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1237016, + "thread": 11 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1320791, + "thread": 13 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1627064, + "thread": 29 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1710921, + "thread": 28 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1861024, + "thread": 22 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 1995689, + "thread": 12 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 2144573, + "thread": 0 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 2316769, + "thread": 1 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 2514471, + "thread": 6 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 2693526, + "thread": 14 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 2881701, + "thread": 23 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 3075779, + "thread": 3 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 3285442, + "thread": 6 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 3371890, + "thread": 21 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 3503797, + "thread": 17 + } + }, + { + "amount": "185.457728198", + "slot": { + "period": 3734962, + "thread": 28 + } + }, + { + "amount": "185.457728204", + "slot": { + "period": 3829190, + "thread": 27 + } + } + ], + "AU12L3qqMA1sufoS1cXztHkBMyWFmfiLSKtHVNRUQW1dp1jibwaMn": [ + { + "amount": "153.348581427", + "slot": { + "period": 94474, + "thread": 21 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 227483, + "thread": 17 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 421100, + "thread": 4 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 523912, + "thread": 25 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 708626, + "thread": 0 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 824707, + "thread": 30 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1073971, + "thread": 20 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1241654, + "thread": 11 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1370795, + "thread": 10 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1640771, + "thread": 27 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1719434, + "thread": 31 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 1954777, + "thread": 7 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2051023, + "thread": 24 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2288818, + "thread": 18 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2384902, + "thread": 15 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2608716, + "thread": 24 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2779727, + "thread": 24 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 2816642, + "thread": 16 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 3101718, + "thread": 0 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 3280174, + "thread": 19 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 3436802, + "thread": 29 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 3550920, + "thread": 13 + } + }, + { + "amount": "153.348581427", + "slot": { + "period": 3699958, + "thread": 18 + } + }, + { + "amount": "153.348581424", + "slot": { + "period": 3834890, + "thread": 9 + } + } + ], + "AU12L4ww6vZYqWyzdGJzUxbTtp2MaYAfgA4Fic4L3yHmzofUTK57V": [ + { + "amount": "509.274711894", + "slot": { + "period": 66520, + "thread": 21 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 317460, + "thread": 8 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 404778, + "thread": 23 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 587950, + "thread": 25 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 662829, + "thread": 13 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 887523, + "thread": 22 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1143647, + "thread": 3 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1240146, + "thread": 12 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1448880, + "thread": 20 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1620789, + "thread": 27 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1740192, + "thread": 29 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 1892869, + "thread": 10 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2081581, + "thread": 20 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2238728, + "thread": 11 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2364530, + "thread": 5 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2470630, + "thread": 9 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2721539, + "thread": 13 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 2935494, + "thread": 26 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 3038390, + "thread": 15 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 3259671, + "thread": 8 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 3429004, + "thread": 11 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 3549227, + "thread": 5 + } + }, + { + "amount": "509.274711894", + "slot": { + "period": 3778041, + "thread": 12 + } + }, + { + "amount": "509.274711902", + "slot": { + "period": 3902862, + "thread": 26 + } + } + ], + "AU12L56xTmYsDLJtKY8sefZXyPP3p1EaPgFeqUbsgoYXL7dqxCMYK": [ + { + "amount": "133.430982019", + "slot": { + "period": 166220, + "thread": 29 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 186819, + "thread": 12 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 435884, + "thread": 26 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 652141, + "thread": 30 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 817880, + "thread": 11 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 948917, + "thread": 6 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1010181, + "thread": 14 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1271406, + "thread": 14 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1393023, + "thread": 24 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1595038, + "thread": 6 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1768295, + "thread": 10 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 1971014, + "thread": 29 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2066848, + "thread": 11 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2261809, + "thread": 8 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2378501, + "thread": 3 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2511057, + "thread": 0 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2673696, + "thread": 15 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 2794310, + "thread": 23 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 3072467, + "thread": 21 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 3208214, + "thread": 14 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 3381749, + "thread": 14 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 3504835, + "thread": 19 + } + }, + { + "amount": "133.430982019", + "slot": { + "period": 3664107, + "thread": 2 + } + }, + { + "amount": "133.430982008", + "slot": { + "period": 3858905, + "thread": 11 + } + } + ], + "AU12L5r4RKCd9MWSCLJFBfyq59zBKbz3N1HEWXYXf5qd7EHN61E95": [ + { + "amount": "129.093306039", + "slot": { + "period": 40675, + "thread": 11 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 229656, + "thread": 16 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 367057, + "thread": 30 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 594332, + "thread": 20 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 671500, + "thread": 4 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 972908, + "thread": 31 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1135585, + "thread": 1 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1302358, + "thread": 18 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1329053, + "thread": 27 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1575807, + "thread": 31 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1798841, + "thread": 29 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1917250, + "thread": 12 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 1981437, + "thread": 10 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 2183990, + "thread": 30 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 2367723, + "thread": 25 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 2590904, + "thread": 27 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 2656931, + "thread": 7 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 2873001, + "thread": 9 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 3044089, + "thread": 10 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 3231899, + "thread": 9 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 3421129, + "thread": 27 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 3542960, + "thread": 21 + } + }, + { + "amount": "129.093306039", + "slot": { + "period": 3771875, + "thread": 14 + } + }, + { + "amount": "129.093306041", + "slot": { + "period": 3946569, + "thread": 1 + } + } + ], + "AU12L6F7oE49bRHd7GTQu1e5QHfmkV8wWYGjswJ7H4oaof284nqx8": [ + { + "amount": "76.129173308", + "slot": { + "period": 65134, + "thread": 10 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 306954, + "thread": 11 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 441762, + "thread": 20 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 501254, + "thread": 26 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 738703, + "thread": 25 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 971008, + "thread": 31 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1149330, + "thread": 13 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1280992, + "thread": 20 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1452241, + "thread": 8 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1610354, + "thread": 9 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1737649, + "thread": 19 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 1947636, + "thread": 10 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2027412, + "thread": 26 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2160235, + "thread": 8 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2414518, + "thread": 6 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2560725, + "thread": 29 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2747699, + "thread": 0 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 2801647, + "thread": 20 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 3065063, + "thread": 1 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 3201956, + "thread": 13 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 3289851, + "thread": 8 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 3452538, + "thread": 23 + } + }, + { + "amount": "76.129173308", + "slot": { + "period": 3769593, + "thread": 31 + } + }, + { + "amount": "76.129173317", + "slot": { + "period": 3914000, + "thread": 15 + } + } + ], + "AU12L6Gng7cqWiiNwydTFmeuuFRVLTSrjDF6fKnGojwUVz9h9kGnT": [ + { + "amount": "334.629323955", + "slot": { + "period": 100683, + "thread": 17 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 259500, + "thread": 5 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 350227, + "thread": 8 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 552928, + "thread": 20 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 677559, + "thread": 5 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 894571, + "thread": 25 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1138776, + "thread": 16 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1261326, + "thread": 21 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1439409, + "thread": 4 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1621592, + "thread": 25 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1795734, + "thread": 9 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1844542, + "thread": 10 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 1993461, + "thread": 23 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2286704, + "thread": 25 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2302120, + "thread": 8 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2481801, + "thread": 30 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2686825, + "thread": 6 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2858266, + "thread": 17 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 2993383, + "thread": 30 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 3142735, + "thread": 18 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 3293128, + "thread": 5 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 3552723, + "thread": 8 + } + }, + { + "amount": "334.629323955", + "slot": { + "period": 3727745, + "thread": 29 + } + }, + { + "amount": "334.629323951", + "slot": { + "period": 3930751, + "thread": 21 + } + } + ], + "AU12L6QG4JsH6seq59vTNC8VAmX8qfNEFbfAje7U2GGtpHziLD3Fj": [ + { + "amount": "90.747672838", + "slot": { + "period": 55441, + "thread": 16 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 235813, + "thread": 11 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 350690, + "thread": 27 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 560156, + "thread": 2 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 813092, + "thread": 14 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 867662, + "thread": 16 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1017890, + "thread": 17 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1183538, + "thread": 18 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1450415, + "thread": 13 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1622218, + "thread": 14 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1695919, + "thread": 20 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 1863232, + "thread": 14 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2111377, + "thread": 25 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2189339, + "thread": 27 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2436730, + "thread": 22 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2477202, + "thread": 22 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2636500, + "thread": 30 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 2953074, + "thread": 2 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 3001828, + "thread": 8 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 3224738, + "thread": 21 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 3402837, + "thread": 12 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 3591276, + "thread": 18 + } + }, + { + "amount": "90.747672838", + "slot": { + "period": 3682651, + "thread": 29 + } + }, + { + "amount": "90.747672828", + "slot": { + "period": 3946018, + "thread": 1 + } + } + ], + "AU12L6QqRR3UraRpxyoUXtVcxch5Fy3PSDpjpnimJb9KCg3P4KDbA": [ + { + "amount": "241.879989181", + "slot": { + "period": 56474, + "thread": 6 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 306588, + "thread": 27 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 328226, + "thread": 0 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 494857, + "thread": 2 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 818399, + "thread": 23 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 949682, + "thread": 30 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1023496, + "thread": 26 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1240396, + "thread": 15 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1456418, + "thread": 18 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1607403, + "thread": 10 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1666147, + "thread": 5 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 1837510, + "thread": 9 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2092008, + "thread": 22 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2175332, + "thread": 26 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2348190, + "thread": 7 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2599944, + "thread": 31 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2759380, + "thread": 20 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 2922783, + "thread": 5 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 3095441, + "thread": 4 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 3123208, + "thread": 20 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 3396153, + "thread": 9 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 3609350, + "thread": 31 + } + }, + { + "amount": "241.879989181", + "slot": { + "period": 3686417, + "thread": 17 + } + }, + { + "amount": "241.879989187", + "slot": { + "period": 3862618, + "thread": 0 + } + } + ], + "AU12L6b5LpJP5W2oVWK7v9gfA3XqkjPKb2Ubgp3MSxbw1eG7WrAyY": [ + { + "amount": "631.996949633", + "slot": { + "period": 144265, + "thread": 31 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 304607, + "thread": 15 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 484183, + "thread": 14 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 509359, + "thread": 13 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 689121, + "thread": 1 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 874971, + "thread": 24 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1067608, + "thread": 22 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1298603, + "thread": 29 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1384750, + "thread": 18 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1526056, + "thread": 13 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1714073, + "thread": 6 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 1931970, + "thread": 7 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2050215, + "thread": 24 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2200563, + "thread": 29 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2354730, + "thread": 29 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2618757, + "thread": 3 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2781654, + "thread": 0 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 2809574, + "thread": 20 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 3005725, + "thread": 2 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 3161791, + "thread": 2 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 3378401, + "thread": 26 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 3589120, + "thread": 10 + } + }, + { + "amount": "631.996949633", + "slot": { + "period": 3724812, + "thread": 8 + } + }, + { + "amount": "631.996949636", + "slot": { + "period": 3849101, + "thread": 29 + } + } + ], + "AU12L6z4BdDeisZUxzYCxJVTBm6b6bKibVmPyUCmaKX6LT7LETr23": [ + { + "amount": "128.392469221", + "slot": { + "period": 49541, + "thread": 6 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 264633, + "thread": 30 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 406565, + "thread": 27 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 642544, + "thread": 7 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 657451, + "thread": 25 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 904665, + "thread": 7 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1089200, + "thread": 12 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1316302, + "thread": 18 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1431964, + "thread": 18 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1545655, + "thread": 15 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1799452, + "thread": 0 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 1895883, + "thread": 9 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2051225, + "thread": 2 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2144266, + "thread": 29 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2359557, + "thread": 19 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2555400, + "thread": 15 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2675940, + "thread": 1 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2886778, + "thread": 1 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 2963070, + "thread": 19 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 3143093, + "thread": 3 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 3310856, + "thread": 14 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 3612439, + "thread": 8 + } + }, + { + "amount": "128.392469221", + "slot": { + "period": 3710878, + "thread": 23 + } + }, + { + "amount": "128.392469232", + "slot": { + "period": 3892709, + "thread": 21 + } + } + ], + "AU12L7juJku9vPeYmzKE9F6YexUzZZceXexEVH8xYb28sn2nESw2": [ + { + "amount": "157.750366718", + "slot": { + "period": 19970, + "thread": 22 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 200464, + "thread": 13 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 336293, + "thread": 5 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 573095, + "thread": 28 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 661538, + "thread": 11 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 879331, + "thread": 17 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1054259, + "thread": 26 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1286761, + "thread": 2 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1398007, + "thread": 23 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1624206, + "thread": 24 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1728514, + "thread": 24 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 1924812, + "thread": 31 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2070960, + "thread": 26 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2211675, + "thread": 18 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2436611, + "thread": 25 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2565243, + "thread": 19 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2708584, + "thread": 16 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 2811434, + "thread": 17 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 3073673, + "thread": 31 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 3145255, + "thread": 21 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 3294572, + "thread": 0 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 3520482, + "thread": 22 + } + }, + { + "amount": "157.750366718", + "slot": { + "period": 3708197, + "thread": 2 + } + }, + { + "amount": "157.750366724", + "slot": { + "period": 3841062, + "thread": 5 + } + } + ], + "AU12L8WES3sF1WAnce7AsPvUSSZMUgtMQjC9BXZzBAudLnNdh3NtM": [ + { + "amount": "82.250851520", + "slot": { + "period": 46725, + "thread": 14 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 270079, + "thread": 14 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 327426, + "thread": 24 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 505786, + "thread": 29 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 709432, + "thread": 28 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 910416, + "thread": 5 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1090548, + "thread": 7 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1221528, + "thread": 22 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1439646, + "thread": 27 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1606587, + "thread": 24 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1659057, + "thread": 17 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 1823648, + "thread": 7 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2006877, + "thread": 22 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2205844, + "thread": 11 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2316126, + "thread": 18 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2488279, + "thread": 20 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2686112, + "thread": 30 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 2921809, + "thread": 4 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 3112559, + "thread": 13 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 3218354, + "thread": 20 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 3412563, + "thread": 28 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 3523348, + "thread": 16 + } + }, + { + "amount": "82.250851520", + "slot": { + "period": 3758670, + "thread": 28 + } + }, + { + "amount": "82.250851513", + "slot": { + "period": 3833348, + "thread": 18 + } + } + ], + "AU12L8tTiLZ5Lw5uJn9mnZUSSnwfHQvGZB9q1rqPbdjX7fJrnPazk": [ + { + "amount": "477.113928663", + "slot": { + "period": 134614, + "thread": 15 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 319466, + "thread": 19 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 340245, + "thread": 12 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 649151, + "thread": 25 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 655897, + "thread": 9 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 967563, + "thread": 18 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1121306, + "thread": 30 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1266620, + "thread": 22 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1435679, + "thread": 10 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1604018, + "thread": 17 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1779665, + "thread": 25 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 1870473, + "thread": 14 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2095650, + "thread": 29 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2159272, + "thread": 3 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2359366, + "thread": 24 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2582172, + "thread": 28 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2628922, + "thread": 6 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2885956, + "thread": 6 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 2990244, + "thread": 9 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 3279733, + "thread": 27 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 3343926, + "thread": 17 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 3462032, + "thread": 21 + } + }, + { + "amount": "477.113928663", + "slot": { + "period": 3753458, + "thread": 30 + } + }, + { + "amount": "477.113928672", + "slot": { + "period": 3887621, + "thread": 26 + } + } + ], + "AU12L9EVU3HepNmULc7fkCUZSndtxkbP2euy42m2Cne1fBgMCgKgx": [ + { + "amount": "113.259383306", + "slot": { + "period": 154848, + "thread": 5 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 317203, + "thread": 4 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 412853, + "thread": 12 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 640802, + "thread": 4 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 740629, + "thread": 24 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 925607, + "thread": 13 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1100763, + "thread": 12 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1250104, + "thread": 18 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1345908, + "thread": 6 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1505192, + "thread": 18 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1705395, + "thread": 19 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 1859610, + "thread": 26 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2108122, + "thread": 0 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2163584, + "thread": 9 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2348835, + "thread": 22 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2569185, + "thread": 10 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2652123, + "thread": 11 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 2876181, + "thread": 31 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 3043236, + "thread": 10 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 3247676, + "thread": 1 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 3405899, + "thread": 8 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 3544346, + "thread": 3 + } + }, + { + "amount": "113.259383306", + "slot": { + "period": 3744287, + "thread": 10 + } + }, + { + "amount": "113.259383318", + "slot": { + "period": 3792169, + "thread": 9 + } + } + ], + "AU12L9w3C3WLcBuEMB9vbdSHfFAfLnFXCkW9BY8oknhTs2vFL9RHd": [ + { + "amount": "80.636934848", + "slot": { + "period": 91570, + "thread": 25 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 193198, + "thread": 29 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 382463, + "thread": 23 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 504528, + "thread": 10 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 704375, + "thread": 25 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 935835, + "thread": 12 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1079394, + "thread": 5 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1197854, + "thread": 20 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1452062, + "thread": 16 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1536610, + "thread": 1 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1744774, + "thread": 16 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 1850152, + "thread": 4 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2094048, + "thread": 18 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2236476, + "thread": 11 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2431257, + "thread": 24 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2612536, + "thread": 4 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2769840, + "thread": 7 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2878507, + "thread": 13 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 2956855, + "thread": 6 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 3208698, + "thread": 13 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 3345714, + "thread": 3 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 3463029, + "thread": 16 + } + }, + { + "amount": "80.636934848", + "slot": { + "period": 3689202, + "thread": 2 + } + }, + { + "amount": "80.636934837", + "slot": { + "period": 3831655, + "thread": 3 + } + } + ], + "AU12LCGwQVfFYThmqt7uNZHQx9CRmZnestUNqBzzFd7wkPzHWSKdd": [ + { + "amount": "266.602251780", + "slot": { + "period": 78043, + "thread": 18 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 173188, + "thread": 27 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 490672, + "thread": 11 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 578787, + "thread": 18 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 684285, + "thread": 13 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 875037, + "thread": 25 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1077456, + "thread": 18 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1188680, + "thread": 16 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1456676, + "thread": 23 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1593978, + "thread": 10 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1673914, + "thread": 20 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1880113, + "thread": 8 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 1999443, + "thread": 11 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 2203099, + "thread": 20 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 2338254, + "thread": 1 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 2582031, + "thread": 8 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 2658871, + "thread": 3 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 2821331, + "thread": 24 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 3042609, + "thread": 29 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 3134465, + "thread": 7 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 3345335, + "thread": 0 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 3580973, + "thread": 9 + } + }, + { + "amount": "266.602251780", + "slot": { + "period": 3771324, + "thread": 1 + } + }, + { + "amount": "266.602251771", + "slot": { + "period": 3793592, + "thread": 22 + } + } + ], + "AU12LCdqF9VDtwuopr9grP16EcFKwcmheWeHft9S5ccBTAkyoQbK1": [ + { + "amount": "159.146028284", + "slot": { + "period": 74800, + "thread": 24 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 278666, + "thread": 27 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 430496, + "thread": 24 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 603651, + "thread": 30 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 682178, + "thread": 23 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 857070, + "thread": 7 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1057661, + "thread": 12 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1175222, + "thread": 31 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1477578, + "thread": 12 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1584549, + "thread": 17 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1711997, + "thread": 23 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 1849410, + "thread": 29 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2024035, + "thread": 15 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2227520, + "thread": 4 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2451470, + "thread": 12 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2574638, + "thread": 0 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2769251, + "thread": 14 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2821211, + "thread": 10 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 2986620, + "thread": 2 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 3256945, + "thread": 26 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 3322549, + "thread": 16 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 3504295, + "thread": 22 + } + }, + { + "amount": "159.146028284", + "slot": { + "period": 3673894, + "thread": 3 + } + }, + { + "amount": "159.146028277", + "slot": { + "period": 3802996, + "thread": 4 + } + } + ], + "AU12LDhpUAaoj2uuT4rRhpUfK5kHNXu1wQdiLCATVRwiSqYPeDrVr": [ + { + "amount": "145.246228497", + "slot": { + "period": 18719, + "thread": 14 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 316548, + "thread": 3 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 467409, + "thread": 28 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 646704, + "thread": 26 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 662437, + "thread": 11 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 869266, + "thread": 17 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1000429, + "thread": 30 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1307356, + "thread": 14 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1405821, + "thread": 14 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1550816, + "thread": 3 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1806034, + "thread": 11 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 1892088, + "thread": 1 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2105739, + "thread": 29 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2145704, + "thread": 10 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2330685, + "thread": 23 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2620469, + "thread": 9 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2625840, + "thread": 25 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 2902926, + "thread": 22 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 3106409, + "thread": 0 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 3183280, + "thread": 0 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 3434810, + "thread": 6 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 3512853, + "thread": 1 + } + }, + { + "amount": "145.246228497", + "slot": { + "period": 3634710, + "thread": 9 + } + }, + { + "amount": "145.246228498", + "slot": { + "period": 3932204, + "thread": 21 + } + } + ], + "AU12LECp7WHckYtRLU3b6XCnM79Hya253zyKLBYicxbmnHdTb5A6u": [ + { + "amount": "155.807634604", + "slot": { + "period": 84221, + "thread": 1 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 214247, + "thread": 22 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 415380, + "thread": 4 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 525255, + "thread": 22 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 798989, + "thread": 7 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 894635, + "thread": 3 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1017891, + "thread": 24 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1256721, + "thread": 17 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1351409, + "thread": 10 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1479684, + "thread": 1 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1705035, + "thread": 9 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 1943475, + "thread": 8 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2010443, + "thread": 0 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2286032, + "thread": 24 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2408852, + "thread": 23 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2482421, + "thread": 17 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2770223, + "thread": 12 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 2820680, + "thread": 31 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 3103210, + "thread": 4 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 3258893, + "thread": 12 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 3368233, + "thread": 7 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 3577793, + "thread": 10 + } + }, + { + "amount": "155.807634604", + "slot": { + "period": 3625968, + "thread": 22 + } + }, + { + "amount": "155.807634612", + "slot": { + "period": 3889146, + "thread": 6 + } + } + ], + "AU12LEf8Y2ipG8iHnpaiXtbAhMD7R3J11NUWz9jrheonbtzLcUdFd": [ + { + "amount": "261.870157422", + "slot": { + "period": 44777, + "thread": 29 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 195978, + "thread": 8 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 350010, + "thread": 24 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 548482, + "thread": 4 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 809790, + "thread": 14 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 833772, + "thread": 21 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1073095, + "thread": 7 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1284593, + "thread": 8 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1439028, + "thread": 12 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1510115, + "thread": 15 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1766974, + "thread": 27 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 1921974, + "thread": 29 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2111271, + "thread": 10 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2262121, + "thread": 19 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2428279, + "thread": 21 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2491587, + "thread": 18 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2725407, + "thread": 10 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 2939191, + "thread": 24 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 3046664, + "thread": 27 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 3147497, + "thread": 20 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 3313866, + "thread": 31 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 3525221, + "thread": 9 + } + }, + { + "amount": "261.870157422", + "slot": { + "period": 3645269, + "thread": 13 + } + }, + { + "amount": "261.870157421", + "slot": { + "period": 3799522, + "thread": 11 + } + } + ], + "AU12LFPzqod9zPkmkMAKq9CgWL88dExiz1SkfL9JBhPYujGaFQT1h": [ + { + "amount": "364.633586948", + "slot": { + "period": 130705, + "thread": 7 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 204815, + "thread": 27 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 437558, + "thread": 8 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 518547, + "thread": 6 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 815054, + "thread": 30 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 821727, + "thread": 16 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1017691, + "thread": 29 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1286802, + "thread": 1 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1462639, + "thread": 5 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1606822, + "thread": 23 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1736192, + "thread": 8 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 1945210, + "thread": 7 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2099223, + "thread": 22 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2189739, + "thread": 18 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2325177, + "thread": 2 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2511990, + "thread": 1 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2750736, + "thread": 19 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 2892256, + "thread": 19 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 3044646, + "thread": 0 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 3177510, + "thread": 19 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 3408996, + "thread": 0 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 3511739, + "thread": 27 + } + }, + { + "amount": "364.633586948", + "slot": { + "period": 3744908, + "thread": 3 + } + }, + { + "amount": "364.633586955", + "slot": { + "period": 3796287, + "thread": 2 + } + } + ], + "AU12LFfizrPXc411gqZHwsBh4LHHJEryEfcqsYskBCuC9uYsztwQJ": [ + { + "amount": "240.643640659", + "slot": { + "period": 137355, + "thread": 19 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 186418, + "thread": 30 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 366104, + "thread": 17 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 546245, + "thread": 19 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 817672, + "thread": 8 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 857893, + "thread": 15 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 988908, + "thread": 21 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 1266412, + "thread": 18 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 1343530, + "thread": 31 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 1583865, + "thread": 29 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 1758508, + "thread": 5 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 1941063, + "thread": 21 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2128373, + "thread": 7 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2198406, + "thread": 11 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2450474, + "thread": 18 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2572584, + "thread": 4 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2714832, + "thread": 20 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2859301, + "thread": 14 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 2978907, + "thread": 5 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 3256617, + "thread": 9 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 3415200, + "thread": 12 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 3473056, + "thread": 5 + } + }, + { + "amount": "240.643640659", + "slot": { + "period": 3717787, + "thread": 4 + } + }, + { + "amount": "240.643640657", + "slot": { + "period": 3912145, + "thread": 11 + } + } + ], + "AU12LGuHoVnuRjGBXy3313dg1qDgEsrrFyqWbqh6aW4fy7GxdNR4B": [ + { + "amount": "445.412558850", + "slot": { + "period": 73289, + "thread": 22 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 267727, + "thread": 18 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 347984, + "thread": 27 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 628507, + "thread": 12 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 661891, + "thread": 7 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 980818, + "thread": 25 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1097499, + "thread": 10 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1293306, + "thread": 9 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1371708, + "thread": 4 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1619065, + "thread": 5 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1697653, + "thread": 3 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 1905889, + "thread": 12 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2080412, + "thread": 11 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2149336, + "thread": 8 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2397542, + "thread": 21 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2548441, + "thread": 25 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2726023, + "thread": 26 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2812835, + "thread": 16 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 2957213, + "thread": 3 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 3265781, + "thread": 28 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 3318603, + "thread": 25 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 3461014, + "thread": 6 + } + }, + { + "amount": "445.412558850", + "slot": { + "period": 3683112, + "thread": 27 + } + }, + { + "amount": "445.412558858", + "slot": { + "period": 3826524, + "thread": 28 + } + } + ], + "AU12LHCQMs3ZMYDWys9qCWTY7WpEhTsJSYRn1uQr2xJ5gpDXXke72": [ + { + "amount": "183.211490083", + "slot": { + "period": 73487, + "thread": 10 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 189384, + "thread": 12 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 467829, + "thread": 19 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 544116, + "thread": 31 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 722477, + "thread": 10 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 940363, + "thread": 6 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 987676, + "thread": 21 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 1187531, + "thread": 26 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 1414256, + "thread": 21 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 1494759, + "thread": 9 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 1735833, + "thread": 30 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 1918602, + "thread": 25 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2050013, + "thread": 2 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2153015, + "thread": 3 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2295351, + "thread": 4 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2613606, + "thread": 24 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2636286, + "thread": 16 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 2807810, + "thread": 16 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 3026455, + "thread": 14 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 3237646, + "thread": 30 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 3340473, + "thread": 2 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 3536497, + "thread": 11 + } + }, + { + "amount": "183.211490083", + "slot": { + "period": 3722220, + "thread": 28 + } + }, + { + "amount": "183.211490080", + "slot": { + "period": 3802301, + "thread": 13 + } + } + ], + "AU12LHFAAjFZjuSfnpfZnqK9KQrwMZZ5f5hHkbECEJxpPKQW5Xuz5": [ + { + "amount": "149.934629501", + "slot": { + "period": 34963, + "thread": 19 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 167694, + "thread": 17 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 443442, + "thread": 16 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 601578, + "thread": 31 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 766286, + "thread": 2 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 934401, + "thread": 10 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 996070, + "thread": 17 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 1195985, + "thread": 21 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 1369602, + "thread": 10 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 1527274, + "thread": 30 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 1671609, + "thread": 15 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 1951758, + "thread": 0 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2057674, + "thread": 11 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2153829, + "thread": 28 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2394079, + "thread": 11 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2501661, + "thread": 11 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2775834, + "thread": 13 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 2843549, + "thread": 4 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 3102496, + "thread": 24 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 3151921, + "thread": 31 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 3358359, + "thread": 26 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 3483756, + "thread": 20 + } + }, + { + "amount": "149.934629501", + "slot": { + "period": 3671083, + "thread": 0 + } + }, + { + "amount": "149.934629499", + "slot": { + "period": 3803911, + "thread": 10 + } + } + ], + "AU12LJnue5zGXfFbJnQcJdYSp4xo7UDhCeaYHEK3iinC9aVjT6yNW": [ + { + "amount": "146.199662113", + "slot": { + "period": 62620, + "thread": 3 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 278687, + "thread": 9 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 336469, + "thread": 13 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 637929, + "thread": 17 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 698187, + "thread": 5 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 971004, + "thread": 24 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1125481, + "thread": 31 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1250270, + "thread": 5 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1420976, + "thread": 27 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1538499, + "thread": 2 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1662245, + "thread": 20 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1953557, + "thread": 10 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 1977109, + "thread": 11 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 2146813, + "thread": 19 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 2387972, + "thread": 1 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 2603583, + "thread": 29 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 2627176, + "thread": 10 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 2921561, + "thread": 7 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 3073585, + "thread": 24 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 3231487, + "thread": 31 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 3398140, + "thread": 8 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 3536172, + "thread": 9 + } + }, + { + "amount": "146.199662113", + "slot": { + "period": 3641715, + "thread": 15 + } + }, + { + "amount": "146.199662109", + "slot": { + "period": 3811849, + "thread": 19 + } + } + ], + "AU12LJw5en4jDtZH8sbjizxgeFaSz6KeoroTUHkbm9AcisyExmNzv": [ + { + "amount": "313.886512940", + "slot": { + "period": 60369, + "thread": 15 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 263090, + "thread": 4 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 383600, + "thread": 8 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 522299, + "thread": 14 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 791388, + "thread": 14 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 938993, + "thread": 28 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1115290, + "thread": 9 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1209569, + "thread": 15 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1355490, + "thread": 11 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1486506, + "thread": 8 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1767073, + "thread": 18 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1897969, + "thread": 21 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 1989235, + "thread": 1 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 2194767, + "thread": 3 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 2329753, + "thread": 2 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 2507429, + "thread": 17 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 2638366, + "thread": 6 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 2822366, + "thread": 10 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 3064089, + "thread": 5 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 3204458, + "thread": 2 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 3350546, + "thread": 12 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 3525013, + "thread": 2 + } + }, + { + "amount": "313.886512940", + "slot": { + "period": 3654743, + "thread": 16 + } + }, + { + "amount": "313.886512936", + "slot": { + "period": 3803213, + "thread": 0 + } + } + ], + "AU12LK5TFZWBKHD4NX5PCxf2yV7qHHFLXKNNAfbFBjcekpeZE77h3": [ + { + "amount": "111.902488420", + "slot": { + "period": 53406, + "thread": 6 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 308658, + "thread": 12 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 368919, + "thread": 12 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 566023, + "thread": 6 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 681788, + "thread": 7 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 943453, + "thread": 30 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1026349, + "thread": 30 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1170668, + "thread": 31 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1320259, + "thread": 11 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1571971, + "thread": 11 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1784060, + "thread": 13 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 1912749, + "thread": 15 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2076406, + "thread": 26 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2160612, + "thread": 17 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2308990, + "thread": 16 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2473445, + "thread": 15 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2724474, + "thread": 12 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 2935219, + "thread": 10 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3030153, + "thread": 15 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3233560, + "thread": 1 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3378716, + "thread": 2 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3588587, + "thread": 29 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3777185, + "thread": 1 + } + }, + { + "amount": "111.902488420", + "slot": { + "period": 3836144, + "thread": 5 + } + } + ], + "AU12LKtYKAa4Zd6nsiKVpDFRkvLukwLBHs7vi4TfeYrwpgnBxyLRQ": [ + { + "amount": "75.380286980", + "slot": { + "period": 50021, + "thread": 1 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 214557, + "thread": 30 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 414288, + "thread": 3 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 560389, + "thread": 29 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 804453, + "thread": 11 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 950351, + "thread": 22 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1077634, + "thread": 1 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1303526, + "thread": 7 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1421361, + "thread": 25 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1601726, + "thread": 11 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1715152, + "thread": 9 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1919767, + "thread": 11 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 1993869, + "thread": 4 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2149186, + "thread": 20 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2415820, + "thread": 20 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2505169, + "thread": 15 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2740815, + "thread": 3 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2928889, + "thread": 15 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 2995922, + "thread": 5 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 3137126, + "thread": 8 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 3396090, + "thread": 17 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 3586234, + "thread": 10 + } + }, + { + "amount": "75.380286980", + "slot": { + "period": 3744267, + "thread": 6 + } + }, + { + "amount": "75.380286992", + "slot": { + "period": 3886578, + "thread": 11 + } + } + ], + "AU12LLNJSRzpWW67DdmTeNFTH41DRBSb6xv7SeQR5ogJWRjUa5pKz": [ + { + "amount": "170.955316364", + "slot": { + "period": 69100, + "thread": 7 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 255402, + "thread": 6 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 484215, + "thread": 25 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 494557, + "thread": 19 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 692923, + "thread": 16 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 888021, + "thread": 23 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1140638, + "thread": 28 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1301931, + "thread": 26 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1340597, + "thread": 13 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1558884, + "thread": 16 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1796666, + "thread": 13 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1881859, + "thread": 8 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 1997241, + "thread": 7 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 2171185, + "thread": 21 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 2444105, + "thread": 1 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 2530026, + "thread": 24 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 2781739, + "thread": 24 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 2922410, + "thread": 28 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 3014603, + "thread": 2 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 3215458, + "thread": 21 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 3415843, + "thread": 21 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 3458859, + "thread": 27 + } + }, + { + "amount": "170.955316364", + "slot": { + "period": 3696751, + "thread": 11 + } + }, + { + "amount": "170.955316360", + "slot": { + "period": 3919317, + "thread": 0 + } + } + ], + "AU12LLeqFtwaWERnj9HVC9ZKmLzBASP1V9s1juxV9dMJAt3X5gX3D": [ + { + "amount": "53.211072800", + "slot": { + "period": 150941, + "thread": 23 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 292491, + "thread": 12 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 384098, + "thread": 24 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 643817, + "thread": 13 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 665729, + "thread": 14 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 862246, + "thread": 1 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1017502, + "thread": 29 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1233019, + "thread": 8 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1432418, + "thread": 28 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1645009, + "thread": 6 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1719991, + "thread": 19 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 1918405, + "thread": 1 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2083715, + "thread": 26 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2264317, + "thread": 29 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2424671, + "thread": 24 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2563848, + "thread": 6 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2698701, + "thread": 8 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 2819372, + "thread": 23 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 3099576, + "thread": 17 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 3189179, + "thread": 29 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 3447377, + "thread": 14 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 3472304, + "thread": 23 + } + }, + { + "amount": "53.211072800", + "slot": { + "period": 3747324, + "thread": 16 + } + }, + { + "amount": "53.211072794", + "slot": { + "period": 3921891, + "thread": 14 + } + } + ], + "AU12LLf3azNUgpNbLnFVEk9u2bdCUapv3mhyzCPeGewaGyard6vrH": [ + { + "amount": "143.316681395", + "slot": { + "period": 113606, + "thread": 16 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 194429, + "thread": 5 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 339172, + "thread": 25 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 642465, + "thread": 27 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 688134, + "thread": 5 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 835196, + "thread": 22 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 996265, + "thread": 10 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 1293724, + "thread": 7 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 1471406, + "thread": 29 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 1616421, + "thread": 2 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 1783986, + "thread": 31 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 1835871, + "thread": 16 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2062820, + "thread": 24 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2232682, + "thread": 4 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2335536, + "thread": 17 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2575337, + "thread": 20 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2738271, + "thread": 7 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 2921779, + "thread": 28 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 3057284, + "thread": 14 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 3282646, + "thread": 16 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 3403830, + "thread": 0 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 3495096, + "thread": 20 + } + }, + { + "amount": "143.316681395", + "slot": { + "period": 3777915, + "thread": 0 + } + }, + { + "amount": "143.316681394", + "slot": { + "period": 3822106, + "thread": 25 + } + } + ], + "AU12LM7YChfP6frtX43mav8YfPjVpzud6wmvoKEsjtHiATuGmDLhG": [ + { + "amount": "144.580667026", + "slot": { + "period": 39020, + "thread": 5 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 273212, + "thread": 3 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 486423, + "thread": 22 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 632353, + "thread": 19 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 743861, + "thread": 12 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 939137, + "thread": 12 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1061497, + "thread": 3 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1293808, + "thread": 4 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1338269, + "thread": 28 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1626697, + "thread": 0 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1676584, + "thread": 25 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 1923213, + "thread": 27 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2088605, + "thread": 7 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2164370, + "thread": 20 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2349932, + "thread": 6 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2510802, + "thread": 14 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2721657, + "thread": 3 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 2924274, + "thread": 2 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 3091074, + "thread": 26 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 3244131, + "thread": 7 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 3347260, + "thread": 31 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 3610569, + "thread": 7 + } + }, + { + "amount": "144.580667026", + "slot": { + "period": 3618105, + "thread": 6 + } + }, + { + "amount": "144.580667023", + "slot": { + "period": 3901846, + "thread": 3 + } + } + ], + "AU12LM9TqbHFdS5t4WgWmZ9gyAmDRtLaSjW4BgrkYBe1PPvKj14tB": [ + { + "amount": "142.425919904", + "slot": { + "period": 144978, + "thread": 0 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 296690, + "thread": 12 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 350138, + "thread": 2 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 581312, + "thread": 3 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 721379, + "thread": 7 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 907585, + "thread": 13 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1131388, + "thread": 24 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1311506, + "thread": 19 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1394939, + "thread": 0 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1506472, + "thread": 31 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1724995, + "thread": 3 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 1954242, + "thread": 8 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2001398, + "thread": 30 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2171435, + "thread": 19 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2352033, + "thread": 15 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2581774, + "thread": 30 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2722998, + "thread": 17 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 2837722, + "thread": 3 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 3070735, + "thread": 7 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 3228146, + "thread": 10 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 3439130, + "thread": 25 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 3495343, + "thread": 7 + } + }, + { + "amount": "142.425919904", + "slot": { + "period": 3625120, + "thread": 22 + } + }, + { + "amount": "142.425919896", + "slot": { + "period": 3855002, + "thread": 19 + } + } + ], + "AU12LMXaDaMfkomd5njuFCdFUngtYpUBJfQnAq7TGh69LB9QSgav2": [ + { + "amount": "135.131441827", + "slot": { + "period": 61080, + "thread": 20 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 283094, + "thread": 26 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 324291, + "thread": 12 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 555924, + "thread": 4 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 815513, + "thread": 28 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 901272, + "thread": 0 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1067229, + "thread": 24 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1151540, + "thread": 24 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1352593, + "thread": 3 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1567655, + "thread": 12 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1745453, + "thread": 22 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 1930659, + "thread": 21 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2021120, + "thread": 5 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2163631, + "thread": 11 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2422944, + "thread": 10 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2524263, + "thread": 2 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2704461, + "thread": 21 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 2897379, + "thread": 26 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 3053309, + "thread": 28 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 3186581, + "thread": 2 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 3439286, + "thread": 29 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 3574848, + "thread": 7 + } + }, + { + "amount": "135.131441827", + "slot": { + "period": 3657571, + "thread": 5 + } + }, + { + "amount": "135.131441819", + "slot": { + "period": 3927881, + "thread": 15 + } + } + ], + "AU12LNmP5socTMuDeZjoqfH1dX7go1EoQhLsXTnecWpJXQKnEGxoN": [ + { + "amount": "524.993067146", + "slot": { + "period": 90956, + "thread": 16 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 229446, + "thread": 9 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 333351, + "thread": 18 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 612052, + "thread": 4 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 799540, + "thread": 5 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 847652, + "thread": 20 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1074317, + "thread": 26 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1316190, + "thread": 8 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1473834, + "thread": 14 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1611486, + "thread": 12 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1696865, + "thread": 28 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 1867672, + "thread": 16 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2067874, + "thread": 2 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2164079, + "thread": 28 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2377308, + "thread": 6 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2614273, + "thread": 9 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2625600, + "thread": 21 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 2844411, + "thread": 16 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 3104220, + "thread": 7 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 3281174, + "thread": 22 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 3366252, + "thread": 8 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 3578591, + "thread": 15 + } + }, + { + "amount": "524.993067146", + "slot": { + "period": 3731270, + "thread": 14 + } + }, + { + "amount": "524.993067155", + "slot": { + "period": 3897922, + "thread": 13 + } + } + ], + "AU12LNvQMaSvSGuT6GpTNJrdjSqHJ8geKSR2UHdsWEAX859Hx4nca": [ + { + "amount": "170.237944846", + "slot": { + "period": 97487, + "thread": 17 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 300564, + "thread": 21 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 349031, + "thread": 15 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 500403, + "thread": 30 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 803444, + "thread": 31 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 824115, + "thread": 29 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1135490, + "thread": 20 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1163906, + "thread": 11 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1450844, + "thread": 30 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1568830, + "thread": 2 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1693959, + "thread": 9 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 1907002, + "thread": 8 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2016294, + "thread": 4 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2219889, + "thread": 28 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2353730, + "thread": 21 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2600579, + "thread": 13 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2648842, + "thread": 19 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 2915884, + "thread": 13 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 3096390, + "thread": 9 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 3153344, + "thread": 30 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 3375579, + "thread": 4 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 3453932, + "thread": 9 + } + }, + { + "amount": "170.237944846", + "slot": { + "period": 3618719, + "thread": 22 + } + }, + { + "amount": "170.237944858", + "slot": { + "period": 3862745, + "thread": 26 + } + } + ], + "AU12LP1tfkypYnqYGcQKj8JhVrxwAaRNDGydmfVjrLJvWyorgbgK8": [ + { + "amount": "55.937739137", + "slot": { + "period": 167244, + "thread": 13 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 321578, + "thread": 23 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 424167, + "thread": 23 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 496651, + "thread": 18 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 706400, + "thread": 4 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 873071, + "thread": 27 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1131247, + "thread": 16 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1199925, + "thread": 23 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1472411, + "thread": 29 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1645611, + "thread": 6 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1657331, + "thread": 0 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 1925159, + "thread": 14 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2005061, + "thread": 17 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2165731, + "thread": 31 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2422986, + "thread": 8 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2518604, + "thread": 12 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2662270, + "thread": 12 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 2942955, + "thread": 31 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 3020084, + "thread": 25 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 3151961, + "thread": 8 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 3440883, + "thread": 25 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 3535999, + "thread": 14 + } + }, + { + "amount": "55.937739137", + "slot": { + "period": 3643341, + "thread": 2 + } + }, + { + "amount": "55.937739136", + "slot": { + "period": 3842104, + "thread": 11 + } + } + ], + "AU12LPUNkQnt929UvAnCRZnYTsxjxnwPxR7DEkSw4GBGEeAJG5N5R": [ + { + "amount": "79.504630533", + "slot": { + "period": 159843, + "thread": 25 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 220206, + "thread": 5 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 391973, + "thread": 5 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 516543, + "thread": 26 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 798691, + "thread": 29 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 972631, + "thread": 23 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1096317, + "thread": 26 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1234567, + "thread": 26 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1390006, + "thread": 9 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1609504, + "thread": 6 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1724706, + "thread": 17 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1900908, + "thread": 7 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 1989711, + "thread": 9 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 2257075, + "thread": 8 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 2365000, + "thread": 6 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 2590208, + "thread": 4 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 2648196, + "thread": 16 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 2911798, + "thread": 30 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 3090160, + "thread": 23 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 3132113, + "thread": 23 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 3386479, + "thread": 23 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 3488944, + "thread": 1 + } + }, + { + "amount": "79.504630533", + "slot": { + "period": 3708679, + "thread": 21 + } + }, + { + "amount": "79.504630524", + "slot": { + "period": 3908440, + "thread": 21 + } + } + ], + "AU12LPX1zDNqoVHp6uDkE2wcJsNfzonMokX68wAGCEtvAmZKKmBJn": [ + { + "amount": "182.354297671", + "slot": { + "period": 32769, + "thread": 7 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 237003, + "thread": 9 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 384771, + "thread": 21 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 518808, + "thread": 6 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 707019, + "thread": 6 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 936904, + "thread": 28 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1142433, + "thread": 28 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1190994, + "thread": 1 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1391574, + "thread": 23 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1594759, + "thread": 9 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1657048, + "thread": 9 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1973702, + "thread": 13 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 1979237, + "thread": 8 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2175593, + "thread": 13 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2401402, + "thread": 16 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2477218, + "thread": 4 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2767891, + "thread": 30 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2825880, + "thread": 28 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 2966819, + "thread": 25 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 3143796, + "thread": 5 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 3440361, + "thread": 23 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 3585784, + "thread": 3 + } + }, + { + "amount": "182.354297671", + "slot": { + "period": 3686658, + "thread": 29 + } + }, + { + "amount": "182.354297665", + "slot": { + "period": 3899706, + "thread": 27 + } + } + ], + "AU12LQ8GWammUPN7pBGeXnGR5pymURWp6PyBnNNiezmQvdGRG1Wi3": [ + { + "amount": "273.936559289", + "slot": { + "period": 91644, + "thread": 24 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 272146, + "thread": 8 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 364933, + "thread": 20 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 579276, + "thread": 0 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 710333, + "thread": 11 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 861641, + "thread": 24 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1008919, + "thread": 13 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1313144, + "thread": 13 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1365696, + "thread": 27 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1483803, + "thread": 19 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1740621, + "thread": 10 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 1920703, + "thread": 11 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2036340, + "thread": 22 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2234809, + "thread": 21 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2306047, + "thread": 12 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2547162, + "thread": 25 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2713777, + "thread": 14 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 2878361, + "thread": 31 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 3080975, + "thread": 4 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 3140995, + "thread": 24 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 3421922, + "thread": 26 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 3476551, + "thread": 3 + } + }, + { + "amount": "273.936559289", + "slot": { + "period": 3701341, + "thread": 19 + } + }, + { + "amount": "273.936559285", + "slot": { + "period": 3869561, + "thread": 17 + } + } + ], + "AU12LQmLbGqyK2wGVRmkXN8YLWS1DmznLL9kbE3GJkxdiSfwogQkV": [ + { + "amount": "468.625095922", + "slot": { + "period": 16652, + "thread": 27 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 218689, + "thread": 0 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 383106, + "thread": 21 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 494182, + "thread": 26 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 653836, + "thread": 29 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 900541, + "thread": 3 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1044256, + "thread": 17 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1166924, + "thread": 0 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1417775, + "thread": 25 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1496166, + "thread": 3 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1719250, + "thread": 29 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 1842528, + "thread": 26 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2036116, + "thread": 19 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2230627, + "thread": 19 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2364830, + "thread": 17 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2558265, + "thread": 10 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2672763, + "thread": 20 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 2855433, + "thread": 15 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 3057660, + "thread": 16 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 3148030, + "thread": 11 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 3449210, + "thread": 13 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 3523497, + "thread": 8 + } + }, + { + "amount": "468.625095922", + "slot": { + "period": 3694781, + "thread": 6 + } + }, + { + "amount": "468.625095916", + "slot": { + "period": 3861079, + "thread": 30 + } + } + ], + "AU12LS4Dqz68jncxfbCfRiFti4hriLXDa3ASCoPWfdybU9wnNfrfV": [ + { + "amount": "206.595547757", + "slot": { + "period": 50454, + "thread": 10 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 274076, + "thread": 23 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 409291, + "thread": 5 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 577990, + "thread": 11 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 763152, + "thread": 28 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 929028, + "thread": 17 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1000692, + "thread": 20 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1154586, + "thread": 29 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1350700, + "thread": 14 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1622583, + "thread": 14 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1789512, + "thread": 11 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 1866287, + "thread": 26 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2037096, + "thread": 11 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2211642, + "thread": 29 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2350875, + "thread": 26 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2622229, + "thread": 19 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2729855, + "thread": 22 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 2896904, + "thread": 22 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 3034906, + "thread": 7 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 3210724, + "thread": 1 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 3409917, + "thread": 30 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 3603580, + "thread": 1 + } + }, + { + "amount": "206.595547757", + "slot": { + "period": 3737361, + "thread": 26 + } + }, + { + "amount": "206.595547746", + "slot": { + "period": 3834411, + "thread": 11 + } + } + ], + "AU12LSSPP3CxYJ7rq2Hp3tpicvJ6atYsVay6BnuXpXT93cxDTCEqQ": [ + { + "amount": "99.655456736", + "slot": { + "period": 27969, + "thread": 1 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 214689, + "thread": 25 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 402731, + "thread": 10 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 603615, + "thread": 24 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 759758, + "thread": 31 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 964686, + "thread": 24 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1066409, + "thread": 9 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1185251, + "thread": 8 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1428148, + "thread": 1 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1642493, + "thread": 10 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1689467, + "thread": 29 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 1949477, + "thread": 4 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2137341, + "thread": 14 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2190025, + "thread": 9 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2307462, + "thread": 5 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2581839, + "thread": 22 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2755692, + "thread": 7 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 2937565, + "thread": 20 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 3010566, + "thread": 20 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 3170845, + "thread": 21 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 3445606, + "thread": 26 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 3582858, + "thread": 16 + } + }, + { + "amount": "99.655456736", + "slot": { + "period": 3673406, + "thread": 1 + } + }, + { + "amount": "99.655456730", + "slot": { + "period": 3910960, + "thread": 24 + } + } + ], + "AU12LSZ8UxB3G4Nz74eEkDjeiZgbjQZDNg4wsZV9CJicc6N4Prf7c": [ + { + "amount": "144.567841307", + "slot": { + "period": 24865, + "thread": 19 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 219757, + "thread": 3 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 443955, + "thread": 28 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 517523, + "thread": 18 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 663086, + "thread": 6 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 942245, + "thread": 3 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1103670, + "thread": 20 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1178060, + "thread": 8 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1389332, + "thread": 22 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1596895, + "thread": 5 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1764956, + "thread": 30 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 1849824, + "thread": 24 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2056189, + "thread": 5 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2181435, + "thread": 16 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2371015, + "thread": 12 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2587369, + "thread": 8 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2638569, + "thread": 23 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 2791997, + "thread": 7 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 3080511, + "thread": 22 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 3200350, + "thread": 25 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 3413500, + "thread": 31 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 3488657, + "thread": 15 + } + }, + { + "amount": "144.567841307", + "slot": { + "period": 3664965, + "thread": 23 + } + }, + { + "amount": "144.567841300", + "slot": { + "period": 3871467, + "thread": 28 + } + } + ], + "AU12LSwYnCbpocH83pSHCbJppK1bpVzTcwPT1ZT1AZpTn1z8TK2TQ": [ + { + "amount": "399.671554568", + "slot": { + "period": 36692, + "thread": 11 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 302276, + "thread": 21 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 382823, + "thread": 23 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 555450, + "thread": 24 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 663532, + "thread": 10 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 823747, + "thread": 14 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1054715, + "thread": 23 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1272470, + "thread": 11 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1378696, + "thread": 31 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1622161, + "thread": 13 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1776423, + "thread": 23 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1932115, + "thread": 14 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 1979772, + "thread": 28 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 2226985, + "thread": 0 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 2398124, + "thread": 23 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 2600039, + "thread": 19 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 2752495, + "thread": 7 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 2853202, + "thread": 21 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 3053686, + "thread": 29 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 3190116, + "thread": 0 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 3350305, + "thread": 30 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 3497933, + "thread": 13 + } + }, + { + "amount": "399.671554568", + "slot": { + "period": 3632168, + "thread": 11 + } + }, + { + "amount": "399.671554572", + "slot": { + "period": 3941324, + "thread": 18 + } + } + ], + "AU12LTmVDtpz4FQUjdvzJJ6x5bcpsiEvGxtf1bpZySL7Agsd4boCy": [ + { + "amount": "137.387727755", + "slot": { + "period": 141186, + "thread": 17 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 199524, + "thread": 9 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 329310, + "thread": 23 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 491933, + "thread": 7 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 675959, + "thread": 15 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 871147, + "thread": 18 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 996718, + "thread": 29 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 1299939, + "thread": 18 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 1319489, + "thread": 16 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 1524020, + "thread": 13 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 1660519, + "thread": 7 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 1944509, + "thread": 23 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2135414, + "thread": 20 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2225551, + "thread": 23 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2330900, + "thread": 11 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2561566, + "thread": 14 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2721079, + "thread": 20 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2814935, + "thread": 0 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 2999604, + "thread": 24 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 3158596, + "thread": 1 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 3395471, + "thread": 16 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 3479762, + "thread": 26 + } + }, + { + "amount": "137.387727755", + "slot": { + "period": 3732753, + "thread": 23 + } + }, + { + "amount": "137.387727766", + "slot": { + "period": 3833501, + "thread": 24 + } + } + ], + "AU12LVNTJWaXtE4nTjygxZFLRvv3hmK2GDmLkr1iVqCzxfDKDWn1V": [ + { + "amount": "133.086761296", + "slot": { + "period": 76003, + "thread": 28 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 281863, + "thread": 28 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 394487, + "thread": 27 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 515871, + "thread": 23 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 751533, + "thread": 20 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 977314, + "thread": 5 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1142681, + "thread": 19 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1299885, + "thread": 13 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1334337, + "thread": 9 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1505719, + "thread": 20 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1660841, + "thread": 15 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 1831316, + "thread": 0 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2089697, + "thread": 27 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2195976, + "thread": 18 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2352553, + "thread": 4 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2492003, + "thread": 5 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2692816, + "thread": 23 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 2805485, + "thread": 2 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 3003488, + "thread": 31 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 3217070, + "thread": 8 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 3434678, + "thread": 13 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 3518192, + "thread": 9 + } + }, + { + "amount": "133.086761296", + "slot": { + "period": 3664670, + "thread": 4 + } + }, + { + "amount": "133.086761288", + "slot": { + "period": 3860146, + "thread": 25 + } + } + ], + "AU12LYtoycTNA9cKfCdn7Vq8ccJaNebosYbikAx2pHQQePvk21LZ4": [ + { + "amount": "606.401425753", + "slot": { + "period": 129382, + "thread": 1 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 302965, + "thread": 5 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 379832, + "thread": 4 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 612999, + "thread": 30 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 781831, + "thread": 30 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 932879, + "thread": 27 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1135644, + "thread": 26 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1154152, + "thread": 31 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1367476, + "thread": 17 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1639801, + "thread": 17 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1758072, + "thread": 27 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 1953489, + "thread": 27 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2009995, + "thread": 26 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2240337, + "thread": 14 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2431861, + "thread": 29 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2619681, + "thread": 12 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2686108, + "thread": 27 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 2795510, + "thread": 31 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 3068076, + "thread": 14 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 3223552, + "thread": 19 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 3292575, + "thread": 28 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 3467305, + "thread": 21 + } + }, + { + "amount": "606.401425753", + "slot": { + "period": 3620883, + "thread": 29 + } + }, + { + "amount": "606.401425754", + "slot": { + "period": 3803876, + "thread": 10 + } + } + ], + "AU12LYyo5LTWyu4X9Khn97YJXc7yUoMdhhZ22oEjK2chPzHtWfHmW": [ + { + "amount": "178.527754273", + "slot": { + "period": 28002, + "thread": 15 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 252135, + "thread": 15 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 413303, + "thread": 8 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 618088, + "thread": 5 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 727372, + "thread": 15 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 826949, + "thread": 6 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1115858, + "thread": 13 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1255908, + "thread": 8 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1366627, + "thread": 26 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1502241, + "thread": 2 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1662953, + "thread": 2 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 1839403, + "thread": 29 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2104190, + "thread": 10 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2170776, + "thread": 3 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2317717, + "thread": 1 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2613732, + "thread": 22 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2751756, + "thread": 11 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 2831730, + "thread": 28 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 3037092, + "thread": 29 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 3186125, + "thread": 11 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 3337733, + "thread": 27 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 3484563, + "thread": 6 + } + }, + { + "amount": "178.527754273", + "slot": { + "period": 3751788, + "thread": 28 + } + }, + { + "amount": "178.527754278", + "slot": { + "period": 3783103, + "thread": 6 + } + } + ], + "AU12LZryu4EgTtgyx4UYQDKYvFt1mzJgYRha5kqorZm6uRWtcaP2e": [ + { + "amount": "451.024280909", + "slot": { + "period": 67211, + "thread": 19 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 247101, + "thread": 9 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 358213, + "thread": 13 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 550756, + "thread": 23 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 674720, + "thread": 9 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 968197, + "thread": 21 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1109670, + "thread": 20 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1281499, + "thread": 24 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1378448, + "thread": 9 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1597985, + "thread": 20 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1748403, + "thread": 5 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 1956826, + "thread": 11 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2060621, + "thread": 20 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2291981, + "thread": 5 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2301218, + "thread": 12 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2613238, + "thread": 16 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2643331, + "thread": 26 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 2792706, + "thread": 30 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 3071587, + "thread": 19 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 3233169, + "thread": 1 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 3306918, + "thread": 22 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 3543343, + "thread": 20 + } + }, + { + "amount": "451.024280909", + "slot": { + "period": 3726653, + "thread": 29 + } + }, + { + "amount": "451.024280908", + "slot": { + "period": 3882383, + "thread": 17 + } + } + ], + "AU12LaAxs5koeff885AjGZhCybGXiBL7GmrtCT3NdAAKQouJ9um6d": [ + { + "amount": "169.731263718", + "slot": { + "period": 47003, + "thread": 26 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 201284, + "thread": 31 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 380026, + "thread": 19 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 558907, + "thread": 24 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 812657, + "thread": 19 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 865226, + "thread": 18 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1022117, + "thread": 0 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1153997, + "thread": 7 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1396869, + "thread": 15 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1645555, + "thread": 6 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1749689, + "thread": 25 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 1907449, + "thread": 14 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2113992, + "thread": 7 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2240084, + "thread": 18 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2452457, + "thread": 13 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2480922, + "thread": 10 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2682623, + "thread": 15 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 2885169, + "thread": 1 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 3033957, + "thread": 1 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 3213229, + "thread": 15 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 3366863, + "thread": 27 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 3509710, + "thread": 26 + } + }, + { + "amount": "169.731263718", + "slot": { + "period": 3741817, + "thread": 29 + } + }, + { + "amount": "169.731263721", + "slot": { + "period": 3908775, + "thread": 19 + } + } + ], + "AU12Lb7GafJueFnoCc4GRSXreCHWtYynLkzSS5iWTCsMVi6zue4rA": [ + { + "amount": "820.526114005", + "slot": { + "period": 133703, + "thread": 24 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 190798, + "thread": 0 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 403883, + "thread": 31 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 589437, + "thread": 28 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 700868, + "thread": 5 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 834073, + "thread": 13 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1137150, + "thread": 16 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1263493, + "thread": 7 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1359617, + "thread": 25 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1539217, + "thread": 22 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1668719, + "thread": 31 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 1933425, + "thread": 14 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2128603, + "thread": 17 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2196500, + "thread": 6 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2320866, + "thread": 25 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2597813, + "thread": 1 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2780073, + "thread": 21 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 2943249, + "thread": 6 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 3051325, + "thread": 14 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 3140067, + "thread": 22 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 3307053, + "thread": 12 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 3591053, + "thread": 23 + } + }, + { + "amount": "820.526114005", + "slot": { + "period": 3648697, + "thread": 22 + } + }, + { + "amount": "820.526114009", + "slot": { + "period": 3796850, + "thread": 15 + } + } + ], + "AU12LbDf2cVcUppmdRHZFV7MLMPAf39H9HLVHxfpCkJs2mJSysMox": [ + { + "amount": "182.720015135", + "slot": { + "period": 62794, + "thread": 3 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 235947, + "thread": 18 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 358242, + "thread": 8 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 566162, + "thread": 17 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 793749, + "thread": 11 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 955191, + "thread": 26 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1090759, + "thread": 15 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1229236, + "thread": 14 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1383180, + "thread": 25 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1540518, + "thread": 23 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1647576, + "thread": 13 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 1946541, + "thread": 7 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2046672, + "thread": 8 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2218942, + "thread": 31 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2427882, + "thread": 22 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2614372, + "thread": 30 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2700862, + "thread": 8 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 2922835, + "thread": 13 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 3085553, + "thread": 9 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 3212937, + "thread": 3 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 3407243, + "thread": 0 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 3537323, + "thread": 10 + } + }, + { + "amount": "182.720015135", + "slot": { + "period": 3687033, + "thread": 28 + } + }, + { + "amount": "182.720015129", + "slot": { + "period": 3832473, + "thread": 31 + } + } + ], + "AU12LbHC83HC2tQpRnx3xZfPXhFnTBwr4w2cpo7pG59dngrZFErb7": [ + { + "amount": "167.470798477", + "slot": { + "period": 105502, + "thread": 2 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 288252, + "thread": 17 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 447187, + "thread": 16 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 548907, + "thread": 6 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 699493, + "thread": 23 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 910173, + "thread": 0 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1131096, + "thread": 8 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1269727, + "thread": 28 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1436089, + "thread": 25 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1610893, + "thread": 26 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1720525, + "thread": 16 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 1854729, + "thread": 16 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2100039, + "thread": 17 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2274386, + "thread": 0 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2393883, + "thread": 12 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2584763, + "thread": 6 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2772954, + "thread": 8 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2936237, + "thread": 12 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 2988763, + "thread": 21 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 3221694, + "thread": 30 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 3371877, + "thread": 28 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 3590714, + "thread": 23 + } + }, + { + "amount": "167.470798477", + "slot": { + "period": 3683977, + "thread": 13 + } + }, + { + "amount": "167.470798478", + "slot": { + "period": 3938085, + "thread": 20 + } + } + ], + "AU12LbtRuZFMRAasmdfNGKeaURG86StnYZPhcgFp5HKhWAFoVe6Le": [ + { + "amount": "199.320113872", + "slot": { + "period": 157878, + "thread": 16 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 208943, + "thread": 5 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 356160, + "thread": 12 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 643805, + "thread": 25 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 746780, + "thread": 10 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 873685, + "thread": 22 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1000844, + "thread": 26 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1235762, + "thread": 25 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1435023, + "thread": 12 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1600260, + "thread": 7 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1722317, + "thread": 26 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 1872920, + "thread": 1 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2038087, + "thread": 18 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2243676, + "thread": 4 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2326230, + "thread": 0 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2564374, + "thread": 9 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2627461, + "thread": 28 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2793740, + "thread": 31 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 2998224, + "thread": 5 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 3159697, + "thread": 20 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 3403811, + "thread": 9 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 3540313, + "thread": 11 + } + }, + { + "amount": "199.320113872", + "slot": { + "period": 3779804, + "thread": 27 + } + }, + { + "amount": "199.320113881", + "slot": { + "period": 3853640, + "thread": 12 + } + } + ], + "AU12LdUj8FCQRg2XBzXda8EB8F3N1ruvTg8Fm3djNQUZ2GSz4NBCY": [ + { + "amount": "201.347278477", + "slot": { + "period": 101864, + "thread": 22 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 242112, + "thread": 14 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 444074, + "thread": 23 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 499038, + "thread": 8 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 779571, + "thread": 8 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 877138, + "thread": 1 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1075403, + "thread": 22 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1247473, + "thread": 9 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1366597, + "thread": 23 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1545414, + "thread": 5 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1669746, + "thread": 26 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 1946520, + "thread": 12 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2006412, + "thread": 3 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2239657, + "thread": 29 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2356867, + "thread": 21 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2584420, + "thread": 17 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2761681, + "thread": 4 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2880593, + "thread": 17 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 2965876, + "thread": 0 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 3193309, + "thread": 7 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 3410452, + "thread": 12 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 3452753, + "thread": 11 + } + }, + { + "amount": "201.347278477", + "slot": { + "period": 3646410, + "thread": 1 + } + }, + { + "amount": "201.347278468", + "slot": { + "period": 3894772, + "thread": 14 + } + } + ], + "AU12LdfTbaxMhU4PD73FgZvpKHVthxri9c84iNKU2EKEUPh6QromH": [ + { + "amount": "470.855724346", + "slot": { + "period": 131446, + "thread": 13 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 262263, + "thread": 0 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 425488, + "thread": 9 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 557277, + "thread": 31 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 747212, + "thread": 6 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 879210, + "thread": 26 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1103444, + "thread": 10 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1174617, + "thread": 16 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1407407, + "thread": 28 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1594326, + "thread": 15 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1693818, + "thread": 20 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 1870349, + "thread": 8 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2019479, + "thread": 4 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2246857, + "thread": 21 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2417732, + "thread": 31 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2516849, + "thread": 26 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2730270, + "thread": 6 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 2919298, + "thread": 10 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 3038583, + "thread": 20 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 3239305, + "thread": 26 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 3314987, + "thread": 12 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 3457090, + "thread": 12 + } + }, + { + "amount": "470.855724346", + "slot": { + "period": 3692123, + "thread": 12 + } + }, + { + "amount": "470.855724348", + "slot": { + "period": 3894063, + "thread": 16 + } + } + ], + "AU12LdjHXwDhnTzMAoS9qPQeH5WZAqT9B6yhZ7s2SD6rWapm7cvmo": [ + { + "amount": "280.765412985", + "slot": { + "period": 128000, + "thread": 5 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 258876, + "thread": 4 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 396884, + "thread": 18 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 548760, + "thread": 17 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 690013, + "thread": 3 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 884652, + "thread": 3 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1032658, + "thread": 30 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1289052, + "thread": 20 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1454566, + "thread": 24 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1514319, + "thread": 13 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1753987, + "thread": 18 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1896585, + "thread": 25 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 1977515, + "thread": 1 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2283347, + "thread": 27 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2428532, + "thread": 28 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2472291, + "thread": 16 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2656805, + "thread": 21 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2827681, + "thread": 7 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 2997495, + "thread": 21 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 3192414, + "thread": 17 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 3393440, + "thread": 14 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 3514575, + "thread": 15 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 3632769, + "thread": 17 + } + }, + { + "amount": "280.765412985", + "slot": { + "period": 3934043, + "thread": 8 + } + } + ], + "AU12LeG9gZqV9KnQBberbMSGZNzHhUc4SKkcazRy4S7hjDxsWfYEp": [ + { + "amount": "73.337943143", + "slot": { + "period": 103276, + "thread": 31 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 201513, + "thread": 11 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 335196, + "thread": 13 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 649217, + "thread": 9 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 802692, + "thread": 11 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 864285, + "thread": 2 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1075589, + "thread": 12 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1204498, + "thread": 13 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1423548, + "thread": 24 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1618050, + "thread": 27 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1704675, + "thread": 17 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 1898412, + "thread": 25 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2049700, + "thread": 10 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2248703, + "thread": 18 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2429389, + "thread": 4 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2462409, + "thread": 3 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2697456, + "thread": 25 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2834072, + "thread": 7 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 2995011, + "thread": 10 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 3278834, + "thread": 13 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 3341390, + "thread": 2 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 3547799, + "thread": 22 + } + }, + { + "amount": "73.337943143", + "slot": { + "period": 3735136, + "thread": 24 + } + }, + { + "amount": "73.337943145", + "slot": { + "period": 3926554, + "thread": 1 + } + } + ], + "AU12LeUdGdoqG2YwoNPeYqALNm12436LhpEUboKQ4cFxvC8aGrSyp": [ + { + "amount": "89.921078458", + "slot": { + "period": 66058, + "thread": 29 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 323160, + "thread": 12 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 434803, + "thread": 22 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 566924, + "thread": 10 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 818848, + "thread": 14 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 946311, + "thread": 9 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1075739, + "thread": 7 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1183510, + "thread": 12 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1453786, + "thread": 17 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1550005, + "thread": 30 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1762378, + "thread": 2 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1878631, + "thread": 10 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 1991468, + "thread": 29 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 2292863, + "thread": 2 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 2368175, + "thread": 9 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 2539653, + "thread": 13 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 2762926, + "thread": 15 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 2915583, + "thread": 26 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 3084333, + "thread": 7 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 3126193, + "thread": 11 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 3426649, + "thread": 29 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 3505407, + "thread": 13 + } + }, + { + "amount": "89.921078458", + "slot": { + "period": 3646580, + "thread": 4 + } + }, + { + "amount": "89.921078461", + "slot": { + "period": 3883899, + "thread": 5 + } + } + ], + "AU12LeiJMXJakRYPizYA7kExvPSW6VLahkqYyE7YLJrDKmBsJVGL2": [ + { + "amount": "122.804967274", + "slot": { + "period": 29376, + "thread": 17 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 311556, + "thread": 25 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 377928, + "thread": 4 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 512837, + "thread": 9 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 786074, + "thread": 19 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 981401, + "thread": 0 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1067709, + "thread": 3 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1166772, + "thread": 10 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1346199, + "thread": 1 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1537384, + "thread": 2 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1794474, + "thread": 19 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 1917133, + "thread": 4 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2100767, + "thread": 30 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2204656, + "thread": 30 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2303362, + "thread": 9 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2467947, + "thread": 24 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2776107, + "thread": 24 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 2858436, + "thread": 13 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 3060615, + "thread": 11 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 3275397, + "thread": 23 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 3290098, + "thread": 5 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 3521980, + "thread": 17 + } + }, + { + "amount": "122.804967274", + "slot": { + "period": 3695351, + "thread": 0 + } + }, + { + "amount": "122.804967264", + "slot": { + "period": 3901222, + "thread": 10 + } + } + ], + "AU12LfW52B16zMwi9JJFQBu2HUPme4kyKkpFrtkfE7JJ7QUTerNwL": [ + { + "amount": "427.216023532", + "slot": { + "period": 64406, + "thread": 8 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 190418, + "thread": 21 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 490371, + "thread": 15 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 512413, + "thread": 21 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 750793, + "thread": 0 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 897545, + "thread": 15 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1092167, + "thread": 10 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1315575, + "thread": 23 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1329549, + "thread": 22 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1485360, + "thread": 13 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1772052, + "thread": 16 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 1893793, + "thread": 31 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2016320, + "thread": 30 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2210761, + "thread": 0 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2450359, + "thread": 28 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2583731, + "thread": 7 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2730008, + "thread": 12 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 2951122, + "thread": 18 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 3035867, + "thread": 20 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 3220467, + "thread": 12 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 3318788, + "thread": 16 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 3607264, + "thread": 29 + } + }, + { + "amount": "427.216023532", + "slot": { + "period": 3638062, + "thread": 5 + } + }, + { + "amount": "427.216023531", + "slot": { + "period": 3829245, + "thread": 16 + } + } + ], + "AU12LfffDL6kEVnUGXV8ompyJxfeGBjoWhPPG2PHPoqBmS8LinUyg": [ + { + "amount": "445.381013056", + "slot": { + "period": 100943, + "thread": 21 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 306997, + "thread": 29 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 455575, + "thread": 24 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 641623, + "thread": 1 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 783117, + "thread": 21 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 851179, + "thread": 21 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1043215, + "thread": 21 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1221796, + "thread": 8 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1394721, + "thread": 9 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1539611, + "thread": 28 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1690629, + "thread": 0 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1945378, + "thread": 10 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 1994042, + "thread": 5 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 2218256, + "thread": 9 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 2319572, + "thread": 14 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 2545080, + "thread": 25 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 2699745, + "thread": 4 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 2952213, + "thread": 24 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 3066512, + "thread": 13 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 3235188, + "thread": 5 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 3395506, + "thread": 2 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 3503204, + "thread": 17 + } + }, + { + "amount": "445.381013056", + "slot": { + "period": 3693373, + "thread": 5 + } + }, + { + "amount": "445.381013052", + "slot": { + "period": 3787254, + "thread": 27 + } + } + ], + "AU12LfgQqUkyy29hD6hAhhdQCojjG3RpDRBxp9esnCcU8dB2pouuH": [ + { + "amount": "204.970814452", + "slot": { + "period": 78710, + "thread": 9 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 178471, + "thread": 18 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 450562, + "thread": 17 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 645450, + "thread": 7 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 734818, + "thread": 21 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 875340, + "thread": 18 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1100369, + "thread": 18 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1231612, + "thread": 3 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1477957, + "thread": 19 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1610213, + "thread": 9 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1677241, + "thread": 29 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 1897886, + "thread": 18 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2136828, + "thread": 11 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2230071, + "thread": 31 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2386989, + "thread": 30 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2592755, + "thread": 19 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2746998, + "thread": 18 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2952330, + "thread": 15 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 2988793, + "thread": 3 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 3122881, + "thread": 23 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 3445479, + "thread": 3 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 3473393, + "thread": 13 + } + }, + { + "amount": "204.970814452", + "slot": { + "period": 3740917, + "thread": 25 + } + }, + { + "amount": "204.970814458", + "slot": { + "period": 3783386, + "thread": 12 + } + } + ], + "AU12LhAatctNXZKUqMZR9dkXgySo4oAagCiDvKJwywftVzassPSXM": [ + { + "amount": "421.407493782", + "slot": { + "period": 95531, + "thread": 22 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 312232, + "thread": 5 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 426330, + "thread": 19 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 547568, + "thread": 24 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 723385, + "thread": 31 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 913207, + "thread": 10 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1055646, + "thread": 15 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1166513, + "thread": 26 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1390612, + "thread": 1 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1497579, + "thread": 18 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1648441, + "thread": 7 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 1822719, + "thread": 19 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2062049, + "thread": 13 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2224523, + "thread": 11 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2396065, + "thread": 1 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2523957, + "thread": 16 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2667263, + "thread": 8 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 2904884, + "thread": 20 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 3096854, + "thread": 31 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 3144425, + "thread": 18 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 3367340, + "thread": 6 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 3605776, + "thread": 14 + } + }, + { + "amount": "421.407493782", + "slot": { + "period": 3760750, + "thread": 25 + } + }, + { + "amount": "421.407493794", + "slot": { + "period": 3911329, + "thread": 22 + } + } + ], + "AU12LiAuUHUFCGBWtu7rxePavePPDqVf9KzVU4QGKJPudPVXkguGL": [ + { + "amount": "236.572526601", + "slot": { + "period": 147293, + "thread": 30 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 199845, + "thread": 29 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 358717, + "thread": 1 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 551940, + "thread": 10 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 804160, + "thread": 3 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 932430, + "thread": 5 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1086631, + "thread": 22 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1240682, + "thread": 21 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1330986, + "thread": 11 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1599832, + "thread": 15 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1753447, + "thread": 26 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 1937847, + "thread": 20 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2031630, + "thread": 8 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2262507, + "thread": 1 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2424446, + "thread": 22 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2523701, + "thread": 11 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2666609, + "thread": 31 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2856299, + "thread": 6 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 2969532, + "thread": 23 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 3287700, + "thread": 2 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 3323398, + "thread": 8 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 3592611, + "thread": 30 + } + }, + { + "amount": "236.572526601", + "slot": { + "period": 3670209, + "thread": 19 + } + }, + { + "amount": "236.572526591", + "slot": { + "period": 3871266, + "thread": 1 + } + } + ], + "AU12LiLNrVQPnusfKz281YhizBbEMReUVPGm7wiwhMAmW4SxtzJ5H": [ + { + "amount": "448.151137785", + "slot": { + "period": 23568, + "thread": 9 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 177291, + "thread": 12 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 365984, + "thread": 9 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 518995, + "thread": 1 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 734671, + "thread": 6 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 932169, + "thread": 27 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1129759, + "thread": 14 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1245738, + "thread": 5 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1433593, + "thread": 14 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1546867, + "thread": 29 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1674109, + "thread": 28 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 1933714, + "thread": 26 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2007276, + "thread": 14 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2150102, + "thread": 26 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2316448, + "thread": 29 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2592549, + "thread": 16 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2676801, + "thread": 7 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 2877864, + "thread": 28 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 3003892, + "thread": 26 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 3258146, + "thread": 22 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 3426415, + "thread": 22 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 3473922, + "thread": 9 + } + }, + { + "amount": "448.151137785", + "slot": { + "period": 3716886, + "thread": 17 + } + }, + { + "amount": "448.151137790", + "slot": { + "period": 3802724, + "thread": 20 + } + } + ], + "AU12LiN8qhKi5GoZobYsR14Dtc9oW7EdiqpFPrAYdUxYQwxc282Tv": [ + { + "amount": "159.678081588", + "slot": { + "period": 100443, + "thread": 19 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 175376, + "thread": 16 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 381272, + "thread": 7 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 625321, + "thread": 17 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 690493, + "thread": 10 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 901742, + "thread": 25 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1070487, + "thread": 1 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1313186, + "thread": 22 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1418741, + "thread": 27 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1565417, + "thread": 16 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1689660, + "thread": 30 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 1927627, + "thread": 14 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2108908, + "thread": 20 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2232783, + "thread": 19 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2349974, + "thread": 17 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2623002, + "thread": 27 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2759998, + "thread": 12 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 2914708, + "thread": 30 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 3081744, + "thread": 5 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 3220418, + "thread": 13 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 3425706, + "thread": 16 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 3484211, + "thread": 5 + } + }, + { + "amount": "159.678081588", + "slot": { + "period": 3643684, + "thread": 8 + } + }, + { + "amount": "159.678081600", + "slot": { + "period": 3792156, + "thread": 21 + } + } + ], + "AU12LihbhhftBdtSVcj1YR2eMgjV1yKCHuzYgFTJGoLqhuMXfhhBh": [ + { + "amount": "145.351739018", + "slot": { + "period": 95215, + "thread": 26 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 309225, + "thread": 27 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 474362, + "thread": 8 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 627055, + "thread": 28 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 748254, + "thread": 11 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 859902, + "thread": 22 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1121687, + "thread": 31 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1251403, + "thread": 8 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1406431, + "thread": 7 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1538409, + "thread": 24 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1772892, + "thread": 17 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 1939070, + "thread": 22 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2004534, + "thread": 6 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2150960, + "thread": 22 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2370057, + "thread": 4 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2521992, + "thread": 14 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2701080, + "thread": 3 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2917194, + "thread": 18 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 2960058, + "thread": 27 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 3137310, + "thread": 14 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 3423304, + "thread": 12 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 3564085, + "thread": 11 + } + }, + { + "amount": "145.351739018", + "slot": { + "period": 3657942, + "thread": 24 + } + }, + { + "amount": "145.351739026", + "slot": { + "period": 3906575, + "thread": 13 + } + } + ], + "AU12Lj9iNVQm8rS9h9YxoUoT4SUdTThCEYf4TvwqjZvrK2QbaD3cf": [ + { + "amount": "52.762676547", + "slot": { + "period": 63520, + "thread": 28 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 225228, + "thread": 3 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 425870, + "thread": 20 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 609637, + "thread": 9 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 661395, + "thread": 9 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 937662, + "thread": 1 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1091612, + "thread": 26 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1217737, + "thread": 7 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1340105, + "thread": 15 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1624815, + "thread": 22 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1666376, + "thread": 11 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 1909784, + "thread": 11 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2086471, + "thread": 27 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2242029, + "thread": 7 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2411949, + "thread": 31 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2509035, + "thread": 7 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2739428, + "thread": 29 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2925507, + "thread": 15 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 2966157, + "thread": 1 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 3139427, + "thread": 16 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 3340598, + "thread": 4 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 3453796, + "thread": 10 + } + }, + { + "amount": "52.762676547", + "slot": { + "period": 3663825, + "thread": 23 + } + }, + { + "amount": "52.762676536", + "slot": { + "period": 3812140, + "thread": 8 + } + } + ], + "AU12LjXXKXGagJQKV9RzqWeASwvyQ7yvBb6UcsZBMsquRmNw54ZaV": [ + { + "amount": "276.036620705", + "slot": { + "period": 125611, + "thread": 4 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 240133, + "thread": 14 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 490230, + "thread": 16 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 634385, + "thread": 14 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 789984, + "thread": 0 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 861906, + "thread": 2 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1148693, + "thread": 26 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1243211, + "thread": 4 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1369181, + "thread": 14 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1523384, + "thread": 16 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1725640, + "thread": 2 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 1841750, + "thread": 17 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2109170, + "thread": 4 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2238801, + "thread": 21 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2361208, + "thread": 22 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2572798, + "thread": 23 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2764470, + "thread": 4 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 2928802, + "thread": 26 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 3026800, + "thread": 11 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 3246948, + "thread": 12 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 3419154, + "thread": 27 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 3508741, + "thread": 24 + } + }, + { + "amount": "276.036620705", + "slot": { + "period": 3619410, + "thread": 3 + } + }, + { + "amount": "276.036620698", + "slot": { + "period": 3889667, + "thread": 16 + } + } + ], + "AU12LkRm8jnsQTTB1Pu2i6F5dqJiqcfXhNCgpDd6CzqpPfQnPYXZV": [ + { + "amount": "432.145516896", + "slot": { + "period": 161806, + "thread": 11 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 246442, + "thread": 26 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 431539, + "thread": 11 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 637640, + "thread": 1 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 778385, + "thread": 25 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 963207, + "thread": 28 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 996608, + "thread": 5 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 1256474, + "thread": 5 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 1374840, + "thread": 26 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 1500574, + "thread": 23 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 1769126, + "thread": 21 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 1951081, + "thread": 9 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2128299, + "thread": 3 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2265514, + "thread": 23 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2382036, + "thread": 3 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2523592, + "thread": 9 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2760376, + "thread": 10 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 2826114, + "thread": 5 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 3037725, + "thread": 24 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 3241308, + "thread": 13 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 3319146, + "thread": 20 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 3468620, + "thread": 25 + } + }, + { + "amount": "432.145516896", + "slot": { + "period": 3729359, + "thread": 7 + } + }, + { + "amount": "432.145516898", + "slot": { + "period": 3882805, + "thread": 6 + } + } + ], + "AU12LmCVGPsu1tbX9Q3SKvoDDDobWguKCfYHLSvSj6tSSjH2VvETH": [ + { + "amount": "197.219678431", + "slot": { + "period": 151555, + "thread": 26 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 211156, + "thread": 19 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 451938, + "thread": 28 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 620924, + "thread": 24 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 810691, + "thread": 19 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 903504, + "thread": 29 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1148303, + "thread": 3 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1292771, + "thread": 5 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1384398, + "thread": 29 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1594613, + "thread": 25 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1742412, + "thread": 13 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 1866834, + "thread": 28 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2073278, + "thread": 15 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2162920, + "thread": 26 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2368151, + "thread": 25 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2618691, + "thread": 27 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2726557, + "thread": 9 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 2851568, + "thread": 11 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 3053611, + "thread": 14 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 3274206, + "thread": 17 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 3441654, + "thread": 16 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 3487636, + "thread": 29 + } + }, + { + "amount": "197.219678431", + "slot": { + "period": 3709797, + "thread": 1 + } + }, + { + "amount": "197.219678433", + "slot": { + "period": 3914048, + "thread": 24 + } + } + ], + "AU12LmPB5LfCGwQ15vTJSbe9tQrZLLnWMK37HgFkFXKPZsLyx4d6p": [ + { + "amount": "53.733243302", + "slot": { + "period": 75916, + "thread": 21 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 218947, + "thread": 2 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 460759, + "thread": 24 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 615856, + "thread": 17 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 689610, + "thread": 8 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 945974, + "thread": 12 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1099409, + "thread": 30 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1194332, + "thread": 30 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1365051, + "thread": 30 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1600037, + "thread": 18 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1726852, + "thread": 19 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 1884449, + "thread": 29 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2090089, + "thread": 26 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2232637, + "thread": 29 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2308188, + "thread": 6 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2536262, + "thread": 1 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2763592, + "thread": 18 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 2891318, + "thread": 9 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 3083235, + "thread": 30 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 3151251, + "thread": 18 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 3449973, + "thread": 1 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 3501551, + "thread": 17 + } + }, + { + "amount": "53.733243302", + "slot": { + "period": 3768006, + "thread": 25 + } + }, + { + "amount": "53.733243310", + "slot": { + "period": 3842702, + "thread": 18 + } + } + ], + "AU12LmSUHypcW7kbyLPtJbjch5Fn4UsQKCMmWNNoNLg89temJdJjG": [ + { + "amount": "411.522687376", + "slot": { + "period": 110239, + "thread": 4 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 221661, + "thread": 26 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 346381, + "thread": 10 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 534334, + "thread": 12 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 789628, + "thread": 27 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 827767, + "thread": 4 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1079337, + "thread": 27 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1309239, + "thread": 24 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1330938, + "thread": 2 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1486412, + "thread": 3 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1759294, + "thread": 6 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 1927864, + "thread": 31 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2107903, + "thread": 13 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2288458, + "thread": 30 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2451154, + "thread": 14 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2617088, + "thread": 31 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2656476, + "thread": 11 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2837801, + "thread": 6 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 2982035, + "thread": 22 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 3125749, + "thread": 21 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 3398862, + "thread": 26 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 3453006, + "thread": 2 + } + }, + { + "amount": "411.522687376", + "slot": { + "period": 3637250, + "thread": 27 + } + }, + { + "amount": "411.522687366", + "slot": { + "period": 3873163, + "thread": 23 + } + } + ], + "AU12LmfV4q8Bkp4KNpVV3Vm1ZWSd7J9GW8Nk7CNVPQfwLdsomHREm": [ + { + "amount": "250.855313507", + "slot": { + "period": 64052, + "thread": 2 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 220270, + "thread": 25 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 457427, + "thread": 5 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 627080, + "thread": 11 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 725621, + "thread": 28 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 918852, + "thread": 13 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1044025, + "thread": 1 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1233199, + "thread": 16 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1419907, + "thread": 7 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1622077, + "thread": 2 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1785693, + "thread": 1 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 1946043, + "thread": 10 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2065168, + "thread": 19 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2207492, + "thread": 31 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2393534, + "thread": 15 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2556446, + "thread": 5 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2742408, + "thread": 23 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 2852696, + "thread": 0 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 3046960, + "thread": 25 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 3198270, + "thread": 18 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 3425995, + "thread": 23 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 3487867, + "thread": 13 + } + }, + { + "amount": "250.855313507", + "slot": { + "period": 3700420, + "thread": 6 + } + }, + { + "amount": "250.855313516", + "slot": { + "period": 3805855, + "thread": 17 + } + } + ], + "AU12Lmh6eZgAAsKZR34cAKBY3x7RGD1UV47PikH461KYrTjW5VCyB": [ + { + "amount": "534.712500000", + "slot": { + "period": 100179, + "thread": 7 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 187125, + "thread": 23 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 457262, + "thread": 13 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 578605, + "thread": 3 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 747466, + "thread": 30 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 906447, + "thread": 4 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1065260, + "thread": 23 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1273800, + "thread": 6 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1434281, + "thread": 20 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1532771, + "thread": 7 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1793458, + "thread": 29 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 1952371, + "thread": 28 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2081669, + "thread": 2 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2294993, + "thread": 25 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2386873, + "thread": 22 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2485331, + "thread": 29 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2688140, + "thread": 2 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 2793922, + "thread": 26 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3083791, + "thread": 30 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3194416, + "thread": 3 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3441993, + "thread": 5 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3584890, + "thread": 24 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3623857, + "thread": 7 + } + }, + { + "amount": "534.712500000", + "slot": { + "period": 3841221, + "thread": 22 + } + } + ], + "AU12Lnyp1iXpUu4zGqAHiq9LjBiHhBwgU8rJQHUqAKDnuE98LXajP": [ + { + "amount": "357.900296362", + "slot": { + "period": 156951, + "thread": 24 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 315041, + "thread": 29 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 353076, + "thread": 2 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 592678, + "thread": 27 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 735917, + "thread": 21 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 868132, + "thread": 28 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1129830, + "thread": 27 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1259571, + "thread": 5 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1327585, + "thread": 25 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1503281, + "thread": 22 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1746797, + "thread": 23 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 1855102, + "thread": 6 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2061380, + "thread": 27 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2272012, + "thread": 26 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2373687, + "thread": 4 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2481275, + "thread": 27 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2725753, + "thread": 23 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 2895399, + "thread": 31 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 3057436, + "thread": 3 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 3278311, + "thread": 18 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 3347408, + "thread": 1 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 3482677, + "thread": 28 + } + }, + { + "amount": "357.900296362", + "slot": { + "period": 3643136, + "thread": 12 + } + }, + { + "amount": "357.900296359", + "slot": { + "period": 3918637, + "thread": 1 + } + } + ], + "AU12LoDvfGiVdKjWpV9ohXMNbshYnqSzxKThy7MLehRrbTwzxcBKs": [ + { + "amount": "383.476784849", + "slot": { + "period": 136611, + "thread": 31 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 280785, + "thread": 22 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 423796, + "thread": 10 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 526437, + "thread": 31 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 689696, + "thread": 5 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 901282, + "thread": 28 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1028271, + "thread": 12 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1263067, + "thread": 25 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1372265, + "thread": 21 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1515083, + "thread": 4 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1793724, + "thread": 25 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 1910544, + "thread": 5 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2105129, + "thread": 4 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2200077, + "thread": 18 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2324346, + "thread": 30 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2479134, + "thread": 3 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2713645, + "thread": 30 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2840901, + "thread": 0 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 2956051, + "thread": 15 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 3233470, + "thread": 8 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 3377159, + "thread": 19 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 3589809, + "thread": 8 + } + }, + { + "amount": "383.476784849", + "slot": { + "period": 3714013, + "thread": 7 + } + }, + { + "amount": "383.476784838", + "slot": { + "period": 3789334, + "thread": 28 + } + } + ], + "AU12LoU3L8kPNi1xyzaoA8Ge3TUbQUp8F1s9eDYWd9xob4S5HzVoY": [ + { + "amount": "206.395792124", + "slot": { + "period": 33336, + "thread": 27 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 251401, + "thread": 21 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 426640, + "thread": 7 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 504882, + "thread": 22 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 806005, + "thread": 30 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 858406, + "thread": 1 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1018491, + "thread": 12 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1174268, + "thread": 4 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1369004, + "thread": 11 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1578608, + "thread": 7 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1724170, + "thread": 24 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 1816535, + "thread": 22 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2019088, + "thread": 15 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2165690, + "thread": 28 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2314711, + "thread": 17 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2583302, + "thread": 17 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2703917, + "thread": 16 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 2817096, + "thread": 28 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 3004460, + "thread": 30 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 3260709, + "thread": 25 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 3371617, + "thread": 7 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 3571598, + "thread": 29 + } + }, + { + "amount": "206.395792124", + "slot": { + "period": 3642784, + "thread": 17 + } + }, + { + "amount": "206.395792120", + "slot": { + "period": 3932892, + "thread": 31 + } + } + ], + "AU12LovJAAMwBKUHUBnr2gez9Ya5LgMNCxu5XKuedgNZGB7zaCeWQ": [ + { + "amount": "106.099802980", + "slot": { + "period": 140300, + "thread": 14 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 307381, + "thread": 7 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 359504, + "thread": 5 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 561642, + "thread": 15 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 675304, + "thread": 19 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 824072, + "thread": 27 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1034029, + "thread": 18 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1153296, + "thread": 26 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1465822, + "thread": 21 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1551120, + "thread": 13 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1728087, + "thread": 27 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 1943978, + "thread": 8 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2016019, + "thread": 28 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2181038, + "thread": 0 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2431919, + "thread": 18 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2602153, + "thread": 19 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2776743, + "thread": 23 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 2932208, + "thread": 31 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 3068292, + "thread": 26 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 3143610, + "thread": 0 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 3443082, + "thread": 4 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 3591625, + "thread": 31 + } + }, + { + "amount": "106.099802980", + "slot": { + "period": 3710318, + "thread": 31 + } + }, + { + "amount": "106.099802990", + "slot": { + "period": 3925270, + "thread": 23 + } + } + ], + "AU12Lp4WdZia7fL1D9QT4znsq3W9qQRw7wyJQTQfcqyVUarpbJL7Y": [ + { + "amount": "525.574273067", + "slot": { + "period": 57758, + "thread": 18 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 222323, + "thread": 13 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 422304, + "thread": 9 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 579890, + "thread": 19 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 773387, + "thread": 28 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 958174, + "thread": 11 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1112572, + "thread": 19 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1293691, + "thread": 20 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1368113, + "thread": 12 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1611590, + "thread": 12 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1723479, + "thread": 3 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1966591, + "thread": 16 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 1982285, + "thread": 0 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2146640, + "thread": 0 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2367470, + "thread": 22 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2499016, + "thread": 21 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2656532, + "thread": 11 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2892785, + "thread": 3 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 2960110, + "thread": 23 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 3226216, + "thread": 16 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 3313960, + "thread": 7 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 3475658, + "thread": 1 + } + }, + { + "amount": "525.574273067", + "slot": { + "period": 3726063, + "thread": 21 + } + }, + { + "amount": "525.574273060", + "slot": { + "period": 3939848, + "thread": 26 + } + } + ], + "AU12Lp5pjPPWQL34NMmi3uoicr25dheY47KTp6HepvD4RkJzC8RCZ": [ + { + "amount": "346.576582967", + "slot": { + "period": 84127, + "thread": 19 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 255592, + "thread": 6 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 446855, + "thread": 9 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 535859, + "thread": 15 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 745228, + "thread": 10 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 900360, + "thread": 23 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1120803, + "thread": 16 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1191864, + "thread": 16 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1337531, + "thread": 11 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1482188, + "thread": 5 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1712742, + "thread": 8 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1822776, + "thread": 9 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 1987329, + "thread": 22 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2156291, + "thread": 8 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2295298, + "thread": 28 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2512412, + "thread": 14 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2709780, + "thread": 29 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2913932, + "thread": 18 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 2986411, + "thread": 21 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 3164718, + "thread": 29 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 3407086, + "thread": 10 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 3535903, + "thread": 7 + } + }, + { + "amount": "346.576582967", + "slot": { + "period": 3622071, + "thread": 22 + } + }, + { + "amount": "346.576582976", + "slot": { + "period": 3921485, + "thread": 30 + } + } + ], + "AU12Lp7dLcrLQ8PyfPUUCtDVJ4c7t128Z19dCq3U2ge15MFVPh9St": [ + { + "amount": "126.682126977", + "slot": { + "period": 146272, + "thread": 29 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 198323, + "thread": 17 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 397812, + "thread": 1 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 573467, + "thread": 29 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 676231, + "thread": 10 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 927759, + "thread": 20 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1096680, + "thread": 10 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1315701, + "thread": 23 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1424950, + "thread": 31 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1601526, + "thread": 22 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1649372, + "thread": 10 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 1934119, + "thread": 15 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2126620, + "thread": 14 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2288232, + "thread": 21 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2443895, + "thread": 18 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2519911, + "thread": 31 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2650207, + "thread": 1 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 2842321, + "thread": 26 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3016747, + "thread": 25 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3266749, + "thread": 19 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3320854, + "thread": 5 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3575717, + "thread": 16 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3635471, + "thread": 13 + } + }, + { + "amount": "126.682126977", + "slot": { + "period": 3819547, + "thread": 29 + } + } + ], + "AU12LpQXoaPgWUgUz7UD48itHxr5JB3y75ZLUb2HnEmpybn2XTjSv": [ + { + "amount": "52.885373596", + "slot": { + "period": 23983, + "thread": 20 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 273794, + "thread": 24 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 426896, + "thread": 26 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 534886, + "thread": 7 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 774056, + "thread": 19 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 922780, + "thread": 1 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1079430, + "thread": 27 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1194240, + "thread": 5 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1336624, + "thread": 15 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1486564, + "thread": 22 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1689951, + "thread": 30 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 1902432, + "thread": 19 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2000146, + "thread": 30 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2273883, + "thread": 19 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2323145, + "thread": 5 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2595221, + "thread": 30 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2639023, + "thread": 31 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 2882801, + "thread": 4 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 3060863, + "thread": 31 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 3270589, + "thread": 18 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 3424402, + "thread": 5 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 3483030, + "thread": 21 + } + }, + { + "amount": "52.885373596", + "slot": { + "period": 3636509, + "thread": 7 + } + }, + { + "amount": "52.885373607", + "slot": { + "period": 3823811, + "thread": 15 + } + } + ], + "AU12LrFoTLqPCzwx8hsxboUbmq9Sc418gFMjaX4ykdVghnhiZkiwo": [ + { + "amount": "243.370333750", + "slot": { + "period": 142486, + "thread": 0 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 269124, + "thread": 28 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 411700, + "thread": 29 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 492014, + "thread": 29 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 804283, + "thread": 18 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 962720, + "thread": 13 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1100189, + "thread": 29 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1167540, + "thread": 25 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1378724, + "thread": 22 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1490828, + "thread": 30 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1711189, + "thread": 23 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1853054, + "thread": 30 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 1993915, + "thread": 7 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 2159346, + "thread": 8 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 2364007, + "thread": 6 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 2467196, + "thread": 11 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 2773233, + "thread": 17 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 2922414, + "thread": 27 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 3064697, + "thread": 22 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 3211389, + "thread": 4 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 3366410, + "thread": 11 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 3512412, + "thread": 24 + } + }, + { + "amount": "243.370333750", + "slot": { + "period": 3696652, + "thread": 25 + } + }, + { + "amount": "243.370333743", + "slot": { + "period": 3888628, + "thread": 24 + } + } + ], + "AU12LsA3xZbga7Di2S7QNjZVkbLaTYWa2mw5dcA8qFxTP2shHqKpE": [ + { + "amount": "78.279666546", + "slot": { + "period": 73518, + "thread": 0 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 295507, + "thread": 28 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 368424, + "thread": 7 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 618055, + "thread": 28 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 668212, + "thread": 12 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 936953, + "thread": 0 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1024853, + "thread": 2 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1222451, + "thread": 2 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1348079, + "thread": 29 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1634696, + "thread": 0 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1800959, + "thread": 25 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 1889352, + "thread": 26 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2025185, + "thread": 29 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2175203, + "thread": 26 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2304017, + "thread": 21 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2505385, + "thread": 21 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2725815, + "thread": 29 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 2792959, + "thread": 10 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 3068455, + "thread": 18 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 3236265, + "thread": 21 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 3391181, + "thread": 1 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 3573190, + "thread": 15 + } + }, + { + "amount": "78.279666546", + "slot": { + "period": 3707675, + "thread": 6 + } + }, + { + "amount": "78.279666541", + "slot": { + "period": 3796256, + "thread": 28 + } + } + ], + "AU12Lsg4N5RkjaQ8KyJFHwPftrA5QsBVwi7BNwvQgBdokwLkzd4Ft": [ + { + "amount": "76.406309683", + "slot": { + "period": 101805, + "thread": 5 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 194884, + "thread": 26 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 374419, + "thread": 22 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 636141, + "thread": 8 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 695267, + "thread": 29 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 856653, + "thread": 5 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1052008, + "thread": 29 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1220469, + "thread": 26 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1339785, + "thread": 4 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1487317, + "thread": 9 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1648487, + "thread": 28 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 1824983, + "thread": 17 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2127552, + "thread": 26 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2163570, + "thread": 30 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2397736, + "thread": 2 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2490636, + "thread": 14 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2675289, + "thread": 1 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 2832781, + "thread": 7 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3029043, + "thread": 31 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3250290, + "thread": 29 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3340662, + "thread": 23 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3511924, + "thread": 14 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3676649, + "thread": 6 + } + }, + { + "amount": "76.406309683", + "slot": { + "period": 3825128, + "thread": 17 + } + } + ], + "AU12LsmtFUwCA4ow5EDykHUK1bSjfc6dEN9Zsdm9g2w9hbAU5vRMc": [ + { + "amount": "101.260244806", + "slot": { + "period": 32522, + "thread": 3 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 189608, + "thread": 4 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 469642, + "thread": 12 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 541913, + "thread": 23 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 756390, + "thread": 6 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 889907, + "thread": 1 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1113892, + "thread": 20 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1284004, + "thread": 29 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1363811, + "thread": 25 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1484507, + "thread": 31 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1661299, + "thread": 10 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 1900891, + "thread": 24 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2066476, + "thread": 20 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2259441, + "thread": 28 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2404716, + "thread": 28 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2526669, + "thread": 13 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2680593, + "thread": 0 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 2928830, + "thread": 25 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 3039608, + "thread": 10 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 3192162, + "thread": 28 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 3355204, + "thread": 18 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 3557927, + "thread": 12 + } + }, + { + "amount": "101.260244806", + "slot": { + "period": 3675726, + "thread": 6 + } + }, + { + "amount": "101.260244795", + "slot": { + "period": 3825546, + "thread": 11 + } + } + ], + "AU12Lty62UvQuX52kSWVEXoVWUbQ79QFktMU7q54Pffwsu8Cupa1i": [ + { + "amount": "467.564276111", + "slot": { + "period": 33531, + "thread": 15 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 209260, + "thread": 23 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 458592, + "thread": 14 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 576215, + "thread": 1 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 657313, + "thread": 1 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 932119, + "thread": 12 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1117047, + "thread": 21 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1236440, + "thread": 4 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1344820, + "thread": 5 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1614267, + "thread": 18 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1679571, + "thread": 11 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 1828845, + "thread": 8 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2071655, + "thread": 16 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2293023, + "thread": 25 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2343133, + "thread": 5 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2463612, + "thread": 0 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2678361, + "thread": 22 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2847483, + "thread": 21 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 2977413, + "thread": 23 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 3148035, + "thread": 19 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 3353600, + "thread": 24 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 3455434, + "thread": 27 + } + }, + { + "amount": "467.564276111", + "slot": { + "period": 3678658, + "thread": 31 + } + }, + { + "amount": "467.564276113", + "slot": { + "period": 3870910, + "thread": 30 + } + } + ], + "AU12LuCfwWZWCcs4fqH9a2fkiuwYNz3Vqx4azt2JkzE7tgqM8HRet": [ + { + "amount": "96.918266552", + "slot": { + "period": 114593, + "thread": 28 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 179789, + "thread": 14 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 350101, + "thread": 22 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 599641, + "thread": 18 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 739364, + "thread": 28 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 908269, + "thread": 6 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 986182, + "thread": 8 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 1164744, + "thread": 22 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 1365942, + "thread": 23 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 1546511, + "thread": 0 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 1677463, + "thread": 5 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 1816563, + "thread": 15 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2143771, + "thread": 25 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2247869, + "thread": 2 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2436990, + "thread": 6 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2468578, + "thread": 29 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2666191, + "thread": 13 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 2894492, + "thread": 3 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 3096749, + "thread": 0 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 3250948, + "thread": 6 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 3405465, + "thread": 0 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 3507061, + "thread": 13 + } + }, + { + "amount": "96.918266552", + "slot": { + "period": 3629918, + "thread": 23 + } + }, + { + "amount": "96.918266561", + "slot": { + "period": 3862652, + "thread": 22 + } + } + ], + "AU12Luh9qKp37Kmr69Y5Jd5G36aQopHo8HHy8kr96f36nxWKVTouH": [ + { + "amount": "216.959456502", + "slot": { + "period": 111164, + "thread": 20 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 172302, + "thread": 29 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 412937, + "thread": 31 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 581567, + "thread": 1 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 762331, + "thread": 31 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 965951, + "thread": 29 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1056042, + "thread": 14 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1199374, + "thread": 19 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1370890, + "thread": 0 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1528757, + "thread": 27 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1742102, + "thread": 2 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 1837028, + "thread": 19 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2008265, + "thread": 25 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2203700, + "thread": 14 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2367268, + "thread": 7 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2550187, + "thread": 7 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2733521, + "thread": 21 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2845527, + "thread": 19 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 2982578, + "thread": 25 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 3250454, + "thread": 22 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 3359519, + "thread": 13 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 3512307, + "thread": 29 + } + }, + { + "amount": "216.959456502", + "slot": { + "period": 3747561, + "thread": 25 + } + }, + { + "amount": "216.959456498", + "slot": { + "period": 3882323, + "thread": 19 + } + } + ], + "AU12Lv3uYaCVWTbLEW7W4QURmKaiECNzDkBAHJ2YXNaQvV15nfzBH": [ + { + "amount": "147.711088576", + "slot": { + "period": 13796, + "thread": 28 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 303943, + "thread": 9 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 448435, + "thread": 25 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 505337, + "thread": 12 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 731560, + "thread": 16 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 849403, + "thread": 5 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1046154, + "thread": 19 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1263748, + "thread": 29 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1447178, + "thread": 0 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1540340, + "thread": 8 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1729290, + "thread": 2 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 1826711, + "thread": 11 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2134601, + "thread": 3 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2236703, + "thread": 14 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2416185, + "thread": 12 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2533890, + "thread": 19 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2737856, + "thread": 8 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2825920, + "thread": 14 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 2996943, + "thread": 2 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 3131714, + "thread": 11 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 3357168, + "thread": 17 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 3610438, + "thread": 10 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 3648093, + "thread": 21 + } + }, + { + "amount": "147.711088576", + "slot": { + "period": 3920839, + "thread": 21 + } + } + ], + "AU12LwPuxp6a7gpbWHNHN3vy78CrdhF8qxKvXJ2V2jyqAhWLZbQN7": [ + { + "amount": "215.132946359", + "slot": { + "period": 149789, + "thread": 3 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 236733, + "thread": 29 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 360346, + "thread": 13 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 628213, + "thread": 12 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 685577, + "thread": 20 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 914121, + "thread": 27 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1073495, + "thread": 3 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1279519, + "thread": 13 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1405430, + "thread": 14 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1535291, + "thread": 2 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1652317, + "thread": 26 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 1928419, + "thread": 6 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2073191, + "thread": 28 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2153179, + "thread": 29 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2447172, + "thread": 7 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2620028, + "thread": 28 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2785240, + "thread": 23 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 2939575, + "thread": 16 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 3063901, + "thread": 7 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 3288225, + "thread": 22 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 3309510, + "thread": 11 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 3460078, + "thread": 11 + } + }, + { + "amount": "215.132946359", + "slot": { + "period": 3661404, + "thread": 5 + } + }, + { + "amount": "215.132946362", + "slot": { + "period": 3829865, + "thread": 29 + } + } + ], + "AU12LwrnmE7bzBB6MhQga2bouoL3CqdzHEAnKQjARPG614thRzKfV": [ + { + "amount": "55.804375685", + "slot": { + "period": 72375, + "thread": 1 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 257662, + "thread": 11 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 417776, + "thread": 13 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 603882, + "thread": 11 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 789483, + "thread": 5 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 916575, + "thread": 27 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1041317, + "thread": 6 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1251671, + "thread": 6 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1430323, + "thread": 31 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1503301, + "thread": 7 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1789027, + "thread": 5 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 1863882, + "thread": 13 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2047802, + "thread": 26 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2291547, + "thread": 11 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2363099, + "thread": 18 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2608553, + "thread": 20 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2755588, + "thread": 20 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 2797319, + "thread": 19 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 3035875, + "thread": 11 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 3166493, + "thread": 26 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 3400541, + "thread": 27 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 3467398, + "thread": 12 + } + }, + { + "amount": "55.804375685", + "slot": { + "period": 3691103, + "thread": 20 + } + }, + { + "amount": "55.804375677", + "slot": { + "period": 3886380, + "thread": 0 + } + } + ], + "AU12LxGpudtdhXCxs97Kvq8y95iGxpEHNezwDvK39AvSav3Fak4Kn": [ + { + "amount": "421.174055341", + "slot": { + "period": 41508, + "thread": 13 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 217650, + "thread": 12 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 399543, + "thread": 26 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 643347, + "thread": 14 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 687353, + "thread": 28 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 829323, + "thread": 19 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1120398, + "thread": 14 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1222253, + "thread": 14 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1439539, + "thread": 9 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1616242, + "thread": 25 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1791632, + "thread": 20 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 1836136, + "thread": 21 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2082223, + "thread": 21 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2200022, + "thread": 8 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2306535, + "thread": 12 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2493941, + "thread": 9 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2681802, + "thread": 29 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 2922140, + "thread": 28 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 3071689, + "thread": 10 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 3194825, + "thread": 25 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 3300217, + "thread": 31 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 3501413, + "thread": 29 + } + }, + { + "amount": "421.174055341", + "slot": { + "period": 3677072, + "thread": 19 + } + }, + { + "amount": "421.174055352", + "slot": { + "period": 3792537, + "thread": 18 + } + } + ], + "AU12LykhEwZ7gFVGmwXAh4C8jUHUf3e5kTJXDrZiRdA7z9bhVEwCx": [ + { + "amount": "224.555743353", + "slot": { + "period": 146815, + "thread": 12 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 281799, + "thread": 31 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 479013, + "thread": 16 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 551775, + "thread": 11 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 788198, + "thread": 22 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 859504, + "thread": 11 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1060595, + "thread": 0 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1209286, + "thread": 20 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1395694, + "thread": 17 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1495997, + "thread": 15 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1671702, + "thread": 17 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 1916021, + "thread": 30 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2131796, + "thread": 15 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2276372, + "thread": 19 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2375819, + "thread": 31 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2568294, + "thread": 24 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2634381, + "thread": 26 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 2808996, + "thread": 16 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3062104, + "thread": 1 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3155163, + "thread": 3 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3432861, + "thread": 14 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3461198, + "thread": 31 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3695414, + "thread": 5 + } + }, + { + "amount": "224.555743353", + "slot": { + "period": 3943604, + "thread": 14 + } + } + ], + "AU12LyoRMsFGMw9Xa6US4K4y6hSJcnXZ1hHF3CQr2DEYXDLrZZ3wD": [ + { + "amount": "225.540313729", + "slot": { + "period": 131871, + "thread": 5 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 176994, + "thread": 4 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 346494, + "thread": 19 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 637314, + "thread": 30 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 809990, + "thread": 24 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 925003, + "thread": 22 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1067416, + "thread": 11 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1189419, + "thread": 22 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1362731, + "thread": 20 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1535341, + "thread": 22 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1714684, + "thread": 5 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 1974280, + "thread": 6 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2141306, + "thread": 24 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2228023, + "thread": 15 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2398568, + "thread": 2 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2585239, + "thread": 27 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2785812, + "thread": 1 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2809385, + "thread": 15 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 2973317, + "thread": 21 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 3145970, + "thread": 31 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 3338066, + "thread": 30 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 3608181, + "thread": 12 + } + }, + { + "amount": "225.540313729", + "slot": { + "period": 3714794, + "thread": 14 + } + }, + { + "amount": "225.540313721", + "slot": { + "period": 3784916, + "thread": 23 + } + } + ], + "AU12Lziz9WTKoyE19M3Hz2L8KhTwwAqtfH4MaLjqtU5AgJ8vd33U2": [ + { + "amount": "130.315180622", + "slot": { + "period": 75109, + "thread": 3 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 219416, + "thread": 11 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 419338, + "thread": 31 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 620579, + "thread": 24 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 814207, + "thread": 0 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 861391, + "thread": 10 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1082670, + "thread": 12 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1291698, + "thread": 27 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1319420, + "thread": 6 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1512201, + "thread": 1 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1764514, + "thread": 24 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 1886374, + "thread": 10 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2022494, + "thread": 12 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2181785, + "thread": 8 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2379332, + "thread": 15 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2526237, + "thread": 19 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2710069, + "thread": 12 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 2861342, + "thread": 28 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 3081802, + "thread": 27 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 3157287, + "thread": 6 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 3294591, + "thread": 23 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 3548465, + "thread": 13 + } + }, + { + "amount": "130.315180622", + "slot": { + "period": 3672038, + "thread": 2 + } + }, + { + "amount": "130.315180610", + "slot": { + "period": 3929963, + "thread": 16 + } + } + ], + "AU12Lzy2mCGEq84tikxCzFBtPEHFiY66xbFg8ehmxQYDzxze57DFh": [ + { + "amount": "55.825571428", + "slot": { + "period": 120113, + "thread": 10 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 184913, + "thread": 1 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 453054, + "thread": 1 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 547225, + "thread": 17 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 723041, + "thread": 10 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 874025, + "thread": 2 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1052995, + "thread": 26 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1151218, + "thread": 27 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1388735, + "thread": 17 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1600082, + "thread": 24 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1672184, + "thread": 3 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 1921855, + "thread": 13 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2080726, + "thread": 26 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2180916, + "thread": 14 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2437381, + "thread": 25 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2487655, + "thread": 19 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2642297, + "thread": 27 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2851240, + "thread": 19 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 2987538, + "thread": 29 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 3179633, + "thread": 5 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 3348305, + "thread": 30 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 3454915, + "thread": 5 + } + }, + { + "amount": "55.825571428", + "slot": { + "period": 3704682, + "thread": 13 + } + }, + { + "amount": "55.825571429", + "slot": { + "period": 3786099, + "thread": 12 + } + } + ], + "AU12M25DPmqURnM4LcYjU1upkbC8RmwL6fPHyxTZ2zQwKMztR3Vjn": [ + { + "amount": "74755.916666667", + "slot": { + "period": 118918, + "thread": 28 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 273326, + "thread": 27 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 404223, + "thread": 15 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 651454, + "thread": 23 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 684834, + "thread": 31 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 834234, + "thread": 29 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1106149, + "thread": 6 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1206638, + "thread": 31 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1335531, + "thread": 1 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1554433, + "thread": 19 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1723558, + "thread": 14 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 1914210, + "thread": 21 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2090316, + "thread": 30 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2222466, + "thread": 11 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2326380, + "thread": 30 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2496601, + "thread": 10 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2737151, + "thread": 30 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 2862181, + "thread": 13 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 3108736, + "thread": 24 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 3222609, + "thread": 13 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 3396356, + "thread": 22 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 3458045, + "thread": 14 + } + }, + { + "amount": "74755.916666667", + "slot": { + "period": 3701547, + "thread": 0 + } + }, + { + "amount": "74755.916666659", + "slot": { + "period": 3926184, + "thread": 14 + } + } + ], + "AU12M2KqMdsPSRoW59hqzGVeXTwaHjsh2wut6QRnrBSYuzzyLFCsg": [ + { + "amount": "255.177873598", + "slot": { + "period": 99520, + "thread": 22 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 252312, + "thread": 6 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 421007, + "thread": 28 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 519546, + "thread": 17 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 690306, + "thread": 10 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 864659, + "thread": 4 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1138099, + "thread": 30 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1255109, + "thread": 6 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1345508, + "thread": 26 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1623267, + "thread": 24 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1791986, + "thread": 20 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1921812, + "thread": 3 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 1985623, + "thread": 7 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 2216837, + "thread": 22 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 2398318, + "thread": 19 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 2490501, + "thread": 18 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 2633102, + "thread": 12 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 2823782, + "thread": 0 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 3061663, + "thread": 29 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 3154054, + "thread": 13 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 3328779, + "thread": 12 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 3526183, + "thread": 30 + } + }, + { + "amount": "255.177873598", + "slot": { + "period": 3722571, + "thread": 15 + } + }, + { + "amount": "255.177873604", + "slot": { + "period": 3829582, + "thread": 10 + } + } + ], + "AU12M3bAjCQWyBze2jDvnGPTx3JgSSy6uj3xZoxEHmE1a5tGzfbBD": [ + { + "amount": "468.148187446", + "slot": { + "period": 25961, + "thread": 21 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 233338, + "thread": 31 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 435354, + "thread": 8 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 588635, + "thread": 31 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 746997, + "thread": 28 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 959329, + "thread": 21 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1003951, + "thread": 9 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1281281, + "thread": 12 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1319006, + "thread": 30 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1573014, + "thread": 7 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1708595, + "thread": 31 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 1923112, + "thread": 17 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2102942, + "thread": 3 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2218320, + "thread": 28 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2350420, + "thread": 25 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2576206, + "thread": 24 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2638408, + "thread": 2 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2801140, + "thread": 10 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 2993704, + "thread": 31 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 3235165, + "thread": 29 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 3371411, + "thread": 14 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 3450911, + "thread": 0 + } + }, + { + "amount": "468.148187446", + "slot": { + "period": 3687223, + "thread": 18 + } + }, + { + "amount": "468.148187444", + "slot": { + "period": 3835044, + "thread": 28 + } + } + ], + "AU12M3kBnjzLtgE4mUiewzn8t6hE7TQvRms19pTLejfAu5vw3Z2HY": [ + { + "amount": "53.641080273", + "slot": { + "period": 49409, + "thread": 14 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 262222, + "thread": 15 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 448537, + "thread": 25 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 589915, + "thread": 12 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 687672, + "thread": 2 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 927772, + "thread": 25 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1014365, + "thread": 6 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1186347, + "thread": 7 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1476170, + "thread": 8 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1552664, + "thread": 26 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1690924, + "thread": 23 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 1954208, + "thread": 21 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2018990, + "thread": 6 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2208470, + "thread": 25 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2320404, + "thread": 5 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2502665, + "thread": 17 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2734146, + "thread": 29 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 2928059, + "thread": 2 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 3032040, + "thread": 16 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 3137572, + "thread": 20 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 3444862, + "thread": 3 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 3488574, + "thread": 10 + } + }, + { + "amount": "53.641080273", + "slot": { + "period": 3690363, + "thread": 31 + } + }, + { + "amount": "53.641080283", + "slot": { + "period": 3923730, + "thread": 18 + } + } + ], + "AU12M57W6b2HURAEXdVC9hJLNikzfZqTAxWk7KznnDCkRyvT3E9gk": [ + { + "amount": "77.034516958", + "slot": { + "period": 64955, + "thread": 2 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 267121, + "thread": 18 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 418849, + "thread": 22 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 598073, + "thread": 4 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 802464, + "thread": 21 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 874902, + "thread": 2 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 996704, + "thread": 3 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 1287584, + "thread": 10 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 1439759, + "thread": 10 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 1594290, + "thread": 23 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 1730049, + "thread": 1 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 1881585, + "thread": 23 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2058789, + "thread": 29 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2258191, + "thread": 28 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2418399, + "thread": 28 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2594706, + "thread": 1 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2720228, + "thread": 17 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2911917, + "thread": 6 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 2954070, + "thread": 1 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 3183541, + "thread": 28 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 3444501, + "thread": 23 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 3577113, + "thread": 11 + } + }, + { + "amount": "77.034516958", + "slot": { + "period": 3660172, + "thread": 21 + } + }, + { + "amount": "77.034516952", + "slot": { + "period": 3828721, + "thread": 13 + } + } + ], + "AU12M6yF2Nn4v8CHxyXGwqL9maNQZG7pJVZhZFuTDRGdRrooW77d4": [ + { + "amount": "151.461603235", + "slot": { + "period": 115826, + "thread": 15 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 262412, + "thread": 25 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 432714, + "thread": 9 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 546980, + "thread": 28 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 809703, + "thread": 18 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 898370, + "thread": 23 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1138339, + "thread": 21 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1199241, + "thread": 15 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1352483, + "thread": 24 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1508009, + "thread": 28 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1775909, + "thread": 31 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 1929211, + "thread": 30 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2052752, + "thread": 17 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2147996, + "thread": 19 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2337166, + "thread": 26 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2469326, + "thread": 9 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2740539, + "thread": 19 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 2889429, + "thread": 2 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 3074110, + "thread": 1 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 3167673, + "thread": 15 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 3394422, + "thread": 20 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 3475877, + "thread": 13 + } + }, + { + "amount": "151.461603235", + "slot": { + "period": 3670123, + "thread": 21 + } + }, + { + "amount": "151.461603228", + "slot": { + "period": 3876256, + "thread": 17 + } + } + ], + "AU12M7JDxhZkWDZ8dzm6Ydra1rFMB7ZAnjTrG49VMneLWS8PfJkDj": [ + { + "amount": "424.222943682", + "slot": { + "period": 30720, + "thread": 5 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 177290, + "thread": 23 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 398245, + "thread": 17 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 544897, + "thread": 11 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 658204, + "thread": 21 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 838489, + "thread": 22 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1101319, + "thread": 25 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1314410, + "thread": 20 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1325199, + "thread": 26 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1516139, + "thread": 13 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1722175, + "thread": 2 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 1972908, + "thread": 15 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2083408, + "thread": 4 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2225216, + "thread": 3 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2381567, + "thread": 19 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2608413, + "thread": 15 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2709054, + "thread": 1 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 2952544, + "thread": 19 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 3080327, + "thread": 17 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 3214701, + "thread": 5 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 3388650, + "thread": 5 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 3553740, + "thread": 6 + } + }, + { + "amount": "424.222943682", + "slot": { + "period": 3673306, + "thread": 20 + } + }, + { + "amount": "424.222943688", + "slot": { + "period": 3780151, + "thread": 23 + } + } + ], + "AU12M7bEjsDapFkLYBh8DbP1tbQhWdWU2v6FyGoMtd3Fk9ExHm1Gr": [ + { + "amount": "381.135921720", + "slot": { + "period": 43626, + "thread": 23 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 284232, + "thread": 15 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 490399, + "thread": 28 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 566283, + "thread": 6 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 744447, + "thread": 15 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 970845, + "thread": 6 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 991579, + "thread": 1 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 1240715, + "thread": 25 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 1430880, + "thread": 8 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 1641362, + "thread": 14 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 1770889, + "thread": 15 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 1858870, + "thread": 4 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2007010, + "thread": 6 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2244489, + "thread": 30 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2422422, + "thread": 17 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2530478, + "thread": 17 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2787387, + "thread": 18 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 2852358, + "thread": 16 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 3091450, + "thread": 8 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 3285214, + "thread": 30 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 3429138, + "thread": 16 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 3459593, + "thread": 8 + } + }, + { + "amount": "381.135921720", + "slot": { + "period": 3692826, + "thread": 11 + } + }, + { + "amount": "381.135921713", + "slot": { + "period": 3853886, + "thread": 20 + } + } + ], + "AU12M7iCGhQhFLEpFSL4QNs6s1tRct3bAZyhT91jicvu4DA7ssfaS": [ + { + "amount": "76.989080168", + "slot": { + "period": 45024, + "thread": 8 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 252299, + "thread": 11 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 360173, + "thread": 8 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 595682, + "thread": 17 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 690000, + "thread": 16 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 848109, + "thread": 28 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1144157, + "thread": 10 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1197153, + "thread": 14 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1336828, + "thread": 10 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1639056, + "thread": 27 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1674182, + "thread": 17 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 1846208, + "thread": 5 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2069610, + "thread": 19 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2181194, + "thread": 14 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2311019, + "thread": 15 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2577096, + "thread": 8 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2738925, + "thread": 28 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 2951889, + "thread": 10 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 3116434, + "thread": 28 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 3146855, + "thread": 0 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 3414991, + "thread": 18 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 3556764, + "thread": 28 + } + }, + { + "amount": "76.989080168", + "slot": { + "period": 3691636, + "thread": 9 + } + }, + { + "amount": "76.989080160", + "slot": { + "period": 3826327, + "thread": 18 + } + } + ], + "AU12M7mkWaRfhRSqdXJNMcT3aEqamkvPKMTV4uA12fciREQ4nSfbP": [ + { + "amount": "228.023365349", + "slot": { + "period": 99360, + "thread": 7 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 317128, + "thread": 4 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 356807, + "thread": 25 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 547169, + "thread": 6 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 704004, + "thread": 4 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 889935, + "thread": 23 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1065830, + "thread": 21 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1156738, + "thread": 0 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1374277, + "thread": 4 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1612650, + "thread": 24 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1794300, + "thread": 14 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 1947743, + "thread": 4 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2105306, + "thread": 11 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2197580, + "thread": 11 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2378934, + "thread": 3 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2518093, + "thread": 8 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2689735, + "thread": 16 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 2937557, + "thread": 31 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 3065162, + "thread": 2 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 3136262, + "thread": 10 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 3400168, + "thread": 10 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 3545385, + "thread": 29 + } + }, + { + "amount": "228.023365349", + "slot": { + "period": 3637117, + "thread": 17 + } + }, + { + "amount": "228.023365358", + "slot": { + "period": 3878935, + "thread": 16 + } + } + ], + "AU12M82DGfhmyeG1y7uCmEqgPdcAhB4YGqB73973PDLhV8xydgeJL": [ + { + "amount": "157.107971659", + "slot": { + "period": 142617, + "thread": 1 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 313024, + "thread": 20 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 476626, + "thread": 11 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 553443, + "thread": 18 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 765273, + "thread": 10 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 837494, + "thread": 1 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1103650, + "thread": 9 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1235460, + "thread": 19 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1426704, + "thread": 22 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1545130, + "thread": 25 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1694170, + "thread": 24 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 1858003, + "thread": 0 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2050466, + "thread": 3 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2154683, + "thread": 8 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2394829, + "thread": 19 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2545240, + "thread": 8 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2719760, + "thread": 1 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 2824085, + "thread": 4 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3107487, + "thread": 26 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3124495, + "thread": 15 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3415028, + "thread": 19 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3511317, + "thread": 29 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3637458, + "thread": 13 + } + }, + { + "amount": "157.107971659", + "slot": { + "period": 3794089, + "thread": 26 + } + } + ], + "AU12M8vE5VkAqw15fZqHE5Euw1TyyZKdzdsDzSEdBJUY2ET3cXm2z": [ + { + "amount": "427.613316151", + "slot": { + "period": 47008, + "thread": 18 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 195169, + "thread": 29 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 353032, + "thread": 7 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 585918, + "thread": 9 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 737475, + "thread": 0 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 953405, + "thread": 11 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1081736, + "thread": 12 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1178372, + "thread": 9 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1445081, + "thread": 9 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1624561, + "thread": 29 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1659815, + "thread": 15 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 1831263, + "thread": 22 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2125610, + "thread": 7 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2252304, + "thread": 7 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2326333, + "thread": 20 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2534596, + "thread": 5 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2633642, + "thread": 20 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 2865560, + "thread": 31 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 3044448, + "thread": 12 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 3233134, + "thread": 23 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 3316278, + "thread": 7 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 3579072, + "thread": 9 + } + }, + { + "amount": "427.613316151", + "slot": { + "period": 3619337, + "thread": 0 + } + }, + { + "amount": "427.613316144", + "slot": { + "period": 3890412, + "thread": 14 + } + } + ], + "AU12M97FmSAqPmk6V9R215mSk8Nc9bJPTRiaERdMroX4dyiKVyrud": [ + { + "amount": "105.297145807", + "slot": { + "period": 57804, + "thread": 13 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 242812, + "thread": 26 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 401940, + "thread": 16 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 554279, + "thread": 29 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 766062, + "thread": 20 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 970119, + "thread": 6 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1117151, + "thread": 23 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1308333, + "thread": 4 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1359195, + "thread": 23 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1626806, + "thread": 20 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1729891, + "thread": 18 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 1920127, + "thread": 15 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2017713, + "thread": 25 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2242851, + "thread": 0 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2442881, + "thread": 29 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2517920, + "thread": 25 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2660629, + "thread": 29 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 2904469, + "thread": 28 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 3047803, + "thread": 19 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 3214162, + "thread": 9 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 3329609, + "thread": 13 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 3602636, + "thread": 3 + } + }, + { + "amount": "105.297145807", + "slot": { + "period": 3709424, + "thread": 8 + } + }, + { + "amount": "105.297145806", + "slot": { + "period": 3898554, + "thread": 9 + } + } + ], + "AU12M9WLkGr59YcuPv1zsc7LiydS9MmBy19uLBMreojDvHeoShgyU": [ + { + "amount": "255.322405992", + "slot": { + "period": 77768, + "thread": 7 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 224525, + "thread": 30 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 440901, + "thread": 3 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 617046, + "thread": 29 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 664709, + "thread": 10 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 826014, + "thread": 6 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1082896, + "thread": 22 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1210110, + "thread": 28 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1412706, + "thread": 31 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1545081, + "thread": 22 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1752938, + "thread": 20 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 1925856, + "thread": 24 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2041512, + "thread": 14 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2155953, + "thread": 9 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2380759, + "thread": 31 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2573306, + "thread": 3 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2638503, + "thread": 2 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 2830187, + "thread": 21 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 3036520, + "thread": 16 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 3200693, + "thread": 27 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 3350014, + "thread": 10 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 3500848, + "thread": 29 + } + }, + { + "amount": "255.322405992", + "slot": { + "period": 3722758, + "thread": 9 + } + }, + { + "amount": "255.322405999", + "slot": { + "period": 3862125, + "thread": 15 + } + } + ], + "AU12M9ofDhqXv4Ky6qeNy7fUWn5CF981wgpdqjPhJR4hgLbfQEKjK": [ + { + "amount": "76.974184802", + "slot": { + "period": 74387, + "thread": 14 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 234714, + "thread": 17 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 355576, + "thread": 13 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 596377, + "thread": 20 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 669168, + "thread": 0 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 883280, + "thread": 0 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 987294, + "thread": 8 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 1201409, + "thread": 27 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 1323678, + "thread": 29 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 1603380, + "thread": 24 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 1673672, + "thread": 22 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 1810123, + "thread": 27 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2130839, + "thread": 12 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2192556, + "thread": 24 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2358541, + "thread": 28 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2550193, + "thread": 5 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2767923, + "thread": 29 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 2920664, + "thread": 17 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 3035072, + "thread": 25 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 3155161, + "thread": 10 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 3290200, + "thread": 12 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 3468576, + "thread": 31 + } + }, + { + "amount": "76.974184802", + "slot": { + "period": 3681300, + "thread": 16 + } + }, + { + "amount": "76.974184791", + "slot": { + "period": 3821085, + "thread": 13 + } + } + ], + "AU12M9xbaf1NQMX99Zo4DN79m64RALtfN6LfKamwn4uiAjsm6xFBT": [ + { + "amount": "263.591869031", + "slot": { + "period": 32431, + "thread": 15 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 292540, + "thread": 29 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 404281, + "thread": 28 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 502094, + "thread": 26 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 798184, + "thread": 6 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 891177, + "thread": 11 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1143105, + "thread": 25 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1203018, + "thread": 2 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1431791, + "thread": 26 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1505425, + "thread": 11 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1782077, + "thread": 31 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 1862110, + "thread": 31 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2029677, + "thread": 11 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2235348, + "thread": 16 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2352170, + "thread": 8 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2471702, + "thread": 4 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2785511, + "thread": 22 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 2805792, + "thread": 26 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 3067055, + "thread": 24 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 3256902, + "thread": 1 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 3313095, + "thread": 8 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 3600145, + "thread": 12 + } + }, + { + "amount": "263.591869031", + "slot": { + "period": 3757192, + "thread": 31 + } + }, + { + "amount": "263.591869020", + "slot": { + "period": 3857815, + "thread": 28 + } + } + ], + "AU12MAaaaHsqsn12Wy9q2RtnA2K5cys9beVAFccMamKE5b9iWPW8H": [ + { + "amount": "159.326282710", + "slot": { + "period": 23679, + "thread": 15 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 196170, + "thread": 21 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 399924, + "thread": 31 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 612323, + "thread": 25 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 686834, + "thread": 23 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 904945, + "thread": 20 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1115110, + "thread": 2 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1313743, + "thread": 31 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1446315, + "thread": 23 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1641682, + "thread": 30 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1751895, + "thread": 17 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1821350, + "thread": 7 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 1989153, + "thread": 6 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 2229748, + "thread": 16 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 2422757, + "thread": 24 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 2564656, + "thread": 25 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 2649038, + "thread": 19 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 2834915, + "thread": 23 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 3049580, + "thread": 16 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 3278078, + "thread": 23 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 3333236, + "thread": 20 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 3510445, + "thread": 25 + } + }, + { + "amount": "159.326282710", + "slot": { + "period": 3743049, + "thread": 20 + } + }, + { + "amount": "159.326282704", + "slot": { + "period": 3943912, + "thread": 12 + } + } + ], + "AU12MB3SmPuFQCjzS6sHQMz3Xr7Cff6cYbgfQqFpPPNbtMEQsaM36": [ + { + "amount": "123.710156712", + "slot": { + "period": 165924, + "thread": 13 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 269847, + "thread": 2 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 452065, + "thread": 12 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 577456, + "thread": 24 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 728883, + "thread": 15 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 919514, + "thread": 29 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1130765, + "thread": 27 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1278792, + "thread": 17 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1476953, + "thread": 23 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1563563, + "thread": 2 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1766792, + "thread": 8 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 1875102, + "thread": 15 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2006765, + "thread": 0 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2254989, + "thread": 4 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2315211, + "thread": 0 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2520664, + "thread": 5 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2663778, + "thread": 21 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 2949131, + "thread": 16 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 3101343, + "thread": 5 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 3259269, + "thread": 23 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 3353071, + "thread": 7 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 3529095, + "thread": 28 + } + }, + { + "amount": "123.710156712", + "slot": { + "period": 3747376, + "thread": 24 + } + }, + { + "amount": "123.710156723", + "slot": { + "period": 3827625, + "thread": 10 + } + } + ], + "AU12MBxhgEveYYV7wLfQuAPR4qiHgvoFvi4Re3VVGxazPLLmizMKb": [ + { + "amount": "67.323670200", + "slot": { + "period": 95071, + "thread": 29 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 304657, + "thread": 12 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 403003, + "thread": 2 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 541379, + "thread": 28 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 745485, + "thread": 28 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 972861, + "thread": 29 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1023158, + "thread": 16 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1189759, + "thread": 16 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1372907, + "thread": 29 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1634236, + "thread": 27 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1802115, + "thread": 23 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 1923666, + "thread": 22 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2080798, + "thread": 5 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2240235, + "thread": 29 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2398743, + "thread": 21 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2527185, + "thread": 20 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2642720, + "thread": 7 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2936043, + "thread": 19 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 2986512, + "thread": 13 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 3133433, + "thread": 23 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 3416153, + "thread": 15 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 3491883, + "thread": 13 + } + }, + { + "amount": "67.323670200", + "slot": { + "period": 3711550, + "thread": 6 + } + }, + { + "amount": "67.323670206", + "slot": { + "period": 3903222, + "thread": 11 + } + } + ], + "AU12MC8ig1y551K9nncv7VRTS76ofXY8RrJCaCZbe2ypJzTjUk6qt": [ + { + "amount": "54.297767280", + "slot": { + "period": 60228, + "thread": 20 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 203953, + "thread": 4 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 424798, + "thread": 26 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 493991, + "thread": 6 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 765251, + "thread": 18 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 876217, + "thread": 6 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1014735, + "thread": 6 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1213010, + "thread": 6 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1431111, + "thread": 22 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1530560, + "thread": 17 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1716811, + "thread": 30 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 1912212, + "thread": 2 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2050815, + "thread": 8 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2172347, + "thread": 5 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2355849, + "thread": 13 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2607672, + "thread": 31 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2693449, + "thread": 0 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2885721, + "thread": 18 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 2974669, + "thread": 12 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 3153106, + "thread": 18 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 3308401, + "thread": 26 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 3541385, + "thread": 29 + } + }, + { + "amount": "54.297767280", + "slot": { + "period": 3776268, + "thread": 2 + } + }, + { + "amount": "54.297767279", + "slot": { + "period": 3857598, + "thread": 16 + } + } + ], + "AU12MCPp52mwzrUDmggopcc4xEgXXVramucrM92NRD9Xjb4t7ZHXv": [ + { + "amount": "84.649935726", + "slot": { + "period": 135957, + "thread": 29 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 196945, + "thread": 16 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 409914, + "thread": 1 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 606170, + "thread": 16 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 810170, + "thread": 17 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 949249, + "thread": 8 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1140693, + "thread": 7 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1284149, + "thread": 28 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1325036, + "thread": 15 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1619475, + "thread": 5 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1755406, + "thread": 0 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 1938317, + "thread": 5 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2108459, + "thread": 13 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2159711, + "thread": 4 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2327102, + "thread": 3 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2608054, + "thread": 28 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2753197, + "thread": 20 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 2905796, + "thread": 22 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 3115422, + "thread": 20 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 3192423, + "thread": 1 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 3326947, + "thread": 22 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 3458026, + "thread": 14 + } + }, + { + "amount": "84.649935726", + "slot": { + "period": 3779785, + "thread": 20 + } + }, + { + "amount": "84.649935722", + "slot": { + "period": 3832231, + "thread": 27 + } + } + ], + "AU12MD1YLfCvJTQBMmNj5f6Sx4c2jpQLVkewtA4VZG6ydwQ7zUncQ": [ + { + "amount": "154.791449033", + "slot": { + "period": 46590, + "thread": 15 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 180594, + "thread": 18 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 324321, + "thread": 23 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 503624, + "thread": 2 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 776110, + "thread": 31 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 926236, + "thread": 11 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1013018, + "thread": 0 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1298257, + "thread": 24 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1413156, + "thread": 20 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1629597, + "thread": 10 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1667219, + "thread": 9 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 1849928, + "thread": 1 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2059582, + "thread": 31 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2235385, + "thread": 12 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2441685, + "thread": 10 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2530880, + "thread": 17 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2632942, + "thread": 15 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2857881, + "thread": 17 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 2968077, + "thread": 7 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 3213959, + "thread": 12 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 3356154, + "thread": 1 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 3584491, + "thread": 27 + } + }, + { + "amount": "154.791449033", + "slot": { + "period": 3643602, + "thread": 25 + } + }, + { + "amount": "154.791449035", + "slot": { + "period": 3893466, + "thread": 0 + } + } + ], + "AU12MD59C793Hr43HA2RoDi42H33xvuRg1MRmd2G1e68AcahmuFtF": [ + { + "amount": "455.900309310", + "slot": { + "period": 93297, + "thread": 29 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 267266, + "thread": 0 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 332514, + "thread": 0 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 511921, + "thread": 15 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 807113, + "thread": 11 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 858560, + "thread": 27 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1112637, + "thread": 23 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1247671, + "thread": 7 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1455278, + "thread": 3 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1601051, + "thread": 31 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1790519, + "thread": 2 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1824524, + "thread": 2 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 1985852, + "thread": 27 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 2191733, + "thread": 22 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 2450721, + "thread": 18 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 2604388, + "thread": 6 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 2765681, + "thread": 12 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 2939655, + "thread": 20 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 3057673, + "thread": 15 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 3270197, + "thread": 1 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 3316816, + "thread": 31 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 3561836, + "thread": 7 + } + }, + { + "amount": "455.900309310", + "slot": { + "period": 3777744, + "thread": 1 + } + }, + { + "amount": "455.900309313", + "slot": { + "period": 3917725, + "thread": 29 + } + } + ], + "AU12MEfnrZEP4CeKyU9gYn24mqG8qex5ySprwTQUWrM3cKZiT3NsB": [ + { + "amount": "185.161568167", + "slot": { + "period": 33024, + "thread": 15 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 199929, + "thread": 14 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 480413, + "thread": 18 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 525075, + "thread": 30 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 682242, + "thread": 30 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 971601, + "thread": 21 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1107924, + "thread": 18 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1188751, + "thread": 3 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1473844, + "thread": 28 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1557637, + "thread": 4 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1690277, + "thread": 26 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 1940786, + "thread": 19 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2130150, + "thread": 3 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2287462, + "thread": 26 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2300902, + "thread": 15 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2600162, + "thread": 7 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2627385, + "thread": 0 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2843313, + "thread": 8 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 2961361, + "thread": 24 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 3225194, + "thread": 2 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 3356533, + "thread": 25 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 3585307, + "thread": 4 + } + }, + { + "amount": "185.161568167", + "slot": { + "period": 3750517, + "thread": 15 + } + }, + { + "amount": "185.161568178", + "slot": { + "period": 3857319, + "thread": 16 + } + } + ], + "AU12MFErDtdFZ6xUV8QcZp6LQuf7Jv8TkQRZyhnMhEMEhCvsfzvyk": [ + { + "amount": "276.172175383", + "slot": { + "period": 104006, + "thread": 31 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 278475, + "thread": 12 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 430986, + "thread": 4 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 493612, + "thread": 11 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 796553, + "thread": 30 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 888012, + "thread": 18 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1032537, + "thread": 25 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1244407, + "thread": 8 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1400933, + "thread": 3 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1519381, + "thread": 4 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1786845, + "thread": 19 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 1904311, + "thread": 13 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2129087, + "thread": 8 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2281595, + "thread": 4 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2454196, + "thread": 2 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2514728, + "thread": 28 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2755565, + "thread": 11 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 2821418, + "thread": 28 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 3030116, + "thread": 25 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 3288285, + "thread": 9 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 3376550, + "thread": 22 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 3548081, + "thread": 12 + } + }, + { + "amount": "276.172175383", + "slot": { + "period": 3694198, + "thread": 1 + } + }, + { + "amount": "276.172175379", + "slot": { + "period": 3883219, + "thread": 20 + } + } + ], + "AU12MFRAeyNJMz7F1Bh4haChgUER46PFz6YKZGFiaJbnqDTSAtKHa": [ + { + "amount": "218.789452067", + "slot": { + "period": 21537, + "thread": 15 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 168343, + "thread": 2 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 365968, + "thread": 18 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 508319, + "thread": 7 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 705103, + "thread": 17 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 869884, + "thread": 30 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1019371, + "thread": 12 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1150624, + "thread": 24 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1410545, + "thread": 31 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1555733, + "thread": 26 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1765535, + "thread": 19 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 1951455, + "thread": 7 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2125534, + "thread": 3 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2164178, + "thread": 19 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2314166, + "thread": 12 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2473396, + "thread": 25 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2751769, + "thread": 31 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 2927208, + "thread": 10 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 3043477, + "thread": 22 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 3225172, + "thread": 1 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 3406926, + "thread": 27 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 3510781, + "thread": 5 + } + }, + { + "amount": "218.789452067", + "slot": { + "period": 3722636, + "thread": 14 + } + }, + { + "amount": "218.789452077", + "slot": { + "period": 3914383, + "thread": 2 + } + } + ], + "AU12MFgMZaRJqLWs5635pvPWD6mWM1REicNn3uwnxLuk1F3vm3TiY": [ + { + "amount": "241.822980043", + "slot": { + "period": 124491, + "thread": 0 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 304251, + "thread": 15 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 342754, + "thread": 27 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 547060, + "thread": 27 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 808431, + "thread": 5 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 920197, + "thread": 19 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1113424, + "thread": 3 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1188889, + "thread": 22 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1455796, + "thread": 3 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1644144, + "thread": 25 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1708118, + "thread": 2 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1848692, + "thread": 22 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 1989680, + "thread": 24 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 2251874, + "thread": 8 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 2402356, + "thread": 31 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 2569436, + "thread": 7 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 2778746, + "thread": 28 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 2795857, + "thread": 16 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 3095251, + "thread": 4 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 3234950, + "thread": 28 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 3408310, + "thread": 13 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 3615572, + "thread": 6 + } + }, + { + "amount": "241.822980043", + "slot": { + "period": 3642010, + "thread": 11 + } + }, + { + "amount": "241.822980053", + "slot": { + "period": 3834181, + "thread": 18 + } + } + ], + "AU12MHoEJg82pha2KFbH3SGACPDVgzXqFkeirEmdK67uMPJu5AjP7": [ + { + "amount": "244.195485459", + "slot": { + "period": 113266, + "thread": 0 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 208486, + "thread": 16 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 484525, + "thread": 1 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 498095, + "thread": 0 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 728482, + "thread": 4 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 981720, + "thread": 15 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1091224, + "thread": 18 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1185512, + "thread": 23 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1367931, + "thread": 14 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1514436, + "thread": 25 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1687808, + "thread": 29 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 1870205, + "thread": 21 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2043138, + "thread": 13 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2172370, + "thread": 24 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2419277, + "thread": 7 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2569584, + "thread": 29 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2738998, + "thread": 18 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2863946, + "thread": 22 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 2977658, + "thread": 29 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 3123271, + "thread": 5 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 3305607, + "thread": 22 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 3451250, + "thread": 24 + } + }, + { + "amount": "244.195485459", + "slot": { + "period": 3762775, + "thread": 29 + } + }, + { + "amount": "244.195485456", + "slot": { + "period": 3802376, + "thread": 7 + } + } + ], + "AU12MHrdkEsyqDC3RKUvYTYXUgVK8cf9H1bXnsoKNBHQHzyMdVGK4": [ + { + "amount": "179.558139978", + "slot": { + "period": 71709, + "thread": 9 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 248418, + "thread": 23 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 422859, + "thread": 19 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 548168, + "thread": 28 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 789565, + "thread": 25 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 884992, + "thread": 16 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1000002, + "thread": 8 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1211649, + "thread": 3 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1401312, + "thread": 2 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1549749, + "thread": 27 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1733931, + "thread": 23 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 1863443, + "thread": 24 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2124036, + "thread": 25 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2213497, + "thread": 3 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2438182, + "thread": 16 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2507674, + "thread": 26 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2709536, + "thread": 28 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2953473, + "thread": 7 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 2971404, + "thread": 10 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 3258301, + "thread": 7 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 3440995, + "thread": 31 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 3502432, + "thread": 6 + } + }, + { + "amount": "179.558139978", + "slot": { + "period": 3715257, + "thread": 22 + } + }, + { + "amount": "179.558139977", + "slot": { + "period": 3847710, + "thread": 7 + } + } + ], + "AU12MHv45GQrwVzNL5amg3MrdEEPvCBtFWag4eGLjwUJB4m2B1Vr8": [ + { + "amount": "216.121100005", + "slot": { + "period": 125729, + "thread": 22 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 240883, + "thread": 18 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 478570, + "thread": 21 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 541142, + "thread": 16 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 667077, + "thread": 26 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 973493, + "thread": 9 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 986831, + "thread": 19 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 1280611, + "thread": 17 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 1402944, + "thread": 6 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 1525418, + "thread": 0 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 1732019, + "thread": 5 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 1824902, + "thread": 5 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2119163, + "thread": 18 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2244143, + "thread": 14 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2333367, + "thread": 26 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2559560, + "thread": 5 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2693984, + "thread": 19 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 2913464, + "thread": 13 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 3061428, + "thread": 29 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 3219108, + "thread": 19 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 3367794, + "thread": 15 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 3568920, + "thread": 19 + } + }, + { + "amount": "216.121100005", + "slot": { + "period": 3688527, + "thread": 1 + } + }, + { + "amount": "216.121100016", + "slot": { + "period": 3800122, + "thread": 22 + } + } + ], + "AU12MJ63ybzYweedJ6wt8eeHpjMYupTqM8WvcQiDPmYWQ6ziczoRn": [ + { + "amount": "142.194431928", + "slot": { + "period": 107009, + "thread": 8 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 246504, + "thread": 22 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 445225, + "thread": 29 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 630405, + "thread": 2 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 741349, + "thread": 21 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 880464, + "thread": 31 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1083740, + "thread": 3 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1188355, + "thread": 24 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1460238, + "thread": 26 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1585832, + "thread": 17 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1656244, + "thread": 27 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 1860841, + "thread": 10 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2061554, + "thread": 20 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2242791, + "thread": 4 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2428341, + "thread": 28 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2506457, + "thread": 6 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2742324, + "thread": 6 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 2902755, + "thread": 22 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 3049866, + "thread": 14 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 3279261, + "thread": 30 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 3391660, + "thread": 10 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 3460065, + "thread": 1 + } + }, + { + "amount": "142.194431928", + "slot": { + "period": 3762094, + "thread": 21 + } + }, + { + "amount": "142.194431920", + "slot": { + "period": 3925863, + "thread": 7 + } + } + ], + "AU12MLHfsuc6jw2X28YxJ6bCYLekHmwdg8g7gJxLakQbTWWXjVsnJ": [ + { + "amount": "174.581192848", + "slot": { + "period": 108448, + "thread": 26 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 290179, + "thread": 13 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 462828, + "thread": 24 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 509128, + "thread": 19 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 712938, + "thread": 15 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 946145, + "thread": 31 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1065463, + "thread": 31 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1229812, + "thread": 31 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1461478, + "thread": 22 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1497485, + "thread": 24 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1752801, + "thread": 23 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 1896969, + "thread": 12 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2030210, + "thread": 1 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2153870, + "thread": 8 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2310729, + "thread": 17 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2508649, + "thread": 12 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2687072, + "thread": 16 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2884276, + "thread": 27 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 2982103, + "thread": 12 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 3156945, + "thread": 28 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 3353666, + "thread": 15 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 3527477, + "thread": 9 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 3703431, + "thread": 15 + } + }, + { + "amount": "174.581192848", + "slot": { + "period": 3786633, + "thread": 21 + } + } + ], + "AU12MLcN8mGmsZyzFcXJxFxy3kmCnG3ApGKKbcyxQEZP7ajtXvkuT": [ + { + "amount": "83.144754885", + "slot": { + "period": 73561, + "thread": 7 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 210470, + "thread": 18 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 358493, + "thread": 1 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 533493, + "thread": 25 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 801255, + "thread": 9 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 823178, + "thread": 17 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1120567, + "thread": 26 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1295494, + "thread": 31 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1434808, + "thread": 15 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1534748, + "thread": 22 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1699380, + "thread": 14 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 1954852, + "thread": 5 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2090884, + "thread": 15 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2204966, + "thread": 30 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2364619, + "thread": 20 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2462560, + "thread": 29 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2759041, + "thread": 1 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 2825196, + "thread": 24 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 3021868, + "thread": 3 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 3184182, + "thread": 21 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 3297655, + "thread": 16 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 3495171, + "thread": 9 + } + }, + { + "amount": "83.144754885", + "slot": { + "period": 3709655, + "thread": 9 + } + }, + { + "amount": "83.144754874", + "slot": { + "period": 3904719, + "thread": 11 + } + } + ], + "AU12MLyA41UbsgB4Y1rRbekuzzLm9wwLjgUyuRwv84iGuvkSvqNvb": [ + { + "amount": "175.610884303", + "slot": { + "period": 162801, + "thread": 31 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 206246, + "thread": 6 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 398502, + "thread": 0 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 514440, + "thread": 3 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 755411, + "thread": 15 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 981815, + "thread": 7 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1117691, + "thread": 5 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1212917, + "thread": 7 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1396348, + "thread": 12 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1630923, + "thread": 29 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1714682, + "thread": 31 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 1902512, + "thread": 27 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2095879, + "thread": 16 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2159443, + "thread": 3 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2348680, + "thread": 10 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2622217, + "thread": 17 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2735930, + "thread": 11 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2926732, + "thread": 28 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 2982311, + "thread": 9 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 3183526, + "thread": 29 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 3449933, + "thread": 31 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 3545453, + "thread": 10 + } + }, + { + "amount": "175.610884303", + "slot": { + "period": 3623450, + "thread": 13 + } + }, + { + "amount": "175.610884308", + "slot": { + "period": 3804624, + "thread": 4 + } + } + ], + "AU12MMErCMQi1y1Ly9jjxG3iDTk8EUBivTNC1pFEm6JYY9gDEgYn1": [ + { + "amount": "150.300902912", + "slot": { + "period": 156394, + "thread": 3 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 215164, + "thread": 23 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 430641, + "thread": 13 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 617007, + "thread": 14 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 699355, + "thread": 17 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 930933, + "thread": 7 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1055906, + "thread": 13 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1302521, + "thread": 19 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1421676, + "thread": 22 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1511466, + "thread": 13 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1665088, + "thread": 30 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 1843189, + "thread": 31 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2036561, + "thread": 21 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2249505, + "thread": 9 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2351521, + "thread": 27 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2470995, + "thread": 24 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2700313, + "thread": 15 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 2864778, + "thread": 6 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 3011616, + "thread": 2 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 3199726, + "thread": 0 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 3345087, + "thread": 26 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 3496265, + "thread": 26 + } + }, + { + "amount": "150.300902912", + "slot": { + "period": 3685963, + "thread": 24 + } + }, + { + "amount": "150.300902921", + "slot": { + "period": 3821384, + "thread": 7 + } + } + ], + "AU12MP5XoxQT2AGVgVvrU3qEQRzW9J2tcwbYQdV7cpy63stxBQxuq": [ + { + "amount": "248.655700894", + "slot": { + "period": 13340, + "thread": 3 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 191146, + "thread": 25 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 491229, + "thread": 5 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 516478, + "thread": 8 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 754242, + "thread": 9 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 877293, + "thread": 14 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 991817, + "thread": 2 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 1234377, + "thread": 8 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 1416327, + "thread": 25 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 1490411, + "thread": 29 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 1770921, + "thread": 23 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 1948804, + "thread": 17 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2051003, + "thread": 7 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2166782, + "thread": 7 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2347413, + "thread": 4 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2592498, + "thread": 5 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2651862, + "thread": 6 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 2830409, + "thread": 25 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 3065287, + "thread": 12 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 3190904, + "thread": 1 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 3370484, + "thread": 26 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 3506613, + "thread": 18 + } + }, + { + "amount": "248.655700894", + "slot": { + "period": 3687397, + "thread": 19 + } + }, + { + "amount": "248.655700885", + "slot": { + "period": 3856475, + "thread": 5 + } + } + ], + "AU12MPFrRsxuCj2JpmWPu4nW2P5wijm38C9qx4m5NC1ijkxzwT7NW": [ + { + "amount": "287.729662685", + "slot": { + "period": 23267, + "thread": 23 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 208395, + "thread": 20 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 337140, + "thread": 27 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 530000, + "thread": 25 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 799733, + "thread": 18 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 856006, + "thread": 4 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1015440, + "thread": 0 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1193344, + "thread": 19 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1334235, + "thread": 15 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1636887, + "thread": 29 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1804906, + "thread": 18 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 1829495, + "thread": 14 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2068442, + "thread": 31 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2177074, + "thread": 2 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2390952, + "thread": 4 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2579428, + "thread": 27 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2634565, + "thread": 3 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2811932, + "thread": 24 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 2992161, + "thread": 10 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 3187923, + "thread": 3 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 3404377, + "thread": 18 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 3526159, + "thread": 26 + } + }, + { + "amount": "287.729662685", + "slot": { + "period": 3697519, + "thread": 27 + } + }, + { + "amount": "287.729662686", + "slot": { + "period": 3828196, + "thread": 6 + } + } + ], + "AU12MPJ4p4BBNVZEkvvfXANLQ1wN2qw41Jb3B3JQJQLXSH98r428P": [ + { + "amount": "179.065888217", + "slot": { + "period": 159974, + "thread": 2 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 311967, + "thread": 2 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 425361, + "thread": 16 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 570988, + "thread": 27 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 798768, + "thread": 14 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 979504, + "thread": 13 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1083074, + "thread": 25 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1216642, + "thread": 30 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1418214, + "thread": 25 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1568163, + "thread": 1 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1734395, + "thread": 23 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 1969891, + "thread": 26 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2007055, + "thread": 30 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2294361, + "thread": 30 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2345505, + "thread": 15 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2469637, + "thread": 2 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2707894, + "thread": 6 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 2930522, + "thread": 24 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 3021680, + "thread": 5 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 3197715, + "thread": 11 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 3333986, + "thread": 18 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 3578580, + "thread": 26 + } + }, + { + "amount": "179.065888217", + "slot": { + "period": 3758304, + "thread": 18 + } + }, + { + "amount": "179.065888208", + "slot": { + "period": 3922840, + "thread": 18 + } + } + ], + "AU12MQeHiPY5njF84xxkpebXaH6FomE7zxRqY8bMk9Jw8vRrxtKkb": [ + { + "amount": "441.589482114", + "slot": { + "period": 53444, + "thread": 0 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 310415, + "thread": 0 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 452459, + "thread": 0 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 632062, + "thread": 23 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 679999, + "thread": 0 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 872093, + "thread": 10 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1090434, + "thread": 8 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1274157, + "thread": 1 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1343660, + "thread": 10 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1595755, + "thread": 16 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1789150, + "thread": 24 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 1959811, + "thread": 31 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2009509, + "thread": 17 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2194562, + "thread": 3 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2430665, + "thread": 29 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2499573, + "thread": 1 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2684345, + "thread": 5 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2918783, + "thread": 0 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 2994878, + "thread": 1 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 3171782, + "thread": 11 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 3447636, + "thread": 11 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 3554372, + "thread": 2 + } + }, + { + "amount": "441.589482114", + "slot": { + "period": 3772907, + "thread": 27 + } + }, + { + "amount": "441.589482124", + "slot": { + "period": 3942024, + "thread": 27 + } + } + ], + "AU12MRGmSeNgBmNcGpFWETNRhNrR3ZBugmeaYVoiLWFBncH4GRx8z": [ + { + "amount": "310.698499513", + "slot": { + "period": 14294, + "thread": 8 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 240195, + "thread": 8 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 349104, + "thread": 23 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 643237, + "thread": 4 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 732727, + "thread": 8 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 899889, + "thread": 5 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1074378, + "thread": 12 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1269235, + "thread": 29 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1461459, + "thread": 20 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1526906, + "thread": 7 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1695923, + "thread": 27 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1947398, + "thread": 27 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 1990655, + "thread": 14 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 2221432, + "thread": 30 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 2448070, + "thread": 28 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 2529620, + "thread": 6 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 2634714, + "thread": 8 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 2819413, + "thread": 2 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 3010871, + "thread": 15 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 3181268, + "thread": 15 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 3439189, + "thread": 14 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 3602686, + "thread": 23 + } + }, + { + "amount": "310.698499513", + "slot": { + "period": 3655172, + "thread": 0 + } + }, + { + "amount": "310.698499512", + "slot": { + "period": 3795007, + "thread": 19 + } + } + ], + "AU12MRJsqLWw1gmnPHNUh9GkQZRzmocmsyw4qrRcrtwTDhSUhUB18": [ + { + "amount": "116.090683759", + "slot": { + "period": 135646, + "thread": 18 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 228830, + "thread": 24 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 471986, + "thread": 2 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 610556, + "thread": 6 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 780227, + "thread": 27 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 950204, + "thread": 12 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1040167, + "thread": 18 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1265128, + "thread": 25 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1339260, + "thread": 23 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1602313, + "thread": 1 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1806694, + "thread": 8 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 1961339, + "thread": 23 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2049851, + "thread": 25 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2262493, + "thread": 10 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2367008, + "thread": 19 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2596777, + "thread": 22 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2645470, + "thread": 21 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 2946965, + "thread": 11 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 3029710, + "thread": 3 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 3164692, + "thread": 12 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 3295772, + "thread": 25 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 3569697, + "thread": 21 + } + }, + { + "amount": "116.090683759", + "slot": { + "period": 3733805, + "thread": 19 + } + }, + { + "amount": "116.090683767", + "slot": { + "period": 3930668, + "thread": 11 + } + } + ], + "AU12MRi98ZfcNMXTtaVYY5PHie6ukLoDGvE1RYtLGsDq3AS6Lfwvi": [ + { + "amount": "227.475866754", + "slot": { + "period": 42383, + "thread": 24 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 275162, + "thread": 20 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 351223, + "thread": 31 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 630256, + "thread": 10 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 726901, + "thread": 16 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 906464, + "thread": 28 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1113256, + "thread": 25 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1205143, + "thread": 14 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1393025, + "thread": 23 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1579957, + "thread": 25 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1788316, + "thread": 0 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 1899801, + "thread": 26 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2100441, + "thread": 26 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2158995, + "thread": 27 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2446006, + "thread": 15 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2553379, + "thread": 14 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2685175, + "thread": 26 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 2834827, + "thread": 31 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 3033887, + "thread": 27 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 3202666, + "thread": 28 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 3329374, + "thread": 14 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 3612907, + "thread": 17 + } + }, + { + "amount": "227.475866754", + "slot": { + "period": 3644175, + "thread": 24 + } + }, + { + "amount": "227.475866751", + "slot": { + "period": 3841734, + "thread": 8 + } + } + ], + "AU12MTNhChhSJ5BshK6zo3SPeFrqYze5imRc9PRD97rmQW87GR29t": [ + { + "amount": "124.689936721", + "slot": { + "period": 43057, + "thread": 14 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 308889, + "thread": 16 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 366661, + "thread": 5 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 579662, + "thread": 4 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 808758, + "thread": 27 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 965676, + "thread": 17 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1016507, + "thread": 15 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1199710, + "thread": 12 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1408082, + "thread": 7 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1500481, + "thread": 22 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1796268, + "thread": 14 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 1849747, + "thread": 4 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2048770, + "thread": 23 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2224182, + "thread": 17 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2441182, + "thread": 25 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2598672, + "thread": 6 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2686544, + "thread": 13 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2810004, + "thread": 17 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 2975691, + "thread": 6 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 3220525, + "thread": 20 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 3442511, + "thread": 28 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 3498548, + "thread": 11 + } + }, + { + "amount": "124.689936721", + "slot": { + "period": 3624295, + "thread": 0 + } + }, + { + "amount": "124.689936719", + "slot": { + "period": 3822441, + "thread": 14 + } + } + ], + "AU12MTePZVyhFM2uJesmhBrnKuXbo8DcXS9Txw6AEa9FZzTQwZrsy": [ + { + "amount": "97.950202652", + "slot": { + "period": 22168, + "thread": 24 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 323953, + "thread": 7 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 371076, + "thread": 18 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 635960, + "thread": 31 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 665815, + "thread": 18 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 876603, + "thread": 5 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1144318, + "thread": 25 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1290334, + "thread": 28 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1424872, + "thread": 25 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1494696, + "thread": 21 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1668607, + "thread": 2 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 1947680, + "thread": 29 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2002608, + "thread": 0 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2165454, + "thread": 23 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2327174, + "thread": 29 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2587946, + "thread": 8 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2758184, + "thread": 24 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 2871175, + "thread": 1 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 3097710, + "thread": 4 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 3271014, + "thread": 8 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 3289717, + "thread": 19 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 3612065, + "thread": 3 + } + }, + { + "amount": "97.950202652", + "slot": { + "period": 3678952, + "thread": 25 + } + }, + { + "amount": "97.950202642", + "slot": { + "period": 3921811, + "thread": 11 + } + } + ], + "AU12MU3VKcStnSUJbeJrKLGbmKzcgAP6sJVRFqfxCEi7Hi9B3hPHN": [ + { + "amount": "111.234481180", + "slot": { + "period": 150614, + "thread": 22 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 172912, + "thread": 21 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 376251, + "thread": 21 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 545957, + "thread": 21 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 685178, + "thread": 21 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 907678, + "thread": 19 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 985513, + "thread": 21 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1232155, + "thread": 5 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1397823, + "thread": 4 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1604912, + "thread": 24 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1647897, + "thread": 15 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1849892, + "thread": 7 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 1992760, + "thread": 18 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 2241642, + "thread": 0 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 2359010, + "thread": 11 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 2516362, + "thread": 30 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 2690406, + "thread": 27 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 2793441, + "thread": 31 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3119708, + "thread": 28 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3168933, + "thread": 19 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3297179, + "thread": 18 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3604924, + "thread": 29 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3682993, + "thread": 5 + } + }, + { + "amount": "111.234481180", + "slot": { + "period": 3815944, + "thread": 19 + } + } + ], + "AU12MU8REkZiBP4xn1wZbDaZTWucN2iDebZWWDWf3k3xDdJTYgTDc": [ + { + "amount": "244.499162610", + "slot": { + "period": 101761, + "thread": 9 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 232894, + "thread": 19 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 338533, + "thread": 28 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 586384, + "thread": 11 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 658377, + "thread": 13 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 850442, + "thread": 18 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1086670, + "thread": 6 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1190402, + "thread": 8 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1426922, + "thread": 14 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1491735, + "thread": 17 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1700512, + "thread": 0 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 1860916, + "thread": 0 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2097979, + "thread": 26 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2197224, + "thread": 31 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2439360, + "thread": 23 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2571648, + "thread": 26 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2710118, + "thread": 28 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2905849, + "thread": 6 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 2971692, + "thread": 27 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 3245757, + "thread": 11 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 3296616, + "thread": 1 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 3510579, + "thread": 13 + } + }, + { + "amount": "244.499162610", + "slot": { + "period": 3698556, + "thread": 15 + } + }, + { + "amount": "244.499162616", + "slot": { + "period": 3848288, + "thread": 29 + } + } + ], + "AU12MUk8pYsRWCrQL6rxxSoAVM4iVpDmHJCrGVdfCsbdUV8Zzk5Cf": [ + { + "amount": "163.359051448", + "slot": { + "period": 61484, + "thread": 0 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 207709, + "thread": 6 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 389907, + "thread": 22 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 535403, + "thread": 21 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 696685, + "thread": 28 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 904229, + "thread": 4 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1122634, + "thread": 15 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1157876, + "thread": 19 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1391839, + "thread": 2 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1494157, + "thread": 12 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1739787, + "thread": 2 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 1968269, + "thread": 4 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2089815, + "thread": 18 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2169122, + "thread": 21 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2338433, + "thread": 11 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2568435, + "thread": 25 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2784857, + "thread": 18 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 2942567, + "thread": 6 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 3078938, + "thread": 15 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 3161832, + "thread": 7 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 3368292, + "thread": 26 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 3545854, + "thread": 16 + } + }, + { + "amount": "163.359051448", + "slot": { + "period": 3676919, + "thread": 22 + } + }, + { + "amount": "163.359051445", + "slot": { + "period": 3907204, + "thread": 20 + } + } + ], + "AU12MWBM7GW8UsQ85rqNySQfVDJeDDqva8LpeT7rdcgd3vZqQvdcM": [ + { + "amount": "215.977997333", + "slot": { + "period": 145790, + "thread": 1 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 254720, + "thread": 20 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 422025, + "thread": 22 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 636082, + "thread": 6 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 728268, + "thread": 13 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 918489, + "thread": 31 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1044604, + "thread": 29 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1194094, + "thread": 21 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1479031, + "thread": 15 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1610716, + "thread": 16 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1696478, + "thread": 1 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 1857375, + "thread": 1 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2121261, + "thread": 15 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2146011, + "thread": 10 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2332174, + "thread": 31 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2549698, + "thread": 15 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2785727, + "thread": 14 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 2823671, + "thread": 6 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 3033735, + "thread": 28 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 3148282, + "thread": 2 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 3404165, + "thread": 12 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 3456464, + "thread": 20 + } + }, + { + "amount": "215.977997333", + "slot": { + "period": 3729691, + "thread": 29 + } + }, + { + "amount": "215.977997328", + "slot": { + "period": 3833237, + "thread": 22 + } + } + ], + "AU12MXRZeHrwtBBSjjJW4E9YV3oYkKUgv3uRiMfSrBBV3PH832iGd": [ + { + "amount": "314.979919079", + "slot": { + "period": 22394, + "thread": 22 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 234137, + "thread": 23 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 489299, + "thread": 16 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 525184, + "thread": 27 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 796490, + "thread": 13 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 905405, + "thread": 30 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1030314, + "thread": 0 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1277233, + "thread": 21 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1370977, + "thread": 23 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1578993, + "thread": 4 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1757495, + "thread": 15 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 1972635, + "thread": 12 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2076702, + "thread": 4 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2260207, + "thread": 18 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2452947, + "thread": 14 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2598450, + "thread": 24 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2663703, + "thread": 13 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 2856700, + "thread": 18 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 3006500, + "thread": 17 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 3134819, + "thread": 27 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 3294639, + "thread": 18 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 3515669, + "thread": 17 + } + }, + { + "amount": "314.979919079", + "slot": { + "period": 3766483, + "thread": 8 + } + }, + { + "amount": "314.979919071", + "slot": { + "period": 3889046, + "thread": 14 + } + } + ], + "AU12MXV8CRNpiqQTAw4WQrZixQRCeVciiDhW1EzmyuCLEvJxYgnqP": [ + { + "amount": "62.676214281", + "slot": { + "period": 167192, + "thread": 7 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 253938, + "thread": 0 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 471240, + "thread": 7 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 563352, + "thread": 13 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 809196, + "thread": 2 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 842624, + "thread": 21 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1031995, + "thread": 15 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1310813, + "thread": 8 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1466928, + "thread": 26 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1576728, + "thread": 14 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1808739, + "thread": 28 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 1813481, + "thread": 6 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2142172, + "thread": 13 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2150154, + "thread": 23 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2424052, + "thread": 26 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2478764, + "thread": 25 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2770575, + "thread": 16 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 2943248, + "thread": 27 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 3072150, + "thread": 29 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 3257051, + "thread": 10 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 3336421, + "thread": 22 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 3496671, + "thread": 10 + } + }, + { + "amount": "62.676214281", + "slot": { + "period": 3658697, + "thread": 2 + } + }, + { + "amount": "62.676214278", + "slot": { + "period": 3835842, + "thread": 11 + } + } + ], + "AU12MXdiUN2Mkap1qqmQFjFtwt4X3X7AwRBdEpuC58EKroesHJN3m": [ + { + "amount": "716.489289398", + "slot": { + "period": 150891, + "thread": 29 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 286817, + "thread": 8 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 407674, + "thread": 8 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 531299, + "thread": 9 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 759840, + "thread": 30 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 878447, + "thread": 14 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 990366, + "thread": 27 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 1218986, + "thread": 24 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 1329486, + "thread": 23 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 1501231, + "thread": 22 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 1667768, + "thread": 6 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 1857512, + "thread": 26 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2093518, + "thread": 16 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2259074, + "thread": 0 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2447793, + "thread": 6 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2601830, + "thread": 28 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2752486, + "thread": 10 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2878558, + "thread": 9 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 2955498, + "thread": 29 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 3280452, + "thread": 1 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 3426524, + "thread": 30 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 3592719, + "thread": 7 + } + }, + { + "amount": "716.489289398", + "slot": { + "period": 3752240, + "thread": 17 + } + }, + { + "amount": "716.489289389", + "slot": { + "period": 3853753, + "thread": 14 + } + } + ], + "AU12MXmyccQDHwCBDhosCmNV97ZuMSPRbSUtvBEA7ePurWF4jFzLm": [ + { + "amount": "58.561782828", + "slot": { + "period": 68072, + "thread": 11 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 306523, + "thread": 0 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 382331, + "thread": 6 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 545084, + "thread": 25 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 670345, + "thread": 26 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 970818, + "thread": 16 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1077411, + "thread": 23 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1211870, + "thread": 21 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1379512, + "thread": 12 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1561917, + "thread": 4 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1652493, + "thread": 28 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 1924728, + "thread": 3 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2082345, + "thread": 15 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2216424, + "thread": 15 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2435249, + "thread": 29 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2522766, + "thread": 22 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2654422, + "thread": 12 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 2903047, + "thread": 31 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 3107112, + "thread": 6 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 3274188, + "thread": 25 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 3336180, + "thread": 8 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 3529191, + "thread": 6 + } + }, + { + "amount": "58.561782828", + "slot": { + "period": 3680382, + "thread": 17 + } + }, + { + "amount": "58.561782825", + "slot": { + "period": 3793292, + "thread": 6 + } + } + ], + "AU12MXnJfD52ym4xc56uQ12PVTd9M6EURb69zKQTBRqc4HW6VBY3G": [ + { + "amount": "61.268254159", + "slot": { + "period": 114203, + "thread": 26 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 181387, + "thread": 26 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 464064, + "thread": 0 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 629581, + "thread": 10 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 671229, + "thread": 28 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 855527, + "thread": 27 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1136457, + "thread": 19 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1242246, + "thread": 7 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1327037, + "thread": 24 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1643905, + "thread": 26 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1726568, + "thread": 13 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 1946000, + "thread": 4 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2007587, + "thread": 26 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2156590, + "thread": 4 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2428774, + "thread": 18 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2545904, + "thread": 31 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2689688, + "thread": 28 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 2843327, + "thread": 3 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 3034692, + "thread": 0 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 3204318, + "thread": 2 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 3293348, + "thread": 13 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 3560050, + "thread": 14 + } + }, + { + "amount": "61.268254159", + "slot": { + "period": 3658348, + "thread": 18 + } + }, + { + "amount": "61.268254170", + "slot": { + "period": 3845536, + "thread": 18 + } + } + ], + "AU12MXtDSm8uUaWYghXrRBEfJrHeqHN4W8MrKwCPChesQWuSS6p5i": [ + { + "amount": "89.716956059", + "slot": { + "period": 65691, + "thread": 24 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 289576, + "thread": 5 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 480900, + "thread": 13 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 578146, + "thread": 17 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 672257, + "thread": 14 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 882876, + "thread": 9 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1052416, + "thread": 3 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1239259, + "thread": 3 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1371506, + "thread": 26 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1642962, + "thread": 12 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1678145, + "thread": 8 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 1813685, + "thread": 30 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2099845, + "thread": 27 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2238265, + "thread": 19 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2328216, + "thread": 5 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2623887, + "thread": 27 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2692917, + "thread": 7 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 2821438, + "thread": 20 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 3024077, + "thread": 0 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 3156075, + "thread": 16 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 3338447, + "thread": 29 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 3550300, + "thread": 0 + } + }, + { + "amount": "89.716956059", + "slot": { + "period": 3660971, + "thread": 2 + } + }, + { + "amount": "89.716956058", + "slot": { + "period": 3830368, + "thread": 15 + } + } + ], + "AU12MY5pXcj3yBYSAHWexftTFiqFSSz7sq2s98DiFKtHrZ2AChvyu": [ + { + "amount": "209.928987962", + "slot": { + "period": 139086, + "thread": 31 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 172175, + "thread": 1 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 444180, + "thread": 29 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 627727, + "thread": 13 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 653818, + "thread": 21 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 947082, + "thread": 5 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1050071, + "thread": 24 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1302718, + "thread": 12 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1328838, + "thread": 31 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1635003, + "thread": 24 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1793662, + "thread": 3 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 1940202, + "thread": 20 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2094201, + "thread": 31 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2279466, + "thread": 22 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2456677, + "thread": 23 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2508488, + "thread": 12 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2652737, + "thread": 20 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 2863280, + "thread": 21 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 3021550, + "thread": 12 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 3162041, + "thread": 8 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 3372640, + "thread": 24 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 3508265, + "thread": 19 + } + }, + { + "amount": "209.928987962", + "slot": { + "period": 3628910, + "thread": 18 + } + }, + { + "amount": "209.928987951", + "slot": { + "period": 3928949, + "thread": 12 + } + } + ], + "AU12MYBMn3itBETUNobZ1rgwrCtzBj3UFnHkZhdD3NAHNKdSJXEjq": [ + { + "amount": "90.283911328", + "slot": { + "period": 73618, + "thread": 19 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 179034, + "thread": 31 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 445086, + "thread": 5 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 509528, + "thread": 11 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 819872, + "thread": 19 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 848444, + "thread": 15 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1056979, + "thread": 26 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1231279, + "thread": 27 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1422692, + "thread": 14 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1579816, + "thread": 2 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1804384, + "thread": 12 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 1970333, + "thread": 21 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2059822, + "thread": 17 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2177178, + "thread": 24 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2301956, + "thread": 24 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2482975, + "thread": 11 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2744523, + "thread": 6 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2813907, + "thread": 8 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 2976817, + "thread": 9 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 3135400, + "thread": 25 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 3326424, + "thread": 12 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 3506252, + "thread": 8 + } + }, + { + "amount": "90.283911328", + "slot": { + "period": 3731882, + "thread": 4 + } + }, + { + "amount": "90.283911316", + "slot": { + "period": 3870238, + "thread": 2 + } + } + ], + "AU12MYxYAVE5C2Vsd6G3wWYL3yWJZirEqGvWA54HX6ouGWqiYxae8": [ + { + "amount": "316.219860680", + "slot": { + "period": 125078, + "thread": 25 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 281141, + "thread": 29 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 384599, + "thread": 26 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 594528, + "thread": 22 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 774206, + "thread": 23 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 958868, + "thread": 16 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1089586, + "thread": 18 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1277299, + "thread": 18 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1423889, + "thread": 13 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1516474, + "thread": 3 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1735838, + "thread": 9 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 1962694, + "thread": 22 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2055390, + "thread": 18 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2225935, + "thread": 13 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2360088, + "thread": 29 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2512887, + "thread": 3 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2730902, + "thread": 31 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 2953187, + "thread": 2 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 3091292, + "thread": 6 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 3264869, + "thread": 11 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 3412907, + "thread": 28 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 3598542, + "thread": 28 + } + }, + { + "amount": "316.219860680", + "slot": { + "period": 3647331, + "thread": 16 + } + }, + { + "amount": "316.219860686", + "slot": { + "period": 3781934, + "thread": 13 + } + } + ], + "AU12MZZDZeSoC6hnwcYonSjvUXpkLqKdGbt1RZffYZds7bE46sbqJ": [ + { + "amount": "52.364664556", + "slot": { + "period": 110578, + "thread": 3 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 305060, + "thread": 7 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 413877, + "thread": 17 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 539205, + "thread": 4 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 764310, + "thread": 17 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 927078, + "thread": 15 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1129481, + "thread": 10 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1264434, + "thread": 31 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1414688, + "thread": 3 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1634557, + "thread": 22 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1657744, + "thread": 1 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 1823838, + "thread": 21 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2029456, + "thread": 6 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2283677, + "thread": 9 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2414892, + "thread": 28 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2569765, + "thread": 17 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2697776, + "thread": 31 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 2817886, + "thread": 20 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 3003100, + "thread": 11 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 3222339, + "thread": 12 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 3376183, + "thread": 15 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 3604337, + "thread": 29 + } + }, + { + "amount": "52.364664556", + "slot": { + "period": 3730455, + "thread": 20 + } + }, + { + "amount": "52.364664547", + "slot": { + "period": 3804851, + "thread": 7 + } + } + ], + "AU12MZdgXGGo6TNiKBCSenFUBxF8rTP1R54wjy74qHWAuPC4XJsQG": [ + { + "amount": "271.167143477", + "slot": { + "period": 163035, + "thread": 16 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 293775, + "thread": 27 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 347167, + "thread": 31 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 594955, + "thread": 8 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 692407, + "thread": 4 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 895822, + "thread": 22 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1017982, + "thread": 28 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1166120, + "thread": 28 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1342443, + "thread": 7 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1623434, + "thread": 18 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1689712, + "thread": 29 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 1913959, + "thread": 7 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2127213, + "thread": 18 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2185590, + "thread": 2 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2316908, + "thread": 17 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2505429, + "thread": 29 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2702825, + "thread": 8 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 2937679, + "thread": 23 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 3027182, + "thread": 25 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 3174557, + "thread": 0 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 3430241, + "thread": 14 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 3514337, + "thread": 27 + } + }, + { + "amount": "271.167143477", + "slot": { + "period": 3704003, + "thread": 6 + } + }, + { + "amount": "271.167143481", + "slot": { + "period": 3872966, + "thread": 9 + } + } + ], + "AU12Ma6zv4qj8gw759ZmaMVwsz6YnX3kQzREgF5L5tduTPRXB9tQA": [ + { + "amount": "187.842046507", + "slot": { + "period": 138312, + "thread": 9 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 200172, + "thread": 23 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 466969, + "thread": 21 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 533904, + "thread": 7 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 806443, + "thread": 6 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 945650, + "thread": 15 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1028166, + "thread": 26 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1307297, + "thread": 2 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1329998, + "thread": 22 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1607228, + "thread": 28 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1690943, + "thread": 6 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 1920373, + "thread": 12 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2028584, + "thread": 16 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2274454, + "thread": 28 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2348237, + "thread": 13 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2470441, + "thread": 13 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2640198, + "thread": 4 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 2951049, + "thread": 31 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 3084949, + "thread": 1 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 3166004, + "thread": 3 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 3345011, + "thread": 7 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 3502165, + "thread": 27 + } + }, + { + "amount": "187.842046507", + "slot": { + "period": 3720953, + "thread": 4 + } + }, + { + "amount": "187.842046506", + "slot": { + "period": 3824038, + "thread": 19 + } + } + ], + "AU12MbKe7gYK3LAEZBdgvSQUFgsfuUappPANnKk7NCNMou8yW6rjp": [ + { + "amount": "118.944360643", + "slot": { + "period": 44057, + "thread": 27 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 172683, + "thread": 28 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 424497, + "thread": 21 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 586970, + "thread": 4 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 720600, + "thread": 26 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 892844, + "thread": 12 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 998622, + "thread": 11 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1153090, + "thread": 31 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1405437, + "thread": 31 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1559100, + "thread": 17 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1787996, + "thread": 1 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1827399, + "thread": 4 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 1990977, + "thread": 7 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 2210897, + "thread": 7 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 2450129, + "thread": 30 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 2515297, + "thread": 12 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 2663952, + "thread": 22 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 2898406, + "thread": 22 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 3026408, + "thread": 2 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 3219948, + "thread": 17 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 3312496, + "thread": 19 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 3568428, + "thread": 24 + } + }, + { + "amount": "118.944360643", + "slot": { + "period": 3646951, + "thread": 6 + } + }, + { + "amount": "118.944360634", + "slot": { + "period": 3801092, + "thread": 23 + } + } + ], + "AU12McM6uT7T3Fdps3QKcBK5LDZfCHtMF5jtXUakCmnrLYW5hS9Eh": [ + { + "amount": "295.003654352", + "slot": { + "period": 81572, + "thread": 1 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 275412, + "thread": 16 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 349252, + "thread": 17 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 566374, + "thread": 5 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 714212, + "thread": 13 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 962337, + "thread": 12 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1047844, + "thread": 4 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1154040, + "thread": 17 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1328937, + "thread": 14 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1619764, + "thread": 0 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1793327, + "thread": 0 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 1879086, + "thread": 11 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2078639, + "thread": 7 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2258588, + "thread": 6 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2415561, + "thread": 10 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2498165, + "thread": 4 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2683011, + "thread": 1 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 2813246, + "thread": 2 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 3085164, + "thread": 26 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 3156157, + "thread": 19 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 3354624, + "thread": 9 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 3519867, + "thread": 31 + } + }, + { + "amount": "295.003654352", + "slot": { + "period": 3769179, + "thread": 19 + } + }, + { + "amount": "295.003654353", + "slot": { + "period": 3945083, + "thread": 27 + } + } + ], + "AU12MdDfqQb3X9bsZCjctKCAAzGg443yHceXEVBra1PtRn2eyRfE6": [ + { + "amount": "297.503894952", + "slot": { + "period": 127369, + "thread": 2 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 255559, + "thread": 13 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 356857, + "thread": 7 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 539271, + "thread": 25 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 806376, + "thread": 28 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 972786, + "thread": 8 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 984432, + "thread": 18 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 1308196, + "thread": 30 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 1377468, + "thread": 17 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 1481731, + "thread": 17 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 1784898, + "thread": 29 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 1963075, + "thread": 3 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2014714, + "thread": 20 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2226214, + "thread": 13 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2376813, + "thread": 3 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2552299, + "thread": 1 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2729248, + "thread": 18 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2922009, + "thread": 15 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 2979276, + "thread": 25 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 3167646, + "thread": 26 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 3326408, + "thread": 7 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 3506430, + "thread": 31 + } + }, + { + "amount": "297.503894952", + "slot": { + "period": 3751912, + "thread": 5 + } + }, + { + "amount": "297.503894942", + "slot": { + "period": 3784120, + "thread": 3 + } + } + ], + "AU12MdTtdnRj27d5oNGmrUGK6FatpUyA2uAUXPms3DrR1DBLWWxBB": [ + { + "amount": "84.243660722", + "slot": { + "period": 91571, + "thread": 30 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 275027, + "thread": 30 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 415832, + "thread": 5 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 602752, + "thread": 8 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 806791, + "thread": 24 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 835784, + "thread": 5 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1082060, + "thread": 4 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1308359, + "thread": 28 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1457725, + "thread": 11 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1489617, + "thread": 20 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1797699, + "thread": 2 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 1839565, + "thread": 4 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2044812, + "thread": 12 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2152800, + "thread": 27 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2391015, + "thread": 21 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2538803, + "thread": 22 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2790834, + "thread": 23 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 2876838, + "thread": 12 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 3082799, + "thread": 28 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 3150169, + "thread": 11 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 3300091, + "thread": 0 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 3482153, + "thread": 18 + } + }, + { + "amount": "84.243660722", + "slot": { + "period": 3772874, + "thread": 2 + } + }, + { + "amount": "84.243660726", + "slot": { + "period": 3782289, + "thread": 31 + } + } + ], + "AU12MeCb9ZJdqrAGjb88PsZNbURtXJ2HD5KDjj7jQPdjjBmpVTRNh": [ + { + "amount": "83.622263916", + "slot": { + "period": 28307, + "thread": 13 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 203218, + "thread": 20 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 349897, + "thread": 17 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 491957, + "thread": 18 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 701741, + "thread": 15 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 842994, + "thread": 4 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 998978, + "thread": 10 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 1304634, + "thread": 3 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 1349114, + "thread": 25 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 1517837, + "thread": 24 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 1664023, + "thread": 30 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 1917332, + "thread": 29 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2042682, + "thread": 0 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2201268, + "thread": 4 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2361099, + "thread": 4 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2520106, + "thread": 13 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2699481, + "thread": 21 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2884957, + "thread": 4 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 2997372, + "thread": 7 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 3192836, + "thread": 23 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 3323451, + "thread": 4 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 3477500, + "thread": 2 + } + }, + { + "amount": "83.622263916", + "slot": { + "period": 3644338, + "thread": 5 + } + }, + { + "amount": "83.622263918", + "slot": { + "period": 3932167, + "thread": 11 + } + } + ], + "AU12Mf5yd27P1DaW7Ydt5Q2MKgEPCyctGr7d8kpdUnoiJSrMqNP4i": [ + { + "amount": "143.674815018", + "slot": { + "period": 51940, + "thread": 13 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 298157, + "thread": 8 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 453206, + "thread": 14 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 652579, + "thread": 18 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 673393, + "thread": 23 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 919482, + "thread": 9 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1048620, + "thread": 20 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1221534, + "thread": 5 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1414712, + "thread": 22 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1628433, + "thread": 12 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1789822, + "thread": 3 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 1973056, + "thread": 3 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2045894, + "thread": 0 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2258178, + "thread": 17 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2398652, + "thread": 26 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2508024, + "thread": 17 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2649621, + "thread": 31 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 2924935, + "thread": 28 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 3033834, + "thread": 29 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 3273318, + "thread": 4 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 3375899, + "thread": 12 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 3477087, + "thread": 24 + } + }, + { + "amount": "143.674815018", + "slot": { + "period": 3649155, + "thread": 29 + } + }, + { + "amount": "143.674815012", + "slot": { + "period": 3900380, + "thread": 17 + } + } + ], + "AU12MgAqiYTBSeL6tTi9ZSyaYyBiE2HCSMTx6TdopUUdEQJub7bQf": [ + { + "amount": "62.793590906", + "slot": { + "period": 152851, + "thread": 2 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 225492, + "thread": 9 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 364064, + "thread": 2 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 562783, + "thread": 17 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 727220, + "thread": 5 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 852492, + "thread": 31 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1028473, + "thread": 30 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1160755, + "thread": 2 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1389463, + "thread": 4 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1557229, + "thread": 1 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1699793, + "thread": 1 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1849887, + "thread": 21 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 1980775, + "thread": 3 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2198931, + "thread": 16 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2431403, + "thread": 20 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2489647, + "thread": 4 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2704323, + "thread": 23 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2881092, + "thread": 18 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 2979598, + "thread": 10 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 3143386, + "thread": 12 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 3302808, + "thread": 23 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 3463847, + "thread": 24 + } + }, + { + "amount": "62.793590906", + "slot": { + "period": 3711195, + "thread": 11 + } + }, + { + "amount": "62.793590907", + "slot": { + "period": 3858033, + "thread": 20 + } + } + ], + "AU12Mgt6Ujj5UbAoSAw9VoAEcFZ3J3wYyMvgbunqYnpZdXr9qAFrA": [ + { + "amount": "181.623282461", + "slot": { + "period": 121833, + "thread": 7 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 278859, + "thread": 22 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 390421, + "thread": 9 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 647747, + "thread": 7 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 659928, + "thread": 25 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 858556, + "thread": 12 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1001050, + "thread": 21 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1205373, + "thread": 6 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1413165, + "thread": 26 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1512790, + "thread": 9 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1757941, + "thread": 7 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 1814529, + "thread": 21 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2003091, + "thread": 0 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2262799, + "thread": 1 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2439520, + "thread": 8 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2558055, + "thread": 19 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2705789, + "thread": 8 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2843198, + "thread": 25 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 2954298, + "thread": 10 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 3173885, + "thread": 25 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 3365433, + "thread": 12 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 3565717, + "thread": 15 + } + }, + { + "amount": "181.623282461", + "slot": { + "period": 3640502, + "thread": 30 + } + }, + { + "amount": "181.623282460", + "slot": { + "period": 3939194, + "thread": 9 + } + } + ], + "AU12MhA2rJ1GvgpGeEnKBt7RVCGEzLvT13mUGQtPuq7ug3REGx553": [ + { + "amount": "136.844988151", + "slot": { + "period": 127772, + "thread": 31 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 169551, + "thread": 1 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 451781, + "thread": 12 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 624001, + "thread": 9 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 709991, + "thread": 15 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 957770, + "thread": 30 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1147948, + "thread": 16 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1298143, + "thread": 19 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1344256, + "thread": 22 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1546838, + "thread": 11 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1665094, + "thread": 25 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 1874455, + "thread": 19 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2121336, + "thread": 7 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2262293, + "thread": 21 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2341065, + "thread": 17 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2513812, + "thread": 22 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2681133, + "thread": 19 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 2905598, + "thread": 13 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 3081996, + "thread": 2 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 3128682, + "thread": 20 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 3449950, + "thread": 21 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 3496537, + "thread": 9 + } + }, + { + "amount": "136.844988151", + "slot": { + "period": 3684933, + "thread": 28 + } + }, + { + "amount": "136.844988154", + "slot": { + "period": 3787617, + "thread": 0 + } + } + ], + "AU12MikA62wD3mQHvTwQcY6r3MnjdB8KbJBw7mSEdZopGkmYqxPKn": [ + { + "amount": "145.990545324", + "slot": { + "period": 22685, + "thread": 25 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 237893, + "thread": 29 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 430524, + "thread": 13 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 588217, + "thread": 6 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 796828, + "thread": 19 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 860326, + "thread": 18 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1142362, + "thread": 25 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1234943, + "thread": 5 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1452297, + "thread": 12 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1604141, + "thread": 28 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1712989, + "thread": 17 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 1841085, + "thread": 0 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2121335, + "thread": 29 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2204115, + "thread": 3 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2433307, + "thread": 3 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2571669, + "thread": 6 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2645953, + "thread": 18 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2906244, + "thread": 26 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 2978700, + "thread": 14 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 3167315, + "thread": 10 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 3433841, + "thread": 12 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 3513971, + "thread": 11 + } + }, + { + "amount": "145.990545324", + "slot": { + "period": 3755384, + "thread": 5 + } + }, + { + "amount": "145.990545313", + "slot": { + "period": 3931623, + "thread": 31 + } + } + ], + "AU12MkJ2j4mZhqfuRsWRxeNNdXVVp2ggW61NiN6QU4DHRNccivzHQ": [ + { + "amount": "159.746474164", + "slot": { + "period": 165021, + "thread": 9 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 173671, + "thread": 8 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 414312, + "thread": 18 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 509257, + "thread": 3 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 815505, + "thread": 4 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 907546, + "thread": 23 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1040640, + "thread": 5 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1205503, + "thread": 16 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1382413, + "thread": 7 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1570000, + "thread": 4 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1728541, + "thread": 2 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 1820239, + "thread": 26 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2014155, + "thread": 12 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2279714, + "thread": 10 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2414267, + "thread": 5 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2480124, + "thread": 14 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2730531, + "thread": 29 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 2811122, + "thread": 11 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 3084968, + "thread": 15 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 3238787, + "thread": 14 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 3426013, + "thread": 31 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 3515674, + "thread": 2 + } + }, + { + "amount": "159.746474164", + "slot": { + "period": 3722594, + "thread": 2 + } + }, + { + "amount": "159.746474173", + "slot": { + "period": 3840076, + "thread": 23 + } + } + ], + "AU12MkbWnrJPT5EZEGkgbyUEoXAx4peHRDikc68JVRyXz59ABSo5S": [ + { + "amount": "298.062939007", + "slot": { + "period": 98433, + "thread": 0 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 298426, + "thread": 16 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 332007, + "thread": 0 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 491776, + "thread": 26 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 710564, + "thread": 13 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 946267, + "thread": 28 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1052894, + "thread": 16 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1222263, + "thread": 28 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1466431, + "thread": 1 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1491758, + "thread": 21 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1710802, + "thread": 28 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 1882008, + "thread": 31 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2006684, + "thread": 25 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2147251, + "thread": 24 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2320368, + "thread": 19 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2602465, + "thread": 15 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2674636, + "thread": 12 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2919824, + "thread": 3 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 2988621, + "thread": 14 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 3139572, + "thread": 9 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 3433593, + "thread": 30 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 3499487, + "thread": 3 + } + }, + { + "amount": "298.062939007", + "slot": { + "period": 3745524, + "thread": 6 + } + }, + { + "amount": "298.062938996", + "slot": { + "period": 3913289, + "thread": 5 + } + } + ], + "AU12MmrTHgrYuYTBFjjxhryh4URmz1LyxiNZHcQr4qs5TPdxZNPmh": [ + { + "amount": "75.803523149", + "slot": { + "period": 61207, + "thread": 19 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 195102, + "thread": 12 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 410829, + "thread": 13 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 554325, + "thread": 23 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 813387, + "thread": 4 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 970909, + "thread": 23 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1082389, + "thread": 26 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1220109, + "thread": 7 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1379997, + "thread": 26 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1519699, + "thread": 7 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1695543, + "thread": 0 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 1875378, + "thread": 28 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2080672, + "thread": 12 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2228763, + "thread": 28 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2334813, + "thread": 24 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2480323, + "thread": 2 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2682973, + "thread": 7 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 2847320, + "thread": 1 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 3101687, + "thread": 4 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 3165519, + "thread": 20 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 3427853, + "thread": 11 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 3574225, + "thread": 15 + } + }, + { + "amount": "75.803523149", + "slot": { + "period": 3675953, + "thread": 31 + } + }, + { + "amount": "75.803523148", + "slot": { + "period": 3886184, + "thread": 13 + } + } + ], + "AU12MmzmsGLqAMmjbjxthf1FcG4NyfZv2EVnHFRA26CmT4tnFthEG": [ + { + "amount": "131.111510694", + "slot": { + "period": 111883, + "thread": 19 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 200363, + "thread": 12 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 407347, + "thread": 21 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 612785, + "thread": 12 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 796003, + "thread": 6 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 856072, + "thread": 24 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1139843, + "thread": 16 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1270123, + "thread": 5 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1369324, + "thread": 30 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1492177, + "thread": 1 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1700209, + "thread": 31 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 1891586, + "thread": 8 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2020326, + "thread": 17 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2220070, + "thread": 31 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2409056, + "thread": 1 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2499080, + "thread": 30 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2643114, + "thread": 18 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 2821109, + "thread": 23 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 3036471, + "thread": 18 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 3164547, + "thread": 19 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 3409427, + "thread": 10 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 3473222, + "thread": 19 + } + }, + { + "amount": "131.111510694", + "slot": { + "period": 3721933, + "thread": 29 + } + }, + { + "amount": "131.111510684", + "slot": { + "period": 3862784, + "thread": 11 + } + } + ], + "AU12MnN7Jor7d7j5rbmguznZpEugVrz8P9umrpKdGgyFA1AxELyV5": [ + { + "amount": "123.241147903", + "slot": { + "period": 61513, + "thread": 16 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 310782, + "thread": 25 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 418390, + "thread": 14 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 637558, + "thread": 29 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 731502, + "thread": 10 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 863740, + "thread": 23 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1005003, + "thread": 24 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1163704, + "thread": 20 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1394615, + "thread": 25 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1485241, + "thread": 5 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1679133, + "thread": 0 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1930073, + "thread": 17 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 1989556, + "thread": 22 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 2201464, + "thread": 8 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 2376640, + "thread": 5 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 2484366, + "thread": 0 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 2772482, + "thread": 28 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 2805294, + "thread": 27 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3042610, + "thread": 30 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3160758, + "thread": 26 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3325576, + "thread": 21 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3579598, + "thread": 21 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3768666, + "thread": 22 + } + }, + { + "amount": "123.241147903", + "slot": { + "period": 3833962, + "thread": 21 + } + } + ], + "AU12MpfzgBmGhq4sACutDhJhnhTgP313qNdqJyBawT5yzq8RL9A4a": [ + { + "amount": "175.735519528", + "slot": { + "period": 13537, + "thread": 0 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 321390, + "thread": 3 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 404413, + "thread": 12 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 589063, + "thread": 27 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 672991, + "thread": 12 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 872050, + "thread": 9 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1110456, + "thread": 7 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1173892, + "thread": 10 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1345647, + "thread": 31 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1605780, + "thread": 5 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1758621, + "thread": 12 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 1886163, + "thread": 2 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2115466, + "thread": 22 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2189775, + "thread": 13 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2354663, + "thread": 2 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2498797, + "thread": 16 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2717048, + "thread": 16 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 2944046, + "thread": 0 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 3000789, + "thread": 0 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 3248183, + "thread": 20 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 3422990, + "thread": 11 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 3458106, + "thread": 0 + } + }, + { + "amount": "175.735519528", + "slot": { + "period": 3717639, + "thread": 31 + } + }, + { + "amount": "175.735519522", + "slot": { + "period": 3940764, + "thread": 27 + } + } + ], + "AU12MqtVkyd33JgsLfPTHUgjiQnmgPp5SsrfS2F9F9z4MPNgoq55x": [ + { + "amount": "441.007744963", + "slot": { + "period": 82421, + "thread": 0 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 252971, + "thread": 27 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 471959, + "thread": 22 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 503650, + "thread": 2 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 780151, + "thread": 15 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 862556, + "thread": 17 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1010713, + "thread": 5 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1190911, + "thread": 23 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1393467, + "thread": 24 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1593369, + "thread": 24 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1752827, + "thread": 1 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1818068, + "thread": 8 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 1997942, + "thread": 9 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 2275266, + "thread": 5 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 2341763, + "thread": 30 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 2572835, + "thread": 3 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 2727084, + "thread": 15 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 2858552, + "thread": 5 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 3002860, + "thread": 3 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 3193549, + "thread": 4 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 3434365, + "thread": 25 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 3522171, + "thread": 30 + } + }, + { + "amount": "441.007744963", + "slot": { + "period": 3675901, + "thread": 4 + } + }, + { + "amount": "441.007744970", + "slot": { + "period": 3920540, + "thread": 2 + } + } + ], + "AU12Mr8hCqCviQxM8hYdd9Q7vaeEiYtNAzULcQRYQdiCPMHiXcAfR": [ + { + "amount": "56.038452424", + "slot": { + "period": 164161, + "thread": 13 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 249423, + "thread": 13 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 450351, + "thread": 18 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 515622, + "thread": 16 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 719572, + "thread": 29 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 861056, + "thread": 16 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1107897, + "thread": 21 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1230113, + "thread": 11 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1359857, + "thread": 25 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1645847, + "thread": 23 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1704707, + "thread": 19 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 1843731, + "thread": 20 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2033011, + "thread": 23 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2177138, + "thread": 0 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2461873, + "thread": 7 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2498471, + "thread": 24 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2739396, + "thread": 11 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 2922082, + "thread": 17 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 3016240, + "thread": 19 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 3187667, + "thread": 8 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 3375988, + "thread": 0 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 3472119, + "thread": 21 + } + }, + { + "amount": "56.038452424", + "slot": { + "period": 3679731, + "thread": 7 + } + }, + { + "amount": "56.038452433", + "slot": { + "period": 3931489, + "thread": 25 + } + } + ], + "AU12MrciD8uHf3n5BjJmozA3w5y65VzXBpia2vQpRk24nBWKxWScD": [ + { + "amount": "707.030297956", + "slot": { + "period": 142265, + "thread": 18 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 225147, + "thread": 13 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 429447, + "thread": 0 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 576318, + "thread": 17 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 703664, + "thread": 24 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 863142, + "thread": 3 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1101759, + "thread": 14 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1290413, + "thread": 2 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1471349, + "thread": 10 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1518409, + "thread": 16 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1793530, + "thread": 22 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1922669, + "thread": 0 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 1985026, + "thread": 1 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 2216158, + "thread": 12 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 2435012, + "thread": 17 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 2491780, + "thread": 2 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 2771781, + "thread": 1 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 2848144, + "thread": 6 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 3078868, + "thread": 6 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 3202655, + "thread": 24 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 3391979, + "thread": 23 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 3476953, + "thread": 26 + } + }, + { + "amount": "707.030297956", + "slot": { + "period": 3749504, + "thread": 5 + } + }, + { + "amount": "707.030297948", + "slot": { + "period": 3876160, + "thread": 24 + } + } + ], + "AU12MreVoy8e2T8oUTu1QE1RuHp9pNy8N6vmWvmgAmigpS8M3Xksj": [ + { + "amount": "310.746239540", + "slot": { + "period": 13280, + "thread": 27 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 262277, + "thread": 14 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 400028, + "thread": 8 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 525948, + "thread": 0 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 753413, + "thread": 8 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 921128, + "thread": 0 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1075165, + "thread": 17 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1269276, + "thread": 11 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1407637, + "thread": 3 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1552405, + "thread": 24 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1704697, + "thread": 7 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 1855356, + "thread": 13 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2113227, + "thread": 9 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2268667, + "thread": 12 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2392612, + "thread": 15 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2542623, + "thread": 16 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2725769, + "thread": 20 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 2809261, + "thread": 10 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 3115968, + "thread": 9 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 3146843, + "thread": 21 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 3321795, + "thread": 16 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 3554689, + "thread": 7 + } + }, + { + "amount": "310.746239540", + "slot": { + "period": 3744545, + "thread": 8 + } + }, + { + "amount": "310.746239549", + "slot": { + "period": 3832672, + "thread": 24 + } + } + ], + "AU12Ms8HRXJ8hTYL3ktaFTUmBgHyaHdZvZ1bXJwcTemFvUE7ZGzxB": [ + { + "amount": "174.127046757", + "slot": { + "period": 88913, + "thread": 26 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 287704, + "thread": 31 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 485755, + "thread": 5 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 504276, + "thread": 2 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 727648, + "thread": 20 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 973147, + "thread": 15 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1046724, + "thread": 9 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1280128, + "thread": 4 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1476617, + "thread": 2 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1521939, + "thread": 16 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1752885, + "thread": 12 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 1832824, + "thread": 22 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2118577, + "thread": 0 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2221895, + "thread": 10 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2437720, + "thread": 30 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2612856, + "thread": 0 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2624448, + "thread": 13 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 2903264, + "thread": 31 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 3080418, + "thread": 29 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 3158939, + "thread": 9 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 3329033, + "thread": 18 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 3561363, + "thread": 6 + } + }, + { + "amount": "174.127046757", + "slot": { + "period": 3670405, + "thread": 7 + } + }, + { + "amount": "174.127046751", + "slot": { + "period": 3784493, + "thread": 16 + } + } + ], + "AU12MsJtdx1j9X5EXffFVFEtptXmZhMJREKBbC1HrfKtibviCgVM6": [ + { + "amount": "143.531207514", + "slot": { + "period": 157449, + "thread": 3 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 271431, + "thread": 31 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 429560, + "thread": 15 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 629495, + "thread": 13 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 730707, + "thread": 12 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 841095, + "thread": 1 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1113828, + "thread": 29 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1299006, + "thread": 2 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1390837, + "thread": 25 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1624336, + "thread": 30 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1704378, + "thread": 24 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 1865934, + "thread": 3 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2118445, + "thread": 21 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2159094, + "thread": 9 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2415641, + "thread": 7 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2580035, + "thread": 31 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2764034, + "thread": 0 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 2847771, + "thread": 2 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 3088920, + "thread": 31 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 3188566, + "thread": 6 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 3335662, + "thread": 26 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 3490062, + "thread": 26 + } + }, + { + "amount": "143.531207514", + "slot": { + "period": 3759211, + "thread": 27 + } + }, + { + "amount": "143.531207502", + "slot": { + "period": 3804790, + "thread": 2 + } + } + ], + "AU12MuMcZk2YeNDk1RM2So9KH1iw1ZraEUWmKzHMPRobsesM6tXwg": [ + { + "amount": "173.103186847", + "slot": { + "period": 25574, + "thread": 5 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 316318, + "thread": 6 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 480808, + "thread": 12 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 614507, + "thread": 13 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 720503, + "thread": 11 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 911156, + "thread": 4 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1118920, + "thread": 1 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1190983, + "thread": 25 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1318692, + "thread": 25 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1607311, + "thread": 5 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1664205, + "thread": 27 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1961458, + "thread": 22 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 1982771, + "thread": 22 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 2278230, + "thread": 15 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 2335402, + "thread": 8 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 2601063, + "thread": 31 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 2770400, + "thread": 18 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 2861973, + "thread": 28 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 3025960, + "thread": 12 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 3280290, + "thread": 8 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 3437825, + "thread": 20 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 3615587, + "thread": 0 + } + }, + { + "amount": "173.103186847", + "slot": { + "period": 3651698, + "thread": 31 + } + }, + { + "amount": "173.103186851", + "slot": { + "period": 3791514, + "thread": 15 + } + } + ], + "AU12MumwtroLhSzWas6gJC8Fjmjvn52Rf7cAkJcPkhDskGKGMTLb2": [ + { + "amount": "182.119050031", + "slot": { + "period": 116635, + "thread": 20 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 297949, + "thread": 23 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 350291, + "thread": 15 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 627269, + "thread": 7 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 682966, + "thread": 10 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 942509, + "thread": 4 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1070264, + "thread": 24 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1271370, + "thread": 0 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1364508, + "thread": 0 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1525131, + "thread": 8 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1767402, + "thread": 22 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 1910049, + "thread": 4 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2006423, + "thread": 11 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2207100, + "thread": 20 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2455269, + "thread": 13 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2606418, + "thread": 3 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2707049, + "thread": 27 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2855692, + "thread": 3 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 2970084, + "thread": 30 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 3124921, + "thread": 20 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 3413141, + "thread": 12 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 3459300, + "thread": 28 + } + }, + { + "amount": "182.119050031", + "slot": { + "period": 3656594, + "thread": 24 + } + }, + { + "amount": "182.119050041", + "slot": { + "period": 3914158, + "thread": 7 + } + } + ], + "AU12Mupgq2un9uhy9usVGjsarQrWPumRvh1RrniJV95LkDoYdbmc2": [ + { + "amount": "98.546009682", + "slot": { + "period": 18125, + "thread": 5 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 289480, + "thread": 26 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 430553, + "thread": 12 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 614460, + "thread": 30 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 732242, + "thread": 9 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 950375, + "thread": 30 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1040159, + "thread": 7 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1309530, + "thread": 3 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1435946, + "thread": 13 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1529697, + "thread": 3 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1688033, + "thread": 30 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 1873563, + "thread": 1 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2022694, + "thread": 31 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2294460, + "thread": 10 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2416626, + "thread": 22 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2579816, + "thread": 12 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2679993, + "thread": 13 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2851026, + "thread": 25 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 2969460, + "thread": 0 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 3165852, + "thread": 20 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 3332962, + "thread": 27 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 3467681, + "thread": 11 + } + }, + { + "amount": "98.546009682", + "slot": { + "period": 3633331, + "thread": 3 + } + }, + { + "amount": "98.546009692", + "slot": { + "period": 3922277, + "thread": 4 + } + } + ], + "AU12Mv3pkFLJtCBwjKgKR8pPNcas6E4r3VtWK944T1o9mgdSgLbo2": [ + { + "amount": "65.669573157", + "slot": { + "period": 131649, + "thread": 8 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 320695, + "thread": 1 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 379229, + "thread": 9 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 558429, + "thread": 27 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 683772, + "thread": 11 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 870667, + "thread": 19 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1096531, + "thread": 9 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1203472, + "thread": 21 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1420417, + "thread": 3 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1589403, + "thread": 26 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1685125, + "thread": 13 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 1829288, + "thread": 6 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2141390, + "thread": 25 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2175938, + "thread": 31 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2462182, + "thread": 31 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2574301, + "thread": 13 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2691888, + "thread": 22 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2826056, + "thread": 11 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 2994110, + "thread": 11 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 3148104, + "thread": 7 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 3432435, + "thread": 1 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 3467586, + "thread": 25 + } + }, + { + "amount": "65.669573157", + "slot": { + "period": 3726965, + "thread": 15 + } + }, + { + "amount": "65.669573150", + "slot": { + "period": 3858029, + "thread": 7 + } + } + ], + "AU12MvGD1CSEpFDum1vJxbQmW3LHUnyHLJhaepAUEbjU7sQLivNde": [ + { + "amount": "121.905625697", + "slot": { + "period": 18318, + "thread": 11 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 265879, + "thread": 11 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 353322, + "thread": 1 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 534022, + "thread": 29 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 703020, + "thread": 31 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 913441, + "thread": 1 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1119975, + "thread": 8 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1158891, + "thread": 2 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1412934, + "thread": 2 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1531649, + "thread": 9 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1661757, + "thread": 26 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 1957031, + "thread": 12 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2090016, + "thread": 30 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2237985, + "thread": 20 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2445112, + "thread": 7 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2548291, + "thread": 23 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2786131, + "thread": 26 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2799917, + "thread": 24 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 2986979, + "thread": 3 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 3258274, + "thread": 21 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 3426939, + "thread": 10 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 3584733, + "thread": 2 + } + }, + { + "amount": "121.905625697", + "slot": { + "period": 3712374, + "thread": 30 + } + }, + { + "amount": "121.905625692", + "slot": { + "period": 3885334, + "thread": 26 + } + } + ], + "AU12MwMDrYJxMDDHAretMEEHhjwUa62zMJrDKt5ygC5uZ5MoyzCtT": [ + { + "amount": "186.229370415", + "slot": { + "period": 21095, + "thread": 6 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 215778, + "thread": 5 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 352781, + "thread": 8 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 558140, + "thread": 0 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 752443, + "thread": 10 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 828527, + "thread": 18 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1139569, + "thread": 26 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1183250, + "thread": 19 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1335135, + "thread": 27 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1637705, + "thread": 9 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1711338, + "thread": 15 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1965111, + "thread": 30 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 1986888, + "thread": 20 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 2292339, + "thread": 0 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 2461659, + "thread": 31 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 2592582, + "thread": 10 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 2694423, + "thread": 0 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 2812783, + "thread": 28 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 3107233, + "thread": 10 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 3224693, + "thread": 12 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 3398975, + "thread": 17 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 3500710, + "thread": 18 + } + }, + { + "amount": "186.229370415", + "slot": { + "period": 3705800, + "thread": 27 + } + }, + { + "amount": "186.229370411", + "slot": { + "period": 3891104, + "thread": 2 + } + } + ], + "AU12MwSjxTnoN1PE3rjK2GM1xFBfu3P4J77pwuw47LAXGn5iY86B4": [ + { + "amount": "267.245014862", + "slot": { + "period": 78812, + "thread": 6 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 214900, + "thread": 14 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 346784, + "thread": 22 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 507032, + "thread": 10 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 719216, + "thread": 3 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 971326, + "thread": 0 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1021970, + "thread": 16 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1170937, + "thread": 10 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1429796, + "thread": 28 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1519382, + "thread": 15 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1662209, + "thread": 4 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1883524, + "thread": 29 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 1991701, + "thread": 5 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 2270366, + "thread": 28 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 2335763, + "thread": 3 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 2484147, + "thread": 3 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 2747325, + "thread": 30 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 2945283, + "thread": 15 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 3003968, + "thread": 11 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 3234141, + "thread": 5 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 3353897, + "thread": 28 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 3454778, + "thread": 10 + } + }, + { + "amount": "267.245014862", + "slot": { + "period": 3653814, + "thread": 15 + } + }, + { + "amount": "267.245014861", + "slot": { + "period": 3817181, + "thread": 19 + } + } + ], + "AU12MxTZAaFJ7LwPqUzvPk8zFmoF3mCRyny8LKMTv3kfLAUAQejwK": [ + { + "amount": "179.223639503", + "slot": { + "period": 85504, + "thread": 31 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 224098, + "thread": 18 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 396884, + "thread": 16 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 613843, + "thread": 26 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 795506, + "thread": 25 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 933679, + "thread": 4 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1080625, + "thread": 15 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1276393, + "thread": 5 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1447424, + "thread": 11 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1569605, + "thread": 23 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1654930, + "thread": 31 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 1877503, + "thread": 25 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2132961, + "thread": 18 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2171497, + "thread": 4 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2390521, + "thread": 26 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2525843, + "thread": 9 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2775612, + "thread": 5 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 2929722, + "thread": 12 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 3113882, + "thread": 2 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 3263426, + "thread": 6 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 3441225, + "thread": 15 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 3496361, + "thread": 29 + } + }, + { + "amount": "179.223639503", + "slot": { + "period": 3660469, + "thread": 13 + } + }, + { + "amount": "179.223639499", + "slot": { + "period": 3883126, + "thread": 7 + } + } + ], + "AU12MxzWTaqXJ4qdNgRALfRi5RqxL4oaUQMe4zBvpF94DEoX1CiMU": [ + { + "amount": "437.385587037", + "slot": { + "period": 46083, + "thread": 29 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 209802, + "thread": 17 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 413841, + "thread": 7 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 591417, + "thread": 6 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 678563, + "thread": 28 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 948033, + "thread": 14 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1019344, + "thread": 1 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1250746, + "thread": 25 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1353893, + "thread": 19 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1537441, + "thread": 21 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1684561, + "thread": 17 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1862351, + "thread": 22 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 1977430, + "thread": 21 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 2214386, + "thread": 1 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 2306620, + "thread": 27 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 2526390, + "thread": 5 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 2663954, + "thread": 27 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 2812976, + "thread": 31 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 3088223, + "thread": 9 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 3200350, + "thread": 7 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 3440410, + "thread": 26 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 3519971, + "thread": 24 + } + }, + { + "amount": "437.385587037", + "slot": { + "period": 3669821, + "thread": 25 + } + }, + { + "amount": "437.385587038", + "slot": { + "period": 3859457, + "thread": 17 + } + } + ], + "AU12My28j7Tr2Hzgey7XUixLK9qY1uTK4JgusAFMAJ4hy7ugCwL4C": [ + { + "amount": "343.257641896", + "slot": { + "period": 140088, + "thread": 27 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 178232, + "thread": 9 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 372749, + "thread": 15 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 531176, + "thread": 20 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 696530, + "thread": 7 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 979971, + "thread": 13 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1058628, + "thread": 3 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1226261, + "thread": 15 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1322639, + "thread": 3 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1505578, + "thread": 0 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1724269, + "thread": 21 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1957421, + "thread": 22 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 1992378, + "thread": 5 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 2270660, + "thread": 29 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 2354093, + "thread": 6 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 2619048, + "thread": 19 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 2670410, + "thread": 5 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 2835734, + "thread": 31 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 3106421, + "thread": 29 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 3249107, + "thread": 12 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 3417737, + "thread": 20 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 3561759, + "thread": 23 + } + }, + { + "amount": "343.257641896", + "slot": { + "period": 3706858, + "thread": 5 + } + }, + { + "amount": "343.257641901", + "slot": { + "period": 3902997, + "thread": 14 + } + } + ], + "AU12MyL7ZCdS3T97kS14iRyLNXChFK8Nd8hQPqoDBBxfEq4AwGVnJ": [ + { + "amount": "212.902894727", + "slot": { + "period": 55112, + "thread": 14 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 274716, + "thread": 28 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 366204, + "thread": 8 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 607837, + "thread": 25 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 719195, + "thread": 26 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 926921, + "thread": 1 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1064730, + "thread": 11 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1263922, + "thread": 8 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1348389, + "thread": 12 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1621267, + "thread": 6 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1662427, + "thread": 2 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 1900603, + "thread": 1 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2073177, + "thread": 19 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2231912, + "thread": 12 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2372650, + "thread": 17 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2522374, + "thread": 11 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2643950, + "thread": 22 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2796796, + "thread": 16 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 2995903, + "thread": 28 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 3264674, + "thread": 6 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 3345337, + "thread": 22 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 3505216, + "thread": 15 + } + }, + { + "amount": "212.902894727", + "slot": { + "period": 3674973, + "thread": 3 + } + }, + { + "amount": "212.902894733", + "slot": { + "period": 3896692, + "thread": 28 + } + } + ], + "AU12Mz8i6sarV1HtXuxkUkGGyQxnTEaSLHzdHiaH5GcgSVvSGU2LG": [ + { + "amount": "307.203637248", + "slot": { + "period": 114827, + "thread": 9 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 286943, + "thread": 12 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 469714, + "thread": 24 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 621187, + "thread": 2 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 815214, + "thread": 0 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 892784, + "thread": 6 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 995073, + "thread": 5 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 1266447, + "thread": 22 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 1370378, + "thread": 31 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 1620414, + "thread": 6 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 1701982, + "thread": 17 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 1884988, + "thread": 18 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2088141, + "thread": 10 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2210712, + "thread": 15 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2457014, + "thread": 6 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2500389, + "thread": 28 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2665926, + "thread": 15 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 2845936, + "thread": 15 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 3079878, + "thread": 24 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 3133967, + "thread": 16 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 3365527, + "thread": 30 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 3563175, + "thread": 6 + } + }, + { + "amount": "307.203637248", + "slot": { + "period": 3735483, + "thread": 6 + } + }, + { + "amount": "307.203637256", + "slot": { + "period": 3809071, + "thread": 17 + } + } + ], + "AU12MzcvK15bCvPSnBMEe1sa1Q4yugYUtkHG5SsPnXR3LBhVDPES9": [ + { + "amount": "308.153814470", + "slot": { + "period": 33549, + "thread": 14 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 268124, + "thread": 11 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 448343, + "thread": 27 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 609404, + "thread": 31 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 752776, + "thread": 28 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 826705, + "thread": 4 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1001579, + "thread": 8 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1250977, + "thread": 2 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1348929, + "thread": 4 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1558146, + "thread": 15 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1797539, + "thread": 9 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1846950, + "thread": 26 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 1980116, + "thread": 9 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 2236272, + "thread": 20 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 2458922, + "thread": 21 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 2468319, + "thread": 24 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 2703353, + "thread": 20 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 2846345, + "thread": 30 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 3095299, + "thread": 19 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 3142493, + "thread": 18 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 3314627, + "thread": 11 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 3604701, + "thread": 12 + } + }, + { + "amount": "308.153814470", + "slot": { + "period": 3747371, + "thread": 1 + } + }, + { + "amount": "308.153814476", + "slot": { + "period": 3812590, + "thread": 29 + } + } + ], + "AU12N2hYq4NKoYB59egxewZz19Arpsuyc8xrwKkucLgK4Xnk8yjM1": [ + { + "amount": "73.988671656", + "slot": { + "period": 47045, + "thread": 21 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 246576, + "thread": 2 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 374634, + "thread": 21 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 600528, + "thread": 7 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 730556, + "thread": 21 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 978446, + "thread": 6 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1135754, + "thread": 9 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1207109, + "thread": 24 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1395320, + "thread": 5 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1601307, + "thread": 27 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1649831, + "thread": 10 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 1924789, + "thread": 14 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2113197, + "thread": 13 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2213689, + "thread": 16 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2327661, + "thread": 31 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2613417, + "thread": 17 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2625931, + "thread": 12 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2916751, + "thread": 2 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 2966981, + "thread": 9 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 3122664, + "thread": 9 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 3382535, + "thread": 13 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 3476151, + "thread": 2 + } + }, + { + "amount": "73.988671656", + "slot": { + "period": 3706218, + "thread": 14 + } + }, + { + "amount": "73.988671659", + "slot": { + "period": 3908465, + "thread": 16 + } + } + ], + "AU12N2yS7tfKC2o8aKEHaKx8f2GeQQby9eXxKrmN8LMo83Dusx22g": [ + { + "amount": "86.307255726", + "slot": { + "period": 138617, + "thread": 18 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 244930, + "thread": 1 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 481362, + "thread": 26 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 566622, + "thread": 19 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 804201, + "thread": 0 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 836399, + "thread": 3 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1109703, + "thread": 31 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1156088, + "thread": 7 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1465510, + "thread": 12 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1562537, + "thread": 1 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1694024, + "thread": 16 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 1945772, + "thread": 17 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2110706, + "thread": 14 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2145316, + "thread": 18 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2341542, + "thread": 6 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2495660, + "thread": 19 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2649198, + "thread": 5 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 2832427, + "thread": 12 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 3034305, + "thread": 4 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 3195803, + "thread": 9 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 3400135, + "thread": 7 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 3603861, + "thread": 2 + } + }, + { + "amount": "86.307255726", + "slot": { + "period": 3705471, + "thread": 29 + } + }, + { + "amount": "86.307255725", + "slot": { + "period": 3852611, + "thread": 10 + } + } + ], + "AU12N3WUa2Lv5xJcBBWtGJVJujo2NoFStVBrioVEyRRoumL7n8g9g": [ + { + "amount": "57.635789390", + "slot": { + "period": 133737, + "thread": 15 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 220402, + "thread": 22 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 445250, + "thread": 16 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 614853, + "thread": 18 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 753971, + "thread": 8 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 958070, + "thread": 10 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1064651, + "thread": 21 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1259039, + "thread": 4 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1336267, + "thread": 2 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1620765, + "thread": 13 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1714738, + "thread": 0 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 1962369, + "thread": 27 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2020872, + "thread": 29 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2221805, + "thread": 25 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2328399, + "thread": 8 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2598460, + "thread": 22 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2634794, + "thread": 5 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 2854286, + "thread": 22 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 3032725, + "thread": 25 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 3241534, + "thread": 2 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 3293426, + "thread": 12 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 3537501, + "thread": 19 + } + }, + { + "amount": "57.635789390", + "slot": { + "period": 3654775, + "thread": 14 + } + }, + { + "amount": "57.635789384", + "slot": { + "period": 3820842, + "thread": 30 + } + } + ], + "AU12N59VnTy5DFFMqYS2btFuPJ7Z2KzkRo9FxZPkqqmnaPvSk3ogq": [ + { + "amount": "287.250604640", + "slot": { + "period": 35135, + "thread": 14 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 259578, + "thread": 18 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 413713, + "thread": 11 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 566800, + "thread": 28 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 690407, + "thread": 2 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 955798, + "thread": 11 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1017839, + "thread": 24 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1175881, + "thread": 6 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1395542, + "thread": 11 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1513968, + "thread": 22 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1796291, + "thread": 14 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 1834631, + "thread": 23 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2017728, + "thread": 12 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2222393, + "thread": 16 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2436693, + "thread": 7 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2528369, + "thread": 17 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2742893, + "thread": 7 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2860929, + "thread": 26 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 2973394, + "thread": 9 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 3182275, + "thread": 16 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 3401736, + "thread": 10 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 3576412, + "thread": 27 + } + }, + { + "amount": "287.250604640", + "slot": { + "period": 3741745, + "thread": 12 + } + }, + { + "amount": "287.250604651", + "slot": { + "period": 3940579, + "thread": 16 + } + } + ], + "AU12N5hahQBkt93eE43qXX7Wgxn51VnLk61EgbuhmNbBuy6B1zroz": [ + { + "amount": "85.897035738", + "slot": { + "period": 87124, + "thread": 21 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 226442, + "thread": 7 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 478167, + "thread": 15 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 539583, + "thread": 10 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 777069, + "thread": 0 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 963368, + "thread": 8 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 996950, + "thread": 16 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 1281028, + "thread": 29 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 1382271, + "thread": 13 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 1584725, + "thread": 10 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 1744576, + "thread": 22 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 1966531, + "thread": 13 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2106937, + "thread": 25 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2146368, + "thread": 11 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2394655, + "thread": 23 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2495632, + "thread": 0 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2688585, + "thread": 27 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 2918216, + "thread": 22 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 3044035, + "thread": 10 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 3159936, + "thread": 4 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 3372171, + "thread": 29 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 3586382, + "thread": 26 + } + }, + { + "amount": "85.897035738", + "slot": { + "period": 3700192, + "thread": 27 + } + }, + { + "amount": "85.897035734", + "slot": { + "period": 3918690, + "thread": 17 + } + } + ], + "AU12N6s1y2oEtBQgrWsgKnYmdUWnZSQERFTymbpc29Rt3RgAR3bpn": [ + { + "amount": "188.258949975", + "slot": { + "period": 14418, + "thread": 12 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 305788, + "thread": 5 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 355913, + "thread": 19 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 555476, + "thread": 15 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 819349, + "thread": 24 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 915708, + "thread": 13 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1003611, + "thread": 17 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1221426, + "thread": 14 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1452628, + "thread": 11 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1560272, + "thread": 9 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1721821, + "thread": 22 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 1881266, + "thread": 20 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2089953, + "thread": 9 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2206662, + "thread": 28 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2325012, + "thread": 17 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2510564, + "thread": 21 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2776871, + "thread": 17 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2903543, + "thread": 7 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 2984055, + "thread": 3 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 3230456, + "thread": 31 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 3323991, + "thread": 19 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 3505426, + "thread": 12 + } + }, + { + "amount": "188.258949975", + "slot": { + "period": 3726021, + "thread": 0 + } + }, + { + "amount": "188.258949982", + "slot": { + "period": 3834672, + "thread": 31 + } + } + ], + "AU12N8D5RayUfWgUoA6dFVpVTszTyxX2TwkHmSosK4VaHVr7WuSes": [ + { + "amount": "623.363790888", + "slot": { + "period": 106866, + "thread": 12 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 282326, + "thread": 20 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 437052, + "thread": 26 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 497087, + "thread": 1 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 694354, + "thread": 27 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 920420, + "thread": 11 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1045772, + "thread": 10 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1161657, + "thread": 7 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1396923, + "thread": 18 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1614479, + "thread": 1 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1739810, + "thread": 20 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 1880571, + "thread": 13 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2074246, + "thread": 4 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2277084, + "thread": 0 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2366644, + "thread": 25 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2514836, + "thread": 9 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2740624, + "thread": 28 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2847549, + "thread": 30 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 2976914, + "thread": 10 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 3134095, + "thread": 28 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 3343501, + "thread": 5 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 3456395, + "thread": 23 + } + }, + { + "amount": "623.363790888", + "slot": { + "period": 3752463, + "thread": 19 + } + }, + { + "amount": "623.363790885", + "slot": { + "period": 3783133, + "thread": 18 + } + } + ], + "AU12N8pCF6dpDdYaHZ9YR3hBLLyz2jv9X3kHVWm8UPe7U7W5U9GmA": [ + { + "amount": "100.416394939", + "slot": { + "period": 47607, + "thread": 29 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 261339, + "thread": 15 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 412270, + "thread": 13 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 579139, + "thread": 31 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 698270, + "thread": 10 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 866027, + "thread": 21 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1119325, + "thread": 24 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1191240, + "thread": 25 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1400466, + "thread": 14 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1518488, + "thread": 25 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1788634, + "thread": 29 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 1854587, + "thread": 3 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2008149, + "thread": 19 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2264847, + "thread": 31 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2317535, + "thread": 15 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2607279, + "thread": 23 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2741918, + "thread": 15 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 2868363, + "thread": 5 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 3102025, + "thread": 12 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 3146215, + "thread": 1 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 3438652, + "thread": 9 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 3577829, + "thread": 30 + } + }, + { + "amount": "100.416394939", + "slot": { + "period": 3709157, + "thread": 21 + } + }, + { + "amount": "100.416394946", + "slot": { + "period": 3783510, + "thread": 29 + } + } + ], + "AU12N9uAV85VTUriUDCAvSFfL8xfT9cpK5R2B9RLWVCge6yBRFzN3": [ + { + "amount": "228.978354254", + "slot": { + "period": 84343, + "thread": 17 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 283696, + "thread": 7 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 343083, + "thread": 31 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 604771, + "thread": 2 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 730624, + "thread": 13 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 901746, + "thread": 31 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1128888, + "thread": 9 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1154085, + "thread": 28 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1398149, + "thread": 5 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1525605, + "thread": 5 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1662589, + "thread": 24 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 1847109, + "thread": 18 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2072205, + "thread": 5 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2216984, + "thread": 15 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2459628, + "thread": 3 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2513872, + "thread": 6 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2733992, + "thread": 9 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 2920591, + "thread": 25 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 3076177, + "thread": 19 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 3167592, + "thread": 4 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 3333283, + "thread": 21 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 3537457, + "thread": 4 + } + }, + { + "amount": "228.978354254", + "slot": { + "period": 3634890, + "thread": 22 + } + }, + { + "amount": "228.978354266", + "slot": { + "period": 3844481, + "thread": 21 + } + } + ], + "AU12NA9dF6ZFytsyXMY9AqpT1Atvs8cR4EuWpanjXT7VPCJEWAnyW": [ + { + "amount": "120.988253438", + "slot": { + "period": 50273, + "thread": 23 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 313617, + "thread": 29 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 420004, + "thread": 20 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 622869, + "thread": 30 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 693069, + "thread": 14 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 947557, + "thread": 30 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1010020, + "thread": 22 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1264880, + "thread": 23 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1454708, + "thread": 9 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1573494, + "thread": 5 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1670748, + "thread": 14 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 1883365, + "thread": 17 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2040044, + "thread": 28 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2154529, + "thread": 8 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2305125, + "thread": 13 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2569096, + "thread": 16 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2736521, + "thread": 19 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2899311, + "thread": 30 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 2986671, + "thread": 9 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 3195823, + "thread": 13 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 3392110, + "thread": 12 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 3553587, + "thread": 18 + } + }, + { + "amount": "120.988253438", + "slot": { + "period": 3703837, + "thread": 31 + } + }, + { + "amount": "120.988253442", + "slot": { + "period": 3800784, + "thread": 15 + } + } + ], + "AU12NAPyMCtPaK8574SUJVLDSRrHfCkghV2C3HqF7QX4freJNVbfK": [ + { + "amount": "367.719435872", + "slot": { + "period": 143626, + "thread": 0 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 182065, + "thread": 0 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 335792, + "thread": 3 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 646636, + "thread": 10 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 720612, + "thread": 20 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 857027, + "thread": 29 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1119633, + "thread": 0 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1269430, + "thread": 4 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1353371, + "thread": 31 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1518526, + "thread": 15 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1782920, + "thread": 14 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 1949379, + "thread": 7 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2038013, + "thread": 7 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2247079, + "thread": 6 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2327332, + "thread": 1 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2606837, + "thread": 20 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2646761, + "thread": 12 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 2847390, + "thread": 16 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 3028986, + "thread": 28 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 3225382, + "thread": 24 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 3320175, + "thread": 30 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 3603827, + "thread": 31 + } + }, + { + "amount": "367.719435872", + "slot": { + "period": 3637642, + "thread": 14 + } + }, + { + "amount": "367.719435863", + "slot": { + "period": 3889773, + "thread": 14 + } + } + ], + "AU12NAWtQFm25nCcTxZrUN2z75un5pYJFwTz14W4RjFX8quVNk49Z": [ + { + "amount": "166.555330434", + "slot": { + "period": 53323, + "thread": 25 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 218549, + "thread": 10 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 465414, + "thread": 6 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 566058, + "thread": 25 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 773190, + "thread": 27 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 882368, + "thread": 6 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1045273, + "thread": 19 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1262360, + "thread": 7 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1322661, + "thread": 2 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1533820, + "thread": 19 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1763740, + "thread": 18 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1819229, + "thread": 21 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 1985863, + "thread": 28 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 2221451, + "thread": 26 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 2429785, + "thread": 9 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 2467137, + "thread": 17 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 2729474, + "thread": 17 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 2812739, + "thread": 9 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 3083562, + "thread": 31 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 3210678, + "thread": 21 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 3320863, + "thread": 13 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 3519904, + "thread": 29 + } + }, + { + "amount": "166.555330434", + "slot": { + "period": 3736246, + "thread": 26 + } + }, + { + "amount": "166.555330445", + "slot": { + "period": 3873980, + "thread": 10 + } + } + ], + "AU12NBSWvaNgiw3vu1F8h5nxWyQHSVYwevkqQbTbntvSyVvQ2DRvq": [ + { + "amount": "85.095059983", + "slot": { + "period": 111302, + "thread": 23 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 307647, + "thread": 26 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 428979, + "thread": 10 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 507000, + "thread": 30 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 803560, + "thread": 28 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 981925, + "thread": 20 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1046356, + "thread": 29 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1269966, + "thread": 12 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1382480, + "thread": 6 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1519701, + "thread": 13 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1707428, + "thread": 11 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 1957223, + "thread": 0 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2036050, + "thread": 30 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2186762, + "thread": 7 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2365814, + "thread": 3 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2479520, + "thread": 29 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2733418, + "thread": 14 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2900522, + "thread": 20 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 2963974, + "thread": 3 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 3158277, + "thread": 7 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 3314964, + "thread": 22 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 3541251, + "thread": 20 + } + }, + { + "amount": "85.095059983", + "slot": { + "period": 3739433, + "thread": 19 + } + }, + { + "amount": "85.095059981", + "slot": { + "period": 3917112, + "thread": 2 + } + } + ], + "AU12NCi5VagWupXttcrJLihzSe1YVtDjgWA2fExBqLAqpo8CdfrNv": [ + { + "amount": "250.714962580", + "slot": { + "period": 116327, + "thread": 12 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 292261, + "thread": 7 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 445441, + "thread": 27 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 634745, + "thread": 3 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 755961, + "thread": 21 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 923942, + "thread": 19 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1039616, + "thread": 22 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1246436, + "thread": 26 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1375297, + "thread": 13 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1577096, + "thread": 14 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1685623, + "thread": 30 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1936565, + "thread": 5 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 1979681, + "thread": 23 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2226992, + "thread": 24 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2349614, + "thread": 21 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2570446, + "thread": 24 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2760823, + "thread": 31 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2940355, + "thread": 24 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 2964518, + "thread": 0 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 3143993, + "thread": 10 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 3339488, + "thread": 13 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 3594909, + "thread": 29 + } + }, + { + "amount": "250.714962580", + "slot": { + "period": 3725582, + "thread": 2 + } + }, + { + "amount": "250.714962571", + "slot": { + "period": 3811118, + "thread": 18 + } + } + ], + "AU12NCsnJgeLdLQqCkcUNCunh7JkkAqiTPexsoSoWA5RjVCnmg1xG": [ + { + "amount": "147.336407388", + "slot": { + "period": 83351, + "thread": 5 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 228300, + "thread": 29 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 471957, + "thread": 10 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 618913, + "thread": 16 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 756407, + "thread": 5 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 970336, + "thread": 10 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1039947, + "thread": 23 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1291414, + "thread": 14 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1319162, + "thread": 26 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1561376, + "thread": 17 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1735949, + "thread": 19 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 1848597, + "thread": 3 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2082143, + "thread": 10 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2207907, + "thread": 2 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2425117, + "thread": 10 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2533729, + "thread": 26 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2663327, + "thread": 30 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2910407, + "thread": 22 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 2958729, + "thread": 24 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 3155078, + "thread": 2 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 3301330, + "thread": 6 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 3471976, + "thread": 2 + } + }, + { + "amount": "147.336407388", + "slot": { + "period": 3635235, + "thread": 29 + } + }, + { + "amount": "147.336407389", + "slot": { + "period": 3831477, + "thread": 6 + } + } + ], + "AU12ND2nEeMbHetWFribJheTZtM2HK7kvaRgMb7PtKEHcSRPBeVpz": [ + { + "amount": "530.757564437", + "slot": { + "period": 46462, + "thread": 20 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 193057, + "thread": 4 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 399180, + "thread": 21 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 598443, + "thread": 7 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 713727, + "thread": 13 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 972034, + "thread": 14 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1123989, + "thread": 23 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1238299, + "thread": 2 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1358835, + "thread": 2 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1566951, + "thread": 4 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1661351, + "thread": 29 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 1851400, + "thread": 11 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2089592, + "thread": 21 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2155142, + "thread": 8 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2401860, + "thread": 9 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2556005, + "thread": 20 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2775004, + "thread": 15 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 2801509, + "thread": 17 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 3029651, + "thread": 18 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 3198966, + "thread": 2 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 3413808, + "thread": 2 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 3599277, + "thread": 31 + } + }, + { + "amount": "530.757564437", + "slot": { + "period": 3646600, + "thread": 30 + } + }, + { + "amount": "530.757564434", + "slot": { + "period": 3810002, + "thread": 6 + } + } + ], + "AU12NEE7Y8tKYUpD2KZrBjLsYYPtMwkf6SssrSunmxVjQS3snb9eG": [ + { + "amount": "232.513185452", + "slot": { + "period": 115477, + "thread": 26 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 193621, + "thread": 14 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 390676, + "thread": 15 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 593863, + "thread": 14 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 812127, + "thread": 8 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 948085, + "thread": 21 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1051228, + "thread": 7 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1233531, + "thread": 9 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1454325, + "thread": 17 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1480190, + "thread": 27 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1651061, + "thread": 13 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 1961161, + "thread": 20 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2034560, + "thread": 31 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2252033, + "thread": 13 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2456144, + "thread": 30 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2516810, + "thread": 3 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2691909, + "thread": 29 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 2947884, + "thread": 13 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 3070269, + "thread": 30 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 3205440, + "thread": 18 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 3373506, + "thread": 10 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 3528275, + "thread": 7 + } + }, + { + "amount": "232.513185452", + "slot": { + "period": 3707009, + "thread": 13 + } + }, + { + "amount": "232.513185447", + "slot": { + "period": 3822944, + "thread": 9 + } + } + ], + "AU12NEX8AtqPHRyAw3XuiirSdfzqVEZJGLLho5622UpL2QN2NqijX": [ + { + "amount": "58.262512198", + "slot": { + "period": 93978, + "thread": 9 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 303691, + "thread": 20 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 337396, + "thread": 16 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 575621, + "thread": 10 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 731931, + "thread": 14 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 878074, + "thread": 8 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1042543, + "thread": 21 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1261756, + "thread": 1 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1383535, + "thread": 31 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1521322, + "thread": 30 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1775212, + "thread": 8 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 1955340, + "thread": 6 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2073111, + "thread": 3 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2162624, + "thread": 22 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2382076, + "thread": 2 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2589224, + "thread": 22 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2651602, + "thread": 29 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2880180, + "thread": 1 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 2960655, + "thread": 0 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 3131688, + "thread": 29 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 3295036, + "thread": 0 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 3513382, + "thread": 9 + } + }, + { + "amount": "58.262512198", + "slot": { + "period": 3741186, + "thread": 30 + } + }, + { + "amount": "58.262512187", + "slot": { + "period": 3892590, + "thread": 18 + } + } + ], + "AU12NEdQ1FX3eNMunnoCTDcggasZmtWAD9KMjLaZP33B7y1mihn6X": [ + { + "amount": "160.141042158", + "slot": { + "period": 140754, + "thread": 21 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 195343, + "thread": 13 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 413043, + "thread": 25 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 553637, + "thread": 6 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 671897, + "thread": 16 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 898566, + "thread": 13 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1094105, + "thread": 5 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1151933, + "thread": 13 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1368700, + "thread": 24 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1542597, + "thread": 18 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1805645, + "thread": 22 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 1863094, + "thread": 26 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2034957, + "thread": 22 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2163722, + "thread": 28 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2406225, + "thread": 2 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2586903, + "thread": 18 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2666574, + "thread": 26 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2868442, + "thread": 30 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 2979624, + "thread": 2 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 3219539, + "thread": 20 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 3326492, + "thread": 13 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 3502686, + "thread": 9 + } + }, + { + "amount": "160.141042158", + "slot": { + "period": 3713571, + "thread": 5 + } + }, + { + "amount": "160.141042167", + "slot": { + "period": 3901288, + "thread": 0 + } + } + ], + "AU12NFP3Y1BPCNFS87usFDPHF7H1No8S4DmA69oYTwLXCGWJZMLL8": [ + { + "amount": "186.799669007", + "slot": { + "period": 128104, + "thread": 3 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 235303, + "thread": 2 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 429545, + "thread": 28 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 633075, + "thread": 18 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 673302, + "thread": 24 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 927592, + "thread": 21 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1107116, + "thread": 17 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1257250, + "thread": 19 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1468238, + "thread": 24 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1584592, + "thread": 31 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1757595, + "thread": 5 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 1916118, + "thread": 4 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2017921, + "thread": 4 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2178275, + "thread": 29 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2388040, + "thread": 16 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2597338, + "thread": 19 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2695134, + "thread": 24 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2900738, + "thread": 10 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 2985637, + "thread": 29 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 3164235, + "thread": 0 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 3371990, + "thread": 10 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 3484092, + "thread": 12 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 3717002, + "thread": 9 + } + }, + { + "amount": "186.799669007", + "slot": { + "period": 3924561, + "thread": 19 + } + } + ], + "AU12NFo85BzmFbXqabeJNGJxgDsvLTUHVyWErUpoXePf7dhERM78J": [ + { + "amount": "198.945431223", + "slot": { + "period": 49340, + "thread": 5 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 303977, + "thread": 14 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 452159, + "thread": 24 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 528725, + "thread": 9 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 799653, + "thread": 31 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 900498, + "thread": 8 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1111260, + "thread": 13 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1265482, + "thread": 9 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1411801, + "thread": 14 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1519592, + "thread": 5 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1712231, + "thread": 6 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 1864606, + "thread": 20 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2041957, + "thread": 23 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2263931, + "thread": 2 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2344594, + "thread": 22 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2509657, + "thread": 12 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2637816, + "thread": 17 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 2835350, + "thread": 27 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 3063874, + "thread": 16 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 3263760, + "thread": 15 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 3396897, + "thread": 23 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 3566652, + "thread": 23 + } + }, + { + "amount": "198.945431223", + "slot": { + "period": 3717222, + "thread": 0 + } + }, + { + "amount": "198.945431221", + "slot": { + "period": 3814403, + "thread": 14 + } + } + ], + "AU12NGwN1i7kkBd4ouGtVCD9TEHbVXD8FttuS7WFxbcBgzLTx7if7": [ + { + "amount": "116.764831102", + "slot": { + "period": 153645, + "thread": 3 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 175161, + "thread": 23 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 463745, + "thread": 15 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 646493, + "thread": 14 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 748494, + "thread": 30 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 950199, + "thread": 5 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1073922, + "thread": 4 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1207102, + "thread": 23 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1453503, + "thread": 13 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1593505, + "thread": 28 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1722486, + "thread": 10 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 1858093, + "thread": 10 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2090335, + "thread": 9 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2285343, + "thread": 11 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2333738, + "thread": 16 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2564890, + "thread": 8 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2627101, + "thread": 13 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 2945586, + "thread": 26 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 3091590, + "thread": 22 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 3269818, + "thread": 21 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 3403462, + "thread": 3 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 3589157, + "thread": 6 + } + }, + { + "amount": "116.764831102", + "slot": { + "period": 3724474, + "thread": 6 + } + }, + { + "amount": "116.764831096", + "slot": { + "period": 3918813, + "thread": 0 + } + } + ], + "AU12NHCDD8Fimmg2ygXd1SWEktVe4ASawtfZVBD3J8SekZ1Cmftj8": [ + { + "amount": "163.767673443", + "slot": { + "period": 99626, + "thread": 11 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 268125, + "thread": 18 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 487548, + "thread": 14 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 628180, + "thread": 2 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 658452, + "thread": 0 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 980601, + "thread": 3 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1106341, + "thread": 29 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1214099, + "thread": 5 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1420157, + "thread": 24 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1616687, + "thread": 7 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1744935, + "thread": 0 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 1887316, + "thread": 31 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2041349, + "thread": 25 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2219777, + "thread": 11 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2439157, + "thread": 6 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2606842, + "thread": 17 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2772070, + "thread": 31 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 2941943, + "thread": 29 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 3025420, + "thread": 3 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 3158389, + "thread": 7 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 3304711, + "thread": 28 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 3478692, + "thread": 25 + } + }, + { + "amount": "163.767673443", + "slot": { + "period": 3665417, + "thread": 11 + } + }, + { + "amount": "163.767673449", + "slot": { + "period": 3918661, + "thread": 9 + } + } + ], + "AU12NHz3rouSUstaVajMNhgdcvhZLEq5nXwoMUiY5AGEcbuEEzosX": [ + { + "amount": "73.056200527", + "slot": { + "period": 151271, + "thread": 23 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 238479, + "thread": 17 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 462388, + "thread": 11 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 533216, + "thread": 8 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 766948, + "thread": 19 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 939708, + "thread": 30 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1002061, + "thread": 6 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1200279, + "thread": 24 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1384058, + "thread": 16 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1490237, + "thread": 7 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1661562, + "thread": 12 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 1814795, + "thread": 1 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2020412, + "thread": 30 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2293443, + "thread": 22 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2378508, + "thread": 28 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2620680, + "thread": 6 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2640376, + "thread": 5 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 2916722, + "thread": 3 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 3096476, + "thread": 14 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 3224443, + "thread": 15 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 3396453, + "thread": 29 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 3552160, + "thread": 19 + } + }, + { + "amount": "73.056200527", + "slot": { + "period": 3725340, + "thread": 4 + } + }, + { + "amount": "73.056200516", + "slot": { + "period": 3817277, + "thread": 21 + } + } + ], + "AU12NJD6aUUUJZhxPvMzZNPDSGQELikd2YbGKa4cQ8jsyAVadSjmr": [ + { + "amount": "197.197483848", + "slot": { + "period": 24558, + "thread": 7 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 215983, + "thread": 12 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 354878, + "thread": 27 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 648016, + "thread": 3 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 779307, + "thread": 4 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 820889, + "thread": 5 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1047278, + "thread": 10 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1310875, + "thread": 26 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1394922, + "thread": 3 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1533446, + "thread": 27 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1726377, + "thread": 15 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1859823, + "thread": 16 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 1992942, + "thread": 19 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2245074, + "thread": 8 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2405077, + "thread": 19 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2581997, + "thread": 19 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2755352, + "thread": 21 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2944896, + "thread": 31 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 2971997, + "thread": 18 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 3123988, + "thread": 28 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 3345661, + "thread": 16 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 3530153, + "thread": 21 + } + }, + { + "amount": "197.197483848", + "slot": { + "period": 3692849, + "thread": 14 + } + }, + { + "amount": "197.197483852", + "slot": { + "period": 3943783, + "thread": 21 + } + } + ], + "AU12NKYh45G5Qai71NrBmHwatRa4V8AnrHq7TQgiwxcAbd5tedwML": [ + { + "amount": "175.584119590", + "slot": { + "period": 162147, + "thread": 20 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 280034, + "thread": 3 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 347320, + "thread": 30 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 505855, + "thread": 20 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 686446, + "thread": 30 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 976676, + "thread": 14 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1053364, + "thread": 27 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1198353, + "thread": 30 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1362221, + "thread": 21 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1604396, + "thread": 8 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1797052, + "thread": 21 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 1903494, + "thread": 19 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2064063, + "thread": 11 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2213635, + "thread": 9 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2316701, + "thread": 26 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2467684, + "thread": 15 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2703421, + "thread": 29 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 2888073, + "thread": 10 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 3104754, + "thread": 11 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 3151067, + "thread": 14 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 3377664, + "thread": 1 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 3595934, + "thread": 24 + } + }, + { + "amount": "175.584119590", + "slot": { + "period": 3742305, + "thread": 27 + } + }, + { + "amount": "175.584119602", + "slot": { + "period": 3915984, + "thread": 27 + } + } + ], + "AU12NLUcT9piWZnAmKvFr4iurrcRaL8mZHNM9PGHsEYedeEKvNu7N": [ + { + "amount": "186.553507114", + "slot": { + "period": 124905, + "thread": 8 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 263053, + "thread": 17 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 425612, + "thread": 25 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 613473, + "thread": 21 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 744407, + "thread": 11 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 883000, + "thread": 30 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1121382, + "thread": 24 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1277515, + "thread": 6 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1371235, + "thread": 1 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1519805, + "thread": 31 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1717862, + "thread": 20 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 1949125, + "thread": 20 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2125428, + "thread": 26 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2221693, + "thread": 23 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2429692, + "thread": 4 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2539337, + "thread": 16 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2628073, + "thread": 10 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2866504, + "thread": 19 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 2985951, + "thread": 16 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 3266444, + "thread": 14 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 3440408, + "thread": 10 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 3507029, + "thread": 3 + } + }, + { + "amount": "186.553507114", + "slot": { + "period": 3724357, + "thread": 4 + } + }, + { + "amount": "186.553507102", + "slot": { + "period": 3858128, + "thread": 3 + } + } + ], + "AU12NLz1cyBRnLV5fVMTo4HoHHu2QvwEXEK21JYGEsHcndSWsVyk3": [ + { + "amount": "143.083269869", + "slot": { + "period": 11171, + "thread": 6 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 215405, + "thread": 0 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 410492, + "thread": 29 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 589532, + "thread": 14 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 725653, + "thread": 2 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 823623, + "thread": 7 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1018459, + "thread": 21 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1283395, + "thread": 3 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1373520, + "thread": 20 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1491340, + "thread": 30 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1756926, + "thread": 15 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 1975005, + "thread": 17 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2084958, + "thread": 10 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2240747, + "thread": 30 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2444560, + "thread": 15 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2526827, + "thread": 27 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2640111, + "thread": 28 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2838136, + "thread": 7 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 2967467, + "thread": 3 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 3152762, + "thread": 6 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 3397419, + "thread": 24 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 3505617, + "thread": 9 + } + }, + { + "amount": "143.083269869", + "slot": { + "period": 3767570, + "thread": 8 + } + }, + { + "amount": "143.083269865", + "slot": { + "period": 3797240, + "thread": 30 + } + } + ], + "AU12NN9B8tQguP1ZYNvo5N8oEcKPBJ2C5gvw231bbQPchJs3VgXvf": [ + { + "amount": "430.074034642", + "slot": { + "period": 80915, + "thread": 16 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 319749, + "thread": 26 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 378772, + "thread": 6 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 583021, + "thread": 1 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 808276, + "thread": 15 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 930780, + "thread": 13 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1025909, + "thread": 29 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1162015, + "thread": 2 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1324551, + "thread": 30 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1513392, + "thread": 28 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1732171, + "thread": 0 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 1827264, + "thread": 28 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2103039, + "thread": 14 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2266479, + "thread": 15 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2346651, + "thread": 21 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2624023, + "thread": 9 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2779304, + "thread": 16 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 2796183, + "thread": 3 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 3044228, + "thread": 3 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 3163767, + "thread": 28 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 3388815, + "thread": 11 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 3598948, + "thread": 14 + } + }, + { + "amount": "430.074034642", + "slot": { + "period": 3686413, + "thread": 30 + } + }, + { + "amount": "430.074034643", + "slot": { + "period": 3824905, + "thread": 23 + } + } + ], + "AU12NNWHrFR34bPrm5SExVZqvbebh2gtijbdmBCCczwTaddNeYtJP": [ + { + "amount": "101.047124763", + "slot": { + "period": 83470, + "thread": 9 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 291810, + "thread": 16 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 362928, + "thread": 9 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 603035, + "thread": 1 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 743126, + "thread": 15 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 941541, + "thread": 12 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1053330, + "thread": 1 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1286571, + "thread": 19 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1442091, + "thread": 6 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1510299, + "thread": 12 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1687833, + "thread": 15 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 1934491, + "thread": 19 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2017612, + "thread": 24 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2159712, + "thread": 2 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2362188, + "thread": 2 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2468405, + "thread": 11 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2627865, + "thread": 15 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 2854252, + "thread": 6 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 3110165, + "thread": 31 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 3168831, + "thread": 5 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 3372588, + "thread": 12 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 3524218, + "thread": 8 + } + }, + { + "amount": "101.047124763", + "slot": { + "period": 3667175, + "thread": 12 + } + }, + { + "amount": "101.047124762", + "slot": { + "period": 3839785, + "thread": 25 + } + } + ], + "AU12NPDRnT4i2BdCcvpiczgZy91Fb51DDZnnywTDcqxJtmWkVta6X": [ + { + "amount": "140.496042999", + "slot": { + "period": 158827, + "thread": 5 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 251390, + "thread": 25 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 329667, + "thread": 11 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 543179, + "thread": 4 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 795965, + "thread": 26 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 868303, + "thread": 13 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1000607, + "thread": 20 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1210584, + "thread": 18 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1330782, + "thread": 2 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1528889, + "thread": 10 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1722464, + "thread": 6 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 1973610, + "thread": 16 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2002376, + "thread": 4 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2286973, + "thread": 5 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2340704, + "thread": 2 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2613020, + "thread": 27 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2721470, + "thread": 22 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 2946204, + "thread": 15 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 3015600, + "thread": 18 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 3141141, + "thread": 14 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 3443150, + "thread": 27 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 3495953, + "thread": 26 + } + }, + { + "amount": "140.496042999", + "slot": { + "period": 3695408, + "thread": 20 + } + }, + { + "amount": "140.496042990", + "slot": { + "period": 3919456, + "thread": 17 + } + } + ], + "AU12NPa3WKYUKJkZCKkt7m3v2MZC6W46uhxibLyntmZiLw57entrg": [ + { + "amount": "177.293215269", + "slot": { + "period": 90823, + "thread": 25 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 224180, + "thread": 25 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 346585, + "thread": 29 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 574439, + "thread": 22 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 674645, + "thread": 4 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 976190, + "thread": 0 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1119911, + "thread": 2 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1207527, + "thread": 0 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1348148, + "thread": 30 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1615057, + "thread": 30 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1795895, + "thread": 24 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 1811475, + "thread": 15 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2143658, + "thread": 8 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2151304, + "thread": 28 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2363848, + "thread": 27 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2527252, + "thread": 3 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2766831, + "thread": 0 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 2895848, + "thread": 16 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 3044652, + "thread": 27 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 3187172, + "thread": 12 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 3424681, + "thread": 4 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 3482699, + "thread": 5 + } + }, + { + "amount": "177.293215269", + "slot": { + "period": 3623614, + "thread": 2 + } + }, + { + "amount": "177.293215273", + "slot": { + "period": 3844596, + "thread": 16 + } + } + ], + "AU12NQBE181h3ytABZBZo5fVAZhkdfs5H6PXwem7RT4rZMwHWzrFT": [ + { + "amount": "263.141825767", + "slot": { + "period": 13428, + "thread": 13 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 216019, + "thread": 31 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 354177, + "thread": 17 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 580873, + "thread": 1 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 662176, + "thread": 27 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 896532, + "thread": 11 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1125459, + "thread": 14 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1245556, + "thread": 14 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1390390, + "thread": 0 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1636945, + "thread": 2 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1761535, + "thread": 19 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1920958, + "thread": 11 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 1999806, + "thread": 6 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 2172561, + "thread": 20 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 2461261, + "thread": 12 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 2492730, + "thread": 24 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 2785964, + "thread": 7 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 2898518, + "thread": 25 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 3022326, + "thread": 9 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 3206725, + "thread": 11 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 3431187, + "thread": 1 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 3612211, + "thread": 8 + } + }, + { + "amount": "263.141825767", + "slot": { + "period": 3642298, + "thread": 8 + } + }, + { + "amount": "263.141825777", + "slot": { + "period": 3870900, + "thread": 9 + } + } + ], + "AU12NQUBCQn6PkRzTeqi7CBwZeLyh8qeE896izvrkw3x7kjVSLawp": [ + { + "amount": "157.645393433", + "slot": { + "period": 68994, + "thread": 24 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 308472, + "thread": 0 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 466320, + "thread": 31 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 571629, + "thread": 14 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 798126, + "thread": 9 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 919765, + "thread": 13 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1100580, + "thread": 12 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1265861, + "thread": 31 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1401555, + "thread": 4 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1558330, + "thread": 21 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1699218, + "thread": 2 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 1939419, + "thread": 1 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2055271, + "thread": 28 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2161291, + "thread": 8 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2295668, + "thread": 5 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2562231, + "thread": 0 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2625834, + "thread": 25 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 2945593, + "thread": 31 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 3056650, + "thread": 18 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 3125013, + "thread": 12 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 3443572, + "thread": 8 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 3599928, + "thread": 30 + } + }, + { + "amount": "157.645393433", + "slot": { + "period": 3759834, + "thread": 0 + } + }, + { + "amount": "157.645393438", + "slot": { + "period": 3858335, + "thread": 12 + } + } + ], + "AU12NQnUcqXH6GLsqdUHGftM1WgMKUKn12Z9E69R9KEh6TM24dtrG": [ + { + "amount": "77.627054142", + "slot": { + "period": 98068, + "thread": 18 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 257210, + "thread": 5 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 459984, + "thread": 29 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 545785, + "thread": 0 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 711178, + "thread": 5 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 854784, + "thread": 9 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 984388, + "thread": 16 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1207690, + "thread": 31 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1458245, + "thread": 18 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1624515, + "thread": 30 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1725234, + "thread": 1 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1815869, + "thread": 13 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 1995054, + "thread": 10 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 2198631, + "thread": 13 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 2454535, + "thread": 16 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 2547257, + "thread": 29 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 2763991, + "thread": 9 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 2846920, + "thread": 14 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 3053028, + "thread": 13 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 3179195, + "thread": 27 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 3310574, + "thread": 6 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 3511458, + "thread": 2 + } + }, + { + "amount": "77.627054142", + "slot": { + "period": 3701518, + "thread": 23 + } + }, + { + "amount": "77.627054138", + "slot": { + "period": 3879337, + "thread": 14 + } + } + ], + "AU12NRVCfR9iyU3pYpGCKesL94GnLXi5HRKrfQH1Wohwr5n1PDNuH": [ + { + "amount": "141.209554872", + "slot": { + "period": 160324, + "thread": 28 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 200971, + "thread": 25 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 463447, + "thread": 20 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 608118, + "thread": 18 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 797696, + "thread": 13 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 955528, + "thread": 17 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1050672, + "thread": 31 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1213181, + "thread": 1 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1354716, + "thread": 30 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1620049, + "thread": 4 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1700010, + "thread": 6 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 1867666, + "thread": 6 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2075051, + "thread": 17 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2185007, + "thread": 18 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2434391, + "thread": 26 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2530348, + "thread": 27 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2653947, + "thread": 16 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 2870381, + "thread": 22 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 3088019, + "thread": 20 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 3209532, + "thread": 1 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 3424371, + "thread": 9 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 3566434, + "thread": 23 + } + }, + { + "amount": "141.209554872", + "slot": { + "period": 3640366, + "thread": 20 + } + }, + { + "amount": "141.209554882", + "slot": { + "period": 3856052, + "thread": 29 + } + } + ], + "AU12NRVdZz2Q3iZ9CRvr4ENQPDeHmF6qXb9tPBfTHESewGdBddCw7": [ + { + "amount": "455.444270795", + "slot": { + "period": 166957, + "thread": 15 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 172649, + "thread": 14 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 389474, + "thread": 12 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 602013, + "thread": 27 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 731581, + "thread": 13 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 968930, + "thread": 22 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1061224, + "thread": 25 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1198736, + "thread": 12 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1330857, + "thread": 13 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1643380, + "thread": 31 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1730263, + "thread": 31 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 1854518, + "thread": 22 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2112641, + "thread": 31 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2157579, + "thread": 2 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2410325, + "thread": 0 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2572750, + "thread": 31 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2755333, + "thread": 21 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 2935901, + "thread": 27 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 3016354, + "thread": 19 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 3221343, + "thread": 11 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 3320929, + "thread": 9 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 3529422, + "thread": 25 + } + }, + { + "amount": "455.444270795", + "slot": { + "period": 3719656, + "thread": 24 + } + }, + { + "amount": "455.444270801", + "slot": { + "period": 3865382, + "thread": 20 + } + } + ], + "AU12NT5GSeo9HLW6D5sUpX4s4WGQ3U77UGqKTmrn5gsbSZVRHZLn2": [ + { + "amount": "174.253748367", + "slot": { + "period": 102717, + "thread": 9 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 305856, + "thread": 13 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 451886, + "thread": 22 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 530734, + "thread": 29 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 819639, + "thread": 16 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 827116, + "thread": 9 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1119376, + "thread": 17 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1280009, + "thread": 13 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1383643, + "thread": 23 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1636939, + "thread": 27 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1797582, + "thread": 17 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 1875005, + "thread": 2 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2117460, + "thread": 29 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2147836, + "thread": 14 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2370766, + "thread": 27 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2499765, + "thread": 31 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2645352, + "thread": 7 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 2798578, + "thread": 0 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 3026145, + "thread": 22 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 3183923, + "thread": 19 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 3417948, + "thread": 3 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 3562251, + "thread": 5 + } + }, + { + "amount": "174.253748367", + "slot": { + "period": 3732125, + "thread": 28 + } + }, + { + "amount": "174.253748377", + "slot": { + "period": 3876709, + "thread": 15 + } + } + ], + "AU12NU5vgLGX7KS7huQhGTnXHvTgcKT8hfh2pk7VeC1CAEEfGLwFm": [ + { + "amount": "153.644047991", + "slot": { + "period": 116101, + "thread": 3 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 176498, + "thread": 30 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 388876, + "thread": 25 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 626802, + "thread": 22 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 771964, + "thread": 14 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 876613, + "thread": 26 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1102781, + "thread": 0 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1181077, + "thread": 1 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1469033, + "thread": 14 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1627173, + "thread": 29 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1741376, + "thread": 7 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 1961409, + "thread": 5 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2096451, + "thread": 26 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2251407, + "thread": 8 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2333718, + "thread": 15 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2591760, + "thread": 15 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2715640, + "thread": 12 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 2904718, + "thread": 1 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 3120478, + "thread": 28 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 3214320, + "thread": 6 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 3292188, + "thread": 10 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 3558907, + "thread": 5 + } + }, + { + "amount": "153.644047991", + "slot": { + "period": 3734812, + "thread": 6 + } + }, + { + "amount": "153.644048000", + "slot": { + "period": 3818672, + "thread": 13 + } + } + ], + "AU12NUyDMAEA9Wrgz3RnfLZE5Gx6ce156o2CGzmTxYvLaKNzzd2PG": [ + { + "amount": "92.709766764", + "slot": { + "period": 130593, + "thread": 5 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 215687, + "thread": 20 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 454123, + "thread": 21 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 513693, + "thread": 29 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 666515, + "thread": 25 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 978012, + "thread": 19 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1069018, + "thread": 27 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1294505, + "thread": 23 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1342508, + "thread": 10 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1493068, + "thread": 23 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1679715, + "thread": 30 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 1830063, + "thread": 9 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2136689, + "thread": 16 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2234158, + "thread": 18 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2336287, + "thread": 8 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2515733, + "thread": 18 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2696667, + "thread": 21 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 2870787, + "thread": 11 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 3064349, + "thread": 17 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 3228991, + "thread": 13 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 3357773, + "thread": 3 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 3606118, + "thread": 1 + } + }, + { + "amount": "92.709766764", + "slot": { + "period": 3776445, + "thread": 7 + } + }, + { + "amount": "92.709766754", + "slot": { + "period": 3859922, + "thread": 9 + } + } + ], + "AU12NV5HnF73WK6HdqLfQ45946w14HtyTVxXbxRxPAiTxEBWxR6eX": [ + { + "amount": "129.304345004", + "slot": { + "period": 126198, + "thread": 29 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 201386, + "thread": 17 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 406368, + "thread": 18 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 626148, + "thread": 14 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 795376, + "thread": 15 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 851822, + "thread": 24 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1064745, + "thread": 3 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1182475, + "thread": 0 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1420694, + "thread": 8 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1553833, + "thread": 3 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1723752, + "thread": 3 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 1969314, + "thread": 29 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2104805, + "thread": 4 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2260425, + "thread": 14 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2338558, + "thread": 13 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2575396, + "thread": 13 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2791104, + "thread": 29 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 2935265, + "thread": 26 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 3029259, + "thread": 13 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 3242038, + "thread": 7 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 3444435, + "thread": 4 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 3560211, + "thread": 4 + } + }, + { + "amount": "129.304345004", + "slot": { + "period": 3751278, + "thread": 5 + } + }, + { + "amount": "129.304345009", + "slot": { + "period": 3924171, + "thread": 30 + } + } + ], + "AU12NVrG5ZzWSLrC1wweEwXaPkvwWF2KNLLucsCY56MV3wNQKxcoF": [ + { + "amount": "61.171631630", + "slot": { + "period": 92067, + "thread": 7 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 274361, + "thread": 5 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 478395, + "thread": 4 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 618626, + "thread": 25 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 657338, + "thread": 31 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 835502, + "thread": 7 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1017028, + "thread": 10 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1158427, + "thread": 17 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1367518, + "thread": 29 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1585783, + "thread": 5 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1674726, + "thread": 31 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 1943869, + "thread": 8 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2010085, + "thread": 12 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2167486, + "thread": 27 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2376552, + "thread": 4 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2607921, + "thread": 28 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2781990, + "thread": 6 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 2867053, + "thread": 17 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 3039693, + "thread": 14 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 3168693, + "thread": 15 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 3409385, + "thread": 13 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 3564179, + "thread": 0 + } + }, + { + "amount": "61.171631630", + "slot": { + "period": 3662406, + "thread": 25 + } + }, + { + "amount": "61.171631621", + "slot": { + "period": 3843140, + "thread": 17 + } + } + ], + "AU12NWKtNDs5aSFcLqwJw9jj3sBZKo6um9VFVe92SNigK31bNtdCy": [ + { + "amount": "432.859672513", + "slot": { + "period": 136861, + "thread": 13 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 290274, + "thread": 22 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 399817, + "thread": 20 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 532124, + "thread": 0 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 801714, + "thread": 0 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 876938, + "thread": 19 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1041490, + "thread": 20 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1301913, + "thread": 10 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1429012, + "thread": 26 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1598320, + "thread": 8 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1808524, + "thread": 21 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 1964118, + "thread": 3 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2076056, + "thread": 9 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2182148, + "thread": 8 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2343817, + "thread": 12 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2562497, + "thread": 31 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2709919, + "thread": 21 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2819363, + "thread": 9 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 2992041, + "thread": 30 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 3249613, + "thread": 1 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 3447967, + "thread": 9 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 3451361, + "thread": 5 + } + }, + { + "amount": "432.859672513", + "slot": { + "period": 3680223, + "thread": 27 + } + }, + { + "amount": "432.859672509", + "slot": { + "period": 3894882, + "thread": 14 + } + } + ], + "AU12NYWafK8yYskSqfcGoo6W87VBL9uUPsrWqyCKWFSXfpKSUuyjS": [ + { + "amount": "267.657101129", + "slot": { + "period": 83710, + "thread": 1 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 209519, + "thread": 22 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 476766, + "thread": 7 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 635132, + "thread": 9 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 716953, + "thread": 29 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 981691, + "thread": 18 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1094336, + "thread": 4 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1188116, + "thread": 10 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1392126, + "thread": 22 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1571462, + "thread": 3 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1769087, + "thread": 11 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 1820991, + "thread": 6 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2030463, + "thread": 14 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2221738, + "thread": 16 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2354153, + "thread": 12 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2496984, + "thread": 11 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2635669, + "thread": 28 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 2829237, + "thread": 2 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3057237, + "thread": 23 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3263726, + "thread": 16 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3434841, + "thread": 31 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3499683, + "thread": 4 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3742356, + "thread": 12 + } + }, + { + "amount": "267.657101129", + "slot": { + "period": 3811846, + "thread": 12 + } + } + ], + "AU12NZ5KXuN2MK5fMpJpzmarCTdwYjB7yoS2j3myJSzZQQfsMd2SD": [ + { + "amount": "201.435162564", + "slot": { + "period": 20257, + "thread": 15 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 175127, + "thread": 21 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 448804, + "thread": 23 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 535244, + "thread": 13 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 806047, + "thread": 16 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 963399, + "thread": 19 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 990494, + "thread": 17 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 1298523, + "thread": 8 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 1444165, + "thread": 22 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 1544570, + "thread": 24 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 1776079, + "thread": 3 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 1967963, + "thread": 17 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2030643, + "thread": 15 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2221914, + "thread": 23 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2381552, + "thread": 13 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2583409, + "thread": 21 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2778783, + "thread": 24 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2825045, + "thread": 8 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 2971623, + "thread": 18 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 3222220, + "thread": 3 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 3431622, + "thread": 10 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 3467101, + "thread": 15 + } + }, + { + "amount": "201.435162564", + "slot": { + "period": 3728093, + "thread": 4 + } + }, + { + "amount": "201.435162563", + "slot": { + "period": 3825297, + "thread": 17 + } + } + ], + "AU12NaKpZckVPEtgJrbq2Fj9YZbLQEgRTCcGouRrbBEmXf4eYj42C": [ + { + "amount": "66.094545925", + "slot": { + "period": 17974, + "thread": 25 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 171675, + "thread": 25 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 348784, + "thread": 15 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 560953, + "thread": 9 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 778780, + "thread": 24 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 835625, + "thread": 17 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1086920, + "thread": 29 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1178258, + "thread": 3 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1346150, + "thread": 11 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1492582, + "thread": 19 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1747758, + "thread": 7 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 1818859, + "thread": 5 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2021296, + "thread": 21 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2265060, + "thread": 21 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2433182, + "thread": 27 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2560898, + "thread": 5 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2721558, + "thread": 9 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2838821, + "thread": 9 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 2967356, + "thread": 22 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 3249775, + "thread": 1 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 3424549, + "thread": 0 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 3500574, + "thread": 21 + } + }, + { + "amount": "66.094545925", + "slot": { + "period": 3756150, + "thread": 29 + } + }, + { + "amount": "66.094545923", + "slot": { + "period": 3943064, + "thread": 17 + } + } + ], + "AU12NakpfunypCZv1GtTSTKBB9SoCzeqz6mgVFf1nhEaJNSF49Nc7": [ + { + "amount": "211.951710593", + "slot": { + "period": 117829, + "thread": 21 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 292359, + "thread": 26 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 389532, + "thread": 13 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 541430, + "thread": 30 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 686538, + "thread": 22 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 823505, + "thread": 27 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1101658, + "thread": 28 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1165411, + "thread": 1 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1320875, + "thread": 17 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1564416, + "thread": 17 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1734594, + "thread": 16 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 1911144, + "thread": 7 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2003325, + "thread": 11 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2294527, + "thread": 31 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2300932, + "thread": 19 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2545946, + "thread": 31 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2758812, + "thread": 31 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 2830768, + "thread": 1 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 3060157, + "thread": 31 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 3169183, + "thread": 9 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 3291907, + "thread": 17 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 3518209, + "thread": 13 + } + }, + { + "amount": "211.951710593", + "slot": { + "period": 3659719, + "thread": 25 + } + }, + { + "amount": "211.951710601", + "slot": { + "period": 3932279, + "thread": 16 + } + } + ], + "AU12NcnmAt4L6gVHVpGaFBKujL3ZCq6SbryaU1YQrtx6w4EQXih8g": [ + { + "amount": "355.388494159", + "slot": { + "period": 55932, + "thread": 29 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 262888, + "thread": 6 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 343986, + "thread": 13 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 528836, + "thread": 26 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 764752, + "thread": 28 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 834198, + "thread": 7 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1049588, + "thread": 29 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1223444, + "thread": 12 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1443021, + "thread": 20 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1603302, + "thread": 20 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1733512, + "thread": 26 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 1892116, + "thread": 17 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2003264, + "thread": 12 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2210663, + "thread": 18 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2344228, + "thread": 30 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2573148, + "thread": 30 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2732712, + "thread": 8 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 2843866, + "thread": 7 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 3009587, + "thread": 29 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 3156882, + "thread": 31 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 3445481, + "thread": 5 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 3463914, + "thread": 1 + } + }, + { + "amount": "355.388494159", + "slot": { + "period": 3641849, + "thread": 24 + } + }, + { + "amount": "355.388494151", + "slot": { + "period": 3935111, + "thread": 20 + } + } + ], + "AU12NdN8mTyRY9ecfPS2PZDfCx6EuMjVjoEY4J2gVynQUFkqMCJbv": [ + { + "amount": "199.157119841", + "slot": { + "period": 59550, + "thread": 3 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 174722, + "thread": 3 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 355266, + "thread": 29 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 530598, + "thread": 24 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 677975, + "thread": 24 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 880214, + "thread": 20 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1143641, + "thread": 7 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1185569, + "thread": 30 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1413838, + "thread": 11 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1562834, + "thread": 10 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1651839, + "thread": 6 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 1866699, + "thread": 27 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2142686, + "thread": 5 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2176119, + "thread": 1 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2318682, + "thread": 25 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2601236, + "thread": 26 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2690692, + "thread": 22 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 2847523, + "thread": 29 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 3084232, + "thread": 16 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 3157158, + "thread": 27 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 3425653, + "thread": 0 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 3494954, + "thread": 4 + } + }, + { + "amount": "199.157119841", + "slot": { + "period": 3737945, + "thread": 31 + } + }, + { + "amount": "199.157119848", + "slot": { + "period": 3834026, + "thread": 26 + } + } + ], + "AU12NdaSNHfNPNL69R77QzYwMzXzRhUSLtdLKUW3J7kScZGT3TpYd": [ + { + "amount": "317.942043392", + "slot": { + "period": 98530, + "thread": 17 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 187680, + "thread": 0 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 456030, + "thread": 6 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 589445, + "thread": 13 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 734392, + "thread": 6 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 979038, + "thread": 5 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1035094, + "thread": 27 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1165504, + "thread": 6 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1472393, + "thread": 31 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1612147, + "thread": 20 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1768100, + "thread": 23 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 1875746, + "thread": 25 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2066653, + "thread": 28 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2174827, + "thread": 23 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2297103, + "thread": 29 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2614019, + "thread": 29 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2764321, + "thread": 17 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 2858747, + "thread": 20 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 3041291, + "thread": 16 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 3168833, + "thread": 14 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 3394147, + "thread": 8 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 3452644, + "thread": 6 + } + }, + { + "amount": "317.942043392", + "slot": { + "period": 3769579, + "thread": 8 + } + }, + { + "amount": "317.942043403", + "slot": { + "period": 3849155, + "thread": 28 + } + } + ], + "AU12NeSJ9gpvmLYbo56iKDhGnomitiarfCCzbzKmAJGa3u4w3aCbD": [ + { + "amount": "112.846033003", + "slot": { + "period": 88074, + "thread": 20 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 195719, + "thread": 25 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 334071, + "thread": 20 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 562200, + "thread": 23 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 785313, + "thread": 17 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 925147, + "thread": 3 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1027901, + "thread": 10 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1289896, + "thread": 26 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1468419, + "thread": 1 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1546727, + "thread": 22 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1734289, + "thread": 10 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 1845306, + "thread": 1 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2112695, + "thread": 6 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2259827, + "thread": 29 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2344282, + "thread": 11 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2473217, + "thread": 17 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2674398, + "thread": 17 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 2836393, + "thread": 30 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 3000565, + "thread": 30 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 3213985, + "thread": 15 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 3422188, + "thread": 15 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 3579840, + "thread": 6 + } + }, + { + "amount": "112.846033003", + "slot": { + "period": 3733571, + "thread": 16 + } + }, + { + "amount": "112.846032998", + "slot": { + "period": 3822297, + "thread": 20 + } + } + ], + "AU12NfdBkJZMxQy8LmPfs6JTZL1ZZhanmz5jA4rw7VzatsE11gMPY": [ + { + "amount": "316.101636567", + "slot": { + "period": 38504, + "thread": 26 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 184101, + "thread": 28 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 365782, + "thread": 30 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 585748, + "thread": 19 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 801938, + "thread": 28 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 889880, + "thread": 2 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1143554, + "thread": 8 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1188419, + "thread": 7 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1427547, + "thread": 7 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1481648, + "thread": 18 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1795932, + "thread": 8 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 1832477, + "thread": 18 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2014130, + "thread": 19 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2269372, + "thread": 21 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2450481, + "thread": 16 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2593603, + "thread": 21 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2640112, + "thread": 25 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2838031, + "thread": 28 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 2977337, + "thread": 19 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 3263891, + "thread": 30 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 3387718, + "thread": 12 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 3517853, + "thread": 26 + } + }, + { + "amount": "316.101636567", + "slot": { + "period": 3756259, + "thread": 30 + } + }, + { + "amount": "316.101636578", + "slot": { + "period": 3833565, + "thread": 29 + } + } + ], + "AU12Ng6ZTwMxnDjp8xpYSntxzeSCuw21tJzb2MNcWHwwUUG1fuuZc": [ + { + "amount": "431.987531455", + "slot": { + "period": 95842, + "thread": 13 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 323068, + "thread": 21 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 353901, + "thread": 7 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 542252, + "thread": 15 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 688354, + "thread": 23 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 885706, + "thread": 14 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1098385, + "thread": 14 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1180236, + "thread": 7 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1338856, + "thread": 30 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1607298, + "thread": 27 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1745542, + "thread": 8 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 1819474, + "thread": 26 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2093261, + "thread": 19 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2263313, + "thread": 21 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2342778, + "thread": 3 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2577484, + "thread": 14 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2776945, + "thread": 13 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 2921193, + "thread": 24 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 3083503, + "thread": 3 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 3163673, + "thread": 9 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 3417900, + "thread": 22 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 3501936, + "thread": 12 + } + }, + { + "amount": "431.987531455", + "slot": { + "period": 3743316, + "thread": 21 + } + }, + { + "amount": "431.987531457", + "slot": { + "period": 3855175, + "thread": 13 + } + } + ], + "AU12NhhbADdb8eV17v9saxuRetuWe54PbHh7CPmgwgjrJrbmrcnYK": [ + { + "amount": "121.709426586", + "slot": { + "period": 71175, + "thread": 23 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 253131, + "thread": 20 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 378632, + "thread": 24 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 551268, + "thread": 1 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 789542, + "thread": 22 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 821930, + "thread": 23 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1129085, + "thread": 30 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1224707, + "thread": 12 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1343571, + "thread": 29 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1525869, + "thread": 6 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1743697, + "thread": 0 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 1823556, + "thread": 0 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2085492, + "thread": 8 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2164372, + "thread": 5 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2337547, + "thread": 18 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2609544, + "thread": 28 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2684294, + "thread": 3 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 2886519, + "thread": 2 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 3067380, + "thread": 23 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 3280009, + "thread": 11 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 3407776, + "thread": 25 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 3560526, + "thread": 19 + } + }, + { + "amount": "121.709426586", + "slot": { + "period": 3688188, + "thread": 18 + } + }, + { + "amount": "121.709426591", + "slot": { + "period": 3860535, + "thread": 20 + } + } + ], + "AU12Nhus5jyVue6zdwDmoZFUsG1TwVXLMQ9MFRdX4JtAWZ7XCgwZ8": [ + { + "amount": "308.540195487", + "slot": { + "period": 105966, + "thread": 16 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 277802, + "thread": 6 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 344171, + "thread": 5 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 520964, + "thread": 0 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 703042, + "thread": 31 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 976021, + "thread": 27 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1066605, + "thread": 6 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1287826, + "thread": 31 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1333055, + "thread": 12 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1557197, + "thread": 0 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1768525, + "thread": 21 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 1922286, + "thread": 10 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2048510, + "thread": 9 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2187333, + "thread": 25 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2317363, + "thread": 10 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2463684, + "thread": 5 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2727563, + "thread": 4 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 2929938, + "thread": 24 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 3004551, + "thread": 1 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 3271579, + "thread": 0 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 3425494, + "thread": 25 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 3610889, + "thread": 11 + } + }, + { + "amount": "308.540195487", + "slot": { + "period": 3707631, + "thread": 20 + } + }, + { + "amount": "308.540195482", + "slot": { + "period": 3805959, + "thread": 12 + } + } + ], + "AU12NkeJyfL88mWKfRyPG23tG2SzrWxvepj5v7kUnBuZXfQVJoJtt": [ + { + "amount": "415.758672603", + "slot": { + "period": 149027, + "thread": 12 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 276725, + "thread": 11 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 445037, + "thread": 29 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 573165, + "thread": 4 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 783055, + "thread": 29 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 872863, + "thread": 26 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1081122, + "thread": 17 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1263498, + "thread": 30 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1353431, + "thread": 5 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1568604, + "thread": 18 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1702527, + "thread": 25 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 1935088, + "thread": 4 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2005360, + "thread": 0 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2211013, + "thread": 23 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2459749, + "thread": 2 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2481120, + "thread": 1 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2727945, + "thread": 13 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 2927016, + "thread": 5 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 3021847, + "thread": 3 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 3131641, + "thread": 27 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 3304972, + "thread": 27 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 3551944, + "thread": 21 + } + }, + { + "amount": "415.758672603", + "slot": { + "period": 3696050, + "thread": 0 + } + }, + { + "amount": "415.758672609", + "slot": { + "period": 3884131, + "thread": 30 + } + } + ], + "AU12NkokwjGvrkDT9R6qaPCwmwKTByG6ZnmaEbhfCkkc2Wv1ULaJW": [ + { + "amount": "113.280961560", + "slot": { + "period": 145406, + "thread": 26 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 258741, + "thread": 19 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 428233, + "thread": 3 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 500908, + "thread": 11 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 712563, + "thread": 22 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 902335, + "thread": 8 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1087911, + "thread": 15 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1259580, + "thread": 2 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1331388, + "thread": 28 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1495178, + "thread": 22 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1695913, + "thread": 8 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 1936193, + "thread": 6 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2112243, + "thread": 18 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2213784, + "thread": 20 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2442705, + "thread": 18 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2505676, + "thread": 28 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2723652, + "thread": 12 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2840292, + "thread": 10 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 2978234, + "thread": 30 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 3286700, + "thread": 11 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 3405555, + "thread": 14 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 3552043, + "thread": 8 + } + }, + { + "amount": "113.280961560", + "slot": { + "period": 3748463, + "thread": 26 + } + }, + { + "amount": "113.280961568", + "slot": { + "period": 3889941, + "thread": 11 + } + } + ], + "AU12NnwQLeKQV5ATS1UESNnydNobF3MzSLqio8GdsF3wFaJFeHL2r": [ + { + "amount": "85.458298275", + "slot": { + "period": 54660, + "thread": 19 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 236139, + "thread": 5 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 400107, + "thread": 27 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 528309, + "thread": 8 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 757097, + "thread": 15 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 877867, + "thread": 26 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1000634, + "thread": 26 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1286191, + "thread": 1 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1322007, + "thread": 29 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1557653, + "thread": 1 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1709834, + "thread": 8 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 1963638, + "thread": 7 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2088860, + "thread": 2 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2254317, + "thread": 21 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2444853, + "thread": 18 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2523746, + "thread": 26 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2751855, + "thread": 6 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 2886636, + "thread": 24 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 3060486, + "thread": 18 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 3147228, + "thread": 27 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 3445372, + "thread": 11 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 3591802, + "thread": 28 + } + }, + { + "amount": "85.458298275", + "slot": { + "period": 3683183, + "thread": 22 + } + }, + { + "amount": "85.458298285", + "slot": { + "period": 3838170, + "thread": 18 + } + } + ], + "AU12No73CRLCg5fFFbwpKejqD626WxEtvcH35qfRcKNLn48THsFgc": [ + { + "amount": "432.436914646", + "slot": { + "period": 21439, + "thread": 3 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 210938, + "thread": 5 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 442259, + "thread": 5 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 562940, + "thread": 5 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 670798, + "thread": 28 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 895803, + "thread": 2 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1096722, + "thread": 24 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1153024, + "thread": 8 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1445046, + "thread": 16 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1522996, + "thread": 5 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1729813, + "thread": 20 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 1926944, + "thread": 11 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2140096, + "thread": 15 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2252221, + "thread": 31 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2401970, + "thread": 3 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2483524, + "thread": 24 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2753553, + "thread": 8 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 2819225, + "thread": 26 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 3113886, + "thread": 2 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 3241664, + "thread": 26 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 3291111, + "thread": 26 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 3452718, + "thread": 0 + } + }, + { + "amount": "432.436914646", + "slot": { + "period": 3679866, + "thread": 31 + } + }, + { + "amount": "432.436914648", + "slot": { + "period": 3866276, + "thread": 9 + } + } + ], + "AU12NoKhB3EdZvQAcAjK8uR3KMUU7C9m8L8bMNZMUSokQ1WXbxy8s": [ + { + "amount": "143.881107303", + "slot": { + "period": 64684, + "thread": 9 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 241215, + "thread": 15 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 343592, + "thread": 24 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 631053, + "thread": 9 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 775790, + "thread": 10 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 952454, + "thread": 27 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1054340, + "thread": 30 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1303213, + "thread": 30 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1436196, + "thread": 22 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1641958, + "thread": 25 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1650566, + "thread": 10 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 1940831, + "thread": 1 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2097394, + "thread": 22 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2186307, + "thread": 20 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2333770, + "thread": 17 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2546428, + "thread": 25 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2662035, + "thread": 25 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 2855974, + "thread": 23 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 3014313, + "thread": 27 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 3139025, + "thread": 15 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 3356850, + "thread": 30 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 3495136, + "thread": 24 + } + }, + { + "amount": "143.881107303", + "slot": { + "period": 3743730, + "thread": 23 + } + }, + { + "amount": "143.881107312", + "slot": { + "period": 3817729, + "thread": 11 + } + } + ], + "AU12Np2oWLZC5LwCqNGHC9L3snRukiZM6ERvpcJHo5ayXRu9UGmD2": [ + { + "amount": "70.273686135", + "slot": { + "period": 160297, + "thread": 31 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 271938, + "thread": 8 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 447683, + "thread": 3 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 599088, + "thread": 8 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 796550, + "thread": 5 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 959066, + "thread": 22 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1114215, + "thread": 19 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1277002, + "thread": 0 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1390674, + "thread": 5 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1613505, + "thread": 10 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1730274, + "thread": 19 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1898997, + "thread": 11 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 1990852, + "thread": 5 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2285973, + "thread": 29 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2364851, + "thread": 12 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2549072, + "thread": 10 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2654437, + "thread": 31 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2828416, + "thread": 26 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 2990984, + "thread": 14 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 3131542, + "thread": 6 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 3373882, + "thread": 24 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 3570426, + "thread": 12 + } + }, + { + "amount": "70.273686135", + "slot": { + "period": 3713724, + "thread": 21 + } + }, + { + "amount": "70.273686146", + "slot": { + "period": 3859283, + "thread": 14 + } + } + ], + "AU12Nq45Ni9jigK2YJ2FDtUHpzL3mcQjA5LEJhZacG6B5Aoejrpu5": [ + { + "amount": "122.559658233", + "slot": { + "period": 66055, + "thread": 21 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 295143, + "thread": 24 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 395633, + "thread": 31 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 506006, + "thread": 10 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 700912, + "thread": 26 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 964784, + "thread": 17 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1025271, + "thread": 1 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1254947, + "thread": 29 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1469499, + "thread": 26 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1547621, + "thread": 13 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1707957, + "thread": 2 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 1898473, + "thread": 15 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2064613, + "thread": 1 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2186246, + "thread": 13 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2448086, + "thread": 21 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2613428, + "thread": 6 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2667956, + "thread": 26 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 2856199, + "thread": 15 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3017779, + "thread": 24 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3224731, + "thread": 30 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3288775, + "thread": 29 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3519319, + "thread": 18 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3722321, + "thread": 8 + } + }, + { + "amount": "122.559658233", + "slot": { + "period": 3854992, + "thread": 16 + } + } + ], + "AU12NrQAi8a1sUrLdQD5hATGhRHsFqfAheoMQSFqCMTF8zkFsSMr1": [ + { + "amount": "149.078468535", + "slot": { + "period": 116423, + "thread": 12 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 301770, + "thread": 18 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 359006, + "thread": 22 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 508473, + "thread": 5 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 802624, + "thread": 30 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 834848, + "thread": 7 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 997908, + "thread": 3 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 1230477, + "thread": 27 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 1364191, + "thread": 13 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 1581915, + "thread": 24 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 1725381, + "thread": 23 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 1968367, + "thread": 1 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2117231, + "thread": 16 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2186776, + "thread": 29 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2391723, + "thread": 3 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2610063, + "thread": 17 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2706900, + "thread": 7 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 2801686, + "thread": 28 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 3033659, + "thread": 4 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 3151205, + "thread": 28 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 3335026, + "thread": 11 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 3544967, + "thread": 17 + } + }, + { + "amount": "149.078468535", + "slot": { + "period": 3639463, + "thread": 3 + } + }, + { + "amount": "149.078468530", + "slot": { + "period": 3860586, + "thread": 14 + } + } + ], + "AU12NrSeNZpg9PHQ5zwbYd7qGdVPcyFwM5VuX2n9ufqjy6T33oCrk": [ + { + "amount": "72.373833257", + "slot": { + "period": 125638, + "thread": 10 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 232129, + "thread": 28 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 396868, + "thread": 14 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 567937, + "thread": 6 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 685608, + "thread": 5 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 953815, + "thread": 23 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1123457, + "thread": 20 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1198350, + "thread": 10 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1439159, + "thread": 6 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1505227, + "thread": 23 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1788354, + "thread": 5 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1974856, + "thread": 18 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 1984523, + "thread": 4 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2169971, + "thread": 15 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2373033, + "thread": 20 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2558043, + "thread": 30 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2693196, + "thread": 6 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2882570, + "thread": 11 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 2979188, + "thread": 20 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 3172865, + "thread": 6 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 3445928, + "thread": 6 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 3571850, + "thread": 1 + } + }, + { + "amount": "72.373833257", + "slot": { + "period": 3671862, + "thread": 11 + } + }, + { + "amount": "72.373833255", + "slot": { + "period": 3843614, + "thread": 30 + } + } + ], + "AU12NrsrvTMwJCX1WMY6qJVa1jfePguzZDxD6xBc5HLdbjKDsDkTW": [ + { + "amount": "5970.416666667", + "slot": { + "period": 50415, + "thread": 0 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 305544, + "thread": 17 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 408176, + "thread": 31 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 554281, + "thread": 30 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 768081, + "thread": 29 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 822278, + "thread": 19 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1040381, + "thread": 24 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1227323, + "thread": 30 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1383357, + "thread": 12 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1602194, + "thread": 6 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1772973, + "thread": 26 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 1915990, + "thread": 29 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2143797, + "thread": 21 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2154471, + "thread": 5 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2428871, + "thread": 3 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2575960, + "thread": 24 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2686721, + "thread": 18 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 2927229, + "thread": 22 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3066836, + "thread": 15 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3188475, + "thread": 2 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3424537, + "thread": 12 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3473273, + "thread": 15 + } + }, + { + "amount": "5970.416666667", + "slot": { + "period": 3730301, + "thread": 16 + } + }, + { + "amount": "5970.416666659", + "slot": { + "period": 3790902, + "thread": 3 + } + } + ], + "AU12NtQua2vsEYEHCAX8H5Np1D2bTEECDczV4tQWru4bkbBehKMJu": [ + { + "amount": "310.735348255", + "slot": { + "period": 24781, + "thread": 22 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 171631, + "thread": 28 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 489238, + "thread": 7 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 599610, + "thread": 31 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 760792, + "thread": 31 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 922709, + "thread": 25 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1003149, + "thread": 15 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1230898, + "thread": 27 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1404577, + "thread": 19 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1527899, + "thread": 20 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1721982, + "thread": 24 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 1865159, + "thread": 31 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2102053, + "thread": 5 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2257877, + "thread": 10 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2371028, + "thread": 23 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2563834, + "thread": 17 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2782989, + "thread": 1 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2825188, + "thread": 27 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 2957782, + "thread": 30 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 3217135, + "thread": 30 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 3305147, + "thread": 29 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 3489114, + "thread": 27 + } + }, + { + "amount": "310.735348255", + "slot": { + "period": 3732659, + "thread": 11 + } + }, + { + "amount": "310.735348244", + "slot": { + "period": 3919687, + "thread": 21 + } + } + ], + "AU12NtXwDJpFam397pnidbTGFTjJRowS61g3QAwL7TLFWca2RyqjN": [ + { + "amount": "83.584727886", + "slot": { + "period": 157022, + "thread": 12 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 232091, + "thread": 13 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 482887, + "thread": 14 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 537996, + "thread": 16 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 708433, + "thread": 17 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 891694, + "thread": 8 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1113785, + "thread": 26 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1183774, + "thread": 0 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1413823, + "thread": 14 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1509812, + "thread": 26 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1807531, + "thread": 0 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 1861808, + "thread": 4 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2015875, + "thread": 29 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2291691, + "thread": 25 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2439146, + "thread": 16 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2497105, + "thread": 18 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2781739, + "thread": 14 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 2873789, + "thread": 28 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 3110241, + "thread": 7 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 3193520, + "thread": 24 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 3334151, + "thread": 0 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 3532795, + "thread": 15 + } + }, + { + "amount": "83.584727886", + "slot": { + "period": 3628082, + "thread": 21 + } + }, + { + "amount": "83.584727893", + "slot": { + "period": 3840056, + "thread": 13 + } + } + ], + "AU12NwDsfUNJ3eXo7mbSAj4tyEc8S3NYSUftk3x6Vspy4J4EoF2VR": [ + { + "amount": "86.224687708", + "slot": { + "period": 160372, + "thread": 3 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 285626, + "thread": 4 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 375539, + "thread": 19 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 642706, + "thread": 31 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 797006, + "thread": 14 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 842707, + "thread": 9 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1030845, + "thread": 14 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1160914, + "thread": 15 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1361707, + "thread": 6 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1646570, + "thread": 26 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1791238, + "thread": 23 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 1898376, + "thread": 29 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2080198, + "thread": 6 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2219195, + "thread": 19 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2413160, + "thread": 5 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2491949, + "thread": 20 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2648186, + "thread": 30 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2801311, + "thread": 26 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 2990037, + "thread": 11 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 3227722, + "thread": 27 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 3362812, + "thread": 10 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 3617766, + "thread": 27 + } + }, + { + "amount": "86.224687708", + "slot": { + "period": 3676500, + "thread": 4 + } + }, + { + "amount": "86.224687699", + "slot": { + "period": 3814164, + "thread": 19 + } + } + ], + "AU12NwUsyghYjus6Necgq1J9QQsPG3uGrh45etuiiV18HsfB6G1Kb": [ + { + "amount": "319.801245025", + "slot": { + "period": 128069, + "thread": 17 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 206026, + "thread": 20 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 392506, + "thread": 22 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 503675, + "thread": 24 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 673027, + "thread": 7 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 856046, + "thread": 11 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1067468, + "thread": 10 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1207197, + "thread": 9 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1443967, + "thread": 19 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1536981, + "thread": 31 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1657811, + "thread": 4 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 1822457, + "thread": 28 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2059661, + "thread": 24 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2181681, + "thread": 9 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2351270, + "thread": 10 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2623259, + "thread": 12 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2705090, + "thread": 19 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 2910982, + "thread": 2 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 3008119, + "thread": 27 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 3180229, + "thread": 14 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 3380006, + "thread": 13 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 3590663, + "thread": 10 + } + }, + { + "amount": "319.801245025", + "slot": { + "period": 3665448, + "thread": 10 + } + }, + { + "amount": "319.801245020", + "slot": { + "period": 3831733, + "thread": 28 + } + } + ], + "AU12NwitqiFzPymaN6GuPmKm7mzLKKNNvZ4W8qsXecpWywLEqWTVr": [ + { + "amount": "190.844936485", + "slot": { + "period": 98867, + "thread": 5 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 286162, + "thread": 15 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 344783, + "thread": 24 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 539084, + "thread": 2 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 757736, + "thread": 28 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 922410, + "thread": 10 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1070742, + "thread": 28 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1298938, + "thread": 13 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1346172, + "thread": 28 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1530773, + "thread": 10 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1756921, + "thread": 0 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 1843539, + "thread": 28 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2108043, + "thread": 4 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2181820, + "thread": 22 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2295321, + "thread": 29 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2582204, + "thread": 17 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2662193, + "thread": 26 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2886514, + "thread": 20 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 2985689, + "thread": 17 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 3135877, + "thread": 3 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 3402829, + "thread": 8 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 3564558, + "thread": 12 + } + }, + { + "amount": "190.844936485", + "slot": { + "period": 3735227, + "thread": 26 + } + }, + { + "amount": "190.844936484", + "slot": { + "period": 3897806, + "thread": 25 + } + } + ], + "AU12NxVnY9dAPh6jzTrgSVbCGojNBGzdgaYF9GwG4jUVTyPBabNys": [ + { + "amount": "260.448550673", + "slot": { + "period": 123366, + "thread": 10 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 171516, + "thread": 9 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 471652, + "thread": 31 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 504287, + "thread": 26 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 686544, + "thread": 24 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 946407, + "thread": 13 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1125326, + "thread": 13 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1272731, + "thread": 20 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1332224, + "thread": 29 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1503902, + "thread": 5 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1666903, + "thread": 7 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1952252, + "thread": 28 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 1978519, + "thread": 12 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 2152840, + "thread": 18 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 2427508, + "thread": 23 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 2520397, + "thread": 20 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 2722884, + "thread": 2 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 2794195, + "thread": 29 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 3052342, + "thread": 30 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 3204378, + "thread": 4 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 3341838, + "thread": 1 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 3544984, + "thread": 18 + } + }, + { + "amount": "260.448550673", + "slot": { + "period": 3746857, + "thread": 12 + } + }, + { + "amount": "260.448550668", + "slot": { + "period": 3816784, + "thread": 3 + } + } + ], + "AU12NyGdKf5sW7zoKduYk9UyuN4mGXeEcquVY41ZkD3CqDMPADG8": [ + { + "amount": "330.607428567", + "slot": { + "period": 44257, + "thread": 3 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 235030, + "thread": 24 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 408286, + "thread": 15 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 521807, + "thread": 26 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 761063, + "thread": 25 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 846781, + "thread": 17 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1056404, + "thread": 26 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1185439, + "thread": 21 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1324441, + "thread": 29 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1623152, + "thread": 13 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1743844, + "thread": 13 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 1868327, + "thread": 17 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2050694, + "thread": 23 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2246621, + "thread": 4 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2351493, + "thread": 4 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2471239, + "thread": 28 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2677481, + "thread": 29 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2833295, + "thread": 13 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 2993747, + "thread": 16 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 3234608, + "thread": 7 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 3323472, + "thread": 27 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 3531640, + "thread": 9 + } + }, + { + "amount": "330.607428567", + "slot": { + "period": 3728218, + "thread": 5 + } + }, + { + "amount": "330.607428568", + "slot": { + "period": 3900337, + "thread": 10 + } + } + ], + "AU12NykCXNocE59Dfc32hvG9edJGxTxe44txWe1NNsBQ823vBp7dW": [ + { + "amount": "101.746440271", + "slot": { + "period": 57905, + "thread": 1 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 205051, + "thread": 0 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 434305, + "thread": 7 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 571466, + "thread": 11 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 654293, + "thread": 2 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 940057, + "thread": 24 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1147907, + "thread": 14 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1182671, + "thread": 3 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1456906, + "thread": 15 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1586560, + "thread": 31 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1651793, + "thread": 31 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 1953589, + "thread": 5 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2026142, + "thread": 26 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2290098, + "thread": 31 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2425465, + "thread": 1 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2491536, + "thread": 2 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2656811, + "thread": 6 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 2915912, + "thread": 11 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 3056048, + "thread": 5 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 3182332, + "thread": 23 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 3357625, + "thread": 5 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 3471237, + "thread": 23 + } + }, + { + "amount": "101.746440271", + "slot": { + "period": 3750570, + "thread": 21 + } + }, + { + "amount": "101.746440265", + "slot": { + "period": 3866654, + "thread": 28 + } + } + ], + "AU12NysMBrWUnfsouPdLAwhPsUP1egLQ9XPXXdn7XYVMK2SdGZES3": [ + { + "amount": "10700.470022033", + "slot": { + "period": 41072, + "thread": 5 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 315550, + "thread": 2 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 342924, + "thread": 14 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 526405, + "thread": 7 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 786598, + "thread": 16 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 956676, + "thread": 30 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1130330, + "thread": 19 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1285046, + "thread": 13 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1452340, + "thread": 10 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1550400, + "thread": 12 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1728933, + "thread": 15 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 1878775, + "thread": 0 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2058046, + "thread": 30 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2213889, + "thread": 10 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2323553, + "thread": 18 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2597208, + "thread": 8 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2737248, + "thread": 9 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 2792585, + "thread": 2 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 3053467, + "thread": 0 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 3122395, + "thread": 9 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 3339650, + "thread": 29 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 3456489, + "thread": 13 + } + }, + { + "amount": "10700.470022033", + "slot": { + "period": 3633554, + "thread": 2 + } + }, + { + "amount": "10700.470022041", + "slot": { + "period": 3918681, + "thread": 19 + } + } + ], + "AU12NzRb7UtUrMXBf4x6B2APxcgjUJ4SxDnxwJgHCYqetdw2thvGW": [ + { + "amount": "164.757772293", + "slot": { + "period": 72710, + "thread": 5 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 170996, + "thread": 10 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 441533, + "thread": 5 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 570207, + "thread": 1 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 788410, + "thread": 29 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 870105, + "thread": 5 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1107706, + "thread": 24 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1161432, + "thread": 2 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1407122, + "thread": 18 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1608572, + "thread": 11 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1794452, + "thread": 31 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1906552, + "thread": 13 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 1988664, + "thread": 23 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 2228041, + "thread": 19 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 2334357, + "thread": 20 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 2504998, + "thread": 30 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 2773653, + "thread": 19 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 2882779, + "thread": 15 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 3002280, + "thread": 24 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 3239948, + "thread": 1 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 3316494, + "thread": 26 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 3524581, + "thread": 9 + } + }, + { + "amount": "164.757772293", + "slot": { + "period": 3682469, + "thread": 24 + } + }, + { + "amount": "164.757772296", + "slot": { + "period": 3920832, + "thread": 10 + } + } + ], + "AU12NzsWGfRYyn1wm9QdXCUnfiA6E89no9FZEf5Kd8G8wffem1jxZ": [ + { + "amount": "82.126616374", + "slot": { + "period": 151754, + "thread": 14 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 260963, + "thread": 11 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 393209, + "thread": 15 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 578671, + "thread": 18 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 753524, + "thread": 4 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 851549, + "thread": 1 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1057680, + "thread": 7 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1284289, + "thread": 21 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1381546, + "thread": 21 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1491324, + "thread": 2 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1681613, + "thread": 24 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1817646, + "thread": 20 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 1991625, + "thread": 10 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 2272838, + "thread": 13 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 2332001, + "thread": 26 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 2515584, + "thread": 6 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 2745468, + "thread": 22 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 2795623, + "thread": 31 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 3041048, + "thread": 25 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 3247681, + "thread": 4 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 3297561, + "thread": 13 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 3501473, + "thread": 5 + } + }, + { + "amount": "82.126616374", + "slot": { + "period": 3732466, + "thread": 17 + } + }, + { + "amount": "82.126616381", + "slot": { + "period": 3854116, + "thread": 12 + } + } + ], + "AU12P1RhGNFwv7w93qoajNmXrjFW3er9FHf8yevFchQjQva595tAC": [ + { + "amount": "312.448595612", + "slot": { + "period": 85755, + "thread": 21 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 169166, + "thread": 19 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 376503, + "thread": 29 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 630332, + "thread": 27 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 673827, + "thread": 0 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 849957, + "thread": 9 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1099986, + "thread": 24 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1306728, + "thread": 31 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1364050, + "thread": 5 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1537864, + "thread": 31 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1662666, + "thread": 13 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 1837763, + "thread": 8 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2136721, + "thread": 22 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2153999, + "thread": 12 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2357329, + "thread": 31 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2513149, + "thread": 12 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2713035, + "thread": 23 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 2922528, + "thread": 28 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 3073696, + "thread": 8 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 3268358, + "thread": 8 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 3438720, + "thread": 10 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 3590909, + "thread": 1 + } + }, + { + "amount": "312.448595612", + "slot": { + "period": 3657528, + "thread": 25 + } + }, + { + "amount": "312.448595606", + "slot": { + "period": 3915654, + "thread": 15 + } + } + ], + "AU12P1T5XVZcR3AfouBvkc7BhUEzhgonBhgZQGBxXsWZoGPFbrP9d": [ + { + "amount": "67.233831895", + "slot": { + "period": 137213, + "thread": 30 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 270267, + "thread": 13 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 421957, + "thread": 18 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 636470, + "thread": 13 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 757372, + "thread": 21 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 855354, + "thread": 12 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1092487, + "thread": 9 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1250266, + "thread": 0 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1354715, + "thread": 16 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1638595, + "thread": 16 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1688295, + "thread": 29 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 1941137, + "thread": 3 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2002585, + "thread": 26 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2184021, + "thread": 14 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2437503, + "thread": 22 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2490008, + "thread": 14 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2642180, + "thread": 5 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 2936758, + "thread": 15 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 3112904, + "thread": 1 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 3245641, + "thread": 7 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 3343514, + "thread": 27 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 3578465, + "thread": 26 + } + }, + { + "amount": "67.233831895", + "slot": { + "period": 3750710, + "thread": 4 + } + }, + { + "amount": "67.233831898", + "slot": { + "period": 3822077, + "thread": 28 + } + } + ], + "AU12P2RcxhMhLmpmqDSy1pBb7f2qsSm9735HLAzkZFfAj5X3ZroWL": [ + { + "amount": "161.566808585", + "slot": { + "period": 124828, + "thread": 24 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 236871, + "thread": 7 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 339049, + "thread": 13 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 500751, + "thread": 6 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 796627, + "thread": 15 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 929703, + "thread": 5 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1096609, + "thread": 29 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1264278, + "thread": 3 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1468093, + "thread": 28 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1623012, + "thread": 2 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1736567, + "thread": 17 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 1890501, + "thread": 29 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2002646, + "thread": 18 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2259557, + "thread": 31 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2421242, + "thread": 25 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2528812, + "thread": 11 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2752806, + "thread": 19 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 2944208, + "thread": 31 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 3022440, + "thread": 29 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 3126990, + "thread": 5 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 3388652, + "thread": 1 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 3593922, + "thread": 30 + } + }, + { + "amount": "161.566808585", + "slot": { + "period": 3681791, + "thread": 5 + } + }, + { + "amount": "161.566808592", + "slot": { + "period": 3945618, + "thread": 8 + } + } + ], + "AU12P2X7yXXju7snbJMwz2bAZMrdFXKSUqnJXHVmM1M5myVpMDLWr": [ + { + "amount": "58.894268673", + "slot": { + "period": 94943, + "thread": 7 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 292375, + "thread": 28 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 409721, + "thread": 0 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 512742, + "thread": 27 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 696413, + "thread": 14 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 898925, + "thread": 23 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1105949, + "thread": 6 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1186160, + "thread": 18 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1445198, + "thread": 29 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1576605, + "thread": 17 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1655962, + "thread": 7 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 1922152, + "thread": 17 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2075594, + "thread": 25 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2188408, + "thread": 6 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2434815, + "thread": 30 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2474199, + "thread": 18 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2635102, + "thread": 0 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 2797152, + "thread": 27 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 3024192, + "thread": 16 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 3136080, + "thread": 16 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 3417041, + "thread": 3 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 3504706, + "thread": 14 + } + }, + { + "amount": "58.894268673", + "slot": { + "period": 3623277, + "thread": 22 + } + }, + { + "amount": "58.894268668", + "slot": { + "period": 3782039, + "thread": 15 + } + } + ], + "AU12P3EQpqVE52id5YrgD8oG2VSM6Y4FxjziHDM8PoU7vXgSjq5aJ": [ + { + "amount": "528.108699040", + "slot": { + "period": 59362, + "thread": 30 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 228622, + "thread": 6 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 445124, + "thread": 22 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 586052, + "thread": 21 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 722829, + "thread": 29 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 857839, + "thread": 31 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1063847, + "thread": 18 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1218425, + "thread": 26 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1387568, + "thread": 29 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1499212, + "thread": 11 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1658892, + "thread": 11 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 1956622, + "thread": 6 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2097507, + "thread": 30 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2155936, + "thread": 18 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2419981, + "thread": 29 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2608624, + "thread": 7 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2644710, + "thread": 20 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 2918139, + "thread": 8 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 3108152, + "thread": 4 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 3197529, + "thread": 25 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 3421063, + "thread": 2 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 3505462, + "thread": 24 + } + }, + { + "amount": "528.108699040", + "slot": { + "period": 3649745, + "thread": 30 + } + }, + { + "amount": "528.108699035", + "slot": { + "period": 3781629, + "thread": 27 + } + } + ], + "AU12P3Gsa3vSqs6x8pbZcnRMehTFSsyho4KKRLcqDykwFsxSNjaDv": [ + { + "amount": "225.954957443", + "slot": { + "period": 143692, + "thread": 3 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 247390, + "thread": 0 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 490282, + "thread": 25 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 558076, + "thread": 2 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 669080, + "thread": 1 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 910325, + "thread": 20 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1004977, + "thread": 3 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1290707, + "thread": 8 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1373868, + "thread": 19 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1539049, + "thread": 11 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1686082, + "thread": 16 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 1861012, + "thread": 28 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2136693, + "thread": 6 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2278182, + "thread": 23 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2452184, + "thread": 7 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2616953, + "thread": 10 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2688390, + "thread": 12 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 2864950, + "thread": 28 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 3096063, + "thread": 23 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 3178255, + "thread": 22 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 3386346, + "thread": 21 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 3499547, + "thread": 6 + } + }, + { + "amount": "225.954957443", + "slot": { + "period": 3690993, + "thread": 9 + } + }, + { + "amount": "225.954957436", + "slot": { + "period": 3865709, + "thread": 1 + } + } + ], + "AU12P3HgWt71n8sxJKXcNMBpzYobfxi53uoELXTBDvwu9tyW9q6kJ": [ + { + "amount": "165.928223550", + "slot": { + "period": 153199, + "thread": 25 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 249176, + "thread": 29 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 408754, + "thread": 30 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 518590, + "thread": 14 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 676140, + "thread": 10 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 949568, + "thread": 9 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1066712, + "thread": 24 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1219004, + "thread": 19 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1451123, + "thread": 1 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1590604, + "thread": 21 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1773881, + "thread": 28 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 1851264, + "thread": 24 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2032085, + "thread": 1 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2217266, + "thread": 9 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2367229, + "thread": 21 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2486065, + "thread": 9 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2741944, + "thread": 8 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 2876008, + "thread": 9 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 3051115, + "thread": 17 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 3123426, + "thread": 24 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 3334105, + "thread": 30 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 3538117, + "thread": 12 + } + }, + { + "amount": "165.928223550", + "slot": { + "period": 3626614, + "thread": 11 + } + }, + { + "amount": "165.928223562", + "slot": { + "period": 3915388, + "thread": 1 + } + } + ], + "AU12P3PQTjMcow99pTQy3iQ6b4y9pA3uys3uAzpsiDV64nkfywPqj": [ + { + "amount": "283.743339204", + "slot": { + "period": 129185, + "thread": 21 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 204374, + "thread": 26 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 482472, + "thread": 9 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 636542, + "thread": 11 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 656304, + "thread": 10 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 955456, + "thread": 5 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1027487, + "thread": 14 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1247393, + "thread": 9 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1389048, + "thread": 0 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1504361, + "thread": 26 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1768646, + "thread": 22 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 1903917, + "thread": 1 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2107137, + "thread": 0 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2236698, + "thread": 8 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2353196, + "thread": 17 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2502610, + "thread": 27 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2772499, + "thread": 0 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 2937265, + "thread": 16 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 3103767, + "thread": 20 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 3179672, + "thread": 14 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 3322932, + "thread": 12 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 3509765, + "thread": 31 + } + }, + { + "amount": "283.743339204", + "slot": { + "period": 3683017, + "thread": 18 + } + }, + { + "amount": "283.743339199", + "slot": { + "period": 3869236, + "thread": 23 + } + } + ], + "AU12P64gFHpKadf7ptcAkt5yd5ekb4XXunLqZNUsRwZpCyD44yFNy": [ + { + "amount": "576.385535199", + "slot": { + "period": 127523, + "thread": 25 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 194897, + "thread": 31 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 447051, + "thread": 18 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 497617, + "thread": 23 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 668078, + "thread": 10 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 915836, + "thread": 4 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 982992, + "thread": 14 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 1302605, + "thread": 8 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 1428670, + "thread": 31 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 1533602, + "thread": 6 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 1719136, + "thread": 25 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 1905613, + "thread": 6 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2055234, + "thread": 28 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2153860, + "thread": 26 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2344915, + "thread": 27 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2539415, + "thread": 0 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2682265, + "thread": 8 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 2929905, + "thread": 18 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 3017615, + "thread": 25 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 3207001, + "thread": 0 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 3324349, + "thread": 7 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 3573429, + "thread": 2 + } + }, + { + "amount": "576.385535199", + "slot": { + "period": 3778206, + "thread": 17 + } + }, + { + "amount": "576.385535206", + "slot": { + "period": 3924166, + "thread": 19 + } + } + ], + "AU12P6bV98ZV2qJ7s51swFgfiDdsRKb6GAJ9KBijUe72EKLv7UoLD": [ + { + "amount": "85.764236733", + "slot": { + "period": 43313, + "thread": 6 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 269667, + "thread": 11 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 411528, + "thread": 19 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 525834, + "thread": 17 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 785076, + "thread": 17 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 923654, + "thread": 3 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1135757, + "thread": 27 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1186421, + "thread": 28 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1392191, + "thread": 16 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1545431, + "thread": 23 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1707117, + "thread": 11 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 1963706, + "thread": 11 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2039404, + "thread": 27 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2153032, + "thread": 4 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2461201, + "thread": 22 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2491461, + "thread": 22 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2684960, + "thread": 14 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2912981, + "thread": 22 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 2958701, + "thread": 17 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 3132929, + "thread": 24 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 3417279, + "thread": 6 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 3515943, + "thread": 25 + } + }, + { + "amount": "85.764236733", + "slot": { + "period": 3755502, + "thread": 18 + } + }, + { + "amount": "85.764236726", + "slot": { + "period": 3885439, + "thread": 3 + } + } + ], + "AU12P7U9Ubr86PH3foNXs6dQY39Kt2ppqe9KrzyyGjDhcdzgLD56N": [ + { + "amount": "511.336465836", + "slot": { + "period": 134632, + "thread": 29 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 191985, + "thread": 1 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 399180, + "thread": 0 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 546580, + "thread": 15 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 803196, + "thread": 10 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 859011, + "thread": 19 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1137850, + "thread": 20 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1207067, + "thread": 26 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1330185, + "thread": 20 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1493181, + "thread": 25 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1672182, + "thread": 20 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 1939771, + "thread": 20 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2038298, + "thread": 3 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2216483, + "thread": 9 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2358001, + "thread": 9 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2579526, + "thread": 8 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2748092, + "thread": 23 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 2839294, + "thread": 0 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 3082667, + "thread": 17 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 3127991, + "thread": 14 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 3434561, + "thread": 14 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 3511540, + "thread": 18 + } + }, + { + "amount": "511.336465836", + "slot": { + "period": 3727702, + "thread": 6 + } + }, + { + "amount": "511.336465833", + "slot": { + "period": 3939776, + "thread": 10 + } + } + ], + "AU12P7kEvgXtiHpoZmFUEcLMqr2nwigNA3iBUBxeR16X9ppVwNiqB": [ + { + "amount": "74.267807360", + "slot": { + "period": 40159, + "thread": 22 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 189180, + "thread": 13 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 377190, + "thread": 9 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 521064, + "thread": 14 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 798408, + "thread": 10 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 942722, + "thread": 4 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1049862, + "thread": 14 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1296840, + "thread": 20 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1322870, + "thread": 6 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1505755, + "thread": 6 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1736362, + "thread": 20 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 1818282, + "thread": 17 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2098494, + "thread": 18 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2191271, + "thread": 12 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2324795, + "thread": 18 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2505155, + "thread": 30 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2745236, + "thread": 23 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2881547, + "thread": 3 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 2995491, + "thread": 21 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 3136571, + "thread": 21 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 3371194, + "thread": 11 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 3517328, + "thread": 9 + } + }, + { + "amount": "74.267807360", + "slot": { + "period": 3661912, + "thread": 0 + } + }, + { + "amount": "74.267807366", + "slot": { + "period": 3830834, + "thread": 15 + } + } + ], + "AU12P7mfHAc7eMDV93AKsFfRx5urwtyem267MJaiP6DeDPhL4q6jc": [ + { + "amount": "162.345733864", + "slot": { + "period": 66544, + "thread": 11 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 220093, + "thread": 4 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 421664, + "thread": 12 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 575670, + "thread": 19 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 689932, + "thread": 23 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 920736, + "thread": 26 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1086470, + "thread": 31 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1272717, + "thread": 7 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1440487, + "thread": 31 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1604972, + "thread": 15 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1679912, + "thread": 14 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 1885416, + "thread": 13 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2048021, + "thread": 7 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2234362, + "thread": 4 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2408546, + "thread": 11 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2535235, + "thread": 8 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2696973, + "thread": 0 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 2837760, + "thread": 3 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 3023528, + "thread": 29 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 3258753, + "thread": 23 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 3399141, + "thread": 8 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 3531186, + "thread": 5 + } + }, + { + "amount": "162.345733864", + "slot": { + "period": 3652590, + "thread": 11 + } + }, + { + "amount": "162.345733875", + "slot": { + "period": 3886927, + "thread": 5 + } + } + ], + "AU12P8Z1DxeGFC1G79ipDpmkTF1ABxsLn1Piy67JPyqbbd1TGomzm": [ + { + "amount": "128.073935535", + "slot": { + "period": 64800, + "thread": 7 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 263413, + "thread": 27 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 433052, + "thread": 27 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 651878, + "thread": 5 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 788710, + "thread": 12 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 892737, + "thread": 5 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1075325, + "thread": 30 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1213445, + "thread": 24 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1349926, + "thread": 31 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1563653, + "thread": 27 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1692049, + "thread": 21 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 1857701, + "thread": 13 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2004084, + "thread": 21 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2210000, + "thread": 19 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2386261, + "thread": 3 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2538003, + "thread": 21 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2790652, + "thread": 29 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 2882422, + "thread": 30 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 3080116, + "thread": 2 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 3222912, + "thread": 25 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 3296214, + "thread": 20 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 3615812, + "thread": 7 + } + }, + { + "amount": "128.073935535", + "slot": { + "period": 3736164, + "thread": 29 + } + }, + { + "amount": "128.073935538", + "slot": { + "period": 3915438, + "thread": 13 + } + } + ], + "AU12P9iTP2Pg8mwQCQdwYd9xjykKPtxaJqrmYS8bQSv1GwEJdrUXr": [ + { + "amount": "130.141466321", + "slot": { + "period": 143045, + "thread": 28 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 215382, + "thread": 16 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 383777, + "thread": 26 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 564950, + "thread": 11 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 809789, + "thread": 15 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 883383, + "thread": 8 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1050595, + "thread": 17 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1152072, + "thread": 3 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1386948, + "thread": 14 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1502211, + "thread": 30 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1777675, + "thread": 21 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 1816120, + "thread": 24 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2093086, + "thread": 22 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2256304, + "thread": 6 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2402880, + "thread": 26 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2570629, + "thread": 6 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2736396, + "thread": 7 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 2853693, + "thread": 14 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 3073303, + "thread": 0 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 3183741, + "thread": 1 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 3311545, + "thread": 16 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 3534299, + "thread": 0 + } + }, + { + "amount": "130.141466321", + "slot": { + "period": 3649797, + "thread": 26 + } + }, + { + "amount": "130.141466311", + "slot": { + "period": 3817276, + "thread": 8 + } + } + ], + "AU12P9kyvmFqeVUZfuCWieS14zmebR92pfECRG7vbJQeYtJyZLULY": [ + { + "amount": "101.827372241", + "slot": { + "period": 104050, + "thread": 31 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 232807, + "thread": 14 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 486549, + "thread": 2 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 606974, + "thread": 12 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 744338, + "thread": 24 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 963039, + "thread": 22 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1022711, + "thread": 6 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1227737, + "thread": 9 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1344321, + "thread": 0 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1608296, + "thread": 11 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1647345, + "thread": 13 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 1846768, + "thread": 17 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2032380, + "thread": 24 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2155152, + "thread": 1 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2305283, + "thread": 24 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2617448, + "thread": 28 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2627313, + "thread": 8 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 2828914, + "thread": 26 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 3096462, + "thread": 6 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 3163590, + "thread": 6 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 3359242, + "thread": 10 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 3566936, + "thread": 26 + } + }, + { + "amount": "101.827372241", + "slot": { + "period": 3725375, + "thread": 21 + } + }, + { + "amount": "101.827372236", + "slot": { + "period": 3904103, + "thread": 30 + } + } + ], + "AU12PA6xzA5N2Np3rGsognPFhRxLy1XzE9T8UaFnpq43VFBv4Dkek": [ + { + "amount": "281.153766854", + "slot": { + "period": 102303, + "thread": 12 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 232246, + "thread": 28 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 405369, + "thread": 8 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 595231, + "thread": 2 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 753894, + "thread": 13 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 958638, + "thread": 6 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1125208, + "thread": 16 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1317421, + "thread": 5 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1455576, + "thread": 4 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1553583, + "thread": 1 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1720924, + "thread": 5 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 1913793, + "thread": 15 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2049237, + "thread": 29 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2155643, + "thread": 12 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2300702, + "thread": 8 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2585944, + "thread": 25 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2625175, + "thread": 27 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 2858669, + "thread": 11 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 3010699, + "thread": 0 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 3210950, + "thread": 8 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 3399955, + "thread": 5 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 3516273, + "thread": 5 + } + }, + { + "amount": "281.153766854", + "slot": { + "period": 3767450, + "thread": 25 + } + }, + { + "amount": "281.153766859", + "slot": { + "period": 3937092, + "thread": 2 + } + } + ], + "AU12PCBVrTBSRTABiDsZj576Rpd4cYKGNCMKWZ1x8TjGFUKJwVXQv": [ + { + "amount": "137.033851058", + "slot": { + "period": 87322, + "thread": 14 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 212017, + "thread": 15 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 404747, + "thread": 5 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 632974, + "thread": 0 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 817918, + "thread": 25 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 964419, + "thread": 12 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1020797, + "thread": 19 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1166200, + "thread": 14 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1454865, + "thread": 22 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1538153, + "thread": 18 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1784665, + "thread": 17 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1882534, + "thread": 24 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 1988282, + "thread": 1 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 2147478, + "thread": 20 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 2300889, + "thread": 0 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 2494692, + "thread": 9 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 2702596, + "thread": 23 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 2809721, + "thread": 2 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 3080360, + "thread": 27 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 3249503, + "thread": 23 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 3352840, + "thread": 28 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 3521623, + "thread": 24 + } + }, + { + "amount": "137.033851058", + "slot": { + "period": 3742269, + "thread": 30 + } + }, + { + "amount": "137.033851051", + "slot": { + "period": 3829726, + "thread": 5 + } + } + ], + "AU12PCL63DsuZoz3KaPTmEfUus6oWNQKkaGzYAoXdiqK2TCkWm8NM": [ + { + "amount": "54.370491065", + "slot": { + "period": 98883, + "thread": 31 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 312090, + "thread": 1 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 406960, + "thread": 7 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 562641, + "thread": 22 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 707595, + "thread": 24 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 945500, + "thread": 4 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1053780, + "thread": 22 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1186378, + "thread": 13 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1441127, + "thread": 2 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1509329, + "thread": 24 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1776066, + "thread": 2 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 1820688, + "thread": 3 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2094374, + "thread": 18 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2294910, + "thread": 3 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2432674, + "thread": 10 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2519943, + "thread": 17 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2631546, + "thread": 8 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 2830898, + "thread": 18 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 3103643, + "thread": 4 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 3143691, + "thread": 28 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 3400154, + "thread": 12 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 3479475, + "thread": 7 + } + }, + { + "amount": "54.370491065", + "slot": { + "period": 3735380, + "thread": 5 + } + }, + { + "amount": "54.370491074", + "slot": { + "period": 3786972, + "thread": 5 + } + } + ], + "AU12PDBPBW27fACPUBzq6AotUqsBXYQcQeCXTT6KWGcT315MyFEuU": [ + { + "amount": "445.071723060", + "slot": { + "period": 84795, + "thread": 2 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 203501, + "thread": 13 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 408130, + "thread": 6 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 601128, + "thread": 12 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 676907, + "thread": 22 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 884984, + "thread": 29 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1103399, + "thread": 19 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1231876, + "thread": 18 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1390798, + "thread": 4 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1527320, + "thread": 3 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1657014, + "thread": 9 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 1813543, + "thread": 20 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2116783, + "thread": 25 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2290917, + "thread": 15 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2361262, + "thread": 0 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2575636, + "thread": 2 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2772664, + "thread": 20 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2913523, + "thread": 29 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 2982204, + "thread": 7 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 3210072, + "thread": 0 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 3303488, + "thread": 29 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 3471079, + "thread": 17 + } + }, + { + "amount": "445.071723060", + "slot": { + "period": 3778692, + "thread": 9 + } + }, + { + "amount": "445.071723053", + "slot": { + "period": 3910298, + "thread": 22 + } + } + ], + "AU12PFScwjXp6qyWEDVjUfpg1fa5tYcAUbLosvudu84xz7K6ybBsR": [ + { + "amount": "282.526236993", + "slot": { + "period": 120780, + "thread": 5 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 190847, + "thread": 27 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 415302, + "thread": 18 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 549459, + "thread": 11 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 765231, + "thread": 7 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 893007, + "thread": 18 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1126102, + "thread": 30 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1247752, + "thread": 28 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1366159, + "thread": 20 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1558753, + "thread": 28 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1740516, + "thread": 29 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 1872950, + "thread": 10 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2075903, + "thread": 6 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2144987, + "thread": 24 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2374193, + "thread": 22 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2549822, + "thread": 12 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2732728, + "thread": 28 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 2925437, + "thread": 23 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 3002529, + "thread": 29 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 3261140, + "thread": 7 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 3394000, + "thread": 3 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 3575176, + "thread": 8 + } + }, + { + "amount": "282.526236993", + "slot": { + "period": 3695095, + "thread": 16 + } + }, + { + "amount": "282.526236982", + "slot": { + "period": 3876356, + "thread": 11 + } + } + ], + "AU12PFungss8LPvwp16iZi9zYJuQs12nAuFzYDELjiKgw9Lb8wF59": [ + { + "amount": "465.384128581", + "slot": { + "period": 131071, + "thread": 30 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 170087, + "thread": 18 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 359421, + "thread": 15 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 580270, + "thread": 18 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 820087, + "thread": 30 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 857325, + "thread": 9 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1104161, + "thread": 8 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1171414, + "thread": 13 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1339988, + "thread": 30 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1506421, + "thread": 3 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1746647, + "thread": 19 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 1972976, + "thread": 28 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2115885, + "thread": 12 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2167922, + "thread": 20 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2409203, + "thread": 19 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2536278, + "thread": 8 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2665020, + "thread": 31 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 2818467, + "thread": 24 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 3037507, + "thread": 1 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 3148199, + "thread": 8 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 3302078, + "thread": 9 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 3531285, + "thread": 27 + } + }, + { + "amount": "465.384128581", + "slot": { + "period": 3735133, + "thread": 0 + } + }, + { + "amount": "465.384128574", + "slot": { + "period": 3790135, + "thread": 3 + } + } + ], + "AU12PGBLgc4UtkhKPqdRJNn2vUFwm2HmYRRivNwhDSmqmdfX1qqzW": [ + { + "amount": "68.229132195", + "slot": { + "period": 121640, + "thread": 5 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 184623, + "thread": 27 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 335172, + "thread": 19 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 504508, + "thread": 9 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 697931, + "thread": 22 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 847063, + "thread": 9 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1087612, + "thread": 17 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1209475, + "thread": 9 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1466696, + "thread": 15 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1479716, + "thread": 20 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1745344, + "thread": 7 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 1869857, + "thread": 1 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2141067, + "thread": 13 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2270835, + "thread": 25 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2434921, + "thread": 0 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2587337, + "thread": 17 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2654682, + "thread": 20 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 2868573, + "thread": 0 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 3111705, + "thread": 16 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 3221327, + "thread": 2 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 3338444, + "thread": 31 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 3579060, + "thread": 22 + } + }, + { + "amount": "68.229132195", + "slot": { + "period": 3711402, + "thread": 25 + } + }, + { + "amount": "68.229132194", + "slot": { + "period": 3899858, + "thread": 23 + } + } + ], + "AU12PGdq3zEzup8sJ6P25dH1n49BrTHX3gwiAKmtbR6DzD53NfejD": [ + { + "amount": "232.147807478", + "slot": { + "period": 104482, + "thread": 13 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 182923, + "thread": 25 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 370905, + "thread": 30 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 591529, + "thread": 9 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 677831, + "thread": 19 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 849401, + "thread": 26 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1111325, + "thread": 1 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1208834, + "thread": 10 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1393002, + "thread": 28 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1479817, + "thread": 25 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1689697, + "thread": 4 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 1868899, + "thread": 14 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2074007, + "thread": 13 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2184360, + "thread": 5 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2324538, + "thread": 17 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2576734, + "thread": 1 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2730155, + "thread": 19 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 2938994, + "thread": 10 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 3103817, + "thread": 15 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 3168262, + "thread": 18 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 3313137, + "thread": 28 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 3511366, + "thread": 12 + } + }, + { + "amount": "232.147807478", + "slot": { + "period": 3677811, + "thread": 10 + } + }, + { + "amount": "232.147807468", + "slot": { + "period": 3878428, + "thread": 23 + } + } + ], + "AU12PGq3ex3HyKuzMY4L6HCLmtjc4KDfs9ehbdCNFRAg6qBWSZdcB": [ + { + "amount": "314.545263362", + "slot": { + "period": 152952, + "thread": 3 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 193628, + "thread": 1 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 377008, + "thread": 15 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 513004, + "thread": 15 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 728719, + "thread": 5 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 892970, + "thread": 10 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1051115, + "thread": 25 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1232324, + "thread": 19 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1367031, + "thread": 23 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1600370, + "thread": 11 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1668708, + "thread": 10 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 1934111, + "thread": 8 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2007342, + "thread": 11 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2244457, + "thread": 22 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2413974, + "thread": 25 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2565640, + "thread": 7 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2676269, + "thread": 6 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2859214, + "thread": 9 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 2963720, + "thread": 0 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 3265099, + "thread": 19 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 3354299, + "thread": 29 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 3467201, + "thread": 9 + } + }, + { + "amount": "314.545263362", + "slot": { + "period": 3760670, + "thread": 12 + } + }, + { + "amount": "314.545263351", + "slot": { + "period": 3831220, + "thread": 20 + } + } + ], + "AU12PH1XHq8Ut2vhbRHS3f7JUV4wYmVPHz2pkvHPnATq79T6Kcv5F": [ + { + "amount": "140.689849824", + "slot": { + "period": 76610, + "thread": 28 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 269642, + "thread": 1 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 475321, + "thread": 10 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 572431, + "thread": 18 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 718694, + "thread": 28 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 881618, + "thread": 23 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1015549, + "thread": 31 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1165303, + "thread": 9 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1430619, + "thread": 18 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1546732, + "thread": 16 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1676185, + "thread": 28 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 1953603, + "thread": 17 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2025456, + "thread": 5 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2169141, + "thread": 18 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2411388, + "thread": 19 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2489893, + "thread": 21 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2645913, + "thread": 1 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2838601, + "thread": 21 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 2974912, + "thread": 26 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 3244572, + "thread": 13 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 3319049, + "thread": 22 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 3492208, + "thread": 15 + } + }, + { + "amount": "140.689849824", + "slot": { + "period": 3776297, + "thread": 19 + } + }, + { + "amount": "140.689849816", + "slot": { + "period": 3810512, + "thread": 9 + } + } + ], + "AU12PHkMopB8sVh9jhsEB14A78VJfDjN7K5AdmXUb6DJDtvfpFmiH": [ + { + "amount": "340.902362166", + "slot": { + "period": 63046, + "thread": 15 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 180187, + "thread": 31 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 387068, + "thread": 0 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 615981, + "thread": 22 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 732367, + "thread": 10 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 850692, + "thread": 17 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1135724, + "thread": 25 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1249508, + "thread": 2 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1369024, + "thread": 28 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1553119, + "thread": 20 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1791397, + "thread": 11 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 1895368, + "thread": 15 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2093865, + "thread": 18 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2187798, + "thread": 16 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2431003, + "thread": 2 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2591646, + "thread": 21 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2755230, + "thread": 18 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 2929520, + "thread": 14 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 3056088, + "thread": 17 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 3209117, + "thread": 5 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 3389254, + "thread": 11 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 3495809, + "thread": 21 + } + }, + { + "amount": "340.902362166", + "slot": { + "period": 3736141, + "thread": 21 + } + }, + { + "amount": "340.902362163", + "slot": { + "period": 3812362, + "thread": 15 + } + } + ], + "AU12PKFXTFCR58dwWmg2QzY9vB3btfmBeKCmxRRieMhjAfa7Qnrju": [ + { + "amount": "430.887926670", + "slot": { + "period": 153098, + "thread": 31 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 218630, + "thread": 7 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 477081, + "thread": 17 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 515394, + "thread": 2 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 797213, + "thread": 1 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 838819, + "thread": 27 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1096744, + "thread": 21 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1185171, + "thread": 26 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1380433, + "thread": 5 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1566049, + "thread": 2 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1742138, + "thread": 11 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 1953384, + "thread": 2 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2134837, + "thread": 3 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2155858, + "thread": 20 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2378615, + "thread": 1 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2512910, + "thread": 24 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2788907, + "thread": 16 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2927650, + "thread": 18 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 2982406, + "thread": 31 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 3229410, + "thread": 28 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 3347371, + "thread": 29 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 3617891, + "thread": 18 + } + }, + { + "amount": "430.887926670", + "slot": { + "period": 3690305, + "thread": 12 + } + }, + { + "amount": "430.887926662", + "slot": { + "period": 3855087, + "thread": 12 + } + } + ], + "AU12PL9DZq3q1apKVwNwpdgnWVK2kaaRZJUW68ctqvw7xy6occA9j": [ + { + "amount": "161.049256736", + "slot": { + "period": 84539, + "thread": 31 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 320558, + "thread": 18 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 446967, + "thread": 5 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 611689, + "thread": 22 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 814918, + "thread": 25 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 822136, + "thread": 22 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1074715, + "thread": 29 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1312754, + "thread": 29 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1353367, + "thread": 7 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1645264, + "thread": 23 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1696852, + "thread": 5 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 1948696, + "thread": 25 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2050269, + "thread": 31 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2224899, + "thread": 24 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2392902, + "thread": 4 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2537385, + "thread": 16 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2652479, + "thread": 21 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 2869345, + "thread": 11 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 3054153, + "thread": 14 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 3198015, + "thread": 6 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 3430086, + "thread": 17 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 3546301, + "thread": 13 + } + }, + { + "amount": "161.049256736", + "slot": { + "period": 3754640, + "thread": 3 + } + }, + { + "amount": "161.049256737", + "slot": { + "period": 3878162, + "thread": 12 + } + } + ], + "AU12PMWT2nvEiuspAWr18coif4hbsfD9Q1eLLGy1JwKhMro9DjgUq": [ + { + "amount": "98.010438984", + "slot": { + "period": 136319, + "thread": 21 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 205297, + "thread": 1 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 485166, + "thread": 15 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 607464, + "thread": 3 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 758213, + "thread": 27 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 982224, + "thread": 2 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1042862, + "thread": 6 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1238785, + "thread": 4 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1473535, + "thread": 4 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1637869, + "thread": 25 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1701384, + "thread": 4 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 1888477, + "thread": 14 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2015515, + "thread": 21 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2260421, + "thread": 20 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2398124, + "thread": 30 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2602939, + "thread": 0 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2695310, + "thread": 12 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2893812, + "thread": 31 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 2964693, + "thread": 5 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 3169951, + "thread": 9 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 3405099, + "thread": 1 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 3593214, + "thread": 18 + } + }, + { + "amount": "98.010438984", + "slot": { + "period": 3649276, + "thread": 17 + } + }, + { + "amount": "98.010438982", + "slot": { + "period": 3896111, + "thread": 24 + } + } + ], + "AU12PMcsTGsjGT4QGZkYM6GRnwDywMmrZuycBx8CJHuz8McMcuism": [ + { + "amount": "138.403235778", + "slot": { + "period": 127933, + "thread": 16 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 297383, + "thread": 24 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 385843, + "thread": 6 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 638911, + "thread": 23 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 789896, + "thread": 19 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 971737, + "thread": 26 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1081807, + "thread": 4 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1261864, + "thread": 11 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1398361, + "thread": 17 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1515892, + "thread": 16 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1721430, + "thread": 8 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 1830635, + "thread": 24 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2042170, + "thread": 0 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2161241, + "thread": 0 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2393483, + "thread": 9 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2608394, + "thread": 10 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2699733, + "thread": 4 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2857139, + "thread": 8 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 2971088, + "thread": 28 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 3194873, + "thread": 10 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 3417288, + "thread": 3 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 3593803, + "thread": 28 + } + }, + { + "amount": "138.403235778", + "slot": { + "period": 3684467, + "thread": 20 + } + }, + { + "amount": "138.403235773", + "slot": { + "period": 3808078, + "thread": 4 + } + } + ], + "AU12PN5W2sVii5RpAbakSWX22yxEhXmAUHupABcqxugEiHJfdXG6j": [ + { + "amount": "155.233289075", + "slot": { + "period": 86168, + "thread": 23 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 317695, + "thread": 25 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 384397, + "thread": 25 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 587352, + "thread": 12 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 753173, + "thread": 17 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 866491, + "thread": 11 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 985705, + "thread": 4 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1312830, + "thread": 1 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1474375, + "thread": 31 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1621092, + "thread": 21 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1734305, + "thread": 23 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1939143, + "thread": 11 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 1981246, + "thread": 5 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 2231321, + "thread": 21 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 2369487, + "thread": 11 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 2609683, + "thread": 16 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 2778595, + "thread": 28 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 2899365, + "thread": 1 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 3061153, + "thread": 4 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 3187578, + "thread": 31 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 3388887, + "thread": 6 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 3617990, + "thread": 4 + } + }, + { + "amount": "155.233289075", + "slot": { + "period": 3696813, + "thread": 0 + } + }, + { + "amount": "155.233289064", + "slot": { + "period": 3875950, + "thread": 19 + } + } + ], + "AU12PNsEQt8Qx8k8covpv3jvZHD9k8z5c2VqnmNVfVm8TheuqcfMV": [ + { + "amount": "169.305421408", + "slot": { + "period": 63729, + "thread": 2 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 267917, + "thread": 11 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 491283, + "thread": 28 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 593491, + "thread": 20 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 751586, + "thread": 27 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 926222, + "thread": 28 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1045042, + "thread": 12 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1298572, + "thread": 27 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1407306, + "thread": 23 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1583659, + "thread": 8 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1712595, + "thread": 30 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 1843082, + "thread": 21 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2100950, + "thread": 17 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2226984, + "thread": 25 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2441635, + "thread": 5 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2486342, + "thread": 19 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2699749, + "thread": 22 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 2952047, + "thread": 19 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 3043965, + "thread": 8 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 3210168, + "thread": 28 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 3342502, + "thread": 27 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 3552484, + "thread": 25 + } + }, + { + "amount": "169.305421408", + "slot": { + "period": 3738919, + "thread": 7 + } + }, + { + "amount": "169.305421411", + "slot": { + "period": 3803070, + "thread": 21 + } + } + ], + "AU12PP4DhnFwfvvYmt9D3xRbXPwcJDqw638K7dpAt1CJWYA3CrfCQ": [ + { + "amount": "305.004206680", + "slot": { + "period": 119535, + "thread": 30 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 201260, + "thread": 9 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 337386, + "thread": 27 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 626034, + "thread": 9 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 657704, + "thread": 3 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 947045, + "thread": 17 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 990067, + "thread": 16 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 1260990, + "thread": 25 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 1328084, + "thread": 7 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 1494304, + "thread": 0 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 1655989, + "thread": 20 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 1917804, + "thread": 28 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2072687, + "thread": 15 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2194891, + "thread": 8 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2319660, + "thread": 28 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2534697, + "thread": 7 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2738414, + "thread": 29 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 2834378, + "thread": 30 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 3106324, + "thread": 20 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 3187113, + "thread": 3 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 3310515, + "thread": 9 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 3589368, + "thread": 31 + } + }, + { + "amount": "305.004206680", + "slot": { + "period": 3691617, + "thread": 6 + } + }, + { + "amount": "305.004206668", + "slot": { + "period": 3919448, + "thread": 7 + } + } + ], + "AU12PQF1oe7u5K5WQ4rnyiAspW2D5tp97f158J4bPQSeLqGeTHodu": [ + { + "amount": "580.025351001", + "slot": { + "period": 64230, + "thread": 23 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 260437, + "thread": 28 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 484043, + "thread": 7 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 650799, + "thread": 3 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 681944, + "thread": 23 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 886572, + "thread": 1 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1103320, + "thread": 19 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1291563, + "thread": 30 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1360026, + "thread": 1 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1617288, + "thread": 19 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1720427, + "thread": 18 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 1922464, + "thread": 12 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2060260, + "thread": 1 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2285753, + "thread": 10 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2417364, + "thread": 12 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2608771, + "thread": 14 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2734335, + "thread": 13 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 2953153, + "thread": 15 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 3088956, + "thread": 2 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 3170443, + "thread": 20 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 3439541, + "thread": 18 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 3536304, + "thread": 29 + } + }, + { + "amount": "580.025351001", + "slot": { + "period": 3645538, + "thread": 6 + } + }, + { + "amount": "580.025351008", + "slot": { + "period": 3805288, + "thread": 28 + } + } + ], + "AU12PQTPzpdLKw6arkv1TkUWNmtCfh6JSDP2ff57ZhbDAPWa6hvAD": [ + { + "amount": "480.318581942", + "slot": { + "period": 165872, + "thread": 18 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 232634, + "thread": 11 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 400023, + "thread": 29 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 638077, + "thread": 12 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 691628, + "thread": 14 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 945589, + "thread": 31 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1019535, + "thread": 22 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1266788, + "thread": 18 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1472519, + "thread": 21 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1504454, + "thread": 20 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1654870, + "thread": 23 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 1906084, + "thread": 29 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2098456, + "thread": 27 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2289158, + "thread": 5 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2401669, + "thread": 8 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2496125, + "thread": 15 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2657712, + "thread": 22 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 2812766, + "thread": 5 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 3002599, + "thread": 10 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 3276296, + "thread": 29 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 3310708, + "thread": 17 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 3486410, + "thread": 9 + } + }, + { + "amount": "480.318581942", + "slot": { + "period": 3656391, + "thread": 25 + } + }, + { + "amount": "480.318581948", + "slot": { + "period": 3940576, + "thread": 14 + } + } + ], + "AU12PQkoyjMVhckKjNVjb2t1kHTCF67PGW7XjaC7ENW52jofb16nM": [ + { + "amount": "53.832788748", + "slot": { + "period": 152182, + "thread": 19 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 220805, + "thread": 9 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 346209, + "thread": 22 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 625001, + "thread": 22 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 795045, + "thread": 18 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 886624, + "thread": 29 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1054678, + "thread": 5 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1241990, + "thread": 10 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1443143, + "thread": 13 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1525860, + "thread": 17 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1764993, + "thread": 19 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 1928728, + "thread": 28 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2032091, + "thread": 20 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2202968, + "thread": 3 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2348068, + "thread": 6 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2546435, + "thread": 4 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2678357, + "thread": 14 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 2858682, + "thread": 11 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 3108349, + "thread": 23 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 3265739, + "thread": 2 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 3300313, + "thread": 14 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 3460058, + "thread": 21 + } + }, + { + "amount": "53.832788748", + "slot": { + "period": 3680439, + "thread": 28 + } + }, + { + "amount": "53.832788759", + "slot": { + "period": 3805842, + "thread": 8 + } + } + ], + "AU12PQrtJbK4iRYrNakDXBnobyE3PEWcy5LYaNyMEfZSCAa6ZKEF8": [ + { + "amount": "214.814260428", + "slot": { + "period": 78005, + "thread": 31 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 299551, + "thread": 24 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 450099, + "thread": 26 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 556027, + "thread": 13 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 760761, + "thread": 9 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 837625, + "thread": 30 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1056081, + "thread": 4 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1239142, + "thread": 10 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1384438, + "thread": 3 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1575194, + "thread": 11 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1706686, + "thread": 5 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 1823254, + "thread": 29 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2034326, + "thread": 11 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2171987, + "thread": 24 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2303874, + "thread": 23 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2493148, + "thread": 7 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2791542, + "thread": 23 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 2873324, + "thread": 23 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 3097158, + "thread": 24 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 3214085, + "thread": 26 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 3411365, + "thread": 16 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 3575386, + "thread": 3 + } + }, + { + "amount": "214.814260428", + "slot": { + "period": 3697115, + "thread": 8 + } + }, + { + "amount": "214.814260430", + "slot": { + "period": 3817866, + "thread": 24 + } + } + ], + "AU12PRWWGvTs6jZURiWkJmnBoKZ8NFnMmmL5d1RmskvT8pHX4P2WN": [ + { + "amount": "211.965844827", + "slot": { + "period": 43441, + "thread": 19 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 262480, + "thread": 3 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 324467, + "thread": 11 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 615398, + "thread": 10 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 668161, + "thread": 5 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 948705, + "thread": 9 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1098855, + "thread": 31 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1224687, + "thread": 5 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1478615, + "thread": 31 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1561388, + "thread": 15 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1771197, + "thread": 22 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 1940649, + "thread": 2 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2009487, + "thread": 5 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2271578, + "thread": 22 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2342746, + "thread": 22 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2544881, + "thread": 29 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2676551, + "thread": 2 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2809791, + "thread": 1 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 2963237, + "thread": 26 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 3169434, + "thread": 8 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 3297280, + "thread": 9 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 3614478, + "thread": 25 + } + }, + { + "amount": "211.965844827", + "slot": { + "period": 3701510, + "thread": 30 + } + }, + { + "amount": "211.965844818", + "slot": { + "period": 3914789, + "thread": 26 + } + } + ], + "AU12PRnozYivocB3Xr2i57RbsRYU3zui9TGbs8LNABA6vU4ic7Vq9": [ + { + "amount": "720.941348005", + "slot": { + "period": 86459, + "thread": 26 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 288030, + "thread": 15 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 380507, + "thread": 7 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 556748, + "thread": 27 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 663716, + "thread": 10 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 828704, + "thread": 29 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1018160, + "thread": 23 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1229505, + "thread": 15 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1348174, + "thread": 8 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1592781, + "thread": 0 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1779672, + "thread": 26 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1917062, + "thread": 9 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 1991167, + "thread": 26 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 2237629, + "thread": 17 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 2319116, + "thread": 2 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 2573412, + "thread": 18 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 2780973, + "thread": 13 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 2882835, + "thread": 24 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 3078019, + "thread": 10 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 3149445, + "thread": 12 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 3334918, + "thread": 29 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 3482764, + "thread": 28 + } + }, + { + "amount": "720.941348005", + "slot": { + "period": 3718143, + "thread": 7 + } + }, + { + "amount": "720.941348016", + "slot": { + "period": 3833933, + "thread": 6 + } + } + ], + "AU12PSPVJpemSCatFLSMUz4dive3SEgVuEzq7Q3Htjtqtg2SJcTeD": [ + { + "amount": "432.523116445", + "slot": { + "period": 30416, + "thread": 30 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 175953, + "thread": 5 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 334975, + "thread": 18 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 577211, + "thread": 23 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 709423, + "thread": 9 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 870583, + "thread": 23 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1079920, + "thread": 8 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1315449, + "thread": 28 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1411174, + "thread": 31 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1491687, + "thread": 18 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1681122, + "thread": 19 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 1867740, + "thread": 9 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2054514, + "thread": 13 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2241759, + "thread": 29 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2322989, + "thread": 28 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2588635, + "thread": 30 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2716889, + "thread": 28 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 2934886, + "thread": 18 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 3116883, + "thread": 15 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 3122099, + "thread": 2 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 3312112, + "thread": 22 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 3459872, + "thread": 5 + } + }, + { + "amount": "432.523116445", + "slot": { + "period": 3722340, + "thread": 23 + } + }, + { + "amount": "432.523116437", + "slot": { + "period": 3859231, + "thread": 20 + } + } + ], + "AU12PSkspCKm8SVbRCQRXseH97oVE6E8Munif93e7JCVZbJJi6nZk": [ + { + "amount": "200.607326083", + "slot": { + "period": 96422, + "thread": 20 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 214179, + "thread": 19 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 410054, + "thread": 22 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 507685, + "thread": 29 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 783598, + "thread": 17 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 894772, + "thread": 7 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1140622, + "thread": 1 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1206947, + "thread": 16 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1374097, + "thread": 19 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1524261, + "thread": 23 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1678743, + "thread": 29 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 1870501, + "thread": 29 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2047389, + "thread": 10 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2271835, + "thread": 20 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2432299, + "thread": 16 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2580569, + "thread": 26 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2636965, + "thread": 5 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 2795697, + "thread": 16 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 3068237, + "thread": 25 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 3243658, + "thread": 3 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 3295151, + "thread": 31 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 3453869, + "thread": 23 + } + }, + { + "amount": "200.607326083", + "slot": { + "period": 3711313, + "thread": 16 + } + }, + { + "amount": "200.607326093", + "slot": { + "period": 3843448, + "thread": 6 + } + } + ], + "AU12PTDrBBCwMLJ54Pos1PZFt39mHE9U1AioHGg2wLrDoz9kcSAKs": [ + { + "amount": "67.036023775", + "slot": { + "period": 159076, + "thread": 30 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 280847, + "thread": 3 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 361211, + "thread": 9 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 535645, + "thread": 27 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 716531, + "thread": 22 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 886386, + "thread": 8 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1113051, + "thread": 28 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1150324, + "thread": 3 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1467204, + "thread": 11 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1626140, + "thread": 24 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1740563, + "thread": 10 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1970636, + "thread": 12 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 1985607, + "thread": 4 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2195780, + "thread": 15 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2420166, + "thread": 30 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2586516, + "thread": 6 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2692468, + "thread": 26 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2828302, + "thread": 28 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 2988012, + "thread": 22 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 3188855, + "thread": 6 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 3291561, + "thread": 29 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 3565413, + "thread": 14 + } + }, + { + "amount": "67.036023775", + "slot": { + "period": 3712521, + "thread": 23 + } + }, + { + "amount": "67.036023770", + "slot": { + "period": 3850459, + "thread": 15 + } + } + ], + "AU12PTZijuKmH8sz8U4cjcutfgxZKXqBRwwZaN1eGjpLAi97oUhQo": [ + { + "amount": "362.336700893", + "slot": { + "period": 88766, + "thread": 17 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 200394, + "thread": 3 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 472304, + "thread": 28 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 538772, + "thread": 20 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 808569, + "thread": 2 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 873548, + "thread": 7 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1033655, + "thread": 16 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1180085, + "thread": 2 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1451025, + "thread": 18 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1528089, + "thread": 12 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1767648, + "thread": 17 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 1824956, + "thread": 2 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2021659, + "thread": 18 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2190288, + "thread": 11 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2449711, + "thread": 31 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2471209, + "thread": 0 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2690800, + "thread": 14 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2869861, + "thread": 17 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 2970163, + "thread": 24 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 3278177, + "thread": 24 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 3348259, + "thread": 5 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 3497553, + "thread": 11 + } + }, + { + "amount": "362.336700893", + "slot": { + "period": 3634522, + "thread": 25 + } + }, + { + "amount": "362.336700888", + "slot": { + "period": 3873841, + "thread": 20 + } + } + ], + "AU12PUnkf2uBAa8s7bquTNS4zN53m7ij9r3XypZAnGvXZXwW6CAjg": [ + { + "amount": "60.828297173", + "slot": { + "period": 108916, + "thread": 3 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 220769, + "thread": 1 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 481250, + "thread": 24 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 516405, + "thread": 2 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 727076, + "thread": 30 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 929700, + "thread": 20 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1134437, + "thread": 24 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1267357, + "thread": 16 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1418391, + "thread": 17 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1498674, + "thread": 3 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1670057, + "thread": 20 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 1857377, + "thread": 8 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2123688, + "thread": 11 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2286637, + "thread": 9 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2408366, + "thread": 23 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2488324, + "thread": 23 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2639595, + "thread": 29 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 2830623, + "thread": 8 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 3112415, + "thread": 27 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 3234525, + "thread": 29 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 3427844, + "thread": 2 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 3598654, + "thread": 2 + } + }, + { + "amount": "60.828297173", + "slot": { + "period": 3751117, + "thread": 4 + } + }, + { + "amount": "60.828297183", + "slot": { + "period": 3920947, + "thread": 5 + } + } + ], + "AU12PV1uHU7pw875NhPNyZpUJPEa415fNo5peNcx3ptgNHbSmFgbA": [ + { + "amount": "125.081545815", + "slot": { + "period": 101555, + "thread": 26 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 293724, + "thread": 13 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 352331, + "thread": 26 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 575320, + "thread": 12 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 817842, + "thread": 19 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 834039, + "thread": 6 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1050345, + "thread": 20 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1223386, + "thread": 30 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1389921, + "thread": 23 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1521137, + "thread": 12 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1668169, + "thread": 5 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1923511, + "thread": 7 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 1985670, + "thread": 13 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2248468, + "thread": 3 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2381778, + "thread": 23 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2524443, + "thread": 22 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2624645, + "thread": 0 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2811990, + "thread": 18 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 2967433, + "thread": 7 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 3148621, + "thread": 31 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 3403049, + "thread": 13 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 3503891, + "thread": 2 + } + }, + { + "amount": "125.081545815", + "slot": { + "period": 3681511, + "thread": 16 + } + }, + { + "amount": "125.081545826", + "slot": { + "period": 3800218, + "thread": 0 + } + } + ], + "AU12PWm1dkvVBgLhUHHBXFPrZ54ACREKSQ9ebjM5MBRZXEZFPfyuD": [ + { + "amount": "489.128500974", + "slot": { + "period": 117054, + "thread": 30 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 313788, + "thread": 6 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 331555, + "thread": 24 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 598067, + "thread": 7 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 816958, + "thread": 1 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 829245, + "thread": 24 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 991476, + "thread": 8 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 1151286, + "thread": 31 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 1468842, + "thread": 24 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 1539535, + "thread": 5 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 1698940, + "thread": 0 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 1941194, + "thread": 9 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2015281, + "thread": 17 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2196947, + "thread": 16 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2396164, + "thread": 13 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2571725, + "thread": 1 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2663561, + "thread": 18 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 2899282, + "thread": 28 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 3106916, + "thread": 24 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 3202988, + "thread": 17 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 3296586, + "thread": 25 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 3484061, + "thread": 25 + } + }, + { + "amount": "489.128500974", + "slot": { + "period": 3732043, + "thread": 14 + } + }, + { + "amount": "489.128500970", + "slot": { + "period": 3923699, + "thread": 27 + } + } + ], + "AU12PWq6pNPqbQHSRM4ee4hWeBeHhph8K4jf9tf5TmRXRtiN45zda": [ + { + "amount": "110.834456551", + "slot": { + "period": 122015, + "thread": 24 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 199272, + "thread": 11 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 383772, + "thread": 11 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 635278, + "thread": 27 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 682464, + "thread": 20 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 880487, + "thread": 2 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1135147, + "thread": 2 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1275149, + "thread": 10 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1436938, + "thread": 11 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1543770, + "thread": 9 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1720798, + "thread": 15 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1962219, + "thread": 23 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 1979425, + "thread": 20 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2226568, + "thread": 17 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2349136, + "thread": 4 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2539295, + "thread": 2 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2660781, + "thread": 6 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2906317, + "thread": 0 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 2962162, + "thread": 1 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 3201333, + "thread": 3 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 3396590, + "thread": 19 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 3535164, + "thread": 24 + } + }, + { + "amount": "110.834456551", + "slot": { + "period": 3720695, + "thread": 2 + } + }, + { + "amount": "110.834456557", + "slot": { + "period": 3875313, + "thread": 19 + } + } + ], + "AU12PXJEvBEw2DJ6gwVxseMN6YmrQCPmgDqJ3JCeU44zyDYwZm8p1": [ + { + "amount": "176.545173480", + "slot": { + "period": 147923, + "thread": 22 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 311778, + "thread": 30 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 327301, + "thread": 17 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 530567, + "thread": 28 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 785048, + "thread": 3 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 830755, + "thread": 0 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1068606, + "thread": 2 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1210272, + "thread": 16 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1408342, + "thread": 7 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1547448, + "thread": 25 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1744025, + "thread": 19 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 1849508, + "thread": 15 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2109424, + "thread": 11 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2151438, + "thread": 11 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2343083, + "thread": 2 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2590022, + "thread": 22 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2695663, + "thread": 24 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 2826019, + "thread": 17 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 3092581, + "thread": 1 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 3194690, + "thread": 21 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 3312484, + "thread": 16 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 3551302, + "thread": 24 + } + }, + { + "amount": "176.545173480", + "slot": { + "period": 3733773, + "thread": 14 + } + }, + { + "amount": "176.545173471", + "slot": { + "period": 3792871, + "thread": 2 + } + } + ], + "AU12PYAGW7wZzY7ivgVDAUnTLrUpzE858iG6tficBWpDmPYXW7dS7": [ + { + "amount": "113.610306683", + "slot": { + "period": 116475, + "thread": 13 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 319667, + "thread": 19 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 474103, + "thread": 7 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 524221, + "thread": 14 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 819341, + "thread": 30 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 897882, + "thread": 25 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 999388, + "thread": 0 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 1233864, + "thread": 0 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 1347961, + "thread": 21 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 1590208, + "thread": 23 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 1725041, + "thread": 16 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 1842811, + "thread": 12 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2051927, + "thread": 15 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2250782, + "thread": 27 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2326327, + "thread": 16 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2520921, + "thread": 21 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2712652, + "thread": 17 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 2915779, + "thread": 22 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 3107414, + "thread": 0 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 3151674, + "thread": 31 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 3399619, + "thread": 4 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 3543331, + "thread": 1 + } + }, + { + "amount": "113.610306683", + "slot": { + "period": 3687541, + "thread": 11 + } + }, + { + "amount": "113.610306691", + "slot": { + "period": 3901217, + "thread": 11 + } + } + ], + "AU12PYL2riEV5LiTkU1AX37mCe5qocHjeYYiyPdu9wJFA96P7y9NZ": [ + { + "amount": "116.988416567", + "slot": { + "period": 12675, + "thread": 24 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 298435, + "thread": 11 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 378268, + "thread": 27 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 577351, + "thread": 21 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 782322, + "thread": 11 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 842028, + "thread": 21 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 986600, + "thread": 26 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 1199466, + "thread": 23 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 1357603, + "thread": 27 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 1529417, + "thread": 2 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 1712584, + "thread": 27 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 1895351, + "thread": 11 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2130693, + "thread": 25 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2241993, + "thread": 18 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2319246, + "thread": 23 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2470063, + "thread": 6 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2720061, + "thread": 27 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2851430, + "thread": 24 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 2954877, + "thread": 31 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 3199786, + "thread": 18 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 3411089, + "thread": 22 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 3610252, + "thread": 16 + } + }, + { + "amount": "116.988416567", + "slot": { + "period": 3742762, + "thread": 3 + } + }, + { + "amount": "116.988416568", + "slot": { + "period": 3919730, + "thread": 11 + } + } + ], + "AU12PYfWsasFyMNic3D5xmw4rwoN5xiAvMa9ri58Cu57c97aCYDFq": [ + { + "amount": "352.403101886", + "slot": { + "period": 144787, + "thread": 6 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 203996, + "thread": 15 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 384961, + "thread": 27 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 525082, + "thread": 30 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 730319, + "thread": 14 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 881988, + "thread": 13 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1100496, + "thread": 27 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1209457, + "thread": 19 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1437963, + "thread": 22 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1510837, + "thread": 11 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1798322, + "thread": 30 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 1942314, + "thread": 0 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2113564, + "thread": 8 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2276448, + "thread": 0 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2354243, + "thread": 24 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2567394, + "thread": 23 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2747325, + "thread": 22 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 2894791, + "thread": 31 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 3021523, + "thread": 8 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 3142896, + "thread": 22 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 3299981, + "thread": 0 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 3551726, + "thread": 24 + } + }, + { + "amount": "352.403101886", + "slot": { + "period": 3769390, + "thread": 31 + } + }, + { + "amount": "352.403101874", + "slot": { + "period": 3905768, + "thread": 23 + } + } + ], + "AU12PZLrRuQcAmkMk7c1AYFsxA6duf163m7eq6vZzn6QSW6DgL57n": [ + { + "amount": "145.050976835", + "slot": { + "period": 75772, + "thread": 17 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 187208, + "thread": 11 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 330600, + "thread": 19 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 604764, + "thread": 6 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 774838, + "thread": 28 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 846934, + "thread": 28 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1128665, + "thread": 28 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1199994, + "thread": 22 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1369512, + "thread": 3 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1573709, + "thread": 9 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1681313, + "thread": 18 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 1829371, + "thread": 24 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2111396, + "thread": 14 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2236589, + "thread": 21 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2354995, + "thread": 11 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2506508, + "thread": 28 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2726635, + "thread": 26 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2942838, + "thread": 9 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 2997959, + "thread": 22 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 3220263, + "thread": 1 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 3393056, + "thread": 31 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 3584695, + "thread": 16 + } + }, + { + "amount": "145.050976835", + "slot": { + "period": 3735154, + "thread": 27 + } + }, + { + "amount": "145.050976837", + "slot": { + "period": 3861071, + "thread": 25 + } + } + ], + "AU12PZaf57TUFWu9m56M6jKaqLru4p8MsQoECjd6ZeVJCgBnCLwS7": [ + { + "amount": "366.157732180", + "slot": { + "period": 162302, + "thread": 24 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 261929, + "thread": 27 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 394862, + "thread": 15 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 593544, + "thread": 8 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 805856, + "thread": 30 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 913511, + "thread": 28 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1004958, + "thread": 9 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1237760, + "thread": 14 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1391799, + "thread": 20 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1588831, + "thread": 0 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1651411, + "thread": 31 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1942609, + "thread": 28 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 1982609, + "thread": 23 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2285915, + "thread": 25 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2454967, + "thread": 7 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2463813, + "thread": 9 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2733788, + "thread": 2 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2880092, + "thread": 2 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 2958792, + "thread": 12 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 3136948, + "thread": 24 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 3305648, + "thread": 16 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 3490848, + "thread": 2 + } + }, + { + "amount": "366.157732180", + "slot": { + "period": 3749780, + "thread": 21 + } + }, + { + "amount": "366.157732176", + "slot": { + "period": 3870217, + "thread": 3 + } + } + ], + "AU12PcQyJDwzjE2TqwZNw2tgrvDMrKLvhrDZnBzqoLhN7J4GygVfZ": [ + { + "amount": "71.280556661", + "slot": { + "period": 56069, + "thread": 28 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 280875, + "thread": 19 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 364244, + "thread": 9 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 636027, + "thread": 26 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 814375, + "thread": 14 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 885895, + "thread": 23 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1078757, + "thread": 19 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1191188, + "thread": 14 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1362007, + "thread": 0 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1576800, + "thread": 0 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1671408, + "thread": 29 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 1860007, + "thread": 20 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2067460, + "thread": 0 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2164811, + "thread": 28 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2358688, + "thread": 16 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2609454, + "thread": 4 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2651943, + "thread": 24 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 2852144, + "thread": 30 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 3041058, + "thread": 15 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 3147440, + "thread": 31 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 3289302, + "thread": 27 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 3584440, + "thread": 7 + } + }, + { + "amount": "71.280556661", + "slot": { + "period": 3624857, + "thread": 31 + } + }, + { + "amount": "71.280556670", + "slot": { + "period": 3884311, + "thread": 31 + } + } + ], + "AU12Pci1U3L1QKJ433GDLeBmKCZT5JQiLbPPk4pYxfdgkiPtxr8kN": [ + { + "amount": "56.763274724", + "slot": { + "period": 150845, + "thread": 14 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 202611, + "thread": 24 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 364532, + "thread": 8 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 533386, + "thread": 6 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 744471, + "thread": 22 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 830744, + "thread": 12 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1038838, + "thread": 9 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1302892, + "thread": 2 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1319955, + "thread": 0 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1562150, + "thread": 26 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1663822, + "thread": 30 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 1885800, + "thread": 18 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2058360, + "thread": 10 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2279609, + "thread": 25 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2384438, + "thread": 4 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2612684, + "thread": 20 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2692119, + "thread": 30 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2890093, + "thread": 7 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 2969714, + "thread": 14 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 3284268, + "thread": 21 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 3348599, + "thread": 12 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 3451623, + "thread": 30 + } + }, + { + "amount": "56.763274724", + "slot": { + "period": 3739065, + "thread": 5 + } + }, + { + "amount": "56.763274735", + "slot": { + "period": 3831230, + "thread": 16 + } + } + ], + "AU12PdPYnbmSbhA8kefMWpzXuJBc7gWKaJvmcJAAkEHrgUd4VYbaJ": [ + { + "amount": "381.205351548", + "slot": { + "period": 137518, + "thread": 20 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 237203, + "thread": 18 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 355718, + "thread": 1 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 605632, + "thread": 5 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 788729, + "thread": 25 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 955122, + "thread": 26 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1043553, + "thread": 22 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1214785, + "thread": 0 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1424279, + "thread": 22 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1549584, + "thread": 8 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1657846, + "thread": 9 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 1837497, + "thread": 24 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2087355, + "thread": 4 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2232364, + "thread": 4 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2386575, + "thread": 11 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2586481, + "thread": 5 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2763640, + "thread": 29 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 2866501, + "thread": 0 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 3028477, + "thread": 22 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 3122052, + "thread": 24 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 3315489, + "thread": 31 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 3563436, + "thread": 6 + } + }, + { + "amount": "381.205351548", + "slot": { + "period": 3670412, + "thread": 24 + } + }, + { + "amount": "381.205351556", + "slot": { + "period": 3851509, + "thread": 2 + } + } + ], + "AU12Pfz2ySAJebz39UBZizmcZ6TurUFPTF2iXp67QVWSsx65hwe9M": [ + { + "amount": "504.453925966", + "slot": { + "period": 26239, + "thread": 12 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 189030, + "thread": 9 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 471876, + "thread": 22 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 581475, + "thread": 22 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 723738, + "thread": 19 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 961249, + "thread": 7 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1134340, + "thread": 1 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1244986, + "thread": 31 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1464787, + "thread": 25 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1519127, + "thread": 13 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1739273, + "thread": 20 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 1835458, + "thread": 6 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2098011, + "thread": 10 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2280149, + "thread": 31 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2296161, + "thread": 16 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2535556, + "thread": 9 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2703797, + "thread": 30 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2904145, + "thread": 29 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 2959791, + "thread": 20 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 3253880, + "thread": 3 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 3400476, + "thread": 15 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 3600636, + "thread": 5 + } + }, + { + "amount": "504.453925966", + "slot": { + "period": 3660407, + "thread": 9 + } + }, + { + "amount": "504.453925963", + "slot": { + "period": 3817304, + "thread": 25 + } + } + ], + "AU12PgRk4QLWL4jHcqpNexvsu8fW6yhiGe4276Pvx3c15VRe3SHWx": [ + { + "amount": "142.428932605", + "slot": { + "period": 52843, + "thread": 4 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 262282, + "thread": 16 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 359572, + "thread": 16 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 596105, + "thread": 5 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 817823, + "thread": 3 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 964150, + "thread": 18 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1067109, + "thread": 20 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1198929, + "thread": 3 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1448652, + "thread": 5 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1598846, + "thread": 17 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1768283, + "thread": 19 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 1840314, + "thread": 23 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2033367, + "thread": 23 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2220521, + "thread": 13 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2403601, + "thread": 31 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2504430, + "thread": 6 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2626779, + "thread": 13 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 2802365, + "thread": 0 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3071126, + "thread": 9 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3229814, + "thread": 10 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3353708, + "thread": 6 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3498757, + "thread": 4 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3625466, + "thread": 14 + } + }, + { + "amount": "142.428932605", + "slot": { + "period": 3791028, + "thread": 18 + } + } + ], + "AU12PgjrepSLR2MhffiMPojqYs3Y9UEiypW1VuxCZqWCNTTXbHHHo": [ + { + "amount": "422.532831567", + "slot": { + "period": 101063, + "thread": 21 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 263183, + "thread": 17 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 413845, + "thread": 18 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 632545, + "thread": 27 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 708807, + "thread": 17 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 962510, + "thread": 31 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1050597, + "thread": 2 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1261154, + "thread": 20 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1392135, + "thread": 19 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1619225, + "thread": 24 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1722289, + "thread": 6 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 1845032, + "thread": 31 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2126006, + "thread": 3 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2177177, + "thread": 12 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2420007, + "thread": 2 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2560392, + "thread": 4 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2692497, + "thread": 22 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 2851582, + "thread": 11 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 3084837, + "thread": 30 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 3244562, + "thread": 24 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 3387909, + "thread": 15 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 3602960, + "thread": 25 + } + }, + { + "amount": "422.532831567", + "slot": { + "period": 3696594, + "thread": 5 + } + }, + { + "amount": "422.532831558", + "slot": { + "period": 3944334, + "thread": 4 + } + } + ], + "AU12PhaN74ynkCQHrshjjzoTXU4up2HZE8CvWvjawe6rZjZMKvNto": [ + { + "amount": "94.373106282", + "slot": { + "period": 12826, + "thread": 25 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 308897, + "thread": 27 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 375167, + "thread": 28 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 549663, + "thread": 24 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 788664, + "thread": 30 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 897817, + "thread": 21 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1060894, + "thread": 6 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1177625, + "thread": 11 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1356141, + "thread": 2 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1546609, + "thread": 29 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1717381, + "thread": 3 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 1932619, + "thread": 28 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2002374, + "thread": 7 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2191129, + "thread": 7 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2349684, + "thread": 1 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2469815, + "thread": 4 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2716926, + "thread": 29 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2906766, + "thread": 20 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 2979155, + "thread": 14 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 3275744, + "thread": 3 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 3391118, + "thread": 7 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 3475750, + "thread": 14 + } + }, + { + "amount": "94.373106282", + "slot": { + "period": 3622686, + "thread": 2 + } + }, + { + "amount": "94.373106281", + "slot": { + "period": 3795912, + "thread": 18 + } + } + ], + "AU12PhmqkfWgsL2JSKk8Sf9ZpJhu5tAbqVvMC9XEFsXCY75oAYyVi": [ + { + "amount": "111.759006468", + "slot": { + "period": 131404, + "thread": 1 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 282156, + "thread": 19 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 464948, + "thread": 0 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 510024, + "thread": 11 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 673356, + "thread": 20 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 844549, + "thread": 11 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1029739, + "thread": 15 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1158881, + "thread": 13 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1455989, + "thread": 19 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1551318, + "thread": 18 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1660270, + "thread": 16 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 1870188, + "thread": 28 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2109857, + "thread": 28 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2221528, + "thread": 9 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2415231, + "thread": 30 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2589224, + "thread": 31 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2759201, + "thread": 19 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 2864712, + "thread": 20 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 3033951, + "thread": 5 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 3130211, + "thread": 13 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 3336769, + "thread": 11 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 3469051, + "thread": 31 + } + }, + { + "amount": "111.759006468", + "slot": { + "period": 3666729, + "thread": 20 + } + }, + { + "amount": "111.759006464", + "slot": { + "period": 3792490, + "thread": 2 + } + } + ], + "AU12Pi4cstjm7g57ubkxw2La6Q9Za4q61R7GHKwE7jJbUzrfShpBh": [ + { + "amount": "432.949319664", + "slot": { + "period": 157691, + "thread": 14 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 306375, + "thread": 22 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 415124, + "thread": 24 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 595322, + "thread": 29 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 795255, + "thread": 27 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 885179, + "thread": 27 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1117896, + "thread": 18 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1214401, + "thread": 8 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1388504, + "thread": 30 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1482969, + "thread": 22 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1731478, + "thread": 9 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 1968188, + "thread": 16 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2052106, + "thread": 26 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2203388, + "thread": 16 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2340438, + "thread": 17 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2468999, + "thread": 4 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2773397, + "thread": 28 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2824377, + "thread": 19 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 2955646, + "thread": 3 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 3231672, + "thread": 4 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 3362536, + "thread": 11 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 3616887, + "thread": 4 + } + }, + { + "amount": "432.949319664", + "slot": { + "period": 3744261, + "thread": 7 + } + }, + { + "amount": "432.949319670", + "slot": { + "period": 3900209, + "thread": 11 + } + } + ], + "AU12PirxgRN5SmRbZHJVus1WhWq496Mu39381WTfL1bmgTx7WyMPK": [ + { + "amount": "637.133818819", + "slot": { + "period": 138401, + "thread": 8 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 194305, + "thread": 26 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 343573, + "thread": 16 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 560484, + "thread": 6 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 817971, + "thread": 24 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 860382, + "thread": 29 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1046132, + "thread": 10 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1266213, + "thread": 28 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1396668, + "thread": 4 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1504544, + "thread": 28 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1745232, + "thread": 13 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1876206, + "thread": 8 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 1988789, + "thread": 27 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 2277166, + "thread": 12 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 2345537, + "thread": 1 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 2591682, + "thread": 8 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 2727976, + "thread": 7 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 2888580, + "thread": 2 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 3062252, + "thread": 8 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 3203632, + "thread": 14 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 3364681, + "thread": 29 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 3604065, + "thread": 3 + } + }, + { + "amount": "637.133818819", + "slot": { + "period": 3684822, + "thread": 8 + } + }, + { + "amount": "637.133818822", + "slot": { + "period": 3888234, + "thread": 12 + } + } + ], + "AU12Pj7Mwv3n6gEaTwyAVDzvawCBx7nutzuhgn2BFoAcAe16p2tbE": [ + { + "amount": "29166.666666667", + "slot": { + "period": 42033, + "thread": 2 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 291246, + "thread": 18 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 356046, + "thread": 13 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 579355, + "thread": 19 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 794462, + "thread": 28 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 830493, + "thread": 17 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1031206, + "thread": 23 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1235959, + "thread": 17 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1360132, + "thread": 6 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1598722, + "thread": 31 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1703729, + "thread": 13 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1952987, + "thread": 27 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2139894, + "thread": 26 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2238517, + "thread": 23 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2295862, + "thread": 22 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2572604, + "thread": 18 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2649050, + "thread": 6 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2797681, + "thread": 23 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3093381, + "thread": 24 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3187151, + "thread": 9 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3331410, + "thread": 4 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3509482, + "thread": 8 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3676189, + "thread": 12 + } + }, + { + "amount": "29166.666666659", + "slot": { + "period": 3823555, + "thread": 19 + } + } + ], + "AU12PjhHhhWfUj9wK871yGMpWH17xKTp2zRhMPgPuhKPoQc8EhMSW": [ + { + "amount": "137.744963912", + "slot": { + "period": 83562, + "thread": 25 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 203679, + "thread": 14 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 327899, + "thread": 29 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 540901, + "thread": 11 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 701787, + "thread": 20 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 941739, + "thread": 24 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1016648, + "thread": 16 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1234901, + "thread": 31 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1327682, + "thread": 30 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1525423, + "thread": 2 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1747256, + "thread": 28 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 1968270, + "thread": 26 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2096307, + "thread": 2 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2266138, + "thread": 29 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2316317, + "thread": 7 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2559435, + "thread": 18 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2689286, + "thread": 0 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 2822747, + "thread": 16 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 3079668, + "thread": 5 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 3159450, + "thread": 7 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 3292867, + "thread": 25 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 3551400, + "thread": 6 + } + }, + { + "amount": "137.744963912", + "slot": { + "period": 3685408, + "thread": 15 + } + }, + { + "amount": "137.744963913", + "slot": { + "period": 3793471, + "thread": 16 + } + } + ], + "AU12PkA3ZezbzsLwCuLeyvuFbJG69y6pdS4VwNu5t8Q8cARU9SRnH": [ + { + "amount": "473.640200041", + "slot": { + "period": 49733, + "thread": 0 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 287677, + "thread": 11 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 417304, + "thread": 31 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 514000, + "thread": 9 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 741533, + "thread": 18 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 865928, + "thread": 0 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 997656, + "thread": 17 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1285001, + "thread": 11 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1319746, + "thread": 13 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1492117, + "thread": 21 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1713258, + "thread": 26 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1862639, + "thread": 2 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 1984134, + "thread": 28 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 2152699, + "thread": 7 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 2323427, + "thread": 26 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 2555278, + "thread": 15 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 2633879, + "thread": 23 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 2942509, + "thread": 3 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 3103514, + "thread": 24 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 3139858, + "thread": 1 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 3372821, + "thread": 23 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 3489936, + "thread": 3 + } + }, + { + "amount": "473.640200041", + "slot": { + "period": 3649411, + "thread": 0 + } + }, + { + "amount": "473.640200046", + "slot": { + "period": 3898474, + "thread": 21 + } + } + ], + "AU12PkWRUSztzTFAkCE6VPxLY8nukFSXmXcZRGHvAmq5jaieKR5rm": [ + { + "amount": "258.069020096", + "slot": { + "period": 141628, + "thread": 28 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 271058, + "thread": 8 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 488014, + "thread": 6 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 598318, + "thread": 9 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 739535, + "thread": 29 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 879742, + "thread": 14 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1060743, + "thread": 14 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1310253, + "thread": 23 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1472110, + "thread": 30 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1537234, + "thread": 10 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1769487, + "thread": 28 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 1943035, + "thread": 7 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2135078, + "thread": 19 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2155901, + "thread": 10 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2421668, + "thread": 5 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2613533, + "thread": 18 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2658135, + "thread": 24 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 2850471, + "thread": 31 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 3052845, + "thread": 1 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 3229644, + "thread": 15 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 3388882, + "thread": 3 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 3537256, + "thread": 22 + } + }, + { + "amount": "258.069020096", + "slot": { + "period": 3765414, + "thread": 12 + } + }, + { + "amount": "258.069020106", + "slot": { + "period": 3876133, + "thread": 7 + } + } + ], + "AU12PkdEcTBhGKT87ux2j45G1fWj8yVDJ4vyvfGjzFXH8jEHgeY3d": [ + { + "amount": "284.315298926", + "slot": { + "period": 50301, + "thread": 15 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 311565, + "thread": 3 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 435270, + "thread": 4 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 494284, + "thread": 19 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 703907, + "thread": 28 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 826893, + "thread": 25 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1023980, + "thread": 0 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1268744, + "thread": 1 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1391299, + "thread": 1 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1621336, + "thread": 6 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1786812, + "thread": 27 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 1907154, + "thread": 20 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2072354, + "thread": 28 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2248716, + "thread": 0 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2383446, + "thread": 12 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2489510, + "thread": 21 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2737353, + "thread": 10 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 2820188, + "thread": 5 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 3026023, + "thread": 18 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 3180816, + "thread": 21 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 3316503, + "thread": 13 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 3548273, + "thread": 15 + } + }, + { + "amount": "284.315298926", + "slot": { + "period": 3698830, + "thread": 24 + } + }, + { + "amount": "284.315298934", + "slot": { + "period": 3931301, + "thread": 8 + } + } + ], + "AU12PmindYEJioeVq7uqXas3DhBwdMemzeDjVNJUnPZjqxC8pJuj8": [ + { + "amount": "68.521503457", + "slot": { + "period": 29327, + "thread": 20 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 276428, + "thread": 11 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 488471, + "thread": 8 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 639207, + "thread": 8 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 788176, + "thread": 15 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 856034, + "thread": 22 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1050139, + "thread": 23 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1247675, + "thread": 19 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1460416, + "thread": 30 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1519287, + "thread": 3 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1740860, + "thread": 6 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 1881775, + "thread": 12 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2092655, + "thread": 25 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2194990, + "thread": 27 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2334926, + "thread": 5 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2464254, + "thread": 10 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2659867, + "thread": 28 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 2855106, + "thread": 30 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 3077110, + "thread": 4 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 3183210, + "thread": 23 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 3385835, + "thread": 8 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 3490135, + "thread": 20 + } + }, + { + "amount": "68.521503457", + "slot": { + "period": 3636287, + "thread": 8 + } + }, + { + "amount": "68.521503460", + "slot": { + "period": 3909639, + "thread": 9 + } + } + ], + "AU12Pof3N6jskyUmmSbw8jxPdRJGDzRMUMu8gfFEAjSrtQK4uWFEi": [ + { + "amount": "143.062135441", + "slot": { + "period": 102455, + "thread": 22 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 180755, + "thread": 28 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 433954, + "thread": 1 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 562906, + "thread": 14 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 772016, + "thread": 7 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 883416, + "thread": 30 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 986157, + "thread": 7 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 1259331, + "thread": 13 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 1367948, + "thread": 5 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 1627188, + "thread": 29 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 1759155, + "thread": 13 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 1945625, + "thread": 7 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2099698, + "thread": 7 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2283953, + "thread": 27 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2419135, + "thread": 17 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2488527, + "thread": 24 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2710749, + "thread": 29 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2937483, + "thread": 25 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 2996516, + "thread": 27 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 3230338, + "thread": 14 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 3363962, + "thread": 27 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 3585219, + "thread": 6 + } + }, + { + "amount": "143.062135441", + "slot": { + "period": 3639395, + "thread": 22 + } + }, + { + "amount": "143.062135444", + "slot": { + "period": 3857816, + "thread": 27 + } + } + ], + "AU12PpeuCzG6PSD8Vv8AqFpcoeScM9JBAzSdQVLyuyW7GECA21BWz": [ + { + "amount": "129.277940067", + "slot": { + "period": 137318, + "thread": 21 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 256309, + "thread": 9 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 482609, + "thread": 22 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 593143, + "thread": 27 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 809038, + "thread": 16 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 894672, + "thread": 15 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1097046, + "thread": 12 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1271026, + "thread": 27 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1357245, + "thread": 16 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1490207, + "thread": 29 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1759698, + "thread": 25 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 1876017, + "thread": 7 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2029245, + "thread": 1 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2236709, + "thread": 27 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2398193, + "thread": 19 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2496237, + "thread": 14 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2663950, + "thread": 19 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 2880566, + "thread": 6 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 3079863, + "thread": 0 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 3209658, + "thread": 14 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 3313698, + "thread": 9 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 3592923, + "thread": 30 + } + }, + { + "amount": "129.277940067", + "slot": { + "period": 3659562, + "thread": 19 + } + }, + { + "amount": "129.277940057", + "slot": { + "period": 3838379, + "thread": 9 + } + } + ], + "AU12PrNpqKeAdDzavak8QEBc4C4iY38wrmET5bRGptxF9j2YrJ5kG": [ + { + "amount": "96.830371969", + "slot": { + "period": 88950, + "thread": 26 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 240939, + "thread": 5 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 361028, + "thread": 31 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 504180, + "thread": 14 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 766393, + "thread": 11 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 957493, + "thread": 19 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1008750, + "thread": 10 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1231679, + "thread": 19 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1370612, + "thread": 5 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1535292, + "thread": 14 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1682721, + "thread": 22 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 1833102, + "thread": 28 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2050615, + "thread": 12 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2274713, + "thread": 9 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2297516, + "thread": 11 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2558006, + "thread": 10 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2788461, + "thread": 30 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 2876906, + "thread": 29 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 3033480, + "thread": 9 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 3124773, + "thread": 28 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 3433657, + "thread": 24 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 3471456, + "thread": 6 + } + }, + { + "amount": "96.830371969", + "slot": { + "period": 3659756, + "thread": 20 + } + }, + { + "amount": "96.830371967", + "slot": { + "period": 3823547, + "thread": 18 + } + } + ], + "AU12PrseJdLdGEyvpQB2pWeDkRm1hkKRjxHGiBoaJhxpLpE786KBH": [ + { + "amount": "131.560176515", + "slot": { + "period": 163545, + "thread": 18 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 183920, + "thread": 7 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 353118, + "thread": 31 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 594683, + "thread": 10 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 775946, + "thread": 0 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 905405, + "thread": 3 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1086629, + "thread": 28 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1258280, + "thread": 28 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1364079, + "thread": 3 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1497257, + "thread": 7 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1720833, + "thread": 2 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 1945716, + "thread": 17 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2092674, + "thread": 18 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2236699, + "thread": 3 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2431131, + "thread": 29 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2569086, + "thread": 23 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2731521, + "thread": 23 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 2822798, + "thread": 31 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 3058795, + "thread": 17 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 3136220, + "thread": 6 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 3327015, + "thread": 7 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 3609367, + "thread": 24 + } + }, + { + "amount": "131.560176515", + "slot": { + "period": 3770198, + "thread": 29 + } + }, + { + "amount": "131.560176517", + "slot": { + "period": 3840803, + "thread": 29 + } + } + ], + "AU12Ps9DVujhD57KK5STdcUB2HgmriFDehZ1xQdayg66HrskTcu8p": [ + { + "amount": "385.682376948", + "slot": { + "period": 44735, + "thread": 18 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 302444, + "thread": 7 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 425796, + "thread": 4 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 599450, + "thread": 25 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 687291, + "thread": 23 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 976279, + "thread": 26 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1041305, + "thread": 15 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1305005, + "thread": 10 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1326312, + "thread": 21 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1524619, + "thread": 25 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1682560, + "thread": 4 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 1888550, + "thread": 20 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2100057, + "thread": 6 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2230859, + "thread": 12 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2379630, + "thread": 28 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2489814, + "thread": 1 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2728226, + "thread": 18 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 2843791, + "thread": 30 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 3043477, + "thread": 9 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 3277695, + "thread": 4 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 3327119, + "thread": 9 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 3563306, + "thread": 26 + } + }, + { + "amount": "385.682376948", + "slot": { + "period": 3730474, + "thread": 17 + } + }, + { + "amount": "385.682376940", + "slot": { + "period": 3815215, + "thread": 1 + } + } + ], + "AU12PuV3Txht2p8tzyRKay4sSx51VdjR4mc9N4UtPJKPtrFmkP5xv": [ + { + "amount": "133.845838599", + "slot": { + "period": 108694, + "thread": 9 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 306075, + "thread": 1 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 467265, + "thread": 2 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 549599, + "thread": 5 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 782430, + "thread": 31 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 894962, + "thread": 13 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1119340, + "thread": 27 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1299218, + "thread": 24 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1374247, + "thread": 8 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1584321, + "thread": 9 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1685656, + "thread": 1 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 1916644, + "thread": 6 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2021612, + "thread": 12 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2149833, + "thread": 23 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2432358, + "thread": 27 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2528220, + "thread": 20 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2788477, + "thread": 25 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 2912834, + "thread": 3 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 3101249, + "thread": 8 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 3273906, + "thread": 21 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 3328051, + "thread": 6 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 3476620, + "thread": 4 + } + }, + { + "amount": "133.845838599", + "slot": { + "period": 3627772, + "thread": 21 + } + }, + { + "amount": "133.845838605", + "slot": { + "period": 3912737, + "thread": 19 + } + } + ], + "AU12PvPykb8woibXALbBVdtPT6HRyhpbeFbq2o1aDazqdjyY3HHo8": [ + { + "amount": "421.241543086", + "slot": { + "period": 87137, + "thread": 7 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 188489, + "thread": 24 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 445577, + "thread": 25 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 640461, + "thread": 24 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 715579, + "thread": 9 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 953482, + "thread": 8 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1065733, + "thread": 28 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1283839, + "thread": 18 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1476369, + "thread": 28 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1561857, + "thread": 13 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1779267, + "thread": 17 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 1926732, + "thread": 16 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2089708, + "thread": 27 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2231168, + "thread": 24 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2424190, + "thread": 20 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2571839, + "thread": 22 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2755849, + "thread": 15 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 2792970, + "thread": 21 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 3096910, + "thread": 21 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 3212113, + "thread": 20 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 3333758, + "thread": 8 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 3584983, + "thread": 5 + } + }, + { + "amount": "421.241543086", + "slot": { + "period": 3644123, + "thread": 26 + } + }, + { + "amount": "421.241543085", + "slot": { + "period": 3804398, + "thread": 31 + } + } + ], + "AU12Pw6pznMYM16xPSvDJp3tyVEg6rZVpWJu6GtV7ZQnDREVyTNPt": [ + { + "amount": "313.532943327", + "slot": { + "period": 106662, + "thread": 12 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 228252, + "thread": 10 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 347121, + "thread": 4 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 598904, + "thread": 9 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 754594, + "thread": 18 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 921908, + "thread": 21 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1040915, + "thread": 16 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1303842, + "thread": 29 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1350235, + "thread": 24 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1510165, + "thread": 2 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1791562, + "thread": 10 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 1888221, + "thread": 16 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2017445, + "thread": 22 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2290419, + "thread": 16 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2417829, + "thread": 31 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2569661, + "thread": 31 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2729534, + "thread": 16 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 2860477, + "thread": 5 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 3108090, + "thread": 20 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 3151296, + "thread": 13 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 3375818, + "thread": 18 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 3588974, + "thread": 12 + } + }, + { + "amount": "313.532943327", + "slot": { + "period": 3682655, + "thread": 27 + } + }, + { + "amount": "313.532943336", + "slot": { + "period": 3787300, + "thread": 0 + } + } + ], + "AU12PwFmAmLWTqx99rP9pWoEPgB1Noq3qQdVPGYkXNSWRjtxtCH3F": [ + { + "amount": "159.203876359", + "slot": { + "period": 154353, + "thread": 27 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 185715, + "thread": 9 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 398381, + "thread": 18 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 618905, + "thread": 30 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 784246, + "thread": 17 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 889231, + "thread": 1 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1135804, + "thread": 19 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1151950, + "thread": 23 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1380322, + "thread": 24 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1589898, + "thread": 0 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1732613, + "thread": 15 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 1876139, + "thread": 21 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2096973, + "thread": 1 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2241518, + "thread": 30 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2326702, + "thread": 31 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2501922, + "thread": 14 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2711894, + "thread": 3 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 2940973, + "thread": 1 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 3045962, + "thread": 20 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 3280918, + "thread": 3 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 3330669, + "thread": 23 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 3496645, + "thread": 16 + } + }, + { + "amount": "159.203876359", + "slot": { + "period": 3710004, + "thread": 17 + } + }, + { + "amount": "159.203876362", + "slot": { + "period": 3825707, + "thread": 26 + } + } + ], + "AU12PwYZPmyhDYh1dwosPgEngqtm12JKZCUxcnPz7GUkWTswKTJoE": [ + { + "amount": "412.305300848", + "slot": { + "period": 84386, + "thread": 27 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 199555, + "thread": 27 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 471376, + "thread": 26 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 529696, + "thread": 28 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 751563, + "thread": 23 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 905321, + "thread": 12 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1029074, + "thread": 31 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1204948, + "thread": 19 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1372173, + "thread": 16 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1625352, + "thread": 14 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1713118, + "thread": 21 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1859491, + "thread": 10 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 1977798, + "thread": 14 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2209187, + "thread": 8 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2372129, + "thread": 21 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2585371, + "thread": 10 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2667864, + "thread": 16 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2825419, + "thread": 6 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 2972281, + "thread": 15 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 3236248, + "thread": 23 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 3440500, + "thread": 15 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 3452164, + "thread": 18 + } + }, + { + "amount": "412.305300848", + "slot": { + "period": 3658836, + "thread": 1 + } + }, + { + "amount": "412.305300842", + "slot": { + "period": 3891780, + "thread": 6 + } + } + ], + "AU12PwjcNcnCTfbpXVn9QJMfgpvayTV4367KVzXmEwCsiaGhZFe4K": [ + { + "amount": "143.161946147", + "slot": { + "period": 155201, + "thread": 24 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 186508, + "thread": 28 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 341200, + "thread": 26 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 610225, + "thread": 9 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 679740, + "thread": 12 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 943678, + "thread": 12 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1111446, + "thread": 10 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1292975, + "thread": 0 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1317624, + "thread": 13 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1595476, + "thread": 2 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1698992, + "thread": 29 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 1878391, + "thread": 31 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2030617, + "thread": 10 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2251254, + "thread": 20 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2346208, + "thread": 10 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2486320, + "thread": 7 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2705890, + "thread": 2 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2921711, + "thread": 21 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 2961806, + "thread": 15 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 3262831, + "thread": 14 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 3397915, + "thread": 0 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 3553014, + "thread": 16 + } + }, + { + "amount": "143.161946147", + "slot": { + "period": 3764133, + "thread": 22 + } + }, + { + "amount": "143.161946146", + "slot": { + "period": 3827080, + "thread": 28 + } + } + ], + "AU12PxD3A7LZejdXqPQa8NU4vHaPxMpFDtWBwTD3x8AJAxgr1Ekyb": [ + { + "amount": "96.139509072", + "slot": { + "period": 136980, + "thread": 27 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 317248, + "thread": 17 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 385046, + "thread": 6 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 584010, + "thread": 26 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 677404, + "thread": 18 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 883841, + "thread": 27 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1003330, + "thread": 26 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1249544, + "thread": 3 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1454669, + "thread": 23 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1554545, + "thread": 20 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1781465, + "thread": 28 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 1914169, + "thread": 7 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2040556, + "thread": 26 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2246413, + "thread": 22 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2324272, + "thread": 9 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2602672, + "thread": 18 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2769702, + "thread": 22 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 2798342, + "thread": 14 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 3008465, + "thread": 31 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 3140284, + "thread": 11 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 3295116, + "thread": 24 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 3550820, + "thread": 8 + } + }, + { + "amount": "96.139509072", + "slot": { + "period": 3736323, + "thread": 5 + } + }, + { + "amount": "96.139509070", + "slot": { + "period": 3894364, + "thread": 23 + } + } + ], + "AU12Pxn2QioKoFsw1Xi5g9PvJ2trR2PJnLsRFcmGjEhDceyP1GdvR": [ + { + "amount": "488.875100583", + "slot": { + "period": 118093, + "thread": 9 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 296417, + "thread": 19 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 376144, + "thread": 1 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 555101, + "thread": 18 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 688303, + "thread": 23 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 955912, + "thread": 17 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1127668, + "thread": 24 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1238781, + "thread": 0 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1433427, + "thread": 0 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1620937, + "thread": 18 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1756032, + "thread": 18 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 1842751, + "thread": 14 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2138692, + "thread": 18 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2205658, + "thread": 30 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2429737, + "thread": 23 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2466293, + "thread": 21 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2743007, + "thread": 8 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 2921311, + "thread": 30 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 3108287, + "thread": 24 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 3232712, + "thread": 20 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 3425802, + "thread": 6 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 3538778, + "thread": 27 + } + }, + { + "amount": "488.875100583", + "slot": { + "period": 3707693, + "thread": 18 + } + }, + { + "amount": "488.875100586", + "slot": { + "period": 3879956, + "thread": 23 + } + } + ], + "AU12PycFdYmvN6uhFs5BmiRW4HqYhdJcSYNMY9CK884kB6P3pvmET": [ + { + "amount": "87.914956316", + "slot": { + "period": 99033, + "thread": 24 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 201476, + "thread": 30 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 452335, + "thread": 6 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 583409, + "thread": 22 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 799336, + "thread": 22 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 839741, + "thread": 26 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1148472, + "thread": 28 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1222538, + "thread": 7 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1362588, + "thread": 12 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1585896, + "thread": 2 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1707106, + "thread": 10 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 1868253, + "thread": 28 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2084642, + "thread": 20 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2155320, + "thread": 5 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2426075, + "thread": 10 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2588557, + "thread": 30 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2631718, + "thread": 18 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2807587, + "thread": 22 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 2996952, + "thread": 13 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 3241120, + "thread": 15 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 3346049, + "thread": 12 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 3450687, + "thread": 7 + } + }, + { + "amount": "87.914956316", + "slot": { + "period": 3734729, + "thread": 1 + } + }, + { + "amount": "87.914956321", + "slot": { + "period": 3908912, + "thread": 28 + } + } + ], + "AU12Pz3BPa735AEKZ7pRYGTpJshG5bxSMNFfeneRU5VCXQHhGHLQq": [ + { + "amount": "154.669225908", + "slot": { + "period": 151727, + "thread": 10 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 290368, + "thread": 8 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 346507, + "thread": 28 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 537018, + "thread": 3 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 686344, + "thread": 16 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 952159, + "thread": 22 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1025948, + "thread": 17 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1233942, + "thread": 4 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1472385, + "thread": 31 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1554749, + "thread": 6 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1804284, + "thread": 0 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 1939471, + "thread": 18 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2020443, + "thread": 2 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2289190, + "thread": 10 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2376538, + "thread": 28 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2615809, + "thread": 27 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2747198, + "thread": 6 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 2870487, + "thread": 15 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 3090085, + "thread": 31 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 3175318, + "thread": 11 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 3438885, + "thread": 14 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 3603975, + "thread": 17 + } + }, + { + "amount": "154.669225908", + "slot": { + "period": 3755585, + "thread": 24 + } + }, + { + "amount": "154.669225900", + "slot": { + "period": 3862005, + "thread": 23 + } + } + ], + "AU12PzTXAgtGX7bd2mLRj6T4FkHqDhaLEBGDyi4W7pSdDTJefw1gf": [ + { + "amount": "355.667922868", + "slot": { + "period": 111566, + "thread": 24 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 225764, + "thread": 23 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 409909, + "thread": 6 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 627111, + "thread": 17 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 726673, + "thread": 30 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 982159, + "thread": 27 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 997024, + "thread": 15 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 1210353, + "thread": 7 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 1319144, + "thread": 29 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 1508315, + "thread": 19 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 1683036, + "thread": 25 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 1860941, + "thread": 2 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2074291, + "thread": 28 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2151574, + "thread": 15 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2306944, + "thread": 1 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2495548, + "thread": 27 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2681176, + "thread": 6 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 2873812, + "thread": 5 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 3098547, + "thread": 26 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 3207431, + "thread": 23 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 3291283, + "thread": 13 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 3545396, + "thread": 26 + } + }, + { + "amount": "355.667922868", + "slot": { + "period": 3656908, + "thread": 6 + } + }, + { + "amount": "355.667922880", + "slot": { + "period": 3793529, + "thread": 23 + } + } + ], + "AU12Q1D3hgxZS9fn8WmRk11LneXihsWrTS29SmhqHqptvEkTyie5Q": [ + { + "amount": "245.176956214", + "slot": { + "period": 90386, + "thread": 6 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 313568, + "thread": 24 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 359736, + "thread": 31 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 621477, + "thread": 10 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 788816, + "thread": 29 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 871621, + "thread": 29 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1089878, + "thread": 23 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1294915, + "thread": 22 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1431358, + "thread": 10 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1598525, + "thread": 6 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1735606, + "thread": 16 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 1959205, + "thread": 25 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2136389, + "thread": 3 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2175235, + "thread": 30 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2437907, + "thread": 31 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2586921, + "thread": 24 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2671004, + "thread": 15 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 2873014, + "thread": 2 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 3034279, + "thread": 29 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 3243760, + "thread": 10 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 3449768, + "thread": 7 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 3546432, + "thread": 15 + } + }, + { + "amount": "245.176956214", + "slot": { + "period": 3644176, + "thread": 22 + } + }, + { + "amount": "245.176956212", + "slot": { + "period": 3851831, + "thread": 24 + } + } + ], + "AU12Q1wozSedUN1YzeP2ax2iNJQiTrbSWhyb7gea2TL9t11qT6Bxs": [ + { + "amount": "227.874598863", + "slot": { + "period": 20014, + "thread": 2 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 218031, + "thread": 25 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 479046, + "thread": 14 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 520187, + "thread": 3 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 754895, + "thread": 8 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 961592, + "thread": 6 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1039682, + "thread": 17 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1207759, + "thread": 21 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1470082, + "thread": 28 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1509126, + "thread": 6 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1790816, + "thread": 10 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 1854387, + "thread": 5 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2092618, + "thread": 29 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2187922, + "thread": 6 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2396933, + "thread": 10 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2511689, + "thread": 15 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2651857, + "thread": 18 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2845687, + "thread": 8 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 2984645, + "thread": 24 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 3267813, + "thread": 10 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 3405425, + "thread": 7 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 3475382, + "thread": 15 + } + }, + { + "amount": "227.874598863", + "slot": { + "period": 3695862, + "thread": 5 + } + }, + { + "amount": "227.874598870", + "slot": { + "period": 3947185, + "thread": 22 + } + } + ], + "AU12Q2DfrVUA8czbn9fYZbbtfcrpnHAPuwKhoCXsjbQXmYVji3c7Z": [ + { + "amount": "592.553105035", + "slot": { + "period": 127104, + "thread": 3 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 321000, + "thread": 7 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 487764, + "thread": 27 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 575841, + "thread": 31 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 756991, + "thread": 27 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 919546, + "thread": 6 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1048374, + "thread": 23 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1169771, + "thread": 24 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1412157, + "thread": 15 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1602358, + "thread": 5 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1673741, + "thread": 22 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 1827134, + "thread": 20 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2136491, + "thread": 2 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2213813, + "thread": 21 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2446549, + "thread": 3 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2560338, + "thread": 29 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2743777, + "thread": 12 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 2840059, + "thread": 11 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 3019034, + "thread": 22 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 3134363, + "thread": 1 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 3398672, + "thread": 7 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 3574710, + "thread": 3 + } + }, + { + "amount": "592.553105035", + "slot": { + "period": 3757963, + "thread": 9 + } + }, + { + "amount": "592.553105032", + "slot": { + "period": 3934352, + "thread": 24 + } + } + ], + "AU12Q3Q21v8JLg3Twhs2dpe2oy9QYhA85EGXTDRW29WXdWbR71dyy": [ + { + "amount": "413.413941910", + "slot": { + "period": 127224, + "thread": 3 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 175092, + "thread": 3 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 327942, + "thread": 13 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 638108, + "thread": 2 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 815103, + "thread": 28 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 881872, + "thread": 18 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1112378, + "thread": 21 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1281795, + "thread": 28 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1372828, + "thread": 15 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1638810, + "thread": 1 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1754832, + "thread": 16 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 1844479, + "thread": 17 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2051393, + "thread": 0 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2249316, + "thread": 29 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2317645, + "thread": 8 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2495918, + "thread": 21 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2759473, + "thread": 27 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 2885709, + "thread": 25 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 3005180, + "thread": 21 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 3266602, + "thread": 28 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 3413961, + "thread": 31 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 3451370, + "thread": 4 + } + }, + { + "amount": "413.413941910", + "slot": { + "period": 3636050, + "thread": 16 + } + }, + { + "amount": "413.413941915", + "slot": { + "period": 3887328, + "thread": 17 + } + } + ], + "AU12Q3Ys2BcqNgX3vneLDeawBZ9oZbxhXCfDufvF2spE2JtUYSNq5": [ + { + "amount": "354.321541961", + "slot": { + "period": 16691, + "thread": 26 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 231896, + "thread": 28 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 389899, + "thread": 4 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 629274, + "thread": 13 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 776425, + "thread": 14 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 949392, + "thread": 9 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1021303, + "thread": 4 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1261284, + "thread": 11 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1387435, + "thread": 8 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1483207, + "thread": 30 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1663030, + "thread": 4 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 1831384, + "thread": 15 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2035298, + "thread": 5 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2198194, + "thread": 10 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2319398, + "thread": 14 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2580156, + "thread": 28 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2654856, + "thread": 24 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 2944075, + "thread": 21 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 3013163, + "thread": 11 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 3265825, + "thread": 8 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 3320019, + "thread": 1 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 3459644, + "thread": 23 + } + }, + { + "amount": "354.321541961", + "slot": { + "period": 3732774, + "thread": 3 + } + }, + { + "amount": "354.321541966", + "slot": { + "period": 3862811, + "thread": 6 + } + } + ], + "AU12Q3bfBSpb2nq45gHALeXEpisCVHhsZo5k1eWBM7svrVFchPwtW": [ + { + "amount": "290.382079955", + "slot": { + "period": 52274, + "thread": 16 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 182079, + "thread": 18 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 375368, + "thread": 3 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 561860, + "thread": 22 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 714341, + "thread": 21 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 899931, + "thread": 25 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 990797, + "thread": 19 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 1222852, + "thread": 7 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 1472613, + "thread": 12 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 1587937, + "thread": 13 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 1734840, + "thread": 21 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 1891471, + "thread": 30 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2142271, + "thread": 11 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2223594, + "thread": 17 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2320235, + "thread": 17 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2506170, + "thread": 17 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2740554, + "thread": 5 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 2870244, + "thread": 23 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3095679, + "thread": 14 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3174371, + "thread": 5 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3355393, + "thread": 7 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3557136, + "thread": 22 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3679293, + "thread": 28 + } + }, + { + "amount": "290.382079955", + "slot": { + "period": 3820412, + "thread": 10 + } + } + ], + "AU12Q52ThoQtxSfGSMR7YTfTRdUhATxgvEE8mjKxHVt4EmmCDJyga": [ + { + "amount": "175.118077611", + "slot": { + "period": 55559, + "thread": 11 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 213208, + "thread": 11 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 389766, + "thread": 31 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 573095, + "thread": 18 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 777039, + "thread": 17 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 940634, + "thread": 21 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1120791, + "thread": 4 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1298609, + "thread": 13 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1430763, + "thread": 14 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1512305, + "thread": 28 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1776629, + "thread": 21 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 1810932, + "thread": 30 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2063740, + "thread": 24 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2186224, + "thread": 25 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2310556, + "thread": 17 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2591958, + "thread": 23 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2686240, + "thread": 23 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 2887267, + "thread": 28 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 3048952, + "thread": 5 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 3230322, + "thread": 5 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 3353519, + "thread": 27 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 3599617, + "thread": 29 + } + }, + { + "amount": "175.118077611", + "slot": { + "period": 3732126, + "thread": 6 + } + }, + { + "amount": "175.118077605", + "slot": { + "period": 3864379, + "thread": 17 + } + } + ], + "AU12Q5yQ4EN46ZX6JwYJsUveCx8H3szGNY6K4V1DbTbtL6msVwck": [ + { + "amount": "202.800291018", + "slot": { + "period": 117476, + "thread": 13 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 193360, + "thread": 18 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 358573, + "thread": 10 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 497823, + "thread": 1 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 788906, + "thread": 16 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 841318, + "thread": 30 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1029107, + "thread": 26 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1293109, + "thread": 16 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1367100, + "thread": 28 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1538573, + "thread": 8 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1792326, + "thread": 9 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 1862325, + "thread": 31 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2000763, + "thread": 21 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2148413, + "thread": 21 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2384203, + "thread": 10 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2475988, + "thread": 8 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2752009, + "thread": 29 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 2867294, + "thread": 16 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 3010574, + "thread": 15 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 3210792, + "thread": 8 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 3344791, + "thread": 15 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 3540903, + "thread": 3 + } + }, + { + "amount": "202.800291018", + "slot": { + "period": 3716996, + "thread": 30 + } + }, + { + "amount": "202.800291008", + "slot": { + "period": 3884922, + "thread": 19 + } + } + ], + "AU12Q6gjrqvzkwLQU6ug6qpH2ByrH5wxHvn89aJq3QevmSf18fxaa": [ + { + "amount": "238.704265424", + "slot": { + "period": 95917, + "thread": 15 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 255513, + "thread": 18 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 473282, + "thread": 9 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 567826, + "thread": 20 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 759251, + "thread": 14 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 830967, + "thread": 9 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1017521, + "thread": 22 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1236489, + "thread": 18 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1386249, + "thread": 15 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1597900, + "thread": 27 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1676626, + "thread": 16 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 1897214, + "thread": 18 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2109836, + "thread": 22 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2167213, + "thread": 24 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2462235, + "thread": 9 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2563393, + "thread": 20 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2751665, + "thread": 22 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 2889465, + "thread": 16 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 3000538, + "thread": 17 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 3211847, + "thread": 25 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 3447795, + "thread": 31 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 3463228, + "thread": 10 + } + }, + { + "amount": "238.704265424", + "slot": { + "period": 3633554, + "thread": 1 + } + }, + { + "amount": "238.704265429", + "slot": { + "period": 3806887, + "thread": 23 + } + } + ], + "AU12Q6oXWqpTaPekfDxdMHsRZikHZwqAAoSMSPUBhzH98zuVK5wR": [ + { + "amount": "388.796933232", + "slot": { + "period": 75454, + "thread": 1 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 219517, + "thread": 1 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 391934, + "thread": 15 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 540260, + "thread": 1 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 702825, + "thread": 8 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 967407, + "thread": 20 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 987752, + "thread": 17 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 1296563, + "thread": 6 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 1393023, + "thread": 20 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 1585284, + "thread": 31 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 1700254, + "thread": 12 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 1823723, + "thread": 11 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2107072, + "thread": 22 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2220431, + "thread": 11 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2302195, + "thread": 0 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2600280, + "thread": 4 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2781386, + "thread": 17 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2874296, + "thread": 28 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 2972088, + "thread": 8 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 3126074, + "thread": 22 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 3355401, + "thread": 13 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 3555806, + "thread": 0 + } + }, + { + "amount": "388.796933232", + "slot": { + "period": 3750927, + "thread": 9 + } + }, + { + "amount": "388.796933242", + "slot": { + "period": 3852107, + "thread": 21 + } + } + ], + "AU12Q73Sdarb3QFkYVN8AFTygo4Qs4JPqjHXsogk7rcn5CHhpAMd8": [ + { + "amount": "110.181090870", + "slot": { + "period": 146517, + "thread": 4 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 222390, + "thread": 19 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 337188, + "thread": 1 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 553816, + "thread": 30 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 683769, + "thread": 1 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 858603, + "thread": 12 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 984771, + "thread": 4 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 1182157, + "thread": 9 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 1434206, + "thread": 8 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 1501021, + "thread": 10 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 1764888, + "thread": 0 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 1875149, + "thread": 19 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2041854, + "thread": 10 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2177218, + "thread": 27 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2419862, + "thread": 24 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2599580, + "thread": 14 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2768826, + "thread": 7 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 2805547, + "thread": 15 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 3099703, + "thread": 11 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 3141204, + "thread": 30 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 3307681, + "thread": 24 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 3481095, + "thread": 14 + } + }, + { + "amount": "110.181090870", + "slot": { + "period": 3643917, + "thread": 9 + } + }, + { + "amount": "110.181090873", + "slot": { + "period": 3882769, + "thread": 10 + } + } + ], + "AU12Q7H8pn81sbkizeotr2dyxkrq7yRGaF12hz5CBbL4LdW2QuPib": [ + { + "amount": "2916.666666667", + "slot": { + "period": 38729, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 315020, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 459594, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 530544, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 715434, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 976891, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1135621, + "thread": 27 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1157978, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1433078, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1521334, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1748963, + "thread": 30 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1956570, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2055055, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2193753, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2364265, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2496143, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2756039, + "thread": 30 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2796570, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3101660, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3161629, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3382006, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3479302, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3624613, + "thread": 2 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3846035, + "thread": 25 + } + } + ], + "AU12Q7Ymw7qS95WPoEzdvpu98Tu3RBc9x27u6ikkqug8LhooBC4fb": [ + { + "amount": "280.428308177", + "slot": { + "period": 115274, + "thread": 10 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 225488, + "thread": 17 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 381648, + "thread": 14 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 631986, + "thread": 4 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 769354, + "thread": 3 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 859136, + "thread": 0 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1007056, + "thread": 6 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1161525, + "thread": 11 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1361547, + "thread": 19 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1549601, + "thread": 23 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1734200, + "thread": 10 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1902135, + "thread": 26 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 1995566, + "thread": 31 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 2245553, + "thread": 29 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 2440206, + "thread": 27 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 2517619, + "thread": 15 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 2676176, + "thread": 21 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 2919376, + "thread": 0 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 3083522, + "thread": 6 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 3240091, + "thread": 30 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 3406143, + "thread": 6 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 3524378, + "thread": 8 + } + }, + { + "amount": "280.428308177", + "slot": { + "period": 3618342, + "thread": 1 + } + }, + { + "amount": "280.428308183", + "slot": { + "period": 3908360, + "thread": 15 + } + } + ], + "AU12Q8UL3nyw3EV8ywqcHLAjimMuqmQRrwMiWNpGstePvBK4h8bQb": [ + { + "amount": "432.367740785", + "slot": { + "period": 17356, + "thread": 5 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 181775, + "thread": 27 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 347969, + "thread": 21 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 512106, + "thread": 30 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 755454, + "thread": 21 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 840224, + "thread": 11 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1003398, + "thread": 4 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1235925, + "thread": 0 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1476217, + "thread": 8 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1622856, + "thread": 10 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1697962, + "thread": 21 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 1905851, + "thread": 14 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2050139, + "thread": 18 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2238820, + "thread": 24 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2458580, + "thread": 13 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2578696, + "thread": 5 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2672552, + "thread": 5 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 2952189, + "thread": 27 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 3105090, + "thread": 6 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 3253606, + "thread": 21 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 3392795, + "thread": 22 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 3527874, + "thread": 19 + } + }, + { + "amount": "432.367740785", + "slot": { + "period": 3764527, + "thread": 25 + } + }, + { + "amount": "432.367740783", + "slot": { + "period": 3876688, + "thread": 12 + } + } + ], + "AU12Q8eCJPZ4CpmFjxWdvrZSFBAbTcjJwFJHiNTmRdjJe193rLf77": [ + { + "amount": "730.142467824", + "slot": { + "period": 66897, + "thread": 31 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 291934, + "thread": 12 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 377190, + "thread": 2 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 551620, + "thread": 27 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 727305, + "thread": 22 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 906461, + "thread": 23 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1073493, + "thread": 30 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1281592, + "thread": 2 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1409342, + "thread": 18 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1531898, + "thread": 26 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1800406, + "thread": 17 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 1814269, + "thread": 17 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2020323, + "thread": 8 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2247885, + "thread": 3 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2302250, + "thread": 19 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2509257, + "thread": 14 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2781405, + "thread": 18 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 2843492, + "thread": 19 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 3092605, + "thread": 7 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 3262696, + "thread": 5 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 3288605, + "thread": 3 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 3590086, + "thread": 7 + } + }, + { + "amount": "730.142467824", + "slot": { + "period": 3684209, + "thread": 23 + } + }, + { + "amount": "730.142467836", + "slot": { + "period": 3856703, + "thread": 3 + } + } + ], + "AU12Q97bpdToNh8VMrcMgjC7JqG7ZS258X9N8FeRzuRAYceBGef8": [ + { + "amount": "65.797828036", + "slot": { + "period": 13577, + "thread": 9 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 230929, + "thread": 12 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 359261, + "thread": 24 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 609639, + "thread": 13 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 755390, + "thread": 17 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 892242, + "thread": 17 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1027541, + "thread": 18 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1289974, + "thread": 18 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1338779, + "thread": 15 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1575431, + "thread": 16 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1698593, + "thread": 31 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 1890335, + "thread": 11 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2084271, + "thread": 21 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2198635, + "thread": 29 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2320435, + "thread": 17 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2510309, + "thread": 26 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2655805, + "thread": 19 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2860629, + "thread": 1 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 2968611, + "thread": 29 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 3264221, + "thread": 3 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 3414251, + "thread": 3 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 3510388, + "thread": 31 + } + }, + { + "amount": "65.797828036", + "slot": { + "period": 3668932, + "thread": 24 + } + }, + { + "amount": "65.797828030", + "slot": { + "period": 3781376, + "thread": 16 + } + } + ], + "AU12Q9Hf3QmtuGvGw4nC3aq53hBUtWBcvXJfdSpxe1DHhxyNKQadT": [ + { + "amount": "554.662649263", + "slot": { + "period": 27101, + "thread": 10 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 259236, + "thread": 19 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 337363, + "thread": 28 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 500633, + "thread": 15 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 732953, + "thread": 5 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 898362, + "thread": 15 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1061650, + "thread": 21 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1289766, + "thread": 24 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1341715, + "thread": 30 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1630280, + "thread": 2 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1677029, + "thread": 7 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 1837062, + "thread": 2 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2115484, + "thread": 27 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2237285, + "thread": 11 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2349149, + "thread": 8 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2585878, + "thread": 14 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2675169, + "thread": 8 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 2804679, + "thread": 18 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 3001213, + "thread": 17 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 3255221, + "thread": 11 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 3331188, + "thread": 20 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 3479327, + "thread": 5 + } + }, + { + "amount": "554.662649263", + "slot": { + "period": 3632274, + "thread": 20 + } + }, + { + "amount": "554.662649273", + "slot": { + "period": 3789095, + "thread": 15 + } + } + ], + "AU12Q9qWDg85Ka5wKES8Fx3minobJCJgjgmwyPNe2SWgpTzoyNNA": [ + { + "amount": "126.493525209", + "slot": { + "period": 35789, + "thread": 29 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 309897, + "thread": 6 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 421518, + "thread": 31 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 601969, + "thread": 17 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 746345, + "thread": 1 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 829399, + "thread": 26 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1058749, + "thread": 19 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1205469, + "thread": 24 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1344649, + "thread": 23 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1643952, + "thread": 30 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1671969, + "thread": 20 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 1972636, + "thread": 11 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2000392, + "thread": 12 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2161223, + "thread": 25 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2403354, + "thread": 10 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2576958, + "thread": 17 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2654065, + "thread": 1 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2795790, + "thread": 12 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 2967786, + "thread": 20 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 3216581, + "thread": 9 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 3390971, + "thread": 27 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 3530853, + "thread": 10 + } + }, + { + "amount": "126.493525209", + "slot": { + "period": 3692610, + "thread": 18 + } + }, + { + "amount": "126.493525218", + "slot": { + "period": 3904328, + "thread": 31 + } + } + ], + "AU12QAHy5J8GtGGKLtNCBXhaRQykJ28SrfunbmcRUDwPptpXaMoV1": [ + { + "amount": "144.731019327", + "slot": { + "period": 153470, + "thread": 18 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 294304, + "thread": 7 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 336337, + "thread": 3 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 495809, + "thread": 29 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 749195, + "thread": 6 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 971872, + "thread": 3 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1092883, + "thread": 11 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1254179, + "thread": 19 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1471532, + "thread": 20 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1532803, + "thread": 0 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1747755, + "thread": 2 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1891737, + "thread": 7 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 1978648, + "thread": 2 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 2292678, + "thread": 6 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 2408793, + "thread": 10 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 2529142, + "thread": 9 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 2779026, + "thread": 12 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 2939577, + "thread": 12 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 3007196, + "thread": 1 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 3179819, + "thread": 25 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 3320154, + "thread": 23 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 3601951, + "thread": 27 + } + }, + { + "amount": "144.731019327", + "slot": { + "period": 3715568, + "thread": 20 + } + }, + { + "amount": "144.731019322", + "slot": { + "period": 3826243, + "thread": 28 + } + } + ], + "AU12QAVnwKM7m8pPpVZGPza9bwgC5PRJp2dAWCdaN4z57ay1vtYnH": [ + { + "amount": "54.071977930", + "slot": { + "period": 75754, + "thread": 14 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 310258, + "thread": 27 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 403219, + "thread": 8 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 619251, + "thread": 27 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 784389, + "thread": 1 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 965393, + "thread": 31 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1103888, + "thread": 22 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1258863, + "thread": 7 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1365098, + "thread": 25 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1621111, + "thread": 8 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1726621, + "thread": 16 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 1857038, + "thread": 6 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2106674, + "thread": 21 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2223061, + "thread": 0 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2299085, + "thread": 29 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2539371, + "thread": 31 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2746706, + "thread": 26 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 2845654, + "thread": 31 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 3042921, + "thread": 4 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 3250346, + "thread": 24 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 3381273, + "thread": 2 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 3502098, + "thread": 30 + } + }, + { + "amount": "54.071977930", + "slot": { + "period": 3775927, + "thread": 27 + } + }, + { + "amount": "54.071977925", + "slot": { + "period": 3822781, + "thread": 29 + } + } + ], + "AU12QAzihr19movFCDMz4Pft7ie77qyLsZHq4Fua3RcpjUUKoBSEE": [ + { + "amount": "95.546547926", + "slot": { + "period": 47186, + "thread": 31 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 290464, + "thread": 12 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 393478, + "thread": 27 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 633417, + "thread": 17 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 659287, + "thread": 18 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 875037, + "thread": 30 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1009509, + "thread": 25 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1266414, + "thread": 25 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1360717, + "thread": 4 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1492191, + "thread": 23 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1776764, + "thread": 25 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 1854127, + "thread": 9 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2114484, + "thread": 14 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2201252, + "thread": 26 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2336196, + "thread": 22 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2524537, + "thread": 9 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2708357, + "thread": 2 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 2890502, + "thread": 14 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 3107816, + "thread": 19 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 3259235, + "thread": 26 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 3393764, + "thread": 0 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 3593943, + "thread": 18 + } + }, + { + "amount": "95.546547926", + "slot": { + "period": 3742546, + "thread": 23 + } + }, + { + "amount": "95.546547925", + "slot": { + "period": 3830563, + "thread": 3 + } + } + ], + "AU12QBjHeznyuMjbWDx3y6UVXbQSfTXEEBFbPjYu6bSF2WnfkJqbr": [ + { + "amount": "323.363970370", + "slot": { + "period": 37782, + "thread": 26 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 171886, + "thread": 30 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 373129, + "thread": 12 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 559173, + "thread": 31 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 693270, + "thread": 30 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 973817, + "thread": 12 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1062179, + "thread": 14 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1198294, + "thread": 15 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1427562, + "thread": 6 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1616462, + "thread": 22 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1738421, + "thread": 19 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 1876642, + "thread": 9 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2074300, + "thread": 23 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2166502, + "thread": 27 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2447792, + "thread": 3 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2489777, + "thread": 8 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2680599, + "thread": 13 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2826845, + "thread": 21 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 2985495, + "thread": 23 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 3166370, + "thread": 15 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 3383886, + "thread": 22 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 3575797, + "thread": 8 + } + }, + { + "amount": "323.363970370", + "slot": { + "period": 3777362, + "thread": 16 + } + }, + { + "amount": "323.363970371", + "slot": { + "period": 3808062, + "thread": 3 + } + } + ], + "AU12QBqSE8451nrFkuDqecxg9qFVSVGDdPPYDk5ZBKnu2Fdj1i8dV": [ + { + "amount": "110.496970466", + "slot": { + "period": 130701, + "thread": 27 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 235092, + "thread": 24 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 372668, + "thread": 12 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 609216, + "thread": 2 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 819599, + "thread": 5 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 948998, + "thread": 16 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1071456, + "thread": 30 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1248375, + "thread": 29 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1403082, + "thread": 24 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1613928, + "thread": 31 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1722528, + "thread": 20 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 1809700, + "thread": 25 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2009352, + "thread": 5 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2265260, + "thread": 26 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2363497, + "thread": 0 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2587877, + "thread": 15 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2760941, + "thread": 10 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 2803362, + "thread": 7 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 3053942, + "thread": 4 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 3177325, + "thread": 14 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 3332326, + "thread": 10 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 3547423, + "thread": 22 + } + }, + { + "amount": "110.496970466", + "slot": { + "period": 3734229, + "thread": 15 + } + }, + { + "amount": "110.496970467", + "slot": { + "period": 3784436, + "thread": 3 + } + } + ], + "AU12QCLSB1oVGDZNJLU4MWLjSU3ppxpFraL2fM9Qj8y414AED3o65": [ + { + "amount": "173.658420094", + "slot": { + "period": 68676, + "thread": 23 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 278761, + "thread": 5 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 402168, + "thread": 30 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 568796, + "thread": 2 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 711270, + "thread": 28 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 875195, + "thread": 6 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1006861, + "thread": 14 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1290040, + "thread": 23 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1325403, + "thread": 27 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1480822, + "thread": 6 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1690514, + "thread": 29 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 1930015, + "thread": 30 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2112466, + "thread": 7 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2154937, + "thread": 20 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2307540, + "thread": 20 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2610821, + "thread": 2 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2772952, + "thread": 19 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2836580, + "thread": 26 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 2992208, + "thread": 13 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 3276057, + "thread": 26 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 3394342, + "thread": 18 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 3460836, + "thread": 0 + } + }, + { + "amount": "173.658420094", + "slot": { + "period": 3746986, + "thread": 28 + } + }, + { + "amount": "173.658420089", + "slot": { + "period": 3939744, + "thread": 23 + } + } + ], + "AU12QCWcqLrwmgJSsFpqiBPFq727XcjkNn91YmiyfmMd4pZtvfgSA": [ + { + "amount": "558.891529129", + "slot": { + "period": 24200, + "thread": 17 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 185768, + "thread": 3 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 380091, + "thread": 11 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 601546, + "thread": 0 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 662611, + "thread": 13 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 914743, + "thread": 23 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1016572, + "thread": 1 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1289685, + "thread": 27 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1464212, + "thread": 25 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1513955, + "thread": 14 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1720407, + "thread": 3 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 1884144, + "thread": 23 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2022664, + "thread": 11 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2271923, + "thread": 22 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2419702, + "thread": 1 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2598909, + "thread": 17 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2638031, + "thread": 16 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 2928511, + "thread": 8 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 3111562, + "thread": 14 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 3170957, + "thread": 24 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 3363857, + "thread": 25 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 3519426, + "thread": 11 + } + }, + { + "amount": "558.891529129", + "slot": { + "period": 3715527, + "thread": 12 + } + }, + { + "amount": "558.891529128", + "slot": { + "period": 3931823, + "thread": 8 + } + } + ], + "AU12QCt27MB7ptHp6yENa74QhcG3X2Byan34aXdpdqbM33VwyTzJ3": [ + { + "amount": "334.799432227", + "slot": { + "period": 165572, + "thread": 14 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 185859, + "thread": 23 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 339034, + "thread": 11 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 496431, + "thread": 29 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 699901, + "thread": 26 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 925890, + "thread": 31 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1118672, + "thread": 24 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1165602, + "thread": 30 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1412796, + "thread": 11 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1549116, + "thread": 14 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1722165, + "thread": 17 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 1917939, + "thread": 15 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2047841, + "thread": 21 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2239775, + "thread": 14 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2392276, + "thread": 13 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2598288, + "thread": 7 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2763534, + "thread": 13 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 2856955, + "thread": 12 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 3047974, + "thread": 1 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 3258618, + "thread": 2 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 3442670, + "thread": 8 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 3457899, + "thread": 22 + } + }, + { + "amount": "334.799432227", + "slot": { + "period": 3632308, + "thread": 30 + } + }, + { + "amount": "334.799432222", + "slot": { + "period": 3798250, + "thread": 8 + } + } + ], + "AU12QDdVq1VgZfCW3FP617D7qspc9Qww2KKMGebvKaAo3AyR2KVdZ": [ + { + "amount": "326.750865952", + "slot": { + "period": 47555, + "thread": 25 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 261421, + "thread": 5 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 470515, + "thread": 29 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 604624, + "thread": 11 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 751890, + "thread": 29 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 902081, + "thread": 12 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1026160, + "thread": 9 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1189568, + "thread": 3 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1447645, + "thread": 31 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1570910, + "thread": 0 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1765497, + "thread": 2 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 1832336, + "thread": 31 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2000234, + "thread": 15 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2274549, + "thread": 14 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2351520, + "thread": 20 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2478376, + "thread": 20 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2757906, + "thread": 5 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2893474, + "thread": 15 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 2957507, + "thread": 5 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 3234930, + "thread": 12 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 3354106, + "thread": 17 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 3508274, + "thread": 12 + } + }, + { + "amount": "326.750865952", + "slot": { + "period": 3647581, + "thread": 31 + } + }, + { + "amount": "326.750865960", + "slot": { + "period": 3823106, + "thread": 8 + } + } + ], + "AU12QDqSdfWJsx9CXPzeKQtYwkgkqF3wFHfsCctaS7r6vgmVHMgUL": [ + { + "amount": "140.512914464", + "slot": { + "period": 28596, + "thread": 29 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 261405, + "thread": 7 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 439839, + "thread": 4 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 504991, + "thread": 29 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 797070, + "thread": 0 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 866482, + "thread": 9 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1121133, + "thread": 21 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1188877, + "thread": 28 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1330644, + "thread": 3 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1632906, + "thread": 10 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1704170, + "thread": 14 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 1892299, + "thread": 31 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2079630, + "thread": 11 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2149971, + "thread": 2 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2393094, + "thread": 7 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2576070, + "thread": 26 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2633225, + "thread": 5 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 2878464, + "thread": 26 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 3012346, + "thread": 20 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 3288567, + "thread": 19 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 3377903, + "thread": 12 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 3469745, + "thread": 23 + } + }, + { + "amount": "140.512914464", + "slot": { + "period": 3630050, + "thread": 28 + } + }, + { + "amount": "140.512914454", + "slot": { + "period": 3798483, + "thread": 17 + } + } + ], + "AU12QE6vnbnC1Tv2afBV2L8fVaBz7E8BsTr8n9EyPpU3RRVHGK9gW": [ + { + "amount": "327.876518170", + "slot": { + "period": 91285, + "thread": 17 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 207793, + "thread": 13 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 349060, + "thread": 15 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 576901, + "thread": 8 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 689272, + "thread": 20 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 884315, + "thread": 26 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1109470, + "thread": 3 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1257534, + "thread": 24 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1327259, + "thread": 29 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1582715, + "thread": 2 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1653629, + "thread": 3 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1834448, + "thread": 16 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 1998334, + "thread": 22 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 2251911, + "thread": 23 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 2448824, + "thread": 17 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 2508624, + "thread": 7 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 2679938, + "thread": 27 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 2869876, + "thread": 3 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 3075848, + "thread": 17 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 3158897, + "thread": 1 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 3325616, + "thread": 8 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 3540641, + "thread": 26 + } + }, + { + "amount": "327.876518170", + "slot": { + "period": 3778461, + "thread": 22 + } + }, + { + "amount": "327.876518166", + "slot": { + "period": 3888722, + "thread": 21 + } + } + ], + "AU12QEt7EzXiQhFk4GLdMEfP5mwdXTnnL54LerAaPTyLGYWTBfxhc": [ + { + "amount": "80.245112608", + "slot": { + "period": 148573, + "thread": 9 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 213510, + "thread": 11 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 388601, + "thread": 27 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 517910, + "thread": 12 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 794965, + "thread": 6 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 852188, + "thread": 18 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1092401, + "thread": 30 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1161482, + "thread": 0 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1375838, + "thread": 7 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1609028, + "thread": 8 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1692694, + "thread": 6 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 1965952, + "thread": 4 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2073358, + "thread": 23 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2150060, + "thread": 6 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2458073, + "thread": 18 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2560956, + "thread": 1 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2677097, + "thread": 18 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 2817318, + "thread": 21 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 3067426, + "thread": 27 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 3140602, + "thread": 2 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 3329684, + "thread": 2 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 3489701, + "thread": 1 + } + }, + { + "amount": "80.245112608", + "slot": { + "period": 3657110, + "thread": 25 + } + }, + { + "amount": "80.245112619", + "slot": { + "period": 3816414, + "thread": 18 + } + } + ], + "AU12QF9LRcU1219YZwuB385vLJSNfZHSQZzKL2M6equuSi6opUCSU": [ + { + "amount": "150.265606524", + "slot": { + "period": 76831, + "thread": 17 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 288084, + "thread": 15 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 421560, + "thread": 2 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 499100, + "thread": 6 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 654423, + "thread": 31 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 845443, + "thread": 8 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1084109, + "thread": 5 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1273770, + "thread": 3 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1388287, + "thread": 30 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1612072, + "thread": 29 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1710414, + "thread": 2 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 1858196, + "thread": 18 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2142488, + "thread": 4 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2196427, + "thread": 1 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2333781, + "thread": 14 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2479194, + "thread": 0 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2636476, + "thread": 22 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2839398, + "thread": 4 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 2988635, + "thread": 16 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 3252398, + "thread": 29 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 3378703, + "thread": 15 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 3528800, + "thread": 6 + } + }, + { + "amount": "150.265606524", + "slot": { + "period": 3674447, + "thread": 30 + } + }, + { + "amount": "150.265606531", + "slot": { + "period": 3849746, + "thread": 16 + } + } + ], + "AU12QFvxjFXxBXQGE9GWFStdec4ejqTmdExo4dzCWT6pcUAwa5Xxb": [ + { + "amount": "99.690900485", + "slot": { + "period": 152068, + "thread": 24 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 176992, + "thread": 28 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 490787, + "thread": 10 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 600526, + "thread": 9 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 734277, + "thread": 31 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 898635, + "thread": 31 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1144415, + "thread": 12 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1269369, + "thread": 20 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1472046, + "thread": 8 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1606039, + "thread": 29 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1678996, + "thread": 11 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 1839183, + "thread": 29 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2130751, + "thread": 23 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2207753, + "thread": 4 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2335450, + "thread": 1 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2534861, + "thread": 19 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2680432, + "thread": 7 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2937242, + "thread": 29 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 2960707, + "thread": 11 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 3191267, + "thread": 11 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 3380889, + "thread": 23 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 3537305, + "thread": 16 + } + }, + { + "amount": "99.690900485", + "slot": { + "period": 3777687, + "thread": 24 + } + }, + { + "amount": "99.690900476", + "slot": { + "period": 3922281, + "thread": 6 + } + } + ], + "AU12QGd4Huwi2XAFmm48VM1gX4Y6qkBPCYmJLK6PrZ8o7HBhkoxo": [ + { + "amount": "257.695198457", + "slot": { + "period": 85028, + "thread": 27 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 239509, + "thread": 2 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 396555, + "thread": 18 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 644528, + "thread": 14 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 780729, + "thread": 26 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 882354, + "thread": 20 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1016288, + "thread": 17 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1262691, + "thread": 27 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1389043, + "thread": 17 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1508724, + "thread": 16 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1668635, + "thread": 11 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1881209, + "thread": 14 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 1978511, + "thread": 22 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 2157047, + "thread": 7 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 2313642, + "thread": 8 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 2620434, + "thread": 30 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 2683445, + "thread": 18 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 2844032, + "thread": 26 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 3042920, + "thread": 31 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 3217209, + "thread": 24 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 3350773, + "thread": 4 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 3590615, + "thread": 2 + } + }, + { + "amount": "257.695198457", + "slot": { + "period": 3684552, + "thread": 28 + } + }, + { + "amount": "257.695198456", + "slot": { + "period": 3904784, + "thread": 8 + } + } + ], + "AU12QGhVkNRGMAFPwctHz7Bxm1Y3u1Js4ScskZReSkhH7fzfRquJz": [ + { + "amount": "111.635300828", + "slot": { + "period": 24729, + "thread": 25 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 258189, + "thread": 21 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 374963, + "thread": 12 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 619217, + "thread": 13 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 740281, + "thread": 0 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 944199, + "thread": 12 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1116551, + "thread": 8 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1152841, + "thread": 22 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1335977, + "thread": 11 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1635848, + "thread": 27 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1772128, + "thread": 15 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 1842213, + "thread": 28 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2139822, + "thread": 27 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2278644, + "thread": 29 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2392037, + "thread": 0 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2505722, + "thread": 19 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2633873, + "thread": 28 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 2822536, + "thread": 28 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 3003148, + "thread": 14 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 3243195, + "thread": 16 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 3431063, + "thread": 17 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 3586624, + "thread": 23 + } + }, + { + "amount": "111.635300828", + "slot": { + "period": 3624907, + "thread": 9 + } + }, + { + "amount": "111.635300817", + "slot": { + "period": 3818433, + "thread": 18 + } + } + ], + "AU12QHDo3v5BhkLLXVvfyiY5Q75ifFz1XE1oD19uoATAtPmfdvhiR": [ + { + "amount": "89.900059106", + "slot": { + "period": 72770, + "thread": 14 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 314475, + "thread": 10 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 439987, + "thread": 16 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 535910, + "thread": 30 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 667953, + "thread": 10 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 950470, + "thread": 19 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1086915, + "thread": 1 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1246383, + "thread": 12 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1421148, + "thread": 24 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1612920, + "thread": 8 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1793450, + "thread": 10 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 1816116, + "thread": 30 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2046928, + "thread": 20 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2239946, + "thread": 21 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2302900, + "thread": 4 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2603799, + "thread": 21 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2681323, + "thread": 9 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2876872, + "thread": 19 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 2995441, + "thread": 14 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 3180594, + "thread": 18 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 3410468, + "thread": 16 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 3606632, + "thread": 0 + } + }, + { + "amount": "89.900059106", + "slot": { + "period": 3760986, + "thread": 11 + } + }, + { + "amount": "89.900059110", + "slot": { + "period": 3890478, + "thread": 25 + } + } + ], + "AU12QJ47z5EdtbdMokxz1e9Xa1XonTPyrzrF7FfinnJssbEK2rexN": [ + { + "amount": "156.658233196", + "slot": { + "period": 115340, + "thread": 1 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 260959, + "thread": 3 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 432123, + "thread": 22 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 501454, + "thread": 15 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 715105, + "thread": 24 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 957313, + "thread": 1 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1100586, + "thread": 5 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1166285, + "thread": 5 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1478932, + "thread": 31 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1503127, + "thread": 12 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1714258, + "thread": 31 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 1947735, + "thread": 8 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2012531, + "thread": 11 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2163456, + "thread": 18 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2315418, + "thread": 4 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2480857, + "thread": 21 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2695695, + "thread": 12 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 2865857, + "thread": 6 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 3097890, + "thread": 1 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 3228369, + "thread": 14 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 3431460, + "thread": 31 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 3489662, + "thread": 17 + } + }, + { + "amount": "156.658233196", + "slot": { + "period": 3702434, + "thread": 14 + } + }, + { + "amount": "156.658233188", + "slot": { + "period": 3939915, + "thread": 28 + } + } + ], + "AU12QJ4mHtRGLUTpYN1t8UusVkTnSekXueZoQAdLUettaJfxShUGi": [ + { + "amount": "263.340632639", + "slot": { + "period": 110866, + "thread": 2 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 199367, + "thread": 16 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 396054, + "thread": 4 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 618178, + "thread": 1 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 817648, + "thread": 26 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 961774, + "thread": 10 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1085993, + "thread": 17 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1186565, + "thread": 10 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1333680, + "thread": 28 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1587437, + "thread": 25 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1717454, + "thread": 13 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 1943274, + "thread": 10 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2078357, + "thread": 18 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2283645, + "thread": 8 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2413304, + "thread": 25 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2604687, + "thread": 22 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2726984, + "thread": 27 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2881595, + "thread": 26 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 2979763, + "thread": 21 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 3127455, + "thread": 31 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 3413489, + "thread": 1 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 3590741, + "thread": 31 + } + }, + { + "amount": "263.340632639", + "slot": { + "period": 3708493, + "thread": 1 + } + }, + { + "amount": "263.340632644", + "slot": { + "period": 3802076, + "thread": 18 + } + } + ], + "AU12QJgCbmgDhucquSJhhBe9iqHuEWbpnXZNWabq63WDWquxdE58c": [ + { + "amount": "520.342720325", + "slot": { + "period": 22237, + "thread": 5 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 229661, + "thread": 17 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 486454, + "thread": 10 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 614925, + "thread": 24 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 740286, + "thread": 1 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 841642, + "thread": 15 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1145135, + "thread": 21 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1178462, + "thread": 23 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1375927, + "thread": 30 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1516859, + "thread": 29 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1738304, + "thread": 10 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 1962411, + "thread": 14 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2105564, + "thread": 19 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2231657, + "thread": 4 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2417592, + "thread": 18 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2494229, + "thread": 26 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2736876, + "thread": 3 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 2918513, + "thread": 16 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 3028497, + "thread": 3 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 3138420, + "thread": 23 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 3450560, + "thread": 1 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 3571478, + "thread": 28 + } + }, + { + "amount": "520.342720325", + "slot": { + "period": 3635948, + "thread": 17 + } + }, + { + "amount": "520.342720327", + "slot": { + "period": 3824414, + "thread": 22 + } + } + ], + "AU12QJpx2HnEYRD9qPD7bhTKmvf2TB6TbVi7EHX3MZ1bqDPiWts9z": [ + { + "amount": "55.426151247", + "slot": { + "period": 50480, + "thread": 7 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 223292, + "thread": 8 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 428903, + "thread": 15 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 498230, + "thread": 11 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 782064, + "thread": 25 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 916058, + "thread": 10 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1040486, + "thread": 14 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1240634, + "thread": 11 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1367516, + "thread": 22 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1579326, + "thread": 11 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1796498, + "thread": 23 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 1829628, + "thread": 0 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2035446, + "thread": 25 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2276025, + "thread": 18 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2427295, + "thread": 18 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2591222, + "thread": 23 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2747525, + "thread": 9 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 2923994, + "thread": 0 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 3039185, + "thread": 13 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 3261222, + "thread": 9 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 3449054, + "thread": 4 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 3490746, + "thread": 2 + } + }, + { + "amount": "55.426151247", + "slot": { + "period": 3636285, + "thread": 10 + } + }, + { + "amount": "55.426151253", + "slot": { + "period": 3927983, + "thread": 20 + } + } + ], + "AU12QJupEjsFcG4bGWG2j34Zbx1wiLJxsyftL6FTFMPfKD4jqAHM4": [ + { + "amount": "169.888846135", + "slot": { + "period": 164137, + "thread": 25 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 195738, + "thread": 6 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 424382, + "thread": 25 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 603920, + "thread": 14 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 812324, + "thread": 0 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 830532, + "thread": 31 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1128788, + "thread": 19 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1270053, + "thread": 16 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1431570, + "thread": 1 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1592549, + "thread": 29 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1748751, + "thread": 15 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 1835369, + "thread": 2 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2080760, + "thread": 27 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2180409, + "thread": 28 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2340917, + "thread": 28 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2509588, + "thread": 19 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2725431, + "thread": 6 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 2906565, + "thread": 24 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 3107242, + "thread": 25 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 3209471, + "thread": 0 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 3373448, + "thread": 16 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 3606749, + "thread": 8 + } + }, + { + "amount": "169.888846135", + "slot": { + "period": 3715496, + "thread": 0 + } + }, + { + "amount": "169.888846142", + "slot": { + "period": 3823980, + "thread": 1 + } + } + ], + "AU12QKk2rEPRbbk3im2FRS8DcYzfm6NyyMhTxzw5EXhPrfNSp1RiC": [ + { + "amount": "342.395751410", + "slot": { + "period": 131458, + "thread": 6 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 219474, + "thread": 28 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 424295, + "thread": 15 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 632512, + "thread": 16 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 748776, + "thread": 22 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 944316, + "thread": 1 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 984569, + "thread": 7 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 1194626, + "thread": 10 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 1373902, + "thread": 16 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 1587029, + "thread": 27 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 1736052, + "thread": 7 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 1968770, + "thread": 16 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2092408, + "thread": 2 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2267303, + "thread": 16 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2426867, + "thread": 16 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2559272, + "thread": 22 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2650064, + "thread": 4 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2872702, + "thread": 22 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 2991044, + "thread": 4 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 3161805, + "thread": 22 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 3340890, + "thread": 23 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 3499330, + "thread": 11 + } + }, + { + "amount": "342.395751410", + "slot": { + "period": 3695084, + "thread": 25 + } + }, + { + "amount": "342.395751417", + "slot": { + "period": 3894533, + "thread": 15 + } + } + ], + "AU12QMrJJMSBi1zv2fcgjxfdhgahJvwxQ12qhT5pqr2A2zGAAwgqQ": [ + { + "amount": "169.620235551", + "slot": { + "period": 120786, + "thread": 2 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 183202, + "thread": 24 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 387300, + "thread": 27 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 535011, + "thread": 23 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 763374, + "thread": 4 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 907274, + "thread": 15 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1124183, + "thread": 8 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1314146, + "thread": 9 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1381058, + "thread": 24 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1573951, + "thread": 0 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1689016, + "thread": 18 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 1921880, + "thread": 30 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2002145, + "thread": 29 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2241530, + "thread": 16 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2310513, + "thread": 3 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2491781, + "thread": 27 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2687381, + "thread": 29 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 2951435, + "thread": 18 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 3098092, + "thread": 5 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 3266067, + "thread": 20 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 3358002, + "thread": 24 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 3500856, + "thread": 7 + } + }, + { + "amount": "169.620235551", + "slot": { + "period": 3725626, + "thread": 12 + } + }, + { + "amount": "169.620235560", + "slot": { + "period": 3931135, + "thread": 24 + } + } + ], + "AU12QNy7MwBq1RZjwjwEvRN138aZ1CohJxex91V35NobNhnvhrBtS": [ + { + "amount": "179.717076543", + "slot": { + "period": 32995, + "thread": 6 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 245899, + "thread": 16 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 330024, + "thread": 28 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 544902, + "thread": 7 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 805549, + "thread": 6 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 953181, + "thread": 2 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1031805, + "thread": 0 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1284852, + "thread": 11 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1417070, + "thread": 14 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1543929, + "thread": 5 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1800438, + "thread": 22 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 1885076, + "thread": 2 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2106098, + "thread": 8 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2265138, + "thread": 15 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2374203, + "thread": 14 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2512241, + "thread": 15 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2743696, + "thread": 18 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 2939763, + "thread": 1 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 3031042, + "thread": 0 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 3127611, + "thread": 29 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 3413583, + "thread": 22 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 3459522, + "thread": 1 + } + }, + { + "amount": "179.717076543", + "slot": { + "period": 3650254, + "thread": 0 + } + }, + { + "amount": "179.717076544", + "slot": { + "period": 3854708, + "thread": 21 + } + } + ], + "AU12QPLuaoJEtM3maQEKQHQCkCW1c1j3f7F8CdxVibewfg4JVyQqU": [ + { + "amount": "150.018793897", + "slot": { + "period": 111566, + "thread": 1 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 173780, + "thread": 17 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 355289, + "thread": 10 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 512643, + "thread": 20 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 705422, + "thread": 19 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 941954, + "thread": 13 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1028419, + "thread": 16 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1154483, + "thread": 24 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1370830, + "thread": 28 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1628709, + "thread": 11 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1656674, + "thread": 18 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 1847041, + "thread": 4 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2029684, + "thread": 9 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2151071, + "thread": 27 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2379709, + "thread": 21 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2498964, + "thread": 27 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2674935, + "thread": 30 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 2836373, + "thread": 8 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 3103177, + "thread": 26 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 3275099, + "thread": 13 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 3311502, + "thread": 12 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 3578943, + "thread": 26 + } + }, + { + "amount": "150.018793897", + "slot": { + "period": 3725544, + "thread": 1 + } + }, + { + "amount": "150.018793887", + "slot": { + "period": 3893940, + "thread": 31 + } + } + ], + "AU12QPR4QEBhfNb5i34udxj1j93Jmx7fLjdUMbsEnqLh5WG7oJ9MQ": [ + { + "amount": "142.006146038", + "slot": { + "period": 144728, + "thread": 30 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 265170, + "thread": 8 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 445777, + "thread": 14 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 521473, + "thread": 9 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 679008, + "thread": 12 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 920098, + "thread": 6 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1082513, + "thread": 12 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1246233, + "thread": 9 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1448379, + "thread": 27 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1558352, + "thread": 8 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1705966, + "thread": 16 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 1894777, + "thread": 29 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2114573, + "thread": 6 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2260291, + "thread": 4 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2374038, + "thread": 11 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2595144, + "thread": 26 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2698745, + "thread": 20 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 2948751, + "thread": 1 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 3015330, + "thread": 10 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 3218459, + "thread": 18 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 3413290, + "thread": 28 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 3523425, + "thread": 13 + } + }, + { + "amount": "142.006146038", + "slot": { + "period": 3720189, + "thread": 26 + } + }, + { + "amount": "142.006146041", + "slot": { + "period": 3850565, + "thread": 10 + } + } + ], + "AU12QPhdrY1EQJV3iyzePmaNtiGjCLDMegaoxryhfNFb6q83zmJrC": [ + { + "amount": "205.703052634", + "slot": { + "period": 44127, + "thread": 25 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 209530, + "thread": 10 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 401001, + "thread": 27 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 576837, + "thread": 13 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 698076, + "thread": 12 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 950878, + "thread": 9 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1132314, + "thread": 2 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1270140, + "thread": 11 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1422726, + "thread": 31 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1609452, + "thread": 13 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1722081, + "thread": 12 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 1882796, + "thread": 19 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2101434, + "thread": 9 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2178884, + "thread": 30 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2301327, + "thread": 10 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2595860, + "thread": 15 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2702424, + "thread": 8 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 2932015, + "thread": 1 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 3013671, + "thread": 7 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 3285904, + "thread": 24 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 3334915, + "thread": 31 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 3469132, + "thread": 3 + } + }, + { + "amount": "205.703052634", + "slot": { + "period": 3683199, + "thread": 14 + } + }, + { + "amount": "205.703052625", + "slot": { + "period": 3880845, + "thread": 30 + } + } + ], + "AU12QQ3fkE4qVPsEzfd92uqVY7cwWUTQasF7FVm5Msa14KZTn99ZT": [ + { + "amount": "80.860183626", + "slot": { + "period": 147865, + "thread": 9 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 252495, + "thread": 9 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 351789, + "thread": 30 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 512227, + "thread": 6 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 800136, + "thread": 5 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 868590, + "thread": 30 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 989120, + "thread": 27 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 1158727, + "thread": 19 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 1447049, + "thread": 3 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 1576938, + "thread": 17 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 1776987, + "thread": 3 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 1812564, + "thread": 22 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2021140, + "thread": 27 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2241896, + "thread": 20 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2399563, + "thread": 10 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2514187, + "thread": 19 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2675600, + "thread": 7 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 2825084, + "thread": 23 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 3109023, + "thread": 20 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 3273057, + "thread": 4 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 3334261, + "thread": 7 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 3565434, + "thread": 28 + } + }, + { + "amount": "80.860183626", + "slot": { + "period": 3650873, + "thread": 5 + } + }, + { + "amount": "80.860183637", + "slot": { + "period": 3825925, + "thread": 14 + } + } + ], + "AU12QRmkoWugp3NhP9awKetMJXqY8aAwbfuV6dM86b3HVZsRbbEK": [ + { + "amount": "105.069530627", + "slot": { + "period": 49567, + "thread": 27 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 303560, + "thread": 4 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 490796, + "thread": 26 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 649983, + "thread": 23 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 721183, + "thread": 27 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 972811, + "thread": 20 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1142017, + "thread": 24 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1242263, + "thread": 24 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1337992, + "thread": 31 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1481728, + "thread": 4 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1787106, + "thread": 30 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 1809569, + "thread": 22 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2014875, + "thread": 17 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2289364, + "thread": 21 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2296392, + "thread": 23 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2463520, + "thread": 16 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2728366, + "thread": 21 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 2900653, + "thread": 9 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 3031427, + "thread": 19 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 3152675, + "thread": 20 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 3406236, + "thread": 3 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 3495247, + "thread": 4 + } + }, + { + "amount": "105.069530627", + "slot": { + "period": 3681558, + "thread": 25 + } + }, + { + "amount": "105.069530634", + "slot": { + "period": 3897710, + "thread": 10 + } + } + ], + "AU12QUz4gxAT8vTie3D9LQpkdLTMEnRe2MLZkzPxGvqRL4T2g1NfY": [ + { + "amount": "227.514581648", + "slot": { + "period": 28986, + "thread": 23 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 260518, + "thread": 31 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 424623, + "thread": 5 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 648483, + "thread": 7 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 658933, + "thread": 3 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 913844, + "thread": 7 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1071763, + "thread": 27 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1161377, + "thread": 10 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1347507, + "thread": 11 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1593256, + "thread": 30 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1793875, + "thread": 8 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1902778, + "thread": 22 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 1994054, + "thread": 1 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2266326, + "thread": 20 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2392493, + "thread": 12 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2486830, + "thread": 3 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2676336, + "thread": 16 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2825644, + "thread": 19 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 2989184, + "thread": 22 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 3276196, + "thread": 26 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 3344686, + "thread": 25 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 3586665, + "thread": 20 + } + }, + { + "amount": "227.514581648", + "slot": { + "period": 3635068, + "thread": 3 + } + }, + { + "amount": "227.514581660", + "slot": { + "period": 3825469, + "thread": 27 + } + } + ], + "AU12QVT6w7bgmy87FhAnWPQ169iYX5q6z41DUYfitS4ossgcZzrPx": [ + { + "amount": "72.602507631", + "slot": { + "period": 45286, + "thread": 17 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 168098, + "thread": 20 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 376900, + "thread": 27 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 580481, + "thread": 6 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 701459, + "thread": 14 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 938290, + "thread": 26 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1098444, + "thread": 31 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1235042, + "thread": 5 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1363713, + "thread": 30 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1576568, + "thread": 15 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1719009, + "thread": 4 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1909398, + "thread": 10 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 1994916, + "thread": 9 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 2259588, + "thread": 4 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 2413781, + "thread": 11 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 2489330, + "thread": 30 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 2779728, + "thread": 10 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 2796340, + "thread": 10 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 3064420, + "thread": 9 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 3242137, + "thread": 27 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 3391805, + "thread": 25 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 3595001, + "thread": 31 + } + }, + { + "amount": "72.602507631", + "slot": { + "period": 3752088, + "thread": 6 + } + }, + { + "amount": "72.602507638", + "slot": { + "period": 3859535, + "thread": 5 + } + } + ], + "AU12QW6tHu6adsfHDtmv9amih4ETBgwVFY5cDjPvv2w6YEGqz6WjT": [ + { + "amount": "556.082985371", + "slot": { + "period": 83581, + "thread": 9 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 256696, + "thread": 21 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 377129, + "thread": 7 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 580132, + "thread": 28 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 800627, + "thread": 17 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 876518, + "thread": 29 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1095839, + "thread": 5 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1196442, + "thread": 20 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1430821, + "thread": 31 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1578982, + "thread": 28 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1690905, + "thread": 7 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 1812338, + "thread": 17 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2055362, + "thread": 4 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2238955, + "thread": 15 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2360835, + "thread": 4 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2538605, + "thread": 22 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2669302, + "thread": 4 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2833381, + "thread": 30 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 2992697, + "thread": 1 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 3254594, + "thread": 25 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 3395106, + "thread": 21 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 3591949, + "thread": 22 + } + }, + { + "amount": "556.082985371", + "slot": { + "period": 3751402, + "thread": 18 + } + }, + { + "amount": "556.082985364", + "slot": { + "period": 3873380, + "thread": 25 + } + } + ], + "AU12QWmWv3eSdBEN2qV6qSKPcgET34Mo3ehQLr1EURFJ1D8VkkMWJ": [ + { + "amount": "376.826364736", + "slot": { + "period": 23241, + "thread": 20 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 266923, + "thread": 23 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 347523, + "thread": 19 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 555959, + "thread": 30 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 700359, + "thread": 18 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 948798, + "thread": 1 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1040761, + "thread": 21 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1225362, + "thread": 27 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1357427, + "thread": 1 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1638214, + "thread": 18 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1654828, + "thread": 23 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 1962039, + "thread": 26 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2068246, + "thread": 18 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2162501, + "thread": 5 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2392270, + "thread": 10 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2491318, + "thread": 8 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2697136, + "thread": 15 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 2883120, + "thread": 9 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 3061047, + "thread": 25 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 3142941, + "thread": 8 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 3366441, + "thread": 20 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 3617301, + "thread": 14 + } + }, + { + "amount": "376.826364736", + "slot": { + "period": 3766381, + "thread": 22 + } + }, + { + "amount": "376.826364724", + "slot": { + "period": 3845502, + "thread": 18 + } + } + ], + "AU12QWoVs1WXpSGCaGWF21c5JnqG1cBXnN3RpX6nWLBdTxBUyHWW6": [ + { + "amount": "52.700527240", + "slot": { + "period": 96373, + "thread": 26 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 233770, + "thread": 19 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 477905, + "thread": 29 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 529353, + "thread": 18 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 692312, + "thread": 22 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 861452, + "thread": 18 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 986820, + "thread": 31 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 1245257, + "thread": 22 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 1322460, + "thread": 14 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 1598116, + "thread": 19 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 1736621, + "thread": 26 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 1882172, + "thread": 19 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2008388, + "thread": 24 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2259623, + "thread": 12 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2458795, + "thread": 0 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2495916, + "thread": 15 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2678894, + "thread": 13 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2865764, + "thread": 1 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 2994100, + "thread": 19 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 3123647, + "thread": 2 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 3447334, + "thread": 7 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 3482486, + "thread": 20 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 3667847, + "thread": 27 + } + }, + { + "amount": "52.700527240", + "slot": { + "period": 3924170, + "thread": 5 + } + } + ], + "AU12QX8pVG4zZHAmNVAsnvTjR6EGzMp2VwB356i2XeqJdK6QtavhD": [ + { + "amount": "132.558001501", + "slot": { + "period": 66403, + "thread": 29 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 177499, + "thread": 21 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 400000, + "thread": 15 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 603752, + "thread": 4 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 717031, + "thread": 15 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 845378, + "thread": 6 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1142910, + "thread": 3 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1262281, + "thread": 0 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1455911, + "thread": 7 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1633257, + "thread": 28 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1715528, + "thread": 18 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 1892591, + "thread": 15 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2019343, + "thread": 8 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2166568, + "thread": 9 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2336970, + "thread": 29 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2542241, + "thread": 2 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2714572, + "thread": 22 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 2863615, + "thread": 18 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 3117278, + "thread": 21 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 3244747, + "thread": 15 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 3407903, + "thread": 14 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 3581397, + "thread": 7 + } + }, + { + "amount": "132.558001501", + "slot": { + "period": 3773386, + "thread": 27 + } + }, + { + "amount": "132.558001506", + "slot": { + "period": 3904075, + "thread": 10 + } + } + ], + "AU12QXEb9cee18xdoWXxmnhfw54qHtB7qWdM1KDabxtEN64jhKp52": [ + { + "amount": "65.502072408", + "slot": { + "period": 41124, + "thread": 3 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 302895, + "thread": 8 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 412428, + "thread": 30 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 525973, + "thread": 23 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 672534, + "thread": 10 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 886810, + "thread": 26 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1092803, + "thread": 13 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1233777, + "thread": 27 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1333316, + "thread": 19 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1568683, + "thread": 26 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1663940, + "thread": 16 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 1946679, + "thread": 16 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2072904, + "thread": 19 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2189047, + "thread": 8 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2303363, + "thread": 29 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2535848, + "thread": 20 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2629527, + "thread": 10 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2863244, + "thread": 2 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 2993720, + "thread": 24 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 3214484, + "thread": 7 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 3347792, + "thread": 8 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 3475858, + "thread": 15 + } + }, + { + "amount": "65.502072408", + "slot": { + "period": 3728939, + "thread": 21 + } + }, + { + "amount": "65.502072405", + "slot": { + "period": 3946961, + "thread": 22 + } + } + ], + "AU12QZA4m7X6dt9mDgMypBkfbAaW44TQSBpV5eTS4cHkF265FPJVq": [ + { + "amount": "175.875249992", + "slot": { + "period": 94900, + "thread": 1 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 221514, + "thread": 29 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 329859, + "thread": 18 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 556740, + "thread": 24 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 777755, + "thread": 1 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 978587, + "thread": 9 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1005092, + "thread": 15 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1230918, + "thread": 10 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1341516, + "thread": 1 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1488758, + "thread": 6 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1738943, + "thread": 15 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 1948564, + "thread": 0 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2079712, + "thread": 27 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2251013, + "thread": 6 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2441377, + "thread": 1 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2476857, + "thread": 5 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2770549, + "thread": 8 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 2844002, + "thread": 4 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 3014396, + "thread": 30 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 3217469, + "thread": 31 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 3414973, + "thread": 25 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 3547122, + "thread": 22 + } + }, + { + "amount": "175.875249992", + "slot": { + "period": 3732655, + "thread": 27 + } + }, + { + "amount": "175.875249993", + "slot": { + "period": 3895251, + "thread": 20 + } + } + ], + "AU12Qa3w3YzD7jZTtKZy3aaAHccNYm3QTW3xd6SsrUJ7krD4hhHaW": [ + { + "amount": "269.864272909", + "slot": { + "period": 74275, + "thread": 15 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 241965, + "thread": 24 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 335557, + "thread": 8 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 576324, + "thread": 20 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 685195, + "thread": 19 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 860312, + "thread": 25 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1148565, + "thread": 29 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1172489, + "thread": 27 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1473744, + "thread": 13 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1551425, + "thread": 10 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1783314, + "thread": 25 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 1955812, + "thread": 3 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2113559, + "thread": 31 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2281577, + "thread": 17 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2379013, + "thread": 1 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2484776, + "thread": 13 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2720290, + "thread": 25 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 2872573, + "thread": 9 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 3003794, + "thread": 21 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 3153852, + "thread": 25 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 3292863, + "thread": 22 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 3543935, + "thread": 3 + } + }, + { + "amount": "269.864272909", + "slot": { + "period": 3683242, + "thread": 11 + } + }, + { + "amount": "269.864272908", + "slot": { + "period": 3870131, + "thread": 2 + } + } + ], + "AU12Qa7oL5pWv5yDPYBBb2pxMv5yC6U4G3K6gfsW2mQNEsUJ4HH9N": [ + { + "amount": "95.028109344", + "slot": { + "period": 82516, + "thread": 17 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 262410, + "thread": 13 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 438128, + "thread": 20 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 554685, + "thread": 26 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 753894, + "thread": 24 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 861258, + "thread": 6 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1119721, + "thread": 29 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1183879, + "thread": 4 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1368728, + "thread": 1 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1498935, + "thread": 18 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1727223, + "thread": 5 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 1918400, + "thread": 14 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2096112, + "thread": 9 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2251827, + "thread": 2 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2415669, + "thread": 6 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2544582, + "thread": 23 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2771087, + "thread": 11 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2824070, + "thread": 20 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 2962912, + "thread": 26 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 3148020, + "thread": 29 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 3336694, + "thread": 29 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 3531112, + "thread": 5 + } + }, + { + "amount": "95.028109344", + "slot": { + "period": 3684563, + "thread": 2 + } + }, + { + "amount": "95.028109341", + "slot": { + "period": 3790705, + "thread": 30 + } + } + ], + "AU12QaC9TYcJP8FEy1YRwFaRYLzq61s5p9xqZoLo3fJJHxAHaFbiX": [ + { + "amount": "128.119473094", + "slot": { + "period": 166085, + "thread": 26 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 286198, + "thread": 4 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 481768, + "thread": 25 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 625260, + "thread": 23 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 761839, + "thread": 16 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 872628, + "thread": 18 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1124862, + "thread": 11 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1207591, + "thread": 2 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1352457, + "thread": 8 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1587593, + "thread": 11 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1773714, + "thread": 14 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 1948339, + "thread": 13 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2051086, + "thread": 31 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2245647, + "thread": 4 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2298426, + "thread": 7 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2538168, + "thread": 28 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2692640, + "thread": 24 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2843490, + "thread": 11 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 2977086, + "thread": 13 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 3262765, + "thread": 13 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 3449560, + "thread": 24 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 3517743, + "thread": 2 + } + }, + { + "amount": "128.119473094", + "slot": { + "period": 3720531, + "thread": 9 + } + }, + { + "amount": "128.119473088", + "slot": { + "period": 3795585, + "thread": 25 + } + } + ], + "AU12QarTM56xCiSUNZNbh2HJNeM5Eh69cDaTrVHw7fh6TiCbAKvVR": [ + { + "amount": "73.810881761", + "slot": { + "period": 27704, + "thread": 11 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 275199, + "thread": 3 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 407651, + "thread": 13 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 569121, + "thread": 10 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 760989, + "thread": 22 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 978874, + "thread": 14 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1144119, + "thread": 2 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1315420, + "thread": 9 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1325482, + "thread": 26 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1534511, + "thread": 24 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1670733, + "thread": 27 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 1875164, + "thread": 24 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2002875, + "thread": 24 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2179426, + "thread": 10 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2310620, + "thread": 19 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2573231, + "thread": 29 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2678653, + "thread": 29 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 2904455, + "thread": 16 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 3072306, + "thread": 30 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 3145217, + "thread": 21 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 3357269, + "thread": 11 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 3608593, + "thread": 18 + } + }, + { + "amount": "73.810881761", + "slot": { + "period": 3745992, + "thread": 19 + } + }, + { + "amount": "73.810881764", + "slot": { + "period": 3887915, + "thread": 23 + } + } + ], + "AU12QcqsFubLqxVXj4A6DVqLc1dGW7YhzVTYCHVAMYguzZJEip2gd": [ + { + "amount": "466.543826308", + "slot": { + "period": 106075, + "thread": 3 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 310812, + "thread": 5 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 410635, + "thread": 23 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 575645, + "thread": 10 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 734171, + "thread": 16 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 929674, + "thread": 28 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1122995, + "thread": 10 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1214325, + "thread": 27 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1397223, + "thread": 9 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1623147, + "thread": 31 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1712459, + "thread": 18 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 1890054, + "thread": 28 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2096903, + "thread": 23 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2248301, + "thread": 15 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2313865, + "thread": 26 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2573535, + "thread": 31 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2685670, + "thread": 30 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2806039, + "thread": 26 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 2977357, + "thread": 15 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 3251677, + "thread": 18 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 3438622, + "thread": 14 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 3483103, + "thread": 30 + } + }, + { + "amount": "466.543826308", + "slot": { + "period": 3730578, + "thread": 2 + } + }, + { + "amount": "466.543826309", + "slot": { + "period": 3901954, + "thread": 20 + } + } + ], + "AU12Qdad7EHdFHcegsQgLSSbBx7h3opyEeSPmh3cY8o8XJdT5Xrb4": [ + { + "amount": "462.833096420", + "slot": { + "period": 119519, + "thread": 13 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 197598, + "thread": 0 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 363222, + "thread": 7 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 526619, + "thread": 17 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 788503, + "thread": 12 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 977394, + "thread": 13 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1037741, + "thread": 10 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1207037, + "thread": 30 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1470356, + "thread": 22 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1517554, + "thread": 0 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1673683, + "thread": 18 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 1837201, + "thread": 27 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2055087, + "thread": 20 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2151509, + "thread": 4 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2379213, + "thread": 25 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2520498, + "thread": 11 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2779098, + "thread": 30 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 2863250, + "thread": 31 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 3006195, + "thread": 18 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 3272747, + "thread": 3 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 3307397, + "thread": 27 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 3586693, + "thread": 27 + } + }, + { + "amount": "462.833096420", + "slot": { + "period": 3743680, + "thread": 5 + } + }, + { + "amount": "462.833096426", + "slot": { + "period": 3945284, + "thread": 22 + } + } + ], + "AU12Qe3tB668YpKTPYqjDwL23CbdTshZZ4naRtwTWm36EtCMY7py1": [ + { + "amount": "74.008858911", + "slot": { + "period": 93813, + "thread": 7 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 272188, + "thread": 10 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 430570, + "thread": 21 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 569873, + "thread": 5 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 725846, + "thread": 17 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 837263, + "thread": 28 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1099835, + "thread": 16 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1168872, + "thread": 13 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1392572, + "thread": 11 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1579744, + "thread": 26 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1679649, + "thread": 28 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 1879844, + "thread": 8 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2106943, + "thread": 20 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2175705, + "thread": 28 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2415035, + "thread": 3 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2589820, + "thread": 16 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2639433, + "thread": 20 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 2913275, + "thread": 27 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 3049511, + "thread": 22 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 3278122, + "thread": 17 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 3293715, + "thread": 11 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 3519921, + "thread": 10 + } + }, + { + "amount": "74.008858911", + "slot": { + "period": 3625826, + "thread": 16 + } + }, + { + "amount": "74.008858900", + "slot": { + "period": 3782189, + "thread": 0 + } + } + ], + "AU12Qe6CgGJw4thPL3yVwWpbhP7XdjARmS6cDVqFRHqRAK5eu5sxA": [ + { + "amount": "79.772305929", + "slot": { + "period": 79883, + "thread": 16 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 306264, + "thread": 13 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 470330, + "thread": 25 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 574025, + "thread": 8 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 776234, + "thread": 30 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 836359, + "thread": 4 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 987117, + "thread": 29 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 1254611, + "thread": 1 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 1317730, + "thread": 29 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 1629369, + "thread": 0 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 1681513, + "thread": 25 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 1836493, + "thread": 30 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2010375, + "thread": 20 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2154051, + "thread": 24 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2393132, + "thread": 29 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2623678, + "thread": 24 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2728595, + "thread": 2 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 2842977, + "thread": 27 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 3032522, + "thread": 15 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 3133321, + "thread": 5 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 3402646, + "thread": 31 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 3570348, + "thread": 17 + } + }, + { + "amount": "79.772305929", + "slot": { + "period": 3675380, + "thread": 26 + } + }, + { + "amount": "79.772305934", + "slot": { + "period": 3939661, + "thread": 6 + } + } + ], + "AU12QeXJopCHprnsSrFrFAE7vRgfGHQFTSCbrcEJVTgxhaDVaZcpC": [ + { + "amount": "536.384708413", + "slot": { + "period": 130251, + "thread": 21 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 289612, + "thread": 10 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 336579, + "thread": 10 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 615940, + "thread": 1 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 711650, + "thread": 10 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 953129, + "thread": 20 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 991830, + "thread": 6 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1206796, + "thread": 11 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1386647, + "thread": 10 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1510504, + "thread": 2 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1763570, + "thread": 26 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1839187, + "thread": 6 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 1994805, + "thread": 11 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 2233539, + "thread": 6 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 2335364, + "thread": 15 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 2564835, + "thread": 8 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 2662321, + "thread": 3 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 2870164, + "thread": 18 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 3021606, + "thread": 1 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 3226897, + "thread": 4 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 3332807, + "thread": 16 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 3484173, + "thread": 18 + } + }, + { + "amount": "536.384708413", + "slot": { + "period": 3774111, + "thread": 21 + } + }, + { + "amount": "536.384708414", + "slot": { + "period": 3929732, + "thread": 17 + } + } + ], + "AU12QeayCF1vCWxdNnhxQ1eq84PCF4ZDgSPBoQabijo7nuJjdVQYv": [ + { + "amount": "110.761236654", + "slot": { + "period": 71995, + "thread": 30 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 266094, + "thread": 19 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 342567, + "thread": 1 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 614152, + "thread": 1 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 774859, + "thread": 10 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 832808, + "thread": 12 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1071354, + "thread": 14 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1297327, + "thread": 30 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1357652, + "thread": 27 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1550657, + "thread": 21 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1665022, + "thread": 27 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 1969965, + "thread": 3 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2039897, + "thread": 20 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2191336, + "thread": 9 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2447774, + "thread": 19 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2540236, + "thread": 6 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2659811, + "thread": 15 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2808563, + "thread": 21 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 2964382, + "thread": 17 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 3180919, + "thread": 24 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 3295719, + "thread": 20 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 3573911, + "thread": 28 + } + }, + { + "amount": "110.761236654", + "slot": { + "period": 3755538, + "thread": 5 + } + }, + { + "amount": "110.761236662", + "slot": { + "period": 3791105, + "thread": 1 + } + } + ], + "AU12QetKFpq5V7oBFSydkqgKNA2Tzi134JJTG5SU6DJW2YE7Jdx3X": [ + { + "amount": "183.740828495", + "slot": { + "period": 108494, + "thread": 17 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 241575, + "thread": 12 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 350988, + "thread": 3 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 558735, + "thread": 0 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 744793, + "thread": 27 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 975549, + "thread": 27 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1094347, + "thread": 9 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1268251, + "thread": 6 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1443054, + "thread": 13 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1639388, + "thread": 1 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1766729, + "thread": 17 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 1811388, + "thread": 27 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2023692, + "thread": 10 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2223915, + "thread": 0 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2299383, + "thread": 5 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2576864, + "thread": 7 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2628669, + "thread": 21 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2906105, + "thread": 5 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 2966716, + "thread": 30 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 3152265, + "thread": 10 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 3408024, + "thread": 5 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 3543896, + "thread": 20 + } + }, + { + "amount": "183.740828495", + "slot": { + "period": 3736083, + "thread": 15 + } + }, + { + "amount": "183.740828484", + "slot": { + "period": 3883715, + "thread": 2 + } + } + ], + "AU12Qg66H56dLPfqPNvUe6pRXnSrPTUkBp3E3j3a8JefBpCt2Lsga": [ + { + "amount": "325.054303112", + "slot": { + "period": 114287, + "thread": 0 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 249968, + "thread": 18 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 402451, + "thread": 20 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 635878, + "thread": 5 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 770114, + "thread": 13 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 958065, + "thread": 0 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1038498, + "thread": 7 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1170326, + "thread": 25 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1352158, + "thread": 5 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1537493, + "thread": 8 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1653571, + "thread": 21 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 1960230, + "thread": 13 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2141978, + "thread": 20 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2216026, + "thread": 7 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2338444, + "thread": 0 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2546446, + "thread": 31 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2785785, + "thread": 26 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 2931015, + "thread": 22 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 3067518, + "thread": 27 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 3278010, + "thread": 10 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 3293347, + "thread": 10 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 3527502, + "thread": 2 + } + }, + { + "amount": "325.054303112", + "slot": { + "period": 3683132, + "thread": 4 + } + }, + { + "amount": "325.054303122", + "slot": { + "period": 3815596, + "thread": 7 + } + } + ], + "AU12QgXWGezmj4v8FdeXQSnJoSEYgVs3oTfdtbhVxiu9BAhhCDwhH": [ + { + "amount": "364.827280874", + "slot": { + "period": 58598, + "thread": 24 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 223890, + "thread": 29 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 445135, + "thread": 14 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 535036, + "thread": 3 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 739003, + "thread": 12 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 919878, + "thread": 1 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1042529, + "thread": 17 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1152627, + "thread": 18 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1442530, + "thread": 19 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1496995, + "thread": 26 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1749059, + "thread": 27 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 1830858, + "thread": 25 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2129399, + "thread": 16 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2282821, + "thread": 8 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2398223, + "thread": 3 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2510212, + "thread": 22 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2651521, + "thread": 21 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2792134, + "thread": 20 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 2957946, + "thread": 9 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 3141769, + "thread": 24 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 3446414, + "thread": 10 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 3576764, + "thread": 3 + } + }, + { + "amount": "364.827280874", + "slot": { + "period": 3665644, + "thread": 5 + } + }, + { + "amount": "364.827280870", + "slot": { + "period": 3850781, + "thread": 7 + } + } + ], + "AU12QghJvVFcMQLq5aHHi6xE5YxV7gXPDSrSqu8tJqC2rdaaATF81": [ + { + "amount": "523.164389979", + "slot": { + "period": 57165, + "thread": 20 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 271852, + "thread": 18 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 380790, + "thread": 25 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 650408, + "thread": 18 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 759733, + "thread": 24 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 908268, + "thread": 19 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1138978, + "thread": 19 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1187822, + "thread": 29 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1461782, + "thread": 23 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1493427, + "thread": 24 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1680990, + "thread": 0 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 1898040, + "thread": 10 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2142928, + "thread": 2 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2205776, + "thread": 0 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2351714, + "thread": 17 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2539330, + "thread": 9 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2770682, + "thread": 23 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 2921412, + "thread": 6 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 3113845, + "thread": 18 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 3130016, + "thread": 1 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 3302049, + "thread": 14 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 3555983, + "thread": 6 + } + }, + { + "amount": "523.164389979", + "slot": { + "period": 3652163, + "thread": 30 + } + }, + { + "amount": "523.164389973", + "slot": { + "period": 3811530, + "thread": 7 + } + } + ], + "AU12Qh3eBXMkLGTA84NNiAhHu6BoCWXnH9huT3yamfaT6UWdMSAT3": [ + { + "amount": "490.286853266", + "slot": { + "period": 19874, + "thread": 9 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 183007, + "thread": 30 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 347617, + "thread": 30 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 626205, + "thread": 13 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 675742, + "thread": 31 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 902749, + "thread": 31 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1085177, + "thread": 27 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1250228, + "thread": 7 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1374818, + "thread": 23 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1614531, + "thread": 14 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1714388, + "thread": 4 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 1869127, + "thread": 21 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2127994, + "thread": 23 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2278718, + "thread": 2 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2393601, + "thread": 26 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2600370, + "thread": 10 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2772713, + "thread": 23 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 2916668, + "thread": 3 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 3004910, + "thread": 8 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 3230870, + "thread": 1 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 3345152, + "thread": 5 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 3475773, + "thread": 18 + } + }, + { + "amount": "490.286853266", + "slot": { + "period": 3629566, + "thread": 31 + } + }, + { + "amount": "490.286853271", + "slot": { + "period": 3831026, + "thread": 0 + } + } + ], + "AU12QhgtppEQ2DSFDH2ozc2DaMmzzz9y7A3Z9e78KvKcHe6qa1v59": [ + { + "amount": "212.996132700", + "slot": { + "period": 32421, + "thread": 15 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 230521, + "thread": 9 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 466540, + "thread": 30 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 507705, + "thread": 16 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 692952, + "thread": 19 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 833069, + "thread": 16 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1030663, + "thread": 14 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1311324, + "thread": 22 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1351425, + "thread": 18 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1646760, + "thread": 22 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1795821, + "thread": 27 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 1828909, + "thread": 23 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2063899, + "thread": 31 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2154255, + "thread": 0 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2381236, + "thread": 30 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2509583, + "thread": 10 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2789114, + "thread": 4 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 2868664, + "thread": 4 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 3052269, + "thread": 1 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 3239799, + "thread": 28 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 3434501, + "thread": 17 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 3506982, + "thread": 30 + } + }, + { + "amount": "212.996132700", + "slot": { + "period": 3645768, + "thread": 3 + } + }, + { + "amount": "212.996132703", + "slot": { + "period": 3874012, + "thread": 3 + } + } + ], + "AU12QiMxf3RGKwcJMYTptqaw6ZNVABaN5Hp82NyQx8HBTRAgQwtt": [ + { + "amount": "53.937089514", + "slot": { + "period": 24973, + "thread": 11 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 217231, + "thread": 5 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 418290, + "thread": 29 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 636950, + "thread": 22 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 690517, + "thread": 15 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 888642, + "thread": 20 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1136042, + "thread": 26 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1188569, + "thread": 9 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1353544, + "thread": 9 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1541651, + "thread": 11 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1753944, + "thread": 26 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 1827949, + "thread": 7 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2067683, + "thread": 9 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2264392, + "thread": 7 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2383837, + "thread": 7 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2579345, + "thread": 24 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2725942, + "thread": 20 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 2871994, + "thread": 26 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 3068994, + "thread": 16 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 3166698, + "thread": 14 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 3437228, + "thread": 18 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 3586387, + "thread": 6 + } + }, + { + "amount": "53.937089514", + "slot": { + "period": 3662271, + "thread": 8 + } + }, + { + "amount": "53.937089524", + "slot": { + "period": 3822799, + "thread": 20 + } + } + ], + "AU12QjExTch8AZbPtoemH8q3eXamoei2nU5cjhwxzTfUB59oMd1pD": [ + { + "amount": "54.438434141", + "slot": { + "period": 11395, + "thread": 16 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 306162, + "thread": 8 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 340820, + "thread": 3 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 583023, + "thread": 21 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 751884, + "thread": 3 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 870237, + "thread": 20 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1097150, + "thread": 9 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1299492, + "thread": 15 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1478898, + "thread": 7 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1606057, + "thread": 31 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1801081, + "thread": 9 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 1847306, + "thread": 28 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2085278, + "thread": 22 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2149194, + "thread": 3 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2387579, + "thread": 4 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2466463, + "thread": 18 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2749518, + "thread": 11 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 2803550, + "thread": 22 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3085281, + "thread": 13 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3191116, + "thread": 29 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3394898, + "thread": 27 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3526722, + "thread": 27 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3662312, + "thread": 4 + } + }, + { + "amount": "54.438434141", + "slot": { + "period": 3942754, + "thread": 26 + } + } + ], + "AU12QkGgProyrdhsSUuMtGWr7Cf4MmYKcada8Go5BkbfhodUMZJop": [ + { + "amount": "460.537912563", + "slot": { + "period": 92923, + "thread": 11 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 232608, + "thread": 6 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 377064, + "thread": 15 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 645951, + "thread": 20 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 749635, + "thread": 24 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 980052, + "thread": 8 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1128188, + "thread": 6 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1299647, + "thread": 18 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1438066, + "thread": 8 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1586890, + "thread": 7 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1775475, + "thread": 13 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 1813526, + "thread": 11 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2119023, + "thread": 31 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2150621, + "thread": 13 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2450535, + "thread": 3 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2504366, + "thread": 9 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2755597, + "thread": 9 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 2919128, + "thread": 5 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 3097050, + "thread": 16 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 3212153, + "thread": 18 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 3356522, + "thread": 13 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 3572569, + "thread": 0 + } + }, + { + "amount": "460.537912563", + "slot": { + "period": 3712359, + "thread": 7 + } + }, + { + "amount": "460.537912552", + "slot": { + "period": 3946840, + "thread": 5 + } + } + ], + "AU12Qkk7sSgoiFZu6PnNNPAYaEBRfoddtb55oUpkfqLiTaWpxmyKC": [ + { + "amount": "351.127555501", + "slot": { + "period": 86268, + "thread": 11 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 213290, + "thread": 27 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 354847, + "thread": 19 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 645447, + "thread": 30 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 729654, + "thread": 9 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 943251, + "thread": 0 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1110088, + "thread": 17 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1216804, + "thread": 23 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1388524, + "thread": 26 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1485109, + "thread": 6 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1678815, + "thread": 2 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 1919788, + "thread": 24 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2073595, + "thread": 28 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2221954, + "thread": 15 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2411724, + "thread": 10 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2508414, + "thread": 26 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2717382, + "thread": 18 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 2949587, + "thread": 7 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 3074535, + "thread": 1 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 3219799, + "thread": 18 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 3335041, + "thread": 3 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 3610139, + "thread": 25 + } + }, + { + "amount": "351.127555501", + "slot": { + "period": 3641684, + "thread": 29 + } + }, + { + "amount": "351.127555499", + "slot": { + "period": 3803122, + "thread": 15 + } + } + ], + "AU12QmVsD3AyjMZ7RrJNCAk42J6nFoVxs6vjxiYY9AdQDtgg6eLhy": [ + { + "amount": "93.187415805", + "slot": { + "period": 77232, + "thread": 1 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 290286, + "thread": 17 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 340328, + "thread": 19 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 494949, + "thread": 29 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 765460, + "thread": 4 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 905309, + "thread": 11 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1077011, + "thread": 6 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1191888, + "thread": 25 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1454459, + "thread": 1 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1495208, + "thread": 30 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1675050, + "thread": 8 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1818412, + "thread": 2 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 1982891, + "thread": 20 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2281241, + "thread": 8 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2385481, + "thread": 15 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2503160, + "thread": 20 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2674455, + "thread": 10 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2820110, + "thread": 26 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 2981336, + "thread": 12 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 3265426, + "thread": 29 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 3314874, + "thread": 27 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 3572117, + "thread": 11 + } + }, + { + "amount": "93.187415805", + "slot": { + "period": 3740579, + "thread": 21 + } + }, + { + "amount": "93.187415803", + "slot": { + "period": 3887041, + "thread": 23 + } + } + ], + "AU12QmeHCJdFXu5rAFh9S7ydPJswa8wrRFitHyRBNJzPqQh7zL9Nt": [ + { + "amount": "253.664481126", + "slot": { + "period": 140751, + "thread": 21 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 304088, + "thread": 6 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 386803, + "thread": 16 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 527334, + "thread": 5 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 707486, + "thread": 5 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 836165, + "thread": 28 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1136212, + "thread": 18 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1178483, + "thread": 8 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1449488, + "thread": 9 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1640607, + "thread": 6 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1754134, + "thread": 8 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 1830751, + "thread": 1 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2118582, + "thread": 29 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2161643, + "thread": 4 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2453083, + "thread": 1 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2551860, + "thread": 10 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2765935, + "thread": 20 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 2911510, + "thread": 4 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 3038966, + "thread": 20 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 3277658, + "thread": 7 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 3416026, + "thread": 29 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 3614240, + "thread": 20 + } + }, + { + "amount": "253.664481126", + "slot": { + "period": 3748108, + "thread": 16 + } + }, + { + "amount": "253.664481128", + "slot": { + "period": 3784684, + "thread": 27 + } + } + ], + "AU12QoFgp6a326sDwfePhsDCpPBhbL4SAzk8dZmca8SmBXpcAgraw": [ + { + "amount": "127.780236219", + "slot": { + "period": 71426, + "thread": 11 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 322763, + "thread": 23 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 346031, + "thread": 13 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 538563, + "thread": 19 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 721253, + "thread": 22 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 848545, + "thread": 17 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1137019, + "thread": 3 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1286805, + "thread": 21 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1420849, + "thread": 26 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1585161, + "thread": 7 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1666360, + "thread": 3 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 1842749, + "thread": 8 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2078507, + "thread": 3 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2226602, + "thread": 1 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2357504, + "thread": 23 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2574291, + "thread": 25 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2757045, + "thread": 2 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 2948405, + "thread": 10 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 3048837, + "thread": 19 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 3265153, + "thread": 10 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 3410133, + "thread": 7 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 3470082, + "thread": 15 + } + }, + { + "amount": "127.780236219", + "slot": { + "period": 3759656, + "thread": 8 + } + }, + { + "amount": "127.780236230", + "slot": { + "period": 3887325, + "thread": 19 + } + } + ], + "AU12QqWykQxb1GSDEjP5dNjYLEHpm55sZhCSYn9KLd5jSz7HgP7HW": [ + { + "amount": "230.453272820", + "slot": { + "period": 64216, + "thread": 30 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 265396, + "thread": 30 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 456931, + "thread": 25 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 625119, + "thread": 5 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 799087, + "thread": 11 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 944895, + "thread": 19 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1014950, + "thread": 17 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1194321, + "thread": 27 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1331774, + "thread": 13 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1535430, + "thread": 8 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1709655, + "thread": 6 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1815954, + "thread": 22 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 1994066, + "thread": 7 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 2215413, + "thread": 19 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 2443731, + "thread": 13 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 2568283, + "thread": 9 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 2649426, + "thread": 25 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 2799927, + "thread": 12 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 3002895, + "thread": 24 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 3227935, + "thread": 6 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 3389575, + "thread": 26 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 3506701, + "thread": 3 + } + }, + { + "amount": "230.453272820", + "slot": { + "period": 3666232, + "thread": 18 + } + }, + { + "amount": "230.453272822", + "slot": { + "period": 3917890, + "thread": 12 + } + } + ], + "AU12Qqd4vLjwxH9ZQNkvNms3ZGWoAHiVwjGKmfva8Xq57cf5WBeZj": [ + { + "amount": "53.257153258", + "slot": { + "period": 88670, + "thread": 31 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 315323, + "thread": 16 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 337681, + "thread": 21 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 581617, + "thread": 25 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 817451, + "thread": 26 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 943021, + "thread": 31 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1035433, + "thread": 22 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1283116, + "thread": 14 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1430628, + "thread": 4 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1612545, + "thread": 24 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1724460, + "thread": 24 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 1934631, + "thread": 25 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2107076, + "thread": 18 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2232382, + "thread": 15 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2447220, + "thread": 5 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2515477, + "thread": 17 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2755034, + "thread": 13 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 2836096, + "thread": 16 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 3104040, + "thread": 19 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 3205929, + "thread": 9 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 3318088, + "thread": 27 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 3475654, + "thread": 16 + } + }, + { + "amount": "53.257153258", + "slot": { + "period": 3619549, + "thread": 0 + } + }, + { + "amount": "53.257153266", + "slot": { + "period": 3881575, + "thread": 8 + } + } + ], + "AU12QqqrY2uU7pxDLYRcA5LwCtZkznkwDWf6z6NmN2R1wLmdAYLB": [ + { + "amount": "243.434320062", + "slot": { + "period": 107887, + "thread": 26 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 288770, + "thread": 25 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 435736, + "thread": 0 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 591545, + "thread": 24 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 746429, + "thread": 13 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 916326, + "thread": 13 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1064831, + "thread": 6 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1248212, + "thread": 11 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1433060, + "thread": 18 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1567244, + "thread": 29 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1701805, + "thread": 21 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 1828943, + "thread": 23 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2129352, + "thread": 30 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2191465, + "thread": 20 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2459480, + "thread": 6 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2608219, + "thread": 15 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2768300, + "thread": 27 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 2931683, + "thread": 24 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 3043736, + "thread": 28 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 3168845, + "thread": 15 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 3331023, + "thread": 2 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 3562128, + "thread": 9 + } + }, + { + "amount": "243.434320062", + "slot": { + "period": 3694888, + "thread": 23 + } + }, + { + "amount": "243.434320074", + "slot": { + "period": 3810624, + "thread": 14 + } + } + ], + "AU12Qqy5PsqYmPPaoQQ8dT69Vvji9c34JiTGDosPJiN5SvVH8W5E5": [ + { + "amount": "365.440753716", + "slot": { + "period": 157164, + "thread": 0 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 282223, + "thread": 28 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 417740, + "thread": 26 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 548653, + "thread": 11 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 658760, + "thread": 20 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 896758, + "thread": 23 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1056373, + "thread": 11 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1186659, + "thread": 26 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1367166, + "thread": 14 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1553834, + "thread": 29 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1685375, + "thread": 23 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 1834419, + "thread": 11 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2141795, + "thread": 5 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2215005, + "thread": 13 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2441488, + "thread": 7 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2605190, + "thread": 27 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2674308, + "thread": 28 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 2935593, + "thread": 22 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 3080637, + "thread": 13 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 3242472, + "thread": 0 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 3348986, + "thread": 16 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 3516147, + "thread": 15 + } + }, + { + "amount": "365.440753716", + "slot": { + "period": 3745914, + "thread": 23 + } + }, + { + "amount": "365.440753725", + "slot": { + "period": 3869180, + "thread": 2 + } + } + ], + "AU12QrNaKRff6EQPZyR1exnw3iWVEhU5bRjAFD7qrN8YNKEhAhegE": [ + { + "amount": "244.714124847", + "slot": { + "period": 34311, + "thread": 20 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 256824, + "thread": 25 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 480598, + "thread": 14 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 627354, + "thread": 17 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 688365, + "thread": 12 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 829079, + "thread": 27 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1073568, + "thread": 24 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1159965, + "thread": 23 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1447451, + "thread": 1 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1531956, + "thread": 13 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1687275, + "thread": 11 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1826341, + "thread": 22 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 1985962, + "thread": 21 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2276079, + "thread": 4 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2361827, + "thread": 6 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2464850, + "thread": 29 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2625734, + "thread": 24 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2919732, + "thread": 15 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 2989112, + "thread": 2 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 3243078, + "thread": 4 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 3327416, + "thread": 28 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 3510553, + "thread": 4 + } + }, + { + "amount": "244.714124847", + "slot": { + "period": 3696954, + "thread": 6 + } + }, + { + "amount": "244.714124844", + "slot": { + "period": 3916929, + "thread": 12 + } + } + ], + "AU12QtjEYwvZCmhdkTLRzGsuLYwW4xT1yRb7g6FDzsdi7zZZUY8Y8": [ + { + "amount": "105.172303703", + "slot": { + "period": 99318, + "thread": 11 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 203253, + "thread": 26 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 431553, + "thread": 8 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 540100, + "thread": 29 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 761462, + "thread": 20 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 828853, + "thread": 2 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1007813, + "thread": 16 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1281993, + "thread": 30 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1463841, + "thread": 5 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1500303, + "thread": 1 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1655072, + "thread": 1 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 1975167, + "thread": 24 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2051242, + "thread": 2 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2226853, + "thread": 11 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2322804, + "thread": 15 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2512670, + "thread": 11 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2753819, + "thread": 0 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 2890500, + "thread": 4 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 3069876, + "thread": 14 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 3194203, + "thread": 9 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 3426171, + "thread": 8 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 3533638, + "thread": 18 + } + }, + { + "amount": "105.172303703", + "slot": { + "period": 3654850, + "thread": 24 + } + }, + { + "amount": "105.172303711", + "slot": { + "period": 3940107, + "thread": 23 + } + } + ], + "AU12Qu3nQhKQSqELgqBErkp7ThQHeR9DKPCxXk33Ch5BiBAyca8RK": [ + { + "amount": "156.631381318", + "slot": { + "period": 128905, + "thread": 3 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 241016, + "thread": 27 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 389265, + "thread": 3 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 551765, + "thread": 19 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 678374, + "thread": 28 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 849609, + "thread": 0 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1056791, + "thread": 20 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1179199, + "thread": 28 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1413039, + "thread": 16 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1586851, + "thread": 25 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1784367, + "thread": 30 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 1927662, + "thread": 2 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2042001, + "thread": 22 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2228595, + "thread": 0 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2376995, + "thread": 18 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2569092, + "thread": 27 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2699975, + "thread": 21 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 2925691, + "thread": 3 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 3035648, + "thread": 21 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 3229666, + "thread": 20 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 3373252, + "thread": 14 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 3528602, + "thread": 10 + } + }, + { + "amount": "156.631381318", + "slot": { + "period": 3757653, + "thread": 15 + } + }, + { + "amount": "156.631381313", + "slot": { + "period": 3892588, + "thread": 13 + } + } + ], + "AU12QuosFw53qsZzW5rHMY9AR3yibDJfgPC9xGQMwTW33uTN6bbAJ": [ + { + "amount": "287.840461536", + "slot": { + "period": 17611, + "thread": 22 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 314451, + "thread": 14 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 452739, + "thread": 8 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 526119, + "thread": 28 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 702832, + "thread": 15 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 865050, + "thread": 29 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1023224, + "thread": 10 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1242093, + "thread": 16 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1356331, + "thread": 31 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1559803, + "thread": 14 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1796680, + "thread": 12 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 1864041, + "thread": 17 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2061384, + "thread": 17 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2179061, + "thread": 21 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2313058, + "thread": 5 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2514993, + "thread": 5 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2735527, + "thread": 2 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 2834219, + "thread": 9 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 3117217, + "thread": 13 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 3134733, + "thread": 20 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 3337371, + "thread": 0 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 3552102, + "thread": 24 + } + }, + { + "amount": "287.840461536", + "slot": { + "period": 3694371, + "thread": 1 + } + }, + { + "amount": "287.840461545", + "slot": { + "period": 3835761, + "thread": 22 + } + } + ], + "AU12Qvc3428kb9H69ESK8LPrpRpwg9FJRo2qq6oHrkmU7dTyoij7J": [ + { + "amount": "150.705489337", + "slot": { + "period": 45731, + "thread": 10 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 267331, + "thread": 15 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 465867, + "thread": 19 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 626111, + "thread": 27 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 724701, + "thread": 6 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 923727, + "thread": 13 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1051146, + "thread": 6 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1211133, + "thread": 23 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1394225, + "thread": 5 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1551932, + "thread": 25 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1748914, + "thread": 14 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1834906, + "thread": 1 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 1996444, + "thread": 19 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2227067, + "thread": 29 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2448938, + "thread": 31 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2481388, + "thread": 25 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2652610, + "thread": 30 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2908618, + "thread": 25 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 2977966, + "thread": 27 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 3121828, + "thread": 2 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 3393537, + "thread": 3 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 3552956, + "thread": 19 + } + }, + { + "amount": "150.705489337", + "slot": { + "period": 3766340, + "thread": 6 + } + }, + { + "amount": "150.705489328", + "slot": { + "period": 3794879, + "thread": 9 + } + } + ], + "AU12QvtVxW8Q8fszCujzyNycLdBoSS358ApMre2cMDL4K47K8JN8p": [ + { + "amount": "194.512372858", + "slot": { + "period": 77050, + "thread": 29 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 200714, + "thread": 2 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 358182, + "thread": 6 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 629647, + "thread": 3 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 670892, + "thread": 9 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 921093, + "thread": 5 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1034039, + "thread": 20 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1218019, + "thread": 22 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1472849, + "thread": 12 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1507715, + "thread": 10 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1753099, + "thread": 0 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 1834023, + "thread": 1 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2116718, + "thread": 14 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2293765, + "thread": 7 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2334773, + "thread": 5 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2490405, + "thread": 6 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2628230, + "thread": 1 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 2887758, + "thread": 20 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 3115587, + "thread": 29 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 3229280, + "thread": 2 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 3300183, + "thread": 27 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 3594129, + "thread": 14 + } + }, + { + "amount": "194.512372858", + "slot": { + "period": 3681889, + "thread": 1 + } + }, + { + "amount": "194.512372856", + "slot": { + "period": 3855639, + "thread": 25 + } + } + ], + "AU12QwL5fzUCPnrSA6589HckQ9zUuKy3HQBEqFTwHsfUx1S2yB7qE": [ + { + "amount": "211.647413569", + "slot": { + "period": 103038, + "thread": 23 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 195631, + "thread": 24 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 456384, + "thread": 14 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 645284, + "thread": 2 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 751577, + "thread": 31 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 961214, + "thread": 10 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1044983, + "thread": 16 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1261771, + "thread": 21 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1459394, + "thread": 9 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1593232, + "thread": 8 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1751661, + "thread": 12 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 1856178, + "thread": 15 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2111588, + "thread": 29 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2159994, + "thread": 4 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2419648, + "thread": 0 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2553857, + "thread": 19 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2784212, + "thread": 5 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 2801898, + "thread": 25 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 3104524, + "thread": 18 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 3284995, + "thread": 1 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 3291860, + "thread": 11 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 3523288, + "thread": 18 + } + }, + { + "amount": "211.647413569", + "slot": { + "period": 3703271, + "thread": 9 + } + }, + { + "amount": "211.647413574", + "slot": { + "period": 3833435, + "thread": 5 + } + } + ], + "AU12QwNXDqWy7zaagqFfsZjSiCFtVJDHJyF8a8EWF72xBJcWt1CZk": [ + { + "amount": "184.043278334", + "slot": { + "period": 92715, + "thread": 17 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 298495, + "thread": 8 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 391344, + "thread": 25 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 614753, + "thread": 16 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 774986, + "thread": 30 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 928709, + "thread": 15 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1103762, + "thread": 22 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1153095, + "thread": 20 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1467434, + "thread": 29 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1501003, + "thread": 14 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1791308, + "thread": 2 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 1942705, + "thread": 22 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2028906, + "thread": 21 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2181138, + "thread": 9 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2314413, + "thread": 25 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2532241, + "thread": 15 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2652665, + "thread": 21 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 2830810, + "thread": 25 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 3098567, + "thread": 26 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 3277130, + "thread": 1 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 3410363, + "thread": 2 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 3524911, + "thread": 27 + } + }, + { + "amount": "184.043278334", + "slot": { + "period": 3717032, + "thread": 27 + } + }, + { + "amount": "184.043278340", + "slot": { + "period": 3892041, + "thread": 19 + } + } + ], + "AU12Qxbdy4aeJyysHRyGJUjEADwSHDZ6DzCA6oieJkMVVSyvtBPGJ": [ + { + "amount": "260.626904323", + "slot": { + "period": 122879, + "thread": 10 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 219269, + "thread": 27 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 374073, + "thread": 28 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 507113, + "thread": 28 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 782954, + "thread": 4 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 896189, + "thread": 15 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1001108, + "thread": 8 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1159137, + "thread": 18 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1406438, + "thread": 13 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1601060, + "thread": 23 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1695846, + "thread": 11 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 1937123, + "thread": 12 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2055572, + "thread": 2 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2284268, + "thread": 24 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2384132, + "thread": 29 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2595787, + "thread": 7 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2628094, + "thread": 14 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2889555, + "thread": 29 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 2961987, + "thread": 12 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 3141989, + "thread": 24 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 3330366, + "thread": 7 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 3607575, + "thread": 29 + } + }, + { + "amount": "260.626904323", + "slot": { + "period": 3772088, + "thread": 21 + } + }, + { + "amount": "260.626904332", + "slot": { + "period": 3899403, + "thread": 11 + } + } + ], + "AU12QxutjNHYMLxnDsj95BGgwNuU1p7wCNpASFgMCr6xrGvnhMdeS": [ + { + "amount": "216.064137271", + "slot": { + "period": 162789, + "thread": 31 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 174437, + "thread": 13 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 397598, + "thread": 2 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 512442, + "thread": 4 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 671347, + "thread": 24 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 821373, + "thread": 15 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 988765, + "thread": 21 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 1297480, + "thread": 6 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 1440186, + "thread": 5 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 1488528, + "thread": 9 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 1777039, + "thread": 4 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 1857403, + "thread": 7 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2033898, + "thread": 25 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2254176, + "thread": 10 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2318624, + "thread": 10 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2552185, + "thread": 18 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2672040, + "thread": 8 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 2813566, + "thread": 8 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 3031935, + "thread": 3 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 3135445, + "thread": 27 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 3426704, + "thread": 28 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 3469263, + "thread": 7 + } + }, + { + "amount": "216.064137271", + "slot": { + "period": 3670448, + "thread": 9 + } + }, + { + "amount": "216.064137277", + "slot": { + "period": 3812836, + "thread": 4 + } + } + ], + "AU12QyrsxCyrmJN1AiMDnQsAVzL54rDCksGCe8kgLQ3ic4wwzaveR": [ + { + "amount": "142.969708646", + "slot": { + "period": 66098, + "thread": 7 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 265310, + "thread": 17 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 371551, + "thread": 27 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 568093, + "thread": 21 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 783287, + "thread": 8 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 912096, + "thread": 7 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 986942, + "thread": 16 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 1212746, + "thread": 7 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 1375960, + "thread": 27 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 1479783, + "thread": 21 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 1734172, + "thread": 23 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 1875737, + "thread": 9 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2030279, + "thread": 21 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2272032, + "thread": 18 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2324880, + "thread": 19 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2543915, + "thread": 4 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2646061, + "thread": 14 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2844683, + "thread": 18 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 2961464, + "thread": 21 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 3176924, + "thread": 9 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 3381234, + "thread": 26 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 3609466, + "thread": 31 + } + }, + { + "amount": "142.969708646", + "slot": { + "period": 3704206, + "thread": 4 + } + }, + { + "amount": "142.969708658", + "slot": { + "period": 3906888, + "thread": 19 + } + } + ], + "AU12R1Bv4x5uAuAYLecvENpgq962eXbRZgyQRpGUjm6UzrK3hRUsw": [ + { + "amount": "219.540537020", + "slot": { + "period": 37894, + "thread": 17 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 177110, + "thread": 14 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 406581, + "thread": 26 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 607480, + "thread": 9 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 700351, + "thread": 10 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 854940, + "thread": 15 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1059586, + "thread": 15 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1211705, + "thread": 25 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1448159, + "thread": 21 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1564343, + "thread": 31 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1735844, + "thread": 21 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1858461, + "thread": 23 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 1994686, + "thread": 6 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 2186251, + "thread": 11 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 2402010, + "thread": 15 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 2547442, + "thread": 24 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 2683632, + "thread": 3 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 2848026, + "thread": 20 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 3085925, + "thread": 25 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 3189350, + "thread": 25 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 3305178, + "thread": 21 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 3517652, + "thread": 8 + } + }, + { + "amount": "219.540537020", + "slot": { + "period": 3706480, + "thread": 27 + } + }, + { + "amount": "219.540537026", + "slot": { + "period": 3896283, + "thread": 13 + } + } + ], + "AU12R1SoPCQ91qaetibrDzo5f3ujpt58Q5hHY2h7xa164FaCViv5S": [ + { + "amount": "286.963866668", + "slot": { + "period": 67445, + "thread": 23 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 199261, + "thread": 13 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 349852, + "thread": 14 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 511641, + "thread": 8 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 767020, + "thread": 14 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 858995, + "thread": 4 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1129435, + "thread": 8 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1185477, + "thread": 29 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1317738, + "thread": 5 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1577772, + "thread": 22 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1715673, + "thread": 4 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 1912958, + "thread": 24 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2075694, + "thread": 3 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2147790, + "thread": 11 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2314587, + "thread": 2 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2606865, + "thread": 21 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2759303, + "thread": 24 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2935157, + "thread": 8 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 2982155, + "thread": 10 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 3159638, + "thread": 11 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 3429346, + "thread": 17 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 3584152, + "thread": 15 + } + }, + { + "amount": "286.963866668", + "slot": { + "period": 3704321, + "thread": 8 + } + }, + { + "amount": "286.963866680", + "slot": { + "period": 3831935, + "thread": 14 + } + } + ], + "AU12R1jgBjCfQ575BJJagzwRXR7donyzpcmdwYXwTWKv8qDhjs1Bh": [ + { + "amount": "135.783801110", + "slot": { + "period": 135082, + "thread": 20 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 210858, + "thread": 9 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 424830, + "thread": 2 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 522989, + "thread": 31 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 760592, + "thread": 12 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 850381, + "thread": 25 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1094698, + "thread": 3 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1291920, + "thread": 30 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1406939, + "thread": 5 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1592187, + "thread": 5 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1703807, + "thread": 22 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 1927065, + "thread": 12 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2104568, + "thread": 24 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2161817, + "thread": 23 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2456044, + "thread": 26 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2566560, + "thread": 29 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2779395, + "thread": 19 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 2795323, + "thread": 13 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 3039524, + "thread": 15 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 3193110, + "thread": 24 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 3310665, + "thread": 4 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 3539068, + "thread": 3 + } + }, + { + "amount": "135.783801110", + "slot": { + "period": 3643452, + "thread": 0 + } + }, + { + "amount": "135.783801100", + "slot": { + "period": 3815782, + "thread": 1 + } + } + ], + "AU12R27opc5QQiVb1xEfMZp2inVnpNNFWLvnphEpz5xdBzCJrimKR": [ + { + "amount": "350.813625454", + "slot": { + "period": 105644, + "thread": 5 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 232344, + "thread": 7 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 486467, + "thread": 24 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 633641, + "thread": 4 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 782201, + "thread": 9 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 912035, + "thread": 3 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 990828, + "thread": 6 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 1314401, + "thread": 16 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 1330957, + "thread": 9 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 1490851, + "thread": 13 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 1729355, + "thread": 3 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 1880796, + "thread": 11 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2003206, + "thread": 4 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2174045, + "thread": 14 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2369743, + "thread": 30 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2604340, + "thread": 24 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2712202, + "thread": 30 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 2929159, + "thread": 21 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 3023740, + "thread": 10 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 3170362, + "thread": 20 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 3374771, + "thread": 17 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 3605703, + "thread": 17 + } + }, + { + "amount": "350.813625454", + "slot": { + "period": 3695130, + "thread": 14 + } + }, + { + "amount": "350.813625456", + "slot": { + "period": 3914394, + "thread": 30 + } + } + ], + "AU12R2T6WJz8niWR2grscgCW7EFXnZ2cnmYgrcgQ9cMHPnWwpg6tL": [ + { + "amount": "194.547353638", + "slot": { + "period": 162864, + "thread": 21 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 243343, + "thread": 13 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 474064, + "thread": 5 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 541714, + "thread": 14 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 684144, + "thread": 5 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 873382, + "thread": 1 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1101310, + "thread": 14 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1243710, + "thread": 20 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1392369, + "thread": 18 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1546811, + "thread": 10 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1652824, + "thread": 23 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 1965257, + "thread": 24 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2074198, + "thread": 27 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2251957, + "thread": 22 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2378073, + "thread": 17 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2569611, + "thread": 13 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2628630, + "thread": 1 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2855292, + "thread": 19 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 2994061, + "thread": 25 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 3214119, + "thread": 22 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 3425290, + "thread": 11 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 3589023, + "thread": 27 + } + }, + { + "amount": "194.547353638", + "slot": { + "period": 3656297, + "thread": 11 + } + }, + { + "amount": "194.547353628", + "slot": { + "period": 3859972, + "thread": 4 + } + } + ], + "AU12R2nz3CkR8tXWixh42huj4BGaYZdeWU3npKdpnBTQJPty5T7qo": [ + { + "amount": "157.307128343", + "slot": { + "period": 11638, + "thread": 20 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 219428, + "thread": 12 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 476393, + "thread": 29 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 648862, + "thread": 30 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 820300, + "thread": 16 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 860580, + "thread": 15 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1143591, + "thread": 8 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1192470, + "thread": 4 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1431366, + "thread": 19 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1636411, + "thread": 26 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1774033, + "thread": 30 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 1893681, + "thread": 7 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2073919, + "thread": 31 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2206747, + "thread": 20 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2343831, + "thread": 12 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2573020, + "thread": 16 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2667909, + "thread": 14 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 2833663, + "thread": 5 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 3057697, + "thread": 26 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 3164567, + "thread": 12 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 3398380, + "thread": 22 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 3611792, + "thread": 26 + } + }, + { + "amount": "157.307128343", + "slot": { + "period": 3618429, + "thread": 13 + } + }, + { + "amount": "157.307128352", + "slot": { + "period": 3908476, + "thread": 28 + } + } + ], + "AU12R2s6BBiX5eGWx5v3DdZz3ki8jUqPp9fKdj3i1Mhs8gCjRCuSv": [ + { + "amount": "103.729921322", + "slot": { + "period": 82208, + "thread": 4 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 211664, + "thread": 22 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 409940, + "thread": 30 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 534963, + "thread": 18 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 678640, + "thread": 14 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 909423, + "thread": 30 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1042098, + "thread": 20 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1225562, + "thread": 20 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1414551, + "thread": 26 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1490955, + "thread": 30 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1725902, + "thread": 16 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 1969525, + "thread": 10 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2007315, + "thread": 18 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2149356, + "thread": 11 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2411850, + "thread": 27 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2539955, + "thread": 29 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2670777, + "thread": 13 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 2845707, + "thread": 0 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 3072292, + "thread": 2 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 3231025, + "thread": 17 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 3378624, + "thread": 9 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 3551652, + "thread": 6 + } + }, + { + "amount": "103.729921322", + "slot": { + "period": 3755504, + "thread": 10 + } + }, + { + "amount": "103.729921319", + "slot": { + "period": 3808359, + "thread": 0 + } + } + ], + "AU12R3DVTcnoicDqWXvWk3rigtbshgw6WeKEEECCZwsvg4iisWM8Y": [ + { + "amount": "225.966371865", + "slot": { + "period": 139131, + "thread": 14 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 167486, + "thread": 15 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 381740, + "thread": 5 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 512328, + "thread": 15 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 795422, + "thread": 8 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 824529, + "thread": 10 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1103174, + "thread": 15 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1160532, + "thread": 17 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1425706, + "thread": 25 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1531430, + "thread": 15 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1746292, + "thread": 8 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 1889470, + "thread": 22 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2051638, + "thread": 2 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2158313, + "thread": 25 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2435110, + "thread": 22 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2505616, + "thread": 21 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2666071, + "thread": 12 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 2885686, + "thread": 29 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 3031835, + "thread": 31 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 3200447, + "thread": 15 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 3313885, + "thread": 17 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 3530887, + "thread": 0 + } + }, + { + "amount": "225.966371865", + "slot": { + "period": 3645125, + "thread": 7 + } + }, + { + "amount": "225.966371873", + "slot": { + "period": 3790789, + "thread": 23 + } + } + ], + "AU12R4YFrmYeh8JzeMRrdj9E9mnx4z6aHTnAV8vWCeseXwkuqo16y": [ + { + "amount": "141.726229686", + "slot": { + "period": 94728, + "thread": 29 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 225261, + "thread": 25 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 444731, + "thread": 3 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 520617, + "thread": 2 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 698187, + "thread": 30 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 928032, + "thread": 28 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1125039, + "thread": 11 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1295682, + "thread": 10 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1390297, + "thread": 17 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1557627, + "thread": 3 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1762184, + "thread": 13 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 1934035, + "thread": 12 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2046947, + "thread": 20 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2179144, + "thread": 6 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2320907, + "thread": 0 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2467070, + "thread": 9 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2742990, + "thread": 0 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2948492, + "thread": 4 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 2983669, + "thread": 9 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 3255362, + "thread": 2 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 3301297, + "thread": 23 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 3508352, + "thread": 5 + } + }, + { + "amount": "141.726229686", + "slot": { + "period": 3621723, + "thread": 14 + } + }, + { + "amount": "141.726229698", + "slot": { + "period": 3907781, + "thread": 10 + } + } + ], + "AU12R4p6JdEnMmADH8CVMr9GgQSQKz7xHi9fHjfBaw5ZJxCHMqEhN": [ + { + "amount": "342.636378950", + "slot": { + "period": 117753, + "thread": 15 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 288280, + "thread": 16 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 387423, + "thread": 21 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 537820, + "thread": 0 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 671521, + "thread": 7 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 951241, + "thread": 12 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1104628, + "thread": 5 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1203898, + "thread": 5 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1439805, + "thread": 4 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1522331, + "thread": 25 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1763780, + "thread": 2 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 1897002, + "thread": 10 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2059290, + "thread": 13 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2255296, + "thread": 0 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2306342, + "thread": 28 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2463782, + "thread": 21 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2736181, + "thread": 13 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 2825865, + "thread": 8 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 3079814, + "thread": 24 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 3261994, + "thread": 19 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 3414161, + "thread": 19 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 3468112, + "thread": 7 + } + }, + { + "amount": "342.636378950", + "slot": { + "period": 3776714, + "thread": 23 + } + }, + { + "amount": "342.636378955", + "slot": { + "period": 3898878, + "thread": 7 + } + } + ], + "AU12R66R42SsRsMe4SCeVsEPRCDQCiCNyfZwZwcHYNjLtiTwUom9q": [ + { + "amount": "229.657892801", + "slot": { + "period": 149395, + "thread": 23 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 267019, + "thread": 28 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 341374, + "thread": 0 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 610180, + "thread": 9 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 702925, + "thread": 28 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 859410, + "thread": 13 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1038570, + "thread": 17 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1258175, + "thread": 5 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1379952, + "thread": 5 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1490800, + "thread": 30 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1748133, + "thread": 28 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 1903176, + "thread": 27 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2131547, + "thread": 21 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2245485, + "thread": 16 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2332546, + "thread": 15 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2483683, + "thread": 1 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2704971, + "thread": 0 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 2933078, + "thread": 11 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 3119316, + "thread": 11 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 3183269, + "thread": 13 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 3346553, + "thread": 2 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 3604078, + "thread": 3 + } + }, + { + "amount": "229.657892801", + "slot": { + "period": 3686797, + "thread": 24 + } + }, + { + "amount": "229.657892800", + "slot": { + "period": 3941938, + "thread": 8 + } + } + ], + "AU12R7gyjctJjYdnGPYJzGhD582fTcHBQcQumajQMfdocPyoQXfUz": [ + { + "amount": "374.404133334", + "slot": { + "period": 20422, + "thread": 2 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 215323, + "thread": 20 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 422235, + "thread": 12 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 651131, + "thread": 13 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 786822, + "thread": 30 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 940839, + "thread": 10 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1052587, + "thread": 7 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1175860, + "thread": 10 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1329202, + "thread": 0 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1487326, + "thread": 2 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1713803, + "thread": 4 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1868047, + "thread": 24 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 1977139, + "thread": 19 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2294918, + "thread": 26 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2368283, + "thread": 13 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2582615, + "thread": 23 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2697841, + "thread": 29 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2919081, + "thread": 23 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 2968754, + "thread": 29 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 3141798, + "thread": 2 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 3305255, + "thread": 4 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 3473905, + "thread": 0 + } + }, + { + "amount": "374.404133334", + "slot": { + "period": 3656737, + "thread": 25 + } + }, + { + "amount": "374.404133344", + "slot": { + "period": 3866282, + "thread": 20 + } + } + ], + "AU12R8G418H31o86Ds5ANiMtV3WPZzZUMczEW9ZzifSUVoWcSv8Ub": [ + { + "amount": "112.210189244", + "slot": { + "period": 17572, + "thread": 25 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 271985, + "thread": 3 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 349518, + "thread": 20 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 534168, + "thread": 17 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 702864, + "thread": 27 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 912146, + "thread": 15 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1024803, + "thread": 26 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1207327, + "thread": 20 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1424758, + "thread": 2 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1543789, + "thread": 16 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1790070, + "thread": 3 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 1835396, + "thread": 2 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2065946, + "thread": 3 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2155739, + "thread": 1 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2430281, + "thread": 9 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2608697, + "thread": 16 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2704083, + "thread": 19 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 2947648, + "thread": 9 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 3059905, + "thread": 15 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 3284899, + "thread": 5 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 3442064, + "thread": 2 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 3523186, + "thread": 19 + } + }, + { + "amount": "112.210189244", + "slot": { + "period": 3665334, + "thread": 13 + } + }, + { + "amount": "112.210189237", + "slot": { + "period": 3799687, + "thread": 1 + } + } + ], + "AU12R91gedhbLCZMqnh1DdPu9WCTggwEFTKimawyWS6w5tFp9h3ZT": [ + { + "amount": "121.383886204", + "slot": { + "period": 91837, + "thread": 21 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 180572, + "thread": 26 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 339435, + "thread": 4 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 541315, + "thread": 12 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 709654, + "thread": 0 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 937699, + "thread": 29 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1028631, + "thread": 16 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1275228, + "thread": 18 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1339851, + "thread": 27 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1546081, + "thread": 20 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1714143, + "thread": 16 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 1821929, + "thread": 27 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2014814, + "thread": 3 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2218478, + "thread": 17 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2427970, + "thread": 30 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2561552, + "thread": 25 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2774581, + "thread": 30 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 2911769, + "thread": 24 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 3042801, + "thread": 14 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 3239739, + "thread": 0 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 3441625, + "thread": 2 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 3613838, + "thread": 29 + } + }, + { + "amount": "121.383886204", + "slot": { + "period": 3716173, + "thread": 4 + } + }, + { + "amount": "121.383886196", + "slot": { + "period": 3811608, + "thread": 25 + } + } + ], + "AU12R94982SFM4wnmZRx4RRyHBz7gbwc8FnUfkgwF83cnhHQKUimc": [ + { + "amount": "108.656803969", + "slot": { + "period": 154404, + "thread": 13 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 212944, + "thread": 24 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 344944, + "thread": 10 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 629810, + "thread": 9 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 690690, + "thread": 0 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 879778, + "thread": 13 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1116166, + "thread": 13 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1273079, + "thread": 16 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1361706, + "thread": 22 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1522145, + "thread": 24 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1660599, + "thread": 4 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 1874424, + "thread": 28 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2066288, + "thread": 19 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2257605, + "thread": 16 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2332024, + "thread": 23 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2559186, + "thread": 11 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2695571, + "thread": 5 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2948643, + "thread": 18 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 2969957, + "thread": 30 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 3160492, + "thread": 17 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 3400405, + "thread": 7 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 3504871, + "thread": 5 + } + }, + { + "amount": "108.656803969", + "slot": { + "period": 3648742, + "thread": 10 + } + }, + { + "amount": "108.656803961", + "slot": { + "period": 3794220, + "thread": 23 + } + } + ], + "AU12RAEnKsh71EP6zLoWSDkgLKFsw6mQsPZ8KGMFwCUPiDUuxgGNU": [ + { + "amount": "207.184022624", + "slot": { + "period": 113831, + "thread": 18 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 277571, + "thread": 27 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 384558, + "thread": 8 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 560491, + "thread": 21 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 736788, + "thread": 27 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 945118, + "thread": 28 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1048004, + "thread": 20 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1277085, + "thread": 2 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1387245, + "thread": 6 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1525278, + "thread": 7 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1748989, + "thread": 16 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 1819095, + "thread": 25 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2140909, + "thread": 30 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2197331, + "thread": 1 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2433701, + "thread": 22 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2552060, + "thread": 24 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2708040, + "thread": 5 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 2877517, + "thread": 21 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 3013781, + "thread": 18 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 3276314, + "thread": 0 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 3442393, + "thread": 0 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 3481276, + "thread": 30 + } + }, + { + "amount": "207.184022624", + "slot": { + "period": 3618733, + "thread": 22 + } + }, + { + "amount": "207.184022626", + "slot": { + "period": 3844629, + "thread": 10 + } + } + ], + "AU12RAJetyde51gkJqMaZVxyHC1KhaTSzwYC1R8XaUaA89j8jCxZY": [ + { + "amount": "99.130918459", + "slot": { + "period": 91718, + "thread": 11 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 250823, + "thread": 5 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 416569, + "thread": 30 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 536913, + "thread": 29 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 717372, + "thread": 6 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 965019, + "thread": 6 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1051796, + "thread": 1 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1290991, + "thread": 2 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1387073, + "thread": 29 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1585192, + "thread": 21 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1706608, + "thread": 6 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 1871800, + "thread": 1 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2077423, + "thread": 27 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2178960, + "thread": 16 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2337472, + "thread": 13 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2536905, + "thread": 8 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2717765, + "thread": 6 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 2803532, + "thread": 4 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 3044399, + "thread": 31 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 3274378, + "thread": 6 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 3424308, + "thread": 26 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 3498501, + "thread": 20 + } + }, + { + "amount": "99.130918459", + "slot": { + "period": 3692271, + "thread": 23 + } + }, + { + "amount": "99.130918458", + "slot": { + "period": 3781101, + "thread": 4 + } + } + ], + "AU12RBDWzS7MJDQwSqaBLs17cx6qS74FKXnL6YfgGL4fX6GJt6kkJ": [ + { + "amount": "54.084280462", + "slot": { + "period": 118031, + "thread": 15 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 249750, + "thread": 15 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 391569, + "thread": 23 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 597809, + "thread": 20 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 815014, + "thread": 13 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 944906, + "thread": 5 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1005658, + "thread": 2 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1252419, + "thread": 2 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1446645, + "thread": 2 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1518738, + "thread": 19 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1790458, + "thread": 30 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 1912065, + "thread": 23 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2035877, + "thread": 11 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2241066, + "thread": 27 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2408607, + "thread": 26 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2522404, + "thread": 29 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2627547, + "thread": 6 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2801273, + "thread": 17 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 2984778, + "thread": 1 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 3181715, + "thread": 15 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 3331783, + "thread": 6 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 3604501, + "thread": 28 + } + }, + { + "amount": "54.084280462", + "slot": { + "period": 3622281, + "thread": 7 + } + }, + { + "amount": "54.084280457", + "slot": { + "period": 3936808, + "thread": 16 + } + } + ], + "AU12RBJr9VZsY6U5AagduW8hQbe3dehvjn29QEx4C3t15BzLhip52": [ + { + "amount": "58.682073075", + "slot": { + "period": 45655, + "thread": 17 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 245213, + "thread": 8 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 484754, + "thread": 20 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 606188, + "thread": 16 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 751550, + "thread": 27 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 949604, + "thread": 22 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1135127, + "thread": 2 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1279165, + "thread": 1 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1393167, + "thread": 4 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1612864, + "thread": 17 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1748533, + "thread": 18 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 1874242, + "thread": 1 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2083288, + "thread": 27 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2243705, + "thread": 23 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2374010, + "thread": 31 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2539449, + "thread": 3 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2683480, + "thread": 10 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2851243, + "thread": 14 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 2981551, + "thread": 9 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 3203666, + "thread": 14 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 3415307, + "thread": 19 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 3457203, + "thread": 14 + } + }, + { + "amount": "58.682073075", + "slot": { + "period": 3729230, + "thread": 27 + } + }, + { + "amount": "58.682073074", + "slot": { + "period": 3895849, + "thread": 16 + } + } + ], + "AU12RBoXweRMQe7twoASY4YpT6XaEkiBjzweddKgEN84KvTa7ois1": [ + { + "amount": "237.645899892", + "slot": { + "period": 36328, + "thread": 0 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 177216, + "thread": 17 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 340929, + "thread": 9 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 557213, + "thread": 2 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 799279, + "thread": 16 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 850150, + "thread": 28 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1078394, + "thread": 10 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1294608, + "thread": 30 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1401690, + "thread": 0 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1494628, + "thread": 15 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1800164, + "thread": 1 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 1961663, + "thread": 28 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2054158, + "thread": 9 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2263267, + "thread": 26 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2431911, + "thread": 6 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2533067, + "thread": 29 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2723485, + "thread": 12 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 2938294, + "thread": 4 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 3000901, + "thread": 4 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 3240757, + "thread": 11 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 3419767, + "thread": 23 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 3563347, + "thread": 5 + } + }, + { + "amount": "237.645899892", + "slot": { + "period": 3677098, + "thread": 22 + } + }, + { + "amount": "237.645899889", + "slot": { + "period": 3812888, + "thread": 26 + } + } + ], + "AU12RDVPqLf7TgPhponZZYNqKn2sqyFzrafAq5LibT49AzEn7npeF": [ + { + "amount": "391.257203692", + "slot": { + "period": 11726, + "thread": 10 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 317837, + "thread": 30 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 433363, + "thread": 2 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 619686, + "thread": 20 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 697985, + "thread": 26 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 835719, + "thread": 14 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1016112, + "thread": 28 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1196872, + "thread": 24 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1394407, + "thread": 14 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1582150, + "thread": 13 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1781405, + "thread": 6 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 1824736, + "thread": 13 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2007670, + "thread": 25 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2201301, + "thread": 18 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2393715, + "thread": 1 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2579689, + "thread": 29 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2718682, + "thread": 26 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2922656, + "thread": 3 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 2964802, + "thread": 5 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 3217428, + "thread": 15 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 3401138, + "thread": 14 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 3454934, + "thread": 18 + } + }, + { + "amount": "391.257203692", + "slot": { + "period": 3651805, + "thread": 28 + } + }, + { + "amount": "391.257203697", + "slot": { + "period": 3884050, + "thread": 27 + } + } + ], + "AU12RDf2bqixYRSg3EmoRjYYGFYM7TzKfRRsEazpJVE8V7aLZYfMJ": [ + { + "amount": "95.130459861", + "slot": { + "period": 128939, + "thread": 23 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 303875, + "thread": 6 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 485394, + "thread": 20 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 615087, + "thread": 7 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 726040, + "thread": 5 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 959518, + "thread": 8 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 990046, + "thread": 0 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 1301515, + "thread": 14 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 1384473, + "thread": 30 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 1486943, + "thread": 20 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 1763964, + "thread": 10 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 1846299, + "thread": 2 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2128275, + "thread": 5 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2257829, + "thread": 24 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2318138, + "thread": 8 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2598317, + "thread": 21 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2670069, + "thread": 21 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 2801633, + "thread": 7 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 3035056, + "thread": 22 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 3223990, + "thread": 15 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 3394542, + "thread": 5 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 3483945, + "thread": 14 + } + }, + { + "amount": "95.130459861", + "slot": { + "period": 3736737, + "thread": 1 + } + }, + { + "amount": "95.130459858", + "slot": { + "period": 3929930, + "thread": 18 + } + } + ], + "AU12RE2BGrReM3GCETLCWUMXEg6a6bi8tfPPbe65G4HCPVY6rZDPy": [ + { + "amount": "129.138379650", + "slot": { + "period": 166428, + "thread": 24 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 210229, + "thread": 31 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 467194, + "thread": 1 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 623728, + "thread": 4 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 684654, + "thread": 0 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 857503, + "thread": 24 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1148818, + "thread": 8 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1290265, + "thread": 5 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1445927, + "thread": 4 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1583210, + "thread": 4 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1681714, + "thread": 24 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 1817632, + "thread": 2 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2142560, + "thread": 28 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2257966, + "thread": 11 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2416866, + "thread": 19 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2524066, + "thread": 7 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2783588, + "thread": 2 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 2926740, + "thread": 24 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 3104954, + "thread": 13 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 3183613, + "thread": 12 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 3432349, + "thread": 9 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 3582931, + "thread": 17 + } + }, + { + "amount": "129.138379650", + "slot": { + "period": 3657881, + "thread": 3 + } + }, + { + "amount": "129.138379646", + "slot": { + "period": 3863218, + "thread": 20 + } + } + ], + "AU12RGEmr3QG3rwKave4qgizy8M6MhcFs4ujjWXMiLNz2BHaRh8u1": [ + { + "amount": "149.398269325", + "slot": { + "period": 31333, + "thread": 1 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 218628, + "thread": 27 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 411781, + "thread": 13 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 518783, + "thread": 6 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 789341, + "thread": 29 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 903652, + "thread": 25 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1033889, + "thread": 13 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1168646, + "thread": 9 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1387384, + "thread": 15 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1564913, + "thread": 31 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1652127, + "thread": 25 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 1954271, + "thread": 3 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2120353, + "thread": 16 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2163293, + "thread": 16 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2434247, + "thread": 29 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2521984, + "thread": 16 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2657095, + "thread": 28 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2895530, + "thread": 5 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 2966359, + "thread": 15 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 3269249, + "thread": 3 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 3291363, + "thread": 21 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 3473494, + "thread": 2 + } + }, + { + "amount": "149.398269325", + "slot": { + "period": 3714862, + "thread": 15 + } + }, + { + "amount": "149.398269334", + "slot": { + "period": 3796521, + "thread": 15 + } + } + ], + "AU12RGHa3noYCDWPtJ1PZx5wP6va2Eg2zxNrpJd2Wo4i9sr1zvo2s": [ + { + "amount": "373.975800425", + "slot": { + "period": 104212, + "thread": 16 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 193504, + "thread": 11 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 325812, + "thread": 29 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 609045, + "thread": 18 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 800013, + "thread": 12 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 961401, + "thread": 5 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 992159, + "thread": 13 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 1154051, + "thread": 8 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 1401687, + "thread": 29 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 1595270, + "thread": 4 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 1746754, + "thread": 29 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 1935326, + "thread": 4 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2094717, + "thread": 27 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2188268, + "thread": 28 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2353856, + "thread": 13 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2547027, + "thread": 28 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2687194, + "thread": 3 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2928715, + "thread": 23 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 2956802, + "thread": 13 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 3256053, + "thread": 31 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 3295597, + "thread": 21 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 3460113, + "thread": 21 + } + }, + { + "amount": "373.975800425", + "slot": { + "period": 3699309, + "thread": 31 + } + }, + { + "amount": "373.975800427", + "slot": { + "period": 3840923, + "thread": 19 + } + } + ], + "AU12RGYNyhUuaRqoJbSJ8VwHZm9ERqCGwnBs8FaKqtQzapqeXfx8b": [ + { + "amount": "146.271120321", + "slot": { + "period": 23179, + "thread": 18 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 273930, + "thread": 16 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 364171, + "thread": 21 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 631703, + "thread": 7 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 710554, + "thread": 18 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 883243, + "thread": 29 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1130667, + "thread": 2 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1197253, + "thread": 5 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1391431, + "thread": 22 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1623282, + "thread": 8 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1761304, + "thread": 8 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 1842934, + "thread": 0 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2115046, + "thread": 9 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2290538, + "thread": 4 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2371397, + "thread": 15 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2588557, + "thread": 0 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2755892, + "thread": 30 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 2850042, + "thread": 13 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 3087195, + "thread": 24 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 3198754, + "thread": 3 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 3296359, + "thread": 19 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 3465715, + "thread": 1 + } + }, + { + "amount": "146.271120321", + "slot": { + "period": 3777822, + "thread": 1 + } + }, + { + "amount": "146.271120328", + "slot": { + "period": 3896284, + "thread": 28 + } + } + ], + "AU12RHDXrgsD8iycGRrC8r7TW2sjmoPcB2SmvZhxrzjiwXJdBiHPP": [ + { + "amount": "212.365540408", + "slot": { + "period": 68987, + "thread": 10 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 245779, + "thread": 0 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 386073, + "thread": 2 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 538029, + "thread": 12 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 669560, + "thread": 9 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 824191, + "thread": 22 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1062712, + "thread": 31 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1268422, + "thread": 26 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1470515, + "thread": 11 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1485562, + "thread": 12 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1657690, + "thread": 17 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 1878583, + "thread": 0 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2073079, + "thread": 19 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2165629, + "thread": 8 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2341978, + "thread": 26 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2475083, + "thread": 25 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2624934, + "thread": 1 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2862441, + "thread": 20 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 2979895, + "thread": 7 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 3224532, + "thread": 17 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 3366285, + "thread": 22 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 3542763, + "thread": 14 + } + }, + { + "amount": "212.365540408", + "slot": { + "period": 3767618, + "thread": 13 + } + }, + { + "amount": "212.365540413", + "slot": { + "period": 3909961, + "thread": 8 + } + } + ], + "AU12RHt3RMrHzQuvrHy1xzbyDt8CQk3BmsCHUPt5NPhvKboDbJF5H": [ + { + "amount": "58.185570255", + "slot": { + "period": 14553, + "thread": 23 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 186425, + "thread": 19 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 439658, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 531531, + "thread": 30 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 657618, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 948771, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1101595, + "thread": 11 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1231804, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1422860, + "thread": 25 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1589010, + "thread": 16 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1656851, + "thread": 2 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 1909931, + "thread": 9 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2062902, + "thread": 27 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2280032, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2379058, + "thread": 8 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2543150, + "thread": 4 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2706880, + "thread": 3 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 2942655, + "thread": 31 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 3066053, + "thread": 16 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 3172971, + "thread": 21 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 3379383, + "thread": 27 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 3514463, + "thread": 18 + } + }, + { + "amount": "58.185570255", + "slot": { + "period": 3703312, + "thread": 9 + } + }, + { + "amount": "58.185570251", + "slot": { + "period": 3935534, + "thread": 27 + } + } + ], + "AU12RHtrwQ7FHjRM4CkPusvsKYXbzbPDXhmpi3ZitDE92zS7XrKG3": [ + { + "amount": "155.279792278", + "slot": { + "period": 148356, + "thread": 13 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 207534, + "thread": 30 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 385049, + "thread": 22 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 527675, + "thread": 7 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 688027, + "thread": 6 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 858798, + "thread": 12 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1082730, + "thread": 5 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1311019, + "thread": 11 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1422832, + "thread": 19 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1483857, + "thread": 18 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1679607, + "thread": 31 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 1900740, + "thread": 19 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2112972, + "thread": 31 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2235093, + "thread": 19 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2461983, + "thread": 7 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2523424, + "thread": 28 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2654376, + "thread": 4 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 2928464, + "thread": 18 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 3030936, + "thread": 17 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 3184029, + "thread": 21 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 3434354, + "thread": 25 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 3580653, + "thread": 23 + } + }, + { + "amount": "155.279792278", + "slot": { + "period": 3732844, + "thread": 4 + } + }, + { + "amount": "155.279792270", + "slot": { + "period": 3909309, + "thread": 10 + } + } + ], + "AU12RHxkvmFVyyz7bPzjz3iNg59BQAZgYmtxa93BzRfZo2NY9AiUQ": [ + { + "amount": "147.836408409", + "slot": { + "period": 70263, + "thread": 31 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 227017, + "thread": 25 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 407372, + "thread": 17 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 653008, + "thread": 2 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 682859, + "thread": 11 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 945146, + "thread": 27 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1106240, + "thread": 0 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1188840, + "thread": 26 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1401779, + "thread": 30 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1594790, + "thread": 5 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1760273, + "thread": 1 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 1873942, + "thread": 2 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2076441, + "thread": 16 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2173076, + "thread": 9 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2456298, + "thread": 19 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2502956, + "thread": 29 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2740602, + "thread": 18 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2863574, + "thread": 29 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 2968038, + "thread": 2 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 3123815, + "thread": 8 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 3430540, + "thread": 20 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 3508372, + "thread": 21 + } + }, + { + "amount": "147.836408409", + "slot": { + "period": 3696424, + "thread": 8 + } + }, + { + "amount": "147.836408417", + "slot": { + "period": 3869929, + "thread": 12 + } + } + ], + "AU12RHyo5gd1Vpn1ByrqDqpMEohQRdgkY6FkShfgZdRvUbyvxx16d": [ + { + "amount": "131.508745301", + "slot": { + "period": 65078, + "thread": 28 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 167483, + "thread": 1 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 389648, + "thread": 4 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 501200, + "thread": 7 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 674641, + "thread": 26 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 974535, + "thread": 20 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1129080, + "thread": 4 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1243635, + "thread": 1 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1350661, + "thread": 30 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1489073, + "thread": 18 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1792673, + "thread": 15 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 1843155, + "thread": 20 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2020831, + "thread": 21 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2153235, + "thread": 15 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2334482, + "thread": 3 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2512840, + "thread": 29 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2730156, + "thread": 7 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 2953080, + "thread": 8 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 3055208, + "thread": 20 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 3250070, + "thread": 15 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 3388340, + "thread": 27 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 3533808, + "thread": 0 + } + }, + { + "amount": "131.508745301", + "slot": { + "period": 3754894, + "thread": 27 + } + }, + { + "amount": "131.508745292", + "slot": { + "period": 3834921, + "thread": 25 + } + } + ], + "AU12RJZmhwBHWsB27QdDS3zRpf85NyC8J8iuqnLETrk3CrbMEtRx8": [ + { + "amount": "229.570460991", + "slot": { + "period": 98169, + "thread": 14 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 169467, + "thread": 20 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 476724, + "thread": 15 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 594942, + "thread": 15 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 664232, + "thread": 30 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 906387, + "thread": 13 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1036659, + "thread": 4 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1239845, + "thread": 17 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1355377, + "thread": 26 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1562069, + "thread": 20 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1726899, + "thread": 28 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 1969229, + "thread": 3 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2076335, + "thread": 3 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2285386, + "thread": 16 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2342807, + "thread": 12 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2568748, + "thread": 19 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2661726, + "thread": 25 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2791935, + "thread": 5 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 2998429, + "thread": 15 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 3191143, + "thread": 14 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 3439098, + "thread": 27 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 3471004, + "thread": 20 + } + }, + { + "amount": "229.570460991", + "slot": { + "period": 3732372, + "thread": 12 + } + }, + { + "amount": "229.570460999", + "slot": { + "period": 3799726, + "thread": 27 + } + } + ], + "AU12RJvCXxGRxifxJ5p7pRUbcUkHKYacVhHcm76ESiaueMN1xyRr": [ + { + "amount": "326.725193078", + "slot": { + "period": 57824, + "thread": 8 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 181151, + "thread": 9 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 414129, + "thread": 2 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 578541, + "thread": 4 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 727867, + "thread": 1 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 961315, + "thread": 23 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1066981, + "thread": 24 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1244587, + "thread": 25 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1345813, + "thread": 31 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1582904, + "thread": 28 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1661113, + "thread": 22 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 1864872, + "thread": 15 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2139949, + "thread": 3 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2267800, + "thread": 13 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2419856, + "thread": 30 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2539344, + "thread": 16 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2668486, + "thread": 13 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 2888810, + "thread": 15 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 3003483, + "thread": 26 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 3244572, + "thread": 28 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 3355756, + "thread": 25 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 3490066, + "thread": 15 + } + }, + { + "amount": "326.725193078", + "slot": { + "period": 3739349, + "thread": 15 + } + }, + { + "amount": "326.725193081", + "slot": { + "period": 3808668, + "thread": 26 + } + } + ], + "AU12RMTrMgydbS2YHRtXtXK9tET8MaArj1iNgkdf33fVUJJWZLBX6": [ + { + "amount": "427.616096190", + "slot": { + "period": 90318, + "thread": 6 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 282617, + "thread": 13 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 328301, + "thread": 23 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 506937, + "thread": 1 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 705894, + "thread": 25 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 880016, + "thread": 22 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1149690, + "thread": 5 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1278021, + "thread": 12 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1421422, + "thread": 3 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1543887, + "thread": 18 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1701052, + "thread": 10 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1927007, + "thread": 4 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 1977133, + "thread": 2 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 2286542, + "thread": 17 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 2452524, + "thread": 20 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 2477642, + "thread": 28 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 2737940, + "thread": 21 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 2895668, + "thread": 12 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 3029263, + "thread": 8 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 3153021, + "thread": 21 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 3307243, + "thread": 30 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 3488119, + "thread": 28 + } + }, + { + "amount": "427.616096190", + "slot": { + "period": 3632410, + "thread": 9 + } + }, + { + "amount": "427.616096202", + "slot": { + "period": 3869832, + "thread": 22 + } + } + ], + "AU12RNFzvdUbCVsdgFtS4aicYBFqmUTHcpTPfaLbYeEz6tr1rSG5A": [ + { + "amount": "115.711607567", + "slot": { + "period": 52999, + "thread": 24 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 181164, + "thread": 26 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 438757, + "thread": 18 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 550963, + "thread": 31 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 748757, + "thread": 6 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 860441, + "thread": 27 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1008864, + "thread": 27 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1216567, + "thread": 13 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1411788, + "thread": 8 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1608083, + "thread": 24 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1738528, + "thread": 21 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1918603, + "thread": 17 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 1984309, + "thread": 19 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2271100, + "thread": 7 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2307346, + "thread": 25 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2487248, + "thread": 16 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2650257, + "thread": 12 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2821582, + "thread": 19 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 2974849, + "thread": 30 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 3133796, + "thread": 25 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 3317381, + "thread": 22 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 3556690, + "thread": 4 + } + }, + { + "amount": "115.711607567", + "slot": { + "period": 3660901, + "thread": 19 + } + }, + { + "amount": "115.711607573", + "slot": { + "period": 3918224, + "thread": 22 + } + } + ], + "AU12RPGb2nEf8gT2YKmZjtUZK5gmWT6V2S4rJ1BB4HcnSEpA9ngpL": [ + { + "amount": "162.303637601", + "slot": { + "period": 42108, + "thread": 16 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 227165, + "thread": 0 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 419570, + "thread": 8 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 502891, + "thread": 27 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 780990, + "thread": 15 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 826025, + "thread": 18 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1029557, + "thread": 17 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1173083, + "thread": 19 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1447053, + "thread": 9 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1570453, + "thread": 4 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1696317, + "thread": 4 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1910741, + "thread": 20 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 1978019, + "thread": 27 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 2206076, + "thread": 25 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 2353757, + "thread": 5 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 2533333, + "thread": 16 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 2731936, + "thread": 18 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 2813610, + "thread": 16 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 3120981, + "thread": 1 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 3260725, + "thread": 26 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 3381996, + "thread": 7 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 3567603, + "thread": 7 + } + }, + { + "amount": "162.303637601", + "slot": { + "period": 3650915, + "thread": 4 + } + }, + { + "amount": "162.303637605", + "slot": { + "period": 3841770, + "thread": 8 + } + } + ], + "AU12RPUFjwkqxyLdRzySvmB3rYpKaQyF3GmarG9NutPN5ZYPRvteY": [ + { + "amount": "539.375519475", + "slot": { + "period": 155896, + "thread": 13 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 291734, + "thread": 26 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 465733, + "thread": 13 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 630814, + "thread": 19 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 765800, + "thread": 10 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 971173, + "thread": 25 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 997423, + "thread": 10 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 1184031, + "thread": 9 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 1465225, + "thread": 16 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 1630908, + "thread": 9 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 1699000, + "thread": 4 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 1886029, + "thread": 19 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2079289, + "thread": 16 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2223538, + "thread": 12 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2299948, + "thread": 31 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2520078, + "thread": 5 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2739427, + "thread": 23 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 2933597, + "thread": 26 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 3071940, + "thread": 6 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 3154392, + "thread": 13 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 3337467, + "thread": 30 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 3540619, + "thread": 22 + } + }, + { + "amount": "539.375519475", + "slot": { + "period": 3776714, + "thread": 4 + } + }, + { + "amount": "539.375519474", + "slot": { + "period": 3912848, + "thread": 27 + } + } + ], + "AU12RPgSEqt8dx8RpcpXJN9TueWx2bGxu1Dpud5kC56JRDdRy4kaJ": [ + { + "amount": "100.008842478", + "slot": { + "period": 118796, + "thread": 10 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 177563, + "thread": 26 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 436133, + "thread": 6 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 568829, + "thread": 0 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 699155, + "thread": 8 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 884816, + "thread": 6 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1100493, + "thread": 31 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1185782, + "thread": 19 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1378287, + "thread": 3 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1639290, + "thread": 11 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1712230, + "thread": 5 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 1882786, + "thread": 23 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2044998, + "thread": 20 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2172442, + "thread": 7 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2333487, + "thread": 27 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2503198, + "thread": 13 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2730655, + "thread": 27 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2879007, + "thread": 16 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 2960927, + "thread": 29 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 3262012, + "thread": 14 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 3383558, + "thread": 31 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 3549860, + "thread": 23 + } + }, + { + "amount": "100.008842478", + "slot": { + "period": 3745139, + "thread": 1 + } + }, + { + "amount": "100.008842480", + "slot": { + "period": 3923197, + "thread": 0 + } + } + ], + "AU12RQDdV69549ck32pPzk6qE2nCXSb2CnM4fzDKeuy4d8vsFJFvQ": [ + { + "amount": "339.340710971", + "slot": { + "period": 165975, + "thread": 15 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 196656, + "thread": 17 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 360749, + "thread": 13 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 531496, + "thread": 9 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 803448, + "thread": 26 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 971051, + "thread": 31 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1101427, + "thread": 2 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1244683, + "thread": 14 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1358836, + "thread": 20 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1590910, + "thread": 31 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1715902, + "thread": 9 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1831425, + "thread": 15 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 1987900, + "thread": 23 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 2147979, + "thread": 18 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 2312148, + "thread": 21 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 2616431, + "thread": 7 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 2787500, + "thread": 10 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 2807338, + "thread": 15 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 3020407, + "thread": 26 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 3154590, + "thread": 20 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 3415457, + "thread": 6 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 3539214, + "thread": 13 + } + }, + { + "amount": "339.340710971", + "slot": { + "period": 3679888, + "thread": 8 + } + }, + { + "amount": "339.340710980", + "slot": { + "period": 3826601, + "thread": 14 + } + } + ], + "AU12RRTogKqsGWQUc23HxWNpnAJ9VExvY8CAM9TzMrbCCqgq2nGHG": [ + { + "amount": "195.707092932", + "slot": { + "period": 65097, + "thread": 0 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 274539, + "thread": 19 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 484513, + "thread": 18 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 620193, + "thread": 14 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 771502, + "thread": 11 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 944306, + "thread": 14 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1065486, + "thread": 9 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1266337, + "thread": 22 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1421233, + "thread": 24 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1511961, + "thread": 28 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1800843, + "thread": 18 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 1924235, + "thread": 19 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2064496, + "thread": 31 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2158451, + "thread": 9 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2298047, + "thread": 25 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2529592, + "thread": 18 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2744172, + "thread": 14 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2812889, + "thread": 9 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 2976346, + "thread": 6 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 3276932, + "thread": 7 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 3401936, + "thread": 5 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 3478663, + "thread": 30 + } + }, + { + "amount": "195.707092932", + "slot": { + "period": 3684252, + "thread": 20 + } + }, + { + "amount": "195.707092922", + "slot": { + "period": 3787404, + "thread": 25 + } + } + ], + "AU12RRTpGu8PnMHy5pJq6w7UfMarNsYJ3cR3pnLeZPv2aJBsrWPCs": [ + { + "amount": "207.806055404", + "slot": { + "period": 39914, + "thread": 10 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 305416, + "thread": 11 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 410783, + "thread": 27 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 652054, + "thread": 16 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 788449, + "thread": 17 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 968240, + "thread": 30 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1109728, + "thread": 17 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1290605, + "thread": 11 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1357300, + "thread": 25 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1545077, + "thread": 3 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1667195, + "thread": 10 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 1883434, + "thread": 12 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2083608, + "thread": 5 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2289824, + "thread": 29 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2461873, + "thread": 14 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2585396, + "thread": 8 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2659303, + "thread": 3 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 2951213, + "thread": 14 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 3032384, + "thread": 17 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 3240303, + "thread": 17 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 3329777, + "thread": 10 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 3497017, + "thread": 20 + } + }, + { + "amount": "207.806055404", + "slot": { + "period": 3668319, + "thread": 16 + } + }, + { + "amount": "207.806055400", + "slot": { + "period": 3797654, + "thread": 10 + } + } + ], + "AU12RSZ3pmymLggBS4WXxPUqd1EvkZU5MmNt7SbE2m86qaG2GQbnR": [ + { + "amount": "323.847945253", + "slot": { + "period": 116961, + "thread": 31 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 173348, + "thread": 29 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 363066, + "thread": 30 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 566189, + "thread": 27 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 738547, + "thread": 4 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 826415, + "thread": 19 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1102746, + "thread": 21 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1279144, + "thread": 24 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1382049, + "thread": 6 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1563837, + "thread": 30 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1691273, + "thread": 22 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 1837986, + "thread": 12 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2127453, + "thread": 25 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2168721, + "thread": 0 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2458087, + "thread": 27 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2497402, + "thread": 24 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2790945, + "thread": 3 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 2828085, + "thread": 16 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 3063382, + "thread": 18 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 3122671, + "thread": 11 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 3386407, + "thread": 16 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 3546288, + "thread": 8 + } + }, + { + "amount": "323.847945253", + "slot": { + "period": 3776374, + "thread": 22 + } + }, + { + "amount": "323.847945247", + "slot": { + "period": 3853536, + "thread": 7 + } + } + ], + "AU12RShzyQGrZm4V57YBomfnxrmc7t1bDhFAP733uefTF8sCVL5F1": [ + { + "amount": "282.509291429", + "slot": { + "period": 71854, + "thread": 23 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 231515, + "thread": 9 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 420341, + "thread": 23 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 623901, + "thread": 5 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 779286, + "thread": 27 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 964615, + "thread": 0 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 989582, + "thread": 25 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 1218525, + "thread": 30 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 1318491, + "thread": 7 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 1497579, + "thread": 28 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 1776768, + "thread": 6 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 1858004, + "thread": 6 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2102277, + "thread": 0 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2152444, + "thread": 18 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2422831, + "thread": 18 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2596475, + "thread": 0 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2733580, + "thread": 27 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 2941535, + "thread": 5 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 3078782, + "thread": 31 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 3278628, + "thread": 25 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 3350780, + "thread": 20 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 3547753, + "thread": 26 + } + }, + { + "amount": "282.509291429", + "slot": { + "period": 3779312, + "thread": 7 + } + }, + { + "amount": "282.509291434", + "slot": { + "period": 3848148, + "thread": 11 + } + } + ], + "AU12RT8eAkbaDNaXiSBGGR5DUg4GN2GbgWkd7gjGBM3xArSb6vJ3R": [ + { + "amount": "169.038599762", + "slot": { + "period": 144690, + "thread": 14 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 176984, + "thread": 13 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 437700, + "thread": 19 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 588412, + "thread": 9 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 798691, + "thread": 24 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 864883, + "thread": 14 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1053833, + "thread": 23 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1241700, + "thread": 22 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1362622, + "thread": 17 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1613649, + "thread": 12 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1790104, + "thread": 21 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 1923969, + "thread": 7 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2127876, + "thread": 30 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2175110, + "thread": 22 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2385291, + "thread": 17 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2507114, + "thread": 21 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2737131, + "thread": 4 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 2945281, + "thread": 16 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 3060215, + "thread": 12 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 3272695, + "thread": 12 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 3364881, + "thread": 15 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 3456830, + "thread": 16 + } + }, + { + "amount": "169.038599762", + "slot": { + "period": 3695232, + "thread": 5 + } + }, + { + "amount": "169.038599759", + "slot": { + "period": 3870402, + "thread": 17 + } + } + ], + "AU12RV57wRXKiaYbwBMbugqJJouUG627ymDSJ8MjaeSWViVq1X13R": [ + { + "amount": "79.231384665", + "slot": { + "period": 161960, + "thread": 21 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 305734, + "thread": 22 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 464498, + "thread": 29 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 553900, + "thread": 6 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 753311, + "thread": 1 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 864141, + "thread": 10 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1073433, + "thread": 12 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1304204, + "thread": 25 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1369847, + "thread": 4 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1642423, + "thread": 21 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1691467, + "thread": 0 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 1908582, + "thread": 16 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2058255, + "thread": 13 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2288443, + "thread": 17 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2315721, + "thread": 24 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2467052, + "thread": 7 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2698536, + "thread": 16 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2792726, + "thread": 12 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 2989419, + "thread": 26 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 3215516, + "thread": 0 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 3310872, + "thread": 25 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 3560936, + "thread": 20 + } + }, + { + "amount": "79.231384665", + "slot": { + "period": 3642608, + "thread": 15 + } + }, + { + "amount": "79.231384660", + "slot": { + "period": 3807818, + "thread": 3 + } + } + ], + "AU12RVDKs3qrqDLJU1J5caeGKiosDXUqe9jfyKFUZNFbZDKPCpyr3": [ + { + "amount": "75.772061602", + "slot": { + "period": 44465, + "thread": 17 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 259490, + "thread": 31 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 338712, + "thread": 21 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 512539, + "thread": 0 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 685137, + "thread": 3 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 959128, + "thread": 1 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 996250, + "thread": 28 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 1239903, + "thread": 21 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 1369136, + "thread": 13 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 1534484, + "thread": 29 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 1707565, + "thread": 11 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 1964410, + "thread": 14 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2078055, + "thread": 5 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2294023, + "thread": 15 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2302418, + "thread": 12 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2572577, + "thread": 4 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2719298, + "thread": 5 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 2909083, + "thread": 2 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 3104695, + "thread": 22 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 3270981, + "thread": 12 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 3355138, + "thread": 6 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 3454690, + "thread": 17 + } + }, + { + "amount": "75.772061602", + "slot": { + "period": 3673674, + "thread": 5 + } + }, + { + "amount": "75.772061599", + "slot": { + "period": 3889364, + "thread": 0 + } + } + ], + "AU12RVP8rZSsmb96JbLQ1Xzihw7iUzah6VnVM6RWBw9ZmqMPuVcqT": [ + { + "amount": "403.798176622", + "slot": { + "period": 94589, + "thread": 1 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 178712, + "thread": 17 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 413199, + "thread": 7 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 521132, + "thread": 10 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 780808, + "thread": 25 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 963623, + "thread": 4 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1093523, + "thread": 0 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1217843, + "thread": 1 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1407787, + "thread": 11 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1596335, + "thread": 29 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1667896, + "thread": 26 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 1869912, + "thread": 22 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2030012, + "thread": 31 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2155985, + "thread": 28 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2363101, + "thread": 28 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2485481, + "thread": 25 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2754492, + "thread": 15 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2860696, + "thread": 12 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 2954420, + "thread": 20 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 3237675, + "thread": 16 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 3355304, + "thread": 4 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 3610063, + "thread": 18 + } + }, + { + "amount": "403.798176622", + "slot": { + "period": 3761489, + "thread": 26 + } + }, + { + "amount": "403.798176632", + "slot": { + "period": 3862878, + "thread": 10 + } + } + ], + "AU12RVWpwewesyWRrzpJpfMeAbxGzT6LsE13AktytvoZpe7d1JaFt": [ + { + "amount": "194.599655515", + "slot": { + "period": 159391, + "thread": 31 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 234292, + "thread": 26 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 400725, + "thread": 20 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 554373, + "thread": 5 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 808428, + "thread": 26 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 969946, + "thread": 23 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1055705, + "thread": 12 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1291914, + "thread": 9 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1390676, + "thread": 14 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1512759, + "thread": 3 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1672322, + "thread": 24 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 1817028, + "thread": 14 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2007590, + "thread": 31 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2191404, + "thread": 8 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2434293, + "thread": 30 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2563937, + "thread": 5 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2650857, + "thread": 24 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2875558, + "thread": 12 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 2972115, + "thread": 26 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 3164200, + "thread": 4 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 3429172, + "thread": 1 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 3475127, + "thread": 15 + } + }, + { + "amount": "194.599655515", + "slot": { + "period": 3629542, + "thread": 10 + } + }, + { + "amount": "194.599655506", + "slot": { + "period": 3807838, + "thread": 8 + } + } + ], + "AU12RVzczHUjvKuCTm8Q7hURFUSL4Y7or3PwXKZ2VvhewfjgbiatQ": [ + { + "amount": "461.738189156", + "slot": { + "period": 133547, + "thread": 15 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 302067, + "thread": 6 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 464202, + "thread": 22 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 623158, + "thread": 0 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 793366, + "thread": 11 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 871509, + "thread": 2 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1033597, + "thread": 30 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1277154, + "thread": 31 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1446973, + "thread": 8 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1611431, + "thread": 16 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1649497, + "thread": 18 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 1969338, + "thread": 27 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2059271, + "thread": 28 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2146306, + "thread": 17 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2390884, + "thread": 26 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2607171, + "thread": 24 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2661181, + "thread": 4 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 2873452, + "thread": 25 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 3086658, + "thread": 10 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 3212912, + "thread": 1 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 3425424, + "thread": 28 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 3580103, + "thread": 18 + } + }, + { + "amount": "461.738189156", + "slot": { + "period": 3741603, + "thread": 2 + } + }, + { + "amount": "461.738189157", + "slot": { + "period": 3799061, + "thread": 0 + } + } + ], + "AU12RWyvqvQYyTRX1g5kesSphZYRB68sgTsGLggQJ5QBRcwD5wmzg": [ + { + "amount": "117.736836609", + "slot": { + "period": 162483, + "thread": 1 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 309162, + "thread": 24 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 390945, + "thread": 23 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 522086, + "thread": 18 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 759191, + "thread": 23 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 851633, + "thread": 29 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1019089, + "thread": 16 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1284080, + "thread": 25 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1404540, + "thread": 20 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1591705, + "thread": 13 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1657958, + "thread": 4 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 1912898, + "thread": 18 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2041216, + "thread": 24 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2198172, + "thread": 3 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2297280, + "thread": 12 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2588807, + "thread": 7 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2750494, + "thread": 9 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 2913023, + "thread": 26 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 3020233, + "thread": 21 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 3152516, + "thread": 9 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 3422191, + "thread": 21 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 3617567, + "thread": 20 + } + }, + { + "amount": "117.736836609", + "slot": { + "period": 3645082, + "thread": 26 + } + }, + { + "amount": "117.736836604", + "slot": { + "period": 3911494, + "thread": 6 + } + } + ], + "AU12RYeqNpJvdbgVuu5Q8bXKs2AqLe1bzrWefMnyWBYF9dz3PyMgF": [ + { + "amount": "83.610800612", + "slot": { + "period": 149064, + "thread": 12 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 169484, + "thread": 28 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 404968, + "thread": 14 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 601258, + "thread": 18 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 667452, + "thread": 9 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 975410, + "thread": 12 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1096575, + "thread": 31 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1153746, + "thread": 27 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1322441, + "thread": 7 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1550887, + "thread": 7 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1709113, + "thread": 3 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 1837732, + "thread": 8 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2118671, + "thread": 7 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2221934, + "thread": 31 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2410664, + "thread": 23 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2568766, + "thread": 14 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2746107, + "thread": 1 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 2824154, + "thread": 17 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 3043937, + "thread": 10 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 3169601, + "thread": 30 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 3369363, + "thread": 29 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 3453966, + "thread": 8 + } + }, + { + "amount": "83.610800612", + "slot": { + "period": 3748700, + "thread": 18 + } + }, + { + "amount": "83.610800606", + "slot": { + "period": 3806775, + "thread": 5 + } + } + ], + "AU12RYtCtvMmNqTXG2DY3YYqPD3cgRNcR6pU76osrMqVR3DyonWjc": [ + { + "amount": "82.733094643", + "slot": { + "period": 107116, + "thread": 18 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 309848, + "thread": 15 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 398822, + "thread": 19 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 559010, + "thread": 12 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 668184, + "thread": 28 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 888593, + "thread": 26 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1120244, + "thread": 13 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1243733, + "thread": 30 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1408808, + "thread": 25 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1484474, + "thread": 22 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1697603, + "thread": 12 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1962646, + "thread": 11 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 1990679, + "thread": 9 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 2272803, + "thread": 11 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 2451085, + "thread": 20 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 2535644, + "thread": 12 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 2670529, + "thread": 11 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 2928884, + "thread": 25 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 3105288, + "thread": 31 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 3202622, + "thread": 20 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 3408610, + "thread": 27 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 3501843, + "thread": 0 + } + }, + { + "amount": "82.733094643", + "slot": { + "period": 3716072, + "thread": 12 + } + }, + { + "amount": "82.733094636", + "slot": { + "period": 3842442, + "thread": 26 + } + } + ], + "AU12RZUpseTUex7GDmRL46C2kmVC1xFsVx6RCmNc29zHZkDkcZifV": [ + { + "amount": "119.221993416", + "slot": { + "period": 62260, + "thread": 12 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 316169, + "thread": 9 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 457266, + "thread": 9 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 546378, + "thread": 17 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 799368, + "thread": 24 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 858830, + "thread": 2 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1050237, + "thread": 12 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1242289, + "thread": 30 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1343049, + "thread": 10 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1546411, + "thread": 9 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1703247, + "thread": 10 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 1835150, + "thread": 19 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2102284, + "thread": 17 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2291544, + "thread": 31 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2357293, + "thread": 10 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2528083, + "thread": 7 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2645040, + "thread": 17 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2928612, + "thread": 11 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 2992005, + "thread": 11 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 3239812, + "thread": 28 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 3294866, + "thread": 31 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 3499691, + "thread": 17 + } + }, + { + "amount": "119.221993416", + "slot": { + "period": 3740638, + "thread": 17 + } + }, + { + "amount": "119.221993423", + "slot": { + "period": 3883460, + "thread": 29 + } + } + ], + "AU12Ra1gTHLq8UnFXbwKfxWRsESFntqDHVchBmZq64X8uLH3TyGbZ": [ + { + "amount": "197.741908457", + "slot": { + "period": 55705, + "thread": 30 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 168874, + "thread": 2 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 415249, + "thread": 0 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 634707, + "thread": 5 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 706234, + "thread": 5 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 906211, + "thread": 25 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1098465, + "thread": 24 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1249286, + "thread": 19 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1369427, + "thread": 16 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1531507, + "thread": 28 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1667672, + "thread": 22 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 1907333, + "thread": 17 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2139607, + "thread": 5 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2153989, + "thread": 16 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2421703, + "thread": 5 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2612715, + "thread": 21 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2665299, + "thread": 6 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 2803746, + "thread": 31 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 3080253, + "thread": 8 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 3276299, + "thread": 30 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 3321378, + "thread": 25 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 3471700, + "thread": 19 + } + }, + { + "amount": "197.741908457", + "slot": { + "period": 3734432, + "thread": 14 + } + }, + { + "amount": "197.741908456", + "slot": { + "period": 3933924, + "thread": 29 + } + } + ], + "AU12RaJDos1LuNyukby2eabYJBKpx5pQDCUtxBhUyuEXy3hBgb73Q": [ + { + "amount": "317.904192974", + "slot": { + "period": 96466, + "thread": 26 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 222096, + "thread": 26 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 438439, + "thread": 5 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 515391, + "thread": 14 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 819116, + "thread": 4 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 901077, + "thread": 20 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1046138, + "thread": 1 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1156096, + "thread": 18 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1357258, + "thread": 29 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1597449, + "thread": 9 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1761649, + "thread": 25 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 1849701, + "thread": 29 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2087728, + "thread": 13 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2212149, + "thread": 5 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2415331, + "thread": 19 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2503027, + "thread": 2 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2718416, + "thread": 1 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 2937835, + "thread": 2 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 3094661, + "thread": 11 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 3213109, + "thread": 2 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 3300393, + "thread": 4 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 3514619, + "thread": 12 + } + }, + { + "amount": "317.904192974", + "slot": { + "period": 3743172, + "thread": 11 + } + }, + { + "amount": "317.904192982", + "slot": { + "period": 3936440, + "thread": 3 + } + } + ], + "AU12Raz7bd6xQvdh9BcJHZv54paFkWiKFRkWRp64XddyeVennjU5F": [ + { + "amount": "110.321026366", + "slot": { + "period": 35417, + "thread": 11 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 239124, + "thread": 24 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 435597, + "thread": 29 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 650352, + "thread": 14 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 746433, + "thread": 24 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 839416, + "thread": 29 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1123834, + "thread": 17 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1312254, + "thread": 23 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1393843, + "thread": 3 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1537601, + "thread": 7 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1731665, + "thread": 26 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1922775, + "thread": 8 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 1993706, + "thread": 18 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2282592, + "thread": 16 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2298188, + "thread": 20 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2602540, + "thread": 16 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2701427, + "thread": 10 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2950547, + "thread": 7 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 2957195, + "thread": 16 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 3226640, + "thread": 31 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 3382768, + "thread": 26 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 3501284, + "thread": 23 + } + }, + { + "amount": "110.321026366", + "slot": { + "period": 3777532, + "thread": 8 + } + }, + { + "amount": "110.321026370", + "slot": { + "period": 3843027, + "thread": 5 + } + } + ], + "AU12Rc9thE1jiZxQpwNEzozEXkwQJR6BCjFvV6e4KV5kGn6mLN6uq": [ + { + "amount": "149.505749077", + "slot": { + "period": 86928, + "thread": 2 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 322527, + "thread": 2 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 472894, + "thread": 7 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 519790, + "thread": 21 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 775982, + "thread": 3 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 862626, + "thread": 29 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 987720, + "thread": 21 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 1274936, + "thread": 9 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 1451313, + "thread": 29 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 1492678, + "thread": 2 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 1787725, + "thread": 30 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 1968487, + "thread": 6 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2112068, + "thread": 28 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2167666, + "thread": 14 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2317441, + "thread": 22 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2486172, + "thread": 2 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2753728, + "thread": 4 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 2887925, + "thread": 27 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 3102200, + "thread": 9 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 3279679, + "thread": 8 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 3445898, + "thread": 3 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 3595836, + "thread": 26 + } + }, + { + "amount": "149.505749077", + "slot": { + "period": 3665988, + "thread": 28 + } + }, + { + "amount": "149.505749074", + "slot": { + "period": 3783423, + "thread": 30 + } + } + ], + "AU12RcHMXQmYEMf2sxzpFRmGDgzRSsGjKi1AVvofNhrnPibJbCqsS": [ + { + "amount": "147.766503753", + "slot": { + "period": 130217, + "thread": 12 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 208436, + "thread": 0 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 366161, + "thread": 21 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 652393, + "thread": 9 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 725235, + "thread": 11 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 973210, + "thread": 6 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1141067, + "thread": 31 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1254494, + "thread": 5 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1398105, + "thread": 10 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1574598, + "thread": 13 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1795695, + "thread": 7 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 1925178, + "thread": 8 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2080884, + "thread": 30 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2185524, + "thread": 31 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2313517, + "thread": 1 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2493968, + "thread": 25 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2790049, + "thread": 2 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 2825819, + "thread": 22 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 3066669, + "thread": 20 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 3135600, + "thread": 3 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 3392416, + "thread": 27 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 3475795, + "thread": 25 + } + }, + { + "amount": "147.766503753", + "slot": { + "period": 3675448, + "thread": 0 + } + }, + { + "amount": "147.766503756", + "slot": { + "period": 3789993, + "thread": 1 + } + } + ], + "AU12RcjPLoiLGHAvC3fikSYd8rhb1cBNfiwmN9ogrFrUe8PXYuFRA": [ + { + "amount": "447.654761232", + "slot": { + "period": 163977, + "thread": 16 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 318116, + "thread": 12 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 349055, + "thread": 3 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 642121, + "thread": 17 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 787804, + "thread": 4 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 962226, + "thread": 20 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1077034, + "thread": 0 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1258476, + "thread": 25 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1339904, + "thread": 22 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1531448, + "thread": 13 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1741859, + "thread": 13 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1925748, + "thread": 28 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 1994203, + "thread": 29 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 2153792, + "thread": 23 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 2370744, + "thread": 29 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 2478365, + "thread": 16 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 2716113, + "thread": 9 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 2889489, + "thread": 14 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 3048021, + "thread": 26 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 3272652, + "thread": 11 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 3382347, + "thread": 0 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 3607608, + "thread": 9 + } + }, + { + "amount": "447.654761232", + "slot": { + "period": 3669598, + "thread": 22 + } + }, + { + "amount": "447.654761236", + "slot": { + "period": 3789664, + "thread": 28 + } + } + ], + "AU12RdF7fBCKae3WqEVxYykHJZZor8t377h3LAxbLVLroenYfVdzh": [ + { + "amount": "73.288497587", + "slot": { + "period": 158136, + "thread": 1 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 197189, + "thread": 31 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 348801, + "thread": 6 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 507872, + "thread": 1 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 697134, + "thread": 13 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 859434, + "thread": 3 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1043084, + "thread": 27 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1316168, + "thread": 23 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1476266, + "thread": 22 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1527954, + "thread": 0 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1808547, + "thread": 31 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 1920131, + "thread": 23 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2094028, + "thread": 21 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2222400, + "thread": 22 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2393754, + "thread": 20 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2557920, + "thread": 29 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2723620, + "thread": 3 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2802883, + "thread": 28 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 2990658, + "thread": 6 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 3174575, + "thread": 0 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 3366644, + "thread": 18 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 3489466, + "thread": 9 + } + }, + { + "amount": "73.288497587", + "slot": { + "period": 3631533, + "thread": 8 + } + }, + { + "amount": "73.288497590", + "slot": { + "period": 3829981, + "thread": 16 + } + } + ], + "AU12ReJejnF2oKeUiSXWU6ytGGa7nyjBgKUpeTdtQHvKTjmuGaLvP": [ + { + "amount": "65.953080159", + "slot": { + "period": 68827, + "thread": 25 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 188962, + "thread": 19 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 446707, + "thread": 15 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 586087, + "thread": 2 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 750716, + "thread": 16 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 976498, + "thread": 13 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1049588, + "thread": 15 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1181507, + "thread": 6 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1469516, + "thread": 31 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1592149, + "thread": 3 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1731959, + "thread": 12 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 1924178, + "thread": 11 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2120382, + "thread": 28 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2221439, + "thread": 0 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2393572, + "thread": 19 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2537682, + "thread": 0 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2780007, + "thread": 2 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 2934358, + "thread": 0 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 3013198, + "thread": 24 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 3137486, + "thread": 5 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 3431226, + "thread": 21 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 3586733, + "thread": 1 + } + }, + { + "amount": "65.953080159", + "slot": { + "period": 3701032, + "thread": 6 + } + }, + { + "amount": "65.953080164", + "slot": { + "period": 3880970, + "thread": 18 + } + } + ], + "AU12ReNQRh92VLST2FvfhaKrWrTk8Hw1JstE3euTfyD85m56Nf312": [ + { + "amount": "343.444187091", + "slot": { + "period": 130243, + "thread": 17 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 208829, + "thread": 17 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 328581, + "thread": 0 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 588984, + "thread": 7 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 695914, + "thread": 27 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 968486, + "thread": 21 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1124378, + "thread": 12 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1297316, + "thread": 2 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1395728, + "thread": 29 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1580429, + "thread": 27 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1768750, + "thread": 4 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 1887058, + "thread": 10 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2043116, + "thread": 0 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2278032, + "thread": 15 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2365259, + "thread": 0 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2615802, + "thread": 17 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2726128, + "thread": 9 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 2854519, + "thread": 17 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 3055404, + "thread": 25 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 3269265, + "thread": 30 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 3333240, + "thread": 7 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 3561830, + "thread": 31 + } + }, + { + "amount": "343.444187091", + "slot": { + "period": 3640580, + "thread": 8 + } + }, + { + "amount": "343.444187088", + "slot": { + "period": 3810767, + "thread": 20 + } + } + ], + "AU12RePriXsrRHTegDuyM8vJDskBtH7wT5y5XM4ygHCc1iSpckXHr": [ + { + "amount": "185.404139590", + "slot": { + "period": 89939, + "thread": 12 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 234359, + "thread": 31 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 401284, + "thread": 14 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 559381, + "thread": 16 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 712669, + "thread": 19 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 933996, + "thread": 26 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1124228, + "thread": 23 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1156979, + "thread": 23 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1427389, + "thread": 30 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1577599, + "thread": 19 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1675686, + "thread": 16 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 1875458, + "thread": 22 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2003419, + "thread": 4 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2192013, + "thread": 19 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2346661, + "thread": 5 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2587614, + "thread": 6 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2741007, + "thread": 15 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 2800130, + "thread": 31 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 3097420, + "thread": 24 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 3190324, + "thread": 10 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 3391685, + "thread": 18 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 3566086, + "thread": 12 + } + }, + { + "amount": "185.404139590", + "slot": { + "period": 3680473, + "thread": 15 + } + }, + { + "amount": "185.404139584", + "slot": { + "period": 3916172, + "thread": 10 + } + } + ], + "AU12ReqKtxQZ5GvEBrQEZoBd267PLcEA3GK8wYudnZWtbSMimsa9i": [ + { + "amount": "190.605565247", + "slot": { + "period": 18379, + "thread": 17 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 308638, + "thread": 2 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 372198, + "thread": 13 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 646651, + "thread": 11 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 764609, + "thread": 18 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 945670, + "thread": 5 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 985011, + "thread": 8 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 1230870, + "thread": 17 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 1367793, + "thread": 3 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 1560928, + "thread": 0 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 1776931, + "thread": 3 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 1832982, + "thread": 24 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2013093, + "thread": 4 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2244566, + "thread": 4 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2380398, + "thread": 7 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2565727, + "thread": 1 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2642255, + "thread": 16 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 2893137, + "thread": 0 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 3010740, + "thread": 23 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 3224556, + "thread": 29 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 3328031, + "thread": 22 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 3498511, + "thread": 20 + } + }, + { + "amount": "190.605565247", + "slot": { + "period": 3691202, + "thread": 7 + } + }, + { + "amount": "190.605565251", + "slot": { + "period": 3791687, + "thread": 16 + } + } + ], + "AU12RfZT5ECU6xBip5tF75hRW2VGGebiqXXDCSveGEkJAQTL3C3uh": [ + { + "amount": "227.832194483", + "slot": { + "period": 38951, + "thread": 5 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 249663, + "thread": 0 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 466906, + "thread": 3 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 525925, + "thread": 2 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 673062, + "thread": 22 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 892450, + "thread": 7 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1123061, + "thread": 15 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1179664, + "thread": 28 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1448182, + "thread": 3 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1558710, + "thread": 26 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1742507, + "thread": 22 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 1897002, + "thread": 15 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2023746, + "thread": 14 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2247862, + "thread": 26 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2319448, + "thread": 21 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2489748, + "thread": 18 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2671249, + "thread": 8 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 2820286, + "thread": 31 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 3085998, + "thread": 11 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 3218594, + "thread": 27 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 3356754, + "thread": 30 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 3474363, + "thread": 2 + } + }, + { + "amount": "227.832194483", + "slot": { + "period": 3639835, + "thread": 7 + } + }, + { + "amount": "227.832194487", + "slot": { + "period": 3793205, + "thread": 7 + } + } + ], + "AU12RhjwsveFZzyrknpbPMoQc6p3jNhuHFVhd3NwQZna16yW8Hwdc": [ + { + "amount": "291.151541903", + "slot": { + "period": 49838, + "thread": 3 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 323743, + "thread": 21 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 477229, + "thread": 19 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 623173, + "thread": 8 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 722855, + "thread": 29 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 857487, + "thread": 18 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1019117, + "thread": 27 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1236868, + "thread": 6 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1460629, + "thread": 31 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1628254, + "thread": 28 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1703966, + "thread": 9 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 1826227, + "thread": 17 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2004682, + "thread": 6 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2265261, + "thread": 4 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2319325, + "thread": 13 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2486121, + "thread": 13 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2703793, + "thread": 16 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 2867247, + "thread": 5 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 3037973, + "thread": 3 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 3141343, + "thread": 25 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 3290871, + "thread": 30 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 3596328, + "thread": 30 + } + }, + { + "amount": "291.151541903", + "slot": { + "period": 3648028, + "thread": 7 + } + }, + { + "amount": "291.151541896", + "slot": { + "period": 3857575, + "thread": 14 + } + } + ], + "AU12RhtyjBSaQMVDsGm1yf1fYHEEZf4B5wNevfbMtnUppg4rzK2ax": [ + { + "amount": "332.038966011", + "slot": { + "period": 19491, + "thread": 8 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 246445, + "thread": 26 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 383561, + "thread": 2 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 537305, + "thread": 22 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 744402, + "thread": 20 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 842574, + "thread": 15 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1130533, + "thread": 6 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1290767, + "thread": 13 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1442051, + "thread": 18 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1618632, + "thread": 20 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1762955, + "thread": 28 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 1830391, + "thread": 4 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2110704, + "thread": 9 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2178586, + "thread": 4 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2454217, + "thread": 10 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2556455, + "thread": 24 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2646521, + "thread": 0 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 2945815, + "thread": 13 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 3073940, + "thread": 16 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 3186874, + "thread": 26 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 3342776, + "thread": 21 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 3521254, + "thread": 10 + } + }, + { + "amount": "332.038966011", + "slot": { + "period": 3748700, + "thread": 7 + } + }, + { + "amount": "332.038966014", + "slot": { + "period": 3937638, + "thread": 1 + } + } + ], + "AU12RirzVrj4HT6eR5HoKTdTeiZex3GPmQhe51Pj4WgMswYn6fhg9": [ + { + "amount": "210.591812968", + "slot": { + "period": 120775, + "thread": 10 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 281040, + "thread": 29 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 342004, + "thread": 3 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 492751, + "thread": 20 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 728475, + "thread": 2 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 911108, + "thread": 19 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1032277, + "thread": 0 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1262651, + "thread": 21 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1408041, + "thread": 15 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1530281, + "thread": 20 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1654684, + "thread": 25 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 1927464, + "thread": 10 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2094824, + "thread": 6 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2184088, + "thread": 7 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2345436, + "thread": 15 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2596683, + "thread": 21 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2713673, + "thread": 28 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 2901812, + "thread": 7 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 3028557, + "thread": 18 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 3199125, + "thread": 0 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 3383660, + "thread": 26 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 3459967, + "thread": 26 + } + }, + { + "amount": "210.591812968", + "slot": { + "period": 3765917, + "thread": 5 + } + }, + { + "amount": "210.591812972", + "slot": { + "period": 3788758, + "thread": 30 + } + } + ], + "AU12RjTe41dobAF4orrsk239sXYaghQyKMMcpwQwm4q4p8952svHk": [ + { + "amount": "319.280985479", + "slot": { + "period": 148638, + "thread": 2 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 217515, + "thread": 14 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 374503, + "thread": 30 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 607752, + "thread": 25 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 702189, + "thread": 11 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 946668, + "thread": 13 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1080913, + "thread": 15 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1292797, + "thread": 5 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1469645, + "thread": 14 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1536546, + "thread": 4 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1776809, + "thread": 2 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 1829252, + "thread": 6 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2086139, + "thread": 28 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2285026, + "thread": 2 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2322852, + "thread": 10 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2549719, + "thread": 7 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2624631, + "thread": 2 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2853761, + "thread": 14 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 2992954, + "thread": 15 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 3210229, + "thread": 17 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 3396317, + "thread": 19 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 3492492, + "thread": 28 + } + }, + { + "amount": "319.280985479", + "slot": { + "period": 3634249, + "thread": 5 + } + }, + { + "amount": "319.280985470", + "slot": { + "period": 3850276, + "thread": 13 + } + } + ], + "AU12RjgywM3XrGb5QatoyvLgUocQYYrzgJdr9gp6EHtEHbLjAfg1b": [ + { + "amount": "140.405528739", + "slot": { + "period": 54528, + "thread": 11 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 241251, + "thread": 8 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 367412, + "thread": 26 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 630053, + "thread": 1 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 800678, + "thread": 30 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 865850, + "thread": 21 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1107887, + "thread": 10 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1159761, + "thread": 23 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1324054, + "thread": 13 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1549240, + "thread": 4 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1688840, + "thread": 9 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 1900543, + "thread": 24 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2031076, + "thread": 10 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2227951, + "thread": 28 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2366127, + "thread": 31 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2463231, + "thread": 18 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2733946, + "thread": 31 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 2825156, + "thread": 8 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 3098056, + "thread": 6 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 3123413, + "thread": 17 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 3307840, + "thread": 2 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 3498259, + "thread": 2 + } + }, + { + "amount": "140.405528739", + "slot": { + "period": 3779386, + "thread": 10 + } + }, + { + "amount": "140.405528729", + "slot": { + "period": 3868850, + "thread": 29 + } + } + ], + "AU12RkBUcAdsxRBkheuAXKzA2S2F67Spg39tbXvbDNw97BFRd9V7k": [ + { + "amount": "53.888859339", + "slot": { + "period": 108828, + "thread": 26 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 224145, + "thread": 30 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 454660, + "thread": 12 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 621231, + "thread": 9 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 663938, + "thread": 11 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 932694, + "thread": 3 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1026564, + "thread": 18 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1218367, + "thread": 29 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1462953, + "thread": 3 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1587748, + "thread": 11 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1753904, + "thread": 11 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 1951392, + "thread": 30 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2050837, + "thread": 25 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2168703, + "thread": 21 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2344972, + "thread": 5 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2557951, + "thread": 30 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2749380, + "thread": 19 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 2838947, + "thread": 3 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 3006769, + "thread": 1 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 3272703, + "thread": 5 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 3438451, + "thread": 17 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 3591018, + "thread": 10 + } + }, + { + "amount": "53.888859339", + "slot": { + "period": 3729826, + "thread": 5 + } + }, + { + "amount": "53.888859340", + "slot": { + "period": 3855346, + "thread": 4 + } + } + ], + "AU12Rn2AUkruS7bu6x2uehCkh2kpW8iVC2g2FF1tDBM7RhXQgPS4h": [ + { + "amount": "185.272230664", + "slot": { + "period": 35925, + "thread": 13 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 270384, + "thread": 17 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 384366, + "thread": 13 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 503154, + "thread": 5 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 719470, + "thread": 1 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 865049, + "thread": 16 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1048072, + "thread": 13 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1263697, + "thread": 19 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1410487, + "thread": 15 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1632061, + "thread": 9 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1792624, + "thread": 7 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 1816069, + "thread": 25 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2067154, + "thread": 31 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2194022, + "thread": 29 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2314800, + "thread": 21 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2534096, + "thread": 8 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2787559, + "thread": 20 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2796639, + "thread": 0 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 2975762, + "thread": 13 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 3280922, + "thread": 6 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 3307614, + "thread": 3 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 3580884, + "thread": 22 + } + }, + { + "amount": "185.272230664", + "slot": { + "period": 3776267, + "thread": 4 + } + }, + { + "amount": "185.272230673", + "slot": { + "period": 3947127, + "thread": 5 + } + } + ], + "AU12RnTmctrwFWxefug258EjWNpDCxxsxjW9bEdt5N5PzDSZqrsbz": [ + { + "amount": "180.099942749", + "slot": { + "period": 121079, + "thread": 30 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 192409, + "thread": 10 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 325170, + "thread": 26 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 582663, + "thread": 30 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 773117, + "thread": 20 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 882468, + "thread": 15 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 998257, + "thread": 27 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 1267083, + "thread": 14 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 1470618, + "thread": 7 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 1638731, + "thread": 6 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 1649512, + "thread": 15 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 1952260, + "thread": 15 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2058823, + "thread": 16 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2282401, + "thread": 20 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2371855, + "thread": 5 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2561266, + "thread": 29 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2662524, + "thread": 0 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 2945580, + "thread": 31 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 3005595, + "thread": 14 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 3221232, + "thread": 7 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 3440473, + "thread": 30 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 3480836, + "thread": 24 + } + }, + { + "amount": "180.099942749", + "slot": { + "period": 3675126, + "thread": 14 + } + }, + { + "amount": "180.099942756", + "slot": { + "period": 3915598, + "thread": 21 + } + } + ], + "AU12RnpWyGUutiMJ5zBh1Y9y1s8Y3fSyxTrQ6VrhRc3vpj8ZWatrs": [ + { + "amount": "70.367187112", + "slot": { + "period": 105167, + "thread": 12 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 182492, + "thread": 11 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 432581, + "thread": 9 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 553584, + "thread": 10 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 728312, + "thread": 30 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 899344, + "thread": 20 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1067510, + "thread": 27 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1243391, + "thread": 21 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1451924, + "thread": 13 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1519868, + "thread": 18 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1677299, + "thread": 20 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 1939292, + "thread": 2 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2109749, + "thread": 27 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2293538, + "thread": 24 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2404670, + "thread": 13 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2479956, + "thread": 4 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2659856, + "thread": 28 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 2808886, + "thread": 10 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 3092314, + "thread": 6 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 3276304, + "thread": 27 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 3372614, + "thread": 20 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 3583074, + "thread": 30 + } + }, + { + "amount": "70.367187112", + "slot": { + "period": 3682211, + "thread": 13 + } + }, + { + "amount": "70.367187120", + "slot": { + "period": 3925804, + "thread": 30 + } + } + ], + "AU12RoMCJs82T6qMVNt5Ys9pMFBZksGmLoQBvXG4SErL8u6VWGLqv": [ + { + "amount": "623.748836484", + "slot": { + "period": 143252, + "thread": 29 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 194632, + "thread": 7 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 343670, + "thread": 21 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 584722, + "thread": 1 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 709570, + "thread": 17 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 887602, + "thread": 28 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1095216, + "thread": 30 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1254307, + "thread": 18 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1440008, + "thread": 30 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1604136, + "thread": 6 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1786254, + "thread": 24 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1929142, + "thread": 20 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 1989167, + "thread": 25 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 2169651, + "thread": 20 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 2307385, + "thread": 5 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 2500150, + "thread": 31 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 2777050, + "thread": 17 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 2866657, + "thread": 12 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 3081597, + "thread": 8 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 3264811, + "thread": 5 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 3361907, + "thread": 9 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 3509737, + "thread": 5 + } + }, + { + "amount": "623.748836484", + "slot": { + "period": 3691248, + "thread": 6 + } + }, + { + "amount": "623.748836482", + "slot": { + "period": 3880525, + "thread": 3 + } + } + ], + "AU12Roccm8iaeYPXviFP3Y7RFnDHxD8pCLjSLrTmCZ3XgENqikeri": [ + { + "amount": "303.476278496", + "slot": { + "period": 86517, + "thread": 19 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 301555, + "thread": 13 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 439087, + "thread": 13 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 647942, + "thread": 17 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 709512, + "thread": 15 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 889093, + "thread": 6 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1104906, + "thread": 1 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1215619, + "thread": 25 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1318837, + "thread": 28 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1481515, + "thread": 0 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1705168, + "thread": 20 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 1859020, + "thread": 19 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2105310, + "thread": 31 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2198010, + "thread": 29 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2301666, + "thread": 3 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2593841, + "thread": 3 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2699966, + "thread": 0 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 2917123, + "thread": 18 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 3103895, + "thread": 21 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 3229536, + "thread": 21 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 3408247, + "thread": 15 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 3475923, + "thread": 19 + } + }, + { + "amount": "303.476278496", + "slot": { + "period": 3745298, + "thread": 30 + } + }, + { + "amount": "303.476278499", + "slot": { + "period": 3787099, + "thread": 29 + } + } + ], + "AU12RorGvjgr2J2MG8j8aYBeG8sSouzbfRbf26dExpYfvpxvsD8tD": [ + { + "amount": "84.281334220", + "slot": { + "period": 100319, + "thread": 3 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 217258, + "thread": 0 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 436186, + "thread": 21 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 515162, + "thread": 30 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 812474, + "thread": 15 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 913799, + "thread": 28 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 990331, + "thread": 13 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1252684, + "thread": 25 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1348287, + "thread": 26 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1595452, + "thread": 25 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1755666, + "thread": 27 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1963374, + "thread": 4 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 1976571, + "thread": 26 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2163242, + "thread": 7 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2332568, + "thread": 14 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2559041, + "thread": 21 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2732298, + "thread": 19 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2952547, + "thread": 23 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 2977746, + "thread": 5 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 3145308, + "thread": 16 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 3321614, + "thread": 3 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 3490557, + "thread": 25 + } + }, + { + "amount": "84.281334220", + "slot": { + "period": 3720610, + "thread": 29 + } + }, + { + "amount": "84.281334214", + "slot": { + "period": 3856601, + "thread": 22 + } + } + ], + "AU12RpJXDXJw5qTcspPp9b7yhEnrQsenUVeiqZD2hH4umJULBfDw3": [ + { + "amount": "122.144146987", + "slot": { + "period": 53359, + "thread": 14 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 277422, + "thread": 12 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 380213, + "thread": 26 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 492834, + "thread": 10 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 801101, + "thread": 7 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 870396, + "thread": 4 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1093051, + "thread": 7 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1221852, + "thread": 15 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1405636, + "thread": 24 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1495768, + "thread": 20 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1807109, + "thread": 27 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1821088, + "thread": 1 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 1997268, + "thread": 7 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 2166945, + "thread": 23 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 2388256, + "thread": 13 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 2501843, + "thread": 26 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 2735654, + "thread": 6 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 2807023, + "thread": 28 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 3108117, + "thread": 21 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 3171356, + "thread": 3 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 3380527, + "thread": 29 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 3539301, + "thread": 28 + } + }, + { + "amount": "122.144146987", + "slot": { + "period": 3773970, + "thread": 29 + } + }, + { + "amount": "122.144146982", + "slot": { + "period": 3935363, + "thread": 8 + } + } + ], + "AU12RpX8RekuruPDky4rDMAvJk4b8Lw457ctNLgzyQZ2NYX3Upa4o": [ + { + "amount": "103.982034895", + "slot": { + "period": 16484, + "thread": 27 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 253573, + "thread": 25 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 441309, + "thread": 27 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 541304, + "thread": 3 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 765607, + "thread": 29 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 963736, + "thread": 7 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 996560, + "thread": 15 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 1252064, + "thread": 2 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 1353085, + "thread": 27 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 1554116, + "thread": 19 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 1656911, + "thread": 17 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 1914861, + "thread": 18 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2086333, + "thread": 21 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2228939, + "thread": 20 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2307661, + "thread": 11 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2538334, + "thread": 13 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2693683, + "thread": 24 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 2921385, + "thread": 20 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3028408, + "thread": 3 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3216408, + "thread": 28 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3350449, + "thread": 20 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3473481, + "thread": 4 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3778247, + "thread": 26 + } + }, + { + "amount": "103.982034895", + "slot": { + "period": 3822225, + "thread": 6 + } + } + ], + "AU12RpfqHPXCytyEHoPt5JddQdNHqp3U21TnLFiePRaJTxEzUFVVy": [ + { + "amount": "311.635032342", + "slot": { + "period": 58967, + "thread": 3 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 232720, + "thread": 17 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 391357, + "thread": 29 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 609954, + "thread": 23 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 808706, + "thread": 31 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 828998, + "thread": 27 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1052988, + "thread": 10 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1222337, + "thread": 1 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1343999, + "thread": 27 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1494958, + "thread": 11 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1701346, + "thread": 0 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 1917132, + "thread": 7 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2095290, + "thread": 12 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2181597, + "thread": 2 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2310239, + "thread": 4 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2623866, + "thread": 28 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2782884, + "thread": 20 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2837917, + "thread": 27 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 2996112, + "thread": 16 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 3200665, + "thread": 18 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 3314314, + "thread": 19 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 3545383, + "thread": 28 + } + }, + { + "amount": "311.635032342", + "slot": { + "period": 3683369, + "thread": 11 + } + }, + { + "amount": "311.635032331", + "slot": { + "period": 3884046, + "thread": 22 + } + } + ], + "AU12RqNrZB35Ww4EFxtp4h6omuWAKw6csJcfqPosZog3P5i5sdyK2": [ + { + "amount": "183.963979499", + "slot": { + "period": 142050, + "thread": 0 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 232957, + "thread": 25 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 387667, + "thread": 16 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 650409, + "thread": 30 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 755343, + "thread": 10 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 957560, + "thread": 25 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1115050, + "thread": 20 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1182109, + "thread": 29 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1358782, + "thread": 21 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1481820, + "thread": 30 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1679187, + "thread": 2 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 1885510, + "thread": 2 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2015051, + "thread": 23 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2164663, + "thread": 23 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2300515, + "thread": 29 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2544884, + "thread": 0 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2784602, + "thread": 25 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 2855236, + "thread": 7 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 3119995, + "thread": 7 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 3133650, + "thread": 15 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 3318287, + "thread": 12 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 3461747, + "thread": 30 + } + }, + { + "amount": "183.963979499", + "slot": { + "period": 3662316, + "thread": 20 + } + }, + { + "amount": "183.963979497", + "slot": { + "period": 3943864, + "thread": 28 + } + } + ], + "AU12RqPMg4BcayH1ERE4NLDVkcSqAdfSkU1HJfbck8Ny82zXZvwCA": [ + { + "amount": "212.011828590", + "slot": { + "period": 44237, + "thread": 24 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 263234, + "thread": 14 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 365398, + "thread": 24 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 594401, + "thread": 0 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 807111, + "thread": 7 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 935430, + "thread": 28 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1100465, + "thread": 10 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1240079, + "thread": 19 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1380911, + "thread": 17 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1541587, + "thread": 11 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1694341, + "thread": 27 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 1936547, + "thread": 24 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2101628, + "thread": 16 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2159740, + "thread": 12 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2415781, + "thread": 22 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2555992, + "thread": 23 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2714439, + "thread": 14 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 2877000, + "thread": 24 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 3014050, + "thread": 2 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 3182903, + "thread": 20 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 3323142, + "thread": 21 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 3461473, + "thread": 8 + } + }, + { + "amount": "212.011828590", + "slot": { + "period": 3754314, + "thread": 31 + } + }, + { + "amount": "212.011828583", + "slot": { + "period": 3849238, + "thread": 7 + } + } + ], + "AU12RqTrpWxSMfjCubir1qH6j1hvtBd8XUHLjRMuWQQS3ayBgkjoM": [ + { + "amount": "154.454309618", + "slot": { + "period": 151279, + "thread": 7 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 168472, + "thread": 8 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 341389, + "thread": 15 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 646062, + "thread": 24 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 695406, + "thread": 10 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 883927, + "thread": 6 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1109488, + "thread": 12 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1189774, + "thread": 8 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1410821, + "thread": 11 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1535659, + "thread": 10 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1794270, + "thread": 17 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 1838002, + "thread": 0 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2040133, + "thread": 2 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2207152, + "thread": 22 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2401829, + "thread": 31 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2613077, + "thread": 23 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2742408, + "thread": 29 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 2934290, + "thread": 10 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 3100562, + "thread": 26 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 3257495, + "thread": 12 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 3331421, + "thread": 2 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 3495914, + "thread": 3 + } + }, + { + "amount": "154.454309618", + "slot": { + "period": 3684921, + "thread": 17 + } + }, + { + "amount": "154.454309613", + "slot": { + "period": 3932182, + "thread": 1 + } + } + ], + "AU12RqUqXarwpTQRtwfHnawxEdYcX61EhsTy5d3tjxVR345XwF31F": [ + { + "amount": "146.360926087", + "slot": { + "period": 88680, + "thread": 1 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 186241, + "thread": 3 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 379308, + "thread": 11 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 550339, + "thread": 6 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 787351, + "thread": 19 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 834252, + "thread": 0 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1086960, + "thread": 27 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1300689, + "thread": 29 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1377158, + "thread": 3 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1543370, + "thread": 10 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1717099, + "thread": 23 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 1840440, + "thread": 1 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2123200, + "thread": 14 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2251226, + "thread": 7 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2395786, + "thread": 12 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2516814, + "thread": 19 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2713950, + "thread": 30 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2800092, + "thread": 18 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 2991336, + "thread": 3 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 3277239, + "thread": 6 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 3347517, + "thread": 30 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 3550988, + "thread": 18 + } + }, + { + "amount": "146.360926087", + "slot": { + "period": 3776769, + "thread": 25 + } + }, + { + "amount": "146.360926094", + "slot": { + "period": 3791153, + "thread": 2 + } + } + ], + "AU12RqoDX6q7t5reXz8WUPcxS4ghhqVhMJyQCS8MMKA6cZNxi8ASy": [ + { + "amount": "127.189833683", + "slot": { + "period": 150024, + "thread": 28 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 268016, + "thread": 5 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 485245, + "thread": 7 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 537404, + "thread": 8 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 727481, + "thread": 25 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 836425, + "thread": 21 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1013665, + "thread": 31 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1297505, + "thread": 8 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1349092, + "thread": 28 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1599958, + "thread": 18 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1781723, + "thread": 11 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 1907711, + "thread": 18 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2075247, + "thread": 9 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2196020, + "thread": 16 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2385460, + "thread": 0 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2504727, + "thread": 17 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2707832, + "thread": 31 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 2902632, + "thread": 20 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 3023356, + "thread": 12 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 3224071, + "thread": 31 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 3302557, + "thread": 14 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 3602716, + "thread": 24 + } + }, + { + "amount": "127.189833683", + "slot": { + "period": 3635346, + "thread": 20 + } + }, + { + "amount": "127.189833692", + "slot": { + "period": 3898470, + "thread": 9 + } + } + ], + "AU12Rrd6CYTbr4PHeP9uBWxR3sBuwRzTEKQttNVut3WKYa7iKNpTS": [ + { + "amount": "247.170467917", + "slot": { + "period": 59716, + "thread": 18 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 174951, + "thread": 28 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 331278, + "thread": 20 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 522576, + "thread": 12 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 751389, + "thread": 25 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 961925, + "thread": 20 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1111573, + "thread": 10 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1189368, + "thread": 15 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1343046, + "thread": 27 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1594629, + "thread": 28 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1744716, + "thread": 26 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 1946109, + "thread": 29 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2022583, + "thread": 11 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2261335, + "thread": 24 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2360649, + "thread": 15 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2512626, + "thread": 25 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2667199, + "thread": 2 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2933238, + "thread": 7 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 2987940, + "thread": 18 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 3267270, + "thread": 18 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 3386171, + "thread": 12 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 3475068, + "thread": 3 + } + }, + { + "amount": "247.170467917", + "slot": { + "period": 3726237, + "thread": 17 + } + }, + { + "amount": "247.170467912", + "slot": { + "period": 3836249, + "thread": 8 + } + } + ], + "AU12RtqywufAEgs67YHGJEkd3JqiJbsBo6a37s2JEog2mCkMjiAMo": [ + { + "amount": "107.137092505", + "slot": { + "period": 133373, + "thread": 6 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 252814, + "thread": 4 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 447692, + "thread": 17 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 546628, + "thread": 31 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 668737, + "thread": 5 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 851840, + "thread": 4 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1099193, + "thread": 8 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1315289, + "thread": 19 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1372833, + "thread": 3 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1539964, + "thread": 0 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1766071, + "thread": 22 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1838647, + "thread": 24 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 1986981, + "thread": 17 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 2220048, + "thread": 22 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 2413786, + "thread": 18 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 2494888, + "thread": 2 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 2713379, + "thread": 10 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 2948991, + "thread": 10 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 3051103, + "thread": 3 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 3180142, + "thread": 8 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 3325560, + "thread": 30 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 3497934, + "thread": 30 + } + }, + { + "amount": "107.137092505", + "slot": { + "period": 3698084, + "thread": 13 + } + }, + { + "amount": "107.137092498", + "slot": { + "period": 3844777, + "thread": 17 + } + } + ], + "AU12RuFRcVVBuHz2RxkaxDiaopKXEvQqd8XHQ14Xng76ccKk6B4MM": [ + { + "amount": "167.117093653", + "slot": { + "period": 141324, + "thread": 10 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 178936, + "thread": 31 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 438296, + "thread": 5 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 499143, + "thread": 18 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 694769, + "thread": 0 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 888403, + "thread": 26 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1029630, + "thread": 31 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1198335, + "thread": 7 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1353540, + "thread": 8 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1480047, + "thread": 14 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1789568, + "thread": 5 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 1840826, + "thread": 22 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2016603, + "thread": 10 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2222087, + "thread": 21 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2434277, + "thread": 2 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2541008, + "thread": 24 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2718729, + "thread": 11 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2887384, + "thread": 8 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 2995243, + "thread": 28 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 3217882, + "thread": 27 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 3340145, + "thread": 23 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 3538977, + "thread": 17 + } + }, + { + "amount": "167.117093653", + "slot": { + "period": 3725866, + "thread": 28 + } + }, + { + "amount": "167.117093648", + "slot": { + "period": 3895942, + "thread": 24 + } + } + ], + "AU12RuTekmrn4ApGgvHDYeTYbyAbjLj7DkPvQ1ptdn1hYKpyYRwg4": [ + { + "amount": "152.607350512", + "slot": { + "period": 68657, + "thread": 21 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 250767, + "thread": 21 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 407764, + "thread": 27 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 614242, + "thread": 4 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 746117, + "thread": 13 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 905497, + "thread": 5 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1054241, + "thread": 25 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1219406, + "thread": 16 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1377829, + "thread": 16 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1642865, + "thread": 24 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1776201, + "thread": 6 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 1924112, + "thread": 7 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2008825, + "thread": 19 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2275029, + "thread": 28 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2345201, + "thread": 18 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2554325, + "thread": 5 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2709643, + "thread": 17 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2821260, + "thread": 26 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 2969489, + "thread": 24 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 3274022, + "thread": 21 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 3372348, + "thread": 28 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 3565319, + "thread": 27 + } + }, + { + "amount": "152.607350512", + "slot": { + "period": 3757796, + "thread": 19 + } + }, + { + "amount": "152.607350518", + "slot": { + "period": 3796547, + "thread": 19 + } + } + ], + "AU12RuiX6nmKcsAXucM8gt3sD5r1EQKhYNb23zRg7YKJWFmWyciv7": [ + { + "amount": "97.882860376", + "slot": { + "period": 155789, + "thread": 14 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 186892, + "thread": 19 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 463114, + "thread": 29 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 509647, + "thread": 26 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 710382, + "thread": 22 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 840027, + "thread": 14 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1076776, + "thread": 23 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1236783, + "thread": 5 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1344838, + "thread": 26 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1616717, + "thread": 11 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1733933, + "thread": 11 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 1827663, + "thread": 20 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2015760, + "thread": 15 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2171195, + "thread": 20 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2315360, + "thread": 8 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2582317, + "thread": 4 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2701388, + "thread": 7 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 2873367, + "thread": 7 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 3046474, + "thread": 30 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 3255187, + "thread": 20 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 3410119, + "thread": 10 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 3467861, + "thread": 12 + } + }, + { + "amount": "97.882860376", + "slot": { + "period": 3623548, + "thread": 29 + } + }, + { + "amount": "97.882860365", + "slot": { + "period": 3807920, + "thread": 5 + } + } + ], + "AU12RvYRi8RbM9NDrqQCjyHReZHvvwNjxtX2aDbyoa88Pocd9U9c8": [ + { + "amount": "357.976712540", + "slot": { + "period": 21962, + "thread": 19 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 245280, + "thread": 4 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 330137, + "thread": 17 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 492346, + "thread": 27 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 694310, + "thread": 12 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 845690, + "thread": 1 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1032453, + "thread": 28 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1201168, + "thread": 25 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1356296, + "thread": 4 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1556503, + "thread": 16 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1739438, + "thread": 7 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 1867219, + "thread": 26 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2063808, + "thread": 29 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2229230, + "thread": 29 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2355066, + "thread": 23 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2614160, + "thread": 26 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2638848, + "thread": 10 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 2936057, + "thread": 6 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 3002947, + "thread": 12 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 3165977, + "thread": 1 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 3314046, + "thread": 6 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 3523658, + "thread": 16 + } + }, + { + "amount": "357.976712540", + "slot": { + "period": 3624999, + "thread": 7 + } + }, + { + "amount": "357.976712531", + "slot": { + "period": 3875494, + "thread": 19 + } + } + ], + "AU12RwDqhPPsxy8ESGi7Whj8yQ2ZWg7KT8qPc8FeQNREkkARUDrhE": [ + { + "amount": "122.185316108", + "slot": { + "period": 66973, + "thread": 7 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 293381, + "thread": 9 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 397818, + "thread": 6 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 530961, + "thread": 31 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 763430, + "thread": 13 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 958190, + "thread": 9 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1009455, + "thread": 26 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1262646, + "thread": 19 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1339509, + "thread": 22 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1578775, + "thread": 5 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1803506, + "thread": 2 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 1947070, + "thread": 20 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2074470, + "thread": 17 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2202600, + "thread": 9 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2314043, + "thread": 2 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2551861, + "thread": 18 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2671257, + "thread": 24 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 2926104, + "thread": 1 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 3024665, + "thread": 0 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 3129493, + "thread": 2 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 3441270, + "thread": 1 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 3521190, + "thread": 20 + } + }, + { + "amount": "122.185316108", + "slot": { + "period": 3645792, + "thread": 22 + } + }, + { + "amount": "122.185316113", + "slot": { + "period": 3817329, + "thread": 2 + } + } + ], + "AU12RwZ8BJT8dVqcwjMFthjirg4JedLWZJP4zm3rp1f3cYQiefFKN": [ + { + "amount": "424.099814792", + "slot": { + "period": 71151, + "thread": 27 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 225305, + "thread": 3 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 334319, + "thread": 21 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 499733, + "thread": 3 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 653980, + "thread": 20 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 849981, + "thread": 29 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1023327, + "thread": 20 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1168366, + "thread": 16 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1339554, + "thread": 9 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1626839, + "thread": 3 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1736013, + "thread": 8 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 1886888, + "thread": 4 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2129541, + "thread": 30 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2144736, + "thread": 24 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2303402, + "thread": 26 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2509435, + "thread": 24 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2712196, + "thread": 29 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 2950754, + "thread": 24 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 3020497, + "thread": 10 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 3220526, + "thread": 31 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 3354678, + "thread": 8 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 3558192, + "thread": 8 + } + }, + { + "amount": "424.099814792", + "slot": { + "period": 3738727, + "thread": 19 + } + }, + { + "amount": "424.099814789", + "slot": { + "period": 3857606, + "thread": 17 + } + } + ], + "AU12RwZmqxtza2bk4LHzo6kQaDwh983TPiCY5XgwnVsQiLHLoCd55": [ + { + "amount": "272.579675640", + "slot": { + "period": 157206, + "thread": 19 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 267377, + "thread": 21 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 470003, + "thread": 20 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 492309, + "thread": 6 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 740137, + "thread": 1 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 941649, + "thread": 31 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1106831, + "thread": 13 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1287113, + "thread": 15 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1403391, + "thread": 4 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1538939, + "thread": 11 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1772229, + "thread": 21 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 1929828, + "thread": 20 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2051596, + "thread": 18 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2206897, + "thread": 30 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2344597, + "thread": 25 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2544618, + "thread": 11 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2765944, + "thread": 14 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 2844947, + "thread": 23 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3081880, + "thread": 10 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3246402, + "thread": 31 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3324227, + "thread": 3 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3614261, + "thread": 24 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3753395, + "thread": 8 + } + }, + { + "amount": "272.579675640", + "slot": { + "period": 3882465, + "thread": 29 + } + } + ], + "AU12RxF5oHaZYRZtGAFy251Mo6CeoGfvimEtmzcNvEcL69ptLAtCp": [ + { + "amount": "155.902866877", + "slot": { + "period": 105734, + "thread": 13 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 309784, + "thread": 26 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 355811, + "thread": 18 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 597162, + "thread": 24 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 723869, + "thread": 5 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 970098, + "thread": 15 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1128275, + "thread": 19 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1225434, + "thread": 5 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1361494, + "thread": 22 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1581375, + "thread": 4 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1677501, + "thread": 2 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 1870132, + "thread": 12 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2116993, + "thread": 12 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2159024, + "thread": 2 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2323068, + "thread": 22 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2540920, + "thread": 17 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2643895, + "thread": 31 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 2827908, + "thread": 14 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 3072910, + "thread": 11 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 3144137, + "thread": 12 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 3330284, + "thread": 11 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 3554595, + "thread": 0 + } + }, + { + "amount": "155.902866877", + "slot": { + "period": 3706349, + "thread": 10 + } + }, + { + "amount": "155.902866867", + "slot": { + "period": 3926219, + "thread": 17 + } + } + ], + "AU12RxuRniyEanHDZMscLJNjd2bWqiTZz6Lw1o95xbPfX6uSs31Y4": [ + { + "amount": "231.533614427", + "slot": { + "period": 110507, + "thread": 28 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 186932, + "thread": 8 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 345337, + "thread": 29 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 556605, + "thread": 9 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 716022, + "thread": 1 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 966012, + "thread": 15 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1019032, + "thread": 20 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1184933, + "thread": 19 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1346008, + "thread": 2 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1622567, + "thread": 18 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1698663, + "thread": 23 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 1814487, + "thread": 14 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2123492, + "thread": 0 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2254181, + "thread": 12 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2396610, + "thread": 29 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2554139, + "thread": 14 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2658987, + "thread": 3 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 2899817, + "thread": 25 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 3099988, + "thread": 23 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 3159080, + "thread": 1 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 3324390, + "thread": 20 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 3506515, + "thread": 7 + } + }, + { + "amount": "231.533614427", + "slot": { + "period": 3665256, + "thread": 12 + } + }, + { + "amount": "231.533614431", + "slot": { + "period": 3931340, + "thread": 11 + } + } + ], + "AU12RyPpKkdAk4F4xkAP6wZCTLwCjZckYaZu21BUii5sjhUdv8pq8": [ + { + "amount": "154.394041571", + "slot": { + "period": 80760, + "thread": 17 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 277682, + "thread": 24 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 392738, + "thread": 23 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 552003, + "thread": 7 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 681602, + "thread": 27 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 829249, + "thread": 0 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1034988, + "thread": 4 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1170838, + "thread": 13 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1450987, + "thread": 11 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1532212, + "thread": 13 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1690823, + "thread": 31 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 1816051, + "thread": 14 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2062574, + "thread": 20 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2292257, + "thread": 27 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2363535, + "thread": 8 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2544734, + "thread": 2 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2700246, + "thread": 8 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 2949055, + "thread": 0 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 3100049, + "thread": 14 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 3193226, + "thread": 24 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 3327131, + "thread": 28 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 3581988, + "thread": 8 + } + }, + { + "amount": "154.394041571", + "slot": { + "period": 3737439, + "thread": 12 + } + }, + { + "amount": "154.394041579", + "slot": { + "period": 3823292, + "thread": 4 + } + } + ], + "AU12RyQ7rmfs8xKqBSSaU3guboPQZS7vG6LXwi9vm5ibkKB5K5NFr": [ + { + "amount": "142.983116362", + "slot": { + "period": 30989, + "thread": 19 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 230266, + "thread": 4 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 456964, + "thread": 29 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 649294, + "thread": 8 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 703080, + "thread": 31 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 957223, + "thread": 8 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1094903, + "thread": 23 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1225874, + "thread": 3 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1374229, + "thread": 2 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1480861, + "thread": 18 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1720228, + "thread": 12 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 1872687, + "thread": 29 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2142212, + "thread": 3 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2270236, + "thread": 20 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2329604, + "thread": 13 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2581498, + "thread": 4 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2673091, + "thread": 2 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 2815736, + "thread": 21 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 3038992, + "thread": 0 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 3217298, + "thread": 7 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 3391237, + "thread": 23 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 3537464, + "thread": 22 + } + }, + { + "amount": "142.983116362", + "slot": { + "period": 3692102, + "thread": 27 + } + }, + { + "amount": "142.983116361", + "slot": { + "period": 3941403, + "thread": 9 + } + } + ], + "AU12RyexVZkC7rmCzsTCzpdGcSZYURz2ozefU4HEEKQvTgsmeVvgg": [ + { + "amount": "243.094098499", + "slot": { + "period": 116245, + "thread": 24 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 308559, + "thread": 17 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 382753, + "thread": 24 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 603307, + "thread": 18 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 785035, + "thread": 10 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 924341, + "thread": 5 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1067139, + "thread": 13 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1164071, + "thread": 28 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1343340, + "thread": 30 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1497953, + "thread": 16 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1756595, + "thread": 24 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 1830439, + "thread": 27 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2047858, + "thread": 17 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2246679, + "thread": 6 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2457559, + "thread": 23 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2524746, + "thread": 0 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2778999, + "thread": 25 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2830958, + "thread": 10 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 2995529, + "thread": 6 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 3212796, + "thread": 31 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 3320963, + "thread": 10 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 3477699, + "thread": 12 + } + }, + { + "amount": "243.094098499", + "slot": { + "period": 3653260, + "thread": 1 + } + }, + { + "amount": "243.094098491", + "slot": { + "period": 3803656, + "thread": 22 + } + } + ], + "AU12RyvJTukaWUshUJaRpK1cSAtgm6q2hPrLvmGNsT4AYCRinAXGe": [ + { + "amount": "223.828496458", + "slot": { + "period": 166926, + "thread": 28 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 304683, + "thread": 30 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 394845, + "thread": 17 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 554659, + "thread": 20 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 788805, + "thread": 1 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 847108, + "thread": 14 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 987361, + "thread": 27 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 1199678, + "thread": 5 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 1388047, + "thread": 20 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 1586108, + "thread": 13 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 1753399, + "thread": 13 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 1862331, + "thread": 17 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2110571, + "thread": 20 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2232955, + "thread": 30 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2384857, + "thread": 30 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2578957, + "thread": 24 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2788968, + "thread": 1 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2804230, + "thread": 19 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 2966252, + "thread": 19 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 3240373, + "thread": 9 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 3396245, + "thread": 6 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 3482971, + "thread": 1 + } + }, + { + "amount": "223.828496458", + "slot": { + "period": 3655157, + "thread": 26 + } + }, + { + "amount": "223.828496466", + "slot": { + "period": 3836971, + "thread": 10 + } + } + ], + "AU12RzCJvBRyPpB3ToRu9Rmc9RvrPpCjoNsXsLxyzMDPdWQ59jbrz": [ + { + "amount": "398.625635218", + "slot": { + "period": 37724, + "thread": 7 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 200149, + "thread": 13 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 476313, + "thread": 20 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 524141, + "thread": 11 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 716589, + "thread": 30 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 926381, + "thread": 3 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1081318, + "thread": 28 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1175318, + "thread": 27 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1446938, + "thread": 29 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1557467, + "thread": 10 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1777618, + "thread": 2 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 1841372, + "thread": 19 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2091543, + "thread": 7 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2260049, + "thread": 21 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2405339, + "thread": 30 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2563476, + "thread": 21 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2706312, + "thread": 25 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 2887000, + "thread": 13 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 3054330, + "thread": 9 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 3221115, + "thread": 26 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 3429144, + "thread": 19 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 3607974, + "thread": 10 + } + }, + { + "amount": "398.625635218", + "slot": { + "period": 3629168, + "thread": 22 + } + }, + { + "amount": "398.625635215", + "slot": { + "period": 3875400, + "thread": 7 + } + } + ], + "AU12RzJxkQKyn3Hofrbn2EUM5G5mACpxcydXKvQTfUjbY6SeBw4J6": [ + { + "amount": "231.186404171", + "slot": { + "period": 158407, + "thread": 6 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 172301, + "thread": 18 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 445424, + "thread": 8 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 618439, + "thread": 9 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 812042, + "thread": 22 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 912939, + "thread": 31 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1056426, + "thread": 16 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1187789, + "thread": 10 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1346877, + "thread": 30 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1535171, + "thread": 19 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1691385, + "thread": 2 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 1821203, + "thread": 26 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2127320, + "thread": 6 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2145711, + "thread": 17 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2354435, + "thread": 15 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2512414, + "thread": 28 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2678495, + "thread": 22 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 2869132, + "thread": 25 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 3077504, + "thread": 28 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 3190984, + "thread": 31 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 3305083, + "thread": 27 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 3451268, + "thread": 3 + } + }, + { + "amount": "231.186404171", + "slot": { + "period": 3678494, + "thread": 26 + } + }, + { + "amount": "231.186404162", + "slot": { + "period": 3822300, + "thread": 18 + } + } + ], + "AU12RzueCDJMRyNjSJY4s5UBe5JMXB92V7mmaatKcms7EhbAkCvrj": [ + { + "amount": "610.448163974", + "slot": { + "period": 90999, + "thread": 29 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 320262, + "thread": 21 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 405970, + "thread": 14 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 642140, + "thread": 22 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 670914, + "thread": 13 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 843795, + "thread": 24 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1067942, + "thread": 30 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1216012, + "thread": 27 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1357988, + "thread": 21 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1588073, + "thread": 11 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1784806, + "thread": 9 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 1925414, + "thread": 12 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2014593, + "thread": 7 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2277225, + "thread": 13 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2393450, + "thread": 3 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2571366, + "thread": 10 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2687773, + "thread": 31 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2922516, + "thread": 18 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 2974815, + "thread": 3 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 3126976, + "thread": 16 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 3373738, + "thread": 25 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 3482231, + "thread": 12 + } + }, + { + "amount": "610.448163974", + "slot": { + "period": 3777348, + "thread": 21 + } + }, + { + "amount": "610.448163986", + "slot": { + "period": 3916575, + "thread": 7 + } + } + ], + "AU12S1FNTdWDduvZnVQJ6b43v8d2VQQ8fxAKcHi3EBfyuvCs6azJM": [ + { + "amount": "326.438351746", + "slot": { + "period": 67891, + "thread": 7 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 251201, + "thread": 20 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 351120, + "thread": 8 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 505905, + "thread": 5 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 806095, + "thread": 16 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 902460, + "thread": 0 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 993373, + "thread": 24 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 1244033, + "thread": 0 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 1477684, + "thread": 15 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 1609267, + "thread": 14 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 1719071, + "thread": 10 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 1883176, + "thread": 10 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2105082, + "thread": 0 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2183106, + "thread": 11 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2414577, + "thread": 10 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2522752, + "thread": 28 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2650739, + "thread": 18 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 2858115, + "thread": 28 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 3022716, + "thread": 30 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 3256604, + "thread": 28 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 3366132, + "thread": 26 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 3497358, + "thread": 20 + } + }, + { + "amount": "326.438351746", + "slot": { + "period": 3764155, + "thread": 28 + } + }, + { + "amount": "326.438351750", + "slot": { + "period": 3892268, + "thread": 8 + } + } + ], + "AU12S1P4TKkhwA2vDuA1gVFfpP7MQ97UKB4NQqK2SRTGcpnqc4xuH": [ + { + "amount": "65.613448781", + "slot": { + "period": 89046, + "thread": 1 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 234423, + "thread": 19 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 409638, + "thread": 21 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 576191, + "thread": 13 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 753880, + "thread": 17 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 957782, + "thread": 24 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1091108, + "thread": 24 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1271848, + "thread": 14 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1343239, + "thread": 9 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1587050, + "thread": 25 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1776027, + "thread": 22 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 1811625, + "thread": 26 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2132890, + "thread": 17 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2183230, + "thread": 15 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2365237, + "thread": 24 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2543557, + "thread": 0 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2781227, + "thread": 16 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2861613, + "thread": 17 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 2993284, + "thread": 10 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 3284732, + "thread": 0 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 3356084, + "thread": 16 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 3615064, + "thread": 29 + } + }, + { + "amount": "65.613448781", + "slot": { + "period": 3695700, + "thread": 10 + } + }, + { + "amount": "65.613448782", + "slot": { + "period": 3837789, + "thread": 12 + } + } + ], + "AU12S1ZYh324A1boizAuRWLNnd8rvuvPjZsyhWJFFGh12un7XSu5M": [ + { + "amount": "224.524336105", + "slot": { + "period": 115809, + "thread": 3 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 168806, + "thread": 6 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 404788, + "thread": 0 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 540897, + "thread": 16 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 761082, + "thread": 22 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 876422, + "thread": 19 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1007510, + "thread": 17 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1247503, + "thread": 7 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1329446, + "thread": 26 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1600253, + "thread": 8 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1774155, + "thread": 18 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 1902277, + "thread": 7 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2116832, + "thread": 10 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2202668, + "thread": 21 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2450950, + "thread": 21 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2518773, + "thread": 21 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2714707, + "thread": 1 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 2816903, + "thread": 31 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 3118223, + "thread": 16 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 3174244, + "thread": 23 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 3367490, + "thread": 29 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 3469620, + "thread": 8 + } + }, + { + "amount": "224.524336105", + "slot": { + "period": 3735104, + "thread": 24 + } + }, + { + "amount": "224.524336104", + "slot": { + "period": 3945332, + "thread": 31 + } + } + ], + "AU12S2Dy11YBzuEJekXLB4HcXqW4qmzRbcip2EbtK5pzPkSqBFLiX": [ + { + "amount": "129.969710933", + "slot": { + "period": 87282, + "thread": 4 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 217441, + "thread": 13 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 481691, + "thread": 28 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 598993, + "thread": 10 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 769364, + "thread": 25 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 839773, + "thread": 25 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1079785, + "thread": 5 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1180359, + "thread": 8 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1327326, + "thread": 9 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1599902, + "thread": 25 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1764111, + "thread": 14 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1960167, + "thread": 14 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 1989231, + "thread": 6 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2183831, + "thread": 17 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2358348, + "thread": 19 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2505888, + "thread": 0 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2768402, + "thread": 26 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2919451, + "thread": 10 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 2973371, + "thread": 9 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 3284841, + "thread": 14 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 3372961, + "thread": 26 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 3559855, + "thread": 31 + } + }, + { + "amount": "129.969710933", + "slot": { + "period": 3654973, + "thread": 19 + } + }, + { + "amount": "129.969710927", + "slot": { + "period": 3793065, + "thread": 13 + } + } + ], + "AU12S2VhiKJU5QAupPvBdUU4xQRwnjcKVfsPQxnNC4PP6vKTPEruZ": [ + { + "amount": "66.436119043", + "slot": { + "period": 39837, + "thread": 3 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 273322, + "thread": 21 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 480830, + "thread": 4 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 576242, + "thread": 4 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 792616, + "thread": 22 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 835459, + "thread": 18 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1028150, + "thread": 11 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1268988, + "thread": 15 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1404452, + "thread": 12 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1524599, + "thread": 28 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1755896, + "thread": 9 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 1931270, + "thread": 10 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2059874, + "thread": 4 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2150104, + "thread": 23 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2345009, + "thread": 19 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2562673, + "thread": 18 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2665135, + "thread": 29 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2816618, + "thread": 2 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 2992374, + "thread": 19 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 3128092, + "thread": 1 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 3420378, + "thread": 17 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 3602364, + "thread": 4 + } + }, + { + "amount": "66.436119043", + "slot": { + "period": 3716894, + "thread": 13 + } + }, + { + "amount": "66.436119048", + "slot": { + "period": 3801897, + "thread": 19 + } + } + ], + "AU12S3EJnvw9EuhfYEGoHZjnRrGHfSfo5bPzkKEgnpyGfAm82wK1E": [ + { + "amount": "139.310812151", + "slot": { + "period": 88969, + "thread": 6 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 307602, + "thread": 18 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 405100, + "thread": 9 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 590195, + "thread": 1 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 784909, + "thread": 17 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 931287, + "thread": 6 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1066345, + "thread": 4 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1300997, + "thread": 8 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1463745, + "thread": 21 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1585902, + "thread": 21 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1739059, + "thread": 21 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 1832556, + "thread": 20 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2039406, + "thread": 14 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2204170, + "thread": 21 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2404600, + "thread": 24 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2614726, + "thread": 27 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2628728, + "thread": 3 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 2949951, + "thread": 30 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 3026362, + "thread": 29 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 3196643, + "thread": 0 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 3432209, + "thread": 29 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 3475330, + "thread": 15 + } + }, + { + "amount": "139.310812151", + "slot": { + "period": 3683008, + "thread": 23 + } + }, + { + "amount": "139.310812152", + "slot": { + "period": 3857705, + "thread": 30 + } + } + ], + "AU12S3xBcWZWHnJf1AaqHJS97UzTNAri3ddaNyPVZVJysBMmpQ3xp": [ + { + "amount": "58.165907474", + "slot": { + "period": 143708, + "thread": 18 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 258270, + "thread": 13 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 480545, + "thread": 12 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 513140, + "thread": 30 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 806862, + "thread": 4 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 871968, + "thread": 10 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1044483, + "thread": 28 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1222818, + "thread": 14 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1473285, + "thread": 23 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1527817, + "thread": 1 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1807053, + "thread": 30 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 1915174, + "thread": 4 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2115108, + "thread": 29 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2230985, + "thread": 17 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2328775, + "thread": 20 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2493947, + "thread": 11 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2629277, + "thread": 13 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2884989, + "thread": 6 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 2957712, + "thread": 8 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 3186277, + "thread": 12 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 3412029, + "thread": 0 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 3486359, + "thread": 29 + } + }, + { + "amount": "58.165907474", + "slot": { + "period": 3680222, + "thread": 30 + } + }, + { + "amount": "58.165907473", + "slot": { + "period": 3930046, + "thread": 0 + } + } + ], + "AU12S4FG4SH2xNeLRsK7zLqx6oMGMgdnR2zanSDaugXRPhqXJWeQX": [ + { + "amount": "174.481041096", + "slot": { + "period": 63533, + "thread": 12 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 288419, + "thread": 5 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 409152, + "thread": 13 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 642743, + "thread": 3 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 728326, + "thread": 14 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 878802, + "thread": 18 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1093226, + "thread": 3 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1300156, + "thread": 19 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1421714, + "thread": 23 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1573788, + "thread": 20 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1696144, + "thread": 16 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 1854898, + "thread": 2 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2127034, + "thread": 0 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2145007, + "thread": 29 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2308584, + "thread": 21 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2466414, + "thread": 12 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2682941, + "thread": 23 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 2931002, + "thread": 17 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 3079598, + "thread": 28 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 3124487, + "thread": 6 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 3399848, + "thread": 12 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 3476907, + "thread": 15 + } + }, + { + "amount": "174.481041096", + "slot": { + "period": 3742754, + "thread": 5 + } + }, + { + "amount": "174.481041106", + "slot": { + "period": 3928272, + "thread": 10 + } + } + ], + "AU12S4rkWtcRfz9Z6K5hZ2BHgoEGsSDZw3MBJLBZadyNfPHE95LQT": [ + { + "amount": "463.334767276", + "slot": { + "period": 152030, + "thread": 10 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 233150, + "thread": 30 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 403716, + "thread": 6 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 588485, + "thread": 2 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 756888, + "thread": 3 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 833635, + "thread": 22 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1144927, + "thread": 24 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1194380, + "thread": 29 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1440632, + "thread": 25 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1607963, + "thread": 25 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1726155, + "thread": 24 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1917204, + "thread": 3 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 1994197, + "thread": 2 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2162953, + "thread": 25 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2312177, + "thread": 28 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2537729, + "thread": 13 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2774171, + "thread": 10 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2875916, + "thread": 30 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 2991399, + "thread": 13 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 3193161, + "thread": 14 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 3307741, + "thread": 27 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 3494260, + "thread": 0 + } + }, + { + "amount": "463.334767276", + "slot": { + "period": 3654383, + "thread": 25 + } + }, + { + "amount": "463.334767277", + "slot": { + "period": 3846970, + "thread": 23 + } + } + ], + "AU12S54DMB7AF9pp5JWhMCsrMgFDfXMhgsdc8m5GTNVtQqQ79ejWP": [ + { + "amount": "327.240082973", + "slot": { + "period": 17195, + "thread": 22 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 180861, + "thread": 31 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 354422, + "thread": 26 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 650903, + "thread": 13 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 702673, + "thread": 7 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 928213, + "thread": 6 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1096737, + "thread": 24 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1300624, + "thread": 14 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1432089, + "thread": 22 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1568749, + "thread": 0 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1729138, + "thread": 26 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 1893332, + "thread": 27 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2137454, + "thread": 12 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2173217, + "thread": 18 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2322290, + "thread": 22 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2519750, + "thread": 24 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2632674, + "thread": 8 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2871941, + "thread": 2 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 2980004, + "thread": 27 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 3251048, + "thread": 0 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 3347282, + "thread": 9 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 3504113, + "thread": 7 + } + }, + { + "amount": "327.240082973", + "slot": { + "period": 3679240, + "thread": 16 + } + }, + { + "amount": "327.240082984", + "slot": { + "period": 3922729, + "thread": 15 + } + } + ], + "AU12S5d3tHA2YtcDpDXrBNXMgsWM6FieuUHuF7x8XHrczLEh8TJZG": [ + { + "amount": "371.428879919", + "slot": { + "period": 71281, + "thread": 10 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 278046, + "thread": 9 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 412373, + "thread": 13 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 581514, + "thread": 19 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 667627, + "thread": 30 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 934911, + "thread": 0 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1008444, + "thread": 29 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1170622, + "thread": 19 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1425454, + "thread": 14 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1575476, + "thread": 8 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1768137, + "thread": 16 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 1911680, + "thread": 28 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2104823, + "thread": 0 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2197561, + "thread": 6 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2346354, + "thread": 2 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2495426, + "thread": 22 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2659160, + "thread": 14 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 2806891, + "thread": 18 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 3001783, + "thread": 16 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 3252738, + "thread": 8 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 3310505, + "thread": 12 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 3469623, + "thread": 17 + } + }, + { + "amount": "371.428879919", + "slot": { + "period": 3697487, + "thread": 15 + } + }, + { + "amount": "371.428879916", + "slot": { + "period": 3876247, + "thread": 21 + } + } + ], + "AU12S96zr1XTSeYf9XmwvM8T738uLAWgYH2xCwNvPEnNc1fmQ9znK": [ + { + "amount": "57.123725224", + "slot": { + "period": 12947, + "thread": 25 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 280765, + "thread": 17 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 350332, + "thread": 14 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 519154, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 722635, + "thread": 10 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 833455, + "thread": 29 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1039130, + "thread": 29 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1222803, + "thread": 6 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1322402, + "thread": 17 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1557091, + "thread": 7 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1681833, + "thread": 9 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 1818907, + "thread": 26 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2013348, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2242056, + "thread": 15 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2333328, + "thread": 22 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2475897, + "thread": 23 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2789932, + "thread": 31 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 2912408, + "thread": 8 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 3021917, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 3277199, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 3447482, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 3491725, + "thread": 18 + } + }, + { + "amount": "57.123725224", + "slot": { + "period": 3779385, + "thread": 16 + } + }, + { + "amount": "57.123725229", + "slot": { + "period": 3882577, + "thread": 21 + } + } + ], + "AU12S9B1N7pz6TRTZWGAozZm5drERVbitQXds5f3VAru9ymCwF6Ed": [ + { + "amount": "91.221028981", + "slot": { + "period": 136798, + "thread": 7 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 211066, + "thread": 4 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 392590, + "thread": 25 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 644130, + "thread": 19 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 810974, + "thread": 8 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 854318, + "thread": 13 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1061576, + "thread": 10 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1189830, + "thread": 1 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1433548, + "thread": 16 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1561621, + "thread": 3 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1796286, + "thread": 29 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 1887899, + "thread": 19 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2104290, + "thread": 12 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2195191, + "thread": 17 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2395600, + "thread": 26 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2507128, + "thread": 18 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2668080, + "thread": 25 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 2904042, + "thread": 23 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 3107458, + "thread": 2 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 3180412, + "thread": 23 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 3322907, + "thread": 21 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 3523017, + "thread": 14 + } + }, + { + "amount": "91.221028981", + "slot": { + "period": 3681155, + "thread": 5 + } + }, + { + "amount": "91.221028977", + "slot": { + "period": 3829346, + "thread": 31 + } + } + ], + "AU12SE2H4sjwjBu3WxfEVSKonZNeLe72b61XiPKeKaZ42UcCpDS7W": [ + { + "amount": "54.726356745", + "slot": { + "period": 25178, + "thread": 26 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 191911, + "thread": 22 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 394305, + "thread": 27 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 513549, + "thread": 29 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 682779, + "thread": 22 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 894591, + "thread": 3 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1051738, + "thread": 11 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1175379, + "thread": 4 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1457695, + "thread": 14 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1551917, + "thread": 8 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1670040, + "thread": 31 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 1922692, + "thread": 14 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2043193, + "thread": 28 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2277177, + "thread": 8 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2433392, + "thread": 6 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2619578, + "thread": 2 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2648358, + "thread": 28 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 2916888, + "thread": 20 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 3013524, + "thread": 1 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 3271062, + "thread": 23 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 3299104, + "thread": 22 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 3560176, + "thread": 7 + } + }, + { + "amount": "54.726356745", + "slot": { + "period": 3703893, + "thread": 28 + } + }, + { + "amount": "54.726356739", + "slot": { + "period": 3923383, + "thread": 1 + } + } + ], + "AU12SEXXb7LebLv26AGNGFHNRfkCqSHfHbkG2YXRDvWm9k6zgbBey": [ + { + "amount": "267.055254813", + "slot": { + "period": 128263, + "thread": 10 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 288541, + "thread": 28 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 344781, + "thread": 22 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 616966, + "thread": 12 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 692167, + "thread": 27 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 824043, + "thread": 25 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1039569, + "thread": 0 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1308412, + "thread": 9 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1392194, + "thread": 31 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1547165, + "thread": 10 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1732054, + "thread": 6 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1950115, + "thread": 22 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 1991459, + "thread": 23 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 2256408, + "thread": 4 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 2426833, + "thread": 8 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 2590429, + "thread": 9 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 2765593, + "thread": 3 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 2893685, + "thread": 5 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 3054098, + "thread": 6 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 3239428, + "thread": 28 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 3344052, + "thread": 3 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 3506125, + "thread": 16 + } + }, + { + "amount": "267.055254813", + "slot": { + "period": 3624501, + "thread": 28 + } + }, + { + "amount": "267.055254816", + "slot": { + "period": 3783214, + "thread": 8 + } + } + ], + "AU12SEtPjnA9cCebCnQTTVDs1YkPbFDXxD5QY8SsKWiNgF8LPWTRr": [ + { + "amount": "109.951474660", + "slot": { + "period": 163163, + "thread": 0 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 275626, + "thread": 2 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 392608, + "thread": 8 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 594964, + "thread": 17 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 670136, + "thread": 4 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 880647, + "thread": 29 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1098203, + "thread": 16 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1156179, + "thread": 29 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1478015, + "thread": 27 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1517139, + "thread": 22 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1730111, + "thread": 25 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 1895121, + "thread": 13 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2122912, + "thread": 3 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2193485, + "thread": 18 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2445917, + "thread": 27 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2592057, + "thread": 17 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2746926, + "thread": 7 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 2831610, + "thread": 26 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 3038621, + "thread": 20 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 3151358, + "thread": 3 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 3364054, + "thread": 20 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 3501002, + "thread": 10 + } + }, + { + "amount": "109.951474660", + "slot": { + "period": 3654669, + "thread": 11 + } + }, + { + "amount": "109.951474656", + "slot": { + "period": 3916818, + "thread": 9 + } + } + ], + "AU12SFxFUU6DPmLP2Dz5rrCEiyhbrAwdt2fj8JqM8EiGJcajwTwyd": [ + { + "amount": "57.128878507", + "slot": { + "period": 56437, + "thread": 25 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 193184, + "thread": 6 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 478055, + "thread": 25 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 619261, + "thread": 13 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 775939, + "thread": 13 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 896010, + "thread": 20 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1002293, + "thread": 24 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1214097, + "thread": 15 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1391671, + "thread": 28 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1583173, + "thread": 9 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1685105, + "thread": 13 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 1905412, + "thread": 22 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2057258, + "thread": 24 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2146088, + "thread": 28 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2364241, + "thread": 4 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2621480, + "thread": 22 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2662208, + "thread": 29 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 2814357, + "thread": 18 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 3069557, + "thread": 20 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 3262536, + "thread": 21 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 3401018, + "thread": 16 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 3486633, + "thread": 24 + } + }, + { + "amount": "57.128878507", + "slot": { + "period": 3694694, + "thread": 13 + } + }, + { + "amount": "57.128878512", + "slot": { + "period": 3818911, + "thread": 21 + } + } + ], + "AU12SFzVBsSJb6i9XCc8ZQUcdWUQW3DURAXrhRDXX9vgHzhdeexs4": [ + { + "amount": "93.295086190", + "slot": { + "period": 110498, + "thread": 12 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 247742, + "thread": 30 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 364490, + "thread": 30 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 515117, + "thread": 16 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 803761, + "thread": 25 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 972909, + "thread": 15 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1035022, + "thread": 18 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1204659, + "thread": 30 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1352567, + "thread": 28 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1537906, + "thread": 26 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1787973, + "thread": 17 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 1834343, + "thread": 15 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2017615, + "thread": 17 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2244132, + "thread": 8 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2346111, + "thread": 16 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2552782, + "thread": 15 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2624920, + "thread": 18 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 2894934, + "thread": 13 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 3107375, + "thread": 9 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 3125477, + "thread": 13 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 3329001, + "thread": 8 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 3459511, + "thread": 19 + } + }, + { + "amount": "93.295086190", + "slot": { + "period": 3647903, + "thread": 13 + } + }, + { + "amount": "93.295086193", + "slot": { + "period": 3947095, + "thread": 30 + } + } + ], + "AU12SGzS6xGWjxjaqnzoxhqDfHE22WapBjHvMRG92xMwNrh7xYKkr": [ + { + "amount": "214.578061772", + "slot": { + "period": 16563, + "thread": 1 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 195038, + "thread": 23 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 452099, + "thread": 13 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 549053, + "thread": 5 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 749641, + "thread": 0 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 901755, + "thread": 21 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1040621, + "thread": 21 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1152211, + "thread": 15 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1404267, + "thread": 15 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1486887, + "thread": 31 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1727791, + "thread": 22 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 1850712, + "thread": 7 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2064303, + "thread": 3 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2147011, + "thread": 26 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2433925, + "thread": 0 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2540508, + "thread": 20 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2773941, + "thread": 17 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2796278, + "thread": 3 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 2955858, + "thread": 8 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 3222531, + "thread": 2 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 3414080, + "thread": 2 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 3610606, + "thread": 4 + } + }, + { + "amount": "214.578061772", + "slot": { + "period": 3669136, + "thread": 0 + } + }, + { + "amount": "214.578061777", + "slot": { + "period": 3913596, + "thread": 18 + } + } + ], + "AU12SJ2zM9WFRzNaNq17FMFCwBye2cWPty7oFBR4VnNfwgYJsNo1N": [ + { + "amount": "98.626023782", + "slot": { + "period": 161795, + "thread": 29 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 189716, + "thread": 4 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 366735, + "thread": 6 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 595256, + "thread": 27 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 809865, + "thread": 4 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 906251, + "thread": 25 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1036782, + "thread": 3 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1253562, + "thread": 7 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1399906, + "thread": 31 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1508150, + "thread": 2 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1754514, + "thread": 6 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1938768, + "thread": 31 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 1978650, + "thread": 10 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2146670, + "thread": 22 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2382787, + "thread": 9 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2463628, + "thread": 23 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2735019, + "thread": 18 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2796624, + "thread": 19 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 2994865, + "thread": 4 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 3263258, + "thread": 6 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 3385847, + "thread": 18 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 3489853, + "thread": 29 + } + }, + { + "amount": "98.626023782", + "slot": { + "period": 3747990, + "thread": 1 + } + }, + { + "amount": "98.626023784", + "slot": { + "period": 3946245, + "thread": 30 + } + } + ], + "AU12SKibFERJAXTBuT9PH2PqjzuyUbbqR3Tu4a2fTQ1FuGhHPrjDv": [ + { + "amount": "494.533562000", + "slot": { + "period": 17926, + "thread": 13 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 290392, + "thread": 13 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 338066, + "thread": 2 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 565622, + "thread": 17 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 723589, + "thread": 30 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 869992, + "thread": 30 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1076738, + "thread": 5 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1170463, + "thread": 30 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1456619, + "thread": 11 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1630680, + "thread": 1 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1707333, + "thread": 16 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 1939819, + "thread": 24 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2111647, + "thread": 31 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2151757, + "thread": 10 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2372709, + "thread": 15 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2498171, + "thread": 6 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2733807, + "thread": 20 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 2935871, + "thread": 28 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 3114010, + "thread": 11 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 3134719, + "thread": 31 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 3380748, + "thread": 12 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 3503442, + "thread": 18 + } + }, + { + "amount": "494.533562000", + "slot": { + "period": 3772828, + "thread": 20 + } + }, + { + "amount": "494.533562001", + "slot": { + "period": 3833083, + "thread": 22 + } + } + ], + "AU12SMh3oYrK2FjmUuua2AXEnU8pMdxTtNiwp4Z3Jm6izuTR3dSxP": [ + { + "amount": "5833.333333333", + "slot": { + "period": 11594, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 316277, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 379144, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 594265, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 691294, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 870864, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1077716, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1192457, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1320717, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1645151, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1689933, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1886415, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2064800, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2250924, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2326722, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2525878, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2627534, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2898615, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3012164, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3156662, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3346696, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3599527, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3696789, + "thread": 11 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3930467, + "thread": 2 + } + } + ], + "AU12SMv7CxAWe4YJ75ne9y8x5dvx8emr31eGJSRM7SquprCzKHfSk": [ + { + "amount": "431.167555801", + "slot": { + "period": 71157, + "thread": 30 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 228282, + "thread": 13 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 339729, + "thread": 0 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 532464, + "thread": 0 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 682682, + "thread": 19 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 961439, + "thread": 11 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1136976, + "thread": 0 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1251956, + "thread": 13 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1465330, + "thread": 13 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1606569, + "thread": 12 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1647918, + "thread": 8 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 1863609, + "thread": 15 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2100718, + "thread": 15 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2257795, + "thread": 27 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2390956, + "thread": 25 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2575220, + "thread": 25 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2631181, + "thread": 7 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2860027, + "thread": 10 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 2996112, + "thread": 17 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 3238836, + "thread": 18 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 3449940, + "thread": 3 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 3472818, + "thread": 23 + } + }, + { + "amount": "431.167555801", + "slot": { + "period": 3712767, + "thread": 6 + } + }, + { + "amount": "431.167555811", + "slot": { + "period": 3910583, + "thread": 11 + } + } + ], + "AU12SPbdeGTgg9CxE2ikoKEgLTxnS4hi7Q2TjV2r9ua4cHr5mj88A": [ + { + "amount": "56.139096217", + "slot": { + "period": 69190, + "thread": 9 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 268048, + "thread": 14 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 485533, + "thread": 0 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 629430, + "thread": 9 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 758278, + "thread": 1 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 880881, + "thread": 10 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1135408, + "thread": 8 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1197895, + "thread": 8 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1356207, + "thread": 28 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1584296, + "thread": 7 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1705237, + "thread": 23 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 1835901, + "thread": 6 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2079952, + "thread": 27 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2271523, + "thread": 16 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2446685, + "thread": 0 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2465838, + "thread": 8 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2784496, + "thread": 6 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 2893340, + "thread": 1 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 3040362, + "thread": 19 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 3180373, + "thread": 30 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 3360791, + "thread": 4 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 3532471, + "thread": 1 + } + }, + { + "amount": "56.139096217", + "slot": { + "period": 3710734, + "thread": 29 + } + }, + { + "amount": "56.139096222", + "slot": { + "period": 3877989, + "thread": 6 + } + } + ], + "AU12SPvriEjC6Dqt7dJAQfp9EdwASxjBx35rQMbYKcEWsKZXzGELj": [ + { + "amount": "135.164457925", + "slot": { + "period": 156236, + "thread": 16 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 282649, + "thread": 23 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 413106, + "thread": 6 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 630010, + "thread": 10 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 804131, + "thread": 6 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 898849, + "thread": 8 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1120335, + "thread": 21 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1159069, + "thread": 27 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1344174, + "thread": 1 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1524443, + "thread": 4 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1805050, + "thread": 28 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1844329, + "thread": 20 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 1981806, + "thread": 6 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 2149172, + "thread": 23 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 2424124, + "thread": 23 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 2469548, + "thread": 28 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 2690344, + "thread": 18 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 2946595, + "thread": 25 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 3102759, + "thread": 27 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 3268767, + "thread": 23 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 3397641, + "thread": 2 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 3518074, + "thread": 31 + } + }, + { + "amount": "135.164457925", + "slot": { + "period": 3678037, + "thread": 12 + } + }, + { + "amount": "135.164457931", + "slot": { + "period": 3785193, + "thread": 31 + } + } + ], + "AU12SQvLZnuguhRaBAP1s6LA8UVnWKjqAdQ5bDFDDajWZas8J2ErD": [ + { + "amount": "117.054325772", + "slot": { + "period": 118982, + "thread": 0 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 192019, + "thread": 22 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 326474, + "thread": 16 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 578784, + "thread": 7 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 668133, + "thread": 10 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 856951, + "thread": 25 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1125426, + "thread": 29 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1297655, + "thread": 17 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1373713, + "thread": 30 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1617651, + "thread": 0 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1662643, + "thread": 31 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 1852971, + "thread": 27 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2101043, + "thread": 20 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2163114, + "thread": 15 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2447560, + "thread": 2 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2514124, + "thread": 18 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2686935, + "thread": 2 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2908370, + "thread": 21 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 2956159, + "thread": 23 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 3172800, + "thread": 2 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 3401430, + "thread": 10 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 3571231, + "thread": 0 + } + }, + { + "amount": "117.054325772", + "slot": { + "period": 3757199, + "thread": 3 + } + }, + { + "amount": "117.054325781", + "slot": { + "period": 3891336, + "thread": 8 + } + } + ], + "AU12SS7K2JaQFvB5pE5ZU4nB7c2RmnJVWJkPjEEd8m79YwjCJBf9c": [ + { + "amount": "240.409965553", + "slot": { + "period": 100768, + "thread": 25 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 212859, + "thread": 4 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 363183, + "thread": 3 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 646711, + "thread": 18 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 744285, + "thread": 5 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 980075, + "thread": 1 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1098956, + "thread": 20 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1200426, + "thread": 18 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1477059, + "thread": 27 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1581664, + "thread": 23 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1659610, + "thread": 31 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 1853147, + "thread": 10 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2079650, + "thread": 13 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2178754, + "thread": 4 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2296946, + "thread": 18 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2487639, + "thread": 9 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2632911, + "thread": 3 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2820271, + "thread": 9 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 2958718, + "thread": 1 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 3156413, + "thread": 24 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 3430689, + "thread": 28 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 3467563, + "thread": 6 + } + }, + { + "amount": "240.409965553", + "slot": { + "period": 3767133, + "thread": 2 + } + }, + { + "amount": "240.409965562", + "slot": { + "period": 3797580, + "thread": 2 + } + } + ], + "AU12SSFLPnBuA9RdTygUTmEP6osex7Hy6R2YW2dguCLZF2WMCGNbc": [ + { + "amount": "630.714336124", + "slot": { + "period": 154697, + "thread": 10 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 282199, + "thread": 21 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 341156, + "thread": 2 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 560060, + "thread": 11 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 816191, + "thread": 22 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 854670, + "thread": 10 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1125144, + "thread": 0 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1314518, + "thread": 20 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1476107, + "thread": 11 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1484019, + "thread": 2 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1691750, + "thread": 23 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1908888, + "thread": 15 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 1996273, + "thread": 3 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 2286151, + "thread": 6 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 2459618, + "thread": 4 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 2615764, + "thread": 13 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 2717203, + "thread": 22 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 2795661, + "thread": 4 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 3052295, + "thread": 17 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 3129631, + "thread": 18 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 3387590, + "thread": 31 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 3538799, + "thread": 14 + } + }, + { + "amount": "630.714336124", + "slot": { + "period": 3658366, + "thread": 2 + } + }, + { + "amount": "630.714336116", + "slot": { + "period": 3944470, + "thread": 14 + } + } + ], + "AU12SSWygqeLp2dshFjwxMzeCE33xUrhqGd4s7JEmbM1vCKsdA8E9": [ + { + "amount": "131.957644580", + "slot": { + "period": 117338, + "thread": 13 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 283937, + "thread": 14 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 348907, + "thread": 27 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 504167, + "thread": 26 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 806556, + "thread": 26 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 876397, + "thread": 7 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1022741, + "thread": 31 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1257998, + "thread": 19 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1470870, + "thread": 6 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1541566, + "thread": 30 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1666414, + "thread": 18 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 1969535, + "thread": 8 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2007996, + "thread": 1 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2195170, + "thread": 17 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2338182, + "thread": 24 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2569746, + "thread": 27 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2780447, + "thread": 28 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2937704, + "thread": 1 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 2978394, + "thread": 7 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 3249306, + "thread": 13 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 3296773, + "thread": 30 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 3462845, + "thread": 10 + } + }, + { + "amount": "131.957644580", + "slot": { + "period": 3657527, + "thread": 0 + } + }, + { + "amount": "131.957644582", + "slot": { + "period": 3924735, + "thread": 17 + } + } + ], + "AU12SSc315uqziFmad3s9ky2aKaHrNb5vz5ePQbUMYyzKBnE4bhge": [ + { + "amount": "174.804277687", + "slot": { + "period": 165503, + "thread": 14 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 206042, + "thread": 23 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 472973, + "thread": 1 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 513768, + "thread": 1 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 799932, + "thread": 3 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 945139, + "thread": 30 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1063231, + "thread": 0 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1169213, + "thread": 7 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1433412, + "thread": 12 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1578965, + "thread": 2 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1782327, + "thread": 6 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 1862787, + "thread": 27 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2128173, + "thread": 0 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2215228, + "thread": 8 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2300734, + "thread": 27 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2581246, + "thread": 17 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2647073, + "thread": 23 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 2877135, + "thread": 14 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 3109042, + "thread": 12 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 3232344, + "thread": 17 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 3442372, + "thread": 27 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 3585445, + "thread": 4 + } + }, + { + "amount": "174.804277687", + "slot": { + "period": 3656747, + "thread": 7 + } + }, + { + "amount": "174.804277676", + "slot": { + "period": 3831556, + "thread": 16 + } + } + ], + "AU12SUC1A6xw2FV9HJUuy8uWnsd68zzzyZyQdG7TXJ5rFunCSFbUw": [ + { + "amount": "155.450753660", + "slot": { + "period": 114495, + "thread": 7 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 175042, + "thread": 1 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 426253, + "thread": 23 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 514055, + "thread": 14 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 683756, + "thread": 9 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 975064, + "thread": 8 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1119745, + "thread": 16 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1231346, + "thread": 17 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1474397, + "thread": 0 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1632978, + "thread": 14 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1683967, + "thread": 27 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 1863027, + "thread": 13 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2054212, + "thread": 31 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2245942, + "thread": 1 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2304964, + "thread": 1 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2535564, + "thread": 3 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2744418, + "thread": 22 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2802155, + "thread": 13 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 2956176, + "thread": 14 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 3281835, + "thread": 18 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 3319627, + "thread": 26 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 3474074, + "thread": 16 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 3752794, + "thread": 27 + } + }, + { + "amount": "155.450753660", + "slot": { + "period": 3939066, + "thread": 11 + } + } + ], + "AU12SUDFjAtE3ZSdKSBQQtneuuNAKsT8cxnJ93sSpqQdu6C76NnTY": [ + { + "amount": "138.000650454", + "slot": { + "period": 37646, + "thread": 29 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 183857, + "thread": 21 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 333147, + "thread": 25 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 576333, + "thread": 28 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 681857, + "thread": 31 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 914511, + "thread": 13 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1051729, + "thread": 6 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1260347, + "thread": 3 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1329159, + "thread": 21 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1588037, + "thread": 15 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1656290, + "thread": 16 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 1946956, + "thread": 30 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2116463, + "thread": 1 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2149830, + "thread": 17 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2318321, + "thread": 15 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2588047, + "thread": 9 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2685735, + "thread": 24 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 2914060, + "thread": 29 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 3011327, + "thread": 9 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 3240598, + "thread": 10 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 3441282, + "thread": 23 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 3605326, + "thread": 26 + } + }, + { + "amount": "138.000650454", + "slot": { + "period": 3754564, + "thread": 16 + } + }, + { + "amount": "138.000650461", + "slot": { + "period": 3825284, + "thread": 23 + } + } + ], + "AU12SUVstKDMi8QK14UHC3NoAGTXewscDcmWQsRcHv7HGSMzk2e2s": [ + { + "amount": "185.966320265", + "slot": { + "period": 82572, + "thread": 4 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 209754, + "thread": 11 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 471013, + "thread": 0 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 542347, + "thread": 23 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 687606, + "thread": 18 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 914578, + "thread": 22 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1136114, + "thread": 24 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1199755, + "thread": 14 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1402507, + "thread": 21 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1480621, + "thread": 2 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1675876, + "thread": 7 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1927625, + "thread": 31 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 1992545, + "thread": 11 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2188770, + "thread": 29 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2446123, + "thread": 26 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2573156, + "thread": 9 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2696246, + "thread": 3 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2930248, + "thread": 8 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 2982127, + "thread": 3 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 3251238, + "thread": 8 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 3338585, + "thread": 9 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 3569597, + "thread": 4 + } + }, + { + "amount": "185.966320265", + "slot": { + "period": 3697665, + "thread": 6 + } + }, + { + "amount": "185.966320272", + "slot": { + "period": 3925604, + "thread": 7 + } + } + ], + "AU12SVhVhaQXrfetWGkJSiAe2CN3X9mRdBmpWnh7k69DfRPMpCDHe": [ + { + "amount": "114.495768469", + "slot": { + "period": 101651, + "thread": 9 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 291191, + "thread": 7 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 372344, + "thread": 0 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 613825, + "thread": 0 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 797697, + "thread": 14 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 963740, + "thread": 2 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1093504, + "thread": 1 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1238468, + "thread": 0 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1463069, + "thread": 5 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1613531, + "thread": 5 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1789321, + "thread": 4 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 1959989, + "thread": 7 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2028016, + "thread": 23 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2209604, + "thread": 14 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2428387, + "thread": 10 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2539308, + "thread": 3 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2670781, + "thread": 21 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 2929995, + "thread": 15 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 3020086, + "thread": 23 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 3202322, + "thread": 17 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 3354388, + "thread": 16 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 3584123, + "thread": 24 + } + }, + { + "amount": "114.495768469", + "slot": { + "period": 3779723, + "thread": 8 + } + }, + { + "amount": "114.495768462", + "slot": { + "period": 3946347, + "thread": 0 + } + } + ], + "AU12SVoM8NwRCPzMwS89p9U78euVJP1a73h3BrVVLL4Qz7vbBHhGW": [ + { + "amount": "120.467471409", + "slot": { + "period": 50886, + "thread": 12 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 321673, + "thread": 12 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 394023, + "thread": 5 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 620213, + "thread": 15 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 750086, + "thread": 0 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 873752, + "thread": 6 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1142230, + "thread": 2 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1173649, + "thread": 13 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1407705, + "thread": 16 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1633977, + "thread": 2 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1782707, + "thread": 12 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1941303, + "thread": 17 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 1989313, + "thread": 30 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2256250, + "thread": 20 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2316120, + "thread": 21 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2495215, + "thread": 30 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2760606, + "thread": 10 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2854566, + "thread": 29 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 2995478, + "thread": 8 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 3216466, + "thread": 25 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 3421718, + "thread": 28 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 3541517, + "thread": 20 + } + }, + { + "amount": "120.467471409", + "slot": { + "period": 3759902, + "thread": 1 + } + }, + { + "amount": "120.467471406", + "slot": { + "period": 3855502, + "thread": 8 + } + } + ], + "AU12SY4V2jYJTgibjjoWvkLkqU6pcmUwar5CJExGXEHRHyUQcH4jP": [ + { + "amount": "84.577379633", + "slot": { + "period": 18376, + "thread": 15 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 318673, + "thread": 2 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 333463, + "thread": 29 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 577006, + "thread": 8 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 735688, + "thread": 29 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 869730, + "thread": 12 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1100601, + "thread": 29 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1296587, + "thread": 27 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1348972, + "thread": 5 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1524888, + "thread": 3 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1750999, + "thread": 3 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 1823239, + "thread": 28 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2129857, + "thread": 11 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2217608, + "thread": 26 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2327885, + "thread": 17 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2487900, + "thread": 6 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2683156, + "thread": 30 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2919377, + "thread": 29 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 2959141, + "thread": 22 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 3151662, + "thread": 22 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 3418489, + "thread": 16 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 3601853, + "thread": 6 + } + }, + { + "amount": "84.577379633", + "slot": { + "period": 3681480, + "thread": 29 + } + }, + { + "amount": "84.577379625", + "slot": { + "period": 3922492, + "thread": 15 + } + } + ], + "AU12SaEogqbwiQXig6FjnTKq5CoJF7rZkAEqmJDAfcdr4o67kNrmn": [ + { + "amount": "451.488635762", + "slot": { + "period": 49242, + "thread": 4 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 256907, + "thread": 24 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 355286, + "thread": 4 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 625479, + "thread": 16 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 712697, + "thread": 28 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 937017, + "thread": 10 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1001461, + "thread": 22 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1295455, + "thread": 18 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1329515, + "thread": 22 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1543650, + "thread": 11 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1768320, + "thread": 26 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 1944109, + "thread": 19 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2053329, + "thread": 8 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2245857, + "thread": 0 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2333893, + "thread": 7 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2560155, + "thread": 4 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2789687, + "thread": 25 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 2806209, + "thread": 7 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 3086552, + "thread": 21 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 3132184, + "thread": 15 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 3387374, + "thread": 5 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 3543842, + "thread": 3 + } + }, + { + "amount": "451.488635762", + "slot": { + "period": 3715685, + "thread": 7 + } + }, + { + "amount": "451.488635767", + "slot": { + "period": 3856515, + "thread": 29 + } + } + ], + "AU12SamjNDhTsAMi79reKhsWKCP6aLNGFrbnwjeCbwgVuicGHA9Zg": [ + { + "amount": "116.066328866", + "slot": { + "period": 133391, + "thread": 10 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 305646, + "thread": 27 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 422749, + "thread": 23 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 640040, + "thread": 21 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 798217, + "thread": 6 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 850368, + "thread": 3 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1010699, + "thread": 18 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1182784, + "thread": 9 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1453667, + "thread": 12 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1553448, + "thread": 5 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1773838, + "thread": 10 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 1904229, + "thread": 11 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2064317, + "thread": 20 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2168267, + "thread": 25 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2297701, + "thread": 6 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2603425, + "thread": 12 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2702376, + "thread": 22 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2805135, + "thread": 14 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 2995214, + "thread": 4 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 3223160, + "thread": 19 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 3295414, + "thread": 6 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 3502886, + "thread": 4 + } + }, + { + "amount": "116.066328866", + "slot": { + "period": 3751024, + "thread": 9 + } + }, + { + "amount": "116.066328855", + "slot": { + "period": 3871813, + "thread": 8 + } + } + ], + "AU12SasNRLPZuwowvPjwWaWTXx3xuwDXysRx7KFUwDJKRr9z1yShw": [ + { + "amount": "614.790341815", + "slot": { + "period": 91843, + "thread": 5 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 239401, + "thread": 16 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 389053, + "thread": 20 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 497613, + "thread": 12 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 679518, + "thread": 12 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 968421, + "thread": 20 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1069121, + "thread": 18 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1229866, + "thread": 19 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1327115, + "thread": 27 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1491125, + "thread": 28 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1661663, + "thread": 31 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 1959854, + "thread": 18 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2115119, + "thread": 22 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2213391, + "thread": 10 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2426307, + "thread": 13 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2617886, + "thread": 22 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2737927, + "thread": 17 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 2905756, + "thread": 20 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 3063776, + "thread": 17 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 3160946, + "thread": 10 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 3425225, + "thread": 8 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 3467676, + "thread": 13 + } + }, + { + "amount": "614.790341815", + "slot": { + "period": 3770822, + "thread": 5 + } + }, + { + "amount": "614.790341825", + "slot": { + "period": 3940987, + "thread": 20 + } + } + ], + "AU12SbK968B8q6Yy9SbfXmz1pLiDWKiVW6v5gB68ZfgckVs4qtNef": [ + { + "amount": "486.583529512", + "slot": { + "period": 162476, + "thread": 28 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 265997, + "thread": 3 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 444635, + "thread": 3 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 563939, + "thread": 12 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 715710, + "thread": 11 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 831551, + "thread": 28 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1114479, + "thread": 12 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1292610, + "thread": 12 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1363062, + "thread": 14 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1618386, + "thread": 2 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1759910, + "thread": 19 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 1936698, + "thread": 20 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2105737, + "thread": 7 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2248452, + "thread": 28 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2298695, + "thread": 18 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2494089, + "thread": 2 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2655340, + "thread": 4 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2944563, + "thread": 21 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 2968498, + "thread": 20 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 3168188, + "thread": 6 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 3361855, + "thread": 23 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 3532632, + "thread": 3 + } + }, + { + "amount": "486.583529512", + "slot": { + "period": 3776576, + "thread": 12 + } + }, + { + "amount": "486.583529523", + "slot": { + "period": 3844575, + "thread": 2 + } + } + ], + "AU12ScmEv4HkgJk86L1GUmH9A8mcVRs4KVGEfAv62uCq4V7f7Xeat": [ + { + "amount": "233.846946207", + "slot": { + "period": 19819, + "thread": 4 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 266111, + "thread": 30 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 387017, + "thread": 11 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 574197, + "thread": 13 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 731447, + "thread": 8 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 970402, + "thread": 31 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1081650, + "thread": 0 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1264822, + "thread": 23 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1389369, + "thread": 20 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1599199, + "thread": 16 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1719463, + "thread": 21 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 1913852, + "thread": 29 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2084099, + "thread": 2 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2271466, + "thread": 12 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2368346, + "thread": 22 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2483454, + "thread": 5 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2704325, + "thread": 7 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2799241, + "thread": 23 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 2985872, + "thread": 22 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 3247371, + "thread": 10 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 3309461, + "thread": 8 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 3612637, + "thread": 25 + } + }, + { + "amount": "233.846946207", + "slot": { + "period": 3717678, + "thread": 18 + } + }, + { + "amount": "233.846946218", + "slot": { + "period": 3915596, + "thread": 7 + } + } + ], + "AU12ScpyXxtWtb8gTDFLFSnbhbpxokWUfqEbJBhRhMM4uJG9RDBgi": [ + { + "amount": "171.556014728", + "slot": { + "period": 163504, + "thread": 19 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 170176, + "thread": 13 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 452120, + "thread": 21 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 600689, + "thread": 17 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 796087, + "thread": 12 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 973947, + "thread": 11 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 984240, + "thread": 30 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 1167951, + "thread": 3 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 1418381, + "thread": 28 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 1584553, + "thread": 17 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 1744879, + "thread": 24 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 1879534, + "thread": 14 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2005974, + "thread": 17 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2163529, + "thread": 16 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2433286, + "thread": 27 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2579600, + "thread": 8 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2629374, + "thread": 2 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 2794158, + "thread": 14 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 3056209, + "thread": 17 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 3166191, + "thread": 29 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 3426924, + "thread": 21 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 3471368, + "thread": 10 + } + }, + { + "amount": "171.556014728", + "slot": { + "period": 3748067, + "thread": 7 + } + }, + { + "amount": "171.556014733", + "slot": { + "period": 3804903, + "thread": 13 + } + } + ], + "AU12SdETk6WdohQGmF2bv76uJbdiw6pomVNKGQVC6v65G56agkH8J": [ + { + "amount": "139.052297402", + "slot": { + "period": 160853, + "thread": 25 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 312220, + "thread": 30 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 423232, + "thread": 15 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 510819, + "thread": 21 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 813656, + "thread": 29 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 942513, + "thread": 2 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1138481, + "thread": 2 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1304554, + "thread": 31 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1398884, + "thread": 3 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1637807, + "thread": 9 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1733832, + "thread": 18 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 1876909, + "thread": 23 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2006974, + "thread": 2 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2167788, + "thread": 10 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2426652, + "thread": 20 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2565850, + "thread": 21 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2740971, + "thread": 2 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 2905902, + "thread": 31 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 3115761, + "thread": 6 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 3169421, + "thread": 6 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 3377387, + "thread": 26 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 3506039, + "thread": 22 + } + }, + { + "amount": "139.052297402", + "slot": { + "period": 3732630, + "thread": 16 + } + }, + { + "amount": "139.052297390", + "slot": { + "period": 3821943, + "thread": 13 + } + } + ], + "AU12SdR92V2Vt8Mb79XqSRefq1i7uuzZSeDSoZfacVqMt8TSqG4ik": [ + { + "amount": "394.299096946", + "slot": { + "period": 44980, + "thread": 21 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 272653, + "thread": 20 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 420752, + "thread": 27 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 578199, + "thread": 26 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 819615, + "thread": 31 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 822568, + "thread": 8 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1046728, + "thread": 9 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1182624, + "thread": 7 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1400350, + "thread": 31 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1582313, + "thread": 26 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1672304, + "thread": 22 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 1867775, + "thread": 1 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2033408, + "thread": 30 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2196973, + "thread": 14 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2459543, + "thread": 1 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2598610, + "thread": 12 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2776013, + "thread": 27 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2832897, + "thread": 31 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 2961585, + "thread": 30 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 3248752, + "thread": 0 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 3389761, + "thread": 5 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 3509359, + "thread": 21 + } + }, + { + "amount": "394.299096946", + "slot": { + "period": 3676985, + "thread": 25 + } + }, + { + "amount": "394.299096958", + "slot": { + "period": 3825117, + "thread": 12 + } + } + ], + "AU12SdUxC1nWCABuVfdsijhQMQtX2nTwSFG8MqNjqpsSQFcw5Cy3u": [ + { + "amount": "216.463680817", + "slot": { + "period": 111359, + "thread": 27 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 319459, + "thread": 2 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 363297, + "thread": 7 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 523894, + "thread": 21 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 723684, + "thread": 1 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 828905, + "thread": 0 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1032384, + "thread": 20 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1167628, + "thread": 15 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1348920, + "thread": 11 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1544544, + "thread": 18 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1767161, + "thread": 9 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 1889434, + "thread": 4 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2112683, + "thread": 30 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2150324, + "thread": 12 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2341328, + "thread": 29 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2603950, + "thread": 3 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2657892, + "thread": 4 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2867288, + "thread": 31 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 2993757, + "thread": 29 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 3228218, + "thread": 28 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 3412682, + "thread": 13 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 3453486, + "thread": 21 + } + }, + { + "amount": "216.463680817", + "slot": { + "period": 3668723, + "thread": 24 + } + }, + { + "amount": "216.463680822", + "slot": { + "period": 3855710, + "thread": 18 + } + } + ], + "AU12SdiSXQ2k3JZNdq8xALdvsjvgexhcwWuSX9suh6Mz4VUXzP9uY": [ + { + "amount": "75.282482574", + "slot": { + "period": 30056, + "thread": 26 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 299625, + "thread": 6 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 446502, + "thread": 27 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 581128, + "thread": 2 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 757565, + "thread": 14 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 972284, + "thread": 29 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1133618, + "thread": 29 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1287465, + "thread": 12 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1371940, + "thread": 21 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1488971, + "thread": 8 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1775077, + "thread": 30 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 1865002, + "thread": 26 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2037432, + "thread": 11 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2163918, + "thread": 3 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2380541, + "thread": 12 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2491152, + "thread": 3 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2789133, + "thread": 21 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2925038, + "thread": 3 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 2974831, + "thread": 21 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 3190736, + "thread": 27 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 3405290, + "thread": 8 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 3578547, + "thread": 30 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 3722154, + "thread": 26 + } + }, + { + "amount": "75.282482574", + "slot": { + "period": 3833117, + "thread": 17 + } + } + ], + "AU12SeQT7BoJ57SqfH4FHCyt2o6foSWuxkqpQv4hZQHurpGEu6vcw": [ + { + "amount": "560.647870435", + "slot": { + "period": 44485, + "thread": 27 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 218137, + "thread": 22 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 463536, + "thread": 7 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 553685, + "thread": 13 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 729568, + "thread": 26 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 949599, + "thread": 30 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1091858, + "thread": 6 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1191284, + "thread": 5 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1354774, + "thread": 8 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1530304, + "thread": 27 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1729704, + "thread": 12 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 1963204, + "thread": 17 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2120758, + "thread": 13 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2162169, + "thread": 5 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2455940, + "thread": 11 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2603545, + "thread": 18 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2683386, + "thread": 12 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2807930, + "thread": 2 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 2981471, + "thread": 16 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 3122052, + "thread": 16 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 3316721, + "thread": 21 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 3498328, + "thread": 0 + } + }, + { + "amount": "560.647870435", + "slot": { + "period": 3677552, + "thread": 20 + } + }, + { + "amount": "560.647870432", + "slot": { + "period": 3822261, + "thread": 4 + } + } + ], + "AU12Sf1Z1pLoJUCxaERA5hRmAMsS7GonjRUUyvZjMwqToNqDhpgsK": [ + { + "amount": "178.244371517", + "slot": { + "period": 14895, + "thread": 6 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 297309, + "thread": 12 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 339556, + "thread": 1 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 631717, + "thread": 17 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 787373, + "thread": 25 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 823676, + "thread": 24 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1034844, + "thread": 10 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1315944, + "thread": 17 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1462669, + "thread": 17 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1566094, + "thread": 12 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1674771, + "thread": 10 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 1909425, + "thread": 23 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2089781, + "thread": 13 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2146050, + "thread": 10 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2345123, + "thread": 9 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2464556, + "thread": 1 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2693981, + "thread": 9 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 2818641, + "thread": 16 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 3104872, + "thread": 25 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 3278511, + "thread": 4 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 3307520, + "thread": 24 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 3492390, + "thread": 11 + } + }, + { + "amount": "178.244371517", + "slot": { + "period": 3666024, + "thread": 7 + } + }, + { + "amount": "178.244371510", + "slot": { + "period": 3927575, + "thread": 27 + } + } + ], + "AU12SgfsG48HJmBVYxpQyQ97x4nrJK47TWGyF3g2UsgMVwrBd7Gzf": [ + { + "amount": "230.113657804", + "slot": { + "period": 67878, + "thread": 10 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 191773, + "thread": 23 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 464024, + "thread": 27 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 499604, + "thread": 20 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 673307, + "thread": 8 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 931144, + "thread": 23 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1045867, + "thread": 18 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1209400, + "thread": 18 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1327983, + "thread": 27 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1592927, + "thread": 6 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1802466, + "thread": 31 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 1821698, + "thread": 31 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2138125, + "thread": 27 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2156490, + "thread": 8 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2370431, + "thread": 1 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2542058, + "thread": 14 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2639840, + "thread": 3 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 2849305, + "thread": 1 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 3062098, + "thread": 30 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 3278224, + "thread": 14 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 3346273, + "thread": 31 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 3482723, + "thread": 3 + } + }, + { + "amount": "230.113657804", + "slot": { + "period": 3630784, + "thread": 17 + } + }, + { + "amount": "230.113657797", + "slot": { + "period": 3808934, + "thread": 5 + } + } + ], + "AU12ShRhgGgdsETwXgNStumtBPW8Dv7Dx3uZZNnA3Qu7HbVqjfKN2": [ + { + "amount": "128.187631849", + "slot": { + "period": 107242, + "thread": 5 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 230604, + "thread": 7 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 446243, + "thread": 14 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 521843, + "thread": 31 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 679478, + "thread": 8 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 966478, + "thread": 6 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1015692, + "thread": 17 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1257199, + "thread": 15 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1423754, + "thread": 5 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1525523, + "thread": 27 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1675755, + "thread": 0 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1835883, + "thread": 24 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 1979895, + "thread": 21 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 2196523, + "thread": 27 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 2440078, + "thread": 20 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 2594020, + "thread": 12 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 2718910, + "thread": 1 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 2903711, + "thread": 28 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 3059132, + "thread": 18 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 3184338, + "thread": 8 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 3354048, + "thread": 29 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 3504316, + "thread": 12 + } + }, + { + "amount": "128.187631849", + "slot": { + "period": 3654169, + "thread": 17 + } + }, + { + "amount": "128.187631840", + "slot": { + "period": 3812386, + "thread": 31 + } + } + ], + "AU12ShUuzTwoW7XXtkzJScNPvNZAgwGuCBMVuwzkq6VrJuQqyaWXx": [ + { + "amount": "99.392525103", + "slot": { + "period": 19841, + "thread": 29 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 192887, + "thread": 9 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 458655, + "thread": 20 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 583876, + "thread": 2 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 778731, + "thread": 20 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 824303, + "thread": 27 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1066659, + "thread": 4 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1250324, + "thread": 27 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1374362, + "thread": 0 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1629142, + "thread": 8 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1667346, + "thread": 17 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 1823244, + "thread": 8 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2022053, + "thread": 10 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2268108, + "thread": 10 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2360946, + "thread": 1 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2597086, + "thread": 5 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2639591, + "thread": 30 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2950446, + "thread": 0 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 2982620, + "thread": 7 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 3269642, + "thread": 22 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 3442340, + "thread": 9 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 3546506, + "thread": 30 + } + }, + { + "amount": "99.392525103", + "slot": { + "period": 3760747, + "thread": 0 + } + }, + { + "amount": "99.392525098", + "slot": { + "period": 3784595, + "thread": 19 + } + } + ], + "AU12ShXgDARArFaCiu8hK83bog438jRbUTdBwLqTt2aF2dnpAhDhH": [ + { + "amount": "126.252538424", + "slot": { + "period": 156222, + "thread": 16 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 292394, + "thread": 7 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 392152, + "thread": 25 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 552456, + "thread": 2 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 719768, + "thread": 23 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 879752, + "thread": 23 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1102857, + "thread": 16 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1270412, + "thread": 28 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1392637, + "thread": 20 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1495283, + "thread": 21 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1702296, + "thread": 6 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 1956871, + "thread": 6 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2068501, + "thread": 30 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2174888, + "thread": 24 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2374006, + "thread": 11 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2573752, + "thread": 14 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2777274, + "thread": 28 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2867158, + "thread": 13 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 2966700, + "thread": 13 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 3249550, + "thread": 4 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 3314441, + "thread": 19 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 3558999, + "thread": 13 + } + }, + { + "amount": "126.252538424", + "slot": { + "period": 3653889, + "thread": 17 + } + }, + { + "amount": "126.252538425", + "slot": { + "period": 3947192, + "thread": 29 + } + } + ], + "AU12Si6JXJg2qHSaAwbuZQezWwQ2ezonwfxu4Vsfi21Mv9u4onAHt": [ + { + "amount": "380.508815824", + "slot": { + "period": 149121, + "thread": 11 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 284996, + "thread": 16 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 346062, + "thread": 12 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 640587, + "thread": 6 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 741549, + "thread": 13 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 954293, + "thread": 15 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1028323, + "thread": 12 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1292549, + "thread": 8 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1318281, + "thread": 30 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1499986, + "thread": 18 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1650985, + "thread": 5 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 1917805, + "thread": 14 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2067207, + "thread": 31 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2208465, + "thread": 25 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2456253, + "thread": 24 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2610611, + "thread": 8 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2769982, + "thread": 17 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 2899814, + "thread": 27 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 3040156, + "thread": 18 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 3183472, + "thread": 28 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 3447578, + "thread": 6 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 3524583, + "thread": 9 + } + }, + { + "amount": "380.508815824", + "slot": { + "period": 3764297, + "thread": 20 + } + }, + { + "amount": "380.508815836", + "slot": { + "period": 3826204, + "thread": 31 + } + } + ], + "AU12SiCzBQrDgci1SuteUSL89GR9y2Vr2asYKtjo4juuwt2v43ew7": [ + { + "amount": "324.482481254", + "slot": { + "period": 51316, + "thread": 26 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 226155, + "thread": 25 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 443656, + "thread": 12 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 651066, + "thread": 25 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 709955, + "thread": 10 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 906728, + "thread": 10 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1009819, + "thread": 28 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1162519, + "thread": 29 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1463534, + "thread": 20 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1592772, + "thread": 2 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1780344, + "thread": 26 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 1907596, + "thread": 18 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2028704, + "thread": 3 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2283153, + "thread": 22 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2436781, + "thread": 14 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2538110, + "thread": 16 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2777349, + "thread": 18 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 2824737, + "thread": 27 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 3054403, + "thread": 7 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 3181587, + "thread": 24 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 3293204, + "thread": 14 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 3540036, + "thread": 9 + } + }, + { + "amount": "324.482481254", + "slot": { + "period": 3656609, + "thread": 28 + } + }, + { + "amount": "324.482481248", + "slot": { + "period": 3786470, + "thread": 27 + } + } + ], + "AU12SjAoP2gtsNhmpbs9Jp34GU7gH3q3YE3sm34FK1ZejsAiXFFo4": [ + { + "amount": "129.704946221", + "slot": { + "period": 30069, + "thread": 1 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 289232, + "thread": 17 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 359786, + "thread": 6 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 640630, + "thread": 12 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 748088, + "thread": 2 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 898445, + "thread": 17 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1014306, + "thread": 29 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1235739, + "thread": 27 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1396581, + "thread": 30 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1527578, + "thread": 31 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1660838, + "thread": 19 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 1889958, + "thread": 29 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2093588, + "thread": 24 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2251310, + "thread": 8 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2348507, + "thread": 8 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2608269, + "thread": 8 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2639168, + "thread": 9 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2854579, + "thread": 14 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 2980438, + "thread": 7 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 3249630, + "thread": 7 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 3369589, + "thread": 12 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 3548410, + "thread": 8 + } + }, + { + "amount": "129.704946221", + "slot": { + "period": 3744295, + "thread": 0 + } + }, + { + "amount": "129.704946229", + "slot": { + "period": 3788766, + "thread": 5 + } + } + ], + "AU12Sjoz9kHGf2DRQPXpqcxv9mavRBPAS6zcNjFsUtMzpPnkGghDT": [ + { + "amount": "145.104374126", + "slot": { + "period": 97032, + "thread": 10 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 224262, + "thread": 18 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 422427, + "thread": 31 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 587287, + "thread": 0 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 752676, + "thread": 11 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 910556, + "thread": 18 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1074926, + "thread": 19 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1242072, + "thread": 27 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1331705, + "thread": 11 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1510427, + "thread": 24 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1682419, + "thread": 4 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 1828719, + "thread": 20 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2083763, + "thread": 25 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2169692, + "thread": 8 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2434119, + "thread": 4 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2485241, + "thread": 19 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2689977, + "thread": 29 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2830572, + "thread": 22 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 2961636, + "thread": 29 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 3209140, + "thread": 7 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 3434795, + "thread": 27 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 3543807, + "thread": 22 + } + }, + { + "amount": "145.104374126", + "slot": { + "period": 3641481, + "thread": 0 + } + }, + { + "amount": "145.104374120", + "slot": { + "period": 3882391, + "thread": 0 + } + } + ], + "AU12SkMMPzVDZpasis7WEUdXEgVKPkVUmSw9aQvjSBouer7hWK9GX": [ + { + "amount": "1092.108224930", + "slot": { + "period": 66229, + "thread": 22 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 175339, + "thread": 31 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 487414, + "thread": 3 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 508663, + "thread": 10 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 773274, + "thread": 4 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 915349, + "thread": 31 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1004917, + "thread": 1 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1240873, + "thread": 15 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1379437, + "thread": 14 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1563825, + "thread": 1 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1760641, + "thread": 11 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 1875731, + "thread": 24 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2045640, + "thread": 30 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2225724, + "thread": 6 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2420796, + "thread": 30 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2588855, + "thread": 27 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2761832, + "thread": 25 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 2944429, + "thread": 23 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 3008142, + "thread": 9 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 3122183, + "thread": 16 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 3306388, + "thread": 13 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 3537397, + "thread": 11 + } + }, + { + "amount": "1092.108224930", + "slot": { + "period": 3754916, + "thread": 28 + } + }, + { + "amount": "1092.108224924", + "slot": { + "period": 3887758, + "thread": 12 + } + } + ], + "AU12SkaX5nvKpUAGF7Vx3s66nT5PMnUw2kXXqreFbAR6iJnVxCijN": [ + { + "amount": "184.317748541", + "slot": { + "period": 135462, + "thread": 18 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 183381, + "thread": 26 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 376218, + "thread": 17 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 615252, + "thread": 23 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 819299, + "thread": 15 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 902689, + "thread": 11 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1020328, + "thread": 24 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1206930, + "thread": 5 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1468283, + "thread": 21 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1531645, + "thread": 8 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1738710, + "thread": 0 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 1903024, + "thread": 22 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2045857, + "thread": 10 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2258964, + "thread": 27 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2315064, + "thread": 17 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2565546, + "thread": 1 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2630592, + "thread": 27 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2888093, + "thread": 31 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 2992792, + "thread": 5 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 3175544, + "thread": 21 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 3343614, + "thread": 8 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 3470349, + "thread": 22 + } + }, + { + "amount": "184.317748541", + "slot": { + "period": 3668832, + "thread": 2 + } + }, + { + "amount": "184.317748552", + "slot": { + "period": 3882106, + "thread": 25 + } + } + ], + "AU12SmrWh5zcFzYNKvr62KmNHNWrXd18HKsyKF7GUZavWqTeZhY9x": [ + { + "amount": "111.811209453", + "slot": { + "period": 118722, + "thread": 25 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 299885, + "thread": 25 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 391774, + "thread": 28 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 607047, + "thread": 7 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 692077, + "thread": 14 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 896583, + "thread": 24 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1100160, + "thread": 1 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1284241, + "thread": 19 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1420122, + "thread": 24 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1633019, + "thread": 29 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1683335, + "thread": 29 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 1938153, + "thread": 0 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2015992, + "thread": 4 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2205060, + "thread": 16 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2458914, + "thread": 18 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2535469, + "thread": 31 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2754559, + "thread": 21 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 2935363, + "thread": 14 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 3077669, + "thread": 30 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 3248821, + "thread": 19 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 3423224, + "thread": 25 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 3538278, + "thread": 14 + } + }, + { + "amount": "111.811209453", + "slot": { + "period": 3681980, + "thread": 23 + } + }, + { + "amount": "111.811209444", + "slot": { + "period": 3927133, + "thread": 30 + } + } + ], + "AU12SmreqyvMAv9YtRP1Z279DbwAqzsMdQK5PjG6EzuDNy6Kjef3m": [ + { + "amount": "62.711580447", + "slot": { + "period": 27359, + "thread": 10 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 233628, + "thread": 0 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 373157, + "thread": 17 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 589904, + "thread": 0 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 815018, + "thread": 11 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 841672, + "thread": 17 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1037888, + "thread": 19 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1262726, + "thread": 11 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1443261, + "thread": 24 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1640327, + "thread": 31 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1652920, + "thread": 9 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 1889027, + "thread": 7 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2014386, + "thread": 1 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2249487, + "thread": 24 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2453664, + "thread": 16 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2472870, + "thread": 29 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2626891, + "thread": 9 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 2903708, + "thread": 2 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 3030749, + "thread": 16 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 3249682, + "thread": 15 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 3388453, + "thread": 7 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 3569925, + "thread": 19 + } + }, + { + "amount": "62.711580447", + "slot": { + "period": 3687665, + "thread": 31 + } + }, + { + "amount": "62.711580452", + "slot": { + "period": 3922710, + "thread": 15 + } + } + ], + "AU12Sn1HqrPVxkDN2aLUzcM8KxwvLMpFWA61i6upQR88ZwKYDdxfX": [ + { + "amount": "210.014627479", + "slot": { + "period": 57596, + "thread": 23 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 282564, + "thread": 18 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 414652, + "thread": 21 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 568468, + "thread": 16 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 742747, + "thread": 31 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 917690, + "thread": 20 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1138359, + "thread": 29 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1174674, + "thread": 5 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1381541, + "thread": 16 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1515338, + "thread": 30 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1778904, + "thread": 11 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 1854060, + "thread": 31 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2001171, + "thread": 16 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2277389, + "thread": 9 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2322555, + "thread": 7 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2604655, + "thread": 30 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2710475, + "thread": 21 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 2803846, + "thread": 9 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 3022745, + "thread": 28 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 3189560, + "thread": 16 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 3298978, + "thread": 9 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 3537416, + "thread": 30 + } + }, + { + "amount": "210.014627479", + "slot": { + "period": 3639430, + "thread": 4 + } + }, + { + "amount": "210.014627474", + "slot": { + "period": 3810663, + "thread": 5 + } + } + ], + "AU12SnHcp3LdhAzxdNSXDsCoULj9FMb6qbDU4GwAo9SaqAR794cFE": [ + { + "amount": "97.284159906", + "slot": { + "period": 22312, + "thread": 16 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 220831, + "thread": 2 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 435375, + "thread": 14 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 600542, + "thread": 31 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 815435, + "thread": 3 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 838109, + "thread": 13 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1140300, + "thread": 29 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1171797, + "thread": 2 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1371756, + "thread": 25 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1492428, + "thread": 16 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1664877, + "thread": 7 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 1845550, + "thread": 23 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2116931, + "thread": 16 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2197406, + "thread": 5 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2423554, + "thread": 31 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2578609, + "thread": 8 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2659183, + "thread": 18 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 2910332, + "thread": 19 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 3006011, + "thread": 7 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 3138213, + "thread": 14 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 3388394, + "thread": 9 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 3613455, + "thread": 12 + } + }, + { + "amount": "97.284159906", + "slot": { + "period": 3636986, + "thread": 9 + } + }, + { + "amount": "97.284159894", + "slot": { + "period": 3860433, + "thread": 6 + } + } + ], + "AU12SncAG9zg66W6gLMT2ByJRN1Y7XFyRojz5rCHJmHvHWMLtXi89": [ + { + "amount": "164.033702163", + "slot": { + "period": 73644, + "thread": 26 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 169601, + "thread": 15 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 378600, + "thread": 20 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 534826, + "thread": 17 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 723594, + "thread": 2 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 876726, + "thread": 17 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1099552, + "thread": 3 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1255339, + "thread": 20 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1339893, + "thread": 18 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1582807, + "thread": 3 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1658943, + "thread": 15 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 1837864, + "thread": 5 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2037821, + "thread": 14 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2242915, + "thread": 29 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2373685, + "thread": 8 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2470767, + "thread": 18 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2639026, + "thread": 10 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2808803, + "thread": 9 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 2988865, + "thread": 6 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 3167357, + "thread": 11 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 3351136, + "thread": 21 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 3483693, + "thread": 31 + } + }, + { + "amount": "164.033702163", + "slot": { + "period": 3656579, + "thread": 8 + } + }, + { + "amount": "164.033702165", + "slot": { + "period": 3847734, + "thread": 8 + } + } + ], + "AU12SnpDqTwkrcTAinrGqoKKaittm7vpEMJ4RBmoyarWd3JDk3k8Y": [ + { + "amount": "94.451687512", + "slot": { + "period": 110113, + "thread": 14 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 289739, + "thread": 10 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 417171, + "thread": 11 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 522201, + "thread": 0 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 712147, + "thread": 1 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 881858, + "thread": 27 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1135186, + "thread": 9 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1238190, + "thread": 15 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1351698, + "thread": 22 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1565492, + "thread": 4 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1710197, + "thread": 21 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 1855553, + "thread": 27 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2130360, + "thread": 31 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2166440, + "thread": 29 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2320666, + "thread": 14 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2579225, + "thread": 17 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2707247, + "thread": 30 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 2886049, + "thread": 10 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 3088919, + "thread": 12 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 3170910, + "thread": 26 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 3416630, + "thread": 22 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 3476755, + "thread": 2 + } + }, + { + "amount": "94.451687512", + "slot": { + "period": 3727386, + "thread": 18 + } + }, + { + "amount": "94.451687523", + "slot": { + "period": 3884752, + "thread": 9 + } + } + ], + "AU12SoHBDDQJ4wEt58ayfpFDSbMc114UbUdVSJG3g8gyoKLou7TuP": [ + { + "amount": "125.603690208", + "slot": { + "period": 90425, + "thread": 6 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 206530, + "thread": 0 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 437098, + "thread": 2 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 571856, + "thread": 20 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 730098, + "thread": 21 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 932215, + "thread": 11 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1060446, + "thread": 4 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1287382, + "thread": 21 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1413014, + "thread": 23 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1626394, + "thread": 10 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1703312, + "thread": 16 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1822804, + "thread": 30 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 1997250, + "thread": 13 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 2255259, + "thread": 17 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 2397268, + "thread": 1 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 2474858, + "thread": 16 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 2735928, + "thread": 31 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 2849516, + "thread": 23 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 3029685, + "thread": 4 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 3245558, + "thread": 28 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 3364304, + "thread": 20 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 3481901, + "thread": 6 + } + }, + { + "amount": "125.603690208", + "slot": { + "period": 3633920, + "thread": 14 + } + }, + { + "amount": "125.603690214", + "slot": { + "period": 3938790, + "thread": 15 + } + } + ], + "AU12SoQGiD5SFoZpRmE7DaryyGehFrjE2yV7AgFDFd7YGtBJ56dVx": [ + { + "amount": "207.100063683", + "slot": { + "period": 34890, + "thread": 16 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 253016, + "thread": 29 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 488619, + "thread": 16 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 548730, + "thread": 29 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 802884, + "thread": 3 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 839350, + "thread": 28 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1068635, + "thread": 3 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1210100, + "thread": 0 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1451001, + "thread": 6 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1481198, + "thread": 26 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1775783, + "thread": 13 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1902033, + "thread": 8 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 1980255, + "thread": 23 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 2174743, + "thread": 17 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 2404050, + "thread": 26 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 2618755, + "thread": 9 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 2641142, + "thread": 5 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 2844083, + "thread": 5 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 3052424, + "thread": 5 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 3129998, + "thread": 27 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 3346900, + "thread": 0 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 3596720, + "thread": 8 + } + }, + { + "amount": "207.100063683", + "slot": { + "period": 3740827, + "thread": 26 + } + }, + { + "amount": "207.100063678", + "slot": { + "period": 3864359, + "thread": 11 + } + } + ], + "AU12Sp1bCWZUZ6nkFFZX47kW5f1SMQjPCxuSL6tL8mZ4qiPDmxBJU": [ + { + "amount": "96.311841644", + "slot": { + "period": 101216, + "thread": 24 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 287045, + "thread": 13 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 407740, + "thread": 26 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 533962, + "thread": 13 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 686624, + "thread": 2 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 948924, + "thread": 24 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1136128, + "thread": 25 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1294795, + "thread": 27 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1326463, + "thread": 4 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1538642, + "thread": 20 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1705300, + "thread": 9 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 1975698, + "thread": 26 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2123731, + "thread": 27 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2166880, + "thread": 11 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2319451, + "thread": 26 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2575115, + "thread": 27 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2778385, + "thread": 29 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 2821962, + "thread": 11 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 3109954, + "thread": 27 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 3153351, + "thread": 15 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 3356162, + "thread": 26 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 3564593, + "thread": 3 + } + }, + { + "amount": "96.311841644", + "slot": { + "period": 3646780, + "thread": 4 + } + }, + { + "amount": "96.311841639", + "slot": { + "period": 3907006, + "thread": 19 + } + } + ], + "AU12SpmJ4jqMtBzHrcrRS6nd2iBaNDWnpWnKuCa7WNc19HK9oasn5": [ + { + "amount": "132.070996602", + "slot": { + "period": 100015, + "thread": 25 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 295074, + "thread": 17 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 408381, + "thread": 9 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 536151, + "thread": 20 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 719003, + "thread": 16 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 890065, + "thread": 13 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1054249, + "thread": 7 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1171708, + "thread": 3 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1422908, + "thread": 21 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1491518, + "thread": 8 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1803689, + "thread": 5 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 1855463, + "thread": 31 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2023568, + "thread": 0 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2238915, + "thread": 5 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2331588, + "thread": 28 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2526815, + "thread": 29 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2626989, + "thread": 27 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 2820006, + "thread": 21 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 3089160, + "thread": 31 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 3230630, + "thread": 28 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 3435732, + "thread": 9 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 3589461, + "thread": 12 + } + }, + { + "amount": "132.070996602", + "slot": { + "period": 3744643, + "thread": 24 + } + }, + { + "amount": "132.070996608", + "slot": { + "period": 3935428, + "thread": 12 + } + } + ], + "AU12SqgLxr1DH5hfh6LE7vW7B44fAh7efzfkydYvuptdBKd8aCv7v": [ + { + "amount": "250.465487255", + "slot": { + "period": 23858, + "thread": 30 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 320234, + "thread": 16 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 392277, + "thread": 25 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 635572, + "thread": 13 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 690134, + "thread": 6 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 941311, + "thread": 25 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1071768, + "thread": 18 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1222634, + "thread": 31 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1321715, + "thread": 15 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1512982, + "thread": 30 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1713175, + "thread": 30 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 1860515, + "thread": 23 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2050205, + "thread": 14 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2283523, + "thread": 15 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2382405, + "thread": 29 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2567639, + "thread": 5 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2680777, + "thread": 8 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2840803, + "thread": 18 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 2989121, + "thread": 13 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 3161480, + "thread": 21 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 3412328, + "thread": 18 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 3571302, + "thread": 13 + } + }, + { + "amount": "250.465487255", + "slot": { + "period": 3688234, + "thread": 15 + } + }, + { + "amount": "250.465487258", + "slot": { + "period": 3816288, + "thread": 11 + } + } + ], + "AU12SrWQnHFcVg6bajAQy8wjNS1NPXLSDFCj9LCK21Fs96Jawao77": [ + { + "amount": "408.073759734", + "slot": { + "period": 57538, + "thread": 27 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 207327, + "thread": 6 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 420973, + "thread": 1 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 622209, + "thread": 8 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 708204, + "thread": 10 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 911633, + "thread": 3 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1068934, + "thread": 31 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1238008, + "thread": 31 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1474331, + "thread": 28 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1614176, + "thread": 28 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1666499, + "thread": 9 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 1897183, + "thread": 15 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2134196, + "thread": 30 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2173769, + "thread": 22 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2443380, + "thread": 15 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2613755, + "thread": 12 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2785076, + "thread": 26 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 2908038, + "thread": 12 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 3111595, + "thread": 7 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 3213134, + "thread": 22 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 3398615, + "thread": 30 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 3586130, + "thread": 7 + } + }, + { + "amount": "408.073759734", + "slot": { + "period": 3759505, + "thread": 5 + } + }, + { + "amount": "408.073759742", + "slot": { + "period": 3834804, + "thread": 17 + } + } + ], + "AU12Srzs8XUxquNnxZ1s3FyuGsaySXDEAP5PoveLHWVubq35WXraq": [ + { + "amount": "232.782219320", + "slot": { + "period": 71544, + "thread": 24 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 187228, + "thread": 0 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 458125, + "thread": 28 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 629543, + "thread": 13 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 802630, + "thread": 21 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 879793, + "thread": 13 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1065243, + "thread": 24 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1166671, + "thread": 30 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1421837, + "thread": 18 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1574306, + "thread": 8 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1778374, + "thread": 13 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1904387, + "thread": 23 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 1991878, + "thread": 12 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 2176586, + "thread": 22 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 2403103, + "thread": 26 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 2620531, + "thread": 31 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 2694468, + "thread": 25 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 2921060, + "thread": 19 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 3006425, + "thread": 30 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 3207324, + "thread": 11 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 3352311, + "thread": 9 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 3598887, + "thread": 7 + } + }, + { + "amount": "232.782219320", + "slot": { + "period": 3693062, + "thread": 4 + } + }, + { + "amount": "232.782219314", + "slot": { + "period": 3821927, + "thread": 26 + } + } + ], + "AU12Ssaqt6Qzghettqd2nFDVFN4CLZFE2eA3cWnEg9nAnqJgWMHyw": [ + { + "amount": "328.405482595", + "slot": { + "period": 65320, + "thread": 17 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 186621, + "thread": 27 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 431441, + "thread": 24 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 550940, + "thread": 11 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 776541, + "thread": 14 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 891135, + "thread": 7 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1118143, + "thread": 8 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1188428, + "thread": 28 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1466154, + "thread": 26 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1559852, + "thread": 10 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1780893, + "thread": 20 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 1948921, + "thread": 0 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2108174, + "thread": 19 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2282952, + "thread": 10 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2422132, + "thread": 18 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2608713, + "thread": 14 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2701937, + "thread": 13 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 2878907, + "thread": 5 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 3118175, + "thread": 1 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 3191273, + "thread": 12 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 3298883, + "thread": 27 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 3452876, + "thread": 1 + } + }, + { + "amount": "328.405482595", + "slot": { + "period": 3625379, + "thread": 2 + } + }, + { + "amount": "328.405482600", + "slot": { + "period": 3785116, + "thread": 25 + } + } + ], + "AU12SsfSF92eucv9i9UzVVTrdrQftMf139vAYXLErz7rbx7qcLduc": [ + { + "amount": "545.858922036", + "slot": { + "period": 145808, + "thread": 10 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 193377, + "thread": 10 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 405265, + "thread": 7 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 527571, + "thread": 11 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 771643, + "thread": 23 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 905316, + "thread": 5 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1143187, + "thread": 18 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1255051, + "thread": 11 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1394295, + "thread": 13 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1621061, + "thread": 18 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1667803, + "thread": 12 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 1864456, + "thread": 17 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2037588, + "thread": 8 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2174067, + "thread": 19 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2458615, + "thread": 16 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2468077, + "thread": 30 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2759013, + "thread": 4 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2852662, + "thread": 30 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 2999880, + "thread": 4 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 3149415, + "thread": 19 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 3301567, + "thread": 0 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 3463467, + "thread": 29 + } + }, + { + "amount": "545.858922036", + "slot": { + "period": 3755129, + "thread": 9 + } + }, + { + "amount": "545.858922042", + "slot": { + "period": 3821034, + "thread": 19 + } + } + ], + "AU12StMMghriDqD8uLUZy4ygaKyYGbEs7KfCLZijAYHNP3Bq6Ni7f": [ + { + "amount": "143.594736919", + "slot": { + "period": 13424, + "thread": 10 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 284072, + "thread": 12 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 384322, + "thread": 6 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 588836, + "thread": 13 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 770487, + "thread": 18 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 947176, + "thread": 10 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1110883, + "thread": 5 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1243579, + "thread": 12 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1466860, + "thread": 6 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1540842, + "thread": 13 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1805286, + "thread": 23 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 1964625, + "thread": 24 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2060356, + "thread": 19 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2291401, + "thread": 4 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2346532, + "thread": 23 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2469354, + "thread": 16 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2645175, + "thread": 6 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 2850466, + "thread": 26 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 3047933, + "thread": 28 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 3259633, + "thread": 28 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 3421624, + "thread": 30 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 3563708, + "thread": 8 + } + }, + { + "amount": "143.594736919", + "slot": { + "period": 3713874, + "thread": 17 + } + }, + { + "amount": "143.594736915", + "slot": { + "period": 3807962, + "thread": 29 + } + } + ], + "AU12Stiw1RMKnRFC5NdwmN27bWi6maRBSWjngiCEg7MEPseHXEjQ8": [ + { + "amount": "89.821175741", + "slot": { + "period": 58267, + "thread": 15 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 300530, + "thread": 2 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 411923, + "thread": 1 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 613950, + "thread": 12 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 797566, + "thread": 4 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 925054, + "thread": 14 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1100338, + "thread": 0 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1269694, + "thread": 14 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1319514, + "thread": 29 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1500667, + "thread": 19 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1664401, + "thread": 1 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 1960100, + "thread": 15 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2137300, + "thread": 25 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2184419, + "thread": 4 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2392793, + "thread": 27 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2537443, + "thread": 6 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2777518, + "thread": 9 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2854886, + "thread": 31 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 2978876, + "thread": 11 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 3210798, + "thread": 25 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 3310691, + "thread": 6 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 3524449, + "thread": 11 + } + }, + { + "amount": "89.821175741", + "slot": { + "period": 3672380, + "thread": 15 + } + }, + { + "amount": "89.821175734", + "slot": { + "period": 3901279, + "thread": 13 + } + } + ], + "AU12StsVQ8miShgqmSWKqfzkkXdkhWXoJKJBR987Cgwv14kgrUej6": [ + { + "amount": "88.469565732", + "slot": { + "period": 37255, + "thread": 26 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 252021, + "thread": 12 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 326418, + "thread": 15 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 535499, + "thread": 17 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 792317, + "thread": 19 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 914193, + "thread": 1 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1098062, + "thread": 18 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1218539, + "thread": 0 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1373026, + "thread": 24 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1542409, + "thread": 12 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1744926, + "thread": 8 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 1877813, + "thread": 6 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2083160, + "thread": 17 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2158086, + "thread": 30 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2438012, + "thread": 14 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2516629, + "thread": 22 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2703269, + "thread": 7 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 2798699, + "thread": 24 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 3103432, + "thread": 20 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 3215509, + "thread": 21 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 3327317, + "thread": 31 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 3512599, + "thread": 25 + } + }, + { + "amount": "88.469565732", + "slot": { + "period": 3658919, + "thread": 30 + } + }, + { + "amount": "88.469565734", + "slot": { + "period": 3907563, + "thread": 8 + } + } + ], + "AU12SufhnpUcHkFJQHfSXZpGXHs8cKEQUzzQjn3UAFYT5P5VrhUK": [ + { + "amount": "199.686186321", + "slot": { + "period": 127118, + "thread": 25 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 283952, + "thread": 2 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 344301, + "thread": 20 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 589818, + "thread": 20 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 741198, + "thread": 5 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 925398, + "thread": 6 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1131353, + "thread": 14 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1217481, + "thread": 31 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1399091, + "thread": 19 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1625614, + "thread": 12 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1728185, + "thread": 29 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 1905637, + "thread": 6 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2051773, + "thread": 0 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2237677, + "thread": 25 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2423652, + "thread": 19 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2531218, + "thread": 13 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2672627, + "thread": 16 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 2878586, + "thread": 9 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 3090883, + "thread": 2 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 3163125, + "thread": 13 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 3321561, + "thread": 19 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 3567326, + "thread": 4 + } + }, + { + "amount": "199.686186321", + "slot": { + "period": 3770109, + "thread": 27 + } + }, + { + "amount": "199.686186314", + "slot": { + "period": 3812610, + "thread": 17 + } + } + ], + "AU12SvgoKEoce8iyF8RkGBx6tsQnTgLRicv79sa7eGTkn3j8eBggL": [ + { + "amount": "152.792976005", + "slot": { + "period": 63047, + "thread": 13 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 306565, + "thread": 12 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 479223, + "thread": 5 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 617314, + "thread": 16 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 804786, + "thread": 24 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 838738, + "thread": 29 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1065381, + "thread": 30 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1312554, + "thread": 10 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1445646, + "thread": 18 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1527035, + "thread": 17 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1730945, + "thread": 5 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 1968055, + "thread": 4 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2005914, + "thread": 3 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2202565, + "thread": 15 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2426110, + "thread": 5 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2491615, + "thread": 30 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2667698, + "thread": 22 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2870659, + "thread": 8 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 2997646, + "thread": 11 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 3229296, + "thread": 3 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 3422208, + "thread": 16 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 3526984, + "thread": 17 + } + }, + { + "amount": "152.792976005", + "slot": { + "period": 3706592, + "thread": 14 + } + }, + { + "amount": "152.792976011", + "slot": { + "period": 3895936, + "thread": 10 + } + } + ], + "AU12SwEzE42DuSP5G12BqRRtGeGB7ynEHtwNXL9wq4YytESXUjGiD": [ + { + "amount": "452.058362135", + "slot": { + "period": 63031, + "thread": 21 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 239005, + "thread": 29 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 337027, + "thread": 22 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 565298, + "thread": 10 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 668836, + "thread": 1 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 833781, + "thread": 13 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1111122, + "thread": 9 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1217406, + "thread": 7 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1330599, + "thread": 20 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1480871, + "thread": 18 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1692719, + "thread": 10 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 1866938, + "thread": 6 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2054119, + "thread": 9 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2267264, + "thread": 30 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2328027, + "thread": 15 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2536411, + "thread": 24 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2716793, + "thread": 2 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2906623, + "thread": 30 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 2972470, + "thread": 29 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 3235167, + "thread": 2 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 3414513, + "thread": 11 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 3462212, + "thread": 17 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 3680099, + "thread": 10 + } + }, + { + "amount": "452.058362135", + "slot": { + "period": 3931752, + "thread": 15 + } + } + ], + "AU12SxXFi2n4FmhpbTVYWb3YJanaC9BMLkjbxgjWhhX3PCcVDz4yQ": [ + { + "amount": "58.057983633", + "slot": { + "period": 66302, + "thread": 6 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 317626, + "thread": 28 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 332462, + "thread": 13 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 508233, + "thread": 1 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 667015, + "thread": 20 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 873440, + "thread": 0 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1025233, + "thread": 1 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1224763, + "thread": 0 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1472720, + "thread": 12 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1646108, + "thread": 28 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1746764, + "thread": 23 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 1844894, + "thread": 21 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2051377, + "thread": 19 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2246052, + "thread": 20 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2445764, + "thread": 2 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2617202, + "thread": 3 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2711350, + "thread": 15 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 2819172, + "thread": 1 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 3108901, + "thread": 2 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 3258312, + "thread": 3 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 3332348, + "thread": 27 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 3456092, + "thread": 17 + } + }, + { + "amount": "58.057983633", + "slot": { + "period": 3664047, + "thread": 6 + } + }, + { + "amount": "58.057983628", + "slot": { + "period": 3917865, + "thread": 21 + } + } + ], + "AU12SyULNQiHfjjhB9EDU5iAe7oyD9bXeedtQfXpcmQgNs3KFaXpH": [ + { + "amount": "66.024146101", + "slot": { + "period": 132451, + "thread": 12 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 263738, + "thread": 29 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 488739, + "thread": 14 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 562658, + "thread": 20 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 749645, + "thread": 26 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 974180, + "thread": 0 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1034946, + "thread": 13 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1154059, + "thread": 5 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1458707, + "thread": 12 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1509268, + "thread": 16 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1678735, + "thread": 7 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 1834437, + "thread": 27 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2142719, + "thread": 22 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2162081, + "thread": 10 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2418976, + "thread": 20 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2476436, + "thread": 14 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2651770, + "thread": 4 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2869986, + "thread": 17 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 2999086, + "thread": 6 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 3201854, + "thread": 1 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 3303355, + "thread": 29 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 3510656, + "thread": 20 + } + }, + { + "amount": "66.024146101", + "slot": { + "period": 3706798, + "thread": 5 + } + }, + { + "amount": "66.024146097", + "slot": { + "period": 3879963, + "thread": 17 + } + } + ], + "AU12T263CCUK715bekFCppJR4b6z73uZR8Hj5yHkKMwA8zJkVwsmN": [ + { + "amount": "56.639010661", + "slot": { + "period": 142214, + "thread": 30 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 215107, + "thread": 25 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 387751, + "thread": 21 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 622900, + "thread": 8 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 696677, + "thread": 6 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 834995, + "thread": 31 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1061327, + "thread": 21 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1295810, + "thread": 16 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1333861, + "thread": 21 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1611803, + "thread": 31 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1779270, + "thread": 17 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 1964041, + "thread": 20 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2138409, + "thread": 21 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2213028, + "thread": 24 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2298328, + "thread": 16 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2505095, + "thread": 29 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2700626, + "thread": 0 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2840528, + "thread": 18 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 2992866, + "thread": 21 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 3217789, + "thread": 11 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 3391637, + "thread": 1 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 3491664, + "thread": 0 + } + }, + { + "amount": "56.639010661", + "slot": { + "period": 3639011, + "thread": 24 + } + }, + { + "amount": "56.639010672", + "slot": { + "period": 3813696, + "thread": 17 + } + } + ], + "AU12T2sjWYtfkghs4phwab8BWYrqAz51ioi2Gmxfnb7osQaDHmmc5": [ + { + "amount": "107.785830019", + "slot": { + "period": 42113, + "thread": 19 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 184366, + "thread": 8 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 336680, + "thread": 22 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 566558, + "thread": 29 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 661832, + "thread": 11 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 885315, + "thread": 17 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1059213, + "thread": 9 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1303836, + "thread": 7 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1346302, + "thread": 11 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1642657, + "thread": 9 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1652854, + "thread": 15 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 1960296, + "thread": 9 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2093775, + "thread": 16 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2147968, + "thread": 16 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2438604, + "thread": 21 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2590037, + "thread": 23 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2752775, + "thread": 18 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 2872861, + "thread": 5 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 3027615, + "thread": 2 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 3219587, + "thread": 8 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 3304497, + "thread": 13 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 3570335, + "thread": 12 + } + }, + { + "amount": "107.785830019", + "slot": { + "period": 3687521, + "thread": 8 + } + }, + { + "amount": "107.785830027", + "slot": { + "period": 3931779, + "thread": 5 + } + } + ], + "AU12T3XxE4HNKg5FMarz1QpMFcjRu4n7WwehpdqEZVTkf1113vsK1": [ + { + "amount": "452.621047922", + "slot": { + "period": 29955, + "thread": 16 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 276497, + "thread": 10 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 379612, + "thread": 20 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 631936, + "thread": 30 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 681948, + "thread": 4 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 824142, + "thread": 6 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1101302, + "thread": 2 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1159045, + "thread": 24 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1412532, + "thread": 7 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1594707, + "thread": 0 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1732702, + "thread": 1 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 1841206, + "thread": 28 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2057432, + "thread": 30 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2215359, + "thread": 26 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2297529, + "thread": 8 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2546192, + "thread": 27 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2717641, + "thread": 17 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2886941, + "thread": 5 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 2994031, + "thread": 18 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 3136766, + "thread": 0 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 3445107, + "thread": 16 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 3610496, + "thread": 13 + } + }, + { + "amount": "452.621047922", + "slot": { + "period": 3760872, + "thread": 1 + } + }, + { + "amount": "452.621047925", + "slot": { + "period": 3789721, + "thread": 13 + } + } + ], + "AU12T3hKxyVWj1Q2bybvWHWcYYUeYQVLdmd6EMcEAvP9n3Xj1fzq": [ + { + "amount": "71.162228016", + "slot": { + "period": 148274, + "thread": 0 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 262326, + "thread": 25 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 329792, + "thread": 20 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 534162, + "thread": 11 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 671773, + "thread": 15 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 832662, + "thread": 15 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1055401, + "thread": 22 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1184845, + "thread": 28 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1414782, + "thread": 28 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1482732, + "thread": 7 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1653385, + "thread": 8 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 1852807, + "thread": 12 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2069943, + "thread": 23 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2182233, + "thread": 1 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2412027, + "thread": 13 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2576749, + "thread": 27 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2786050, + "thread": 4 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 2928219, + "thread": 3 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 3068830, + "thread": 14 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 3288192, + "thread": 8 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 3420644, + "thread": 25 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 3571304, + "thread": 29 + } + }, + { + "amount": "71.162228016", + "slot": { + "period": 3649443, + "thread": 10 + } + }, + { + "amount": "71.162228005", + "slot": { + "period": 3873688, + "thread": 10 + } + } + ], + "AU12T4HbYNs6nVJHJRpZx1cwH3fxDMiVknepAu7ukd2sWUhCUMPKb": [ + { + "amount": "96.145669660", + "slot": { + "period": 33037, + "thread": 19 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 171024, + "thread": 21 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 340471, + "thread": 30 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 628522, + "thread": 30 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 713748, + "thread": 14 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 846618, + "thread": 7 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1033051, + "thread": 22 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1205049, + "thread": 29 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1370752, + "thread": 12 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1565850, + "thread": 31 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1650357, + "thread": 13 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 1884184, + "thread": 31 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2060214, + "thread": 0 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2223943, + "thread": 6 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2325390, + "thread": 2 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2478322, + "thread": 25 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2773254, + "thread": 23 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 2933242, + "thread": 10 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 3116775, + "thread": 4 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 3200741, + "thread": 13 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 3319890, + "thread": 5 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 3563767, + "thread": 23 + } + }, + { + "amount": "96.145669660", + "slot": { + "period": 3625775, + "thread": 10 + } + }, + { + "amount": "96.145669672", + "slot": { + "period": 3825063, + "thread": 24 + } + } + ], + "AU12T4YFHhRqn4p6ggnM3TWViVFHKNMi7rSc27L1CUXHgad5Med3R": [ + { + "amount": "164.236454728", + "slot": { + "period": 76646, + "thread": 15 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 295085, + "thread": 13 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 422137, + "thread": 15 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 623795, + "thread": 4 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 794590, + "thread": 5 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 954433, + "thread": 19 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1003608, + "thread": 3 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1295855, + "thread": 7 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1469963, + "thread": 30 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1558029, + "thread": 4 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1680099, + "thread": 11 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 1883461, + "thread": 23 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2035112, + "thread": 21 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2198590, + "thread": 16 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2329846, + "thread": 10 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2572084, + "thread": 16 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2635188, + "thread": 9 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 2853720, + "thread": 0 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 3037513, + "thread": 20 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 3250877, + "thread": 22 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 3413558, + "thread": 12 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 3570465, + "thread": 26 + } + }, + { + "amount": "164.236454728", + "slot": { + "period": 3642290, + "thread": 9 + } + }, + { + "amount": "164.236454717", + "slot": { + "period": 3871730, + "thread": 12 + } + } + ], + "AU12T4hCNSNMmdHpso1d6aUqeqAW7KYaFigoziZfvy9CwDPr6JV4d": [ + { + "amount": "116.581967082", + "slot": { + "period": 34157, + "thread": 13 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 226264, + "thread": 7 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 358953, + "thread": 13 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 582232, + "thread": 8 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 803018, + "thread": 10 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 903918, + "thread": 14 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1051368, + "thread": 17 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1242023, + "thread": 0 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1440659, + "thread": 29 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1497158, + "thread": 16 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1697580, + "thread": 0 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 1969407, + "thread": 15 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2039921, + "thread": 29 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2212921, + "thread": 29 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2348626, + "thread": 3 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2581664, + "thread": 28 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2632460, + "thread": 30 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 2890568, + "thread": 5 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3017937, + "thread": 30 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3261164, + "thread": 8 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3448669, + "thread": 3 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3511896, + "thread": 4 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3744755, + "thread": 1 + } + }, + { + "amount": "116.581967082", + "slot": { + "period": 3881702, + "thread": 16 + } + } + ], + "AU12T4hPr22fTniaePghW4a87ZpHbHxMdgHNGiuiKFUhZQ7qnCxr9": [ + { + "amount": "192.492816470", + "slot": { + "period": 29241, + "thread": 0 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 223721, + "thread": 27 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 368714, + "thread": 20 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 590776, + "thread": 9 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 746875, + "thread": 1 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 946433, + "thread": 21 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1035673, + "thread": 31 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1260539, + "thread": 13 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1334423, + "thread": 11 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1566822, + "thread": 13 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1784784, + "thread": 8 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 1814449, + "thread": 4 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2070918, + "thread": 15 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2202000, + "thread": 16 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2440901, + "thread": 19 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2576251, + "thread": 0 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2719389, + "thread": 25 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 2903721, + "thread": 12 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 3052146, + "thread": 14 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 3249170, + "thread": 8 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 3419756, + "thread": 26 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 3610792, + "thread": 20 + } + }, + { + "amount": "192.492816470", + "slot": { + "period": 3737516, + "thread": 26 + } + }, + { + "amount": "192.492816479", + "slot": { + "period": 3794581, + "thread": 26 + } + } + ], + "AU12T6GGzqpVkGrPfFx7mwPvBrGajqc16Jvsb9fmc1o8sL22SriDR": [ + { + "amount": "97.240047047", + "slot": { + "period": 55230, + "thread": 9 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 277740, + "thread": 15 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 448190, + "thread": 18 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 623095, + "thread": 26 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 811265, + "thread": 7 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 850133, + "thread": 2 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1016773, + "thread": 14 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1197107, + "thread": 12 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1341475, + "thread": 27 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1601341, + "thread": 13 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1804091, + "thread": 8 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1901777, + "thread": 3 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 1988805, + "thread": 28 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 2221295, + "thread": 28 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 2350011, + "thread": 10 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 2523625, + "thread": 16 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 2746977, + "thread": 0 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 2938248, + "thread": 2 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 3087609, + "thread": 16 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 3239755, + "thread": 23 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 3420215, + "thread": 23 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 3598635, + "thread": 19 + } + }, + { + "amount": "97.240047047", + "slot": { + "period": 3637475, + "thread": 4 + } + }, + { + "amount": "97.240047053", + "slot": { + "period": 3802422, + "thread": 1 + } + } + ], + "AU12T6SCZcHdfgVYQkyGj62YE8ethk3MdYjEWEA9rjaVSGrCREBxQ": [ + { + "amount": "127.224140382", + "slot": { + "period": 41603, + "thread": 10 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 198089, + "thread": 17 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 342872, + "thread": 24 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 519118, + "thread": 18 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 721834, + "thread": 2 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 843008, + "thread": 26 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1004986, + "thread": 30 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1266568, + "thread": 1 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1408547, + "thread": 27 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1589023, + "thread": 25 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1671373, + "thread": 2 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 1867741, + "thread": 27 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2084407, + "thread": 16 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2224261, + "thread": 3 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2422420, + "thread": 7 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2499688, + "thread": 7 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2659718, + "thread": 6 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2891107, + "thread": 8 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 2973536, + "thread": 26 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 3283418, + "thread": 16 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 3330023, + "thread": 0 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 3504717, + "thread": 19 + } + }, + { + "amount": "127.224140382", + "slot": { + "period": 3774840, + "thread": 4 + } + }, + { + "amount": "127.224140383", + "slot": { + "period": 3930734, + "thread": 20 + } + } + ], + "AU12T6WDd6VffmS5Zuo93aKQZiPmmybNYqQu78GisDat9p2oYyyx4": [ + { + "amount": "51.564710255", + "slot": { + "period": 83838, + "thread": 19 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 240445, + "thread": 28 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 351431, + "thread": 21 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 635348, + "thread": 31 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 810173, + "thread": 9 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 901922, + "thread": 3 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1080368, + "thread": 23 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1188133, + "thread": 8 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1424934, + "thread": 9 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1527388, + "thread": 5 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1783974, + "thread": 15 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 1850118, + "thread": 13 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2137327, + "thread": 29 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2164475, + "thread": 12 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2421984, + "thread": 19 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2531304, + "thread": 6 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2728878, + "thread": 4 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2864219, + "thread": 3 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 2963136, + "thread": 24 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 3205587, + "thread": 30 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 3299326, + "thread": 4 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 3507226, + "thread": 8 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 3734726, + "thread": 30 + } + }, + { + "amount": "51.564710255", + "slot": { + "period": 3843572, + "thread": 18 + } + } + ], + "AU12T6sSrYmTprzmVKdh4BrXXstR2xEJ4J7kvaPcJQ3ZcB7oyh2WB": [ + { + "amount": "59.858373892", + "slot": { + "period": 77951, + "thread": 14 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 273041, + "thread": 25 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 466710, + "thread": 12 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 565377, + "thread": 11 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 713236, + "thread": 4 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 892127, + "thread": 11 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 999829, + "thread": 11 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 1237441, + "thread": 7 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 1441621, + "thread": 24 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 1543689, + "thread": 16 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 1700493, + "thread": 8 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 1815462, + "thread": 14 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2028009, + "thread": 0 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2249745, + "thread": 17 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2326971, + "thread": 31 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2568131, + "thread": 1 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2740581, + "thread": 13 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 2919762, + "thread": 23 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 3009337, + "thread": 6 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 3230289, + "thread": 11 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 3363520, + "thread": 17 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 3482259, + "thread": 31 + } + }, + { + "amount": "59.858373892", + "slot": { + "period": 3763309, + "thread": 6 + } + }, + { + "amount": "59.858373880", + "slot": { + "period": 3803571, + "thread": 6 + } + } + ], + "AU12T79WrsnfKtwNcT21iaMFMigSJEG3Td4qCoUwBTJM27Lxcueqg": [ + { + "amount": "90.413658497", + "slot": { + "period": 163477, + "thread": 17 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 244526, + "thread": 3 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 392614, + "thread": 22 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 521996, + "thread": 8 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 799748, + "thread": 20 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 960286, + "thread": 2 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1143113, + "thread": 5 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1163749, + "thread": 0 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1455232, + "thread": 10 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1534686, + "thread": 21 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1787730, + "thread": 23 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 1952233, + "thread": 18 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2105610, + "thread": 6 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2207195, + "thread": 19 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2368162, + "thread": 16 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2547840, + "thread": 6 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2791279, + "thread": 16 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 2940734, + "thread": 3 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 3008491, + "thread": 10 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 3218841, + "thread": 26 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 3372311, + "thread": 16 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 3548182, + "thread": 23 + } + }, + { + "amount": "90.413658497", + "slot": { + "period": 3653420, + "thread": 16 + } + }, + { + "amount": "90.413658494", + "slot": { + "period": 3887740, + "thread": 12 + } + } + ], + "AU12T7D53MSjQP8SCG3VYPf7uFmUBqa1HnEJXu97maBmpg8orFPEw": [ + { + "amount": "596.105593371", + "slot": { + "period": 105076, + "thread": 6 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 301315, + "thread": 10 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 328685, + "thread": 28 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 520792, + "thread": 16 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 768179, + "thread": 25 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 892671, + "thread": 6 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1031696, + "thread": 9 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1246229, + "thread": 31 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1352771, + "thread": 21 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1509717, + "thread": 19 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1770529, + "thread": 2 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1957381, + "thread": 16 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 1995701, + "thread": 17 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 2204505, + "thread": 26 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 2342274, + "thread": 12 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 2464210, + "thread": 26 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 2656727, + "thread": 5 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 2817385, + "thread": 19 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 3000058, + "thread": 30 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 3177849, + "thread": 21 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 3333283, + "thread": 27 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 3464497, + "thread": 14 + } + }, + { + "amount": "596.105593371", + "slot": { + "period": 3742352, + "thread": 15 + } + }, + { + "amount": "596.105593372", + "slot": { + "period": 3877341, + "thread": 21 + } + } + ], + "AU12T9Up9edGGsJ1QQGRWhA4si1LdiAABCLNsBhtfFfX7JN3bSQtP": [ + { + "amount": "158.252478067", + "slot": { + "period": 83454, + "thread": 23 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 263518, + "thread": 25 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 396461, + "thread": 23 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 605213, + "thread": 21 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 779958, + "thread": 14 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 890111, + "thread": 11 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1106373, + "thread": 20 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1278303, + "thread": 11 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1335590, + "thread": 6 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1506178, + "thread": 27 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1795929, + "thread": 24 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 1966828, + "thread": 15 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2037419, + "thread": 23 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2213772, + "thread": 15 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2378315, + "thread": 22 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2470494, + "thread": 3 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2682435, + "thread": 15 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 2907345, + "thread": 4 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 3120232, + "thread": 18 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 3137429, + "thread": 23 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 3366796, + "thread": 31 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 3579838, + "thread": 27 + } + }, + { + "amount": "158.252478067", + "slot": { + "period": 3664052, + "thread": 21 + } + }, + { + "amount": "158.252478060", + "slot": { + "period": 3793593, + "thread": 4 + } + } + ], + "AU12T9c91tvUEAz53xSreFufTfuYjEi2fTaPnLuWfLkSQXhJEDeQs": [ + { + "amount": "536.117471182", + "slot": { + "period": 44942, + "thread": 10 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 236106, + "thread": 5 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 349746, + "thread": 28 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 503413, + "thread": 6 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 759151, + "thread": 23 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 971148, + "thread": 25 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1045855, + "thread": 27 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1306675, + "thread": 14 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1349204, + "thread": 5 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1513881, + "thread": 28 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1770666, + "thread": 26 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 1964328, + "thread": 15 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2032467, + "thread": 21 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2198423, + "thread": 4 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2453616, + "thread": 27 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2580149, + "thread": 18 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2743769, + "thread": 7 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 2939038, + "thread": 15 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 3007757, + "thread": 23 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 3139876, + "thread": 20 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 3295559, + "thread": 21 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 3615773, + "thread": 2 + } + }, + { + "amount": "536.117471182", + "slot": { + "period": 3726428, + "thread": 27 + } + }, + { + "amount": "536.117471190", + "slot": { + "period": 3894789, + "thread": 30 + } + } + ], + "AU12T9chxNHSPauEeWP4oN9NeZh4y5NfBt33F611id8VgsYFBBfm": [ + { + "amount": "151.925320469", + "slot": { + "period": 64169, + "thread": 19 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 191999, + "thread": 5 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 330130, + "thread": 9 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 651789, + "thread": 22 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 711718, + "thread": 23 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 911646, + "thread": 17 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1042022, + "thread": 1 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1297333, + "thread": 0 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1348162, + "thread": 11 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1522379, + "thread": 25 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1685003, + "thread": 18 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1955300, + "thread": 4 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 1999902, + "thread": 4 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 2279021, + "thread": 5 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 2356573, + "thread": 6 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 2526130, + "thread": 28 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 2666541, + "thread": 22 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 2842539, + "thread": 1 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 3040823, + "thread": 2 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 3136847, + "thread": 13 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 3367504, + "thread": 18 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 3593139, + "thread": 14 + } + }, + { + "amount": "151.925320469", + "slot": { + "period": 3775435, + "thread": 3 + } + }, + { + "amount": "151.925320458", + "slot": { + "period": 3788248, + "thread": 22 + } + } + ], + "AU12T9orrSfYsyT69TDFpPLBnmKSEN59QfAhbqMwKZ2fA5qZPvtAb": [ + { + "amount": "210.538034552", + "slot": { + "period": 33432, + "thread": 1 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 169985, + "thread": 21 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 374195, + "thread": 20 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 622525, + "thread": 3 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 755883, + "thread": 15 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 883600, + "thread": 0 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1142843, + "thread": 1 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1288336, + "thread": 18 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1366307, + "thread": 20 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1610886, + "thread": 21 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1773729, + "thread": 3 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 1872004, + "thread": 28 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2082861, + "thread": 18 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2161244, + "thread": 5 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2446988, + "thread": 16 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2498370, + "thread": 5 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2780007, + "thread": 12 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 2897589, + "thread": 27 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 3066520, + "thread": 23 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 3163497, + "thread": 6 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 3390822, + "thread": 1 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 3600785, + "thread": 9 + } + }, + { + "amount": "210.538034552", + "slot": { + "period": 3638083, + "thread": 27 + } + }, + { + "amount": "210.538034542", + "slot": { + "period": 3912362, + "thread": 22 + } + } + ], + "AU12TA5Vrf5rbtByXYvCPKuii5T9KQh7HeTBcZfG9WwPU9j8uk5Z4": [ + { + "amount": "59.677312344", + "slot": { + "period": 93945, + "thread": 13 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 299470, + "thread": 24 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 452924, + "thread": 2 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 506796, + "thread": 22 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 791361, + "thread": 23 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 958749, + "thread": 2 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1130421, + "thread": 1 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1164583, + "thread": 21 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1424422, + "thread": 10 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1501269, + "thread": 29 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1725406, + "thread": 11 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1848194, + "thread": 19 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 1995255, + "thread": 2 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 2235833, + "thread": 17 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 2391494, + "thread": 20 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 2622450, + "thread": 9 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 2656001, + "thread": 25 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 2845033, + "thread": 13 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 3024432, + "thread": 27 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 3172156, + "thread": 14 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 3403615, + "thread": 8 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 3597668, + "thread": 17 + } + }, + { + "amount": "59.677312344", + "slot": { + "period": 3724701, + "thread": 13 + } + }, + { + "amount": "59.677312352", + "slot": { + "period": 3876106, + "thread": 28 + } + } + ], + "AU12TAy4YqqvVFBAqTqDYKcNZQnPi4GA5R5y7pV2EkfsfAmAxuxtS": [ + { + "amount": "152.306424904", + "slot": { + "period": 82229, + "thread": 22 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 254347, + "thread": 15 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 489930, + "thread": 26 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 551372, + "thread": 21 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 802088, + "thread": 6 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 854021, + "thread": 19 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1066311, + "thread": 11 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1275029, + "thread": 23 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1458604, + "thread": 25 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1568686, + "thread": 18 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1748909, + "thread": 25 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 1893296, + "thread": 14 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2036773, + "thread": 23 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2190116, + "thread": 3 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2392679, + "thread": 12 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2514346, + "thread": 24 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2637923, + "thread": 26 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2814951, + "thread": 25 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 2955124, + "thread": 29 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 3132115, + "thread": 24 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 3382072, + "thread": 31 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 3512315, + "thread": 14 + } + }, + { + "amount": "152.306424904", + "slot": { + "period": 3666772, + "thread": 15 + } + }, + { + "amount": "152.306424905", + "slot": { + "period": 3817460, + "thread": 6 + } + } + ], + "AU12TB1M46vjT9HjrCDc4JfQbcuEEs13JNXiKukmgKcTzxr7MF2cL": [ + { + "amount": "111.710011238", + "slot": { + "period": 66489, + "thread": 4 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 223724, + "thread": 14 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 373256, + "thread": 9 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 515737, + "thread": 5 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 701794, + "thread": 27 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 965474, + "thread": 10 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 989580, + "thread": 28 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 1219720, + "thread": 3 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 1475327, + "thread": 17 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 1533578, + "thread": 19 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 1648639, + "thread": 4 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 1821018, + "thread": 7 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2087675, + "thread": 4 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2160864, + "thread": 2 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2404101, + "thread": 2 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2526073, + "thread": 15 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2662005, + "thread": 0 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2877629, + "thread": 6 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 2961445, + "thread": 0 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 3179073, + "thread": 1 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 3399289, + "thread": 10 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 3497764, + "thread": 9 + } + }, + { + "amount": "111.710011238", + "slot": { + "period": 3730769, + "thread": 22 + } + }, + { + "amount": "111.710011244", + "slot": { + "period": 3796768, + "thread": 4 + } + } + ], + "AU12TB39YPxwMDZdpESzcmB6wg3saPq19eyPoDJ3Wb6k5FpamUyXS": [ + { + "amount": "151.234538676", + "slot": { + "period": 84970, + "thread": 13 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 232672, + "thread": 0 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 444310, + "thread": 2 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 533218, + "thread": 13 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 727634, + "thread": 31 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 825971, + "thread": 1 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1044228, + "thread": 31 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1180763, + "thread": 6 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1324508, + "thread": 8 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1496729, + "thread": 29 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1760040, + "thread": 20 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 1834059, + "thread": 10 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2013338, + "thread": 21 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2249591, + "thread": 5 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2443750, + "thread": 23 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2567820, + "thread": 9 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2668235, + "thread": 7 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 2803782, + "thread": 24 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 3053305, + "thread": 11 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 3285383, + "thread": 28 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 3367776, + "thread": 23 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 3595636, + "thread": 20 + } + }, + { + "amount": "151.234538676", + "slot": { + "period": 3758208, + "thread": 6 + } + }, + { + "amount": "151.234538684", + "slot": { + "period": 3944332, + "thread": 30 + } + } + ], + "AU12TBLDhvPPsr2bj9o1UFfE2iKgLVp9xAxZAQ6WB18QwBJNVh3ot": [ + { + "amount": "440.919640868", + "slot": { + "period": 56808, + "thread": 30 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 243192, + "thread": 26 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 404638, + "thread": 7 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 624453, + "thread": 28 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 695141, + "thread": 2 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 861749, + "thread": 0 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1028242, + "thread": 21 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1215612, + "thread": 13 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1340749, + "thread": 7 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1551748, + "thread": 22 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1663365, + "thread": 4 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 1903251, + "thread": 0 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2137624, + "thread": 19 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2252353, + "thread": 29 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2398070, + "thread": 25 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2475603, + "thread": 21 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2701754, + "thread": 27 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2918371, + "thread": 16 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 2998541, + "thread": 9 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 3220477, + "thread": 4 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 3410999, + "thread": 16 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 3614278, + "thread": 9 + } + }, + { + "amount": "440.919640868", + "slot": { + "period": 3697011, + "thread": 24 + } + }, + { + "amount": "440.919640869", + "slot": { + "period": 3909208, + "thread": 0 + } + } + ], + "AU12TCNYze8xwJN2NALtJv1GvHpC9YetPCHvk6Fsqq1y3WUBdr8Cs": [ + { + "amount": "59.855477314", + "slot": { + "period": 91876, + "thread": 27 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 290582, + "thread": 24 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 457500, + "thread": 13 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 576332, + "thread": 13 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 655292, + "thread": 14 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 909474, + "thread": 29 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1105311, + "thread": 20 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1235835, + "thread": 7 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1326878, + "thread": 22 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1567575, + "thread": 4 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1775944, + "thread": 30 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 1916839, + "thread": 21 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2059963, + "thread": 0 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2189175, + "thread": 13 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2373479, + "thread": 27 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2595356, + "thread": 4 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2670744, + "thread": 16 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2873313, + "thread": 24 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 2989528, + "thread": 4 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 3272286, + "thread": 27 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 3399506, + "thread": 5 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 3495554, + "thread": 12 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 3703990, + "thread": 16 + } + }, + { + "amount": "59.855477314", + "slot": { + "period": 3815633, + "thread": 11 + } + } + ], + "AU12TCNjTgRxH6cvCc9DS4fXqiqEhivps7Jbs6z9Y2A9utudBq2Di": [ + { + "amount": "80.579750670", + "slot": { + "period": 78004, + "thread": 20 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 284491, + "thread": 9 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 358925, + "thread": 22 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 633032, + "thread": 25 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 682261, + "thread": 27 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 944017, + "thread": 22 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1074034, + "thread": 23 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1245026, + "thread": 1 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1456305, + "thread": 13 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1504267, + "thread": 13 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1701460, + "thread": 25 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 1872583, + "thread": 11 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2140342, + "thread": 12 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2220786, + "thread": 11 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2407874, + "thread": 15 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2592849, + "thread": 8 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2721522, + "thread": 13 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 2817587, + "thread": 28 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 3044869, + "thread": 8 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 3169457, + "thread": 24 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 3293669, + "thread": 17 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 3506426, + "thread": 23 + } + }, + { + "amount": "80.579750670", + "slot": { + "period": 3730521, + "thread": 10 + } + }, + { + "amount": "80.579750677", + "slot": { + "period": 3920275, + "thread": 9 + } + } + ], + "AU12TDMEFLnf2hdPSQwfNwUBZZMvnpbHcLptPoV45yxapsaRQp62E": [ + { + "amount": "134.771874437", + "slot": { + "period": 164464, + "thread": 18 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 245051, + "thread": 14 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 427547, + "thread": 11 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 554237, + "thread": 3 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 754711, + "thread": 28 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 964863, + "thread": 24 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1026875, + "thread": 15 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1303636, + "thread": 29 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1430177, + "thread": 2 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1517591, + "thread": 23 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1792965, + "thread": 6 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 1952535, + "thread": 27 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2039664, + "thread": 11 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2286457, + "thread": 20 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2389301, + "thread": 12 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2565500, + "thread": 31 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2739234, + "thread": 16 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 2839491, + "thread": 8 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 3059409, + "thread": 17 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 3159330, + "thread": 14 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 3327144, + "thread": 23 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 3562067, + "thread": 5 + } + }, + { + "amount": "134.771874437", + "slot": { + "period": 3705762, + "thread": 2 + } + }, + { + "amount": "134.771874431", + "slot": { + "period": 3945417, + "thread": 5 + } + } + ], + "AU12TDd7YpaY14MTW5fnxMjSK3pzvdGnEdSTyv2C1AkTx7qwXNEbT": [ + { + "amount": "181.606525381", + "slot": { + "period": 59462, + "thread": 14 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 306803, + "thread": 27 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 352762, + "thread": 13 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 518995, + "thread": 27 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 811375, + "thread": 18 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 919656, + "thread": 28 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1097559, + "thread": 18 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1307111, + "thread": 16 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1402257, + "thread": 5 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1580185, + "thread": 3 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1756018, + "thread": 9 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1813295, + "thread": 17 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 1987377, + "thread": 7 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2207049, + "thread": 23 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2303730, + "thread": 29 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2509995, + "thread": 14 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2658202, + "thread": 16 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2898880, + "thread": 21 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 2964182, + "thread": 0 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 3200745, + "thread": 30 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 3447756, + "thread": 22 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 3486628, + "thread": 18 + } + }, + { + "amount": "181.606525381", + "slot": { + "period": 3662377, + "thread": 30 + } + }, + { + "amount": "181.606525384", + "slot": { + "period": 3803041, + "thread": 19 + } + } + ], + "AU12TE1bq8exE6R4TeqqxqTCbUjHdFt8GqRXBCei35yZbUfzisZQJ": [ + { + "amount": "323.642453116", + "slot": { + "period": 24468, + "thread": 31 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 262908, + "thread": 28 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 450254, + "thread": 2 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 554434, + "thread": 1 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 675819, + "thread": 26 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 865675, + "thread": 27 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1116363, + "thread": 30 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1268919, + "thread": 0 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1348767, + "thread": 5 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1637637, + "thread": 16 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1785303, + "thread": 17 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1937015, + "thread": 6 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 1983609, + "thread": 23 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 2250134, + "thread": 24 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 2364827, + "thread": 6 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 2560097, + "thread": 27 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 2723804, + "thread": 10 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 2947545, + "thread": 15 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 3062875, + "thread": 7 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 3286379, + "thread": 25 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 3326844, + "thread": 8 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 3466359, + "thread": 2 + } + }, + { + "amount": "323.642453116", + "slot": { + "period": 3635094, + "thread": 3 + } + }, + { + "amount": "323.642453124", + "slot": { + "period": 3790951, + "thread": 31 + } + } + ], + "AU12TE5cmqrooudMPGtfAnSJNskctbqUwPGwJQRQxYrJgGbEF676N": [ + { + "amount": "71.502890289", + "slot": { + "period": 17333, + "thread": 30 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 296650, + "thread": 8 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 489741, + "thread": 2 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 593147, + "thread": 28 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 655832, + "thread": 18 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 842104, + "thread": 2 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1136501, + "thread": 4 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1205150, + "thread": 11 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1388615, + "thread": 19 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1597529, + "thread": 10 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1801226, + "thread": 26 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 1921194, + "thread": 23 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2040790, + "thread": 11 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2167226, + "thread": 21 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2388037, + "thread": 14 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2499882, + "thread": 4 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2640124, + "thread": 14 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 2865686, + "thread": 25 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3056272, + "thread": 4 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3225566, + "thread": 7 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3397357, + "thread": 5 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3501736, + "thread": 2 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3732426, + "thread": 19 + } + }, + { + "amount": "71.502890289", + "slot": { + "period": 3930823, + "thread": 30 + } + } + ], + "AU12TF1yfJJ28VWKvVRJTDW3hn5ZmQDzMB2QLbuXpBMhWnvmAEmkD": [ + { + "amount": "448.004706790", + "slot": { + "period": 128311, + "thread": 13 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 285635, + "thread": 29 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 429686, + "thread": 22 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 638713, + "thread": 27 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 744529, + "thread": 25 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 942195, + "thread": 16 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1082194, + "thread": 7 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1273941, + "thread": 30 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1471912, + "thread": 21 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1576670, + "thread": 19 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1671549, + "thread": 28 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 1865098, + "thread": 13 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2074957, + "thread": 28 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2188877, + "thread": 1 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2433875, + "thread": 15 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2521494, + "thread": 8 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2719767, + "thread": 9 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 2857838, + "thread": 16 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 3112468, + "thread": 30 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 3262396, + "thread": 17 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 3429170, + "thread": 18 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 3600008, + "thread": 8 + } + }, + { + "amount": "448.004706790", + "slot": { + "period": 3664959, + "thread": 3 + } + }, + { + "amount": "448.004706796", + "slot": { + "period": 3796699, + "thread": 11 + } + } + ], + "AU12TF8K6tKQNBXn9wwSZFPXJbjuhzhwKA1pHNjr3wRJYAzq1V6QB": [ + { + "amount": "251.586794744", + "slot": { + "period": 25566, + "thread": 12 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 304318, + "thread": 10 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 363397, + "thread": 4 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 594919, + "thread": 29 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 797440, + "thread": 12 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 924233, + "thread": 10 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1048934, + "thread": 14 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1249719, + "thread": 18 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1331510, + "thread": 22 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1488020, + "thread": 3 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1714263, + "thread": 5 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 1954569, + "thread": 16 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2135428, + "thread": 17 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2199247, + "thread": 18 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2371093, + "thread": 17 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2553196, + "thread": 2 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2729995, + "thread": 27 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 2914716, + "thread": 17 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 3088028, + "thread": 13 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 3134619, + "thread": 23 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 3393798, + "thread": 12 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 3616655, + "thread": 12 + } + }, + { + "amount": "251.586794744", + "slot": { + "period": 3694214, + "thread": 24 + } + }, + { + "amount": "251.586794739", + "slot": { + "period": 3919609, + "thread": 30 + } + } + ], + "AU12TFVFubnWaX6TiWZLeGD4Dg7TFcrdMUTerk5sXGzHN5poFB2Sk": [ + { + "amount": "303.889689363", + "slot": { + "period": 94250, + "thread": 16 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 233191, + "thread": 15 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 349912, + "thread": 1 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 570430, + "thread": 14 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 662381, + "thread": 21 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 838889, + "thread": 10 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1112477, + "thread": 29 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1298040, + "thread": 13 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1452219, + "thread": 3 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1487616, + "thread": 16 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1649895, + "thread": 3 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 1866405, + "thread": 20 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2035891, + "thread": 15 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2177786, + "thread": 5 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2364304, + "thread": 4 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2542440, + "thread": 12 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2699378, + "thread": 15 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 2854538, + "thread": 16 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 3101114, + "thread": 24 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 3140560, + "thread": 5 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 3349742, + "thread": 12 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 3504875, + "thread": 3 + } + }, + { + "amount": "303.889689363", + "slot": { + "period": 3651143, + "thread": 8 + } + }, + { + "amount": "303.889689370", + "slot": { + "period": 3924192, + "thread": 24 + } + } + ], + "AU12TG1cDRGj8G3oMRtcSGMBoyWpPba3Hz637RqD51Sqv7HKbyoQq": [ + { + "amount": "218.276877126", + "slot": { + "period": 50428, + "thread": 12 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 209146, + "thread": 4 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 423254, + "thread": 12 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 623049, + "thread": 12 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 795353, + "thread": 20 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 891117, + "thread": 11 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 989703, + "thread": 26 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 1235638, + "thread": 11 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 1327255, + "thread": 2 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 1622383, + "thread": 25 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 1658069, + "thread": 22 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 1918157, + "thread": 17 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2082926, + "thread": 28 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2292206, + "thread": 26 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2303366, + "thread": 2 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2519149, + "thread": 31 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2653950, + "thread": 3 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 2799890, + "thread": 6 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 3116772, + "thread": 24 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 3286674, + "thread": 9 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 3327725, + "thread": 24 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 3610629, + "thread": 1 + } + }, + { + "amount": "218.276877126", + "slot": { + "period": 3661339, + "thread": 17 + } + }, + { + "amount": "218.276877119", + "slot": { + "period": 3930400, + "thread": 14 + } + } + ], + "AU12TGe3ZtnxQrKTc6Lq21FsS9JF2ExY9LdkGikvsKBP5Ts3REoHv": [ + { + "amount": "293.555471749", + "slot": { + "period": 143640, + "thread": 16 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 301702, + "thread": 17 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 343974, + "thread": 17 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 540763, + "thread": 8 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 693170, + "thread": 5 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 888249, + "thread": 22 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1076370, + "thread": 3 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1205438, + "thread": 11 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1326845, + "thread": 23 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1552901, + "thread": 28 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1688717, + "thread": 24 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 1958300, + "thread": 15 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2024625, + "thread": 8 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2276761, + "thread": 20 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2305058, + "thread": 8 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2492912, + "thread": 4 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2724094, + "thread": 23 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 2914013, + "thread": 8 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 3080137, + "thread": 20 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 3227442, + "thread": 31 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 3405182, + "thread": 13 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 3535101, + "thread": 3 + } + }, + { + "amount": "293.555471749", + "slot": { + "period": 3741094, + "thread": 28 + } + }, + { + "amount": "293.555471742", + "slot": { + "period": 3836478, + "thread": 19 + } + } + ], + "AU12TGkYSv4ompus3yv3hRo5WiJJyoTQRLPmYWm5csRzDuFs9qVF1": [ + { + "amount": "310.158559814", + "slot": { + "period": 110055, + "thread": 18 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 203566, + "thread": 22 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 366956, + "thread": 25 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 615129, + "thread": 5 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 675561, + "thread": 8 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 879329, + "thread": 15 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1062677, + "thread": 26 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1266358, + "thread": 30 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1343842, + "thread": 22 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1495752, + "thread": 2 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1676311, + "thread": 24 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 1832602, + "thread": 28 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2009869, + "thread": 27 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2176941, + "thread": 15 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2315473, + "thread": 25 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2530478, + "thread": 6 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2677606, + "thread": 19 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2803365, + "thread": 26 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 2981549, + "thread": 20 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 3141507, + "thread": 16 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 3314971, + "thread": 11 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 3474494, + "thread": 29 + } + }, + { + "amount": "310.158559814", + "slot": { + "period": 3752724, + "thread": 13 + } + }, + { + "amount": "310.158559826", + "slot": { + "period": 3810458, + "thread": 19 + } + } + ], + "AU12TH5Dho5BnRvNd5G4myFsNLFfMx6xESiGT56mxy2SUj3DmC2Mi": [ + { + "amount": "613.850585906", + "slot": { + "period": 116352, + "thread": 5 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 254312, + "thread": 26 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 465307, + "thread": 19 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 566516, + "thread": 8 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 783280, + "thread": 0 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 834766, + "thread": 4 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1144852, + "thread": 5 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1292391, + "thread": 31 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1462633, + "thread": 12 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1575563, + "thread": 2 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1688388, + "thread": 16 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 1919921, + "thread": 13 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2114277, + "thread": 19 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2173932, + "thread": 21 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2369030, + "thread": 15 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2475262, + "thread": 3 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2779022, + "thread": 24 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 2910682, + "thread": 24 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 3103285, + "thread": 23 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 3281345, + "thread": 15 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 3446651, + "thread": 6 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 3552367, + "thread": 6 + } + }, + { + "amount": "613.850585906", + "slot": { + "period": 3707768, + "thread": 29 + } + }, + { + "amount": "613.850585905", + "slot": { + "period": 3810394, + "thread": 30 + } + } + ], + "AU12THxpeYRfj5L7UsH2UKak4kZeg5bFJZCyvQGxq2EjzMJWoHnso": [ + { + "amount": "138.102869564", + "slot": { + "period": 41259, + "thread": 5 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 297018, + "thread": 9 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 491243, + "thread": 16 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 504923, + "thread": 24 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 705175, + "thread": 16 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 953474, + "thread": 7 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1040695, + "thread": 25 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1209665, + "thread": 17 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1407783, + "thread": 16 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1499321, + "thread": 28 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1763352, + "thread": 17 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 1932737, + "thread": 7 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2073336, + "thread": 28 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2175237, + "thread": 2 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2402118, + "thread": 20 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2527418, + "thread": 26 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2651256, + "thread": 10 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2952536, + "thread": 20 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 2990791, + "thread": 4 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 3286360, + "thread": 20 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 3370638, + "thread": 10 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 3587458, + "thread": 27 + } + }, + { + "amount": "138.102869564", + "slot": { + "period": 3691315, + "thread": 0 + } + }, + { + "amount": "138.102869563", + "slot": { + "period": 3943782, + "thread": 24 + } + } + ], + "AU12TJmM3QFxbZGDSp7WzNnGwHzcBRCsfmXQmpkWcNHKSPGqoWMxC": [ + { + "amount": "415.900945588", + "slot": { + "period": 146109, + "thread": 28 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 213503, + "thread": 23 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 484073, + "thread": 28 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 566754, + "thread": 4 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 778299, + "thread": 28 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 899392, + "thread": 22 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1068979, + "thread": 0 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1209103, + "thread": 6 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1469644, + "thread": 5 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1624788, + "thread": 8 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1725896, + "thread": 9 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 1955101, + "thread": 29 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2064648, + "thread": 13 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2287517, + "thread": 29 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2411295, + "thread": 17 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2608597, + "thread": 31 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2708567, + "thread": 27 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 2893509, + "thread": 13 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 3055963, + "thread": 23 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 3177370, + "thread": 0 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 3450514, + "thread": 13 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 3564489, + "thread": 22 + } + }, + { + "amount": "415.900945588", + "slot": { + "period": 3679316, + "thread": 11 + } + }, + { + "amount": "415.900945580", + "slot": { + "period": 3923061, + "thread": 5 + } + } + ], + "AU12TLM9tzYyAv73g3hBtjziR2MaPtQNj1oGyMxb3xuZbZwpSgf8Z": [ + { + "amount": "461.902630128", + "slot": { + "period": 52762, + "thread": 15 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 253766, + "thread": 3 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 371345, + "thread": 14 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 632099, + "thread": 0 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 788540, + "thread": 10 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 960239, + "thread": 22 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1018179, + "thread": 27 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1282134, + "thread": 6 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1351705, + "thread": 24 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1527047, + "thread": 13 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1773490, + "thread": 21 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 1864629, + "thread": 11 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2046181, + "thread": 1 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2151082, + "thread": 1 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2383601, + "thread": 3 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2604023, + "thread": 29 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2688947, + "thread": 20 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 2816549, + "thread": 6 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3026826, + "thread": 5 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3136287, + "thread": 16 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3368080, + "thread": 20 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3454095, + "thread": 29 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3703915, + "thread": 11 + } + }, + { + "amount": "461.902630128", + "slot": { + "period": 3919442, + "thread": 4 + } + } + ], + "AU12TLoJFFcA9PyfUiRm1wHSHsSry9SPgR1CgikKFKhFRVhXDCan7": [ + { + "amount": "277.820873773", + "slot": { + "period": 59221, + "thread": 19 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 189639, + "thread": 11 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 389248, + "thread": 29 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 524648, + "thread": 24 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 806684, + "thread": 22 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 928230, + "thread": 20 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1105592, + "thread": 9 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1280765, + "thread": 20 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1363489, + "thread": 24 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1611928, + "thread": 5 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1669234, + "thread": 22 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 1908951, + "thread": 19 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2058643, + "thread": 5 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2238736, + "thread": 26 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2321292, + "thread": 21 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2623250, + "thread": 10 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2725023, + "thread": 4 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 2867492, + "thread": 24 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 3038938, + "thread": 20 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 3164610, + "thread": 27 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 3290108, + "thread": 0 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 3553163, + "thread": 18 + } + }, + { + "amount": "277.820873773", + "slot": { + "period": 3766561, + "thread": 29 + } + }, + { + "amount": "277.820873774", + "slot": { + "period": 3804481, + "thread": 17 + } + } + ], + "AU12TMFb7oW65GmYwSYW6FqK9hJMbDiWdEnNKoQczHcShJZUQFHfe": [ + { + "amount": "156.358556836", + "slot": { + "period": 94738, + "thread": 3 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 205487, + "thread": 28 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 478898, + "thread": 24 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 518169, + "thread": 7 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 819106, + "thread": 22 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 975059, + "thread": 2 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1030238, + "thread": 5 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1202592, + "thread": 23 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1433049, + "thread": 10 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1597103, + "thread": 18 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1783740, + "thread": 8 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 1851036, + "thread": 23 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2093580, + "thread": 21 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2169128, + "thread": 0 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2315598, + "thread": 16 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2524379, + "thread": 23 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2711819, + "thread": 21 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 2803786, + "thread": 20 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 3021092, + "thread": 19 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 3283523, + "thread": 1 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 3320816, + "thread": 21 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 3490338, + "thread": 27 + } + }, + { + "amount": "156.358556836", + "slot": { + "period": 3756495, + "thread": 14 + } + }, + { + "amount": "156.358556848", + "slot": { + "period": 3849484, + "thread": 7 + } + } + ], + "AU12TMS4tFewSuk175JVb1BWFsuFLeYP9vRMyENakNbcHFw8kfcSv": [ + { + "amount": "81.959206403", + "slot": { + "period": 101542, + "thread": 24 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 207987, + "thread": 10 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 396126, + "thread": 4 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 494319, + "thread": 16 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 748436, + "thread": 12 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 897585, + "thread": 25 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1065067, + "thread": 25 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1313885, + "thread": 21 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1476582, + "thread": 8 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1501531, + "thread": 26 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1663883, + "thread": 20 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1834890, + "thread": 24 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 1977187, + "thread": 20 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2170357, + "thread": 25 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2295704, + "thread": 26 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2574549, + "thread": 15 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2710049, + "thread": 16 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2877490, + "thread": 25 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 2986224, + "thread": 29 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 3130340, + "thread": 6 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 3404656, + "thread": 11 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 3593307, + "thread": 10 + } + }, + { + "amount": "81.959206403", + "slot": { + "period": 3711800, + "thread": 27 + } + }, + { + "amount": "81.959206401", + "slot": { + "period": 3835781, + "thread": 20 + } + } + ], + "AU12TMg8S4HKGHa7mW4P78bPiNBcQGtnuBEwyLPsRwiYXer1XMBJn": [ + { + "amount": "143.338533223", + "slot": { + "period": 51144, + "thread": 12 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 192420, + "thread": 20 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 425345, + "thread": 24 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 624442, + "thread": 21 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 790807, + "thread": 20 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 967049, + "thread": 7 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1128584, + "thread": 20 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1291181, + "thread": 10 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1479141, + "thread": 21 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1541438, + "thread": 0 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1671553, + "thread": 28 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 1843268, + "thread": 13 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2143432, + "thread": 7 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2186311, + "thread": 23 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2442402, + "thread": 31 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2568095, + "thread": 28 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2685859, + "thread": 16 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 2858971, + "thread": 23 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 3034796, + "thread": 29 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 3183020, + "thread": 10 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 3364764, + "thread": 11 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 3460566, + "thread": 24 + } + }, + { + "amount": "143.338533223", + "slot": { + "period": 3719621, + "thread": 12 + } + }, + { + "amount": "143.338533218", + "slot": { + "period": 3802086, + "thread": 19 + } + } + ], + "AU12TMitfj27VGSvSQdA34VqPhq9Jn76ATYCVHXLmGsu8N67Ybe2v": [ + { + "amount": "439.475884248", + "slot": { + "period": 163614, + "thread": 7 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 274885, + "thread": 22 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 451150, + "thread": 16 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 528973, + "thread": 24 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 739576, + "thread": 17 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 964036, + "thread": 30 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 984277, + "thread": 19 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 1264721, + "thread": 28 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 1408512, + "thread": 18 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 1626801, + "thread": 6 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 1740371, + "thread": 12 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 1825320, + "thread": 19 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2020168, + "thread": 23 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2160175, + "thread": 9 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2409668, + "thread": 12 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2577225, + "thread": 11 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2678791, + "thread": 29 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 2808252, + "thread": 17 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 3109816, + "thread": 3 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 3208943, + "thread": 3 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 3293945, + "thread": 10 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 3510591, + "thread": 21 + } + }, + { + "amount": "439.475884248", + "slot": { + "period": 3757544, + "thread": 19 + } + }, + { + "amount": "439.475884249", + "slot": { + "period": 3781591, + "thread": 2 + } + } + ], + "AU12TNwb5MDk9S1kYBEFzjT8AjfyYG7sYZzjZtQsiX8Js1f7GZajz": [ + { + "amount": "84.525954090", + "slot": { + "period": 26981, + "thread": 26 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 282152, + "thread": 13 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 325923, + "thread": 10 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 623264, + "thread": 19 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 751216, + "thread": 28 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 879797, + "thread": 8 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1101135, + "thread": 0 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1291532, + "thread": 30 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1447242, + "thread": 4 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1641679, + "thread": 9 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1676073, + "thread": 7 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 1906742, + "thread": 27 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2139032, + "thread": 6 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2213149, + "thread": 20 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2407206, + "thread": 25 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2495436, + "thread": 13 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2706908, + "thread": 0 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 2832773, + "thread": 4 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 3073851, + "thread": 4 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 3234612, + "thread": 13 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 3331640, + "thread": 1 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 3615065, + "thread": 6 + } + }, + { + "amount": "84.525954090", + "slot": { + "period": 3770121, + "thread": 11 + } + }, + { + "amount": "84.525954089", + "slot": { + "period": 3861754, + "thread": 22 + } + } + ], + "AU12TQa39x8vNJt33qjJFuaMWNvQKf3CHYwCQD719oAzWPSD7Qpvm": [ + { + "amount": "339.250402961", + "slot": { + "period": 79156, + "thread": 18 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 240149, + "thread": 29 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 344960, + "thread": 0 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 579501, + "thread": 5 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 790868, + "thread": 16 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 959571, + "thread": 13 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1128259, + "thread": 30 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1203815, + "thread": 1 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1423022, + "thread": 14 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1552528, + "thread": 16 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1740272, + "thread": 31 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 1840669, + "thread": 8 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2065595, + "thread": 8 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2201077, + "thread": 29 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2320711, + "thread": 26 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2508279, + "thread": 6 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2663437, + "thread": 4 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 2819471, + "thread": 26 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 3046979, + "thread": 1 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 3241432, + "thread": 10 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 3314368, + "thread": 8 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 3593280, + "thread": 6 + } + }, + { + "amount": "339.250402961", + "slot": { + "period": 3626252, + "thread": 0 + } + }, + { + "amount": "339.250402966", + "slot": { + "period": 3838790, + "thread": 8 + } + } + ], + "AU12TR6YVwyUnBmjRrr63HHQtmFDC9Lzuk1MvcG7kp5PwSVJcpvyY": [ + { + "amount": "87.491358911", + "slot": { + "period": 91292, + "thread": 25 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 300966, + "thread": 1 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 404996, + "thread": 20 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 587346, + "thread": 18 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 663881, + "thread": 7 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 867090, + "thread": 15 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1099365, + "thread": 13 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1198300, + "thread": 17 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1394108, + "thread": 4 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1559286, + "thread": 13 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1769158, + "thread": 14 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 1902623, + "thread": 27 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2022063, + "thread": 1 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2258082, + "thread": 25 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2348764, + "thread": 10 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2518689, + "thread": 24 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2681368, + "thread": 3 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 2862081, + "thread": 2 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 3119253, + "thread": 7 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 3233857, + "thread": 3 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 3432917, + "thread": 26 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 3464949, + "thread": 19 + } + }, + { + "amount": "87.491358911", + "slot": { + "period": 3637072, + "thread": 6 + } + }, + { + "amount": "87.491358919", + "slot": { + "period": 3945941, + "thread": 15 + } + } + ], + "AU12TSyubvVNZGGzwXo2nfDhrxfxK8az5LR7t5iyjg1AwFCys3oxL": [ + { + "amount": "307.549677010", + "slot": { + "period": 136978, + "thread": 30 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 183218, + "thread": 11 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 325569, + "thread": 29 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 605580, + "thread": 29 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 713854, + "thread": 20 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 980705, + "thread": 25 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1049571, + "thread": 14 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1196308, + "thread": 16 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1444212, + "thread": 10 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1644545, + "thread": 14 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1674451, + "thread": 22 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 1882054, + "thread": 31 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2029117, + "thread": 26 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2294812, + "thread": 16 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2312845, + "thread": 18 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2537127, + "thread": 31 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2755025, + "thread": 23 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2797657, + "thread": 16 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 2955352, + "thread": 7 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 3135617, + "thread": 8 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 3440168, + "thread": 26 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 3616190, + "thread": 10 + } + }, + { + "amount": "307.549677010", + "slot": { + "period": 3764853, + "thread": 6 + } + }, + { + "amount": "307.549677017", + "slot": { + "period": 3843164, + "thread": 18 + } + } + ], + "AU12TT2Sck4A3Y4ZA3PSp7gJtwF95grZ4u9hXoWqvfWAuvYobaFM": [ + { + "amount": "113.081289833", + "slot": { + "period": 128193, + "thread": 19 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 271407, + "thread": 28 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 363992, + "thread": 20 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 590879, + "thread": 12 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 792629, + "thread": 8 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 970192, + "thread": 18 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1139013, + "thread": 0 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1304767, + "thread": 7 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1434680, + "thread": 20 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1634459, + "thread": 29 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1800293, + "thread": 24 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1915827, + "thread": 5 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 1977983, + "thread": 10 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2144963, + "thread": 14 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2385785, + "thread": 19 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2540806, + "thread": 22 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2693040, + "thread": 10 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2861910, + "thread": 15 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 2991001, + "thread": 7 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 3181037, + "thread": 26 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 3385654, + "thread": 8 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 3564765, + "thread": 25 + } + }, + { + "amount": "113.081289833", + "slot": { + "period": 3719809, + "thread": 3 + } + }, + { + "amount": "113.081289841", + "slot": { + "period": 3872909, + "thread": 19 + } + } + ], + "AU12TTadXxjpfoC6HEgHRs5oWUZSwc6sk8gszoXpq1XEKdpzZQPfs": [ + { + "amount": "82.278354999", + "slot": { + "period": 96593, + "thread": 6 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 245313, + "thread": 10 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 478127, + "thread": 3 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 528259, + "thread": 1 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 765128, + "thread": 23 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 841485, + "thread": 9 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1136969, + "thread": 8 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1269773, + "thread": 26 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1464140, + "thread": 16 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1568701, + "thread": 13 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1751397, + "thread": 20 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 1911411, + "thread": 26 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2112842, + "thread": 4 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2233147, + "thread": 22 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2385262, + "thread": 26 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2546655, + "thread": 26 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2739767, + "thread": 18 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 2945313, + "thread": 11 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 3084352, + "thread": 14 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 3193236, + "thread": 10 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 3342843, + "thread": 26 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 3551373, + "thread": 12 + } + }, + { + "amount": "82.278354999", + "slot": { + "period": 3687794, + "thread": 24 + } + }, + { + "amount": "82.278355000", + "slot": { + "period": 3785030, + "thread": 14 + } + } + ], + "AU12TUkKUAQSyFtL6Ago34utBMY5QCvC3jcvEr93xAV6VLgrNNK8C": [ + { + "amount": "121.246461475", + "slot": { + "period": 96044, + "thread": 9 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 229004, + "thread": 6 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 462244, + "thread": 24 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 590454, + "thread": 28 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 749112, + "thread": 1 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 822309, + "thread": 28 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1020548, + "thread": 18 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1192676, + "thread": 14 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1394323, + "thread": 19 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1622826, + "thread": 11 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1762720, + "thread": 24 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 1828730, + "thread": 19 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2056164, + "thread": 9 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2206869, + "thread": 14 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2366988, + "thread": 17 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2591239, + "thread": 2 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2698974, + "thread": 4 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2896914, + "thread": 17 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 2979305, + "thread": 10 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 3217726, + "thread": 25 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 3361514, + "thread": 0 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 3452146, + "thread": 24 + } + }, + { + "amount": "121.246461475", + "slot": { + "period": 3626952, + "thread": 4 + } + }, + { + "amount": "121.246461477", + "slot": { + "period": 3934226, + "thread": 6 + } + } + ], + "AU12TVvTMygJWf4Aqm4wLPijro5QUMPsFrAYfZdmDs7Xu4CoffSVc": [ + { + "amount": "221.371826760", + "slot": { + "period": 95861, + "thread": 29 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 276745, + "thread": 17 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 370040, + "thread": 11 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 571917, + "thread": 27 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 735752, + "thread": 15 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 853445, + "thread": 12 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1113483, + "thread": 27 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1194803, + "thread": 25 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1368690, + "thread": 29 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1623191, + "thread": 9 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1701444, + "thread": 5 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1974955, + "thread": 12 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 1982865, + "thread": 26 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 2221750, + "thread": 22 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 2452634, + "thread": 26 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 2549536, + "thread": 19 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 2789350, + "thread": 13 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 2827401, + "thread": 20 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 3075484, + "thread": 1 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 3151373, + "thread": 10 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 3416948, + "thread": 15 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 3525220, + "thread": 12 + } + }, + { + "amount": "221.371826760", + "slot": { + "period": 3720819, + "thread": 21 + } + }, + { + "amount": "221.371826772", + "slot": { + "period": 3937379, + "thread": 4 + } + } + ], + "AU12TXzPNF1tDGP9qk9P3yDX8zncXW4jSWt13XzT7ueTVsVKxHREX": [ + { + "amount": "262.221802790", + "slot": { + "period": 116886, + "thread": 22 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 279736, + "thread": 17 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 451480, + "thread": 18 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 615574, + "thread": 27 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 706180, + "thread": 24 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 967568, + "thread": 23 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1130538, + "thread": 29 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1232059, + "thread": 1 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1450075, + "thread": 31 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1503763, + "thread": 7 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1793461, + "thread": 21 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 1896262, + "thread": 4 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2129563, + "thread": 15 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2229305, + "thread": 12 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2393437, + "thread": 26 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2519687, + "thread": 18 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2627722, + "thread": 29 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 2915079, + "thread": 24 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 3109743, + "thread": 23 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 3243488, + "thread": 9 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 3371004, + "thread": 2 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 3499433, + "thread": 0 + } + }, + { + "amount": "262.221802790", + "slot": { + "period": 3719882, + "thread": 10 + } + }, + { + "amount": "262.221802785", + "slot": { + "period": 3844303, + "thread": 13 + } + } + ], + "AU12TYfXiuLyPJo8R3pfx6pLiAmM9mKFkpYPcDL2nBz87ojvfDWBh": [ + { + "amount": "198.984568683", + "slot": { + "period": 45671, + "thread": 10 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 244871, + "thread": 21 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 460906, + "thread": 15 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 541130, + "thread": 22 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 740824, + "thread": 5 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 935651, + "thread": 2 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1057313, + "thread": 12 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1311540, + "thread": 24 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1357775, + "thread": 16 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1633846, + "thread": 9 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1768967, + "thread": 15 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 1968893, + "thread": 3 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2022971, + "thread": 26 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2241874, + "thread": 20 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2426145, + "thread": 19 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2494716, + "thread": 20 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2766712, + "thread": 6 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 2942152, + "thread": 14 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 3109805, + "thread": 0 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 3154410, + "thread": 25 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 3328023, + "thread": 15 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 3545527, + "thread": 8 + } + }, + { + "amount": "198.984568683", + "slot": { + "period": 3749366, + "thread": 1 + } + }, + { + "amount": "198.984568689", + "slot": { + "period": 3911384, + "thread": 14 + } + } + ], + "AU12TZifzNvxmErrAwukDzvXRZr3EJu5WDZFpfKMw3Xw7gpcV7S7p": [ + { + "amount": "83.533010303", + "slot": { + "period": 84877, + "thread": 14 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 287576, + "thread": 4 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 463335, + "thread": 27 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 623105, + "thread": 16 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 662389, + "thread": 0 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 890753, + "thread": 0 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1067151, + "thread": 4 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1216922, + "thread": 24 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1472088, + "thread": 10 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1553432, + "thread": 26 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1691293, + "thread": 13 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 1811648, + "thread": 6 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2014845, + "thread": 20 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2163713, + "thread": 19 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2321685, + "thread": 14 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2575505, + "thread": 23 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2718988, + "thread": 17 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 2831969, + "thread": 19 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 3017357, + "thread": 8 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 3226756, + "thread": 26 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 3375311, + "thread": 16 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 3493257, + "thread": 26 + } + }, + { + "amount": "83.533010303", + "slot": { + "period": 3745731, + "thread": 22 + } + }, + { + "amount": "83.533010309", + "slot": { + "period": 3938304, + "thread": 5 + } + } + ], + "AU12Tabrz7x9NVAa7SUWJhwtaCb2F7oDSNptPbqiFETuqsVDrNPv1": [ + { + "amount": "257.726272121", + "slot": { + "period": 47573, + "thread": 0 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 203795, + "thread": 26 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 457462, + "thread": 15 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 565067, + "thread": 29 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 818582, + "thread": 29 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 853135, + "thread": 0 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 983241, + "thread": 16 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 1301008, + "thread": 10 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 1319814, + "thread": 22 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 1596577, + "thread": 10 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 1796451, + "thread": 2 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 1810511, + "thread": 30 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2120960, + "thread": 30 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2266151, + "thread": 20 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2447334, + "thread": 18 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2542234, + "thread": 30 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2655944, + "thread": 17 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 2941669, + "thread": 7 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 3026215, + "thread": 0 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 3202328, + "thread": 11 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 3341113, + "thread": 4 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 3616802, + "thread": 10 + } + }, + { + "amount": "257.726272121", + "slot": { + "period": 3623724, + "thread": 5 + } + }, + { + "amount": "257.726272113", + "slot": { + "period": 3787786, + "thread": 18 + } + } + ], + "AU12Tc1Mmp6ncSA2bfKvSRGSyMTtRTGrQ1eJwJfLmKhgwyudSoLHZ": [ + { + "amount": "468.332631689", + "slot": { + "period": 166815, + "thread": 21 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 318361, + "thread": 18 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 405271, + "thread": 9 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 507537, + "thread": 15 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 794108, + "thread": 16 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 883906, + "thread": 7 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1072680, + "thread": 0 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1246441, + "thread": 23 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1394130, + "thread": 12 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1607062, + "thread": 10 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1781571, + "thread": 6 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 1845067, + "thread": 1 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2051637, + "thread": 15 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2242654, + "thread": 25 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2357816, + "thread": 21 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2590951, + "thread": 15 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2647419, + "thread": 3 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2863484, + "thread": 5 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 2969079, + "thread": 2 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 3180255, + "thread": 15 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 3328470, + "thread": 23 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 3609339, + "thread": 11 + } + }, + { + "amount": "468.332631689", + "slot": { + "period": 3729781, + "thread": 16 + } + }, + { + "amount": "468.332631698", + "slot": { + "period": 3941408, + "thread": 17 + } + } + ], + "AU12TcEtBRqcTwiXCuXuLrPNYY7PJZhF628DNXSuskREYNsF6XNX7": [ + { + "amount": "155.143559129", + "slot": { + "period": 115209, + "thread": 18 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 214175, + "thread": 13 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 476938, + "thread": 3 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 530398, + "thread": 10 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 784984, + "thread": 10 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 926307, + "thread": 9 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1114788, + "thread": 8 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1300083, + "thread": 14 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1356301, + "thread": 1 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1520921, + "thread": 19 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1754993, + "thread": 6 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 1949662, + "thread": 26 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2108839, + "thread": 19 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2224206, + "thread": 1 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2457745, + "thread": 20 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2495660, + "thread": 1 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2755218, + "thread": 11 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 2907443, + "thread": 21 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 3068105, + "thread": 16 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 3270687, + "thread": 28 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 3351734, + "thread": 10 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 3505169, + "thread": 25 + } + }, + { + "amount": "155.143559129", + "slot": { + "period": 3779772, + "thread": 6 + } + }, + { + "amount": "155.143559128", + "slot": { + "period": 3859547, + "thread": 19 + } + } + ], + "AU12TcFA4rfguBV6wiQ2wjTDZKtcQDKh5HXtPLJLu6NyeP84kchn7": [ + { + "amount": "144.745002222", + "slot": { + "period": 18142, + "thread": 15 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 215801, + "thread": 17 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 476644, + "thread": 3 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 548330, + "thread": 5 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 709747, + "thread": 20 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 940695, + "thread": 4 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1094595, + "thread": 20 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1307151, + "thread": 6 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1452939, + "thread": 11 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1494165, + "thread": 15 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1669906, + "thread": 29 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 1866058, + "thread": 20 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2097277, + "thread": 10 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2239595, + "thread": 26 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2325418, + "thread": 3 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2497020, + "thread": 7 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2633779, + "thread": 21 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2934164, + "thread": 1 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 2988413, + "thread": 18 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 3205202, + "thread": 18 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 3306201, + "thread": 15 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 3515279, + "thread": 26 + } + }, + { + "amount": "144.745002222", + "slot": { + "period": 3764856, + "thread": 16 + } + }, + { + "amount": "144.745002223", + "slot": { + "period": 3787956, + "thread": 18 + } + } + ], + "AU12TcZCuTQjH158nfP1hdBB1QFw9uEfpNDNhhGrtFYAFNmnd7PCh": [ + { + "amount": "420.485748632", + "slot": { + "period": 80280, + "thread": 16 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 270476, + "thread": 7 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 370280, + "thread": 4 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 528619, + "thread": 31 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 661548, + "thread": 11 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 981610, + "thread": 24 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 997765, + "thread": 27 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 1227149, + "thread": 10 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 1442944, + "thread": 30 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 1585204, + "thread": 23 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 1723723, + "thread": 26 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 1965288, + "thread": 23 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2113804, + "thread": 18 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2154111, + "thread": 11 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2315194, + "thread": 29 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2519781, + "thread": 9 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2648848, + "thread": 11 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2935729, + "thread": 6 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 2961249, + "thread": 21 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 3149616, + "thread": 30 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 3438146, + "thread": 23 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 3460809, + "thread": 9 + } + }, + { + "amount": "420.485748632", + "slot": { + "period": 3673891, + "thread": 4 + } + }, + { + "amount": "420.485748621", + "slot": { + "period": 3880174, + "thread": 10 + } + } + ], + "AU12TeAW5isNm9XxbehbYEqzsgcdjSM3aeUL2FVPrNXF4aFxuhcCq": [ + { + "amount": "199.461330360", + "slot": { + "period": 38803, + "thread": 28 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 192395, + "thread": 10 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 334299, + "thread": 28 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 623170, + "thread": 21 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 700186, + "thread": 6 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 887766, + "thread": 6 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1079233, + "thread": 8 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1216404, + "thread": 28 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1349483, + "thread": 10 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1582016, + "thread": 10 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1808036, + "thread": 29 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 1892854, + "thread": 19 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2094103, + "thread": 31 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2293536, + "thread": 22 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2309507, + "thread": 15 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2476869, + "thread": 11 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2706595, + "thread": 0 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2811719, + "thread": 27 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 2996036, + "thread": 16 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 3249161, + "thread": 14 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 3298070, + "thread": 27 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 3528358, + "thread": 21 + } + }, + { + "amount": "199.461330360", + "slot": { + "period": 3747081, + "thread": 3 + } + }, + { + "amount": "199.461330358", + "slot": { + "period": 3825762, + "thread": 1 + } + } + ], + "AU12TeUSyAvvf7dN53QFVeuQ1mfW5XLHQdb2AkRYi8XkWkSraHcPt": [ + { + "amount": "430.968837167", + "slot": { + "period": 132983, + "thread": 2 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 294390, + "thread": 31 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 325928, + "thread": 13 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 497008, + "thread": 2 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 689227, + "thread": 20 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 821843, + "thread": 10 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 987596, + "thread": 23 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1271778, + "thread": 18 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1332239, + "thread": 28 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1605578, + "thread": 3 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1762731, + "thread": 31 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1962735, + "thread": 25 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 1979767, + "thread": 31 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2230548, + "thread": 9 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2409845, + "thread": 13 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2615847, + "thread": 4 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2721743, + "thread": 11 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2904789, + "thread": 23 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 2962284, + "thread": 19 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 3181822, + "thread": 16 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 3309208, + "thread": 20 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 3481326, + "thread": 22 + } + }, + { + "amount": "430.968837167", + "slot": { + "period": 3671291, + "thread": 27 + } + }, + { + "amount": "430.968837161", + "slot": { + "period": 3892382, + "thread": 11 + } + } + ], + "AU12TgWeG2YwwJrhqS13MkR3sd9Y3k4c76jrscqMY7F7A49QxHnSV": [ + { + "amount": "281.367586367", + "slot": { + "period": 93482, + "thread": 8 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 213704, + "thread": 19 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 329427, + "thread": 6 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 613656, + "thread": 25 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 681754, + "thread": 9 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 877164, + "thread": 4 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1144138, + "thread": 7 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1218145, + "thread": 2 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1451575, + "thread": 7 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1580669, + "thread": 6 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1804338, + "thread": 28 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 1957923, + "thread": 2 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2059953, + "thread": 2 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2145645, + "thread": 1 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2366053, + "thread": 15 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2478931, + "thread": 8 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2743273, + "thread": 23 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2796887, + "thread": 31 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 2957718, + "thread": 30 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 3186985, + "thread": 0 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 3383761, + "thread": 12 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 3568433, + "thread": 25 + } + }, + { + "amount": "281.367586367", + "slot": { + "period": 3716937, + "thread": 30 + } + }, + { + "amount": "281.367586376", + "slot": { + "period": 3891739, + "thread": 7 + } + } + ], + "AU12Th4VEpNGuo7jeg6kooqNPFzmL6QVG9EDLuKgLK8cKQHtWi9rE": [ + { + "amount": "78.126557064", + "slot": { + "period": 139092, + "thread": 0 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 233193, + "thread": 4 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 469192, + "thread": 23 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 628486, + "thread": 0 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 679342, + "thread": 19 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 849893, + "thread": 17 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1042221, + "thread": 14 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1159199, + "thread": 13 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1369704, + "thread": 29 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1511294, + "thread": 22 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1757786, + "thread": 27 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1921729, + "thread": 24 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 1979852, + "thread": 5 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 2151683, + "thread": 1 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 2379554, + "thread": 27 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 2537890, + "thread": 0 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 2635322, + "thread": 28 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 2807660, + "thread": 7 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 3024263, + "thread": 25 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 3201406, + "thread": 8 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 3368900, + "thread": 25 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 3582162, + "thread": 7 + } + }, + { + "amount": "78.126557064", + "slot": { + "period": 3662926, + "thread": 29 + } + }, + { + "amount": "78.126557073", + "slot": { + "period": 3944051, + "thread": 8 + } + } + ], + "AU12TitiTDGtT9iHS97MUim2msjVuuvEemqYoNhRNWYMm5VfcjT32": [ + { + "amount": "268.375616009", + "slot": { + "period": 45297, + "thread": 25 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 177201, + "thread": 26 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 425643, + "thread": 9 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 557008, + "thread": 22 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 735246, + "thread": 12 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 839026, + "thread": 15 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1026457, + "thread": 24 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1313486, + "thread": 20 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1338000, + "thread": 27 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1555660, + "thread": 19 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1728142, + "thread": 17 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 1854697, + "thread": 26 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2112325, + "thread": 16 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2172267, + "thread": 12 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2337871, + "thread": 6 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2479545, + "thread": 31 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2667739, + "thread": 25 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 2856919, + "thread": 23 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 3041265, + "thread": 7 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 3231770, + "thread": 17 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 3431090, + "thread": 5 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 3557382, + "thread": 25 + } + }, + { + "amount": "268.375616009", + "slot": { + "period": 3779387, + "thread": 2 + } + }, + { + "amount": "268.375616000", + "slot": { + "period": 3901163, + "thread": 16 + } + } + ], + "AU12Tj4J1vbauFZnYHcgvU1F1LQz2MhWQDT1Fk5tS2ZuVvJQLaKpY": [ + { + "amount": "171.167710020", + "slot": { + "period": 157184, + "thread": 31 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 260479, + "thread": 24 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 413874, + "thread": 5 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 650466, + "thread": 8 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 724345, + "thread": 7 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 866480, + "thread": 23 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1136403, + "thread": 29 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1199766, + "thread": 3 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1345771, + "thread": 16 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1630782, + "thread": 28 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1791194, + "thread": 16 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1953643, + "thread": 22 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 1998502, + "thread": 0 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2204975, + "thread": 20 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2404715, + "thread": 13 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2615128, + "thread": 11 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2685026, + "thread": 21 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2882590, + "thread": 10 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 2966961, + "thread": 5 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 3154628, + "thread": 27 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 3402077, + "thread": 14 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 3452150, + "thread": 17 + } + }, + { + "amount": "171.167710020", + "slot": { + "period": 3664471, + "thread": 1 + } + }, + { + "amount": "171.167710010", + "slot": { + "period": 3864714, + "thread": 16 + } + } + ], + "AU12Tk67eVZyR3myKsesp9mnn9x6ymQ52NAR8kuRoAy3joUzAxPsf": [ + { + "amount": "679.708738564", + "slot": { + "period": 61670, + "thread": 15 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 247656, + "thread": 6 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 364147, + "thread": 20 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 508085, + "thread": 19 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 759810, + "thread": 25 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 909188, + "thread": 24 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1062150, + "thread": 5 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1174854, + "thread": 8 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1460988, + "thread": 26 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1527878, + "thread": 20 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1740403, + "thread": 17 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1903361, + "thread": 13 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 1992383, + "thread": 6 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2231847, + "thread": 30 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2462300, + "thread": 27 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2525198, + "thread": 18 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2672121, + "thread": 16 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2937701, + "thread": 3 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 2955086, + "thread": 29 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 3133218, + "thread": 22 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 3323369, + "thread": 30 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 3607528, + "thread": 15 + } + }, + { + "amount": "679.708738564", + "slot": { + "period": 3747605, + "thread": 24 + } + }, + { + "amount": "679.708738561", + "slot": { + "period": 3912088, + "thread": 13 + } + } + ], + "AU12TkxpCm2DjdQehWUsjPKqjFm7VkY916F39tBbNra71jTSUnmky": [ + { + "amount": "150.678716908", + "slot": { + "period": 77813, + "thread": 3 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 323207, + "thread": 10 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 356961, + "thread": 15 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 575062, + "thread": 28 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 691172, + "thread": 2 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 854410, + "thread": 1 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1015842, + "thread": 15 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1249581, + "thread": 14 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1386040, + "thread": 8 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1638014, + "thread": 25 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1781083, + "thread": 9 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 1976355, + "thread": 5 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2101412, + "thread": 15 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2266745, + "thread": 9 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2447635, + "thread": 28 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2571480, + "thread": 9 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2719513, + "thread": 1 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 2879662, + "thread": 2 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 3058367, + "thread": 2 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 3209920, + "thread": 14 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 3293641, + "thread": 20 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 3458347, + "thread": 6 + } + }, + { + "amount": "150.678716908", + "slot": { + "period": 3662777, + "thread": 16 + } + }, + { + "amount": "150.678716919", + "slot": { + "period": 3905956, + "thread": 31 + } + } + ], + "AU12TmQnsSEQUf6PuxskcdKd8g2To9jxMEstfTfZpN3R69HFTZsCA": [ + { + "amount": "232.998728086", + "slot": { + "period": 104885, + "thread": 31 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 303642, + "thread": 5 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 464073, + "thread": 5 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 509911, + "thread": 9 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 696159, + "thread": 7 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 956882, + "thread": 2 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1108377, + "thread": 18 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1269364, + "thread": 5 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1343813, + "thread": 2 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1480317, + "thread": 6 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1706581, + "thread": 3 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 1942585, + "thread": 24 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2021345, + "thread": 9 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2205704, + "thread": 30 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2362294, + "thread": 9 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2504294, + "thread": 13 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2742055, + "thread": 24 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2852068, + "thread": 24 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 2981053, + "thread": 26 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 3250353, + "thread": 25 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 3411086, + "thread": 7 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 3617391, + "thread": 12 + } + }, + { + "amount": "232.998728086", + "slot": { + "period": 3704725, + "thread": 13 + } + }, + { + "amount": "232.998728091", + "slot": { + "period": 3871735, + "thread": 21 + } + } + ], + "AU12TmcyReMU4axxSwF7n9xK3XouU1ciiFh3uS5RDT4y8CP8s8T9Z": [ + { + "amount": "71.054712878", + "slot": { + "period": 99832, + "thread": 25 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 255699, + "thread": 18 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 384910, + "thread": 8 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 596302, + "thread": 16 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 655063, + "thread": 11 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 840652, + "thread": 26 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1124156, + "thread": 11 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1285172, + "thread": 17 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1414055, + "thread": 6 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1495680, + "thread": 31 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1683662, + "thread": 16 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 1816372, + "thread": 10 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2018575, + "thread": 31 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2269625, + "thread": 29 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2390360, + "thread": 30 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2599531, + "thread": 15 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2769394, + "thread": 22 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2883928, + "thread": 27 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 2977774, + "thread": 11 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 3172140, + "thread": 0 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 3440315, + "thread": 26 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 3516782, + "thread": 3 + } + }, + { + "amount": "71.054712878", + "slot": { + "period": 3734926, + "thread": 22 + } + }, + { + "amount": "71.054712867", + "slot": { + "period": 3867847, + "thread": 13 + } + } + ], + "AU12TmrY5RfRPHo8xR8ACFBb2Eo297BcvVHkvQgPqtYu63sC2qxLo": [ + { + "amount": "99.582557357", + "slot": { + "period": 135556, + "thread": 29 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 180604, + "thread": 31 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 354328, + "thread": 19 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 606577, + "thread": 29 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 793299, + "thread": 13 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 951143, + "thread": 4 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1008699, + "thread": 14 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1269422, + "thread": 7 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1473391, + "thread": 29 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1490288, + "thread": 1 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1746678, + "thread": 10 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 1916055, + "thread": 2 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2030000, + "thread": 8 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2197349, + "thread": 5 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2445168, + "thread": 5 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2487165, + "thread": 4 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2719171, + "thread": 13 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2804033, + "thread": 9 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 2989223, + "thread": 28 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 3201354, + "thread": 22 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 3430857, + "thread": 14 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 3545737, + "thread": 4 + } + }, + { + "amount": "99.582557357", + "slot": { + "period": 3777002, + "thread": 23 + } + }, + { + "amount": "99.582557368", + "slot": { + "period": 3838310, + "thread": 4 + } + } + ], + "AU12Tn2mqb7EABbQwaxarkLU5L4qiHx7XQ9UDarxJrFxf2N67C5Kz": [ + { + "amount": "310.213551057", + "slot": { + "period": 124638, + "thread": 17 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 235735, + "thread": 19 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 336967, + "thread": 5 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 633310, + "thread": 25 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 782353, + "thread": 14 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 867346, + "thread": 23 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1013526, + "thread": 6 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1179597, + "thread": 5 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1464397, + "thread": 28 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1492696, + "thread": 0 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1673985, + "thread": 0 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 1915863, + "thread": 2 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2006429, + "thread": 13 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2205440, + "thread": 16 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2420660, + "thread": 22 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2545156, + "thread": 23 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2779595, + "thread": 27 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 2879650, + "thread": 14 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 3050191, + "thread": 7 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 3234106, + "thread": 4 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 3442178, + "thread": 21 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 3451043, + "thread": 13 + } + }, + { + "amount": "310.213551057", + "slot": { + "period": 3761865, + "thread": 11 + } + }, + { + "amount": "310.213551051", + "slot": { + "period": 3926545, + "thread": 30 + } + } + ], + "AU12TnuLR25KHmLyH2PCanUBKayfJPsFktoVrWyyvtXZDrzchHea3": [ + { + "amount": "131.309477814", + "slot": { + "period": 120301, + "thread": 30 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 268916, + "thread": 6 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 477859, + "thread": 12 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 645749, + "thread": 18 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 797387, + "thread": 23 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 953670, + "thread": 5 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1016383, + "thread": 16 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1259730, + "thread": 5 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1477932, + "thread": 7 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1509210, + "thread": 23 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1728729, + "thread": 8 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 1972471, + "thread": 11 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2042955, + "thread": 0 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2260393, + "thread": 3 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2412226, + "thread": 7 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2558389, + "thread": 3 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2641938, + "thread": 14 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 2902174, + "thread": 15 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 3020851, + "thread": 5 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 3158817, + "thread": 30 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 3351772, + "thread": 21 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 3537430, + "thread": 17 + } + }, + { + "amount": "131.309477814", + "slot": { + "period": 3698869, + "thread": 29 + } + }, + { + "amount": "131.309477819", + "slot": { + "period": 3798791, + "thread": 0 + } + } + ], + "AU12TpspYHukhKw9RkUR2zFV1SPFDytmM46y6fNv5yzjg29uVEavU": [ + { + "amount": "6458.821671342", + "slot": { + "period": 141037, + "thread": 21 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 216827, + "thread": 22 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 398067, + "thread": 5 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 584544, + "thread": 3 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 815565, + "thread": 2 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 969031, + "thread": 28 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1050154, + "thread": 15 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1239069, + "thread": 16 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1459051, + "thread": 21 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1509912, + "thread": 29 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1795199, + "thread": 1 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 1934558, + "thread": 14 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2075081, + "thread": 14 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2217178, + "thread": 29 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2352294, + "thread": 19 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2543859, + "thread": 31 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2782969, + "thread": 24 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 2901604, + "thread": 19 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 3034625, + "thread": 27 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 3216837, + "thread": 30 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 3427901, + "thread": 19 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 3464832, + "thread": 5 + } + }, + { + "amount": "6458.821671342", + "slot": { + "period": 3650837, + "thread": 13 + } + }, + { + "amount": "6458.821671354", + "slot": { + "period": 3816925, + "thread": 1 + } + } + ], + "AU12TqGKURvnDjTGnfFpkNSJ5qtieAzwpVwKMKhQZS6EHmZ7dyLFx": [ + { + "amount": "683.701252950", + "slot": { + "period": 113426, + "thread": 7 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 216697, + "thread": 17 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 473533, + "thread": 26 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 568792, + "thread": 22 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 770745, + "thread": 29 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 903674, + "thread": 22 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1103170, + "thread": 16 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1275099, + "thread": 30 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1327900, + "thread": 23 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1592779, + "thread": 2 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1680345, + "thread": 4 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 1859334, + "thread": 5 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2102362, + "thread": 29 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2266601, + "thread": 14 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2341809, + "thread": 7 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2579487, + "thread": 7 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2783604, + "thread": 17 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 2797015, + "thread": 16 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 3032432, + "thread": 1 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 3149169, + "thread": 29 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 3377209, + "thread": 23 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 3571927, + "thread": 6 + } + }, + { + "amount": "683.701252950", + "slot": { + "period": 3640027, + "thread": 8 + } + }, + { + "amount": "683.701252938", + "slot": { + "period": 3811227, + "thread": 14 + } + } + ], + "AU12TrvWhcjZT8V5s2Q8yyh33ycKSPxjt6BE844qGiTab2N75bzZx": [ + { + "amount": "322.069237216", + "slot": { + "period": 115256, + "thread": 25 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 244595, + "thread": 9 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 462179, + "thread": 5 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 503922, + "thread": 20 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 787982, + "thread": 23 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 860666, + "thread": 6 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1043587, + "thread": 18 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1254912, + "thread": 26 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1435750, + "thread": 12 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1573412, + "thread": 25 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1746186, + "thread": 21 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 1923325, + "thread": 4 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2068507, + "thread": 1 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2144025, + "thread": 21 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2409588, + "thread": 24 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2527348, + "thread": 29 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2773546, + "thread": 13 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 2796581, + "thread": 22 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 3023217, + "thread": 13 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 3253045, + "thread": 25 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 3338094, + "thread": 3 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 3568554, + "thread": 26 + } + }, + { + "amount": "322.069237216", + "slot": { + "period": 3710447, + "thread": 28 + } + }, + { + "amount": "322.069237212", + "slot": { + "period": 3831916, + "thread": 13 + } + } + ], + "AU12Tsks2PsnDzmF9h1fr8CA9pdn2rka1ZZXxw13YTNTTkZA1S8nP": [ + { + "amount": "85.255507171", + "slot": { + "period": 36283, + "thread": 7 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 266585, + "thread": 23 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 331383, + "thread": 19 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 579221, + "thread": 6 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 656750, + "thread": 12 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 929717, + "thread": 11 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1051377, + "thread": 13 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1193243, + "thread": 28 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1349805, + "thread": 12 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1608916, + "thread": 30 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1707140, + "thread": 31 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 1812303, + "thread": 6 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2056544, + "thread": 31 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2177826, + "thread": 20 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2383814, + "thread": 24 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2557104, + "thread": 17 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2764236, + "thread": 26 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 2880091, + "thread": 20 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 3014351, + "thread": 27 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 3132808, + "thread": 2 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 3444529, + "thread": 16 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 3565362, + "thread": 10 + } + }, + { + "amount": "85.255507171", + "slot": { + "period": 3675499, + "thread": 4 + } + }, + { + "amount": "85.255507177", + "slot": { + "period": 3816402, + "thread": 21 + } + } + ], + "AU12TstEPh9edY6C9MinHhHM3wpW3YAhw5LQm8f5nQ6cYAB18bMhS": [ + { + "amount": "297.801641962", + "slot": { + "period": 96169, + "thread": 27 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 208633, + "thread": 31 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 463348, + "thread": 16 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 544516, + "thread": 20 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 727900, + "thread": 18 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 927519, + "thread": 14 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1055873, + "thread": 15 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1205124, + "thread": 3 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1476175, + "thread": 2 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1621012, + "thread": 4 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1682216, + "thread": 10 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 1881147, + "thread": 26 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2101801, + "thread": 29 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2272557, + "thread": 2 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2412589, + "thread": 20 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2561684, + "thread": 18 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2713698, + "thread": 8 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2863590, + "thread": 11 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 2990859, + "thread": 3 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 3275511, + "thread": 3 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 3307830, + "thread": 16 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 3614262, + "thread": 7 + } + }, + { + "amount": "297.801641962", + "slot": { + "period": 3776743, + "thread": 17 + } + }, + { + "amount": "297.801641964", + "slot": { + "period": 3919251, + "thread": 19 + } + } + ], + "AU12TtRdzeYFJj8VzFiUuC3kB7xuzTuASYk63zEVKJ57LZnuGJH3u": [ + { + "amount": "367.768824445", + "slot": { + "period": 79682, + "thread": 8 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 250040, + "thread": 21 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 409582, + "thread": 6 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 546184, + "thread": 30 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 714445, + "thread": 0 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 938852, + "thread": 12 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1092166, + "thread": 20 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1264829, + "thread": 23 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1319785, + "thread": 14 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1539203, + "thread": 28 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1676213, + "thread": 19 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 1949156, + "thread": 22 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2059972, + "thread": 9 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2185293, + "thread": 6 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2397189, + "thread": 2 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2492933, + "thread": 14 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2781770, + "thread": 9 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 2873357, + "thread": 18 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 3032876, + "thread": 22 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 3257813, + "thread": 22 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 3414387, + "thread": 8 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 3479353, + "thread": 25 + } + }, + { + "amount": "367.768824445", + "slot": { + "period": 3673641, + "thread": 0 + } + }, + { + "amount": "367.768824448", + "slot": { + "period": 3815260, + "thread": 20 + } + } + ], + "AU12TugCc5HVoCkzXWWaFDURWprAQ4qLUvVkoQTL1e4A8izR7Z8KB": [ + { + "amount": "196.831925494", + "slot": { + "period": 81569, + "thread": 16 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 233902, + "thread": 21 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 427438, + "thread": 26 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 565791, + "thread": 6 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 707105, + "thread": 18 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 821529, + "thread": 7 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 984130, + "thread": 23 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 1185097, + "thread": 26 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 1452511, + "thread": 9 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 1610127, + "thread": 17 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 1667569, + "thread": 30 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 1860398, + "thread": 27 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2032172, + "thread": 26 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2158716, + "thread": 3 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2311110, + "thread": 13 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2511403, + "thread": 24 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2652572, + "thread": 17 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 2863112, + "thread": 26 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 3102435, + "thread": 25 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 3180774, + "thread": 9 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 3422889, + "thread": 20 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 3571227, + "thread": 4 + } + }, + { + "amount": "196.831925494", + "slot": { + "period": 3653432, + "thread": 30 + } + }, + { + "amount": "196.831925499", + "slot": { + "period": 3891826, + "thread": 25 + } + } + ], + "AU12TukrJ6GigHGoscveqVaSPXUsTy7GYTPSsLVMAseDPUbKjdQKn": [ + { + "amount": "202.661365899", + "slot": { + "period": 150023, + "thread": 29 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 313179, + "thread": 6 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 456760, + "thread": 12 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 619594, + "thread": 18 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 715273, + "thread": 20 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 869693, + "thread": 29 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1128933, + "thread": 22 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1234229, + "thread": 25 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1455069, + "thread": 14 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1619105, + "thread": 1 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1666151, + "thread": 25 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 1932353, + "thread": 19 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2134333, + "thread": 18 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2280399, + "thread": 14 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2308732, + "thread": 28 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2480356, + "thread": 16 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2668443, + "thread": 15 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2813163, + "thread": 2 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 2994104, + "thread": 24 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 3127300, + "thread": 1 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 3416759, + "thread": 14 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 3464837, + "thread": 30 + } + }, + { + "amount": "202.661365899", + "slot": { + "period": 3726581, + "thread": 24 + } + }, + { + "amount": "202.661365896", + "slot": { + "period": 3861681, + "thread": 19 + } + } + ], + "AU12TumwzaRuJJE9Neq11capo2ugtyf7A3DnqTeWKsqQ64EMwkHmz": [ + { + "amount": "145.156476219", + "slot": { + "period": 33896, + "thread": 5 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 255273, + "thread": 25 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 339070, + "thread": 24 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 493212, + "thread": 13 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 681040, + "thread": 24 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 915617, + "thread": 0 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1126603, + "thread": 12 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1267751, + "thread": 9 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1457854, + "thread": 23 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1639312, + "thread": 10 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1804543, + "thread": 10 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 1861070, + "thread": 15 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2118094, + "thread": 13 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2233053, + "thread": 1 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2386473, + "thread": 0 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2612969, + "thread": 2 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2779017, + "thread": 7 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 2822091, + "thread": 18 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 3057310, + "thread": 21 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 3150528, + "thread": 0 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 3370661, + "thread": 8 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 3565480, + "thread": 27 + } + }, + { + "amount": "145.156476219", + "slot": { + "period": 3762267, + "thread": 6 + } + }, + { + "amount": "145.156476210", + "slot": { + "period": 3925285, + "thread": 21 + } + } + ], + "AU12TvUscYCNN4VEFu47Wj7SjazzLiGbBgDeBy2m8XLcs2KKNx2jL": [ + { + "amount": "209.674220624", + "slot": { + "period": 116815, + "thread": 5 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 262626, + "thread": 29 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 439939, + "thread": 4 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 591513, + "thread": 28 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 786052, + "thread": 13 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 869410, + "thread": 30 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1063832, + "thread": 17 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1160802, + "thread": 23 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1367010, + "thread": 18 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1544122, + "thread": 17 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1728085, + "thread": 19 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 1893034, + "thread": 13 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2092878, + "thread": 2 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2243708, + "thread": 24 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2325396, + "thread": 29 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2613619, + "thread": 26 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2728110, + "thread": 27 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 2896738, + "thread": 4 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 3114458, + "thread": 13 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 3224308, + "thread": 24 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 3395863, + "thread": 19 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 3603822, + "thread": 21 + } + }, + { + "amount": "209.674220624", + "slot": { + "period": 3765975, + "thread": 6 + } + }, + { + "amount": "209.674220627", + "slot": { + "period": 3834959, + "thread": 18 + } + } + ], + "AU12TvjC7deN17THV12vZKmip1Jays488bi6A897sHUA6nsy5aEF": [ + { + "amount": "263.882040109", + "slot": { + "period": 83740, + "thread": 16 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 274643, + "thread": 12 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 485879, + "thread": 16 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 508697, + "thread": 31 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 750073, + "thread": 5 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 845533, + "thread": 17 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1029366, + "thread": 17 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1267359, + "thread": 15 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1422674, + "thread": 19 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1535638, + "thread": 30 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1653954, + "thread": 23 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 1918772, + "thread": 9 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2101018, + "thread": 25 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2251179, + "thread": 6 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2342992, + "thread": 6 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2620598, + "thread": 20 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2757914, + "thread": 10 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2849303, + "thread": 10 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 2988760, + "thread": 5 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 3147273, + "thread": 1 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 3386119, + "thread": 31 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 3515319, + "thread": 2 + } + }, + { + "amount": "263.882040109", + "slot": { + "period": 3707246, + "thread": 30 + } + }, + { + "amount": "263.882040103", + "slot": { + "period": 3909940, + "thread": 7 + } + } + ], + "AU12Tw19yg9G4PxwsAV9wCUaSPTT8LiSdFauuHxeNZ2sMFhx5ozUA": [ + { + "amount": "62.773174834", + "slot": { + "period": 112649, + "thread": 11 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 204023, + "thread": 25 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 335859, + "thread": 9 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 547329, + "thread": 3 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 771458, + "thread": 17 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 917021, + "thread": 15 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1088041, + "thread": 12 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1240842, + "thread": 28 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1346146, + "thread": 18 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1549554, + "thread": 18 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1749955, + "thread": 22 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1968367, + "thread": 12 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 1994645, + "thread": 9 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 2211880, + "thread": 24 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 2384529, + "thread": 17 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 2543453, + "thread": 26 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 2730196, + "thread": 9 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 2861142, + "thread": 7 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 3014904, + "thread": 5 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 3168249, + "thread": 16 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 3440034, + "thread": 5 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 3510672, + "thread": 11 + } + }, + { + "amount": "62.773174834", + "slot": { + "period": 3649983, + "thread": 22 + } + }, + { + "amount": "62.773174842", + "slot": { + "period": 3823410, + "thread": 13 + } + } + ], + "AU12Tw3UrvdEqk2QYnxCq9ioFGe8rxZR2PJscYCrytojLWSjKhf83": [ + { + "amount": "469.289630332", + "slot": { + "period": 110297, + "thread": 24 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 249329, + "thread": 22 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 345528, + "thread": 25 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 570252, + "thread": 6 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 695794, + "thread": 21 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 894943, + "thread": 1 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1038839, + "thread": 23 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1151157, + "thread": 1 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1369973, + "thread": 22 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1615517, + "thread": 4 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1802262, + "thread": 27 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1926407, + "thread": 20 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 1996507, + "thread": 21 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2181537, + "thread": 30 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2339167, + "thread": 0 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2561092, + "thread": 14 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2739426, + "thread": 26 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2919171, + "thread": 8 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 2974734, + "thread": 28 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 3268301, + "thread": 14 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 3400472, + "thread": 29 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 3522162, + "thread": 28 + } + }, + { + "amount": "469.289630332", + "slot": { + "period": 3688015, + "thread": 29 + } + }, + { + "amount": "469.289630324", + "slot": { + "period": 3865085, + "thread": 5 + } + } + ], + "AU12TwbnrRc3mC4oobhrfzoavVKgWKn1SxTc3CwPVHudNnLCEkyvn": [ + { + "amount": "146.112271946", + "slot": { + "period": 25063, + "thread": 26 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 179539, + "thread": 16 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 357828, + "thread": 18 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 535062, + "thread": 7 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 801884, + "thread": 21 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 850686, + "thread": 26 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1024793, + "thread": 29 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1219864, + "thread": 1 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1421643, + "thread": 15 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1500290, + "thread": 24 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1673864, + "thread": 3 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 1886688, + "thread": 27 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2023675, + "thread": 6 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2207422, + "thread": 22 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2367668, + "thread": 29 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2472523, + "thread": 29 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2652978, + "thread": 19 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 2803693, + "thread": 9 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 3050708, + "thread": 31 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 3138605, + "thread": 0 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 3309581, + "thread": 2 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 3606189, + "thread": 18 + } + }, + { + "amount": "146.112271946", + "slot": { + "period": 3683195, + "thread": 14 + } + }, + { + "amount": "146.112271934", + "slot": { + "period": 3918913, + "thread": 8 + } + } + ], + "AU12Twcu26NLW1WZaNJi2N9yEJXsJq3WiCC7D8PfE9cD39MPcsocr": [ + { + "amount": "141.214956813", + "slot": { + "period": 166832, + "thread": 21 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 199462, + "thread": 16 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 474687, + "thread": 12 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 519265, + "thread": 25 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 781116, + "thread": 18 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 838177, + "thread": 18 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1002100, + "thread": 7 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1253775, + "thread": 4 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1384247, + "thread": 3 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1516149, + "thread": 30 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1734531, + "thread": 8 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 1903010, + "thread": 20 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2068344, + "thread": 3 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2230485, + "thread": 5 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2449633, + "thread": 7 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2523847, + "thread": 15 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2653657, + "thread": 6 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 2932643, + "thread": 10 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3094067, + "thread": 10 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3170654, + "thread": 13 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3419255, + "thread": 12 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3499881, + "thread": 31 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3766680, + "thread": 12 + } + }, + { + "amount": "141.214956813", + "slot": { + "period": 3876217, + "thread": 4 + } + } + ], + "AU12TwwaoYeDZq8SPtmqAQp14wvzEf5rJU7w9zrVHT6FvK64FBUcj": [ + { + "amount": "56.186378063", + "slot": { + "period": 147391, + "thread": 25 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 232620, + "thread": 28 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 396086, + "thread": 19 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 521159, + "thread": 16 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 673808, + "thread": 1 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 836643, + "thread": 27 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1057136, + "thread": 21 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1311679, + "thread": 25 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1458629, + "thread": 1 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1503195, + "thread": 21 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1760653, + "thread": 15 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 1815931, + "thread": 0 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2134668, + "thread": 28 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2246537, + "thread": 7 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2411097, + "thread": 22 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2566099, + "thread": 8 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2691411, + "thread": 27 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 2843601, + "thread": 12 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 3007292, + "thread": 5 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 3128712, + "thread": 0 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 3351356, + "thread": 25 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 3509661, + "thread": 20 + } + }, + { + "amount": "56.186378063", + "slot": { + "period": 3655736, + "thread": 9 + } + }, + { + "amount": "56.186378054", + "slot": { + "period": 3947082, + "thread": 3 + } + } + ], + "AU12Tx7izQupg2G1cafsuCvrBdKNRd5qWxYPxVZbe6BWRNwVBG85h": [ + { + "amount": "337.306236814", + "slot": { + "period": 129573, + "thread": 18 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 240128, + "thread": 21 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 335497, + "thread": 15 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 619785, + "thread": 5 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 665740, + "thread": 21 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 824033, + "thread": 29 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1101556, + "thread": 11 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1252963, + "thread": 0 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1379134, + "thread": 18 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1509633, + "thread": 0 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1754367, + "thread": 4 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 1931998, + "thread": 19 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2052436, + "thread": 27 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2170260, + "thread": 23 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2408169, + "thread": 13 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2542081, + "thread": 18 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2739103, + "thread": 31 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 2857458, + "thread": 20 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 3115551, + "thread": 9 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 3246152, + "thread": 25 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 3356130, + "thread": 27 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 3468574, + "thread": 8 + } + }, + { + "amount": "337.306236814", + "slot": { + "period": 3625832, + "thread": 3 + } + }, + { + "amount": "337.306236808", + "slot": { + "period": 3796184, + "thread": 16 + } + } + ], + "AU12TxgNcKcrbhez3yQpj5JQhpRfDVGcbuoK737NW7JF7aQR5E33E": [ + { + "amount": "186.390366223", + "slot": { + "period": 58438, + "thread": 2 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 216013, + "thread": 1 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 471693, + "thread": 17 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 585031, + "thread": 14 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 807465, + "thread": 25 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 916679, + "thread": 25 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1118630, + "thread": 19 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1189435, + "thread": 14 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1320037, + "thread": 24 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1603498, + "thread": 5 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1782126, + "thread": 17 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 1854199, + "thread": 14 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2135662, + "thread": 8 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2290909, + "thread": 0 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2448199, + "thread": 22 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2537394, + "thread": 5 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2655904, + "thread": 17 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 2888432, + "thread": 25 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3026565, + "thread": 23 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3146344, + "thread": 30 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3396017, + "thread": 28 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3463925, + "thread": 10 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3637059, + "thread": 23 + } + }, + { + "amount": "186.390366223", + "slot": { + "period": 3923490, + "thread": 6 + } + } + ], + "AU12Txt2xnC7DqBHBGzLaEJcvNNyCjBWqGa5nuzx2b6aqfa6fW3Qd": [ + { + "amount": "145.388704458", + "slot": { + "period": 114443, + "thread": 17 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 229872, + "thread": 6 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 332746, + "thread": 3 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 553196, + "thread": 23 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 698732, + "thread": 4 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 955139, + "thread": 18 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1135420, + "thread": 2 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1285860, + "thread": 18 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1352521, + "thread": 24 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1566979, + "thread": 13 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1766356, + "thread": 23 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 1942708, + "thread": 31 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2136327, + "thread": 11 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2197281, + "thread": 0 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2377672, + "thread": 4 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2569690, + "thread": 10 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2719592, + "thread": 24 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 2890203, + "thread": 29 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 3120067, + "thread": 15 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 3153790, + "thread": 18 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 3426977, + "thread": 26 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 3585719, + "thread": 1 + } + }, + { + "amount": "145.388704458", + "slot": { + "period": 3655181, + "thread": 14 + } + }, + { + "amount": "145.388704460", + "slot": { + "period": 3894268, + "thread": 25 + } + } + ], + "AU12Ty81RN8hiWNYnpr7k3D7eVzHBugtYhwdfcEZDxKxHtx1Ywn5L": [ + { + "amount": "187.579144903", + "slot": { + "period": 120115, + "thread": 13 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 284795, + "thread": 19 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 445473, + "thread": 5 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 497552, + "thread": 28 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 760813, + "thread": 0 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 904779, + "thread": 9 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1004611, + "thread": 1 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1266518, + "thread": 4 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1475625, + "thread": 19 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1555792, + "thread": 8 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1707032, + "thread": 18 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 1828944, + "thread": 24 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2095665, + "thread": 30 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2190791, + "thread": 23 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2313844, + "thread": 22 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2581961, + "thread": 11 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2776873, + "thread": 0 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2939034, + "thread": 18 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 2996285, + "thread": 13 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 3168061, + "thread": 15 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 3356979, + "thread": 27 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 3527981, + "thread": 3 + } + }, + { + "amount": "187.579144903", + "slot": { + "period": 3725477, + "thread": 1 + } + }, + { + "amount": "187.579144908", + "slot": { + "period": 3819351, + "thread": 7 + } + } + ], + "AU12TziFgPDQPsWft53vzqqwtAfZfzUri2rsbcLRLsAGvZrA3K1rR": [ + { + "amount": "72.981019111", + "slot": { + "period": 89279, + "thread": 28 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 201145, + "thread": 2 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 406066, + "thread": 3 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 530142, + "thread": 10 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 687348, + "thread": 15 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 877171, + "thread": 30 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1094929, + "thread": 20 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1282886, + "thread": 0 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1336274, + "thread": 4 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1524365, + "thread": 25 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1775427, + "thread": 16 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 1860117, + "thread": 0 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2119191, + "thread": 3 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2236664, + "thread": 28 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2339845, + "thread": 19 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2568652, + "thread": 6 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2732648, + "thread": 28 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2820893, + "thread": 30 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 2991866, + "thread": 8 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 3278690, + "thread": 23 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 3376349, + "thread": 13 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 3572029, + "thread": 23 + } + }, + { + "amount": "72.981019111", + "slot": { + "period": 3661511, + "thread": 30 + } + }, + { + "amount": "72.981019106", + "slot": { + "period": 3793134, + "thread": 29 + } + } + ], + "AU12TznGJScf5imxcTKggcbtDYuVm62Ttv59VHUdaqs9cff1dZ2fn": [ + { + "amount": "88.727497292", + "slot": { + "period": 29823, + "thread": 4 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 277745, + "thread": 3 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 463829, + "thread": 5 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 557124, + "thread": 2 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 674500, + "thread": 5 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 909308, + "thread": 17 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1042110, + "thread": 2 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1259212, + "thread": 22 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1329847, + "thread": 4 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1516657, + "thread": 10 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1749040, + "thread": 5 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 1838453, + "thread": 0 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2103433, + "thread": 14 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2164455, + "thread": 28 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2336766, + "thread": 9 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2595337, + "thread": 17 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2675290, + "thread": 9 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 2852882, + "thread": 16 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 3055316, + "thread": 24 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 3171940, + "thread": 24 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 3360086, + "thread": 25 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 3520983, + "thread": 6 + } + }, + { + "amount": "88.727497292", + "slot": { + "period": 3634441, + "thread": 13 + } + }, + { + "amount": "88.727497300", + "slot": { + "period": 3815800, + "thread": 28 + } + } + ], + "AU12U1GZ1XvmmbLaJf5aaqD5Xt6ivhvStyur9n1EHKeuvWdkB4CwZ": [ + { + "amount": "711.547516442", + "slot": { + "period": 163190, + "thread": 4 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 252092, + "thread": 1 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 459536, + "thread": 3 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 562871, + "thread": 21 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 790010, + "thread": 8 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 855390, + "thread": 19 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1027782, + "thread": 26 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1171359, + "thread": 20 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1381398, + "thread": 22 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1489648, + "thread": 20 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1797090, + "thread": 9 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 1917711, + "thread": 29 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2042489, + "thread": 29 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2289772, + "thread": 14 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2334367, + "thread": 30 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2612220, + "thread": 29 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2768824, + "thread": 13 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 2800845, + "thread": 0 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 3109375, + "thread": 7 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 3251261, + "thread": 30 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 3314937, + "thread": 23 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 3611984, + "thread": 19 + } + }, + { + "amount": "711.547516442", + "slot": { + "period": 3680611, + "thread": 14 + } + }, + { + "amount": "711.547516450", + "slot": { + "period": 3904760, + "thread": 28 + } + } + ], + "AU12U1KWWvp7XQ63KXXeEEM2EhHnKTozscehMEyT3A8FBApcMADxp": [ + { + "amount": "197.039242147", + "slot": { + "period": 65475, + "thread": 14 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 226028, + "thread": 12 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 409588, + "thread": 27 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 531475, + "thread": 5 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 743958, + "thread": 12 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 904611, + "thread": 28 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1150077, + "thread": 8 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1204338, + "thread": 15 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1411749, + "thread": 16 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1632917, + "thread": 0 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1803738, + "thread": 7 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 1928053, + "thread": 31 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2088229, + "thread": 0 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2265818, + "thread": 14 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2366040, + "thread": 16 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2535121, + "thread": 31 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2746332, + "thread": 27 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 2860889, + "thread": 11 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 3071161, + "thread": 31 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 3190134, + "thread": 11 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 3302807, + "thread": 1 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 3571266, + "thread": 12 + } + }, + { + "amount": "197.039242147", + "slot": { + "period": 3623252, + "thread": 21 + } + }, + { + "amount": "197.039242154", + "slot": { + "period": 3945383, + "thread": 2 + } + } + ], + "AU12U1ZKGfxRGATawAHaGpgeh2dBhHP5Sgd73CBuvHpKaaoYTjbQv": [ + { + "amount": "154.289891370", + "slot": { + "period": 108083, + "thread": 23 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 194485, + "thread": 9 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 352160, + "thread": 12 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 603334, + "thread": 21 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 661813, + "thread": 11 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 917728, + "thread": 14 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1014660, + "thread": 17 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1247008, + "thread": 2 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1409956, + "thread": 0 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1481249, + "thread": 3 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1776556, + "thread": 14 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 1869105, + "thread": 13 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2130415, + "thread": 3 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2239800, + "thread": 22 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2432286, + "thread": 24 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2550609, + "thread": 5 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2686221, + "thread": 7 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2811943, + "thread": 3 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 2979706, + "thread": 30 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 3150608, + "thread": 31 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 3430604, + "thread": 10 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 3556181, + "thread": 6 + } + }, + { + "amount": "154.289891370", + "slot": { + "period": 3724274, + "thread": 1 + } + }, + { + "amount": "154.289891372", + "slot": { + "period": 3865850, + "thread": 31 + } + } + ], + "AU12U2DpP3QnkMhEZApSe263eVAHHqdRJ7B7q8US6CNnM89bo3kgg": [ + { + "amount": "247.894278370", + "slot": { + "period": 148488, + "thread": 13 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 180368, + "thread": 27 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 413101, + "thread": 15 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 579728, + "thread": 21 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 768683, + "thread": 9 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 840602, + "thread": 0 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1127580, + "thread": 7 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1305128, + "thread": 12 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1415082, + "thread": 4 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1543372, + "thread": 28 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1735789, + "thread": 9 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 1843828, + "thread": 3 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2029292, + "thread": 29 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2226075, + "thread": 24 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2387101, + "thread": 15 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2543597, + "thread": 1 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2748511, + "thread": 15 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 2930008, + "thread": 3 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 3063308, + "thread": 22 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 3141443, + "thread": 25 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 3355458, + "thread": 11 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 3580212, + "thread": 23 + } + }, + { + "amount": "247.894278370", + "slot": { + "period": 3775732, + "thread": 2 + } + }, + { + "amount": "247.894278378", + "slot": { + "period": 3884420, + "thread": 17 + } + } + ], + "AU12U2aCUgevUT8ZqZSxx5NHzVArtk6PbCvcUWM1dzZHUYCPjXVeg": [ + { + "amount": "125.547400569", + "slot": { + "period": 40627, + "thread": 10 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 283466, + "thread": 18 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 420763, + "thread": 22 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 652872, + "thread": 16 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 803204, + "thread": 30 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 863933, + "thread": 21 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1116240, + "thread": 24 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1212453, + "thread": 20 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1378760, + "thread": 17 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1562423, + "thread": 8 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1788038, + "thread": 25 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 1827360, + "thread": 10 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2072786, + "thread": 6 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2265742, + "thread": 14 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2390454, + "thread": 3 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2556505, + "thread": 6 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2626269, + "thread": 26 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 2818161, + "thread": 18 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 3074044, + "thread": 19 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 3127047, + "thread": 19 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 3406111, + "thread": 22 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 3532829, + "thread": 10 + } + }, + { + "amount": "125.547400569", + "slot": { + "period": 3720588, + "thread": 13 + } + }, + { + "amount": "125.547400578", + "slot": { + "period": 3836651, + "thread": 19 + } + } + ], + "AU12U38FfDuAhWf6XdejCRYHqoN5yfYDCbgSXVF5Ljs1CSYgiJoND": [ + { + "amount": "57.331748486", + "slot": { + "period": 15588, + "thread": 29 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 322773, + "thread": 9 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 394048, + "thread": 18 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 589987, + "thread": 15 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 804911, + "thread": 10 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 903595, + "thread": 27 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1007493, + "thread": 11 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1309664, + "thread": 27 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1415100, + "thread": 23 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1547555, + "thread": 26 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1691001, + "thread": 4 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 1861779, + "thread": 20 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2095101, + "thread": 17 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2150865, + "thread": 25 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2415221, + "thread": 19 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2550582, + "thread": 21 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2643485, + "thread": 22 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 2839855, + "thread": 8 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 3051595, + "thread": 22 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 3228667, + "thread": 3 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 3407636, + "thread": 0 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 3551101, + "thread": 28 + } + }, + { + "amount": "57.331748486", + "slot": { + "period": 3722087, + "thread": 18 + } + }, + { + "amount": "57.331748494", + "slot": { + "period": 3823270, + "thread": 6 + } + } + ], + "AU12U3GGbUTHzuizmAMm43SLwTTFFzsCgPi2zJ86uZPC4ZQik9cVL": [ + { + "amount": "64.011587618", + "slot": { + "period": 95603, + "thread": 6 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 185786, + "thread": 4 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 474927, + "thread": 3 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 541371, + "thread": 0 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 779190, + "thread": 2 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 838123, + "thread": 12 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1004856, + "thread": 14 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1205266, + "thread": 29 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1381903, + "thread": 11 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1577256, + "thread": 23 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1679355, + "thread": 27 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1942953, + "thread": 30 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 1994938, + "thread": 19 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 2248750, + "thread": 2 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 2315620, + "thread": 8 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 2601545, + "thread": 18 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 2739964, + "thread": 29 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 2804411, + "thread": 31 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 3041508, + "thread": 26 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 3259371, + "thread": 26 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 3340403, + "thread": 6 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 3489253, + "thread": 27 + } + }, + { + "amount": "64.011587618", + "slot": { + "period": 3714497, + "thread": 9 + } + }, + { + "amount": "64.011587622", + "slot": { + "period": 3872254, + "thread": 3 + } + } + ], + "AU12U3qez6eAPHhRvtYaRu7pJDVaMmKP32niaPVR6Yjqu5qLHRK4f": [ + { + "amount": "84.949011869", + "slot": { + "period": 78446, + "thread": 31 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 228546, + "thread": 9 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 449352, + "thread": 24 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 593306, + "thread": 28 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 775457, + "thread": 0 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 977749, + "thread": 22 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1099038, + "thread": 16 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1274771, + "thread": 13 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1370280, + "thread": 18 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1555309, + "thread": 30 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1770968, + "thread": 10 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 1874095, + "thread": 26 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2080394, + "thread": 4 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2249387, + "thread": 23 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2371467, + "thread": 13 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2574061, + "thread": 3 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2701142, + "thread": 1 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 2802777, + "thread": 8 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 3085464, + "thread": 7 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 3158198, + "thread": 10 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 3361193, + "thread": 14 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 3600310, + "thread": 8 + } + }, + { + "amount": "84.949011869", + "slot": { + "period": 3648430, + "thread": 27 + } + }, + { + "amount": "84.949011863", + "slot": { + "period": 3810087, + "thread": 4 + } + } + ], + "AU12U4LyCaTzmRqQQaJgubCxtPdCvG7UPSRJ12t1CW5wo3FntkaDd": [ + { + "amount": "159.641207197", + "slot": { + "period": 53176, + "thread": 5 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 236722, + "thread": 1 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 465723, + "thread": 9 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 595776, + "thread": 20 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 669505, + "thread": 8 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 893915, + "thread": 29 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 990604, + "thread": 3 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 1296580, + "thread": 6 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 1472725, + "thread": 30 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 1577090, + "thread": 7 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 1804657, + "thread": 9 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 1830813, + "thread": 8 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2091633, + "thread": 24 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2196453, + "thread": 2 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2439553, + "thread": 18 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2621973, + "thread": 13 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2637334, + "thread": 0 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 2799797, + "thread": 8 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 3037373, + "thread": 1 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 3162328, + "thread": 24 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 3345138, + "thread": 26 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 3566051, + "thread": 20 + } + }, + { + "amount": "159.641207197", + "slot": { + "period": 3734874, + "thread": 27 + } + }, + { + "amount": "159.641207187", + "slot": { + "period": 3824349, + "thread": 15 + } + } + ], + "AU12U4VduSQhJiFMi8dEuKuGdgZEXVBAi6mpYBWLE3rpy6X846Vza": [ + { + "amount": "212.890362962", + "slot": { + "period": 47365, + "thread": 15 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 219835, + "thread": 30 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 448143, + "thread": 20 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 565110, + "thread": 30 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 759018, + "thread": 25 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 963172, + "thread": 15 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1040867, + "thread": 17 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1295403, + "thread": 4 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1339825, + "thread": 9 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1638474, + "thread": 14 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1789088, + "thread": 11 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 1838538, + "thread": 1 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2008093, + "thread": 4 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2257711, + "thread": 3 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2389184, + "thread": 17 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2466521, + "thread": 6 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2678688, + "thread": 3 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 2797079, + "thread": 22 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 3075785, + "thread": 0 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 3198019, + "thread": 28 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 3363569, + "thread": 7 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 3469992, + "thread": 22 + } + }, + { + "amount": "212.890362962", + "slot": { + "period": 3732195, + "thread": 11 + } + }, + { + "amount": "212.890362959", + "slot": { + "period": 3782163, + "thread": 2 + } + } + ], + "AU12U7DK2MfsGZXtcMMG2GVNcB5A4VQiKGB5GCoAXjbqsKmsWmHKB": [ + { + "amount": "526.203609603", + "slot": { + "period": 146360, + "thread": 28 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 302799, + "thread": 6 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 474298, + "thread": 3 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 560381, + "thread": 20 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 686712, + "thread": 21 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 906646, + "thread": 25 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1033089, + "thread": 2 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1315314, + "thread": 17 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1372092, + "thread": 4 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1480897, + "thread": 19 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1695359, + "thread": 21 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 1921904, + "thread": 13 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2034839, + "thread": 16 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2211638, + "thread": 29 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2428895, + "thread": 30 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2549192, + "thread": 20 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2764567, + "thread": 17 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2888009, + "thread": 6 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 2959636, + "thread": 13 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 3268883, + "thread": 22 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 3396749, + "thread": 27 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 3459250, + "thread": 13 + } + }, + { + "amount": "526.203609603", + "slot": { + "period": 3767917, + "thread": 17 + } + }, + { + "amount": "526.203609592", + "slot": { + "period": 3878933, + "thread": 30 + } + } + ], + "AU12U7GnMEZwYwbGntTHecNqpBZyf4BPUp6sSG9PHEViaGwEygvy": [ + { + "amount": "254.360111674", + "slot": { + "period": 86637, + "thread": 24 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 261586, + "thread": 13 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 400636, + "thread": 6 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 606368, + "thread": 0 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 727106, + "thread": 31 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 875088, + "thread": 31 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1114205, + "thread": 29 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1159510, + "thread": 14 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1454547, + "thread": 24 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1590167, + "thread": 5 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1693546, + "thread": 22 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1954587, + "thread": 8 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 1997566, + "thread": 7 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2222816, + "thread": 22 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2367317, + "thread": 20 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2497109, + "thread": 6 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2785744, + "thread": 20 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2907569, + "thread": 22 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 2991692, + "thread": 23 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 3255766, + "thread": 28 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 3437105, + "thread": 17 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 3541816, + "thread": 28 + } + }, + { + "amount": "254.360111674", + "slot": { + "period": 3733711, + "thread": 1 + } + }, + { + "amount": "254.360111686", + "slot": { + "period": 3885260, + "thread": 1 + } + } + ], + "AU12U7L4YWZ5D3N5itMGv4odXfEahwsvMJMUUbVxLsxJbdY6neg8L": [ + { + "amount": "135.049555165", + "slot": { + "period": 109589, + "thread": 7 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 315228, + "thread": 28 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 463183, + "thread": 24 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 539909, + "thread": 14 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 814602, + "thread": 10 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 849205, + "thread": 11 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1130245, + "thread": 19 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1162058, + "thread": 10 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1405716, + "thread": 3 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1526399, + "thread": 3 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1714081, + "thread": 21 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1860443, + "thread": 27 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 1989122, + "thread": 23 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2226880, + "thread": 26 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2407681, + "thread": 25 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2617501, + "thread": 21 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2711804, + "thread": 27 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2928658, + "thread": 4 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 2994254, + "thread": 5 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 3161644, + "thread": 13 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 3406469, + "thread": 20 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 3552241, + "thread": 15 + } + }, + { + "amount": "135.049555165", + "slot": { + "period": 3770206, + "thread": 9 + } + }, + { + "amount": "135.049555176", + "slot": { + "period": 3832716, + "thread": 28 + } + } + ], + "AU12U8vT9VUdaPXTRBLoej3GAdj222LxjATSPLRst3CdLK89v9wsd": [ + { + "amount": "75.759885178", + "slot": { + "period": 123187, + "thread": 23 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 223733, + "thread": 6 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 468096, + "thread": 19 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 516336, + "thread": 12 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 693184, + "thread": 5 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 824455, + "thread": 12 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1032659, + "thread": 13 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1253913, + "thread": 18 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1383946, + "thread": 13 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1535762, + "thread": 26 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1767444, + "thread": 15 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 1945593, + "thread": 8 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2099782, + "thread": 6 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2261532, + "thread": 22 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2380834, + "thread": 1 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2478684, + "thread": 17 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2703332, + "thread": 19 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 2930788, + "thread": 18 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 3022235, + "thread": 2 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 3222974, + "thread": 30 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 3342388, + "thread": 7 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 3518035, + "thread": 10 + } + }, + { + "amount": "75.759885178", + "slot": { + "period": 3699440, + "thread": 10 + } + }, + { + "amount": "75.759885168", + "slot": { + "period": 3830915, + "thread": 18 + } + } + ], + "AU12UA2soMfxMUYNocXySXSGaxttbGzKvbKqDXDntnSHwowFsyiSJ": [ + { + "amount": "63.035010098", + "slot": { + "period": 13213, + "thread": 13 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 260447, + "thread": 27 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 338113, + "thread": 13 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 643073, + "thread": 19 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 687700, + "thread": 10 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 840246, + "thread": 14 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1125775, + "thread": 28 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1186897, + "thread": 15 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1374546, + "thread": 4 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1645716, + "thread": 27 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1714879, + "thread": 23 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1923827, + "thread": 4 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 1982658, + "thread": 24 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2229933, + "thread": 7 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2462067, + "thread": 7 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2480000, + "thread": 5 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2781208, + "thread": 28 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2829646, + "thread": 7 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 2983897, + "thread": 16 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 3287639, + "thread": 16 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 3360883, + "thread": 17 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 3478490, + "thread": 26 + } + }, + { + "amount": "63.035010098", + "slot": { + "period": 3694480, + "thread": 17 + } + }, + { + "amount": "63.035010099", + "slot": { + "period": 3800640, + "thread": 27 + } + } + ], + "AU12UAydsJBdnCuqbmpkXsyFSdk48YYVDnZVvdCk9r121aVhBsbWQ": [ + { + "amount": "111.641440347", + "slot": { + "period": 72975, + "thread": 20 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 185257, + "thread": 18 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 431907, + "thread": 9 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 548039, + "thread": 24 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 704395, + "thread": 0 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 904170, + "thread": 15 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 987696, + "thread": 23 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 1169369, + "thread": 11 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 1346920, + "thread": 0 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 1522403, + "thread": 28 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 1737996, + "thread": 14 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 1839888, + "thread": 0 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2062788, + "thread": 1 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2259306, + "thread": 26 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2350879, + "thread": 22 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2499746, + "thread": 14 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2662697, + "thread": 27 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2817516, + "thread": 19 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 2990484, + "thread": 2 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 3189408, + "thread": 9 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 3338820, + "thread": 21 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 3461186, + "thread": 21 + } + }, + { + "amount": "111.641440347", + "slot": { + "period": 3726857, + "thread": 6 + } + }, + { + "amount": "111.641440355", + "slot": { + "period": 3844873, + "thread": 22 + } + } + ], + "AU12UBvLcyyRWnn1qiwkbirTb59n43nnSdJapo7qHfGZXntuDkQ7H": [ + { + "amount": "113.136103444", + "slot": { + "period": 62737, + "thread": 29 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 248441, + "thread": 22 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 402013, + "thread": 2 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 507663, + "thread": 15 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 672502, + "thread": 6 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 883042, + "thread": 2 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1046958, + "thread": 4 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1178059, + "thread": 14 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1411587, + "thread": 17 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1553561, + "thread": 31 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1766977, + "thread": 14 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1947287, + "thread": 27 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 1991065, + "thread": 20 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 2194576, + "thread": 15 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 2451637, + "thread": 12 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 2542157, + "thread": 6 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 2777910, + "thread": 20 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 2915715, + "thread": 24 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 3034295, + "thread": 24 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 3181912, + "thread": 18 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 3437599, + "thread": 31 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 3467368, + "thread": 6 + } + }, + { + "amount": "113.136103444", + "slot": { + "period": 3750489, + "thread": 8 + } + }, + { + "amount": "113.136103452", + "slot": { + "period": 3827111, + "thread": 11 + } + } + ], + "AU12UCRawiJ52wU2QZ38ijK7Ahpg2SV8AmV8BnX57boPXGZtxXgav": [ + { + "amount": "145.069185993", + "slot": { + "period": 111463, + "thread": 11 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 298004, + "thread": 22 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 466458, + "thread": 0 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 599155, + "thread": 14 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 793970, + "thread": 17 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 925096, + "thread": 2 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1004091, + "thread": 18 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1210109, + "thread": 31 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1374942, + "thread": 3 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1638855, + "thread": 8 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1798626, + "thread": 15 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 1939962, + "thread": 22 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2080890, + "thread": 0 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2219586, + "thread": 15 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2360762, + "thread": 6 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2551932, + "thread": 11 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2714714, + "thread": 1 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 2950362, + "thread": 16 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 3117278, + "thread": 24 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 3128966, + "thread": 19 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 3332888, + "thread": 24 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 3576098, + "thread": 19 + } + }, + { + "amount": "145.069185993", + "slot": { + "period": 3633670, + "thread": 7 + } + }, + { + "amount": "145.069185998", + "slot": { + "period": 3808441, + "thread": 13 + } + } + ], + "AU12UCgo1CwCAeSrudCE7f4v9BJi9gyGVUabqQHKAJJ1uiNmp3uFf": [ + { + "amount": "173.128938970", + "slot": { + "period": 75672, + "thread": 1 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 266170, + "thread": 3 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 457112, + "thread": 2 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 607305, + "thread": 22 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 663935, + "thread": 17 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 912526, + "thread": 17 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1123283, + "thread": 1 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1305752, + "thread": 10 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1328643, + "thread": 25 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1627897, + "thread": 4 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1723605, + "thread": 22 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 1918322, + "thread": 18 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2097029, + "thread": 11 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2255931, + "thread": 19 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2390706, + "thread": 24 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2609057, + "thread": 9 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2654100, + "thread": 26 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 2953781, + "thread": 12 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 3021185, + "thread": 11 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 3279184, + "thread": 26 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 3413458, + "thread": 0 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 3523466, + "thread": 9 + } + }, + { + "amount": "173.128938970", + "slot": { + "period": 3751476, + "thread": 4 + } + }, + { + "amount": "173.128938963", + "slot": { + "period": 3820498, + "thread": 10 + } + } + ], + "AU12UD8Y9gPVo9r9YkZrBjmpwxjUzK645iaryp1BzTsk7ASDieadQ": [ + { + "amount": "66.871865916", + "slot": { + "period": 17922, + "thread": 14 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 316299, + "thread": 21 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 417558, + "thread": 3 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 508660, + "thread": 19 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 679863, + "thread": 23 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 970821, + "thread": 22 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1139880, + "thread": 27 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1282008, + "thread": 25 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1394422, + "thread": 23 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1593854, + "thread": 15 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1682490, + "thread": 29 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 1950773, + "thread": 28 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2143289, + "thread": 28 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2191844, + "thread": 14 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2326632, + "thread": 17 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2556488, + "thread": 29 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2755988, + "thread": 17 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 2942240, + "thread": 11 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 3015807, + "thread": 12 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 3215193, + "thread": 9 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 3298579, + "thread": 16 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 3605932, + "thread": 26 + } + }, + { + "amount": "66.871865916", + "slot": { + "period": 3664112, + "thread": 25 + } + }, + { + "amount": "66.871865904", + "slot": { + "period": 3864317, + "thread": 7 + } + } + ], + "AU12UDGoftfzBWt6vtDvLfDAtz6YAUWoj7HjXPHhn3upaDZBawSHW": [ + { + "amount": "309.883398673", + "slot": { + "period": 32967, + "thread": 30 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 272426, + "thread": 9 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 378117, + "thread": 4 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 529899, + "thread": 21 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 725412, + "thread": 31 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 927303, + "thread": 3 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1081510, + "thread": 24 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1312811, + "thread": 16 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1340770, + "thread": 16 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1631152, + "thread": 30 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1722797, + "thread": 4 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 1970477, + "thread": 9 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2114987, + "thread": 14 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2176388, + "thread": 15 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2417295, + "thread": 27 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2565749, + "thread": 22 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2663789, + "thread": 10 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2904125, + "thread": 17 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 2998201, + "thread": 13 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 3265780, + "thread": 31 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 3408212, + "thread": 21 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 3501145, + "thread": 4 + } + }, + { + "amount": "309.883398673", + "slot": { + "period": 3704254, + "thread": 22 + } + }, + { + "amount": "309.883398675", + "slot": { + "period": 3805284, + "thread": 16 + } + } + ], + "AU12UDLXsMDnWcxQKgzpEFWAxpDjVDmLTGuj6puNfmHoxAPXkBTi9": [ + { + "amount": "568.619155544", + "slot": { + "period": 163816, + "thread": 23 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 322565, + "thread": 31 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 356460, + "thread": 27 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 650350, + "thread": 3 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 791274, + "thread": 17 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 933261, + "thread": 27 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1050782, + "thread": 28 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1301409, + "thread": 24 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1366399, + "thread": 8 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1582554, + "thread": 28 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1733178, + "thread": 0 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 1907973, + "thread": 14 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2109232, + "thread": 24 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2226106, + "thread": 21 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2348034, + "thread": 16 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2581530, + "thread": 17 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2787874, + "thread": 15 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2951302, + "thread": 13 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 2965421, + "thread": 23 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 3259000, + "thread": 13 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 3360241, + "thread": 13 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 3500159, + "thread": 18 + } + }, + { + "amount": "568.619155544", + "slot": { + "period": 3620305, + "thread": 18 + } + }, + { + "amount": "568.619155546", + "slot": { + "period": 3930803, + "thread": 5 + } + } + ], + "AU12UDpSaKSNdVxTce66USUSbTko7UyfTLY9xtYfnu44QXHA1GCri": [ + { + "amount": "748.502740863", + "slot": { + "period": 22803, + "thread": 28 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 309411, + "thread": 12 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 431484, + "thread": 18 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 625599, + "thread": 15 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 667324, + "thread": 25 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 864405, + "thread": 2 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1014506, + "thread": 8 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1282594, + "thread": 17 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1407329, + "thread": 16 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1547749, + "thread": 31 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1724608, + "thread": 8 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 1860561, + "thread": 2 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2133264, + "thread": 25 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2161855, + "thread": 25 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2379444, + "thread": 22 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2600680, + "thread": 9 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2666614, + "thread": 28 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2829699, + "thread": 21 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 2954769, + "thread": 8 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 3144857, + "thread": 14 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 3387518, + "thread": 5 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 3521551, + "thread": 31 + } + }, + { + "amount": "748.502740863", + "slot": { + "period": 3706688, + "thread": 20 + } + }, + { + "amount": "748.502740868", + "slot": { + "period": 3900604, + "thread": 1 + } + } + ], + "AU12UDxc68fFBpTvuy98CUJpdQeXCFqtz6Z4btcdfKyGAzWc8ncfh": [ + { + "amount": "123.889537893", + "slot": { + "period": 163658, + "thread": 12 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 310571, + "thread": 16 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 347663, + "thread": 10 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 652690, + "thread": 27 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 716590, + "thread": 26 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 843199, + "thread": 0 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1129928, + "thread": 5 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1258579, + "thread": 26 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1407009, + "thread": 21 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1535157, + "thread": 1 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1724933, + "thread": 29 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1944542, + "thread": 10 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 1987892, + "thread": 11 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 2194430, + "thread": 19 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 2316120, + "thread": 18 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 2613538, + "thread": 24 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 2725195, + "thread": 13 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 2904388, + "thread": 0 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 3030401, + "thread": 3 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 3167634, + "thread": 23 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 3342759, + "thread": 19 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 3599156, + "thread": 19 + } + }, + { + "amount": "123.889537893", + "slot": { + "period": 3703382, + "thread": 17 + } + }, + { + "amount": "123.889537884", + "slot": { + "period": 3898964, + "thread": 20 + } + } + ], + "AU12UE97s9DoJa4xSRUJjSf78Rtt5Q6tJhDBiaa6KfFhSg2Rf4ujn": [ + { + "amount": "163.068264741", + "slot": { + "period": 133119, + "thread": 8 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 191657, + "thread": 26 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 337067, + "thread": 24 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 646396, + "thread": 3 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 737505, + "thread": 19 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 905267, + "thread": 21 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1067203, + "thread": 24 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1165372, + "thread": 25 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1476333, + "thread": 13 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1555651, + "thread": 0 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1741522, + "thread": 28 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1815183, + "thread": 12 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 1987512, + "thread": 4 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 2152718, + "thread": 24 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 2334723, + "thread": 23 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 2471738, + "thread": 8 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 2740507, + "thread": 18 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 2887802, + "thread": 25 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 3092110, + "thread": 8 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 3170193, + "thread": 16 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 3400448, + "thread": 26 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 3579437, + "thread": 1 + } + }, + { + "amount": "163.068264741", + "slot": { + "period": 3751907, + "thread": 31 + } + }, + { + "amount": "163.068264733", + "slot": { + "period": 3841060, + "thread": 5 + } + } + ], + "AU12UEBCDaBwiemxJEdcFhqDRXSdbau5EfpzTRq5vN8M6EU5goap6": [ + { + "amount": "472.525898707", + "slot": { + "period": 97832, + "thread": 25 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 283028, + "thread": 18 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 375440, + "thread": 13 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 631465, + "thread": 6 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 725483, + "thread": 24 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 834935, + "thread": 5 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1114199, + "thread": 11 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1294342, + "thread": 30 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1351246, + "thread": 14 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1530477, + "thread": 24 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1652160, + "thread": 13 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 1859755, + "thread": 15 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2077885, + "thread": 0 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2167611, + "thread": 14 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2346679, + "thread": 5 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2490152, + "thread": 0 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2637322, + "thread": 25 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2930428, + "thread": 31 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 2960594, + "thread": 11 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 3231401, + "thread": 6 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 3356403, + "thread": 1 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 3557820, + "thread": 8 + } + }, + { + "amount": "472.525898707", + "slot": { + "period": 3662297, + "thread": 26 + } + }, + { + "amount": "472.525898714", + "slot": { + "period": 3788596, + "thread": 6 + } + } + ], + "AU12UFD8HVerWuvNv7K5LQmcHpgGvfR9SpMigf6D2bG2ozsuYbZvb": [ + { + "amount": "462.544748300", + "slot": { + "period": 156450, + "thread": 4 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 213037, + "thread": 30 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 392115, + "thread": 1 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 591132, + "thread": 19 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 733852, + "thread": 23 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 825944, + "thread": 3 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1112690, + "thread": 19 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1309219, + "thread": 21 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1360883, + "thread": 5 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1632918, + "thread": 7 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1800507, + "thread": 15 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1835620, + "thread": 13 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 1997740, + "thread": 1 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 2209214, + "thread": 9 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 2382552, + "thread": 31 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 2515357, + "thread": 14 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 2645822, + "thread": 11 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 2892767, + "thread": 28 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 3055825, + "thread": 16 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 3141623, + "thread": 29 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 3304883, + "thread": 23 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 3611880, + "thread": 14 + } + }, + { + "amount": "462.544748300", + "slot": { + "period": 3752604, + "thread": 30 + } + }, + { + "amount": "462.544748303", + "slot": { + "period": 3878958, + "thread": 23 + } + } + ], + "AU12UFEHk3wwo31RE4S4YsdMYg9AHrJdkRG6a24odaKDUyAiLYcfi": [ + { + "amount": "135.650295893", + "slot": { + "period": 40055, + "thread": 6 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 312038, + "thread": 4 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 406714, + "thread": 31 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 576448, + "thread": 8 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 672660, + "thread": 27 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 886107, + "thread": 30 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 991277, + "thread": 21 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 1168008, + "thread": 6 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 1417642, + "thread": 14 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 1636098, + "thread": 27 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 1785435, + "thread": 10 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 1888341, + "thread": 15 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2049455, + "thread": 30 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2290218, + "thread": 24 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2462170, + "thread": 28 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2539522, + "thread": 6 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2686957, + "thread": 17 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 2875699, + "thread": 30 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 3100448, + "thread": 6 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 3244272, + "thread": 27 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 3378905, + "thread": 15 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 3569740, + "thread": 5 + } + }, + { + "amount": "135.650295893", + "slot": { + "period": 3636208, + "thread": 7 + } + }, + { + "amount": "135.650295883", + "slot": { + "period": 3796223, + "thread": 8 + } + } + ], + "AU12UFRQ9JFypSbmhLVDHbKzkXjMcgKw7i3P7SPnLEJAem1W2Vwe6": [ + { + "amount": "293.522092748", + "slot": { + "period": 151724, + "thread": 17 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 179138, + "thread": 14 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 461855, + "thread": 9 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 613344, + "thread": 28 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 744329, + "thread": 4 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 938885, + "thread": 31 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1045891, + "thread": 1 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1307727, + "thread": 15 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1346352, + "thread": 3 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1606061, + "thread": 9 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1800256, + "thread": 13 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1922009, + "thread": 28 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 1978433, + "thread": 28 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 2199847, + "thread": 23 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 2296154, + "thread": 13 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 2498167, + "thread": 11 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 2756873, + "thread": 10 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 2826282, + "thread": 16 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 3093822, + "thread": 13 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 3162637, + "thread": 23 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 3436019, + "thread": 4 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 3542276, + "thread": 10 + } + }, + { + "amount": "293.522092748", + "slot": { + "period": 3634332, + "thread": 1 + } + }, + { + "amount": "293.522092755", + "slot": { + "period": 3798667, + "thread": 0 + } + } + ], + "AU12UFc3zU4X9ewpaiNTQPXpgAdmovFDbPsqCXqqEXFvJhMGk3qW7": [ + { + "amount": "139.056189815", + "slot": { + "period": 157925, + "thread": 7 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 224334, + "thread": 21 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 354375, + "thread": 18 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 545642, + "thread": 27 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 774124, + "thread": 8 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 845733, + "thread": 12 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1085185, + "thread": 16 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1246735, + "thread": 18 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1345414, + "thread": 16 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1618338, + "thread": 22 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1649405, + "thread": 8 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 1901018, + "thread": 30 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2095836, + "thread": 18 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2240816, + "thread": 29 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2339625, + "thread": 25 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2464017, + "thread": 23 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2635879, + "thread": 25 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 2874840, + "thread": 23 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 3112612, + "thread": 11 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 3249518, + "thread": 13 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 3348794, + "thread": 14 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 3617986, + "thread": 26 + } + }, + { + "amount": "139.056189815", + "slot": { + "period": 3657702, + "thread": 3 + } + }, + { + "amount": "139.056189824", + "slot": { + "period": 3930219, + "thread": 11 + } + } + ], + "AU12UFpAa1B9JhKgBGWn7pqF3qWkxUfQAczsW23Ma3toEpckpqCGV": [ + { + "amount": "138.398576654", + "slot": { + "period": 64048, + "thread": 1 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 191003, + "thread": 25 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 369195, + "thread": 22 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 576153, + "thread": 16 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 660911, + "thread": 4 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 859993, + "thread": 27 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1088355, + "thread": 12 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1296188, + "thread": 31 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1465120, + "thread": 17 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1627258, + "thread": 4 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1692653, + "thread": 16 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 1931919, + "thread": 24 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2135012, + "thread": 5 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2279273, + "thread": 27 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2395498, + "thread": 8 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2589311, + "thread": 31 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2756509, + "thread": 22 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 2918530, + "thread": 28 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 3067442, + "thread": 4 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 3130608, + "thread": 8 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 3294675, + "thread": 1 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 3594754, + "thread": 20 + } + }, + { + "amount": "138.398576654", + "slot": { + "period": 3677262, + "thread": 17 + } + }, + { + "amount": "138.398576656", + "slot": { + "period": 3798536, + "thread": 25 + } + } + ], + "AU12UGSRyXtPr6XpQMz3RLLvqpZzefaqZtgU7x1Kqsou156CQac6o": [ + { + "amount": "155.226582350", + "slot": { + "period": 143121, + "thread": 1 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 299785, + "thread": 5 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 369242, + "thread": 1 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 646478, + "thread": 22 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 742658, + "thread": 30 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 903907, + "thread": 30 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1097758, + "thread": 25 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1197893, + "thread": 24 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1425423, + "thread": 25 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1491308, + "thread": 4 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1770640, + "thread": 22 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 1976246, + "thread": 20 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2085197, + "thread": 6 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2149942, + "thread": 19 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2441852, + "thread": 26 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2528398, + "thread": 12 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2630301, + "thread": 26 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2943698, + "thread": 10 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 2973362, + "thread": 26 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 3258472, + "thread": 21 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 3347532, + "thread": 14 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 3533516, + "thread": 22 + } + }, + { + "amount": "155.226582350", + "slot": { + "period": 3693197, + "thread": 24 + } + }, + { + "amount": "155.226582344", + "slot": { + "period": 3922645, + "thread": 26 + } + } + ], + "AU12UGhRRjieR1YXC9NhTiRCQ8XBjSMPiYsP7uLhCsVbFZvAJGTiZ": [ + { + "amount": "122.702937058", + "slot": { + "period": 30768, + "thread": 6 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 209755, + "thread": 3 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 324639, + "thread": 19 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 567658, + "thread": 12 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 765541, + "thread": 28 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 843937, + "thread": 15 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1119731, + "thread": 20 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1277895, + "thread": 2 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1400785, + "thread": 13 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1618733, + "thread": 24 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1647755, + "thread": 14 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 1961167, + "thread": 25 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2103891, + "thread": 23 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2276806, + "thread": 28 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2332422, + "thread": 19 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2593335, + "thread": 2 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2759766, + "thread": 14 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 2817470, + "thread": 29 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 3070554, + "thread": 18 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 3205626, + "thread": 20 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 3319406, + "thread": 3 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 3566142, + "thread": 2 + } + }, + { + "amount": "122.702937058", + "slot": { + "period": 3742718, + "thread": 15 + } + }, + { + "amount": "122.702937068", + "slot": { + "period": 3786858, + "thread": 21 + } + } + ], + "AU12UJGpTdVMt9ihomtPEkFhE4eJECWYC3YvWDveAng8d4vUvawvC": [ + { + "amount": "263.118254650", + "slot": { + "period": 98956, + "thread": 21 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 229587, + "thread": 11 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 394955, + "thread": 9 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 599557, + "thread": 27 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 726012, + "thread": 6 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 917840, + "thread": 12 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1146237, + "thread": 21 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1305090, + "thread": 14 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1375457, + "thread": 10 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1623939, + "thread": 30 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1663821, + "thread": 23 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 1935322, + "thread": 6 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2073847, + "thread": 3 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2195281, + "thread": 13 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2446246, + "thread": 28 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2587121, + "thread": 12 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2641692, + "thread": 28 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 2835860, + "thread": 21 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 3003999, + "thread": 25 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 3243224, + "thread": 21 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 3398072, + "thread": 24 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 3524761, + "thread": 28 + } + }, + { + "amount": "263.118254650", + "slot": { + "period": 3704497, + "thread": 17 + } + }, + { + "amount": "263.118254660", + "slot": { + "period": 3835463, + "thread": 10 + } + } + ], + "AU12UJf6MHQRxq7RFV4MgcUXKEagurCW3fC8BM6iFJffzYzGQz86t": [ + { + "amount": "201.886631247", + "slot": { + "period": 148769, + "thread": 16 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 276701, + "thread": 0 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 395723, + "thread": 6 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 631877, + "thread": 22 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 675404, + "thread": 13 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 874368, + "thread": 12 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1028894, + "thread": 7 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1195793, + "thread": 17 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1381824, + "thread": 12 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1575634, + "thread": 8 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1712840, + "thread": 22 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 1865329, + "thread": 16 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2056626, + "thread": 27 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2170481, + "thread": 31 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2329255, + "thread": 9 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2545235, + "thread": 11 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2661276, + "thread": 2 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 2892158, + "thread": 4 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 3093044, + "thread": 28 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 3193148, + "thread": 15 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 3422023, + "thread": 4 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 3534923, + "thread": 7 + } + }, + { + "amount": "201.886631247", + "slot": { + "period": 3702047, + "thread": 1 + } + }, + { + "amount": "201.886631253", + "slot": { + "period": 3878722, + "thread": 23 + } + } + ], + "AU12UJvXazCNVceysEYazvFRjAxR25DDMjaT5X1swQ2dBBnextUhj": [ + { + "amount": "145.218813623", + "slot": { + "period": 150802, + "thread": 6 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 195697, + "thread": 1 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 360890, + "thread": 26 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 619315, + "thread": 19 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 810431, + "thread": 24 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 828374, + "thread": 1 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1067002, + "thread": 6 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1257337, + "thread": 19 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1459469, + "thread": 5 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1622741, + "thread": 20 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1755775, + "thread": 24 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 1828515, + "thread": 28 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2063142, + "thread": 21 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2254827, + "thread": 29 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2299855, + "thread": 6 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2591759, + "thread": 23 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2666405, + "thread": 24 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 2919879, + "thread": 4 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3093230, + "thread": 30 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3182526, + "thread": 2 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3306297, + "thread": 24 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3554858, + "thread": 21 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3771572, + "thread": 10 + } + }, + { + "amount": "145.218813623", + "slot": { + "period": 3814238, + "thread": 15 + } + } + ], + "AU12UKpQtVMTRnysdQG5o5o5udUcsAfd9HcVUEu7mavQv53xmQgxA": [ + { + "amount": "99.076170926", + "slot": { + "period": 92089, + "thread": 17 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 294663, + "thread": 7 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 436783, + "thread": 23 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 574234, + "thread": 25 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 673901, + "thread": 11 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 898200, + "thread": 26 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1116219, + "thread": 17 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1264813, + "thread": 18 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1384901, + "thread": 4 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1629052, + "thread": 15 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1785362, + "thread": 24 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 1848900, + "thread": 27 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2126973, + "thread": 11 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2268362, + "thread": 19 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2443480, + "thread": 17 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2558412, + "thread": 1 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2754595, + "thread": 7 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2853002, + "thread": 28 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 2956908, + "thread": 26 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 3155570, + "thread": 7 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 3346013, + "thread": 6 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 3616667, + "thread": 2 + } + }, + { + "amount": "99.076170926", + "slot": { + "period": 3761081, + "thread": 30 + } + }, + { + "amount": "99.076170934", + "slot": { + "period": 3834274, + "thread": 31 + } + } + ], + "AU12ULTdZmHVQygw9TvkeLhG1Rt46WfbdXMU14DraTs5kka2BLdCG": [ + { + "amount": "391.207243605", + "slot": { + "period": 112761, + "thread": 8 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 187048, + "thread": 4 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 475948, + "thread": 18 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 575454, + "thread": 0 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 667589, + "thread": 16 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 919113, + "thread": 7 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1135857, + "thread": 2 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1207118, + "thread": 31 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1328555, + "thread": 6 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1639487, + "thread": 29 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1663397, + "thread": 30 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 1842698, + "thread": 12 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2057563, + "thread": 23 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2283023, + "thread": 15 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2445402, + "thread": 20 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2570289, + "thread": 9 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2678056, + "thread": 14 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 2839162, + "thread": 6 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 3056195, + "thread": 9 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 3243301, + "thread": 3 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 3312226, + "thread": 25 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 3583145, + "thread": 18 + } + }, + { + "amount": "391.207243605", + "slot": { + "period": 3746182, + "thread": 8 + } + }, + { + "amount": "391.207243596", + "slot": { + "period": 3882927, + "thread": 30 + } + } + ], + "AU12ULWDTVAi79kRMDgiyCV2bBS9d8fJ1PDhNm9zZKMbFXVq3QGXw": [ + { + "amount": "384.634004614", + "slot": { + "period": 115154, + "thread": 22 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 187125, + "thread": 9 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 434129, + "thread": 9 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 630262, + "thread": 6 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 706286, + "thread": 30 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 896827, + "thread": 7 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1134628, + "thread": 10 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1198518, + "thread": 17 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1381165, + "thread": 10 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1524044, + "thread": 21 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1694645, + "thread": 4 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 1853187, + "thread": 20 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2035337, + "thread": 16 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2164061, + "thread": 7 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2357497, + "thread": 18 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2563902, + "thread": 29 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2743454, + "thread": 9 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 2905973, + "thread": 13 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 3010049, + "thread": 27 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 3251641, + "thread": 8 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 3337102, + "thread": 26 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 3605548, + "thread": 27 + } + }, + { + "amount": "384.634004614", + "slot": { + "period": 3687987, + "thread": 27 + } + }, + { + "amount": "384.634004625", + "slot": { + "period": 3929798, + "thread": 25 + } + } + ], + "AU12UMPdQ8Bx9qC3xySxMJcNANcfdznjCWcHAb9FXERGzVmVkBbe4": [ + { + "amount": "180.788594700", + "slot": { + "period": 111497, + "thread": 14 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 210907, + "thread": 23 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 450129, + "thread": 16 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 494438, + "thread": 10 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 656655, + "thread": 22 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 948318, + "thread": 25 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1048155, + "thread": 11 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1192224, + "thread": 8 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1330300, + "thread": 3 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1581517, + "thread": 28 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1721561, + "thread": 22 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1867822, + "thread": 12 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 1977588, + "thread": 1 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 2215860, + "thread": 0 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 2323398, + "thread": 30 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 2610582, + "thread": 24 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 2638478, + "thread": 0 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 2813740, + "thread": 7 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 3092351, + "thread": 29 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 3214480, + "thread": 31 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 3322900, + "thread": 10 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 3554646, + "thread": 13 + } + }, + { + "amount": "180.788594700", + "slot": { + "period": 3705341, + "thread": 26 + } + }, + { + "amount": "180.788594704", + "slot": { + "period": 3898202, + "thread": 25 + } + } + ], + "AU12UMiuvCHC3pbbzdTr1oyKthzXLuaMEBkuZg54Zq8Zs96ArLXKp": [ + { + "amount": "269.118596528", + "slot": { + "period": 79495, + "thread": 20 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 232164, + "thread": 27 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 433967, + "thread": 10 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 586262, + "thread": 21 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 685390, + "thread": 5 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 828470, + "thread": 13 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1145275, + "thread": 18 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1308708, + "thread": 10 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1325661, + "thread": 29 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1578479, + "thread": 15 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1780931, + "thread": 18 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 1945373, + "thread": 17 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2132300, + "thread": 9 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2252746, + "thread": 19 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2328934, + "thread": 8 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2620716, + "thread": 9 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2638860, + "thread": 27 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2818634, + "thread": 14 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 2954175, + "thread": 4 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 3150994, + "thread": 28 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 3319572, + "thread": 15 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 3587341, + "thread": 12 + } + }, + { + "amount": "269.118596528", + "slot": { + "period": 3619746, + "thread": 0 + } + }, + { + "amount": "269.118596536", + "slot": { + "period": 3894964, + "thread": 5 + } + } + ], + "AU12UMyWcwadLPCynfWMm7qsdwRTebXEhfbaBCSj9KJjEKYtGYU1H": [ + { + "amount": "86.525725039", + "slot": { + "period": 17750, + "thread": 11 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 303069, + "thread": 14 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 434482, + "thread": 11 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 617726, + "thread": 10 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 806536, + "thread": 9 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 899603, + "thread": 28 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1124997, + "thread": 29 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1282717, + "thread": 21 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1375093, + "thread": 21 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1480306, + "thread": 0 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1695457, + "thread": 2 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 1965645, + "thread": 24 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2067342, + "thread": 26 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2219216, + "thread": 25 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2390178, + "thread": 29 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2487136, + "thread": 26 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2709868, + "thread": 28 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 2806003, + "thread": 21 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 3082287, + "thread": 20 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 3248741, + "thread": 1 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 3412677, + "thread": 13 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 3488724, + "thread": 30 + } + }, + { + "amount": "86.525725039", + "slot": { + "period": 3673656, + "thread": 16 + } + }, + { + "amount": "86.525725032", + "slot": { + "period": 3896654, + "thread": 6 + } + } + ], + "AU12UNTqbCTujDBUPZ71iPEcq3ZaLbU2EXpVcC37KSHiP4kcj7Q2V": [ + { + "amount": "154.531327933", + "slot": { + "period": 72985, + "thread": 20 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 318078, + "thread": 5 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 460050, + "thread": 13 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 559376, + "thread": 22 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 695152, + "thread": 14 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 981662, + "thread": 30 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1114692, + "thread": 8 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1289353, + "thread": 4 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1406759, + "thread": 0 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1569040, + "thread": 17 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1741965, + "thread": 23 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 1962792, + "thread": 6 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2096771, + "thread": 5 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2184962, + "thread": 16 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2373117, + "thread": 24 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2584477, + "thread": 22 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2743283, + "thread": 17 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 2916690, + "thread": 10 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 3094773, + "thread": 22 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 3197880, + "thread": 24 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 3379199, + "thread": 22 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 3523765, + "thread": 30 + } + }, + { + "amount": "154.531327933", + "slot": { + "period": 3659768, + "thread": 13 + } + }, + { + "amount": "154.531327942", + "slot": { + "period": 3874106, + "thread": 0 + } + } + ], + "AU12UNtkxScXESefo2v4PgVXvqmKxUmC3bLUHpUiNBSeThJF5WRP3": [ + { + "amount": "116.946583754", + "slot": { + "period": 104875, + "thread": 23 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 183347, + "thread": 13 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 440505, + "thread": 28 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 598038, + "thread": 30 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 741299, + "thread": 2 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 891160, + "thread": 20 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1018478, + "thread": 20 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1215748, + "thread": 2 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1398485, + "thread": 10 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1583519, + "thread": 17 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1776455, + "thread": 23 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1915678, + "thread": 16 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 1984975, + "thread": 5 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 2251002, + "thread": 20 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 2387233, + "thread": 21 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 2621901, + "thread": 15 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 2643826, + "thread": 16 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 2798111, + "thread": 24 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 3014170, + "thread": 7 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 3162806, + "thread": 3 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 3402369, + "thread": 31 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 3556866, + "thread": 23 + } + }, + { + "amount": "116.946583754", + "slot": { + "period": 3761828, + "thread": 16 + } + }, + { + "amount": "116.946583748", + "slot": { + "period": 3872470, + "thread": 16 + } + } + ], + "AU12UNzeCvT4etn9pCYJdrp4VQRAFm8H4kxhFTNTURFTNve3QyJ2n": [ + { + "amount": "178.443438897", + "slot": { + "period": 138627, + "thread": 15 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 268408, + "thread": 22 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 389846, + "thread": 20 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 572887, + "thread": 0 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 690500, + "thread": 6 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 928201, + "thread": 13 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1119750, + "thread": 2 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1248733, + "thread": 7 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1402587, + "thread": 22 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1497543, + "thread": 6 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1773802, + "thread": 2 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 1948756, + "thread": 18 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2132424, + "thread": 12 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2252694, + "thread": 21 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2426496, + "thread": 27 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2472073, + "thread": 17 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2710253, + "thread": 4 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 2868823, + "thread": 25 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 3073303, + "thread": 2 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 3270244, + "thread": 29 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 3313904, + "thread": 23 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 3475527, + "thread": 7 + } + }, + { + "amount": "178.443438897", + "slot": { + "period": 3725658, + "thread": 16 + } + }, + { + "amount": "178.443438908", + "slot": { + "period": 3919236, + "thread": 29 + } + } + ], + "AU12UPrLE45uWDtuRxDmHQjFxwrGyjLK2MDjUfmWq6jkzfZac1eGN": [ + { + "amount": "70.333484277", + "slot": { + "period": 20007, + "thread": 15 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 260295, + "thread": 26 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 331321, + "thread": 21 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 609844, + "thread": 23 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 815063, + "thread": 1 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 955393, + "thread": 6 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 983436, + "thread": 26 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 1182740, + "thread": 27 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 1408183, + "thread": 9 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 1578156, + "thread": 27 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 1719356, + "thread": 21 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 1916350, + "thread": 12 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2053931, + "thread": 26 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2212677, + "thread": 10 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2391996, + "thread": 27 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2562753, + "thread": 11 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2788657, + "thread": 8 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 2932079, + "thread": 20 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 3019857, + "thread": 13 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 3198973, + "thread": 23 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 3442131, + "thread": 22 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 3580786, + "thread": 18 + } + }, + { + "amount": "70.333484277", + "slot": { + "period": 3647820, + "thread": 16 + } + }, + { + "amount": "70.333484270", + "slot": { + "period": 3805460, + "thread": 3 + } + } + ], + "AU12UQwyhBzv3NoCY25Uij1hUTPo5FT9eAWPRrWjxd4TVVa9ZfwRK": [ + { + "amount": "184.821972040", + "slot": { + "period": 117847, + "thread": 1 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 272533, + "thread": 25 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 465876, + "thread": 24 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 567209, + "thread": 1 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 657200, + "thread": 29 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 836783, + "thread": 3 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1023459, + "thread": 21 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1202134, + "thread": 28 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1468820, + "thread": 30 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1520564, + "thread": 20 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1722998, + "thread": 30 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 1863804, + "thread": 11 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2090739, + "thread": 24 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2264109, + "thread": 3 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2352539, + "thread": 4 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2492868, + "thread": 21 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2762016, + "thread": 7 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2879674, + "thread": 11 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 2997647, + "thread": 18 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 3205040, + "thread": 8 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 3308883, + "thread": 26 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 3457543, + "thread": 29 + } + }, + { + "amount": "184.821972040", + "slot": { + "period": 3652462, + "thread": 2 + } + }, + { + "amount": "184.821972033", + "slot": { + "period": 3846716, + "thread": 14 + } + } + ], + "AU12UR13w12H8YJgwq8E1G8CxGiS8arZReK21hemS877RQ5NLGbim": [ + { + "amount": "215.893484135", + "slot": { + "period": 52484, + "thread": 15 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 183984, + "thread": 6 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 347827, + "thread": 18 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 510361, + "thread": 17 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 704169, + "thread": 25 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 899898, + "thread": 23 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 998490, + "thread": 7 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 1275208, + "thread": 10 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 1477916, + "thread": 12 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 1556343, + "thread": 15 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 1664314, + "thread": 29 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 1973706, + "thread": 0 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2046571, + "thread": 9 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2182858, + "thread": 17 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2338286, + "thread": 8 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2536069, + "thread": 29 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2721320, + "thread": 6 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 2848563, + "thread": 16 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 3045257, + "thread": 11 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 3241204, + "thread": 16 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 3337590, + "thread": 16 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 3547025, + "thread": 10 + } + }, + { + "amount": "215.893484135", + "slot": { + "period": 3746010, + "thread": 19 + } + }, + { + "amount": "215.893484139", + "slot": { + "period": 3922220, + "thread": 31 + } + } + ], + "AU12URESR73phaKe9mSp5iFkBKWhK29AajmAyfn52SbfyCHCLRACM": [ + { + "amount": "237.778227686", + "slot": { + "period": 33795, + "thread": 29 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 313140, + "thread": 4 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 391893, + "thread": 9 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 598551, + "thread": 2 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 671007, + "thread": 15 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 844016, + "thread": 28 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1105291, + "thread": 19 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1293003, + "thread": 26 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1449034, + "thread": 30 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1531408, + "thread": 17 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1679409, + "thread": 30 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 1833171, + "thread": 25 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2018689, + "thread": 23 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2268826, + "thread": 14 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2333045, + "thread": 12 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2558514, + "thread": 6 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2661201, + "thread": 21 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 2835149, + "thread": 19 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 3049280, + "thread": 17 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 3185109, + "thread": 14 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 3373254, + "thread": 28 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 3537862, + "thread": 31 + } + }, + { + "amount": "237.778227686", + "slot": { + "period": 3748063, + "thread": 20 + } + }, + { + "amount": "237.778227674", + "slot": { + "period": 3819595, + "thread": 26 + } + } + ], + "AU12USCnYdZTuee2iFTYWyNx37HHUwY8VzxRUZ5Ya9bypKKRRhtU5": [ + { + "amount": "112.776932314", + "slot": { + "period": 126676, + "thread": 9 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 280900, + "thread": 6 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 377292, + "thread": 4 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 514911, + "thread": 5 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 704616, + "thread": 13 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 880399, + "thread": 16 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1059226, + "thread": 10 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1284751, + "thread": 20 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1456051, + "thread": 30 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1638944, + "thread": 1 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1665059, + "thread": 8 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 1907409, + "thread": 6 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2108999, + "thread": 7 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2265446, + "thread": 2 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2394957, + "thread": 15 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2562534, + "thread": 5 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2667730, + "thread": 25 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 2906087, + "thread": 17 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 3050128, + "thread": 21 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 3262099, + "thread": 6 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 3307283, + "thread": 31 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 3616443, + "thread": 30 + } + }, + { + "amount": "112.776932314", + "slot": { + "period": 3679765, + "thread": 13 + } + }, + { + "amount": "112.776932312", + "slot": { + "period": 3938311, + "thread": 11 + } + } + ], + "AU12USPWeGG5RyZ5wJded9Xug4iZc2FcD7ZkZxkNQMimDFmzgUwQz": [ + { + "amount": "82.647086749", + "slot": { + "period": 126179, + "thread": 18 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 198468, + "thread": 16 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 362415, + "thread": 5 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 536354, + "thread": 3 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 659941, + "thread": 24 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 821890, + "thread": 8 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1024379, + "thread": 14 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1220898, + "thread": 17 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1362863, + "thread": 20 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1574169, + "thread": 21 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1782993, + "thread": 2 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 1880224, + "thread": 1 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2056123, + "thread": 15 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2203380, + "thread": 16 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2331949, + "thread": 31 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2491613, + "thread": 18 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2718390, + "thread": 9 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 2870831, + "thread": 22 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 3084139, + "thread": 14 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 3178476, + "thread": 11 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 3436749, + "thread": 22 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 3542481, + "thread": 5 + } + }, + { + "amount": "82.647086749", + "slot": { + "period": 3697103, + "thread": 23 + } + }, + { + "amount": "82.647086758", + "slot": { + "period": 3924952, + "thread": 11 + } + } + ], + "AU12USgH4UbyWV7XmQXUgxnpxS4qqN7db9t8qdDSdeUJiKuWsLXnV": [ + { + "amount": "235.735863837", + "slot": { + "period": 162057, + "thread": 19 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 248551, + "thread": 16 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 424964, + "thread": 29 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 634387, + "thread": 17 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 683323, + "thread": 18 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 824182, + "thread": 14 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1019146, + "thread": 12 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1158194, + "thread": 12 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1339102, + "thread": 22 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1483515, + "thread": 8 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1763879, + "thread": 23 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 1863419, + "thread": 26 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2072404, + "thread": 6 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2240955, + "thread": 18 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2419515, + "thread": 31 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2480789, + "thread": 19 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2763375, + "thread": 24 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 2913825, + "thread": 2 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 3091755, + "thread": 4 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 3166003, + "thread": 4 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 3437713, + "thread": 5 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 3553973, + "thread": 19 + } + }, + { + "amount": "235.735863837", + "slot": { + "period": 3659663, + "thread": 4 + } + }, + { + "amount": "235.735863830", + "slot": { + "period": 3887828, + "thread": 18 + } + } + ], + "AU12UTBnRdjvCFh3BSrVKv3wCcfGrXpWVarfzuTdd9qWxsSdhSMC8": [ + { + "amount": "88.611279559", + "slot": { + "period": 138243, + "thread": 2 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 191184, + "thread": 14 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 338003, + "thread": 19 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 562319, + "thread": 30 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 724266, + "thread": 26 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 895674, + "thread": 18 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1085447, + "thread": 16 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1181100, + "thread": 25 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1443381, + "thread": 26 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1491673, + "thread": 28 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1799923, + "thread": 4 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 1813642, + "thread": 15 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2001362, + "thread": 5 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2283610, + "thread": 0 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2412834, + "thread": 18 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2480583, + "thread": 15 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2667232, + "thread": 26 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 2845140, + "thread": 31 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 3018898, + "thread": 27 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 3275718, + "thread": 21 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 3306246, + "thread": 6 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 3460144, + "thread": 8 + } + }, + { + "amount": "88.611279559", + "slot": { + "period": 3619721, + "thread": 5 + } + }, + { + "amount": "88.611279570", + "slot": { + "period": 3851182, + "thread": 23 + } + } + ], + "AU12UUD87pNhYB3Jb2ns1BcaQSBhTAXBQFFhiTbq2wU78ZjKWFSZG": [ + { + "amount": "279.910255028", + "slot": { + "period": 99444, + "thread": 17 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 249245, + "thread": 23 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 356784, + "thread": 11 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 651290, + "thread": 15 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 782132, + "thread": 4 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 906532, + "thread": 31 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1099955, + "thread": 29 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1288830, + "thread": 4 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1393635, + "thread": 30 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1602450, + "thread": 8 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1718328, + "thread": 19 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 1824695, + "thread": 24 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2050937, + "thread": 25 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2185501, + "thread": 8 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2441654, + "thread": 30 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2617473, + "thread": 19 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2641684, + "thread": 2 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2891372, + "thread": 18 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 2987102, + "thread": 18 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 3262483, + "thread": 22 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 3449989, + "thread": 0 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 3456814, + "thread": 21 + } + }, + { + "amount": "279.910255028", + "slot": { + "period": 3663293, + "thread": 20 + } + }, + { + "amount": "279.910255025", + "slot": { + "period": 3892446, + "thread": 6 + } + } + ], + "AU12UUU6LzMg5tabLNDAaXzPiTPWDGabS3PsqBmTyWjPfdjvY1Fpc": [ + { + "amount": "177.678164238", + "slot": { + "period": 21993, + "thread": 20 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 217416, + "thread": 7 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 327148, + "thread": 7 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 581523, + "thread": 29 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 787422, + "thread": 1 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 897283, + "thread": 2 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1023953, + "thread": 5 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1252350, + "thread": 22 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1387549, + "thread": 15 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1533000, + "thread": 27 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1763134, + "thread": 0 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1967755, + "thread": 14 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 1983719, + "thread": 30 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 2238181, + "thread": 17 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 2346193, + "thread": 25 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 2571284, + "thread": 28 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 2710486, + "thread": 18 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 2839769, + "thread": 30 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 3062769, + "thread": 1 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 3158723, + "thread": 14 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 3371605, + "thread": 7 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 3584366, + "thread": 5 + } + }, + { + "amount": "177.678164238", + "slot": { + "period": 3626444, + "thread": 9 + } + }, + { + "amount": "177.678164234", + "slot": { + "period": 3922136, + "thread": 12 + } + } + ], + "AU12UVrGr16WgBtier1aWMpKzXE189zN6pJk4aw6Xj6cLF7Lw66id": [ + { + "amount": "133.948518956", + "slot": { + "period": 135918, + "thread": 27 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 194092, + "thread": 2 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 447884, + "thread": 29 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 542967, + "thread": 10 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 789489, + "thread": 27 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 929896, + "thread": 12 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1057238, + "thread": 24 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1258266, + "thread": 15 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1464828, + "thread": 28 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1600692, + "thread": 3 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1696203, + "thread": 0 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 1922068, + "thread": 31 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2112324, + "thread": 9 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2195726, + "thread": 21 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2383986, + "thread": 12 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2466064, + "thread": 16 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2709349, + "thread": 15 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 2861770, + "thread": 14 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 3033967, + "thread": 28 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 3234000, + "thread": 7 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 3378006, + "thread": 6 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 3527878, + "thread": 20 + } + }, + { + "amount": "133.948518956", + "slot": { + "period": 3656102, + "thread": 8 + } + }, + { + "amount": "133.948518957", + "slot": { + "period": 3858330, + "thread": 7 + } + } + ], + "AU12UWBYCp88aq8Mcqysng6ixkfzqxYhf7avm7QBnddmfUUTfMWKq": [ + { + "amount": "183.546802333", + "slot": { + "period": 50028, + "thread": 18 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 225582, + "thread": 6 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 413852, + "thread": 0 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 648485, + "thread": 21 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 780628, + "thread": 18 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 954273, + "thread": 1 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1134144, + "thread": 3 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1275458, + "thread": 16 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1402018, + "thread": 11 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1623945, + "thread": 7 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1764160, + "thread": 21 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 1828224, + "thread": 14 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2050067, + "thread": 11 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2249560, + "thread": 13 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2382180, + "thread": 20 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2619036, + "thread": 29 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2707522, + "thread": 10 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 2825314, + "thread": 17 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 3011581, + "thread": 21 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 3181624, + "thread": 11 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 3309494, + "thread": 22 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 3503973, + "thread": 8 + } + }, + { + "amount": "183.546802333", + "slot": { + "period": 3724358, + "thread": 22 + } + }, + { + "amount": "183.546802337", + "slot": { + "period": 3892429, + "thread": 27 + } + } + ], + "AU12UWN9jkQLuRd9rMKByaHQ7gumsSj5nmx7Q5sHNrZLex345xfEw": [ + { + "amount": "367.713071758", + "slot": { + "period": 52363, + "thread": 9 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 177256, + "thread": 21 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 478209, + "thread": 13 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 492694, + "thread": 29 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 662208, + "thread": 7 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 870446, + "thread": 0 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1024789, + "thread": 20 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1199633, + "thread": 6 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1319091, + "thread": 11 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1633375, + "thread": 15 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1787690, + "thread": 6 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 1843640, + "thread": 21 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2111083, + "thread": 5 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2215100, + "thread": 22 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2319198, + "thread": 21 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2487510, + "thread": 18 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2731565, + "thread": 29 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2882680, + "thread": 30 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 2999346, + "thread": 6 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 3287794, + "thread": 5 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 3348869, + "thread": 2 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 3600963, + "thread": 20 + } + }, + { + "amount": "367.713071758", + "slot": { + "period": 3681410, + "thread": 6 + } + }, + { + "amount": "367.713071764", + "slot": { + "period": 3832118, + "thread": 31 + } + } + ], + "AU12UWTmJRmEBqGHmuhQFzarsccafc6QDEgC2Mmpk2gaBj37mttGi": [ + { + "amount": "206.768612147", + "slot": { + "period": 137900, + "thread": 11 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 292914, + "thread": 25 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 380157, + "thread": 7 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 596695, + "thread": 9 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 738332, + "thread": 30 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 878952, + "thread": 20 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1058133, + "thread": 16 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1253428, + "thread": 30 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1413291, + "thread": 0 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1587280, + "thread": 23 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1698115, + "thread": 9 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 1968963, + "thread": 10 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2056995, + "thread": 4 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2167367, + "thread": 25 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2427822, + "thread": 15 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2568273, + "thread": 10 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2722043, + "thread": 9 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 2915237, + "thread": 27 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 3023174, + "thread": 24 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 3252656, + "thread": 13 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 3375421, + "thread": 2 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 3463012, + "thread": 10 + } + }, + { + "amount": "206.768612147", + "slot": { + "period": 3707673, + "thread": 25 + } + }, + { + "amount": "206.768612146", + "slot": { + "period": 3802834, + "thread": 21 + } + } + ], + "AU12UXQe8CjMi8yaUxV7ESSb6yBg3CNgVa1jk8RrEemgZfPesJpsy": [ + { + "amount": "148.193620477", + "slot": { + "period": 80591, + "thread": 27 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 286573, + "thread": 18 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 379995, + "thread": 31 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 575242, + "thread": 4 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 747146, + "thread": 28 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 887974, + "thread": 17 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1132312, + "thread": 8 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1170637, + "thread": 4 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1474166, + "thread": 17 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1531826, + "thread": 6 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1797766, + "thread": 13 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 1930516, + "thread": 21 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2092775, + "thread": 18 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2196721, + "thread": 19 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2321583, + "thread": 28 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2512766, + "thread": 5 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2695679, + "thread": 30 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 2942311, + "thread": 8 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 3016165, + "thread": 15 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 3232267, + "thread": 31 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 3327353, + "thread": 10 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 3604648, + "thread": 4 + } + }, + { + "amount": "148.193620477", + "slot": { + "period": 3663127, + "thread": 24 + } + }, + { + "amount": "148.193620488", + "slot": { + "period": 3883126, + "thread": 12 + } + } + ], + "AU12UXmsUW5puPJ58LDhRe6jTSg1hQ5NVdRKrdzWm6MjTETnmoiiQ": [ + { + "amount": "689.626598553", + "slot": { + "period": 152541, + "thread": 12 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 245539, + "thread": 12 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 397859, + "thread": 0 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 572719, + "thread": 13 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 756028, + "thread": 5 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 935768, + "thread": 1 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1072282, + "thread": 3 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1168923, + "thread": 20 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1369961, + "thread": 27 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1608649, + "thread": 4 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1699581, + "thread": 3 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 1832685, + "thread": 19 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2053462, + "thread": 3 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2184753, + "thread": 11 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2423605, + "thread": 29 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2542561, + "thread": 26 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2771669, + "thread": 13 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 2897024, + "thread": 13 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 3024425, + "thread": 0 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 3133820, + "thread": 15 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 3298624, + "thread": 21 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 3578293, + "thread": 26 + } + }, + { + "amount": "689.626598553", + "slot": { + "period": 3719815, + "thread": 2 + } + }, + { + "amount": "689.626598559", + "slot": { + "period": 3873702, + "thread": 13 + } + } + ], + "AU12UZnidqFxKUSfKK8xgquhRhNTiAqs9CLaKnA3nxJd5g8JVthxo": [ + { + "amount": "257.013390772", + "slot": { + "period": 129890, + "thread": 13 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 272501, + "thread": 25 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 480525, + "thread": 9 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 631661, + "thread": 16 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 736269, + "thread": 30 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 854374, + "thread": 30 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1129999, + "thread": 5 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1224844, + "thread": 12 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1381847, + "thread": 5 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1519093, + "thread": 13 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1657111, + "thread": 30 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 1892664, + "thread": 9 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2098987, + "thread": 13 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2249725, + "thread": 28 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2323463, + "thread": 30 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2607539, + "thread": 22 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2629633, + "thread": 20 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2872751, + "thread": 19 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 2983096, + "thread": 16 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 3204337, + "thread": 19 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 3435856, + "thread": 11 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 3465919, + "thread": 3 + } + }, + { + "amount": "257.013390772", + "slot": { + "period": 3652876, + "thread": 11 + } + }, + { + "amount": "257.013390760", + "slot": { + "period": 3941345, + "thread": 17 + } + } + ], + "AU12UZtf9deLSzRKn5xdmGCHD6SqNjL83HLYLm9eEVJmPPpe7tEMY": [ + { + "amount": "51.333863024", + "slot": { + "period": 62457, + "thread": 13 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 296903, + "thread": 19 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 368951, + "thread": 30 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 599460, + "thread": 11 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 657030, + "thread": 29 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 848149, + "thread": 5 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1096202, + "thread": 20 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1263071, + "thread": 19 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1419999, + "thread": 31 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1568620, + "thread": 19 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1670827, + "thread": 2 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 1969765, + "thread": 2 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2009609, + "thread": 20 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2170725, + "thread": 5 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2415594, + "thread": 26 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2495692, + "thread": 15 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2648393, + "thread": 16 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 2866209, + "thread": 9 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 3112807, + "thread": 13 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 3142269, + "thread": 29 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 3302756, + "thread": 31 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 3538907, + "thread": 25 + } + }, + { + "amount": "51.333863024", + "slot": { + "period": 3703818, + "thread": 13 + } + }, + { + "amount": "51.333863017", + "slot": { + "period": 3780235, + "thread": 3 + } + } + ], + "AU12Ua3Ey8SEDNXqFB4wKLEP7JxbY7fraF9MEQeaj5av3Px6ZkALG": [ + { + "amount": "367.168889978", + "slot": { + "period": 15010, + "thread": 14 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 234203, + "thread": 21 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 453275, + "thread": 12 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 494091, + "thread": 21 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 818693, + "thread": 8 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 892559, + "thread": 9 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1125660, + "thread": 11 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1303054, + "thread": 0 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1351858, + "thread": 18 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1577850, + "thread": 22 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1695495, + "thread": 30 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 1816602, + "thread": 9 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2022141, + "thread": 10 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2187045, + "thread": 14 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2352156, + "thread": 0 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2471157, + "thread": 4 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2686097, + "thread": 8 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2810479, + "thread": 2 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 2997114, + "thread": 7 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 3266351, + "thread": 9 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 3414266, + "thread": 19 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 3451670, + "thread": 23 + } + }, + { + "amount": "367.168889978", + "slot": { + "period": 3779846, + "thread": 11 + } + }, + { + "amount": "367.168889971", + "slot": { + "period": 3794508, + "thread": 14 + } + } + ], + "AU12UaLFRqNQKAgMeeUVEb3CAAWNJXjacXP7kyGhwvocBt88yXK2R": [ + { + "amount": "130.755876291", + "slot": { + "period": 81702, + "thread": 16 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 222397, + "thread": 22 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 416834, + "thread": 23 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 651605, + "thread": 6 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 670406, + "thread": 30 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 882932, + "thread": 17 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 983475, + "thread": 12 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 1250188, + "thread": 21 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 1428007, + "thread": 0 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 1623085, + "thread": 1 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 1763842, + "thread": 2 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 1864161, + "thread": 22 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2117472, + "thread": 1 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2164999, + "thread": 0 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2377204, + "thread": 6 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2615566, + "thread": 25 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2627443, + "thread": 26 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 2861868, + "thread": 29 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 3099352, + "thread": 26 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 3157534, + "thread": 12 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 3360676, + "thread": 10 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 3557432, + "thread": 26 + } + }, + { + "amount": "130.755876291", + "slot": { + "period": 3641939, + "thread": 1 + } + }, + { + "amount": "130.755876293", + "slot": { + "period": 3942345, + "thread": 1 + } + } + ], + "AU12UarpZazoecgf6kWT7N6kYo6Mb2yaXyMEBMm67B6DKhizT5e4L": [ + { + "amount": "145.632969035", + "slot": { + "period": 11316, + "thread": 7 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 284460, + "thread": 6 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 330362, + "thread": 1 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 626301, + "thread": 2 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 811191, + "thread": 4 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 849391, + "thread": 16 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 988814, + "thread": 4 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 1244966, + "thread": 11 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 1372384, + "thread": 24 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 1625844, + "thread": 13 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 1649648, + "thread": 19 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 1916762, + "thread": 8 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2098144, + "thread": 7 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2212927, + "thread": 31 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2406066, + "thread": 6 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2466567, + "thread": 13 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2641721, + "thread": 13 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2860317, + "thread": 5 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 2964404, + "thread": 21 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 3212739, + "thread": 6 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 3340632, + "thread": 15 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 3460496, + "thread": 22 + } + }, + { + "amount": "145.632969035", + "slot": { + "period": 3715989, + "thread": 16 + } + }, + { + "amount": "145.632969039", + "slot": { + "period": 3898801, + "thread": 10 + } + } + ], + "AU12Ub2xWJCibonpg6oKt8HBa8RG3zZ8MUdBBL3RqLXn9xEkdmzFA": [ + { + "amount": "359.673146183", + "slot": { + "period": 42791, + "thread": 8 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 181875, + "thread": 26 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 394112, + "thread": 12 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 518443, + "thread": 0 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 769635, + "thread": 9 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 957934, + "thread": 27 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1063977, + "thread": 21 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1268434, + "thread": 17 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1427034, + "thread": 30 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1524160, + "thread": 16 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1677381, + "thread": 25 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 1816972, + "thread": 16 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2044805, + "thread": 26 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2252732, + "thread": 2 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2321588, + "thread": 31 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2605416, + "thread": 15 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2670069, + "thread": 5 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 2800823, + "thread": 18 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 3050549, + "thread": 25 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 3200524, + "thread": 17 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 3373774, + "thread": 17 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 3617016, + "thread": 15 + } + }, + { + "amount": "359.673146183", + "slot": { + "period": 3666408, + "thread": 2 + } + }, + { + "amount": "359.673146173", + "slot": { + "period": 3824789, + "thread": 10 + } + } + ], + "AU12UbqYQhBL3GvLrQXsnPrGArgYKLp6PS1EG77BXfmk642UW8TNX": [ + { + "amount": "240.925855251", + "slot": { + "period": 76824, + "thread": 22 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 214370, + "thread": 9 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 486059, + "thread": 10 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 565209, + "thread": 11 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 714453, + "thread": 9 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 916323, + "thread": 0 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1007011, + "thread": 31 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1173150, + "thread": 21 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1403525, + "thread": 25 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1497641, + "thread": 21 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1775417, + "thread": 18 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 1843245, + "thread": 13 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2062295, + "thread": 10 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2158481, + "thread": 30 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2337822, + "thread": 12 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2599006, + "thread": 7 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2670315, + "thread": 16 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2889280, + "thread": 27 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 2997131, + "thread": 21 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 3176989, + "thread": 9 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 3374707, + "thread": 19 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 3554815, + "thread": 5 + } + }, + { + "amount": "240.925855251", + "slot": { + "period": 3751909, + "thread": 14 + } + }, + { + "amount": "240.925855245", + "slot": { + "period": 3802613, + "thread": 31 + } + } + ], + "AU12UdSsDWSR3XPeNJeTdrtxRN1ij3byLtFbX8v5wz4qK9N47brLL": [ + { + "amount": "448.959752377", + "slot": { + "period": 123355, + "thread": 1 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 196053, + "thread": 21 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 414478, + "thread": 11 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 534167, + "thread": 19 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 656210, + "thread": 23 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 867589, + "thread": 30 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1087643, + "thread": 3 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1238342, + "thread": 0 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1320326, + "thread": 18 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1503736, + "thread": 1 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1694871, + "thread": 25 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1919902, + "thread": 23 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 1991326, + "thread": 0 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 2285149, + "thread": 4 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 2430081, + "thread": 1 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 2474747, + "thread": 7 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 2774503, + "thread": 30 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 2920781, + "thread": 11 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 3016676, + "thread": 31 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 3215381, + "thread": 9 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 3370216, + "thread": 15 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 3471145, + "thread": 7 + } + }, + { + "amount": "448.959752377", + "slot": { + "period": 3668155, + "thread": 9 + } + }, + { + "amount": "448.959752387", + "slot": { + "period": 3911588, + "thread": 19 + } + } + ], + "AU12Udzjz2gW7FJfdjSn6r4YmweFmFyNy6vTK3dvX7zi8GRQsy9Cb": [ + { + "amount": "727.247966120", + "slot": { + "period": 139126, + "thread": 3 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 230935, + "thread": 23 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 373879, + "thread": 16 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 643320, + "thread": 17 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 815033, + "thread": 17 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 825624, + "thread": 10 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1024123, + "thread": 30 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1273558, + "thread": 15 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1463655, + "thread": 17 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1561214, + "thread": 13 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1726583, + "thread": 16 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 1927567, + "thread": 9 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2080807, + "thread": 14 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2174736, + "thread": 20 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2318194, + "thread": 19 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2585505, + "thread": 30 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2684595, + "thread": 7 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 2882565, + "thread": 4 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 3081669, + "thread": 27 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 3196682, + "thread": 16 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 3407366, + "thread": 25 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 3468672, + "thread": 31 + } + }, + { + "amount": "727.247966120", + "slot": { + "period": 3764029, + "thread": 9 + } + }, + { + "amount": "727.247966116", + "slot": { + "period": 3830945, + "thread": 3 + } + } + ], + "AU12Uecx2VW8L8ZJ4xKsVczfaUcCnGFA85F97oCpDd9ecpvAX8kWL": [ + { + "amount": "381.642628807", + "slot": { + "period": 97598, + "thread": 0 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 306184, + "thread": 3 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 428095, + "thread": 21 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 556618, + "thread": 23 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 704022, + "thread": 1 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 973031, + "thread": 6 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1047175, + "thread": 29 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1284701, + "thread": 11 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1464196, + "thread": 25 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1621183, + "thread": 29 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1674830, + "thread": 1 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 1973327, + "thread": 20 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2018765, + "thread": 26 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2178250, + "thread": 30 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2350994, + "thread": 26 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2595910, + "thread": 19 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2720354, + "thread": 23 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 2914620, + "thread": 3 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 3085133, + "thread": 9 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 3229837, + "thread": 3 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 3374091, + "thread": 24 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 3498866, + "thread": 20 + } + }, + { + "amount": "381.642628807", + "slot": { + "period": 3695515, + "thread": 29 + } + }, + { + "amount": "381.642628809", + "slot": { + "period": 3835721, + "thread": 11 + } + } + ], + "AU12Uet4McW6rYgCGjEgpN2qREVKpSJeio3imxfh8kjpnjwPeqgFq": [ + { + "amount": "581.154799295", + "slot": { + "period": 62978, + "thread": 18 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 291293, + "thread": 20 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 468719, + "thread": 27 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 594271, + "thread": 14 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 788574, + "thread": 10 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 821121, + "thread": 5 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1118546, + "thread": 27 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1169167, + "thread": 6 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1474220, + "thread": 2 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1549384, + "thread": 17 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1660514, + "thread": 21 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 1898536, + "thread": 0 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2086685, + "thread": 8 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2256546, + "thread": 15 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2391000, + "thread": 1 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2511405, + "thread": 19 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2744052, + "thread": 30 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 2818860, + "thread": 9 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 3110415, + "thread": 30 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 3153285, + "thread": 25 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 3301548, + "thread": 17 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 3598643, + "thread": 0 + } + }, + { + "amount": "581.154799295", + "slot": { + "period": 3772379, + "thread": 7 + } + }, + { + "amount": "581.154799301", + "slot": { + "period": 3930360, + "thread": 6 + } + } + ], + "AU12UfQNW1nR4BnmJnAbNgRcxR1u8DRXvJAmTQnqmCK54sphXeEZY": [ + { + "amount": "93.121519196", + "slot": { + "period": 157440, + "thread": 5 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 236935, + "thread": 6 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 469383, + "thread": 18 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 543272, + "thread": 13 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 790352, + "thread": 0 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 942631, + "thread": 12 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1139474, + "thread": 21 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1196530, + "thread": 26 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1478467, + "thread": 21 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1575751, + "thread": 27 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1669167, + "thread": 23 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 1831068, + "thread": 15 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2076621, + "thread": 16 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2240483, + "thread": 22 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2454946, + "thread": 11 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2559346, + "thread": 15 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2758416, + "thread": 21 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 2861760, + "thread": 18 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 3034983, + "thread": 10 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 3222145, + "thread": 15 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 3355433, + "thread": 23 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 3574748, + "thread": 21 + } + }, + { + "amount": "93.121519196", + "slot": { + "period": 3692804, + "thread": 12 + } + }, + { + "amount": "93.121519195", + "slot": { + "period": 3837608, + "thread": 6 + } + } + ], + "AU12UgbwZaw41C1KpwFfEZgR2w6gsUL1Fhk5bE61SM3gNJTMajpxi": [ + { + "amount": "250.386382092", + "slot": { + "period": 126738, + "thread": 24 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 320152, + "thread": 3 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 425484, + "thread": 11 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 572101, + "thread": 25 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 716439, + "thread": 1 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 891282, + "thread": 27 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1146167, + "thread": 20 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1192631, + "thread": 7 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1397093, + "thread": 12 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1526122, + "thread": 16 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1793096, + "thread": 16 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1913917, + "thread": 8 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 1989268, + "thread": 27 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 2188551, + "thread": 21 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 2392053, + "thread": 1 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 2623474, + "thread": 3 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 2654574, + "thread": 10 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 2930629, + "thread": 17 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 3013235, + "thread": 20 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 3135778, + "thread": 22 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 3404506, + "thread": 0 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 3487826, + "thread": 2 + } + }, + { + "amount": "250.386382092", + "slot": { + "period": 3657644, + "thread": 21 + } + }, + { + "amount": "250.386382089", + "slot": { + "period": 3783711, + "thread": 17 + } + } + ], + "AU12Ujzd3C1XaUD77mRNCQBfEJw3JKGED5qgXWDGCpam5jYcgR26K": [ + { + "amount": "144.277841312", + "slot": { + "period": 39785, + "thread": 25 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 274666, + "thread": 7 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 433357, + "thread": 25 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 539032, + "thread": 2 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 668872, + "thread": 19 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 899540, + "thread": 10 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1114924, + "thread": 29 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1287883, + "thread": 30 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1478984, + "thread": 18 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1552885, + "thread": 27 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1650105, + "thread": 31 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 1814981, + "thread": 22 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2111422, + "thread": 19 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2144654, + "thread": 24 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2324133, + "thread": 0 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2581606, + "thread": 8 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2704274, + "thread": 11 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2944184, + "thread": 29 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 2976839, + "thread": 6 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 3146517, + "thread": 31 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 3343565, + "thread": 11 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 3471254, + "thread": 17 + } + }, + { + "amount": "144.277841312", + "slot": { + "period": 3769687, + "thread": 26 + } + }, + { + "amount": "144.277841320", + "slot": { + "period": 3913115, + "thread": 26 + } + } + ], + "AU12Uk98p6z9ZxSeY5VpULLuEJPnZixwWsZE9FcVaBchqopVnbWBo": [ + { + "amount": "173.344557367", + "slot": { + "period": 100186, + "thread": 10 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 246857, + "thread": 11 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 425911, + "thread": 9 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 587803, + "thread": 2 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 660320, + "thread": 27 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 845736, + "thread": 27 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1100543, + "thread": 30 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1236359, + "thread": 4 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1434924, + "thread": 29 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1497067, + "thread": 0 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1661816, + "thread": 14 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 1894490, + "thread": 15 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2131694, + "thread": 13 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2284301, + "thread": 31 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2319148, + "thread": 14 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2555166, + "thread": 19 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2772093, + "thread": 10 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2900542, + "thread": 5 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 2985744, + "thread": 0 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 3178388, + "thread": 10 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 3388508, + "thread": 23 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 3465616, + "thread": 25 + } + }, + { + "amount": "173.344557367", + "slot": { + "period": 3639974, + "thread": 24 + } + }, + { + "amount": "173.344557357", + "slot": { + "period": 3909805, + "thread": 18 + } + } + ], + "AU12UkG6j7QHS6VviWB4jikGVB7tBpxNRxv6RFyKDfNeVbH7Cn5as": [ + { + "amount": "394.682826168", + "slot": { + "period": 133185, + "thread": 2 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 257094, + "thread": 21 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 476960, + "thread": 10 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 511958, + "thread": 9 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 673801, + "thread": 22 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 863671, + "thread": 8 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1014515, + "thread": 31 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1303952, + "thread": 8 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1392782, + "thread": 8 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1514922, + "thread": 25 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1685163, + "thread": 16 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1816148, + "thread": 28 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 1980302, + "thread": 21 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 2265934, + "thread": 16 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 2393768, + "thread": 20 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 2470007, + "thread": 24 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 2635863, + "thread": 25 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 2797139, + "thread": 0 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 3080796, + "thread": 30 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 3122742, + "thread": 22 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 3383976, + "thread": 11 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 3509676, + "thread": 18 + } + }, + { + "amount": "394.682826168", + "slot": { + "period": 3697956, + "thread": 1 + } + }, + { + "amount": "394.682826171", + "slot": { + "period": 3822696, + "thread": 8 + } + } + ], + "AU12UkXXVkqMdYxHhdQt9tqyAbx1WvZVbtBoXLwUD733z4ULcM28K": [ + { + "amount": "169.466296064", + "slot": { + "period": 131640, + "thread": 19 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 256698, + "thread": 7 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 412346, + "thread": 4 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 500232, + "thread": 5 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 733198, + "thread": 30 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 927538, + "thread": 8 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1102586, + "thread": 2 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1170169, + "thread": 21 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1452687, + "thread": 30 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1644347, + "thread": 26 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1764712, + "thread": 11 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 1887440, + "thread": 30 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2042005, + "thread": 0 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2189863, + "thread": 6 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2330821, + "thread": 4 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2546297, + "thread": 28 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2750321, + "thread": 17 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2950636, + "thread": 1 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 2970418, + "thread": 26 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 3151647, + "thread": 17 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 3416542, + "thread": 2 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 3575472, + "thread": 1 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 3704372, + "thread": 14 + } + }, + { + "amount": "169.466296064", + "slot": { + "period": 3819948, + "thread": 21 + } + } + ], + "AU12Ukmms92quXvAm3Kaqzi77SmdiNGV5AGWGHofXPXXRbrtp2Ehu": [ + { + "amount": "117.114712535", + "slot": { + "period": 116670, + "thread": 8 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 315174, + "thread": 5 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 491160, + "thread": 1 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 506249, + "thread": 13 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 655708, + "thread": 2 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 913476, + "thread": 2 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1058301, + "thread": 22 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1238042, + "thread": 28 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1413495, + "thread": 15 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1509451, + "thread": 12 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1676690, + "thread": 19 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 1864792, + "thread": 10 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2065068, + "thread": 11 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2241440, + "thread": 23 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2365479, + "thread": 30 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2592745, + "thread": 18 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2759353, + "thread": 23 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 2874117, + "thread": 9 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 3023075, + "thread": 20 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 3209065, + "thread": 13 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 3372011, + "thread": 13 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 3591134, + "thread": 22 + } + }, + { + "amount": "117.114712535", + "slot": { + "period": 3630352, + "thread": 8 + } + }, + { + "amount": "117.114712545", + "slot": { + "period": 3839016, + "thread": 11 + } + } + ], + "AU12UkrciB6jT2jdeDgiAE4BmxPUHcZdqoobS3Xwzro7Axtn4NY3Y": [ + { + "amount": "114.981429178", + "slot": { + "period": 163061, + "thread": 31 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 174514, + "thread": 3 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 324212, + "thread": 29 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 631588, + "thread": 20 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 701168, + "thread": 0 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 899652, + "thread": 8 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1099107, + "thread": 1 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1195873, + "thread": 13 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1477432, + "thread": 3 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1493012, + "thread": 13 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1665810, + "thread": 8 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1907252, + "thread": 26 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 1985648, + "thread": 24 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2226980, + "thread": 21 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2400941, + "thread": 13 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2497790, + "thread": 14 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2761942, + "thread": 17 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2796489, + "thread": 30 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 2968072, + "thread": 14 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 3184981, + "thread": 16 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 3325472, + "thread": 13 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 3510552, + "thread": 5 + } + }, + { + "amount": "114.981429178", + "slot": { + "period": 3652134, + "thread": 13 + } + }, + { + "amount": "114.981429188", + "slot": { + "period": 3831308, + "thread": 22 + } + } + ], + "AU12Uku4FYVzy2S73oB6VXodrcwDA7w3JyXgRRJ5a5hpzxj2D5AXB": [ + { + "amount": "152.387629450", + "slot": { + "period": 150906, + "thread": 21 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 243037, + "thread": 26 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 376479, + "thread": 26 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 574493, + "thread": 1 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 678314, + "thread": 18 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 857838, + "thread": 5 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1119927, + "thread": 5 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1202899, + "thread": 1 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1460833, + "thread": 2 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1609066, + "thread": 7 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1735595, + "thread": 6 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 1889569, + "thread": 16 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2103623, + "thread": 13 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2254438, + "thread": 30 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2346173, + "thread": 2 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2561483, + "thread": 6 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2640501, + "thread": 22 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2944262, + "thread": 8 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 2990838, + "thread": 10 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 3257941, + "thread": 7 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 3403558, + "thread": 7 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 3553392, + "thread": 14 + } + }, + { + "amount": "152.387629450", + "slot": { + "period": 3762858, + "thread": 29 + } + }, + { + "amount": "152.387629445", + "slot": { + "period": 3911901, + "thread": 18 + } + } + ], + "AU12Un3piJh59LCYZQeS7srpXhQZLmo5sdeFR2xQwTQWc3mtwy1EQ": [ + { + "amount": "382.202414442", + "slot": { + "period": 95303, + "thread": 31 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 208171, + "thread": 11 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 338055, + "thread": 18 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 494219, + "thread": 8 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 742925, + "thread": 9 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 921941, + "thread": 16 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1048600, + "thread": 4 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1184070, + "thread": 20 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1354312, + "thread": 3 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1589351, + "thread": 29 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1693344, + "thread": 3 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 1835388, + "thread": 20 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2112241, + "thread": 18 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2218323, + "thread": 5 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2449286, + "thread": 20 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2495014, + "thread": 8 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2787849, + "thread": 29 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 2932543, + "thread": 16 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3065381, + "thread": 27 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3220735, + "thread": 27 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3395185, + "thread": 10 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3480434, + "thread": 14 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3754692, + "thread": 2 + } + }, + { + "amount": "382.202414442", + "slot": { + "period": 3894096, + "thread": 7 + } + } + ], + "AU12UoGUWoJuLUQomRqyGvU35mMtHKJjawNHTUBF4iFV8rCzKATP": [ + { + "amount": "211.789577252", + "slot": { + "period": 145361, + "thread": 0 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 175147, + "thread": 7 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 457637, + "thread": 30 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 558111, + "thread": 8 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 741812, + "thread": 29 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 863896, + "thread": 17 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1081967, + "thread": 9 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1226543, + "thread": 13 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1343810, + "thread": 12 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1513509, + "thread": 5 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1699366, + "thread": 22 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 1898111, + "thread": 19 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2052924, + "thread": 12 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2221438, + "thread": 23 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2337033, + "thread": 8 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2596149, + "thread": 19 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2699711, + "thread": 21 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2823888, + "thread": 16 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 2998097, + "thread": 0 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 3179634, + "thread": 10 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 3297407, + "thread": 30 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 3611034, + "thread": 19 + } + }, + { + "amount": "211.789577252", + "slot": { + "period": 3727056, + "thread": 29 + } + }, + { + "amount": "211.789577248", + "slot": { + "period": 3879196, + "thread": 22 + } + } + ], + "AU12Uq9gLPyVFJbN4P83b4j9BvjMemiT33aqr2tDAxr2dsew6kp55": [ + { + "amount": "320.461135318", + "slot": { + "period": 133269, + "thread": 12 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 261473, + "thread": 3 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 488664, + "thread": 1 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 533858, + "thread": 8 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 815415, + "thread": 15 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 968344, + "thread": 21 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1005303, + "thread": 8 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1245898, + "thread": 17 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1384309, + "thread": 17 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1513198, + "thread": 3 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1658291, + "thread": 16 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 1829459, + "thread": 27 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2065805, + "thread": 20 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2158267, + "thread": 28 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2461830, + "thread": 4 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2500925, + "thread": 29 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2650372, + "thread": 4 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 2939613, + "thread": 30 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 3022725, + "thread": 26 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 3249466, + "thread": 9 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 3427559, + "thread": 3 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 3599111, + "thread": 24 + } + }, + { + "amount": "320.461135318", + "slot": { + "period": 3705288, + "thread": 18 + } + }, + { + "amount": "320.461135327", + "slot": { + "period": 3819698, + "thread": 16 + } + } + ], + "AU12UquaMS8cEqSEG65BbQBXkp6waYNFiFfeziw8nEeZ4W4uU6m5d": [ + { + "amount": "156.378826711", + "slot": { + "period": 19637, + "thread": 12 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 277595, + "thread": 24 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 468034, + "thread": 9 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 493773, + "thread": 17 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 725203, + "thread": 8 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 926420, + "thread": 8 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1077167, + "thread": 18 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1261671, + "thread": 7 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1422528, + "thread": 14 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1645119, + "thread": 13 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1764844, + "thread": 16 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1903504, + "thread": 19 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 1982053, + "thread": 20 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 2286839, + "thread": 3 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 2332935, + "thread": 23 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 2548122, + "thread": 22 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 2747857, + "thread": 30 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 2951168, + "thread": 0 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 3094400, + "thread": 17 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 3185476, + "thread": 12 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 3411047, + "thread": 30 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 3520421, + "thread": 13 + } + }, + { + "amount": "156.378826711", + "slot": { + "period": 3764409, + "thread": 4 + } + }, + { + "amount": "156.378826705", + "slot": { + "period": 3833922, + "thread": 21 + } + } + ], + "AU12UryApPRw18YmK9xnjKbxYH3cx7Ff1QkLbo4gfGjaT4CHfaGV4": [ + { + "amount": "275.915606654", + "slot": { + "period": 134316, + "thread": 22 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 215987, + "thread": 6 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 368727, + "thread": 9 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 528971, + "thread": 26 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 714878, + "thread": 14 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 949064, + "thread": 20 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1076565, + "thread": 1 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1154766, + "thread": 16 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1320484, + "thread": 19 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1488303, + "thread": 9 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1677759, + "thread": 31 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 1822389, + "thread": 11 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2120765, + "thread": 12 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2203241, + "thread": 18 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2369992, + "thread": 18 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2603534, + "thread": 18 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2666192, + "thread": 29 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 2918325, + "thread": 29 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 3111646, + "thread": 8 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 3250248, + "thread": 8 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 3317133, + "thread": 6 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 3455709, + "thread": 16 + } + }, + { + "amount": "275.915606654", + "slot": { + "period": 3690899, + "thread": 31 + } + }, + { + "amount": "275.915606656", + "slot": { + "period": 3891985, + "thread": 2 + } + } + ], + "AU12UtDysRfqXsVSnaFw985eMijowb96ramBD8sdvoYspSXXTNs9Z": [ + { + "amount": "351.655696257", + "slot": { + "period": 38600, + "thread": 4 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 255300, + "thread": 16 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 347771, + "thread": 8 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 505276, + "thread": 18 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 744896, + "thread": 18 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 941122, + "thread": 3 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1097290, + "thread": 11 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1263299, + "thread": 25 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1413364, + "thread": 8 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1602586, + "thread": 28 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1778993, + "thread": 28 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 1851449, + "thread": 18 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2125823, + "thread": 26 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2251161, + "thread": 24 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2452138, + "thread": 7 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2600990, + "thread": 16 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2655634, + "thread": 27 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 2881100, + "thread": 31 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 3085525, + "thread": 19 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 3201211, + "thread": 21 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 3410312, + "thread": 13 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 3512297, + "thread": 18 + } + }, + { + "amount": "351.655696257", + "slot": { + "period": 3627822, + "thread": 28 + } + }, + { + "amount": "351.655696250", + "slot": { + "period": 3850269, + "thread": 21 + } + } + ], + "AU12UtFsvL8QpP8GRqM1od3rJyAE2aVEGgAgvzgM6uz7XzVNT9EQL": [ + { + "amount": "96.025099306", + "slot": { + "period": 133532, + "thread": 24 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 172800, + "thread": 26 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 359705, + "thread": 11 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 498280, + "thread": 12 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 793334, + "thread": 29 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 890795, + "thread": 18 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1098805, + "thread": 16 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1222648, + "thread": 17 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1374986, + "thread": 28 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1638001, + "thread": 1 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1766107, + "thread": 31 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 1951486, + "thread": 22 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2071049, + "thread": 27 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2283233, + "thread": 15 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2449058, + "thread": 26 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2623409, + "thread": 19 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2665101, + "thread": 16 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 2888711, + "thread": 18 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 3087515, + "thread": 25 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 3205031, + "thread": 22 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 3375239, + "thread": 0 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 3494361, + "thread": 3 + } + }, + { + "amount": "96.025099306", + "slot": { + "period": 3620229, + "thread": 29 + } + }, + { + "amount": "96.025099315", + "slot": { + "period": 3890097, + "thread": 17 + } + } + ], + "AU12UtnW6TBB4f48Ts5Ee25QS8PS4qV6J5bxpxkzUGMw9SdWy9mPd": [ + { + "amount": "117.390533127", + "slot": { + "period": 54097, + "thread": 6 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 214685, + "thread": 27 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 478614, + "thread": 31 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 563523, + "thread": 3 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 733376, + "thread": 31 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 875746, + "thread": 31 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1081130, + "thread": 1 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1287838, + "thread": 16 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1394590, + "thread": 1 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1642428, + "thread": 14 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1773281, + "thread": 30 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 1903859, + "thread": 20 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2120390, + "thread": 15 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2158835, + "thread": 19 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2322734, + "thread": 20 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2532801, + "thread": 10 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2708944, + "thread": 29 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 2911065, + "thread": 16 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 3040806, + "thread": 17 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 3182819, + "thread": 29 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 3435783, + "thread": 26 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 3591007, + "thread": 26 + } + }, + { + "amount": "117.390533127", + "slot": { + "period": 3737271, + "thread": 19 + } + }, + { + "amount": "117.390533133", + "slot": { + "period": 3830328, + "thread": 10 + } + } + ], + "AU12Utr9SC3jdZPuDDToC68wNN463EgkEg8Ydi6RykaGebMrs4Jut": [ + { + "amount": "635.402207152", + "slot": { + "period": 161820, + "thread": 14 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 267328, + "thread": 7 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 338115, + "thread": 21 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 608077, + "thread": 7 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 659453, + "thread": 17 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 848873, + "thread": 3 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1100539, + "thread": 11 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1151939, + "thread": 10 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1325935, + "thread": 18 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1642558, + "thread": 8 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1698824, + "thread": 25 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 1819291, + "thread": 2 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2037169, + "thread": 16 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2206826, + "thread": 7 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2416200, + "thread": 3 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2582866, + "thread": 28 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2778548, + "thread": 6 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 2796269, + "thread": 15 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 3080822, + "thread": 4 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 3224399, + "thread": 1 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 3328243, + "thread": 13 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 3465613, + "thread": 11 + } + }, + { + "amount": "635.402207152", + "slot": { + "period": 3666619, + "thread": 16 + } + }, + { + "amount": "635.402207154", + "slot": { + "period": 3835619, + "thread": 3 + } + } + ], + "AU12UtszxjC9bkf3QspVNPT7aFw82wu2F9bY2Ks4MJFJTwBWKhiwN": [ + { + "amount": "119.765257353", + "slot": { + "period": 120966, + "thread": 19 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 317675, + "thread": 23 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 482327, + "thread": 11 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 602601, + "thread": 1 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 730332, + "thread": 21 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 971728, + "thread": 20 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1100902, + "thread": 22 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1192554, + "thread": 14 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1478008, + "thread": 9 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1595534, + "thread": 18 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1796299, + "thread": 1 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 1852443, + "thread": 27 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2136775, + "thread": 10 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2225388, + "thread": 14 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2365841, + "thread": 7 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2529379, + "thread": 20 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2687103, + "thread": 4 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2795602, + "thread": 0 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 2958715, + "thread": 15 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 3237114, + "thread": 19 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 3411323, + "thread": 14 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 3467779, + "thread": 9 + } + }, + { + "amount": "119.765257353", + "slot": { + "period": 3652248, + "thread": 18 + } + }, + { + "amount": "119.765257364", + "slot": { + "period": 3935860, + "thread": 11 + } + } + ], + "AU12UvAcndPhEv5UUvz7huwjnuFN2qPCn8tmQZwfqdwfuu1J8WB1f": [ + { + "amount": "142.003490147", + "slot": { + "period": 21666, + "thread": 24 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 202836, + "thread": 15 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 363944, + "thread": 23 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 626529, + "thread": 16 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 747736, + "thread": 27 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 916203, + "thread": 28 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1062478, + "thread": 18 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1307210, + "thread": 9 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1369998, + "thread": 6 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1527591, + "thread": 10 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1787868, + "thread": 30 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1913403, + "thread": 1 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 1997010, + "thread": 12 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2225471, + "thread": 28 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2457660, + "thread": 26 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2543259, + "thread": 28 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2642996, + "thread": 18 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2874882, + "thread": 16 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 2963910, + "thread": 14 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 3134791, + "thread": 1 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 3377491, + "thread": 1 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 3528342, + "thread": 8 + } + }, + { + "amount": "142.003490147", + "slot": { + "period": 3686757, + "thread": 15 + } + }, + { + "amount": "142.003490139", + "slot": { + "period": 3785335, + "thread": 7 + } + } + ], + "AU12Uvq92FkAHfqX7Srw4jbLhR9oMJ2qfxE4BhtMfPeSremJmts3m": [ + { + "amount": "259.989383290", + "slot": { + "period": 80086, + "thread": 5 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 266513, + "thread": 3 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 419798, + "thread": 3 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 653016, + "thread": 3 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 738886, + "thread": 23 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 964435, + "thread": 29 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 999047, + "thread": 17 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 1152484, + "thread": 10 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 1347195, + "thread": 0 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 1626677, + "thread": 0 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 1806778, + "thread": 14 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 1899372, + "thread": 3 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2092985, + "thread": 11 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2161752, + "thread": 10 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2399352, + "thread": 23 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2498438, + "thread": 2 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2783370, + "thread": 12 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 2901699, + "thread": 4 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 3072056, + "thread": 2 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 3150417, + "thread": 19 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 3423942, + "thread": 24 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 3579081, + "thread": 6 + } + }, + { + "amount": "259.989383290", + "slot": { + "period": 3689368, + "thread": 24 + } + }, + { + "amount": "259.989383285", + "slot": { + "period": 3850792, + "thread": 24 + } + } + ], + "AU12Uvtqvgk3M9q6Jm14CWdL8zcCTiviYQV9ibMfa9RNy6GLQ7SzJ": [ + { + "amount": "55.178310002", + "slot": { + "period": 19555, + "thread": 7 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 255518, + "thread": 3 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 335273, + "thread": 26 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 537084, + "thread": 12 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 741524, + "thread": 31 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 831476, + "thread": 6 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1033468, + "thread": 0 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1301584, + "thread": 20 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1387636, + "thread": 4 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1623747, + "thread": 23 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1783371, + "thread": 19 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 1878420, + "thread": 27 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2133748, + "thread": 10 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2279725, + "thread": 1 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2311648, + "thread": 3 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2583051, + "thread": 17 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2643525, + "thread": 3 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 2813358, + "thread": 28 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 3062562, + "thread": 14 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 3131691, + "thread": 7 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 3335379, + "thread": 14 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 3516589, + "thread": 25 + } + }, + { + "amount": "55.178310002", + "slot": { + "period": 3629319, + "thread": 4 + } + }, + { + "amount": "55.178309994", + "slot": { + "period": 3900376, + "thread": 24 + } + } + ], + "AU12Uw8R5dB7V3fxRx2Wj72FAS29bpKZyPqb1fCwdjEhmv7gA89y1": [ + { + "amount": "200.072074586", + "slot": { + "period": 150192, + "thread": 31 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 291814, + "thread": 20 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 467914, + "thread": 26 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 535223, + "thread": 24 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 807275, + "thread": 5 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 922815, + "thread": 8 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1080987, + "thread": 0 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1213589, + "thread": 25 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1477892, + "thread": 20 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1640116, + "thread": 13 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1737309, + "thread": 6 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1819260, + "thread": 4 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 1998666, + "thread": 21 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 2274177, + "thread": 12 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 2315381, + "thread": 0 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 2471295, + "thread": 27 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 2700503, + "thread": 11 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 2906183, + "thread": 10 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 3082257, + "thread": 14 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 3222903, + "thread": 8 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 3325997, + "thread": 30 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 3557176, + "thread": 8 + } + }, + { + "amount": "200.072074586", + "slot": { + "period": 3717802, + "thread": 31 + } + }, + { + "amount": "200.072074584", + "slot": { + "period": 3780069, + "thread": 11 + } + } + ], + "AU12Uwg1nMDkdAjMZH7jmmaaRRkxrjaJVFoorCGfqXFjxCWZZ1acF": [ + { + "amount": "215.172767833", + "slot": { + "period": 110180, + "thread": 19 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 266691, + "thread": 26 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 424457, + "thread": 15 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 580177, + "thread": 17 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 678245, + "thread": 27 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 894603, + "thread": 16 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1018766, + "thread": 11 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1158916, + "thread": 18 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1340269, + "thread": 29 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1586860, + "thread": 26 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1669931, + "thread": 14 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 1897226, + "thread": 10 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2075498, + "thread": 14 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2174642, + "thread": 24 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2395577, + "thread": 14 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2520101, + "thread": 11 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2743956, + "thread": 19 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 2803493, + "thread": 20 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 3001377, + "thread": 1 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 3166119, + "thread": 26 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 3361264, + "thread": 10 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 3461444, + "thread": 21 + } + }, + { + "amount": "215.172767833", + "slot": { + "period": 3685676, + "thread": 16 + } + }, + { + "amount": "215.172767843", + "slot": { + "period": 3800389, + "thread": 16 + } + } + ], + "AU12UwhwMMvjPwME1PTQqSYLJWBNTfBT4pfv4EriJKRXk6YoDK8gu": [ + { + "amount": "173.647485976", + "slot": { + "period": 69847, + "thread": 3 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 268499, + "thread": 15 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 340145, + "thread": 8 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 564270, + "thread": 26 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 746071, + "thread": 29 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 837606, + "thread": 19 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1016442, + "thread": 25 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1204226, + "thread": 16 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1432868, + "thread": 14 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1610525, + "thread": 2 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1802127, + "thread": 23 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 1898270, + "thread": 8 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2122438, + "thread": 4 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2171422, + "thread": 15 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2342470, + "thread": 25 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2559076, + "thread": 0 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2684491, + "thread": 17 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2860951, + "thread": 6 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 2991744, + "thread": 22 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 3146848, + "thread": 27 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 3439128, + "thread": 14 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 3576962, + "thread": 14 + } + }, + { + "amount": "173.647485976", + "slot": { + "period": 3645710, + "thread": 20 + } + }, + { + "amount": "173.647485965", + "slot": { + "period": 3925275, + "thread": 0 + } + } + ], + "AU12Uwi8ZHcqUo2csxuakaQTC815RpB8ErRtbr6dSJRcZcgDJm793": [ + { + "amount": "122.582658277", + "slot": { + "period": 29710, + "thread": 24 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 288112, + "thread": 18 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 338385, + "thread": 24 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 641191, + "thread": 18 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 713597, + "thread": 16 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 982633, + "thread": 8 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1091951, + "thread": 29 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1271597, + "thread": 25 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1404976, + "thread": 9 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1567461, + "thread": 29 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1657358, + "thread": 27 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 1849801, + "thread": 20 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2022908, + "thread": 19 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2203320, + "thread": 16 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2324034, + "thread": 23 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2619625, + "thread": 9 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2780826, + "thread": 31 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 2948014, + "thread": 27 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 3080587, + "thread": 18 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 3276649, + "thread": 28 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 3444917, + "thread": 14 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 3561793, + "thread": 26 + } + }, + { + "amount": "122.582658277", + "slot": { + "period": 3619386, + "thread": 26 + } + }, + { + "amount": "122.582658267", + "slot": { + "period": 3890322, + "thread": 5 + } + } + ], + "AU12UxRqfJGtFpQEdmJaLStRGtUBuHyYkVepVRTsm9kBfJKET6RMn": [ + { + "amount": "137.417991977", + "slot": { + "period": 36474, + "thread": 23 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 323081, + "thread": 17 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 369581, + "thread": 28 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 579144, + "thread": 28 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 770238, + "thread": 23 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 975056, + "thread": 0 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1009858, + "thread": 3 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1150307, + "thread": 18 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1445693, + "thread": 25 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1643228, + "thread": 8 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1744523, + "thread": 8 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 1911853, + "thread": 26 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2052437, + "thread": 25 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2195693, + "thread": 30 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2357811, + "thread": 24 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2577187, + "thread": 27 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2627549, + "thread": 25 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2884410, + "thread": 0 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 2969819, + "thread": 18 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 3258266, + "thread": 20 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 3415700, + "thread": 20 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 3564855, + "thread": 13 + } + }, + { + "amount": "137.417991977", + "slot": { + "period": 3757295, + "thread": 22 + } + }, + { + "amount": "137.417991967", + "slot": { + "period": 3856947, + "thread": 0 + } + } + ], + "AU12Uy7ZYUUDZF3wy7LLdHgC7JvoMjcH3VLZBwgJgc3bTY1U2FAiB": [ + { + "amount": "438.476671831", + "slot": { + "period": 137408, + "thread": 13 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 283366, + "thread": 3 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 436693, + "thread": 21 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 597036, + "thread": 17 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 726905, + "thread": 27 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 872078, + "thread": 29 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1114337, + "thread": 29 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1212895, + "thread": 26 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1412950, + "thread": 16 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1610360, + "thread": 27 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1681444, + "thread": 29 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 1850522, + "thread": 1 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2140764, + "thread": 2 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2221760, + "thread": 22 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2426653, + "thread": 16 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2548445, + "thread": 28 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2711476, + "thread": 27 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2811575, + "thread": 17 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 2998994, + "thread": 18 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 3240550, + "thread": 13 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 3421969, + "thread": 7 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 3595859, + "thread": 14 + } + }, + { + "amount": "438.476671831", + "slot": { + "period": 3691598, + "thread": 0 + } + }, + { + "amount": "438.476671840", + "slot": { + "period": 3932551, + "thread": 25 + } + } + ], + "AU12UyEe5x5ZnvNFP5wvfkKuUGXq7jhteeJq9ZfhQ8WNRcVT9PhWC": [ + { + "amount": "195.784250476", + "slot": { + "period": 81228, + "thread": 23 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 187782, + "thread": 18 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 433423, + "thread": 1 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 634207, + "thread": 18 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 666640, + "thread": 11 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 874368, + "thread": 17 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1102690, + "thread": 5 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1224851, + "thread": 24 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1419973, + "thread": 28 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1480265, + "thread": 28 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1729085, + "thread": 0 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 1896801, + "thread": 21 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2123110, + "thread": 10 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2275825, + "thread": 12 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2325131, + "thread": 6 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2547923, + "thread": 0 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2767024, + "thread": 13 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2871218, + "thread": 0 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 2993627, + "thread": 28 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 3154004, + "thread": 16 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 3321635, + "thread": 4 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 3609135, + "thread": 11 + } + }, + { + "amount": "195.784250476", + "slot": { + "period": 3773688, + "thread": 17 + } + }, + { + "amount": "195.784250482", + "slot": { + "period": 3850969, + "thread": 24 + } + } + ], + "AU12V1LHPCzK6zCTyRaNoQSyqiJk5d2Lxmjj7uHUEja5k5E9Mwd5G": [ + { + "amount": "81.497341364", + "slot": { + "period": 78882, + "thread": 0 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 179861, + "thread": 6 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 484468, + "thread": 13 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 505447, + "thread": 24 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 693419, + "thread": 15 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 878285, + "thread": 24 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1147548, + "thread": 19 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1227928, + "thread": 23 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1479248, + "thread": 0 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1495704, + "thread": 2 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1684418, + "thread": 11 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 1882491, + "thread": 18 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2119533, + "thread": 8 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2287108, + "thread": 18 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2433850, + "thread": 27 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2550009, + "thread": 31 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2785809, + "thread": 10 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2866675, + "thread": 24 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 2978066, + "thread": 7 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 3279199, + "thread": 28 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 3341497, + "thread": 24 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 3525338, + "thread": 12 + } + }, + { + "amount": "81.497341364", + "slot": { + "period": 3620776, + "thread": 25 + } + }, + { + "amount": "81.497341367", + "slot": { + "period": 3946589, + "thread": 28 + } + } + ], + "AU12V1gbrf6mgTg8szq7pmpbz595JhXiFxLT7bpFtXu34xVDgK9Gz": [ + { + "amount": "54.100579102", + "slot": { + "period": 89725, + "thread": 8 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 220750, + "thread": 25 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 371772, + "thread": 11 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 590907, + "thread": 10 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 817521, + "thread": 27 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 859522, + "thread": 13 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1088023, + "thread": 22 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1177412, + "thread": 5 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1443235, + "thread": 9 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1597560, + "thread": 29 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1647354, + "thread": 3 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 1925548, + "thread": 11 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2033596, + "thread": 15 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2290234, + "thread": 8 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2328328, + "thread": 4 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2619060, + "thread": 10 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2702913, + "thread": 9 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 2920558, + "thread": 12 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 3015994, + "thread": 15 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 3143778, + "thread": 30 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 3368954, + "thread": 11 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 3617648, + "thread": 12 + } + }, + { + "amount": "54.100579102", + "slot": { + "period": 3709602, + "thread": 20 + } + }, + { + "amount": "54.100579103", + "slot": { + "period": 3870067, + "thread": 1 + } + } + ], + "AU12V1zboiJ9cKG1oprFTC9YtxEXjcdX275Vo1sAK17rSQqAQ1i1n": [ + { + "amount": "275.088069340", + "slot": { + "period": 18770, + "thread": 5 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 184871, + "thread": 30 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 346218, + "thread": 18 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 551529, + "thread": 17 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 729901, + "thread": 26 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 910323, + "thread": 7 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1078876, + "thread": 26 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1202492, + "thread": 11 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1404170, + "thread": 15 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1557590, + "thread": 3 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1709301, + "thread": 6 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 1923216, + "thread": 17 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2112190, + "thread": 5 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2237595, + "thread": 27 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2433194, + "thread": 4 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2541701, + "thread": 1 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2727059, + "thread": 18 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 2800671, + "thread": 6 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 3011603, + "thread": 19 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 3210421, + "thread": 28 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 3363356, + "thread": 30 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 3450726, + "thread": 11 + } + }, + { + "amount": "275.088069340", + "slot": { + "period": 3723823, + "thread": 8 + } + }, + { + "amount": "275.088069344", + "slot": { + "period": 3780888, + "thread": 27 + } + } + ], + "AU12V2DEWhGzR7mJsxDuLtqjEJJYTJewE7w8WnMSZq6Hq9cFanMLg": [ + { + "amount": "320.011719227", + "slot": { + "period": 128899, + "thread": 24 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 299422, + "thread": 15 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 354502, + "thread": 8 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 538359, + "thread": 4 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 762682, + "thread": 10 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 953755, + "thread": 21 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1125934, + "thread": 14 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1206693, + "thread": 31 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1342068, + "thread": 6 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1617929, + "thread": 4 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1695678, + "thread": 31 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 1949262, + "thread": 6 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2091908, + "thread": 4 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2292035, + "thread": 11 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2312811, + "thread": 20 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2498692, + "thread": 11 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2773221, + "thread": 12 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2889906, + "thread": 5 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 2976292, + "thread": 3 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 3283601, + "thread": 25 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 3429551, + "thread": 28 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 3541656, + "thread": 29 + } + }, + { + "amount": "320.011719227", + "slot": { + "period": 3669869, + "thread": 3 + } + }, + { + "amount": "320.011719223", + "slot": { + "period": 3917074, + "thread": 15 + } + } + ], + "AU12V3Tr3GVuhCiA4jo5Xw5GNZqSWGdEeXxd26mgZCYUd5f2Zfuvi": [ + { + "amount": "230.899379627", + "slot": { + "period": 100797, + "thread": 22 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 285839, + "thread": 0 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 464929, + "thread": 14 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 510482, + "thread": 25 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 670354, + "thread": 22 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 949713, + "thread": 19 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1063031, + "thread": 15 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1300354, + "thread": 15 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1454940, + "thread": 21 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1634881, + "thread": 24 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1800146, + "thread": 19 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 1938188, + "thread": 22 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2116139, + "thread": 27 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2272782, + "thread": 9 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2401231, + "thread": 25 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2550656, + "thread": 20 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2789451, + "thread": 19 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 2860383, + "thread": 27 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 3017276, + "thread": 17 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 3191159, + "thread": 8 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 3439856, + "thread": 2 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 3578817, + "thread": 12 + } + }, + { + "amount": "230.899379627", + "slot": { + "period": 3694139, + "thread": 7 + } + }, + { + "amount": "230.899379630", + "slot": { + "period": 3879567, + "thread": 9 + } + } + ], + "AU12V3zP7cbBepX7SqDkqefAiybdCtCtXMmR6hCqSDNKbGAYDo5bE": [ + { + "amount": "495.064053761", + "slot": { + "period": 119122, + "thread": 16 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 213026, + "thread": 16 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 352811, + "thread": 24 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 548602, + "thread": 29 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 750699, + "thread": 20 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 888711, + "thread": 0 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1114665, + "thread": 5 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1196818, + "thread": 8 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1368992, + "thread": 10 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1621880, + "thread": 30 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1669873, + "thread": 0 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 1894109, + "thread": 18 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2064294, + "thread": 0 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2171748, + "thread": 23 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2415610, + "thread": 22 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2602895, + "thread": 27 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2769926, + "thread": 12 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 2871963, + "thread": 11 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 3067155, + "thread": 31 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 3253095, + "thread": 20 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 3351534, + "thread": 24 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 3595051, + "thread": 17 + } + }, + { + "amount": "495.064053761", + "slot": { + "period": 3623703, + "thread": 0 + } + }, + { + "amount": "495.064053769", + "slot": { + "period": 3938416, + "thread": 19 + } + } + ], + "AU12V47hw1qHq22GUK668bSzz4BWTgXGpju6FixzqRGP9UVCDsP31": [ + { + "amount": "61.382222412", + "slot": { + "period": 146916, + "thread": 2 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 282346, + "thread": 7 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 383178, + "thread": 23 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 641267, + "thread": 28 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 668563, + "thread": 16 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 825302, + "thread": 21 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1099481, + "thread": 18 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1160832, + "thread": 25 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1437783, + "thread": 5 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1616153, + "thread": 18 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1702772, + "thread": 19 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 1877803, + "thread": 27 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2043701, + "thread": 31 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2179372, + "thread": 26 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2412088, + "thread": 14 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2478775, + "thread": 13 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2679757, + "thread": 3 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 2897503, + "thread": 30 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 3038093, + "thread": 27 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 3174071, + "thread": 17 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 3395013, + "thread": 21 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 3457888, + "thread": 10 + } + }, + { + "amount": "61.382222412", + "slot": { + "period": 3778498, + "thread": 15 + } + }, + { + "amount": "61.382222423", + "slot": { + "period": 3827141, + "thread": 13 + } + } + ], + "AU12V4PYbt9tW442pPxiCm7V66jkDnpCTJHgoG5oLPWxg1LnKvDNL": [ + { + "amount": "195.481712121", + "slot": { + "period": 132349, + "thread": 14 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 203257, + "thread": 29 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 351468, + "thread": 31 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 510317, + "thread": 17 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 664048, + "thread": 20 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 852036, + "thread": 5 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1066517, + "thread": 26 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1206139, + "thread": 5 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1437234, + "thread": 24 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1621247, + "thread": 28 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1786983, + "thread": 5 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 1858581, + "thread": 19 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2039863, + "thread": 10 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2167401, + "thread": 10 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2368251, + "thread": 15 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2506756, + "thread": 15 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2714627, + "thread": 30 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2897076, + "thread": 1 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 2983651, + "thread": 28 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 3284258, + "thread": 28 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 3366062, + "thread": 10 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 3518887, + "thread": 3 + } + }, + { + "amount": "195.481712121", + "slot": { + "period": 3699199, + "thread": 5 + } + }, + { + "amount": "195.481712129", + "slot": { + "period": 3810638, + "thread": 9 + } + } + ], + "AU12V4TtbdxUXgGGP4GSxZmA387qwtArwt5uzUAMnS3ytGz7j6r9x": [ + { + "amount": "267.042928185", + "slot": { + "period": 150663, + "thread": 29 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 312395, + "thread": 27 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 488994, + "thread": 18 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 620495, + "thread": 27 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 679982, + "thread": 7 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 883216, + "thread": 20 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1143692, + "thread": 24 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1266820, + "thread": 5 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1458968, + "thread": 20 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1596165, + "thread": 7 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1683518, + "thread": 8 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 1954915, + "thread": 13 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2007203, + "thread": 3 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2157188, + "thread": 6 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2456571, + "thread": 2 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2592502, + "thread": 0 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2690536, + "thread": 29 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2849140, + "thread": 2 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 2998174, + "thread": 31 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 3285105, + "thread": 15 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 3419024, + "thread": 8 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 3451060, + "thread": 28 + } + }, + { + "amount": "267.042928185", + "slot": { + "period": 3744177, + "thread": 4 + } + }, + { + "amount": "267.042928187", + "slot": { + "period": 3813604, + "thread": 8 + } + } + ], + "AU12V5C3ivcaCDVWMvm2DVqPK8BYqfi5aqGi17GUe74dytUb8Z4hT": [ + { + "amount": "93.807963042", + "slot": { + "period": 122009, + "thread": 14 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 245332, + "thread": 11 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 416006, + "thread": 20 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 617659, + "thread": 11 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 776331, + "thread": 8 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 903696, + "thread": 5 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1129559, + "thread": 17 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1246532, + "thread": 29 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1387495, + "thread": 26 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1513023, + "thread": 31 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1705031, + "thread": 30 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 1883279, + "thread": 10 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2070817, + "thread": 5 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2207707, + "thread": 13 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2413205, + "thread": 3 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2541152, + "thread": 26 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2763077, + "thread": 7 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 2940816, + "thread": 5 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 3036677, + "thread": 28 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 3256812, + "thread": 27 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 3336514, + "thread": 28 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 3601951, + "thread": 14 + } + }, + { + "amount": "93.807963042", + "slot": { + "period": 3624129, + "thread": 29 + } + }, + { + "amount": "93.807963030", + "slot": { + "period": 3883606, + "thread": 30 + } + } + ], + "AU12V5Pxc8bVyYbKHzPYtZtMbaPsw8Q3zVR7a87RU3pduzNV3wiZF": [ + { + "amount": "110.053706766", + "slot": { + "period": 159865, + "thread": 21 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 235304, + "thread": 29 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 473880, + "thread": 17 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 491887, + "thread": 1 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 789670, + "thread": 18 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 947414, + "thread": 1 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1031256, + "thread": 26 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1287181, + "thread": 0 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1379092, + "thread": 8 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1586186, + "thread": 22 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1687775, + "thread": 31 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 1828517, + "thread": 8 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2019724, + "thread": 14 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2229766, + "thread": 11 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2441100, + "thread": 11 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2480959, + "thread": 1 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2710548, + "thread": 17 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 2952759, + "thread": 11 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 3066534, + "thread": 16 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 3184974, + "thread": 16 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 3422679, + "thread": 16 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 3597561, + "thread": 7 + } + }, + { + "amount": "110.053706766", + "slot": { + "period": 3695646, + "thread": 28 + } + }, + { + "amount": "110.053706763", + "slot": { + "period": 3797938, + "thread": 24 + } + } + ], + "AU12V5cgG4i1SvR74UMvsN3FC4rvrAQLcDmba3rqFJPx2YPaTgb4j": [ + { + "amount": "132.358608532", + "slot": { + "period": 47180, + "thread": 3 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 248188, + "thread": 29 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 481398, + "thread": 19 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 494212, + "thread": 1 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 738867, + "thread": 8 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 963937, + "thread": 8 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 997237, + "thread": 22 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 1254098, + "thread": 20 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 1409087, + "thread": 28 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 1531414, + "thread": 15 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 1707206, + "thread": 15 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 1885333, + "thread": 13 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2043249, + "thread": 6 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2207394, + "thread": 19 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2315232, + "thread": 25 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2467035, + "thread": 2 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2712505, + "thread": 3 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2911616, + "thread": 9 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 2955756, + "thread": 15 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 3275158, + "thread": 10 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 3365509, + "thread": 14 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 3551936, + "thread": 18 + } + }, + { + "amount": "132.358608532", + "slot": { + "period": 3774384, + "thread": 22 + } + }, + { + "amount": "132.358608525", + "slot": { + "period": 3877063, + "thread": 10 + } + } + ], + "AU12V5xsPNCuV4WbMQ7nNjZQ5mEPSxQWZXxZoqVeWcEF3gxKVAmjX": [ + { + "amount": "105.223638270", + "slot": { + "period": 110774, + "thread": 24 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 301889, + "thread": 31 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 455590, + "thread": 30 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 513426, + "thread": 24 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 738782, + "thread": 13 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 903635, + "thread": 21 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 987887, + "thread": 14 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 1241254, + "thread": 9 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 1339374, + "thread": 2 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 1480018, + "thread": 1 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 1769323, + "thread": 26 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 1876031, + "thread": 23 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2008226, + "thread": 5 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2292140, + "thread": 25 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2347027, + "thread": 10 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2539902, + "thread": 19 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2662285, + "thread": 31 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 2927006, + "thread": 15 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 3057456, + "thread": 10 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 3285663, + "thread": 28 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 3296559, + "thread": 10 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 3553570, + "thread": 30 + } + }, + { + "amount": "105.223638270", + "slot": { + "period": 3685878, + "thread": 13 + } + }, + { + "amount": "105.223638269", + "slot": { + "period": 3924824, + "thread": 15 + } + } + ], + "AU12V5zhrTvqjzRYz5rwUX499ENTnzVhYkWGZViQVkWNemXsDaDwM": [ + { + "amount": "81.985971783", + "slot": { + "period": 79896, + "thread": 16 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 207917, + "thread": 25 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 335656, + "thread": 28 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 618975, + "thread": 17 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 782924, + "thread": 28 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 890213, + "thread": 8 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 989919, + "thread": 30 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 1294689, + "thread": 4 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 1465638, + "thread": 16 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 1504699, + "thread": 23 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 1704352, + "thread": 4 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 1929702, + "thread": 30 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2065821, + "thread": 6 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2206277, + "thread": 13 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2384214, + "thread": 22 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2603124, + "thread": 5 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2728940, + "thread": 13 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 2843511, + "thread": 24 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3099727, + "thread": 18 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3234652, + "thread": 3 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3400175, + "thread": 18 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3577542, + "thread": 8 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3712605, + "thread": 5 + } + }, + { + "amount": "81.985971783", + "slot": { + "period": 3801172, + "thread": 2 + } + } + ], + "AU12V6Eohq9M71FeoLgYVeG2NXiC38NsxKMfCUqXrRxKgT9hhxSQS": [ + { + "amount": "155.032424032", + "slot": { + "period": 117899, + "thread": 20 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 176921, + "thread": 7 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 468541, + "thread": 0 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 576887, + "thread": 15 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 661593, + "thread": 25 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 926495, + "thread": 2 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1099256, + "thread": 21 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1250926, + "thread": 15 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1434633, + "thread": 19 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1569308, + "thread": 10 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1804288, + "thread": 29 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 1926050, + "thread": 30 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2073975, + "thread": 21 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2154813, + "thread": 20 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2379902, + "thread": 19 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2590569, + "thread": 26 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2774234, + "thread": 23 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2898463, + "thread": 28 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 2997535, + "thread": 9 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 3281025, + "thread": 28 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 3309273, + "thread": 29 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 3566744, + "thread": 20 + } + }, + { + "amount": "155.032424032", + "slot": { + "period": 3708693, + "thread": 24 + } + }, + { + "amount": "155.032424040", + "slot": { + "period": 3819724, + "thread": 27 + } + } + ], + "AU12V6rdenzcbMxCVtoukE1VU38tX5okMnEZz5oP2qehvrpok3Qnj": [ + { + "amount": "161.664875458", + "slot": { + "period": 67852, + "thread": 31 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 183911, + "thread": 9 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 405785, + "thread": 7 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 569254, + "thread": 23 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 654134, + "thread": 2 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 974350, + "thread": 20 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1027994, + "thread": 7 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1178206, + "thread": 15 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1458932, + "thread": 8 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1598644, + "thread": 16 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1733191, + "thread": 12 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1903601, + "thread": 5 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 1984482, + "thread": 17 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 2213833, + "thread": 13 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 2445079, + "thread": 27 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 2597689, + "thread": 7 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 2707004, + "thread": 3 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 2922566, + "thread": 17 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 3110768, + "thread": 19 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 3240330, + "thread": 12 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 3311682, + "thread": 16 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 3474942, + "thread": 6 + } + }, + { + "amount": "161.664875458", + "slot": { + "period": 3726851, + "thread": 22 + } + }, + { + "amount": "161.664875454", + "slot": { + "period": 3844835, + "thread": 12 + } + } + ], + "AU12V766swYCfRCoZerzLrYmhBsasJsdJVPe1KEpqDbYb1QVEMPj9": [ + { + "amount": "217.931479036", + "slot": { + "period": 135878, + "thread": 12 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 293688, + "thread": 0 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 393848, + "thread": 25 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 513992, + "thread": 9 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 708281, + "thread": 24 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 837761, + "thread": 23 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 998620, + "thread": 2 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1237020, + "thread": 22 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1393426, + "thread": 17 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1573620, + "thread": 6 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1708380, + "thread": 21 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1819333, + "thread": 2 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 1996404, + "thread": 25 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2284331, + "thread": 26 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2439212, + "thread": 17 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2551283, + "thread": 30 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2635878, + "thread": 3 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2871897, + "thread": 13 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 2960673, + "thread": 0 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 3179990, + "thread": 28 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 3414501, + "thread": 14 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 3601707, + "thread": 13 + } + }, + { + "amount": "217.931479036", + "slot": { + "period": 3721719, + "thread": 22 + } + }, + { + "amount": "217.931479037", + "slot": { + "period": 3874563, + "thread": 29 + } + } + ], + "AU12V7BgkUSpxR3Md2iLddc9Yf2f6mcGzdDxK967XXPBMvPxk9S6o": [ + { + "amount": "66.308119258", + "slot": { + "period": 144697, + "thread": 7 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 202879, + "thread": 12 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 333944, + "thread": 8 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 516741, + "thread": 0 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 717479, + "thread": 30 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 879658, + "thread": 4 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1034285, + "thread": 28 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1190453, + "thread": 4 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1421864, + "thread": 17 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1538494, + "thread": 21 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1681859, + "thread": 8 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 1901352, + "thread": 12 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2096193, + "thread": 2 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2264304, + "thread": 17 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2411320, + "thread": 26 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2561635, + "thread": 23 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2653894, + "thread": 30 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 2864702, + "thread": 0 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 3059390, + "thread": 25 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 3232532, + "thread": 30 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 3345150, + "thread": 3 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 3453081, + "thread": 10 + } + }, + { + "amount": "66.308119258", + "slot": { + "period": 3626570, + "thread": 13 + } + }, + { + "amount": "66.308119259", + "slot": { + "period": 3911401, + "thread": 4 + } + } + ], + "AU12V7i4A73hpG15PDEx64HDKjURL6GPXCVoU9eTBsraNeTCsvxgS": [ + { + "amount": "52.923866733", + "slot": { + "period": 137448, + "thread": 24 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 172985, + "thread": 30 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 481250, + "thread": 4 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 609237, + "thread": 13 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 796372, + "thread": 14 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 883858, + "thread": 31 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1030058, + "thread": 21 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1179575, + "thread": 20 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1352927, + "thread": 31 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1513539, + "thread": 8 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1668613, + "thread": 19 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 1934096, + "thread": 30 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2049289, + "thread": 8 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2207375, + "thread": 26 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2308240, + "thread": 1 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2610347, + "thread": 24 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2636710, + "thread": 29 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 2916492, + "thread": 23 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 3106546, + "thread": 28 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 3173417, + "thread": 27 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 3403309, + "thread": 22 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 3500284, + "thread": 20 + } + }, + { + "amount": "52.923866733", + "slot": { + "period": 3716063, + "thread": 8 + } + }, + { + "amount": "52.923866739", + "slot": { + "period": 3874647, + "thread": 9 + } + } + ], + "AU12V8NCwUXH63aH6vHaGZsgHAZLeUp44vAEaLscZBK9N54Evkgh4": [ + { + "amount": "94.385152596", + "slot": { + "period": 84575, + "thread": 0 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 256712, + "thread": 16 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 367476, + "thread": 21 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 517059, + "thread": 16 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 746075, + "thread": 8 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 895294, + "thread": 15 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1009360, + "thread": 28 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1246567, + "thread": 22 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1352721, + "thread": 8 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1640895, + "thread": 22 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1760629, + "thread": 6 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 1895813, + "thread": 24 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2127634, + "thread": 31 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2199934, + "thread": 26 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2409796, + "thread": 31 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2550563, + "thread": 11 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2771215, + "thread": 13 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2919171, + "thread": 2 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 2991066, + "thread": 2 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 3288400, + "thread": 20 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 3366554, + "thread": 14 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 3474559, + "thread": 1 + } + }, + { + "amount": "94.385152596", + "slot": { + "period": 3624446, + "thread": 14 + } + }, + { + "amount": "94.385152591", + "slot": { + "period": 3802325, + "thread": 27 + } + } + ], + "AU12V8NHXzzbLquwvDbjReWUrNgbgkfLBa4EkkdeRs32AvrnL19cK": [ + { + "amount": "114.146359104", + "slot": { + "period": 166985, + "thread": 14 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 218993, + "thread": 0 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 433755, + "thread": 29 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 592986, + "thread": 25 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 791160, + "thread": 1 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 927848, + "thread": 12 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1086060, + "thread": 27 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1161129, + "thread": 7 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1332638, + "thread": 19 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1605899, + "thread": 24 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1773810, + "thread": 14 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 1933751, + "thread": 6 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2058492, + "thread": 0 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2187185, + "thread": 8 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2414023, + "thread": 14 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2560221, + "thread": 10 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2769845, + "thread": 2 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 2865673, + "thread": 4 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 3071691, + "thread": 0 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 3132831, + "thread": 14 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 3288864, + "thread": 31 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 3546889, + "thread": 18 + } + }, + { + "amount": "114.146359104", + "slot": { + "period": 3685089, + "thread": 29 + } + }, + { + "amount": "114.146359097", + "slot": { + "period": 3795737, + "thread": 13 + } + } + ], + "AU12V8sYg3wnVwJfADuyzXuVu2sgVUYices1nPFwTuSTmGGoQpXgA": [ + { + "amount": "138.195790655", + "slot": { + "period": 94618, + "thread": 0 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 237727, + "thread": 11 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 478162, + "thread": 27 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 583208, + "thread": 7 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 664775, + "thread": 28 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 822703, + "thread": 21 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1125082, + "thread": 10 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1173075, + "thread": 25 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1412857, + "thread": 19 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1573365, + "thread": 30 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1758912, + "thread": 20 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 1973110, + "thread": 17 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2041270, + "thread": 3 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2235721, + "thread": 26 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2407003, + "thread": 6 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2590355, + "thread": 11 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2727016, + "thread": 15 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 2891074, + "thread": 10 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 3008987, + "thread": 24 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 3269760, + "thread": 11 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 3368430, + "thread": 8 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 3521685, + "thread": 2 + } + }, + { + "amount": "138.195790655", + "slot": { + "period": 3736070, + "thread": 4 + } + }, + { + "amount": "138.195790662", + "slot": { + "period": 3918368, + "thread": 9 + } + } + ], + "AU12V9Ps3tnuB2Nv1YfsGGEffb88mPBKrDtkFcgUGWt3bP9wq6HX7": [ + { + "amount": "113.655708006", + "slot": { + "period": 123713, + "thread": 30 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 226531, + "thread": 29 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 393991, + "thread": 0 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 601534, + "thread": 31 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 820192, + "thread": 8 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 850132, + "thread": 24 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1142210, + "thread": 12 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1273405, + "thread": 26 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1367051, + "thread": 24 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1584988, + "thread": 7 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1755113, + "thread": 21 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 1838788, + "thread": 25 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2139065, + "thread": 6 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2162799, + "thread": 30 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2331445, + "thread": 27 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2550215, + "thread": 14 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2778540, + "thread": 1 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 2908959, + "thread": 16 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 3030900, + "thread": 22 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 3230266, + "thread": 31 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 3350797, + "thread": 5 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 3470274, + "thread": 9 + } + }, + { + "amount": "113.655708006", + "slot": { + "period": 3642872, + "thread": 3 + } + }, + { + "amount": "113.655708013", + "slot": { + "period": 3860592, + "thread": 8 + } + } + ], + "AU12V9ayhMmUGhyXKmBuganiqnKuLYHJ75SjSfm6Uuay8L91h1kk2": [ + { + "amount": "248.587630800", + "slot": { + "period": 62421, + "thread": 19 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 205992, + "thread": 26 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 403574, + "thread": 6 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 537725, + "thread": 3 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 803222, + "thread": 0 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 841102, + "thread": 31 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1043367, + "thread": 31 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1218333, + "thread": 7 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1445698, + "thread": 17 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1635432, + "thread": 15 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1769281, + "thread": 10 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 1958774, + "thread": 11 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2069223, + "thread": 4 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2207702, + "thread": 19 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2307220, + "thread": 26 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2593729, + "thread": 16 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2742900, + "thread": 9 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 2902318, + "thread": 21 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 3100447, + "thread": 6 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 3261487, + "thread": 14 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 3417014, + "thread": 5 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 3456012, + "thread": 31 + } + }, + { + "amount": "248.587630800", + "slot": { + "period": 3661303, + "thread": 20 + } + }, + { + "amount": "248.587630812", + "slot": { + "period": 3856465, + "thread": 4 + } + } + ], + "AU12V9ycSd5VRz282m9vhY9zcq9rYR4mbokAjQg5QdiEqAEmopK2c": [ + { + "amount": "98.564766184", + "slot": { + "period": 164654, + "thread": 1 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 317774, + "thread": 23 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 331035, + "thread": 16 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 516193, + "thread": 14 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 794351, + "thread": 29 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 839476, + "thread": 17 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 994671, + "thread": 6 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1217801, + "thread": 19 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1353268, + "thread": 22 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1562632, + "thread": 0 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1777539, + "thread": 5 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1888859, + "thread": 1 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 1976835, + "thread": 17 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 2221629, + "thread": 11 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 2297255, + "thread": 3 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 2553232, + "thread": 27 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 2765605, + "thread": 4 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 2917186, + "thread": 7 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 3020277, + "thread": 3 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 3135604, + "thread": 1 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 3319625, + "thread": 5 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 3496013, + "thread": 13 + } + }, + { + "amount": "98.564766184", + "slot": { + "period": 3633045, + "thread": 12 + } + }, + { + "amount": "98.564766182", + "slot": { + "period": 3901788, + "thread": 17 + } + } + ], + "AU12VAcwiG75YuYufBKP2j5nwLcUwNpRTbzWwUtoTRSWCgfLsvWxY": [ + { + "amount": "288.332603005", + "slot": { + "period": 152851, + "thread": 23 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 320709, + "thread": 10 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 471218, + "thread": 5 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 584467, + "thread": 21 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 654081, + "thread": 31 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 929545, + "thread": 15 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 998354, + "thread": 8 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1181242, + "thread": 0 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1351798, + "thread": 17 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1616100, + "thread": 4 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1741737, + "thread": 31 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1819218, + "thread": 17 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 1996461, + "thread": 0 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 2273935, + "thread": 28 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 2336901, + "thread": 4 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 2533838, + "thread": 10 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 2701221, + "thread": 29 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 2902937, + "thread": 29 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 3091465, + "thread": 25 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 3131180, + "thread": 17 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 3408800, + "thread": 18 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 3606517, + "thread": 14 + } + }, + { + "amount": "288.332603005", + "slot": { + "period": 3752454, + "thread": 5 + } + }, + { + "amount": "288.332603003", + "slot": { + "period": 3783416, + "thread": 8 + } + } + ], + "AU12VAfJmEPPnRLELLQqR7E46sa7HKq2cvmfoR97gd8MyRhnsJTbL": [ + { + "amount": "118.532581461", + "slot": { + "period": 160748, + "thread": 25 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 294529, + "thread": 14 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 479758, + "thread": 7 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 552376, + "thread": 21 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 712005, + "thread": 11 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 875672, + "thread": 20 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1116855, + "thread": 18 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1285967, + "thread": 9 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1409257, + "thread": 22 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1500703, + "thread": 8 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1792429, + "thread": 14 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 1885398, + "thread": 0 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2105139, + "thread": 24 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2179687, + "thread": 29 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2401114, + "thread": 31 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2513581, + "thread": 24 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2701488, + "thread": 24 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 2953417, + "thread": 24 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 3100025, + "thread": 10 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 3268479, + "thread": 18 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 3390834, + "thread": 11 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 3557201, + "thread": 25 + } + }, + { + "amount": "118.532581461", + "slot": { + "period": 3661217, + "thread": 31 + } + }, + { + "amount": "118.532581470", + "slot": { + "period": 3817488, + "thread": 20 + } + } + ], + "AU12VAngyhShA1i1BH2iYJxjAZGHe8mkRPGhpG7t2UPUvCK9KMrXe": [ + { + "amount": "152.120042800", + "slot": { + "period": 72151, + "thread": 17 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 314556, + "thread": 8 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 371792, + "thread": 6 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 596340, + "thread": 11 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 730694, + "thread": 12 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 878745, + "thread": 16 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1095672, + "thread": 26 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1283137, + "thread": 18 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1412068, + "thread": 22 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1613325, + "thread": 18 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1734491, + "thread": 19 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 1937589, + "thread": 1 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2110715, + "thread": 14 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2216753, + "thread": 1 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2345558, + "thread": 8 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2599061, + "thread": 29 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2634571, + "thread": 30 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2889822, + "thread": 12 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 2959584, + "thread": 28 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 3227343, + "thread": 9 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 3441678, + "thread": 18 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 3609211, + "thread": 21 + } + }, + { + "amount": "152.120042800", + "slot": { + "period": 3621374, + "thread": 7 + } + }, + { + "amount": "152.120042796", + "slot": { + "period": 3836999, + "thread": 22 + } + } + ], + "AU12VBNkQ5V1LhVZhbD8Qv2FnvRKstMbDR3nDbVDS4ARpEBhqmbB3": [ + { + "amount": "231.425602294", + "slot": { + "period": 64389, + "thread": 2 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 266837, + "thread": 21 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 454134, + "thread": 6 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 575618, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 677413, + "thread": 27 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 871047, + "thread": 18 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1094126, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1260434, + "thread": 12 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1413719, + "thread": 26 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1536175, + "thread": 14 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1779698, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 1969037, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2109608, + "thread": 16 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2280062, + "thread": 22 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2421601, + "thread": 24 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2538478, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2627787, + "thread": 27 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 2810213, + "thread": 31 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3029089, + "thread": 9 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3250688, + "thread": 30 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3422585, + "thread": 7 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3492568, + "thread": 15 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3713197, + "thread": 12 + } + }, + { + "amount": "231.425602294", + "slot": { + "period": 3859902, + "thread": 30 + } + } + ], + "AU12VBZzTpatCD6QYi1coNUzoXzk14wRReGFAgDNVFJo6jsjZowM6": [ + { + "amount": "523.305110165", + "slot": { + "period": 120366, + "thread": 18 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 281622, + "thread": 20 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 462785, + "thread": 8 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 647764, + "thread": 8 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 708650, + "thread": 11 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 929824, + "thread": 28 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1078561, + "thread": 14 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1197210, + "thread": 5 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1377204, + "thread": 16 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1558782, + "thread": 16 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1660813, + "thread": 18 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 1926583, + "thread": 10 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2045858, + "thread": 1 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2275835, + "thread": 12 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2385257, + "thread": 18 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2538453, + "thread": 27 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2650933, + "thread": 15 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 2938459, + "thread": 9 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 3053027, + "thread": 11 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 3131252, + "thread": 11 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 3313576, + "thread": 31 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 3545389, + "thread": 6 + } + }, + { + "amount": "523.305110165", + "slot": { + "period": 3643393, + "thread": 10 + } + }, + { + "amount": "523.305110168", + "slot": { + "period": 3836430, + "thread": 25 + } + } + ], + "AU12VBtU8tMkNKgBD1SwKxkuMJoYSQQvvwwqNGKZ1cP1jbLzpm8Ez": [ + { + "amount": "113.005874145", + "slot": { + "period": 96317, + "thread": 12 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 246405, + "thread": 14 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 437435, + "thread": 0 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 589652, + "thread": 28 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 770132, + "thread": 9 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 858316, + "thread": 28 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1052183, + "thread": 16 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1152022, + "thread": 27 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1379101, + "thread": 9 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1486656, + "thread": 24 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1682448, + "thread": 21 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 1910522, + "thread": 8 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2066452, + "thread": 15 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2154613, + "thread": 11 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2328151, + "thread": 23 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2469033, + "thread": 14 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2709417, + "thread": 24 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2913079, + "thread": 17 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 2966464, + "thread": 13 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 3233920, + "thread": 1 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 3307268, + "thread": 25 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 3574778, + "thread": 11 + } + }, + { + "amount": "113.005874145", + "slot": { + "period": 3659464, + "thread": 22 + } + }, + { + "amount": "113.005874151", + "slot": { + "period": 3879164, + "thread": 4 + } + } + ], + "AU12VC6Q4P9p6tWQ4iQ8NnXzWb5ukLhX8WAukfUaiqTZCVAMDZhno": [ + { + "amount": "148.894058840", + "slot": { + "period": 62934, + "thread": 3 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 222752, + "thread": 24 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 407007, + "thread": 11 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 619683, + "thread": 29 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 809954, + "thread": 25 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 925205, + "thread": 27 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1123335, + "thread": 8 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1260454, + "thread": 31 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1320113, + "thread": 30 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1631514, + "thread": 31 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1806339, + "thread": 18 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 1956140, + "thread": 5 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2067499, + "thread": 6 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2244675, + "thread": 2 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2379872, + "thread": 9 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2471738, + "thread": 17 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2754207, + "thread": 20 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 2904126, + "thread": 2 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 3014417, + "thread": 5 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 3275594, + "thread": 22 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 3424883, + "thread": 13 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 3565654, + "thread": 10 + } + }, + { + "amount": "148.894058840", + "slot": { + "period": 3660355, + "thread": 30 + } + }, + { + "amount": "148.894058847", + "slot": { + "period": 3850595, + "thread": 12 + } + } + ], + "AU12VD2EaZmcATAZ4hmYbvmqqKbN8QjTiKSfDsuugY74z3yga2Y3u": [ + { + "amount": "167.036173384", + "slot": { + "period": 154985, + "thread": 8 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 285765, + "thread": 1 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 431325, + "thread": 18 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 511597, + "thread": 16 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 699346, + "thread": 1 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 852795, + "thread": 4 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1037642, + "thread": 6 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1155882, + "thread": 26 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1435464, + "thread": 20 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1584978, + "thread": 23 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1805680, + "thread": 9 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1948948, + "thread": 31 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 1985915, + "thread": 8 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2250360, + "thread": 12 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2421691, + "thread": 20 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2545544, + "thread": 23 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2674731, + "thread": 26 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2801107, + "thread": 27 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 2995548, + "thread": 23 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 3152566, + "thread": 6 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 3408694, + "thread": 30 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 3451383, + "thread": 10 + } + }, + { + "amount": "167.036173384", + "slot": { + "period": 3709445, + "thread": 23 + } + }, + { + "amount": "167.036173393", + "slot": { + "period": 3883777, + "thread": 23 + } + } + ], + "AU12VDD2Z5AMUNzbu6PHAgLZXPAgNhwXV8ihJFpTxQvYPmCWKtC7r": [ + { + "amount": "167.621465350", + "slot": { + "period": 115676, + "thread": 23 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 232198, + "thread": 3 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 358921, + "thread": 29 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 504085, + "thread": 26 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 668778, + "thread": 15 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 955201, + "thread": 27 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1137708, + "thread": 31 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1162348, + "thread": 9 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1470328, + "thread": 4 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1504600, + "thread": 30 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1784891, + "thread": 3 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 1834186, + "thread": 2 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2027385, + "thread": 28 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2143840, + "thread": 16 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2404293, + "thread": 14 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2557901, + "thread": 2 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2692337, + "thread": 20 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 2798585, + "thread": 1 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 3087428, + "thread": 6 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 3159548, + "thread": 22 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 3359738, + "thread": 6 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 3509848, + "thread": 31 + } + }, + { + "amount": "167.621465350", + "slot": { + "period": 3734571, + "thread": 30 + } + }, + { + "amount": "167.621465352", + "slot": { + "period": 3813700, + "thread": 22 + } + } + ], + "AU12VDK8R4umHcF35L3xXnAPpxEG7uLk4ddAHoC9kCmJFwEsPBert": [ + { + "amount": "294.685630790", + "slot": { + "period": 159319, + "thread": 18 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 241309, + "thread": 17 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 487293, + "thread": 5 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 526223, + "thread": 10 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 809735, + "thread": 6 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 963261, + "thread": 4 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1070212, + "thread": 15 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1234178, + "thread": 3 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1412287, + "thread": 12 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1539524, + "thread": 29 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1665772, + "thread": 7 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 1967858, + "thread": 23 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2104972, + "thread": 7 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2186427, + "thread": 6 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2336471, + "thread": 2 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2616399, + "thread": 16 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2683965, + "thread": 22 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2816347, + "thread": 1 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 2980326, + "thread": 18 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 3259178, + "thread": 3 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 3374252, + "thread": 25 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 3530221, + "thread": 7 + } + }, + { + "amount": "294.685630790", + "slot": { + "period": 3754957, + "thread": 19 + } + }, + { + "amount": "294.685630802", + "slot": { + "period": 3782689, + "thread": 10 + } + } + ], + "AU12VDa2AupTCF8dbRyuSzvqd6qTWK2QvmG5upA83dimUW3a8tVZe": [ + { + "amount": "149.055836336", + "slot": { + "period": 79201, + "thread": 6 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 264851, + "thread": 11 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 454607, + "thread": 31 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 523303, + "thread": 9 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 693813, + "thread": 17 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 971340, + "thread": 29 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1141118, + "thread": 25 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1181538, + "thread": 0 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1372299, + "thread": 24 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1512744, + "thread": 5 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1664028, + "thread": 8 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 1854878, + "thread": 25 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2107156, + "thread": 10 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2245690, + "thread": 12 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2338837, + "thread": 27 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2510699, + "thread": 15 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2755906, + "thread": 18 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2898653, + "thread": 1 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 2995285, + "thread": 18 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 3203859, + "thread": 13 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 3413184, + "thread": 15 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 3562570, + "thread": 23 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 3741634, + "thread": 16 + } + }, + { + "amount": "149.055836336", + "slot": { + "period": 3791896, + "thread": 1 + } + } + ], + "AU12VDcJGgQmaET6THTnU4BJjboaiC5A27CHQpTy8dYs1MVnyeXGQ": [ + { + "amount": "165.889459215", + "slot": { + "period": 87433, + "thread": 25 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 289489, + "thread": 22 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 458995, + "thread": 2 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 633893, + "thread": 3 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 658400, + "thread": 13 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 949758, + "thread": 29 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1052660, + "thread": 31 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1270132, + "thread": 6 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1450888, + "thread": 1 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1504191, + "thread": 11 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1736870, + "thread": 22 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 1971989, + "thread": 1 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2111586, + "thread": 26 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2273986, + "thread": 25 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2457884, + "thread": 13 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2510499, + "thread": 29 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2695048, + "thread": 2 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 2871860, + "thread": 11 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 3010011, + "thread": 5 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 3276619, + "thread": 8 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 3394365, + "thread": 6 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 3490730, + "thread": 26 + } + }, + { + "amount": "165.889459215", + "slot": { + "period": 3708136, + "thread": 26 + } + }, + { + "amount": "165.889459211", + "slot": { + "period": 3904074, + "thread": 9 + } + } + ], + "AU12VEGRYLbH6bJQwMvbpHSmGVpoETgrK32KyhqpsmYGMtnuYgbrT": [ + { + "amount": "212.089341175", + "slot": { + "period": 98223, + "thread": 20 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 303741, + "thread": 4 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 406656, + "thread": 1 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 634698, + "thread": 29 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 658035, + "thread": 31 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 908197, + "thread": 20 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1000339, + "thread": 27 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1204935, + "thread": 16 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1346723, + "thread": 27 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1504731, + "thread": 17 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1721498, + "thread": 26 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 1809822, + "thread": 22 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2012190, + "thread": 5 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2147708, + "thread": 8 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2451871, + "thread": 4 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2484957, + "thread": 12 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2743134, + "thread": 4 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 2881658, + "thread": 7 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 3087007, + "thread": 3 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 3197707, + "thread": 26 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 3358936, + "thread": 15 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 3474608, + "thread": 20 + } + }, + { + "amount": "212.089341175", + "slot": { + "period": 3746242, + "thread": 26 + } + }, + { + "amount": "212.089341184", + "slot": { + "period": 3914932, + "thread": 27 + } + } + ], + "AU12VEPtGx1cdRjkQWLfHfro3YsKWP52am4WsaVvJswgJX88UVVb7": [ + { + "amount": "153.965362904", + "slot": { + "period": 126375, + "thread": 21 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 322191, + "thread": 22 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 342100, + "thread": 3 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 640584, + "thread": 15 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 745772, + "thread": 6 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 826723, + "thread": 16 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1064451, + "thread": 8 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1272947, + "thread": 9 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1402101, + "thread": 4 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1553003, + "thread": 9 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1718326, + "thread": 26 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 1908870, + "thread": 23 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2083620, + "thread": 5 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2154622, + "thread": 18 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2365891, + "thread": 24 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2619711, + "thread": 13 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2680694, + "thread": 2 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2945429, + "thread": 22 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 2988162, + "thread": 0 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 3174952, + "thread": 27 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 3357852, + "thread": 0 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 3538980, + "thread": 11 + } + }, + { + "amount": "153.965362904", + "slot": { + "period": 3776426, + "thread": 17 + } + }, + { + "amount": "153.965362901", + "slot": { + "period": 3799369, + "thread": 28 + } + } + ], + "AU12VEU6i43pCUjyp2LnsAq7m5RjU3XLuXWtSGzuGfsFPLgXfBjJB": [ + { + "amount": "196.980123832", + "slot": { + "period": 104911, + "thread": 8 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 223688, + "thread": 14 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 487759, + "thread": 1 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 567082, + "thread": 4 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 796750, + "thread": 7 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 868444, + "thread": 27 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1037518, + "thread": 23 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1193381, + "thread": 16 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1429002, + "thread": 27 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1543010, + "thread": 2 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1670234, + "thread": 15 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 1901999, + "thread": 9 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2047606, + "thread": 29 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2289157, + "thread": 9 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2443463, + "thread": 14 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2572541, + "thread": 16 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2647748, + "thread": 15 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 2848055, + "thread": 24 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 3009639, + "thread": 14 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 3244052, + "thread": 13 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 3346845, + "thread": 16 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 3537740, + "thread": 31 + } + }, + { + "amount": "196.980123832", + "slot": { + "period": 3693813, + "thread": 17 + } + }, + { + "amount": "196.980123843", + "slot": { + "period": 3830683, + "thread": 31 + } + } + ], + "AU12VEhjhWyJn8aRTV4bqCn6hfoEzKRECZEg3uS2XnJdSRYFAAkKB": [ + { + "amount": "258.573917036", + "slot": { + "period": 53127, + "thread": 10 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 236401, + "thread": 15 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 412075, + "thread": 14 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 598076, + "thread": 29 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 737144, + "thread": 5 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 860632, + "thread": 20 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 988143, + "thread": 12 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1249178, + "thread": 1 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1354684, + "thread": 6 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1599316, + "thread": 21 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1649511, + "thread": 23 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1872903, + "thread": 27 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 1991837, + "thread": 17 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 2263287, + "thread": 24 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 2315831, + "thread": 2 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 2544088, + "thread": 25 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 2643168, + "thread": 6 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 2839147, + "thread": 18 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 3105253, + "thread": 12 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 3246364, + "thread": 15 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 3303454, + "thread": 29 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 3535005, + "thread": 13 + } + }, + { + "amount": "258.573917036", + "slot": { + "period": 3750689, + "thread": 18 + } + }, + { + "amount": "258.573917044", + "slot": { + "period": 3822704, + "thread": 16 + } + } + ], + "AU12VFbKfe6uHcYPqwnZmkJS3o7VNBwPLMsuqygm5B2VzAKFyVyqZ": [ + { + "amount": "67.280529437", + "slot": { + "period": 120621, + "thread": 16 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 196027, + "thread": 0 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 442085, + "thread": 5 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 501356, + "thread": 3 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 806941, + "thread": 4 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 842669, + "thread": 28 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1056163, + "thread": 29 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1188432, + "thread": 27 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1459761, + "thread": 26 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1507170, + "thread": 16 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1754839, + "thread": 18 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1824665, + "thread": 2 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 1986759, + "thread": 4 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2158491, + "thread": 7 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2321168, + "thread": 5 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2518199, + "thread": 6 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2722226, + "thread": 19 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2885589, + "thread": 4 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 2954471, + "thread": 17 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 3221830, + "thread": 2 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 3332175, + "thread": 0 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 3464023, + "thread": 17 + } + }, + { + "amount": "67.280529437", + "slot": { + "period": 3735634, + "thread": 9 + } + }, + { + "amount": "67.280529446", + "slot": { + "period": 3912536, + "thread": 12 + } + } + ], + "AU12VFemUWfSpVapUSB9aoKB6KMZX8wy9CWFWaep8NpG7BvPJDSso": [ + { + "amount": "490.159415411", + "slot": { + "period": 32711, + "thread": 19 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 259804, + "thread": 4 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 338830, + "thread": 13 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 506997, + "thread": 12 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 797921, + "thread": 15 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 971192, + "thread": 17 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1117814, + "thread": 20 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1198142, + "thread": 26 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1350034, + "thread": 22 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1523042, + "thread": 9 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1697082, + "thread": 1 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 1817501, + "thread": 15 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2117362, + "thread": 15 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2180047, + "thread": 7 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2319617, + "thread": 14 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2543426, + "thread": 3 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2632761, + "thread": 15 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 2870097, + "thread": 3 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 3051251, + "thread": 25 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 3202706, + "thread": 10 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 3331854, + "thread": 13 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 3592841, + "thread": 0 + } + }, + { + "amount": "490.159415411", + "slot": { + "period": 3758478, + "thread": 8 + } + }, + { + "amount": "490.159415404", + "slot": { + "period": 3867372, + "thread": 31 + } + } + ], + "AU12VFoe9ynhWcENqxRTCmBvtVPRSrzUrfcA2SnGjX6rcWh3rJPXU": [ + { + "amount": "362.539460796", + "slot": { + "period": 89323, + "thread": 8 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 300753, + "thread": 11 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 346927, + "thread": 30 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 559057, + "thread": 2 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 735653, + "thread": 3 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 846975, + "thread": 13 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1022575, + "thread": 16 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1161048, + "thread": 0 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1465284, + "thread": 20 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1550933, + "thread": 20 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1718274, + "thread": 1 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 1934307, + "thread": 11 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2020647, + "thread": 11 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2255604, + "thread": 29 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2364604, + "thread": 15 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2577088, + "thread": 22 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2677050, + "thread": 4 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2873241, + "thread": 30 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 2954149, + "thread": 12 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 3240233, + "thread": 15 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 3422961, + "thread": 29 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 3465244, + "thread": 2 + } + }, + { + "amount": "362.539460796", + "slot": { + "period": 3765320, + "thread": 9 + } + }, + { + "amount": "362.539460807", + "slot": { + "period": 3833155, + "thread": 14 + } + } + ], + "AU12VGn3sYALWCYnYYr8KjRpgphnbJrKb3riPE2ypcDuuRLZu4wk6": [ + { + "amount": "220.526335787", + "slot": { + "period": 42829, + "thread": 21 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 167526, + "thread": 4 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 343175, + "thread": 26 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 634217, + "thread": 31 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 727384, + "thread": 26 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 904846, + "thread": 26 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1092672, + "thread": 10 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1223482, + "thread": 21 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1474568, + "thread": 15 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1571223, + "thread": 3 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1700131, + "thread": 2 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 1854733, + "thread": 17 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2013320, + "thread": 14 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2192205, + "thread": 20 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2314358, + "thread": 18 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2543558, + "thread": 5 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2674145, + "thread": 13 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2808982, + "thread": 7 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 2961731, + "thread": 2 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 3255494, + "thread": 10 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 3427085, + "thread": 31 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 3537998, + "thread": 4 + } + }, + { + "amount": "220.526335787", + "slot": { + "period": 3659155, + "thread": 17 + } + }, + { + "amount": "220.526335780", + "slot": { + "period": 3837785, + "thread": 28 + } + } + ], + "AU12VJ5jHmqymgPqXi44EUeUJyMmLKKLKeLUKs3gPgjwMYigBdAQo": [ + { + "amount": "69.652309618", + "slot": { + "period": 119536, + "thread": 9 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 258687, + "thread": 31 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 437061, + "thread": 6 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 574026, + "thread": 26 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 696287, + "thread": 19 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 899806, + "thread": 13 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1066925, + "thread": 14 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1243521, + "thread": 30 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1414703, + "thread": 26 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1580002, + "thread": 22 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1797148, + "thread": 19 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 1919069, + "thread": 28 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2025312, + "thread": 27 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2181329, + "thread": 9 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2315158, + "thread": 27 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2497297, + "thread": 31 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2769513, + "thread": 24 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2806881, + "thread": 4 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 2971870, + "thread": 4 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 3221118, + "thread": 22 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 3427359, + "thread": 25 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 3596229, + "thread": 0 + } + }, + { + "amount": "69.652309618", + "slot": { + "period": 3753096, + "thread": 11 + } + }, + { + "amount": "69.652309617", + "slot": { + "period": 3926100, + "thread": 4 + } + } + ], + "AU12VKDPabQbkPHtoof96ouAjD9pWmLxBKar6LR5FJxTmjdjPeDDp": [ + { + "amount": "158.480408698", + "slot": { + "period": 75450, + "thread": 0 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 255817, + "thread": 26 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 391097, + "thread": 7 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 598938, + "thread": 28 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 681236, + "thread": 26 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 884176, + "thread": 0 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1058176, + "thread": 1 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1290519, + "thread": 1 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1320643, + "thread": 25 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1543431, + "thread": 8 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1710674, + "thread": 17 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 1896690, + "thread": 29 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2098837, + "thread": 4 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2237205, + "thread": 13 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2357047, + "thread": 16 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2591459, + "thread": 13 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2668805, + "thread": 13 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 2923127, + "thread": 20 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 3106148, + "thread": 4 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 3138831, + "thread": 2 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 3446263, + "thread": 19 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 3562065, + "thread": 18 + } + }, + { + "amount": "158.480408698", + "slot": { + "period": 3687858, + "thread": 5 + } + }, + { + "amount": "158.480408695", + "slot": { + "period": 3869240, + "thread": 3 + } + } + ], + "AU12VKtdFDBSDygJtbFLDtDjzvQPXK2C384R6f1ZVfjgpraYNmb7W": [ + { + "amount": "175.100616318", + "slot": { + "period": 75000, + "thread": 1 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 267520, + "thread": 8 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 366110, + "thread": 19 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 626800, + "thread": 14 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 772225, + "thread": 9 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 871816, + "thread": 7 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1070728, + "thread": 23 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1157672, + "thread": 6 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1417143, + "thread": 20 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1543824, + "thread": 16 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1729257, + "thread": 16 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 1952433, + "thread": 4 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2101321, + "thread": 25 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2210848, + "thread": 22 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2357184, + "thread": 31 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2464447, + "thread": 26 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2629135, + "thread": 5 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 2845246, + "thread": 23 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 3026648, + "thread": 27 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 3168589, + "thread": 8 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 3411630, + "thread": 30 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 3590180, + "thread": 5 + } + }, + { + "amount": "175.100616318", + "slot": { + "period": 3691900, + "thread": 3 + } + }, + { + "amount": "175.100616306", + "slot": { + "period": 3873884, + "thread": 12 + } + } + ], + "AU12VL8hDVcatLM3VoBqBW9dUc5mS7WBnWKL9GtCqj7ed14kD4rDP": [ + { + "amount": "142.307742806", + "slot": { + "period": 62089, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 301618, + "thread": 12 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 353685, + "thread": 19 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 505146, + "thread": 31 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 733638, + "thread": 15 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 963096, + "thread": 20 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1115202, + "thread": 31 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1155571, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1336066, + "thread": 18 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1609396, + "thread": 17 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1651410, + "thread": 14 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 1866251, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2033628, + "thread": 24 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2222259, + "thread": 19 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2325838, + "thread": 4 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2586030, + "thread": 22 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2774708, + "thread": 25 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 2853689, + "thread": 18 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 3018592, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 3250458, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 3384814, + "thread": 3 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 3589110, + "thread": 5 + } + }, + { + "amount": "142.307742806", + "slot": { + "period": 3722598, + "thread": 28 + } + }, + { + "amount": "142.307742812", + "slot": { + "period": 3922126, + "thread": 25 + } + } + ], + "AU12VLFNW1KohQW3rvp7pHKQrLqKmHGXQQAECNf7PgKb2Vjph7LkS": [ + { + "amount": "157.194537863", + "slot": { + "period": 15557, + "thread": 18 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 246367, + "thread": 6 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 389750, + "thread": 8 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 639605, + "thread": 25 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 717163, + "thread": 9 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 822593, + "thread": 11 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1017706, + "thread": 31 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1215260, + "thread": 16 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1356432, + "thread": 25 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1612541, + "thread": 25 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1698058, + "thread": 18 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 1903606, + "thread": 6 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2090627, + "thread": 1 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2194762, + "thread": 28 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2461527, + "thread": 22 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2582781, + "thread": 28 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2698880, + "thread": 17 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 2887622, + "thread": 27 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 3090599, + "thread": 3 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 3244733, + "thread": 10 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 3449806, + "thread": 27 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 3491062, + "thread": 28 + } + }, + { + "amount": "157.194537863", + "slot": { + "period": 3746316, + "thread": 26 + } + }, + { + "amount": "157.194537856", + "slot": { + "period": 3854976, + "thread": 16 + } + } + ], + "AU12VLTk1gfrX3UT3dxD2Bgg6HWk2U5y3cEouhnGeHYqSaAupKAco": [ + { + "amount": "520.163291351", + "slot": { + "period": 47480, + "thread": 31 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 258237, + "thread": 12 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 332834, + "thread": 3 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 639064, + "thread": 28 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 774707, + "thread": 25 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 845810, + "thread": 3 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1009100, + "thread": 21 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1311357, + "thread": 29 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1365554, + "thread": 4 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1537315, + "thread": 25 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1658202, + "thread": 25 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 1925982, + "thread": 5 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2128836, + "thread": 18 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2195679, + "thread": 25 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2358877, + "thread": 7 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2481071, + "thread": 1 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2739354, + "thread": 9 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2792314, + "thread": 20 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 2977762, + "thread": 0 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 3222656, + "thread": 16 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 3420998, + "thread": 18 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 3612418, + "thread": 28 + } + }, + { + "amount": "520.163291351", + "slot": { + "period": 3693818, + "thread": 2 + } + }, + { + "amount": "520.163291344", + "slot": { + "period": 3926621, + "thread": 0 + } + } + ], + "AU12VLkAmmMYQEP5QEjqGYEr7iCyzaW2i8hMjHyUbVdTGH6GacaMY": [ + { + "amount": "244.660929861", + "slot": { + "period": 42293, + "thread": 7 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 311722, + "thread": 30 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 344166, + "thread": 14 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 546143, + "thread": 11 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 812425, + "thread": 21 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 956707, + "thread": 18 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 984696, + "thread": 25 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 1168954, + "thread": 10 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 1341242, + "thread": 15 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 1510354, + "thread": 30 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 1779961, + "thread": 30 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 1897479, + "thread": 28 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2107448, + "thread": 24 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2287917, + "thread": 3 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2372290, + "thread": 4 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2569511, + "thread": 27 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2697572, + "thread": 16 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 2932858, + "thread": 6 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 3001530, + "thread": 3 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 3132151, + "thread": 4 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 3356621, + "thread": 30 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 3608126, + "thread": 14 + } + }, + { + "amount": "244.660929861", + "slot": { + "period": 3625646, + "thread": 30 + } + }, + { + "amount": "244.660929857", + "slot": { + "period": 3838771, + "thread": 2 + } + } + ], + "AU12VM2Usb3czrpfunUMgSRJ9VgEHpat21TxCCphJDaarHtxF961y": [ + { + "amount": "116.708572510", + "slot": { + "period": 95529, + "thread": 29 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 184660, + "thread": 11 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 411963, + "thread": 14 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 513376, + "thread": 14 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 803321, + "thread": 8 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 976162, + "thread": 28 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1028241, + "thread": 16 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1215703, + "thread": 10 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1428547, + "thread": 9 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1560676, + "thread": 6 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1667768, + "thread": 27 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 1931949, + "thread": 6 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2020581, + "thread": 10 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2196286, + "thread": 25 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2367110, + "thread": 27 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2530207, + "thread": 0 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2688392, + "thread": 6 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 2884051, + "thread": 21 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 3054790, + "thread": 11 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 3197006, + "thread": 29 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 3417744, + "thread": 5 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 3569999, + "thread": 17 + } + }, + { + "amount": "116.708572510", + "slot": { + "period": 3755096, + "thread": 8 + } + }, + { + "amount": "116.708572499", + "slot": { + "period": 3855389, + "thread": 10 + } + } + ], + "AU12VM7nWLGEEzkb1xFUKptmu7EH5qYFekMWrhRBzAg7csWiCApNU": [ + { + "amount": "86.551308702", + "slot": { + "period": 154262, + "thread": 23 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 233977, + "thread": 3 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 399061, + "thread": 20 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 497760, + "thread": 27 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 666848, + "thread": 5 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 896874, + "thread": 19 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1010128, + "thread": 30 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1216581, + "thread": 13 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1463297, + "thread": 0 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1605012, + "thread": 22 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1677533, + "thread": 11 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 1933532, + "thread": 20 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2137199, + "thread": 0 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2184973, + "thread": 14 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2422113, + "thread": 3 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2499510, + "thread": 21 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2677371, + "thread": 4 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2799574, + "thread": 14 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 2981937, + "thread": 30 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 3162629, + "thread": 0 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 3298620, + "thread": 11 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 3512650, + "thread": 29 + } + }, + { + "amount": "86.551308702", + "slot": { + "period": 3747233, + "thread": 21 + } + }, + { + "amount": "86.551308697", + "slot": { + "period": 3826741, + "thread": 24 + } + } + ], + "AU12VM973Ym9KuXW35vEGeDQbgeHXE2UUWvJkMBQm2DpWxp1DGrUm": [ + { + "amount": "174.955296742", + "slot": { + "period": 162918, + "thread": 0 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 223611, + "thread": 16 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 344983, + "thread": 1 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 588147, + "thread": 25 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 706611, + "thread": 27 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 934137, + "thread": 16 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1044853, + "thread": 21 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1240608, + "thread": 18 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1386184, + "thread": 28 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1491081, + "thread": 13 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1675428, + "thread": 20 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 1828413, + "thread": 21 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2019999, + "thread": 29 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2270933, + "thread": 10 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2302479, + "thread": 5 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2552302, + "thread": 22 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2705618, + "thread": 18 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 2817971, + "thread": 3 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 3050350, + "thread": 12 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 3240062, + "thread": 28 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 3392034, + "thread": 9 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 3495474, + "thread": 22 + } + }, + { + "amount": "174.955296742", + "slot": { + "period": 3687135, + "thread": 19 + } + }, + { + "amount": "174.955296743", + "slot": { + "period": 3840262, + "thread": 1 + } + } + ], + "AU12VN14U5kZxduww1TNfAKnJji8zM3hAwUmo1RrTFefGeoci3bQA": [ + { + "amount": "177.437239522", + "slot": { + "period": 61233, + "thread": 23 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 309257, + "thread": 22 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 435139, + "thread": 2 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 554988, + "thread": 16 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 784308, + "thread": 17 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 931808, + "thread": 11 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 997058, + "thread": 25 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 1300933, + "thread": 18 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 1363919, + "thread": 31 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 1512263, + "thread": 11 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 1770184, + "thread": 15 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 1834033, + "thread": 5 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2026320, + "thread": 23 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2288479, + "thread": 13 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2447093, + "thread": 27 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2538435, + "thread": 4 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2754109, + "thread": 23 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 2831480, + "thread": 29 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 3098217, + "thread": 18 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 3276462, + "thread": 10 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 3317702, + "thread": 19 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 3576283, + "thread": 30 + } + }, + { + "amount": "177.437239522", + "slot": { + "period": 3678662, + "thread": 13 + } + }, + { + "amount": "177.437239525", + "slot": { + "period": 3940478, + "thread": 28 + } + } + ], + "AU12VNFAWy5YA7FXvcCEFybXRvb2AcWrKficgHwrTASnhqi9hLBCG": [ + { + "amount": "146.086698117", + "slot": { + "period": 43583, + "thread": 31 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 207003, + "thread": 25 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 394105, + "thread": 30 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 523155, + "thread": 22 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 692012, + "thread": 13 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 850005, + "thread": 16 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1107023, + "thread": 14 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1261454, + "thread": 18 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1400428, + "thread": 22 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1634455, + "thread": 14 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1668407, + "thread": 16 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 1892116, + "thread": 3 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2084599, + "thread": 9 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2287875, + "thread": 24 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2359306, + "thread": 3 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2532136, + "thread": 26 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2673663, + "thread": 20 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 2855375, + "thread": 19 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 3030463, + "thread": 19 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 3252089, + "thread": 16 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 3345178, + "thread": 15 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 3571981, + "thread": 4 + } + }, + { + "amount": "146.086698117", + "slot": { + "period": 3660119, + "thread": 4 + } + }, + { + "amount": "146.086698112", + "slot": { + "period": 3945701, + "thread": 30 + } + } + ], + "AU12VPwzSgMhVjaAx1dvZV85uzPUXAXZJsYtG2ggFAbSPaqvxkSm1": [ + { + "amount": "58.707697288", + "slot": { + "period": 138523, + "thread": 31 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 249662, + "thread": 27 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 422312, + "thread": 15 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 556307, + "thread": 17 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 665833, + "thread": 4 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 894109, + "thread": 21 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 987637, + "thread": 13 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 1263253, + "thread": 30 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 1399164, + "thread": 13 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 1551705, + "thread": 25 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 1686473, + "thread": 26 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 1875900, + "thread": 15 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2038740, + "thread": 14 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2283794, + "thread": 14 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2315381, + "thread": 27 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2512585, + "thread": 0 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2640303, + "thread": 1 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 2796004, + "thread": 24 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 3090257, + "thread": 2 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 3264722, + "thread": 1 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 3409356, + "thread": 16 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 3577904, + "thread": 8 + } + }, + { + "amount": "58.707697288", + "slot": { + "period": 3683531, + "thread": 16 + } + }, + { + "amount": "58.707697276", + "slot": { + "period": 3872792, + "thread": 27 + } + } + ], + "AU12VQhUbwkQCsBFfssBGiE2yJUSqdU6ZTwCSdH7Fug79wNXvK2BA": [ + { + "amount": "133.163222916", + "slot": { + "period": 149792, + "thread": 21 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 219794, + "thread": 5 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 373446, + "thread": 9 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 523793, + "thread": 2 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 801499, + "thread": 31 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 827882, + "thread": 31 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1135057, + "thread": 12 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1189936, + "thread": 19 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1374846, + "thread": 20 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1626627, + "thread": 26 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1735499, + "thread": 17 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 1837340, + "thread": 21 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2036274, + "thread": 14 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2163398, + "thread": 17 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2444034, + "thread": 0 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2551040, + "thread": 23 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2660595, + "thread": 7 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2897824, + "thread": 21 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 2963042, + "thread": 11 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 3182245, + "thread": 5 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 3394503, + "thread": 6 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 3561206, + "thread": 4 + } + }, + { + "amount": "133.163222916", + "slot": { + "period": 3661005, + "thread": 27 + } + }, + { + "amount": "133.163222920", + "slot": { + "period": 3801476, + "thread": 0 + } + } + ], + "AU12VQpPXpTEXCdn1twBjwVzH8oGs6LdLKAiQ9qjmEvfdMMJoGw95": [ + { + "amount": "211.763151035", + "slot": { + "period": 157882, + "thread": 0 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 271773, + "thread": 30 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 455426, + "thread": 21 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 515949, + "thread": 19 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 747551, + "thread": 5 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 916308, + "thread": 8 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1114792, + "thread": 6 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1278632, + "thread": 15 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1328869, + "thread": 22 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1625079, + "thread": 5 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1707258, + "thread": 31 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 1837318, + "thread": 29 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2003480, + "thread": 27 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2221175, + "thread": 20 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2326444, + "thread": 24 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2481296, + "thread": 18 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2684752, + "thread": 12 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 2815574, + "thread": 18 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 3028992, + "thread": 12 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 3247851, + "thread": 18 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 3294171, + "thread": 0 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 3606724, + "thread": 29 + } + }, + { + "amount": "211.763151035", + "slot": { + "period": 3635715, + "thread": 23 + } + }, + { + "amount": "211.763151028", + "slot": { + "period": 3903577, + "thread": 15 + } + } + ], + "AU12VRiAv3BaNKFKMZAjRHJrhwUamxLCUGzpsqeHgjcu5xvHV2pLV": [ + { + "amount": "237.249986702", + "slot": { + "period": 131796, + "thread": 15 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 180830, + "thread": 24 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 475542, + "thread": 8 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 600385, + "thread": 27 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 775744, + "thread": 11 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 956932, + "thread": 21 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1073634, + "thread": 25 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1176064, + "thread": 15 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1474872, + "thread": 24 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1504459, + "thread": 5 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1699311, + "thread": 15 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1961813, + "thread": 24 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 1992159, + "thread": 18 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 2159322, + "thread": 10 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 2354448, + "thread": 10 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 2622750, + "thread": 29 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 2771669, + "thread": 28 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 2852313, + "thread": 16 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 3035642, + "thread": 25 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 3248451, + "thread": 24 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 3299833, + "thread": 14 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 3538424, + "thread": 17 + } + }, + { + "amount": "237.249986702", + "slot": { + "period": 3623497, + "thread": 18 + } + }, + { + "amount": "237.249986693", + "slot": { + "period": 3895129, + "thread": 3 + } + } + ], + "AU12VRnsfsVFQbvavUjUW5P1Cv47XNZb2twyC74ERiu1rwTVXUst3": [ + { + "amount": "145.005309278", + "slot": { + "period": 148024, + "thread": 8 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 246178, + "thread": 17 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 478901, + "thread": 9 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 647034, + "thread": 20 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 692532, + "thread": 19 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 872131, + "thread": 8 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1053679, + "thread": 24 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1259182, + "thread": 8 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1421225, + "thread": 15 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1574285, + "thread": 27 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1768337, + "thread": 24 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 1845682, + "thread": 23 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2118922, + "thread": 14 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2215268, + "thread": 12 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2419183, + "thread": 21 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2609645, + "thread": 16 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2752501, + "thread": 7 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 2805365, + "thread": 8 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 3029735, + "thread": 6 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 3263628, + "thread": 19 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 3344072, + "thread": 15 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 3584367, + "thread": 16 + } + }, + { + "amount": "145.005309278", + "slot": { + "period": 3637623, + "thread": 28 + } + }, + { + "amount": "145.005309281", + "slot": { + "period": 3886572, + "thread": 29 + } + } + ], + "AU12VSEDrY9B6jYP53A3vM9Va8tqgq3uJLP8qWrGcNRRuaNgRknhq": [ + { + "amount": "180.637862062", + "slot": { + "period": 31302, + "thread": 31 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 258470, + "thread": 0 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 489683, + "thread": 24 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 517485, + "thread": 31 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 727686, + "thread": 11 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 895094, + "thread": 31 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1039830, + "thread": 18 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1262733, + "thread": 18 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1355212, + "thread": 22 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1641356, + "thread": 11 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1797252, + "thread": 6 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 1830407, + "thread": 27 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2136011, + "thread": 20 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2225768, + "thread": 10 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2347692, + "thread": 30 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2591607, + "thread": 31 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2783001, + "thread": 24 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2848582, + "thread": 12 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 2958644, + "thread": 25 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 3187747, + "thread": 27 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 3379345, + "thread": 17 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 3507859, + "thread": 18 + } + }, + { + "amount": "180.637862062", + "slot": { + "period": 3618647, + "thread": 1 + } + }, + { + "amount": "180.637862052", + "slot": { + "period": 3866289, + "thread": 10 + } + } + ], + "AU12VSsr8zRbxKu5LNZ3QsiESzwW8ULq9ZQ4LhGMP25DFSTjfLxkq": [ + { + "amount": "89.524726094", + "slot": { + "period": 145138, + "thread": 0 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 194498, + "thread": 30 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 362552, + "thread": 30 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 625656, + "thread": 10 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 817164, + "thread": 0 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 906078, + "thread": 23 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1055300, + "thread": 31 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1284329, + "thread": 3 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1419147, + "thread": 9 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1612579, + "thread": 31 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1740987, + "thread": 20 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 1927215, + "thread": 2 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2141989, + "thread": 26 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2166679, + "thread": 20 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2433732, + "thread": 4 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2476288, + "thread": 28 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2762224, + "thread": 16 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 2921983, + "thread": 8 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 3020535, + "thread": 23 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 3197474, + "thread": 25 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 3339928, + "thread": 6 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 3508155, + "thread": 11 + } + }, + { + "amount": "89.524726094", + "slot": { + "period": 3641288, + "thread": 7 + } + }, + { + "amount": "89.524726098", + "slot": { + "period": 3848382, + "thread": 27 + } + } + ], + "AU12VSzdgep8xMcsBcWdGTAS8ukbd1WmiCaiaqhEKRUkLNcdbCAbU": [ + { + "amount": "260.725994979", + "slot": { + "period": 42189, + "thread": 10 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 291076, + "thread": 21 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 337283, + "thread": 20 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 525342, + "thread": 19 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 713751, + "thread": 9 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 836142, + "thread": 1 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1073153, + "thread": 5 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1200434, + "thread": 10 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1328077, + "thread": 27 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1596092, + "thread": 13 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1757720, + "thread": 25 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 1968175, + "thread": 23 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2044557, + "thread": 21 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2206658, + "thread": 7 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2458291, + "thread": 22 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2533631, + "thread": 16 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2677690, + "thread": 14 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 2882852, + "thread": 5 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3037382, + "thread": 25 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3152115, + "thread": 24 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3360644, + "thread": 1 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3610525, + "thread": 30 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3718216, + "thread": 3 + } + }, + { + "amount": "260.725994979", + "slot": { + "period": 3788875, + "thread": 30 + } + } + ], + "AU12VU2z6Kdd1MZfh3uZuqkqCqwdBmAuLWEvfqiAshA9Snm62Csqr": [ + { + "amount": "423.392001459", + "slot": { + "period": 102953, + "thread": 25 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 238621, + "thread": 6 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 383167, + "thread": 4 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 559211, + "thread": 27 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 716734, + "thread": 26 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 891117, + "thread": 13 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1017518, + "thread": 8 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1193547, + "thread": 5 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1415455, + "thread": 23 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1588086, + "thread": 11 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1730951, + "thread": 10 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 1852251, + "thread": 17 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2122356, + "thread": 20 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2179904, + "thread": 20 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2436156, + "thread": 1 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2491240, + "thread": 3 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2744560, + "thread": 17 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 2914167, + "thread": 29 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 3020590, + "thread": 0 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 3150082, + "thread": 21 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 3290295, + "thread": 10 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 3556819, + "thread": 18 + } + }, + { + "amount": "423.392001459", + "slot": { + "period": 3717727, + "thread": 30 + } + }, + { + "amount": "423.392001449", + "slot": { + "period": 3846411, + "thread": 1 + } + } + ], + "AU12VUXK992Dopa1XFzZVAe3BwyRvB1bvLpcxHQaAnoKfts9zocJ1": [ + { + "amount": "180.442413249", + "slot": { + "period": 52546, + "thread": 24 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 267500, + "thread": 12 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 418490, + "thread": 24 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 647522, + "thread": 0 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 686640, + "thread": 14 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 896684, + "thread": 13 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 993327, + "thread": 6 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 1259067, + "thread": 19 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 1469606, + "thread": 19 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 1481003, + "thread": 22 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 1752016, + "thread": 20 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 1870894, + "thread": 25 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2081368, + "thread": 10 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2229967, + "thread": 3 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2320549, + "thread": 13 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2470142, + "thread": 11 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2638172, + "thread": 10 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 2860445, + "thread": 27 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 3028224, + "thread": 12 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 3157443, + "thread": 19 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 3426158, + "thread": 27 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 3495591, + "thread": 26 + } + }, + { + "amount": "180.442413249", + "slot": { + "period": 3644954, + "thread": 11 + } + }, + { + "amount": "180.442413244", + "slot": { + "period": 3851846, + "thread": 5 + } + } + ], + "AU12VV3XstdBTzEdvbwXLg6jSjCAdAm514Q1X11ioQMkJG1sZAQXc": [ + { + "amount": "94.039952894", + "slot": { + "period": 155543, + "thread": 10 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 193536, + "thread": 15 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 489046, + "thread": 20 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 631309, + "thread": 8 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 772855, + "thread": 30 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 871569, + "thread": 0 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1074455, + "thread": 3 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1221504, + "thread": 29 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1468932, + "thread": 27 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1622555, + "thread": 19 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1746612, + "thread": 23 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 1889723, + "thread": 18 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2056097, + "thread": 16 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2257443, + "thread": 11 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2338656, + "thread": 30 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2502635, + "thread": 1 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2770910, + "thread": 21 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 2911573, + "thread": 0 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 3035843, + "thread": 22 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 3226521, + "thread": 27 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 3296775, + "thread": 23 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 3560893, + "thread": 30 + } + }, + { + "amount": "94.039952894", + "slot": { + "period": 3756585, + "thread": 19 + } + }, + { + "amount": "94.039952891", + "slot": { + "period": 3780541, + "thread": 20 + } + } + ], + "AU12VVLZhwkWJnr6cmB7n5PiszDFmJiwci3DGJhavbMeUVgRdVjZ7": [ + { + "amount": "85.828454004", + "slot": { + "period": 159043, + "thread": 10 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 192376, + "thread": 12 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 409254, + "thread": 0 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 560829, + "thread": 12 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 675254, + "thread": 29 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 886333, + "thread": 21 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1093558, + "thread": 28 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1208260, + "thread": 15 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1371840, + "thread": 18 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1577639, + "thread": 9 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1701746, + "thread": 17 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 1884185, + "thread": 17 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2121737, + "thread": 11 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2198327, + "thread": 31 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2434955, + "thread": 31 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2602452, + "thread": 13 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2726549, + "thread": 7 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 2867501, + "thread": 30 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 3108196, + "thread": 1 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 3229261, + "thread": 7 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 3420359, + "thread": 17 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 3577217, + "thread": 23 + } + }, + { + "amount": "85.828454004", + "slot": { + "period": 3758517, + "thread": 25 + } + }, + { + "amount": "85.828453994", + "slot": { + "period": 3799795, + "thread": 10 + } + } + ], + "AU12VVPmRideeNQbE9ZKFybJYyS9HxeAiLEqdoaTBymNjnGapP4dk": [ + { + "amount": "601.739242043", + "slot": { + "period": 119143, + "thread": 18 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 170264, + "thread": 23 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 485635, + "thread": 20 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 594941, + "thread": 26 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 657795, + "thread": 4 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 955942, + "thread": 27 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1146592, + "thread": 10 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1295284, + "thread": 13 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1415799, + "thread": 4 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1484142, + "thread": 7 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1757885, + "thread": 25 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 1845921, + "thread": 10 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2020862, + "thread": 10 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2202911, + "thread": 31 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2435962, + "thread": 6 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2624297, + "thread": 14 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2676913, + "thread": 10 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 2870495, + "thread": 28 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 3043769, + "thread": 3 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 3255132, + "thread": 19 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 3289146, + "thread": 24 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 3494075, + "thread": 5 + } + }, + { + "amount": "601.739242043", + "slot": { + "period": 3690484, + "thread": 15 + } + }, + { + "amount": "601.739242033", + "slot": { + "period": 3791472, + "thread": 1 + } + } + ], + "AU12VVuXFtdiPZCeVotFY8BctiNQttG4LqSTar6NYWRGPeZVk7R7S": [ + { + "amount": "193.925180972", + "slot": { + "period": 98663, + "thread": 7 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 314480, + "thread": 20 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 397050, + "thread": 1 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 496482, + "thread": 31 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 688171, + "thread": 29 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 842151, + "thread": 0 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1106082, + "thread": 9 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1282526, + "thread": 29 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1440228, + "thread": 5 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1630977, + "thread": 9 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1807923, + "thread": 18 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 1962213, + "thread": 8 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2011007, + "thread": 20 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2260008, + "thread": 15 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2363111, + "thread": 23 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2590942, + "thread": 20 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2702179, + "thread": 12 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 2800117, + "thread": 17 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3012358, + "thread": 19 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3208841, + "thread": 25 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3311746, + "thread": 23 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3471748, + "thread": 4 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3666373, + "thread": 14 + } + }, + { + "amount": "193.925180972", + "slot": { + "period": 3868298, + "thread": 4 + } + } + ], + "AU12VW7wNj6528vLVRrhxSH9WDsTFy4VkZEUpsbW7rC4B6w12MM9y": [ + { + "amount": "88.332953723", + "slot": { + "period": 123104, + "thread": 29 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 303361, + "thread": 30 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 441734, + "thread": 28 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 557955, + "thread": 20 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 690721, + "thread": 1 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 978038, + "thread": 22 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1045391, + "thread": 26 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1284648, + "thread": 29 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1384811, + "thread": 8 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1628931, + "thread": 22 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1678078, + "thread": 3 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 1928141, + "thread": 30 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2116751, + "thread": 10 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2273188, + "thread": 11 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2454883, + "thread": 19 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2562831, + "thread": 28 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2756070, + "thread": 8 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 2915878, + "thread": 14 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 3095343, + "thread": 18 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 3277121, + "thread": 14 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 3289215, + "thread": 5 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 3550371, + "thread": 25 + } + }, + { + "amount": "88.332953723", + "slot": { + "period": 3685552, + "thread": 6 + } + }, + { + "amount": "88.332953734", + "slot": { + "period": 3882516, + "thread": 23 + } + } + ], + "AU12VWdyLnK6qe9Hw1CPwT1BaxPPUesgCPTzEpks8Nvokx9Z9SMSQ": [ + { + "amount": "135.404867874", + "slot": { + "period": 123652, + "thread": 9 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 178262, + "thread": 21 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 349719, + "thread": 1 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 636223, + "thread": 1 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 818322, + "thread": 7 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 905641, + "thread": 29 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1051729, + "thread": 11 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1252818, + "thread": 1 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1414521, + "thread": 18 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1528726, + "thread": 11 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1700777, + "thread": 14 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 1888323, + "thread": 24 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2085659, + "thread": 7 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2256649, + "thread": 21 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2327630, + "thread": 5 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2486003, + "thread": 0 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2773588, + "thread": 2 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2859039, + "thread": 21 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 2977389, + "thread": 26 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 3156729, + "thread": 20 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 3432085, + "thread": 17 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 3522968, + "thread": 28 + } + }, + { + "amount": "135.404867874", + "slot": { + "period": 3651691, + "thread": 0 + } + }, + { + "amount": "135.404867871", + "slot": { + "period": 3886219, + "thread": 23 + } + } + ], + "AU12VX3r7gbGQe1KuwMXvrgU4ZUd6fD4fYs21CdFprCFoWLcdVPdd": [ + { + "amount": "73.999531590", + "slot": { + "period": 33025, + "thread": 4 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 245984, + "thread": 20 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 468564, + "thread": 13 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 558593, + "thread": 24 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 792044, + "thread": 29 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 828921, + "thread": 28 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1140135, + "thread": 4 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1176208, + "thread": 10 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1414027, + "thread": 20 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1499123, + "thread": 3 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1712491, + "thread": 22 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 1942773, + "thread": 27 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2005423, + "thread": 2 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2220642, + "thread": 5 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2370616, + "thread": 20 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2532326, + "thread": 16 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2763103, + "thread": 27 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2950074, + "thread": 6 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 2966238, + "thread": 28 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 3206767, + "thread": 16 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 3379975, + "thread": 17 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 3475716, + "thread": 9 + } + }, + { + "amount": "73.999531590", + "slot": { + "period": 3724155, + "thread": 2 + } + }, + { + "amount": "73.999531579", + "slot": { + "period": 3889639, + "thread": 2 + } + } + ], + "AU12VYE4YtVWYpW6ZvnjpKojQAQybSrVfhqo3KMzHLRmyC7dxm6fn": [ + { + "amount": "92.037276113", + "slot": { + "period": 68884, + "thread": 15 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 181651, + "thread": 29 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 388582, + "thread": 0 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 597408, + "thread": 9 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 819567, + "thread": 3 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 848342, + "thread": 26 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1056590, + "thread": 15 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1214545, + "thread": 18 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1473295, + "thread": 7 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1553844, + "thread": 22 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1664436, + "thread": 20 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 1867451, + "thread": 15 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2063893, + "thread": 11 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2238317, + "thread": 4 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2445739, + "thread": 9 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2576661, + "thread": 30 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2680691, + "thread": 14 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 2808113, + "thread": 9 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 3016577, + "thread": 4 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 3200811, + "thread": 18 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 3440866, + "thread": 21 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 3483995, + "thread": 6 + } + }, + { + "amount": "92.037276113", + "slot": { + "period": 3713548, + "thread": 18 + } + }, + { + "amount": "92.037276120", + "slot": { + "period": 3790908, + "thread": 23 + } + } + ], + "AU12VZEk68SCHV3jVZunPeGtPPtupxGRnJVyPMQgcmLKmyLtRV6dM": [ + { + "amount": "146.206136301", + "slot": { + "period": 106716, + "thread": 20 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 202612, + "thread": 27 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 394302, + "thread": 26 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 563890, + "thread": 9 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 663694, + "thread": 9 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 845518, + "thread": 23 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1034316, + "thread": 31 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1278403, + "thread": 24 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1331869, + "thread": 11 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1589038, + "thread": 22 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1692795, + "thread": 23 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 1820966, + "thread": 11 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2012322, + "thread": 23 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2175472, + "thread": 14 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2379384, + "thread": 18 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2604301, + "thread": 28 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2753754, + "thread": 4 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 2940939, + "thread": 16 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3018968, + "thread": 19 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3279916, + "thread": 4 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3349097, + "thread": 15 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3597376, + "thread": 8 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3697279, + "thread": 22 + } + }, + { + "amount": "146.206136301", + "slot": { + "period": 3859306, + "thread": 28 + } + } + ], + "AU12VZLNU1dyUVFKekCYdXZ9yxV8pG99FkvAi6XQhpD9zH5DPw8Z4": [ + { + "amount": "358.598172501", + "slot": { + "period": 90346, + "thread": 27 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 251522, + "thread": 21 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 370043, + "thread": 20 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 593289, + "thread": 11 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 691913, + "thread": 3 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 979686, + "thread": 0 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 984931, + "thread": 12 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 1316041, + "thread": 13 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 1362538, + "thread": 11 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 1569892, + "thread": 10 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 1657256, + "thread": 19 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 1933148, + "thread": 29 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2124648, + "thread": 10 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2214543, + "thread": 15 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2388683, + "thread": 14 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2604343, + "thread": 15 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2629034, + "thread": 3 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 2888082, + "thread": 22 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 3109825, + "thread": 17 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 3153161, + "thread": 25 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 3371216, + "thread": 31 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 3571552, + "thread": 31 + } + }, + { + "amount": "358.598172501", + "slot": { + "period": 3704292, + "thread": 23 + } + }, + { + "amount": "358.598172502", + "slot": { + "period": 3873672, + "thread": 16 + } + } + ], + "AU12VZWdyM2UxpQEVfx7HnSguKLqRubYfrgXwaPj6aUnYVHnefLN4": [ + { + "amount": "78.406446035", + "slot": { + "period": 24172, + "thread": 6 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 304152, + "thread": 19 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 392995, + "thread": 18 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 575452, + "thread": 23 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 743584, + "thread": 8 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 945512, + "thread": 12 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1054590, + "thread": 4 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1254763, + "thread": 9 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1348285, + "thread": 9 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1585639, + "thread": 10 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1755138, + "thread": 7 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 1811293, + "thread": 18 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2043162, + "thread": 3 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2232623, + "thread": 21 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2394270, + "thread": 22 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2563150, + "thread": 15 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2710802, + "thread": 19 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 2898598, + "thread": 30 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 3070143, + "thread": 13 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 3270213, + "thread": 6 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 3399209, + "thread": 0 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 3562620, + "thread": 27 + } + }, + { + "amount": "78.406446035", + "slot": { + "period": 3752370, + "thread": 22 + } + }, + { + "amount": "78.406446025", + "slot": { + "period": 3825323, + "thread": 15 + } + } + ], + "AU12VZsT8nzrJ83fjwpjuLSqTUeDoYkxVXUvoVaJi2DgbfPV29ioP": [ + { + "amount": "162.704602310", + "slot": { + "period": 37190, + "thread": 19 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 305652, + "thread": 16 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 464266, + "thread": 13 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 555545, + "thread": 13 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 695789, + "thread": 9 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 924724, + "thread": 12 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1027255, + "thread": 30 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1258458, + "thread": 10 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1320664, + "thread": 28 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1643976, + "thread": 15 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1656313, + "thread": 3 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 1894598, + "thread": 13 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2115346, + "thread": 17 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2168494, + "thread": 21 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2404240, + "thread": 20 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2559410, + "thread": 6 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2709204, + "thread": 6 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 2829239, + "thread": 10 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 3107096, + "thread": 23 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 3276632, + "thread": 5 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 3418634, + "thread": 4 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 3454858, + "thread": 13 + } + }, + { + "amount": "162.704602310", + "slot": { + "period": 3679818, + "thread": 11 + } + }, + { + "amount": "162.704602315", + "slot": { + "period": 3882066, + "thread": 3 + } + } + ], + "AU12VaZDiBroKzCELP2z8zH8pmgztBk374knbkAL87x31849pSeef": [ + { + "amount": "162.191288158", + "slot": { + "period": 51627, + "thread": 27 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 199442, + "thread": 4 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 480060, + "thread": 22 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 607811, + "thread": 13 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 814084, + "thread": 23 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 959601, + "thread": 26 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1140724, + "thread": 13 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1276260, + "thread": 21 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1411667, + "thread": 11 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1565633, + "thread": 10 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1680544, + "thread": 0 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1925577, + "thread": 20 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 1991757, + "thread": 5 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 2245807, + "thread": 28 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 2450080, + "thread": 22 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 2588208, + "thread": 28 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 2775608, + "thread": 4 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 2860136, + "thread": 22 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 3025200, + "thread": 4 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 3270837, + "thread": 25 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 3427036, + "thread": 27 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 3597946, + "thread": 11 + } + }, + { + "amount": "162.191288158", + "slot": { + "period": 3635365, + "thread": 11 + } + }, + { + "amount": "162.191288148", + "slot": { + "period": 3872541, + "thread": 0 + } + } + ], + "AU12VcooKzGzfmtyvPnjL1A6HvGpf6DLkwA5EDxs67gsXpyCUukKR": [ + { + "amount": "156.266510590", + "slot": { + "period": 83676, + "thread": 8 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 275907, + "thread": 19 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 412448, + "thread": 7 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 539033, + "thread": 12 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 764586, + "thread": 5 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 920838, + "thread": 7 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 992623, + "thread": 1 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 1176598, + "thread": 9 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 1376788, + "thread": 13 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 1511163, + "thread": 10 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 1676974, + "thread": 7 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 1830126, + "thread": 9 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2041784, + "thread": 3 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2278746, + "thread": 22 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2362256, + "thread": 7 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2595947, + "thread": 28 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2770471, + "thread": 30 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 2841545, + "thread": 12 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 3037019, + "thread": 13 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 3192221, + "thread": 23 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 3353873, + "thread": 2 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 3575135, + "thread": 22 + } + }, + { + "amount": "156.266510590", + "slot": { + "period": 3698816, + "thread": 28 + } + }, + { + "amount": "156.266510594", + "slot": { + "period": 3878036, + "thread": 10 + } + } + ], + "AU12VdGycuvnudbpxinz9VP92W5nyC6rV7ZF3DNZmMmatuNThUALu": [ + { + "amount": "196.745062329", + "slot": { + "period": 111157, + "thread": 6 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 297573, + "thread": 23 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 406494, + "thread": 0 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 596455, + "thread": 0 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 720320, + "thread": 10 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 882118, + "thread": 12 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1132705, + "thread": 11 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1201280, + "thread": 16 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1420927, + "thread": 22 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1578671, + "thread": 21 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1783749, + "thread": 22 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 1880552, + "thread": 30 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2131692, + "thread": 19 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2294561, + "thread": 31 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2415253, + "thread": 15 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2590422, + "thread": 2 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2693634, + "thread": 27 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 2902437, + "thread": 0 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 3002901, + "thread": 0 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 3228535, + "thread": 18 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 3439489, + "thread": 9 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 3509536, + "thread": 20 + } + }, + { + "amount": "196.745062329", + "slot": { + "period": 3668364, + "thread": 10 + } + }, + { + "amount": "196.745062332", + "slot": { + "period": 3857335, + "thread": 13 + } + } + ], + "AU12VdqoMKFbFLsqBP5Dkp82Ag8KhDDm9EKDXNJqvRLosGhPkFgtp": [ + { + "amount": "134.107596015", + "slot": { + "period": 88410, + "thread": 11 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 218205, + "thread": 31 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 483649, + "thread": 30 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 603182, + "thread": 10 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 791455, + "thread": 1 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 824590, + "thread": 7 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1136274, + "thread": 9 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1174695, + "thread": 4 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1361236, + "thread": 3 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1590399, + "thread": 24 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1727037, + "thread": 22 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 1972714, + "thread": 4 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2035930, + "thread": 20 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2265484, + "thread": 6 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2375841, + "thread": 12 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2480781, + "thread": 18 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2758840, + "thread": 10 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2840762, + "thread": 22 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 2978915, + "thread": 16 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 3169026, + "thread": 4 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 3331294, + "thread": 1 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 3500700, + "thread": 23 + } + }, + { + "amount": "134.107596015", + "slot": { + "period": 3685221, + "thread": 1 + } + }, + { + "amount": "134.107596013", + "slot": { + "period": 3891960, + "thread": 25 + } + } + ], + "AU12VeKq4pwVcXhrmJCxNgm5sNVBg94Wa6euvuRebH9hULQAHHzHE": [ + { + "amount": "77.613511614", + "slot": { + "period": 118642, + "thread": 4 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 276517, + "thread": 11 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 443225, + "thread": 7 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 617839, + "thread": 16 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 804799, + "thread": 7 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 945842, + "thread": 25 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1004350, + "thread": 14 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1190767, + "thread": 13 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1368678, + "thread": 24 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1578998, + "thread": 19 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1709044, + "thread": 11 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 1864907, + "thread": 5 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2048428, + "thread": 6 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2150909, + "thread": 14 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2314136, + "thread": 10 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2545176, + "thread": 29 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2655074, + "thread": 17 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 2914322, + "thread": 29 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 3000788, + "thread": 27 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 3135049, + "thread": 28 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 3374278, + "thread": 3 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 3477029, + "thread": 9 + } + }, + { + "amount": "77.613511614", + "slot": { + "period": 3757941, + "thread": 31 + } + }, + { + "amount": "77.613511616", + "slot": { + "period": 3910100, + "thread": 27 + } + } + ], + "AU12VePxwUFb5ha1Utrmv8L71RjESotzFenHiSTiaLrQ1b1gvmQQb": [ + { + "amount": "238.403164546", + "slot": { + "period": 82233, + "thread": 28 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 197118, + "thread": 6 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 338944, + "thread": 10 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 612635, + "thread": 3 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 653740, + "thread": 25 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 838514, + "thread": 0 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1018099, + "thread": 1 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1176194, + "thread": 1 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1432071, + "thread": 2 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1502742, + "thread": 4 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1655246, + "thread": 4 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 1902658, + "thread": 17 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2074404, + "thread": 2 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2233338, + "thread": 19 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2328839, + "thread": 23 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2594215, + "thread": 7 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2694403, + "thread": 28 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2800175, + "thread": 15 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 2983333, + "thread": 11 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 3262811, + "thread": 24 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 3414203, + "thread": 22 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 3470384, + "thread": 10 + } + }, + { + "amount": "238.403164546", + "slot": { + "period": 3679937, + "thread": 12 + } + }, + { + "amount": "238.403164557", + "slot": { + "period": 3845461, + "thread": 1 + } + } + ], + "AU12VeV7u6YZCC3n5kfc3XxvkbBHyATjy2z59i2yev5TUeTnv8H5w": [ + { + "amount": "57.564873828", + "slot": { + "period": 153863, + "thread": 23 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 234094, + "thread": 13 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 463881, + "thread": 27 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 497047, + "thread": 8 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 694616, + "thread": 10 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 880917, + "thread": 27 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1050722, + "thread": 31 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1204354, + "thread": 29 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1406112, + "thread": 29 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1548858, + "thread": 2 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1793556, + "thread": 6 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 1847797, + "thread": 3 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2023232, + "thread": 18 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2165398, + "thread": 24 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2334068, + "thread": 11 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2601848, + "thread": 11 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2714119, + "thread": 3 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2919536, + "thread": 5 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 2999216, + "thread": 11 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 3147893, + "thread": 5 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 3444848, + "thread": 17 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 3546146, + "thread": 28 + } + }, + { + "amount": "57.564873828", + "slot": { + "period": 3638398, + "thread": 20 + } + }, + { + "amount": "57.564873822", + "slot": { + "period": 3822283, + "thread": 9 + } + } + ], + "AU12VeWkQ3NmiQUL18DhjP1L4Atop5rJBXBeML8AfYnY1t8qBFvGR": [ + { + "amount": "391.944725868", + "slot": { + "period": 162056, + "thread": 15 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 188946, + "thread": 13 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 385991, + "thread": 7 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 543889, + "thread": 30 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 669355, + "thread": 20 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 830665, + "thread": 14 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1015989, + "thread": 1 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1195695, + "thread": 16 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1343072, + "thread": 0 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1500932, + "thread": 13 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1685717, + "thread": 21 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 1956575, + "thread": 9 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2059158, + "thread": 24 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2204112, + "thread": 25 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2351932, + "thread": 25 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2593318, + "thread": 24 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2782371, + "thread": 28 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2945292, + "thread": 26 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 2989426, + "thread": 10 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 3208264, + "thread": 14 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 3334485, + "thread": 6 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 3505173, + "thread": 11 + } + }, + { + "amount": "391.944725868", + "slot": { + "period": 3710269, + "thread": 8 + } + }, + { + "amount": "391.944725874", + "slot": { + "period": 3939346, + "thread": 0 + } + } + ], + "AU12Vekfv4Y8dA879d1ikKYaUCqD6tmTXREbUe4d85sq9GamaNvWa": [ + { + "amount": "172.965924310", + "slot": { + "period": 27206, + "thread": 19 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 232496, + "thread": 25 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 476319, + "thread": 6 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 504091, + "thread": 7 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 793990, + "thread": 12 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 897011, + "thread": 23 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1107976, + "thread": 30 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1282987, + "thread": 27 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1395285, + "thread": 9 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1561988, + "thread": 25 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1785311, + "thread": 10 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 1835185, + "thread": 25 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2012752, + "thread": 10 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2215937, + "thread": 20 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2312671, + "thread": 18 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2591214, + "thread": 21 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2762849, + "thread": 24 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 2859857, + "thread": 28 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 3109718, + "thread": 10 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 3168632, + "thread": 23 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 3360431, + "thread": 24 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 3504352, + "thread": 26 + } + }, + { + "amount": "172.965924310", + "slot": { + "period": 3721047, + "thread": 18 + } + }, + { + "amount": "172.965924315", + "slot": { + "period": 3933313, + "thread": 6 + } + } + ], + "AU12Vf2Kj6WNSMN8kZuU8XN1n6FCCK3h3RbceijgozKpq4xfX7Hb2": [ + { + "amount": "56.664221575", + "slot": { + "period": 31649, + "thread": 25 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 214608, + "thread": 24 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 472470, + "thread": 25 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 598122, + "thread": 3 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 747791, + "thread": 2 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 879900, + "thread": 31 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1142868, + "thread": 20 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1155141, + "thread": 20 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1318067, + "thread": 6 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1550059, + "thread": 5 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1651469, + "thread": 29 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 1909487, + "thread": 8 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2047025, + "thread": 13 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2282166, + "thread": 17 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2406474, + "thread": 9 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2504388, + "thread": 14 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2749291, + "thread": 30 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 2924208, + "thread": 8 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 3082614, + "thread": 15 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 3267375, + "thread": 3 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 3313304, + "thread": 18 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 3482963, + "thread": 4 + } + }, + { + "amount": "56.664221575", + "slot": { + "period": 3620241, + "thread": 5 + } + }, + { + "amount": "56.664221574", + "slot": { + "period": 3943957, + "thread": 30 + } + } + ], + "AU12Vg9Mg6GCAUvJVC9uBy4CEw2XFfDdqwPLdG9Dn5Qnvbk6pvoor": [ + { + "amount": "80.540159320", + "slot": { + "period": 36382, + "thread": 5 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 320117, + "thread": 25 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 463835, + "thread": 9 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 652962, + "thread": 2 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 738492, + "thread": 6 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 846683, + "thread": 14 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1005422, + "thread": 21 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1212550, + "thread": 8 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1330677, + "thread": 7 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1503480, + "thread": 9 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1689141, + "thread": 0 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 1948367, + "thread": 31 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2095143, + "thread": 1 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2227332, + "thread": 30 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2397980, + "thread": 2 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2611314, + "thread": 20 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2744557, + "thread": 8 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 2820288, + "thread": 15 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3028091, + "thread": 19 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3180773, + "thread": 17 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3434349, + "thread": 0 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3575683, + "thread": 2 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3711151, + "thread": 23 + } + }, + { + "amount": "80.540159320", + "slot": { + "period": 3871059, + "thread": 18 + } + } + ], + "AU12VgYE9EKir7pkpD7K4gpUEYNsoQNSt7tGnMcXA1cg53ncP93q7": [ + { + "amount": "253.962886640", + "slot": { + "period": 162504, + "thread": 8 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 281268, + "thread": 22 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 373334, + "thread": 28 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 637702, + "thread": 12 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 696913, + "thread": 31 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 876495, + "thread": 17 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1121849, + "thread": 15 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1187173, + "thread": 28 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1398744, + "thread": 30 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1637134, + "thread": 3 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1777261, + "thread": 29 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 1914446, + "thread": 28 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2102497, + "thread": 26 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2183214, + "thread": 25 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2450097, + "thread": 11 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2486513, + "thread": 16 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2759822, + "thread": 15 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 2919245, + "thread": 8 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 3019271, + "thread": 13 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 3196363, + "thread": 5 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 3443432, + "thread": 29 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 3489786, + "thread": 27 + } + }, + { + "amount": "253.962886640", + "slot": { + "period": 3660019, + "thread": 17 + } + }, + { + "amount": "253.962886633", + "slot": { + "period": 3931401, + "thread": 28 + } + } + ], + "AU12VhBVpEubwPV79UAfKLU4yFVDhN69RtKP87jAnFQ4U5mgd89F9": [ + { + "amount": "179.195325859", + "slot": { + "period": 90095, + "thread": 21 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 199334, + "thread": 3 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 460555, + "thread": 18 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 639333, + "thread": 24 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 755032, + "thread": 7 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 930321, + "thread": 27 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1057478, + "thread": 2 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1197211, + "thread": 23 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1447465, + "thread": 5 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1634372, + "thread": 18 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1684949, + "thread": 23 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 1815417, + "thread": 7 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2140600, + "thread": 24 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2268297, + "thread": 30 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2424624, + "thread": 15 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2597736, + "thread": 14 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2679270, + "thread": 10 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 2884797, + "thread": 16 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 3042447, + "thread": 1 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 3127768, + "thread": 17 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 3358385, + "thread": 30 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 3608188, + "thread": 9 + } + }, + { + "amount": "179.195325859", + "slot": { + "period": 3659432, + "thread": 0 + } + }, + { + "amount": "179.195325861", + "slot": { + "period": 3885124, + "thread": 27 + } + } + ], + "AU12Vi2ZymuaEzoZCXHu4ANMqCa1yiLzMsa8twYzisQZDMSj5Bddt": [ + { + "amount": "58.257398127", + "slot": { + "period": 97100, + "thread": 9 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 310617, + "thread": 7 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 425120, + "thread": 0 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 510656, + "thread": 21 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 766988, + "thread": 10 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 978711, + "thread": 10 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1003745, + "thread": 1 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1169395, + "thread": 24 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1320114, + "thread": 5 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1628736, + "thread": 25 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1746737, + "thread": 26 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 1937463, + "thread": 24 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2001093, + "thread": 25 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2293550, + "thread": 3 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2373922, + "thread": 17 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2510706, + "thread": 1 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2763739, + "thread": 7 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 2828092, + "thread": 15 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 3010615, + "thread": 24 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 3240882, + "thread": 8 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 3419877, + "thread": 21 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 3560792, + "thread": 16 + } + }, + { + "amount": "58.257398127", + "slot": { + "period": 3741458, + "thread": 11 + } + }, + { + "amount": "58.257398118", + "slot": { + "period": 3810257, + "thread": 15 + } + } + ], + "AU12Vi9V6Fsq9HMh9ge88WJ5cgymBGc3oUX2F6WpRqA5HdabPcPt5": [ + { + "amount": "1102712.663791667", + "slot": { + "period": 167400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 324000, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 491400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 653400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 820800, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 982800, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1150200, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1317600, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1479600, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1647000, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1809000, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 1976400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2143800, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2295000, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2462400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2624400, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2791800, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 2953800, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 3121200, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 3288600, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 3450600, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 3618000, + "thread": 0 + } + }, + { + "amount": "1102712.663791667", + "slot": { + "period": 3780000, + "thread": 0 + } + }, + { + "amount": "1102712.663791659", + "slot": { + "period": 3947400, + "thread": 0 + } + } + ], + "AU12ViULBHcS8Z2j19QDwBhfynR18VSTVVhixApBWxzVQZys11ywY": [ + { + "amount": "449.145711634", + "slot": { + "period": 166157, + "thread": 24 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 233651, + "thread": 11 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 426941, + "thread": 23 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 513851, + "thread": 7 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 684216, + "thread": 4 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 889202, + "thread": 15 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1102183, + "thread": 3 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1162611, + "thread": 27 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1371719, + "thread": 1 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1625366, + "thread": 22 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1789709, + "thread": 19 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1826575, + "thread": 4 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 1977486, + "thread": 0 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2183312, + "thread": 31 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2360613, + "thread": 5 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2591790, + "thread": 16 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2750409, + "thread": 23 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2825037, + "thread": 23 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 2983119, + "thread": 5 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 3265814, + "thread": 3 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 3430109, + "thread": 13 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 3528163, + "thread": 17 + } + }, + { + "amount": "449.145711634", + "slot": { + "period": 3676741, + "thread": 1 + } + }, + { + "amount": "449.145711642", + "slot": { + "period": 3798168, + "thread": 10 + } + } + ], + "AU12Vitf5Qe1QDAs953xm5eVCX2jcxRNG3Hso7L3jv3LHgFK3pUST": [ + { + "amount": "106.176029014", + "slot": { + "period": 134867, + "thread": 7 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 321969, + "thread": 6 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 361200, + "thread": 13 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 650196, + "thread": 28 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 728163, + "thread": 15 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 978069, + "thread": 21 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1143746, + "thread": 19 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1291878, + "thread": 14 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1333465, + "thread": 31 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1563097, + "thread": 4 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1771329, + "thread": 14 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 1842720, + "thread": 4 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2068772, + "thread": 13 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2281438, + "thread": 22 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2307851, + "thread": 8 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2521786, + "thread": 28 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2674892, + "thread": 22 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 2910283, + "thread": 16 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 3110185, + "thread": 15 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 3262588, + "thread": 25 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 3326870, + "thread": 23 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 3541011, + "thread": 20 + } + }, + { + "amount": "106.176029014", + "slot": { + "period": 3711193, + "thread": 20 + } + }, + { + "amount": "106.176029007", + "slot": { + "period": 3804051, + "thread": 4 + } + } + ], + "AU12Vj7xEqC4n156TnyHMDkqxrqhye79mw2LgBgb7awsqcKWf132F": [ + { + "amount": "165.287827553", + "slot": { + "period": 75721, + "thread": 27 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 278735, + "thread": 3 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 430186, + "thread": 21 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 567662, + "thread": 22 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 705036, + "thread": 27 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 904599, + "thread": 0 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1020425, + "thread": 30 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1155792, + "thread": 0 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1369621, + "thread": 11 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1534431, + "thread": 28 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1716720, + "thread": 21 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 1823808, + "thread": 26 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2024976, + "thread": 17 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2144853, + "thread": 26 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2359800, + "thread": 20 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2517348, + "thread": 23 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2685442, + "thread": 3 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 2845143, + "thread": 23 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 3039605, + "thread": 28 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 3244848, + "thread": 18 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 3296922, + "thread": 12 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 3602023, + "thread": 16 + } + }, + { + "amount": "165.287827553", + "slot": { + "period": 3674370, + "thread": 14 + } + }, + { + "amount": "165.287827562", + "slot": { + "period": 3865790, + "thread": 23 + } + } + ], + "AU12VjMnLgzRK465JAJktfrHRjnKauPWC8tRhghUYbuwQxdKYNTYo": [ + { + "amount": "242.098645086", + "slot": { + "period": 51680, + "thread": 9 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 234799, + "thread": 5 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 452341, + "thread": 9 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 567912, + "thread": 1 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 736473, + "thread": 12 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 929714, + "thread": 5 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1001154, + "thread": 3 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1232629, + "thread": 31 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1479381, + "thread": 1 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1533727, + "thread": 20 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1784292, + "thread": 11 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 1911790, + "thread": 27 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2035362, + "thread": 21 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2159112, + "thread": 28 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2374122, + "thread": 12 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2488389, + "thread": 24 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2756900, + "thread": 5 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 2858612, + "thread": 5 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 3071302, + "thread": 9 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 3124998, + "thread": 13 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 3445859, + "thread": 11 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 3501463, + "thread": 21 + } + }, + { + "amount": "242.098645086", + "slot": { + "period": 3727157, + "thread": 4 + } + }, + { + "amount": "242.098645077", + "slot": { + "period": 3940400, + "thread": 7 + } + } + ], + "AU12VjWqM5rAdCK3VUGucJz62vAGhpPW5YSYC1Sz4LGSiVdieSfud": [ + { + "amount": "66.483098898", + "slot": { + "period": 21162, + "thread": 30 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 199928, + "thread": 3 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 345284, + "thread": 25 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 492140, + "thread": 0 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 752820, + "thread": 5 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 878732, + "thread": 24 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1140959, + "thread": 17 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1171584, + "thread": 10 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1457712, + "thread": 2 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1578591, + "thread": 27 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1660210, + "thread": 7 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 1815842, + "thread": 18 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2069700, + "thread": 3 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2185242, + "thread": 27 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2334790, + "thread": 16 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2469439, + "thread": 2 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2732569, + "thread": 0 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2838034, + "thread": 8 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 2989519, + "thread": 17 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 3241240, + "thread": 20 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 3375435, + "thread": 30 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 3501514, + "thread": 1 + } + }, + { + "amount": "66.483098898", + "slot": { + "period": 3705863, + "thread": 26 + } + }, + { + "amount": "66.483098909", + "slot": { + "period": 3823712, + "thread": 29 + } + } + ], + "AU12VjmvLBFpe1MgPf1t2MgsjKrBo1fCR2HBXiEZedZtyx6TQWy3x": [ + { + "amount": "217.370914101", + "slot": { + "period": 123820, + "thread": 31 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 303264, + "thread": 3 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 341130, + "thread": 31 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 495561, + "thread": 15 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 775614, + "thread": 25 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 923847, + "thread": 16 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1061165, + "thread": 19 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1300767, + "thread": 23 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1452699, + "thread": 20 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1587518, + "thread": 17 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1705769, + "thread": 7 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 1970552, + "thread": 14 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2037372, + "thread": 10 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2175499, + "thread": 23 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2350782, + "thread": 8 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2550752, + "thread": 4 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2637407, + "thread": 19 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 2935616, + "thread": 12 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 3026919, + "thread": 10 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 3180799, + "thread": 3 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 3323381, + "thread": 0 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 3479922, + "thread": 19 + } + }, + { + "amount": "217.370914101", + "slot": { + "period": 3676328, + "thread": 7 + } + }, + { + "amount": "217.370914092", + "slot": { + "period": 3880581, + "thread": 0 + } + } + ], + "AU12VkSpm9ujDCTUnnkVkGryiNM5aTW6qkTRd7YQX96xbtQ7aiGnv": [ + { + "amount": "519.559719469", + "slot": { + "period": 87474, + "thread": 3 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 179361, + "thread": 9 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 478139, + "thread": 6 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 510773, + "thread": 7 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 721269, + "thread": 8 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 850446, + "thread": 10 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1055600, + "thread": 30 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1190222, + "thread": 14 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1372094, + "thread": 9 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1534581, + "thread": 9 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1759066, + "thread": 11 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 1925330, + "thread": 28 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2061063, + "thread": 19 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2144515, + "thread": 11 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2362470, + "thread": 16 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2522689, + "thread": 3 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2703470, + "thread": 31 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 2908185, + "thread": 8 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 3108659, + "thread": 16 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 3196399, + "thread": 13 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 3426051, + "thread": 7 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 3521554, + "thread": 12 + } + }, + { + "amount": "519.559719469", + "slot": { + "period": 3644183, + "thread": 0 + } + }, + { + "amount": "519.559719466", + "slot": { + "period": 3885256, + "thread": 11 + } + } + ], + "AU12VkpT2MGPx96FdsGYc9Tv322bss4U8e2WxCMUw1SbNTDXPPJk2": [ + { + "amount": "115.980780831", + "slot": { + "period": 93740, + "thread": 10 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 257876, + "thread": 3 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 324154, + "thread": 0 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 583398, + "thread": 8 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 756888, + "thread": 27 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 979705, + "thread": 15 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1014607, + "thread": 15 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1222665, + "thread": 19 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1360436, + "thread": 22 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1480098, + "thread": 8 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1664258, + "thread": 18 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 1941900, + "thread": 29 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2002284, + "thread": 14 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2157246, + "thread": 18 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2321791, + "thread": 21 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2621893, + "thread": 9 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2715870, + "thread": 5 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2905695, + "thread": 26 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 2986651, + "thread": 27 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 3177026, + "thread": 11 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 3370613, + "thread": 13 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 3549506, + "thread": 2 + } + }, + { + "amount": "115.980780831", + "slot": { + "period": 3776065, + "thread": 12 + } + }, + { + "amount": "115.980780839", + "slot": { + "period": 3877873, + "thread": 19 + } + } + ], + "AU12VkqivAKGfL4eNLTr9W12mBvr6jux64aBxzgp9AyNkJuiE8jHN": [ + { + "amount": "203.143155350", + "slot": { + "period": 130121, + "thread": 15 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 250892, + "thread": 18 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 336530, + "thread": 18 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 644043, + "thread": 8 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 734623, + "thread": 5 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 910620, + "thread": 16 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1150026, + "thread": 17 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1232509, + "thread": 29 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1390554, + "thread": 19 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1582722, + "thread": 8 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1726453, + "thread": 14 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 1891601, + "thread": 15 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2081346, + "thread": 19 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2222796, + "thread": 3 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2421899, + "thread": 28 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2601217, + "thread": 7 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2771662, + "thread": 5 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 2927661, + "thread": 26 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 3049541, + "thread": 2 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 3171052, + "thread": 20 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 3318983, + "thread": 13 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 3495467, + "thread": 22 + } + }, + { + "amount": "203.143155350", + "slot": { + "period": 3702492, + "thread": 15 + } + }, + { + "amount": "203.143155362", + "slot": { + "period": 3871597, + "thread": 28 + } + } + ], + "AU12VmFV1rPAfLLtUBjCNorXWbNt4bBLHmEbacqSMwYLJezwCS9g": [ + { + "amount": "222.600548311", + "slot": { + "period": 115121, + "thread": 8 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 195626, + "thread": 6 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 446373, + "thread": 7 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 653249, + "thread": 10 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 738873, + "thread": 12 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 959910, + "thread": 19 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1040117, + "thread": 18 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1302017, + "thread": 4 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1334580, + "thread": 25 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1532350, + "thread": 14 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1689784, + "thread": 23 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 1898396, + "thread": 25 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2086912, + "thread": 2 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2181266, + "thread": 19 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2338007, + "thread": 10 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2495414, + "thread": 0 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2732516, + "thread": 22 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 2812077, + "thread": 31 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 3030525, + "thread": 15 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 3168437, + "thread": 22 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 3444011, + "thread": 14 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 3558896, + "thread": 2 + } + }, + { + "amount": "222.600548311", + "slot": { + "period": 3661550, + "thread": 8 + } + }, + { + "amount": "222.600548300", + "slot": { + "period": 3793946, + "thread": 30 + } + } + ], + "AU12VnaDTS69FbVssVktPEwAi1bNGYSVGFGatuHJgCHZ8qDgQiLF7": [ + { + "amount": "71.217933292", + "slot": { + "period": 115551, + "thread": 31 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 237817, + "thread": 21 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 448151, + "thread": 12 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 502546, + "thread": 11 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 656163, + "thread": 21 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 929065, + "thread": 21 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1122810, + "thread": 17 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1303454, + "thread": 3 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1367385, + "thread": 14 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1491238, + "thread": 31 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1745107, + "thread": 28 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1951515, + "thread": 31 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 1992386, + "thread": 14 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 2200654, + "thread": 17 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 2442274, + "thread": 8 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 2590143, + "thread": 11 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 2770635, + "thread": 17 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 2829504, + "thread": 12 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 3056527, + "thread": 5 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 3178118, + "thread": 1 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 3322877, + "thread": 26 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 3606496, + "thread": 29 + } + }, + { + "amount": "71.217933292", + "slot": { + "period": 3666586, + "thread": 28 + } + }, + { + "amount": "71.217933301", + "slot": { + "period": 3791414, + "thread": 26 + } + } + ], + "AU12VnwPtKEfaVb3Fnmzin2aUo5i57SCVnjSSSxnbZmwb5BoVh4oM": [ + { + "amount": "229.125101866", + "slot": { + "period": 56937, + "thread": 2 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 319550, + "thread": 28 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 383267, + "thread": 13 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 520870, + "thread": 21 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 744471, + "thread": 15 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 880349, + "thread": 29 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1029451, + "thread": 19 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1304184, + "thread": 0 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1453110, + "thread": 27 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1631151, + "thread": 20 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1667699, + "thread": 29 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1911390, + "thread": 5 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 1987921, + "thread": 10 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 2241382, + "thread": 18 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 2309169, + "thread": 4 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 2535084, + "thread": 31 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 2692705, + "thread": 10 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 2917002, + "thread": 18 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 3015107, + "thread": 19 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 3188301, + "thread": 3 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 3413219, + "thread": 12 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 3463379, + "thread": 10 + } + }, + { + "amount": "229.125101866", + "slot": { + "period": 3643641, + "thread": 14 + } + }, + { + "amount": "229.125101856", + "slot": { + "period": 3857609, + "thread": 28 + } + } + ], + "AU12VoJLRSSCuFCzenSjr3cZurQkTw8FPGNzeHxy54deDXMz9BmdQ": [ + { + "amount": "145.333429310", + "slot": { + "period": 112748, + "thread": 31 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 313367, + "thread": 21 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 343933, + "thread": 3 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 536041, + "thread": 12 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 741879, + "thread": 26 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 849994, + "thread": 11 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1077239, + "thread": 12 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1185847, + "thread": 17 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1342062, + "thread": 23 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1496779, + "thread": 12 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1649078, + "thread": 0 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 1828521, + "thread": 29 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2027723, + "thread": 6 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2211588, + "thread": 21 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2336884, + "thread": 26 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2500606, + "thread": 9 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2710690, + "thread": 24 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 2794595, + "thread": 14 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 3117913, + "thread": 13 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 3205201, + "thread": 16 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 3341083, + "thread": 22 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 3482114, + "thread": 24 + } + }, + { + "amount": "145.333429310", + "slot": { + "period": 3624245, + "thread": 6 + } + }, + { + "amount": "145.333429314", + "slot": { + "period": 3814430, + "thread": 19 + } + } + ], + "AU12VomxK9BCgSgwcSPmSCg1KBTHYyjaLnUaYL27hs7apKrNGovzQ": [ + { + "amount": "330.145942390", + "slot": { + "period": 143204, + "thread": 12 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 257291, + "thread": 23 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 357010, + "thread": 5 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 550063, + "thread": 30 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 712251, + "thread": 29 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 950430, + "thread": 14 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1117019, + "thread": 24 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1225556, + "thread": 16 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1475860, + "thread": 17 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1606596, + "thread": 22 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1698233, + "thread": 8 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1916691, + "thread": 22 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 1994418, + "thread": 18 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2268670, + "thread": 2 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2359496, + "thread": 14 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2537980, + "thread": 18 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2779773, + "thread": 27 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2865965, + "thread": 21 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 2978536, + "thread": 11 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 3218745, + "thread": 26 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 3357717, + "thread": 22 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 3479288, + "thread": 20 + } + }, + { + "amount": "330.145942390", + "slot": { + "period": 3726466, + "thread": 5 + } + }, + { + "amount": "330.145942383", + "slot": { + "period": 3814678, + "thread": 21 + } + } + ], + "AU12VopcQ3jGGuv1xqG7pKqCnb6ZHrWfYbNPfNSMW4MJUdVokJ2Hy": [ + { + "amount": "61.105300906", + "slot": { + "period": 106465, + "thread": 24 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 215543, + "thread": 31 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 444619, + "thread": 3 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 516449, + "thread": 7 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 702650, + "thread": 17 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 966111, + "thread": 14 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1060345, + "thread": 31 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1177769, + "thread": 11 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1322139, + "thread": 18 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1490192, + "thread": 21 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1700586, + "thread": 0 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 1820999, + "thread": 4 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2022282, + "thread": 22 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2204164, + "thread": 18 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2362105, + "thread": 3 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2568063, + "thread": 3 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2655523, + "thread": 30 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 2825112, + "thread": 14 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 3004666, + "thread": 28 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 3229192, + "thread": 9 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 3332584, + "thread": 5 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 3452286, + "thread": 4 + } + }, + { + "amount": "61.105300906", + "slot": { + "period": 3667980, + "thread": 13 + } + }, + { + "amount": "61.105300913", + "slot": { + "period": 3909963, + "thread": 2 + } + } + ], + "AU12VqnVF96QMtxAU92D8bARjXP8vk4cEFTMBYXZEX5fhK12QCgGN": [ + { + "amount": "245.414935382", + "slot": { + "period": 16034, + "thread": 12 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 204180, + "thread": 3 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 396970, + "thread": 3 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 532616, + "thread": 25 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 757959, + "thread": 29 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 977458, + "thread": 15 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1019354, + "thread": 24 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1193064, + "thread": 7 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1408870, + "thread": 25 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1646839, + "thread": 5 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1685212, + "thread": 26 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1970802, + "thread": 11 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 1985315, + "thread": 6 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 2219813, + "thread": 2 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 2310054, + "thread": 14 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 2553434, + "thread": 12 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 2647891, + "thread": 22 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 2899079, + "thread": 18 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 3021906, + "thread": 10 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 3175677, + "thread": 22 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 3376712, + "thread": 21 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 3564244, + "thread": 14 + } + }, + { + "amount": "245.414935382", + "slot": { + "period": 3627356, + "thread": 23 + } + }, + { + "amount": "245.414935375", + "slot": { + "period": 3904688, + "thread": 31 + } + } + ], + "AU12VquUHTB8RqiUh6ipZyzyHcBANCgVSU4qePnK4RDeufZt9KY1D": [ + { + "amount": "149.111432128", + "slot": { + "period": 52263, + "thread": 23 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 291228, + "thread": 26 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 472832, + "thread": 20 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 584030, + "thread": 19 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 663581, + "thread": 31 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 915833, + "thread": 19 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1098790, + "thread": 29 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1172744, + "thread": 31 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1434503, + "thread": 21 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1605484, + "thread": 17 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1736906, + "thread": 7 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 1833885, + "thread": 23 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2142474, + "thread": 24 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2259364, + "thread": 25 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2296494, + "thread": 6 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2473379, + "thread": 21 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2736296, + "thread": 30 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 2908672, + "thread": 23 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 3015755, + "thread": 12 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 3213823, + "thread": 24 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 3297471, + "thread": 7 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 3478408, + "thread": 22 + } + }, + { + "amount": "149.111432128", + "slot": { + "period": 3695275, + "thread": 11 + } + }, + { + "amount": "149.111432140", + "slot": { + "period": 3847786, + "thread": 29 + } + } + ], + "AU12Vr3mCqeLc1sjjfF8iEXozEccjg3XU9uK8ngsrseVeqktpLPRC": [ + { + "amount": "196.932811502", + "slot": { + "period": 149969, + "thread": 21 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 213766, + "thread": 19 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 395371, + "thread": 14 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 557937, + "thread": 26 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 768218, + "thread": 16 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 881901, + "thread": 6 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1041666, + "thread": 28 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1191222, + "thread": 11 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1329981, + "thread": 25 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1580082, + "thread": 5 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1728697, + "thread": 3 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 1819527, + "thread": 12 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2115215, + "thread": 23 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2180684, + "thread": 16 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2309115, + "thread": 22 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2581276, + "thread": 14 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2633755, + "thread": 1 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2812327, + "thread": 28 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 2967143, + "thread": 7 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 3270546, + "thread": 23 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 3359833, + "thread": 12 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 3615242, + "thread": 19 + } + }, + { + "amount": "196.932811502", + "slot": { + "period": 3760364, + "thread": 10 + } + }, + { + "amount": "196.932811504", + "slot": { + "period": 3796520, + "thread": 12 + } + } + ], + "AU12VrDZzb5ridyvq2q5uxG9LG1MC4hHvWiD3oqrnpxo6LeDVfQac": [ + { + "amount": "248.949821435", + "slot": { + "period": 91376, + "thread": 5 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 256771, + "thread": 9 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 463504, + "thread": 2 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 647568, + "thread": 14 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 754371, + "thread": 5 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 823265, + "thread": 29 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1131139, + "thread": 8 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1292640, + "thread": 9 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1474031, + "thread": 5 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1595006, + "thread": 29 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1692182, + "thread": 6 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 1897354, + "thread": 9 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2100063, + "thread": 23 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2269496, + "thread": 7 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2421066, + "thread": 6 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2609214, + "thread": 25 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2790062, + "thread": 22 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 2839097, + "thread": 29 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 3085072, + "thread": 25 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 3270405, + "thread": 26 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 3447969, + "thread": 13 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 3530947, + "thread": 22 + } + }, + { + "amount": "248.949821435", + "slot": { + "period": 3685883, + "thread": 20 + } + }, + { + "amount": "248.949821427", + "slot": { + "period": 3850662, + "thread": 27 + } + } + ], + "AU12VrjsfhCax7LCkCJioGFh6qRYKZNmgpkrqFWEAY5VcgHFeeaa8": [ + { + "amount": "190.154856113", + "slot": { + "period": 136916, + "thread": 22 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 272860, + "thread": 18 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 352118, + "thread": 23 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 608776, + "thread": 30 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 779897, + "thread": 11 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 967492, + "thread": 6 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1102439, + "thread": 17 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1160898, + "thread": 4 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1450160, + "thread": 24 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1633955, + "thread": 29 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1737614, + "thread": 9 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 1837379, + "thread": 19 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2050949, + "thread": 17 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2247488, + "thread": 24 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2342767, + "thread": 19 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2584822, + "thread": 16 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2781162, + "thread": 7 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 2937553, + "thread": 20 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 3074316, + "thread": 1 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 3129119, + "thread": 8 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 3380172, + "thread": 11 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 3468532, + "thread": 19 + } + }, + { + "amount": "190.154856113", + "slot": { + "period": 3696339, + "thread": 27 + } + }, + { + "amount": "190.154856122", + "slot": { + "period": 3811985, + "thread": 22 + } + } + ], + "AU12Vrvwswj2uUq631JtRnF3iyBoFR4Yn1EnHke1nd7Ti95Ke4Mna": [ + { + "amount": "54.142783339", + "slot": { + "period": 145574, + "thread": 23 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 293795, + "thread": 5 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 447154, + "thread": 10 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 531523, + "thread": 27 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 807155, + "thread": 12 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 893636, + "thread": 7 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1073880, + "thread": 28 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1171780, + "thread": 24 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1364300, + "thread": 4 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1545655, + "thread": 3 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1784239, + "thread": 10 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 1827232, + "thread": 6 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2123331, + "thread": 1 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2281738, + "thread": 16 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2350865, + "thread": 31 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2544566, + "thread": 10 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2642916, + "thread": 17 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2916342, + "thread": 30 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 2968895, + "thread": 16 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 3174064, + "thread": 18 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 3442783, + "thread": 13 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 3569483, + "thread": 7 + } + }, + { + "amount": "54.142783339", + "slot": { + "period": 3739757, + "thread": 26 + } + }, + { + "amount": "54.142783334", + "slot": { + "period": 3914071, + "thread": 19 + } + } + ], + "AU12VryiXorMBaeYhwkc6ZBfQpLiKFgLx13N519FpQUZw2nuaDUYi": [ + { + "amount": "164.058373152", + "slot": { + "period": 127518, + "thread": 30 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 234343, + "thread": 12 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 416796, + "thread": 2 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 524245, + "thread": 7 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 680485, + "thread": 29 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 831377, + "thread": 9 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1017961, + "thread": 20 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1166304, + "thread": 3 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1321094, + "thread": 23 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1626589, + "thread": 26 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1673812, + "thread": 16 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 1867535, + "thread": 27 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2121258, + "thread": 31 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2192576, + "thread": 11 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2371337, + "thread": 1 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2497497, + "thread": 18 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2682142, + "thread": 14 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 2912739, + "thread": 14 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 3049976, + "thread": 8 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 3166856, + "thread": 4 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 3432441, + "thread": 6 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 3452073, + "thread": 8 + } + }, + { + "amount": "164.058373152", + "slot": { + "period": 3748992, + "thread": 6 + } + }, + { + "amount": "164.058373160", + "slot": { + "period": 3878852, + "thread": 31 + } + } + ], + "AU12VsPN8csBuoDE3NuEYyKs8Cmi7StrohEAW21JJtFtcEVhbyWJv": [ + { + "amount": "134.700306757", + "slot": { + "period": 53604, + "thread": 30 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 177268, + "thread": 20 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 351211, + "thread": 9 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 585545, + "thread": 19 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 691509, + "thread": 17 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 907557, + "thread": 20 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1001779, + "thread": 0 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1163786, + "thread": 2 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1456466, + "thread": 27 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1509438, + "thread": 14 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1763507, + "thread": 2 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 1906057, + "thread": 13 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2036567, + "thread": 3 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2236009, + "thread": 25 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2356430, + "thread": 14 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2615365, + "thread": 6 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2685358, + "thread": 27 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 2952952, + "thread": 16 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 3007647, + "thread": 6 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 3264447, + "thread": 2 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 3436792, + "thread": 13 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 3492867, + "thread": 1 + } + }, + { + "amount": "134.700306757", + "slot": { + "period": 3666058, + "thread": 2 + } + }, + { + "amount": "134.700306761", + "slot": { + "period": 3805189, + "thread": 29 + } + } + ], + "AU12Vt7bMrs5LTSJzNsmDBuNqT8Ecef2qYejUJXFEjQx4Nzt8dLPm": [ + { + "amount": "149.362713721", + "slot": { + "period": 103896, + "thread": 8 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 290533, + "thread": 20 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 432886, + "thread": 13 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 605587, + "thread": 17 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 774937, + "thread": 6 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 927430, + "thread": 9 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1041440, + "thread": 5 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1314032, + "thread": 11 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1439691, + "thread": 26 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1495950, + "thread": 30 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1799746, + "thread": 11 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 1828618, + "thread": 31 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2065503, + "thread": 22 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2185371, + "thread": 26 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2362269, + "thread": 24 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2565137, + "thread": 7 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2744057, + "thread": 27 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 2891050, + "thread": 6 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 3011330, + "thread": 31 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 3221925, + "thread": 19 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 3362686, + "thread": 24 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 3617967, + "thread": 12 + } + }, + { + "amount": "149.362713721", + "slot": { + "period": 3770196, + "thread": 2 + } + }, + { + "amount": "149.362713717", + "slot": { + "period": 3802360, + "thread": 3 + } + } + ], + "AU12VtHXe1Tj4ZrqsMqzrqur7Zay6nAtxeYW5bgQk7bqfkZHj5wTH": [ + { + "amount": "423.814430447", + "slot": { + "period": 113567, + "thread": 21 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 194288, + "thread": 4 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 365608, + "thread": 3 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 600823, + "thread": 0 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 689214, + "thread": 19 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 948657, + "thread": 25 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1041640, + "thread": 11 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1309940, + "thread": 21 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1330485, + "thread": 9 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1503873, + "thread": 24 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1756190, + "thread": 3 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 1867889, + "thread": 17 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2023455, + "thread": 5 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2257553, + "thread": 30 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2381652, + "thread": 16 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2547994, + "thread": 21 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2781380, + "thread": 2 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 2876747, + "thread": 11 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 3041274, + "thread": 9 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 3180716, + "thread": 28 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 3318662, + "thread": 25 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 3541928, + "thread": 20 + } + }, + { + "amount": "423.814430447", + "slot": { + "period": 3634340, + "thread": 5 + } + }, + { + "amount": "423.814430440", + "slot": { + "period": 3898361, + "thread": 28 + } + } + ], + "AU12VtsRZtvRcBpjKX3SLMvED2gHM6NvhWhEFhLy4UaybTLPGnpx": [ + { + "amount": "189.057603265", + "slot": { + "period": 86509, + "thread": 22 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 236147, + "thread": 10 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 459300, + "thread": 4 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 515658, + "thread": 16 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 695874, + "thread": 26 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 877568, + "thread": 28 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1141102, + "thread": 11 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1258267, + "thread": 29 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1381490, + "thread": 12 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1621891, + "thread": 23 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1657923, + "thread": 29 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 1846998, + "thread": 28 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2100413, + "thread": 6 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2259023, + "thread": 27 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2371226, + "thread": 15 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2466035, + "thread": 16 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2658436, + "thread": 4 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2875557, + "thread": 4 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 2957867, + "thread": 28 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 3274197, + "thread": 31 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 3326404, + "thread": 16 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 3599442, + "thread": 13 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 3765995, + "thread": 2 + } + }, + { + "amount": "189.057603265", + "slot": { + "period": 3928509, + "thread": 29 + } + } + ], + "AU12VuPqjhZaSdHsuzVabc6FtNN84cZ5K33EWm81e1JPAg6zMB3NU": [ + { + "amount": "71.510339880", + "slot": { + "period": 48976, + "thread": 19 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 302868, + "thread": 23 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 372025, + "thread": 15 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 641870, + "thread": 15 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 708192, + "thread": 28 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 967395, + "thread": 24 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1057772, + "thread": 30 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1175640, + "thread": 6 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1457532, + "thread": 0 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1637673, + "thread": 1 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1775271, + "thread": 18 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 1809424, + "thread": 16 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2103439, + "thread": 4 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2193441, + "thread": 0 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2370337, + "thread": 2 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2566201, + "thread": 30 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2694158, + "thread": 14 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 2815229, + "thread": 7 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 3071594, + "thread": 24 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 3238905, + "thread": 16 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 3381599, + "thread": 28 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 3503833, + "thread": 23 + } + }, + { + "amount": "71.510339880", + "slot": { + "period": 3731654, + "thread": 20 + } + }, + { + "amount": "71.510339869", + "slot": { + "period": 3824503, + "thread": 19 + } + } + ], + "AU12Vubu4utrAj5Ti4QaDEF1RZ289fKwQFjZmN8sucicDzH5BHLDV": [ + { + "amount": "503.487125993", + "slot": { + "period": 47373, + "thread": 31 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 180013, + "thread": 15 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 488422, + "thread": 30 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 556748, + "thread": 23 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 660208, + "thread": 12 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 961593, + "thread": 18 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1010698, + "thread": 0 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1283297, + "thread": 22 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1363810, + "thread": 30 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1484404, + "thread": 25 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1736562, + "thread": 7 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 1972149, + "thread": 14 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2083597, + "thread": 24 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2176087, + "thread": 5 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2415827, + "thread": 29 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2557916, + "thread": 2 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2691835, + "thread": 22 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 2886006, + "thread": 30 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 3025051, + "thread": 30 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 3287823, + "thread": 5 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 3335170, + "thread": 6 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 3497268, + "thread": 15 + } + }, + { + "amount": "503.487125993", + "slot": { + "period": 3688903, + "thread": 2 + } + }, + { + "amount": "503.487126002", + "slot": { + "period": 3820180, + "thread": 0 + } + } + ], + "AU12VujT62RnSYC8FPg3Rmci3R79birbo5uAYi7LH5bGgNrgkvYwu": [ + { + "amount": "263.267175181", + "slot": { + "period": 23807, + "thread": 14 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 257537, + "thread": 9 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 366342, + "thread": 12 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 551807, + "thread": 28 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 806160, + "thread": 22 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 971386, + "thread": 23 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1060885, + "thread": 6 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1259576, + "thread": 14 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1456915, + "thread": 20 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1621165, + "thread": 28 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1778360, + "thread": 5 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 1861964, + "thread": 7 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2138625, + "thread": 7 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2154876, + "thread": 5 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2329407, + "thread": 3 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2594512, + "thread": 6 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2743180, + "thread": 6 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 2936895, + "thread": 0 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 3027950, + "thread": 6 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 3245137, + "thread": 28 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 3386829, + "thread": 2 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 3456531, + "thread": 9 + } + }, + { + "amount": "263.267175181", + "slot": { + "period": 3724985, + "thread": 3 + } + }, + { + "amount": "263.267175182", + "slot": { + "period": 3881667, + "thread": 28 + } + } + ], + "AU12VwN53UHXWxz9qskMfvDgXPM2CihoaJodkWcwFLo3AemVY9tL9": [ + { + "amount": "495.856354230", + "slot": { + "period": 155289, + "thread": 18 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 242868, + "thread": 29 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 420515, + "thread": 23 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 516871, + "thread": 21 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 665987, + "thread": 6 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 959321, + "thread": 4 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 986427, + "thread": 2 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 1206651, + "thread": 13 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 1477428, + "thread": 4 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 1560589, + "thread": 11 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 1703673, + "thread": 25 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 1897281, + "thread": 29 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2027662, + "thread": 26 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2259939, + "thread": 9 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2437405, + "thread": 12 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2616088, + "thread": 23 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2721062, + "thread": 0 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 2792284, + "thread": 28 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 3030458, + "thread": 1 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 3133757, + "thread": 10 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 3346600, + "thread": 15 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 3460084, + "thread": 12 + } + }, + { + "amount": "495.856354230", + "slot": { + "period": 3774201, + "thread": 16 + } + }, + { + "amount": "495.856354234", + "slot": { + "period": 3890931, + "thread": 23 + } + } + ], + "AU12Vy2buRjXsoqFwWnCe1eMPuafzfDusCrTavYsUnzcEC8ayaZDU": [ + { + "amount": "520.208149195", + "slot": { + "period": 67915, + "thread": 8 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 201808, + "thread": 2 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 425277, + "thread": 29 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 616573, + "thread": 26 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 722137, + "thread": 2 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 871165, + "thread": 7 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1129732, + "thread": 4 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1304211, + "thread": 23 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1418796, + "thread": 24 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1617316, + "thread": 20 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1660927, + "thread": 2 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 1872168, + "thread": 19 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2011925, + "thread": 28 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2215389, + "thread": 6 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2403977, + "thread": 8 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2624122, + "thread": 24 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2773486, + "thread": 10 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 2808260, + "thread": 8 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 3025829, + "thread": 26 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 3179048, + "thread": 29 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 3398686, + "thread": 21 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 3594311, + "thread": 10 + } + }, + { + "amount": "520.208149195", + "slot": { + "period": 3651627, + "thread": 19 + } + }, + { + "amount": "520.208149198", + "slot": { + "period": 3813419, + "thread": 0 + } + } + ], + "AU12VyhkvbJaDZFxufmcC3CF8dhLDj38fD5FV2PvohcrH6EUsRNXr": [ + { + "amount": "126.872186205", + "slot": { + "period": 18744, + "thread": 19 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 275912, + "thread": 23 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 490210, + "thread": 19 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 651369, + "thread": 20 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 782495, + "thread": 20 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 852741, + "thread": 21 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1035385, + "thread": 8 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1232068, + "thread": 11 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1450897, + "thread": 7 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1556276, + "thread": 16 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1714589, + "thread": 18 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 1863207, + "thread": 0 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2131420, + "thread": 11 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2262510, + "thread": 25 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2443274, + "thread": 31 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2620750, + "thread": 19 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2691810, + "thread": 7 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 2884020, + "thread": 21 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 3044768, + "thread": 24 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 3188546, + "thread": 3 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 3361999, + "thread": 0 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 3501234, + "thread": 4 + } + }, + { + "amount": "126.872186205", + "slot": { + "period": 3775625, + "thread": 16 + } + }, + { + "amount": "126.872186211", + "slot": { + "period": 3781863, + "thread": 27 + } + } + ], + "AU12Vykqz9wDZUbFDntxg6hjdnC4nc2yGgztRFeEPodjKvPHUFf7n": [ + { + "amount": "193.684843261", + "slot": { + "period": 25345, + "thread": 28 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 255143, + "thread": 6 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 325692, + "thread": 18 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 630443, + "thread": 26 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 738653, + "thread": 13 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 918011, + "thread": 18 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1149214, + "thread": 16 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1150636, + "thread": 10 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1471844, + "thread": 6 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1497350, + "thread": 28 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1775201, + "thread": 23 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 1868041, + "thread": 27 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2104614, + "thread": 18 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2171971, + "thread": 24 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2295674, + "thread": 9 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2578222, + "thread": 4 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2626981, + "thread": 28 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 2919667, + "thread": 30 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 3033986, + "thread": 17 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 3130638, + "thread": 31 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 3307086, + "thread": 2 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 3458050, + "thread": 27 + } + }, + { + "amount": "193.684843261", + "slot": { + "period": 3712560, + "thread": 4 + } + }, + { + "amount": "193.684843265", + "slot": { + "period": 3876927, + "thread": 8 + } + } + ], + "AU12VzpuR8hth28VVbTnTKdf2FhDnoqYRGbY9CMXpsdRtP4giCGkP": [ + { + "amount": "444.347716027", + "slot": { + "period": 99010, + "thread": 3 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 183759, + "thread": 5 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 448748, + "thread": 26 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 539753, + "thread": 1 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 689755, + "thread": 0 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 851393, + "thread": 26 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1133353, + "thread": 28 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1315532, + "thread": 5 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1326204, + "thread": 21 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1531436, + "thread": 7 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1737355, + "thread": 20 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 1904329, + "thread": 17 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2082699, + "thread": 15 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2150182, + "thread": 15 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2431593, + "thread": 20 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2547731, + "thread": 25 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2765576, + "thread": 14 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 2840728, + "thread": 3 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 3088274, + "thread": 28 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 3219540, + "thread": 9 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 3327175, + "thread": 24 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 3457574, + "thread": 1 + } + }, + { + "amount": "444.347716027", + "slot": { + "period": 3653768, + "thread": 13 + } + }, + { + "amount": "444.347716020", + "slot": { + "period": 3858411, + "thread": 12 + } + } + ], + "AU12VzrNK5hFGHzSC4wR2VStwUMBgbGLy9cHv5PxAqPMXne6a4VdU": [ + { + "amount": "220.683857746", + "slot": { + "period": 76892, + "thread": 17 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 302275, + "thread": 19 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 485983, + "thread": 7 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 594788, + "thread": 26 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 675261, + "thread": 14 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 955961, + "thread": 25 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1050452, + "thread": 19 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1258521, + "thread": 15 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1407116, + "thread": 12 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1539549, + "thread": 5 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1776025, + "thread": 9 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1843751, + "thread": 31 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 1998901, + "thread": 14 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 2145616, + "thread": 17 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 2418299, + "thread": 13 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 2594356, + "thread": 26 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 2776396, + "thread": 20 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 2822382, + "thread": 28 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 3036680, + "thread": 7 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 3162598, + "thread": 21 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 3312974, + "thread": 29 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 3525996, + "thread": 25 + } + }, + { + "amount": "220.683857746", + "slot": { + "period": 3727379, + "thread": 17 + } + }, + { + "amount": "220.683857757", + "slot": { + "period": 3879995, + "thread": 1 + } + } + ], + "AU12W2Db8mZpJHJK9XHv2rpS7AVkMC6x24wSs82Fa3gmoijG49MT8": [ + { + "amount": "101.798934606", + "slot": { + "period": 149575, + "thread": 13 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 177399, + "thread": 28 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 399059, + "thread": 2 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 495613, + "thread": 22 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 716132, + "thread": 18 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 830895, + "thread": 2 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1109206, + "thread": 3 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1170266, + "thread": 16 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1373944, + "thread": 4 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1519731, + "thread": 26 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1727608, + "thread": 17 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 1927534, + "thread": 9 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2094047, + "thread": 16 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2203262, + "thread": 0 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2350398, + "thread": 13 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2591699, + "thread": 13 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2693710, + "thread": 15 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2942807, + "thread": 21 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 2959463, + "thread": 7 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 3208155, + "thread": 15 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 3444512, + "thread": 3 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 3558290, + "thread": 31 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 3757627, + "thread": 20 + } + }, + { + "amount": "101.798934606", + "slot": { + "period": 3887822, + "thread": 21 + } + } + ], + "AU12W2cHjoinqhdtQkeVYjvoc7VkbhJxkkA76oe2fN3FCPgK74zQF": [ + { + "amount": "229.121329255", + "slot": { + "period": 81005, + "thread": 24 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 192091, + "thread": 26 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 364423, + "thread": 7 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 582015, + "thread": 15 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 772072, + "thread": 29 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 905050, + "thread": 30 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 986119, + "thread": 5 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 1301268, + "thread": 31 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 1417139, + "thread": 1 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 1636476, + "thread": 12 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 1773838, + "thread": 26 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 1855784, + "thread": 30 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2057910, + "thread": 7 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2265006, + "thread": 7 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2305998, + "thread": 9 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2592893, + "thread": 12 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2720937, + "thread": 15 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 2799370, + "thread": 12 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 3014866, + "thread": 5 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 3262307, + "thread": 21 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 3384609, + "thread": 12 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 3549723, + "thread": 26 + } + }, + { + "amount": "229.121329255", + "slot": { + "period": 3774497, + "thread": 15 + } + }, + { + "amount": "229.121329249", + "slot": { + "period": 3934406, + "thread": 6 + } + } + ], + "AU12W34reqGpf2dq7iDtnmj7iVSBBPmzp8q1BESMGkUddBURseHeJ": [ + { + "amount": "278.687963490", + "slot": { + "period": 60038, + "thread": 3 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 193286, + "thread": 12 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 432671, + "thread": 16 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 620178, + "thread": 24 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 674516, + "thread": 31 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 960112, + "thread": 27 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1092908, + "thread": 26 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1209266, + "thread": 27 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1403229, + "thread": 30 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1617708, + "thread": 17 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1785379, + "thread": 14 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 1890294, + "thread": 6 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2003326, + "thread": 19 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2156433, + "thread": 0 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2349733, + "thread": 0 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2622368, + "thread": 28 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2630131, + "thread": 4 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 2799120, + "thread": 16 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 3039592, + "thread": 31 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 3161686, + "thread": 12 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 3406178, + "thread": 27 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 3602963, + "thread": 11 + } + }, + { + "amount": "278.687963490", + "slot": { + "period": 3680446, + "thread": 12 + } + }, + { + "amount": "278.687963502", + "slot": { + "period": 3901562, + "thread": 30 + } + } + ], + "AU12W3omomcB7yc2DwTDHq9nFa563vRpJ3jbZupby1AiLa4Eu94eH": [ + { + "amount": "278.321483193", + "slot": { + "period": 49219, + "thread": 20 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 188205, + "thread": 11 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 325697, + "thread": 26 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 649257, + "thread": 12 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 759663, + "thread": 26 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 851013, + "thread": 16 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1097245, + "thread": 0 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1200104, + "thread": 23 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1410624, + "thread": 23 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1646925, + "thread": 0 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1792234, + "thread": 28 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 1826048, + "thread": 31 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2089689, + "thread": 3 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2251643, + "thread": 22 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2381816, + "thread": 22 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2466470, + "thread": 25 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2704504, + "thread": 17 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 2897485, + "thread": 24 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 3021365, + "thread": 5 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 3241813, + "thread": 19 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 3399957, + "thread": 24 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 3558638, + "thread": 23 + } + }, + { + "amount": "278.321483193", + "slot": { + "period": 3660621, + "thread": 16 + } + }, + { + "amount": "278.321483182", + "slot": { + "period": 3849898, + "thread": 0 + } + } + ], + "AU12W45DmLJ9169JuJKZ1YCNxvuEodC7UHG2Gg7BCxbJLRnKT4js7": [ + { + "amount": "95.402275020", + "slot": { + "period": 53324, + "thread": 28 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 273715, + "thread": 5 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 376296, + "thread": 9 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 631018, + "thread": 30 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 811370, + "thread": 20 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 971144, + "thread": 10 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1138901, + "thread": 26 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1213408, + "thread": 12 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1465246, + "thread": 9 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1517765, + "thread": 5 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1712610, + "thread": 13 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1927911, + "thread": 3 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 1987395, + "thread": 13 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 2233805, + "thread": 11 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 2406944, + "thread": 25 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 2606877, + "thread": 2 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 2772915, + "thread": 25 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 2884674, + "thread": 16 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 3097666, + "thread": 12 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 3194873, + "thread": 13 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 3361658, + "thread": 18 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 3535001, + "thread": 24 + } + }, + { + "amount": "95.402275020", + "slot": { + "period": 3694409, + "thread": 27 + } + }, + { + "amount": "95.402275021", + "slot": { + "period": 3899715, + "thread": 20 + } + } + ], + "AU12W4XnfYR93s3B9erVc4kEbeCYu4zaLtYsDRe6WyXrTZg93oArD": [ + { + "amount": "93.583736166", + "slot": { + "period": 10812, + "thread": 22 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 217977, + "thread": 25 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 369859, + "thread": 10 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 623247, + "thread": 11 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 696915, + "thread": 8 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 962251, + "thread": 17 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1069391, + "thread": 9 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1215211, + "thread": 2 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1342583, + "thread": 3 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1522191, + "thread": 22 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1669112, + "thread": 5 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 1854298, + "thread": 10 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2029361, + "thread": 0 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2279533, + "thread": 26 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2311915, + "thread": 23 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2510499, + "thread": 1 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2695773, + "thread": 10 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 2800702, + "thread": 31 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 3109196, + "thread": 24 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 3126413, + "thread": 30 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 3393256, + "thread": 6 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 3592375, + "thread": 15 + } + }, + { + "amount": "93.583736166", + "slot": { + "period": 3687539, + "thread": 25 + } + }, + { + "amount": "93.583736165", + "slot": { + "period": 3889049, + "thread": 10 + } + } + ], + "AU12W5hEGguQ7y4LYpdEVLFnvYgYWM3hjWmwFFAaZBMzrJve8dDKM": [ + { + "amount": "397.863772151", + "slot": { + "period": 58461, + "thread": 19 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 313756, + "thread": 16 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 363140, + "thread": 17 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 545268, + "thread": 11 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 791244, + "thread": 30 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 834080, + "thread": 17 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1119387, + "thread": 31 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1262930, + "thread": 16 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1358701, + "thread": 18 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1549564, + "thread": 22 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1728716, + "thread": 16 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 1898716, + "thread": 25 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2056343, + "thread": 14 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2229682, + "thread": 20 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2349869, + "thread": 22 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2501930, + "thread": 15 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2677816, + "thread": 21 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 2874144, + "thread": 3 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 3056852, + "thread": 7 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 3265749, + "thread": 30 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 3327228, + "thread": 9 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 3477449, + "thread": 23 + } + }, + { + "amount": "397.863772151", + "slot": { + "period": 3677432, + "thread": 20 + } + }, + { + "amount": "397.863772153", + "slot": { + "period": 3856341, + "thread": 21 + } + } + ], + "AU12W7k8hLYrcSTo3z1qq86rhQVBAs5ARJqRkogC1L1zfQAuyLeKN": [ + { + "amount": "135.721850324", + "slot": { + "period": 97200, + "thread": 0 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 288953, + "thread": 10 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 348331, + "thread": 25 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 555235, + "thread": 22 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 741870, + "thread": 17 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 856519, + "thread": 25 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 985017, + "thread": 27 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 1291937, + "thread": 11 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 1403866, + "thread": 14 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 1527673, + "thread": 1 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 1662428, + "thread": 3 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 1963692, + "thread": 31 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2022543, + "thread": 31 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2180543, + "thread": 19 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2444722, + "thread": 19 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2497049, + "thread": 20 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2729110, + "thread": 5 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 2861668, + "thread": 7 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 3095645, + "thread": 3 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 3152625, + "thread": 25 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 3404328, + "thread": 25 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 3601010, + "thread": 1 + } + }, + { + "amount": "135.721850324", + "slot": { + "period": 3775702, + "thread": 10 + } + }, + { + "amount": "135.721850328", + "slot": { + "period": 3887375, + "thread": 15 + } + } + ], + "AU12W7qdXqCWHAXuFem1Xnp4dXFwGy8qiGdP9eQHFYR7ynDUcWDrD": [ + { + "amount": "103.703947746", + "slot": { + "period": 46866, + "thread": 6 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 295613, + "thread": 25 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 465530, + "thread": 31 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 631080, + "thread": 1 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 804924, + "thread": 23 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 885127, + "thread": 31 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1007926, + "thread": 3 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1196297, + "thread": 9 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1389790, + "thread": 21 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1608787, + "thread": 12 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1798586, + "thread": 20 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 1860875, + "thread": 27 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2034380, + "thread": 16 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2213975, + "thread": 23 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2359200, + "thread": 13 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2612008, + "thread": 8 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2741030, + "thread": 7 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2840671, + "thread": 20 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 2974620, + "thread": 6 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 3173803, + "thread": 12 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 3360282, + "thread": 8 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 3587401, + "thread": 19 + } + }, + { + "amount": "103.703947746", + "slot": { + "period": 3673198, + "thread": 2 + } + }, + { + "amount": "103.703947758", + "slot": { + "period": 3855374, + "thread": 10 + } + } + ], + "AU12W7wbSpb3Y2G4qZh6HCnfakA6kwi9dq3gYbGi9TQ1DC2QWFN4w": [ + { + "amount": "78.122263122", + "slot": { + "period": 140834, + "thread": 18 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 211970, + "thread": 2 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 446096, + "thread": 6 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 549559, + "thread": 10 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 703255, + "thread": 31 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 899433, + "thread": 19 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1134694, + "thread": 30 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1267269, + "thread": 21 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1430213, + "thread": 18 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1594405, + "thread": 27 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1774274, + "thread": 17 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 1838956, + "thread": 2 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2140245, + "thread": 3 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2242332, + "thread": 16 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2421568, + "thread": 23 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2557903, + "thread": 27 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2721093, + "thread": 1 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 2942550, + "thread": 7 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 3026738, + "thread": 5 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 3279145, + "thread": 17 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 3386048, + "thread": 14 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 3473970, + "thread": 0 + } + }, + { + "amount": "78.122263122", + "slot": { + "period": 3618462, + "thread": 4 + } + }, + { + "amount": "78.122263123", + "slot": { + "period": 3830436, + "thread": 27 + } + } + ], + "AU12W8HV7CjGRzkk1nFZYQaubTKTny3emqkre9cUpy928ismttb71": [ + { + "amount": "127.051311706", + "slot": { + "period": 103711, + "thread": 29 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 196123, + "thread": 3 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 454291, + "thread": 25 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 641711, + "thread": 19 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 739233, + "thread": 15 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 822875, + "thread": 8 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1138832, + "thread": 20 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1158267, + "thread": 0 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1382771, + "thread": 9 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1567663, + "thread": 21 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1737734, + "thread": 28 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 1964257, + "thread": 24 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2061571, + "thread": 6 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2176129, + "thread": 0 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2340096, + "thread": 21 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2526172, + "thread": 4 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2633630, + "thread": 25 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 2845821, + "thread": 11 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 3036457, + "thread": 26 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 3158562, + "thread": 2 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 3323637, + "thread": 28 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 3487220, + "thread": 4 + } + }, + { + "amount": "127.051311706", + "slot": { + "period": 3720529, + "thread": 0 + } + }, + { + "amount": "127.051311696", + "slot": { + "period": 3911471, + "thread": 22 + } + } + ], + "AU12W8niNTHvyJDUW8y4nsydmrQore3GxrDrRygNDs7KjEXkZ6a3b": [ + { + "amount": "81.486897737", + "slot": { + "period": 109318, + "thread": 26 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 216771, + "thread": 20 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 410213, + "thread": 27 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 615428, + "thread": 17 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 672630, + "thread": 14 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 890927, + "thread": 25 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1118901, + "thread": 13 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1226972, + "thread": 12 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1338408, + "thread": 1 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1568756, + "thread": 25 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1740328, + "thread": 28 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 1861774, + "thread": 9 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2101832, + "thread": 27 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2292966, + "thread": 20 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2438865, + "thread": 24 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2524366, + "thread": 1 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2698312, + "thread": 30 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2888940, + "thread": 30 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 2972998, + "thread": 28 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 3153767, + "thread": 24 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 3348228, + "thread": 2 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 3504101, + "thread": 30 + } + }, + { + "amount": "81.486897737", + "slot": { + "period": 3734844, + "thread": 30 + } + }, + { + "amount": "81.486897741", + "slot": { + "period": 3906103, + "thread": 16 + } + } + ], + "AU12W9JgJ27hRqk3xAfE1UqREs3FohvJkTRTFKXbAeizyhme6cDvF": [ + { + "amount": "155.636064582", + "slot": { + "period": 17554, + "thread": 12 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 196898, + "thread": 21 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 489816, + "thread": 25 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 592758, + "thread": 24 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 693597, + "thread": 21 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 935891, + "thread": 21 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1148326, + "thread": 22 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1175658, + "thread": 15 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1430119, + "thread": 19 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1561260, + "thread": 24 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1763149, + "thread": 14 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1956313, + "thread": 16 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 1985282, + "thread": 8 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 2270272, + "thread": 18 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 2425746, + "thread": 31 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 2530757, + "thread": 5 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 2788283, + "thread": 29 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 2896123, + "thread": 2 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 3083901, + "thread": 17 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 3151032, + "thread": 21 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 3358395, + "thread": 29 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 3520870, + "thread": 28 + } + }, + { + "amount": "155.636064582", + "slot": { + "period": 3738376, + "thread": 20 + } + }, + { + "amount": "155.636064585", + "slot": { + "period": 3865231, + "thread": 7 + } + } + ], + "AU12W9VczF9GMdtg1kuxg1MJubsJacdY6h1UVkuuRLho4LT11xVJN": [ + { + "amount": "143.308313265", + "slot": { + "period": 70932, + "thread": 17 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 172003, + "thread": 3 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 408418, + "thread": 31 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 620206, + "thread": 1 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 777651, + "thread": 27 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 821413, + "thread": 8 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1075193, + "thread": 30 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1157275, + "thread": 29 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1407930, + "thread": 19 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1528151, + "thread": 8 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1713265, + "thread": 6 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 1955098, + "thread": 2 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2081322, + "thread": 26 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2242598, + "thread": 27 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2447678, + "thread": 9 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2469491, + "thread": 21 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2775419, + "thread": 1 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 2807754, + "thread": 5 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 3003730, + "thread": 24 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 3188490, + "thread": 12 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 3371615, + "thread": 22 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 3576911, + "thread": 19 + } + }, + { + "amount": "143.308313265", + "slot": { + "period": 3618838, + "thread": 9 + } + }, + { + "amount": "143.308313264", + "slot": { + "period": 3890890, + "thread": 20 + } + } + ], + "AU12W9aPBC4aCmUGYzSPmpWZtcPcWAGGGBfKz14KPcHecCy6TFCj6": [ + { + "amount": "162.182171573", + "slot": { + "period": 14320, + "thread": 3 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 315637, + "thread": 0 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 333970, + "thread": 21 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 580951, + "thread": 3 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 718882, + "thread": 23 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 850393, + "thread": 19 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1051475, + "thread": 25 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1287612, + "thread": 13 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1399131, + "thread": 1 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1631283, + "thread": 27 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1702680, + "thread": 13 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 1824165, + "thread": 2 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2067580, + "thread": 4 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2152226, + "thread": 15 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2309982, + "thread": 18 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2493439, + "thread": 4 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2646470, + "thread": 5 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2883015, + "thread": 11 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 2994630, + "thread": 20 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 3153696, + "thread": 29 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 3364781, + "thread": 20 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 3604712, + "thread": 16 + } + }, + { + "amount": "162.182171573", + "slot": { + "period": 3713686, + "thread": 9 + } + }, + { + "amount": "162.182171577", + "slot": { + "period": 3859455, + "thread": 27 + } + } + ], + "AU12W9mPrLBSFwRGSxMG3eqL8zV1dmULrwpdF9Bc1JUJgtJ8M2MUE": [ + { + "amount": "136.295367883", + "slot": { + "period": 86154, + "thread": 0 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 296835, + "thread": 5 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 372928, + "thread": 14 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 537599, + "thread": 0 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 722010, + "thread": 9 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 881855, + "thread": 22 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1082362, + "thread": 29 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1313925, + "thread": 27 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1344989, + "thread": 19 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1599557, + "thread": 20 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1699299, + "thread": 1 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 1821038, + "thread": 22 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2126509, + "thread": 4 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2174700, + "thread": 31 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2298933, + "thread": 11 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2570988, + "thread": 13 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2674826, + "thread": 29 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 2936308, + "thread": 28 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 3023080, + "thread": 10 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 3241714, + "thread": 13 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 3370724, + "thread": 9 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 3577160, + "thread": 24 + } + }, + { + "amount": "136.295367883", + "slot": { + "period": 3778469, + "thread": 13 + } + }, + { + "amount": "136.295367888", + "slot": { + "period": 3914957, + "thread": 22 + } + } + ], + "AU12WAE8rLSoeZMAp5AbkAREbAk5KqNnJEh3vyXHzi9GkafqpmCpR": [ + { + "amount": "574.882644606", + "slot": { + "period": 22463, + "thread": 19 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 219722, + "thread": 30 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 447902, + "thread": 13 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 567284, + "thread": 26 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 750539, + "thread": 28 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 889632, + "thread": 17 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1014461, + "thread": 30 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1169441, + "thread": 30 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1368817, + "thread": 15 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1552062, + "thread": 18 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1737356, + "thread": 8 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 1839931, + "thread": 26 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2123402, + "thread": 19 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2218538, + "thread": 28 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2312851, + "thread": 23 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2578938, + "thread": 31 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2704789, + "thread": 23 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2937948, + "thread": 22 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 2986206, + "thread": 17 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 3171790, + "thread": 15 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 3426062, + "thread": 26 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 3467165, + "thread": 30 + } + }, + { + "amount": "574.882644606", + "slot": { + "period": 3619733, + "thread": 13 + } + }, + { + "amount": "574.882644618", + "slot": { + "period": 3861412, + "thread": 5 + } + } + ], + "AU12WB3QCj1EHj5pgTRTkPfRArQoFaaiYVKTGu4UjoUPoUMSsHE1e": [ + { + "amount": "102.629441144", + "slot": { + "period": 118551, + "thread": 3 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 266954, + "thread": 17 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 356333, + "thread": 17 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 637655, + "thread": 5 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 759629, + "thread": 24 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 962165, + "thread": 0 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1002464, + "thread": 17 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1219330, + "thread": 25 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1411762, + "thread": 28 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1586657, + "thread": 16 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1742708, + "thread": 22 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 1866491, + "thread": 18 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2112669, + "thread": 12 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2157170, + "thread": 26 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2423774, + "thread": 26 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2617575, + "thread": 4 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2630131, + "thread": 2 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2815177, + "thread": 10 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 2963770, + "thread": 0 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 3191224, + "thread": 29 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 3320138, + "thread": 24 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 3514890, + "thread": 19 + } + }, + { + "amount": "102.629441144", + "slot": { + "period": 3647081, + "thread": 21 + } + }, + { + "amount": "102.629441137", + "slot": { + "period": 3886105, + "thread": 31 + } + } + ], + "AU12WDNyGJXsEdsPfEHCCRFZk1KeXdRpQSQxnE9poz8Pes456FCVE": [ + { + "amount": "100.756715560", + "slot": { + "period": 124300, + "thread": 6 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 206235, + "thread": 23 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 351585, + "thread": 12 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 638223, + "thread": 11 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 734764, + "thread": 0 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 837033, + "thread": 18 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1012276, + "thread": 2 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1178365, + "thread": 25 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1339008, + "thread": 17 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1555911, + "thread": 16 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1648576, + "thread": 0 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 1939173, + "thread": 31 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2020453, + "thread": 31 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2186650, + "thread": 26 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2455105, + "thread": 31 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2608931, + "thread": 9 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2785061, + "thread": 27 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 2939911, + "thread": 2 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 3034275, + "thread": 21 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 3260035, + "thread": 26 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 3379746, + "thread": 30 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 3499480, + "thread": 15 + } + }, + { + "amount": "100.756715560", + "slot": { + "period": 3636386, + "thread": 2 + } + }, + { + "amount": "100.756715557", + "slot": { + "period": 3863938, + "thread": 21 + } + } + ], + "AU12WDuoPcw5uzUVXb3VhipFpxXXaK26fxCG6aK3gzgTRjbkFNXxg": [ + { + "amount": "501.418100392", + "slot": { + "period": 47895, + "thread": 24 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 316779, + "thread": 4 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 341526, + "thread": 8 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 577761, + "thread": 20 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 799934, + "thread": 23 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 897463, + "thread": 30 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1007533, + "thread": 13 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1237253, + "thread": 6 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1345548, + "thread": 21 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1514171, + "thread": 16 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1667669, + "thread": 24 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 1827396, + "thread": 5 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2067609, + "thread": 9 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2234322, + "thread": 17 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2313412, + "thread": 23 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2497799, + "thread": 0 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2628311, + "thread": 26 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 2818261, + "thread": 11 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 3023093, + "thread": 20 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 3263885, + "thread": 5 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 3317766, + "thread": 5 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 3602850, + "thread": 5 + } + }, + { + "amount": "501.418100392", + "slot": { + "period": 3678736, + "thread": 19 + } + }, + { + "amount": "501.418100394", + "slot": { + "period": 3789204, + "thread": 13 + } + } + ], + "AU12WDxRjGmNU7oyEQ1tSuV3sqMEzAmbWhyuDcpCvXVdkiNWxHRaD": [ + { + "amount": "259.074611911", + "slot": { + "period": 55263, + "thread": 26 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 233763, + "thread": 17 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 442232, + "thread": 1 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 621764, + "thread": 10 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 796096, + "thread": 2 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 823567, + "thread": 14 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1056420, + "thread": 7 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1248330, + "thread": 18 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1354761, + "thread": 23 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1606276, + "thread": 23 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1770997, + "thread": 13 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 1897332, + "thread": 30 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2072993, + "thread": 28 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2272444, + "thread": 27 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2420631, + "thread": 24 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2534027, + "thread": 15 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2673657, + "thread": 6 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2863848, + "thread": 12 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 2970286, + "thread": 7 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 3212078, + "thread": 5 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 3329362, + "thread": 19 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 3550814, + "thread": 19 + } + }, + { + "amount": "259.074611911", + "slot": { + "period": 3621801, + "thread": 6 + } + }, + { + "amount": "259.074611901", + "slot": { + "period": 3885983, + "thread": 6 + } + } + ], + "AU12WE3qaHqcKTJYBLZwVQLqkWa54NK1UUHEZ7Qa5TfgJ1p31NEtU": [ + { + "amount": "168.588821428", + "slot": { + "period": 73344, + "thread": 6 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 170770, + "thread": 8 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 451677, + "thread": 11 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 628803, + "thread": 1 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 750141, + "thread": 25 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 827202, + "thread": 17 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1125723, + "thread": 7 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1209322, + "thread": 15 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1473097, + "thread": 15 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1503388, + "thread": 15 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1708681, + "thread": 24 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 1839077, + "thread": 13 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2034946, + "thread": 25 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2220857, + "thread": 17 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2376592, + "thread": 1 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2514916, + "thread": 21 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2744390, + "thread": 13 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2904944, + "thread": 22 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 2958672, + "thread": 3 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 3178375, + "thread": 2 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 3439410, + "thread": 6 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 3481609, + "thread": 12 + } + }, + { + "amount": "168.588821428", + "slot": { + "period": 3752160, + "thread": 23 + } + }, + { + "amount": "168.588821439", + "slot": { + "period": 3894794, + "thread": 19 + } + } + ], + "AU12WEUpdbapJRZZrUYjhW3M8o7H5M8VVRbAoozTTkkzeYvB8d74z": [ + { + "amount": "60.837967885", + "slot": { + "period": 35256, + "thread": 13 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 233042, + "thread": 27 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 381775, + "thread": 22 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 508234, + "thread": 25 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 700792, + "thread": 24 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 849853, + "thread": 7 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1092837, + "thread": 11 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1239952, + "thread": 23 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1407936, + "thread": 18 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1567995, + "thread": 14 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1683576, + "thread": 6 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1912899, + "thread": 25 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 1998238, + "thread": 2 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 2237553, + "thread": 13 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 2366875, + "thread": 30 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 2611895, + "thread": 12 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 2627407, + "thread": 24 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 2893098, + "thread": 12 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 3089993, + "thread": 19 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 3220438, + "thread": 7 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 3312130, + "thread": 28 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 3544559, + "thread": 4 + } + }, + { + "amount": "60.837967885", + "slot": { + "period": 3734640, + "thread": 27 + } + }, + { + "amount": "60.837967896", + "slot": { + "period": 3887308, + "thread": 24 + } + } + ], + "AU12WEzmWNG8WcEyvtHHux6p6WmgH16XZLrEVAyXp5EJrYQoQZkBr": [ + { + "amount": "105.039143001", + "slot": { + "period": 98178, + "thread": 26 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 286298, + "thread": 22 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 464600, + "thread": 16 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 557003, + "thread": 13 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 820066, + "thread": 25 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 882505, + "thread": 15 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1135476, + "thread": 22 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1171900, + "thread": 5 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1337276, + "thread": 31 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1544631, + "thread": 12 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1761107, + "thread": 31 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 1956045, + "thread": 13 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2137244, + "thread": 0 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2155114, + "thread": 22 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2434855, + "thread": 24 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2569511, + "thread": 12 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2677971, + "thread": 4 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 2871095, + "thread": 8 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3034195, + "thread": 17 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3250141, + "thread": 12 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3372581, + "thread": 30 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3548631, + "thread": 28 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3627942, + "thread": 28 + } + }, + { + "amount": "105.039143001", + "slot": { + "period": 3864824, + "thread": 3 + } + } + ], + "AU12WFeE3QCwzcjY8xWJ3yxXfCo5ydnaC8bMhY7bH39F2UYKx3LXQ": [ + { + "amount": "312.761864647", + "slot": { + "period": 119083, + "thread": 10 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 265629, + "thread": 6 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 335155, + "thread": 6 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 643631, + "thread": 18 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 809928, + "thread": 28 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 860575, + "thread": 14 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1039602, + "thread": 16 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1168115, + "thread": 27 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1372467, + "thread": 23 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1623767, + "thread": 13 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1665955, + "thread": 17 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 1940800, + "thread": 13 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2073949, + "thread": 31 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2196294, + "thread": 18 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2451293, + "thread": 20 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2505071, + "thread": 6 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2766680, + "thread": 4 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 2792965, + "thread": 5 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 3031539, + "thread": 26 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 3275205, + "thread": 24 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 3359172, + "thread": 26 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 3528613, + "thread": 6 + } + }, + { + "amount": "312.761864647", + "slot": { + "period": 3631896, + "thread": 1 + } + }, + { + "amount": "312.761864648", + "slot": { + "period": 3902828, + "thread": 1 + } + } + ], + "AU12WGNzRkHAT6e6mWTBSDuVKaunNRxJuFkvfhFYN1LhxtsMNzV6P": [ + { + "amount": "131.867504235", + "slot": { + "period": 79796, + "thread": 3 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 226337, + "thread": 28 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 382305, + "thread": 14 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 651715, + "thread": 19 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 653454, + "thread": 29 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 891264, + "thread": 20 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1038741, + "thread": 1 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1217389, + "thread": 24 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1327265, + "thread": 30 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1609235, + "thread": 26 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1701133, + "thread": 21 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 1843571, + "thread": 8 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2082655, + "thread": 9 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2262897, + "thread": 10 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2414503, + "thread": 8 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2563435, + "thread": 2 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2730564, + "thread": 16 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 2869821, + "thread": 9 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3079246, + "thread": 21 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3185135, + "thread": 22 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3333331, + "thread": 4 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3505718, + "thread": 31 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3733363, + "thread": 28 + } + }, + { + "amount": "131.867504235", + "slot": { + "period": 3920829, + "thread": 1 + } + } + ], + "AU12WH3ehAtF4wwRsjTMviiMpi2V3RU5NpjFcgoProiMfjxPnADUB": [ + { + "amount": "139.200134765", + "slot": { + "period": 99565, + "thread": 1 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 214819, + "thread": 16 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 477703, + "thread": 1 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 597607, + "thread": 3 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 738536, + "thread": 31 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 930193, + "thread": 10 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1079890, + "thread": 14 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1266543, + "thread": 15 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1391423, + "thread": 28 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1637743, + "thread": 8 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1757710, + "thread": 3 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 1931143, + "thread": 5 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2135065, + "thread": 20 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2177618, + "thread": 1 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2316124, + "thread": 0 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2603969, + "thread": 16 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2687002, + "thread": 21 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 2858503, + "thread": 20 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 3059553, + "thread": 12 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 3263628, + "thread": 15 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 3346296, + "thread": 20 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 3602221, + "thread": 4 + } + }, + { + "amount": "139.200134765", + "slot": { + "period": 3635410, + "thread": 13 + } + }, + { + "amount": "139.200134772", + "slot": { + "period": 3864155, + "thread": 3 + } + } + ], + "AU12WJSS2xRjptj27a46xaGvv4hksMMeM6U98XChgW99j8ptdzKPi": [ + { + "amount": "118.584432867", + "slot": { + "period": 135214, + "thread": 6 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 223786, + "thread": 6 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 412004, + "thread": 5 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 516194, + "thread": 14 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 816395, + "thread": 11 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 821795, + "thread": 19 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1131982, + "thread": 20 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1216226, + "thread": 29 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1336131, + "thread": 1 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1637216, + "thread": 1 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1692594, + "thread": 2 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 1859627, + "thread": 31 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2136626, + "thread": 11 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2177139, + "thread": 28 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2437461, + "thread": 6 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2572079, + "thread": 6 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2686143, + "thread": 19 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2821294, + "thread": 26 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 2990373, + "thread": 16 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 3161337, + "thread": 1 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 3322843, + "thread": 11 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 3529837, + "thread": 27 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 3725663, + "thread": 29 + } + }, + { + "amount": "118.584432867", + "slot": { + "period": 3837601, + "thread": 13 + } + } + ], + "AU12WJs32VczhKvdctStbs5pqTXWyurt7ejCaxGovQSCoUxySASdf": [ + { + "amount": "238.111946687", + "slot": { + "period": 112271, + "thread": 26 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 314605, + "thread": 20 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 387780, + "thread": 25 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 557100, + "thread": 13 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 757915, + "thread": 11 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 915778, + "thread": 7 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1025009, + "thread": 26 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1209759, + "thread": 29 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1424160, + "thread": 14 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1629634, + "thread": 28 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1681734, + "thread": 22 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 1944148, + "thread": 21 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2020335, + "thread": 1 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2233817, + "thread": 15 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2319276, + "thread": 26 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2493911, + "thread": 3 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2740957, + "thread": 19 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 2794476, + "thread": 23 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 3062704, + "thread": 26 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 3231720, + "thread": 3 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 3404196, + "thread": 10 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 3501662, + "thread": 26 + } + }, + { + "amount": "238.111946687", + "slot": { + "period": 3691919, + "thread": 3 + } + }, + { + "amount": "238.111946678", + "slot": { + "period": 3829071, + "thread": 7 + } + } + ], + "AU12WJvnuoSAW2WheqjWaF2mG2zumGtMXdJvf38KjkcGeUe7zmYrc": [ + { + "amount": "278.610003889", + "slot": { + "period": 156423, + "thread": 7 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 185293, + "thread": 19 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 465398, + "thread": 20 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 495840, + "thread": 6 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 788542, + "thread": 19 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 926798, + "thread": 20 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1081413, + "thread": 21 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1222482, + "thread": 30 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1394895, + "thread": 9 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1564953, + "thread": 29 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1682182, + "thread": 21 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 1899985, + "thread": 2 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2135686, + "thread": 10 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2144096, + "thread": 18 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2383202, + "thread": 12 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2510142, + "thread": 31 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2654702, + "thread": 14 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 2913155, + "thread": 2 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 3056352, + "thread": 11 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 3285353, + "thread": 14 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 3318596, + "thread": 9 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 3471057, + "thread": 23 + } + }, + { + "amount": "278.610003889", + "slot": { + "period": 3677892, + "thread": 13 + } + }, + { + "amount": "278.610003878", + "slot": { + "period": 3853301, + "thread": 7 + } + } + ], + "AU12WLAsfT2pc8WPxZA5Mxu69aji29onBB36fkoTvjm9LRsWZ52ny": [ + { + "amount": "328.066805568", + "slot": { + "period": 31851, + "thread": 6 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 243328, + "thread": 5 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 381602, + "thread": 28 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 592283, + "thread": 13 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 677735, + "thread": 18 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 870301, + "thread": 15 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1118646, + "thread": 28 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1252869, + "thread": 22 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1341740, + "thread": 10 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1621416, + "thread": 10 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1648331, + "thread": 8 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 1845238, + "thread": 3 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2034957, + "thread": 26 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2182806, + "thread": 1 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2353261, + "thread": 12 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2475291, + "thread": 6 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2705062, + "thread": 19 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 2814587, + "thread": 9 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 3007503, + "thread": 18 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 3144074, + "thread": 22 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 3303386, + "thread": 18 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 3492629, + "thread": 31 + } + }, + { + "amount": "328.066805568", + "slot": { + "period": 3688969, + "thread": 6 + } + }, + { + "amount": "328.066805575", + "slot": { + "period": 3880536, + "thread": 2 + } + } + ], + "AU12WLeEzQ5k8zV3MnGThx8gtXq8LGfMXzdDFEcTEwjmKhnEwqJ1b": [ + { + "amount": "56.165461257", + "slot": { + "period": 144766, + "thread": 11 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 247132, + "thread": 8 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 460406, + "thread": 6 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 640251, + "thread": 4 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 792192, + "thread": 18 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 877247, + "thread": 16 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 994335, + "thread": 1 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1254333, + "thread": 10 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1474241, + "thread": 15 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1615492, + "thread": 13 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1650764, + "thread": 5 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1924717, + "thread": 19 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 1981128, + "thread": 25 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 2190422, + "thread": 30 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 2305342, + "thread": 13 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 2552362, + "thread": 10 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 2671518, + "thread": 23 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 2865294, + "thread": 2 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 3017233, + "thread": 18 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 3135852, + "thread": 26 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 3350865, + "thread": 25 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 3530354, + "thread": 1 + } + }, + { + "amount": "56.165461257", + "slot": { + "period": 3690813, + "thread": 13 + } + }, + { + "amount": "56.165461258", + "slot": { + "period": 3824415, + "thread": 11 + } + } + ], + "AU12WMALSYLvo8nXQ3nUV6x3vSa6ViDbdKVKZkJPnKTZVhLcYetTm": [ + { + "amount": "183.354444123", + "slot": { + "period": 16343, + "thread": 0 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 247400, + "thread": 6 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 426748, + "thread": 2 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 496377, + "thread": 7 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 654020, + "thread": 0 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 913645, + "thread": 23 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1142774, + "thread": 9 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1278044, + "thread": 19 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1445395, + "thread": 15 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1552191, + "thread": 26 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1778149, + "thread": 16 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 1928664, + "thread": 10 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2033331, + "thread": 11 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2213768, + "thread": 17 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2344719, + "thread": 14 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2546301, + "thread": 8 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2655502, + "thread": 21 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 2928104, + "thread": 1 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 3069834, + "thread": 15 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 3247140, + "thread": 30 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 3299834, + "thread": 25 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 3525253, + "thread": 15 + } + }, + { + "amount": "183.354444123", + "slot": { + "period": 3778515, + "thread": 18 + } + }, + { + "amount": "183.354444131", + "slot": { + "period": 3802783, + "thread": 22 + } + } + ], + "AU12WNhDrtSurSKjDHSFR8e7tavyHfqVEPdg7bDmmMeR767xah6X1": [ + { + "amount": "503.625891343", + "slot": { + "period": 38168, + "thread": 6 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 177649, + "thread": 4 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 385009, + "thread": 2 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 612321, + "thread": 26 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 801215, + "thread": 28 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 979006, + "thread": 16 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1094695, + "thread": 3 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1228481, + "thread": 26 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1387858, + "thread": 3 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1561603, + "thread": 14 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1647038, + "thread": 22 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 1829566, + "thread": 4 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2099839, + "thread": 30 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2173449, + "thread": 13 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2329344, + "thread": 28 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2518412, + "thread": 15 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2764920, + "thread": 13 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2901789, + "thread": 4 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 2970424, + "thread": 3 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 3169139, + "thread": 2 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 3323732, + "thread": 15 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 3568285, + "thread": 8 + } + }, + { + "amount": "503.625891343", + "slot": { + "period": 3769996, + "thread": 21 + } + }, + { + "amount": "503.625891350", + "slot": { + "period": 3930713, + "thread": 8 + } + } + ], + "AU12WNkPv3o13B9Shx8nddz3iJoXHqpLdL9frDXTZ67RN9gqBHjTU": [ + { + "amount": "170.073769156", + "slot": { + "period": 43474, + "thread": 11 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 246420, + "thread": 29 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 455709, + "thread": 6 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 536606, + "thread": 6 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 657057, + "thread": 9 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 954559, + "thread": 27 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1073240, + "thread": 14 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1163551, + "thread": 22 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1430623, + "thread": 12 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1591519, + "thread": 13 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1668610, + "thread": 29 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1868629, + "thread": 12 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 1999761, + "thread": 4 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 2217247, + "thread": 8 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 2302484, + "thread": 24 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 2610326, + "thread": 3 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 2647171, + "thread": 11 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 2839456, + "thread": 19 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 3111340, + "thread": 11 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 3240405, + "thread": 13 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 3395521, + "thread": 24 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 3483867, + "thread": 11 + } + }, + { + "amount": "170.073769156", + "slot": { + "period": 3778105, + "thread": 23 + } + }, + { + "amount": "170.073769145", + "slot": { + "period": 3824776, + "thread": 15 + } + } + ], + "AU12WNrgMpTJECWcQQ2V71HYSynKn5uUJE71PGF22gzP52jmuV68g": [ + { + "amount": "140.467580137", + "slot": { + "period": 158140, + "thread": 8 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 313178, + "thread": 7 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 414238, + "thread": 9 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 511724, + "thread": 28 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 744483, + "thread": 28 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 918693, + "thread": 20 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 988585, + "thread": 15 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 1291214, + "thread": 29 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 1387314, + "thread": 28 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 1484013, + "thread": 15 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 1745890, + "thread": 22 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 1838076, + "thread": 17 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2047563, + "thread": 29 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2279532, + "thread": 4 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2372865, + "thread": 21 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2566408, + "thread": 3 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2670465, + "thread": 23 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 2866721, + "thread": 31 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 3060029, + "thread": 5 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 3269800, + "thread": 9 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 3434593, + "thread": 31 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 3479662, + "thread": 27 + } + }, + { + "amount": "140.467580137", + "slot": { + "period": 3670350, + "thread": 6 + } + }, + { + "amount": "140.467580143", + "slot": { + "period": 3906565, + "thread": 24 + } + } + ], + "AU12WPJJUKovLik1KcNTPg5u42nwf7u2uxxr1YupeZEAXF6f1mos5": [ + { + "amount": "285.433268356", + "slot": { + "period": 77965, + "thread": 16 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 241849, + "thread": 19 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 361712, + "thread": 9 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 587274, + "thread": 24 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 810247, + "thread": 23 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 890851, + "thread": 29 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1130470, + "thread": 11 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1291255, + "thread": 16 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1473005, + "thread": 15 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1638418, + "thread": 2 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1666955, + "thread": 28 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 1934829, + "thread": 13 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2047170, + "thread": 26 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2274403, + "thread": 0 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2443409, + "thread": 3 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2484478, + "thread": 20 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2752008, + "thread": 8 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 2943677, + "thread": 27 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 3036672, + "thread": 14 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 3156929, + "thread": 20 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 3315804, + "thread": 29 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 3515582, + "thread": 24 + } + }, + { + "amount": "285.433268356", + "slot": { + "period": 3674681, + "thread": 30 + } + }, + { + "amount": "285.433268368", + "slot": { + "period": 3908186, + "thread": 13 + } + } + ], + "AU12WPZHuzJBkUy7nM7eTBK6CRaV6iH5tBmfjuggN75Rz4X19pe8X": [ + { + "amount": "165.519512440", + "slot": { + "period": 73160, + "thread": 15 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 219026, + "thread": 12 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 413020, + "thread": 12 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 493727, + "thread": 31 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 769826, + "thread": 27 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 884828, + "thread": 24 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1117990, + "thread": 16 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1293956, + "thread": 13 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1362467, + "thread": 26 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1590704, + "thread": 14 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1719250, + "thread": 22 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 1907844, + "thread": 27 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2138038, + "thread": 22 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2162291, + "thread": 27 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2394301, + "thread": 12 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2490347, + "thread": 6 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2646548, + "thread": 6 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 2869474, + "thread": 13 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 3003958, + "thread": 12 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 3267097, + "thread": 15 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 3304759, + "thread": 4 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 3592641, + "thread": 24 + } + }, + { + "amount": "165.519512440", + "slot": { + "period": 3721135, + "thread": 29 + } + }, + { + "amount": "165.519512432", + "slot": { + "period": 3862534, + "thread": 7 + } + } + ], + "AU12WQqqhwxboJS3J5yxwE6giZw9uuqHGjRqzET2puNFTrUMNXz5k": [ + { + "amount": "123.073101705", + "slot": { + "period": 151263, + "thread": 17 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 294159, + "thread": 10 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 414640, + "thread": 6 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 619113, + "thread": 1 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 727285, + "thread": 17 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 945293, + "thread": 14 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1007767, + "thread": 9 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1220319, + "thread": 13 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1427468, + "thread": 19 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1503443, + "thread": 5 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1780082, + "thread": 15 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 1888493, + "thread": 24 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2104567, + "thread": 17 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2192283, + "thread": 10 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2408334, + "thread": 31 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2589917, + "thread": 14 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2694064, + "thread": 16 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 2823880, + "thread": 24 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 3096949, + "thread": 23 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 3135248, + "thread": 6 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 3409170, + "thread": 14 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 3451999, + "thread": 7 + } + }, + { + "amount": "123.073101705", + "slot": { + "period": 3744487, + "thread": 26 + } + }, + { + "amount": "123.073101694", + "slot": { + "period": 3871024, + "thread": 27 + } + } + ], + "AU12WR4PBEVh4LgEKwsZXHzHFL61fMvRrDSmPGeqNUiULkWd1iDsB": [ + { + "amount": "530.932295079", + "slot": { + "period": 20131, + "thread": 1 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 189517, + "thread": 0 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 381036, + "thread": 9 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 546967, + "thread": 24 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 741297, + "thread": 17 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 927159, + "thread": 2 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1016588, + "thread": 11 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1282750, + "thread": 30 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1332640, + "thread": 26 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1609233, + "thread": 27 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1723730, + "thread": 24 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 1879196, + "thread": 30 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2062068, + "thread": 4 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2188948, + "thread": 11 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2459814, + "thread": 28 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2573549, + "thread": 17 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2669374, + "thread": 14 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2937481, + "thread": 9 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 2985110, + "thread": 12 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 3176943, + "thread": 13 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 3324718, + "thread": 15 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 3523371, + "thread": 21 + } + }, + { + "amount": "530.932295079", + "slot": { + "period": 3709073, + "thread": 8 + } + }, + { + "amount": "530.932295080", + "slot": { + "period": 3807493, + "thread": 6 + } + } + ], + "AU12WR6CLL3M3TWjamH1Y39Ur2i8Rq8guFy3AKZCoarUCHrghzot8": [ + { + "amount": "65.764257417", + "slot": { + "period": 21567, + "thread": 31 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 172093, + "thread": 6 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 390235, + "thread": 30 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 523757, + "thread": 16 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 803470, + "thread": 16 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 974540, + "thread": 28 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1046957, + "thread": 1 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1242103, + "thread": 25 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1373577, + "thread": 19 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1609924, + "thread": 19 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1708924, + "thread": 14 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 1973084, + "thread": 17 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2099821, + "thread": 13 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2193140, + "thread": 12 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2405877, + "thread": 14 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2574079, + "thread": 21 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2746839, + "thread": 6 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 2839933, + "thread": 1 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 3109176, + "thread": 9 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 3200598, + "thread": 26 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 3289540, + "thread": 1 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 3567308, + "thread": 2 + } + }, + { + "amount": "65.764257417", + "slot": { + "period": 3647682, + "thread": 13 + } + }, + { + "amount": "65.764257422", + "slot": { + "period": 3837332, + "thread": 4 + } + } + ], + "AU12WRS4QVGriLvnWfopfGGetRNu5obusTmoSTtH2imQDwPuBHD64": [ + { + "amount": "69.100884832", + "slot": { + "period": 117528, + "thread": 21 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 259610, + "thread": 22 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 421144, + "thread": 11 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 637828, + "thread": 20 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 673863, + "thread": 13 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 950621, + "thread": 20 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1085694, + "thread": 17 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1249300, + "thread": 5 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1420941, + "thread": 8 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1628862, + "thread": 11 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1688633, + "thread": 4 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 1877717, + "thread": 6 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2061620, + "thread": 2 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2260308, + "thread": 1 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2448293, + "thread": 6 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2601017, + "thread": 13 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2705362, + "thread": 17 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 2796342, + "thread": 28 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 3072131, + "thread": 4 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 3162453, + "thread": 8 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 3401361, + "thread": 4 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 3566268, + "thread": 6 + } + }, + { + "amount": "69.100884832", + "slot": { + "period": 3741297, + "thread": 20 + } + }, + { + "amount": "69.100884829", + "slot": { + "period": 3823521, + "thread": 18 + } + } + ], + "AU12WRoHkNzpvGkZ2rwnyHKGfDtmhS6yxfVKRUHhKXuHBydefSKNN": [ + { + "amount": "100.226941161", + "slot": { + "period": 50378, + "thread": 3 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 277631, + "thread": 8 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 424296, + "thread": 8 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 611486, + "thread": 13 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 785654, + "thread": 11 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 893111, + "thread": 26 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1133265, + "thread": 18 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1178460, + "thread": 10 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1365330, + "thread": 8 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1542097, + "thread": 18 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1737360, + "thread": 9 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 1855815, + "thread": 6 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2069945, + "thread": 16 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2181913, + "thread": 20 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2441896, + "thread": 27 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2532824, + "thread": 18 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2678299, + "thread": 14 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2812840, + "thread": 7 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 2995357, + "thread": 27 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 3164867, + "thread": 14 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 3295052, + "thread": 12 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 3617995, + "thread": 18 + } + }, + { + "amount": "100.226941161", + "slot": { + "period": 3675653, + "thread": 5 + } + }, + { + "amount": "100.226941153", + "slot": { + "period": 3788879, + "thread": 24 + } + } + ], + "AU12WS3GsHnGPXdhm8233Z6zNo2136CcxZdmrkedYFeVcbdqGaqsr": [ + { + "amount": "145.289897896", + "slot": { + "period": 126218, + "thread": 20 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 232827, + "thread": 21 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 432702, + "thread": 17 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 562281, + "thread": 27 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 704630, + "thread": 2 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 821149, + "thread": 1 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1006533, + "thread": 5 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1150272, + "thread": 1 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1396393, + "thread": 12 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1595261, + "thread": 15 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1743908, + "thread": 9 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 1903388, + "thread": 19 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2095985, + "thread": 25 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2179145, + "thread": 12 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2380276, + "thread": 6 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2546409, + "thread": 2 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2667962, + "thread": 28 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2867850, + "thread": 10 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 2970250, + "thread": 22 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 3126227, + "thread": 17 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 3383037, + "thread": 17 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 3603847, + "thread": 25 + } + }, + { + "amount": "145.289897896", + "slot": { + "period": 3651360, + "thread": 11 + } + }, + { + "amount": "145.289897886", + "slot": { + "period": 3874505, + "thread": 21 + } + } + ], + "AU12WSMjcQAxZtZRXoAz8zL9kB4uGhezfUSKmgh7fawRDtTPum2EJ": [ + { + "amount": "317.029472223", + "slot": { + "period": 138845, + "thread": 30 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 243142, + "thread": 0 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 393038, + "thread": 3 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 637725, + "thread": 25 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 788594, + "thread": 17 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 870992, + "thread": 12 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 989176, + "thread": 5 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 1312450, + "thread": 19 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 1410104, + "thread": 25 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 1638971, + "thread": 25 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 1659432, + "thread": 24 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 1858571, + "thread": 20 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2076848, + "thread": 7 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2245169, + "thread": 16 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2387177, + "thread": 30 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2507508, + "thread": 13 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2679677, + "thread": 8 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2858661, + "thread": 3 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 2992091, + "thread": 2 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 3192574, + "thread": 17 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 3408620, + "thread": 30 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 3550355, + "thread": 13 + } + }, + { + "amount": "317.029472223", + "slot": { + "period": 3664029, + "thread": 11 + } + }, + { + "amount": "317.029472224", + "slot": { + "period": 3923040, + "thread": 2 + } + } + ], + "AU12WSW6J3jpw92R5Qd8LRFed9ue94QhLy39ndy1ereJEZxWhspy8": [ + { + "amount": "285.206529982", + "slot": { + "period": 137111, + "thread": 23 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 234016, + "thread": 26 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 406279, + "thread": 31 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 502429, + "thread": 15 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 669649, + "thread": 26 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 821901, + "thread": 19 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1031623, + "thread": 11 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1200099, + "thread": 4 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1368842, + "thread": 14 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1532591, + "thread": 8 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1652029, + "thread": 7 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 1849421, + "thread": 4 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2011657, + "thread": 7 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2193573, + "thread": 27 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2369526, + "thread": 14 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2612921, + "thread": 7 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2683512, + "thread": 19 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2797680, + "thread": 8 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 2973922, + "thread": 6 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 3230687, + "thread": 6 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 3390521, + "thread": 26 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 3511257, + "thread": 19 + } + }, + { + "amount": "285.206529982", + "slot": { + "period": 3692866, + "thread": 22 + } + }, + { + "amount": "285.206529986", + "slot": { + "period": 3850092, + "thread": 25 + } + } + ], + "AU12WTc663ZcJL5g2s5h7PhsxSJrh4NKiC4om6xp4vjbzwxqWokX6": [ + { + "amount": "150.983490988", + "slot": { + "period": 33565, + "thread": 20 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 194202, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 385328, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 643123, + "thread": 13 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 679887, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 838044, + "thread": 22 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1137820, + "thread": 18 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1190929, + "thread": 3 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1334413, + "thread": 7 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1569593, + "thread": 25 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1669152, + "thread": 18 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 1881614, + "thread": 19 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2135715, + "thread": 30 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2189010, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2410667, + "thread": 8 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2506407, + "thread": 23 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2736174, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 2904170, + "thread": 30 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 3079943, + "thread": 13 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 3223474, + "thread": 19 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 3317227, + "thread": 29 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 3509129, + "thread": 15 + } + }, + { + "amount": "150.983490988", + "slot": { + "period": 3747600, + "thread": 15 + } + }, + { + "amount": "150.983490979", + "slot": { + "period": 3833454, + "thread": 27 + } + } + ], + "AU12WTzrTDUAHzNoUSrJXMiaUhKN9hyGCq2sQndaqpBCgNcj3mc5S": [ + { + "amount": "159.615455494", + "slot": { + "period": 87756, + "thread": 7 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 168690, + "thread": 13 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 379423, + "thread": 31 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 515226, + "thread": 29 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 700131, + "thread": 29 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 895090, + "thread": 1 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1149515, + "thread": 18 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1306076, + "thread": 31 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1405843, + "thread": 27 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1489072, + "thread": 14 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1684753, + "thread": 26 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1949357, + "thread": 20 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 1996449, + "thread": 4 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 2233559, + "thread": 15 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 2342380, + "thread": 13 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 2490137, + "thread": 7 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 2762713, + "thread": 1 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 2935171, + "thread": 0 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 3118218, + "thread": 20 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 3152102, + "thread": 22 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 3371730, + "thread": 6 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 3580297, + "thread": 27 + } + }, + { + "amount": "159.615455494", + "slot": { + "period": 3688726, + "thread": 26 + } + }, + { + "amount": "159.615455495", + "slot": { + "period": 3938891, + "thread": 19 + } + } + ], + "AU12WU1aZW3D9Pe48PtNbm7g8EPUwVL6AWq79EsLJwFfoBesXo9bV": [ + { + "amount": "241.018223580", + "slot": { + "period": 59449, + "thread": 18 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 249924, + "thread": 5 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 340647, + "thread": 7 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 649775, + "thread": 26 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 707570, + "thread": 0 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 920262, + "thread": 28 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1054748, + "thread": 5 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1301430, + "thread": 12 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1425336, + "thread": 5 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1523809, + "thread": 22 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1765180, + "thread": 7 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 1884906, + "thread": 26 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2133378, + "thread": 16 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2169135, + "thread": 28 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2310275, + "thread": 14 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2492209, + "thread": 23 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2733850, + "thread": 28 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2928926, + "thread": 2 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 2982495, + "thread": 10 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 3273459, + "thread": 8 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 3318435, + "thread": 20 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 3572804, + "thread": 2 + } + }, + { + "amount": "241.018223580", + "slot": { + "period": 3744321, + "thread": 28 + } + }, + { + "amount": "241.018223579", + "slot": { + "period": 3924746, + "thread": 24 + } + } + ], + "AU12WUD4Ni5AUjuMGtfJLfkDHjzXXwkPHBwAKpbdvzj7LCMo57oqJ": [ + { + "amount": "84.782646367", + "slot": { + "period": 81860, + "thread": 31 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 198129, + "thread": 26 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 438905, + "thread": 18 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 638661, + "thread": 27 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 778326, + "thread": 17 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 853941, + "thread": 8 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1022383, + "thread": 20 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1307299, + "thread": 19 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1383565, + "thread": 31 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1629424, + "thread": 31 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1740427, + "thread": 1 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 1840573, + "thread": 0 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2068137, + "thread": 12 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2179381, + "thread": 2 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2350012, + "thread": 26 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2569053, + "thread": 29 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2656080, + "thread": 12 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2942385, + "thread": 10 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 2991034, + "thread": 9 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 3175244, + "thread": 10 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 3354417, + "thread": 2 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 3533668, + "thread": 13 + } + }, + { + "amount": "84.782646367", + "slot": { + "period": 3715917, + "thread": 6 + } + }, + { + "amount": "84.782646364", + "slot": { + "period": 3855709, + "thread": 25 + } + } + ], + "AU12WUokEBgSWBXFVgvxfxpXo4eSytYKMYnMmdZCZFtuuitn95MLH": [ + { + "amount": "375.710497024", + "slot": { + "period": 127245, + "thread": 8 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 168171, + "thread": 12 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 336255, + "thread": 1 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 618681, + "thread": 20 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 779641, + "thread": 30 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 948263, + "thread": 9 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1113131, + "thread": 11 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1250535, + "thread": 14 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1417820, + "thread": 12 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1550359, + "thread": 5 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1705430, + "thread": 6 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 1860039, + "thread": 20 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2128093, + "thread": 24 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2243417, + "thread": 28 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2306820, + "thread": 20 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2472827, + "thread": 15 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2715707, + "thread": 0 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 2852105, + "thread": 6 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 3031600, + "thread": 6 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 3232655, + "thread": 23 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 3435155, + "thread": 19 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 3502146, + "thread": 8 + } + }, + { + "amount": "375.710497024", + "slot": { + "period": 3705260, + "thread": 9 + } + }, + { + "amount": "375.710497034", + "slot": { + "period": 3835668, + "thread": 12 + } + } + ], + "AU12WUwfvVsu5bh8i1SM3YT5hVcaX86wynn9dgjegccTNdDE9qUyK": [ + { + "amount": "113.920646158", + "slot": { + "period": 86950, + "thread": 5 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 289126, + "thread": 3 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 334103, + "thread": 24 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 534542, + "thread": 14 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 774496, + "thread": 28 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 967702, + "thread": 25 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1110736, + "thread": 28 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1266481, + "thread": 9 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1343362, + "thread": 8 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1515968, + "thread": 12 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1660083, + "thread": 4 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 1929921, + "thread": 14 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2061132, + "thread": 12 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2176592, + "thread": 30 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2368817, + "thread": 13 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2607798, + "thread": 19 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2774770, + "thread": 15 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 2953381, + "thread": 18 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 3078839, + "thread": 9 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 3194349, + "thread": 10 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 3402988, + "thread": 24 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 3585255, + "thread": 15 + } + }, + { + "amount": "113.920646158", + "slot": { + "period": 3647241, + "thread": 15 + } + }, + { + "amount": "113.920646164", + "slot": { + "period": 3849484, + "thread": 9 + } + } + ], + "AU12WVURgRsLDzF8g2qrvrZVCdPHALHgreZoyY8yp5kLxFtfcf1sw": [ + { + "amount": "71.886744531", + "slot": { + "period": 160528, + "thread": 13 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 196553, + "thread": 3 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 366644, + "thread": 15 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 622570, + "thread": 17 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 660786, + "thread": 18 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 936483, + "thread": 14 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1085650, + "thread": 5 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1159366, + "thread": 5 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1372275, + "thread": 20 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1594267, + "thread": 27 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1784029, + "thread": 30 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 1967683, + "thread": 4 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2052059, + "thread": 7 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2259896, + "thread": 19 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2330094, + "thread": 24 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2604540, + "thread": 9 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2653344, + "thread": 8 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 2918662, + "thread": 19 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 3091136, + "thread": 26 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 3129152, + "thread": 28 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 3444182, + "thread": 31 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 3574770, + "thread": 1 + } + }, + { + "amount": "71.886744531", + "slot": { + "period": 3741439, + "thread": 29 + } + }, + { + "amount": "71.886744532", + "slot": { + "period": 3862248, + "thread": 5 + } + } + ], + "AU12WVUfNRaxfPJfSbnrM7pRjgKeYDuf4cub6Ap1NK8xezybvZQ8y": [ + { + "amount": "171.777900337", + "slot": { + "period": 42658, + "thread": 24 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 263955, + "thread": 31 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 358371, + "thread": 17 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 505247, + "thread": 7 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 669539, + "thread": 11 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 832225, + "thread": 16 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1038214, + "thread": 17 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1248117, + "thread": 26 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1400781, + "thread": 5 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1529713, + "thread": 31 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1700478, + "thread": 23 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 1820874, + "thread": 29 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2070460, + "thread": 6 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2233114, + "thread": 27 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2417018, + "thread": 29 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2618226, + "thread": 27 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2663241, + "thread": 6 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2920232, + "thread": 3 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 2989249, + "thread": 25 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 3254295, + "thread": 13 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 3390361, + "thread": 20 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 3602473, + "thread": 16 + } + }, + { + "amount": "171.777900337", + "slot": { + "period": 3686303, + "thread": 4 + } + }, + { + "amount": "171.777900334", + "slot": { + "period": 3904771, + "thread": 9 + } + } + ], + "AU12WYfDcfT2vs2w6cNLHyeppVLfLR16pCMc6UCmrjsA2qDjKwUfB": [ + { + "amount": "212.656617464", + "slot": { + "period": 102467, + "thread": 16 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 266569, + "thread": 16 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 324252, + "thread": 0 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 542114, + "thread": 14 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 817839, + "thread": 14 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 828903, + "thread": 26 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1020089, + "thread": 29 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1264399, + "thread": 15 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1445948, + "thread": 0 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1523393, + "thread": 16 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1713954, + "thread": 17 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 1967220, + "thread": 22 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2027107, + "thread": 30 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2203417, + "thread": 14 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2408358, + "thread": 4 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2527561, + "thread": 29 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2752398, + "thread": 2 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2945112, + "thread": 2 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 2980907, + "thread": 29 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 3155343, + "thread": 6 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 3379551, + "thread": 7 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 3548768, + "thread": 12 + } + }, + { + "amount": "212.656617464", + "slot": { + "period": 3668798, + "thread": 11 + } + }, + { + "amount": "212.656617463", + "slot": { + "period": 3858659, + "thread": 28 + } + } + ], + "AU12WZVYrxByiJoELfZaXvcYR5S9LxHiVgx4gKfo7TTwRX5qVFcWM": [ + { + "amount": "302.156994124", + "slot": { + "period": 20906, + "thread": 30 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 213704, + "thread": 20 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 403846, + "thread": 13 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 637164, + "thread": 4 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 735345, + "thread": 27 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 843186, + "thread": 25 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1146379, + "thread": 22 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1289997, + "thread": 19 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1435005, + "thread": 1 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1508380, + "thread": 25 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1734737, + "thread": 8 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 1856124, + "thread": 2 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2109826, + "thread": 23 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2178811, + "thread": 17 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2411440, + "thread": 9 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2560836, + "thread": 21 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2748815, + "thread": 23 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 2865961, + "thread": 1 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3014618, + "thread": 8 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3203706, + "thread": 3 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3330152, + "thread": 1 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3595406, + "thread": 16 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3736039, + "thread": 1 + } + }, + { + "amount": "302.156994124", + "slot": { + "period": 3807642, + "thread": 21 + } + } + ], + "AU12WaGhtMPp5s6zBhheLUrWf3cNgk1rKnR6BqCH6PxqK1i3yBwd1": [ + { + "amount": "53.062480453", + "slot": { + "period": 111998, + "thread": 11 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 278821, + "thread": 24 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 419298, + "thread": 18 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 540743, + "thread": 1 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 808848, + "thread": 0 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 926187, + "thread": 19 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1098176, + "thread": 4 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1210617, + "thread": 26 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1361696, + "thread": 15 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1480642, + "thread": 19 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1686359, + "thread": 13 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 1931429, + "thread": 2 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2133761, + "thread": 14 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2161200, + "thread": 10 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2301641, + "thread": 14 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2550934, + "thread": 29 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2681614, + "thread": 18 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 2807656, + "thread": 12 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 3016725, + "thread": 15 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 3133535, + "thread": 28 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 3434009, + "thread": 9 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 3537479, + "thread": 13 + } + }, + { + "amount": "53.062480453", + "slot": { + "period": 3682703, + "thread": 23 + } + }, + { + "amount": "53.062480463", + "slot": { + "period": 3855837, + "thread": 2 + } + } + ], + "AU12WakdgkT4niS1SSwcTdxtTPGXEp1MMfRCfomtR8zk8uY9r33A7": [ + { + "amount": "365.728224928", + "slot": { + "period": 145639, + "thread": 4 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 223185, + "thread": 28 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 362985, + "thread": 29 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 585510, + "thread": 31 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 677542, + "thread": 1 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 971279, + "thread": 19 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1085491, + "thread": 10 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1175438, + "thread": 6 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1447129, + "thread": 10 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1545055, + "thread": 10 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1699745, + "thread": 27 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 1857528, + "thread": 29 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2099554, + "thread": 27 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2226010, + "thread": 9 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2363536, + "thread": 4 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2617066, + "thread": 15 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2642120, + "thread": 13 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 2947024, + "thread": 30 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 3020758, + "thread": 0 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 3225841, + "thread": 19 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 3407749, + "thread": 8 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 3616252, + "thread": 30 + } + }, + { + "amount": "365.728224928", + "slot": { + "period": 3731651, + "thread": 21 + } + }, + { + "amount": "365.728224917", + "slot": { + "period": 3864480, + "thread": 11 + } + } + ], + "AU12WamwGsusWBuMKwwCuZyHWKiuFfYcE1NPaHtPkzmQScLk5G4BT": [ + { + "amount": "254.569708490", + "slot": { + "period": 158789, + "thread": 10 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 204494, + "thread": 18 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 483957, + "thread": 29 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 626876, + "thread": 7 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 798871, + "thread": 13 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 860420, + "thread": 21 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1061338, + "thread": 27 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1234045, + "thread": 16 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1421183, + "thread": 4 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1511067, + "thread": 6 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1701808, + "thread": 1 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 1812980, + "thread": 18 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2141232, + "thread": 6 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2264274, + "thread": 31 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2433556, + "thread": 23 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2483364, + "thread": 20 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2789992, + "thread": 19 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2914221, + "thread": 7 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 2962492, + "thread": 17 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 3131931, + "thread": 8 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 3426556, + "thread": 28 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 3573353, + "thread": 29 + } + }, + { + "amount": "254.569708490", + "slot": { + "period": 3703547, + "thread": 31 + } + }, + { + "amount": "254.569708501", + "slot": { + "period": 3870051, + "thread": 2 + } + } + ], + "AU12WbAC16Y18x9i2wjuFW8KhdnBQqaBLb6GXAcTgd7r5Q25wy83A": [ + { + "amount": "430.669435820", + "slot": { + "period": 92908, + "thread": 30 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 168048, + "thread": 19 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 452145, + "thread": 28 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 644504, + "thread": 29 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 768641, + "thread": 7 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 947437, + "thread": 6 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1041998, + "thread": 15 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1262537, + "thread": 8 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1452408, + "thread": 16 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1484103, + "thread": 0 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1796979, + "thread": 18 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 1889471, + "thread": 24 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2023236, + "thread": 14 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2207725, + "thread": 16 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2321698, + "thread": 30 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2605677, + "thread": 29 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2627618, + "thread": 30 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 2867193, + "thread": 9 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 3070895, + "thread": 1 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 3153854, + "thread": 13 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 3328699, + "thread": 1 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 3481670, + "thread": 20 + } + }, + { + "amount": "430.669435820", + "slot": { + "period": 3686960, + "thread": 6 + } + }, + { + "amount": "430.669435825", + "slot": { + "period": 3943150, + "thread": 2 + } + } + ], + "AU12WcVJrn64m3yjiPUKfKPYL5h8mhRq31CS7DjSKFLwp6yKGY9Jt": [ + { + "amount": "391.582093753", + "slot": { + "period": 50301, + "thread": 20 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 293986, + "thread": 3 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 483480, + "thread": 1 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 605308, + "thread": 18 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 704712, + "thread": 22 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 937303, + "thread": 25 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1015568, + "thread": 18 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1216342, + "thread": 22 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1348230, + "thread": 4 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1570158, + "thread": 10 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1808539, + "thread": 22 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 1874927, + "thread": 28 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2079596, + "thread": 15 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2231216, + "thread": 4 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2398088, + "thread": 23 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2573338, + "thread": 31 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2772693, + "thread": 20 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 2812116, + "thread": 4 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 3108155, + "thread": 13 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 3237910, + "thread": 26 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 3327449, + "thread": 31 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 3510443, + "thread": 30 + } + }, + { + "amount": "391.582093753", + "slot": { + "period": 3629575, + "thread": 20 + } + }, + { + "amount": "391.582093756", + "slot": { + "period": 3944202, + "thread": 21 + } + } + ], + "AU12WdPJExetEDuaW55HJo7D3fVncUpPaB6XAUAwkfk7xW79yt5Am": [ + { + "amount": "206.960969700", + "slot": { + "period": 70682, + "thread": 21 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 263579, + "thread": 18 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 441580, + "thread": 23 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 581829, + "thread": 14 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 674149, + "thread": 26 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 915585, + "thread": 19 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1090776, + "thread": 26 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1296413, + "thread": 0 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1461088, + "thread": 17 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1558917, + "thread": 19 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1729316, + "thread": 14 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 1887163, + "thread": 7 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2084079, + "thread": 9 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2221168, + "thread": 16 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2364595, + "thread": 25 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2480934, + "thread": 2 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2760109, + "thread": 4 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 2944258, + "thread": 25 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 3078252, + "thread": 17 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 3250483, + "thread": 23 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 3310182, + "thread": 30 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 3491746, + "thread": 4 + } + }, + { + "amount": "206.960969700", + "slot": { + "period": 3631685, + "thread": 20 + } + }, + { + "amount": "206.960969712", + "slot": { + "period": 3898918, + "thread": 25 + } + } + ], + "AU12WdfEfYHDnbFd28pZyKJnbUQaYev2ygeQXH3TT8VLVc6uAssYc": [ + { + "amount": "601.564472377", + "slot": { + "period": 161376, + "thread": 14 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 198412, + "thread": 28 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 367546, + "thread": 17 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 594850, + "thread": 5 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 733888, + "thread": 4 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 944662, + "thread": 21 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1126142, + "thread": 17 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1170275, + "thread": 16 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1345574, + "thread": 20 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1586037, + "thread": 30 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1666263, + "thread": 14 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 1820532, + "thread": 25 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2014523, + "thread": 27 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2172264, + "thread": 8 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2351426, + "thread": 5 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2573253, + "thread": 25 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2746616, + "thread": 30 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2832315, + "thread": 6 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 2981725, + "thread": 28 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 3233059, + "thread": 25 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 3444598, + "thread": 31 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 3603004, + "thread": 28 + } + }, + { + "amount": "601.564472377", + "slot": { + "period": 3773559, + "thread": 26 + } + }, + { + "amount": "601.564472374", + "slot": { + "period": 3916514, + "thread": 2 + } + } + ], + "AU12WdhdBZY1wtN4c4mgYM4VVN11u15mjtbhVR5zw4MGMnnYwxcyv": [ + { + "amount": "91.054154133", + "slot": { + "period": 26334, + "thread": 16 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 275074, + "thread": 7 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 413639, + "thread": 2 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 533435, + "thread": 3 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 780204, + "thread": 23 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 873046, + "thread": 30 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1091524, + "thread": 22 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1191691, + "thread": 4 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1363504, + "thread": 25 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1636129, + "thread": 4 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1669984, + "thread": 6 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 1954971, + "thread": 22 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2124046, + "thread": 18 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2156749, + "thread": 20 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2393641, + "thread": 19 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2620634, + "thread": 15 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2698116, + "thread": 5 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 2833234, + "thread": 19 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 3082366, + "thread": 21 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 3154637, + "thread": 25 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 3329283, + "thread": 0 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 3505521, + "thread": 20 + } + }, + { + "amount": "91.054154133", + "slot": { + "period": 3657062, + "thread": 23 + } + }, + { + "amount": "91.054154131", + "slot": { + "period": 3860944, + "thread": 2 + } + } + ], + "AU12Wdtk4KwZjuXp41qMkEY5w2jMJ89GsD659hyDni3gP1YRECLps": [ + { + "amount": "539.121020254", + "slot": { + "period": 28435, + "thread": 26 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 268648, + "thread": 10 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 412311, + "thread": 2 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 519274, + "thread": 7 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 704097, + "thread": 9 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 903794, + "thread": 10 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1037465, + "thread": 0 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1274055, + "thread": 10 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1402598, + "thread": 26 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1622110, + "thread": 26 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1749106, + "thread": 12 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 1886419, + "thread": 22 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2130335, + "thread": 17 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2275389, + "thread": 0 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2307633, + "thread": 28 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2501857, + "thread": 27 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2775706, + "thread": 25 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 2877606, + "thread": 8 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 3022544, + "thread": 19 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 3277764, + "thread": 0 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 3381869, + "thread": 28 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 3605211, + "thread": 25 + } + }, + { + "amount": "539.121020254", + "slot": { + "period": 3643880, + "thread": 28 + } + }, + { + "amount": "539.121020257", + "slot": { + "period": 3830693, + "thread": 18 + } + } + ], + "AU12WenEVok8qdtCN6CfjLHgxNJdkpnEN1cQsk4vHu9outVrKgZpH": [ + { + "amount": "117.070939004", + "slot": { + "period": 102786, + "thread": 4 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 183772, + "thread": 18 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 431313, + "thread": 3 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 591696, + "thread": 14 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 673219, + "thread": 14 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 933311, + "thread": 14 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1127331, + "thread": 8 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1177142, + "thread": 15 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1419210, + "thread": 0 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1596878, + "thread": 26 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1714056, + "thread": 30 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 1854829, + "thread": 14 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2017875, + "thread": 21 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2231166, + "thread": 22 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2311415, + "thread": 13 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2581954, + "thread": 13 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2721541, + "thread": 28 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2895352, + "thread": 7 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 2963102, + "thread": 10 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 3210121, + "thread": 5 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 3341567, + "thread": 22 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 3473168, + "thread": 26 + } + }, + { + "amount": "117.070939004", + "slot": { + "period": 3678138, + "thread": 13 + } + }, + { + "amount": "117.070938997", + "slot": { + "period": 3883338, + "thread": 26 + } + } + ], + "AU12WewYpSg83Wmx9QM6fCaFD427X1jNbnBRbjQRLjidrZNPgfP3y": [ + { + "amount": "142.694338377", + "slot": { + "period": 102626, + "thread": 1 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 280148, + "thread": 20 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 378685, + "thread": 31 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 534207, + "thread": 30 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 665024, + "thread": 26 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 841562, + "thread": 2 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1046900, + "thread": 31 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1228831, + "thread": 8 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1352615, + "thread": 0 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1573364, + "thread": 1 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1745604, + "thread": 24 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 1927797, + "thread": 2 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2019022, + "thread": 3 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2177741, + "thread": 24 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2417694, + "thread": 16 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2503423, + "thread": 20 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2644269, + "thread": 21 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 2826740, + "thread": 1 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 3109980, + "thread": 12 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 3161729, + "thread": 7 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 3381546, + "thread": 1 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 3617331, + "thread": 12 + } + }, + { + "amount": "142.694338377", + "slot": { + "period": 3766556, + "thread": 5 + } + }, + { + "amount": "142.694338366", + "slot": { + "period": 3843713, + "thread": 25 + } + } + ], + "AU12WfCUT9LXYnWBGg8cdP6xLp3JfRCXsRyu4eba4pk3SJG2GArTK": [ + { + "amount": "219.640186344", + "slot": { + "period": 112905, + "thread": 28 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 317770, + "thread": 20 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 371336, + "thread": 31 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 649233, + "thread": 8 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 812353, + "thread": 3 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 941820, + "thread": 17 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1013051, + "thread": 16 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1193532, + "thread": 12 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1408457, + "thread": 23 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1498858, + "thread": 1 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1711326, + "thread": 10 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1904320, + "thread": 5 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 1995411, + "thread": 6 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2224304, + "thread": 6 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2362540, + "thread": 18 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2615473, + "thread": 26 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2777730, + "thread": 31 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2902127, + "thread": 20 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 2969458, + "thread": 4 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 3137628, + "thread": 25 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 3393268, + "thread": 0 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 3466109, + "thread": 19 + } + }, + { + "amount": "219.640186344", + "slot": { + "period": 3688375, + "thread": 30 + } + }, + { + "amount": "219.640186349", + "slot": { + "period": 3829091, + "thread": 4 + } + } + ], + "AU12WfUKEcmXg4kV1aSPpwBHJLJpXsS8vf2rc2vccb2YgLCLggWfq": [ + { + "amount": "126.865800021", + "slot": { + "period": 122146, + "thread": 29 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 291114, + "thread": 14 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 433926, + "thread": 0 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 546580, + "thread": 23 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 734891, + "thread": 1 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 863813, + "thread": 10 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1117500, + "thread": 29 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1300360, + "thread": 30 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1366400, + "thread": 31 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1560000, + "thread": 12 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1808643, + "thread": 8 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1831907, + "thread": 25 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 1990315, + "thread": 1 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2202626, + "thread": 17 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2405955, + "thread": 10 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2611875, + "thread": 7 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2680964, + "thread": 14 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2801200, + "thread": 7 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 2959697, + "thread": 31 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 3128173, + "thread": 17 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 3404558, + "thread": 5 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 3608719, + "thread": 6 + } + }, + { + "amount": "126.865800021", + "slot": { + "period": 3669295, + "thread": 12 + } + }, + { + "amount": "126.865800020", + "slot": { + "period": 3916878, + "thread": 23 + } + } + ], + "AU12Wg56UNvfHkjKEaqERGVQnv7dHfyifHQ2LukWEC2V9B9HDHSRi": [ + { + "amount": "138.515506697", + "slot": { + "period": 128915, + "thread": 14 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 273790, + "thread": 27 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 456857, + "thread": 2 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 567959, + "thread": 7 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 796407, + "thread": 16 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 870759, + "thread": 17 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 997736, + "thread": 8 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 1169790, + "thread": 30 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 1410786, + "thread": 12 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 1511849, + "thread": 14 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 1696433, + "thread": 1 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 1855855, + "thread": 2 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2031600, + "thread": 14 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2260591, + "thread": 10 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2393941, + "thread": 16 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2584347, + "thread": 3 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2703394, + "thread": 14 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 2835470, + "thread": 21 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 3115548, + "thread": 3 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 3248886, + "thread": 7 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 3395209, + "thread": 23 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 3476094, + "thread": 15 + } + }, + { + "amount": "138.515506697", + "slot": { + "period": 3657922, + "thread": 3 + } + }, + { + "amount": "138.515506705", + "slot": { + "period": 3849488, + "thread": 7 + } + } + ], + "AU12WgKy9idQmJCVNtWiG5KyqXDNX6vAW7igCRCC6172iZ7vS2aNs": [ + { + "amount": "86.572812323", + "slot": { + "period": 67253, + "thread": 20 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 222302, + "thread": 8 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 438399, + "thread": 20 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 612380, + "thread": 30 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 698065, + "thread": 22 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 826018, + "thread": 2 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1081990, + "thread": 2 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1250299, + "thread": 0 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1358953, + "thread": 31 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1529002, + "thread": 3 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1650586, + "thread": 19 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 1882785, + "thread": 27 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2115332, + "thread": 23 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2270920, + "thread": 19 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2373330, + "thread": 1 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2559640, + "thread": 1 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2653943, + "thread": 26 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 2920047, + "thread": 5 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 3035787, + "thread": 18 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 3165699, + "thread": 21 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 3307619, + "thread": 24 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 3485597, + "thread": 20 + } + }, + { + "amount": "86.572812323", + "slot": { + "period": 3733603, + "thread": 22 + } + }, + { + "amount": "86.572812317", + "slot": { + "period": 3923616, + "thread": 19 + } + } + ], + "AU12WgWAK9U776yjSbX3AKTni7h9NRRvM5mP1M1wexWEbvtx8VXjp": [ + { + "amount": "451.228176049", + "slot": { + "period": 16683, + "thread": 15 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 314472, + "thread": 8 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 418946, + "thread": 28 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 492940, + "thread": 21 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 793250, + "thread": 2 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 910937, + "thread": 3 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1095387, + "thread": 20 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1169649, + "thread": 5 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1419891, + "thread": 7 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1499590, + "thread": 23 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1807030, + "thread": 27 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 1819655, + "thread": 25 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2017048, + "thread": 1 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2161949, + "thread": 31 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2413007, + "thread": 9 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2555855, + "thread": 1 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2629960, + "thread": 8 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 2807155, + "thread": 20 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 3112408, + "thread": 11 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 3288123, + "thread": 22 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 3350123, + "thread": 4 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 3500023, + "thread": 12 + } + }, + { + "amount": "451.228176049", + "slot": { + "period": 3661375, + "thread": 1 + } + }, + { + "amount": "451.228176059", + "slot": { + "period": 3880526, + "thread": 28 + } + } + ], + "AU12WgcTxxqHNqdHUQMrw8e6XQPoHhTSxgQXGRndwjXNtvwA9hjoL": [ + { + "amount": "435.473140598", + "slot": { + "period": 106084, + "thread": 26 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 299804, + "thread": 10 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 447622, + "thread": 24 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 640438, + "thread": 5 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 725620, + "thread": 12 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 929832, + "thread": 20 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1112835, + "thread": 7 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1306890, + "thread": 21 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1439827, + "thread": 16 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1571033, + "thread": 31 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1683081, + "thread": 17 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 1927872, + "thread": 15 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2097387, + "thread": 31 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2220175, + "thread": 31 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2324518, + "thread": 3 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2476272, + "thread": 24 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2749592, + "thread": 18 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2922999, + "thread": 30 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 2981561, + "thread": 31 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 3278711, + "thread": 19 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 3373442, + "thread": 24 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 3533090, + "thread": 23 + } + }, + { + "amount": "435.473140598", + "slot": { + "period": 3693262, + "thread": 0 + } + }, + { + "amount": "435.473140591", + "slot": { + "period": 3923060, + "thread": 11 + } + } + ], + "AU12WgtTdAC8cHE6pswPcTjhkqS8we3qADJrqfTh9Htq7sknVCuWC": [ + { + "amount": "441.323504714", + "slot": { + "period": 163333, + "thread": 15 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 260821, + "thread": 30 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 389525, + "thread": 22 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 559111, + "thread": 15 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 760402, + "thread": 17 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 966584, + "thread": 24 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1079203, + "thread": 27 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1280372, + "thread": 7 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1473745, + "thread": 18 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1495057, + "thread": 11 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1716680, + "thread": 25 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 1864287, + "thread": 20 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2085417, + "thread": 10 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2257687, + "thread": 23 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2358852, + "thread": 8 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2613784, + "thread": 26 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2730830, + "thread": 19 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2798381, + "thread": 10 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 2996317, + "thread": 18 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 3236782, + "thread": 8 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 3362420, + "thread": 21 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 3574438, + "thread": 20 + } + }, + { + "amount": "441.323504714", + "slot": { + "period": 3626049, + "thread": 3 + } + }, + { + "amount": "441.323504720", + "slot": { + "period": 3901331, + "thread": 10 + } + } + ], + "AU12WhDgyUX9MPiND8upDPx6uC1R9vqAQFzcpeLjj3QQLcaj9xSjP": [ + { + "amount": "78.265660254", + "slot": { + "period": 92656, + "thread": 28 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 280184, + "thread": 23 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 442947, + "thread": 22 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 542880, + "thread": 29 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 707929, + "thread": 25 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 877426, + "thread": 15 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1024377, + "thread": 0 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1234119, + "thread": 10 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1345537, + "thread": 0 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1628181, + "thread": 12 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1745942, + "thread": 20 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 1955653, + "thread": 20 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2052165, + "thread": 5 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2203232, + "thread": 26 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2295176, + "thread": 18 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2471075, + "thread": 19 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2668920, + "thread": 28 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 2873291, + "thread": 25 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 3002082, + "thread": 17 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 3128945, + "thread": 27 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 3323778, + "thread": 27 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 3571691, + "thread": 7 + } + }, + { + "amount": "78.265660254", + "slot": { + "period": 3684295, + "thread": 20 + } + }, + { + "amount": "78.265660258", + "slot": { + "period": 3877550, + "thread": 4 + } + } + ], + "AU12WhyVjrc36QEwye1NVn7hTKfpCyGKrP3TkktF8yViYKvjDA5Wq": [ + { + "amount": "98.717021137", + "slot": { + "period": 125807, + "thread": 19 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 315209, + "thread": 16 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 401297, + "thread": 7 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 653364, + "thread": 3 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 791419, + "thread": 29 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 830976, + "thread": 4 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1022377, + "thread": 22 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1265721, + "thread": 18 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1422300, + "thread": 1 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1499990, + "thread": 24 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1714358, + "thread": 6 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 1828238, + "thread": 19 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2048879, + "thread": 23 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2231580, + "thread": 4 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2405999, + "thread": 19 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2604086, + "thread": 14 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2708557, + "thread": 27 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 2945839, + "thread": 5 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 3044017, + "thread": 10 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 3281891, + "thread": 27 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 3299897, + "thread": 16 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 3485254, + "thread": 21 + } + }, + { + "amount": "98.717021137", + "slot": { + "period": 3675895, + "thread": 5 + } + }, + { + "amount": "98.717021138", + "slot": { + "period": 3889531, + "thread": 4 + } + } + ], + "AU12WmdWsQQWTYuVQFyJJiASFM13iHWrAt2zFNLPmgTFcKST3VzAX": [ + { + "amount": "458.549028866", + "slot": { + "period": 87712, + "thread": 23 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 205704, + "thread": 28 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 392591, + "thread": 9 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 558226, + "thread": 26 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 726610, + "thread": 1 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 874031, + "thread": 5 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1101814, + "thread": 4 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1238367, + "thread": 14 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1335824, + "thread": 31 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1502053, + "thread": 19 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1758971, + "thread": 6 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 1842624, + "thread": 19 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2023167, + "thread": 9 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2287249, + "thread": 14 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2329511, + "thread": 8 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2618746, + "thread": 11 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2680922, + "thread": 1 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 2883407, + "thread": 21 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 3036392, + "thread": 0 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 3151284, + "thread": 13 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 3367327, + "thread": 26 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 3597248, + "thread": 24 + } + }, + { + "amount": "458.549028866", + "slot": { + "period": 3694072, + "thread": 15 + } + }, + { + "amount": "458.549028873", + "slot": { + "period": 3893789, + "thread": 7 + } + } + ], + "AU12WmkiBotzndjMij45KiAcApNw1zmij1UHSJ3v3WDVbchmEVReG": [ + { + "amount": "248.302243589", + "slot": { + "period": 26067, + "thread": 0 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 263183, + "thread": 8 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 477491, + "thread": 5 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 596536, + "thread": 30 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 708172, + "thread": 10 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 901741, + "thread": 11 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1070580, + "thread": 15 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1313429, + "thread": 27 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1333781, + "thread": 2 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1569256, + "thread": 5 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1679605, + "thread": 1 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 1867245, + "thread": 14 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2125711, + "thread": 5 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2181449, + "thread": 13 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2421744, + "thread": 12 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2523290, + "thread": 26 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2651233, + "thread": 29 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2930141, + "thread": 30 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 2986333, + "thread": 30 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 3138725, + "thread": 5 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 3382163, + "thread": 31 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 3460783, + "thread": 26 + } + }, + { + "amount": "248.302243589", + "slot": { + "period": 3708332, + "thread": 18 + } + }, + { + "amount": "248.302243581", + "slot": { + "period": 3929979, + "thread": 6 + } + } + ], + "AU12WnCPBWVfww4bxjfJ4ke34sXKRGeUpinC74xnCTFHE5W81Npjf": [ + { + "amount": "53.307709803", + "slot": { + "period": 164635, + "thread": 27 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 246201, + "thread": 17 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 377698, + "thread": 24 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 571644, + "thread": 22 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 767692, + "thread": 8 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 978200, + "thread": 8 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1121974, + "thread": 9 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1212437, + "thread": 11 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1387199, + "thread": 17 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1503668, + "thread": 28 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1743011, + "thread": 8 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 1939148, + "thread": 29 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2045096, + "thread": 17 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2209964, + "thread": 3 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2365230, + "thread": 30 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2571192, + "thread": 2 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2746276, + "thread": 21 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2924005, + "thread": 10 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 2967219, + "thread": 27 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 3175453, + "thread": 28 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 3435791, + "thread": 25 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 3504698, + "thread": 6 + } + }, + { + "amount": "53.307709803", + "slot": { + "period": 3743896, + "thread": 1 + } + }, + { + "amount": "53.307709792", + "slot": { + "period": 3796347, + "thread": 24 + } + } + ], + "AU12WnCbaY7cud8gQmnJ662sTFw2gxa2kaEx7RCRmQiTvtWEsb9wy": [ + { + "amount": "148.844216109", + "slot": { + "period": 166061, + "thread": 24 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 298784, + "thread": 29 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 426409, + "thread": 10 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 634179, + "thread": 11 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 786910, + "thread": 20 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 859459, + "thread": 21 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1053974, + "thread": 24 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1225499, + "thread": 22 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1434528, + "thread": 3 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1539874, + "thread": 28 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1777113, + "thread": 2 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1883595, + "thread": 27 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 1984179, + "thread": 29 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 2279772, + "thread": 30 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 2353327, + "thread": 29 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 2588057, + "thread": 29 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 2764618, + "thread": 0 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 2916246, + "thread": 31 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 3041263, + "thread": 26 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 3130595, + "thread": 0 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 3408533, + "thread": 4 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 3506115, + "thread": 6 + } + }, + { + "amount": "148.844216109", + "slot": { + "period": 3761842, + "thread": 30 + } + }, + { + "amount": "148.844216105", + "slot": { + "period": 3815375, + "thread": 4 + } + } + ], + "AU12WoXukaUBfC1xwuzgx5LAiz49bixeasxUK4KQ3iVsUgXxjB7YS": [ + { + "amount": "73.747644269", + "slot": { + "period": 47342, + "thread": 21 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 187960, + "thread": 20 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 414679, + "thread": 31 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 566809, + "thread": 25 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 682534, + "thread": 9 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 829733, + "thread": 10 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1084551, + "thread": 15 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1285384, + "thread": 1 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1424250, + "thread": 16 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1526938, + "thread": 6 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1764861, + "thread": 14 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 1879674, + "thread": 22 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2015768, + "thread": 19 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2214157, + "thread": 15 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2451446, + "thread": 7 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2597973, + "thread": 23 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2629411, + "thread": 7 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 2867411, + "thread": 7 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 3094631, + "thread": 8 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 3235743, + "thread": 23 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 3435633, + "thread": 11 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 3576309, + "thread": 26 + } + }, + { + "amount": "73.747644269", + "slot": { + "period": 3646223, + "thread": 18 + } + }, + { + "amount": "73.747644270", + "slot": { + "period": 3879655, + "thread": 0 + } + } + ], + "AU12Wof5gE7hSDKSiNVVeaxp5dov7UmBUzsam9tSVjy8xwYRzAqTn": [ + { + "amount": "139.174043187", + "slot": { + "period": 50695, + "thread": 11 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 252950, + "thread": 4 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 381960, + "thread": 18 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 634769, + "thread": 19 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 804352, + "thread": 21 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 931009, + "thread": 18 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1007981, + "thread": 17 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1201295, + "thread": 8 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1442124, + "thread": 3 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1575250, + "thread": 3 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1757928, + "thread": 27 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 1864217, + "thread": 28 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2134994, + "thread": 18 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2220177, + "thread": 13 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2340427, + "thread": 15 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2481191, + "thread": 28 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2777207, + "thread": 16 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 2950680, + "thread": 30 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 3007711, + "thread": 3 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 3284113, + "thread": 30 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 3341327, + "thread": 19 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 3464625, + "thread": 14 + } + }, + { + "amount": "139.174043187", + "slot": { + "period": 3761093, + "thread": 15 + } + }, + { + "amount": "139.174043181", + "slot": { + "period": 3857697, + "thread": 12 + } + } + ], + "AU12WomRWP5xgn2CtKtEohP2svGbnB5hcRKsS1oJCkBXGxoq4rZJD": [ + { + "amount": "329.209197283", + "slot": { + "period": 149403, + "thread": 2 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 308433, + "thread": 30 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 426404, + "thread": 13 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 503207, + "thread": 16 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 707675, + "thread": 27 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 981408, + "thread": 24 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1091193, + "thread": 5 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1166620, + "thread": 24 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1392009, + "thread": 21 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1612829, + "thread": 22 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1751798, + "thread": 21 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 1885537, + "thread": 9 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2106919, + "thread": 3 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2292549, + "thread": 24 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2296665, + "thread": 22 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2529925, + "thread": 17 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2682726, + "thread": 28 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2853030, + "thread": 31 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 2961388, + "thread": 11 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 3260562, + "thread": 5 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 3428295, + "thread": 14 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 3564456, + "thread": 1 + } + }, + { + "amount": "329.209197283", + "slot": { + "period": 3668123, + "thread": 9 + } + }, + { + "amount": "329.209197284", + "slot": { + "period": 3874439, + "thread": 8 + } + } + ], + "AU12Wp4LvSmN1VQM5hxFaaudU5PEKSev8mQoM7ioKdbJvEzFLG9r3": [ + { + "amount": "80.129368788", + "slot": { + "period": 72958, + "thread": 10 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 263152, + "thread": 24 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 381072, + "thread": 20 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 493139, + "thread": 21 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 779931, + "thread": 23 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 830707, + "thread": 24 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1134406, + "thread": 14 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1278346, + "thread": 24 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1332796, + "thread": 20 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1571541, + "thread": 26 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1801249, + "thread": 8 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 1964332, + "thread": 19 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2003848, + "thread": 14 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2228868, + "thread": 6 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2356820, + "thread": 21 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2608491, + "thread": 28 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2759774, + "thread": 20 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 2827972, + "thread": 22 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 3005508, + "thread": 23 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 3286263, + "thread": 16 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 3385036, + "thread": 30 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 3527819, + "thread": 11 + } + }, + { + "amount": "80.129368788", + "slot": { + "period": 3759362, + "thread": 17 + } + }, + { + "amount": "80.129368795", + "slot": { + "period": 3800549, + "thread": 5 + } + } + ], + "AU12WpcfG8ELYbHCQ96t1Fq59gTU6rhYzVhUczo1kyqQpKjxLDDLr": [ + { + "amount": "306.187933580", + "slot": { + "period": 157465, + "thread": 31 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 260103, + "thread": 12 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 442049, + "thread": 10 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 647121, + "thread": 11 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 718180, + "thread": 14 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 878790, + "thread": 8 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1003211, + "thread": 25 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1315331, + "thread": 26 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1413077, + "thread": 6 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1532113, + "thread": 29 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1741698, + "thread": 27 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 1895376, + "thread": 25 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2017327, + "thread": 29 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2263464, + "thread": 6 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2427198, + "thread": 9 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2620815, + "thread": 24 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2768510, + "thread": 3 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 2855084, + "thread": 10 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 3020762, + "thread": 28 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 3264608, + "thread": 3 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 3301455, + "thread": 2 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 3515928, + "thread": 30 + } + }, + { + "amount": "306.187933580", + "slot": { + "period": 3623137, + "thread": 26 + } + }, + { + "amount": "306.187933569", + "slot": { + "period": 3910551, + "thread": 7 + } + } + ], + "AU12WpyxDCieeJCDoDWdgvNHxH6yDPoiRmk5QDbqNiXHxxGbsthwD": [ + { + "amount": "196.864087238", + "slot": { + "period": 71472, + "thread": 9 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 297450, + "thread": 26 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 404542, + "thread": 23 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 517445, + "thread": 6 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 693042, + "thread": 20 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 960906, + "thread": 28 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 997573, + "thread": 17 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 1153573, + "thread": 9 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 1441160, + "thread": 27 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 1582168, + "thread": 30 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 1755638, + "thread": 19 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 1843617, + "thread": 16 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2105102, + "thread": 12 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2228993, + "thread": 4 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2436068, + "thread": 22 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2615575, + "thread": 2 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2747815, + "thread": 30 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2894198, + "thread": 9 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 2972859, + "thread": 7 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 3266404, + "thread": 29 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 3320857, + "thread": 6 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 3539442, + "thread": 22 + } + }, + { + "amount": "196.864087238", + "slot": { + "period": 3675597, + "thread": 16 + } + }, + { + "amount": "196.864087250", + "slot": { + "period": 3817593, + "thread": 3 + } + } + ], + "AU12Wq1iuLzjtvnVVsgnqzfZ3b9nBf7LSupCaPcRsVKEHtCaMkx3r": [ + { + "amount": "108.663226097", + "slot": { + "period": 93909, + "thread": 13 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 298712, + "thread": 3 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 331173, + "thread": 5 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 563773, + "thread": 20 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 688053, + "thread": 4 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 930325, + "thread": 21 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1080669, + "thread": 15 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1301283, + "thread": 8 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1365685, + "thread": 8 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1479873, + "thread": 6 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1719534, + "thread": 14 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 1819993, + "thread": 6 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2047941, + "thread": 3 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2148498, + "thread": 26 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2353371, + "thread": 22 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2498735, + "thread": 14 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2774233, + "thread": 11 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 2880638, + "thread": 20 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 3055519, + "thread": 24 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 3129575, + "thread": 4 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 3337027, + "thread": 10 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 3457502, + "thread": 1 + } + }, + { + "amount": "108.663226097", + "slot": { + "period": 3696254, + "thread": 2 + } + }, + { + "amount": "108.663226094", + "slot": { + "period": 3935002, + "thread": 29 + } + } + ], + "AU12WqnM7m7KFXVCeXySJVG1uCgCW9oCf8BtbZtJC5wcp6qdpiWxN": [ + { + "amount": "144.373127892", + "slot": { + "period": 82286, + "thread": 5 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 288532, + "thread": 26 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 489775, + "thread": 7 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 495014, + "thread": 9 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 795827, + "thread": 28 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 979024, + "thread": 3 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1046736, + "thread": 8 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1173792, + "thread": 24 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1393512, + "thread": 6 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1602598, + "thread": 5 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1773378, + "thread": 14 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 1968773, + "thread": 21 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2053411, + "thread": 5 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2217770, + "thread": 9 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2354521, + "thread": 12 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2512454, + "thread": 21 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2628537, + "thread": 31 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2817171, + "thread": 17 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 2971418, + "thread": 14 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 3255046, + "thread": 15 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 3332811, + "thread": 12 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 3483606, + "thread": 6 + } + }, + { + "amount": "144.373127892", + "slot": { + "period": 3655120, + "thread": 5 + } + }, + { + "amount": "144.373127896", + "slot": { + "period": 3793912, + "thread": 6 + } + } + ], + "AU12WrUybHgtWrwXkwFhgcx5fAXE94YKbqMhh7VAkUNgmD5ETu6Jw": [ + { + "amount": "141.175732443", + "slot": { + "period": 137548, + "thread": 14 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 204132, + "thread": 25 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 402234, + "thread": 24 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 511654, + "thread": 19 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 672585, + "thread": 22 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 903122, + "thread": 9 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1048546, + "thread": 25 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1165524, + "thread": 22 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1344518, + "thread": 4 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1548510, + "thread": 8 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1744180, + "thread": 5 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 1962352, + "thread": 25 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2026104, + "thread": 13 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2275498, + "thread": 2 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2367094, + "thread": 8 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2607751, + "thread": 18 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2695868, + "thread": 21 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2837564, + "thread": 20 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 2961138, + "thread": 21 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 3122449, + "thread": 26 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 3294665, + "thread": 14 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 3466614, + "thread": 21 + } + }, + { + "amount": "141.175732443", + "slot": { + "period": 3664917, + "thread": 27 + } + }, + { + "amount": "141.175732432", + "slot": { + "period": 3900035, + "thread": 30 + } + } + ], + "AU12WtFwBCF1NvhEFi8ZeC2FCmhPH5vZZvamHU5za9XrWX9KeSK5A": [ + { + "amount": "348.830050995", + "slot": { + "period": 166039, + "thread": 1 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 252833, + "thread": 18 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 388876, + "thread": 27 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 505907, + "thread": 10 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 739641, + "thread": 12 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 956939, + "thread": 1 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1020474, + "thread": 20 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1258743, + "thread": 0 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1371767, + "thread": 11 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1629871, + "thread": 0 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1683727, + "thread": 0 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1827304, + "thread": 16 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 1989964, + "thread": 17 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 2161718, + "thread": 19 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 2312014, + "thread": 15 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 2601858, + "thread": 20 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 2672301, + "thread": 9 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 2818249, + "thread": 19 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 3006781, + "thread": 0 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 3169486, + "thread": 5 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 3362859, + "thread": 1 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 3573943, + "thread": 19 + } + }, + { + "amount": "348.830050995", + "slot": { + "period": 3648091, + "thread": 10 + } + }, + { + "amount": "348.830050989", + "slot": { + "period": 3864034, + "thread": 3 + } + } + ], + "AU12WtiH6WcX7NREaYcexSt4NB6LMbXE3uBSmtzngcoovCtmDMiB6": [ + { + "amount": "113.487814609", + "slot": { + "period": 99963, + "thread": 25 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 259419, + "thread": 27 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 386023, + "thread": 15 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 632079, + "thread": 3 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 767220, + "thread": 19 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 921377, + "thread": 28 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1010414, + "thread": 5 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1171938, + "thread": 3 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1449172, + "thread": 14 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1504719, + "thread": 4 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1706184, + "thread": 0 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1877615, + "thread": 15 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 1976951, + "thread": 7 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 2200315, + "thread": 3 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 2411611, + "thread": 17 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 2505627, + "thread": 7 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 2720564, + "thread": 22 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 2941988, + "thread": 7 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 3012261, + "thread": 7 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 3262853, + "thread": 27 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 3315091, + "thread": 23 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 3548607, + "thread": 0 + } + }, + { + "amount": "113.487814609", + "slot": { + "period": 3643553, + "thread": 27 + } + }, + { + "amount": "113.487814616", + "slot": { + "period": 3792495, + "thread": 18 + } + } + ], + "AU12WtowcAkzeqRNXesbQaswSzRzJ76SEGwYwTzz4KVTz9UyircCC": [ + { + "amount": "153.138752197", + "slot": { + "period": 51704, + "thread": 17 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 231626, + "thread": 29 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 466398, + "thread": 16 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 629329, + "thread": 8 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 717859, + "thread": 24 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 931313, + "thread": 13 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1114369, + "thread": 29 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1215827, + "thread": 27 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1415238, + "thread": 5 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1535791, + "thread": 20 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1652458, + "thread": 13 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1941701, + "thread": 7 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 1989771, + "thread": 28 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 2289569, + "thread": 11 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 2424596, + "thread": 1 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 2480666, + "thread": 1 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 2646856, + "thread": 28 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 2888872, + "thread": 2 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 3016496, + "thread": 22 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 3169923, + "thread": 13 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 3364680, + "thread": 31 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 3605879, + "thread": 8 + } + }, + { + "amount": "153.138752197", + "slot": { + "period": 3765659, + "thread": 11 + } + }, + { + "amount": "153.138752188", + "slot": { + "period": 3829958, + "thread": 12 + } + } + ], + "AU12WviRkDFbS26gyWcVdTnzsLU6BREjXae224MNphzHrXimKfL5V": [ + { + "amount": "53.147691878", + "slot": { + "period": 65178, + "thread": 13 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 300213, + "thread": 19 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 415914, + "thread": 14 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 517143, + "thread": 23 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 710369, + "thread": 3 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 954693, + "thread": 30 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1071258, + "thread": 29 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1256961, + "thread": 28 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1475489, + "thread": 12 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1620863, + "thread": 28 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1744112, + "thread": 26 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 1814077, + "thread": 24 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2050394, + "thread": 30 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2145635, + "thread": 25 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2450707, + "thread": 18 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2478559, + "thread": 15 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2704098, + "thread": 25 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 2938758, + "thread": 11 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 3004252, + "thread": 18 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 3132439, + "thread": 7 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 3301024, + "thread": 20 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 3488999, + "thread": 3 + } + }, + { + "amount": "53.147691878", + "slot": { + "period": 3656512, + "thread": 5 + } + }, + { + "amount": "53.147691888", + "slot": { + "period": 3842387, + "thread": 6 + } + } + ], + "AU12WwwYcbCBVQv7cB7Xoe7K9riPscZCAWm57WxcsgNhdG8S7AwkQ": [ + { + "amount": "170.684702390", + "slot": { + "period": 41194, + "thread": 11 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 295878, + "thread": 15 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 380286, + "thread": 1 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 560279, + "thread": 24 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 703438, + "thread": 22 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 959101, + "thread": 12 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1067421, + "thread": 8 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1193433, + "thread": 0 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1438223, + "thread": 6 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1488867, + "thread": 11 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1790538, + "thread": 14 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 1899403, + "thread": 6 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2091394, + "thread": 6 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2223340, + "thread": 6 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2362562, + "thread": 8 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2486511, + "thread": 21 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2743877, + "thread": 14 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2948069, + "thread": 9 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 2999943, + "thread": 7 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 3266925, + "thread": 22 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 3419406, + "thread": 24 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 3509563, + "thread": 8 + } + }, + { + "amount": "170.684702390", + "slot": { + "period": 3715411, + "thread": 4 + } + }, + { + "amount": "170.684702396", + "slot": { + "period": 3840183, + "thread": 18 + } + } + ], + "AU12Wx445hgGugjUvPeFh5FcmegzvpybbF1TjpBjidrxuQd5unQxr": [ + { + "amount": "207.778051561", + "slot": { + "period": 97560, + "thread": 22 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 272914, + "thread": 21 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 477444, + "thread": 23 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 552636, + "thread": 8 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 690406, + "thread": 19 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 903576, + "thread": 21 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1037375, + "thread": 4 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1202267, + "thread": 26 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1323318, + "thread": 11 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1553687, + "thread": 14 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1804453, + "thread": 4 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 1917364, + "thread": 25 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2029886, + "thread": 4 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2202931, + "thread": 28 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2436412, + "thread": 7 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2597380, + "thread": 15 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2717624, + "thread": 7 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 2848450, + "thread": 15 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 3069115, + "thread": 31 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 3165394, + "thread": 27 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 3289208, + "thread": 17 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 3610276, + "thread": 8 + } + }, + { + "amount": "207.778051561", + "slot": { + "period": 3754117, + "thread": 24 + } + }, + { + "amount": "207.778051558", + "slot": { + "period": 3843313, + "thread": 2 + } + } + ], + "AU12WxPjGiSsBWJFSH94DMCkppJkkepBZi1eELsjD3aHVWYj22sg": [ + { + "amount": "163.582926036", + "slot": { + "period": 15065, + "thread": 14 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 240572, + "thread": 24 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 383053, + "thread": 1 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 545409, + "thread": 14 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 770897, + "thread": 1 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 915618, + "thread": 26 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1099121, + "thread": 23 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1241117, + "thread": 31 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1400533, + "thread": 13 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1548353, + "thread": 12 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1671869, + "thread": 25 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 1913159, + "thread": 15 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2131141, + "thread": 30 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2245124, + "thread": 22 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2395058, + "thread": 19 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2585995, + "thread": 7 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2741659, + "thread": 31 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2843457, + "thread": 24 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 2967525, + "thread": 27 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 3242538, + "thread": 19 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 3360766, + "thread": 7 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 3473980, + "thread": 4 + } + }, + { + "amount": "163.582926036", + "slot": { + "period": 3685403, + "thread": 16 + } + }, + { + "amount": "163.582926024", + "slot": { + "period": 3886872, + "thread": 9 + } + } + ], + "AU12WyNSnG6T4k2xq4kEjkxjcerCBM8hcmkeBM82KDvMPNrDgMRWF": [ + { + "amount": "55.142354529", + "slot": { + "period": 86809, + "thread": 6 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 272333, + "thread": 30 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 450235, + "thread": 17 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 650860, + "thread": 31 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 807199, + "thread": 21 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 951355, + "thread": 21 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1052211, + "thread": 16 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1308084, + "thread": 19 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1376842, + "thread": 10 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1489935, + "thread": 23 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1792347, + "thread": 3 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 1972921, + "thread": 14 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2050073, + "thread": 20 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2246418, + "thread": 31 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2351667, + "thread": 14 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2529049, + "thread": 0 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2791229, + "thread": 16 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 2804987, + "thread": 5 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 3085555, + "thread": 4 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 3190982, + "thread": 7 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 3361785, + "thread": 5 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 3500244, + "thread": 3 + } + }, + { + "amount": "55.142354529", + "slot": { + "period": 3725887, + "thread": 31 + } + }, + { + "amount": "55.142354534", + "slot": { + "period": 3780040, + "thread": 6 + } + } + ], + "AU12WyuvMWQnMfBEc1s5bs8rQEhTFHtyHJ2yq9hPs5iThGcta4jLT": [ + { + "amount": "126.354124600", + "slot": { + "period": 128762, + "thread": 19 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 295850, + "thread": 3 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 436375, + "thread": 10 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 567564, + "thread": 29 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 789244, + "thread": 18 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 843336, + "thread": 6 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1110360, + "thread": 30 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1220653, + "thread": 30 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1340696, + "thread": 5 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1513710, + "thread": 22 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1739227, + "thread": 27 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 1860259, + "thread": 4 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2066016, + "thread": 13 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2189822, + "thread": 27 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2408873, + "thread": 7 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2536083, + "thread": 17 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2776302, + "thread": 9 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 2865239, + "thread": 20 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 3040312, + "thread": 23 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 3121206, + "thread": 31 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 3291671, + "thread": 22 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 3617377, + "thread": 28 + } + }, + { + "amount": "126.354124600", + "slot": { + "period": 3732186, + "thread": 30 + } + }, + { + "amount": "126.354124589", + "slot": { + "period": 3944535, + "thread": 20 + } + } + ], + "AU12WzitLy6PnbDDHqLYeKEBXsZZAy9qcSwCvyCb92TCrtFnWrep8": [ + { + "amount": "173.340820064", + "slot": { + "period": 149257, + "thread": 24 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 253566, + "thread": 22 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 471917, + "thread": 18 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 636408, + "thread": 19 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 795537, + "thread": 4 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 899878, + "thread": 29 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1110794, + "thread": 12 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1259514, + "thread": 27 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1386674, + "thread": 17 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1497191, + "thread": 28 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1698114, + "thread": 13 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 1962731, + "thread": 17 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2053778, + "thread": 9 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2263339, + "thread": 10 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2428266, + "thread": 31 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2544352, + "thread": 3 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2731770, + "thread": 10 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 2801970, + "thread": 6 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 3047575, + "thread": 13 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 3144620, + "thread": 4 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 3291659, + "thread": 23 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 3459002, + "thread": 26 + } + }, + { + "amount": "173.340820064", + "slot": { + "period": 3757050, + "thread": 24 + } + }, + { + "amount": "173.340820059", + "slot": { + "period": 3941219, + "thread": 10 + } + } + ], + "AU12WzsUsRSQdZrHfE1m1EmFAfp8ghRxWwz56AQdLvKCS8ubPgea4": [ + { + "amount": "345.318497310", + "slot": { + "period": 25380, + "thread": 11 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 295518, + "thread": 8 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 376942, + "thread": 31 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 527750, + "thread": 31 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 781995, + "thread": 19 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 973011, + "thread": 19 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1026736, + "thread": 29 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1162299, + "thread": 25 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1448619, + "thread": 2 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1556813, + "thread": 13 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1660869, + "thread": 4 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 1864701, + "thread": 5 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2049734, + "thread": 15 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2176265, + "thread": 31 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2435634, + "thread": 2 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2523383, + "thread": 2 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2642886, + "thread": 10 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 2840343, + "thread": 24 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 3013871, + "thread": 22 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 3208713, + "thread": 8 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 3446767, + "thread": 21 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 3470812, + "thread": 4 + } + }, + { + "amount": "345.318497310", + "slot": { + "period": 3775013, + "thread": 17 + } + }, + { + "amount": "345.318497314", + "slot": { + "period": 3794159, + "thread": 18 + } + } + ], + "AU12X1BCCtVT4wkia5gt2a9FyU8JXNiGqXL18nEhs9TcALW7ejs9": [ + { + "amount": "195.150836245", + "slot": { + "period": 87948, + "thread": 4 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 224652, + "thread": 15 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 338160, + "thread": 8 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 599971, + "thread": 11 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 800053, + "thread": 2 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 833359, + "thread": 18 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1130065, + "thread": 13 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1283663, + "thread": 16 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1465581, + "thread": 29 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1494310, + "thread": 5 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1784870, + "thread": 29 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1893658, + "thread": 5 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 1993647, + "thread": 25 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 2246127, + "thread": 24 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 2406257, + "thread": 26 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 2566604, + "thread": 5 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 2672477, + "thread": 18 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 2844397, + "thread": 7 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 3117588, + "thread": 22 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 3195792, + "thread": 7 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 3413792, + "thread": 19 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 3496877, + "thread": 0 + } + }, + { + "amount": "195.150836245", + "slot": { + "period": 3646744, + "thread": 16 + } + }, + { + "amount": "195.150836248", + "slot": { + "period": 3910217, + "thread": 14 + } + } + ], + "AU12X2DtFYgTQfkqs64s8hp1b2KywvpcH6SL3RJhKfTRVs1eBKL77": [ + { + "amount": "5833.333333333", + "slot": { + "period": 102139, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 264409, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 342569, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 519646, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 681644, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 978591, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1052855, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1165139, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1343779, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1497546, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1686632, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1915464, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1990632, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2247015, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2345834, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2481363, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2660659, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2910166, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3096887, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3180687, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3330349, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3601219, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3779277, + "thread": 29 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3869732, + "thread": 27 + } + } + ], + "AU12X2NkDu6nHFgCxSoUmAoDGjBtCQt4zpUZZzd28D8iuVTNSR64Z": [ + { + "amount": "441.214227586", + "slot": { + "period": 130965, + "thread": 17 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 243549, + "thread": 24 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 425083, + "thread": 18 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 502170, + "thread": 6 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 719050, + "thread": 20 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 923454, + "thread": 20 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1061793, + "thread": 17 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1230203, + "thread": 12 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1357714, + "thread": 30 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1619952, + "thread": 26 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1806944, + "thread": 30 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 1887867, + "thread": 16 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2120899, + "thread": 13 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2210805, + "thread": 5 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2297787, + "thread": 0 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2508770, + "thread": 4 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2658023, + "thread": 21 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 2893938, + "thread": 14 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 3024605, + "thread": 20 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 3211577, + "thread": 25 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 3355488, + "thread": 15 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 3596425, + "thread": 9 + } + }, + { + "amount": "441.214227586", + "slot": { + "period": 3755951, + "thread": 26 + } + }, + { + "amount": "441.214227595", + "slot": { + "period": 3927736, + "thread": 2 + } + } + ], + "AU12X33K4TYdKKszeusS6JJ2svd6ngTgmW1mc4QSMSpMMJqGGKVZ5": [ + { + "amount": "178.441701875", + "slot": { + "period": 138025, + "thread": 25 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 179949, + "thread": 11 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 487146, + "thread": 24 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 560600, + "thread": 21 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 713349, + "thread": 20 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 901833, + "thread": 1 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1062201, + "thread": 23 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1314172, + "thread": 1 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1450352, + "thread": 22 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1482246, + "thread": 30 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1656070, + "thread": 5 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 1867502, + "thread": 8 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2034757, + "thread": 2 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2262613, + "thread": 3 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2401005, + "thread": 4 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2479979, + "thread": 21 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2666343, + "thread": 30 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 2896471, + "thread": 31 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 3027702, + "thread": 15 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 3191232, + "thread": 13 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 3337911, + "thread": 7 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 3489730, + "thread": 9 + } + }, + { + "amount": "178.441701875", + "slot": { + "period": 3764006, + "thread": 20 + } + }, + { + "amount": "178.441701865", + "slot": { + "period": 3903548, + "thread": 28 + } + } + ], + "AU12X3MYv7pfWQJAoDfrqZxQp9RmtyBFTMbKXDB61yPyaYyzYqGZK": [ + { + "amount": "56.559673789", + "slot": { + "period": 61545, + "thread": 27 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 236012, + "thread": 16 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 403526, + "thread": 13 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 610017, + "thread": 30 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 775210, + "thread": 21 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 859612, + "thread": 11 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1091824, + "thread": 19 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1219427, + "thread": 19 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1424352, + "thread": 29 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1629959, + "thread": 0 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1791976, + "thread": 25 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 1961533, + "thread": 2 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2052062, + "thread": 15 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2170451, + "thread": 22 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2429324, + "thread": 4 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2524176, + "thread": 31 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2641676, + "thread": 9 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 2945173, + "thread": 9 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 3036680, + "thread": 18 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 3194802, + "thread": 8 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 3301332, + "thread": 27 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 3606899, + "thread": 5 + } + }, + { + "amount": "56.559673789", + "slot": { + "period": 3734732, + "thread": 15 + } + }, + { + "amount": "56.559673791", + "slot": { + "period": 3923232, + "thread": 8 + } + } + ], + "AU12X3bTuD5WfY3qBgNGpjqoQ4jsDrE7zcSi9GNMLKGaNh8DR8wso": [ + { + "amount": "68.777972109", + "slot": { + "period": 12423, + "thread": 6 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 226437, + "thread": 0 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 421382, + "thread": 2 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 526324, + "thread": 8 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 795247, + "thread": 13 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 910503, + "thread": 15 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1108709, + "thread": 22 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1310877, + "thread": 2 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1438764, + "thread": 10 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1571542, + "thread": 10 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1707684, + "thread": 28 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 1814447, + "thread": 15 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2123605, + "thread": 28 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2153220, + "thread": 15 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2312101, + "thread": 10 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2563263, + "thread": 24 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2743301, + "thread": 18 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 2797918, + "thread": 27 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 3000834, + "thread": 27 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 3192378, + "thread": 8 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 3392657, + "thread": 29 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 3489335, + "thread": 31 + } + }, + { + "amount": "68.777972109", + "slot": { + "period": 3740597, + "thread": 13 + } + }, + { + "amount": "68.777972101", + "slot": { + "period": 3797724, + "thread": 19 + } + } + ], + "AU12X49htJhPJRPPFTkAAzQ9vyeDrFyWgD7UrMcZFSoeNaXC3CqJA": [ + { + "amount": "222.754490603", + "slot": { + "period": 70868, + "thread": 15 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 229976, + "thread": 13 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 410471, + "thread": 0 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 503086, + "thread": 30 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 661657, + "thread": 22 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 981371, + "thread": 18 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1081028, + "thread": 13 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1179292, + "thread": 11 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1445822, + "thread": 10 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1573547, + "thread": 23 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1749837, + "thread": 10 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 1860600, + "thread": 27 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2102875, + "thread": 17 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2219451, + "thread": 20 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2398003, + "thread": 10 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2527398, + "thread": 18 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2770039, + "thread": 13 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 2938172, + "thread": 24 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 3045063, + "thread": 30 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 3251939, + "thread": 12 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 3436496, + "thread": 17 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 3549869, + "thread": 14 + } + }, + { + "amount": "222.754490603", + "slot": { + "period": 3621181, + "thread": 19 + } + }, + { + "amount": "222.754490611", + "slot": { + "period": 3819861, + "thread": 29 + } + } + ], + "AU12X4LEzZntbuFVMKzcu7Hs7bjco2kuw4ULSgktRZK2RDR6o7HC9": [ + { + "amount": "126.560739995", + "slot": { + "period": 137046, + "thread": 19 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 285793, + "thread": 1 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 450154, + "thread": 4 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 583135, + "thread": 29 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 717355, + "thread": 27 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 908677, + "thread": 23 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1054025, + "thread": 19 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1190944, + "thread": 6 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1428191, + "thread": 30 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1592648, + "thread": 17 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1793167, + "thread": 28 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1918784, + "thread": 22 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 1998577, + "thread": 6 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 2216207, + "thread": 31 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 2325594, + "thread": 27 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 2524407, + "thread": 29 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 2651763, + "thread": 19 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 2834996, + "thread": 11 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 3004340, + "thread": 22 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 3287576, + "thread": 30 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 3312183, + "thread": 24 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 3492667, + "thread": 12 + } + }, + { + "amount": "126.560739995", + "slot": { + "period": 3627509, + "thread": 28 + } + }, + { + "amount": "126.560740006", + "slot": { + "period": 3920464, + "thread": 31 + } + } + ], + "AU12X4aHa9eUyieehCJ1Fe4qPqTyTfGNoBhm1AGj4diyZoTN2FKoa": [ + { + "amount": "317.490563660", + "slot": { + "period": 153078, + "thread": 9 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 183728, + "thread": 14 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 466471, + "thread": 18 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 506043, + "thread": 16 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 806779, + "thread": 7 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 953039, + "thread": 8 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1103112, + "thread": 31 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1170031, + "thread": 23 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1454612, + "thread": 8 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1541776, + "thread": 0 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1683071, + "thread": 21 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1882981, + "thread": 17 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 1982290, + "thread": 0 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 2153493, + "thread": 5 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 2358986, + "thread": 22 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 2536602, + "thread": 28 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 2690978, + "thread": 14 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 2809310, + "thread": 10 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 3041649, + "thread": 15 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 3209531, + "thread": 1 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 3333532, + "thread": 0 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 3466392, + "thread": 15 + } + }, + { + "amount": "317.490563660", + "slot": { + "period": 3712238, + "thread": 23 + } + }, + { + "amount": "317.490563670", + "slot": { + "period": 3797055, + "thread": 18 + } + } + ], + "AU12X4bYh3NToj7bh4P1ATbENeGj7ihmxHZFrhUJsy9k5o6Gc1AaR": [ + { + "amount": "459.773067647", + "slot": { + "period": 13917, + "thread": 7 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 308717, + "thread": 19 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 433498, + "thread": 27 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 612445, + "thread": 1 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 799637, + "thread": 22 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 878263, + "thread": 28 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1037049, + "thread": 1 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1165909, + "thread": 29 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1386738, + "thread": 19 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1562501, + "thread": 1 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1763687, + "thread": 15 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 1820156, + "thread": 14 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2037430, + "thread": 17 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2212591, + "thread": 4 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2362479, + "thread": 28 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2507597, + "thread": 15 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2710222, + "thread": 21 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 2938026, + "thread": 25 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 3034880, + "thread": 26 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 3214532, + "thread": 20 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 3329134, + "thread": 23 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 3455636, + "thread": 19 + } + }, + { + "amount": "459.773067647", + "slot": { + "period": 3621375, + "thread": 20 + } + }, + { + "amount": "459.773067642", + "slot": { + "period": 3816362, + "thread": 11 + } + } + ], + "AU12X7HLuT21Wsq7QQcKvv8ffLnqR8HMDVuGp86tCng6NSQt9875h": [ + { + "amount": "75.386344109", + "slot": { + "period": 60696, + "thread": 27 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 207754, + "thread": 8 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 340146, + "thread": 27 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 587631, + "thread": 29 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 801656, + "thread": 9 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 957259, + "thread": 25 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1032045, + "thread": 6 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1257674, + "thread": 3 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1385707, + "thread": 22 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1574235, + "thread": 10 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1658144, + "thread": 0 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 1812602, + "thread": 19 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2049974, + "thread": 8 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2178250, + "thread": 27 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2459609, + "thread": 17 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2531715, + "thread": 3 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2665392, + "thread": 10 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 2820885, + "thread": 25 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 3048647, + "thread": 10 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 3189054, + "thread": 16 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 3407838, + "thread": 16 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 3576664, + "thread": 28 + } + }, + { + "amount": "75.386344109", + "slot": { + "period": 3678084, + "thread": 24 + } + }, + { + "amount": "75.386344106", + "slot": { + "period": 3784550, + "thread": 16 + } + } + ], + "AU12X7JV3m5ehfj2pKZSjwdFMiZ4BTXdTpVLoRTuxyS9XVHJiiQid": [ + { + "amount": "88.861193586", + "slot": { + "period": 91872, + "thread": 29 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 306724, + "thread": 7 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 440320, + "thread": 12 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 512350, + "thread": 13 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 717704, + "thread": 28 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 980392, + "thread": 16 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1010428, + "thread": 23 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1303377, + "thread": 22 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1474463, + "thread": 0 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1635497, + "thread": 17 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1682757, + "thread": 16 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 1906057, + "thread": 25 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2051829, + "thread": 25 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2213051, + "thread": 12 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2299693, + "thread": 22 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2516441, + "thread": 6 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2694216, + "thread": 31 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 2905751, + "thread": 23 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 3013244, + "thread": 24 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 3139498, + "thread": 9 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 3324448, + "thread": 25 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 3586921, + "thread": 8 + } + }, + { + "amount": "88.861193586", + "slot": { + "period": 3729682, + "thread": 29 + } + }, + { + "amount": "88.861193589", + "slot": { + "period": 3946569, + "thread": 3 + } + } + ], + "AU12X7Qgdy812dvwrJj1TCQ7sS8TeZUE4gCvdLwoLzeEcWQLCJBDd": [ + { + "amount": "78.337422690", + "slot": { + "period": 126759, + "thread": 1 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 195113, + "thread": 20 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 328766, + "thread": 27 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 580516, + "thread": 8 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 807479, + "thread": 3 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 893855, + "thread": 11 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1048316, + "thread": 2 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1300020, + "thread": 12 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1325642, + "thread": 26 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1484190, + "thread": 9 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1677175, + "thread": 29 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 1887431, + "thread": 9 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2025680, + "thread": 23 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2228362, + "thread": 5 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2296600, + "thread": 30 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2600618, + "thread": 21 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2630753, + "thread": 4 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 2838142, + "thread": 13 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 3115589, + "thread": 27 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 3129830, + "thread": 30 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 3345620, + "thread": 11 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 3552249, + "thread": 11 + } + }, + { + "amount": "78.337422690", + "slot": { + "period": 3670763, + "thread": 27 + } + }, + { + "amount": "78.337422683", + "slot": { + "period": 3834113, + "thread": 7 + } + } + ], + "AU12X7dBhuYoWp43uFUjRG27pVmFj2oYTeoaSzDM6pHJgpcKuzgH8": [ + { + "amount": "134.796882875", + "slot": { + "period": 79422, + "thread": 14 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 239927, + "thread": 29 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 431323, + "thread": 13 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 498106, + "thread": 29 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 734492, + "thread": 0 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 933331, + "thread": 29 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1074225, + "thread": 22 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1242903, + "thread": 27 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1401153, + "thread": 11 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1517412, + "thread": 7 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1690031, + "thread": 28 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 1831754, + "thread": 27 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2008233, + "thread": 4 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2234737, + "thread": 23 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2449169, + "thread": 21 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2512177, + "thread": 15 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2645160, + "thread": 3 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 2876199, + "thread": 15 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 3047609, + "thread": 5 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 3248565, + "thread": 19 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 3436413, + "thread": 11 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 3481275, + "thread": 20 + } + }, + { + "amount": "134.796882875", + "slot": { + "period": 3772073, + "thread": 16 + } + }, + { + "amount": "134.796882884", + "slot": { + "period": 3910396, + "thread": 7 + } + } + ], + "AU12X9RbGvxcN16h5rAG846VexGX6BPEKbLgP9uSsNbEEFVNQQU41": [ + { + "amount": "206.463681442", + "slot": { + "period": 40283, + "thread": 27 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 318411, + "thread": 8 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 412663, + "thread": 26 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 609613, + "thread": 10 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 708323, + "thread": 8 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 920295, + "thread": 2 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1068715, + "thread": 24 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1297918, + "thread": 5 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1397231, + "thread": 29 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1609643, + "thread": 30 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1764231, + "thread": 2 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 1811596, + "thread": 3 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2031762, + "thread": 26 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2270354, + "thread": 2 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2419669, + "thread": 5 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2605458, + "thread": 9 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2709157, + "thread": 28 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2938407, + "thread": 14 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 2989278, + "thread": 17 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 3121422, + "thread": 4 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 3408704, + "thread": 30 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 3488163, + "thread": 13 + } + }, + { + "amount": "206.463681442", + "slot": { + "period": 3713713, + "thread": 30 + } + }, + { + "amount": "206.463681431", + "slot": { + "period": 3914923, + "thread": 27 + } + } + ], + "AU12X9Zj7hXDJJZ4bK7tnQYWzHETbHvyZmYJoqH1QktuDirpKRcSF": [ + { + "amount": "153.970045191", + "slot": { + "period": 116427, + "thread": 23 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 245956, + "thread": 26 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 335012, + "thread": 15 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 542208, + "thread": 22 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 655666, + "thread": 23 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 864274, + "thread": 15 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1118955, + "thread": 2 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1185844, + "thread": 30 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1383026, + "thread": 10 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1594430, + "thread": 31 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1757897, + "thread": 25 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 1865790, + "thread": 23 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2009768, + "thread": 27 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2199497, + "thread": 2 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2435149, + "thread": 17 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2507527, + "thread": 25 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2767844, + "thread": 3 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 2929752, + "thread": 15 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 3090016, + "thread": 29 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 3164483, + "thread": 28 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 3380829, + "thread": 17 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 3555173, + "thread": 7 + } + }, + { + "amount": "153.970045191", + "slot": { + "period": 3720386, + "thread": 6 + } + }, + { + "amount": "153.970045186", + "slot": { + "period": 3898584, + "thread": 19 + } + } + ], + "AU12X9c9N74bfrJCZK7DGoGSeEJsC5pyDhQynDjqhQHkDN5GK1865": [ + { + "amount": "88.822790331", + "slot": { + "period": 164573, + "thread": 5 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 289611, + "thread": 5 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 427563, + "thread": 27 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 519521, + "thread": 21 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 808560, + "thread": 1 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 926564, + "thread": 14 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1144914, + "thread": 4 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1175469, + "thread": 12 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1318950, + "thread": 10 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1495649, + "thread": 31 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1668830, + "thread": 4 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 1954590, + "thread": 16 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2085446, + "thread": 29 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2228945, + "thread": 2 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2446085, + "thread": 21 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2545208, + "thread": 19 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2721346, + "thread": 7 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2932675, + "thread": 4 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 2980477, + "thread": 1 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 3238828, + "thread": 2 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 3333511, + "thread": 11 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 3613906, + "thread": 7 + } + }, + { + "amount": "88.822790331", + "slot": { + "period": 3712445, + "thread": 6 + } + }, + { + "amount": "88.822790323", + "slot": { + "period": 3838438, + "thread": 2 + } + } + ], + "AU12XBqrSMG5pM5sT1DgvhwGYoZohF3sy42S1fwpVet8GJgUzCrBZ": [ + { + "amount": "125.351854767", + "slot": { + "period": 140774, + "thread": 21 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 224958, + "thread": 27 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 473279, + "thread": 19 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 586394, + "thread": 4 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 768435, + "thread": 20 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 931233, + "thread": 5 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1129112, + "thread": 13 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1248352, + "thread": 3 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1354739, + "thread": 30 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1543644, + "thread": 8 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1741916, + "thread": 11 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 1959757, + "thread": 31 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2143554, + "thread": 8 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2162000, + "thread": 18 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2308508, + "thread": 3 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2609303, + "thread": 24 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2715765, + "thread": 23 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 2942781, + "thread": 19 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 3059971, + "thread": 22 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 3162164, + "thread": 7 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 3288930, + "thread": 18 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 3575656, + "thread": 10 + } + }, + { + "amount": "125.351854767", + "slot": { + "period": 3776133, + "thread": 14 + } + }, + { + "amount": "125.351854759", + "slot": { + "period": 3941027, + "thread": 29 + } + } + ], + "AU12XCP1nXkafNPLNyqs4LJEprMUzVxD3wJLsKG53m1DTaGkrURSa": [ + { + "amount": "81.903084131", + "slot": { + "period": 47121, + "thread": 30 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 225667, + "thread": 26 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 407844, + "thread": 19 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 585763, + "thread": 23 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 698829, + "thread": 25 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 969979, + "thread": 29 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1031650, + "thread": 17 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1218922, + "thread": 17 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1379207, + "thread": 27 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1513398, + "thread": 14 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1791571, + "thread": 18 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 1961139, + "thread": 29 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2019576, + "thread": 15 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2221509, + "thread": 12 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2388207, + "thread": 15 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2472435, + "thread": 27 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2732794, + "thread": 2 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 2808859, + "thread": 17 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 3013046, + "thread": 13 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 3163077, + "thread": 29 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 3366393, + "thread": 17 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 3506874, + "thread": 4 + } + }, + { + "amount": "81.903084131", + "slot": { + "period": 3768104, + "thread": 19 + } + }, + { + "amount": "81.903084137", + "slot": { + "period": 3798486, + "thread": 27 + } + } + ], + "AU12XCgw9EcdaiEA4iD9vM9UR3UndTMC4v3MmaofKmD7afazXT4CH": [ + { + "amount": "631.191064426", + "slot": { + "period": 49423, + "thread": 5 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 220318, + "thread": 2 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 447770, + "thread": 18 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 573314, + "thread": 10 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 727959, + "thread": 27 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 955742, + "thread": 25 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1013826, + "thread": 11 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1267410, + "thread": 18 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1389579, + "thread": 23 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1529502, + "thread": 7 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1698000, + "thread": 26 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 1890030, + "thread": 1 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2085699, + "thread": 19 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2203197, + "thread": 15 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2376069, + "thread": 23 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2588161, + "thread": 23 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2775147, + "thread": 27 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 2807018, + "thread": 18 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 3003654, + "thread": 21 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 3224255, + "thread": 11 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 3387362, + "thread": 12 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 3532480, + "thread": 1 + } + }, + { + "amount": "631.191064426", + "slot": { + "period": 3633462, + "thread": 26 + } + }, + { + "amount": "631.191064421", + "slot": { + "period": 3918992, + "thread": 15 + } + } + ], + "AU12XDJqQZE5iUgwToti5eZGT63Rn6W1GEGavHnWADz1XxgVvqNGK": [ + { + "amount": "178.894016807", + "slot": { + "period": 152042, + "thread": 25 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 245487, + "thread": 4 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 430367, + "thread": 25 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 504454, + "thread": 16 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 753620, + "thread": 22 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 892219, + "thread": 2 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1118261, + "thread": 0 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1296627, + "thread": 10 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1358973, + "thread": 15 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1542445, + "thread": 24 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1767486, + "thread": 17 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 1809723, + "thread": 17 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2051446, + "thread": 27 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2263536, + "thread": 3 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2369736, + "thread": 23 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2488006, + "thread": 18 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2703579, + "thread": 12 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 2919346, + "thread": 16 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 3080425, + "thread": 1 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 3261336, + "thread": 7 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 3362600, + "thread": 8 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 3478462, + "thread": 18 + } + }, + { + "amount": "178.894016807", + "slot": { + "period": 3750336, + "thread": 28 + } + }, + { + "amount": "178.894016809", + "slot": { + "period": 3798290, + "thread": 24 + } + } + ], + "AU12XDZeYpZ9ZxngEkGFwcNUhvpLrBCp4fuXSKd999EGZwMtwcgZm": [ + { + "amount": "244.426957623", + "slot": { + "period": 22739, + "thread": 30 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 244364, + "thread": 7 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 359689, + "thread": 7 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 495135, + "thread": 13 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 666781, + "thread": 5 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 874689, + "thread": 8 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1062362, + "thread": 8 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1313152, + "thread": 11 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1368220, + "thread": 11 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1625742, + "thread": 28 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1679529, + "thread": 30 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 1930890, + "thread": 1 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2096690, + "thread": 5 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2155859, + "thread": 2 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2385017, + "thread": 19 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2483252, + "thread": 12 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2733345, + "thread": 25 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 2914747, + "thread": 17 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 3028537, + "thread": 2 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 3228738, + "thread": 4 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 3379855, + "thread": 17 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 3479767, + "thread": 19 + } + }, + { + "amount": "244.426957623", + "slot": { + "period": 3714626, + "thread": 1 + } + }, + { + "amount": "244.426957616", + "slot": { + "period": 3794094, + "thread": 13 + } + } + ], + "AU12XERKnNBDoiA8Af6UrcihKfhcpFHVRnnkQYxr17YMvqPvLRZVg": [ + { + "amount": "192.067830342", + "slot": { + "period": 50664, + "thread": 7 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 317212, + "thread": 22 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 337658, + "thread": 6 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 514249, + "thread": 4 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 654676, + "thread": 25 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 890085, + "thread": 18 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 997705, + "thread": 5 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1303802, + "thread": 9 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1369536, + "thread": 24 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1532029, + "thread": 8 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1695263, + "thread": 9 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1870230, + "thread": 9 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 1988647, + "thread": 14 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2225623, + "thread": 24 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2409119, + "thread": 18 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2520959, + "thread": 3 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2655023, + "thread": 15 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2915472, + "thread": 12 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 2986467, + "thread": 12 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 3225002, + "thread": 30 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 3360515, + "thread": 4 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 3559438, + "thread": 10 + } + }, + { + "amount": "192.067830342", + "slot": { + "period": 3686820, + "thread": 21 + } + }, + { + "amount": "192.067830341", + "slot": { + "period": 3916139, + "thread": 7 + } + } + ], + "AU12XF6VH9d9sNNWiu5HCkDrPNsPRpAa2WGwy5RhFCWSzuyDS7ZVx": [ + { + "amount": "335.070834984", + "slot": { + "period": 11409, + "thread": 30 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 230328, + "thread": 23 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 455231, + "thread": 26 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 531968, + "thread": 16 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 705537, + "thread": 25 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 977097, + "thread": 20 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1075051, + "thread": 27 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1298528, + "thread": 27 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1406820, + "thread": 12 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1618567, + "thread": 19 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1803717, + "thread": 15 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1880519, + "thread": 20 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 1985863, + "thread": 17 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 2177605, + "thread": 3 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 2337496, + "thread": 1 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 2556723, + "thread": 15 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 2754512, + "thread": 22 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 2843832, + "thread": 19 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 3090978, + "thread": 11 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 3182710, + "thread": 16 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 3359025, + "thread": 14 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 3498084, + "thread": 9 + } + }, + { + "amount": "335.070834984", + "slot": { + "period": 3745551, + "thread": 9 + } + }, + { + "amount": "335.070834988", + "slot": { + "period": 3803547, + "thread": 14 + } + } + ], + "AU12XF8U3HohztPAMddfyeBMdNYBWgNmPphZdmYfyinLouNfRH9Fu": [ + { + "amount": "86.123050093", + "slot": { + "period": 164396, + "thread": 13 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 222634, + "thread": 11 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 447758, + "thread": 7 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 557283, + "thread": 8 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 782100, + "thread": 28 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 952003, + "thread": 10 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1062437, + "thread": 20 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1186697, + "thread": 1 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1448653, + "thread": 23 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1583188, + "thread": 30 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1804381, + "thread": 27 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 1832021, + "thread": 26 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2110572, + "thread": 8 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2202439, + "thread": 25 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2303820, + "thread": 10 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2561259, + "thread": 25 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2731946, + "thread": 6 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 2918229, + "thread": 3 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 3043200, + "thread": 28 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 3189044, + "thread": 27 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 3319002, + "thread": 30 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 3605485, + "thread": 11 + } + }, + { + "amount": "86.123050093", + "slot": { + "period": 3767850, + "thread": 26 + } + }, + { + "amount": "86.123050088", + "slot": { + "period": 3945813, + "thread": 25 + } + } + ], + "AU12XFMEHpjKNs8FJcqwUUcSrjkKR5FHNxwkf36s52B3MueznLNKE": [ + { + "amount": "116.548829410", + "slot": { + "period": 59820, + "thread": 22 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 279324, + "thread": 20 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 388310, + "thread": 4 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 543967, + "thread": 5 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 716191, + "thread": 27 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 946948, + "thread": 7 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1129815, + "thread": 26 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1215876, + "thread": 23 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1376535, + "thread": 9 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1548720, + "thread": 26 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1777252, + "thread": 22 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 1922529, + "thread": 17 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2036708, + "thread": 5 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2182346, + "thread": 27 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2350464, + "thread": 18 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2554016, + "thread": 21 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2686689, + "thread": 3 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 2814162, + "thread": 17 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 3068280, + "thread": 19 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 3208736, + "thread": 0 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 3336058, + "thread": 21 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 3557887, + "thread": 18 + } + }, + { + "amount": "116.548829410", + "slot": { + "period": 3650371, + "thread": 18 + } + }, + { + "amount": "116.548829414", + "slot": { + "period": 3837990, + "thread": 13 + } + } + ], + "AU12XFP9Vdi9agXRXWxFZZJAavDE1Z537TmYS1uBjPxGoHuzsZjQJ": [ + { + "amount": "379.013917564", + "slot": { + "period": 11011, + "thread": 11 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 182684, + "thread": 6 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 442773, + "thread": 20 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 525187, + "thread": 10 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 787713, + "thread": 11 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 910339, + "thread": 6 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1083998, + "thread": 1 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1169359, + "thread": 20 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1338953, + "thread": 20 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1532415, + "thread": 30 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1709681, + "thread": 12 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 1814898, + "thread": 26 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2033253, + "thread": 0 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2269747, + "thread": 2 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2375440, + "thread": 24 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2518056, + "thread": 30 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2752738, + "thread": 21 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 2845018, + "thread": 23 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 3107391, + "thread": 1 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 3255386, + "thread": 18 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 3321866, + "thread": 19 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 3609202, + "thread": 12 + } + }, + { + "amount": "379.013917564", + "slot": { + "period": 3686042, + "thread": 20 + } + }, + { + "amount": "379.013917566", + "slot": { + "period": 3913235, + "thread": 5 + } + } + ], + "AU12XFZVKCXp4vxW5HtmAm8M87BMJTpCm41G1fhazkMESEXzxrJqq": [ + { + "amount": "137.204438688", + "slot": { + "period": 94930, + "thread": 0 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 170336, + "thread": 24 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 350655, + "thread": 24 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 562717, + "thread": 25 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 721337, + "thread": 28 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 860598, + "thread": 10 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1139364, + "thread": 7 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1240712, + "thread": 24 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1358121, + "thread": 28 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1499249, + "thread": 15 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1689304, + "thread": 3 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 1854323, + "thread": 20 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2007752, + "thread": 19 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2289025, + "thread": 18 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2453232, + "thread": 8 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2517633, + "thread": 7 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2722526, + "thread": 15 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 2831157, + "thread": 3 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 3010222, + "thread": 14 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 3272070, + "thread": 28 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 3302021, + "thread": 3 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 3518684, + "thread": 7 + } + }, + { + "amount": "137.204438688", + "slot": { + "period": 3737942, + "thread": 3 + } + }, + { + "amount": "137.204438676", + "slot": { + "period": 3865012, + "thread": 19 + } + } + ], + "AU12XFfhpqsW55pHreYoavLj7AejCHYVdWjtDksAeswa2ZASWijnz": [ + { + "amount": "210.987911892", + "slot": { + "period": 100244, + "thread": 21 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 242936, + "thread": 26 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 362180, + "thread": 31 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 548180, + "thread": 10 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 732968, + "thread": 12 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 898711, + "thread": 10 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1102457, + "thread": 2 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1174390, + "thread": 4 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1440812, + "thread": 16 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1645034, + "thread": 17 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1754345, + "thread": 0 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 1975304, + "thread": 22 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2104631, + "thread": 27 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2261901, + "thread": 6 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2402012, + "thread": 22 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2618838, + "thread": 22 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2683694, + "thread": 19 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 2854742, + "thread": 26 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 3077924, + "thread": 0 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 3122267, + "thread": 20 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 3334070, + "thread": 2 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 3562193, + "thread": 7 + } + }, + { + "amount": "210.987911892", + "slot": { + "period": 3740463, + "thread": 11 + } + }, + { + "amount": "210.987911900", + "slot": { + "period": 3909800, + "thread": 18 + } + } + ], + "AU12XG1fvMt9pXtB2gjp2UEnNieDVNVdYLYn8NUAYpbBdvgw1Qc6K": [ + { + "amount": "57.502059527", + "slot": { + "period": 129582, + "thread": 10 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 206673, + "thread": 28 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 454018, + "thread": 8 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 573213, + "thread": 21 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 755476, + "thread": 27 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 901034, + "thread": 2 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1137091, + "thread": 1 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1254000, + "thread": 12 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1408817, + "thread": 26 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1505844, + "thread": 2 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1755190, + "thread": 15 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 1950207, + "thread": 29 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2011900, + "thread": 27 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2156930, + "thread": 8 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2426380, + "thread": 29 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2586996, + "thread": 24 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2661676, + "thread": 11 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 2859633, + "thread": 21 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 3022711, + "thread": 6 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 3165157, + "thread": 0 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 3429940, + "thread": 27 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 3601231, + "thread": 20 + } + }, + { + "amount": "57.502059527", + "slot": { + "period": 3756548, + "thread": 4 + } + }, + { + "amount": "57.502059518", + "slot": { + "period": 3889861, + "thread": 4 + } + } + ], + "AU12XGFtfWDTfXm6vpq1VXuRqZ9zodEg8JMc2QGBpG9d7GJCguCQp": [ + { + "amount": "215.719633142", + "slot": { + "period": 11692, + "thread": 14 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 191326, + "thread": 18 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 373476, + "thread": 20 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 518499, + "thread": 2 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 773006, + "thread": 23 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 868889, + "thread": 24 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1050975, + "thread": 10 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1304991, + "thread": 8 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1348609, + "thread": 14 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1518054, + "thread": 18 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1731150, + "thread": 12 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 1949574, + "thread": 1 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2122441, + "thread": 13 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2241039, + "thread": 26 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2376605, + "thread": 10 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2517357, + "thread": 11 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2687304, + "thread": 24 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 2854270, + "thread": 10 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 3105709, + "thread": 3 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 3191340, + "thread": 28 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 3384629, + "thread": 9 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 3554579, + "thread": 7 + } + }, + { + "amount": "215.719633142", + "slot": { + "period": 3737332, + "thread": 4 + } + }, + { + "amount": "215.719633153", + "slot": { + "period": 3859336, + "thread": 28 + } + } + ], + "AU12XGQTK9FZdyGyb4Mtibir8LVAC2SqF2NkB1AW1QWdaA8h72Zcf": [ + { + "amount": "235.413378382", + "slot": { + "period": 68305, + "thread": 26 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 243137, + "thread": 1 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 482159, + "thread": 29 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 576024, + "thread": 5 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 680587, + "thread": 10 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 832232, + "thread": 27 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 986375, + "thread": 12 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1160834, + "thread": 0 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1461969, + "thread": 26 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1588349, + "thread": 13 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1766790, + "thread": 10 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1956814, + "thread": 18 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 1977852, + "thread": 16 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 2170379, + "thread": 27 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 2297897, + "thread": 19 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 2619361, + "thread": 26 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 2651745, + "thread": 1 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 2867076, + "thread": 5 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 3084780, + "thread": 15 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 3186939, + "thread": 12 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 3450109, + "thread": 20 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 3499860, + "thread": 1 + } + }, + { + "amount": "235.413378382", + "slot": { + "period": 3691722, + "thread": 5 + } + }, + { + "amount": "235.413378392", + "slot": { + "period": 3796010, + "thread": 16 + } + } + ], + "AU12XGrryRaVwZvQFMGYepnR9zPxyZPc2ofCTvd9vQpZvr45RH1jk": [ + { + "amount": "413.421685578", + "slot": { + "period": 53538, + "thread": 9 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 294384, + "thread": 10 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 344594, + "thread": 24 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 566972, + "thread": 19 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 747632, + "thread": 28 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 837374, + "thread": 30 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1079249, + "thread": 14 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1281136, + "thread": 1 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1430303, + "thread": 11 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1607495, + "thread": 22 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1651429, + "thread": 5 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 1950041, + "thread": 0 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2101130, + "thread": 31 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2189370, + "thread": 14 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2441234, + "thread": 0 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2588241, + "thread": 31 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2709901, + "thread": 2 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 2813427, + "thread": 24 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 3118940, + "thread": 29 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 3212676, + "thread": 3 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 3335984, + "thread": 1 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 3553352, + "thread": 16 + } + }, + { + "amount": "413.421685578", + "slot": { + "period": 3666161, + "thread": 20 + } + }, + { + "amount": "413.421685571", + "slot": { + "period": 3817173, + "thread": 3 + } + } + ], + "AU12XHppwQbMtYKZiB5hPfiyk8WeuWXt3Rt6UF3X2SE8CcHqofiAi": [ + { + "amount": "55.918193029", + "slot": { + "period": 90831, + "thread": 10 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 171962, + "thread": 15 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 462357, + "thread": 8 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 498099, + "thread": 13 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 663289, + "thread": 19 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 921390, + "thread": 27 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1084341, + "thread": 23 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1213436, + "thread": 8 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1427709, + "thread": 21 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1579578, + "thread": 25 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1667235, + "thread": 11 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 1911389, + "thread": 7 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2131333, + "thread": 15 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2236682, + "thread": 11 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2310380, + "thread": 10 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2481999, + "thread": 7 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2767965, + "thread": 15 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 2938820, + "thread": 6 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 3099713, + "thread": 16 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 3231705, + "thread": 24 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 3432958, + "thread": 12 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 3595852, + "thread": 13 + } + }, + { + "amount": "55.918193029", + "slot": { + "period": 3629119, + "thread": 8 + } + }, + { + "amount": "55.918193025", + "slot": { + "period": 3894214, + "thread": 31 + } + } + ], + "AU12XKGGwJwuRQmDQMupvU9HCDHdtda8QYrTKrcSgcaJNrfJNrB5u": [ + { + "amount": "105.466198433", + "slot": { + "period": 160704, + "thread": 5 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 298199, + "thread": 24 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 435378, + "thread": 18 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 546730, + "thread": 7 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 730834, + "thread": 8 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 975776, + "thread": 14 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1037658, + "thread": 14 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1158877, + "thread": 29 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1367023, + "thread": 29 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1644298, + "thread": 3 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1656855, + "thread": 21 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 1935940, + "thread": 13 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2120205, + "thread": 17 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2160374, + "thread": 23 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2389363, + "thread": 2 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2482760, + "thread": 12 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2765723, + "thread": 1 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 2939407, + "thread": 17 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 3080384, + "thread": 6 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 3198094, + "thread": 19 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 3426610, + "thread": 6 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 3504568, + "thread": 26 + } + }, + { + "amount": "105.466198433", + "slot": { + "period": 3628786, + "thread": 22 + } + }, + { + "amount": "105.466198426", + "slot": { + "period": 3793443, + "thread": 2 + } + } + ], + "AU12XLqxcxcMt8BUW3Mt8GJJFcGigEbvuSbD1w21wk5CvYNfG4oKA": [ + { + "amount": "65.573377613", + "slot": { + "period": 151788, + "thread": 7 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 270803, + "thread": 26 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 335682, + "thread": 12 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 596688, + "thread": 28 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 703251, + "thread": 23 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 947690, + "thread": 31 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1029948, + "thread": 24 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1294872, + "thread": 22 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1328082, + "thread": 15 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1543866, + "thread": 7 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1778177, + "thread": 20 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 1961215, + "thread": 5 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2079767, + "thread": 20 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2159442, + "thread": 28 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2404510, + "thread": 27 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2557611, + "thread": 11 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2717281, + "thread": 8 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2924454, + "thread": 6 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 2969689, + "thread": 19 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 3237878, + "thread": 27 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 3428278, + "thread": 28 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 3460837, + "thread": 5 + } + }, + { + "amount": "65.573377613", + "slot": { + "period": 3756849, + "thread": 29 + } + }, + { + "amount": "65.573377612", + "slot": { + "period": 3927259, + "thread": 28 + } + } + ], + "AU12XLuzYkabNZDhdXnnTsVbXeR5aZiCYPcc7AHZJmMGhWHh7Vy8L": [ + { + "amount": "118.464751047", + "slot": { + "period": 154938, + "thread": 17 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 284917, + "thread": 31 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 346137, + "thread": 9 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 517010, + "thread": 16 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 726556, + "thread": 28 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 928399, + "thread": 17 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1005842, + "thread": 27 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1215347, + "thread": 14 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1351382, + "thread": 31 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1512377, + "thread": 19 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1777987, + "thread": 3 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 1886718, + "thread": 25 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2006550, + "thread": 0 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2200314, + "thread": 22 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2297254, + "thread": 29 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2517744, + "thread": 0 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2730716, + "thread": 18 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 2919833, + "thread": 10 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 3106660, + "thread": 24 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 3121448, + "thread": 11 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 3293692, + "thread": 4 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 3462482, + "thread": 25 + } + }, + { + "amount": "118.464751047", + "slot": { + "period": 3729267, + "thread": 4 + } + }, + { + "amount": "118.464751054", + "slot": { + "period": 3836843, + "thread": 15 + } + } + ], + "AU12XM8FDj9dEk4kLFtti4Y55knMnCfDHwdtTxfEgmGaEDYUJY2Z3": [ + { + "amount": "118.525540766", + "slot": { + "period": 121416, + "thread": 29 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 212758, + "thread": 8 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 463553, + "thread": 3 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 535150, + "thread": 24 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 693729, + "thread": 8 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 919695, + "thread": 18 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1149622, + "thread": 5 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1221422, + "thread": 12 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1347586, + "thread": 7 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1485096, + "thread": 13 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1709257, + "thread": 23 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 1889302, + "thread": 7 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2071622, + "thread": 16 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2179845, + "thread": 2 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2383072, + "thread": 18 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2558980, + "thread": 11 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2650481, + "thread": 7 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 2806254, + "thread": 16 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 3061418, + "thread": 28 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 3230657, + "thread": 15 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 3358595, + "thread": 1 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 3527812, + "thread": 12 + } + }, + { + "amount": "118.525540766", + "slot": { + "period": 3694988, + "thread": 7 + } + }, + { + "amount": "118.525540772", + "slot": { + "period": 3844451, + "thread": 28 + } + } + ], + "AU12XMPbouJaut1AvK6FuqYtppZ8seJgWJ9xxXoTNFbvAHSVGf9nS": [ + { + "amount": "84.195931230", + "slot": { + "period": 33772, + "thread": 18 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 172571, + "thread": 30 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 359539, + "thread": 7 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 607130, + "thread": 26 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 670309, + "thread": 19 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 846441, + "thread": 5 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1032037, + "thread": 17 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1274861, + "thread": 15 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1470962, + "thread": 0 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1518115, + "thread": 27 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1751849, + "thread": 17 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 1940231, + "thread": 28 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2081732, + "thread": 9 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2292755, + "thread": 22 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2336861, + "thread": 9 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2539297, + "thread": 29 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2702328, + "thread": 20 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2898641, + "thread": 7 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 2985171, + "thread": 25 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 3195092, + "thread": 20 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 3348725, + "thread": 21 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 3574048, + "thread": 12 + } + }, + { + "amount": "84.195931230", + "slot": { + "period": 3757489, + "thread": 15 + } + }, + { + "amount": "84.195931224", + "slot": { + "period": 3808549, + "thread": 5 + } + } + ], + "AU12XMmgDt3SPu82UxzsvggCBZV9JiCMrzJxksGMsDc6gEsmapkFH": [ + { + "amount": "298.944596239", + "slot": { + "period": 153147, + "thread": 19 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 194652, + "thread": 2 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 376365, + "thread": 22 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 623903, + "thread": 10 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 732900, + "thread": 23 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 928472, + "thread": 8 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1020342, + "thread": 22 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1216997, + "thread": 15 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1363536, + "thread": 25 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1531473, + "thread": 20 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1748591, + "thread": 16 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 1852169, + "thread": 26 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2024625, + "thread": 1 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2151646, + "thread": 20 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2414487, + "thread": 31 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2496918, + "thread": 18 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2735826, + "thread": 23 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 2911093, + "thread": 2 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 3013026, + "thread": 31 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 3267313, + "thread": 22 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 3384111, + "thread": 16 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 3473505, + "thread": 11 + } + }, + { + "amount": "298.944596239", + "slot": { + "period": 3674808, + "thread": 29 + } + }, + { + "amount": "298.944596250", + "slot": { + "period": 3921340, + "thread": 6 + } + } + ], + "AU12XN6ecGGEFSepazkDMVFuGgHradJu6BBvEpw7FGbGg6Yn9iBaK": [ + { + "amount": "229.534987138", + "slot": { + "period": 32835, + "thread": 27 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 272903, + "thread": 28 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 358643, + "thread": 12 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 576841, + "thread": 30 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 807004, + "thread": 18 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 929489, + "thread": 3 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1096839, + "thread": 0 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1261720, + "thread": 13 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1428622, + "thread": 18 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1555482, + "thread": 16 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1782611, + "thread": 21 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 1922699, + "thread": 0 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2074441, + "thread": 28 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2267129, + "thread": 21 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2335507, + "thread": 24 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2525970, + "thread": 27 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2732827, + "thread": 3 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 2861458, + "thread": 15 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 3013907, + "thread": 6 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 3196936, + "thread": 2 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 3420920, + "thread": 17 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 3482648, + "thread": 3 + } + }, + { + "amount": "229.534987138", + "slot": { + "period": 3704579, + "thread": 27 + } + }, + { + "amount": "229.534987135", + "slot": { + "period": 3787645, + "thread": 19 + } + } + ], + "AU12XP7Wojabx7uvKkW98Lw7YH9863ddxvUsL9P7s7hVGkRhXWNir": [ + { + "amount": "209.915023814", + "slot": { + "period": 139949, + "thread": 19 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 284246, + "thread": 23 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 373770, + "thread": 17 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 621791, + "thread": 31 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 784512, + "thread": 3 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 889321, + "thread": 23 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1116091, + "thread": 21 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1187983, + "thread": 17 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1405839, + "thread": 21 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1513487, + "thread": 21 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1710773, + "thread": 3 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 1922423, + "thread": 12 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2107382, + "thread": 23 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2179028, + "thread": 0 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2355312, + "thread": 7 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2588933, + "thread": 10 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2783395, + "thread": 14 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2865064, + "thread": 30 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 2966347, + "thread": 6 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 3203009, + "thread": 12 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 3381751, + "thread": 30 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 3541429, + "thread": 12 + } + }, + { + "amount": "209.915023814", + "slot": { + "period": 3680525, + "thread": 10 + } + }, + { + "amount": "209.915023807", + "slot": { + "period": 3934239, + "thread": 28 + } + } + ], + "AU12XPrEyBcvhiqWRAiyLzmWqi2enHtHyT6gaALSiTYQQA3rSnCew": [ + { + "amount": "269.766129532", + "slot": { + "period": 18440, + "thread": 30 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 305823, + "thread": 17 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 431131, + "thread": 0 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 646565, + "thread": 24 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 679558, + "thread": 12 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 861285, + "thread": 17 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1004159, + "thread": 5 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1286644, + "thread": 25 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1331894, + "thread": 22 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1611630, + "thread": 1 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1753560, + "thread": 28 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 1852355, + "thread": 31 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2092079, + "thread": 28 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2281650, + "thread": 12 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2443059, + "thread": 20 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2610488, + "thread": 2 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2760859, + "thread": 28 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 2926482, + "thread": 4 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 3095325, + "thread": 27 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 3128301, + "thread": 20 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 3307866, + "thread": 28 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 3497511, + "thread": 8 + } + }, + { + "amount": "269.766129532", + "slot": { + "period": 3744505, + "thread": 16 + } + }, + { + "amount": "269.766129520", + "slot": { + "period": 3806698, + "thread": 28 + } + } + ], + "AU12XS5FyRsd6JzmCHPmKxNq9j2N5UwWPvFhK9SYANb1zz4tCzXc2": [ + { + "amount": "154.185321454", + "slot": { + "period": 22174, + "thread": 26 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 263133, + "thread": 9 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 447837, + "thread": 24 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 590116, + "thread": 25 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 754829, + "thread": 26 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 907735, + "thread": 25 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1013858, + "thread": 12 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1218782, + "thread": 22 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1442807, + "thread": 22 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1539257, + "thread": 23 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1808511, + "thread": 13 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1851529, + "thread": 20 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 1998985, + "thread": 10 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 2170036, + "thread": 25 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 2456925, + "thread": 6 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 2481700, + "thread": 11 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 2742517, + "thread": 25 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 2879562, + "thread": 29 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 3107244, + "thread": 12 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 3168577, + "thread": 26 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 3313970, + "thread": 12 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 3543784, + "thread": 10 + } + }, + { + "amount": "154.185321454", + "slot": { + "period": 3699085, + "thread": 24 + } + }, + { + "amount": "154.185321444", + "slot": { + "period": 3810276, + "thread": 6 + } + } + ], + "AU12XSJtoaJoFHMgFpr9xKv34PJK9i9gaFNkiE2rpErqQkprS3RC5": [ + { + "amount": "84.285248678", + "slot": { + "period": 44902, + "thread": 20 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 260491, + "thread": 21 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 417449, + "thread": 10 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 639950, + "thread": 0 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 657696, + "thread": 21 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 864069, + "thread": 18 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1139803, + "thread": 4 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1285011, + "thread": 28 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1337100, + "thread": 5 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1569413, + "thread": 21 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1668926, + "thread": 11 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 1856968, + "thread": 31 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2086043, + "thread": 16 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2217145, + "thread": 9 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2413128, + "thread": 28 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2501996, + "thread": 1 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2759662, + "thread": 4 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 2816783, + "thread": 31 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 3027702, + "thread": 19 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 3160993, + "thread": 12 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 3362331, + "thread": 10 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 3584616, + "thread": 11 + } + }, + { + "amount": "84.285248678", + "slot": { + "period": 3751911, + "thread": 7 + } + }, + { + "amount": "84.285248683", + "slot": { + "period": 3896460, + "thread": 31 + } + } + ], + "AU12XSSdp6oqiKMMzaUFSeq4dVhAJunSusVcFPFxkNhi9Kp5HXWXM": [ + { + "amount": "165.598352776", + "slot": { + "period": 112697, + "thread": 22 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 241233, + "thread": 3 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 326016, + "thread": 27 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 518799, + "thread": 5 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 813093, + "thread": 24 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 939967, + "thread": 18 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1077216, + "thread": 0 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1316842, + "thread": 14 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1361391, + "thread": 4 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1635634, + "thread": 1 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1792785, + "thread": 8 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 1943450, + "thread": 10 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2054842, + "thread": 7 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2188351, + "thread": 16 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2315392, + "thread": 27 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2594363, + "thread": 6 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2772688, + "thread": 0 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2924791, + "thread": 14 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 2959092, + "thread": 1 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 3279845, + "thread": 0 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 3433716, + "thread": 2 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 3548348, + "thread": 26 + } + }, + { + "amount": "165.598352776", + "slot": { + "period": 3640424, + "thread": 26 + } + }, + { + "amount": "165.598352786", + "slot": { + "period": 3883606, + "thread": 8 + } + } + ], + "AU12XSi9oUPPnazW9DiSsJzCxEG5jikoxk6aG5SgFic9Gy5aTpvyH": [ + { + "amount": "54.777799953", + "slot": { + "period": 37201, + "thread": 28 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 173476, + "thread": 25 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 469198, + "thread": 6 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 619431, + "thread": 15 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 800726, + "thread": 27 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 938524, + "thread": 20 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1038376, + "thread": 4 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1155311, + "thread": 29 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1466521, + "thread": 11 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1521735, + "thread": 19 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1704516, + "thread": 22 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 1868081, + "thread": 8 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2053452, + "thread": 8 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2269701, + "thread": 28 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2365678, + "thread": 13 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2599746, + "thread": 24 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2767966, + "thread": 21 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 2792985, + "thread": 20 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 3098406, + "thread": 23 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 3220879, + "thread": 24 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 3438091, + "thread": 13 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 3606325, + "thread": 11 + } + }, + { + "amount": "54.777799953", + "slot": { + "period": 3650270, + "thread": 31 + } + }, + { + "amount": "54.777799962", + "slot": { + "period": 3890965, + "thread": 15 + } + } + ], + "AU12XT9hwKqs3hbx2DpfGofBvtLEDCK3TMv1acKPTQ155zwAAjX5i": [ + { + "amount": "162.106386789", + "slot": { + "period": 109661, + "thread": 23 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 281732, + "thread": 17 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 405881, + "thread": 28 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 642582, + "thread": 20 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 781657, + "thread": 29 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 960690, + "thread": 28 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1020554, + "thread": 19 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1179205, + "thread": 31 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1428760, + "thread": 28 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1585363, + "thread": 18 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1779327, + "thread": 28 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 1811162, + "thread": 19 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2114724, + "thread": 15 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2264619, + "thread": 26 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2455314, + "thread": 6 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2476814, + "thread": 10 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2729058, + "thread": 12 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 2945589, + "thread": 29 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 3074877, + "thread": 19 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 3189222, + "thread": 14 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 3290216, + "thread": 30 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 3501859, + "thread": 12 + } + }, + { + "amount": "162.106386789", + "slot": { + "period": 3675135, + "thread": 14 + } + }, + { + "amount": "162.106386792", + "slot": { + "period": 3798191, + "thread": 5 + } + } + ], + "AU12XTFDMnFhSP3FopZ8ahnsVWmtxDascpgQgaL5q9x6bndg3b5NQ": [ + { + "amount": "87.912092292", + "slot": { + "period": 123106, + "thread": 17 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 230211, + "thread": 15 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 344104, + "thread": 4 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 611716, + "thread": 22 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 730089, + "thread": 24 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 942261, + "thread": 27 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1091180, + "thread": 13 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1240420, + "thread": 10 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1466033, + "thread": 4 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1625414, + "thread": 8 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1730450, + "thread": 29 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1872021, + "thread": 9 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 1998868, + "thread": 9 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 2166948, + "thread": 23 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 2332130, + "thread": 14 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 2549207, + "thread": 21 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 2731858, + "thread": 5 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 2897121, + "thread": 20 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 3069301, + "thread": 10 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 3268075, + "thread": 23 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 3297655, + "thread": 29 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 3615011, + "thread": 1 + } + }, + { + "amount": "87.912092292", + "slot": { + "period": 3745583, + "thread": 12 + } + }, + { + "amount": "87.912092301", + "slot": { + "period": 3811702, + "thread": 25 + } + } + ], + "AU12XTLrF3u65WahjAZEjPyMBdFTUzydP14cvbYJGyKTADo2LFUFZ": [ + { + "amount": "233.729023062", + "slot": { + "period": 98929, + "thread": 25 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 311156, + "thread": 1 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 484574, + "thread": 13 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 500948, + "thread": 9 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 706526, + "thread": 19 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 852438, + "thread": 12 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1047265, + "thread": 9 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1290357, + "thread": 25 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1330965, + "thread": 0 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1488385, + "thread": 9 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1719600, + "thread": 27 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 1936588, + "thread": 27 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2001140, + "thread": 2 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2198876, + "thread": 10 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2454132, + "thread": 20 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2541569, + "thread": 23 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2749489, + "thread": 30 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 2918929, + "thread": 25 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 3056906, + "thread": 17 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 3274365, + "thread": 20 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 3361722, + "thread": 1 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 3571765, + "thread": 24 + } + }, + { + "amount": "233.729023062", + "slot": { + "period": 3778582, + "thread": 27 + } + }, + { + "amount": "233.729023065", + "slot": { + "period": 3819701, + "thread": 25 + } + } + ], + "AU12XUmwTXaSmuvY9HyvgCssS3YVaUTBJbJsVodypRmRm4ojwd4tb": [ + { + "amount": "303.279078190", + "slot": { + "period": 84830, + "thread": 27 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 207850, + "thread": 12 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 354941, + "thread": 22 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 573079, + "thread": 21 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 809478, + "thread": 24 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 852699, + "thread": 5 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1074545, + "thread": 28 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1304872, + "thread": 30 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1320390, + "thread": 28 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1542427, + "thread": 31 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1667815, + "thread": 13 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1831560, + "thread": 29 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 1990509, + "thread": 1 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 2183059, + "thread": 26 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 2331149, + "thread": 28 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 2511990, + "thread": 28 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 2731862, + "thread": 10 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 2952591, + "thread": 4 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 3085762, + "thread": 28 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 3164839, + "thread": 6 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 3293716, + "thread": 12 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 3504733, + "thread": 0 + } + }, + { + "amount": "303.279078190", + "slot": { + "period": 3641997, + "thread": 6 + } + }, + { + "amount": "303.279078195", + "slot": { + "period": 3912833, + "thread": 2 + } + } + ], + "AU12XUsDYjtWN4qv93XzzK2FJ7S832A4zzrhYUDxyC5ptX89PqMS": [ + { + "amount": "193.135527488", + "slot": { + "period": 88274, + "thread": 14 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 201748, + "thread": 7 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 364777, + "thread": 25 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 635483, + "thread": 7 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 788772, + "thread": 29 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 905321, + "thread": 14 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1112567, + "thread": 28 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1223031, + "thread": 31 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1380032, + "thread": 9 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1546784, + "thread": 0 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1723995, + "thread": 2 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 1853346, + "thread": 8 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2035366, + "thread": 13 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2163651, + "thread": 26 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2371333, + "thread": 24 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2541004, + "thread": 13 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2726891, + "thread": 18 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 2924914, + "thread": 3 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 3089080, + "thread": 20 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 3227657, + "thread": 21 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 3410821, + "thread": 17 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 3503334, + "thread": 16 + } + }, + { + "amount": "193.135527488", + "slot": { + "period": 3763353, + "thread": 7 + } + }, + { + "amount": "193.135527495", + "slot": { + "period": 3860664, + "thread": 15 + } + } + ], + "AU12XVaoeevyR5P4rKDbf5xgeW8ggUAFbSS5Dfyy18LM84tV4qFf": [ + { + "amount": "234.842372292", + "slot": { + "period": 126812, + "thread": 27 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 222964, + "thread": 31 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 478003, + "thread": 22 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 636062, + "thread": 1 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 810172, + "thread": 3 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 822937, + "thread": 19 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 992047, + "thread": 24 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1237711, + "thread": 25 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1328627, + "thread": 13 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1620130, + "thread": 19 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1744222, + "thread": 18 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1821275, + "thread": 5 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 1990557, + "thread": 29 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 2155622, + "thread": 3 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 2389220, + "thread": 3 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 2600143, + "thread": 23 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 2637989, + "thread": 1 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 2851926, + "thread": 1 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 3003119, + "thread": 15 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 3178096, + "thread": 21 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 3377116, + "thread": 26 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 3617219, + "thread": 24 + } + }, + { + "amount": "234.842372292", + "slot": { + "period": 3727726, + "thread": 22 + } + }, + { + "amount": "234.842372300", + "slot": { + "period": 3820222, + "thread": 18 + } + } + ], + "AU12XVfWFniyRGcHVv5terijq3zUVrumftGx2FbhBL8sqMuSJZQib": [ + { + "amount": "79.320968845", + "slot": { + "period": 92419, + "thread": 2 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 188374, + "thread": 11 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 433729, + "thread": 13 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 625659, + "thread": 22 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 669633, + "thread": 17 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 948131, + "thread": 10 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1133911, + "thread": 30 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1200704, + "thread": 14 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1477523, + "thread": 8 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1537538, + "thread": 24 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1659532, + "thread": 30 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 1933466, + "thread": 23 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2005987, + "thread": 12 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2274468, + "thread": 5 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2454493, + "thread": 8 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2576588, + "thread": 26 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2761744, + "thread": 5 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 2833003, + "thread": 28 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 3021624, + "thread": 18 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 3121288, + "thread": 14 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 3402000, + "thread": 6 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 3528964, + "thread": 29 + } + }, + { + "amount": "79.320968845", + "slot": { + "period": 3658622, + "thread": 18 + } + }, + { + "amount": "79.320968850", + "slot": { + "period": 3831316, + "thread": 20 + } + } + ], + "AU12XWXCPepDD8Fmvk4FE2wVAxtabyFYPHCJGpWAZUvbwm3Tk7otY": [ + { + "amount": "74.407723331", + "slot": { + "period": 122734, + "thread": 28 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 182230, + "thread": 22 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 394398, + "thread": 27 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 618995, + "thread": 16 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 662735, + "thread": 9 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 879595, + "thread": 10 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1118243, + "thread": 7 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1207500, + "thread": 21 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1428130, + "thread": 28 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1528855, + "thread": 11 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1715501, + "thread": 12 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 1845301, + "thread": 3 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2130732, + "thread": 19 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2276217, + "thread": 29 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2383690, + "thread": 7 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2549697, + "thread": 11 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2710802, + "thread": 8 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2871701, + "thread": 13 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 2973715, + "thread": 11 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 3148514, + "thread": 6 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 3331353, + "thread": 23 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 3510607, + "thread": 8 + } + }, + { + "amount": "74.407723331", + "slot": { + "period": 3640488, + "thread": 18 + } + }, + { + "amount": "74.407723337", + "slot": { + "period": 3836577, + "thread": 28 + } + } + ], + "AU12XWww7S55ge37J3iweENt5qAC2vsUx7SK5fnnTpRo22bEV9GRa": [ + { + "amount": "385.277338682", + "slot": { + "period": 124321, + "thread": 20 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 205120, + "thread": 31 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 425032, + "thread": 17 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 567689, + "thread": 6 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 668897, + "thread": 2 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 946614, + "thread": 21 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1019709, + "thread": 22 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1216656, + "thread": 11 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1460433, + "thread": 0 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1538590, + "thread": 7 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1767264, + "thread": 8 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 1895603, + "thread": 14 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2032685, + "thread": 4 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2249591, + "thread": 16 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2298103, + "thread": 16 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2597662, + "thread": 26 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2709885, + "thread": 26 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2873171, + "thread": 31 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 2964236, + "thread": 8 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 3139430, + "thread": 9 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 3377098, + "thread": 6 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 3516633, + "thread": 14 + } + }, + { + "amount": "385.277338682", + "slot": { + "period": 3716143, + "thread": 29 + } + }, + { + "amount": "385.277338677", + "slot": { + "period": 3920605, + "thread": 5 + } + } + ], + "AU12XX8DXoim2w6LsUXaDLfXbS3dwwrdZMgA48BTrAKw5QTumCH3j": [ + { + "amount": "309.711986791", + "slot": { + "period": 28510, + "thread": 4 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 205978, + "thread": 10 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 361871, + "thread": 23 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 612088, + "thread": 8 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 752401, + "thread": 20 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 828592, + "thread": 29 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1084997, + "thread": 11 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1310286, + "thread": 24 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1452006, + "thread": 14 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1628271, + "thread": 0 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1800646, + "thread": 25 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1842686, + "thread": 10 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 1989028, + "thread": 4 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 2176747, + "thread": 27 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 2369378, + "thread": 4 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 2591208, + "thread": 10 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 2735466, + "thread": 24 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 2793458, + "thread": 5 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 3097121, + "thread": 2 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 3152056, + "thread": 5 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 3351366, + "thread": 31 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 3502393, + "thread": 25 + } + }, + { + "amount": "309.711986791", + "slot": { + "period": 3748457, + "thread": 0 + } + }, + { + "amount": "309.711986799", + "slot": { + "period": 3794240, + "thread": 15 + } + } + ], + "AU12XXKr1D13Bh1Kgwj7o3ddsZagWcF2yfsWKMQpY1vjWjheNegp6": [ + { + "amount": "96.658721316", + "slot": { + "period": 98300, + "thread": 18 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 237016, + "thread": 16 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 451315, + "thread": 23 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 621959, + "thread": 20 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 750956, + "thread": 23 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 892892, + "thread": 8 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1062211, + "thread": 28 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1162906, + "thread": 15 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1475670, + "thread": 7 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1540878, + "thread": 17 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1691990, + "thread": 16 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 1875135, + "thread": 9 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2030882, + "thread": 13 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2171191, + "thread": 24 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2377670, + "thread": 23 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2595487, + "thread": 1 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2647279, + "thread": 18 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 2949826, + "thread": 6 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 3026676, + "thread": 10 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 3237562, + "thread": 12 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 3296452, + "thread": 8 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 3550698, + "thread": 26 + } + }, + { + "amount": "96.658721316", + "slot": { + "period": 3637951, + "thread": 12 + } + }, + { + "amount": "96.658721323", + "slot": { + "period": 3854987, + "thread": 19 + } + } + ], + "AU12XXZVAW5ALpUQRLezhhcdBPsnHwA21UtrY4qYf2tfr5d3L1rXd": [ + { + "amount": "134.821491533", + "slot": { + "period": 130745, + "thread": 7 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 323970, + "thread": 30 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 419046, + "thread": 6 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 591008, + "thread": 16 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 766999, + "thread": 5 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 881355, + "thread": 19 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1149537, + "thread": 13 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1294541, + "thread": 28 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1401934, + "thread": 4 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1499362, + "thread": 10 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1806487, + "thread": 17 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 1844972, + "thread": 10 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2142899, + "thread": 1 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2266845, + "thread": 4 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2390920, + "thread": 3 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2616888, + "thread": 9 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2685623, + "thread": 23 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 2942600, + "thread": 9 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 3084728, + "thread": 19 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 3250437, + "thread": 8 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 3297022, + "thread": 24 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 3602237, + "thread": 12 + } + }, + { + "amount": "134.821491533", + "slot": { + "period": 3676258, + "thread": 27 + } + }, + { + "amount": "134.821491522", + "slot": { + "period": 3887885, + "thread": 1 + } + } + ], + "AU12XYUxTAWFGUdeyUoaoJvaTddQQYghyaDr5Ux7jhU9hwUWs3iQ9": [ + { + "amount": "167.237169428", + "slot": { + "period": 88460, + "thread": 0 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 262375, + "thread": 11 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 472073, + "thread": 13 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 590671, + "thread": 30 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 756436, + "thread": 23 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 920242, + "thread": 26 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 982954, + "thread": 26 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 1164442, + "thread": 16 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 1452700, + "thread": 1 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 1499683, + "thread": 31 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 1719379, + "thread": 20 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 1897427, + "thread": 14 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2099762, + "thread": 27 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2293154, + "thread": 11 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2435107, + "thread": 27 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2573506, + "thread": 8 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2624462, + "thread": 0 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 2795366, + "thread": 4 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 3076895, + "thread": 30 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 3266248, + "thread": 28 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 3386454, + "thread": 18 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 3597255, + "thread": 1 + } + }, + { + "amount": "167.237169428", + "slot": { + "period": 3619748, + "thread": 17 + } + }, + { + "amount": "167.237169427", + "slot": { + "period": 3931341, + "thread": 31 + } + } + ], + "AU12XZxmtg7NB5X7s8fMHYyxPd9idup9FadfhhC2BAhKbzCT7T8a6": [ + { + "amount": "483.625955457", + "slot": { + "period": 98945, + "thread": 16 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 286752, + "thread": 11 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 390470, + "thread": 5 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 528637, + "thread": 31 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 754234, + "thread": 11 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 906075, + "thread": 26 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1070894, + "thread": 2 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1205757, + "thread": 31 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1402070, + "thread": 6 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1488939, + "thread": 29 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1668166, + "thread": 31 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1916703, + "thread": 7 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 1992387, + "thread": 23 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 2252234, + "thread": 7 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 2366530, + "thread": 9 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 2488449, + "thread": 20 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 2668798, + "thread": 17 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 2902574, + "thread": 11 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 3097520, + "thread": 11 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 3149084, + "thread": 18 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 3308460, + "thread": 20 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 3571570, + "thread": 15 + } + }, + { + "amount": "483.625955457", + "slot": { + "period": 3694577, + "thread": 2 + } + }, + { + "amount": "483.625955467", + "slot": { + "period": 3843343, + "thread": 20 + } + } + ], + "AU12Xa4FzoFUewsERSReYj2RyFQnZD2J9HkKnB55pRJW1VKMJoxYd": [ + { + "amount": "338.206373969", + "slot": { + "period": 81056, + "thread": 1 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 290202, + "thread": 20 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 446228, + "thread": 28 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 511076, + "thread": 1 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 807506, + "thread": 20 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 881440, + "thread": 17 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1112968, + "thread": 8 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1261402, + "thread": 21 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1321132, + "thread": 28 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1596923, + "thread": 26 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1779356, + "thread": 14 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 1861913, + "thread": 21 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2126842, + "thread": 10 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2237498, + "thread": 30 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2296545, + "thread": 14 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2479132, + "thread": 6 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2665634, + "thread": 12 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2869534, + "thread": 27 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 2999283, + "thread": 17 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 3210910, + "thread": 20 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 3289184, + "thread": 7 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 3590863, + "thread": 24 + } + }, + { + "amount": "338.206373969", + "slot": { + "period": 3621661, + "thread": 18 + } + }, + { + "amount": "338.206373971", + "slot": { + "period": 3813114, + "thread": 19 + } + } + ], + "AU12XannRsUdYsSabQetquEKz3c4SmNkRig9SH2cwKrVvuGSsCtxe": [ + { + "amount": "122.317269507", + "slot": { + "period": 50321, + "thread": 3 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 200403, + "thread": 20 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 413738, + "thread": 25 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 624624, + "thread": 31 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 776825, + "thread": 26 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 977845, + "thread": 17 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1144184, + "thread": 3 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1251076, + "thread": 28 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1374651, + "thread": 24 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1623508, + "thread": 28 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1773434, + "thread": 7 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1936051, + "thread": 14 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 1980975, + "thread": 6 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 2234219, + "thread": 3 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 2400034, + "thread": 17 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 2519773, + "thread": 24 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 2629405, + "thread": 12 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 2837888, + "thread": 14 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 3002001, + "thread": 3 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 3126157, + "thread": 5 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 3314498, + "thread": 16 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 3595211, + "thread": 26 + } + }, + { + "amount": "122.317269507", + "slot": { + "period": 3683374, + "thread": 1 + } + }, + { + "amount": "122.317269506", + "slot": { + "period": 3887982, + "thread": 18 + } + } + ], + "AU12XbWSvqSatMG3M3iLxYJsyysoNT4PcfWTiAtRBxZknsfYCBU4h": [ + { + "amount": "513.971040884", + "slot": { + "period": 107843, + "thread": 8 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 276810, + "thread": 1 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 341743, + "thread": 30 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 619308, + "thread": 9 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 794789, + "thread": 31 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 882754, + "thread": 10 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1096617, + "thread": 5 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1257903, + "thread": 29 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1408505, + "thread": 29 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1569380, + "thread": 20 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1760591, + "thread": 9 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 1969734, + "thread": 11 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2121095, + "thread": 0 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2249882, + "thread": 17 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2389029, + "thread": 19 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2550955, + "thread": 27 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2692673, + "thread": 4 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 2832763, + "thread": 12 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 3106210, + "thread": 20 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 3136530, + "thread": 23 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 3447842, + "thread": 9 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 3455600, + "thread": 21 + } + }, + { + "amount": "513.971040884", + "slot": { + "period": 3725797, + "thread": 15 + } + }, + { + "amount": "513.971040889", + "slot": { + "period": 3828196, + "thread": 7 + } + } + ], + "AU12XcExKxcdwnVL5JKCPAdj1zNVq4qzf1qSe4wXYfM1A88a6wrPE": [ + { + "amount": "489.674358336", + "slot": { + "period": 115705, + "thread": 7 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 274131, + "thread": 22 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 447518, + "thread": 3 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 620345, + "thread": 13 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 762263, + "thread": 20 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 839485, + "thread": 20 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1088663, + "thread": 26 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1316798, + "thread": 20 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1380368, + "thread": 19 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1624170, + "thread": 28 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1693296, + "thread": 2 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1959907, + "thread": 10 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 1980360, + "thread": 21 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 2261288, + "thread": 28 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 2382468, + "thread": 26 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 2578968, + "thread": 21 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 2732519, + "thread": 26 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 2937845, + "thread": 23 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3017291, + "thread": 15 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3145824, + "thread": 1 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3400144, + "thread": 16 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3535921, + "thread": 11 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3650347, + "thread": 20 + } + }, + { + "amount": "489.674358336", + "slot": { + "period": 3898032, + "thread": 15 + } + } + ], + "AU12XcNwZDL7tCBnjki79F1Qw4hZwqbT5S1D6zjXFMoePuzvuoUPd": [ + { + "amount": "422.910591673", + "slot": { + "period": 67865, + "thread": 23 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 233633, + "thread": 26 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 365277, + "thread": 7 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 588250, + "thread": 24 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 801196, + "thread": 7 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 969776, + "thread": 22 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1148151, + "thread": 18 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1263208, + "thread": 0 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1436605, + "thread": 7 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1612894, + "thread": 0 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1709129, + "thread": 23 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 1831543, + "thread": 24 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2005034, + "thread": 20 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2193869, + "thread": 11 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2429583, + "thread": 4 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2573380, + "thread": 20 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2732154, + "thread": 0 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2942935, + "thread": 10 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 2956427, + "thread": 26 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 3192625, + "thread": 23 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 3351023, + "thread": 15 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 3530161, + "thread": 7 + } + }, + { + "amount": "422.910591673", + "slot": { + "period": 3701388, + "thread": 25 + } + }, + { + "amount": "422.910591666", + "slot": { + "period": 3826958, + "thread": 1 + } + } + ], + "AU12XcdD7wdhU2GQrk7GpuWHkNTGufLCaHb74P6pgyQUuyfLkNA8a": [ + { + "amount": "587.648948983", + "slot": { + "period": 41273, + "thread": 19 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 173532, + "thread": 1 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 453457, + "thread": 6 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 508268, + "thread": 10 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 687438, + "thread": 10 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 913931, + "thread": 25 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1073259, + "thread": 3 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1240714, + "thread": 7 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1384905, + "thread": 25 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1499709, + "thread": 21 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1688224, + "thread": 20 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 1818206, + "thread": 3 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2016326, + "thread": 11 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2157978, + "thread": 19 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2388350, + "thread": 4 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2535043, + "thread": 27 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2759358, + "thread": 7 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 2830095, + "thread": 21 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 3065972, + "thread": 16 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 3256777, + "thread": 0 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 3318949, + "thread": 8 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 3527591, + "thread": 28 + } + }, + { + "amount": "587.648948983", + "slot": { + "period": 3742900, + "thread": 5 + } + }, + { + "amount": "587.648948988", + "slot": { + "period": 3936266, + "thread": 6 + } + } + ], + "AU12Xd1tbUNYg6KZgANCjBrkD2QM7y39xGeDXTpuPmz6nM6B73RrJ": [ + { + "amount": "360.107837322", + "slot": { + "period": 14273, + "thread": 11 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 221205, + "thread": 3 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 392450, + "thread": 14 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 552569, + "thread": 17 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 715201, + "thread": 28 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 939563, + "thread": 20 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 991316, + "thread": 11 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 1162816, + "thread": 19 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 1422561, + "thread": 26 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 1535336, + "thread": 30 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 1679650, + "thread": 16 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 1826134, + "thread": 5 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2112723, + "thread": 25 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2223525, + "thread": 25 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2425602, + "thread": 18 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2612762, + "thread": 9 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2644285, + "thread": 6 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2891635, + "thread": 15 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 2964227, + "thread": 7 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 3146362, + "thread": 30 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 3348214, + "thread": 0 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 3617997, + "thread": 2 + } + }, + { + "amount": "360.107837322", + "slot": { + "period": 3766111, + "thread": 25 + } + }, + { + "amount": "360.107837317", + "slot": { + "period": 3841603, + "thread": 3 + } + } + ], + "AU12XdbGn4mQT4ZmrNgisABCquvoJBxAJRXZwq26843L9vykAAgke": [ + { + "amount": "262.944202784", + "slot": { + "period": 96809, + "thread": 30 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 196424, + "thread": 25 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 467492, + "thread": 19 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 513660, + "thread": 27 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 797819, + "thread": 27 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 928973, + "thread": 29 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1074217, + "thread": 17 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1234763, + "thread": 27 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1419510, + "thread": 5 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1490026, + "thread": 8 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1660893, + "thread": 0 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 1916896, + "thread": 0 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2029682, + "thread": 21 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2202531, + "thread": 28 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2348043, + "thread": 25 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2579465, + "thread": 15 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2770120, + "thread": 0 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 2884419, + "thread": 11 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 3013452, + "thread": 24 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 3205262, + "thread": 29 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 3424546, + "thread": 10 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 3457168, + "thread": 20 + } + }, + { + "amount": "262.944202784", + "slot": { + "period": 3674962, + "thread": 9 + } + }, + { + "amount": "262.944202794", + "slot": { + "period": 3803530, + "thread": 4 + } + } + ], + "AU12XeNeLtDVnq3oFn7pRPZorqsziZxo2f3i5E9pRPUqhu5o2pbFK": [ + { + "amount": "77.318060005", + "slot": { + "period": 64339, + "thread": 27 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 170916, + "thread": 10 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 464498, + "thread": 4 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 582737, + "thread": 21 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 705716, + "thread": 19 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 845146, + "thread": 7 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1139337, + "thread": 3 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1160252, + "thread": 11 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1346401, + "thread": 25 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1529167, + "thread": 20 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1769952, + "thread": 14 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1929557, + "thread": 15 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 1980406, + "thread": 18 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 2199121, + "thread": 16 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 2301090, + "thread": 23 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 2464068, + "thread": 14 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 2732977, + "thread": 3 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 2912853, + "thread": 22 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 3097099, + "thread": 0 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 3173359, + "thread": 14 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 3396628, + "thread": 30 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 3485815, + "thread": 12 + } + }, + { + "amount": "77.318060005", + "slot": { + "period": 3646371, + "thread": 8 + } + }, + { + "amount": "77.318060015", + "slot": { + "period": 3830063, + "thread": 22 + } + } + ], + "AU12XePDZahn1igXMQuZ6rFRUMfAVPx65DYXLDMdtDZvATNtHujvM": [ + { + "amount": "76.208452985", + "slot": { + "period": 82790, + "thread": 28 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 269099, + "thread": 8 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 475197, + "thread": 4 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 559471, + "thread": 25 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 737596, + "thread": 28 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 855410, + "thread": 19 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1064225, + "thread": 8 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1201863, + "thread": 2 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1319695, + "thread": 20 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1569689, + "thread": 23 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1724961, + "thread": 21 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 1848033, + "thread": 1 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2143304, + "thread": 13 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2170716, + "thread": 21 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2438119, + "thread": 18 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2480726, + "thread": 31 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2742855, + "thread": 11 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2909374, + "thread": 11 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 2980956, + "thread": 12 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 3142226, + "thread": 30 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 3397343, + "thread": 26 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 3484515, + "thread": 5 + } + }, + { + "amount": "76.208452985", + "slot": { + "period": 3750282, + "thread": 2 + } + }, + { + "amount": "76.208452988", + "slot": { + "period": 3808211, + "thread": 24 + } + } + ], + "AU12XeXRDC3wDtRtisuvqkM2tbHyg3QcAi9FFUoPLV4E3bHmVoUGr": [ + { + "amount": "124.606594932", + "slot": { + "period": 85620, + "thread": 3 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 242489, + "thread": 29 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 383759, + "thread": 12 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 504510, + "thread": 3 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 749269, + "thread": 1 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 869071, + "thread": 2 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1069497, + "thread": 9 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1243302, + "thread": 17 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1413767, + "thread": 5 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1555771, + "thread": 24 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1760955, + "thread": 7 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 1878861, + "thread": 5 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2073397, + "thread": 14 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2189237, + "thread": 8 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2435282, + "thread": 3 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2584891, + "thread": 23 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2782016, + "thread": 19 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 2873944, + "thread": 19 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 3026743, + "thread": 14 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 3175203, + "thread": 25 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 3381735, + "thread": 0 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 3462508, + "thread": 21 + } + }, + { + "amount": "124.606594932", + "slot": { + "period": 3716397, + "thread": 17 + } + }, + { + "amount": "124.606594933", + "slot": { + "period": 3814754, + "thread": 29 + } + } + ], + "AU12Xek2WgRqB1BkG8kQNq7nHiRpfLMzkFZVKGnGvGbFKAXkBWcXE": [ + { + "amount": "53.849122751", + "slot": { + "period": 25286, + "thread": 14 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 288747, + "thread": 31 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 378481, + "thread": 24 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 583229, + "thread": 22 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 779937, + "thread": 8 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 906605, + "thread": 4 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1081949, + "thread": 11 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1252200, + "thread": 22 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1429740, + "thread": 7 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1588524, + "thread": 0 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1765719, + "thread": 26 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1952834, + "thread": 23 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 1990982, + "thread": 21 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 2239247, + "thread": 20 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 2342517, + "thread": 5 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 2514616, + "thread": 28 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 2713009, + "thread": 20 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 2948483, + "thread": 5 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 3029722, + "thread": 25 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 3144606, + "thread": 15 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 3432243, + "thread": 11 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 3510693, + "thread": 30 + } + }, + { + "amount": "53.849122751", + "slot": { + "period": 3666048, + "thread": 19 + } + }, + { + "amount": "53.849122747", + "slot": { + "period": 3871078, + "thread": 12 + } + } + ], + "AU12Xeq3NGv3XYH42V9qrbkKHzduFMVS35d2rdXrgWrubkVq1zETX": [ + { + "amount": "152.933169217", + "slot": { + "period": 57168, + "thread": 13 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 240697, + "thread": 2 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 382895, + "thread": 7 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 562710, + "thread": 6 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 776755, + "thread": 28 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 866586, + "thread": 2 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1133382, + "thread": 1 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1302192, + "thread": 7 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1373899, + "thread": 3 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1536604, + "thread": 29 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1798136, + "thread": 14 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 1888005, + "thread": 10 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2046060, + "thread": 18 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2289561, + "thread": 3 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2300846, + "thread": 8 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2599846, + "thread": 20 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2644179, + "thread": 10 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2826892, + "thread": 0 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 2979578, + "thread": 20 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 3205165, + "thread": 25 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 3379431, + "thread": 25 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 3554426, + "thread": 23 + } + }, + { + "amount": "152.933169217", + "slot": { + "period": 3697997, + "thread": 18 + } + }, + { + "amount": "152.933169215", + "slot": { + "period": 3933491, + "thread": 21 + } + } + ], + "AU12XetQfT6VK7XQfoiDdKzipVkjLDGEWepSZk3Nj7K2f7N6mLAdv": [ + { + "amount": "211.414852314", + "slot": { + "period": 154465, + "thread": 25 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 168018, + "thread": 4 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 426692, + "thread": 31 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 631671, + "thread": 5 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 673407, + "thread": 30 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 953761, + "thread": 26 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1042752, + "thread": 4 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1176520, + "thread": 6 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1409475, + "thread": 22 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1622796, + "thread": 8 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1673633, + "thread": 21 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 1949233, + "thread": 7 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2113317, + "thread": 6 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2276467, + "thread": 12 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2305218, + "thread": 29 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2564646, + "thread": 27 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2696523, + "thread": 22 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 2827128, + "thread": 1 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 3000278, + "thread": 15 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 3287245, + "thread": 10 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 3439348, + "thread": 10 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 3558881, + "thread": 24 + } + }, + { + "amount": "211.414852314", + "slot": { + "period": 3714610, + "thread": 13 + } + }, + { + "amount": "211.414852307", + "slot": { + "period": 3911638, + "thread": 13 + } + } + ], + "AU12XezugK6vxJdsbQrUS1vLeM5KHeugUV8pmn17fK2qk4CH3oDik": [ + { + "amount": "66.484658034", + "slot": { + "period": 128878, + "thread": 3 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 196275, + "thread": 2 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 374299, + "thread": 13 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 513248, + "thread": 19 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 710207, + "thread": 1 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 969924, + "thread": 11 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1090479, + "thread": 11 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1267932, + "thread": 18 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1327160, + "thread": 15 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1494806, + "thread": 23 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1787610, + "thread": 28 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 1819685, + "thread": 26 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2095136, + "thread": 26 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2185971, + "thread": 5 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2312751, + "thread": 22 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2517291, + "thread": 20 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2707646, + "thread": 5 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 2912515, + "thread": 11 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 3113852, + "thread": 3 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 3175347, + "thread": 14 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 3305966, + "thread": 31 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 3575481, + "thread": 15 + } + }, + { + "amount": "66.484658034", + "slot": { + "period": 3748402, + "thread": 19 + } + }, + { + "amount": "66.484658032", + "slot": { + "period": 3903247, + "thread": 5 + } + } + ], + "AU12XfRBtJyrMPAjasmtcyKD4TyzXw8jS48Hw6TpBJZvpnVdT9hjo": [ + { + "amount": "253.579658816", + "slot": { + "period": 148268, + "thread": 2 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 262499, + "thread": 13 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 482117, + "thread": 15 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 583041, + "thread": 21 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 655739, + "thread": 9 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 940032, + "thread": 14 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1037758, + "thread": 7 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1169864, + "thread": 7 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1450848, + "thread": 2 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1555868, + "thread": 10 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1708173, + "thread": 26 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 1857651, + "thread": 20 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2036290, + "thread": 30 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2177126, + "thread": 13 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2316882, + "thread": 2 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2601727, + "thread": 5 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2627566, + "thread": 5 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 2899478, + "thread": 20 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 3106934, + "thread": 18 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 3128862, + "thread": 26 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 3403030, + "thread": 7 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 3478853, + "thread": 9 + } + }, + { + "amount": "253.579658816", + "slot": { + "period": 3743838, + "thread": 17 + } + }, + { + "amount": "253.579658826", + "slot": { + "period": 3857114, + "thread": 0 + } + } + ], + "AU12Xffuq36YyTbVFEwD6BZkw7Zpz24umiN4EkiqWohuPu8AAMVer": [ + { + "amount": "202.979632806", + "slot": { + "period": 122039, + "thread": 26 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 251621, + "thread": 12 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 349324, + "thread": 12 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 503080, + "thread": 0 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 809593, + "thread": 1 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 888827, + "thread": 28 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1136619, + "thread": 9 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1168348, + "thread": 27 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1321158, + "thread": 21 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1566877, + "thread": 13 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1717879, + "thread": 18 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 1971027, + "thread": 22 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2083344, + "thread": 24 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2228428, + "thread": 29 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2311828, + "thread": 14 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2532536, + "thread": 13 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2763201, + "thread": 0 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 2846443, + "thread": 15 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 3093358, + "thread": 27 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 3230129, + "thread": 11 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 3412018, + "thread": 30 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 3530461, + "thread": 20 + } + }, + { + "amount": "202.979632806", + "slot": { + "period": 3657336, + "thread": 16 + } + }, + { + "amount": "202.979632799", + "slot": { + "period": 3783942, + "thread": 26 + } + } + ], + "AU12XgBxD2uyBwuRpZ5G1rkidw2ZCGmUbsgGiCmbkFgMzgv3nMgps": [ + { + "amount": "365.471801128", + "slot": { + "period": 69800, + "thread": 23 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 283084, + "thread": 11 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 363334, + "thread": 16 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 498887, + "thread": 31 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 680255, + "thread": 23 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 951764, + "thread": 22 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1094740, + "thread": 30 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1167630, + "thread": 6 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1472611, + "thread": 6 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1550247, + "thread": 30 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1749190, + "thread": 26 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 1948900, + "thread": 30 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2054635, + "thread": 19 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2283079, + "thread": 30 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2430278, + "thread": 21 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2565040, + "thread": 28 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2751296, + "thread": 16 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2933279, + "thread": 18 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 2960460, + "thread": 20 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 3220724, + "thread": 28 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 3369360, + "thread": 16 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 3599007, + "thread": 1 + } + }, + { + "amount": "365.471801128", + "slot": { + "period": 3729860, + "thread": 6 + } + }, + { + "amount": "365.471801134", + "slot": { + "period": 3910511, + "thread": 0 + } + } + ], + "AU12Xgor8MUPiMhjiF4WF4S1mr9u2kMFjv8YU3YL5cBQ3Qys6juys": [ + { + "amount": "160.962275858", + "slot": { + "period": 14060, + "thread": 19 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 177391, + "thread": 30 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 427696, + "thread": 11 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 649538, + "thread": 1 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 773732, + "thread": 26 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 896372, + "thread": 14 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1143646, + "thread": 18 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1266586, + "thread": 30 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1335738, + "thread": 24 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1638757, + "thread": 7 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1652805, + "thread": 23 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 1813737, + "thread": 20 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2020926, + "thread": 2 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2267683, + "thread": 7 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2343917, + "thread": 12 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2578866, + "thread": 21 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2711772, + "thread": 24 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 2840188, + "thread": 26 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 3026567, + "thread": 17 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 3283034, + "thread": 7 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 3351349, + "thread": 3 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 3504342, + "thread": 20 + } + }, + { + "amount": "160.962275858", + "slot": { + "period": 3749250, + "thread": 22 + } + }, + { + "amount": "160.962275860", + "slot": { + "period": 3924360, + "thread": 24 + } + } + ], + "AU12Xgys96vD8cEt4H6wM5rbfQSyF5MpGR2HnHPLfdhsRfWSDaiLa": [ + { + "amount": "404.401124734", + "slot": { + "period": 102774, + "thread": 22 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 225393, + "thread": 18 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 384214, + "thread": 12 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 621614, + "thread": 30 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 664085, + "thread": 11 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 838378, + "thread": 9 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1031405, + "thread": 27 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1180311, + "thread": 15 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1438698, + "thread": 14 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1644063, + "thread": 28 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1738821, + "thread": 20 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 1934382, + "thread": 18 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2000622, + "thread": 3 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2173059, + "thread": 15 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2340351, + "thread": 12 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2488556, + "thread": 28 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2777635, + "thread": 4 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 2905573, + "thread": 6 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3038351, + "thread": 7 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3150152, + "thread": 7 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3289371, + "thread": 30 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3506559, + "thread": 24 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3647173, + "thread": 1 + } + }, + { + "amount": "404.401124734", + "slot": { + "period": 3814990, + "thread": 0 + } + } + ], + "AU12Xh8rai3h6xxZtq2QLqQwYXWTJpgs1zqj99UDBrekFoKq4uPUc": [ + { + "amount": "184.827321197", + "slot": { + "period": 97769, + "thread": 30 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 198797, + "thread": 6 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 386988, + "thread": 10 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 582009, + "thread": 10 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 700461, + "thread": 1 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 898342, + "thread": 12 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1074650, + "thread": 8 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1304653, + "thread": 30 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1327972, + "thread": 17 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1513149, + "thread": 20 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1766288, + "thread": 30 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1858559, + "thread": 0 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 1985811, + "thread": 9 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 2149159, + "thread": 27 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 2353596, + "thread": 8 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 2534271, + "thread": 12 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 2756733, + "thread": 11 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 2813792, + "thread": 18 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 3025445, + "thread": 6 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 3135396, + "thread": 0 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 3437863, + "thread": 6 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 3524144, + "thread": 31 + } + }, + { + "amount": "184.827321197", + "slot": { + "period": 3691779, + "thread": 29 + } + }, + { + "amount": "184.827321190", + "slot": { + "period": 3935033, + "thread": 19 + } + } + ], + "AU12Xj23fqXWGRwmhoAdNoxqaywVXmoWWQ6eFfdYdZzGUwAPEBqoS": [ + { + "amount": "131.121359804", + "slot": { + "period": 62694, + "thread": 7 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 295583, + "thread": 14 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 402978, + "thread": 31 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 580555, + "thread": 18 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 748951, + "thread": 29 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 824064, + "thread": 9 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1116963, + "thread": 16 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1301925, + "thread": 10 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1412966, + "thread": 12 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1636490, + "thread": 8 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1777023, + "thread": 8 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 1945975, + "thread": 0 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2112358, + "thread": 27 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2191589, + "thread": 16 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2361660, + "thread": 13 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2574673, + "thread": 6 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2756282, + "thread": 19 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 2941093, + "thread": 2 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 3004078, + "thread": 23 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 3248707, + "thread": 15 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 3397273, + "thread": 24 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 3515915, + "thread": 17 + } + }, + { + "amount": "131.121359804", + "slot": { + "period": 3687315, + "thread": 27 + } + }, + { + "amount": "131.121359796", + "slot": { + "period": 3932611, + "thread": 20 + } + } + ], + "AU12XjH6UQNBViHRtipXMojKyW2JUS5Sg29rY6A3FeToELUWoNfEQ": [ + { + "amount": "144.089049362", + "slot": { + "period": 15018, + "thread": 3 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 202071, + "thread": 8 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 368219, + "thread": 27 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 582960, + "thread": 22 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 770440, + "thread": 10 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 898475, + "thread": 30 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1043491, + "thread": 31 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1255192, + "thread": 15 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1418873, + "thread": 30 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1514818, + "thread": 26 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1786086, + "thread": 12 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 1944665, + "thread": 11 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2094379, + "thread": 24 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2146460, + "thread": 16 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2385256, + "thread": 19 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2463860, + "thread": 23 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2624932, + "thread": 1 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 2895092, + "thread": 23 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 3088311, + "thread": 25 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 3166894, + "thread": 28 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 3424479, + "thread": 20 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 3475099, + "thread": 0 + } + }, + { + "amount": "144.089049362", + "slot": { + "period": 3660024, + "thread": 8 + } + }, + { + "amount": "144.089049361", + "slot": { + "period": 3945718, + "thread": 21 + } + } + ], + "AU12XjMEw9t9SZkrHsVwJZHSvpLvkjX9FnnFbR8MGJ6MdgPL1jbJ9": [ + { + "amount": "52.992519291", + "slot": { + "period": 81187, + "thread": 3 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 190038, + "thread": 6 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 449552, + "thread": 10 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 510596, + "thread": 30 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 783399, + "thread": 10 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 926690, + "thread": 13 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1038107, + "thread": 1 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1297063, + "thread": 29 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1420799, + "thread": 6 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1619315, + "thread": 2 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1751631, + "thread": 21 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 1947064, + "thread": 9 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2067681, + "thread": 14 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2265268, + "thread": 26 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2388380, + "thread": 12 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2593621, + "thread": 20 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2663767, + "thread": 6 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 2818923, + "thread": 7 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 3087746, + "thread": 15 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 3278541, + "thread": 6 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 3315488, + "thread": 26 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 3613479, + "thread": 17 + } + }, + { + "amount": "52.992519291", + "slot": { + "period": 3710107, + "thread": 26 + } + }, + { + "amount": "52.992519292", + "slot": { + "period": 3784557, + "thread": 4 + } + } + ], + "AU12XjjfVx7QJgyg3amh4fR7t6ewhVoVYvbznFtkPbNWt4BuVR4Vz": [ + { + "amount": "213.618657119", + "slot": { + "period": 124962, + "thread": 17 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 287255, + "thread": 30 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 379206, + "thread": 31 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 574490, + "thread": 6 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 691675, + "thread": 25 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 913229, + "thread": 2 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1055863, + "thread": 25 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1164529, + "thread": 13 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1446869, + "thread": 8 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1616490, + "thread": 28 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1739941, + "thread": 0 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 1904194, + "thread": 26 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2050281, + "thread": 12 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2168415, + "thread": 8 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2398918, + "thread": 26 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2474287, + "thread": 18 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2679156, + "thread": 8 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2851063, + "thread": 7 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 2985770, + "thread": 19 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 3126188, + "thread": 5 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 3294930, + "thread": 11 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 3529675, + "thread": 19 + } + }, + { + "amount": "213.618657119", + "slot": { + "period": 3681805, + "thread": 21 + } + }, + { + "amount": "213.618657124", + "slot": { + "period": 3822171, + "thread": 18 + } + } + ], + "AU12XjrFY3mJJveaxeypdLiraaDCsAkxYEDqucaKhQ3wwgtmG169s": [ + { + "amount": "189.317979765", + "slot": { + "period": 100085, + "thread": 27 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 267074, + "thread": 8 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 384489, + "thread": 27 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 618194, + "thread": 14 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 660845, + "thread": 8 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 912798, + "thread": 15 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1137178, + "thread": 22 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1304299, + "thread": 16 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1382472, + "thread": 15 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1503571, + "thread": 27 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1716087, + "thread": 0 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 1896126, + "thread": 31 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2031524, + "thread": 17 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2252725, + "thread": 13 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2318547, + "thread": 31 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2520721, + "thread": 20 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2647428, + "thread": 1 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 2864253, + "thread": 24 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 3013686, + "thread": 17 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 3279849, + "thread": 30 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 3289694, + "thread": 18 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 3562454, + "thread": 8 + } + }, + { + "amount": "189.317979765", + "slot": { + "period": 3750258, + "thread": 3 + } + }, + { + "amount": "189.317979761", + "slot": { + "period": 3845509, + "thread": 0 + } + } + ], + "AU12Xjwy8wFLEaK5bi9iYab2CpYihQm7JfBuV1y7AAWDQ5xCQoLSn": [ + { + "amount": "325.932036379", + "slot": { + "period": 129840, + "thread": 27 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 233654, + "thread": 29 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 457325, + "thread": 17 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 572963, + "thread": 8 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 696946, + "thread": 29 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 879013, + "thread": 2 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1109474, + "thread": 11 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1252498, + "thread": 7 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1461223, + "thread": 5 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1517302, + "thread": 3 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1696751, + "thread": 13 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 1906858, + "thread": 0 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2041509, + "thread": 24 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2239376, + "thread": 17 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2428538, + "thread": 27 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2606085, + "thread": 31 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2668716, + "thread": 13 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 2800246, + "thread": 28 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 3083220, + "thread": 15 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 3163952, + "thread": 23 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 3432848, + "thread": 23 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 3481246, + "thread": 27 + } + }, + { + "amount": "325.932036379", + "slot": { + "period": 3697889, + "thread": 6 + } + }, + { + "amount": "325.932036385", + "slot": { + "period": 3825728, + "thread": 4 + } + } + ], + "AU12Xkg4bLyq9eVpZaCBK8i1XfuUzrvKSXjdrKPY8Laeb1i3vtCBU": [ + { + "amount": "97.564231413", + "slot": { + "period": 109693, + "thread": 11 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 193555, + "thread": 17 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 447332, + "thread": 17 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 583110, + "thread": 12 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 738698, + "thread": 12 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 955567, + "thread": 31 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1114922, + "thread": 1 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1270473, + "thread": 29 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1453037, + "thread": 16 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1525957, + "thread": 30 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1668520, + "thread": 16 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 1829520, + "thread": 17 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2094367, + "thread": 10 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2237754, + "thread": 27 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2440872, + "thread": 24 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2478776, + "thread": 30 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2633200, + "thread": 16 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 2909524, + "thread": 13 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 3001104, + "thread": 31 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 3127834, + "thread": 0 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 3426143, + "thread": 20 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 3480755, + "thread": 25 + } + }, + { + "amount": "97.564231413", + "slot": { + "period": 3728987, + "thread": 16 + } + }, + { + "amount": "97.564231423", + "slot": { + "period": 3882264, + "thread": 20 + } + } + ], + "AU12Xn5Y8uTGhaS2Y8DjzyabYxFLn26xBCTqA4MgvoMic8kUnYcXY": [ + { + "amount": "252.737378758", + "slot": { + "period": 81363, + "thread": 8 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 297324, + "thread": 4 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 358025, + "thread": 24 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 570243, + "thread": 14 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 778105, + "thread": 21 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 978333, + "thread": 14 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 986674, + "thread": 3 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 1254399, + "thread": 18 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 1451709, + "thread": 19 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 1539269, + "thread": 27 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 1665182, + "thread": 30 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 1820099, + "thread": 26 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2065077, + "thread": 21 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2159269, + "thread": 15 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2310558, + "thread": 28 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2532116, + "thread": 5 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2739707, + "thread": 24 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 2871999, + "thread": 19 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 3003426, + "thread": 20 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 3185029, + "thread": 13 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 3359484, + "thread": 9 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 3521189, + "thread": 7 + } + }, + { + "amount": "252.737378758", + "slot": { + "period": 3661313, + "thread": 22 + } + }, + { + "amount": "252.737378766", + "slot": { + "period": 3884626, + "thread": 12 + } + } + ], + "AU12XnTKSwoy83jFzD6dKSgrJhMGRp7Dtfcb25GQFzoX9QGpbbRAE": [ + { + "amount": "293.069400721", + "slot": { + "period": 57670, + "thread": 16 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 299619, + "thread": 30 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 390724, + "thread": 30 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 592565, + "thread": 3 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 685852, + "thread": 22 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 896911, + "thread": 2 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1091824, + "thread": 6 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1234286, + "thread": 25 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1404964, + "thread": 27 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1581059, + "thread": 19 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1727500, + "thread": 1 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 1927098, + "thread": 22 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2103045, + "thread": 14 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2160616, + "thread": 30 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2390228, + "thread": 3 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2525338, + "thread": 15 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2648887, + "thread": 14 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 2811776, + "thread": 13 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 3007112, + "thread": 29 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 3232199, + "thread": 28 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 3436275, + "thread": 21 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 3530293, + "thread": 0 + } + }, + { + "amount": "293.069400721", + "slot": { + "period": 3717701, + "thread": 2 + } + }, + { + "amount": "293.069400714", + "slot": { + "period": 3921722, + "thread": 26 + } + } + ], + "AU12XnfG423tBxgHyPUMKKeWvFvmcdXF9Nvq6unKyHEwrvJDCe3xc": [ + { + "amount": "212.935566363", + "slot": { + "period": 83252, + "thread": 13 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 276810, + "thread": 21 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 389846, + "thread": 29 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 515767, + "thread": 29 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 662500, + "thread": 14 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 966325, + "thread": 22 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1148224, + "thread": 9 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1185097, + "thread": 7 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1430844, + "thread": 8 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1551747, + "thread": 9 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1747183, + "thread": 0 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1899848, + "thread": 16 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 1976768, + "thread": 26 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2219000, + "thread": 12 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2395545, + "thread": 31 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2604483, + "thread": 16 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2646466, + "thread": 31 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2844247, + "thread": 7 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 2997210, + "thread": 11 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 3190054, + "thread": 13 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 3391868, + "thread": 9 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 3582152, + "thread": 22 + } + }, + { + "amount": "212.935566363", + "slot": { + "period": 3749136, + "thread": 11 + } + }, + { + "amount": "212.935566362", + "slot": { + "period": 3889255, + "thread": 0 + } + } + ], + "AU12Xoqar42myhsks3NCdwoVTckfHA7nzbbaJRfmhfdzGYHVP13n5": [ + { + "amount": "75.227977600", + "slot": { + "period": 14355, + "thread": 27 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 197254, + "thread": 21 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 341439, + "thread": 3 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 603285, + "thread": 8 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 773121, + "thread": 25 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 821765, + "thread": 11 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1041295, + "thread": 31 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1296873, + "thread": 14 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1366338, + "thread": 3 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1594399, + "thread": 31 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1706512, + "thread": 28 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 1826917, + "thread": 5 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2041672, + "thread": 22 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2241811, + "thread": 25 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2432427, + "thread": 20 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2511904, + "thread": 8 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2652334, + "thread": 14 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2817979, + "thread": 16 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 2989532, + "thread": 3 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 3180892, + "thread": 9 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 3355822, + "thread": 13 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 3506081, + "thread": 8 + } + }, + { + "amount": "75.227977600", + "slot": { + "period": 3684146, + "thread": 19 + } + }, + { + "amount": "75.227977594", + "slot": { + "period": 3784216, + "thread": 10 + } + } + ], + "AU12XpTa5YFrM7BDMHKWWwueY6pynURo4h2aSW49c53MqYPcxfVRZ": [ + { + "amount": "157.020549262", + "slot": { + "period": 69714, + "thread": 19 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 171905, + "thread": 6 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 417113, + "thread": 20 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 565267, + "thread": 8 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 783794, + "thread": 31 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 857017, + "thread": 16 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1090796, + "thread": 10 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1235189, + "thread": 0 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1422196, + "thread": 23 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1543610, + "thread": 14 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1760102, + "thread": 23 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 1936341, + "thread": 31 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2110859, + "thread": 8 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2219107, + "thread": 20 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2415737, + "thread": 11 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2502907, + "thread": 31 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2709269, + "thread": 13 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 2882037, + "thread": 21 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 3027864, + "thread": 25 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 3142406, + "thread": 27 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 3406549, + "thread": 12 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 3599657, + "thread": 23 + } + }, + { + "amount": "157.020549262", + "slot": { + "period": 3626072, + "thread": 31 + } + }, + { + "amount": "157.020549261", + "slot": { + "period": 3851442, + "thread": 31 + } + } + ], + "AU12XpqN3TXs1kszNA17fHcxu1Qw4MFyvJsUNQV2QzzHemZuANm1R": [ + { + "amount": "153.251719059", + "slot": { + "period": 62121, + "thread": 2 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 209933, + "thread": 29 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 443359, + "thread": 17 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 534017, + "thread": 29 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 729965, + "thread": 8 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 859477, + "thread": 10 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1132065, + "thread": 3 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1189144, + "thread": 19 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1416519, + "thread": 31 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1579767, + "thread": 12 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1694305, + "thread": 16 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 1958752, + "thread": 6 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2089691, + "thread": 7 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2144180, + "thread": 29 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2352649, + "thread": 12 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2569856, + "thread": 16 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2689805, + "thread": 20 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 2833347, + "thread": 21 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 3074110, + "thread": 2 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 3202666, + "thread": 28 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 3411121, + "thread": 27 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 3541817, + "thread": 21 + } + }, + { + "amount": "153.251719059", + "slot": { + "period": 3660125, + "thread": 31 + } + }, + { + "amount": "153.251719070", + "slot": { + "period": 3836983, + "thread": 16 + } + } + ], + "AU12Xqwqc6yM8QxJmE4uXvipaJaZMeNsTVPm38pCDtGxczHZgiWnT": [ + { + "amount": "150.198425208", + "slot": { + "period": 96482, + "thread": 10 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 227083, + "thread": 6 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 359722, + "thread": 19 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 608371, + "thread": 31 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 761532, + "thread": 5 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 866358, + "thread": 1 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1048681, + "thread": 5 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1158042, + "thread": 31 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1404156, + "thread": 1 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1596967, + "thread": 30 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1753534, + "thread": 5 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 1819374, + "thread": 6 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2019590, + "thread": 23 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2225620, + "thread": 10 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2295706, + "thread": 28 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2618455, + "thread": 23 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2742100, + "thread": 19 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2850815, + "thread": 8 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 2961322, + "thread": 1 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 3172417, + "thread": 21 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 3341693, + "thread": 9 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 3562745, + "thread": 13 + } + }, + { + "amount": "150.198425208", + "slot": { + "period": 3652848, + "thread": 24 + } + }, + { + "amount": "150.198425210", + "slot": { + "period": 3944045, + "thread": 24 + } + } + ], + "AU12XrGGboKSUqUmYwx3mvQgudL1NnHqc9XeG8iuxdwWzFMmB7B2b": [ + { + "amount": "92.548336389", + "slot": { + "period": 125678, + "thread": 23 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 300577, + "thread": 5 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 426367, + "thread": 17 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 635609, + "thread": 16 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 816637, + "thread": 24 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 894872, + "thread": 12 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1080677, + "thread": 1 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1158087, + "thread": 22 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1454195, + "thread": 7 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1635213, + "thread": 22 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1734322, + "thread": 15 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 1863220, + "thread": 17 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2137496, + "thread": 8 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2188267, + "thread": 29 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2392154, + "thread": 18 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2525917, + "thread": 19 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2764027, + "thread": 9 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 2923211, + "thread": 9 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 3087872, + "thread": 5 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 3273024, + "thread": 21 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 3343136, + "thread": 25 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 3523688, + "thread": 28 + } + }, + { + "amount": "92.548336389", + "slot": { + "period": 3652629, + "thread": 23 + } + }, + { + "amount": "92.548336395", + "slot": { + "period": 3785365, + "thread": 3 + } + } + ], + "AU12XsdzT2xYUPMiGXJSPfBPpFTT1BKxAKeyjnFkGahZKU89ihYJ5": [ + { + "amount": "168.386537187", + "slot": { + "period": 108761, + "thread": 1 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 231001, + "thread": 5 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 397297, + "thread": 7 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 522799, + "thread": 28 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 657722, + "thread": 7 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 901114, + "thread": 24 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 991819, + "thread": 3 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 1214342, + "thread": 4 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 1353029, + "thread": 19 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 1511461, + "thread": 6 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 1680798, + "thread": 13 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 1835087, + "thread": 21 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2009111, + "thread": 13 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2261088, + "thread": 10 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2309004, + "thread": 25 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2604981, + "thread": 2 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2721752, + "thread": 13 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 2940091, + "thread": 19 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 3089509, + "thread": 6 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 3154464, + "thread": 7 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 3332448, + "thread": 18 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 3614731, + "thread": 1 + } + }, + { + "amount": "168.386537187", + "slot": { + "period": 3767565, + "thread": 15 + } + }, + { + "amount": "168.386537179", + "slot": { + "period": 3901315, + "thread": 23 + } + } + ], + "AU12XtNamQNkjKxkL69an28VBq888dii7q8b17QHJq6p8NJVgGPhH": [ + { + "amount": "194.913049308", + "slot": { + "period": 52070, + "thread": 12 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 294816, + "thread": 15 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 453910, + "thread": 30 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 537170, + "thread": 30 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 734230, + "thread": 6 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 857416, + "thread": 10 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1037353, + "thread": 24 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1285583, + "thread": 0 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1345030, + "thread": 20 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1493249, + "thread": 16 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1742620, + "thread": 31 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 1890160, + "thread": 2 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2007537, + "thread": 12 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2283412, + "thread": 23 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2389403, + "thread": 3 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2485046, + "thread": 9 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2638381, + "thread": 29 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2858029, + "thread": 11 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 2966102, + "thread": 1 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 3235911, + "thread": 28 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 3380427, + "thread": 8 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 3478417, + "thread": 17 + } + }, + { + "amount": "194.913049308", + "slot": { + "period": 3704505, + "thread": 12 + } + }, + { + "amount": "194.913049304", + "slot": { + "period": 3793687, + "thread": 8 + } + } + ], + "AU12XtrW21CkRa4K2YADnB34X9YqegsLkWzzY9pN6Wet7PkRajfpK": [ + { + "amount": "139.493338533", + "slot": { + "period": 111113, + "thread": 1 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 277041, + "thread": 2 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 353220, + "thread": 2 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 618292, + "thread": 13 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 743034, + "thread": 15 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 928227, + "thread": 0 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1006447, + "thread": 1 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1211664, + "thread": 16 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1440169, + "thread": 8 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1495792, + "thread": 26 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1763883, + "thread": 1 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 1840265, + "thread": 7 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2016855, + "thread": 27 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2242694, + "thread": 22 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2425220, + "thread": 6 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2535100, + "thread": 22 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2656726, + "thread": 1 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 2796075, + "thread": 27 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 3067534, + "thread": 25 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 3210465, + "thread": 18 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 3427571, + "thread": 12 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 3460569, + "thread": 30 + } + }, + { + "amount": "139.493338533", + "slot": { + "period": 3747120, + "thread": 23 + } + }, + { + "amount": "139.493338522", + "slot": { + "period": 3799433, + "thread": 8 + } + } + ], + "AU12XugqWvtaW61TCaWAHXYZi5MZJPqFkTxKbJvGe5ErqZoxR78b8": [ + { + "amount": "383.590138532", + "slot": { + "period": 153608, + "thread": 10 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 263755, + "thread": 2 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 352851, + "thread": 4 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 525563, + "thread": 8 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 727697, + "thread": 27 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 885750, + "thread": 5 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1119664, + "thread": 29 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1297938, + "thread": 10 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1459919, + "thread": 17 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1540576, + "thread": 12 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1760256, + "thread": 3 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 1903022, + "thread": 22 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2026954, + "thread": 0 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2265221, + "thread": 19 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2299420, + "thread": 22 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2526301, + "thread": 8 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2754296, + "thread": 6 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 2872559, + "thread": 23 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 3092674, + "thread": 19 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 3222695, + "thread": 22 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 3356221, + "thread": 5 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 3600048, + "thread": 12 + } + }, + { + "amount": "383.590138532", + "slot": { + "period": 3634700, + "thread": 15 + } + }, + { + "amount": "383.590138531", + "slot": { + "period": 3881086, + "thread": 21 + } + } + ], + "AU12XwRaU8fRVwnzm1mLeNRH5RtgoTD6VyQWiyeTLucGt4iAgPwNj": [ + { + "amount": "313.568488085", + "slot": { + "period": 60980, + "thread": 8 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 319975, + "thread": 17 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 441878, + "thread": 15 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 593816, + "thread": 18 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 658621, + "thread": 11 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 862172, + "thread": 7 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1110338, + "thread": 28 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1193991, + "thread": 0 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1413323, + "thread": 24 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1524433, + "thread": 0 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1741017, + "thread": 27 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 1888951, + "thread": 15 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2132184, + "thread": 8 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2184915, + "thread": 0 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2436923, + "thread": 23 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2554972, + "thread": 12 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2719917, + "thread": 29 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 2925605, + "thread": 2 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 3100913, + "thread": 10 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 3282649, + "thread": 15 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 3387831, + "thread": 7 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 3471862, + "thread": 27 + } + }, + { + "amount": "313.568488085", + "slot": { + "period": 3744885, + "thread": 6 + } + }, + { + "amount": "313.568488092", + "slot": { + "period": 3934365, + "thread": 21 + } + } + ], + "AU12Xwd7tbVhrnY8vYCjjQpUMJQMMboCkxhdja3CKrQZnZwm4bsh6": [ + { + "amount": "269.655601312", + "slot": { + "period": 156153, + "thread": 28 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 217488, + "thread": 10 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 443425, + "thread": 14 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 528955, + "thread": 0 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 661819, + "thread": 7 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 920094, + "thread": 22 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1146796, + "thread": 13 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1152548, + "thread": 23 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1461373, + "thread": 26 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1533035, + "thread": 31 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1772353, + "thread": 15 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 1890958, + "thread": 17 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2064277, + "thread": 1 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2238908, + "thread": 13 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2322228, + "thread": 2 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2600601, + "thread": 13 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2750855, + "thread": 7 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2800484, + "thread": 27 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 2960852, + "thread": 1 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 3174550, + "thread": 10 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 3393424, + "thread": 15 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 3459337, + "thread": 31 + } + }, + { + "amount": "269.655601312", + "slot": { + "period": 3741608, + "thread": 18 + } + }, + { + "amount": "269.655601308", + "slot": { + "period": 3859901, + "thread": 18 + } + } + ], + "AU12XwwGUMHXkWGjJQ9bEcp3Wk2jQwni2cLgfdz7xCTE2dE7DSz3k": [ + { + "amount": "91.002715508", + "slot": { + "period": 62469, + "thread": 18 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 290210, + "thread": 27 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 430909, + "thread": 27 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 524202, + "thread": 31 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 721664, + "thread": 12 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 837197, + "thread": 3 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1051430, + "thread": 9 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1182852, + "thread": 23 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1465646, + "thread": 29 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1615912, + "thread": 14 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1795485, + "thread": 16 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1974198, + "thread": 23 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 1980224, + "thread": 9 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 2229375, + "thread": 2 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 2296245, + "thread": 3 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 2506111, + "thread": 25 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 2700346, + "thread": 24 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 2811518, + "thread": 7 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 3067269, + "thread": 8 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 3162476, + "thread": 30 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 3325338, + "thread": 29 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 3601816, + "thread": 10 + } + }, + { + "amount": "91.002715508", + "slot": { + "period": 3660882, + "thread": 25 + } + }, + { + "amount": "91.002715511", + "slot": { + "period": 3916885, + "thread": 14 + } + } + ], + "AU12XxyiQBFJXurAyctMzJWUyyezk6D19y4s1wwXZjYTjJ1qN2pGQ": [ + { + "amount": "94.326344085", + "slot": { + "period": 111723, + "thread": 14 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 176178, + "thread": 9 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 470949, + "thread": 0 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 537078, + "thread": 19 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 707422, + "thread": 22 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 958224, + "thread": 14 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1136249, + "thread": 2 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1213152, + "thread": 27 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1330583, + "thread": 25 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1502507, + "thread": 28 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1794433, + "thread": 2 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 1907447, + "thread": 19 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2078384, + "thread": 23 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2235468, + "thread": 16 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2324476, + "thread": 22 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2525794, + "thread": 16 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2758729, + "thread": 29 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 2896764, + "thread": 5 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 3060917, + "thread": 30 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 3154573, + "thread": 21 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 3411952, + "thread": 5 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 3616572, + "thread": 11 + } + }, + { + "amount": "94.326344085", + "slot": { + "period": 3641124, + "thread": 17 + } + }, + { + "amount": "94.326344078", + "slot": { + "period": 3809451, + "thread": 29 + } + } + ], + "AU12XyDM4WNu61ebLBLnpoTnowPgfaXbei5i7UgCGoUJ4KQuA8PE5": [ + { + "amount": "629.885605818", + "slot": { + "period": 31755, + "thread": 23 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 171645, + "thread": 8 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 489127, + "thread": 21 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 589838, + "thread": 6 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 771500, + "thread": 1 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 854581, + "thread": 18 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1060368, + "thread": 11 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1159947, + "thread": 22 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1403195, + "thread": 14 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1505015, + "thread": 28 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1690213, + "thread": 20 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 1966429, + "thread": 11 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2099427, + "thread": 4 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2261065, + "thread": 19 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2319708, + "thread": 1 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2489622, + "thread": 22 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2698576, + "thread": 10 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 2847944, + "thread": 21 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 3011071, + "thread": 2 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 3219690, + "thread": 7 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 3415145, + "thread": 9 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 3496946, + "thread": 17 + } + }, + { + "amount": "629.885605818", + "slot": { + "period": 3732390, + "thread": 22 + } + }, + { + "amount": "629.885605806", + "slot": { + "period": 3780726, + "thread": 21 + } + } + ], + "AU12XyZZvB3uLhCKCZBc9kS5wJ78fNUY4mN6H46ZESAqV7z2GWP5A": [ + { + "amount": "219.391519183", + "slot": { + "period": 150360, + "thread": 5 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 184615, + "thread": 15 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 462952, + "thread": 5 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 651124, + "thread": 4 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 695423, + "thread": 14 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 909367, + "thread": 15 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1139175, + "thread": 14 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1264679, + "thread": 27 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1402010, + "thread": 22 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1625606, + "thread": 28 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1796175, + "thread": 19 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 1834493, + "thread": 15 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2075215, + "thread": 13 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2246717, + "thread": 16 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2422286, + "thread": 13 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2490449, + "thread": 30 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2680927, + "thread": 21 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 2817293, + "thread": 22 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 3115241, + "thread": 30 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 3254678, + "thread": 19 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 3345941, + "thread": 0 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 3530245, + "thread": 15 + } + }, + { + "amount": "219.391519183", + "slot": { + "period": 3761889, + "thread": 14 + } + }, + { + "amount": "219.391519192", + "slot": { + "period": 3903771, + "thread": 5 + } + } + ], + "AU12XywiCFo9G1mfniEZLXGy4JYs7JJ7bZTA5rbZ3LjsJSfvDNQ9w": [ + { + "amount": "221.697790549", + "slot": { + "period": 99292, + "thread": 17 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 282006, + "thread": 2 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 419243, + "thread": 31 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 629378, + "thread": 18 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 688206, + "thread": 18 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 912575, + "thread": 18 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1020125, + "thread": 13 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1204795, + "thread": 19 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1350426, + "thread": 31 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1604506, + "thread": 11 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1771432, + "thread": 2 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 1941562, + "thread": 12 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2099553, + "thread": 10 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2283444, + "thread": 17 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2458609, + "thread": 2 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2521777, + "thread": 4 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2752090, + "thread": 25 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2912226, + "thread": 10 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 2958835, + "thread": 23 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 3126907, + "thread": 2 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 3292753, + "thread": 9 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 3563590, + "thread": 15 + } + }, + { + "amount": "221.697790549", + "slot": { + "period": 3671598, + "thread": 13 + } + }, + { + "amount": "221.697790551", + "slot": { + "period": 3873326, + "thread": 24 + } + } + ], + "AU12XzLQCrJicGMMRfJyr52HRMCHSof2ASxyAkkMRxHooYXDi8F5H": [ + { + "amount": "145.804013608", + "slot": { + "period": 118474, + "thread": 4 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 323179, + "thread": 29 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 452122, + "thread": 11 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 491802, + "thread": 18 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 738395, + "thread": 31 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 852395, + "thread": 10 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1090167, + "thread": 19 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1269628, + "thread": 21 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1365213, + "thread": 3 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1581998, + "thread": 29 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1733366, + "thread": 22 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 1907343, + "thread": 20 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2092443, + "thread": 9 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2189602, + "thread": 22 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2421122, + "thread": 20 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2548411, + "thread": 26 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2781683, + "thread": 23 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 2953753, + "thread": 11 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 3030030, + "thread": 18 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 3176795, + "thread": 0 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 3411426, + "thread": 19 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 3462499, + "thread": 1 + } + }, + { + "amount": "145.804013608", + "slot": { + "period": 3773094, + "thread": 9 + } + }, + { + "amount": "145.804013619", + "slot": { + "period": 3894389, + "thread": 23 + } + } + ], + "AU12Y1ZCHJKjzuVC56G55X5S637BUHYQt8g8mVdNnGWAkeN87UmuC": [ + { + "amount": "595.798626642", + "slot": { + "period": 132755, + "thread": 29 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 200108, + "thread": 12 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 364308, + "thread": 30 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 504772, + "thread": 19 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 781521, + "thread": 26 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 928854, + "thread": 8 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1124412, + "thread": 4 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1262777, + "thread": 2 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1324746, + "thread": 8 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1584382, + "thread": 8 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1730984, + "thread": 21 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1901144, + "thread": 22 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 1991457, + "thread": 18 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 2197177, + "thread": 9 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 2315675, + "thread": 24 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 2610805, + "thread": 23 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 2791480, + "thread": 31 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 2867502, + "thread": 11 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 3021473, + "thread": 15 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 3276428, + "thread": 20 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 3351718, + "thread": 25 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 3602638, + "thread": 10 + } + }, + { + "amount": "595.798626642", + "slot": { + "period": 3644414, + "thread": 4 + } + }, + { + "amount": "595.798626653", + "slot": { + "period": 3805200, + "thread": 14 + } + } + ], + "AU12Y1ZNFLV9Qgk7Q1xGtjkAbLgPwi8fLFX6WBXXDYnYMWidG9g36": [ + { + "amount": "484.760345768", + "slot": { + "period": 24334, + "thread": 29 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 322223, + "thread": 2 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 489090, + "thread": 10 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 497805, + "thread": 2 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 756103, + "thread": 3 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 982216, + "thread": 24 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 987706, + "thread": 12 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 1242762, + "thread": 10 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 1406860, + "thread": 22 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 1640039, + "thread": 25 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 1697257, + "thread": 21 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 1852826, + "thread": 25 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2044600, + "thread": 8 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2254316, + "thread": 12 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2310163, + "thread": 0 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2577166, + "thread": 7 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2771996, + "thread": 26 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2812957, + "thread": 15 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 2968228, + "thread": 16 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 3251732, + "thread": 4 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 3321433, + "thread": 12 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 3540019, + "thread": 17 + } + }, + { + "amount": "484.760345768", + "slot": { + "period": 3729444, + "thread": 10 + } + }, + { + "amount": "484.760345778", + "slot": { + "period": 3818105, + "thread": 16 + } + } + ], + "AU12Y1nKRzZWGHewFjdZASCNVfQBmnefXWRwADKVMTy6fSn7TtrwS": [ + { + "amount": "75.596315276", + "slot": { + "period": 115040, + "thread": 4 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 190850, + "thread": 18 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 335563, + "thread": 10 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 517835, + "thread": 29 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 701028, + "thread": 14 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 888667, + "thread": 17 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1074954, + "thread": 6 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1194740, + "thread": 17 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1324719, + "thread": 30 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1606559, + "thread": 4 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1713397, + "thread": 3 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1948193, + "thread": 22 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 1986782, + "thread": 4 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 2149598, + "thread": 21 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 2317009, + "thread": 6 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 2563771, + "thread": 25 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 2790564, + "thread": 7 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 2872024, + "thread": 4 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 3099345, + "thread": 3 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 3154694, + "thread": 24 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 3309861, + "thread": 28 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 3559981, + "thread": 9 + } + }, + { + "amount": "75.596315276", + "slot": { + "period": 3707724, + "thread": 8 + } + }, + { + "amount": "75.596315266", + "slot": { + "period": 3835468, + "thread": 26 + } + } + ], + "AU12Y3Rd4RiBQg4chNsMiSyUY71Zert2DSKzfwq2T1SR4Fu9ExhFM": [ + { + "amount": "119.675231027", + "slot": { + "period": 98498, + "thread": 24 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 261606, + "thread": 15 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 449845, + "thread": 6 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 578009, + "thread": 18 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 735690, + "thread": 19 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 976976, + "thread": 15 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1140148, + "thread": 4 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1218305, + "thread": 15 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1365304, + "thread": 1 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1502805, + "thread": 13 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1704125, + "thread": 24 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1898711, + "thread": 29 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 1992484, + "thread": 16 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 2161788, + "thread": 24 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 2402348, + "thread": 2 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 2561271, + "thread": 14 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 2672223, + "thread": 11 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 2862858, + "thread": 30 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 3054892, + "thread": 10 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 3225847, + "thread": 13 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 3331666, + "thread": 19 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 3476549, + "thread": 4 + } + }, + { + "amount": "119.675231027", + "slot": { + "period": 3720010, + "thread": 29 + } + }, + { + "amount": "119.675231034", + "slot": { + "period": 3818969, + "thread": 22 + } + } + ], + "AU12Y5HVdeZPpZz4dtdoB6eXPqTkLg3jkbtwj52itbhzL8ACk1VKJ": [ + { + "amount": "515.186058479", + "slot": { + "period": 48983, + "thread": 29 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 180932, + "thread": 31 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 338908, + "thread": 19 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 562243, + "thread": 8 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 669596, + "thread": 16 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 855950, + "thread": 20 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1039513, + "thread": 4 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1312363, + "thread": 23 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1476213, + "thread": 29 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1489707, + "thread": 10 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1802785, + "thread": 6 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 1888874, + "thread": 3 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2010816, + "thread": 2 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2232884, + "thread": 16 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2335825, + "thread": 6 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2490123, + "thread": 5 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2632196, + "thread": 3 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 2929381, + "thread": 9 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 3087467, + "thread": 30 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 3240193, + "thread": 3 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 3377437, + "thread": 15 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 3463240, + "thread": 11 + } + }, + { + "amount": "515.186058479", + "slot": { + "period": 3649129, + "thread": 11 + } + }, + { + "amount": "515.186058478", + "slot": { + "period": 3881740, + "thread": 22 + } + } + ], + "AU12Y6sTS759RJhy82rFCnZm5tccWJzbB6fxH79A3ujPNTjtyHZer": [ + { + "amount": "225.574769818", + "slot": { + "period": 15240, + "thread": 22 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 235058, + "thread": 31 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 433508, + "thread": 12 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 560048, + "thread": 20 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 670565, + "thread": 13 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 887731, + "thread": 14 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1134605, + "thread": 15 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1280739, + "thread": 23 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1477850, + "thread": 25 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1483886, + "thread": 27 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1791234, + "thread": 4 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 1858891, + "thread": 29 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2049809, + "thread": 23 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2276415, + "thread": 15 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2349741, + "thread": 20 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2524021, + "thread": 25 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2660589, + "thread": 25 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2895148, + "thread": 16 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 2981994, + "thread": 24 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 3162962, + "thread": 24 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 3397525, + "thread": 10 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 3483844, + "thread": 0 + } + }, + { + "amount": "225.574769818", + "slot": { + "period": 3694404, + "thread": 2 + } + }, + { + "amount": "225.574769811", + "slot": { + "period": 3917372, + "thread": 14 + } + } + ], + "AU12Y6zyMDF4AvpuQn3NfGhPRN71toz21gDubtrtGwALgMZDWkWs5": [ + { + "amount": "621.519535332", + "slot": { + "period": 48331, + "thread": 5 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 320436, + "thread": 1 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 406350, + "thread": 9 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 587720, + "thread": 5 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 723343, + "thread": 28 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 959487, + "thread": 22 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1089865, + "thread": 22 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1165976, + "thread": 16 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1400285, + "thread": 14 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1614357, + "thread": 31 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1788361, + "thread": 21 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 1925467, + "thread": 8 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2041032, + "thread": 27 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2240159, + "thread": 4 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2406318, + "thread": 28 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2505815, + "thread": 12 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2732831, + "thread": 27 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 2866495, + "thread": 7 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 3086806, + "thread": 19 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 3252026, + "thread": 14 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 3386208, + "thread": 6 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 3469455, + "thread": 2 + } + }, + { + "amount": "621.519535332", + "slot": { + "period": 3715423, + "thread": 6 + } + }, + { + "amount": "621.519535323", + "slot": { + "period": 3877946, + "thread": 21 + } + } + ], + "AU12Y76HpXJ38szhykQKJewaWB3ezU5qeFrfT9Jht8skYzyhW6j7a": [ + { + "amount": "194.275065610", + "slot": { + "period": 61916, + "thread": 18 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 251945, + "thread": 7 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 454187, + "thread": 7 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 549009, + "thread": 26 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 697558, + "thread": 23 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 906648, + "thread": 27 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1040217, + "thread": 28 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1290911, + "thread": 14 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1450257, + "thread": 17 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1585425, + "thread": 12 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1798194, + "thread": 30 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 1887854, + "thread": 27 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2130598, + "thread": 13 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2200669, + "thread": 7 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2386188, + "thread": 30 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2567941, + "thread": 9 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2737808, + "thread": 26 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 2925069, + "thread": 16 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 3011912, + "thread": 26 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 3225871, + "thread": 12 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 3344222, + "thread": 7 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 3555547, + "thread": 31 + } + }, + { + "amount": "194.275065610", + "slot": { + "period": 3751725, + "thread": 24 + } + }, + { + "amount": "194.275065611", + "slot": { + "period": 3839982, + "thread": 22 + } + } + ], + "AU12Y7Ve2ahks4bGpUz6QXjy8A52ypbE3htznP5iB4botBknMscdR": [ + { + "amount": "310.504615348", + "slot": { + "period": 32040, + "thread": 28 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 248746, + "thread": 18 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 442211, + "thread": 8 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 613954, + "thread": 1 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 696974, + "thread": 24 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 879452, + "thread": 29 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1119021, + "thread": 16 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1179850, + "thread": 27 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1475195, + "thread": 25 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1599335, + "thread": 29 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1677568, + "thread": 28 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 1884828, + "thread": 16 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2135561, + "thread": 18 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2153713, + "thread": 22 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2444607, + "thread": 25 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2561065, + "thread": 26 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2733632, + "thread": 24 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 2895260, + "thread": 18 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 3104480, + "thread": 1 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 3281430, + "thread": 31 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 3335183, + "thread": 8 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 3468792, + "thread": 10 + } + }, + { + "amount": "310.504615348", + "slot": { + "period": 3697484, + "thread": 3 + } + }, + { + "amount": "310.504615337", + "slot": { + "period": 3925459, + "thread": 4 + } + } + ], + "AU12Y7xAbz8DHwegRKXDMbUkuaFdbCpkLG7PZXhC2ZLDUnTWTimT4": [ + { + "amount": "310.258914690", + "slot": { + "period": 63343, + "thread": 15 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 284311, + "thread": 8 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 333619, + "thread": 27 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 578688, + "thread": 1 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 748959, + "thread": 0 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 938979, + "thread": 24 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1047539, + "thread": 25 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1183181, + "thread": 23 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1324192, + "thread": 29 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1497366, + "thread": 20 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1663262, + "thread": 19 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 1835216, + "thread": 21 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2130529, + "thread": 24 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2280453, + "thread": 13 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2346013, + "thread": 14 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2530715, + "thread": 11 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2666047, + "thread": 21 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 2893819, + "thread": 27 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 3029096, + "thread": 14 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 3192607, + "thread": 29 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 3388290, + "thread": 5 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 3562297, + "thread": 12 + } + }, + { + "amount": "310.258914690", + "slot": { + "period": 3639266, + "thread": 31 + } + }, + { + "amount": "310.258914699", + "slot": { + "period": 3844336, + "thread": 11 + } + } + ], + "AU12YBG21kNiaqNZm2PmPqBRoZ5xGdM9op2RmRFJhijmXUb4V2top": [ + { + "amount": "296.390342656", + "slot": { + "period": 13330, + "thread": 3 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 260899, + "thread": 5 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 349264, + "thread": 12 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 552974, + "thread": 27 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 798199, + "thread": 4 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 979757, + "thread": 24 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1013282, + "thread": 30 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1307964, + "thread": 13 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1344399, + "thread": 1 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1557726, + "thread": 19 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1739178, + "thread": 14 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1809435, + "thread": 1 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 1997254, + "thread": 8 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 2211072, + "thread": 21 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 2447243, + "thread": 20 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 2495567, + "thread": 25 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 2644857, + "thread": 8 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 2877030, + "thread": 29 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 3018666, + "thread": 10 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 3175165, + "thread": 7 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 3394358, + "thread": 0 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 3571608, + "thread": 2 + } + }, + { + "amount": "296.390342656", + "slot": { + "period": 3692126, + "thread": 30 + } + }, + { + "amount": "296.390342660", + "slot": { + "period": 3933314, + "thread": 9 + } + } + ], + "AU12YBVA3zsX6ngsg8QeJiMea2hs2sjG6YuwaEjdXHoeHNgGRhoq6": [ + { + "amount": "171.629334275", + "slot": { + "period": 126091, + "thread": 11 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 201014, + "thread": 22 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 371114, + "thread": 13 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 549275, + "thread": 19 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 675778, + "thread": 18 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 908260, + "thread": 21 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1081400, + "thread": 3 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1226329, + "thread": 16 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1343717, + "thread": 28 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1482371, + "thread": 28 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1807315, + "thread": 19 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 1900817, + "thread": 25 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2019765, + "thread": 31 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2226045, + "thread": 20 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2441228, + "thread": 31 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2463211, + "thread": 1 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2697085, + "thread": 29 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2919655, + "thread": 10 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 2971890, + "thread": 29 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 3176723, + "thread": 3 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 3303115, + "thread": 15 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 3554024, + "thread": 11 + } + }, + { + "amount": "171.629334275", + "slot": { + "period": 3627288, + "thread": 26 + } + }, + { + "amount": "171.629334268", + "slot": { + "period": 3847904, + "thread": 23 + } + } + ], + "AU12YBoifSLZd1qoxNX45LR4HRGCMJhcuw4dvPotWn2HmRx7oy79t": [ + { + "amount": "318.861994010", + "slot": { + "period": 20679, + "thread": 5 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 237663, + "thread": 23 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 472135, + "thread": 7 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 511192, + "thread": 26 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 661045, + "thread": 24 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 891414, + "thread": 6 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 984359, + "thread": 5 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 1231991, + "thread": 31 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 1425152, + "thread": 19 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 1543057, + "thread": 26 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 1707325, + "thread": 18 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 1853868, + "thread": 23 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2143037, + "thread": 24 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2274820, + "thread": 20 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2433195, + "thread": 11 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2599554, + "thread": 22 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2765978, + "thread": 21 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2942590, + "thread": 10 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 2998427, + "thread": 28 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 3157656, + "thread": 12 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 3419712, + "thread": 15 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 3579997, + "thread": 11 + } + }, + { + "amount": "318.861994010", + "slot": { + "period": 3630178, + "thread": 29 + } + }, + { + "amount": "318.861994011", + "slot": { + "period": 3883721, + "thread": 3 + } + } + ], + "AU12YC78JKH4gHFDK8HjDERtev82r8wdLcAFnpE9TfBzNi9WCNGw8": [ + { + "amount": "284.478886927", + "slot": { + "period": 96107, + "thread": 28 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 175096, + "thread": 16 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 393014, + "thread": 17 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 560733, + "thread": 16 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 742038, + "thread": 4 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 881946, + "thread": 0 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1133812, + "thread": 17 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1187104, + "thread": 16 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1361751, + "thread": 9 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1641466, + "thread": 26 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1669218, + "thread": 10 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 1819806, + "thread": 28 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2018176, + "thread": 17 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2202817, + "thread": 21 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2389502, + "thread": 0 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2533141, + "thread": 15 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2732345, + "thread": 4 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 2905439, + "thread": 4 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 3105483, + "thread": 17 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 3218325, + "thread": 9 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 3415497, + "thread": 6 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 3567304, + "thread": 24 + } + }, + { + "amount": "284.478886927", + "slot": { + "period": 3640720, + "thread": 24 + } + }, + { + "amount": "284.478886937", + "slot": { + "period": 3790175, + "thread": 22 + } + } + ], + "AU12YCdZpNkBdboca3uEWt6AtgEQ7AHHCnLTzVf24HkyWi44EN3iL": [ + { + "amount": "139.136642982", + "slot": { + "period": 25714, + "thread": 26 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 242798, + "thread": 27 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 341081, + "thread": 0 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 635113, + "thread": 22 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 706463, + "thread": 18 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 825446, + "thread": 9 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1079917, + "thread": 10 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1313355, + "thread": 3 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1392627, + "thread": 14 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1644044, + "thread": 4 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1797261, + "thread": 19 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 1904159, + "thread": 15 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2091163, + "thread": 8 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2249843, + "thread": 23 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2392240, + "thread": 5 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2512721, + "thread": 24 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2625060, + "thread": 6 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 2832331, + "thread": 14 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 3083490, + "thread": 16 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 3204879, + "thread": 14 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 3334140, + "thread": 11 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 3616720, + "thread": 3 + } + }, + { + "amount": "139.136642982", + "slot": { + "period": 3734068, + "thread": 23 + } + }, + { + "amount": "139.136642993", + "slot": { + "period": 3943639, + "thread": 22 + } + } + ], + "AU12YChYzMNPUVCWzzzfeXdTcdziLCusvZBSMEpExynsVHves6zYe": [ + { + "amount": "385.034978660", + "slot": { + "period": 96768, + "thread": 27 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 235259, + "thread": 29 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 398057, + "thread": 10 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 625432, + "thread": 22 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 661570, + "thread": 20 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 878293, + "thread": 8 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1108326, + "thread": 25 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1278846, + "thread": 12 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1411723, + "thread": 7 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1536915, + "thread": 25 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1774115, + "thread": 25 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1956309, + "thread": 30 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 1998328, + "thread": 2 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 2259157, + "thread": 31 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 2451616, + "thread": 10 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 2510729, + "thread": 11 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 2640492, + "thread": 1 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 2844097, + "thread": 26 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 3069482, + "thread": 11 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 3152289, + "thread": 12 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 3427443, + "thread": 15 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 3508385, + "thread": 2 + } + }, + { + "amount": "385.034978660", + "slot": { + "period": 3660971, + "thread": 24 + } + }, + { + "amount": "385.034978659", + "slot": { + "period": 3816795, + "thread": 24 + } + } + ], + "AU12YCm3SNhXj3t5JthEr2r4fSjuy75CKRXjhwsp8EvEYQMAysmaZ": [ + { + "amount": "320.044208989", + "slot": { + "period": 153090, + "thread": 10 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 303571, + "thread": 30 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 402789, + "thread": 31 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 615842, + "thread": 20 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 769899, + "thread": 18 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 858136, + "thread": 16 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1141875, + "thread": 19 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1192511, + "thread": 25 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1322565, + "thread": 29 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1584469, + "thread": 21 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1648272, + "thread": 6 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 1867612, + "thread": 22 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2071415, + "thread": 2 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2189373, + "thread": 30 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2398071, + "thread": 6 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2477824, + "thread": 23 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2763318, + "thread": 13 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2935927, + "thread": 27 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 2991947, + "thread": 19 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 3133476, + "thread": 6 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 3430528, + "thread": 31 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 3461918, + "thread": 5 + } + }, + { + "amount": "320.044208989", + "slot": { + "period": 3714401, + "thread": 29 + } + }, + { + "amount": "320.044208983", + "slot": { + "period": 3814695, + "thread": 17 + } + } + ], + "AU12YDmdhZheyoA4rh1nJkhMMYB6LQmJGCQBkgQxD1LMgNQapbxph": [ + { + "amount": "184.288009332", + "slot": { + "period": 59254, + "thread": 27 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 239653, + "thread": 12 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 450357, + "thread": 11 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 588817, + "thread": 26 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 750767, + "thread": 18 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 842277, + "thread": 22 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1007640, + "thread": 17 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1271088, + "thread": 24 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1349401, + "thread": 7 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1496414, + "thread": 16 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1686139, + "thread": 15 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 1898462, + "thread": 29 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2112727, + "thread": 5 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2219557, + "thread": 8 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2426448, + "thread": 24 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2519829, + "thread": 22 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2729520, + "thread": 15 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2877110, + "thread": 25 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 2960309, + "thread": 28 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 3134488, + "thread": 20 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 3438587, + "thread": 9 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 3512656, + "thread": 9 + } + }, + { + "amount": "184.288009332", + "slot": { + "period": 3670713, + "thread": 10 + } + }, + { + "amount": "184.288009321", + "slot": { + "period": 3912290, + "thread": 31 + } + } + ], + "AU12YEDBzBWy8xfuTK5zda4KsoFyNqVNLYAoQu7XGFjhERpRye93P": [ + { + "amount": "282.151716661", + "slot": { + "period": 75165, + "thread": 26 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 247862, + "thread": 9 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 489818, + "thread": 11 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 525756, + "thread": 30 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 742488, + "thread": 20 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 973340, + "thread": 29 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1045304, + "thread": 19 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1282904, + "thread": 11 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1442906, + "thread": 22 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1512811, + "thread": 8 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1675606, + "thread": 31 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 1899278, + "thread": 30 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2123726, + "thread": 6 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2219271, + "thread": 21 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2307608, + "thread": 25 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2485677, + "thread": 11 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2661831, + "thread": 14 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 2876764, + "thread": 16 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 3036545, + "thread": 13 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 3169690, + "thread": 20 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 3355482, + "thread": 26 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 3544810, + "thread": 12 + } + }, + { + "amount": "282.151716661", + "slot": { + "period": 3705099, + "thread": 24 + } + }, + { + "amount": "282.151716667", + "slot": { + "period": 3923852, + "thread": 7 + } + } + ], + "AU12YEHBBmbnDTP84eeuaMvCJuV8SU9poMb97dBhp1PLhGsnJYNvn": [ + { + "amount": "196.025059003", + "slot": { + "period": 142730, + "thread": 9 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 308125, + "thread": 31 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 349782, + "thread": 19 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 506470, + "thread": 4 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 670683, + "thread": 2 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 890791, + "thread": 22 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1062037, + "thread": 10 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1150726, + "thread": 6 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1434672, + "thread": 31 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1589259, + "thread": 4 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1693676, + "thread": 8 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 1863632, + "thread": 14 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2062939, + "thread": 3 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2154782, + "thread": 23 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2392257, + "thread": 23 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2489780, + "thread": 21 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2766448, + "thread": 1 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 2922035, + "thread": 26 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 3023546, + "thread": 26 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 3222749, + "thread": 7 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 3394055, + "thread": 17 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 3500443, + "thread": 30 + } + }, + { + "amount": "196.025059003", + "slot": { + "period": 3689510, + "thread": 24 + } + }, + { + "amount": "196.025059009", + "slot": { + "period": 3882916, + "thread": 23 + } + } + ], + "AU12YERMAdZ8CT4yzTv5GTftnTL7cNhApRPYGCT3D6Azuxu7hsi6C": [ + { + "amount": "149.422188159", + "slot": { + "period": 31997, + "thread": 5 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 261355, + "thread": 4 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 333661, + "thread": 10 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 621000, + "thread": 25 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 697790, + "thread": 22 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 961707, + "thread": 11 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1102640, + "thread": 17 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1253094, + "thread": 6 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1414386, + "thread": 19 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1496586, + "thread": 9 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1759329, + "thread": 16 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 1845455, + "thread": 23 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2046595, + "thread": 20 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2194382, + "thread": 5 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2320066, + "thread": 20 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2572163, + "thread": 3 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2713411, + "thread": 11 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 2823760, + "thread": 1 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 3062116, + "thread": 8 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 3142881, + "thread": 29 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 3448249, + "thread": 4 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 3547455, + "thread": 13 + } + }, + { + "amount": "149.422188159", + "slot": { + "period": 3657101, + "thread": 15 + } + }, + { + "amount": "149.422188166", + "slot": { + "period": 3873523, + "thread": 5 + } + } + ], + "AU12YEjhfqDje5KjBNzENv1Dvpo5hh6ELfg3DCL9dNnX3iWK4Y9Qk": [ + { + "amount": "127.796426025", + "slot": { + "period": 11414, + "thread": 5 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 277087, + "thread": 22 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 326591, + "thread": 16 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 512791, + "thread": 0 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 736459, + "thread": 10 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 905156, + "thread": 20 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1070109, + "thread": 16 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1186881, + "thread": 9 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1335862, + "thread": 23 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1598900, + "thread": 24 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1766085, + "thread": 19 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 1876908, + "thread": 15 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2044711, + "thread": 5 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2276486, + "thread": 14 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2306938, + "thread": 7 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2484557, + "thread": 15 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2656788, + "thread": 11 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 2859348, + "thread": 26 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 3095311, + "thread": 30 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 3135465, + "thread": 8 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 3392108, + "thread": 16 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 3593238, + "thread": 27 + } + }, + { + "amount": "127.796426025", + "slot": { + "period": 3767929, + "thread": 1 + } + }, + { + "amount": "127.796426018", + "slot": { + "period": 3895947, + "thread": 30 + } + } + ], + "AU12YF2x3K5gKpzdt7c65bxJV3BKG4N8NybojbSScBZYN23YCpgNp": [ + { + "amount": "186.179033694", + "slot": { + "period": 105200, + "thread": 6 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 189518, + "thread": 13 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 379522, + "thread": 18 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 603300, + "thread": 5 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 797452, + "thread": 13 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 853915, + "thread": 5 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1087813, + "thread": 0 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1234120, + "thread": 11 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1332531, + "thread": 7 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1612605, + "thread": 9 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1648902, + "thread": 29 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 1889333, + "thread": 21 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2129873, + "thread": 11 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2274982, + "thread": 30 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2363619, + "thread": 3 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2590007, + "thread": 0 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2639338, + "thread": 1 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 2915712, + "thread": 24 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 3073164, + "thread": 31 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 3155161, + "thread": 16 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 3357168, + "thread": 12 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 3475289, + "thread": 0 + } + }, + { + "amount": "186.179033694", + "slot": { + "period": 3697397, + "thread": 24 + } + }, + { + "amount": "186.179033700", + "slot": { + "period": 3844701, + "thread": 4 + } + } + ], + "AU12YFgzW8UkMxuqvNDdWNfVXhiB8q53n4jsEGT3cNVqucyZe5Cwb": [ + { + "amount": "139.908064690", + "slot": { + "period": 150819, + "thread": 9 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 248338, + "thread": 18 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 358153, + "thread": 29 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 632642, + "thread": 1 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 724072, + "thread": 15 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 927162, + "thread": 21 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1085232, + "thread": 21 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1238040, + "thread": 0 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1376237, + "thread": 17 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1538474, + "thread": 8 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1779329, + "thread": 26 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 1826915, + "thread": 14 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2087535, + "thread": 19 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2273915, + "thread": 31 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2414165, + "thread": 14 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2607081, + "thread": 14 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2716749, + "thread": 11 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 2885195, + "thread": 10 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 3054973, + "thread": 10 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 3252683, + "thread": 16 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 3362641, + "thread": 27 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 3612928, + "thread": 0 + } + }, + { + "amount": "139.908064690", + "slot": { + "period": 3655001, + "thread": 14 + } + }, + { + "amount": "139.908064678", + "slot": { + "period": 3906512, + "thread": 0 + } + } + ], + "AU12YHEqmTXSdteH3bPJYxuhoAGtQgydobtncq3xFtz9mm11cruNm": [ + { + "amount": "381.706330289", + "slot": { + "period": 156184, + "thread": 11 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 274781, + "thread": 15 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 482968, + "thread": 31 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 642230, + "thread": 30 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 708437, + "thread": 28 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 916325, + "thread": 23 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1074085, + "thread": 31 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1276938, + "thread": 26 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1377403, + "thread": 21 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1508408, + "thread": 12 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1656151, + "thread": 28 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 1895423, + "thread": 21 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2017238, + "thread": 16 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2188891, + "thread": 28 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2366918, + "thread": 7 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2573570, + "thread": 14 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2750183, + "thread": 25 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 2810488, + "thread": 13 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 3013342, + "thread": 16 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 3175610, + "thread": 22 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 3443833, + "thread": 29 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 3524799, + "thread": 2 + } + }, + { + "amount": "381.706330289", + "slot": { + "period": 3744674, + "thread": 15 + } + }, + { + "amount": "381.706330299", + "slot": { + "period": 3892286, + "thread": 29 + } + } + ], + "AU12YHoWPiTc7nfnfLs5LdXVGFkiAmdVS2CpSrX4mkP3wgpm7vetG": [ + { + "amount": "80.623708021", + "slot": { + "period": 147221, + "thread": 1 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 286015, + "thread": 29 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 404652, + "thread": 1 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 617246, + "thread": 7 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 705029, + "thread": 7 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 920480, + "thread": 4 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1119595, + "thread": 9 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1272911, + "thread": 6 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1414797, + "thread": 14 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1594901, + "thread": 4 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1753231, + "thread": 21 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 1887781, + "thread": 6 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2025713, + "thread": 0 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2245471, + "thread": 21 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2351364, + "thread": 4 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2619521, + "thread": 29 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2745910, + "thread": 27 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2880692, + "thread": 1 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 2981689, + "thread": 6 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 3273120, + "thread": 5 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 3431077, + "thread": 4 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 3487181, + "thread": 18 + } + }, + { + "amount": "80.623708021", + "slot": { + "period": 3760960, + "thread": 0 + } + }, + { + "amount": "80.623708027", + "slot": { + "period": 3839956, + "thread": 14 + } + } + ], + "AU12YJV1EcaxcbhGnEvH6rWbuvFW25uPL9wgc7SYkUFTU4TS7nuEg": [ + { + "amount": "100.327426056", + "slot": { + "period": 49351, + "thread": 15 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 308395, + "thread": 20 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 387249, + "thread": 19 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 593831, + "thread": 4 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 713626, + "thread": 16 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 966301, + "thread": 29 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1009021, + "thread": 4 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1158622, + "thread": 12 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1384133, + "thread": 24 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1574458, + "thread": 16 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1785594, + "thread": 11 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1840680, + "thread": 2 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 1981991, + "thread": 25 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 2202681, + "thread": 5 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 2375501, + "thread": 8 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 2602604, + "thread": 9 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 2714273, + "thread": 9 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 2815795, + "thread": 26 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 3051240, + "thread": 0 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 3177195, + "thread": 5 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 3305977, + "thread": 15 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 3514371, + "thread": 27 + } + }, + { + "amount": "100.327426056", + "slot": { + "period": 3652651, + "thread": 7 + } + }, + { + "amount": "100.327426054", + "slot": { + "period": 3944791, + "thread": 28 + } + } + ], + "AU12YJuHrZBHtc6AtKgKDpxv2Y9ck8oKSCfbCuEGxuVL9SnPW2VTt": [ + { + "amount": "265.731497084", + "slot": { + "period": 47896, + "thread": 30 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 296765, + "thread": 28 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 344481, + "thread": 10 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 545636, + "thread": 8 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 764815, + "thread": 16 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 850008, + "thread": 18 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1134490, + "thread": 9 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1230169, + "thread": 2 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1359852, + "thread": 13 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1526903, + "thread": 22 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1797008, + "thread": 26 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 1907621, + "thread": 12 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2097401, + "thread": 7 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2192871, + "thread": 7 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2449272, + "thread": 18 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2484619, + "thread": 0 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2626753, + "thread": 22 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 2875918, + "thread": 4 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 3110551, + "thread": 31 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 3173422, + "thread": 11 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 3438326, + "thread": 10 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 3581001, + "thread": 27 + } + }, + { + "amount": "265.731497084", + "slot": { + "period": 3672286, + "thread": 9 + } + }, + { + "amount": "265.731497083", + "slot": { + "period": 3823464, + "thread": 29 + } + } + ], + "AU12YK2qj8eT1UAMdpb7HWRk4DQ64gVpvMBkt8aLTW9KapGVzj9WQ": [ + { + "amount": "538.529558467", + "slot": { + "period": 98624, + "thread": 28 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 177220, + "thread": 22 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 470703, + "thread": 11 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 576676, + "thread": 15 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 765503, + "thread": 13 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 875564, + "thread": 11 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1116414, + "thread": 29 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1161823, + "thread": 20 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1318221, + "thread": 0 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1553502, + "thread": 10 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1649020, + "thread": 7 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 1817190, + "thread": 14 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2108078, + "thread": 6 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2196669, + "thread": 27 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2458471, + "thread": 1 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2595263, + "thread": 9 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2751361, + "thread": 0 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 2822762, + "thread": 12 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 3024512, + "thread": 7 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 3157709, + "thread": 4 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 3416615, + "thread": 7 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 3522834, + "thread": 9 + } + }, + { + "amount": "538.529558467", + "slot": { + "period": 3760480, + "thread": 24 + } + }, + { + "amount": "538.529558456", + "slot": { + "period": 3905004, + "thread": 19 + } + } + ], + "AU12YKSM2iQgzMevyd5cRzkdB7YvxYCNxotVtk9YxuEjmSH3PxaoW": [ + { + "amount": "205.894643144", + "slot": { + "period": 129552, + "thread": 14 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 259083, + "thread": 28 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 400704, + "thread": 7 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 594562, + "thread": 12 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 790861, + "thread": 26 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 850833, + "thread": 27 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1028117, + "thread": 8 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1255376, + "thread": 7 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1332181, + "thread": 29 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1613275, + "thread": 15 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1807308, + "thread": 29 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 1886067, + "thread": 10 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2018672, + "thread": 0 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2152909, + "thread": 7 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2447980, + "thread": 31 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2493319, + "thread": 13 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2744729, + "thread": 12 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2800664, + "thread": 2 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 2984079, + "thread": 29 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 3287843, + "thread": 25 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 3333685, + "thread": 7 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 3524089, + "thread": 23 + } + }, + { + "amount": "205.894643144", + "slot": { + "period": 3633761, + "thread": 21 + } + }, + { + "amount": "205.894643148", + "slot": { + "period": 3945850, + "thread": 27 + } + } + ], + "AU12YKXmJFGWbSM7e422mKNkkrneqUoArXZ7GXYKCH4nHhmvbqBkw": [ + { + "amount": "270.133645072", + "slot": { + "period": 95940, + "thread": 4 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 255673, + "thread": 17 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 457570, + "thread": 4 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 541790, + "thread": 8 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 677530, + "thread": 15 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 972014, + "thread": 6 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1044143, + "thread": 19 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1263773, + "thread": 20 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1319322, + "thread": 17 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1514610, + "thread": 9 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1706187, + "thread": 27 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 1898791, + "thread": 12 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2071935, + "thread": 28 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2166305, + "thread": 13 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2418790, + "thread": 28 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2535672, + "thread": 20 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2763192, + "thread": 8 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2904573, + "thread": 3 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 2955444, + "thread": 2 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 3159030, + "thread": 4 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 3399442, + "thread": 27 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 3563613, + "thread": 3 + } + }, + { + "amount": "270.133645072", + "slot": { + "period": 3636436, + "thread": 29 + } + }, + { + "amount": "270.133645076", + "slot": { + "period": 3872501, + "thread": 8 + } + } + ], + "AU12YKn7nZS8Aorj7Wr7j4YcgP8w8ZfGt43b2azmixCwBTJS1SPDh": [ + { + "amount": "267.904854891", + "slot": { + "period": 26844, + "thread": 16 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 233767, + "thread": 6 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 481148, + "thread": 7 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 553057, + "thread": 24 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 673026, + "thread": 16 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 821774, + "thread": 29 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1000921, + "thread": 0 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1216213, + "thread": 21 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1326762, + "thread": 26 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1637168, + "thread": 26 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1669379, + "thread": 5 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 1821332, + "thread": 2 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2044399, + "thread": 11 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2214409, + "thread": 2 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2461835, + "thread": 26 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2612815, + "thread": 21 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2731840, + "thread": 12 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2808453, + "thread": 7 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 2979303, + "thread": 12 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 3225610, + "thread": 2 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 3409127, + "thread": 30 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 3543018, + "thread": 6 + } + }, + { + "amount": "267.904854891", + "slot": { + "period": 3753772, + "thread": 20 + } + }, + { + "amount": "267.904854899", + "slot": { + "period": 3941704, + "thread": 4 + } + } + ], + "AU12YM1MstxR5pAVwuh6dU7VJFLDtgbbd7cQH4phPFq7scUmvoTFQ": [ + { + "amount": "382.203256566", + "slot": { + "period": 100082, + "thread": 21 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 294679, + "thread": 10 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 478057, + "thread": 18 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 575556, + "thread": 8 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 714153, + "thread": 2 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 852368, + "thread": 18 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1053851, + "thread": 10 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1187156, + "thread": 11 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1340073, + "thread": 28 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1532408, + "thread": 28 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1693336, + "thread": 3 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 1873232, + "thread": 2 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2062847, + "thread": 22 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2259897, + "thread": 1 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2344710, + "thread": 10 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2478032, + "thread": 13 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2700141, + "thread": 19 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 2908732, + "thread": 9 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 3075723, + "thread": 28 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 3181028, + "thread": 6 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 3328479, + "thread": 3 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 3533402, + "thread": 18 + } + }, + { + "amount": "382.203256566", + "slot": { + "period": 3657063, + "thread": 15 + } + }, + { + "amount": "382.203256554", + "slot": { + "period": 3812337, + "thread": 3 + } + } + ], + "AU12YMja56WootLFMx1FHSRx4tin51iiK8zf25jbnEisLthR5kY3o": [ + { + "amount": "306.802596489", + "slot": { + "period": 116616, + "thread": 8 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 202788, + "thread": 22 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 456771, + "thread": 19 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 496916, + "thread": 13 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 813688, + "thread": 17 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 893788, + "thread": 28 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 989972, + "thread": 2 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 1161517, + "thread": 28 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 1354730, + "thread": 20 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 1624030, + "thread": 19 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 1749070, + "thread": 3 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 1969253, + "thread": 0 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2032209, + "thread": 5 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2284497, + "thread": 2 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2461915, + "thread": 10 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2573045, + "thread": 7 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2664254, + "thread": 12 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 2878844, + "thread": 1 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 3101417, + "thread": 2 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 3193453, + "thread": 14 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 3448858, + "thread": 28 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 3598261, + "thread": 15 + } + }, + { + "amount": "306.802596489", + "slot": { + "period": 3771016, + "thread": 21 + } + }, + { + "amount": "306.802596499", + "slot": { + "period": 3816112, + "thread": 1 + } + } + ], + "AU12YNDs8wRuTKCg9YgErLj2tagCKHebKR8pJbpvwWKowBNk9cgJ4": [ + { + "amount": "244.295551419", + "slot": { + "period": 80609, + "thread": 3 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 276804, + "thread": 3 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 471903, + "thread": 0 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 547613, + "thread": 9 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 687160, + "thread": 25 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 925093, + "thread": 11 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1110184, + "thread": 5 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1232938, + "thread": 12 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1385761, + "thread": 7 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1634958, + "thread": 9 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1706083, + "thread": 18 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1915033, + "thread": 30 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 1997640, + "thread": 10 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 2159493, + "thread": 4 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 2381550, + "thread": 14 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 2493523, + "thread": 18 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 2760494, + "thread": 25 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 2799916, + "thread": 1 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 3013269, + "thread": 5 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 3124711, + "thread": 0 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 3320589, + "thread": 25 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 3575810, + "thread": 9 + } + }, + { + "amount": "244.295551419", + "slot": { + "period": 3699911, + "thread": 7 + } + }, + { + "amount": "244.295551411", + "slot": { + "period": 3780982, + "thread": 23 + } + } + ], + "AU12YNJm9BxGnBR1w2beaH6nViWCTGctQmb99T7JZgNB4haAxqDwp": [ + { + "amount": "182.948795461", + "slot": { + "period": 105393, + "thread": 30 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 290378, + "thread": 21 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 443717, + "thread": 2 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 516602, + "thread": 19 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 681443, + "thread": 5 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 890808, + "thread": 5 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 993683, + "thread": 22 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 1220733, + "thread": 5 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 1425158, + "thread": 31 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 1587396, + "thread": 27 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 1785995, + "thread": 4 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 1960508, + "thread": 16 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2068393, + "thread": 2 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2163050, + "thread": 17 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2362857, + "thread": 2 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2610516, + "thread": 12 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2683031, + "thread": 28 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2810248, + "thread": 30 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 2982341, + "thread": 3 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 3164910, + "thread": 7 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 3311261, + "thread": 25 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 3486651, + "thread": 1 + } + }, + { + "amount": "182.948795461", + "slot": { + "period": 3707543, + "thread": 27 + } + }, + { + "amount": "182.948795466", + "slot": { + "period": 3937989, + "thread": 24 + } + } + ], + "AU12YNfyStbV8mz2heN2DbfUMk3aEzwgS4JVktkxbXjimf57Xptaa": [ + { + "amount": "217.527568779", + "slot": { + "period": 12314, + "thread": 19 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 196943, + "thread": 1 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 343412, + "thread": 5 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 527735, + "thread": 19 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 748113, + "thread": 2 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 890039, + "thread": 0 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1128166, + "thread": 3 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1281496, + "thread": 12 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1448865, + "thread": 18 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1499743, + "thread": 3 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1777993, + "thread": 30 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 1848494, + "thread": 7 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2008467, + "thread": 18 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2279203, + "thread": 10 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2435940, + "thread": 16 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2472725, + "thread": 15 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2787802, + "thread": 13 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 2951567, + "thread": 3 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 3086659, + "thread": 29 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 3246340, + "thread": 1 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 3291551, + "thread": 31 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 3515358, + "thread": 25 + } + }, + { + "amount": "217.527568779", + "slot": { + "period": 3632433, + "thread": 4 + } + }, + { + "amount": "217.527568778", + "slot": { + "period": 3833868, + "thread": 28 + } + } + ], + "AU12YNs9zzpMecNcyEP6ttJQAcVdmLJyx8vJuvcf9j4ExpAidU7vw": [ + { + "amount": "358.730855518", + "slot": { + "period": 45378, + "thread": 24 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 321350, + "thread": 7 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 427124, + "thread": 11 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 565090, + "thread": 5 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 706692, + "thread": 18 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 951220, + "thread": 8 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1123322, + "thread": 14 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1203517, + "thread": 2 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1329375, + "thread": 1 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1481878, + "thread": 14 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1717320, + "thread": 21 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 1974412, + "thread": 25 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2114350, + "thread": 13 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2270743, + "thread": 17 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2311100, + "thread": 17 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2471005, + "thread": 25 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2663670, + "thread": 19 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 2836269, + "thread": 28 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 3035822, + "thread": 5 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 3243382, + "thread": 25 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 3335398, + "thread": 9 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 3572950, + "thread": 13 + } + }, + { + "amount": "358.730855518", + "slot": { + "period": 3737645, + "thread": 21 + } + }, + { + "amount": "358.730855521", + "slot": { + "period": 3801860, + "thread": 2 + } + } + ], + "AU12YQQeiLjncAcEyJ7iyQ4j5gs516SSQ37VzTJV5AxeaKpEKx2bC": [ + { + "amount": "293.954294536", + "slot": { + "period": 34126, + "thread": 15 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 276881, + "thread": 10 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 369351, + "thread": 22 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 602864, + "thread": 19 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 765208, + "thread": 8 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 910493, + "thread": 28 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1121054, + "thread": 5 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1190255, + "thread": 23 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1387124, + "thread": 5 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1514077, + "thread": 9 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1758264, + "thread": 1 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 1900600, + "thread": 7 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2108755, + "thread": 26 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2238548, + "thread": 6 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2430908, + "thread": 21 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2555238, + "thread": 3 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2760843, + "thread": 19 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 2893300, + "thread": 10 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 3067494, + "thread": 19 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 3242334, + "thread": 18 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 3437040, + "thread": 1 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 3540664, + "thread": 10 + } + }, + { + "amount": "293.954294536", + "slot": { + "period": 3654776, + "thread": 6 + } + }, + { + "amount": "293.954294542", + "slot": { + "period": 3802157, + "thread": 24 + } + } + ], + "AU12YQd8t1uo9FLVkCDZ2jHspsQyz2f9ixQYbFfDAZsvdtzSZC7Gr": [ + { + "amount": "165.135015716", + "slot": { + "period": 106723, + "thread": 16 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 286732, + "thread": 31 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 388372, + "thread": 12 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 557101, + "thread": 13 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 738957, + "thread": 15 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 965832, + "thread": 4 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1042341, + "thread": 20 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1296436, + "thread": 18 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1390400, + "thread": 30 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1513621, + "thread": 12 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1696450, + "thread": 13 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 1868967, + "thread": 29 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2128683, + "thread": 31 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2228236, + "thread": 14 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2407190, + "thread": 31 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2593724, + "thread": 27 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2719777, + "thread": 1 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 2847719, + "thread": 14 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 3093563, + "thread": 25 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 3144060, + "thread": 29 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 3386741, + "thread": 20 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 3604061, + "thread": 4 + } + }, + { + "amount": "165.135015716", + "slot": { + "period": 3766416, + "thread": 13 + } + }, + { + "amount": "165.135015725", + "slot": { + "period": 3880080, + "thread": 14 + } + } + ], + "AU12YU2i4PUN9kfY2piD6cM6RXfCQtZN6awkAztHsfwakB8o2vxBm": [ + { + "amount": "175.359619487", + "slot": { + "period": 131902, + "thread": 16 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 306061, + "thread": 19 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 418238, + "thread": 12 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 604481, + "thread": 19 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 659591, + "thread": 4 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 924602, + "thread": 20 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1094503, + "thread": 0 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1286621, + "thread": 15 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1437270, + "thread": 0 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1518545, + "thread": 7 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1694366, + "thread": 12 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1876485, + "thread": 17 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 1982720, + "thread": 6 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2203187, + "thread": 27 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2407478, + "thread": 20 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2597820, + "thread": 1 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2625982, + "thread": 9 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2844223, + "thread": 17 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 2992615, + "thread": 28 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 3282019, + "thread": 23 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 3427696, + "thread": 23 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 3498195, + "thread": 8 + } + }, + { + "amount": "175.359619487", + "slot": { + "period": 3656086, + "thread": 15 + } + }, + { + "amount": "175.359619482", + "slot": { + "period": 3789857, + "thread": 3 + } + } + ], + "AU12YUBCBSjTNqbNnUY8w3tadtpjHUsKBgBcvRY3h2q2qWyCyDrEE": [ + { + "amount": "60.117205147", + "slot": { + "period": 117747, + "thread": 14 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 200198, + "thread": 2 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 447011, + "thread": 17 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 542872, + "thread": 17 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 694515, + "thread": 29 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 889497, + "thread": 22 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1043537, + "thread": 29 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1237562, + "thread": 28 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1436731, + "thread": 13 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1628851, + "thread": 24 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1652959, + "thread": 22 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 1881063, + "thread": 4 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2103599, + "thread": 16 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2221498, + "thread": 31 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2403462, + "thread": 26 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2579211, + "thread": 0 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2759079, + "thread": 9 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 2925258, + "thread": 4 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 3061898, + "thread": 29 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 3163323, + "thread": 7 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 3406460, + "thread": 1 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 3610683, + "thread": 22 + } + }, + { + "amount": "60.117205147", + "slot": { + "period": 3681804, + "thread": 8 + } + }, + { + "amount": "60.117205153", + "slot": { + "period": 3880587, + "thread": 18 + } + } + ], + "AU12YUWaefBZZ93ZeGNCxT2p3wEhuQgfr8kunnhQUBjV8YJtWiD1b": [ + { + "amount": "192.778310861", + "slot": { + "period": 54053, + "thread": 6 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 258260, + "thread": 19 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 460653, + "thread": 29 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 638283, + "thread": 22 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 712784, + "thread": 16 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 970852, + "thread": 20 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 995885, + "thread": 16 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 1196723, + "thread": 5 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 1339645, + "thread": 13 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 1602687, + "thread": 25 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 1710209, + "thread": 9 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 1862461, + "thread": 12 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2088618, + "thread": 4 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2285071, + "thread": 23 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2378980, + "thread": 13 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2575445, + "thread": 0 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2649724, + "thread": 1 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 2792667, + "thread": 27 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 3104796, + "thread": 25 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 3193676, + "thread": 17 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 3381970, + "thread": 29 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 3585290, + "thread": 8 + } + }, + { + "amount": "192.778310861", + "slot": { + "period": 3720477, + "thread": 28 + } + }, + { + "amount": "192.778310865", + "slot": { + "period": 3805452, + "thread": 31 + } + } + ], + "AU12YVSrSTsbqgsYcVXRmmW6Pwx4ST9p5ZYifNDLZ2Kk2NJugXYSh": [ + { + "amount": "146.004650977", + "slot": { + "period": 98726, + "thread": 3 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 319141, + "thread": 27 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 363714, + "thread": 28 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 647929, + "thread": 6 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 685007, + "thread": 0 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 920128, + "thread": 16 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1072205, + "thread": 6 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1173447, + "thread": 27 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1436024, + "thread": 20 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1540248, + "thread": 15 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1770102, + "thread": 4 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 1917401, + "thread": 3 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2023888, + "thread": 13 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2162757, + "thread": 24 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2335907, + "thread": 4 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2613994, + "thread": 9 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2763772, + "thread": 15 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2883131, + "thread": 28 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 2969558, + "thread": 1 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 3286862, + "thread": 22 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 3446886, + "thread": 0 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 3556473, + "thread": 11 + } + }, + { + "amount": "146.004650977", + "slot": { + "period": 3670443, + "thread": 22 + } + }, + { + "amount": "146.004650974", + "slot": { + "period": 3919968, + "thread": 8 + } + } + ], + "AU12YVYw4tLGFmdUFieWQ4ZuNoE1dmhz9hpDEApe4LmhXttQmu2m7": [ + { + "amount": "350.451504329", + "slot": { + "period": 28055, + "thread": 23 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 230559, + "thread": 6 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 444610, + "thread": 26 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 591664, + "thread": 10 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 671164, + "thread": 26 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 939921, + "thread": 25 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1074542, + "thread": 2 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1309102, + "thread": 1 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1406119, + "thread": 14 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1599720, + "thread": 24 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1717466, + "thread": 28 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 1817283, + "thread": 18 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2062596, + "thread": 30 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2189387, + "thread": 26 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2363086, + "thread": 4 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2512112, + "thread": 8 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2760920, + "thread": 6 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 2804263, + "thread": 27 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 3101370, + "thread": 4 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 3200786, + "thread": 4 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 3408927, + "thread": 20 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 3534641, + "thread": 21 + } + }, + { + "amount": "350.451504329", + "slot": { + "period": 3763457, + "thread": 14 + } + }, + { + "amount": "350.451504321", + "slot": { + "period": 3820279, + "thread": 1 + } + } + ], + "AU12YWvjrp3784eEoiobbK9vsEJNuAbCe2B6Dyura4rNtfo3aXCXw": [ + { + "amount": "408.672231490", + "slot": { + "period": 56122, + "thread": 16 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 246686, + "thread": 25 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 371222, + "thread": 27 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 599291, + "thread": 19 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 780918, + "thread": 23 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 878715, + "thread": 8 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1048551, + "thread": 18 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1182354, + "thread": 16 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1338462, + "thread": 31 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1573226, + "thread": 22 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1711242, + "thread": 30 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 1973397, + "thread": 1 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2126552, + "thread": 8 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2279737, + "thread": 29 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2413808, + "thread": 11 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2467389, + "thread": 13 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2714205, + "thread": 28 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 2793799, + "thread": 29 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 3042152, + "thread": 7 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 3240580, + "thread": 29 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 3386619, + "thread": 11 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 3500416, + "thread": 24 + } + }, + { + "amount": "408.672231490", + "slot": { + "period": 3706374, + "thread": 22 + } + }, + { + "amount": "408.672231494", + "slot": { + "period": 3888816, + "thread": 4 + } + } + ], + "AU12YXnExHtbB83HSukm1ZnEAHfBhx8U9cBQgE9BfP6jw1ztnKogA": [ + { + "amount": "170.743656078", + "slot": { + "period": 23366, + "thread": 12 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 288995, + "thread": 9 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 439526, + "thread": 18 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 597299, + "thread": 11 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 787934, + "thread": 15 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 899646, + "thread": 17 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1011254, + "thread": 4 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1161310, + "thread": 8 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1392721, + "thread": 3 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1580376, + "thread": 10 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1788400, + "thread": 14 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 1970904, + "thread": 28 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2086200, + "thread": 30 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2159559, + "thread": 3 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2398161, + "thread": 4 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2513048, + "thread": 31 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2761322, + "thread": 23 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 2938635, + "thread": 4 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 3016253, + "thread": 1 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 3272593, + "thread": 6 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 3362182, + "thread": 23 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 3594146, + "thread": 29 + } + }, + { + "amount": "170.743656078", + "slot": { + "period": 3627384, + "thread": 25 + } + }, + { + "amount": "170.743656079", + "slot": { + "period": 3861252, + "thread": 6 + } + } + ], + "AU12YZ2arFdmzjBwqW9DPXwQixn797RqJecMKv2eRv5AGADFV1VB9": [ + { + "amount": "131.551767579", + "slot": { + "period": 10842, + "thread": 4 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 190563, + "thread": 30 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 445957, + "thread": 9 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 587738, + "thread": 1 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 774476, + "thread": 3 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 952280, + "thread": 16 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1032352, + "thread": 31 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1185168, + "thread": 9 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1430505, + "thread": 1 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1540811, + "thread": 24 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1654122, + "thread": 29 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 1815795, + "thread": 8 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2084014, + "thread": 21 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2152315, + "thread": 15 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2411618, + "thread": 28 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2607788, + "thread": 8 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2649690, + "thread": 16 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 2942089, + "thread": 0 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 3075582, + "thread": 16 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 3281219, + "thread": 20 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 3400636, + "thread": 27 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 3569704, + "thread": 5 + } + }, + { + "amount": "131.551767579", + "slot": { + "period": 3651149, + "thread": 6 + } + }, + { + "amount": "131.551767572", + "slot": { + "period": 3781467, + "thread": 28 + } + } + ], + "AU12YZaYJU3NTXhfgUmttMZq5rATFBpVdKwiN7NDGrMe6vzYpusoH": [ + { + "amount": "429.222061246", + "slot": { + "period": 139867, + "thread": 27 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 189713, + "thread": 4 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 453727, + "thread": 7 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 580008, + "thread": 11 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 685356, + "thread": 9 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 899233, + "thread": 13 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 984226, + "thread": 6 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1254764, + "thread": 15 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1348722, + "thread": 23 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1580080, + "thread": 5 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1651276, + "thread": 7 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1921886, + "thread": 4 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 1990741, + "thread": 8 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 2253673, + "thread": 6 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 2325348, + "thread": 30 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 2532875, + "thread": 26 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 2735644, + "thread": 15 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 2808915, + "thread": 3 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 3058043, + "thread": 22 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 3257659, + "thread": 3 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 3413893, + "thread": 12 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 3491321, + "thread": 30 + } + }, + { + "amount": "429.222061246", + "slot": { + "period": 3660396, + "thread": 18 + } + }, + { + "amount": "429.222061257", + "slot": { + "period": 3805054, + "thread": 26 + } + } + ], + "AU12YaTs3kKix8fCwqKu5mMqFmZqmrTZNFmxe24cXUSsDXsF6dAAt": [ + { + "amount": "101.402293228", + "slot": { + "period": 136326, + "thread": 28 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 254182, + "thread": 7 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 450497, + "thread": 23 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 646547, + "thread": 19 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 799814, + "thread": 4 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 839258, + "thread": 29 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1064397, + "thread": 28 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1271426, + "thread": 8 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1471589, + "thread": 6 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1531406, + "thread": 4 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1805897, + "thread": 4 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 1963857, + "thread": 25 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2002960, + "thread": 11 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2272405, + "thread": 22 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2357810, + "thread": 31 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2527289, + "thread": 1 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2668912, + "thread": 25 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 2808056, + "thread": 22 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 3037375, + "thread": 3 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 3234908, + "thread": 18 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 3383182, + "thread": 15 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 3471033, + "thread": 15 + } + }, + { + "amount": "101.402293228", + "slot": { + "period": 3690450, + "thread": 18 + } + }, + { + "amount": "101.402293216", + "slot": { + "period": 3784707, + "thread": 3 + } + } + ], + "AU12YaoS6M9ZjZGX14Vfk6nQUgLXwmZ9pBXx7eTCzswNFcvPE9ifV": [ + { + "amount": "89.630685621", + "slot": { + "period": 85095, + "thread": 29 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 263283, + "thread": 5 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 480041, + "thread": 31 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 551588, + "thread": 14 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 665632, + "thread": 22 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 895231, + "thread": 6 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 986132, + "thread": 23 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 1295168, + "thread": 29 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 1466186, + "thread": 6 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 1544556, + "thread": 16 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 1671038, + "thread": 19 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 1852153, + "thread": 1 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2128926, + "thread": 11 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2251860, + "thread": 6 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2313112, + "thread": 21 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2473727, + "thread": 0 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2709398, + "thread": 13 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2868876, + "thread": 22 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 2957192, + "thread": 13 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 3253155, + "thread": 17 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 3289382, + "thread": 26 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 3523828, + "thread": 26 + } + }, + { + "amount": "89.630685621", + "slot": { + "period": 3697857, + "thread": 25 + } + }, + { + "amount": "89.630685628", + "slot": { + "period": 3788483, + "thread": 18 + } + } + ], + "AU12YbgLZ663AuAcNYaj5bBx91pMmg6BYVUH9AegkbVjids2eizRk": [ + { + "amount": "405.346023165", + "slot": { + "period": 162460, + "thread": 2 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 306925, + "thread": 24 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 330307, + "thread": 20 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 592353, + "thread": 30 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 796391, + "thread": 18 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 900591, + "thread": 14 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1001912, + "thread": 10 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1195032, + "thread": 4 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1419566, + "thread": 10 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1644764, + "thread": 10 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1771820, + "thread": 30 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 1949296, + "thread": 31 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2054235, + "thread": 1 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2209103, + "thread": 30 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2385457, + "thread": 29 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2590112, + "thread": 27 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2754083, + "thread": 18 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 2842223, + "thread": 0 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 3118784, + "thread": 29 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 3169729, + "thread": 26 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 3447639, + "thread": 4 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 3600922, + "thread": 13 + } + }, + { + "amount": "405.346023165", + "slot": { + "period": 3690841, + "thread": 8 + } + }, + { + "amount": "405.346023174", + "slot": { + "period": 3850315, + "thread": 17 + } + } + ], + "AU12YbvTAZ6x28DvyMYat1wuoQjtN1R2Lxy1fEAahmAHss548Wk2B": [ + { + "amount": "158.881234650", + "slot": { + "period": 63344, + "thread": 25 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 270070, + "thread": 16 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 395466, + "thread": 19 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 642754, + "thread": 23 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 811958, + "thread": 24 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 943099, + "thread": 28 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1071404, + "thread": 6 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1183384, + "thread": 12 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1472645, + "thread": 5 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1628581, + "thread": 3 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1807642, + "thread": 6 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 1852317, + "thread": 9 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2023464, + "thread": 6 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2174721, + "thread": 19 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2415079, + "thread": 29 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2598299, + "thread": 17 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2700073, + "thread": 15 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 2854623, + "thread": 24 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 3098440, + "thread": 7 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 3177024, + "thread": 7 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 3419724, + "thread": 2 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 3531140, + "thread": 27 + } + }, + { + "amount": "158.881234650", + "slot": { + "period": 3758777, + "thread": 18 + } + }, + { + "amount": "158.881234657", + "slot": { + "period": 3945818, + "thread": 9 + } + } + ], + "AU12Ybx5iq9UWntttwNgzWu8uZqNJnpqiqopLx4ZRXABwwiBQQKG": [ + { + "amount": "168.703337251", + "slot": { + "period": 130083, + "thread": 3 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 260383, + "thread": 2 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 360629, + "thread": 4 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 503591, + "thread": 19 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 763441, + "thread": 9 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 847553, + "thread": 31 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 985660, + "thread": 7 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 1180216, + "thread": 28 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 1361228, + "thread": 18 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 1626789, + "thread": 14 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 1786011, + "thread": 25 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 1925625, + "thread": 1 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2065533, + "thread": 12 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2194734, + "thread": 18 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2345609, + "thread": 8 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2574266, + "thread": 1 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2643111, + "thread": 16 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 2880098, + "thread": 3 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 3017444, + "thread": 29 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 3267210, + "thread": 29 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 3397509, + "thread": 27 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 3541700, + "thread": 12 + } + }, + { + "amount": "168.703337251", + "slot": { + "period": 3733614, + "thread": 23 + } + }, + { + "amount": "168.703337242", + "slot": { + "period": 3915612, + "thread": 23 + } + } + ], + "AU12YcdVgVk6nAhsjnj5Py37mB5TeW53DH1yBQNKxz3u1JbdGcyqz": [ + { + "amount": "64.264182687", + "slot": { + "period": 140657, + "thread": 31 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 302754, + "thread": 23 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 371079, + "thread": 24 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 540131, + "thread": 16 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 784630, + "thread": 10 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 944866, + "thread": 24 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1083577, + "thread": 27 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1173131, + "thread": 26 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1324047, + "thread": 12 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1605860, + "thread": 28 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1735328, + "thread": 24 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 1889974, + "thread": 2 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2031279, + "thread": 28 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2231246, + "thread": 10 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2436426, + "thread": 6 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2491808, + "thread": 4 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2695512, + "thread": 8 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 2940951, + "thread": 21 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 3055001, + "thread": 3 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 3240770, + "thread": 18 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 3415460, + "thread": 8 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 3463636, + "thread": 3 + } + }, + { + "amount": "64.264182687", + "slot": { + "period": 3650328, + "thread": 28 + } + }, + { + "amount": "64.264182678", + "slot": { + "period": 3876266, + "thread": 14 + } + } + ], + "AU12YdMrj4x1cMUJ82szAxVoehvuwxD8e8cAkp4JUzkgkrDLw7q2F": [ + { + "amount": "577.213418233", + "slot": { + "period": 155492, + "thread": 30 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 295848, + "thread": 27 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 407033, + "thread": 8 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 600549, + "thread": 20 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 675259, + "thread": 26 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 902329, + "thread": 22 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1066724, + "thread": 31 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1212233, + "thread": 19 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1393754, + "thread": 21 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1495450, + "thread": 6 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1674558, + "thread": 26 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 1906478, + "thread": 30 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2042765, + "thread": 21 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2201699, + "thread": 5 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2390811, + "thread": 22 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2490543, + "thread": 17 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2692765, + "thread": 2 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 2949213, + "thread": 23 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 3119389, + "thread": 26 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 3144599, + "thread": 9 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 3381779, + "thread": 23 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 3541072, + "thread": 22 + } + }, + { + "amount": "577.213418233", + "slot": { + "period": 3627198, + "thread": 19 + } + }, + { + "amount": "577.213418222", + "slot": { + "period": 3781427, + "thread": 6 + } + } + ], + "AU12YdVCi6w3DAfXksP8qGhuRtnSBxfKx9va1sjgptkCrFXPnSQZk": [ + { + "amount": "87500.000000000", + "slot": { + "period": 131919, + "thread": 25 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 267176, + "thread": 26 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 396298, + "thread": 14 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 513718, + "thread": 13 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 763941, + "thread": 5 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 843229, + "thread": 19 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1086211, + "thread": 22 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1157054, + "thread": 3 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1465585, + "thread": 25 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1583890, + "thread": 23 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1805227, + "thread": 12 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 1949363, + "thread": 26 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2017299, + "thread": 19 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2173303, + "thread": 24 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2457940, + "thread": 1 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2494999, + "thread": 2 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2695739, + "thread": 6 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 2820245, + "thread": 31 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3020710, + "thread": 14 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3180269, + "thread": 29 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3336580, + "thread": 4 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3613600, + "thread": 5 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3667252, + "thread": 7 + } + }, + { + "amount": "87500.000000000", + "slot": { + "period": 3815172, + "thread": 27 + } + } + ], + "AU12YdcvMX4fmKRzxUVN9AtqkBXC8eML1BXBG6vtBRmr3zQoBJtUY": [ + { + "amount": "85.170957852", + "slot": { + "period": 123278, + "thread": 0 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 312691, + "thread": 29 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 466711, + "thread": 16 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 536589, + "thread": 13 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 743592, + "thread": 30 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 906795, + "thread": 21 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1077991, + "thread": 31 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1289484, + "thread": 20 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1374288, + "thread": 28 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1586846, + "thread": 10 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1681102, + "thread": 20 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 1841032, + "thread": 16 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2078532, + "thread": 30 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2203291, + "thread": 12 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2355045, + "thread": 26 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2554343, + "thread": 8 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2791353, + "thread": 26 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 2936055, + "thread": 28 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 3117374, + "thread": 2 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 3221559, + "thread": 4 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 3297832, + "thread": 22 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 3523793, + "thread": 26 + } + }, + { + "amount": "85.170957852", + "slot": { + "period": 3622199, + "thread": 21 + } + }, + { + "amount": "85.170957857", + "slot": { + "period": 3796913, + "thread": 19 + } + } + ], + "AU12YfGeDMYhrgZN5L3xynbEzLsfzYAjDhkqbsfpkzUyLCUwNdHFg": [ + { + "amount": "316.814801414", + "slot": { + "period": 157354, + "thread": 9 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 322045, + "thread": 24 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 487907, + "thread": 27 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 570563, + "thread": 16 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 811455, + "thread": 17 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 939548, + "thread": 10 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1146664, + "thread": 14 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1177578, + "thread": 18 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1436733, + "thread": 22 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1588441, + "thread": 14 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1692170, + "thread": 10 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 1889174, + "thread": 25 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2006408, + "thread": 6 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2288374, + "thread": 0 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2438487, + "thread": 19 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2623853, + "thread": 13 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2689487, + "thread": 29 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 2859527, + "thread": 20 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 3027996, + "thread": 23 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 3184309, + "thread": 29 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 3400895, + "thread": 31 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 3483434, + "thread": 16 + } + }, + { + "amount": "316.814801414", + "slot": { + "period": 3778392, + "thread": 20 + } + }, + { + "amount": "316.814801415", + "slot": { + "period": 3880037, + "thread": 6 + } + } + ], + "AU12YfMGa4fXzSRTWGpawpa1yuzzsTRzF4QrTpz1igqtb8t6efQhS": [ + { + "amount": "79.992346992", + "slot": { + "period": 88892, + "thread": 9 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 219717, + "thread": 25 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 422194, + "thread": 31 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 553892, + "thread": 4 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 692390, + "thread": 15 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 869399, + "thread": 12 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 993799, + "thread": 21 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 1151414, + "thread": 21 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 1386142, + "thread": 23 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 1605813, + "thread": 15 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 1734812, + "thread": 31 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 1814432, + "thread": 22 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2001645, + "thread": 19 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2288902, + "thread": 1 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2317165, + "thread": 20 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2477449, + "thread": 20 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2784672, + "thread": 24 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2878118, + "thread": 10 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 2990956, + "thread": 2 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 3199027, + "thread": 11 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 3314239, + "thread": 7 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 3456457, + "thread": 25 + } + }, + { + "amount": "79.992346992", + "slot": { + "period": 3769912, + "thread": 11 + } + }, + { + "amount": "79.992346980", + "slot": { + "period": 3889306, + "thread": 21 + } + } + ], + "AU12YfRjdDKMu4MkCvdRiHcetb6rdyDUBu9vn2T7mBrU1jvrn9bQc": [ + { + "amount": "154.741446533", + "slot": { + "period": 137564, + "thread": 3 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 231494, + "thread": 24 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 461335, + "thread": 1 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 645666, + "thread": 10 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 804862, + "thread": 29 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 855966, + "thread": 8 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1003271, + "thread": 6 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1283122, + "thread": 31 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1383800, + "thread": 18 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1504238, + "thread": 27 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1767077, + "thread": 27 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 1961606, + "thread": 25 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2022530, + "thread": 26 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2230414, + "thread": 15 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2308298, + "thread": 9 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2595781, + "thread": 12 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2770211, + "thread": 9 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2812484, + "thread": 5 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 2970354, + "thread": 26 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 3248229, + "thread": 11 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 3400728, + "thread": 0 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 3599977, + "thread": 30 + } + }, + { + "amount": "154.741446533", + "slot": { + "period": 3645155, + "thread": 7 + } + }, + { + "amount": "154.741446538", + "slot": { + "period": 3924816, + "thread": 10 + } + } + ], + "AU12YfXbYWcB4s7EVmShqAS5J7tbxFAHETvVBZwEMicu7TYNw1Jtr": [ + { + "amount": "381.468126804", + "slot": { + "period": 133059, + "thread": 10 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 267556, + "thread": 27 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 391464, + "thread": 23 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 570808, + "thread": 15 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 798249, + "thread": 6 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 848898, + "thread": 4 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1129368, + "thread": 8 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1276067, + "thread": 0 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1473824, + "thread": 19 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1510837, + "thread": 30 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1752623, + "thread": 23 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 1920355, + "thread": 9 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2074522, + "thread": 10 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2230915, + "thread": 20 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2301059, + "thread": 13 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2466978, + "thread": 17 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2711919, + "thread": 31 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 2857790, + "thread": 19 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 3105590, + "thread": 4 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 3209556, + "thread": 21 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 3364998, + "thread": 23 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 3532339, + "thread": 16 + } + }, + { + "amount": "381.468126804", + "slot": { + "period": 3733221, + "thread": 31 + } + }, + { + "amount": "381.468126806", + "slot": { + "period": 3784400, + "thread": 21 + } + } + ], + "AU12Yfgsju4jDWYqQQaBudAAXRRu2boHc3FkEei6wpmzSBcAx2ef2": [ + { + "amount": "276.545064066", + "slot": { + "period": 129398, + "thread": 15 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 169971, + "thread": 3 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 445557, + "thread": 3 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 615676, + "thread": 27 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 709196, + "thread": 22 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 831644, + "thread": 29 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1073098, + "thread": 23 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1153807, + "thread": 7 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1421959, + "thread": 26 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1633066, + "thread": 10 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1769863, + "thread": 7 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 1896939, + "thread": 22 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2066189, + "thread": 23 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2210935, + "thread": 2 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2388640, + "thread": 6 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2527740, + "thread": 18 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2788505, + "thread": 14 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 2904754, + "thread": 22 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 3010739, + "thread": 15 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 3256947, + "thread": 23 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 3326573, + "thread": 14 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 3513500, + "thread": 10 + } + }, + { + "amount": "276.545064066", + "slot": { + "period": 3743691, + "thread": 3 + } + }, + { + "amount": "276.545064074", + "slot": { + "period": 3920620, + "thread": 3 + } + } + ], + "AU12YgCLbzHKpUr3ci6eQR2p4S2j2Zhbfi3kPJBC8UjkGm2Rp8EUt": [ + { + "amount": "227.647508748", + "slot": { + "period": 103023, + "thread": 24 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 302470, + "thread": 19 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 400516, + "thread": 12 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 552306, + "thread": 4 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 806242, + "thread": 25 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 960464, + "thread": 18 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1034550, + "thread": 23 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1229447, + "thread": 8 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1333464, + "thread": 5 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1646966, + "thread": 13 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1742708, + "thread": 22 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 1903811, + "thread": 30 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2050360, + "thread": 5 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2217909, + "thread": 7 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2322159, + "thread": 16 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2514718, + "thread": 11 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2710778, + "thread": 20 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2876955, + "thread": 2 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 2974095, + "thread": 8 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 3209407, + "thread": 31 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 3340816, + "thread": 12 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 3524430, + "thread": 8 + } + }, + { + "amount": "227.647508748", + "slot": { + "period": 3733952, + "thread": 17 + } + }, + { + "amount": "227.647508739", + "slot": { + "period": 3918975, + "thread": 30 + } + } + ], + "AU12YgbRRd9P9VFztoH2gw5efSiPEgv3LjnHinFDVsgqDw1RRSNsE": [ + { + "amount": "150.320547601", + "slot": { + "period": 163029, + "thread": 21 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 250132, + "thread": 30 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 355770, + "thread": 14 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 608053, + "thread": 16 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 724702, + "thread": 25 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 923109, + "thread": 15 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1127352, + "thread": 17 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1240040, + "thread": 4 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1352867, + "thread": 9 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1607270, + "thread": 22 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1800412, + "thread": 7 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 1902095, + "thread": 19 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2001084, + "thread": 13 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2182780, + "thread": 10 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2323263, + "thread": 0 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2513595, + "thread": 12 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2718405, + "thread": 29 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 2813291, + "thread": 14 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 3090832, + "thread": 2 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 3269784, + "thread": 29 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 3290952, + "thread": 27 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 3609773, + "thread": 22 + } + }, + { + "amount": "150.320547601", + "slot": { + "period": 3680896, + "thread": 25 + } + }, + { + "amount": "150.320547609", + "slot": { + "period": 3901779, + "thread": 7 + } + } + ], + "AU12YheBBAQRckyxBy2fQZNEBg2bAHfCrYzoSKssvAAUuHDASLwBE": [ + { + "amount": "165.965063435", + "slot": { + "period": 49204, + "thread": 3 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 260338, + "thread": 26 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 393675, + "thread": 26 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 497587, + "thread": 24 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 708030, + "thread": 7 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 975621, + "thread": 5 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1100220, + "thread": 12 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1256524, + "thread": 23 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1473826, + "thread": 16 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1508635, + "thread": 1 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1661444, + "thread": 3 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 1963015, + "thread": 30 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2115042, + "thread": 14 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2202583, + "thread": 29 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2388690, + "thread": 4 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2542580, + "thread": 10 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2630151, + "thread": 31 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 2884982, + "thread": 28 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 3116624, + "thread": 20 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 3266586, + "thread": 23 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 3395677, + "thread": 17 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 3568990, + "thread": 5 + } + }, + { + "amount": "165.965063435", + "slot": { + "period": 3699040, + "thread": 1 + } + }, + { + "amount": "165.965063425", + "slot": { + "period": 3912720, + "thread": 23 + } + } + ], + "AU12YiGJ8jgNJcBmLoQiJPksQTbxcquvp6t77su1tBWkJ6TTwUVjx": [ + { + "amount": "203.325269388", + "slot": { + "period": 110313, + "thread": 15 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 203731, + "thread": 10 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 470791, + "thread": 24 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 546413, + "thread": 7 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 805739, + "thread": 17 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 870856, + "thread": 24 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1014018, + "thread": 27 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1165039, + "thread": 18 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1456583, + "thread": 23 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1610464, + "thread": 10 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1704475, + "thread": 24 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1975284, + "thread": 24 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 1990585, + "thread": 23 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 2155932, + "thread": 1 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 2326150, + "thread": 12 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 2472180, + "thread": 24 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 2755248, + "thread": 25 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 2826594, + "thread": 17 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 3009277, + "thread": 6 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 3240620, + "thread": 15 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 3397912, + "thread": 15 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 3498495, + "thread": 10 + } + }, + { + "amount": "203.325269388", + "slot": { + "period": 3636512, + "thread": 12 + } + }, + { + "amount": "203.325269385", + "slot": { + "period": 3826052, + "thread": 27 + } + } + ], + "AU12YiMJEGxeLt6YV1b84yRM6Y66eLMs4obo7FdDh6QonVcAw482Q": [ + { + "amount": "362.346627897", + "slot": { + "period": 116119, + "thread": 28 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 277406, + "thread": 29 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 449043, + "thread": 2 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 534078, + "thread": 1 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 796659, + "thread": 20 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 923752, + "thread": 0 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 991280, + "thread": 29 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 1192456, + "thread": 11 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 1462871, + "thread": 28 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 1622277, + "thread": 21 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 1785912, + "thread": 27 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 1845655, + "thread": 13 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2062160, + "thread": 22 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2162606, + "thread": 14 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2310898, + "thread": 10 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2606032, + "thread": 30 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2658455, + "thread": 2 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 2948262, + "thread": 22 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 3082724, + "thread": 22 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 3159369, + "thread": 5 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 3351424, + "thread": 6 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 3602071, + "thread": 6 + } + }, + { + "amount": "362.346627897", + "slot": { + "period": 3644682, + "thread": 3 + } + }, + { + "amount": "362.346627906", + "slot": { + "period": 3860225, + "thread": 10 + } + } + ], + "AU12YitSszPNKeou44784xR48ddecwqtmshdzodeuc5bCy4FMqHky": [ + { + "amount": "366.777279945", + "slot": { + "period": 63235, + "thread": 25 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 236051, + "thread": 14 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 440823, + "thread": 23 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 566717, + "thread": 13 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 679645, + "thread": 9 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 875833, + "thread": 26 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1078618, + "thread": 20 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1168568, + "thread": 28 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1401904, + "thread": 12 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1623863, + "thread": 0 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1761444, + "thread": 23 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 1925730, + "thread": 31 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2021427, + "thread": 13 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2242153, + "thread": 17 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2341553, + "thread": 4 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2480525, + "thread": 29 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2677518, + "thread": 23 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 2830983, + "thread": 25 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 3010122, + "thread": 22 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 3226006, + "thread": 30 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 3429642, + "thread": 12 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 3534688, + "thread": 9 + } + }, + { + "amount": "366.777279945", + "slot": { + "period": 3717511, + "thread": 15 + } + }, + { + "amount": "366.777279935", + "slot": { + "period": 3851362, + "thread": 27 + } + } + ], + "AU12YjxAmmWFqjw38BZeBZwfbwaubs5sfKYSXLAYuhzMvb8upCVwG": [ + { + "amount": "66.124528902", + "slot": { + "period": 84511, + "thread": 6 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 247867, + "thread": 16 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 339814, + "thread": 1 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 512645, + "thread": 18 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 761337, + "thread": 2 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 893741, + "thread": 13 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1105581, + "thread": 4 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1165340, + "thread": 16 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1460198, + "thread": 24 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1533468, + "thread": 31 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1648219, + "thread": 22 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 1940945, + "thread": 27 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2033963, + "thread": 8 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2188360, + "thread": 9 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2313451, + "thread": 25 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2611122, + "thread": 31 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2690742, + "thread": 23 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 2943561, + "thread": 11 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 3027141, + "thread": 30 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 3272538, + "thread": 17 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 3303789, + "thread": 0 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 3567406, + "thread": 13 + } + }, + { + "amount": "66.124528902", + "slot": { + "period": 3686029, + "thread": 12 + } + }, + { + "amount": "66.124528906", + "slot": { + "period": 3898659, + "thread": 7 + } + } + ], + "AU12YoJXVRTwgyBTHgffxcHnMWhkwpqn245Q4GWZYARbo8ofNEXbC": [ + { + "amount": "163.895964536", + "slot": { + "period": 16963, + "thread": 25 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 320495, + "thread": 24 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 340270, + "thread": 29 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 558048, + "thread": 12 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 667211, + "thread": 14 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 853491, + "thread": 15 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 997810, + "thread": 24 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 1275180, + "thread": 2 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 1323142, + "thread": 28 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 1569933, + "thread": 9 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 1785694, + "thread": 10 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 1839677, + "thread": 15 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2096330, + "thread": 0 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2190910, + "thread": 18 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2397829, + "thread": 12 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2492644, + "thread": 1 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2687999, + "thread": 11 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 2863216, + "thread": 30 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 3077109, + "thread": 28 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 3177587, + "thread": 2 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 3414902, + "thread": 4 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 3467244, + "thread": 29 + } + }, + { + "amount": "163.895964536", + "slot": { + "period": 3661716, + "thread": 15 + } + }, + { + "amount": "163.895964544", + "slot": { + "period": 3834307, + "thread": 0 + } + } + ], + "AU12Yoch1fPcxa7b8z1BpV3Z1wuepE6MFXD8yCoG5QRZA1mgEtBtu": [ + { + "amount": "151.569194944", + "slot": { + "period": 30100, + "thread": 1 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 308200, + "thread": 6 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 414446, + "thread": 22 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 555740, + "thread": 1 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 732159, + "thread": 20 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 846010, + "thread": 8 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1065182, + "thread": 20 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1290361, + "thread": 20 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1436511, + "thread": 1 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1542663, + "thread": 27 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1661444, + "thread": 5 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 1820389, + "thread": 17 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2043496, + "thread": 7 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2222436, + "thread": 23 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2425925, + "thread": 23 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2607549, + "thread": 22 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2791011, + "thread": 11 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2875888, + "thread": 1 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 2991813, + "thread": 7 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 3274003, + "thread": 18 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 3367611, + "thread": 20 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 3464437, + "thread": 1 + } + }, + { + "amount": "151.569194944", + "slot": { + "period": 3666139, + "thread": 8 + } + }, + { + "amount": "151.569194934", + "slot": { + "period": 3936969, + "thread": 17 + } + } + ], + "AU12YoyAxUShwgdce9VtHEGjX6ohgpdofRSXXyF9GrH2YctSfHDF9": [ + { + "amount": "57.361732769", + "slot": { + "period": 116058, + "thread": 31 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 246277, + "thread": 15 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 474725, + "thread": 7 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 558114, + "thread": 15 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 720907, + "thread": 6 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 939123, + "thread": 24 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1054247, + "thread": 26 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1277105, + "thread": 13 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1427442, + "thread": 20 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1494930, + "thread": 25 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1736018, + "thread": 29 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 1936014, + "thread": 22 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2130633, + "thread": 2 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2234132, + "thread": 19 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2340185, + "thread": 31 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2567630, + "thread": 4 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2626063, + "thread": 18 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 2802395, + "thread": 10 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 3114520, + "thread": 12 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 3173046, + "thread": 24 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 3422546, + "thread": 21 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 3606217, + "thread": 12 + } + }, + { + "amount": "57.361732769", + "slot": { + "period": 3713486, + "thread": 10 + } + }, + { + "amount": "57.361732774", + "slot": { + "period": 3790338, + "thread": 4 + } + } + ], + "AU12Ys4re6BcwEPN6ZNNv8vJ4RNRkSuKSBH84FtQ22BMst3zzT17N": [ + { + "amount": "357.064388899", + "slot": { + "period": 148622, + "thread": 3 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 259565, + "thread": 8 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 374781, + "thread": 6 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 518739, + "thread": 28 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 673992, + "thread": 4 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 943317, + "thread": 9 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1095533, + "thread": 20 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1151744, + "thread": 14 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1461722, + "thread": 13 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1538625, + "thread": 0 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1747317, + "thread": 26 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 1965769, + "thread": 8 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2030490, + "thread": 17 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2201385, + "thread": 19 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2460855, + "thread": 25 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2552889, + "thread": 24 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2781740, + "thread": 8 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2829025, + "thread": 16 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 2999611, + "thread": 5 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 3216263, + "thread": 9 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 3332856, + "thread": 8 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 3478790, + "thread": 7 + } + }, + { + "amount": "357.064388899", + "slot": { + "period": 3652742, + "thread": 28 + } + }, + { + "amount": "357.064388901", + "slot": { + "period": 3914486, + "thread": 17 + } + } + ], + "AU12YsTwJ8rpM92DuQTS5q7gRFQyqByWW8BXPYRRt5QGUUPRpDdKR": [ + { + "amount": "143.709766055", + "slot": { + "period": 63860, + "thread": 23 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 252250, + "thread": 31 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 384542, + "thread": 5 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 629297, + "thread": 27 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 752356, + "thread": 20 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 829054, + "thread": 5 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1035219, + "thread": 19 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1274300, + "thread": 16 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1326655, + "thread": 25 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1644327, + "thread": 28 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1728228, + "thread": 5 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 1864618, + "thread": 17 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2052551, + "thread": 22 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2144602, + "thread": 21 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2361498, + "thread": 28 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2569391, + "thread": 17 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2786643, + "thread": 14 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 2902409, + "thread": 18 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 3068005, + "thread": 24 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 3225641, + "thread": 13 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 3306718, + "thread": 17 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 3505177, + "thread": 4 + } + }, + { + "amount": "143.709766055", + "slot": { + "period": 3767769, + "thread": 21 + } + }, + { + "amount": "143.709766064", + "slot": { + "period": 3868795, + "thread": 20 + } + } + ], + "AU12YuZDay2uZxCfiS8THfTuJGhtrvK2aAzZpbtk3cPATcHfaLy2D": [ + { + "amount": "254.389528626", + "slot": { + "period": 134149, + "thread": 1 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 238577, + "thread": 17 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 334632, + "thread": 2 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 623681, + "thread": 0 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 733055, + "thread": 16 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 832090, + "thread": 6 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1114241, + "thread": 15 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1176397, + "thread": 1 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1448650, + "thread": 10 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1559404, + "thread": 6 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1717084, + "thread": 12 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 1970548, + "thread": 23 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2141466, + "thread": 21 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2289329, + "thread": 31 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2431920, + "thread": 19 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2529305, + "thread": 20 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2762912, + "thread": 4 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2926765, + "thread": 14 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 2964962, + "thread": 10 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 3153017, + "thread": 4 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 3421738, + "thread": 27 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 3523691, + "thread": 1 + } + }, + { + "amount": "254.389528626", + "slot": { + "period": 3722277, + "thread": 24 + } + }, + { + "amount": "254.389528622", + "slot": { + "period": 3899156, + "thread": 25 + } + } + ], + "AU12YufwNGrccX8VM2Pc9pMYg9m5RNBdVYNvvDjDKDftjqoKJG8eH": [ + { + "amount": "56.595794445", + "slot": { + "period": 158391, + "thread": 18 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 317349, + "thread": 5 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 383467, + "thread": 25 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 588980, + "thread": 7 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 766961, + "thread": 15 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 872580, + "thread": 14 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1048983, + "thread": 7 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1183277, + "thread": 26 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1392856, + "thread": 18 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1563576, + "thread": 23 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1792184, + "thread": 1 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 1861434, + "thread": 22 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2014384, + "thread": 24 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2158057, + "thread": 31 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2413394, + "thread": 1 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2489632, + "thread": 15 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2780280, + "thread": 17 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 2865753, + "thread": 26 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 3004285, + "thread": 5 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 3180106, + "thread": 7 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 3387168, + "thread": 5 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 3572113, + "thread": 7 + } + }, + { + "amount": "56.595794445", + "slot": { + "period": 3773120, + "thread": 14 + } + }, + { + "amount": "56.595794450", + "slot": { + "period": 3839911, + "thread": 5 + } + } + ], + "AU12YxVVE1yZDqk6qGQdHrAtzanFtx3dfpR38rSkEHLocoMB2MfoT": [ + { + "amount": "429.867631846", + "slot": { + "period": 67548, + "thread": 20 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 316440, + "thread": 2 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 361672, + "thread": 31 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 632759, + "thread": 19 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 699315, + "thread": 7 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 977305, + "thread": 3 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1133220, + "thread": 21 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1253979, + "thread": 12 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1392080, + "thread": 12 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1592851, + "thread": 25 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1790389, + "thread": 5 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 1915269, + "thread": 11 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2022120, + "thread": 29 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2151757, + "thread": 9 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2413500, + "thread": 29 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2569982, + "thread": 7 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2744062, + "thread": 28 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 2917856, + "thread": 3 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3027563, + "thread": 22 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3197892, + "thread": 22 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3376331, + "thread": 23 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3581613, + "thread": 21 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3620393, + "thread": 30 + } + }, + { + "amount": "429.867631846", + "slot": { + "period": 3811870, + "thread": 18 + } + } + ], + "AU12YyACQxwV3Ra8sn6YioELCorq2GkASHAgLctgo3EnskgByTkEG": [ + { + "amount": "187.139943739", + "slot": { + "period": 17321, + "thread": 6 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 196722, + "thread": 20 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 338436, + "thread": 4 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 594409, + "thread": 7 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 672382, + "thread": 13 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 961193, + "thread": 29 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1007022, + "thread": 8 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1279807, + "thread": 9 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1364595, + "thread": 17 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1534095, + "thread": 3 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1799900, + "thread": 10 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1818216, + "thread": 0 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 1980011, + "thread": 19 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 2164434, + "thread": 6 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 2318049, + "thread": 19 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 2505025, + "thread": 9 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 2735215, + "thread": 15 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 2939101, + "thread": 28 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 3038150, + "thread": 7 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 3190199, + "thread": 22 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 3369943, + "thread": 23 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 3594204, + "thread": 17 + } + }, + { + "amount": "187.139943739", + "slot": { + "period": 3661056, + "thread": 27 + } + }, + { + "amount": "187.139943748", + "slot": { + "period": 3817543, + "thread": 0 + } + } + ], + "AU12YyR2o11GhXnhruVcwqdEnoBuRuZcqgKiwXyzXrZnhn9nyEkpD": [ + { + "amount": "171.619667876", + "slot": { + "period": 90789, + "thread": 31 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 281897, + "thread": 30 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 325423, + "thread": 2 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 552668, + "thread": 8 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 663253, + "thread": 23 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 957823, + "thread": 2 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1129988, + "thread": 26 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1161632, + "thread": 8 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1429965, + "thread": 21 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1490376, + "thread": 12 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1742295, + "thread": 31 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1829746, + "thread": 12 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 1999042, + "thread": 5 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 2196830, + "thread": 14 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 2457748, + "thread": 2 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 2492712, + "thread": 7 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 2643003, + "thread": 21 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 2876674, + "thread": 30 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 3075496, + "thread": 29 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 3168843, + "thread": 17 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 3434657, + "thread": 25 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 3523982, + "thread": 11 + } + }, + { + "amount": "171.619667876", + "slot": { + "period": 3657633, + "thread": 31 + } + }, + { + "amount": "171.619667867", + "slot": { + "period": 3825615, + "thread": 11 + } + } + ], + "AU12YyrnYirf9w4xxExmYs8tyGs19Te6ac2szoDu9NRR5ZXDvD2gw": [ + { + "amount": "127.960719705", + "slot": { + "period": 15994, + "thread": 2 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 235063, + "thread": 22 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 369863, + "thread": 11 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 503648, + "thread": 21 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 685473, + "thread": 7 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 875111, + "thread": 6 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 984802, + "thread": 20 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 1215894, + "thread": 17 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 1478026, + "thread": 21 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 1612959, + "thread": 22 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 1688091, + "thread": 26 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 1952384, + "thread": 10 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2135617, + "thread": 31 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2191016, + "thread": 17 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2298231, + "thread": 7 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2509666, + "thread": 4 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2718509, + "thread": 13 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2820847, + "thread": 20 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 2970864, + "thread": 13 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 3185619, + "thread": 23 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 3352055, + "thread": 10 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 3497348, + "thread": 6 + } + }, + { + "amount": "127.960719705", + "slot": { + "period": 3698286, + "thread": 17 + } + }, + { + "amount": "127.960719704", + "slot": { + "period": 3897358, + "thread": 11 + } + } + ], + "AU12YztC9HjQSHb17yzqnZkLcvD9CRZXUb8TyD9VX1QkB6E5yzbJU": [ + { + "amount": "254.163728734", + "slot": { + "period": 49744, + "thread": 4 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 212358, + "thread": 29 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 354374, + "thread": 20 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 554732, + "thread": 5 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 818168, + "thread": 17 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 920826, + "thread": 6 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1073969, + "thread": 20 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1262461, + "thread": 23 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1406066, + "thread": 12 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1515879, + "thread": 10 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1740857, + "thread": 26 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 1929993, + "thread": 2 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2023813, + "thread": 11 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2220826, + "thread": 28 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2419254, + "thread": 14 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2472865, + "thread": 22 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2771319, + "thread": 21 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 2844845, + "thread": 22 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 3061254, + "thread": 17 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 3283006, + "thread": 19 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 3288775, + "thread": 6 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 3492262, + "thread": 3 + } + }, + { + "amount": "254.163728734", + "slot": { + "period": 3738612, + "thread": 9 + } + }, + { + "amount": "254.163728738", + "slot": { + "period": 3879150, + "thread": 31 + } + } + ], + "AU12Z1o2yTP5Gd6VphLi6ojB8FbUQf2HF2fAtQ1CinDqkS2er2Lhj": [ + { + "amount": "582.109203627", + "slot": { + "period": 85345, + "thread": 24 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 178273, + "thread": 31 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 413015, + "thread": 12 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 536184, + "thread": 4 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 676759, + "thread": 29 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 900426, + "thread": 11 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1064166, + "thread": 5 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1210455, + "thread": 10 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1409531, + "thread": 2 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1496933, + "thread": 0 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1707791, + "thread": 23 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 1867197, + "thread": 23 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2070894, + "thread": 8 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2154194, + "thread": 10 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2383782, + "thread": 17 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2570774, + "thread": 3 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2687625, + "thread": 12 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 2850181, + "thread": 11 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 3098218, + "thread": 12 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 3276030, + "thread": 1 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 3347118, + "thread": 3 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 3590783, + "thread": 11 + } + }, + { + "amount": "582.109203627", + "slot": { + "period": 3691559, + "thread": 6 + } + }, + { + "amount": "582.109203638", + "slot": { + "period": 3844592, + "thread": 12 + } + } + ], + "AU12Z2woNMbwKYnc8dwLnRtmuQsxZw4KNCuQbQbjc1nKGCpTmbpmu": [ + { + "amount": "184.714212156", + "slot": { + "period": 46618, + "thread": 18 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 314033, + "thread": 13 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 448430, + "thread": 30 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 567300, + "thread": 13 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 744304, + "thread": 7 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 975955, + "thread": 7 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1108450, + "thread": 21 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1207254, + "thread": 30 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1452870, + "thread": 11 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1581141, + "thread": 20 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1654318, + "thread": 19 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 1965469, + "thread": 28 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2093944, + "thread": 3 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2156602, + "thread": 15 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2373666, + "thread": 27 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2491849, + "thread": 28 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2670446, + "thread": 9 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2910329, + "thread": 19 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 2980730, + "thread": 7 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 3224173, + "thread": 6 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 3312025, + "thread": 10 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 3616954, + "thread": 31 + } + }, + { + "amount": "184.714212156", + "slot": { + "period": 3647876, + "thread": 0 + } + }, + { + "amount": "184.714212167", + "slot": { + "period": 3830189, + "thread": 11 + } + } + ], + "AU12Z2z9rQZFp1z3SBqTMiKe7gKgd35wspWRrFzbaE2XfpBbYpBGc": [ + { + "amount": "299.062558903", + "slot": { + "period": 94065, + "thread": 25 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 172990, + "thread": 4 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 344002, + "thread": 25 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 591173, + "thread": 17 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 664289, + "thread": 20 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 916576, + "thread": 6 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1026164, + "thread": 19 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1301312, + "thread": 10 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1411991, + "thread": 7 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1486425, + "thread": 6 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1792159, + "thread": 18 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 1933310, + "thread": 20 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2139764, + "thread": 8 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2189280, + "thread": 9 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2300604, + "thread": 7 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2515702, + "thread": 7 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2723762, + "thread": 3 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 2875041, + "thread": 17 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 3009245, + "thread": 4 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 3272571, + "thread": 9 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 3374298, + "thread": 22 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 3569956, + "thread": 26 + } + }, + { + "amount": "299.062558903", + "slot": { + "period": 3643570, + "thread": 6 + } + }, + { + "amount": "299.062558905", + "slot": { + "period": 3890868, + "thread": 17 + } + } + ], + "AU12Z3kzAeHQKhADAajvtEd21SNSu7Zxv2wBoFtTJXarkB17fz485": [ + { + "amount": "203.811151185", + "slot": { + "period": 78271, + "thread": 19 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 270173, + "thread": 0 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 391560, + "thread": 10 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 528811, + "thread": 10 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 665562, + "thread": 19 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 969842, + "thread": 2 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1017317, + "thread": 31 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1171115, + "thread": 16 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1410451, + "thread": 29 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1548106, + "thread": 27 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1725696, + "thread": 11 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 1963646, + "thread": 29 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2023093, + "thread": 10 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2178441, + "thread": 28 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2398604, + "thread": 2 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2568867, + "thread": 23 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2629221, + "thread": 1 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 2851493, + "thread": 5 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 3107766, + "thread": 29 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 3245509, + "thread": 2 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 3378930, + "thread": 1 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 3516078, + "thread": 9 + } + }, + { + "amount": "203.811151185", + "slot": { + "period": 3701892, + "thread": 5 + } + }, + { + "amount": "203.811151194", + "slot": { + "period": 3856988, + "thread": 20 + } + } + ], + "AU12Z4rUWd2jUkMpC9PGYAEcan6WTwmhMYZV8NPJgqZpySK6ApxFX": [ + { + "amount": "239.171980282", + "slot": { + "period": 159812, + "thread": 6 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 295292, + "thread": 4 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 358918, + "thread": 11 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 549173, + "thread": 4 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 763319, + "thread": 1 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 836316, + "thread": 26 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1143788, + "thread": 19 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1164322, + "thread": 16 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1375725, + "thread": 14 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1527811, + "thread": 9 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1700879, + "thread": 24 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 1810475, + "thread": 15 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2051151, + "thread": 14 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2244627, + "thread": 30 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2299912, + "thread": 21 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2553824, + "thread": 17 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2731663, + "thread": 29 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 2849494, + "thread": 17 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 3046886, + "thread": 4 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 3204588, + "thread": 30 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 3299642, + "thread": 17 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 3462223, + "thread": 0 + } + }, + { + "amount": "239.171980282", + "slot": { + "period": 3712394, + "thread": 8 + } + }, + { + "amount": "239.171980272", + "slot": { + "period": 3863795, + "thread": 24 + } + } + ], + "AU12Z4sRbyQuSu6r2APy9XVyv4A9nniXzmhk8HMe4dyih1YEmeCsf": [ + { + "amount": "216.898267241", + "slot": { + "period": 64379, + "thread": 29 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 282167, + "thread": 28 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 446603, + "thread": 27 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 503341, + "thread": 13 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 688957, + "thread": 4 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 865352, + "thread": 1 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1045643, + "thread": 18 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1162127, + "thread": 17 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1341972, + "thread": 17 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1540252, + "thread": 22 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1665258, + "thread": 2 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1954707, + "thread": 14 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 1979762, + "thread": 6 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 2245408, + "thread": 8 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 2334338, + "thread": 20 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 2504466, + "thread": 14 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 2655816, + "thread": 2 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 2845342, + "thread": 30 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 3041728, + "thread": 18 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 3209259, + "thread": 19 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 3339970, + "thread": 27 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 3599336, + "thread": 1 + } + }, + { + "amount": "216.898267241", + "slot": { + "period": 3624967, + "thread": 2 + } + }, + { + "amount": "216.898267231", + "slot": { + "period": 3857728, + "thread": 1 + } + } + ], + "AU12Z5Fz9Xx4CCfz76bqxJnnc4BRkMwmbAXGopn7CfwayWgqPB6k5": [ + { + "amount": "79.877423350", + "slot": { + "period": 163927, + "thread": 17 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 285381, + "thread": 4 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 440707, + "thread": 31 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 550733, + "thread": 2 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 731084, + "thread": 28 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 829536, + "thread": 21 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 991120, + "thread": 19 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 1298360, + "thread": 11 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 1405959, + "thread": 25 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 1564789, + "thread": 7 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 1710860, + "thread": 31 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 1854066, + "thread": 30 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2019637, + "thread": 2 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2269441, + "thread": 4 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2460996, + "thread": 29 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2490252, + "thread": 15 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2677625, + "thread": 29 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 2917590, + "thread": 26 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 3067279, + "thread": 18 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 3128479, + "thread": 11 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 3320597, + "thread": 14 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 3526434, + "thread": 17 + } + }, + { + "amount": "79.877423350", + "slot": { + "period": 3646471, + "thread": 22 + } + }, + { + "amount": "79.877423341", + "slot": { + "period": 3819828, + "thread": 23 + } + } + ], + "AU12Z5XRX1RGMjXzb6pDvtP4Xeg3Hq67pMTvw47YK1MvFrSzLWcp4": [ + { + "amount": "181.771208842", + "slot": { + "period": 106100, + "thread": 7 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 200989, + "thread": 9 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 326720, + "thread": 25 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 599489, + "thread": 20 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 732512, + "thread": 8 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 965479, + "thread": 19 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1027600, + "thread": 14 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1169301, + "thread": 1 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1473042, + "thread": 21 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1632404, + "thread": 31 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1711520, + "thread": 4 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 1893468, + "thread": 9 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2063448, + "thread": 14 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2224690, + "thread": 28 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2419733, + "thread": 5 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2471320, + "thread": 2 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2709461, + "thread": 9 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 2794554, + "thread": 2 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 3042456, + "thread": 1 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 3277708, + "thread": 20 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 3291397, + "thread": 28 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 3488872, + "thread": 29 + } + }, + { + "amount": "181.771208842", + "slot": { + "period": 3734521, + "thread": 30 + } + }, + { + "amount": "181.771208832", + "slot": { + "period": 3903092, + "thread": 11 + } + } + ], + "AU12Z76a11APRLDKxLMG4ySPCrrcF6GsKyxuyYuPHNUZc6kEdGhV9": [ + { + "amount": "108.661798935", + "slot": { + "period": 50315, + "thread": 0 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 194196, + "thread": 24 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 361235, + "thread": 18 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 570830, + "thread": 19 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 702706, + "thread": 12 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 940248, + "thread": 8 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1031407, + "thread": 9 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1252805, + "thread": 21 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1475320, + "thread": 6 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1486684, + "thread": 1 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1752261, + "thread": 26 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 1856471, + "thread": 24 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2021516, + "thread": 26 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2178848, + "thread": 7 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2371994, + "thread": 8 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2476596, + "thread": 24 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2711790, + "thread": 16 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 2904494, + "thread": 16 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 3113057, + "thread": 18 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 3136626, + "thread": 20 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 3291146, + "thread": 16 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 3540248, + "thread": 27 + } + }, + { + "amount": "108.661798935", + "slot": { + "period": 3762520, + "thread": 22 + } + }, + { + "amount": "108.661798927", + "slot": { + "period": 3781570, + "thread": 3 + } + } + ], + "AU12Z7SJEMvCU5zX8rV1oscQg92LhxgVAfNQG8AvMPkNQoAwQXzXg": [ + { + "amount": "300.919573869", + "slot": { + "period": 53508, + "thread": 12 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 303158, + "thread": 0 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 349265, + "thread": 10 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 601162, + "thread": 3 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 750929, + "thread": 1 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 943213, + "thread": 6 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1126186, + "thread": 29 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1241971, + "thread": 14 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1444431, + "thread": 13 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1503793, + "thread": 14 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1729026, + "thread": 7 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 1874279, + "thread": 18 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2083962, + "thread": 14 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2186257, + "thread": 10 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2404084, + "thread": 29 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2531376, + "thread": 27 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2751071, + "thread": 10 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2813936, + "thread": 8 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 2987943, + "thread": 29 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 3175610, + "thread": 11 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 3372113, + "thread": 28 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 3603863, + "thread": 10 + } + }, + { + "amount": "300.919573869", + "slot": { + "period": 3700683, + "thread": 13 + } + }, + { + "amount": "300.919573874", + "slot": { + "period": 3907183, + "thread": 6 + } + } + ], + "AU12Z7Z1H5q7XYfPyFZ9pnYtaiNfbhVYtYGdUAdnk4MAfS64wdaf7": [ + { + "amount": "83.337822022", + "slot": { + "period": 89515, + "thread": 7 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 258014, + "thread": 4 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 326074, + "thread": 29 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 601876, + "thread": 19 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 788163, + "thread": 10 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 871426, + "thread": 4 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1048792, + "thread": 30 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1209738, + "thread": 5 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1463127, + "thread": 27 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1607146, + "thread": 18 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1769202, + "thread": 18 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 1936810, + "thread": 28 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2018962, + "thread": 31 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2157169, + "thread": 28 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2317895, + "thread": 25 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2578168, + "thread": 14 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2693168, + "thread": 29 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 2890739, + "thread": 28 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 3111229, + "thread": 22 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 3233049, + "thread": 0 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 3427952, + "thread": 25 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 3554258, + "thread": 29 + } + }, + { + "amount": "83.337822022", + "slot": { + "period": 3772127, + "thread": 18 + } + }, + { + "amount": "83.337822023", + "slot": { + "period": 3820448, + "thread": 7 + } + } + ], + "AU12Z8TE8RD4J51wu2gEV89TQnanyQVq74URXYKvd7GQ5KbSXV8aE": [ + { + "amount": "219.277037464", + "slot": { + "period": 14914, + "thread": 0 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 296800, + "thread": 22 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 425621, + "thread": 29 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 520262, + "thread": 19 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 787512, + "thread": 13 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 931927, + "thread": 13 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1027987, + "thread": 18 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1225898, + "thread": 31 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1457695, + "thread": 31 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1540328, + "thread": 25 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1780069, + "thread": 20 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 1974010, + "thread": 11 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2062542, + "thread": 26 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2192871, + "thread": 21 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2457051, + "thread": 18 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2567199, + "thread": 6 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2696066, + "thread": 12 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 2840360, + "thread": 31 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 3031824, + "thread": 1 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 3277971, + "thread": 2 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 3418724, + "thread": 8 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 3605057, + "thread": 24 + } + }, + { + "amount": "219.277037464", + "slot": { + "period": 3711368, + "thread": 26 + } + }, + { + "amount": "219.277037475", + "slot": { + "period": 3916250, + "thread": 29 + } + } + ], + "AU12Z9HzNNqLs93hpCkGJMG5WDkyuYC1XMN8aq3rwQsp5dMvyTTv6": [ + { + "amount": "158.630268832", + "slot": { + "period": 164609, + "thread": 0 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 322596, + "thread": 7 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 414107, + "thread": 7 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 561544, + "thread": 18 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 758311, + "thread": 29 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 842640, + "thread": 1 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1043481, + "thread": 6 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1299938, + "thread": 18 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1327309, + "thread": 8 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1518452, + "thread": 19 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1753938, + "thread": 31 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 1888107, + "thread": 8 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2093219, + "thread": 28 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2210947, + "thread": 24 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2400391, + "thread": 8 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2576976, + "thread": 2 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2642677, + "thread": 24 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2795721, + "thread": 14 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 2978784, + "thread": 12 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 3278409, + "thread": 29 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 3423375, + "thread": 23 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 3473929, + "thread": 10 + } + }, + { + "amount": "158.630268832", + "slot": { + "period": 3648110, + "thread": 13 + } + }, + { + "amount": "158.630268836", + "slot": { + "period": 3814270, + "thread": 16 + } + } + ], + "AU12Z9TSbB5PRZPtM2VZJZ6bZsD1XGrzxKSkUZPs6Uo5uMHSGnwXi": [ + { + "amount": "167.124368265", + "slot": { + "period": 62217, + "thread": 9 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 292017, + "thread": 24 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 378214, + "thread": 16 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 522378, + "thread": 23 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 790777, + "thread": 6 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 827477, + "thread": 14 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1125481, + "thread": 23 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1272018, + "thread": 19 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1442857, + "thread": 31 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1503222, + "thread": 16 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1664252, + "thread": 19 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 1974574, + "thread": 9 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2121166, + "thread": 20 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2179570, + "thread": 30 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2405323, + "thread": 13 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2586520, + "thread": 30 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2661413, + "thread": 19 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 2899568, + "thread": 19 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 3066256, + "thread": 0 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 3210012, + "thread": 12 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 3422510, + "thread": 1 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 3581984, + "thread": 9 + } + }, + { + "amount": "167.124368265", + "slot": { + "period": 3734720, + "thread": 0 + } + }, + { + "amount": "167.124368272", + "slot": { + "period": 3866277, + "thread": 29 + } + } + ], + "AU12Z9uPi6rsLWkHCkeACYZsf2UxGat1SE5NMMcVoDdg6NVP3G32U": [ + { + "amount": "354.018948393", + "slot": { + "period": 157273, + "thread": 0 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 308301, + "thread": 30 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 444496, + "thread": 4 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 579261, + "thread": 27 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 722413, + "thread": 11 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 902778, + "thread": 31 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1043536, + "thread": 23 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1259600, + "thread": 12 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1453769, + "thread": 23 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1488039, + "thread": 6 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1742276, + "thread": 7 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 1911302, + "thread": 17 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2032481, + "thread": 23 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2274666, + "thread": 20 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2399880, + "thread": 14 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2581752, + "thread": 3 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2717649, + "thread": 5 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2938555, + "thread": 0 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 2976842, + "thread": 2 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 3235830, + "thread": 23 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 3306247, + "thread": 22 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 3577435, + "thread": 8 + } + }, + { + "amount": "354.018948393", + "slot": { + "period": 3682727, + "thread": 19 + } + }, + { + "amount": "354.018948400", + "slot": { + "period": 3795807, + "thread": 4 + } + } + ], + "AU12Z9uSG3Ys1kLbszLCKAgCD1LE77BwQg9nkpCoGpVK1CoqyGs6V": [ + { + "amount": "477.366218384", + "slot": { + "period": 60333, + "thread": 9 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 267728, + "thread": 23 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 385671, + "thread": 28 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 648657, + "thread": 8 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 727476, + "thread": 7 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 870683, + "thread": 24 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1149251, + "thread": 1 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1293332, + "thread": 11 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1347883, + "thread": 19 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1593513, + "thread": 22 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1673024, + "thread": 28 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 1865527, + "thread": 25 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2084011, + "thread": 4 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2220129, + "thread": 23 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2416183, + "thread": 30 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2532048, + "thread": 20 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2704395, + "thread": 16 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 2844823, + "thread": 14 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 3052378, + "thread": 12 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 3231911, + "thread": 15 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 3380459, + "thread": 14 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 3532816, + "thread": 28 + } + }, + { + "amount": "477.366218384", + "slot": { + "period": 3720395, + "thread": 23 + } + }, + { + "amount": "477.366218394", + "slot": { + "period": 3883449, + "thread": 30 + } + } + ], + "AU12ZABs228HMuqe7mgQnmGLkQ5wZZbdVHqa3fC8KUYUxuZh8EVpC": [ + { + "amount": "68.147044970", + "slot": { + "period": 54518, + "thread": 3 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 241575, + "thread": 3 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 450085, + "thread": 20 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 541866, + "thread": 10 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 791012, + "thread": 7 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 831287, + "thread": 29 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1082108, + "thread": 29 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1273884, + "thread": 10 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1354077, + "thread": 3 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1640660, + "thread": 26 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1686868, + "thread": 28 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 1856702, + "thread": 15 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2052582, + "thread": 1 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2163463, + "thread": 23 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2324902, + "thread": 11 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2482510, + "thread": 7 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2684621, + "thread": 5 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 2891763, + "thread": 12 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 3060170, + "thread": 18 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 3173055, + "thread": 30 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 3332500, + "thread": 1 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 3469195, + "thread": 26 + } + }, + { + "amount": "68.147044970", + "slot": { + "period": 3774007, + "thread": 6 + } + }, + { + "amount": "68.147044981", + "slot": { + "period": 3832220, + "thread": 19 + } + } + ], + "AU12ZDQkczfyXV6WNnvbTYhHHDLpUU5dK7GRCyuUWQgvKrotT5pPA": [ + { + "amount": "78.822664090", + "slot": { + "period": 48892, + "thread": 0 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 224009, + "thread": 11 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 328743, + "thread": 23 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 517837, + "thread": 20 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 790696, + "thread": 28 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 981479, + "thread": 21 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1115236, + "thread": 25 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1294346, + "thread": 25 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1389477, + "thread": 0 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1503907, + "thread": 22 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1682933, + "thread": 27 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 1975688, + "thread": 20 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2060189, + "thread": 29 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2160803, + "thread": 6 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2400219, + "thread": 13 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2601914, + "thread": 23 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2751208, + "thread": 31 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2871066, + "thread": 23 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 2975759, + "thread": 22 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 3205145, + "thread": 30 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 3403875, + "thread": 14 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 3476954, + "thread": 6 + } + }, + { + "amount": "78.822664090", + "slot": { + "period": 3723151, + "thread": 29 + } + }, + { + "amount": "78.822664082", + "slot": { + "period": 3941839, + "thread": 20 + } + } + ], + "AU12ZDeK8wwNXA2LujsVG9TqtBDcoEAu13gXUNgmozrTk4QcKVCvm": [ + { + "amount": "247.450062772", + "slot": { + "period": 166960, + "thread": 2 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 173170, + "thread": 23 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 372744, + "thread": 4 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 620121, + "thread": 30 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 793104, + "thread": 0 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 972643, + "thread": 27 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1121497, + "thread": 0 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1163665, + "thread": 23 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1450736, + "thread": 7 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1512229, + "thread": 3 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1661589, + "thread": 11 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 1928521, + "thread": 5 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2117832, + "thread": 29 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2180449, + "thread": 10 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2398214, + "thread": 29 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2554561, + "thread": 13 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2699627, + "thread": 6 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 2843346, + "thread": 3 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 3054196, + "thread": 21 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 3273237, + "thread": 9 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 3354862, + "thread": 27 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 3587447, + "thread": 10 + } + }, + { + "amount": "247.450062772", + "slot": { + "period": 3755496, + "thread": 27 + } + }, + { + "amount": "247.450062784", + "slot": { + "period": 3841090, + "thread": 12 + } + } + ], + "AU12ZDhs52jmq9ztBy8PHrFJZeGwbFK2viVCK9m5PZrYp9TJAX5d1": [ + { + "amount": "167.301895846", + "slot": { + "period": 124158, + "thread": 4 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 180419, + "thread": 15 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 433268, + "thread": 25 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 512042, + "thread": 13 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 795615, + "thread": 6 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 874823, + "thread": 4 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1068433, + "thread": 8 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1294059, + "thread": 4 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1356403, + "thread": 22 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1534446, + "thread": 16 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1793552, + "thread": 23 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1958344, + "thread": 3 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 1989752, + "thread": 22 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2170956, + "thread": 29 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2416153, + "thread": 4 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2571687, + "thread": 15 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2752690, + "thread": 4 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2874418, + "thread": 8 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 2958826, + "thread": 18 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 3288585, + "thread": 26 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 3443354, + "thread": 20 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 3453324, + "thread": 17 + } + }, + { + "amount": "167.301895846", + "slot": { + "period": 3680170, + "thread": 13 + } + }, + { + "amount": "167.301895843", + "slot": { + "period": 3784318, + "thread": 1 + } + } + ], + "AU12ZEP5YscX7pMU4pAZqg2pUxaxo3zcZuQCsXQ83BfK93YbJbCz2": [ + { + "amount": "286.962783553", + "slot": { + "period": 121715, + "thread": 12 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 269606, + "thread": 26 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 459665, + "thread": 2 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 515905, + "thread": 1 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 814739, + "thread": 24 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 939883, + "thread": 15 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1043548, + "thread": 10 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1170966, + "thread": 4 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1329912, + "thread": 5 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1571938, + "thread": 18 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1675697, + "thread": 29 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 1975693, + "thread": 10 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2019889, + "thread": 31 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2286297, + "thread": 2 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2370245, + "thread": 18 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2556484, + "thread": 4 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2689040, + "thread": 20 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 2882295, + "thread": 6 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 3030852, + "thread": 9 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 3161738, + "thread": 10 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 3446637, + "thread": 10 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 3539367, + "thread": 22 + } + }, + { + "amount": "286.962783553", + "slot": { + "period": 3636787, + "thread": 22 + } + }, + { + "amount": "286.962783548", + "slot": { + "period": 3867830, + "thread": 9 + } + } + ], + "AU12ZGfJeYDy3KrYZ8m3sgxL8UMETJGUmCuuNtcrvvkZznHcnWhCK": [ + { + "amount": "278.996887221", + "slot": { + "period": 116959, + "thread": 10 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 229023, + "thread": 17 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 361195, + "thread": 16 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 627986, + "thread": 12 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 804794, + "thread": 12 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 878815, + "thread": 12 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1023894, + "thread": 14 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1297724, + "thread": 23 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1408655, + "thread": 16 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1609279, + "thread": 9 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1677290, + "thread": 1 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 1873870, + "thread": 8 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2071874, + "thread": 24 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2168430, + "thread": 8 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2361493, + "thread": 11 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2505220, + "thread": 25 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2773839, + "thread": 28 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 2841776, + "thread": 6 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 3067184, + "thread": 23 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 3208138, + "thread": 27 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 3356045, + "thread": 5 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 3516653, + "thread": 28 + } + }, + { + "amount": "278.996887221", + "slot": { + "period": 3765758, + "thread": 1 + } + }, + { + "amount": "278.996887214", + "slot": { + "period": 3931597, + "thread": 8 + } + } + ], + "AU12ZGtjJ7td6ScfokgR8KGZahLiwcsTSQ5ZDJWd51MboK4XqF2Zb": [ + { + "amount": "235.532390300", + "slot": { + "period": 73148, + "thread": 3 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 319860, + "thread": 18 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 441898, + "thread": 31 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 512289, + "thread": 24 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 812525, + "thread": 15 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 973436, + "thread": 23 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 998058, + "thread": 11 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1156015, + "thread": 5 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1325975, + "thread": 21 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1578772, + "thread": 1 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1708476, + "thread": 22 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1932953, + "thread": 23 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 1977548, + "thread": 18 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 2229488, + "thread": 13 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 2429992, + "thread": 0 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 2550284, + "thread": 5 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 2697869, + "thread": 6 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 2904833, + "thread": 7 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 3048526, + "thread": 2 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 3201224, + "thread": 28 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 3443778, + "thread": 23 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 3500778, + "thread": 0 + } + }, + { + "amount": "235.532390300", + "slot": { + "period": 3757807, + "thread": 26 + } + }, + { + "amount": "235.532390312", + "slot": { + "period": 3827471, + "thread": 4 + } + } + ], + "AU12ZHtFVFVboLJhu3RWctASo5dy6w4rEZzaLLDxN9PPpranBp9yE": [ + { + "amount": "361.178434537", + "slot": { + "period": 124006, + "thread": 30 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 218641, + "thread": 11 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 395036, + "thread": 9 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 551410, + "thread": 5 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 655247, + "thread": 29 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 868175, + "thread": 19 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1076366, + "thread": 2 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1251024, + "thread": 12 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1478769, + "thread": 27 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1522586, + "thread": 21 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1749451, + "thread": 30 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 1883597, + "thread": 6 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2048658, + "thread": 7 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2194301, + "thread": 22 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2447692, + "thread": 5 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2522353, + "thread": 26 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2768516, + "thread": 24 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 2847804, + "thread": 4 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 3055411, + "thread": 21 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 3281555, + "thread": 11 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 3399678, + "thread": 13 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 3469660, + "thread": 29 + } + }, + { + "amount": "361.178434537", + "slot": { + "period": 3738381, + "thread": 9 + } + }, + { + "amount": "361.178434545", + "slot": { + "period": 3849208, + "thread": 26 + } + } + ], + "AU12ZJREWvc8dT7amyChuHZ1hcfMSwxSA3oQgr8urJMZFq3Myk5cf": [ + { + "amount": "186.623408080", + "slot": { + "period": 23577, + "thread": 4 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 199715, + "thread": 29 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 442635, + "thread": 15 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 612221, + "thread": 9 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 814344, + "thread": 4 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 887149, + "thread": 3 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1064663, + "thread": 5 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1311972, + "thread": 4 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1412139, + "thread": 20 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1584747, + "thread": 9 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1649185, + "thread": 29 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 1848210, + "thread": 5 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2143376, + "thread": 25 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2259317, + "thread": 7 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2397592, + "thread": 24 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2522357, + "thread": 0 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2767275, + "thread": 4 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 2863966, + "thread": 25 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 3051402, + "thread": 20 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 3187268, + "thread": 30 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 3289618, + "thread": 8 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 3456627, + "thread": 24 + } + }, + { + "amount": "186.623408080", + "slot": { + "period": 3710402, + "thread": 1 + } + }, + { + "amount": "186.623408068", + "slot": { + "period": 3942992, + "thread": 8 + } + } + ], + "AU12ZJxYPB4S7H52xAxcStNMjdCSBQMjAhJx31FnqF7ph7wGqfAQj": [ + { + "amount": "60.297157437", + "slot": { + "period": 76937, + "thread": 27 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 193858, + "thread": 14 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 461597, + "thread": 31 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 636492, + "thread": 5 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 707945, + "thread": 10 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 915095, + "thread": 16 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1092955, + "thread": 13 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1198669, + "thread": 26 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1371104, + "thread": 16 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1496694, + "thread": 17 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1737694, + "thread": 20 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 1894882, + "thread": 25 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2114697, + "thread": 13 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2290225, + "thread": 7 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2304159, + "thread": 29 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2581444, + "thread": 30 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2733963, + "thread": 18 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 2829157, + "thread": 25 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 3077428, + "thread": 31 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 3209522, + "thread": 5 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 3346375, + "thread": 9 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 3477578, + "thread": 31 + } + }, + { + "amount": "60.297157437", + "slot": { + "period": 3636311, + "thread": 26 + } + }, + { + "amount": "60.297157432", + "slot": { + "period": 3786452, + "thread": 4 + } + } + ], + "AU12ZKiFqLRo6gKEcs7jJRksUk3pX2FJkkYyZe1sY2WZKACife6hZ": [ + { + "amount": "146.993425925", + "slot": { + "period": 146655, + "thread": 7 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 295493, + "thread": 22 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 327385, + "thread": 0 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 504892, + "thread": 2 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 746850, + "thread": 19 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 889942, + "thread": 16 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1101277, + "thread": 24 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1163812, + "thread": 27 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1377844, + "thread": 12 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1489966, + "thread": 21 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1776031, + "thread": 3 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 1867813, + "thread": 31 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2087167, + "thread": 5 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2144384, + "thread": 8 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2400181, + "thread": 23 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2606851, + "thread": 13 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2728225, + "thread": 21 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 2901700, + "thread": 21 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 3108670, + "thread": 10 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 3261606, + "thread": 27 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 3422120, + "thread": 25 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 3603094, + "thread": 21 + } + }, + { + "amount": "146.993425925", + "slot": { + "period": 3661985, + "thread": 1 + } + }, + { + "amount": "146.993425929", + "slot": { + "period": 3849680, + "thread": 25 + } + } + ], + "AU12ZKky3rGVDNW4d7ZwBSUWyYyMj94yqgEELvK2mk93gdkEpGNmr": [ + { + "amount": "90.275265051", + "slot": { + "period": 129152, + "thread": 31 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 265203, + "thread": 18 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 472292, + "thread": 12 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 652047, + "thread": 4 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 678137, + "thread": 27 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 880385, + "thread": 3 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1030314, + "thread": 13 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1248279, + "thread": 21 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1412805, + "thread": 3 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1573857, + "thread": 9 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1671119, + "thread": 0 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 1898790, + "thread": 31 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2047204, + "thread": 6 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2160160, + "thread": 7 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2408223, + "thread": 2 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2600250, + "thread": 29 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2783656, + "thread": 29 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2931231, + "thread": 1 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 2958845, + "thread": 4 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 3181108, + "thread": 21 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 3373082, + "thread": 5 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 3519549, + "thread": 13 + } + }, + { + "amount": "90.275265051", + "slot": { + "period": 3705775, + "thread": 16 + } + }, + { + "amount": "90.275265061", + "slot": { + "period": 3813215, + "thread": 27 + } + } + ], + "AU12ZKpSYTei79Pwkr2bKQ2x8FauohvFk7wG126BqFdmDem8Nbbd8": [ + { + "amount": "575.628494736", + "slot": { + "period": 22151, + "thread": 2 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 275448, + "thread": 26 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 342732, + "thread": 19 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 595803, + "thread": 4 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 757412, + "thread": 10 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 972562, + "thread": 31 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1015697, + "thread": 13 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1185095, + "thread": 22 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1405442, + "thread": 3 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1564792, + "thread": 16 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1742890, + "thread": 9 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 1908275, + "thread": 10 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2134013, + "thread": 11 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2259021, + "thread": 15 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2447835, + "thread": 5 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2488087, + "thread": 21 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2656367, + "thread": 17 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 2915246, + "thread": 27 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 3038787, + "thread": 28 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 3205393, + "thread": 10 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 3390701, + "thread": 4 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 3586200, + "thread": 16 + } + }, + { + "amount": "575.628494736", + "slot": { + "period": 3748380, + "thread": 26 + } + }, + { + "amount": "575.628494734", + "slot": { + "period": 3781763, + "thread": 10 + } + } + ], + "AU12ZLsh3HcXsHCdTvHy7UcZgkY1Hmo3T7pS4tCkzmq7rEPKyvho6": [ + { + "amount": "354.502948569", + "slot": { + "period": 29475, + "thread": 26 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 308989, + "thread": 6 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 466044, + "thread": 16 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 511585, + "thread": 8 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 779789, + "thread": 6 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 933853, + "thread": 6 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1141167, + "thread": 30 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1295944, + "thread": 21 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1324788, + "thread": 4 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1574842, + "thread": 3 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1710310, + "thread": 31 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 1830017, + "thread": 0 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2127421, + "thread": 19 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2147250, + "thread": 18 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2443056, + "thread": 6 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2489149, + "thread": 24 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2676709, + "thread": 16 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2852969, + "thread": 5 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 2977935, + "thread": 19 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 3238372, + "thread": 26 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 3309323, + "thread": 24 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 3558438, + "thread": 29 + } + }, + { + "amount": "354.502948569", + "slot": { + "period": 3699749, + "thread": 10 + } + }, + { + "amount": "354.502948566", + "slot": { + "period": 3929686, + "thread": 16 + } + } + ], + "AU12ZM79mDpDAn7yU5tyEA6k8zYE36yom3fvMMxbfvA5z515V3Za7": [ + { + "amount": "467.175797454", + "slot": { + "period": 20391, + "thread": 5 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 236446, + "thread": 26 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 380932, + "thread": 2 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 634891, + "thread": 21 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 696571, + "thread": 21 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 887166, + "thread": 12 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1062898, + "thread": 28 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1172622, + "thread": 27 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1411570, + "thread": 24 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1575355, + "thread": 7 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1650634, + "thread": 19 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 1812316, + "thread": 29 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2143543, + "thread": 30 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2241970, + "thread": 8 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2371222, + "thread": 8 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2569873, + "thread": 6 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2740366, + "thread": 9 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2869971, + "thread": 11 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 2984260, + "thread": 1 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 3189496, + "thread": 19 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 3342181, + "thread": 3 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 3561470, + "thread": 23 + } + }, + { + "amount": "467.175797454", + "slot": { + "period": 3778900, + "thread": 2 + } + }, + { + "amount": "467.175797445", + "slot": { + "period": 3793684, + "thread": 7 + } + } + ], + "AU12ZNHr99oE5wiF2i5GA7Wjcb8EPfK777Wgk8tiSEC83aCPEopJP": [ + { + "amount": "208.413223517", + "slot": { + "period": 79100, + "thread": 23 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 312980, + "thread": 27 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 358765, + "thread": 30 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 558480, + "thread": 13 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 792994, + "thread": 2 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 907648, + "thread": 9 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1027504, + "thread": 13 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1214600, + "thread": 20 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1468019, + "thread": 15 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1554677, + "thread": 9 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1656704, + "thread": 30 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 1875112, + "thread": 14 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2004704, + "thread": 31 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2239439, + "thread": 9 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2360171, + "thread": 6 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2516872, + "thread": 31 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2753591, + "thread": 14 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 2946333, + "thread": 10 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 3013625, + "thread": 7 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 3145413, + "thread": 6 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 3385430, + "thread": 26 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 3611639, + "thread": 8 + } + }, + { + "amount": "208.413223517", + "slot": { + "period": 3728367, + "thread": 26 + } + }, + { + "amount": "208.413223528", + "slot": { + "period": 3883220, + "thread": 22 + } + } + ], + "AU12ZNL4kU2tZxkYwKPQnyMSCLqenJyrD9TJq43PVKC4R7WF7Mofv": [ + { + "amount": "351.519587478", + "slot": { + "period": 136934, + "thread": 16 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 169966, + "thread": 18 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 417879, + "thread": 11 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 513019, + "thread": 10 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 689185, + "thread": 1 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 952731, + "thread": 17 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 985438, + "thread": 28 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 1308516, + "thread": 3 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 1354364, + "thread": 22 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 1605799, + "thread": 21 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 1731144, + "thread": 14 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 1965131, + "thread": 22 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2060496, + "thread": 19 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2158515, + "thread": 13 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2424194, + "thread": 5 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2585151, + "thread": 18 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2630486, + "thread": 14 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 2944778, + "thread": 18 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 3106524, + "thread": 31 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 3180666, + "thread": 9 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 3420816, + "thread": 20 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 3506219, + "thread": 28 + } + }, + { + "amount": "351.519587478", + "slot": { + "period": 3685167, + "thread": 11 + } + }, + { + "amount": "351.519587486", + "slot": { + "period": 3809172, + "thread": 1 + } + } + ], + "AU12ZNfjPaF5rx7jVAwAGyKNegLBWWuQGtotkhsFySSyAD119bFUR": [ + { + "amount": "199.507302877", + "slot": { + "period": 36272, + "thread": 17 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 225985, + "thread": 16 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 392810, + "thread": 29 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 494080, + "thread": 5 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 669155, + "thread": 23 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 909016, + "thread": 16 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 982871, + "thread": 31 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 1306350, + "thread": 17 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 1477454, + "thread": 24 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 1496810, + "thread": 7 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 1657625, + "thread": 11 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 1874272, + "thread": 7 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2076454, + "thread": 24 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2164662, + "thread": 4 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2381396, + "thread": 17 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2505749, + "thread": 31 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2706087, + "thread": 18 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 2952931, + "thread": 5 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 3111273, + "thread": 6 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 3218359, + "thread": 14 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 3421260, + "thread": 21 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 3599031, + "thread": 16 + } + }, + { + "amount": "199.507302877", + "slot": { + "period": 3728839, + "thread": 3 + } + }, + { + "amount": "199.507302867", + "slot": { + "period": 3780927, + "thread": 22 + } + } + ], + "AU12ZNhn5hFSmgtj4s1W916f8FKMPtT2XxsUdy3mdH8pfABJsknt4": [ + { + "amount": "182.286461539", + "slot": { + "period": 20809, + "thread": 29 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 254191, + "thread": 7 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 464132, + "thread": 9 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 543450, + "thread": 4 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 736485, + "thread": 11 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 901386, + "thread": 16 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1010036, + "thread": 3 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1314466, + "thread": 17 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1449564, + "thread": 0 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1524981, + "thread": 15 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1724918, + "thread": 21 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 1869212, + "thread": 19 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2080621, + "thread": 20 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2291677, + "thread": 22 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2455267, + "thread": 24 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2525242, + "thread": 8 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2787989, + "thread": 0 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 2903170, + "thread": 24 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 3021781, + "thread": 9 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 3124523, + "thread": 29 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 3325655, + "thread": 3 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 3476238, + "thread": 20 + } + }, + { + "amount": "182.286461539", + "slot": { + "period": 3634696, + "thread": 27 + } + }, + { + "amount": "182.286461545", + "slot": { + "period": 3826863, + "thread": 1 + } + } + ], + "AU12ZPKF27df9rqQ8GqUwKcs2EHMpkP9QhxJvrV9xtY4eKpnGKP7P": [ + { + "amount": "63.726867527", + "slot": { + "period": 64162, + "thread": 9 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 214019, + "thread": 8 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 408120, + "thread": 18 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 529886, + "thread": 19 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 712384, + "thread": 17 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 908398, + "thread": 22 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1051975, + "thread": 4 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1251780, + "thread": 13 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1399797, + "thread": 18 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1502190, + "thread": 24 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1763953, + "thread": 23 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 1893358, + "thread": 0 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2091173, + "thread": 1 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2229606, + "thread": 2 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2458730, + "thread": 21 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2495802, + "thread": 5 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2784522, + "thread": 19 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 2866889, + "thread": 22 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 3105757, + "thread": 27 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 3214218, + "thread": 11 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 3422534, + "thread": 16 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 3579150, + "thread": 19 + } + }, + { + "amount": "63.726867527", + "slot": { + "period": 3719411, + "thread": 18 + } + }, + { + "amount": "63.726867520", + "slot": { + "period": 3788175, + "thread": 27 + } + } + ], + "AU12ZPNHE9aUaLQgcn5JttCqT1He7yBck4LLDJH4qFurLVHVg26YY": [ + { + "amount": "156.142804341", + "slot": { + "period": 71028, + "thread": 23 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 274865, + "thread": 8 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 397642, + "thread": 8 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 582011, + "thread": 16 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 692816, + "thread": 6 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 933843, + "thread": 7 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1012934, + "thread": 25 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1170469, + "thread": 20 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1456962, + "thread": 20 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1551351, + "thread": 28 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1658635, + "thread": 7 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 1916811, + "thread": 9 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2045680, + "thread": 23 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2161284, + "thread": 28 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2444773, + "thread": 7 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2487619, + "thread": 7 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2641161, + "thread": 2 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2813095, + "thread": 3 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 2979059, + "thread": 18 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 3239758, + "thread": 7 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 3428064, + "thread": 8 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 3581489, + "thread": 25 + } + }, + { + "amount": "156.142804341", + "slot": { + "period": 3739158, + "thread": 23 + } + }, + { + "amount": "156.142804334", + "slot": { + "period": 3809864, + "thread": 17 + } + } + ], + "AU12ZQU943dCoK84koHWoXzP1T6SdxpnWQbvvj2JKkDNDQZobDgJ1": [ + { + "amount": "378.820143704", + "slot": { + "period": 45812, + "thread": 28 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 242153, + "thread": 8 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 326567, + "thread": 20 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 650442, + "thread": 29 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 721954, + "thread": 4 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 887081, + "thread": 31 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1112034, + "thread": 0 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1195693, + "thread": 23 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1442753, + "thread": 22 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1608714, + "thread": 0 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1731284, + "thread": 29 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 1973321, + "thread": 23 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2134152, + "thread": 14 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2290542, + "thread": 17 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2459185, + "thread": 24 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2496789, + "thread": 23 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2665337, + "thread": 24 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2808388, + "thread": 29 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 2999690, + "thread": 18 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 3253704, + "thread": 12 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 3444680, + "thread": 2 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 3562649, + "thread": 1 + } + }, + { + "amount": "378.820143704", + "slot": { + "period": 3713330, + "thread": 1 + } + }, + { + "amount": "378.820143703", + "slot": { + "period": 3924334, + "thread": 19 + } + } + ], + "AU12ZRH5nH5kNxLr5xAZFMiPj6HjQu7MjUfBcrNTZtBmpaverVp56": [ + { + "amount": "83.610098719", + "slot": { + "period": 162225, + "thread": 9 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 206595, + "thread": 16 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 393054, + "thread": 18 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 494506, + "thread": 4 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 694048, + "thread": 14 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 946945, + "thread": 11 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1020472, + "thread": 28 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1269827, + "thread": 19 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1328018, + "thread": 10 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1570755, + "thread": 0 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1704762, + "thread": 30 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 1916510, + "thread": 28 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2133781, + "thread": 10 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2292665, + "thread": 7 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2353424, + "thread": 13 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2493973, + "thread": 11 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2761340, + "thread": 1 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2900559, + "thread": 15 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 2987445, + "thread": 18 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 3133669, + "thread": 25 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 3291091, + "thread": 6 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 3591112, + "thread": 15 + } + }, + { + "amount": "83.610098719", + "slot": { + "period": 3769981, + "thread": 14 + } + }, + { + "amount": "83.610098712", + "slot": { + "period": 3791293, + "thread": 0 + } + } + ], + "AU12ZSX8VS6xkn9tqsPjbc2Uvo93X6i3MKyCzEFafkv5Ek9edFRbA": [ + { + "amount": "291.246119691", + "slot": { + "period": 101287, + "thread": 0 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 217587, + "thread": 18 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 330825, + "thread": 25 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 636010, + "thread": 27 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 694248, + "thread": 2 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 842856, + "thread": 5 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 994090, + "thread": 16 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1172020, + "thread": 7 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1349456, + "thread": 20 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1511341, + "thread": 23 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1785121, + "thread": 5 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1854609, + "thread": 15 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 1995041, + "thread": 30 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 2207899, + "thread": 6 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 2366217, + "thread": 3 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 2571755, + "thread": 4 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 2643719, + "thread": 15 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 2948057, + "thread": 21 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 3049307, + "thread": 18 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 3235367, + "thread": 29 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 3403118, + "thread": 11 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 3506791, + "thread": 20 + } + }, + { + "amount": "291.246119691", + "slot": { + "period": 3630005, + "thread": 14 + } + }, + { + "amount": "291.246119696", + "slot": { + "period": 3824756, + "thread": 16 + } + } + ], + "AU12ZT66tRsq3nk5mwTcCy4ryWNM667Kpk7KGBYGHsh4asiBtT4Zz": [ + { + "amount": "97.486952878", + "slot": { + "period": 16428, + "thread": 22 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 234899, + "thread": 11 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 453999, + "thread": 21 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 645005, + "thread": 13 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 655231, + "thread": 20 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 824554, + "thread": 29 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1108315, + "thread": 17 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1187115, + "thread": 30 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1419636, + "thread": 24 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1530344, + "thread": 15 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1694017, + "thread": 12 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 1829194, + "thread": 28 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2078797, + "thread": 8 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2150607, + "thread": 3 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2360868, + "thread": 1 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2488761, + "thread": 19 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2780334, + "thread": 2 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 2802816, + "thread": 1 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 3011383, + "thread": 20 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 3222913, + "thread": 16 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 3354355, + "thread": 5 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 3591699, + "thread": 30 + } + }, + { + "amount": "97.486952878", + "slot": { + "period": 3742029, + "thread": 7 + } + }, + { + "amount": "97.486952870", + "slot": { + "period": 3829205, + "thread": 11 + } + } + ], + "AU12ZTQQ2LHyKHnrCaxoxZCM9H9aJrVX36UNqB4jtaQWEPxGEzpUq": [ + { + "amount": "146.764780495", + "slot": { + "period": 108472, + "thread": 20 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 188260, + "thread": 10 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 367966, + "thread": 16 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 616469, + "thread": 21 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 713062, + "thread": 28 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 942859, + "thread": 21 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1088087, + "thread": 15 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1230033, + "thread": 6 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1450722, + "thread": 21 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1565852, + "thread": 0 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1668171, + "thread": 11 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 1852300, + "thread": 23 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2077274, + "thread": 1 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2280738, + "thread": 8 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2321969, + "thread": 12 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2591653, + "thread": 0 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2666185, + "thread": 18 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 2832445, + "thread": 2 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 3026595, + "thread": 21 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 3201576, + "thread": 7 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 3303216, + "thread": 12 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 3524773, + "thread": 15 + } + }, + { + "amount": "146.764780495", + "slot": { + "period": 3693461, + "thread": 12 + } + }, + { + "amount": "146.764780487", + "slot": { + "period": 3850842, + "thread": 2 + } + } + ], + "AU12ZTkqkq41cY385av3s2gHBUNvQd3dNf4vznJunScvSj7eogVqd": [ + { + "amount": "144.341064031", + "slot": { + "period": 92598, + "thread": 28 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 215020, + "thread": 11 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 455355, + "thread": 12 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 541440, + "thread": 8 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 745843, + "thread": 27 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 905360, + "thread": 24 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1071381, + "thread": 20 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1312955, + "thread": 26 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1417348, + "thread": 11 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1612307, + "thread": 29 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1786498, + "thread": 8 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 1926302, + "thread": 4 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2051094, + "thread": 20 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2247972, + "thread": 27 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2396913, + "thread": 20 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2518252, + "thread": 22 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2789945, + "thread": 21 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2842745, + "thread": 12 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 2970161, + "thread": 28 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 3182448, + "thread": 5 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 3353586, + "thread": 18 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 3464147, + "thread": 23 + } + }, + { + "amount": "144.341064031", + "slot": { + "period": 3642539, + "thread": 28 + } + }, + { + "amount": "144.341064034", + "slot": { + "period": 3927855, + "thread": 13 + } + } + ], + "AU12ZUc7zN6A98HBVir54bqqMJh73z7v1pMpHCCuKptq3NjbxKCBK": [ + { + "amount": "106.099671589", + "slot": { + "period": 94358, + "thread": 26 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 223682, + "thread": 12 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 336233, + "thread": 17 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 559430, + "thread": 26 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 690285, + "thread": 6 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 925739, + "thread": 7 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1040421, + "thread": 3 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1295907, + "thread": 18 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1446453, + "thread": 27 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1526152, + "thread": 3 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1700064, + "thread": 1 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 1876893, + "thread": 29 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2117133, + "thread": 3 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2267551, + "thread": 23 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2380978, + "thread": 9 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2469427, + "thread": 0 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2735801, + "thread": 29 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2897977, + "thread": 4 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 2978344, + "thread": 28 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 3164965, + "thread": 27 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 3295770, + "thread": 11 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 3553743, + "thread": 11 + } + }, + { + "amount": "106.099671589", + "slot": { + "period": 3621915, + "thread": 22 + } + }, + { + "amount": "106.099671578", + "slot": { + "period": 3869218, + "thread": 6 + } + } + ], + "AU12ZXYNwvNZXCXgEYpPk8tqvpnCMxbqYg8zdfDQfSwnvMYiHTmL2": [ + { + "amount": "168.619698551", + "slot": { + "period": 99655, + "thread": 14 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 258116, + "thread": 30 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 379778, + "thread": 8 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 528580, + "thread": 12 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 662342, + "thread": 14 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 964830, + "thread": 19 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1005675, + "thread": 15 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1282023, + "thread": 17 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1479333, + "thread": 8 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1497503, + "thread": 28 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1729991, + "thread": 31 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 1909243, + "thread": 17 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2007113, + "thread": 1 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2157670, + "thread": 10 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2306971, + "thread": 5 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2524824, + "thread": 1 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2663067, + "thread": 12 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 2950563, + "thread": 14 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 3048219, + "thread": 29 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 3205024, + "thread": 1 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 3427382, + "thread": 6 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 3491206, + "thread": 19 + } + }, + { + "amount": "168.619698551", + "slot": { + "period": 3648181, + "thread": 24 + } + }, + { + "amount": "168.619698556", + "slot": { + "period": 3851033, + "thread": 19 + } + } + ], + "AU12ZZEASs6HKg3tSJcAznXdeXu8DhH2vaKkNTbCznLF6f1uddhsV": [ + { + "amount": "224.329894611", + "slot": { + "period": 20976, + "thread": 16 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 275817, + "thread": 14 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 360401, + "thread": 29 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 524033, + "thread": 4 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 726584, + "thread": 3 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 951829, + "thread": 0 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1063371, + "thread": 8 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1277870, + "thread": 29 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1383012, + "thread": 2 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1564320, + "thread": 19 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1670780, + "thread": 5 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 1824960, + "thread": 21 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2050197, + "thread": 4 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2200588, + "thread": 10 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2370681, + "thread": 20 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2490325, + "thread": 30 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2726442, + "thread": 11 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 2844262, + "thread": 20 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 3028964, + "thread": 15 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 3279271, + "thread": 12 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 3437320, + "thread": 26 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 3513593, + "thread": 15 + } + }, + { + "amount": "224.329894611", + "slot": { + "period": 3718053, + "thread": 30 + } + }, + { + "amount": "224.329894617", + "slot": { + "period": 3783888, + "thread": 11 + } + } + ], + "AU12ZZixgpBQsmW7QFGmFdqUPX1Av7Mv8ACfpXTKM46NdPcWitVni": [ + { + "amount": "219.623320989", + "slot": { + "period": 152317, + "thread": 3 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 288292, + "thread": 24 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 363302, + "thread": 13 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 564993, + "thread": 5 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 692009, + "thread": 15 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 870425, + "thread": 6 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1120045, + "thread": 30 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1206509, + "thread": 26 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1377536, + "thread": 14 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1492384, + "thread": 27 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1666689, + "thread": 10 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 1969543, + "thread": 26 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2083438, + "thread": 12 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2222803, + "thread": 12 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2446053, + "thread": 4 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2554627, + "thread": 22 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2786672, + "thread": 24 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 2807118, + "thread": 9 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 3004608, + "thread": 9 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 3262965, + "thread": 27 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 3350523, + "thread": 10 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 3588536, + "thread": 19 + } + }, + { + "amount": "219.623320989", + "slot": { + "period": 3681133, + "thread": 28 + } + }, + { + "amount": "219.623320982", + "slot": { + "period": 3837799, + "thread": 23 + } + } + ], + "AU12ZagrXsGdxt22QUk6BerDcCyLzxHUGFkesH8RaVPGUoVfCZWHe": [ + { + "amount": "52.224156331", + "slot": { + "period": 49394, + "thread": 26 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 287925, + "thread": 28 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 379517, + "thread": 14 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 622431, + "thread": 12 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 782515, + "thread": 22 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 865981, + "thread": 18 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1119149, + "thread": 10 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1288470, + "thread": 31 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1391305, + "thread": 28 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1569036, + "thread": 15 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1741458, + "thread": 18 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 1909655, + "thread": 28 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2042158, + "thread": 12 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2207828, + "thread": 8 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2379812, + "thread": 1 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2536231, + "thread": 21 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2734450, + "thread": 7 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 2833038, + "thread": 17 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 3030029, + "thread": 30 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 3185721, + "thread": 7 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 3444664, + "thread": 27 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 3485882, + "thread": 31 + } + }, + { + "amount": "52.224156331", + "slot": { + "period": 3624149, + "thread": 20 + } + }, + { + "amount": "52.224156333", + "slot": { + "period": 3883499, + "thread": 24 + } + } + ], + "AU12ZakXpAuHMntgFM9qjYh2VB3jAqFm9XZNLMkmigxnnfVZ1v5Dx": [ + { + "amount": "434.380842724", + "slot": { + "period": 160127, + "thread": 0 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 269240, + "thread": 26 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 345014, + "thread": 28 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 614040, + "thread": 23 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 677225, + "thread": 17 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 906568, + "thread": 20 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1141853, + "thread": 23 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1150361, + "thread": 20 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1449702, + "thread": 30 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1609214, + "thread": 10 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1655595, + "thread": 31 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 1854450, + "thread": 10 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2020818, + "thread": 14 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2227218, + "thread": 22 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2435766, + "thread": 19 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2598491, + "thread": 0 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2750849, + "thread": 8 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2950575, + "thread": 19 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 2994511, + "thread": 10 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 3140472, + "thread": 2 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 3402140, + "thread": 0 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 3500417, + "thread": 11 + } + }, + { + "amount": "434.380842724", + "slot": { + "period": 3758639, + "thread": 20 + } + }, + { + "amount": "434.380842725", + "slot": { + "period": 3855392, + "thread": 9 + } + } + ], + "AU12ZbFH3tdQL3bhrb9bYDYgj7PavbtoUSa88tp61v7beWgs2XVYx": [ + { + "amount": "222.572563267", + "slot": { + "period": 99538, + "thread": 13 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 245775, + "thread": 1 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 457474, + "thread": 16 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 555379, + "thread": 6 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 799309, + "thread": 13 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 966212, + "thread": 10 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1029381, + "thread": 15 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1294293, + "thread": 3 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1332178, + "thread": 14 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1494790, + "thread": 8 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1699604, + "thread": 21 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 1811287, + "thread": 27 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2052142, + "thread": 10 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2286535, + "thread": 14 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2353136, + "thread": 23 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2507125, + "thread": 17 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2759614, + "thread": 1 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 2839369, + "thread": 18 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 3105116, + "thread": 2 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 3207566, + "thread": 31 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 3302940, + "thread": 13 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 3513470, + "thread": 17 + } + }, + { + "amount": "222.572563267", + "slot": { + "period": 3730317, + "thread": 11 + } + }, + { + "amount": "222.572563263", + "slot": { + "period": 3830020, + "thread": 31 + } + } + ], + "AU12ZbSjd53JNdLZmsVarDFPocaPTMeqjpjXyNtPc3NWfYM332PbG": [ + { + "amount": "315.104372611", + "slot": { + "period": 59487, + "thread": 31 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 222781, + "thread": 10 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 363993, + "thread": 12 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 507363, + "thread": 7 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 767004, + "thread": 24 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 879200, + "thread": 23 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1142700, + "thread": 13 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1176207, + "thread": 8 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1394413, + "thread": 31 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1585917, + "thread": 5 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1708014, + "thread": 14 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1832578, + "thread": 11 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 1995340, + "thread": 11 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2202980, + "thread": 22 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2384243, + "thread": 20 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2486708, + "thread": 7 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2679192, + "thread": 9 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2880040, + "thread": 30 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 2987383, + "thread": 12 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 3267582, + "thread": 20 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 3343372, + "thread": 24 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 3465615, + "thread": 19 + } + }, + { + "amount": "315.104372611", + "slot": { + "period": 3681756, + "thread": 11 + } + }, + { + "amount": "315.104372609", + "slot": { + "period": 3900663, + "thread": 28 + } + } + ], + "AU12ZbfMhAVQtkU2P8m9ujgjyCVAkpVnWZ9ieGmT6tayU74jRB41m": [ + { + "amount": "99.937368144", + "slot": { + "period": 88579, + "thread": 0 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 200994, + "thread": 9 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 343076, + "thread": 11 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 505176, + "thread": 8 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 814171, + "thread": 27 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 906355, + "thread": 20 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1002889, + "thread": 24 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1260571, + "thread": 2 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1469793, + "thread": 13 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1614876, + "thread": 3 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1734401, + "thread": 0 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 1936579, + "thread": 25 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2045301, + "thread": 3 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2245953, + "thread": 25 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2338211, + "thread": 7 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2529338, + "thread": 8 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2710667, + "thread": 23 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 2883404, + "thread": 27 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 3104132, + "thread": 0 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 3192062, + "thread": 3 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 3390353, + "thread": 15 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 3546165, + "thread": 18 + } + }, + { + "amount": "99.937368144", + "slot": { + "period": 3637769, + "thread": 3 + } + }, + { + "amount": "99.937368156", + "slot": { + "period": 3806459, + "thread": 14 + } + } + ], + "AU12ZcRm5H27zuS91RMyKWmZDfY5kN5ocnJ5wHUUCEk3u5vVQ6oou": [ + { + "amount": "285.717127733", + "slot": { + "period": 58105, + "thread": 29 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 283221, + "thread": 22 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 438668, + "thread": 18 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 622273, + "thread": 21 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 743035, + "thread": 18 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 961092, + "thread": 27 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1072832, + "thread": 23 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1176800, + "thread": 25 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1447103, + "thread": 11 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1488028, + "thread": 24 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1678622, + "thread": 19 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 1824505, + "thread": 13 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2049341, + "thread": 19 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2191818, + "thread": 22 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2423193, + "thread": 4 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2483177, + "thread": 9 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2777667, + "thread": 7 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2891563, + "thread": 9 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 2956412, + "thread": 16 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 3167303, + "thread": 26 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 3359877, + "thread": 7 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 3486151, + "thread": 9 + } + }, + { + "amount": "285.717127733", + "slot": { + "period": 3744258, + "thread": 27 + } + }, + { + "amount": "285.717127744", + "slot": { + "period": 3904866, + "thread": 29 + } + } + ], + "AU12ZdTMkLUF6a92PTCvibRqiLiaFRpo7r7pKP6Y3PTn4frmScxZF": [ + { + "amount": "146.592991746", + "slot": { + "period": 56611, + "thread": 4 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 239847, + "thread": 21 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 329249, + "thread": 31 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 507624, + "thread": 8 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 670260, + "thread": 9 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 925699, + "thread": 26 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1120596, + "thread": 12 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1301037, + "thread": 21 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1452198, + "thread": 7 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1497862, + "thread": 2 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1693671, + "thread": 28 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 1831961, + "thread": 15 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2015153, + "thread": 23 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2212663, + "thread": 29 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2398149, + "thread": 24 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2491372, + "thread": 8 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2644726, + "thread": 25 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 2931244, + "thread": 4 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 3030221, + "thread": 14 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 3199370, + "thread": 27 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 3422756, + "thread": 29 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 3458900, + "thread": 7 + } + }, + { + "amount": "146.592991746", + "slot": { + "period": 3773772, + "thread": 18 + } + }, + { + "amount": "146.592991735", + "slot": { + "period": 3844428, + "thread": 4 + } + } + ], + "AU12ZdiRpxeLH5yncofu81c1PoWGXKbTgwdBzwj5JXfSbnzxKH9mm": [ + { + "amount": "283.086796463", + "slot": { + "period": 97918, + "thread": 21 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 309457, + "thread": 10 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 357260, + "thread": 23 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 597469, + "thread": 2 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 682846, + "thread": 30 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 939052, + "thread": 15 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1064564, + "thread": 28 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1228905, + "thread": 25 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1360170, + "thread": 24 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1537146, + "thread": 22 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1710057, + "thread": 18 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 1816487, + "thread": 18 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2014068, + "thread": 14 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2245332, + "thread": 15 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2414015, + "thread": 3 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2463176, + "thread": 14 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2707277, + "thread": 24 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 2813485, + "thread": 24 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 3058311, + "thread": 9 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 3190857, + "thread": 13 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 3303714, + "thread": 7 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 3572858, + "thread": 8 + } + }, + { + "amount": "283.086796463", + "slot": { + "period": 3723264, + "thread": 4 + } + }, + { + "amount": "283.086796454", + "slot": { + "period": 3858204, + "thread": 22 + } + } + ], + "AU12ZgWJUnXYBMfyp5ixtnNHUnScbsrP2V8HLX3qy3YyzxKfcE5TM": [ + { + "amount": "267.986521060", + "slot": { + "period": 15822, + "thread": 19 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 286500, + "thread": 31 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 470450, + "thread": 5 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 557992, + "thread": 13 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 787236, + "thread": 8 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 880108, + "thread": 4 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1031556, + "thread": 20 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1196738, + "thread": 30 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1473854, + "thread": 5 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1622179, + "thread": 18 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1773946, + "thread": 0 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 1922429, + "thread": 10 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2022130, + "thread": 29 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2155049, + "thread": 13 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2388323, + "thread": 18 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2527151, + "thread": 25 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2634635, + "thread": 6 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 2936436, + "thread": 5 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 3081710, + "thread": 19 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 3173456, + "thread": 18 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 3313201, + "thread": 29 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 3613006, + "thread": 10 + } + }, + { + "amount": "267.986521060", + "slot": { + "period": 3698425, + "thread": 2 + } + }, + { + "amount": "267.986521057", + "slot": { + "period": 3800829, + "thread": 7 + } + } + ], + "AU12ZgsntX2xFhXBo2EAa7ThQXxBTZ2HCQWWomc6Xr6ZYgrkJt1rM": [ + { + "amount": "8750.000000000", + "slot": { + "period": 105445, + "thread": 4 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 279912, + "thread": 26 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 368824, + "thread": 13 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 575429, + "thread": 3 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 752455, + "thread": 22 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 933203, + "thread": 7 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1126806, + "thread": 15 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1302484, + "thread": 26 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1476228, + "thread": 8 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1533398, + "thread": 4 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1773449, + "thread": 24 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 1927052, + "thread": 2 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2069862, + "thread": 23 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2163920, + "thread": 9 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2332116, + "thread": 26 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2475187, + "thread": 20 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2680815, + "thread": 0 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 2847481, + "thread": 6 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3052376, + "thread": 24 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3134927, + "thread": 15 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3444124, + "thread": 22 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3456503, + "thread": 10 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3754967, + "thread": 22 + } + }, + { + "amount": "8750.000000000", + "slot": { + "period": 3821288, + "thread": 2 + } + } + ], + "AU12Zi6oZ1WegvuCXtrzY1yP59ZoUnnxYtZARaLg28pw7j8HMyVp8": [ + { + "amount": "112.026064006", + "slot": { + "period": 146336, + "thread": 6 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 213385, + "thread": 4 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 481602, + "thread": 14 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 548799, + "thread": 27 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 693315, + "thread": 11 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 850278, + "thread": 0 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1086121, + "thread": 20 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1281394, + "thread": 11 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1357726, + "thread": 9 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1604055, + "thread": 2 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1724086, + "thread": 25 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 1966842, + "thread": 13 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2006085, + "thread": 0 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2173808, + "thread": 10 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2391362, + "thread": 7 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2594957, + "thread": 11 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2776788, + "thread": 22 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 2841677, + "thread": 4 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 3063066, + "thread": 16 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 3265566, + "thread": 14 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 3409647, + "thread": 24 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 3492775, + "thread": 14 + } + }, + { + "amount": "112.026064006", + "slot": { + "period": 3733095, + "thread": 13 + } + }, + { + "amount": "112.026064010", + "slot": { + "period": 3920054, + "thread": 30 + } + } + ], + "AU12ZjCEaezkhjBKuSVFmU4KXmQFwat4RT42RfAsJ2eMcZgHjTkXB": [ + { + "amount": "112.347249314", + "slot": { + "period": 24573, + "thread": 17 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 280345, + "thread": 29 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 388492, + "thread": 12 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 618018, + "thread": 2 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 816222, + "thread": 23 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 877011, + "thread": 5 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1010949, + "thread": 15 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1225728, + "thread": 30 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1431131, + "thread": 17 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1518946, + "thread": 17 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1654625, + "thread": 21 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 1919393, + "thread": 0 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2065305, + "thread": 23 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2215480, + "thread": 3 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2404107, + "thread": 14 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2613437, + "thread": 2 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2735399, + "thread": 2 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 2821095, + "thread": 10 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 3082174, + "thread": 4 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 3278090, + "thread": 11 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 3380350, + "thread": 9 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 3551312, + "thread": 8 + } + }, + { + "amount": "112.347249314", + "slot": { + "period": 3644488, + "thread": 31 + } + }, + { + "amount": "112.347249316", + "slot": { + "period": 3907851, + "thread": 10 + } + } + ], + "AU12ZjWN8j9iiQuUk3TLyxSph6t4wwmHdX94HUShvGMSRtdSKGa56": [ + { + "amount": "133.572891671", + "slot": { + "period": 140410, + "thread": 30 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 199964, + "thread": 1 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 340766, + "thread": 22 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 618007, + "thread": 19 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 695320, + "thread": 3 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 979206, + "thread": 15 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1003536, + "thread": 30 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1229743, + "thread": 29 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1409948, + "thread": 11 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1527804, + "thread": 18 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1782845, + "thread": 4 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 1912355, + "thread": 9 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2079665, + "thread": 19 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2291448, + "thread": 11 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2352833, + "thread": 13 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2486469, + "thread": 23 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2649181, + "thread": 0 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 2813617, + "thread": 10 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 3058389, + "thread": 29 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 3235693, + "thread": 3 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 3329029, + "thread": 19 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 3460642, + "thread": 31 + } + }, + { + "amount": "133.572891671", + "slot": { + "period": 3679731, + "thread": 10 + } + }, + { + "amount": "133.572891665", + "slot": { + "period": 3811007, + "thread": 18 + } + } + ], + "AU12ZmN1Z9seQWwtkHukJh74ks1Rc1bFVS2eQwyABC34wiQTJDFDc": [ + { + "amount": "171.874878568", + "slot": { + "period": 125784, + "thread": 17 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 225907, + "thread": 15 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 406882, + "thread": 26 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 563249, + "thread": 8 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 760197, + "thread": 25 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 835817, + "thread": 20 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1041767, + "thread": 3 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1252514, + "thread": 7 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1473117, + "thread": 15 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1595891, + "thread": 11 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1698440, + "thread": 23 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 1836885, + "thread": 20 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2045074, + "thread": 5 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2181731, + "thread": 23 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2315818, + "thread": 10 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2547210, + "thread": 10 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2752459, + "thread": 3 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 2871314, + "thread": 12 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 3082078, + "thread": 30 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 3171167, + "thread": 0 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 3379465, + "thread": 8 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 3502579, + "thread": 11 + } + }, + { + "amount": "171.874878568", + "slot": { + "period": 3765034, + "thread": 13 + } + }, + { + "amount": "171.874878578", + "slot": { + "period": 3785030, + "thread": 8 + } + } + ], + "AU12Zmj9TYbJUhQ94WsshKp7S1Zp8SfBu742BGyhhHFykKTZghJd7": [ + { + "amount": "92.361938691", + "slot": { + "period": 78973, + "thread": 19 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 276464, + "thread": 1 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 442198, + "thread": 16 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 548906, + "thread": 29 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 721435, + "thread": 21 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 966969, + "thread": 12 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1130289, + "thread": 9 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1230089, + "thread": 1 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1362655, + "thread": 21 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1580658, + "thread": 15 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1766996, + "thread": 7 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 1960479, + "thread": 8 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2045430, + "thread": 7 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2280322, + "thread": 4 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2351812, + "thread": 23 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2522009, + "thread": 20 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2654134, + "thread": 16 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 2839402, + "thread": 7 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 3033900, + "thread": 3 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 3151900, + "thread": 15 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 3385623, + "thread": 2 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 3566821, + "thread": 15 + } + }, + { + "amount": "92.361938691", + "slot": { + "period": 3748541, + "thread": 24 + } + }, + { + "amount": "92.361938701", + "slot": { + "period": 3896094, + "thread": 19 + } + } + ], + "AU12Zp1eCPiseYwLs2iBB5kR38ayv1phVhyeTmVNmaFyapd4xJVwc": [ + { + "amount": "516.815029932", + "slot": { + "period": 68372, + "thread": 17 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 203609, + "thread": 23 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 423178, + "thread": 16 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 507953, + "thread": 25 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 665376, + "thread": 27 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 978246, + "thread": 23 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1140189, + "thread": 15 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1216897, + "thread": 24 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1401158, + "thread": 2 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1579395, + "thread": 17 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1761735, + "thread": 12 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1955186, + "thread": 21 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 1999678, + "thread": 30 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2198552, + "thread": 2 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2329484, + "thread": 21 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2620562, + "thread": 8 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2669872, + "thread": 30 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2806618, + "thread": 13 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 2967620, + "thread": 14 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 3279499, + "thread": 22 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 3333811, + "thread": 3 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 3590278, + "thread": 3 + } + }, + { + "amount": "516.815029932", + "slot": { + "period": 3746738, + "thread": 12 + } + }, + { + "amount": "516.815029941", + "slot": { + "period": 3909472, + "thread": 25 + } + } + ], + "AU12Zpzs8rto77qMmt7ecoysovYVG7jdhfw7avbgdB2JZR3tdo8ic": [ + { + "amount": "448.666146216", + "slot": { + "period": 28621, + "thread": 24 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 284430, + "thread": 22 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 473484, + "thread": 23 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 523306, + "thread": 8 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 772846, + "thread": 23 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 979155, + "thread": 20 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1066926, + "thread": 29 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1160328, + "thread": 4 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1440156, + "thread": 21 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1535646, + "thread": 3 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1718431, + "thread": 18 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 1972454, + "thread": 19 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2117357, + "thread": 24 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2263547, + "thread": 11 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2432521, + "thread": 14 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2518315, + "thread": 21 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2752149, + "thread": 3 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 2922996, + "thread": 18 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 3057548, + "thread": 27 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 3189598, + "thread": 30 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 3376901, + "thread": 14 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 3538634, + "thread": 17 + } + }, + { + "amount": "448.666146216", + "slot": { + "period": 3740584, + "thread": 26 + } + }, + { + "amount": "448.666146219", + "slot": { + "period": 3941945, + "thread": 31 + } + } + ], + "AU12ZqDbCfGKXq9J6EHX7kHbsY4teqfz2A12N72iuGcbknFa2mAQN": [ + { + "amount": "55.698982713", + "slot": { + "period": 137273, + "thread": 21 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 200040, + "thread": 2 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 420329, + "thread": 0 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 626414, + "thread": 8 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 672913, + "thread": 27 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 918315, + "thread": 16 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1146607, + "thread": 15 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1153490, + "thread": 21 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1468162, + "thread": 31 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1571004, + "thread": 31 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1773742, + "thread": 26 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 1919536, + "thread": 27 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2033237, + "thread": 13 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2271626, + "thread": 29 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2319827, + "thread": 22 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2524493, + "thread": 29 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2738174, + "thread": 0 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 2878440, + "thread": 3 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 3117152, + "thread": 24 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 3150097, + "thread": 31 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 3326760, + "thread": 3 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 3568148, + "thread": 24 + } + }, + { + "amount": "55.698982713", + "slot": { + "period": 3732488, + "thread": 1 + } + }, + { + "amount": "55.698982705", + "slot": { + "period": 3785953, + "thread": 24 + } + } + ], + "AU12Zqh555iF7cfPdJZKEQt9tT6fRyQShEx2G7X2U5TZP84inrcoN": [ + { + "amount": "543.748854175", + "slot": { + "period": 97824, + "thread": 13 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 172521, + "thread": 16 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 393161, + "thread": 24 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 500524, + "thread": 31 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 714504, + "thread": 8 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 982781, + "thread": 0 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 986315, + "thread": 20 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 1285024, + "thread": 16 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 1427321, + "thread": 1 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 1562974, + "thread": 5 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 1807247, + "thread": 16 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 1870946, + "thread": 8 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2036742, + "thread": 23 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2239852, + "thread": 25 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2366378, + "thread": 30 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2571676, + "thread": 28 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2714570, + "thread": 1 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 2929284, + "thread": 1 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 3021949, + "thread": 7 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 3190995, + "thread": 11 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 3401750, + "thread": 25 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 3464277, + "thread": 16 + } + }, + { + "amount": "543.748854175", + "slot": { + "period": 3683563, + "thread": 8 + } + }, + { + "amount": "543.748854168", + "slot": { + "period": 3877034, + "thread": 0 + } + } + ], + "AU12Zqw11tdy1uxhnxQngq4FHzxfz9sxXWYmHBFrUYexv1Yq1anoZ": [ + { + "amount": "188.202645068", + "slot": { + "period": 92609, + "thread": 27 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 312127, + "thread": 22 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 350113, + "thread": 30 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 554510, + "thread": 2 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 771410, + "thread": 30 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 896426, + "thread": 16 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 985983, + "thread": 12 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 1297957, + "thread": 11 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 1468741, + "thread": 0 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 1505357, + "thread": 4 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 1668701, + "thread": 2 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 1847001, + "thread": 26 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2012567, + "thread": 27 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2234977, + "thread": 8 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2391162, + "thread": 28 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2612080, + "thread": 28 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2677010, + "thread": 22 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2909315, + "thread": 13 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 2967355, + "thread": 16 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 3215254, + "thread": 29 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 3298092, + "thread": 12 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 3479271, + "thread": 16 + } + }, + { + "amount": "188.202645068", + "slot": { + "period": 3756352, + "thread": 2 + } + }, + { + "amount": "188.202645061", + "slot": { + "period": 3906049, + "thread": 20 + } + } + ], + "AU12ZrSe3rDLmutWptUFuVddAEFve2h6Wka5v6UgTvA5Xc7MtHVXV": [ + { + "amount": "166.725818486", + "slot": { + "period": 150388, + "thread": 14 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 181548, + "thread": 13 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 435496, + "thread": 10 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 607881, + "thread": 1 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 689221, + "thread": 1 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 867742, + "thread": 11 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1138874, + "thread": 9 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1166347, + "thread": 12 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1437040, + "thread": 24 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1546801, + "thread": 5 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1694722, + "thread": 14 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1835936, + "thread": 16 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 1989136, + "thread": 27 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 2230438, + "thread": 1 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 2322353, + "thread": 8 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 2486440, + "thread": 7 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 2626647, + "thread": 2 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 2847409, + "thread": 8 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 3083221, + "thread": 18 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 3142346, + "thread": 1 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 3327847, + "thread": 3 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 3584755, + "thread": 10 + } + }, + { + "amount": "166.725818486", + "slot": { + "period": 3655021, + "thread": 29 + } + }, + { + "amount": "166.725818481", + "slot": { + "period": 3932992, + "thread": 7 + } + } + ], + "AU12ZrmEJ3Rriun6SV9Jy4sMAUw3BKNZzRvPLVSNHEuyNVM2LX7mV": [ + { + "amount": "196.640764537", + "slot": { + "period": 95616, + "thread": 11 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 277313, + "thread": 31 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 338385, + "thread": 23 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 637054, + "thread": 31 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 722933, + "thread": 6 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 839468, + "thread": 0 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1092004, + "thread": 16 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1157333, + "thread": 27 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1347957, + "thread": 25 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1553178, + "thread": 31 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1717625, + "thread": 8 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1858248, + "thread": 21 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 1991748, + "thread": 4 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 2186584, + "thread": 4 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 2443146, + "thread": 0 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 2591914, + "thread": 12 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 2741945, + "thread": 6 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 2858399, + "thread": 13 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 3051712, + "thread": 5 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 3151610, + "thread": 12 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 3376939, + "thread": 30 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 3468584, + "thread": 15 + } + }, + { + "amount": "196.640764537", + "slot": { + "period": 3683225, + "thread": 26 + } + }, + { + "amount": "196.640764530", + "slot": { + "period": 3945452, + "thread": 11 + } + } + ], + "AU12ZsQKJVY4H8EccGwRpoLG94ZTDNac3Gp6cV7eghBX4cWoNudhz": [ + { + "amount": "537.812722705", + "slot": { + "period": 94523, + "thread": 23 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 240606, + "thread": 13 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 345669, + "thread": 25 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 607732, + "thread": 22 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 758518, + "thread": 16 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 910962, + "thread": 17 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 989680, + "thread": 3 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 1185344, + "thread": 19 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 1323893, + "thread": 18 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 1516955, + "thread": 7 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 1681285, + "thread": 11 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 1826642, + "thread": 13 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2030522, + "thread": 16 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2256675, + "thread": 4 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2300771, + "thread": 2 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2491942, + "thread": 18 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2740005, + "thread": 30 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 2906065, + "thread": 24 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 3106962, + "thread": 31 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 3254630, + "thread": 20 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 3409324, + "thread": 24 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 3576492, + "thread": 9 + } + }, + { + "amount": "537.812722705", + "slot": { + "period": 3683634, + "thread": 22 + } + }, + { + "amount": "537.812722702", + "slot": { + "period": 3912973, + "thread": 29 + } + } + ], + "AU12ZtC1U1w4fQKbUof3NoDLHDRoh748vEwpfCV3eMtjLbRuaMSsb": [ + { + "amount": "78.145719603", + "slot": { + "period": 138810, + "thread": 13 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 216754, + "thread": 11 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 361139, + "thread": 26 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 629065, + "thread": 3 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 815449, + "thread": 22 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 970064, + "thread": 17 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1063969, + "thread": 24 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1271180, + "thread": 30 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1382230, + "thread": 25 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1490434, + "thread": 31 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1737920, + "thread": 22 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1841986, + "thread": 28 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 1985369, + "thread": 3 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 2284104, + "thread": 11 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 2345185, + "thread": 16 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 2620310, + "thread": 0 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 2689838, + "thread": 1 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 2912523, + "thread": 12 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 3038747, + "thread": 30 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 3204574, + "thread": 19 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 3322822, + "thread": 1 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 3509696, + "thread": 27 + } + }, + { + "amount": "78.145719603", + "slot": { + "period": 3649564, + "thread": 27 + } + }, + { + "amount": "78.145719602", + "slot": { + "period": 3909383, + "thread": 15 + } + } + ], + "AU12ZuvAPAAtHsHahG8ZUHjEBUgksRyvwGUnLhEe1u3a8psxuE2kc": [ + { + "amount": "164.668203584", + "slot": { + "period": 85754, + "thread": 15 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 256366, + "thread": 6 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 434216, + "thread": 31 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 504953, + "thread": 3 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 784472, + "thread": 23 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 873153, + "thread": 28 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1117743, + "thread": 5 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1208408, + "thread": 0 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1401218, + "thread": 23 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1633264, + "thread": 9 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1786935, + "thread": 21 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 1931716, + "thread": 22 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2124679, + "thread": 18 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2218498, + "thread": 24 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2389188, + "thread": 19 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2618484, + "thread": 3 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2787530, + "thread": 13 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 2812569, + "thread": 9 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 3068853, + "thread": 31 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 3164870, + "thread": 9 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 3344634, + "thread": 10 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 3479789, + "thread": 20 + } + }, + { + "amount": "164.668203584", + "slot": { + "period": 3735236, + "thread": 11 + } + }, + { + "amount": "164.668203589", + "slot": { + "period": 3939622, + "thread": 4 + } + } + ], + "AU12ZuvawUxBdTW2tVaXV66ShA2p6FwRXYyG5rZss7qFLWeaJpBsb": [ + { + "amount": "136.505341126", + "slot": { + "period": 117828, + "thread": 26 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 315415, + "thread": 29 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 454661, + "thread": 24 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 526171, + "thread": 0 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 698342, + "thread": 2 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 922953, + "thread": 20 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1106238, + "thread": 27 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1212846, + "thread": 29 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1470579, + "thread": 16 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1592178, + "thread": 25 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1659063, + "thread": 5 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 1917096, + "thread": 13 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2002740, + "thread": 20 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2243921, + "thread": 17 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2379355, + "thread": 9 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2564119, + "thread": 8 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2737584, + "thread": 4 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 2906720, + "thread": 31 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 3103246, + "thread": 19 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 3247039, + "thread": 31 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 3321502, + "thread": 15 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 3563607, + "thread": 6 + } + }, + { + "amount": "136.505341126", + "slot": { + "period": 3662179, + "thread": 2 + } + }, + { + "amount": "136.505341134", + "slot": { + "period": 3855067, + "thread": 26 + } + } + ], + "AU12Zvi5dwkTtASxhw8HhvYLoAARst7KgJXRzKXPEBntJ6Jc4Tbqb": [ + { + "amount": "357.543361302", + "slot": { + "period": 126962, + "thread": 17 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 186055, + "thread": 7 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 406334, + "thread": 31 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 539181, + "thread": 22 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 738492, + "thread": 26 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 912226, + "thread": 4 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1109990, + "thread": 6 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1189608, + "thread": 10 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1326495, + "thread": 6 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1565197, + "thread": 13 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1750457, + "thread": 31 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 1936897, + "thread": 20 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2072042, + "thread": 26 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2205934, + "thread": 10 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2408078, + "thread": 16 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2521194, + "thread": 9 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2662169, + "thread": 17 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 2933512, + "thread": 3 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 3117961, + "thread": 14 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 3237056, + "thread": 31 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 3409597, + "thread": 14 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 3454452, + "thread": 19 + } + }, + { + "amount": "357.543361302", + "slot": { + "period": 3732604, + "thread": 12 + } + }, + { + "amount": "357.543361294", + "slot": { + "period": 3911133, + "thread": 11 + } + } + ], + "AU12ZwcRPdnUFMCcomwWF4rjofgUthjVoabK6TLhwiHjBnzRCe9RS": [ + { + "amount": "181.158403122", + "slot": { + "period": 140838, + "thread": 21 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 203459, + "thread": 4 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 419522, + "thread": 29 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 647538, + "thread": 26 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 752370, + "thread": 18 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 858248, + "thread": 8 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1072369, + "thread": 29 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1152598, + "thread": 14 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1381720, + "thread": 8 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1578218, + "thread": 4 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1785342, + "thread": 2 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 1914965, + "thread": 8 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2044134, + "thread": 15 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2251455, + "thread": 17 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2354463, + "thread": 17 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2554085, + "thread": 10 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2727245, + "thread": 16 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 2810159, + "thread": 21 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3066072, + "thread": 12 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3201604, + "thread": 11 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3320220, + "thread": 24 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3588525, + "thread": 17 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3778794, + "thread": 23 + } + }, + { + "amount": "181.158403122", + "slot": { + "period": 3815452, + "thread": 9 + } + } + ], + "AU12ZwdU8E3B9XzcvwJovj3U7ci6t6peiVBqkK5AyHoC6mZ36MKrC": [ + { + "amount": "88.019602553", + "slot": { + "period": 16559, + "thread": 4 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 182428, + "thread": 17 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 410936, + "thread": 29 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 501353, + "thread": 10 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 724231, + "thread": 14 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 959220, + "thread": 27 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1078851, + "thread": 12 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1293239, + "thread": 27 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1325470, + "thread": 16 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1604233, + "thread": 25 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1788166, + "thread": 11 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 1893609, + "thread": 13 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2081627, + "thread": 11 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2275601, + "thread": 15 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2349128, + "thread": 23 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2621228, + "thread": 0 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2738037, + "thread": 13 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2910086, + "thread": 7 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 2958807, + "thread": 29 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 3223426, + "thread": 7 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 3310007, + "thread": 10 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 3580128, + "thread": 17 + } + }, + { + "amount": "88.019602553", + "slot": { + "period": 3713961, + "thread": 28 + } + }, + { + "amount": "88.019602543", + "slot": { + "period": 3865985, + "thread": 18 + } + } + ], + "AU12Zxf8RcPPRC3bxVMv6q9qKsFeipFQTYB8oWX1dzeqEcNr1ymD7": [ + { + "amount": "147.472357115", + "slot": { + "period": 83410, + "thread": 30 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 260577, + "thread": 13 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 476928, + "thread": 6 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 618575, + "thread": 9 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 725622, + "thread": 10 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 932835, + "thread": 5 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1108727, + "thread": 13 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1278580, + "thread": 29 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1351364, + "thread": 18 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1492323, + "thread": 24 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1792515, + "thread": 10 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 1811535, + "thread": 6 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2031137, + "thread": 22 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2180858, + "thread": 7 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2400083, + "thread": 17 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2588631, + "thread": 17 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2639768, + "thread": 22 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 2951951, + "thread": 11 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 3007640, + "thread": 18 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 3161546, + "thread": 17 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 3401471, + "thread": 0 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 3550697, + "thread": 22 + } + }, + { + "amount": "147.472357115", + "slot": { + "period": 3724878, + "thread": 30 + } + }, + { + "amount": "147.472357116", + "slot": { + "period": 3938258, + "thread": 13 + } + } + ], + "AU12ZxfDSBsk5xR6B1PEzSHNqhm6wD6mBDwwsh7PSHoRihkgrBKzQ": [ + { + "amount": "170.052332156", + "slot": { + "period": 118349, + "thread": 25 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 185295, + "thread": 29 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 423326, + "thread": 1 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 575424, + "thread": 30 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 734041, + "thread": 1 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 823872, + "thread": 13 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1042472, + "thread": 29 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1182300, + "thread": 10 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1395652, + "thread": 26 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1610640, + "thread": 29 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1714658, + "thread": 17 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 1940692, + "thread": 30 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2139968, + "thread": 9 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2206759, + "thread": 16 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2332819, + "thread": 20 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2615549, + "thread": 0 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2706686, + "thread": 6 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 2878219, + "thread": 9 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 3013386, + "thread": 3 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 3278764, + "thread": 17 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 3306838, + "thread": 27 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 3592660, + "thread": 14 + } + }, + { + "amount": "170.052332156", + "slot": { + "period": 3722234, + "thread": 26 + } + }, + { + "amount": "170.052332161", + "slot": { + "period": 3853480, + "thread": 30 + } + } + ], + "AU12Zy2UWnQgh4FJPTxxyxLRTAWiuwtJS4hzV5Fd3rAh7c2FwaA8c": [ + { + "amount": "135.778972548", + "slot": { + "period": 47137, + "thread": 29 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 198575, + "thread": 11 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 336417, + "thread": 22 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 620079, + "thread": 15 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 792860, + "thread": 5 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 937379, + "thread": 9 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1039604, + "thread": 19 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1282091, + "thread": 4 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1381468, + "thread": 18 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1632524, + "thread": 7 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1661408, + "thread": 15 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 1867850, + "thread": 14 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2060710, + "thread": 15 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2270360, + "thread": 19 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2393725, + "thread": 15 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2575188, + "thread": 21 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2741589, + "thread": 3 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 2810237, + "thread": 7 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 3065000, + "thread": 31 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 3273673, + "thread": 22 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 3323896, + "thread": 0 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 3547305, + "thread": 13 + } + }, + { + "amount": "135.778972548", + "slot": { + "period": 3741974, + "thread": 15 + } + }, + { + "amount": "135.778972543", + "slot": { + "period": 3838829, + "thread": 23 + } + } + ], + "AU12ZzADVqcNH3VazQEkvyQMyKxFxVNe7fua9ueJt38Ai1wYqczpv": [ + { + "amount": "110.144480308", + "slot": { + "period": 70092, + "thread": 27 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 234371, + "thread": 18 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 467001, + "thread": 22 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 543412, + "thread": 19 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 688396, + "thread": 31 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 875585, + "thread": 1 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1126825, + "thread": 25 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1265930, + "thread": 3 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1321466, + "thread": 8 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1608346, + "thread": 29 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1771147, + "thread": 24 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 1859912, + "thread": 5 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2002416, + "thread": 30 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2177508, + "thread": 10 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2453470, + "thread": 5 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2466364, + "thread": 7 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2651199, + "thread": 23 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2877416, + "thread": 18 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 2977957, + "thread": 25 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 3282485, + "thread": 16 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 3390833, + "thread": 8 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 3486760, + "thread": 6 + } + }, + { + "amount": "110.144480308", + "slot": { + "period": 3748459, + "thread": 16 + } + }, + { + "amount": "110.144480316", + "slot": { + "period": 3824110, + "thread": 5 + } + } + ], + "AU12ZzKBbmuFzw1wL7YxxXPEzPpZgF1uNRtbjxiQyJBzh1PV8ps31": [ + { + "amount": "141.490036828", + "slot": { + "period": 151733, + "thread": 4 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 219871, + "thread": 16 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 359740, + "thread": 26 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 619910, + "thread": 2 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 665324, + "thread": 19 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 905955, + "thread": 24 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1101489, + "thread": 25 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1206735, + "thread": 6 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1363277, + "thread": 19 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1486444, + "thread": 3 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1702652, + "thread": 22 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1961377, + "thread": 22 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 1999162, + "thread": 0 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 2179515, + "thread": 17 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 2446609, + "thread": 20 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 2620244, + "thread": 20 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 2728438, + "thread": 4 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 2822887, + "thread": 29 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 3011762, + "thread": 31 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 3230750, + "thread": 5 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 3405629, + "thread": 25 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 3471876, + "thread": 2 + } + }, + { + "amount": "141.490036828", + "slot": { + "period": 3689683, + "thread": 3 + } + }, + { + "amount": "141.490036829", + "slot": { + "period": 3909791, + "thread": 19 + } + } + ], + "AU12a1Xw4mQ2ND5SG5of85MqdoQBQuBwY7mKZXdbXSZTviLSx1e8N": [ + { + "amount": "254.095245539", + "slot": { + "period": 43509, + "thread": 18 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 282254, + "thread": 19 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 470942, + "thread": 29 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 532958, + "thread": 31 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 801610, + "thread": 6 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 928174, + "thread": 9 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1000675, + "thread": 12 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1284590, + "thread": 24 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1409231, + "thread": 21 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1560358, + "thread": 25 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1656565, + "thread": 21 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 1811701, + "thread": 26 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2062492, + "thread": 28 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2249928, + "thread": 11 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2399144, + "thread": 16 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2556165, + "thread": 24 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2715172, + "thread": 20 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 2946757, + "thread": 14 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 3094357, + "thread": 11 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 3198557, + "thread": 24 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 3416339, + "thread": 13 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 3476620, + "thread": 17 + } + }, + { + "amount": "254.095245539", + "slot": { + "period": 3771714, + "thread": 27 + } + }, + { + "amount": "254.095245532", + "slot": { + "period": 3814911, + "thread": 21 + } + } + ], + "AU12a2fBZxNZwxLBHfZttDkdxbDRauvhspz4cdGun2mBYt4m4e6eP": [ + { + "amount": "480.894819090", + "slot": { + "period": 16802, + "thread": 13 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 209088, + "thread": 6 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 337418, + "thread": 6 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 529875, + "thread": 1 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 810567, + "thread": 25 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 944199, + "thread": 28 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1098814, + "thread": 18 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1191319, + "thread": 12 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1394868, + "thread": 7 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1510397, + "thread": 9 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1742261, + "thread": 11 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 1962284, + "thread": 31 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2030548, + "thread": 27 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2244523, + "thread": 8 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2360913, + "thread": 31 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2528928, + "thread": 17 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2648339, + "thread": 19 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 2864745, + "thread": 18 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 3002584, + "thread": 24 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 3164149, + "thread": 15 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 3357441, + "thread": 23 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 3548609, + "thread": 28 + } + }, + { + "amount": "480.894819090", + "slot": { + "period": 3657639, + "thread": 21 + } + }, + { + "amount": "480.894819101", + "slot": { + "period": 3830160, + "thread": 16 + } + } + ], + "AU12a2upgHbxZQvxViU46G6WJw7uRFNZSbDCYn5M1LkwsdvLFe6W9": [ + { + "amount": "228.769966946", + "slot": { + "period": 67615, + "thread": 23 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 237602, + "thread": 7 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 461844, + "thread": 10 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 645403, + "thread": 25 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 739941, + "thread": 26 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 823524, + "thread": 24 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 989581, + "thread": 12 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 1306261, + "thread": 22 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 1368391, + "thread": 21 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 1590450, + "thread": 27 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 1703204, + "thread": 17 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 1923209, + "thread": 19 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2137057, + "thread": 16 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2259226, + "thread": 16 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2433760, + "thread": 19 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2529052, + "thread": 19 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2710476, + "thread": 21 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 2891205, + "thread": 23 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 3109598, + "thread": 3 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 3161356, + "thread": 24 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 3392051, + "thread": 18 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 3537480, + "thread": 20 + } + }, + { + "amount": "228.769966946", + "slot": { + "period": 3727787, + "thread": 0 + } + }, + { + "amount": "228.769966935", + "slot": { + "period": 3888826, + "thread": 19 + } + } + ], + "AU12a3StP9PrK372EvSyCwtz2nsYeEFsh3WnU1wqFmRP5bPF2tCaW": [ + { + "amount": "343.568517417", + "slot": { + "period": 148710, + "thread": 11 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 284118, + "thread": 30 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 458479, + "thread": 29 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 612628, + "thread": 25 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 779805, + "thread": 6 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 961086, + "thread": 12 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1125944, + "thread": 26 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1292256, + "thread": 17 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1444550, + "thread": 21 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1521805, + "thread": 2 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1684534, + "thread": 3 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 1812876, + "thread": 26 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2074702, + "thread": 7 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2237174, + "thread": 10 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2334252, + "thread": 11 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2590086, + "thread": 31 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2701499, + "thread": 27 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 2827580, + "thread": 16 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 3028832, + "thread": 0 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 3205205, + "thread": 24 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 3297310, + "thread": 13 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 3473972, + "thread": 1 + } + }, + { + "amount": "343.568517417", + "slot": { + "period": 3707440, + "thread": 11 + } + }, + { + "amount": "343.568517428", + "slot": { + "period": 3911971, + "thread": 17 + } + } + ], + "AU12a3gaqgy6NH8SSqJ1ri3DfNPheQi64j47SnMsNyfUZV8XwSmUR": [ + { + "amount": "232.737106887", + "slot": { + "period": 147757, + "thread": 26 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 178305, + "thread": 22 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 380148, + "thread": 7 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 600028, + "thread": 26 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 713090, + "thread": 8 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 909405, + "thread": 1 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1061965, + "thread": 1 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1214830, + "thread": 23 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1321186, + "thread": 14 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1567209, + "thread": 4 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1773660, + "thread": 0 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 1960684, + "thread": 0 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2126576, + "thread": 6 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2251135, + "thread": 1 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2394790, + "thread": 25 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2543034, + "thread": 0 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2752549, + "thread": 25 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 2838517, + "thread": 5 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 3060051, + "thread": 25 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 3121589, + "thread": 11 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 3390989, + "thread": 24 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 3573522, + "thread": 20 + } + }, + { + "amount": "232.737106887", + "slot": { + "period": 3652697, + "thread": 7 + } + }, + { + "amount": "232.737106885", + "slot": { + "period": 3875148, + "thread": 14 + } + } + ], + "AU12a46Fowdt8p6mG8pmgLEaMSnsYMqfmHBF9w5ah4KUxmZPU85x9": [ + { + "amount": "104.139921014", + "slot": { + "period": 78206, + "thread": 3 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 215927, + "thread": 15 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 447613, + "thread": 10 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 513192, + "thread": 29 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 749601, + "thread": 10 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 972105, + "thread": 27 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1134596, + "thread": 20 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1184412, + "thread": 22 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1366159, + "thread": 18 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1646657, + "thread": 29 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1790901, + "thread": 23 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1816227, + "thread": 4 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 1996404, + "thread": 30 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 2238122, + "thread": 5 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 2301199, + "thread": 3 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 2464158, + "thread": 15 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 2709408, + "thread": 19 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 2917286, + "thread": 20 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 3103222, + "thread": 29 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 3242801, + "thread": 2 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 3419604, + "thread": 29 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 3553223, + "thread": 22 + } + }, + { + "amount": "104.139921014", + "slot": { + "period": 3744866, + "thread": 4 + } + }, + { + "amount": "104.139921011", + "slot": { + "period": 3877633, + "thread": 14 + } + } + ], + "AU12a48R2eZiskUvfhyq1fLkz45gQGwkgiz6jozaGZSXZakUmq3qb": [ + { + "amount": "182.274240252", + "slot": { + "period": 149648, + "thread": 4 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 316489, + "thread": 30 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 436099, + "thread": 20 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 586404, + "thread": 17 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 721312, + "thread": 26 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 848006, + "thread": 26 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1117605, + "thread": 9 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1221630, + "thread": 23 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1383317, + "thread": 27 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1641949, + "thread": 17 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1687265, + "thread": 16 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 1928224, + "thread": 28 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2141939, + "thread": 28 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2232080, + "thread": 1 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2358275, + "thread": 15 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2489269, + "thread": 4 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2664509, + "thread": 17 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 2910423, + "thread": 9 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 3029600, + "thread": 28 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 3143701, + "thread": 9 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 3379728, + "thread": 3 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 3537874, + "thread": 19 + } + }, + { + "amount": "182.274240252", + "slot": { + "period": 3664069, + "thread": 1 + } + }, + { + "amount": "182.274240246", + "slot": { + "period": 3830182, + "thread": 18 + } + } + ], + "AU12a4M5UEZ1Xdp4kaK3bmrgbCGZh1mBVa8EHBwKU4yHy5TL4LQet": [ + { + "amount": "52.258000997", + "slot": { + "period": 11885, + "thread": 22 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 323736, + "thread": 13 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 392183, + "thread": 2 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 580613, + "thread": 31 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 781170, + "thread": 13 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 892022, + "thread": 14 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 996895, + "thread": 3 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 1159336, + "thread": 25 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 1399976, + "thread": 20 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 1596332, + "thread": 17 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 1784701, + "thread": 14 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 1931811, + "thread": 5 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2120030, + "thread": 16 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2282026, + "thread": 9 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2324045, + "thread": 18 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2515865, + "thread": 3 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2651285, + "thread": 29 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2832992, + "thread": 2 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 2990117, + "thread": 22 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 3179402, + "thread": 6 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 3408783, + "thread": 15 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 3494194, + "thread": 15 + } + }, + { + "amount": "52.258000997", + "slot": { + "period": 3744217, + "thread": 26 + } + }, + { + "amount": "52.258000992", + "slot": { + "period": 3826982, + "thread": 31 + } + } + ], + "AU12a4YKH8Dn4c4FTeJBKejw8U3NVcBW6fsGXV3ycoG3HNiDE3tpj": [ + { + "amount": "593.465256894", + "slot": { + "period": 125458, + "thread": 16 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 252594, + "thread": 13 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 490539, + "thread": 6 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 529827, + "thread": 1 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 662166, + "thread": 30 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 853006, + "thread": 17 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1116046, + "thread": 6 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1315779, + "thread": 6 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1360458, + "thread": 21 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1517857, + "thread": 12 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1691866, + "thread": 30 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 1848194, + "thread": 14 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2102945, + "thread": 28 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2288413, + "thread": 12 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2413037, + "thread": 21 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2568698, + "thread": 21 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2670982, + "thread": 11 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 2951010, + "thread": 1 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 3090803, + "thread": 8 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 3155567, + "thread": 16 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 3428510, + "thread": 10 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 3453514, + "thread": 15 + } + }, + { + "amount": "593.465256894", + "slot": { + "period": 3671473, + "thread": 6 + } + }, + { + "amount": "593.465256904", + "slot": { + "period": 3801733, + "thread": 0 + } + } + ], + "AU12a4jcNUZ4D74ZpDoY578VTGzXEoJ39SJEBRWSPGkcJzpCiRRuC": [ + { + "amount": "238.140987828", + "slot": { + "period": 43887, + "thread": 10 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 265837, + "thread": 7 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 338494, + "thread": 6 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 596670, + "thread": 23 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 694630, + "thread": 13 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 829094, + "thread": 7 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1101133, + "thread": 27 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1257561, + "thread": 20 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1350710, + "thread": 23 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1636527, + "thread": 30 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1685226, + "thread": 7 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 1924714, + "thread": 7 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2116461, + "thread": 21 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2147238, + "thread": 9 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2313977, + "thread": 12 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2521303, + "thread": 12 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2650236, + "thread": 11 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2844547, + "thread": 26 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 2977930, + "thread": 21 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 3210380, + "thread": 28 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 3429052, + "thread": 27 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 3552636, + "thread": 19 + } + }, + { + "amount": "238.140987828", + "slot": { + "period": 3726629, + "thread": 15 + } + }, + { + "amount": "238.140987837", + "slot": { + "period": 3846188, + "thread": 31 + } + } + ], + "AU12a4msU3CVKqe2PMsWdxosu49eDfUuZrRHYT5yaj5Zfttvx6Wfp": [ + { + "amount": "111.728329939", + "slot": { + "period": 33212, + "thread": 0 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 321859, + "thread": 13 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 360405, + "thread": 27 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 567165, + "thread": 6 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 679481, + "thread": 24 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 919479, + "thread": 7 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1017069, + "thread": 31 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1171170, + "thread": 31 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1368591, + "thread": 2 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1627227, + "thread": 4 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1781099, + "thread": 18 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1958591, + "thread": 10 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 1983057, + "thread": 22 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 2258042, + "thread": 11 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 2442178, + "thread": 0 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 2561016, + "thread": 6 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 2708800, + "thread": 6 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 2795609, + "thread": 16 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 3085520, + "thread": 23 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 3154501, + "thread": 13 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 3362808, + "thread": 7 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 3511918, + "thread": 30 + } + }, + { + "amount": "111.728329939", + "slot": { + "period": 3618492, + "thread": 21 + } + }, + { + "amount": "111.728329932", + "slot": { + "period": 3787615, + "thread": 11 + } + } + ], + "AU12a4vup7oU7wRpySQLZWjAj1aam2nhzKYNizdT3uZwcvVvetS6M": [ + { + "amount": "185.542886862", + "slot": { + "period": 138147, + "thread": 20 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 176421, + "thread": 19 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 379254, + "thread": 11 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 508903, + "thread": 30 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 723085, + "thread": 23 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 930643, + "thread": 30 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1001408, + "thread": 22 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1232566, + "thread": 0 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1344176, + "thread": 13 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1598682, + "thread": 5 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1674127, + "thread": 15 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 1946537, + "thread": 10 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2082082, + "thread": 16 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2281106, + "thread": 2 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2444340, + "thread": 13 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2510913, + "thread": 20 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2677306, + "thread": 24 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2893794, + "thread": 11 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 2976309, + "thread": 27 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 3280377, + "thread": 11 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 3307857, + "thread": 28 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 3503145, + "thread": 1 + } + }, + { + "amount": "185.542886862", + "slot": { + "period": 3705302, + "thread": 18 + } + }, + { + "amount": "185.542886864", + "slot": { + "period": 3783386, + "thread": 31 + } + } + ], + "AU12a565EZokVJ1bJs3VonhqRaNJLxBzLdm6HhvLjrzdWjfb4vuF3": [ + { + "amount": "212.752991611", + "slot": { + "period": 137657, + "thread": 23 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 204483, + "thread": 10 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 410634, + "thread": 24 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 539043, + "thread": 21 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 766972, + "thread": 14 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 933237, + "thread": 25 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1055502, + "thread": 21 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1267057, + "thread": 12 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1442236, + "thread": 20 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1563816, + "thread": 10 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1692725, + "thread": 2 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 1927906, + "thread": 23 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2000817, + "thread": 8 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2205811, + "thread": 27 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2330959, + "thread": 12 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2494693, + "thread": 16 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2784292, + "thread": 30 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 2824675, + "thread": 29 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 3010144, + "thread": 30 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 3149915, + "thread": 14 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 3386602, + "thread": 19 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 3516986, + "thread": 10 + } + }, + { + "amount": "212.752991611", + "slot": { + "period": 3679302, + "thread": 31 + } + }, + { + "amount": "212.752991613", + "slot": { + "period": 3803897, + "thread": 3 + } + } + ], + "AU12a5mzdaCMjBd2PgmGbeJnxhHnY8og2z7nKKzBaFzUyDFKwaTiF": [ + { + "amount": "131.225622563", + "slot": { + "period": 150755, + "thread": 26 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 317312, + "thread": 25 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 367848, + "thread": 19 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 597771, + "thread": 31 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 810342, + "thread": 25 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 925218, + "thread": 5 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1011962, + "thread": 12 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1260070, + "thread": 22 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1348757, + "thread": 26 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1561896, + "thread": 9 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1683190, + "thread": 8 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 1822428, + "thread": 25 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2137967, + "thread": 9 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2197646, + "thread": 19 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2406112, + "thread": 18 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2467323, + "thread": 29 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2762909, + "thread": 0 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 2840458, + "thread": 6 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 3088177, + "thread": 17 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 3161888, + "thread": 22 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 3294300, + "thread": 15 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 3587127, + "thread": 5 + } + }, + { + "amount": "131.225622563", + "slot": { + "period": 3708472, + "thread": 16 + } + }, + { + "amount": "131.225622568", + "slot": { + "period": 3879152, + "thread": 22 + } + } + ], + "AU12a6JzyveH4cA5KncDkVMy8a9KUZEsqVLwGxU5MHfer5N2FMRVX": [ + { + "amount": "237.734482635", + "slot": { + "period": 49987, + "thread": 2 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 264568, + "thread": 31 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 445886, + "thread": 16 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 503949, + "thread": 31 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 768509, + "thread": 0 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 848330, + "thread": 3 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1002166, + "thread": 15 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1259453, + "thread": 11 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1448207, + "thread": 14 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1584465, + "thread": 30 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1772127, + "thread": 29 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 1873688, + "thread": 21 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2125426, + "thread": 13 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2195227, + "thread": 4 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2385694, + "thread": 21 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2599850, + "thread": 29 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2701009, + "thread": 28 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2887282, + "thread": 7 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 2968177, + "thread": 31 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 3187295, + "thread": 10 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 3303490, + "thread": 24 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 3598054, + "thread": 31 + } + }, + { + "amount": "237.734482635", + "slot": { + "period": 3743639, + "thread": 14 + } + }, + { + "amount": "237.734482636", + "slot": { + "period": 3855492, + "thread": 21 + } + } + ], + "AU12a7EqJr5c3iRFbt2pu9zQrSHUGT9aTosjCqamPAtqPiwgpnTXr": [ + { + "amount": "371.946528902", + "slot": { + "period": 60196, + "thread": 5 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 216482, + "thread": 6 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 399755, + "thread": 15 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 651093, + "thread": 16 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 785263, + "thread": 18 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 852133, + "thread": 1 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 997007, + "thread": 30 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 1195312, + "thread": 28 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 1341747, + "thread": 11 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 1566420, + "thread": 27 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 1681048, + "thread": 13 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 1848693, + "thread": 1 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2019952, + "thread": 23 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2282849, + "thread": 16 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2390487, + "thread": 16 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2466255, + "thread": 27 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2760086, + "thread": 14 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 2856709, + "thread": 9 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 3104615, + "thread": 1 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 3205218, + "thread": 9 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 3439055, + "thread": 19 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 3537415, + "thread": 17 + } + }, + { + "amount": "371.946528902", + "slot": { + "period": 3652700, + "thread": 5 + } + }, + { + "amount": "371.946528898", + "slot": { + "period": 3925870, + "thread": 28 + } + } + ], + "AU12a7zkTfN6stRLtqhbAK5AFgpMgy6LdRcDocJqKnrsqK2B5MHoa": [ + { + "amount": "335.806848645", + "slot": { + "period": 30322, + "thread": 18 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 198428, + "thread": 28 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 430142, + "thread": 12 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 545646, + "thread": 2 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 729481, + "thread": 3 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 838962, + "thread": 1 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1099211, + "thread": 9 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1182958, + "thread": 6 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1333001, + "thread": 31 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1513808, + "thread": 9 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1747615, + "thread": 21 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1851317, + "thread": 0 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 1988022, + "thread": 15 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2156666, + "thread": 29 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2408011, + "thread": 21 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2477990, + "thread": 22 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2685097, + "thread": 18 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2873214, + "thread": 22 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 2977628, + "thread": 18 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 3185688, + "thread": 10 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 3360216, + "thread": 24 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 3459095, + "thread": 18 + } + }, + { + "amount": "335.806848645", + "slot": { + "period": 3633699, + "thread": 28 + } + }, + { + "amount": "335.806848654", + "slot": { + "period": 3841246, + "thread": 28 + } + } + ], + "AU12a8sSpK6nF2ZLRYVRjvYfwcQ68dvy6YLwmt2MBtzJCJeKbK97X": [ + { + "amount": "350.787780654", + "slot": { + "period": 93279, + "thread": 11 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 185632, + "thread": 27 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 466785, + "thread": 22 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 620315, + "thread": 11 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 787012, + "thread": 11 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 881487, + "thread": 14 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1132626, + "thread": 19 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1301470, + "thread": 25 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1411312, + "thread": 3 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1646207, + "thread": 16 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1752161, + "thread": 30 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 1820716, + "thread": 18 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2071915, + "thread": 9 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2271992, + "thread": 18 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2316201, + "thread": 3 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2622000, + "thread": 31 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2639181, + "thread": 14 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 2913361, + "thread": 29 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 3095519, + "thread": 31 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 3256251, + "thread": 17 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 3415198, + "thread": 1 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 3475117, + "thread": 0 + } + }, + { + "amount": "350.787780654", + "slot": { + "period": 3771419, + "thread": 27 + } + }, + { + "amount": "350.787780658", + "slot": { + "period": 3831603, + "thread": 19 + } + } + ], + "AU12a8uEvCDMjFgUS41hegYDpHMLNUASzxTW6uSuENstyAviVd74m": [ + { + "amount": "337.213699567", + "slot": { + "period": 45759, + "thread": 23 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 168866, + "thread": 12 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 400878, + "thread": 17 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 545782, + "thread": 13 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 742437, + "thread": 28 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 898405, + "thread": 15 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1124429, + "thread": 21 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1237930, + "thread": 20 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1343445, + "thread": 9 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1537397, + "thread": 28 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1707868, + "thread": 13 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 1893128, + "thread": 0 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2137856, + "thread": 10 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2229235, + "thread": 29 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2380972, + "thread": 19 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2549040, + "thread": 23 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2665345, + "thread": 12 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2933781, + "thread": 2 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 2990630, + "thread": 11 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 3281871, + "thread": 17 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 3290058, + "thread": 4 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 3575981, + "thread": 11 + } + }, + { + "amount": "337.213699567", + "slot": { + "period": 3749236, + "thread": 30 + } + }, + { + "amount": "337.213699557", + "slot": { + "period": 3833305, + "thread": 18 + } + } + ], + "AU12a8vaws3WMhAFYpyE9FWGbEF6z3T4wTerGuHvg7HCuwBXfeB2y": [ + { + "amount": "68.900497174", + "slot": { + "period": 36882, + "thread": 11 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 286250, + "thread": 26 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 451974, + "thread": 29 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 619226, + "thread": 8 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 799150, + "thread": 11 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 876929, + "thread": 2 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1093062, + "thread": 21 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1254038, + "thread": 13 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1478978, + "thread": 3 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1542759, + "thread": 20 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1667247, + "thread": 16 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 1946100, + "thread": 13 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2025415, + "thread": 12 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2210342, + "thread": 9 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2382479, + "thread": 1 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2483423, + "thread": 1 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2652178, + "thread": 27 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 2919910, + "thread": 0 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 3054977, + "thread": 15 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 3286082, + "thread": 27 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 3421991, + "thread": 14 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 3453560, + "thread": 26 + } + }, + { + "amount": "68.900497174", + "slot": { + "period": 3651443, + "thread": 27 + } + }, + { + "amount": "68.900497173", + "slot": { + "period": 3814270, + "thread": 10 + } + } + ], + "AU12a8xxF5Xd9sJm98UZwExph8VzDxvV6K2BMQP4kp7QM13XDwSrc": [ + { + "amount": "131.148050810", + "slot": { + "period": 124370, + "thread": 8 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 190941, + "thread": 1 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 385312, + "thread": 6 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 631282, + "thread": 9 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 683574, + "thread": 8 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 871859, + "thread": 6 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1019638, + "thread": 21 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1169107, + "thread": 15 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1429732, + "thread": 16 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1556306, + "thread": 0 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1668242, + "thread": 4 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 1931135, + "thread": 23 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2118283, + "thread": 3 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2177190, + "thread": 2 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2457226, + "thread": 25 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2604543, + "thread": 7 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2787744, + "thread": 6 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 2885892, + "thread": 8 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 3010922, + "thread": 25 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 3162899, + "thread": 11 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 3344459, + "thread": 11 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 3510012, + "thread": 1 + } + }, + { + "amount": "131.148050810", + "slot": { + "period": 3712443, + "thread": 2 + } + }, + { + "amount": "131.148050812", + "slot": { + "period": 3918851, + "thread": 27 + } + } + ], + "AU12a943SNTsqBAFWgyuyZ36VmxCJawNS4H2h4xDQvgg2aY833pHm": [ + { + "amount": "135.593559999", + "slot": { + "period": 46990, + "thread": 26 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 245558, + "thread": 30 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 379443, + "thread": 24 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 565138, + "thread": 5 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 659338, + "thread": 14 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 865190, + "thread": 6 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1107024, + "thread": 4 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1157515, + "thread": 27 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1342687, + "thread": 19 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1592693, + "thread": 30 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1674232, + "thread": 15 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 1944188, + "thread": 1 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2128785, + "thread": 27 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2158081, + "thread": 7 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2385077, + "thread": 7 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2507892, + "thread": 14 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2674118, + "thread": 7 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 2952236, + "thread": 17 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 3049398, + "thread": 26 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 3216907, + "thread": 10 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 3432761, + "thread": 14 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 3511805, + "thread": 9 + } + }, + { + "amount": "135.593559999", + "slot": { + "period": 3693686, + "thread": 26 + } + }, + { + "amount": "135.593559994", + "slot": { + "period": 3856554, + "thread": 3 + } + } + ], + "AU12a9vc4XaDZG7nB2iTBhCPA5TipqN3r8D1qsNAutXs5tYpxTBXc": [ + { + "amount": "312.300685914", + "slot": { + "period": 87239, + "thread": 10 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 272994, + "thread": 7 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 354354, + "thread": 16 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 593207, + "thread": 18 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 732943, + "thread": 10 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 843116, + "thread": 30 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1148246, + "thread": 31 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1241438, + "thread": 25 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1424345, + "thread": 1 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1591552, + "thread": 6 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1651525, + "thread": 4 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 1857751, + "thread": 4 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2101291, + "thread": 27 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2195301, + "thread": 15 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2314822, + "thread": 2 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2496621, + "thread": 17 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2633483, + "thread": 22 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 2872164, + "thread": 0 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 3061161, + "thread": 24 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 3223913, + "thread": 31 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 3291070, + "thread": 26 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 3510586, + "thread": 15 + } + }, + { + "amount": "312.300685914", + "slot": { + "period": 3652100, + "thread": 17 + } + }, + { + "amount": "312.300685910", + "slot": { + "period": 3920670, + "thread": 7 + } + } + ], + "AU12aBAJurk5U2h9dte6BRmdg5mJWwtidFwjbugBaWrs7d43LgYvV": [ + { + "amount": "155.616014643", + "slot": { + "period": 120466, + "thread": 15 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 199065, + "thread": 21 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 381777, + "thread": 29 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 592518, + "thread": 10 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 680723, + "thread": 6 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 970985, + "thread": 25 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1042006, + "thread": 3 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1261607, + "thread": 23 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1426414, + "thread": 27 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1644822, + "thread": 17 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1675454, + "thread": 14 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 1818510, + "thread": 26 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2093598, + "thread": 31 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2248351, + "thread": 27 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2412954, + "thread": 4 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2610663, + "thread": 18 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2632488, + "thread": 10 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 2867341, + "thread": 15 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 3077240, + "thread": 15 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 3276410, + "thread": 31 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 3355217, + "thread": 10 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 3542184, + "thread": 1 + } + }, + { + "amount": "155.616014643", + "slot": { + "period": 3625784, + "thread": 13 + } + }, + { + "amount": "155.616014644", + "slot": { + "period": 3800265, + "thread": 2 + } + } + ], + "AU12aBaHqzJPLvyoayTLADoj5x55AvxXxApWR2KPoM4deJvPTSAXf": [ + { + "amount": "157.055609937", + "slot": { + "period": 39205, + "thread": 27 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 232500, + "thread": 10 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 467839, + "thread": 27 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 524627, + "thread": 30 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 789773, + "thread": 11 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 841181, + "thread": 1 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 994355, + "thread": 18 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 1312533, + "thread": 3 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 1396572, + "thread": 0 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 1494326, + "thread": 16 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 1741042, + "thread": 14 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 1863902, + "thread": 14 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2060255, + "thread": 26 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2183246, + "thread": 8 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2333628, + "thread": 13 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2552085, + "thread": 29 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2748651, + "thread": 12 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 2859752, + "thread": 6 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 3067836, + "thread": 27 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 3156899, + "thread": 23 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 3313026, + "thread": 25 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 3611984, + "thread": 0 + } + }, + { + "amount": "157.055609937", + "slot": { + "period": 3731534, + "thread": 30 + } + }, + { + "amount": "157.055609934", + "slot": { + "period": 3938906, + "thread": 22 + } + } + ], + "AU12aCydLMoXczpVcDFJdWxawLfNgATjZLmSWxdes4hH8QTmwGRzB": [ + { + "amount": "166.417034582", + "slot": { + "period": 35781, + "thread": 10 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 171472, + "thread": 17 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 397618, + "thread": 21 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 543336, + "thread": 30 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 715657, + "thread": 16 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 943371, + "thread": 6 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1144951, + "thread": 14 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1164642, + "thread": 0 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1455671, + "thread": 14 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1579824, + "thread": 20 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1748481, + "thread": 25 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1878015, + "thread": 26 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 1984772, + "thread": 1 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 2266984, + "thread": 28 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 2332716, + "thread": 3 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 2476000, + "thread": 13 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 2709501, + "thread": 19 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 2814433, + "thread": 12 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 3045698, + "thread": 18 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 3137701, + "thread": 4 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 3437228, + "thread": 7 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 3585204, + "thread": 19 + } + }, + { + "amount": "166.417034582", + "slot": { + "period": 3732720, + "thread": 20 + } + }, + { + "amount": "166.417034592", + "slot": { + "period": 3867278, + "thread": 14 + } + } + ], + "AU12aDUjzGcRDJuDKwCSDQZV7MuGn7Jd4F5U4YuzFsXCr2jsXSXyW": [ + { + "amount": "118.601890973", + "slot": { + "period": 95888, + "thread": 26 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 213902, + "thread": 20 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 452171, + "thread": 14 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 623737, + "thread": 1 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 817907, + "thread": 25 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 839337, + "thread": 26 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 988408, + "thread": 26 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1174649, + "thread": 26 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1457203, + "thread": 21 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1570550, + "thread": 21 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1666184, + "thread": 23 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1878912, + "thread": 13 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 1993623, + "thread": 12 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2284393, + "thread": 5 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2462162, + "thread": 9 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2618012, + "thread": 8 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2627904, + "thread": 31 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2853478, + "thread": 4 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 2973455, + "thread": 14 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 3279949, + "thread": 27 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 3441600, + "thread": 25 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 3504743, + "thread": 23 + } + }, + { + "amount": "118.601890973", + "slot": { + "period": 3663543, + "thread": 10 + } + }, + { + "amount": "118.601890980", + "slot": { + "period": 3845118, + "thread": 16 + } + } + ], + "AU12aEekT68VuZ1e26f9MbS38bwFpSPzybfvm95f5pnBFcpnZHA3M": [ + { + "amount": "234.885528519", + "slot": { + "period": 18374, + "thread": 10 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 209089, + "thread": 20 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 427094, + "thread": 7 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 554995, + "thread": 25 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 747180, + "thread": 23 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 846108, + "thread": 21 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1136324, + "thread": 26 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1184538, + "thread": 0 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1396111, + "thread": 27 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1584053, + "thread": 16 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1729564, + "thread": 28 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 1921977, + "thread": 14 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2008073, + "thread": 22 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2245342, + "thread": 29 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2400820, + "thread": 18 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2475664, + "thread": 8 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2695329, + "thread": 4 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2859606, + "thread": 20 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 2966575, + "thread": 10 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 3202658, + "thread": 7 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 3362412, + "thread": 29 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 3504602, + "thread": 25 + } + }, + { + "amount": "234.885528519", + "slot": { + "period": 3765901, + "thread": 24 + } + }, + { + "amount": "234.885528522", + "slot": { + "period": 3914900, + "thread": 8 + } + } + ], + "AU12aF92sipCTQ8vECt18FM3Xg1MynnK54mRucpwjarmc6zojYkLr": [ + { + "amount": "215.515565033", + "slot": { + "period": 123329, + "thread": 8 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 315183, + "thread": 15 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 379336, + "thread": 27 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 644750, + "thread": 29 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 675293, + "thread": 22 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 835150, + "thread": 30 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 999601, + "thread": 24 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1167387, + "thread": 8 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1395440, + "thread": 10 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1572812, + "thread": 20 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1662550, + "thread": 5 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1867855, + "thread": 5 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 1976568, + "thread": 8 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 2150574, + "thread": 20 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 2446647, + "thread": 15 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 2468649, + "thread": 12 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 2768271, + "thread": 12 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 2866935, + "thread": 21 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 3026282, + "thread": 31 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 3222405, + "thread": 16 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 3295629, + "thread": 0 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 3562337, + "thread": 3 + } + }, + { + "amount": "215.515565033", + "slot": { + "period": 3727640, + "thread": 27 + } + }, + { + "amount": "215.515565030", + "slot": { + "period": 3847275, + "thread": 20 + } + } + ], + "AU12aFVoN7mPnvsCWSSygGj4XRSnPpYm6UUE3K7Nh19TmSEbTkun6": [ + { + "amount": "132.791004054", + "slot": { + "period": 72309, + "thread": 3 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 301821, + "thread": 9 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 395208, + "thread": 15 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 652739, + "thread": 12 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 756573, + "thread": 22 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 950170, + "thread": 18 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1055363, + "thread": 21 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1273082, + "thread": 24 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1466663, + "thread": 23 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1547201, + "thread": 30 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1795723, + "thread": 23 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1873767, + "thread": 22 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 1997136, + "thread": 18 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 2154736, + "thread": 8 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 2436049, + "thread": 16 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 2583036, + "thread": 2 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 2645964, + "thread": 18 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 2819473, + "thread": 10 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 3057296, + "thread": 6 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 3206775, + "thread": 21 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 3364071, + "thread": 16 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 3570544, + "thread": 10 + } + }, + { + "amount": "132.791004054", + "slot": { + "period": 3759879, + "thread": 15 + } + }, + { + "amount": "132.791004052", + "slot": { + "period": 3823745, + "thread": 11 + } + } + ], + "AU12aFZr9vCSuGJkGJaxqv7ND85vrkLmC596CGYq1kjq8gtusLeU3": [ + { + "amount": "62.606911867", + "slot": { + "period": 42722, + "thread": 3 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 244264, + "thread": 29 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 490787, + "thread": 14 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 520718, + "thread": 22 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 807811, + "thread": 8 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 856303, + "thread": 26 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1100289, + "thread": 16 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1253568, + "thread": 7 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1388312, + "thread": 16 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1633228, + "thread": 25 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1662519, + "thread": 31 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 1966414, + "thread": 7 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2118148, + "thread": 27 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2183977, + "thread": 23 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2341455, + "thread": 18 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2526133, + "thread": 22 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2697343, + "thread": 12 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 2854482, + "thread": 19 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 3015898, + "thread": 20 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 3245991, + "thread": 3 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 3399052, + "thread": 0 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 3589525, + "thread": 23 + } + }, + { + "amount": "62.606911867", + "slot": { + "period": 3718189, + "thread": 7 + } + }, + { + "amount": "62.606911876", + "slot": { + "period": 3807680, + "thread": 18 + } + } + ], + "AU12aFccayD4eNyQVGhfNasf6m1vZXSdJQRFoREwSPrm42DTSfRi4": [ + { + "amount": "346.276970511", + "slot": { + "period": 18163, + "thread": 1 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 216015, + "thread": 15 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 450504, + "thread": 5 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 499382, + "thread": 12 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 768189, + "thread": 4 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 970664, + "thread": 5 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1089678, + "thread": 21 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1286837, + "thread": 8 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1422570, + "thread": 22 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1541134, + "thread": 9 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1720117, + "thread": 16 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 1819725, + "thread": 31 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2142189, + "thread": 15 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2167482, + "thread": 28 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2361166, + "thread": 4 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2548156, + "thread": 6 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2678988, + "thread": 3 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2910575, + "thread": 0 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 2955666, + "thread": 15 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 3176945, + "thread": 3 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 3306452, + "thread": 19 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 3466477, + "thread": 17 + } + }, + { + "amount": "346.276970511", + "slot": { + "period": 3722436, + "thread": 10 + } + }, + { + "amount": "346.276970519", + "slot": { + "period": 3821519, + "thread": 16 + } + } + ], + "AU12aFdydmVJdoxF43eoiXqSEcj4BxU188XWpcD6xLtD6r2cR83YF": [ + { + "amount": "162.999266601", + "slot": { + "period": 101418, + "thread": 29 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 306787, + "thread": 2 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 406412, + "thread": 30 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 552477, + "thread": 21 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 715843, + "thread": 11 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 846262, + "thread": 27 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1096612, + "thread": 19 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1167594, + "thread": 27 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1396517, + "thread": 16 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1604672, + "thread": 16 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1786816, + "thread": 12 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 1844130, + "thread": 3 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2024257, + "thread": 12 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2192784, + "thread": 31 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2388120, + "thread": 12 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2503267, + "thread": 17 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2715703, + "thread": 28 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 2940155, + "thread": 3 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 3099096, + "thread": 27 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 3126967, + "thread": 26 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 3320223, + "thread": 24 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 3571458, + "thread": 13 + } + }, + { + "amount": "162.999266601", + "slot": { + "period": 3687431, + "thread": 0 + } + }, + { + "amount": "162.999266609", + "slot": { + "period": 3904706, + "thread": 23 + } + } + ], + "AU12aFsHCk3Y798MWyo2dKNjfp5hrM1ashXJcwUiQYKHnSsoFcUvA": [ + { + "amount": "184.905999513", + "slot": { + "period": 36464, + "thread": 3 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 204496, + "thread": 24 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 342398, + "thread": 19 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 586349, + "thread": 21 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 784230, + "thread": 15 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 950804, + "thread": 30 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1122070, + "thread": 16 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1314838, + "thread": 7 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1320178, + "thread": 28 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1597397, + "thread": 25 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1668155, + "thread": 15 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 1971769, + "thread": 22 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2064413, + "thread": 12 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2170571, + "thread": 27 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2372094, + "thread": 22 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2489013, + "thread": 31 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2757890, + "thread": 16 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 2845267, + "thread": 16 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 3017214, + "thread": 21 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 3124163, + "thread": 8 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 3290047, + "thread": 28 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 3554631, + "thread": 0 + } + }, + { + "amount": "184.905999513", + "slot": { + "period": 3681532, + "thread": 20 + } + }, + { + "amount": "184.905999510", + "slot": { + "period": 3920713, + "thread": 11 + } + } + ], + "AU12aG8G8jNoDYnMoN7H6kP3Cufi4G29M2pLCCyXM412yicDAtXTG": [ + { + "amount": "190.919975749", + "slot": { + "period": 81120, + "thread": 12 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 199762, + "thread": 24 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 489218, + "thread": 8 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 522683, + "thread": 23 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 754996, + "thread": 31 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 931475, + "thread": 26 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 989923, + "thread": 26 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 1178881, + "thread": 24 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 1458610, + "thread": 31 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 1617907, + "thread": 19 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 1773493, + "thread": 25 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 1924907, + "thread": 16 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2139541, + "thread": 8 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2160933, + "thread": 23 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2408242, + "thread": 21 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2578061, + "thread": 28 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2649405, + "thread": 15 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 2930164, + "thread": 3 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 3099402, + "thread": 27 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 3239756, + "thread": 25 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 3417289, + "thread": 12 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 3520455, + "thread": 31 + } + }, + { + "amount": "190.919975749", + "slot": { + "period": 3698189, + "thread": 1 + } + }, + { + "amount": "190.919975758", + "slot": { + "period": 3828274, + "thread": 17 + } + } + ], + "AU12aGhU7xy6KCohxzQd4JYgmLZCEDaCskR9157P3NoyPmhk78yzF": [ + { + "amount": "126.997814698", + "slot": { + "period": 152822, + "thread": 30 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 258316, + "thread": 7 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 461942, + "thread": 26 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 521355, + "thread": 12 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 803578, + "thread": 20 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 954489, + "thread": 19 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1052237, + "thread": 1 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1237510, + "thread": 10 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1366382, + "thread": 11 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1523720, + "thread": 22 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1807274, + "thread": 7 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 1827374, + "thread": 31 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2037054, + "thread": 24 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2145187, + "thread": 15 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2384942, + "thread": 9 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2593543, + "thread": 23 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2761221, + "thread": 0 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 2938634, + "thread": 29 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 3027902, + "thread": 31 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 3199187, + "thread": 12 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 3445305, + "thread": 12 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 3590710, + "thread": 15 + } + }, + { + "amount": "126.997814698", + "slot": { + "period": 3769994, + "thread": 13 + } + }, + { + "amount": "126.997814686", + "slot": { + "period": 3845781, + "thread": 31 + } + } + ], + "AU12aHKB1sdPXbTZt91p7pmJs5df8XBTDXhHCz7aAumMm11GJeuWz": [ + { + "amount": "230.927611003", + "slot": { + "period": 157528, + "thread": 26 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 284229, + "thread": 15 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 418752, + "thread": 5 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 493038, + "thread": 8 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 750928, + "thread": 3 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 854837, + "thread": 26 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 998397, + "thread": 0 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 1238176, + "thread": 7 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 1454017, + "thread": 16 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 1568916, + "thread": 4 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 1679912, + "thread": 31 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 1922229, + "thread": 21 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2016423, + "thread": 0 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2149799, + "thread": 25 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2425869, + "thread": 15 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2504719, + "thread": 12 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2755230, + "thread": 20 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2919412, + "thread": 3 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 2996683, + "thread": 1 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 3257458, + "thread": 19 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 3437852, + "thread": 7 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 3600530, + "thread": 3 + } + }, + { + "amount": "230.927611003", + "slot": { + "period": 3689670, + "thread": 5 + } + }, + { + "amount": "230.927610997", + "slot": { + "period": 3899308, + "thread": 0 + } + } + ], + "AU12aHVwAT4Ei8Q5apu2BSpgEkdWx1nSoW7gszYp6eND7qhuru54b": [ + { + "amount": "271.085076693", + "slot": { + "period": 117859, + "thread": 15 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 289746, + "thread": 10 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 370704, + "thread": 15 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 537154, + "thread": 27 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 677637, + "thread": 31 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 912927, + "thread": 17 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1022414, + "thread": 25 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1196645, + "thread": 29 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1396821, + "thread": 6 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1551560, + "thread": 26 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1665462, + "thread": 6 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 1838460, + "thread": 4 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2022800, + "thread": 1 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2267080, + "thread": 8 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2389158, + "thread": 16 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2511290, + "thread": 7 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2663110, + "thread": 20 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 2869480, + "thread": 10 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 3035924, + "thread": 15 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 3237933, + "thread": 27 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 3407805, + "thread": 12 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 3561560, + "thread": 30 + } + }, + { + "amount": "271.085076693", + "slot": { + "period": 3683676, + "thread": 31 + } + }, + { + "amount": "271.085076703", + "slot": { + "period": 3888070, + "thread": 7 + } + } + ], + "AU12aHthT7CboYH7JwCnmGQLN4V2d7VnMi9Um3mVg9PLmZZ9pd4u2": [ + { + "amount": "178.531311577", + "slot": { + "period": 60361, + "thread": 23 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 232546, + "thread": 18 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 440494, + "thread": 17 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 528179, + "thread": 23 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 711471, + "thread": 21 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 907477, + "thread": 28 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1007962, + "thread": 4 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1219701, + "thread": 10 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1462699, + "thread": 2 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1522174, + "thread": 19 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1667414, + "thread": 13 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1950792, + "thread": 13 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 1984344, + "thread": 28 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 2184462, + "thread": 1 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 2424637, + "thread": 13 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 2617786, + "thread": 11 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 2779192, + "thread": 7 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 2820932, + "thread": 11 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 3021441, + "thread": 30 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 3137424, + "thread": 5 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 3412578, + "thread": 0 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 3536540, + "thread": 18 + } + }, + { + "amount": "178.531311577", + "slot": { + "period": 3746408, + "thread": 17 + } + }, + { + "amount": "178.531311579", + "slot": { + "period": 3920065, + "thread": 20 + } + } + ], + "AU12aJL9oEFL9NCAowWxeWbs2hvtEbHja9KyCyYcqEDPEKyx1Upth": [ + { + "amount": "258.420256893", + "slot": { + "period": 53138, + "thread": 4 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 278570, + "thread": 21 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 329675, + "thread": 28 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 638431, + "thread": 29 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 782803, + "thread": 31 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 960496, + "thread": 5 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1115009, + "thread": 2 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1210031, + "thread": 23 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1339567, + "thread": 12 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1581289, + "thread": 20 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1765384, + "thread": 23 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 1911874, + "thread": 3 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2137030, + "thread": 29 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2163640, + "thread": 6 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2383459, + "thread": 22 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2564320, + "thread": 9 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2778651, + "thread": 8 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 2884309, + "thread": 23 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 3035490, + "thread": 11 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 3242853, + "thread": 29 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 3324422, + "thread": 6 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 3505070, + "thread": 6 + } + }, + { + "amount": "258.420256893", + "slot": { + "period": 3712380, + "thread": 0 + } + }, + { + "amount": "258.420256886", + "slot": { + "period": 3912031, + "thread": 3 + } + } + ], + "AU12aK1uSpvzfmfok9ELzreKKyxxBNceXQN12X83uNTkxRBLbMtTo": [ + { + "amount": "86.584524364", + "slot": { + "period": 143208, + "thread": 16 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 263423, + "thread": 19 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 423023, + "thread": 10 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 559779, + "thread": 4 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 768021, + "thread": 6 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 918578, + "thread": 1 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1095188, + "thread": 15 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1313684, + "thread": 25 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1375164, + "thread": 30 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1618165, + "thread": 31 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1799660, + "thread": 22 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 1915017, + "thread": 24 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2086225, + "thread": 13 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2212520, + "thread": 7 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2302876, + "thread": 24 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2549748, + "thread": 7 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2720101, + "thread": 12 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 2925126, + "thread": 13 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 3099917, + "thread": 20 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 3188225, + "thread": 5 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 3420672, + "thread": 9 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 3613998, + "thread": 5 + } + }, + { + "amount": "86.584524364", + "slot": { + "period": 3700881, + "thread": 9 + } + }, + { + "amount": "86.584524375", + "slot": { + "period": 3875536, + "thread": 5 + } + } + ], + "AU12aKCGegpe6qzGyxrUPyiDa7We1hpPVKd5ncbhjzRMnz44JHpVY": [ + { + "amount": "478.591552146", + "slot": { + "period": 139134, + "thread": 22 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 214181, + "thread": 16 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 477082, + "thread": 8 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 628471, + "thread": 8 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 803170, + "thread": 27 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 948523, + "thread": 7 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 999661, + "thread": 22 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 1204083, + "thread": 30 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 1461093, + "thread": 15 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 1521462, + "thread": 26 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 1669808, + "thread": 24 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 1944851, + "thread": 3 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2099176, + "thread": 11 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2277104, + "thread": 5 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2382578, + "thread": 25 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2521915, + "thread": 18 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2697219, + "thread": 19 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2824099, + "thread": 19 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 2982914, + "thread": 2 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 3163478, + "thread": 29 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 3448191, + "thread": 4 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 3507668, + "thread": 23 + } + }, + { + "amount": "478.591552146", + "slot": { + "period": 3676892, + "thread": 13 + } + }, + { + "amount": "478.591552139", + "slot": { + "period": 3889289, + "thread": 3 + } + } + ], + "AU12aKjh46rqEqKqvAo5JLhETJy9CafAeaYLhNq5vAJeH6JvkCU5f": [ + { + "amount": "568.256100530", + "slot": { + "period": 117959, + "thread": 23 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 312892, + "thread": 1 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 362598, + "thread": 29 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 574927, + "thread": 24 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 726078, + "thread": 12 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 920694, + "thread": 22 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1039611, + "thread": 20 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1202700, + "thread": 4 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1397845, + "thread": 22 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1628433, + "thread": 9 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1649644, + "thread": 25 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 1868182, + "thread": 25 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2048715, + "thread": 7 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2203742, + "thread": 14 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2304333, + "thread": 30 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2533728, + "thread": 3 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2668750, + "thread": 18 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 2862884, + "thread": 14 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 3109292, + "thread": 15 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 3172713, + "thread": 13 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 3432268, + "thread": 10 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 3497214, + "thread": 27 + } + }, + { + "amount": "568.256100530", + "slot": { + "period": 3735352, + "thread": 6 + } + }, + { + "amount": "568.256100532", + "slot": { + "period": 3946087, + "thread": 28 + } + } + ], + "AU12aLbfhBWegY8jRgshnfkr3vZUvXJkdagQxGVarmexTVKRBFpLE": [ + { + "amount": "350.344312056", + "slot": { + "period": 58006, + "thread": 19 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 245163, + "thread": 7 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 462496, + "thread": 2 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 542826, + "thread": 5 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 729334, + "thread": 14 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 861743, + "thread": 20 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1021693, + "thread": 8 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1280533, + "thread": 24 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1323640, + "thread": 17 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1518908, + "thread": 22 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1686817, + "thread": 28 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 1844366, + "thread": 8 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2115573, + "thread": 15 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2192124, + "thread": 5 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2392241, + "thread": 2 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2610300, + "thread": 7 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2750741, + "thread": 16 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2797311, + "thread": 6 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 2968866, + "thread": 19 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 3177025, + "thread": 31 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 3289038, + "thread": 22 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 3589070, + "thread": 16 + } + }, + { + "amount": "350.344312056", + "slot": { + "period": 3735000, + "thread": 9 + } + }, + { + "amount": "350.344312052", + "slot": { + "period": 3929219, + "thread": 24 + } + } + ], + "AU12aLstcMPJkL3mdHd8XKhfFrYNCxRi7sQpVjVKoWn4zXawnsj7H": [ + { + "amount": "229.576591955", + "slot": { + "period": 90334, + "thread": 25 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 262356, + "thread": 15 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 474957, + "thread": 16 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 611723, + "thread": 20 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 709707, + "thread": 9 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 954481, + "thread": 14 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1031836, + "thread": 27 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1175617, + "thread": 14 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1376632, + "thread": 28 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1630760, + "thread": 19 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1686984, + "thread": 8 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1917110, + "thread": 24 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 1978349, + "thread": 14 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 2185565, + "thread": 2 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 2344062, + "thread": 15 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 2615766, + "thread": 9 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 2731895, + "thread": 25 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 2904526, + "thread": 3 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 3057421, + "thread": 15 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 3186459, + "thread": 23 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 3401541, + "thread": 22 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 3456035, + "thread": 25 + } + }, + { + "amount": "229.576591955", + "slot": { + "period": 3768500, + "thread": 1 + } + }, + { + "amount": "229.576591960", + "slot": { + "period": 3836123, + "thread": 9 + } + } + ], + "AU12aLuBGeHhrqe9MdbBU4BARgHhs46ibgHbzzWexCsk7jM2hasEk": [ + { + "amount": "307.783891113", + "slot": { + "period": 125494, + "thread": 27 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 313844, + "thread": 16 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 334358, + "thread": 15 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 535225, + "thread": 12 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 803952, + "thread": 20 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 837581, + "thread": 8 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1031859, + "thread": 0 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1300327, + "thread": 30 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1320085, + "thread": 25 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1479749, + "thread": 10 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1793418, + "thread": 1 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 1901154, + "thread": 9 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2024463, + "thread": 3 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2197802, + "thread": 11 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2415981, + "thread": 8 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2617501, + "thread": 22 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2744263, + "thread": 29 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 2911684, + "thread": 14 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 3094467, + "thread": 22 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 3260656, + "thread": 23 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 3304210, + "thread": 17 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 3575345, + "thread": 9 + } + }, + { + "amount": "307.783891113", + "slot": { + "period": 3683496, + "thread": 15 + } + }, + { + "amount": "307.783891124", + "slot": { + "period": 3869149, + "thread": 27 + } + } + ], + "AU12aMLU8m6byCMGTKmEaVrzgCBL2ofDnjNKkaHmpWKy9zKrP458K": [ + { + "amount": "152.537019899", + "slot": { + "period": 54789, + "thread": 16 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 220508, + "thread": 17 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 459459, + "thread": 29 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 651390, + "thread": 27 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 738986, + "thread": 8 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 829518, + "thread": 26 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1038288, + "thread": 0 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1189409, + "thread": 17 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1379253, + "thread": 13 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1576167, + "thread": 15 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1717238, + "thread": 10 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1883087, + "thread": 8 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 1983821, + "thread": 22 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 2176593, + "thread": 4 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 2459393, + "thread": 18 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 2596162, + "thread": 9 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 2744071, + "thread": 12 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 2905783, + "thread": 14 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 3095428, + "thread": 9 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 3276864, + "thread": 10 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 3379564, + "thread": 2 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 3476214, + "thread": 11 + } + }, + { + "amount": "152.537019899", + "slot": { + "period": 3692489, + "thread": 16 + } + }, + { + "amount": "152.537019891", + "slot": { + "period": 3889727, + "thread": 20 + } + } + ], + "AU12aMUaRRqZ56U64YEwpRVAGfgvZESDCzCG9mQ8bjLTcirrThhaX": [ + { + "amount": "137.584533641", + "slot": { + "period": 71375, + "thread": 0 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 181324, + "thread": 1 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 488291, + "thread": 3 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 521173, + "thread": 26 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 783069, + "thread": 0 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 844698, + "thread": 24 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1014609, + "thread": 6 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1292458, + "thread": 7 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1323801, + "thread": 16 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1577021, + "thread": 7 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1766977, + "thread": 26 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 1880597, + "thread": 21 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2087153, + "thread": 12 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2244818, + "thread": 29 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2375031, + "thread": 31 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2571844, + "thread": 31 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2772643, + "thread": 22 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 2829127, + "thread": 9 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 3063694, + "thread": 8 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 3126067, + "thread": 31 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 3357053, + "thread": 19 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 3558713, + "thread": 13 + } + }, + { + "amount": "137.584533641", + "slot": { + "period": 3686914, + "thread": 13 + } + }, + { + "amount": "137.584533652", + "slot": { + "period": 3919182, + "thread": 18 + } + } + ], + "AU12aMa1YXbfkLdZeJybobZ8xWcFM6v5RY5KyCqf7AQqdiyNSQDrQ": [ + { + "amount": "599.851701105", + "slot": { + "period": 79229, + "thread": 0 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 171435, + "thread": 18 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 351132, + "thread": 13 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 604612, + "thread": 19 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 772806, + "thread": 22 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 826596, + "thread": 1 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1016733, + "thread": 23 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1152493, + "thread": 3 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1339656, + "thread": 0 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1575840, + "thread": 25 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1726233, + "thread": 2 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1867562, + "thread": 15 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 1996391, + "thread": 23 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 2164092, + "thread": 28 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 2331625, + "thread": 31 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 2614989, + "thread": 12 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 2678311, + "thread": 23 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 2855037, + "thread": 28 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 3101206, + "thread": 25 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 3270707, + "thread": 18 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 3312059, + "thread": 16 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 3562575, + "thread": 21 + } + }, + { + "amount": "599.851701105", + "slot": { + "period": 3727398, + "thread": 14 + } + }, + { + "amount": "599.851701109", + "slot": { + "period": 3842634, + "thread": 7 + } + } + ], + "AU12aN4m7WRVfzR7JboJbpreZ2jxQDPHQYbUPgqFru4fHVjAC6Yyn": [ + { + "amount": "155.529189173", + "slot": { + "period": 45975, + "thread": 18 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 271586, + "thread": 18 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 359655, + "thread": 2 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 533780, + "thread": 11 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 791723, + "thread": 9 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 827572, + "thread": 10 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1066869, + "thread": 29 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1290979, + "thread": 17 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1411139, + "thread": 3 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1643185, + "thread": 30 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1704597, + "thread": 28 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 1954751, + "thread": 11 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2009797, + "thread": 5 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2185344, + "thread": 30 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2460039, + "thread": 2 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2609418, + "thread": 12 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2759322, + "thread": 0 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 2936411, + "thread": 29 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 3019485, + "thread": 3 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 3133462, + "thread": 13 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 3309818, + "thread": 16 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 3562367, + "thread": 15 + } + }, + { + "amount": "155.529189173", + "slot": { + "period": 3688105, + "thread": 24 + } + }, + { + "amount": "155.529189184", + "slot": { + "period": 3808894, + "thread": 5 + } + } + ], + "AU12aN8nWxkVZiPNmpGKMvhHMmXrfYWNKp8neFSYbqfJrUgXifQBk": [ + { + "amount": "161.407968675", + "slot": { + "period": 15464, + "thread": 29 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 224424, + "thread": 6 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 342891, + "thread": 15 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 540935, + "thread": 14 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 760156, + "thread": 13 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 914690, + "thread": 22 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1093777, + "thread": 20 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1171315, + "thread": 29 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1360803, + "thread": 15 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1481174, + "thread": 28 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1716885, + "thread": 20 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1913664, + "thread": 0 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 1988145, + "thread": 5 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 2262311, + "thread": 10 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 2335958, + "thread": 1 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 2572654, + "thread": 8 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 2780615, + "thread": 2 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 2826696, + "thread": 26 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 3015193, + "thread": 15 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 3282577, + "thread": 29 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 3303638, + "thread": 4 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 3497041, + "thread": 15 + } + }, + { + "amount": "161.407968675", + "slot": { + "period": 3638813, + "thread": 0 + } + }, + { + "amount": "161.407968667", + "slot": { + "period": 3862844, + "thread": 27 + } + } + ], + "AU12aNaX9nZs6dxsvveHAtB1R8L5hPb8vf124Sbunguch4cBA9Frr": [ + { + "amount": "181.247797622", + "slot": { + "period": 15169, + "thread": 30 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 183243, + "thread": 10 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 435833, + "thread": 18 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 640838, + "thread": 17 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 708845, + "thread": 17 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 941068, + "thread": 25 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1007341, + "thread": 8 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1228445, + "thread": 14 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1384232, + "thread": 2 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1580278, + "thread": 4 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1792034, + "thread": 13 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 1882025, + "thread": 2 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2044228, + "thread": 27 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2288120, + "thread": 19 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2315216, + "thread": 7 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2523838, + "thread": 11 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2723375, + "thread": 3 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2819697, + "thread": 29 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 2993047, + "thread": 14 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 3243450, + "thread": 4 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 3401757, + "thread": 24 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 3600638, + "thread": 0 + } + }, + { + "amount": "181.247797622", + "slot": { + "period": 3772800, + "thread": 8 + } + }, + { + "amount": "181.247797616", + "slot": { + "period": 3908006, + "thread": 3 + } + } + ], + "AU12aP493N6gMKGKVkmEaaX5cRmWzWRqFFcsn5GqFoC9u1EwgNTa1": [ + { + "amount": "253.099452914", + "slot": { + "period": 119492, + "thread": 13 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 176259, + "thread": 12 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 360752, + "thread": 6 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 542926, + "thread": 28 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 672742, + "thread": 4 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 961543, + "thread": 8 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1082417, + "thread": 19 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1297597, + "thread": 2 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1329305, + "thread": 12 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1620313, + "thread": 6 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1662061, + "thread": 29 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 1952537, + "thread": 6 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2014389, + "thread": 20 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2194576, + "thread": 30 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2306984, + "thread": 20 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2580264, + "thread": 23 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2783612, + "thread": 14 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 2904514, + "thread": 27 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 3105700, + "thread": 31 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 3274588, + "thread": 15 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 3339223, + "thread": 7 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 3476545, + "thread": 19 + } + }, + { + "amount": "253.099452914", + "slot": { + "period": 3751821, + "thread": 5 + } + }, + { + "amount": "253.099452908", + "slot": { + "period": 3931296, + "thread": 5 + } + } + ], + "AU12aPGPSjUGaPiTmvRjWbmsFKkXmsbLK8iSuufS65d2raUETiwaA": [ + { + "amount": "65.668936838", + "slot": { + "period": 133514, + "thread": 6 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 198187, + "thread": 20 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 437490, + "thread": 20 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 545895, + "thread": 30 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 668496, + "thread": 20 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 879230, + "thread": 10 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1124541, + "thread": 27 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1186032, + "thread": 23 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1466413, + "thread": 26 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1522661, + "thread": 7 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1734570, + "thread": 4 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 1928310, + "thread": 7 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2082205, + "thread": 0 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2293682, + "thread": 3 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2423749, + "thread": 3 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2543923, + "thread": 7 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2681463, + "thread": 30 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2944692, + "thread": 28 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 2976756, + "thread": 19 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 3257191, + "thread": 3 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 3325746, + "thread": 4 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 3517123, + "thread": 12 + } + }, + { + "amount": "65.668936838", + "slot": { + "period": 3656679, + "thread": 6 + } + }, + { + "amount": "65.668936831", + "slot": { + "period": 3856552, + "thread": 11 + } + } + ], + "AU12aPzTU1CBLVx3hbmVA1gTo6kCsjoJ2CuSsvmgwQzAf3Dd486s6": [ + { + "amount": "257.286321409", + "slot": { + "period": 132560, + "thread": 8 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 225638, + "thread": 6 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 434748, + "thread": 11 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 517269, + "thread": 10 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 727794, + "thread": 9 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 830378, + "thread": 16 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1138594, + "thread": 24 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1191439, + "thread": 8 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1421976, + "thread": 10 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1604602, + "thread": 15 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1771635, + "thread": 31 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1898939, + "thread": 27 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 1994459, + "thread": 8 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 2164298, + "thread": 14 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 2303772, + "thread": 28 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 2483522, + "thread": 17 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 2740567, + "thread": 28 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 2881779, + "thread": 10 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 3091286, + "thread": 3 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 3148309, + "thread": 27 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 3431336, + "thread": 3 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 3496539, + "thread": 28 + } + }, + { + "amount": "257.286321409", + "slot": { + "period": 3691895, + "thread": 28 + } + }, + { + "amount": "257.286321400", + "slot": { + "period": 3874761, + "thread": 25 + } + } + ], + "AU12aQ4inbsfNg2Jyqt3Rgtdsg3dLzaKkJAzLdAD5nZPeXdPcmGiu": [ + { + "amount": "59.679474828", + "slot": { + "period": 144062, + "thread": 2 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 305757, + "thread": 27 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 422086, + "thread": 4 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 507951, + "thread": 24 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 765254, + "thread": 27 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 945744, + "thread": 15 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1135948, + "thread": 10 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1162433, + "thread": 3 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1378173, + "thread": 12 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1509111, + "thread": 28 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1806553, + "thread": 24 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 1812864, + "thread": 20 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2023108, + "thread": 16 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2278626, + "thread": 15 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2434188, + "thread": 8 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2478983, + "thread": 21 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2772237, + "thread": 0 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2890319, + "thread": 4 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 2995301, + "thread": 8 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 3194133, + "thread": 0 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 3438748, + "thread": 19 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 3559091, + "thread": 21 + } + }, + { + "amount": "59.679474828", + "slot": { + "period": 3669480, + "thread": 29 + } + }, + { + "amount": "59.679474833", + "slot": { + "period": 3815649, + "thread": 8 + } + } + ], + "AU12aQUDYJ4Defg66LTQkimbKjK7uC64jNHyr3kZfWTLXm33NoWhy": [ + { + "amount": "220.474512274", + "slot": { + "period": 36492, + "thread": 22 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 191594, + "thread": 22 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 378529, + "thread": 18 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 621953, + "thread": 11 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 721487, + "thread": 31 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 882222, + "thread": 20 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1087531, + "thread": 28 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1183885, + "thread": 10 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1418399, + "thread": 2 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1628780, + "thread": 8 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1774385, + "thread": 1 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 1965231, + "thread": 30 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2114190, + "thread": 13 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2241048, + "thread": 8 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2383033, + "thread": 13 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2542074, + "thread": 7 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2696004, + "thread": 25 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2943338, + "thread": 5 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 2968686, + "thread": 24 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 3197121, + "thread": 3 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 3341063, + "thread": 1 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 3499801, + "thread": 31 + } + }, + { + "amount": "220.474512274", + "slot": { + "period": 3711827, + "thread": 5 + } + }, + { + "amount": "220.474512284", + "slot": { + "period": 3849920, + "thread": 7 + } + } + ], + "AU12aQrXxjBcJocXpY3dUKPKoM2NoSuxhKHhrcQ6rPxAeF3F8TNMy": [ + { + "amount": "127.362918483", + "slot": { + "period": 23111, + "thread": 18 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 264139, + "thread": 22 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 329147, + "thread": 15 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 540074, + "thread": 3 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 660427, + "thread": 27 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 900346, + "thread": 13 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1102207, + "thread": 13 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1275938, + "thread": 19 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1444651, + "thread": 13 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1576365, + "thread": 0 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1791167, + "thread": 12 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 1863072, + "thread": 12 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2079263, + "thread": 13 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2286492, + "thread": 25 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2301816, + "thread": 27 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2492677, + "thread": 17 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2660699, + "thread": 0 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2821299, + "thread": 20 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 2962539, + "thread": 29 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 3168694, + "thread": 1 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 3409889, + "thread": 11 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 3494734, + "thread": 2 + } + }, + { + "amount": "127.362918483", + "slot": { + "period": 3759048, + "thread": 25 + } + }, + { + "amount": "127.362918478", + "slot": { + "period": 3829562, + "thread": 3 + } + } + ], + "AU12aRFepP6iFVfQiMsbcoT7TRjzS4AXvRiWwk4hwJdn4zZhtUT5v": [ + { + "amount": "274.023741139", + "slot": { + "period": 115400, + "thread": 23 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 195810, + "thread": 28 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 476629, + "thread": 0 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 584686, + "thread": 14 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 674545, + "thread": 15 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 864272, + "thread": 8 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1054148, + "thread": 9 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1306500, + "thread": 1 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1427526, + "thread": 12 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1530524, + "thread": 1 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1807422, + "thread": 2 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 1842809, + "thread": 10 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2063478, + "thread": 10 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2262639, + "thread": 11 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2427813, + "thread": 1 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2602535, + "thread": 12 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2752510, + "thread": 28 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 2817775, + "thread": 6 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 3045879, + "thread": 17 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 3134885, + "thread": 23 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 3417137, + "thread": 11 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 3595115, + "thread": 2 + } + }, + { + "amount": "274.023741139", + "slot": { + "period": 3713076, + "thread": 18 + } + }, + { + "amount": "274.023741135", + "slot": { + "period": 3909774, + "thread": 7 + } + } + ], + "AU12aTwFHdVYK3EbStKwmYMjfvUssTqHtZ53cPW4uBSC7iDQbCJhw": [ + { + "amount": "534.996916992", + "slot": { + "period": 166306, + "thread": 11 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 170079, + "thread": 22 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 374701, + "thread": 19 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 555015, + "thread": 11 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 721523, + "thread": 21 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 854417, + "thread": 30 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1060347, + "thread": 11 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1209635, + "thread": 0 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1462598, + "thread": 13 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1510709, + "thread": 20 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1654010, + "thread": 11 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 1916829, + "thread": 9 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2010766, + "thread": 3 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2212457, + "thread": 4 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2431593, + "thread": 0 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2583583, + "thread": 13 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2730006, + "thread": 16 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 2864001, + "thread": 18 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 3075511, + "thread": 5 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 3192574, + "thread": 14 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 3394286, + "thread": 28 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 3571171, + "thread": 17 + } + }, + { + "amount": "534.996916992", + "slot": { + "period": 3729907, + "thread": 22 + } + }, + { + "amount": "534.996916987", + "slot": { + "period": 3937209, + "thread": 15 + } + } + ], + "AU12aUANgZVuXMGebkuoLfsia2n6bqPZybaHQostZnUbiYWwnTksm": [ + { + "amount": "179.625804012", + "slot": { + "period": 141216, + "thread": 15 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 259164, + "thread": 10 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 419257, + "thread": 9 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 491474, + "thread": 22 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 716180, + "thread": 25 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 915911, + "thread": 19 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1145882, + "thread": 4 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1228304, + "thread": 15 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1333060, + "thread": 10 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1576787, + "thread": 13 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1688918, + "thread": 27 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 1832470, + "thread": 20 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2114434, + "thread": 16 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2190401, + "thread": 1 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2406795, + "thread": 1 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2552725, + "thread": 18 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2673735, + "thread": 9 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2817325, + "thread": 30 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 2970741, + "thread": 12 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 3126277, + "thread": 4 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 3297107, + "thread": 12 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 3482258, + "thread": 30 + } + }, + { + "amount": "179.625804012", + "slot": { + "period": 3648887, + "thread": 15 + } + }, + { + "amount": "179.625804004", + "slot": { + "period": 3804786, + "thread": 25 + } + } + ], + "AU12aUrt9CmJ6ojJcLYonJTCj1AaBL9ChfJzoDiNoCNwmTxR3N7Mg": [ + { + "amount": "117.488575778", + "slot": { + "period": 92702, + "thread": 5 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 264811, + "thread": 3 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 459175, + "thread": 12 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 602839, + "thread": 25 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 726603, + "thread": 11 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 910968, + "thread": 22 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1088607, + "thread": 7 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1214721, + "thread": 26 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1479460, + "thread": 12 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1540299, + "thread": 4 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1749250, + "thread": 1 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 1847599, + "thread": 24 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2049987, + "thread": 26 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2272748, + "thread": 0 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2306834, + "thread": 5 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2514750, + "thread": 19 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2636515, + "thread": 8 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2854737, + "thread": 13 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 2992300, + "thread": 23 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 3252890, + "thread": 5 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 3435580, + "thread": 6 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 3539104, + "thread": 17 + } + }, + { + "amount": "117.488575778", + "slot": { + "period": 3638197, + "thread": 9 + } + }, + { + "amount": "117.488575784", + "slot": { + "period": 3845107, + "thread": 5 + } + } + ], + "AU12aVPpisCEADEM4LGioVtdcW55TUz4u9HzZTeiuY6zG25j82Yu9": [ + { + "amount": "121.646383338", + "slot": { + "period": 166280, + "thread": 0 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 189906, + "thread": 15 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 388655, + "thread": 22 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 616427, + "thread": 8 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 755873, + "thread": 5 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 886725, + "thread": 14 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1113812, + "thread": 29 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1313801, + "thread": 15 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1425946, + "thread": 17 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1595651, + "thread": 19 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1715337, + "thread": 1 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 1916624, + "thread": 12 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2041769, + "thread": 7 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2250747, + "thread": 18 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2443518, + "thread": 1 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2526473, + "thread": 5 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2714972, + "thread": 16 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2818551, + "thread": 3 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 2986280, + "thread": 31 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 3250899, + "thread": 15 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 3422987, + "thread": 26 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 3555286, + "thread": 0 + } + }, + { + "amount": "121.646383338", + "slot": { + "period": 3772214, + "thread": 3 + } + }, + { + "amount": "121.646383343", + "slot": { + "period": 3882929, + "thread": 30 + } + } + ], + "AU12aVVdS3nx6mbG6ESKqL6XewGfF8SQNu8eTqseqTyhu7wVEPUPB": [ + { + "amount": "140.947645289", + "slot": { + "period": 162408, + "thread": 0 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 174974, + "thread": 13 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 373631, + "thread": 10 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 521880, + "thread": 20 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 712467, + "thread": 15 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 950846, + "thread": 11 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1065671, + "thread": 12 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1169608, + "thread": 10 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1422013, + "thread": 24 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1553560, + "thread": 26 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1781770, + "thread": 28 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 1936045, + "thread": 12 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2140218, + "thread": 16 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2190879, + "thread": 23 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2367643, + "thread": 5 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2565807, + "thread": 2 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2755024, + "thread": 24 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 2876883, + "thread": 19 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 3024137, + "thread": 20 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 3265713, + "thread": 13 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 3440805, + "thread": 12 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 3581041, + "thread": 21 + } + }, + { + "amount": "140.947645289", + "slot": { + "period": 3726155, + "thread": 10 + } + }, + { + "amount": "140.947645293", + "slot": { + "period": 3933470, + "thread": 10 + } + } + ], + "AU12aVzq9s8gXQwKfpDLEiHJbqEekqLKWHhaqvfLPdXh9LdB1oMGT": [ + { + "amount": "587.977391048", + "slot": { + "period": 118718, + "thread": 20 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 202141, + "thread": 13 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 395010, + "thread": 25 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 585625, + "thread": 19 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 772433, + "thread": 1 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 925652, + "thread": 31 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1067343, + "thread": 8 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1249726, + "thread": 9 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1333524, + "thread": 18 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1546293, + "thread": 13 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1697804, + "thread": 5 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 1839022, + "thread": 22 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2008694, + "thread": 1 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2164941, + "thread": 28 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2359737, + "thread": 11 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2571273, + "thread": 3 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2722061, + "thread": 21 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2889656, + "thread": 30 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 2981497, + "thread": 13 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 3139763, + "thread": 24 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 3365340, + "thread": 24 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 3536335, + "thread": 5 + } + }, + { + "amount": "587.977391048", + "slot": { + "period": 3688477, + "thread": 2 + } + }, + { + "amount": "587.977391046", + "slot": { + "period": 3851936, + "thread": 27 + } + } + ], + "AU12aW2sHZWHEwxNm8wCLJANcpfvKdxMa6uxF9G9fAWS628uZEsA9": [ + { + "amount": "68.287385516", + "slot": { + "period": 60413, + "thread": 1 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 250250, + "thread": 12 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 430875, + "thread": 29 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 618097, + "thread": 18 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 769171, + "thread": 10 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 948437, + "thread": 31 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1103232, + "thread": 27 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1264497, + "thread": 13 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1365056, + "thread": 13 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1580921, + "thread": 9 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1760698, + "thread": 4 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 1850318, + "thread": 23 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2079069, + "thread": 12 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2291781, + "thread": 7 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2383043, + "thread": 6 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2546317, + "thread": 15 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2719451, + "thread": 26 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 2811755, + "thread": 7 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 3053282, + "thread": 25 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 3129521, + "thread": 13 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 3402691, + "thread": 20 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 3598224, + "thread": 27 + } + }, + { + "amount": "68.287385516", + "slot": { + "period": 3772310, + "thread": 14 + } + }, + { + "amount": "68.287385527", + "slot": { + "period": 3853109, + "thread": 0 + } + } + ], + "AU12aWBdq9hqMsGNKdDGgvr63mS633sukWeMRpsX1LxTofWtJned4": [ + { + "amount": "339.360496885", + "slot": { + "period": 13930, + "thread": 13 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 321444, + "thread": 27 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 408276, + "thread": 17 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 615310, + "thread": 3 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 728581, + "thread": 15 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 829036, + "thread": 31 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1026933, + "thread": 26 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1278547, + "thread": 9 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1415408, + "thread": 29 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1506987, + "thread": 12 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1791784, + "thread": 28 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 1815000, + "thread": 31 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2056436, + "thread": 20 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2272505, + "thread": 5 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2420263, + "thread": 28 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2516548, + "thread": 30 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2687017, + "thread": 10 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 2819049, + "thread": 29 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 3040494, + "thread": 10 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 3222088, + "thread": 18 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 3395965, + "thread": 10 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 3541905, + "thread": 6 + } + }, + { + "amount": "339.360496885", + "slot": { + "period": 3740455, + "thread": 21 + } + }, + { + "amount": "339.360496890", + "slot": { + "period": 3816382, + "thread": 2 + } + } + ], + "AU12aWNfjvJSkt4mvpV6SmFgQuP6pSniJCnxjdQ2KyKyA5SYKfTiC": [ + { + "amount": "55.157269098", + "slot": { + "period": 84177, + "thread": 1 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 232266, + "thread": 4 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 396081, + "thread": 8 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 498636, + "thread": 9 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 683675, + "thread": 23 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 913190, + "thread": 14 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 983079, + "thread": 7 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 1317069, + "thread": 17 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 1417478, + "thread": 13 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 1552717, + "thread": 30 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 1666150, + "thread": 10 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 1869270, + "thread": 31 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2069744, + "thread": 17 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2225974, + "thread": 3 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2440710, + "thread": 12 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2611240, + "thread": 10 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2660309, + "thread": 31 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 2938747, + "thread": 13 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 3051805, + "thread": 30 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 3147055, + "thread": 13 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 3311203, + "thread": 1 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 3570251, + "thread": 1 + } + }, + { + "amount": "55.157269098", + "slot": { + "period": 3752841, + "thread": 30 + } + }, + { + "amount": "55.157269087", + "slot": { + "period": 3830530, + "thread": 27 + } + } + ], + "AU12aWv7YaTpFZjmSF79t5VLCdstUj6FKKinAYFsEzswPhVEKYuFu": [ + { + "amount": "222.339010824", + "slot": { + "period": 144438, + "thread": 10 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 306093, + "thread": 28 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 348409, + "thread": 27 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 492164, + "thread": 24 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 785306, + "thread": 6 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 981677, + "thread": 31 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1072383, + "thread": 2 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1188374, + "thread": 10 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1360420, + "thread": 7 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1539561, + "thread": 28 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1783841, + "thread": 5 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 1926086, + "thread": 28 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2030846, + "thread": 10 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2257619, + "thread": 31 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2408389, + "thread": 14 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2492556, + "thread": 23 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2785484, + "thread": 18 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 2818855, + "thread": 27 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 3067999, + "thread": 11 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 3135936, + "thread": 30 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 3333946, + "thread": 16 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 3463539, + "thread": 23 + } + }, + { + "amount": "222.339010824", + "slot": { + "period": 3711835, + "thread": 14 + } + }, + { + "amount": "222.339010821", + "slot": { + "period": 3932084, + "thread": 2 + } + } + ], + "AU12aXFSiCMQdL2pYz9FNPpHHMVejDabqCqXbxcx3KXZkLmGvN7xR": [ + { + "amount": "108.717384089", + "slot": { + "period": 59514, + "thread": 28 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 225971, + "thread": 27 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 479448, + "thread": 21 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 526435, + "thread": 2 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 801389, + "thread": 26 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 846241, + "thread": 12 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1055131, + "thread": 25 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1182417, + "thread": 13 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1386585, + "thread": 10 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1562446, + "thread": 16 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1692954, + "thread": 0 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 1897663, + "thread": 11 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2030379, + "thread": 0 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2285816, + "thread": 31 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2398343, + "thread": 14 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2491618, + "thread": 21 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2627859, + "thread": 13 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 2923915, + "thread": 13 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 3115043, + "thread": 17 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 3143134, + "thread": 18 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 3331380, + "thread": 23 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 3511872, + "thread": 29 + } + }, + { + "amount": "108.717384089", + "slot": { + "period": 3733759, + "thread": 26 + } + }, + { + "amount": "108.717384098", + "slot": { + "period": 3943592, + "thread": 30 + } + } + ], + "AU12aZMhfGCzr3kaj3SVWfyRQHDBQLXU7x7LCwX1Qy2w7wjVgySZb": [ + { + "amount": "196.617629370", + "slot": { + "period": 138292, + "thread": 18 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 254501, + "thread": 19 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 411610, + "thread": 2 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 609587, + "thread": 2 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 749204, + "thread": 21 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 858660, + "thread": 25 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1076767, + "thread": 16 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1290361, + "thread": 30 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1341716, + "thread": 14 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1530395, + "thread": 13 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1761602, + "thread": 13 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 1811592, + "thread": 17 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2081916, + "thread": 6 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2256246, + "thread": 10 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2368137, + "thread": 26 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2534531, + "thread": 7 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2699990, + "thread": 19 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 2824980, + "thread": 25 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 3021134, + "thread": 21 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 3170382, + "thread": 28 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 3310359, + "thread": 1 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 3516145, + "thread": 19 + } + }, + { + "amount": "196.617629370", + "slot": { + "period": 3728818, + "thread": 31 + } + }, + { + "amount": "196.617629366", + "slot": { + "period": 3940364, + "thread": 12 + } + } + ], + "AU12aaJnWSF7j6o8TMvqcK9dtcupR4CzbXS4ArEkQy3Ux2C2Mfytk": [ + { + "amount": "53.770693903", + "slot": { + "period": 128171, + "thread": 27 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 183572, + "thread": 23 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 410549, + "thread": 23 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 561752, + "thread": 19 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 691855, + "thread": 4 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 939736, + "thread": 28 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1147225, + "thread": 7 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1256448, + "thread": 22 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1337196, + "thread": 27 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1597979, + "thread": 21 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1757113, + "thread": 10 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 1809082, + "thread": 27 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2078134, + "thread": 29 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2264725, + "thread": 8 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2356138, + "thread": 4 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2606481, + "thread": 20 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2711068, + "thread": 1 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2866162, + "thread": 15 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 2993187, + "thread": 21 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 3137416, + "thread": 20 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 3366937, + "thread": 4 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 3581055, + "thread": 13 + } + }, + { + "amount": "53.770693903", + "slot": { + "period": 3680625, + "thread": 20 + } + }, + { + "amount": "53.770693902", + "slot": { + "period": 3947030, + "thread": 10 + } + } + ], + "AU12aakFjbVxK2ZmYzMWiAunyf2T6NssYPfypoqxWnZ97cHm5xBV6": [ + { + "amount": "388.596228622", + "slot": { + "period": 130066, + "thread": 19 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 251949, + "thread": 17 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 324158, + "thread": 7 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 502386, + "thread": 15 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 705236, + "thread": 25 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 866971, + "thread": 16 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1101180, + "thread": 18 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1233966, + "thread": 11 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1418176, + "thread": 15 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1590968, + "thread": 12 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1743802, + "thread": 2 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 1967430, + "thread": 21 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2020619, + "thread": 7 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2174150, + "thread": 17 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2314275, + "thread": 6 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2552635, + "thread": 14 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2752133, + "thread": 24 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 2817950, + "thread": 28 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 3028507, + "thread": 5 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 3196876, + "thread": 15 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 3383538, + "thread": 16 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 3465673, + "thread": 10 + } + }, + { + "amount": "388.596228622", + "slot": { + "period": 3618273, + "thread": 18 + } + }, + { + "amount": "388.596228611", + "slot": { + "period": 3801932, + "thread": 28 + } + } + ], + "AU12abTp2ms9j8tHobN2XsDNkziBpuDQhvQU5JJzLTASqRNCddokZ": [ + { + "amount": "51.491071571", + "slot": { + "period": 72762, + "thread": 6 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 263121, + "thread": 10 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 349311, + "thread": 7 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 614080, + "thread": 3 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 754890, + "thread": 4 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 939437, + "thread": 6 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1030709, + "thread": 2 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1192622, + "thread": 25 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1463452, + "thread": 31 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1509109, + "thread": 4 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1667134, + "thread": 30 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 1851088, + "thread": 22 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2089364, + "thread": 6 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2229568, + "thread": 14 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2314833, + "thread": 24 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2542653, + "thread": 24 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2757570, + "thread": 1 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2877229, + "thread": 7 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 2965164, + "thread": 18 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 3196353, + "thread": 6 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 3343883, + "thread": 17 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 3497461, + "thread": 16 + } + }, + { + "amount": "51.491071571", + "slot": { + "period": 3632364, + "thread": 4 + } + }, + { + "amount": "51.491071569", + "slot": { + "period": 3789583, + "thread": 29 + } + } + ], + "AU12acLc6yZ9yKBCsgsM5VZKJb3jtRjsJjUc74MDLSno3tSrbujWL": [ + { + "amount": "422.334589560", + "slot": { + "period": 131042, + "thread": 7 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 250629, + "thread": 28 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 436975, + "thread": 23 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 549065, + "thread": 9 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 793082, + "thread": 15 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 928540, + "thread": 2 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1007047, + "thread": 17 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1245287, + "thread": 4 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1364490, + "thread": 16 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1601248, + "thread": 12 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1789815, + "thread": 17 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 1962512, + "thread": 23 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2099306, + "thread": 20 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2234905, + "thread": 1 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2384890, + "thread": 28 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2491318, + "thread": 31 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2790405, + "thread": 3 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 2841029, + "thread": 19 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3100714, + "thread": 21 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3229303, + "thread": 19 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3396701, + "thread": 19 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3504211, + "thread": 27 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3709598, + "thread": 19 + } + }, + { + "amount": "422.334589560", + "slot": { + "period": 3863753, + "thread": 21 + } + } + ], + "AU12aeC92bnM8TwUcnttCjTnEdVG3hfSDVYTMxWjPb8LDwZ8pZ1LM": [ + { + "amount": "211.383665854", + "slot": { + "period": 36361, + "thread": 0 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 228601, + "thread": 7 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 357357, + "thread": 7 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 524023, + "thread": 26 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 657585, + "thread": 12 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 887710, + "thread": 9 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1045686, + "thread": 25 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1280497, + "thread": 31 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1337334, + "thread": 3 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1590627, + "thread": 12 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1698384, + "thread": 31 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 1895462, + "thread": 24 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2060953, + "thread": 18 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2264856, + "thread": 14 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2386699, + "thread": 2 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2550443, + "thread": 20 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2709989, + "thread": 28 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 2935387, + "thread": 28 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 3063974, + "thread": 30 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 3130167, + "thread": 17 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 3345248, + "thread": 15 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 3462794, + "thread": 12 + } + }, + { + "amount": "211.383665854", + "slot": { + "period": 3733569, + "thread": 25 + } + }, + { + "amount": "211.383665853", + "slot": { + "period": 3846042, + "thread": 0 + } + } + ], + "AU12aeLk6WPu6hwrW8Ufbsi1jQczAfCN4kfhzSEqbvtKhUe4zpzfb": [ + { + "amount": "235.695188704", + "slot": { + "period": 70547, + "thread": 21 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 193354, + "thread": 1 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 419621, + "thread": 14 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 540096, + "thread": 19 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 685380, + "thread": 7 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 854197, + "thread": 25 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 997740, + "thread": 30 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1169152, + "thread": 27 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1404674, + "thread": 16 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1528107, + "thread": 5 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1744956, + "thread": 14 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1877602, + "thread": 18 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 1986420, + "thread": 12 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2178747, + "thread": 25 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2421180, + "thread": 21 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2558908, + "thread": 15 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2727036, + "thread": 15 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2907644, + "thread": 2 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 2954165, + "thread": 25 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 3206278, + "thread": 23 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 3323862, + "thread": 25 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 3487830, + "thread": 30 + } + }, + { + "amount": "235.695188704", + "slot": { + "period": 3733685, + "thread": 5 + } + }, + { + "amount": "235.695188694", + "slot": { + "period": 3887773, + "thread": 22 + } + } + ], + "AU12aegAfkddyk9QumpBgBCBxzKF1yzTcg49pEayoKuYYj5YTuYPj": [ + { + "amount": "530.382592740", + "slot": { + "period": 163136, + "thread": 5 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 246069, + "thread": 28 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 406620, + "thread": 10 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 634802, + "thread": 29 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 678054, + "thread": 16 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 907157, + "thread": 4 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1046054, + "thread": 18 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1298478, + "thread": 14 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1342538, + "thread": 11 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1497496, + "thread": 0 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1658211, + "thread": 6 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 1834002, + "thread": 25 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2068708, + "thread": 31 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2172444, + "thread": 19 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2406518, + "thread": 20 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2533994, + "thread": 25 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2662991, + "thread": 6 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 2927040, + "thread": 12 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3024374, + "thread": 11 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3286419, + "thread": 31 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3435926, + "thread": 13 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3544908, + "thread": 11 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3741904, + "thread": 30 + } + }, + { + "amount": "530.382592740", + "slot": { + "period": 3876730, + "thread": 25 + } + } + ], + "AU12aewAta42fqWZvNoXHKGmBU9BDLyA5sSr3f6HVFHmrsia9Kis": [ + { + "amount": "51.483175193", + "slot": { + "period": 23954, + "thread": 29 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 199343, + "thread": 30 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 355580, + "thread": 3 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 595481, + "thread": 24 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 716422, + "thread": 9 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 922562, + "thread": 26 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1014862, + "thread": 9 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1191288, + "thread": 15 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1379303, + "thread": 14 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1579220, + "thread": 22 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1726791, + "thread": 18 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 1976094, + "thread": 4 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2053365, + "thread": 28 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2145915, + "thread": 26 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2331708, + "thread": 5 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2466777, + "thread": 2 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2664868, + "thread": 15 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 2840642, + "thread": 23 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 3010018, + "thread": 28 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 3235270, + "thread": 7 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 3331637, + "thread": 1 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 3458251, + "thread": 21 + } + }, + { + "amount": "51.483175193", + "slot": { + "period": 3774028, + "thread": 23 + } + }, + { + "amount": "51.483175189", + "slot": { + "period": 3820107, + "thread": 5 + } + } + ], + "AU12af1CEEWusbWxwpkLgnqZFLV735m2WMDkGZNsoPdRx9Q8bG5Pe": [ + { + "amount": "104.805785105", + "slot": { + "period": 47359, + "thread": 19 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 310631, + "thread": 15 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 396440, + "thread": 31 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 618729, + "thread": 12 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 671473, + "thread": 19 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 920285, + "thread": 14 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1014455, + "thread": 22 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1225802, + "thread": 8 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1325391, + "thread": 8 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1494537, + "thread": 5 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1673357, + "thread": 18 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1879610, + "thread": 26 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 1999853, + "thread": 28 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 2230734, + "thread": 7 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 2332422, + "thread": 17 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 2558749, + "thread": 23 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 2732744, + "thread": 0 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 2816069, + "thread": 11 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 3104763, + "thread": 29 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 3171028, + "thread": 26 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 3331614, + "thread": 3 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 3508660, + "thread": 21 + } + }, + { + "amount": "104.805785105", + "slot": { + "period": 3702066, + "thread": 8 + } + }, + { + "amount": "104.805785103", + "slot": { + "period": 3809343, + "thread": 6 + } + } + ], + "AU12afFRY7bsBvo3yNTKpvaGJncmxwQikvkLFfwyTEiBMQhA8ThAu": [ + { + "amount": "247.750167541", + "slot": { + "period": 21920, + "thread": 2 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 207112, + "thread": 15 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 478096, + "thread": 29 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 566482, + "thread": 11 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 786049, + "thread": 13 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 948733, + "thread": 7 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1032142, + "thread": 18 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1183810, + "thread": 30 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1472224, + "thread": 26 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1584317, + "thread": 24 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1661467, + "thread": 2 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 1965118, + "thread": 21 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2122415, + "thread": 18 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2259467, + "thread": 0 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2313630, + "thread": 30 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2598497, + "thread": 15 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2786825, + "thread": 8 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 2885617, + "thread": 27 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 3025943, + "thread": 29 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 3130617, + "thread": 23 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 3367580, + "thread": 12 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 3571897, + "thread": 12 + } + }, + { + "amount": "247.750167541", + "slot": { + "period": 3720986, + "thread": 26 + } + }, + { + "amount": "247.750167539", + "slot": { + "period": 3836914, + "thread": 22 + } + } + ], + "AU12ag1ea683ZiPYSRAMpoVuw7GV9jZ13KKeZS2PZ2HboXgkB4X8H": [ + { + "amount": "142.420811295", + "slot": { + "period": 35375, + "thread": 15 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 240660, + "thread": 14 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 392410, + "thread": 30 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 503045, + "thread": 31 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 723404, + "thread": 1 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 880224, + "thread": 1 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1045110, + "thread": 18 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1237721, + "thread": 21 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1478045, + "thread": 3 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1514480, + "thread": 22 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1669556, + "thread": 7 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1945177, + "thread": 22 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 1988402, + "thread": 27 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2240614, + "thread": 31 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2373195, + "thread": 14 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2616225, + "thread": 24 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2766654, + "thread": 12 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2809257, + "thread": 23 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 2991433, + "thread": 10 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 3136309, + "thread": 11 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 3435253, + "thread": 30 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 3607390, + "thread": 7 + } + }, + { + "amount": "142.420811295", + "slot": { + "period": 3766566, + "thread": 0 + } + }, + { + "amount": "142.420811296", + "slot": { + "period": 3892545, + "thread": 1 + } + } + ], + "AU12agPeePeTkc8mFq5CPgpuoJzMMhkpFxZYD42wP3se19CpAcnio": [ + { + "amount": "560.952396901", + "slot": { + "period": 112407, + "thread": 27 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 276444, + "thread": 30 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 443183, + "thread": 15 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 561897, + "thread": 8 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 677172, + "thread": 28 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 892090, + "thread": 2 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1117161, + "thread": 11 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1174237, + "thread": 0 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1470353, + "thread": 12 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1567857, + "thread": 28 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1776791, + "thread": 20 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 1902281, + "thread": 19 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2018726, + "thread": 7 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2153295, + "thread": 18 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2425967, + "thread": 17 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2487020, + "thread": 5 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2746167, + "thread": 6 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 2855378, + "thread": 27 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 3039143, + "thread": 7 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 3129705, + "thread": 20 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 3297918, + "thread": 0 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 3485357, + "thread": 2 + } + }, + { + "amount": "560.952396901", + "slot": { + "period": 3635317, + "thread": 3 + } + }, + { + "amount": "560.952396899", + "slot": { + "period": 3907052, + "thread": 6 + } + } + ], + "AU12agpGktRX5349A6cVyqTSa2aEhz5H9FNDBbRYyrMdHDo8mQDyw": [ + { + "amount": "204.072794422", + "slot": { + "period": 35464, + "thread": 22 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 228140, + "thread": 28 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 368901, + "thread": 0 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 492831, + "thread": 17 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 742917, + "thread": 12 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 829086, + "thread": 28 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1051035, + "thread": 26 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1180343, + "thread": 3 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1449664, + "thread": 28 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1556575, + "thread": 20 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1780149, + "thread": 12 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 1915070, + "thread": 12 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2068650, + "thread": 24 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2196775, + "thread": 8 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2297249, + "thread": 10 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2564576, + "thread": 17 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2775670, + "thread": 14 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 2824866, + "thread": 11 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 3038309, + "thread": 25 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 3172280, + "thread": 20 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 3321733, + "thread": 22 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 3518386, + "thread": 8 + } + }, + { + "amount": "204.072794422", + "slot": { + "period": 3727769, + "thread": 1 + } + }, + { + "amount": "204.072794414", + "slot": { + "period": 3879611, + "thread": 19 + } + } + ], + "AU12ahE8FiZDRr599rHuephDMBMbUxBC3LFjFcyFRD9AE9xn2hJbr": [ + { + "amount": "134.662043528", + "slot": { + "period": 143124, + "thread": 12 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 247772, + "thread": 18 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 380620, + "thread": 18 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 495662, + "thread": 30 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 666112, + "thread": 2 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 901831, + "thread": 23 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1066862, + "thread": 14 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1168921, + "thread": 7 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1470119, + "thread": 7 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1608093, + "thread": 11 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1735534, + "thread": 29 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 1822722, + "thread": 17 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2025320, + "thread": 15 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2239760, + "thread": 23 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2310208, + "thread": 15 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2464125, + "thread": 27 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2710228, + "thread": 13 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 2922887, + "thread": 21 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 3077951, + "thread": 6 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 3230457, + "thread": 20 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 3374090, + "thread": 27 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 3601625, + "thread": 24 + } + }, + { + "amount": "134.662043528", + "slot": { + "period": 3695071, + "thread": 5 + } + }, + { + "amount": "134.662043521", + "slot": { + "period": 3903618, + "thread": 31 + } + } + ], + "AU12ahtiER1vhg1Nz8qZfZUr9aBkzzyJw1FKkHZEB1iHszuCqK98": [ + { + "amount": "64.480623642", + "slot": { + "period": 126019, + "thread": 7 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 258671, + "thread": 16 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 338865, + "thread": 28 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 500399, + "thread": 13 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 812802, + "thread": 21 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 977089, + "thread": 9 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1148534, + "thread": 23 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1208896, + "thread": 14 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1345929, + "thread": 19 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1634988, + "thread": 11 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1745310, + "thread": 23 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 1814799, + "thread": 20 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2043873, + "thread": 16 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2155983, + "thread": 9 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2405426, + "thread": 13 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2523299, + "thread": 15 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2750963, + "thread": 1 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 2926913, + "thread": 12 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 3087707, + "thread": 17 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 3245385, + "thread": 8 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 3443934, + "thread": 21 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 3546626, + "thread": 8 + } + }, + { + "amount": "64.480623642", + "slot": { + "period": 3720854, + "thread": 17 + } + }, + { + "amount": "64.480623640", + "slot": { + "period": 3794640, + "thread": 5 + } + } + ], + "AU12aiaGCzrVgXa6MdBR6UzrGsuETpmpMJ6Chkxy41wXNEmEPcHLc": [ + { + "amount": "617.479854777", + "slot": { + "period": 29870, + "thread": 11 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 183522, + "thread": 2 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 435268, + "thread": 21 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 536762, + "thread": 13 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 790726, + "thread": 30 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 950941, + "thread": 17 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1029025, + "thread": 25 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1284784, + "thread": 19 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1334435, + "thread": 13 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1583360, + "thread": 0 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1782168, + "thread": 25 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 1933006, + "thread": 1 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2069978, + "thread": 19 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2146909, + "thread": 13 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2453172, + "thread": 20 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2496847, + "thread": 26 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2629142, + "thread": 5 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 2867638, + "thread": 0 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 3091664, + "thread": 19 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 3261767, + "thread": 23 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 3302821, + "thread": 10 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 3605148, + "thread": 1 + } + }, + { + "amount": "617.479854777", + "slot": { + "period": 3694219, + "thread": 15 + } + }, + { + "amount": "617.479854766", + "slot": { + "period": 3922006, + "thread": 12 + } + } + ], + "AU12amLQGWRFmCZCVqYbGNTi5RoSutVVyQXt5Hn5JdhGLofthGcJA": [ + { + "amount": "94.026876487", + "slot": { + "period": 163536, + "thread": 1 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 279654, + "thread": 2 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 435148, + "thread": 17 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 557522, + "thread": 0 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 757540, + "thread": 3 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 828417, + "thread": 31 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1127050, + "thread": 10 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1207228, + "thread": 1 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1407683, + "thread": 30 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1590900, + "thread": 30 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1648628, + "thread": 4 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 1916310, + "thread": 21 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2061356, + "thread": 13 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2219623, + "thread": 1 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2307814, + "thread": 16 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2486931, + "thread": 27 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2765528, + "thread": 8 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 2937724, + "thread": 14 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 3087500, + "thread": 19 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 3262717, + "thread": 16 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 3311052, + "thread": 17 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 3455757, + "thread": 29 + } + }, + { + "amount": "94.026876487", + "slot": { + "period": 3741378, + "thread": 17 + } + }, + { + "amount": "94.026876486", + "slot": { + "period": 3870098, + "thread": 24 + } + } + ], + "AU12an3hT2rnsmRBwdFj5noXzuxERbKGbo5EAXqJXGjzi82jz9fiS": [ + { + "amount": "412.827313107", + "slot": { + "period": 143370, + "thread": 27 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 280535, + "thread": 31 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 490829, + "thread": 28 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 582032, + "thread": 18 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 801814, + "thread": 11 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 837006, + "thread": 8 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1144638, + "thread": 3 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1317115, + "thread": 1 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1380050, + "thread": 21 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1489019, + "thread": 22 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1650909, + "thread": 31 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 1880156, + "thread": 2 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2119720, + "thread": 6 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2285705, + "thread": 14 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2441054, + "thread": 8 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2561838, + "thread": 2 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2676189, + "thread": 29 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2919149, + "thread": 17 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 2987295, + "thread": 13 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 3231956, + "thread": 30 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 3364221, + "thread": 19 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 3597116, + "thread": 2 + } + }, + { + "amount": "412.827313107", + "slot": { + "period": 3634841, + "thread": 27 + } + }, + { + "amount": "412.827313100", + "slot": { + "period": 3856314, + "thread": 9 + } + } + ], + "AU12aoHB6YasgiAD2jeupqTFvUWqa26VeqxYBajkP6WdLHn2k2Adu": [ + { + "amount": "237.294418506", + "slot": { + "period": 110236, + "thread": 23 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 230788, + "thread": 19 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 365364, + "thread": 4 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 576157, + "thread": 10 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 801004, + "thread": 8 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 925503, + "thread": 7 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1055166, + "thread": 20 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1227013, + "thread": 1 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1466597, + "thread": 18 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1601766, + "thread": 29 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1767601, + "thread": 13 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 1953427, + "thread": 26 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2104807, + "thread": 5 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2251651, + "thread": 29 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2419089, + "thread": 3 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2600755, + "thread": 27 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2699965, + "thread": 30 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 2893176, + "thread": 21 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 3055773, + "thread": 9 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 3166519, + "thread": 16 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 3342653, + "thread": 0 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 3550503, + "thread": 17 + } + }, + { + "amount": "237.294418506", + "slot": { + "period": 3629140, + "thread": 23 + } + }, + { + "amount": "237.294418504", + "slot": { + "period": 3880944, + "thread": 13 + } + } + ], + "AU12apfdHH3UjK4ueQboSsLnMJwi692aaKNuyX6xqaawbGq3FiYvq": [ + { + "amount": "352.304252058", + "slot": { + "period": 40852, + "thread": 31 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 188166, + "thread": 27 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 450406, + "thread": 10 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 586488, + "thread": 3 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 748760, + "thread": 12 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 879216, + "thread": 2 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1128828, + "thread": 22 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1299863, + "thread": 30 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1339382, + "thread": 3 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1494391, + "thread": 4 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1655486, + "thread": 14 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 1828440, + "thread": 23 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2025591, + "thread": 2 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2170548, + "thread": 25 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2324974, + "thread": 28 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2536045, + "thread": 13 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2698561, + "thread": 25 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 2839004, + "thread": 11 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 3007776, + "thread": 11 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 3200672, + "thread": 13 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 3329824, + "thread": 0 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 3606538, + "thread": 1 + } + }, + { + "amount": "352.304252058", + "slot": { + "period": 3746369, + "thread": 21 + } + }, + { + "amount": "352.304252064", + "slot": { + "period": 3834369, + "thread": 19 + } + } + ], + "AU12arihW65diQ46vSKjYeSgx5gieZtfAWZfqHvnJ5npuTf4G6Yn": [ + { + "amount": "177.246782896", + "slot": { + "period": 96013, + "thread": 2 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 181525, + "thread": 7 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 366377, + "thread": 22 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 545921, + "thread": 15 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 724504, + "thread": 12 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 916524, + "thread": 16 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1110911, + "thread": 31 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1210745, + "thread": 0 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1379057, + "thread": 29 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1567438, + "thread": 6 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1716376, + "thread": 28 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 1891696, + "thread": 8 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2027482, + "thread": 2 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2157226, + "thread": 29 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2397186, + "thread": 17 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2476056, + "thread": 20 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2741130, + "thread": 16 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 2941759, + "thread": 11 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 3070802, + "thread": 10 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 3258492, + "thread": 22 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 3434027, + "thread": 20 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 3527692, + "thread": 1 + } + }, + { + "amount": "177.246782896", + "slot": { + "period": 3710703, + "thread": 30 + } + }, + { + "amount": "177.246782899", + "slot": { + "period": 3903816, + "thread": 13 + } + } + ], + "AU12aru2fCNwYAecGanzmmf4B2SsuZSRfoQqwnEX7qSXwwYps1z1G": [ + { + "amount": "572.235391658", + "slot": { + "period": 75706, + "thread": 11 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 218131, + "thread": 27 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 446896, + "thread": 6 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 536154, + "thread": 8 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 666158, + "thread": 0 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 857473, + "thread": 11 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 992345, + "thread": 23 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 1179884, + "thread": 2 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 1336230, + "thread": 23 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 1527987, + "thread": 12 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 1764191, + "thread": 14 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 1889719, + "thread": 10 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2061235, + "thread": 10 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2294959, + "thread": 25 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2365132, + "thread": 20 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2547433, + "thread": 25 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2759068, + "thread": 1 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 2912188, + "thread": 22 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 3049087, + "thread": 9 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 3214789, + "thread": 14 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 3297553, + "thread": 30 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 3482401, + "thread": 9 + } + }, + { + "amount": "572.235391658", + "slot": { + "period": 3736903, + "thread": 22 + } + }, + { + "amount": "572.235391657", + "slot": { + "period": 3812041, + "thread": 24 + } + } + ], + "AU12as4SDBLn5wCGzKXshmDb8j5PNXjJ96QdVJ3LdwTHRfGMUjTXG": [ + { + "amount": "232.001300007", + "slot": { + "period": 117207, + "thread": 17 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 191135, + "thread": 2 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 399823, + "thread": 12 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 523994, + "thread": 8 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 669192, + "thread": 31 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 964518, + "thread": 1 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1069654, + "thread": 10 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1181332, + "thread": 10 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1414545, + "thread": 5 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1574069, + "thread": 14 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1756538, + "thread": 20 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 1944646, + "thread": 0 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2143762, + "thread": 21 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2233632, + "thread": 2 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2303215, + "thread": 10 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2568609, + "thread": 12 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2636153, + "thread": 3 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2834761, + "thread": 1 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 2999184, + "thread": 15 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 3198804, + "thread": 25 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 3353283, + "thread": 4 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 3592667, + "thread": 25 + } + }, + { + "amount": "232.001300007", + "slot": { + "period": 3618841, + "thread": 0 + } + }, + { + "amount": "232.001299999", + "slot": { + "period": 3799561, + "thread": 5 + } + } + ], + "AU12atDJkHSujckTMZSAcEb2ygDXYpkEojuHEvm35DJfGz6qUBhTh": [ + { + "amount": "215.933583665", + "slot": { + "period": 25831, + "thread": 10 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 239097, + "thread": 24 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 456853, + "thread": 9 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 624016, + "thread": 13 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 732120, + "thread": 2 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 878497, + "thread": 26 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1057509, + "thread": 17 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1287405, + "thread": 3 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1471381, + "thread": 13 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1495371, + "thread": 31 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1742063, + "thread": 7 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 1944276, + "thread": 30 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2080568, + "thread": 0 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2214402, + "thread": 5 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2313026, + "thread": 6 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2552807, + "thread": 12 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2716993, + "thread": 30 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 2792409, + "thread": 27 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3039207, + "thread": 23 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3209637, + "thread": 7 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3439652, + "thread": 18 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3595184, + "thread": 9 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3651657, + "thread": 28 + } + }, + { + "amount": "215.933583665", + "slot": { + "period": 3853704, + "thread": 3 + } + } + ], + "AU12atqJM7wrqNop55y7Lfhuh7GKFBAQNDR4429gDFN5Vym5UStAy": [ + { + "amount": "443.849728502", + "slot": { + "period": 41957, + "thread": 5 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 320554, + "thread": 29 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 419120, + "thread": 29 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 542435, + "thread": 12 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 744091, + "thread": 18 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 927217, + "thread": 20 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1121147, + "thread": 14 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1171382, + "thread": 2 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1389328, + "thread": 22 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1579588, + "thread": 3 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1791881, + "thread": 21 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1880763, + "thread": 5 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 1999341, + "thread": 2 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2213436, + "thread": 25 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2373483, + "thread": 19 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2519028, + "thread": 28 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2719242, + "thread": 13 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2827774, + "thread": 8 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 2961879, + "thread": 29 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 3222052, + "thread": 17 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 3360348, + "thread": 6 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 3510215, + "thread": 17 + } + }, + { + "amount": "443.849728502", + "slot": { + "period": 3669447, + "thread": 30 + } + }, + { + "amount": "443.849728504", + "slot": { + "period": 3829906, + "thread": 30 + } + } + ], + "AU12auer64HtoMC832yBzDmB8M6F8kMNQRyX4eEdkaW3aPsAnPxas": [ + { + "amount": "269.279624063", + "slot": { + "period": 93910, + "thread": 14 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 275151, + "thread": 9 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 419424, + "thread": 29 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 631510, + "thread": 11 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 698528, + "thread": 12 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 854210, + "thread": 21 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1053191, + "thread": 15 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1310448, + "thread": 12 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1444797, + "thread": 29 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1585797, + "thread": 14 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1784216, + "thread": 24 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 1936656, + "thread": 30 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2113324, + "thread": 24 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2228838, + "thread": 27 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2328367, + "thread": 11 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2555537, + "thread": 0 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2778685, + "thread": 17 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 2847673, + "thread": 0 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 3007503, + "thread": 20 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 3235724, + "thread": 18 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 3447561, + "thread": 3 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 3588785, + "thread": 19 + } + }, + { + "amount": "269.279624063", + "slot": { + "period": 3777540, + "thread": 22 + } + }, + { + "amount": "269.279624073", + "slot": { + "period": 3904487, + "thread": 24 + } + } + ], + "AU12aukrK6pDvW8FB34bGEnFvoEqYKrUP1YNbSMmituSD8DJC1wGh": [ + { + "amount": "304.154239621", + "slot": { + "period": 118210, + "thread": 23 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 311838, + "thread": 1 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 457889, + "thread": 26 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 533158, + "thread": 15 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 772157, + "thread": 4 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 893808, + "thread": 27 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1127148, + "thread": 31 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1215457, + "thread": 4 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1438005, + "thread": 12 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1520152, + "thread": 8 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1743206, + "thread": 25 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 1911669, + "thread": 5 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2119276, + "thread": 3 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2167703, + "thread": 26 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2446785, + "thread": 9 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2531056, + "thread": 8 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2637255, + "thread": 3 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 2891538, + "thread": 23 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 3018360, + "thread": 5 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 3206869, + "thread": 6 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 3340454, + "thread": 27 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 3548576, + "thread": 1 + } + }, + { + "amount": "304.154239621", + "slot": { + "period": 3663332, + "thread": 26 + } + }, + { + "amount": "304.154239618", + "slot": { + "period": 3921072, + "thread": 7 + } + } + ], + "AU12aupUyKtxNY4VxoXaGeJA4ZfLw9oyLsCAqT7jKDjxLXxh2mTYB": [ + { + "amount": "86.328605351", + "slot": { + "period": 69127, + "thread": 14 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 269314, + "thread": 8 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 456323, + "thread": 3 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 574062, + "thread": 6 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 763031, + "thread": 22 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 843032, + "thread": 9 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1115680, + "thread": 19 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1292091, + "thread": 16 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1321026, + "thread": 18 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1560300, + "thread": 1 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1749039, + "thread": 5 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 1837840, + "thread": 1 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2051438, + "thread": 4 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2287778, + "thread": 21 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2445447, + "thread": 16 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2573038, + "thread": 5 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2700385, + "thread": 12 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 2846400, + "thread": 22 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 3040043, + "thread": 18 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 3167452, + "thread": 15 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 3410555, + "thread": 0 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 3528325, + "thread": 14 + } + }, + { + "amount": "86.328605351", + "slot": { + "period": 3706960, + "thread": 8 + } + }, + { + "amount": "86.328605346", + "slot": { + "period": 3910776, + "thread": 12 + } + } + ], + "AU12auybkeC3HRaG5KuisP42N9fwRfLsdtqBrHL1tgPNqvzPnmmcN": [ + { + "amount": "429.537860875", + "slot": { + "period": 75105, + "thread": 19 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 239693, + "thread": 2 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 428302, + "thread": 4 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 512971, + "thread": 24 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 666920, + "thread": 16 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 862713, + "thread": 6 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1037312, + "thread": 27 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1242652, + "thread": 27 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1408741, + "thread": 21 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1487455, + "thread": 4 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1780507, + "thread": 7 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 1892442, + "thread": 22 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2141153, + "thread": 26 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2145638, + "thread": 19 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2391916, + "thread": 24 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2510053, + "thread": 5 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2734994, + "thread": 28 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 2928072, + "thread": 17 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 3103563, + "thread": 17 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 3173469, + "thread": 22 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 3376361, + "thread": 2 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 3522312, + "thread": 30 + } + }, + { + "amount": "429.537860875", + "slot": { + "period": 3761936, + "thread": 9 + } + }, + { + "amount": "429.537860867", + "slot": { + "period": 3910082, + "thread": 11 + } + } + ], + "AU12avpj6XxiJsLJjTH3jS94wPjKyaKpXa8p8eKEu2tSZsA5Qqpg6": [ + { + "amount": "471.955909930", + "slot": { + "period": 117388, + "thread": 21 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 284812, + "thread": 8 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 328974, + "thread": 28 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 529713, + "thread": 31 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 773758, + "thread": 24 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 834123, + "thread": 8 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1103849, + "thread": 21 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1188289, + "thread": 5 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1420767, + "thread": 11 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1635364, + "thread": 13 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1669187, + "thread": 21 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 1907663, + "thread": 4 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2014028, + "thread": 16 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2225965, + "thread": 27 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2388362, + "thread": 2 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2465342, + "thread": 8 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2739156, + "thread": 30 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 2919049, + "thread": 3 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 3080421, + "thread": 7 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 3123674, + "thread": 0 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 3289836, + "thread": 9 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 3526994, + "thread": 14 + } + }, + { + "amount": "471.955909930", + "slot": { + "period": 3661804, + "thread": 31 + } + }, + { + "amount": "471.955909928", + "slot": { + "period": 3860280, + "thread": 24 + } + } + ], + "AU12aw8FcpkrfNPko2y5b2QF28nNc6K34cA5woiHn9yiMubPjYCQZ": [ + { + "amount": "117.323295340", + "slot": { + "period": 31036, + "thread": 26 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 283013, + "thread": 20 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 484808, + "thread": 21 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 577140, + "thread": 15 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 674448, + "thread": 10 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 878846, + "thread": 1 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1077152, + "thread": 24 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1263252, + "thread": 27 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1473107, + "thread": 17 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1533898, + "thread": 16 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1691941, + "thread": 31 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1887769, + "thread": 2 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 1977525, + "thread": 1 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 2159569, + "thread": 24 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 2441828, + "thread": 31 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 2593711, + "thread": 3 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 2727747, + "thread": 14 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 2907932, + "thread": 25 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 3026243, + "thread": 25 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 3228661, + "thread": 15 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 3438554, + "thread": 17 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 3606249, + "thread": 18 + } + }, + { + "amount": "117.323295340", + "slot": { + "period": 3712184, + "thread": 8 + } + }, + { + "amount": "117.323295341", + "slot": { + "period": 3794395, + "thread": 19 + } + } + ], + "AU12awXcBamRjVLpaG5N5qkBGAXhvTtshKDTwTW6xBQoUwxzEPSx": [ + { + "amount": "341.228397199", + "slot": { + "period": 12676, + "thread": 20 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 232393, + "thread": 1 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 337986, + "thread": 31 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 648943, + "thread": 21 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 755561, + "thread": 13 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 914006, + "thread": 9 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1016681, + "thread": 24 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1243360, + "thread": 20 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1416507, + "thread": 11 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1502636, + "thread": 0 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1647810, + "thread": 1 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 1965060, + "thread": 2 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2097908, + "thread": 21 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2237727, + "thread": 22 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2344851, + "thread": 25 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2467366, + "thread": 30 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2643009, + "thread": 22 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2845308, + "thread": 5 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 2956932, + "thread": 28 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 3280804, + "thread": 11 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 3406650, + "thread": 4 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 3601705, + "thread": 17 + } + }, + { + "amount": "341.228397199", + "slot": { + "period": 3752049, + "thread": 20 + } + }, + { + "amount": "341.228397204", + "slot": { + "period": 3806982, + "thread": 21 + } + } + ], + "AU12ay9gFz93VoZPLubkiLpsGNAzJTWVqVnPJajUg9MkmJV3xJMPd": [ + { + "amount": "62.280264721", + "slot": { + "period": 112765, + "thread": 19 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 260334, + "thread": 24 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 435405, + "thread": 26 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 622311, + "thread": 11 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 685470, + "thread": 19 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 836268, + "thread": 30 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1045161, + "thread": 9 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1238390, + "thread": 24 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1324944, + "thread": 7 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1574409, + "thread": 7 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1709802, + "thread": 4 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 1852785, + "thread": 28 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2081788, + "thread": 26 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2195952, + "thread": 22 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2436088, + "thread": 31 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2573503, + "thread": 29 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2634127, + "thread": 31 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 2834633, + "thread": 16 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 3016614, + "thread": 13 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 3213510, + "thread": 13 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 3402886, + "thread": 29 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 3485951, + "thread": 20 + } + }, + { + "amount": "62.280264721", + "slot": { + "period": 3667731, + "thread": 3 + } + }, + { + "amount": "62.280264713", + "slot": { + "period": 3944623, + "thread": 27 + } + } + ], + "AU12ayKbLwMSCmdS369eCMUf7jdPQ5jrdWuB9PomFEBWif1YksL8w": [ + { + "amount": "96.834727120", + "slot": { + "period": 63897, + "thread": 20 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 188492, + "thread": 3 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 368683, + "thread": 5 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 606598, + "thread": 13 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 749763, + "thread": 3 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 941534, + "thread": 15 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1128820, + "thread": 1 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1189701, + "thread": 17 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1326635, + "thread": 8 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1600115, + "thread": 18 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1673442, + "thread": 29 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 1814197, + "thread": 12 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2135206, + "thread": 20 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2222473, + "thread": 3 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2347511, + "thread": 6 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2464551, + "thread": 13 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2789134, + "thread": 17 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 2930851, + "thread": 17 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 3087917, + "thread": 4 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 3277885, + "thread": 7 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 3436581, + "thread": 8 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 3452287, + "thread": 7 + } + }, + { + "amount": "96.834727120", + "slot": { + "period": 3728614, + "thread": 26 + } + }, + { + "amount": "96.834727118", + "slot": { + "period": 3925499, + "thread": 9 + } + } + ], + "AU12ayRn1jMLRKXyWzGzouTtBU4weCiBBaRLZW2eB1Ld3RiSrU9Y2": [ + { + "amount": "83.391186029", + "slot": { + "period": 24258, + "thread": 28 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 251582, + "thread": 12 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 421129, + "thread": 29 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 587572, + "thread": 7 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 794884, + "thread": 19 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 964127, + "thread": 11 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1052125, + "thread": 10 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1172982, + "thread": 23 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1404790, + "thread": 17 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1482777, + "thread": 9 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1681497, + "thread": 6 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 1918549, + "thread": 29 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2122856, + "thread": 30 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2148354, + "thread": 22 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2449709, + "thread": 21 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2504573, + "thread": 2 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2776037, + "thread": 27 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 2804324, + "thread": 16 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 3021276, + "thread": 24 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 3169442, + "thread": 11 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 3444532, + "thread": 29 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 3580599, + "thread": 13 + } + }, + { + "amount": "83.391186029", + "slot": { + "period": 3749911, + "thread": 7 + } + }, + { + "amount": "83.391186018", + "slot": { + "period": 3935196, + "thread": 14 + } + } + ], + "AU12azS3g1SBGJsqaJeYMzh7ArT9Ez6SFgqsEVdjAsPdohWzawU3v": [ + { + "amount": "53.096374326", + "slot": { + "period": 16516, + "thread": 9 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 320082, + "thread": 31 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 402276, + "thread": 28 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 513551, + "thread": 19 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 705124, + "thread": 0 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 939948, + "thread": 28 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1039366, + "thread": 17 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1283568, + "thread": 3 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1402721, + "thread": 21 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1503479, + "thread": 4 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1667955, + "thread": 9 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1973343, + "thread": 16 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 1984633, + "thread": 10 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 2209583, + "thread": 28 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 2346073, + "thread": 22 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 2510919, + "thread": 29 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 2628148, + "thread": 16 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 2858587, + "thread": 28 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 3003023, + "thread": 13 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 3196395, + "thread": 8 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 3355162, + "thread": 16 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 3574071, + "thread": 4 + } + }, + { + "amount": "53.096374326", + "slot": { + "period": 3624824, + "thread": 13 + } + }, + { + "amount": "53.096374325", + "slot": { + "period": 3917364, + "thread": 22 + } + } + ], + "AU12azbszBnKHSwBp4VKvR1bfzQdXWYwnpnEHyii8bCLktNirzAXe": [ + { + "amount": "94.170485966", + "slot": { + "period": 11964, + "thread": 24 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 188913, + "thread": 20 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 327861, + "thread": 6 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 636603, + "thread": 3 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 672522, + "thread": 12 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 915526, + "thread": 31 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1007803, + "thread": 13 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1243177, + "thread": 19 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1437427, + "thread": 12 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1591486, + "thread": 21 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1763754, + "thread": 9 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1834288, + "thread": 0 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 1998735, + "thread": 27 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 2256141, + "thread": 20 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 2295502, + "thread": 22 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 2508123, + "thread": 9 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 2682962, + "thread": 29 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 2802368, + "thread": 17 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 3106714, + "thread": 22 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 3152544, + "thread": 13 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 3315922, + "thread": 18 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 3539651, + "thread": 4 + } + }, + { + "amount": "94.170485966", + "slot": { + "period": 3663079, + "thread": 24 + } + }, + { + "amount": "94.170485957", + "slot": { + "period": 3935242, + "thread": 17 + } + } + ], + "AU12b14CsKUrFzXAPeL6o2QLfNCLrydDugFfzvRqXyw75Xpy6gfm9": [ + { + "amount": "363.705328598", + "slot": { + "period": 74923, + "thread": 31 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 175146, + "thread": 17 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 484969, + "thread": 12 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 579248, + "thread": 28 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 767059, + "thread": 13 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 969022, + "thread": 1 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1043787, + "thread": 21 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1283635, + "thread": 27 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1427106, + "thread": 30 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1568460, + "thread": 23 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1741763, + "thread": 19 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 1939159, + "thread": 31 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2027592, + "thread": 31 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2204380, + "thread": 20 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2444646, + "thread": 19 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2488767, + "thread": 6 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2750073, + "thread": 7 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2883375, + "thread": 24 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 2982939, + "thread": 13 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 3212969, + "thread": 14 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 3296270, + "thread": 7 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 3501551, + "thread": 8 + } + }, + { + "amount": "363.705328598", + "slot": { + "period": 3697560, + "thread": 6 + } + }, + { + "amount": "363.705328606", + "slot": { + "period": 3920188, + "thread": 25 + } + } + ], + "AU12b2TAQD5EK2zx7S7xjEyKQAdaZEk3N2ntj9dA2sorr1m43zhWz": [ + { + "amount": "101.064472255", + "slot": { + "period": 69028, + "thread": 10 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 292017, + "thread": 18 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 412886, + "thread": 11 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 528885, + "thread": 9 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 768261, + "thread": 1 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 957756, + "thread": 28 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 993253, + "thread": 29 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1296465, + "thread": 1 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1454289, + "thread": 5 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1500689, + "thread": 31 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1752718, + "thread": 15 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1931637, + "thread": 0 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 1989620, + "thread": 30 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 2281288, + "thread": 14 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 2422829, + "thread": 10 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 2608567, + "thread": 10 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 2685053, + "thread": 21 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 2898129, + "thread": 1 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 3097296, + "thread": 21 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 3146346, + "thread": 30 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 3426349, + "thread": 26 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 3555855, + "thread": 6 + } + }, + { + "amount": "101.064472255", + "slot": { + "period": 3748346, + "thread": 5 + } + }, + { + "amount": "101.064472247", + "slot": { + "period": 3831595, + "thread": 28 + } + } + ], + "AU12b4hDqLPHygueZQUq9cXaoW6qvYs56YgessRFj9aZpZmKgSPZz": [ + { + "amount": "253.011168518", + "slot": { + "period": 158694, + "thread": 18 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 174770, + "thread": 29 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 371342, + "thread": 5 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 577408, + "thread": 2 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 820738, + "thread": 18 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 885596, + "thread": 7 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1001370, + "thread": 10 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1237844, + "thread": 14 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1360478, + "thread": 2 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1532133, + "thread": 17 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1679177, + "thread": 11 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 1813506, + "thread": 25 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2045738, + "thread": 29 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2222732, + "thread": 9 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2429583, + "thread": 11 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2600521, + "thread": 21 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2742734, + "thread": 16 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 2802689, + "thread": 16 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 3085902, + "thread": 15 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 3215418, + "thread": 15 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 3404245, + "thread": 29 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 3590469, + "thread": 27 + } + }, + { + "amount": "253.011168518", + "slot": { + "period": 3625074, + "thread": 9 + } + }, + { + "amount": "253.011168522", + "slot": { + "period": 3924009, + "thread": 23 + } + } + ], + "AU12b5dKDh72azWY55GmvMZ7hxraeZs6utp4R5Zuqqf2NKw212M1u": [ + { + "amount": "307.600203616", + "slot": { + "period": 24903, + "thread": 12 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 273041, + "thread": 9 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 458000, + "thread": 26 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 566091, + "thread": 5 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 783604, + "thread": 21 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 956522, + "thread": 17 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1025571, + "thread": 17 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1198221, + "thread": 22 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1367754, + "thread": 20 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1508323, + "thread": 26 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1805003, + "thread": 26 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1917733, + "thread": 29 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 1980901, + "thread": 30 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 2280636, + "thread": 30 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 2308353, + "thread": 2 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 2567053, + "thread": 24 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 2658767, + "thread": 4 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 2921131, + "thread": 28 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 3109844, + "thread": 29 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 3219634, + "thread": 18 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 3344860, + "thread": 10 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 3598103, + "thread": 26 + } + }, + { + "amount": "307.600203616", + "slot": { + "period": 3670372, + "thread": 30 + } + }, + { + "amount": "307.600203606", + "slot": { + "period": 3836821, + "thread": 25 + } + } + ], + "AU12b5r6PziriUxE69AGgdoQ1BWfgw4mqjSZNK3sHzozEqz2eUH2w": [ + { + "amount": "178.986537897", + "slot": { + "period": 150970, + "thread": 4 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 276877, + "thread": 30 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 464035, + "thread": 8 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 533274, + "thread": 4 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 709541, + "thread": 31 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 852593, + "thread": 22 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1089321, + "thread": 13 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1255696, + "thread": 7 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1436820, + "thread": 22 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1625060, + "thread": 29 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1695512, + "thread": 11 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 1948430, + "thread": 29 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2015176, + "thread": 4 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2201796, + "thread": 9 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2432703, + "thread": 27 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2573884, + "thread": 5 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2641767, + "thread": 30 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 2850487, + "thread": 9 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 3016975, + "thread": 3 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 3215514, + "thread": 14 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 3434718, + "thread": 4 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 3579470, + "thread": 30 + } + }, + { + "amount": "178.986537897", + "slot": { + "period": 3776242, + "thread": 6 + } + }, + { + "amount": "178.986537908", + "slot": { + "period": 3839067, + "thread": 5 + } + } + ], + "AU12b6tATASsGNeBAnjKDh2UfN4sj3SkrhBgaDfSZKC11HMovZuow": [ + { + "amount": "134.857446079", + "slot": { + "period": 53952, + "thread": 17 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 178965, + "thread": 29 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 386104, + "thread": 24 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 614442, + "thread": 28 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 779265, + "thread": 28 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 845299, + "thread": 4 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1095479, + "thread": 20 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1185787, + "thread": 29 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1322501, + "thread": 23 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1578796, + "thread": 19 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1782777, + "thread": 31 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 1815876, + "thread": 29 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2000046, + "thread": 23 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2196371, + "thread": 19 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2311992, + "thread": 2 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2559805, + "thread": 7 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2722314, + "thread": 25 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 2938480, + "thread": 15 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 3085283, + "thread": 14 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 3269135, + "thread": 11 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 3428188, + "thread": 25 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 3599814, + "thread": 2 + } + }, + { + "amount": "134.857446079", + "slot": { + "period": 3761096, + "thread": 28 + } + }, + { + "amount": "134.857446081", + "slot": { + "period": 3927106, + "thread": 8 + } + } + ], + "AU12b6zdq5EarUNbtW9AoCa59RE8rxzBCc1TBno4GYtXKbTtSpBjr": [ + { + "amount": "545.457212885", + "slot": { + "period": 70035, + "thread": 24 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 214259, + "thread": 27 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 431125, + "thread": 10 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 610665, + "thread": 31 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 770526, + "thread": 23 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 892066, + "thread": 24 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 984664, + "thread": 15 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 1224869, + "thread": 5 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 1453769, + "thread": 19 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 1574442, + "thread": 27 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 1740652, + "thread": 21 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 1954239, + "thread": 25 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2141228, + "thread": 31 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2235165, + "thread": 9 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2453278, + "thread": 24 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2534633, + "thread": 15 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2689173, + "thread": 16 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2944029, + "thread": 5 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 2964240, + "thread": 12 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 3223877, + "thread": 24 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 3371273, + "thread": 28 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 3473061, + "thread": 24 + } + }, + { + "amount": "545.457212885", + "slot": { + "period": 3755809, + "thread": 6 + } + }, + { + "amount": "545.457212881", + "slot": { + "period": 3937038, + "thread": 19 + } + } + ], + "AU12b7nh9kdUKASfWuQX9MFEoYvsQ86RmjDbSyCYdG1Evkx5S6zcr": [ + { + "amount": "400.982798609", + "slot": { + "period": 162446, + "thread": 4 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 231752, + "thread": 30 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 325976, + "thread": 8 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 583448, + "thread": 15 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 695066, + "thread": 9 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 945265, + "thread": 2 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1076531, + "thread": 16 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1290635, + "thread": 5 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1464684, + "thread": 22 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1564577, + "thread": 5 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1727350, + "thread": 18 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1869570, + "thread": 19 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 1996676, + "thread": 21 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 2282131, + "thread": 18 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 2429070, + "thread": 31 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 2549104, + "thread": 10 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 2727140, + "thread": 24 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 2854429, + "thread": 16 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 3070374, + "thread": 9 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 3258652, + "thread": 6 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 3307415, + "thread": 8 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 3603589, + "thread": 14 + } + }, + { + "amount": "400.982798609", + "slot": { + "period": 3641803, + "thread": 13 + } + }, + { + "amount": "400.982798612", + "slot": { + "period": 3853377, + "thread": 17 + } + } + ], + "AU12b7pbm4EzgNcpKgLqoGkH75CU5EAn4R6UbH2aLJDdwy46z6WVi": [ + { + "amount": "436.106382599", + "slot": { + "period": 167239, + "thread": 21 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 177051, + "thread": 28 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 453012, + "thread": 2 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 643681, + "thread": 1 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 713870, + "thread": 4 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 891857, + "thread": 6 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1039243, + "thread": 9 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1238710, + "thread": 1 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1332867, + "thread": 23 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1640089, + "thread": 21 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1766647, + "thread": 26 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 1870271, + "thread": 10 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2073540, + "thread": 24 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2193322, + "thread": 28 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2416281, + "thread": 14 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2584626, + "thread": 9 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2773223, + "thread": 7 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 2910561, + "thread": 30 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 3077727, + "thread": 2 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 3155290, + "thread": 12 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 3416436, + "thread": 13 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 3534104, + "thread": 13 + } + }, + { + "amount": "436.106382599", + "slot": { + "period": 3638150, + "thread": 20 + } + }, + { + "amount": "436.106382601", + "slot": { + "period": 3942181, + "thread": 13 + } + } + ], + "AU12b8vqH5X5ZGXisNLb2WVyZhvJR4xrtpmUGQ9K9JhnCze1KM2Nf": [ + { + "amount": "126.372479474", + "slot": { + "period": 33429, + "thread": 19 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 256598, + "thread": 2 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 443429, + "thread": 24 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 590512, + "thread": 7 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 660646, + "thread": 11 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 903639, + "thread": 18 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1091791, + "thread": 2 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1205456, + "thread": 3 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1466251, + "thread": 29 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1529161, + "thread": 19 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1688707, + "thread": 17 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 1877748, + "thread": 27 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2004008, + "thread": 1 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2272315, + "thread": 12 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2418595, + "thread": 25 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2565857, + "thread": 28 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2651651, + "thread": 9 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 2848060, + "thread": 23 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 3099588, + "thread": 9 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 3270428, + "thread": 28 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 3409819, + "thread": 30 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 3536379, + "thread": 14 + } + }, + { + "amount": "126.372479474", + "slot": { + "period": 3758955, + "thread": 21 + } + }, + { + "amount": "126.372479483", + "slot": { + "period": 3879164, + "thread": 6 + } + } + ], + "AU12b9GFe37NoviaMbTeHNEGYaan7Y99RTC2haA8N72LEnpMQ2S1z": [ + { + "amount": "500.308716307", + "slot": { + "period": 57006, + "thread": 22 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 177480, + "thread": 26 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 373176, + "thread": 0 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 544772, + "thread": 20 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 749842, + "thread": 15 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 878439, + "thread": 31 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1051748, + "thread": 26 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1157471, + "thread": 21 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1397213, + "thread": 27 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1590668, + "thread": 24 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1670332, + "thread": 28 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 1961642, + "thread": 15 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2138392, + "thread": 29 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2223851, + "thread": 11 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2329400, + "thread": 2 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2598466, + "thread": 30 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2763113, + "thread": 20 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2799451, + "thread": 4 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 2955561, + "thread": 25 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 3260137, + "thread": 20 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 3354695, + "thread": 16 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 3610205, + "thread": 4 + } + }, + { + "amount": "500.308716307", + "slot": { + "period": 3676982, + "thread": 27 + } + }, + { + "amount": "500.308716308", + "slot": { + "period": 3935697, + "thread": 20 + } + } + ], + "AU12bA7Z8fzvSnecrK7vdkNHfvLq5n7Y2mzjhActJkHigQv21L73F": [ + { + "amount": "260.972806830", + "slot": { + "period": 102381, + "thread": 31 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 276494, + "thread": 7 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 374782, + "thread": 10 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 542308, + "thread": 14 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 722284, + "thread": 22 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 960076, + "thread": 3 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1068814, + "thread": 24 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1300337, + "thread": 14 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1354244, + "thread": 20 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1646707, + "thread": 16 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1726801, + "thread": 8 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 1914919, + "thread": 3 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2097079, + "thread": 17 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2234662, + "thread": 4 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2322141, + "thread": 20 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2596833, + "thread": 1 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2713746, + "thread": 25 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 2868610, + "thread": 3 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 3054099, + "thread": 3 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 3265792, + "thread": 31 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 3310300, + "thread": 20 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 3572187, + "thread": 27 + } + }, + { + "amount": "260.972806830", + "slot": { + "period": 3705426, + "thread": 18 + } + }, + { + "amount": "260.972806832", + "slot": { + "period": 3780504, + "thread": 30 + } + } + ], + "AU12bALXRGynsxJZ3trBG5ggSyXXNwtmYftDPHtiiYRUyfy48ZuQg": [ + { + "amount": "585.572887794", + "slot": { + "period": 113852, + "thread": 29 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 187056, + "thread": 17 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 330247, + "thread": 31 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 646949, + "thread": 27 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 673420, + "thread": 11 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 885510, + "thread": 0 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1011457, + "thread": 19 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1240731, + "thread": 16 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1327382, + "thread": 3 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1621167, + "thread": 12 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1738925, + "thread": 7 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 1964648, + "thread": 1 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2108794, + "thread": 5 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2216561, + "thread": 2 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2301125, + "thread": 12 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2577396, + "thread": 8 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2637762, + "thread": 30 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 2908501, + "thread": 10 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 3024204, + "thread": 0 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 3285978, + "thread": 23 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 3422387, + "thread": 19 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 3575069, + "thread": 6 + } + }, + { + "amount": "585.572887794", + "slot": { + "period": 3730940, + "thread": 18 + } + }, + { + "amount": "585.572887791", + "slot": { + "period": 3811938, + "thread": 23 + } + } + ], + "AU12bAozTF4GfCw375srZVnto785CZdyPCXoDrzoRi75RD3jxnuQw": [ + { + "amount": "371.458666249", + "slot": { + "period": 153594, + "thread": 30 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 308825, + "thread": 3 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 341580, + "thread": 25 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 534734, + "thread": 9 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 742499, + "thread": 7 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 932114, + "thread": 9 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1067841, + "thread": 21 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1188533, + "thread": 8 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1382896, + "thread": 8 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1518408, + "thread": 11 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1726236, + "thread": 19 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 1836010, + "thread": 14 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2028863, + "thread": 1 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2243221, + "thread": 5 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2333442, + "thread": 5 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2599374, + "thread": 8 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2719362, + "thread": 14 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2856615, + "thread": 5 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 2997544, + "thread": 2 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 3281306, + "thread": 12 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 3309928, + "thread": 27 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 3510677, + "thread": 16 + } + }, + { + "amount": "371.458666249", + "slot": { + "period": 3707580, + "thread": 7 + } + }, + { + "amount": "371.458666258", + "slot": { + "period": 3836811, + "thread": 14 + } + } + ], + "AU12bB3Q83LoTu3YEbYT39PKczqc9K8PczrTic4Ey7pwnEGSsSXvT": [ + { + "amount": "121.178106072", + "slot": { + "period": 103770, + "thread": 19 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 310214, + "thread": 26 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 465348, + "thread": 23 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 584183, + "thread": 10 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 734919, + "thread": 22 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 833796, + "thread": 24 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1112890, + "thread": 11 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1164888, + "thread": 8 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1452516, + "thread": 15 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1483658, + "thread": 10 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1707128, + "thread": 26 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 1833091, + "thread": 1 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2032066, + "thread": 29 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2234253, + "thread": 2 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2383003, + "thread": 11 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2500326, + "thread": 2 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2650222, + "thread": 8 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 2810614, + "thread": 23 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 3113145, + "thread": 8 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 3192997, + "thread": 15 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 3409445, + "thread": 4 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 3532296, + "thread": 31 + } + }, + { + "amount": "121.178106072", + "slot": { + "period": 3709283, + "thread": 15 + } + }, + { + "amount": "121.178106066", + "slot": { + "period": 3817775, + "thread": 15 + } + } + ], + "AU12bB8KUScNn63cJ9PrLoufoz2HxvyJ4bWQjEzqPbS9hKXhjGbVU": [ + { + "amount": "180.592427348", + "slot": { + "period": 89078, + "thread": 6 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 193607, + "thread": 29 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 341073, + "thread": 0 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 599235, + "thread": 31 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 657625, + "thread": 30 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 906382, + "thread": 27 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1070454, + "thread": 25 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1193193, + "thread": 23 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1414865, + "thread": 21 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1569762, + "thread": 15 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1663510, + "thread": 0 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1859457, + "thread": 20 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 1994022, + "thread": 18 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 2281796, + "thread": 2 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 2448320, + "thread": 9 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 2615551, + "thread": 11 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 2768537, + "thread": 27 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 2793450, + "thread": 31 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 3001211, + "thread": 0 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 3271221, + "thread": 4 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 3392841, + "thread": 20 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 3570121, + "thread": 10 + } + }, + { + "amount": "180.592427348", + "slot": { + "period": 3772919, + "thread": 24 + } + }, + { + "amount": "180.592427359", + "slot": { + "period": 3814144, + "thread": 9 + } + } + ], + "AU12bB8U32x4X5Hze3bRUdb6DfNqFfTeDd9ukwq7cmnraHYPo622G": [ + { + "amount": "146.917698004", + "slot": { + "period": 47662, + "thread": 12 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 226841, + "thread": 6 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 370684, + "thread": 9 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 571191, + "thread": 3 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 805608, + "thread": 11 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 855614, + "thread": 10 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1019301, + "thread": 0 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1200693, + "thread": 26 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1447536, + "thread": 16 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1581627, + "thread": 10 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1778704, + "thread": 19 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 1839854, + "thread": 15 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2098703, + "thread": 7 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2276548, + "thread": 25 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2368793, + "thread": 30 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2561840, + "thread": 16 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2741308, + "thread": 15 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 2816799, + "thread": 25 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 3059070, + "thread": 1 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 3190084, + "thread": 16 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 3374336, + "thread": 8 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 3537222, + "thread": 11 + } + }, + { + "amount": "146.917698004", + "slot": { + "period": 3668105, + "thread": 18 + } + }, + { + "amount": "146.917697997", + "slot": { + "period": 3856852, + "thread": 22 + } + } + ], + "AU12bBjALsDPkMMhArwgrj5XyzrLY6dhxxac67MKtge8y5SwKFgTV": [ + { + "amount": "223.136420566", + "slot": { + "period": 147091, + "thread": 27 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 240418, + "thread": 22 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 362412, + "thread": 27 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 547135, + "thread": 15 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 725029, + "thread": 29 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 857642, + "thread": 20 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1068268, + "thread": 5 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1187496, + "thread": 5 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1410317, + "thread": 9 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1575613, + "thread": 10 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1778343, + "thread": 5 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 1839171, + "thread": 22 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2000465, + "thread": 25 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2215364, + "thread": 5 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2445403, + "thread": 22 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2494472, + "thread": 10 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2750837, + "thread": 30 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 2884586, + "thread": 26 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 3108387, + "thread": 18 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 3272270, + "thread": 19 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 3383593, + "thread": 15 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 3533431, + "thread": 8 + } + }, + { + "amount": "223.136420566", + "slot": { + "period": 3675371, + "thread": 0 + } + }, + { + "amount": "223.136420555", + "slot": { + "period": 3931438, + "thread": 3 + } + } + ], + "AU12bCX5HrTtJDWn2CtCLeiD9T5529TgBAFmgEUdD7koJyKoLdApu": [ + { + "amount": "52.401057443", + "slot": { + "period": 90007, + "thread": 20 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 250465, + "thread": 5 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 443380, + "thread": 19 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 607274, + "thread": 15 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 741849, + "thread": 31 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 971278, + "thread": 7 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1040394, + "thread": 2 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1268710, + "thread": 2 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1325782, + "thread": 3 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1509865, + "thread": 21 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1648329, + "thread": 11 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 1809337, + "thread": 13 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2015275, + "thread": 14 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2154176, + "thread": 7 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2401980, + "thread": 2 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2516165, + "thread": 22 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2746658, + "thread": 24 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 2889746, + "thread": 19 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 3102346, + "thread": 14 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 3243980, + "thread": 27 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 3324024, + "thread": 2 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 3474707, + "thread": 25 + } + }, + { + "amount": "52.401057443", + "slot": { + "period": 3629984, + "thread": 16 + } + }, + { + "amount": "52.401057447", + "slot": { + "period": 3787276, + "thread": 12 + } + } + ], + "AU12bDE7X8twqYPh71iBzjQWUXNWFyAxGqE9rPj3BBBaVymbyb5t7": [ + { + "amount": "180.511548909", + "slot": { + "period": 21227, + "thread": 23 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 233917, + "thread": 1 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 381577, + "thread": 24 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 633400, + "thread": 5 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 685857, + "thread": 8 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 883032, + "thread": 13 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1125428, + "thread": 11 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1294930, + "thread": 21 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1454631, + "thread": 11 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1609499, + "thread": 18 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1748862, + "thread": 16 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 1845899, + "thread": 31 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2118324, + "thread": 21 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2248829, + "thread": 21 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2426141, + "thread": 21 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2547667, + "thread": 1 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2688146, + "thread": 22 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 2889973, + "thread": 17 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 3009810, + "thread": 28 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 3236882, + "thread": 0 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 3415676, + "thread": 17 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 3492427, + "thread": 4 + } + }, + { + "amount": "180.511548909", + "slot": { + "period": 3657930, + "thread": 19 + } + }, + { + "amount": "180.511548903", + "slot": { + "period": 3847649, + "thread": 31 + } + } + ], + "AU12bDnNU1SgStCBWto9P29RKjRzVU7XSeP5iwnjy4S8Qdday6pY7": [ + { + "amount": "283.378850268", + "slot": { + "period": 61563, + "thread": 2 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 278747, + "thread": 26 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 350167, + "thread": 31 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 512562, + "thread": 18 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 716417, + "thread": 27 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 953237, + "thread": 31 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1042051, + "thread": 25 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1248015, + "thread": 18 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1346653, + "thread": 7 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1612719, + "thread": 31 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1801141, + "thread": 2 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 1904039, + "thread": 25 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2136097, + "thread": 21 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2249958, + "thread": 25 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2410310, + "thread": 2 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2466921, + "thread": 19 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2707000, + "thread": 14 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 2806128, + "thread": 4 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 3104804, + "thread": 15 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 3260822, + "thread": 16 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 3432748, + "thread": 28 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 3553207, + "thread": 30 + } + }, + { + "amount": "283.378850268", + "slot": { + "period": 3767592, + "thread": 16 + } + }, + { + "amount": "283.378850265", + "slot": { + "period": 3789274, + "thread": 31 + } + } + ], + "AU12bDyb9nbafGdG1pE39P3ar9kpoq7jd1sg9wt66MtHN7jjenbTs": [ + { + "amount": "437.430101665", + "slot": { + "period": 100050, + "thread": 16 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 238345, + "thread": 2 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 385418, + "thread": 9 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 595750, + "thread": 0 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 761289, + "thread": 5 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 919539, + "thread": 21 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 998928, + "thread": 11 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 1225023, + "thread": 1 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 1410780, + "thread": 6 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 1515129, + "thread": 4 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 1796223, + "thread": 17 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 1853889, + "thread": 22 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2001947, + "thread": 29 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2193088, + "thread": 1 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2312991, + "thread": 9 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2544972, + "thread": 0 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2705365, + "thread": 16 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 2946979, + "thread": 18 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 3030014, + "thread": 13 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 3178190, + "thread": 16 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 3315163, + "thread": 21 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 3468624, + "thread": 26 + } + }, + { + "amount": "437.430101665", + "slot": { + "period": 3669821, + "thread": 19 + } + }, + { + "amount": "437.430101656", + "slot": { + "period": 3906358, + "thread": 5 + } + } + ], + "AU12bEL5GYHkvhgorzCLAsF1ERaiceoaina4sygpWRHaREvZRZjdi": [ + { + "amount": "360.221740287", + "slot": { + "period": 156529, + "thread": 31 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 178742, + "thread": 19 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 356691, + "thread": 12 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 563439, + "thread": 28 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 680296, + "thread": 30 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 882366, + "thread": 30 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1142026, + "thread": 15 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1289331, + "thread": 25 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1468082, + "thread": 13 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1601012, + "thread": 28 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1786477, + "thread": 11 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 1925503, + "thread": 22 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2112877, + "thread": 10 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2221246, + "thread": 27 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2454619, + "thread": 2 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2593838, + "thread": 20 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2785796, + "thread": 9 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2857871, + "thread": 15 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 2970542, + "thread": 3 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 3171991, + "thread": 14 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 3362032, + "thread": 20 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 3500108, + "thread": 8 + } + }, + { + "amount": "360.221740287", + "slot": { + "period": 3620520, + "thread": 10 + } + }, + { + "amount": "360.221740277", + "slot": { + "period": 3841030, + "thread": 16 + } + } + ], + "AU12bEPxyWTRVYDp7uFAi2ZWXFuge4RGLQyGZbaAyLvwVrDBNZwJ5": [ + { + "amount": "99.346941180", + "slot": { + "period": 58295, + "thread": 14 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 288286, + "thread": 20 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 447490, + "thread": 25 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 626717, + "thread": 19 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 692452, + "thread": 28 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 978047, + "thread": 0 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1108366, + "thread": 15 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1303632, + "thread": 8 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1382995, + "thread": 23 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1542425, + "thread": 19 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1697005, + "thread": 14 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 1939703, + "thread": 8 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2061222, + "thread": 1 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2256419, + "thread": 12 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2362116, + "thread": 16 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2557898, + "thread": 30 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2767226, + "thread": 29 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 2816865, + "thread": 16 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 3015832, + "thread": 29 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 3134513, + "thread": 20 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 3353071, + "thread": 7 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 3542961, + "thread": 29 + } + }, + { + "amount": "99.346941180", + "slot": { + "period": 3723424, + "thread": 0 + } + }, + { + "amount": "99.346941190", + "slot": { + "period": 3937322, + "thread": 15 + } + } + ], + "AU12bEim2zJEpeBLjCYZcqNeqmfxpEN7LU1EhUCgqjYa4pmnoZP7T": [ + { + "amount": "67.529885950", + "slot": { + "period": 18712, + "thread": 15 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 269086, + "thread": 1 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 414286, + "thread": 20 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 628495, + "thread": 30 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 755589, + "thread": 16 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 834353, + "thread": 16 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1045470, + "thread": 27 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1240817, + "thread": 31 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1410100, + "thread": 27 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1607370, + "thread": 12 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1709181, + "thread": 10 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 1959182, + "thread": 14 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2081828, + "thread": 11 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2234787, + "thread": 1 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2359315, + "thread": 28 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2608762, + "thread": 12 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2723786, + "thread": 28 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 2833620, + "thread": 12 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 3044106, + "thread": 9 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 3243728, + "thread": 30 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 3306678, + "thread": 25 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 3610594, + "thread": 1 + } + }, + { + "amount": "67.529885950", + "slot": { + "period": 3622416, + "thread": 29 + } + }, + { + "amount": "67.529885951", + "slot": { + "period": 3888290, + "thread": 7 + } + } + ], + "AU12bFAhbmfxAY9hDWknU6B6TyqNTVBtuP8nCbZ3yBG2zHoSdfc3R": [ + { + "amount": "160.205807180", + "slot": { + "period": 66251, + "thread": 2 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 181008, + "thread": 20 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 357230, + "thread": 16 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 633429, + "thread": 11 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 662015, + "thread": 8 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 909421, + "thread": 1 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1102597, + "thread": 16 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1206098, + "thread": 15 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1408398, + "thread": 22 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1569073, + "thread": 21 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1651424, + "thread": 20 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 1814779, + "thread": 30 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2070159, + "thread": 10 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2215673, + "thread": 24 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2439420, + "thread": 15 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2563505, + "thread": 26 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2652080, + "thread": 15 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 2913992, + "thread": 7 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 3029860, + "thread": 8 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 3283655, + "thread": 28 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 3319929, + "thread": 9 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 3525992, + "thread": 21 + } + }, + { + "amount": "160.205807180", + "slot": { + "period": 3702035, + "thread": 12 + } + }, + { + "amount": "160.205807188", + "slot": { + "period": 3852630, + "thread": 26 + } + } + ], + "AU12bFkfWetscsHoye7d1M1EQu38Uq6bcdZoaULZDdj3Gpfbvf3F4": [ + { + "amount": "70.197371905", + "slot": { + "period": 102541, + "thread": 25 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 222100, + "thread": 30 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 344786, + "thread": 30 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 646089, + "thread": 19 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 756314, + "thread": 23 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 966363, + "thread": 29 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1121052, + "thread": 17 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1188977, + "thread": 10 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1327589, + "thread": 28 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1517753, + "thread": 23 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1756776, + "thread": 24 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 1910668, + "thread": 9 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2064960, + "thread": 16 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2203627, + "thread": 20 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2444727, + "thread": 26 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2583486, + "thread": 11 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2769384, + "thread": 21 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 2873650, + "thread": 5 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 3041333, + "thread": 9 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 3280386, + "thread": 17 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 3332214, + "thread": 7 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 3509800, + "thread": 23 + } + }, + { + "amount": "70.197371905", + "slot": { + "period": 3677461, + "thread": 18 + } + }, + { + "amount": "70.197371916", + "slot": { + "period": 3784580, + "thread": 19 + } + } + ], + "AU12bGtB2QWDEbqpuLG1ZuTP3EJLN6NT8tpFnfio4tRW7NmuA6Sb5": [ + { + "amount": "53.130634758", + "slot": { + "period": 151980, + "thread": 29 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 191575, + "thread": 11 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 378934, + "thread": 1 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 646567, + "thread": 4 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 661165, + "thread": 13 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 940098, + "thread": 4 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 985401, + "thread": 25 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 1293427, + "thread": 0 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 1353570, + "thread": 10 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 1583876, + "thread": 13 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 1741664, + "thread": 24 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 1868435, + "thread": 8 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2043753, + "thread": 25 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2287226, + "thread": 17 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2365452, + "thread": 8 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2499804, + "thread": 23 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2736616, + "thread": 22 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 2850029, + "thread": 17 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 3050779, + "thread": 30 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 3214339, + "thread": 7 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 3340120, + "thread": 26 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 3519498, + "thread": 21 + } + }, + { + "amount": "53.130634758", + "slot": { + "period": 3700618, + "thread": 27 + } + }, + { + "amount": "53.130634770", + "slot": { + "period": 3853008, + "thread": 15 + } + } + ], + "AU12bH7Ybdu2oMnrabwfLTcWE2bXq9u2Lznx7B45TJud9PTsx2hPX": [ + { + "amount": "551.061847399", + "slot": { + "period": 12090, + "thread": 31 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 285172, + "thread": 24 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 453032, + "thread": 25 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 494622, + "thread": 24 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 748600, + "thread": 19 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 916058, + "thread": 23 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1032607, + "thread": 4 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1298848, + "thread": 25 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1408645, + "thread": 17 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1644158, + "thread": 27 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1729839, + "thread": 0 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 1812938, + "thread": 4 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2118093, + "thread": 12 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2205346, + "thread": 31 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2388492, + "thread": 18 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2522773, + "thread": 26 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2765177, + "thread": 0 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 2886108, + "thread": 10 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 3057360, + "thread": 20 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 3251008, + "thread": 4 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 3440359, + "thread": 2 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 3479281, + "thread": 18 + } + }, + { + "amount": "551.061847399", + "slot": { + "period": 3627940, + "thread": 3 + } + }, + { + "amount": "551.061847391", + "slot": { + "period": 3882032, + "thread": 30 + } + } + ], + "AU12bHG7uxrxDDhpzYPBC6YrasuVx1h68gYjAjX3eS7VXKsfKv8UX": [ + { + "amount": "445.831446128", + "slot": { + "period": 131541, + "thread": 1 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 168028, + "thread": 23 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 441696, + "thread": 9 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 512337, + "thread": 11 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 785714, + "thread": 24 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 852131, + "thread": 28 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1076572, + "thread": 4 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1284843, + "thread": 24 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1432944, + "thread": 19 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1545156, + "thread": 30 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1769331, + "thread": 24 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 1836965, + "thread": 2 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2025575, + "thread": 19 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2231755, + "thread": 18 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2445764, + "thread": 0 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2525548, + "thread": 3 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2681334, + "thread": 22 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 2878781, + "thread": 25 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3056902, + "thread": 1 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3132992, + "thread": 2 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3327900, + "thread": 22 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3608569, + "thread": 10 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3665865, + "thread": 0 + } + }, + { + "amount": "445.831446128", + "slot": { + "period": 3915230, + "thread": 27 + } + } + ], + "AU12bJ2UDNQUS6JdJNoCxDc9CwHSw6dr42nu23GTH2gBYRxdFggYZ": [ + { + "amount": "314.543043826", + "slot": { + "period": 126555, + "thread": 17 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 202232, + "thread": 18 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 351734, + "thread": 21 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 552643, + "thread": 12 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 663677, + "thread": 5 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 936977, + "thread": 31 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1032756, + "thread": 19 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1283840, + "thread": 15 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1388326, + "thread": 31 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1489946, + "thread": 29 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1772113, + "thread": 14 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 1922643, + "thread": 15 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2130043, + "thread": 30 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2183276, + "thread": 31 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2363010, + "thread": 20 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2478196, + "thread": 22 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2655686, + "thread": 31 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 2868454, + "thread": 18 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 3019953, + "thread": 15 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 3214925, + "thread": 15 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 3375615, + "thread": 14 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 3611788, + "thread": 20 + } + }, + { + "amount": "314.543043826", + "slot": { + "period": 3777074, + "thread": 23 + } + }, + { + "amount": "314.543043825", + "slot": { + "period": 3823553, + "thread": 19 + } + } + ], + "AU12bJzPWCi3zBS47kqBRKCjAYSCTondMre5mDgJNAWJTZcECNDUY": [ + { + "amount": "114.870549634", + "slot": { + "period": 160949, + "thread": 24 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 316214, + "thread": 11 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 485573, + "thread": 21 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 494406, + "thread": 16 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 818135, + "thread": 0 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 892117, + "thread": 23 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1104357, + "thread": 10 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1259499, + "thread": 1 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1428089, + "thread": 1 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1479689, + "thread": 12 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1772606, + "thread": 8 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1835115, + "thread": 5 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 1982693, + "thread": 12 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2223528, + "thread": 6 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2303488, + "thread": 9 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2524025, + "thread": 21 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2655510, + "thread": 2 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2918836, + "thread": 1 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 2976661, + "thread": 8 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 3194435, + "thread": 0 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 3443981, + "thread": 0 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 3458165, + "thread": 16 + } + }, + { + "amount": "114.870549634", + "slot": { + "period": 3740436, + "thread": 9 + } + }, + { + "amount": "114.870549627", + "slot": { + "period": 3853282, + "thread": 19 + } + } + ], + "AU12bMVppjyJTURJtP4d3aY8afixFP5DQF9MWrtvAkwkBNZhMTSjE": [ + { + "amount": "88.566135103", + "slot": { + "period": 27782, + "thread": 4 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 243923, + "thread": 21 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 480069, + "thread": 1 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 549576, + "thread": 7 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 730131, + "thread": 27 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 958574, + "thread": 17 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 996648, + "thread": 26 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 1228424, + "thread": 26 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 1374104, + "thread": 24 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 1522179, + "thread": 18 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 1693666, + "thread": 31 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 1874738, + "thread": 19 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2067862, + "thread": 13 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2169250, + "thread": 11 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2347396, + "thread": 21 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2593530, + "thread": 11 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2679222, + "thread": 13 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 2793328, + "thread": 10 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 3062892, + "thread": 14 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 3231478, + "thread": 15 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 3332480, + "thread": 21 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 3586548, + "thread": 20 + } + }, + { + "amount": "88.566135103", + "slot": { + "period": 3742077, + "thread": 25 + } + }, + { + "amount": "88.566135096", + "slot": { + "period": 3890292, + "thread": 15 + } + } + ], + "AU12bPmpudbN2e49HZMU6r9WWB1NnuYcLVUkEbHLnQtXXmR5b1nLY": [ + { + "amount": "86.321395225", + "slot": { + "period": 60548, + "thread": 0 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 177694, + "thread": 17 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 362132, + "thread": 18 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 558010, + "thread": 8 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 721110, + "thread": 24 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 855767, + "thread": 9 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1105940, + "thread": 1 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1249849, + "thread": 19 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1359926, + "thread": 17 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1505573, + "thread": 1 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1658044, + "thread": 3 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 1852144, + "thread": 23 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2096132, + "thread": 28 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2216759, + "thread": 2 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2456822, + "thread": 27 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2469774, + "thread": 18 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2721469, + "thread": 14 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 2807765, + "thread": 11 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 3043611, + "thread": 23 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 3242601, + "thread": 31 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 3413607, + "thread": 27 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 3493535, + "thread": 27 + } + }, + { + "amount": "86.321395225", + "slot": { + "period": 3740301, + "thread": 16 + } + }, + { + "amount": "86.321395233", + "slot": { + "period": 3795750, + "thread": 16 + } + } + ], + "AU12bQHehF3VxUDoxazJPvQi9A3dr1o2QvixZLAonXBarNMUgoQx9": [ + { + "amount": "123.644155099", + "slot": { + "period": 98095, + "thread": 30 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 235044, + "thread": 5 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 484319, + "thread": 23 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 515640, + "thread": 19 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 752014, + "thread": 20 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 872728, + "thread": 12 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1053388, + "thread": 5 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1188342, + "thread": 31 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1407489, + "thread": 2 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1516401, + "thread": 17 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1796139, + "thread": 9 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1933018, + "thread": 0 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 1983997, + "thread": 9 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2162820, + "thread": 12 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2363488, + "thread": 29 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2523488, + "thread": 23 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2718320, + "thread": 31 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2930047, + "thread": 14 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 2992519, + "thread": 28 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 3176830, + "thread": 0 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 3376962, + "thread": 30 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 3576958, + "thread": 8 + } + }, + { + "amount": "123.644155099", + "slot": { + "period": 3680739, + "thread": 11 + } + }, + { + "amount": "123.644155088", + "slot": { + "period": 3811217, + "thread": 19 + } + } + ], + "AU12bQYjgGQY3aEQW7fyE7jke4c41W6Qtvbu2KBcRYnVEyeQySnSA": [ + { + "amount": "364.094884887", + "slot": { + "period": 154811, + "thread": 1 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 283214, + "thread": 19 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 379144, + "thread": 31 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 517279, + "thread": 1 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 796895, + "thread": 11 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 967235, + "thread": 13 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 997520, + "thread": 3 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 1217238, + "thread": 15 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 1451305, + "thread": 15 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 1591066, + "thread": 29 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 1678991, + "thread": 22 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 1914381, + "thread": 31 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2092181, + "thread": 12 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2239278, + "thread": 6 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2382879, + "thread": 19 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2473477, + "thread": 0 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2723547, + "thread": 2 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 2897507, + "thread": 9 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 3074701, + "thread": 5 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 3243697, + "thread": 13 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 3424820, + "thread": 18 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 3492509, + "thread": 18 + } + }, + { + "amount": "364.094884887", + "slot": { + "period": 3683919, + "thread": 25 + } + }, + { + "amount": "364.094884893", + "slot": { + "period": 3922412, + "thread": 0 + } + } + ], + "AU12bQjYtntMVmYixv5FxLJsjDH2pbzAaCXuy7Uy35HpUxmvtjtBt": [ + { + "amount": "135.933321661", + "slot": { + "period": 153187, + "thread": 14 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 267551, + "thread": 5 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 422601, + "thread": 17 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 561867, + "thread": 21 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 820570, + "thread": 19 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 933559, + "thread": 15 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1143357, + "thread": 6 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1317010, + "thread": 10 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1317853, + "thread": 29 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1613643, + "thread": 23 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1740041, + "thread": 29 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 1856639, + "thread": 20 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2106633, + "thread": 12 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2258650, + "thread": 10 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2364032, + "thread": 17 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2506656, + "thread": 21 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2739721, + "thread": 23 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 2812444, + "thread": 13 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 3096853, + "thread": 29 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 3245582, + "thread": 26 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 3351800, + "thread": 5 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 3616379, + "thread": 23 + } + }, + { + "amount": "135.933321661", + "slot": { + "period": 3621725, + "thread": 1 + } + }, + { + "amount": "135.933321656", + "slot": { + "period": 3802945, + "thread": 23 + } + } + ], + "AU12bQrF5cScbr3P6Xqa34rwBJrvQkjhLugwim2sjV6ZrPmPK4HJ8": [ + { + "amount": "509.663521531", + "slot": { + "period": 131951, + "thread": 21 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 283014, + "thread": 18 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 460575, + "thread": 8 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 508885, + "thread": 0 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 708422, + "thread": 12 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 913695, + "thread": 14 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 984054, + "thread": 16 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 1298983, + "thread": 30 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 1348407, + "thread": 25 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 1618232, + "thread": 11 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 1683623, + "thread": 12 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 1898585, + "thread": 23 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2126674, + "thread": 5 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2223939, + "thread": 6 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2393836, + "thread": 14 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2504388, + "thread": 0 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2772940, + "thread": 3 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2930812, + "thread": 2 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 2970286, + "thread": 5 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 3162787, + "thread": 19 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 3343084, + "thread": 28 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 3459824, + "thread": 1 + } + }, + { + "amount": "509.663521531", + "slot": { + "period": 3693181, + "thread": 20 + } + }, + { + "amount": "509.663521535", + "slot": { + "period": 3891744, + "thread": 15 + } + } + ], + "AU12bR9y9rKPwGqetrwDnUQMFwZQksbfSWaLuLnMJFrpD8RaKt1yi": [ + { + "amount": "66.815685857", + "slot": { + "period": 62076, + "thread": 23 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 172829, + "thread": 14 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 486486, + "thread": 12 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 644529, + "thread": 25 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 794414, + "thread": 24 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 858732, + "thread": 31 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1034806, + "thread": 23 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1238316, + "thread": 27 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1459893, + "thread": 18 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1594830, + "thread": 20 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1699897, + "thread": 22 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 1831077, + "thread": 13 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2103073, + "thread": 26 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2284016, + "thread": 28 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2394949, + "thread": 7 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2550595, + "thread": 6 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2684974, + "thread": 0 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 2801062, + "thread": 6 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 3034912, + "thread": 5 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 3142789, + "thread": 2 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 3423486, + "thread": 20 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 3501424, + "thread": 26 + } + }, + { + "amount": "66.815685857", + "slot": { + "period": 3649280, + "thread": 17 + } + }, + { + "amount": "66.815685863", + "slot": { + "period": 3868707, + "thread": 18 + } + } + ], + "AU12bS6wD1dmzHYs6KnFPh7gzMjqfzsYaa8TFVUesZhQvWeAGgnnQ": [ + { + "amount": "158.762223868", + "slot": { + "period": 96840, + "thread": 18 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 206134, + "thread": 25 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 438005, + "thread": 30 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 573985, + "thread": 28 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 792888, + "thread": 17 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 822813, + "thread": 29 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1126339, + "thread": 24 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1269706, + "thread": 6 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1454967, + "thread": 9 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1609044, + "thread": 0 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1652919, + "thread": 11 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1925096, + "thread": 25 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 1979963, + "thread": 28 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2289568, + "thread": 28 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2330680, + "thread": 8 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2560086, + "thread": 12 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2742573, + "thread": 21 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2952052, + "thread": 20 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 2999094, + "thread": 23 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 3187620, + "thread": 27 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 3410904, + "thread": 15 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 3584155, + "thread": 18 + } + }, + { + "amount": "158.762223868", + "slot": { + "period": 3752847, + "thread": 30 + } + }, + { + "amount": "158.762223867", + "slot": { + "period": 3932445, + "thread": 16 + } + } + ], + "AU12bSAbb24bd76DMh1bfWV3uT3tmrK43rfvHx3up6ZWW8ZWosyE1": [ + { + "amount": "199.978310128", + "slot": { + "period": 80789, + "thread": 10 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 232733, + "thread": 20 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 430410, + "thread": 11 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 512761, + "thread": 16 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 754039, + "thread": 14 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 844887, + "thread": 11 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1098094, + "thread": 31 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1183652, + "thread": 27 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1360665, + "thread": 25 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1491161, + "thread": 11 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1647454, + "thread": 5 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 1826440, + "thread": 1 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2106644, + "thread": 18 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2181805, + "thread": 17 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2414139, + "thread": 17 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2558861, + "thread": 27 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2694019, + "thread": 9 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 2869389, + "thread": 26 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 3040005, + "thread": 15 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 3276399, + "thread": 27 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 3330846, + "thread": 18 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 3549976, + "thread": 23 + } + }, + { + "amount": "199.978310128", + "slot": { + "period": 3725583, + "thread": 29 + } + }, + { + "amount": "199.978310119", + "slot": { + "period": 3863396, + "thread": 1 + } + } + ], + "AU12bSEDwSAZmFtSuJaZxfbaQi2MPnkdMcGwsudhjWmF8tt3DQj5B": [ + { + "amount": "230.724498049", + "slot": { + "period": 157872, + "thread": 29 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 200491, + "thread": 1 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 478769, + "thread": 12 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 543967, + "thread": 10 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 738537, + "thread": 25 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 941299, + "thread": 30 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1017520, + "thread": 10 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1309772, + "thread": 7 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1346971, + "thread": 15 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1515117, + "thread": 5 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1698049, + "thread": 4 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 1880909, + "thread": 7 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2140244, + "thread": 27 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2193808, + "thread": 30 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2298969, + "thread": 4 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2510743, + "thread": 3 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2726964, + "thread": 29 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 2938362, + "thread": 14 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 3119980, + "thread": 22 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 3196455, + "thread": 1 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 3366591, + "thread": 18 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 3591661, + "thread": 20 + } + }, + { + "amount": "230.724498049", + "slot": { + "period": 3712694, + "thread": 7 + } + }, + { + "amount": "230.724498055", + "slot": { + "period": 3836843, + "thread": 25 + } + } + ], + "AU12bSJ1pwBM9AiteH2xDyhwEYGbR982ZivJufUP1KdnTyKRUD28F": [ + { + "amount": "297.561640911", + "slot": { + "period": 65119, + "thread": 1 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 265843, + "thread": 30 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 443973, + "thread": 29 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 625597, + "thread": 3 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 739499, + "thread": 21 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 875201, + "thread": 10 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1126327, + "thread": 9 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1299326, + "thread": 9 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1416342, + "thread": 29 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1591334, + "thread": 10 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1798831, + "thread": 13 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 1865234, + "thread": 9 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2124759, + "thread": 28 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2170803, + "thread": 12 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2389299, + "thread": 27 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2475072, + "thread": 20 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2688812, + "thread": 22 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 2845923, + "thread": 9 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 3109466, + "thread": 9 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 3244801, + "thread": 3 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 3342638, + "thread": 25 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 3616245, + "thread": 19 + } + }, + { + "amount": "297.561640911", + "slot": { + "period": 3778465, + "thread": 11 + } + }, + { + "amount": "297.561640908", + "slot": { + "period": 3796418, + "thread": 13 + } + } + ], + "AU12bSzxJJbttFbybGSxoXJd19WtQMkYBAYRYK6w7yeEb47iAXBRj": [ + { + "amount": "202.523389958", + "slot": { + "period": 152979, + "thread": 17 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 297359, + "thread": 16 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 449155, + "thread": 2 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 493022, + "thread": 2 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 719610, + "thread": 29 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 952447, + "thread": 5 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1125376, + "thread": 6 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1253934, + "thread": 24 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1426221, + "thread": 1 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1483844, + "thread": 7 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1700880, + "thread": 31 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 1940754, + "thread": 14 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2011197, + "thread": 25 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2195775, + "thread": 6 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2351108, + "thread": 31 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2477599, + "thread": 10 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2690260, + "thread": 11 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2911139, + "thread": 9 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 2961248, + "thread": 21 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 3246469, + "thread": 0 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 3422463, + "thread": 26 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 3477948, + "thread": 20 + } + }, + { + "amount": "202.523389958", + "slot": { + "period": 3755179, + "thread": 15 + } + }, + { + "amount": "202.523389963", + "slot": { + "period": 3886150, + "thread": 10 + } + } + ], + "AU12bV7jPZxKjvqhqD7itiLENi5jYzTpj4bdgtdjx7RZCkdoh1wGN": [ + { + "amount": "91.664631360", + "slot": { + "period": 30184, + "thread": 0 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 232930, + "thread": 2 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 384227, + "thread": 7 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 612756, + "thread": 25 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 660008, + "thread": 10 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 961447, + "thread": 1 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1093161, + "thread": 1 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1293066, + "thread": 20 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1399550, + "thread": 25 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1582636, + "thread": 28 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1757168, + "thread": 1 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 1955005, + "thread": 27 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2042417, + "thread": 30 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2224602, + "thread": 28 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2438042, + "thread": 30 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2566000, + "thread": 4 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2717099, + "thread": 22 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 2838172, + "thread": 26 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 3043978, + "thread": 7 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 3130146, + "thread": 6 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 3410350, + "thread": 22 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 3524264, + "thread": 7 + } + }, + { + "amount": "91.664631360", + "slot": { + "period": 3708638, + "thread": 13 + } + }, + { + "amount": "91.664631367", + "slot": { + "period": 3917496, + "thread": 0 + } + } + ], + "AU12bWmGbKhks3wNHADXBix54NAtikthXoe9NZBDfNqmraFwP7F3H": [ + { + "amount": "618.079224293", + "slot": { + "period": 151336, + "thread": 30 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 219790, + "thread": 24 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 372098, + "thread": 19 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 627208, + "thread": 7 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 667041, + "thread": 14 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 870515, + "thread": 19 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1066082, + "thread": 25 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1194506, + "thread": 1 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1369138, + "thread": 15 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1585363, + "thread": 31 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1728581, + "thread": 6 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 1857020, + "thread": 22 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2060740, + "thread": 22 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2240891, + "thread": 8 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2375816, + "thread": 25 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2568411, + "thread": 14 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2746074, + "thread": 19 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 2834886, + "thread": 6 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 3102172, + "thread": 23 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 3272087, + "thread": 0 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 3419351, + "thread": 20 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 3482114, + "thread": 20 + } + }, + { + "amount": "618.079224293", + "slot": { + "period": 3760299, + "thread": 7 + } + }, + { + "amount": "618.079224288", + "slot": { + "period": 3934287, + "thread": 12 + } + } + ], + "AU12bX2JbcDaESisHiReJwgJ41fD3d8J4gsn6BGzSZjDo3yRnLfDV": [ + { + "amount": "119.069197035", + "slot": { + "period": 134260, + "thread": 14 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 296144, + "thread": 23 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 475638, + "thread": 27 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 493057, + "thread": 1 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 690089, + "thread": 22 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 907202, + "thread": 18 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1031447, + "thread": 16 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1305704, + "thread": 19 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1324225, + "thread": 16 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1517730, + "thread": 13 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1782414, + "thread": 19 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 1835980, + "thread": 1 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2130025, + "thread": 20 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2190993, + "thread": 2 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2347047, + "thread": 8 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2535274, + "thread": 25 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2694263, + "thread": 16 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 2881556, + "thread": 23 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 3080934, + "thread": 1 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 3186044, + "thread": 12 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 3449558, + "thread": 4 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 3509857, + "thread": 28 + } + }, + { + "amount": "119.069197035", + "slot": { + "period": 3734262, + "thread": 27 + } + }, + { + "amount": "119.069197033", + "slot": { + "period": 3837478, + "thread": 5 + } + } + ], + "AU12bXjshQivDyd99TgwLxa3396jkDVEuRwHSUKMZGYb35UNN4woY": [ + { + "amount": "241.728003168", + "slot": { + "period": 70187, + "thread": 2 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 320325, + "thread": 2 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 365343, + "thread": 15 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 618735, + "thread": 25 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 674299, + "thread": 15 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 836870, + "thread": 30 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1141441, + "thread": 9 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1256053, + "thread": 15 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1455446, + "thread": 11 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1522774, + "thread": 12 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1732648, + "thread": 10 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 1919479, + "thread": 15 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2002330, + "thread": 0 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2292123, + "thread": 1 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2381503, + "thread": 5 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2499831, + "thread": 8 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2691543, + "thread": 16 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 2810619, + "thread": 28 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 3026202, + "thread": 11 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 3216800, + "thread": 23 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 3382150, + "thread": 8 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 3543621, + "thread": 17 + } + }, + { + "amount": "241.728003168", + "slot": { + "period": 3778059, + "thread": 13 + } + }, + { + "amount": "241.728003159", + "slot": { + "period": 3917045, + "thread": 15 + } + } + ], + "AU12bZuWwFEFDBuGak4BFrxbgBmE8cJYFyKyPScJycEHvnwJH62xi": [ + { + "amount": "80.812522354", + "slot": { + "period": 15380, + "thread": 6 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 308038, + "thread": 1 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 391092, + "thread": 28 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 651512, + "thread": 0 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 798878, + "thread": 18 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 964922, + "thread": 2 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1075679, + "thread": 3 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1181988, + "thread": 17 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1475094, + "thread": 0 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1523750, + "thread": 29 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1752736, + "thread": 28 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 1879399, + "thread": 8 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2035445, + "thread": 12 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2285139, + "thread": 31 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2424367, + "thread": 9 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2537670, + "thread": 26 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2762244, + "thread": 3 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 2934142, + "thread": 1 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 3023415, + "thread": 24 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 3173778, + "thread": 10 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 3382814, + "thread": 23 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 3617909, + "thread": 9 + } + }, + { + "amount": "80.812522354", + "slot": { + "period": 3670489, + "thread": 5 + } + }, + { + "amount": "80.812522343", + "slot": { + "period": 3825524, + "thread": 27 + } + } + ], + "AU12ba1FcYEAeWK8LQpGGYRzhrFLJpKAygzzqDLB6QhGmtdRRm4fY": [ + { + "amount": "534.527140769", + "slot": { + "period": 19189, + "thread": 28 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 277036, + "thread": 15 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 411945, + "thread": 2 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 560099, + "thread": 13 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 798591, + "thread": 15 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 968730, + "thread": 10 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1094103, + "thread": 18 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1294922, + "thread": 30 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1449491, + "thread": 20 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1619148, + "thread": 2 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1772845, + "thread": 0 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1853315, + "thread": 25 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 1979210, + "thread": 24 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2159275, + "thread": 19 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2350314, + "thread": 14 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2497384, + "thread": 23 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2752013, + "thread": 24 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2932956, + "thread": 8 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 2985464, + "thread": 16 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 3150109, + "thread": 2 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 3324828, + "thread": 16 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 3560751, + "thread": 7 + } + }, + { + "amount": "534.527140769", + "slot": { + "period": 3688798, + "thread": 1 + } + }, + { + "amount": "534.527140767", + "slot": { + "period": 3911437, + "thread": 7 + } + } + ], + "AU12bavk4zQXAQ4oa5y3SN4UKJh6g3uSwGA6vh6AZRuS5h5nRyiXA": [ + { + "amount": "70.622894308", + "slot": { + "period": 16886, + "thread": 28 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 232169, + "thread": 15 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 431835, + "thread": 13 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 570018, + "thread": 30 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 739267, + "thread": 27 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 860074, + "thread": 20 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1098770, + "thread": 8 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1254457, + "thread": 31 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1362643, + "thread": 31 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1507912, + "thread": 20 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1694681, + "thread": 18 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 1848336, + "thread": 31 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2096954, + "thread": 11 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2215568, + "thread": 28 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2336728, + "thread": 25 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2570939, + "thread": 18 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2626028, + "thread": 9 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2949065, + "thread": 27 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 2981566, + "thread": 13 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 3203175, + "thread": 21 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 3341090, + "thread": 15 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 3548041, + "thread": 15 + } + }, + { + "amount": "70.622894308", + "slot": { + "period": 3761148, + "thread": 11 + } + }, + { + "amount": "70.622894306", + "slot": { + "period": 3806789, + "thread": 15 + } + } + ], + "AU12bbSd5chCosvCm6mcVeJwdHCJg1jXsECwhGnpqBy5ixo6T61or": [ + { + "amount": "272.154094101", + "slot": { + "period": 139073, + "thread": 15 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 200191, + "thread": 8 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 390040, + "thread": 18 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 560835, + "thread": 1 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 815512, + "thread": 29 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 837597, + "thread": 10 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1109057, + "thread": 6 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1308724, + "thread": 23 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1322136, + "thread": 15 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1645752, + "thread": 5 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1799851, + "thread": 23 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 1944277, + "thread": 4 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2013327, + "thread": 11 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2159493, + "thread": 5 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2341705, + "thread": 24 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2543096, + "thread": 10 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2756095, + "thread": 27 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 2794828, + "thread": 18 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 3111459, + "thread": 9 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 3253871, + "thread": 28 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 3345830, + "thread": 11 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 3532344, + "thread": 22 + } + }, + { + "amount": "272.154094101", + "slot": { + "period": 3619936, + "thread": 23 + } + }, + { + "amount": "272.154094090", + "slot": { + "period": 3827967, + "thread": 2 + } + } + ], + "AU12bbXVi6BwysLeC1v4CWcRjn4jk9bEzda7w3FLeD6ujuEHhwBe3": [ + { + "amount": "158.355897465", + "slot": { + "period": 163184, + "thread": 23 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 299832, + "thread": 6 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 369359, + "thread": 25 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 625179, + "thread": 1 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 666567, + "thread": 3 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 882337, + "thread": 5 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1145784, + "thread": 24 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1315649, + "thread": 16 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1375758, + "thread": 19 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1628017, + "thread": 13 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1766873, + "thread": 3 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 1823309, + "thread": 3 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2119450, + "thread": 1 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2156165, + "thread": 21 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2442502, + "thread": 23 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2476580, + "thread": 10 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2741516, + "thread": 11 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 2920597, + "thread": 7 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 3066026, + "thread": 3 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 3246965, + "thread": 5 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 3339992, + "thread": 9 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 3485948, + "thread": 15 + } + }, + { + "amount": "158.355897465", + "slot": { + "period": 3665495, + "thread": 0 + } + }, + { + "amount": "158.355897455", + "slot": { + "period": 3911240, + "thread": 0 + } + } + ], + "AU12bbmvBzC74S1wi8PSb5qgfr9yB8d9QhXqyBnXZLaRGEbse4nx7": [ + { + "amount": "758.654751221", + "slot": { + "period": 14491, + "thread": 23 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 294082, + "thread": 14 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 408965, + "thread": 11 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 638234, + "thread": 26 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 697305, + "thread": 31 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 896365, + "thread": 29 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1020748, + "thread": 6 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1307892, + "thread": 27 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1354471, + "thread": 25 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1612140, + "thread": 16 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1723691, + "thread": 21 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 1940058, + "thread": 5 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2073243, + "thread": 5 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2254322, + "thread": 28 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2453015, + "thread": 28 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2557179, + "thread": 30 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2654915, + "thread": 12 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2792432, + "thread": 7 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 2968639, + "thread": 21 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 3127804, + "thread": 9 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 3361075, + "thread": 15 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 3492509, + "thread": 20 + } + }, + { + "amount": "758.654751221", + "slot": { + "period": 3665564, + "thread": 29 + } + }, + { + "amount": "758.654751224", + "slot": { + "period": 3831322, + "thread": 10 + } + } + ], + "AU12bcjBxzFhtYYJHchtKMP13dwHhQigurrMGMunyjLmamuX6D6ns": [ + { + "amount": "147.833491170", + "slot": { + "period": 152744, + "thread": 14 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 188253, + "thread": 17 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 436190, + "thread": 16 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 651049, + "thread": 22 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 717865, + "thread": 4 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 960122, + "thread": 23 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1144569, + "thread": 15 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1224287, + "thread": 31 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1345264, + "thread": 22 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1603077, + "thread": 17 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1673060, + "thread": 6 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 1812896, + "thread": 13 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2111050, + "thread": 26 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2180503, + "thread": 6 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2403219, + "thread": 12 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2476542, + "thread": 7 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2656687, + "thread": 14 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 2920400, + "thread": 2 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 3113875, + "thread": 10 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 3203384, + "thread": 1 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 3382823, + "thread": 4 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 3451085, + "thread": 13 + } + }, + { + "amount": "147.833491170", + "slot": { + "period": 3764793, + "thread": 16 + } + }, + { + "amount": "147.833491180", + "slot": { + "period": 3916921, + "thread": 12 + } + } + ], + "AU12bcoE58uFho6HfTJ8f8pjjrKeg6wXNVi8FxX91MgKAHKmzcSNq": [ + { + "amount": "295.529169129", + "slot": { + "period": 115689, + "thread": 23 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 239715, + "thread": 1 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 410749, + "thread": 12 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 584439, + "thread": 25 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 820472, + "thread": 6 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 870555, + "thread": 20 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1044351, + "thread": 23 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1304882, + "thread": 7 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1415533, + "thread": 15 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1548535, + "thread": 22 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1752557, + "thread": 26 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 1820165, + "thread": 3 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2120440, + "thread": 5 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2281888, + "thread": 0 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2352757, + "thread": 7 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2610896, + "thread": 10 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2712582, + "thread": 23 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2803452, + "thread": 11 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 2972042, + "thread": 8 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 3141948, + "thread": 19 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 3371191, + "thread": 16 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 3487423, + "thread": 2 + } + }, + { + "amount": "295.529169129", + "slot": { + "period": 3773907, + "thread": 12 + } + }, + { + "amount": "295.529169124", + "slot": { + "period": 3849295, + "thread": 0 + } + } + ], + "AU12bdpHDw14hhr49LxUCwZnmSRAtYqZx5qVXbUbnTLmPf9aivJpw": [ + { + "amount": "274.180482297", + "slot": { + "period": 69381, + "thread": 30 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 223392, + "thread": 13 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 462409, + "thread": 11 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 601606, + "thread": 18 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 805110, + "thread": 16 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 849036, + "thread": 21 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1146385, + "thread": 0 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1150791, + "thread": 14 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1353206, + "thread": 22 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1573092, + "thread": 13 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1734858, + "thread": 15 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1907350, + "thread": 31 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 1989735, + "thread": 17 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 2260565, + "thread": 20 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 2456897, + "thread": 6 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 2545471, + "thread": 15 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 2741532, + "thread": 14 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 2882050, + "thread": 31 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 3031368, + "thread": 31 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 3139070, + "thread": 26 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 3366205, + "thread": 23 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 3496578, + "thread": 20 + } + }, + { + "amount": "274.180482297", + "slot": { + "period": 3686146, + "thread": 15 + } + }, + { + "amount": "274.180482290", + "slot": { + "period": 3866976, + "thread": 0 + } + } + ], + "AU12be73F7wbWGob5zg9dMvgPsGHkiHRgXkDuCCKGaLScHMXw8fS1": [ + { + "amount": "129.926831336", + "slot": { + "period": 51317, + "thread": 18 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 262364, + "thread": 23 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 455412, + "thread": 14 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 520272, + "thread": 7 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 675975, + "thread": 1 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 935156, + "thread": 21 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1087424, + "thread": 21 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1227573, + "thread": 3 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1471098, + "thread": 23 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1578367, + "thread": 9 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1701958, + "thread": 6 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 1955691, + "thread": 31 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2120192, + "thread": 10 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2207438, + "thread": 30 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2393194, + "thread": 7 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2570055, + "thread": 15 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2749115, + "thread": 9 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 2944124, + "thread": 4 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 3104200, + "thread": 7 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 3208027, + "thread": 18 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 3355226, + "thread": 6 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 3495880, + "thread": 7 + } + }, + { + "amount": "129.926831336", + "slot": { + "period": 3625004, + "thread": 29 + } + }, + { + "amount": "129.926831330", + "slot": { + "period": 3788185, + "thread": 10 + } + } + ], + "AU12bfEPBtbJwbYsMEnkW2boCx2BBtVfwRgbxCyZgjTg5iwW1g8px": [ + { + "amount": "60.480060446", + "slot": { + "period": 11919, + "thread": 21 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 227330, + "thread": 28 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 461737, + "thread": 28 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 543623, + "thread": 26 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 683405, + "thread": 2 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 822718, + "thread": 0 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1132498, + "thread": 11 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1308765, + "thread": 2 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1387939, + "thread": 14 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1565894, + "thread": 16 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1713087, + "thread": 9 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 1906272, + "thread": 12 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2042972, + "thread": 22 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2235221, + "thread": 0 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2333465, + "thread": 6 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2522568, + "thread": 29 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2631426, + "thread": 30 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 2862402, + "thread": 22 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 3022305, + "thread": 14 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 3140411, + "thread": 20 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 3362397, + "thread": 29 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 3579569, + "thread": 12 + } + }, + { + "amount": "60.480060446", + "slot": { + "period": 3730978, + "thread": 30 + } + }, + { + "amount": "60.480060444", + "slot": { + "period": 3943237, + "thread": 11 + } + } + ], + "AU12bfYfj3bBPbFgYS7FRDA8bMjehkm84njJXiHjp8CGqN6kEDL2S": [ + { + "amount": "181.484944874", + "slot": { + "period": 101071, + "thread": 22 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 230492, + "thread": 6 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 399347, + "thread": 15 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 652111, + "thread": 10 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 801684, + "thread": 29 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 874992, + "thread": 20 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 982814, + "thread": 16 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 1279127, + "thread": 27 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 1362232, + "thread": 3 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 1646354, + "thread": 27 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 1737356, + "thread": 28 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 1890968, + "thread": 14 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2036352, + "thread": 22 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2181967, + "thread": 27 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2303798, + "thread": 13 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2513914, + "thread": 26 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2663330, + "thread": 5 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 2939114, + "thread": 15 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 3078943, + "thread": 15 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 3209643, + "thread": 2 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 3310243, + "thread": 5 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 3572742, + "thread": 14 + } + }, + { + "amount": "181.484944874", + "slot": { + "period": 3734200, + "thread": 27 + } + }, + { + "amount": "181.484944862", + "slot": { + "period": 3837218, + "thread": 25 + } + } + ], + "AU12bgnZN6vjCnTdybzNL49hw7T76U7r1MGVnPpJntVUUvxKNeLQD": [ + { + "amount": "211.126033586", + "slot": { + "period": 16747, + "thread": 25 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 206054, + "thread": 23 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 361366, + "thread": 5 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 607262, + "thread": 15 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 729893, + "thread": 28 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 839450, + "thread": 15 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1044816, + "thread": 15 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1255850, + "thread": 1 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1402402, + "thread": 27 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1507436, + "thread": 7 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1755584, + "thread": 24 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 1882946, + "thread": 0 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2004793, + "thread": 13 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2268897, + "thread": 11 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2343875, + "thread": 1 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2509551, + "thread": 5 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2695094, + "thread": 20 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2905044, + "thread": 6 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 2994302, + "thread": 19 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 3276792, + "thread": 9 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 3323095, + "thread": 6 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 3471071, + "thread": 26 + } + }, + { + "amount": "211.126033586", + "slot": { + "period": 3728271, + "thread": 25 + } + }, + { + "amount": "211.126033578", + "slot": { + "period": 3895805, + "thread": 17 + } + } + ], + "AU12bhgoQMnFrNbeTRwQQZCTHXZALYAyMovgGWZ6X7Wf91eAhD8x": [ + { + "amount": "456.256683887", + "slot": { + "period": 92510, + "thread": 23 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 207766, + "thread": 2 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 365969, + "thread": 30 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 642818, + "thread": 8 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 708535, + "thread": 9 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 912783, + "thread": 31 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1079134, + "thread": 2 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1234930, + "thread": 22 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1450146, + "thread": 12 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1620947, + "thread": 18 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1749501, + "thread": 16 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 1974585, + "thread": 18 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2113483, + "thread": 24 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2231102, + "thread": 2 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2340628, + "thread": 18 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2588265, + "thread": 12 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2708063, + "thread": 14 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 2929713, + "thread": 5 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 3052877, + "thread": 3 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 3153052, + "thread": 21 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 3293089, + "thread": 24 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 3473422, + "thread": 11 + } + }, + { + "amount": "456.256683887", + "slot": { + "period": 3698988, + "thread": 22 + } + }, + { + "amount": "456.256683881", + "slot": { + "period": 3914946, + "thread": 20 + } + } + ], + "AU12bi2Nb4hBZpsWYCrmQ2SuaJSXX1mL1XjvYU2XQp91EjJ6D1zNJ": [ + { + "amount": "200.933699687", + "slot": { + "period": 155607, + "thread": 28 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 216498, + "thread": 28 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 433943, + "thread": 31 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 622538, + "thread": 30 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 810756, + "thread": 27 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 969331, + "thread": 18 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1011446, + "thread": 9 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1184802, + "thread": 26 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1434350, + "thread": 29 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1559278, + "thread": 29 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1757131, + "thread": 29 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 1854854, + "thread": 6 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2017681, + "thread": 17 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2286665, + "thread": 30 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2295751, + "thread": 2 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2554440, + "thread": 27 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2757890, + "thread": 18 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 2836999, + "thread": 13 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 3119829, + "thread": 16 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 3243466, + "thread": 15 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 3397546, + "thread": 4 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 3460567, + "thread": 19 + } + }, + { + "amount": "200.933699687", + "slot": { + "period": 3714621, + "thread": 2 + } + }, + { + "amount": "200.933699697", + "slot": { + "period": 3866248, + "thread": 1 + } + } + ], + "AU12biCTmmbGCvhbdHsAMxPfUrQGkuzbAmsVS9EQnwvUtcg9VCkZc": [ + { + "amount": "486.411833189", + "slot": { + "period": 136006, + "thread": 4 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 321362, + "thread": 30 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 348523, + "thread": 30 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 592376, + "thread": 30 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 713399, + "thread": 24 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 903772, + "thread": 4 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1084234, + "thread": 10 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1253246, + "thread": 11 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1453489, + "thread": 28 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1628072, + "thread": 29 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1709133, + "thread": 29 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 1865059, + "thread": 15 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2070368, + "thread": 10 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2272569, + "thread": 27 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2418099, + "thread": 10 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2508004, + "thread": 12 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2761876, + "thread": 8 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 2841125, + "thread": 7 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 3049874, + "thread": 12 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 3261822, + "thread": 1 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 3344970, + "thread": 22 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 3477643, + "thread": 15 + } + }, + { + "amount": "486.411833189", + "slot": { + "period": 3713285, + "thread": 17 + } + }, + { + "amount": "486.411833184", + "slot": { + "period": 3888114, + "thread": 25 + } + } + ], + "AU12bitx1v3yLzxbkA26pL8naxoDEVzAPoGE5UDJAykBsyb3qadKf": [ + { + "amount": "340.368854540", + "slot": { + "period": 23799, + "thread": 28 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 266620, + "thread": 4 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 379390, + "thread": 2 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 545195, + "thread": 29 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 801282, + "thread": 11 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 822589, + "thread": 12 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1019337, + "thread": 7 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1156450, + "thread": 8 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1379882, + "thread": 4 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1570473, + "thread": 0 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1718566, + "thread": 12 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 1891682, + "thread": 14 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2111329, + "thread": 24 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2206990, + "thread": 21 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2420460, + "thread": 7 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2587832, + "thread": 23 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2791235, + "thread": 0 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 2881299, + "thread": 28 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 3028638, + "thread": 22 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 3131024, + "thread": 31 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 3334443, + "thread": 21 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 3494012, + "thread": 31 + } + }, + { + "amount": "340.368854540", + "slot": { + "period": 3628537, + "thread": 23 + } + }, + { + "amount": "340.368854552", + "slot": { + "period": 3782192, + "thread": 11 + } + } + ], + "AU12biuXAg5arqX3vwnbAmXDCtcShZjwQ1rr2453BLpfSV891ZcQF": [ + { + "amount": "404.041412978", + "slot": { + "period": 136820, + "thread": 16 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 187912, + "thread": 6 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 472030, + "thread": 18 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 546510, + "thread": 9 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 747282, + "thread": 12 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 888249, + "thread": 27 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1038539, + "thread": 1 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1234227, + "thread": 1 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1344603, + "thread": 11 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1558432, + "thread": 27 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1777321, + "thread": 14 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 1864860, + "thread": 30 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2099002, + "thread": 15 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2231735, + "thread": 20 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2415648, + "thread": 16 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2567960, + "thread": 25 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2752579, + "thread": 17 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 2935068, + "thread": 2 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 3053543, + "thread": 15 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 3176167, + "thread": 30 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 3298346, + "thread": 3 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 3493705, + "thread": 9 + } + }, + { + "amount": "404.041412978", + "slot": { + "period": 3777169, + "thread": 18 + } + }, + { + "amount": "404.041412989", + "slot": { + "period": 3898202, + "thread": 8 + } + } + ], + "AU12bjKNhibYC9q2sPKkCPMmpW6r7yuTJvWEaqQ7XwcWrz4tazzrT": [ + { + "amount": "90.889502303", + "slot": { + "period": 66046, + "thread": 25 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 243701, + "thread": 2 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 424554, + "thread": 23 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 632977, + "thread": 12 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 665192, + "thread": 6 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 867771, + "thread": 13 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1082091, + "thread": 28 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1226887, + "thread": 23 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1447081, + "thread": 8 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1565041, + "thread": 23 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1663263, + "thread": 21 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 1915345, + "thread": 19 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2053215, + "thread": 22 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2260761, + "thread": 16 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2363740, + "thread": 22 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2582189, + "thread": 31 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2723622, + "thread": 27 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 2834191, + "thread": 1 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 3039026, + "thread": 20 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 3161700, + "thread": 5 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 3439817, + "thread": 1 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 3568007, + "thread": 20 + } + }, + { + "amount": "90.889502303", + "slot": { + "period": 3683082, + "thread": 6 + } + }, + { + "amount": "90.889502309", + "slot": { + "period": 3816568, + "thread": 4 + } + } + ], + "AU12bjSNyeYpjRMAbN7kJPAa6VVjYxHDYDQ1HeMrVqezJyJw3DP3D": [ + { + "amount": "150.238026122", + "slot": { + "period": 166380, + "thread": 4 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 257997, + "thread": 20 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 433051, + "thread": 14 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 585580, + "thread": 5 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 664576, + "thread": 2 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 823444, + "thread": 7 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1127737, + "thread": 1 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1205662, + "thread": 30 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1463787, + "thread": 21 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1642981, + "thread": 26 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1757043, + "thread": 19 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 1834746, + "thread": 1 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2062625, + "thread": 8 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2217970, + "thread": 11 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2381507, + "thread": 22 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2509981, + "thread": 20 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2765627, + "thread": 29 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2841444, + "thread": 21 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 2956925, + "thread": 24 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 3265187, + "thread": 15 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 3379017, + "thread": 29 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 3520303, + "thread": 29 + } + }, + { + "amount": "150.238026122", + "slot": { + "period": 3683786, + "thread": 14 + } + }, + { + "amount": "150.238026129", + "slot": { + "period": 3928067, + "thread": 11 + } + } + ], + "AU12bk1bann7migg2PWgRjAbYZV4A9hx1YmykwzdwBrQoecZbwtZu": [ + { + "amount": "143.426955443", + "slot": { + "period": 124494, + "thread": 28 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 209634, + "thread": 7 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 404231, + "thread": 10 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 492176, + "thread": 29 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 669486, + "thread": 24 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 828105, + "thread": 24 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1017577, + "thread": 28 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1167701, + "thread": 21 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1383527, + "thread": 7 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1581964, + "thread": 26 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1675032, + "thread": 9 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 1862455, + "thread": 24 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2125398, + "thread": 18 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2193519, + "thread": 10 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2341802, + "thread": 15 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2598564, + "thread": 6 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2733495, + "thread": 14 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 2893088, + "thread": 13 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 3050487, + "thread": 23 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 3123559, + "thread": 5 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 3444059, + "thread": 22 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 3564390, + "thread": 6 + } + }, + { + "amount": "143.426955443", + "slot": { + "period": 3688989, + "thread": 10 + } + }, + { + "amount": "143.426955436", + "slot": { + "period": 3821807, + "thread": 25 + } + } + ], + "AU12bm6y4NEpodWDgUvxAwwTqWHaEDJMgtB2MsT6dwgHnFndM2DDe": [ + { + "amount": "191.307233626", + "slot": { + "period": 21852, + "thread": 23 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 179090, + "thread": 16 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 389211, + "thread": 17 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 584853, + "thread": 27 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 697118, + "thread": 8 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 906942, + "thread": 27 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1147313, + "thread": 0 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1250352, + "thread": 3 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1474485, + "thread": 5 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1589924, + "thread": 1 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1775005, + "thread": 17 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 1930674, + "thread": 10 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2110080, + "thread": 21 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2207819, + "thread": 1 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2452919, + "thread": 14 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2513265, + "thread": 1 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2659841, + "thread": 7 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 2893144, + "thread": 23 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 3002238, + "thread": 27 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 3280365, + "thread": 17 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 3319488, + "thread": 7 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 3599814, + "thread": 2 + } + }, + { + "amount": "191.307233626", + "slot": { + "period": 3694705, + "thread": 7 + } + }, + { + "amount": "191.307233617", + "slot": { + "period": 3903150, + "thread": 16 + } + } + ], + "AU12bmeKZv7h89G4HDXTdftfE7UCB6pNFn22LBA45vVu5rmJkVMAv": [ + { + "amount": "108.822838540", + "slot": { + "period": 51668, + "thread": 8 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 309534, + "thread": 21 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 346411, + "thread": 18 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 506692, + "thread": 14 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 775338, + "thread": 6 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 970294, + "thread": 22 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1136266, + "thread": 9 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1228109, + "thread": 16 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1443995, + "thread": 27 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1548304, + "thread": 1 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1676550, + "thread": 22 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1927282, + "thread": 24 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 1978014, + "thread": 31 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 2280753, + "thread": 10 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 2406865, + "thread": 2 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 2606737, + "thread": 6 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 2765196, + "thread": 1 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 2884453, + "thread": 28 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 3091833, + "thread": 3 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 3197522, + "thread": 23 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 3344005, + "thread": 13 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 3560912, + "thread": 22 + } + }, + { + "amount": "108.822838540", + "slot": { + "period": 3727336, + "thread": 14 + } + }, + { + "amount": "108.822838532", + "slot": { + "period": 3861027, + "thread": 1 + } + } + ], + "AU12bn1kaJjAFGYzjpgj77kqvucTNK8tvn6KmBR7NA1nzAqYz2w9k": [ + { + "amount": "119.796734212", + "slot": { + "period": 37233, + "thread": 12 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 196607, + "thread": 16 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 456403, + "thread": 11 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 591473, + "thread": 5 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 685266, + "thread": 29 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 824236, + "thread": 31 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1051995, + "thread": 1 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1309142, + "thread": 4 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1338488, + "thread": 29 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1628698, + "thread": 30 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1686832, + "thread": 2 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 1966116, + "thread": 11 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2088883, + "thread": 11 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2162925, + "thread": 15 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2455141, + "thread": 24 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2480556, + "thread": 10 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2626348, + "thread": 12 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 2798712, + "thread": 1 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 3099281, + "thread": 4 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 3173162, + "thread": 4 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 3336692, + "thread": 16 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 3526927, + "thread": 7 + } + }, + { + "amount": "119.796734212", + "slot": { + "period": 3740038, + "thread": 31 + } + }, + { + "amount": "119.796734215", + "slot": { + "period": 3934772, + "thread": 28 + } + } + ], + "AU12bncjFxnxJk4yWkpb5VFNc1FkNCevgnCyAAffwsupVH4rJqD1m": [ + { + "amount": "82.964006383", + "slot": { + "period": 65484, + "thread": 16 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 249489, + "thread": 14 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 372499, + "thread": 12 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 571519, + "thread": 7 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 672735, + "thread": 23 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 876280, + "thread": 28 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1145952, + "thread": 14 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1273689, + "thread": 25 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1440085, + "thread": 20 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1609135, + "thread": 25 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1786739, + "thread": 31 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 1953403, + "thread": 14 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2053433, + "thread": 26 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2238599, + "thread": 21 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2382591, + "thread": 8 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2505023, + "thread": 21 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2713822, + "thread": 23 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 2793856, + "thread": 1 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 3111231, + "thread": 20 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 3155011, + "thread": 31 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 3291504, + "thread": 14 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 3599555, + "thread": 5 + } + }, + { + "amount": "82.964006383", + "slot": { + "period": 3746768, + "thread": 5 + } + }, + { + "amount": "82.964006375", + "slot": { + "period": 3825995, + "thread": 14 + } + } + ], + "AU12boXoU1uSo19PzFU1RF5q3QgvzHT4dsV6CrP2CSa8TNQ4ApmmU": [ + { + "amount": "70.171234501", + "slot": { + "period": 77453, + "thread": 18 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 181475, + "thread": 19 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 457459, + "thread": 7 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 618067, + "thread": 20 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 769358, + "thread": 7 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 962625, + "thread": 25 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1025102, + "thread": 16 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1231433, + "thread": 1 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1406670, + "thread": 27 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1521751, + "thread": 15 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1686929, + "thread": 9 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 1855116, + "thread": 13 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2117048, + "thread": 8 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2258495, + "thread": 22 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2338107, + "thread": 8 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2473311, + "thread": 23 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2724932, + "thread": 8 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 2853663, + "thread": 26 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 3117199, + "thread": 7 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 3135978, + "thread": 29 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 3315480, + "thread": 0 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 3489084, + "thread": 22 + } + }, + { + "amount": "70.171234501", + "slot": { + "period": 3764207, + "thread": 5 + } + }, + { + "amount": "70.171234502", + "slot": { + "period": 3860834, + "thread": 10 + } + } + ], + "AU12boe2r7DwMp4xqwqfroguvEwaRUckten6UiT7Z7fU12NjUcZTb": [ + { + "amount": "356.875452426", + "slot": { + "period": 156370, + "thread": 0 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 207525, + "thread": 20 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 434777, + "thread": 29 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 609753, + "thread": 31 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 680555, + "thread": 6 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 908348, + "thread": 11 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1071101, + "thread": 21 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1201461, + "thread": 10 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1337120, + "thread": 8 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1631774, + "thread": 16 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1715883, + "thread": 28 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 1874632, + "thread": 16 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2087606, + "thread": 27 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2215058, + "thread": 7 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2395911, + "thread": 5 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2599683, + "thread": 25 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2791055, + "thread": 8 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 2929697, + "thread": 27 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 3073625, + "thread": 31 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 3167136, + "thread": 12 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 3367230, + "thread": 21 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 3582030, + "thread": 17 + } + }, + { + "amount": "356.875452426", + "slot": { + "period": 3715238, + "thread": 15 + } + }, + { + "amount": "356.875452425", + "slot": { + "period": 3934779, + "thread": 18 + } + } + ], + "AU12bopMJ1mgwQjoPvHEtodBe5i1JzASueG2Q2voKzaUm38MqCLDZ": [ + { + "amount": "89.793027191", + "slot": { + "period": 102500, + "thread": 4 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 315402, + "thread": 20 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 387652, + "thread": 11 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 508439, + "thread": 20 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 704775, + "thread": 7 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 883943, + "thread": 5 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1109778, + "thread": 7 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1168008, + "thread": 27 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1369495, + "thread": 4 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1524486, + "thread": 19 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1787362, + "thread": 8 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1937241, + "thread": 17 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 1985869, + "thread": 31 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 2180754, + "thread": 25 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 2382450, + "thread": 0 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 2543606, + "thread": 14 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 2654934, + "thread": 15 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 2836363, + "thread": 6 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 3020264, + "thread": 12 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 3128927, + "thread": 10 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 3449818, + "thread": 11 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 3556750, + "thread": 23 + } + }, + { + "amount": "89.793027191", + "slot": { + "period": 3624211, + "thread": 20 + } + }, + { + "amount": "89.793027195", + "slot": { + "period": 3831441, + "thread": 3 + } + } + ], + "AU12bp2KmLMeBXcMJNegg2j881hteZLKs4q7ZsmvBXvMSim86SrwF": [ + { + "amount": "108.361273848", + "slot": { + "period": 34909, + "thread": 30 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 295484, + "thread": 31 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 403966, + "thread": 4 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 639345, + "thread": 21 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 721036, + "thread": 2 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 869420, + "thread": 9 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1068391, + "thread": 22 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1225173, + "thread": 18 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1323691, + "thread": 15 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1613477, + "thread": 31 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1733979, + "thread": 1 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1931735, + "thread": 9 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 1991973, + "thread": 2 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2236447, + "thread": 13 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2453410, + "thread": 10 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2470676, + "thread": 14 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2629674, + "thread": 2 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2879027, + "thread": 28 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 2975023, + "thread": 10 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 3182311, + "thread": 13 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 3357214, + "thread": 24 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 3597300, + "thread": 6 + } + }, + { + "amount": "108.361273848", + "slot": { + "period": 3712369, + "thread": 7 + } + }, + { + "amount": "108.361273850", + "slot": { + "period": 3925390, + "thread": 17 + } + } + ], + "AU12bpQrddReTDGw3ZLH1mVf8EAbx55pYXrZqToQcuCU8uBP7d4z8": [ + { + "amount": "170.506526956", + "slot": { + "period": 83514, + "thread": 19 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 310256, + "thread": 24 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 450261, + "thread": 17 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 648710, + "thread": 15 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 811106, + "thread": 21 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 847583, + "thread": 11 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1138958, + "thread": 25 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1218856, + "thread": 31 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1398110, + "thread": 20 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1591929, + "thread": 29 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1671932, + "thread": 28 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 1830311, + "thread": 0 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2093062, + "thread": 19 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2269365, + "thread": 31 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2402302, + "thread": 26 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2572725, + "thread": 11 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2706145, + "thread": 26 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 2807917, + "thread": 19 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 3093417, + "thread": 19 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 3148092, + "thread": 26 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 3349794, + "thread": 11 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 3511128, + "thread": 7 + } + }, + { + "amount": "170.506526956", + "slot": { + "period": 3699512, + "thread": 17 + } + }, + { + "amount": "170.506526953", + "slot": { + "period": 3789949, + "thread": 16 + } + } + ], + "AU12bq5kXroHa7u33ey73oWQUGP6Y5JtrcV2j1thXcLmt3j1t18am": [ + { + "amount": "226.378241452", + "slot": { + "period": 121230, + "thread": 6 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 320404, + "thread": 21 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 461010, + "thread": 27 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 627643, + "thread": 28 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 703286, + "thread": 29 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 879399, + "thread": 30 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1142085, + "thread": 20 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1202489, + "thread": 29 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1338030, + "thread": 19 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1511518, + "thread": 15 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1752805, + "thread": 4 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 1956232, + "thread": 15 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2083512, + "thread": 28 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2189402, + "thread": 28 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2428314, + "thread": 21 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2482604, + "thread": 24 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2665939, + "thread": 30 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2807230, + "thread": 24 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 2998351, + "thread": 10 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 3245688, + "thread": 29 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 3409974, + "thread": 3 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 3528012, + "thread": 3 + } + }, + { + "amount": "226.378241452", + "slot": { + "period": 3750632, + "thread": 5 + } + }, + { + "amount": "226.378241444", + "slot": { + "period": 3831365, + "thread": 18 + } + } + ], + "AU12bqBR4k3bxaYXmqwCvV6F8MeXojrGPpFUmKXyWJd1Ccf4HJVTJ": [ + { + "amount": "459.051014644", + "slot": { + "period": 43969, + "thread": 24 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 305307, + "thread": 21 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 332611, + "thread": 14 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 533386, + "thread": 16 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 691618, + "thread": 28 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 938536, + "thread": 5 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1136137, + "thread": 10 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1200584, + "thread": 20 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1331689, + "thread": 17 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1542151, + "thread": 10 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1759934, + "thread": 28 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 1878556, + "thread": 18 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2109850, + "thread": 1 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2231062, + "thread": 19 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2300280, + "thread": 3 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2476279, + "thread": 5 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2789889, + "thread": 29 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 2884163, + "thread": 0 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 3094780, + "thread": 5 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 3156435, + "thread": 6 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 3362115, + "thread": 7 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 3601377, + "thread": 7 + } + }, + { + "amount": "459.051014644", + "slot": { + "period": 3707548, + "thread": 14 + } + }, + { + "amount": "459.051014637", + "slot": { + "period": 3791754, + "thread": 10 + } + } + ], + "AU12bqXuu9r17nH9uV3Vv7dQi8CAHP3shnGS3BWBJSykmrVmCsruM": [ + { + "amount": "534.348737005", + "slot": { + "period": 54981, + "thread": 6 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 187323, + "thread": 28 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 431216, + "thread": 5 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 528612, + "thread": 17 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 758657, + "thread": 29 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 930111, + "thread": 14 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1009564, + "thread": 2 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1255670, + "thread": 13 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1380816, + "thread": 21 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1500399, + "thread": 1 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1808366, + "thread": 24 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 1970450, + "thread": 16 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2016016, + "thread": 29 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2269194, + "thread": 22 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2461193, + "thread": 15 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2485166, + "thread": 15 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2761548, + "thread": 4 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 2933344, + "thread": 18 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 3059994, + "thread": 7 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 3128222, + "thread": 24 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 3362359, + "thread": 29 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 3541936, + "thread": 20 + } + }, + { + "amount": "534.348737005", + "slot": { + "period": 3722271, + "thread": 22 + } + }, + { + "amount": "534.348736999", + "slot": { + "period": 3898095, + "thread": 19 + } + } + ], + "AU12bqcV9L2Q7uLaHPsvY7fBcPPKnj6duHVYieaKUXayuVtpQjVTh": [ + { + "amount": "486.647130903", + "slot": { + "period": 50290, + "thread": 30 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 291053, + "thread": 9 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 432982, + "thread": 16 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 551532, + "thread": 4 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 778050, + "thread": 22 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 939055, + "thread": 28 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1087411, + "thread": 28 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1256585, + "thread": 20 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1359845, + "thread": 20 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1524364, + "thread": 13 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1792360, + "thread": 17 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 1970469, + "thread": 23 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2034271, + "thread": 8 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2242188, + "thread": 1 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2406273, + "thread": 22 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2516679, + "thread": 8 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2759427, + "thread": 0 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 2941206, + "thread": 8 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 3116964, + "thread": 1 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 3246982, + "thread": 31 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 3360513, + "thread": 3 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 3464965, + "thread": 4 + } + }, + { + "amount": "486.647130903", + "slot": { + "period": 3682978, + "thread": 21 + } + }, + { + "amount": "486.647130909", + "slot": { + "period": 3810443, + "thread": 11 + } + } + ], + "AU12bs2D5tL25vtUHbaAsWhTcNtKxwNdjCjNo2UwbPQTtUiD9BsV9": [ + { + "amount": "173.868777034", + "slot": { + "period": 137159, + "thread": 4 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 174780, + "thread": 21 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 477620, + "thread": 1 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 652261, + "thread": 14 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 732526, + "thread": 5 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 838227, + "thread": 13 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1038934, + "thread": 2 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1265608, + "thread": 20 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1429107, + "thread": 7 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1617224, + "thread": 10 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1701659, + "thread": 10 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 1894213, + "thread": 27 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2007855, + "thread": 2 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2194301, + "thread": 30 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2355025, + "thread": 11 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2569790, + "thread": 29 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2665175, + "thread": 21 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 2902752, + "thread": 15 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 3022351, + "thread": 9 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 3245203, + "thread": 7 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 3316583, + "thread": 19 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 3518358, + "thread": 8 + } + }, + { + "amount": "173.868777034", + "slot": { + "period": 3697972, + "thread": 25 + } + }, + { + "amount": "173.868777032", + "slot": { + "period": 3884311, + "thread": 0 + } + } + ], + "AU12bsBKJHepd9vV4RpqGyahHhER1wD4XJtoxkFQY13QkKj6nQVeQ": [ + { + "amount": "115.248242712", + "slot": { + "period": 149912, + "thread": 23 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 245899, + "thread": 8 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 454391, + "thread": 22 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 543331, + "thread": 18 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 700583, + "thread": 14 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 821481, + "thread": 23 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1091195, + "thread": 26 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1165792, + "thread": 10 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1351764, + "thread": 0 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1598951, + "thread": 26 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1726842, + "thread": 15 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 1900459, + "thread": 30 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2025374, + "thread": 12 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2285944, + "thread": 6 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2420063, + "thread": 21 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2570779, + "thread": 19 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2770905, + "thread": 8 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 2921564, + "thread": 12 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 3008546, + "thread": 4 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 3192789, + "thread": 24 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 3378912, + "thread": 4 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 3589038, + "thread": 19 + } + }, + { + "amount": "115.248242712", + "slot": { + "period": 3697999, + "thread": 31 + } + }, + { + "amount": "115.248242701", + "slot": { + "period": 3799814, + "thread": 1 + } + } + ], + "AU12btCkwiMucsBSavwfTHbZRU6vgStvxatqUJiuDYpvybc5mYc64": [ + { + "amount": "229.369031740", + "slot": { + "period": 101944, + "thread": 12 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 321250, + "thread": 2 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 475868, + "thread": 25 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 548671, + "thread": 24 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 817312, + "thread": 23 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 908319, + "thread": 13 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1090277, + "thread": 4 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1303179, + "thread": 14 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1462159, + "thread": 29 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1640000, + "thread": 5 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1755404, + "thread": 19 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 1947515, + "thread": 0 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2081755, + "thread": 21 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2226485, + "thread": 10 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2373613, + "thread": 21 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2472735, + "thread": 8 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2693369, + "thread": 16 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 2942454, + "thread": 23 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 3024022, + "thread": 27 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 3215065, + "thread": 19 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 3415928, + "thread": 1 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 3569552, + "thread": 10 + } + }, + { + "amount": "229.369031740", + "slot": { + "period": 3710277, + "thread": 2 + } + }, + { + "amount": "229.369031729", + "slot": { + "period": 3780563, + "thread": 6 + } + } + ], + "AU12btYzN6gDBQU6mwFayREDs3LrPYQjYjYdtVJ64SfcR2QCJvYt3": [ + { + "amount": "129.964444528", + "slot": { + "period": 102638, + "thread": 4 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 274816, + "thread": 18 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 476121, + "thread": 24 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 537024, + "thread": 8 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 816310, + "thread": 22 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 909418, + "thread": 3 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1112634, + "thread": 21 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1241323, + "thread": 27 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1371692, + "thread": 8 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1541863, + "thread": 18 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1736105, + "thread": 30 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 1872444, + "thread": 22 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2067602, + "thread": 16 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2209664, + "thread": 16 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2299859, + "thread": 1 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2524230, + "thread": 23 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2657697, + "thread": 31 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2913908, + "thread": 22 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 2989978, + "thread": 9 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 3141794, + "thread": 3 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 3422810, + "thread": 4 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 3540304, + "thread": 17 + } + }, + { + "amount": "129.964444528", + "slot": { + "period": 3653899, + "thread": 29 + } + }, + { + "amount": "129.964444540", + "slot": { + "period": 3839904, + "thread": 23 + } + } + ], + "AU12buVw1fZc2L6y57ovnzhN2VKs9uCMUqq51taL2znX68SCZdAkQ": [ + { + "amount": "5960.033333333", + "slot": { + "period": 117616, + "thread": 16 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 277531, + "thread": 14 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 413320, + "thread": 20 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 569899, + "thread": 2 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 680912, + "thread": 10 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 914543, + "thread": 20 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1106016, + "thread": 30 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1205688, + "thread": 15 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1336831, + "thread": 25 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1537338, + "thread": 21 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1786405, + "thread": 23 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1905087, + "thread": 17 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 1995812, + "thread": 30 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 2157183, + "thread": 16 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 2397002, + "thread": 2 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 2496737, + "thread": 22 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 2677708, + "thread": 21 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 2830620, + "thread": 3 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 3093462, + "thread": 4 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 3155714, + "thread": 16 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 3398192, + "thread": 26 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 3510457, + "thread": 0 + } + }, + { + "amount": "5960.033333333", + "slot": { + "period": 3758374, + "thread": 7 + } + }, + { + "amount": "5960.033333341", + "slot": { + "period": 3810243, + "thread": 13 + } + } + ], + "AU12buk7eA7w94xKNUNCXomw3JdjFZkeHXKhdvkJDV7oFfAcRpwg7": [ + { + "amount": "102.030691150", + "slot": { + "period": 29126, + "thread": 17 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 313974, + "thread": 19 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 471531, + "thread": 27 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 581561, + "thread": 5 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 700725, + "thread": 17 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 874618, + "thread": 31 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1074458, + "thread": 10 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1194501, + "thread": 17 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1416850, + "thread": 7 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1549708, + "thread": 14 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1807054, + "thread": 27 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 1823411, + "thread": 7 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2101050, + "thread": 19 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2223092, + "thread": 18 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2335830, + "thread": 30 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2556344, + "thread": 12 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2688814, + "thread": 16 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2831161, + "thread": 19 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 2985354, + "thread": 13 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 3275116, + "thread": 7 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 3359930, + "thread": 24 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 3463463, + "thread": 0 + } + }, + { + "amount": "102.030691150", + "slot": { + "period": 3618760, + "thread": 19 + } + }, + { + "amount": "102.030691156", + "slot": { + "period": 3891403, + "thread": 2 + } + } + ], + "AU12bvocY3ADR2YtQterUcFYUYVPYhYBvU7k35RTUnZzqmJk9kCqN": [ + { + "amount": "62.559655903", + "slot": { + "period": 36946, + "thread": 26 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 288502, + "thread": 22 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 453334, + "thread": 3 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 578278, + "thread": 21 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 728832, + "thread": 21 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 942662, + "thread": 26 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1028301, + "thread": 22 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1237668, + "thread": 0 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1343277, + "thread": 17 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1500995, + "thread": 17 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1712037, + "thread": 11 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1896770, + "thread": 30 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 1997468, + "thread": 11 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 2167846, + "thread": 10 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 2310015, + "thread": 23 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 2591718, + "thread": 2 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 2777690, + "thread": 30 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 2828260, + "thread": 20 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3017730, + "thread": 6 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3246509, + "thread": 13 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3375800, + "thread": 0 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3600894, + "thread": 20 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3733819, + "thread": 12 + } + }, + { + "amount": "62.559655903", + "slot": { + "period": 3872053, + "thread": 12 + } + } + ], + "AU12bwqWrTvEnc8ukGBhjLzCANWNPoNzN1gVrXaMT8XQPUwEz7Z99": [ + { + "amount": "196.004982138", + "slot": { + "period": 140303, + "thread": 29 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 181576, + "thread": 31 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 457104, + "thread": 20 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 499940, + "thread": 10 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 754416, + "thread": 23 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 968079, + "thread": 22 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1146655, + "thread": 7 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1238919, + "thread": 0 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1350269, + "thread": 2 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1580976, + "thread": 12 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1806040, + "thread": 24 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 1933216, + "thread": 10 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2016668, + "thread": 24 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2207228, + "thread": 19 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2315529, + "thread": 29 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2575982, + "thread": 12 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2685007, + "thread": 1 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2871343, + "thread": 14 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 2993522, + "thread": 26 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 3168581, + "thread": 14 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 3356598, + "thread": 20 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 3495298, + "thread": 7 + } + }, + { + "amount": "196.004982138", + "slot": { + "period": 3669599, + "thread": 16 + } + }, + { + "amount": "196.004982128", + "slot": { + "period": 3888509, + "thread": 9 + } + } + ], + "AU12bxGfe2uBrcRiEjmv2KoAyksPvsi41uRE3GRaFkdzZpT8PiPp6": [ + { + "amount": "77.843821424", + "slot": { + "period": 14293, + "thread": 19 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 289423, + "thread": 17 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 466387, + "thread": 20 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 584846, + "thread": 8 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 753352, + "thread": 30 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 918500, + "thread": 16 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1129320, + "thread": 16 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1173733, + "thread": 26 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1345465, + "thread": 18 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1498021, + "thread": 28 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1695479, + "thread": 25 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 1837339, + "thread": 1 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2114995, + "thread": 30 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2239997, + "thread": 4 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2399513, + "thread": 23 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2538404, + "thread": 14 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2649549, + "thread": 14 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2833865, + "thread": 0 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 2976468, + "thread": 3 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 3125703, + "thread": 13 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 3365522, + "thread": 25 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 3498508, + "thread": 4 + } + }, + { + "amount": "77.843821424", + "slot": { + "period": 3625675, + "thread": 4 + } + }, + { + "amount": "77.843821414", + "slot": { + "period": 3875908, + "thread": 10 + } + } + ], + "AU12bxLsVfCZx6viij5evmDTS2e19KMNLyP8o7n9VCMLKrrGcYRbm": [ + { + "amount": "153.288639574", + "slot": { + "period": 139531, + "thread": 3 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 240024, + "thread": 22 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 411280, + "thread": 13 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 596897, + "thread": 21 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 740194, + "thread": 19 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 979229, + "thread": 0 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1055854, + "thread": 22 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1316974, + "thread": 3 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1410744, + "thread": 21 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1614946, + "thread": 26 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1804596, + "thread": 29 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1843843, + "thread": 12 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 1992331, + "thread": 23 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 2149148, + "thread": 12 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 2441172, + "thread": 22 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 2550641, + "thread": 2 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 2788848, + "thread": 2 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 2804381, + "thread": 29 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 3101055, + "thread": 21 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 3174617, + "thread": 8 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 3353594, + "thread": 19 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 3474121, + "thread": 9 + } + }, + { + "amount": "153.288639574", + "slot": { + "period": 3662831, + "thread": 3 + } + }, + { + "amount": "153.288639562", + "slot": { + "period": 3870657, + "thread": 18 + } + } + ], + "AU12by5kgErXhHD6Z16kyr2HxVp7QNz4nx3CNHpyv2Z3t5WXawWv": [ + { + "amount": "91.050341992", + "slot": { + "period": 63447, + "thread": 1 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 247891, + "thread": 23 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 486126, + "thread": 2 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 523030, + "thread": 2 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 691056, + "thread": 17 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 941083, + "thread": 7 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1140375, + "thread": 28 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1242721, + "thread": 11 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1411565, + "thread": 14 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1539655, + "thread": 3 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1653350, + "thread": 11 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 1966403, + "thread": 28 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2060447, + "thread": 26 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2271249, + "thread": 8 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2367529, + "thread": 13 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2542129, + "thread": 25 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2631567, + "thread": 2 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 2824465, + "thread": 16 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 3082276, + "thread": 11 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 3203117, + "thread": 19 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 3289466, + "thread": 9 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 3491940, + "thread": 25 + } + }, + { + "amount": "91.050341992", + "slot": { + "period": 3655081, + "thread": 12 + } + }, + { + "amount": "91.050341997", + "slot": { + "period": 3866170, + "thread": 0 + } + } + ], + "AU12byp7AC9dTC9Wq4yFTkpxiCT24zaWf2DA2shFvjK69FhhdKHRR": [ + { + "amount": "132.778022944", + "slot": { + "period": 98948, + "thread": 19 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 206962, + "thread": 6 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 448790, + "thread": 12 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 530404, + "thread": 21 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 682843, + "thread": 30 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 936310, + "thread": 19 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1090605, + "thread": 8 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1262417, + "thread": 20 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1470988, + "thread": 12 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1599230, + "thread": 25 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1733365, + "thread": 29 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1900839, + "thread": 7 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 1982869, + "thread": 9 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 2269139, + "thread": 11 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 2326069, + "thread": 16 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 2470698, + "thread": 28 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 2627800, + "thread": 5 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 2908038, + "thread": 23 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 3106708, + "thread": 14 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 3193185, + "thread": 3 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 3429943, + "thread": 3 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 3586812, + "thread": 5 + } + }, + { + "amount": "132.778022944", + "slot": { + "period": 3775103, + "thread": 25 + } + }, + { + "amount": "132.778022953", + "slot": { + "period": 3821620, + "thread": 28 + } + } + ], + "AU12byxByJBmswT3CUVYEn8BoKkmZxy1oQJWyKuRz2nSjtXZ7sP5k": [ + { + "amount": "75.338179471", + "slot": { + "period": 83280, + "thread": 4 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 322873, + "thread": 10 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 325339, + "thread": 13 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 555952, + "thread": 21 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 686487, + "thread": 20 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 938175, + "thread": 5 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1048468, + "thread": 3 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1203056, + "thread": 7 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1357367, + "thread": 14 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1573559, + "thread": 8 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1659632, + "thread": 17 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 1905754, + "thread": 14 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2125829, + "thread": 3 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2178907, + "thread": 20 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2333990, + "thread": 12 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2590733, + "thread": 0 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2674563, + "thread": 14 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 2848875, + "thread": 13 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 3009348, + "thread": 27 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 3212612, + "thread": 10 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 3317218, + "thread": 3 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 3469480, + "thread": 14 + } + }, + { + "amount": "75.338179471", + "slot": { + "period": 3745187, + "thread": 12 + } + }, + { + "amount": "75.338179477", + "slot": { + "period": 3854456, + "thread": 19 + } + } + ], + "AU12bzwPenPuQAusc2YtrK6m3GzwZsoZs9oEzPfMByt3NEbRozC3a": [ + { + "amount": "145.667765245", + "slot": { + "period": 146348, + "thread": 2 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 205890, + "thread": 24 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 327396, + "thread": 11 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 617381, + "thread": 3 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 767800, + "thread": 17 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 900702, + "thread": 25 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1000806, + "thread": 16 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1270151, + "thread": 15 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1449347, + "thread": 2 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1508571, + "thread": 0 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1749944, + "thread": 22 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 1860473, + "thread": 3 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2110691, + "thread": 30 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2150408, + "thread": 25 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2342278, + "thread": 31 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2479669, + "thread": 17 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2679668, + "thread": 8 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 2823796, + "thread": 23 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 3082427, + "thread": 6 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 3246675, + "thread": 31 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 3303225, + "thread": 0 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 3596980, + "thread": 23 + } + }, + { + "amount": "145.667765245", + "slot": { + "period": 3623013, + "thread": 25 + } + }, + { + "amount": "145.667765249", + "slot": { + "period": 3860947, + "thread": 16 + } + } + ], + "AU12c17kdrJq3y8JxgrvbdkKUb1SDH44vJvS56maTFxWkXLykZjsc": [ + { + "amount": "199.144672954", + "slot": { + "period": 136691, + "thread": 29 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 265404, + "thread": 14 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 432469, + "thread": 17 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 555593, + "thread": 16 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 820504, + "thread": 21 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 935716, + "thread": 0 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1067034, + "thread": 6 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1287595, + "thread": 24 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1407691, + "thread": 29 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1543799, + "thread": 24 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1734017, + "thread": 29 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 1944499, + "thread": 13 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2124551, + "thread": 15 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2226927, + "thread": 30 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2424152, + "thread": 8 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2537098, + "thread": 8 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2681683, + "thread": 27 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2837002, + "thread": 1 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 2975746, + "thread": 31 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 3203918, + "thread": 9 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 3296589, + "thread": 8 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 3565708, + "thread": 4 + } + }, + { + "amount": "199.144672954", + "slot": { + "period": 3769081, + "thread": 5 + } + }, + { + "amount": "199.144672960", + "slot": { + "period": 3809211, + "thread": 19 + } + } + ], + "AU12c25pZHZSW8LLkvyqvGZTSfXJRbcKEY5ZaqN4Ufvr9iMEhEhzS": [ + { + "amount": "73.017865498", + "slot": { + "period": 33427, + "thread": 23 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 249507, + "thread": 17 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 489514, + "thread": 9 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 602547, + "thread": 0 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 764459, + "thread": 1 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 980374, + "thread": 12 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1043804, + "thread": 29 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1224472, + "thread": 31 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1356461, + "thread": 12 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1560511, + "thread": 14 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1663542, + "thread": 21 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 1960579, + "thread": 0 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2111616, + "thread": 26 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2186042, + "thread": 25 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2418013, + "thread": 16 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2496611, + "thread": 3 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2690166, + "thread": 21 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 2908786, + "thread": 14 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 3027150, + "thread": 0 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 3197502, + "thread": 30 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 3310478, + "thread": 22 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 3575526, + "thread": 27 + } + }, + { + "amount": "73.017865498", + "slot": { + "period": 3667830, + "thread": 4 + } + }, + { + "amount": "73.017865494", + "slot": { + "period": 3815355, + "thread": 24 + } + } + ], + "AU12c2EVz6JRy7BSV1zQ4H2xy7Ux5GFaUjmMdLQt7iXfZjqmJbere": [ + { + "amount": "245.231170296", + "slot": { + "period": 72524, + "thread": 13 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 168083, + "thread": 10 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 451043, + "thread": 7 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 514465, + "thread": 12 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 795837, + "thread": 18 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 961266, + "thread": 19 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1097454, + "thread": 1 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1173214, + "thread": 21 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1446018, + "thread": 7 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1485722, + "thread": 10 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1712689, + "thread": 27 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1963707, + "thread": 8 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 1996701, + "thread": 16 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2294534, + "thread": 27 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2369066, + "thread": 11 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2515021, + "thread": 8 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2777325, + "thread": 5 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2838101, + "thread": 12 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 2983416, + "thread": 4 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 3244057, + "thread": 29 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 3439811, + "thread": 25 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 3464272, + "thread": 7 + } + }, + { + "amount": "245.231170296", + "slot": { + "period": 3683111, + "thread": 14 + } + }, + { + "amount": "245.231170287", + "slot": { + "period": 3818557, + "thread": 8 + } + } + ], + "AU12c3BhFBmii86S4uhwsjqY6dLke6YwPjo8TnqzbD6dmbS7vXXCx": [ + { + "amount": "130.603240320", + "slot": { + "period": 130910, + "thread": 9 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 307619, + "thread": 10 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 331628, + "thread": 0 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 608556, + "thread": 16 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 713128, + "thread": 4 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 890273, + "thread": 19 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1010071, + "thread": 8 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1238948, + "thread": 18 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1399000, + "thread": 1 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1479988, + "thread": 25 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1762172, + "thread": 21 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 1847712, + "thread": 18 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2123765, + "thread": 28 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2279207, + "thread": 26 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2322840, + "thread": 25 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2620311, + "thread": 25 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2668296, + "thread": 11 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2807374, + "thread": 8 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 2971725, + "thread": 23 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 3173159, + "thread": 12 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 3332227, + "thread": 1 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 3450985, + "thread": 6 + } + }, + { + "amount": "130.603240320", + "slot": { + "period": 3683440, + "thread": 31 + } + }, + { + "amount": "130.603240331", + "slot": { + "period": 3852110, + "thread": 26 + } + } + ], + "AU12c3iPo3mXdNrDcXaa4pcpZf7XVTLhk9bSoLbYzng3d4YrDxuck": [ + { + "amount": "181.109015352", + "slot": { + "period": 12921, + "thread": 28 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 245210, + "thread": 7 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 384129, + "thread": 8 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 513507, + "thread": 2 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 677856, + "thread": 0 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 977216, + "thread": 18 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1089119, + "thread": 27 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1164903, + "thread": 27 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1371468, + "thread": 31 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1613007, + "thread": 13 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1783385, + "thread": 4 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 1854960, + "thread": 31 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2096743, + "thread": 31 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2145560, + "thread": 18 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2391417, + "thread": 26 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2621916, + "thread": 18 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2626598, + "thread": 2 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 2837697, + "thread": 7 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 3095803, + "thread": 26 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 3179260, + "thread": 22 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 3434131, + "thread": 6 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 3591267, + "thread": 29 + } + }, + { + "amount": "181.109015352", + "slot": { + "period": 3634962, + "thread": 0 + } + }, + { + "amount": "181.109015356", + "slot": { + "period": 3906870, + "thread": 7 + } + } + ], + "AU12c47tdMpbdsgkdeGE4NZQPWJMZZRp9ATrsuJsXA9NTuvupbxea": [ + { + "amount": "237.704731502", + "slot": { + "period": 116959, + "thread": 25 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 270739, + "thread": 9 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 473479, + "thread": 19 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 633109, + "thread": 31 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 803295, + "thread": 23 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 862918, + "thread": 2 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1104741, + "thread": 20 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1309975, + "thread": 9 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1438990, + "thread": 6 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1609856, + "thread": 2 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1806559, + "thread": 17 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 1862790, + "thread": 23 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2117961, + "thread": 5 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2256280, + "thread": 21 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2396229, + "thread": 10 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2588827, + "thread": 9 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2708932, + "thread": 14 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 2879399, + "thread": 13 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 3080329, + "thread": 22 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 3280965, + "thread": 31 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 3375355, + "thread": 8 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 3491416, + "thread": 27 + } + }, + { + "amount": "237.704731502", + "slot": { + "period": 3742708, + "thread": 3 + } + }, + { + "amount": "237.704731501", + "slot": { + "period": 3814714, + "thread": 16 + } + } + ], + "AU12c4s5DqYcUP6r1Y3eV5F8QZh5aFh1YcQjK2JMHfKEGvhomuwYq": [ + { + "amount": "91.514922705", + "slot": { + "period": 87894, + "thread": 1 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 321294, + "thread": 25 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 482040, + "thread": 23 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 538324, + "thread": 16 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 726326, + "thread": 9 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 972948, + "thread": 24 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 999402, + "thread": 3 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 1262808, + "thread": 10 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 1342918, + "thread": 15 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 1500291, + "thread": 11 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 1746046, + "thread": 24 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 1975638, + "thread": 7 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2096849, + "thread": 24 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2291157, + "thread": 5 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2427010, + "thread": 13 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2464190, + "thread": 11 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2746422, + "thread": 21 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 2939383, + "thread": 28 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 3047226, + "thread": 27 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 3164247, + "thread": 14 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 3384888, + "thread": 29 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 3586703, + "thread": 9 + } + }, + { + "amount": "91.514922705", + "slot": { + "period": 3634838, + "thread": 17 + } + }, + { + "amount": "91.514922709", + "slot": { + "period": 3807129, + "thread": 11 + } + } + ], + "AU12c5h3iuWFiV7pN7woamXEUT3MKB8U2FPGdExdtWDMbdahYdnPq": [ + { + "amount": "53.668861868", + "slot": { + "period": 94695, + "thread": 26 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 270971, + "thread": 5 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 420758, + "thread": 26 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 581198, + "thread": 6 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 691481, + "thread": 7 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 952349, + "thread": 3 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1098103, + "thread": 17 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1189117, + "thread": 14 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1390506, + "thread": 23 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1496195, + "thread": 5 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1757954, + "thread": 23 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 1918471, + "thread": 27 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2088323, + "thread": 29 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2268862, + "thread": 20 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2346199, + "thread": 22 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2555824, + "thread": 18 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2752055, + "thread": 11 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 2936785, + "thread": 19 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 3108447, + "thread": 27 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 3234866, + "thread": 14 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 3361940, + "thread": 30 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 3489433, + "thread": 25 + } + }, + { + "amount": "53.668861868", + "slot": { + "period": 3623547, + "thread": 6 + } + }, + { + "amount": "53.668861858", + "slot": { + "period": 3912159, + "thread": 21 + } + } + ], + "AU12c5inkk7tdVxNDgZY7DhGM43StbpQGcEYfcCzUaBWVpeQACHNH": [ + { + "amount": "549.297734297", + "slot": { + "period": 101690, + "thread": 9 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 216440, + "thread": 5 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 363574, + "thread": 7 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 604408, + "thread": 11 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 689407, + "thread": 10 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 835508, + "thread": 15 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1043007, + "thread": 4 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1164899, + "thread": 19 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1471780, + "thread": 2 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1644154, + "thread": 5 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1678795, + "thread": 22 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 1836630, + "thread": 4 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2002282, + "thread": 25 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2213122, + "thread": 15 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2358321, + "thread": 29 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2532247, + "thread": 8 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2743253, + "thread": 11 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 2864468, + "thread": 5 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 3106471, + "thread": 11 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 3224956, + "thread": 21 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 3306411, + "thread": 4 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 3613838, + "thread": 12 + } + }, + { + "amount": "549.297734297", + "slot": { + "period": 3661158, + "thread": 20 + } + }, + { + "amount": "549.297734299", + "slot": { + "period": 3891234, + "thread": 25 + } + } + ], + "AU12c6VaNFW9aHZT1QaZ4Cq3e5Tg8Nt4myrAMbqMHaMyGYZjQiGzz": [ + { + "amount": "66.267659814", + "slot": { + "period": 138989, + "thread": 11 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 181846, + "thread": 14 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 431101, + "thread": 0 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 566088, + "thread": 10 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 679101, + "thread": 18 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 905236, + "thread": 18 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1132705, + "thread": 16 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1158889, + "thread": 5 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1339914, + "thread": 16 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1570709, + "thread": 14 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1714308, + "thread": 22 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1957005, + "thread": 12 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 1991783, + "thread": 21 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2145112, + "thread": 2 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2331205, + "thread": 18 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2508781, + "thread": 12 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2721006, + "thread": 11 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2897482, + "thread": 11 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 2992629, + "thread": 20 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 3272016, + "thread": 17 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 3353395, + "thread": 12 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 3531669, + "thread": 24 + } + }, + { + "amount": "66.267659814", + "slot": { + "period": 3711579, + "thread": 2 + } + }, + { + "amount": "66.267659816", + "slot": { + "period": 3804899, + "thread": 1 + } + } + ], + "AU12c6WiNnU3zWRiRXDFiP8RhqRsFqBf3PEX5DdDBeDY6qfq3Ba8d": [ + { + "amount": "470.282824649", + "slot": { + "period": 144059, + "thread": 6 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 174668, + "thread": 5 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 328666, + "thread": 20 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 650916, + "thread": 10 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 729064, + "thread": 20 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 888069, + "thread": 29 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1078561, + "thread": 31 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1162772, + "thread": 1 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1378416, + "thread": 17 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1630539, + "thread": 31 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1771896, + "thread": 2 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 1953303, + "thread": 30 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2060991, + "thread": 14 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2179400, + "thread": 10 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2362030, + "thread": 23 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2608420, + "thread": 11 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2640986, + "thread": 22 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 2948467, + "thread": 9 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 3018322, + "thread": 23 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 3243799, + "thread": 24 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 3366723, + "thread": 29 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 3560424, + "thread": 31 + } + }, + { + "amount": "470.282824649", + "slot": { + "period": 3693502, + "thread": 27 + } + }, + { + "amount": "470.282824648", + "slot": { + "period": 3919565, + "thread": 6 + } + } + ], + "AU12c6cD1qLceu34XYfN6jAXDRCwPCqX84zGWgqgYzYZdbFCoqyeK": [ + { + "amount": "95.009508885", + "slot": { + "period": 147819, + "thread": 14 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 235574, + "thread": 10 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 399764, + "thread": 25 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 548485, + "thread": 29 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 756145, + "thread": 13 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 915968, + "thread": 7 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 986741, + "thread": 28 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 1313518, + "thread": 2 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 1462607, + "thread": 27 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 1594758, + "thread": 25 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 1740608, + "thread": 23 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 1927020, + "thread": 9 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2041285, + "thread": 16 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2283078, + "thread": 9 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2404754, + "thread": 12 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2525322, + "thread": 24 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2700404, + "thread": 12 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 2895128, + "thread": 8 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 3045537, + "thread": 6 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 3147390, + "thread": 14 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 3326806, + "thread": 7 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 3543988, + "thread": 21 + } + }, + { + "amount": "95.009508885", + "slot": { + "period": 3707682, + "thread": 11 + } + }, + { + "amount": "95.009508888", + "slot": { + "period": 3933063, + "thread": 18 + } + } + ], + "AU12c7ML6VGLcjoXnfv987KsP4rpyDzJdfNZBzb2gRFXp2YDoFW2k": [ + { + "amount": "109.330293258", + "slot": { + "period": 19768, + "thread": 0 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 236212, + "thread": 26 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 433018, + "thread": 2 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 579594, + "thread": 8 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 746527, + "thread": 2 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 881136, + "thread": 26 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 995811, + "thread": 29 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 1203496, + "thread": 15 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 1341118, + "thread": 0 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 1547691, + "thread": 4 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 1684768, + "thread": 24 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 1927952, + "thread": 5 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2008893, + "thread": 25 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2231344, + "thread": 9 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2436542, + "thread": 1 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2584436, + "thread": 30 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2673519, + "thread": 19 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2924450, + "thread": 22 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 2975812, + "thread": 28 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 3265122, + "thread": 4 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 3291324, + "thread": 26 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 3576092, + "thread": 5 + } + }, + { + "amount": "109.330293258", + "slot": { + "period": 3740552, + "thread": 3 + } + }, + { + "amount": "109.330293248", + "slot": { + "period": 3803325, + "thread": 30 + } + } + ], + "AU12c8y8JPgWv82Pzm3MQfyqJezATDX2edk58k92sJVB84pR8Pkz5": [ + { + "amount": "312.340306496", + "slot": { + "period": 138013, + "thread": 3 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 291136, + "thread": 29 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 444122, + "thread": 25 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 522039, + "thread": 20 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 654437, + "thread": 19 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 909771, + "thread": 9 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1105329, + "thread": 28 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1158237, + "thread": 8 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1323830, + "thread": 18 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1548012, + "thread": 12 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1703529, + "thread": 5 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 1950580, + "thread": 16 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2074463, + "thread": 4 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2150036, + "thread": 13 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2341641, + "thread": 29 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2486187, + "thread": 9 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2695185, + "thread": 27 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 2842314, + "thread": 19 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 3054322, + "thread": 11 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 3250725, + "thread": 10 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 3354942, + "thread": 30 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 3499688, + "thread": 21 + } + }, + { + "amount": "312.340306496", + "slot": { + "period": 3756259, + "thread": 30 + } + }, + { + "amount": "312.340306508", + "slot": { + "period": 3893640, + "thread": 8 + } + } + ], + "AU12cAwbdiXeuBULx5qBqk1Q8LqNmXg4uTZLnCQXSgDaBfWYAHWn": [ + { + "amount": "176.142466112", + "slot": { + "period": 19760, + "thread": 14 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 219880, + "thread": 23 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 416226, + "thread": 13 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 648955, + "thread": 4 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 788566, + "thread": 0 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 923753, + "thread": 11 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1002467, + "thread": 10 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1286216, + "thread": 12 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1393911, + "thread": 16 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1497374, + "thread": 24 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1784962, + "thread": 11 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 1918717, + "thread": 12 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2022044, + "thread": 12 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2145700, + "thread": 10 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2345996, + "thread": 6 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2486245, + "thread": 22 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2636906, + "thread": 19 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2805419, + "thread": 27 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 2968451, + "thread": 4 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 3128749, + "thread": 22 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 3314755, + "thread": 24 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 3580414, + "thread": 11 + } + }, + { + "amount": "176.142466112", + "slot": { + "period": 3654806, + "thread": 15 + } + }, + { + "amount": "176.142466109", + "slot": { + "period": 3945171, + "thread": 21 + } + } + ], + "AU12cB8rE3JZsHQrsBVNc1o55wL6awosgzKvHDsxjE6dwq89uuZN4": [ + { + "amount": "160.502826652", + "slot": { + "period": 140976, + "thread": 24 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 287949, + "thread": 2 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 453647, + "thread": 13 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 631964, + "thread": 23 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 746825, + "thread": 26 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 907568, + "thread": 2 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1041982, + "thread": 6 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1187708, + "thread": 18 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1458297, + "thread": 20 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1482010, + "thread": 11 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1702386, + "thread": 15 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 1953346, + "thread": 22 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2026849, + "thread": 0 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2252865, + "thread": 0 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2328211, + "thread": 16 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2512452, + "thread": 12 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2781868, + "thread": 1 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 2923347, + "thread": 28 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 3047408, + "thread": 11 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 3230644, + "thread": 2 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 3417285, + "thread": 12 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 3535163, + "thread": 9 + } + }, + { + "amount": "160.502826652", + "slot": { + "period": 3661160, + "thread": 25 + } + }, + { + "amount": "160.502826653", + "slot": { + "period": 3838832, + "thread": 0 + } + } + ], + "AU12cC66ixWiktN63gJfDntVvixn7GS4L2hx3BNW35GLTSWnYaLqo": [ + { + "amount": "513.782613779", + "slot": { + "period": 25244, + "thread": 26 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 298625, + "thread": 28 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 341411, + "thread": 9 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 531839, + "thread": 3 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 800340, + "thread": 1 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 904024, + "thread": 20 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1129998, + "thread": 0 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1289682, + "thread": 8 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1370279, + "thread": 31 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1627832, + "thread": 11 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1756345, + "thread": 3 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 1955940, + "thread": 20 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2142139, + "thread": 27 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2196111, + "thread": 0 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2447744, + "thread": 24 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2538898, + "thread": 21 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2680996, + "thread": 26 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2840433, + "thread": 29 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 2994649, + "thread": 13 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 3143501, + "thread": 16 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 3298799, + "thread": 30 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 3531971, + "thread": 16 + } + }, + { + "amount": "513.782613779", + "slot": { + "period": 3734182, + "thread": 29 + } + }, + { + "amount": "513.782613782", + "slot": { + "period": 3881174, + "thread": 18 + } + } + ], + "AU12cCHWqiiShJHh9vkXkn35kXyZuWpZ4gEr5ohkURMtZZPt4sYJe": [ + { + "amount": "144.513499704", + "slot": { + "period": 128382, + "thread": 29 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 268916, + "thread": 7 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 402840, + "thread": 26 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 621684, + "thread": 7 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 770899, + "thread": 17 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 944971, + "thread": 23 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1103959, + "thread": 0 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1180939, + "thread": 26 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1399660, + "thread": 10 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1549389, + "thread": 13 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1692405, + "thread": 0 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 1833000, + "thread": 30 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2142257, + "thread": 26 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2221455, + "thread": 15 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2368079, + "thread": 13 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2563513, + "thread": 7 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2684692, + "thread": 3 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2900660, + "thread": 13 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 2974216, + "thread": 12 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 3135662, + "thread": 11 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 3369705, + "thread": 8 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 3472976, + "thread": 30 + } + }, + { + "amount": "144.513499704", + "slot": { + "period": 3757236, + "thread": 8 + } + }, + { + "amount": "144.513499715", + "slot": { + "period": 3796361, + "thread": 19 + } + } + ], + "AU12cEZEKsUn1J2oPEuvWSdkkwkcr1xQu9YBK834TBZzHpvkeEA7V": [ + { + "amount": "449.491933589", + "slot": { + "period": 164653, + "thread": 1 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 228983, + "thread": 21 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 428243, + "thread": 28 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 628080, + "thread": 2 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 717096, + "thread": 18 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 898650, + "thread": 11 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1079662, + "thread": 16 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1222583, + "thread": 4 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1465870, + "thread": 4 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1545904, + "thread": 28 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1779341, + "thread": 3 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 1938902, + "thread": 29 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2136787, + "thread": 10 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2227986, + "thread": 15 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2352508, + "thread": 14 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2477350, + "thread": 6 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2704767, + "thread": 11 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 2851321, + "thread": 0 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 3012333, + "thread": 26 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 3154463, + "thread": 15 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 3342742, + "thread": 17 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 3509607, + "thread": 2 + } + }, + { + "amount": "449.491933589", + "slot": { + "period": 3712867, + "thread": 30 + } + }, + { + "amount": "449.491933587", + "slot": { + "period": 3832938, + "thread": 4 + } + } + ], + "AU12cFDMTfmg9GzmzUXz8GjR1b4QSKLiAGd2b6LjJ71emERhxxR8p": [ + { + "amount": "129.042330685", + "slot": { + "period": 15552, + "thread": 29 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 253767, + "thread": 29 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 426211, + "thread": 2 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 577812, + "thread": 0 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 761633, + "thread": 15 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 895766, + "thread": 19 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1069609, + "thread": 30 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1252595, + "thread": 28 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1364692, + "thread": 0 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1560512, + "thread": 29 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1686096, + "thread": 17 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 1964073, + "thread": 13 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2006919, + "thread": 21 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2231780, + "thread": 24 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2411285, + "thread": 21 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2524600, + "thread": 12 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2650589, + "thread": 0 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2798983, + "thread": 18 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 2990466, + "thread": 20 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 3201510, + "thread": 28 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 3335140, + "thread": 2 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 3614200, + "thread": 27 + } + }, + { + "amount": "129.042330685", + "slot": { + "period": 3659186, + "thread": 2 + } + }, + { + "amount": "129.042330686", + "slot": { + "period": 3868428, + "thread": 15 + } + } + ], + "AU12cFesnPGyk3zQrUZYWkgajc6mmzgCRgH1RjjvCg5TuJkuMDuRA": [ + { + "amount": "219.250973745", + "slot": { + "period": 26462, + "thread": 8 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 204121, + "thread": 19 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 431387, + "thread": 27 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 565430, + "thread": 1 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 801489, + "thread": 10 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 973694, + "thread": 28 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1138281, + "thread": 21 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1271755, + "thread": 25 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1457611, + "thread": 31 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1635595, + "thread": 6 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1791900, + "thread": 9 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1967418, + "thread": 24 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 1994538, + "thread": 5 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 2282413, + "thread": 31 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 2416369, + "thread": 1 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 2608389, + "thread": 1 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 2766448, + "thread": 29 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 2818854, + "thread": 23 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 3031221, + "thread": 29 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 3125886, + "thread": 8 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 3362133, + "thread": 24 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 3503217, + "thread": 19 + } + }, + { + "amount": "219.250973745", + "slot": { + "period": 3691475, + "thread": 21 + } + }, + { + "amount": "219.250973753", + "slot": { + "period": 3815300, + "thread": 6 + } + } + ], + "AU12cFiKBuBfDVMcrbxEk1dQfH8TPDHMgXM4uqjYrdcvPgx1xTKG5": [ + { + "amount": "337.176609417", + "slot": { + "period": 166455, + "thread": 13 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 246577, + "thread": 18 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 345801, + "thread": 22 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 643437, + "thread": 28 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 762907, + "thread": 17 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 976647, + "thread": 21 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1064873, + "thread": 20 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1283524, + "thread": 22 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1332611, + "thread": 13 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1618627, + "thread": 13 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1665436, + "thread": 9 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 1812303, + "thread": 23 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2093397, + "thread": 8 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2276741, + "thread": 6 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2354685, + "thread": 4 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2464907, + "thread": 8 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2742136, + "thread": 13 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2883399, + "thread": 21 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 2976379, + "thread": 15 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 3242519, + "thread": 24 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 3348676, + "thread": 25 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 3457554, + "thread": 12 + } + }, + { + "amount": "337.176609417", + "slot": { + "period": 3695111, + "thread": 9 + } + }, + { + "amount": "337.176609427", + "slot": { + "period": 3851481, + "thread": 29 + } + } + ], + "AU12cHTxQ8RPLVE5gjwod5xF16JCWCrLu6hsh9dgszc9mz6qittiH": [ + { + "amount": "130.093519416", + "slot": { + "period": 95611, + "thread": 18 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 244552, + "thread": 4 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 467174, + "thread": 2 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 632035, + "thread": 28 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 816424, + "thread": 20 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 958037, + "thread": 10 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1061337, + "thread": 17 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1214872, + "thread": 2 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1419731, + "thread": 25 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1534143, + "thread": 1 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1717084, + "thread": 21 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 1959109, + "thread": 16 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2111977, + "thread": 19 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2283800, + "thread": 0 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2423942, + "thread": 30 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2569511, + "thread": 10 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2654162, + "thread": 16 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 2809791, + "thread": 30 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 3069965, + "thread": 2 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 3275476, + "thread": 16 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 3446247, + "thread": 3 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 3502750, + "thread": 17 + } + }, + { + "amount": "130.093519416", + "slot": { + "period": 3712502, + "thread": 29 + } + }, + { + "amount": "130.093519422", + "slot": { + "period": 3911472, + "thread": 18 + } + } + ], + "AU12cHwPTeV2uw2vrsZNJ3ovYLLRGW7ptWpk2BfyT4yiNkWhjnCCB": [ + { + "amount": "233.074279167", + "slot": { + "period": 58188, + "thread": 6 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 304078, + "thread": 4 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 411792, + "thread": 20 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 545633, + "thread": 23 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 785861, + "thread": 8 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 850108, + "thread": 3 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1031517, + "thread": 21 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1212206, + "thread": 27 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1472021, + "thread": 5 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1615551, + "thread": 15 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1806206, + "thread": 30 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 1855721, + "thread": 2 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2090596, + "thread": 3 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2207697, + "thread": 15 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2408506, + "thread": 18 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2555818, + "thread": 19 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2729855, + "thread": 26 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 2810032, + "thread": 14 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 3082918, + "thread": 20 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 3234922, + "thread": 24 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 3356631, + "thread": 20 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 3479170, + "thread": 31 + } + }, + { + "amount": "233.074279167", + "slot": { + "period": 3643810, + "thread": 13 + } + }, + { + "amount": "233.074279169", + "slot": { + "period": 3877419, + "thread": 24 + } + } + ], + "AU12cJHgc1uBXFYXivaNRvVrSpmgGRC77W2XZzemtqvejqqqZWuyf": [ + { + "amount": "153.907247369", + "slot": { + "period": 55751, + "thread": 2 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 267101, + "thread": 17 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 347754, + "thread": 31 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 589067, + "thread": 6 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 781123, + "thread": 4 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 909555, + "thread": 16 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1125974, + "thread": 22 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1150922, + "thread": 14 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1396467, + "thread": 4 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1636838, + "thread": 6 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1681083, + "thread": 24 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 1878899, + "thread": 12 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2059627, + "thread": 28 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2192924, + "thread": 30 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2368970, + "thread": 28 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2620716, + "thread": 27 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2695787, + "thread": 28 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 2878679, + "thread": 29 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 3007541, + "thread": 5 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 3141805, + "thread": 15 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 3386657, + "thread": 9 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 3552117, + "thread": 27 + } + }, + { + "amount": "153.907247369", + "slot": { + "period": 3648431, + "thread": 29 + } + }, + { + "amount": "153.907247367", + "slot": { + "period": 3881534, + "thread": 15 + } + } + ], + "AU12cJz1dfumC62mDdWNua2Nk3uWsVyRtpi6pyVJ2K6EU4gQDq4V9": [ + { + "amount": "701.554441647", + "slot": { + "period": 44096, + "thread": 27 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 198530, + "thread": 31 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 364411, + "thread": 14 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 514491, + "thread": 15 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 797176, + "thread": 30 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 867694, + "thread": 5 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1139584, + "thread": 3 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1173917, + "thread": 24 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1410480, + "thread": 17 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1569307, + "thread": 28 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1798387, + "thread": 18 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1830487, + "thread": 3 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 1978791, + "thread": 19 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 2195816, + "thread": 14 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 2314431, + "thread": 15 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 2516962, + "thread": 18 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 2672129, + "thread": 15 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 2896732, + "thread": 13 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 3109509, + "thread": 27 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 3137266, + "thread": 16 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 3431371, + "thread": 26 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 3615849, + "thread": 17 + } + }, + { + "amount": "701.554441647", + "slot": { + "period": 3635505, + "thread": 18 + } + }, + { + "amount": "701.554441650", + "slot": { + "period": 3908852, + "thread": 1 + } + } + ], + "AU12cKJGnqs79XKLNYfdpJdFXXMB4fTHaLVFeoZZU22tcPWj6Mqa5": [ + { + "amount": "306.224288718", + "slot": { + "period": 141397, + "thread": 18 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 317277, + "thread": 31 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 459993, + "thread": 11 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 532815, + "thread": 14 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 722232, + "thread": 31 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 904710, + "thread": 17 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1087679, + "thread": 23 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1186342, + "thread": 28 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1414972, + "thread": 29 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1534160, + "thread": 15 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1650664, + "thread": 4 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 1953467, + "thread": 16 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2112193, + "thread": 7 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2271029, + "thread": 8 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2339720, + "thread": 9 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2480716, + "thread": 17 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2692543, + "thread": 27 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 2902042, + "thread": 5 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 3103827, + "thread": 30 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 3198651, + "thread": 5 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 3369236, + "thread": 2 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 3574619, + "thread": 16 + } + }, + { + "amount": "306.224288718", + "slot": { + "period": 3764274, + "thread": 4 + } + }, + { + "amount": "306.224288709", + "slot": { + "period": 3884941, + "thread": 29 + } + } + ], + "AU12cKXVTYZwQXX7ghDNNaaUPqSLoijAy91PNNnPVVZknTNCkEELi": [ + { + "amount": "460.327209244", + "slot": { + "period": 89089, + "thread": 28 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 295493, + "thread": 1 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 441652, + "thread": 30 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 496621, + "thread": 27 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 677609, + "thread": 15 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 964908, + "thread": 0 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1084732, + "thread": 29 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1164829, + "thread": 3 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1447441, + "thread": 20 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1642904, + "thread": 3 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1702192, + "thread": 28 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 1836418, + "thread": 25 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2083864, + "thread": 1 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2202466, + "thread": 25 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2384694, + "thread": 3 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2557718, + "thread": 1 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2755499, + "thread": 30 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2871654, + "thread": 18 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 2994076, + "thread": 4 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 3224018, + "thread": 7 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 3292994, + "thread": 22 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 3489049, + "thread": 24 + } + }, + { + "amount": "460.327209244", + "slot": { + "period": 3771760, + "thread": 10 + } + }, + { + "amount": "460.327209247", + "slot": { + "period": 3938061, + "thread": 18 + } + } + ], + "AU12cKkWsmYe7JbWTSiPdbuKfwr9FWYBFcuBpwxKUycJZNBZAvzKv": [ + { + "amount": "343.526249965", + "slot": { + "period": 87026, + "thread": 17 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 289691, + "thread": 20 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 467527, + "thread": 26 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 643213, + "thread": 16 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 780236, + "thread": 20 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 908702, + "thread": 2 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1003229, + "thread": 6 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1250869, + "thread": 26 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1446283, + "thread": 4 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1535820, + "thread": 20 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1744100, + "thread": 16 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 1927629, + "thread": 2 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2014254, + "thread": 9 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2166972, + "thread": 22 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2448617, + "thread": 18 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2505199, + "thread": 28 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2783029, + "thread": 1 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 2826326, + "thread": 20 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3033001, + "thread": 24 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3121435, + "thread": 30 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3437855, + "thread": 31 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3547237, + "thread": 5 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3688228, + "thread": 31 + } + }, + { + "amount": "343.526249965", + "slot": { + "period": 3834710, + "thread": 13 + } + } + ], + "AU12cMhvsR5EgkmWyKXy3NJGXqTR5RqrkidsEZVWSr5THrNJ2SpfW": [ + { + "amount": "263.729739255", + "slot": { + "period": 31112, + "thread": 12 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 308132, + "thread": 4 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 375465, + "thread": 4 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 536111, + "thread": 21 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 678766, + "thread": 4 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 841609, + "thread": 31 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 984551, + "thread": 21 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 1181799, + "thread": 1 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 1434587, + "thread": 1 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 1544412, + "thread": 31 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 1712698, + "thread": 17 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 1829684, + "thread": 19 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2018753, + "thread": 17 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2261158, + "thread": 7 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2370957, + "thread": 31 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2555154, + "thread": 26 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2701014, + "thread": 15 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 2833058, + "thread": 1 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 3068365, + "thread": 15 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 3139271, + "thread": 10 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 3324840, + "thread": 23 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 3586859, + "thread": 26 + } + }, + { + "amount": "263.729739255", + "slot": { + "period": 3730070, + "thread": 0 + } + }, + { + "amount": "263.729739266", + "slot": { + "period": 3922290, + "thread": 20 + } + } + ], + "AU12cNJBEGJVKifuymNTs71R124RPsJSDU8dricRzpByjyULGU3b1": [ + { + "amount": "67.954411149", + "slot": { + "period": 59710, + "thread": 25 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 239298, + "thread": 30 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 474063, + "thread": 11 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 521012, + "thread": 14 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 785225, + "thread": 31 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 847428, + "thread": 18 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1032386, + "thread": 15 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1195480, + "thread": 12 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1463746, + "thread": 20 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1591754, + "thread": 24 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1702242, + "thread": 5 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1914575, + "thread": 17 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 1999300, + "thread": 22 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 2258432, + "thread": 11 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 2386747, + "thread": 8 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 2464066, + "thread": 22 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 2762957, + "thread": 26 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 2937612, + "thread": 21 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 3032637, + "thread": 31 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 3133537, + "thread": 9 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 3425308, + "thread": 4 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 3459786, + "thread": 12 + } + }, + { + "amount": "67.954411149", + "slot": { + "period": 3621221, + "thread": 6 + } + }, + { + "amount": "67.954411160", + "slot": { + "period": 3947284, + "thread": 12 + } + } + ], + "AU12cNKgXGLG64JGEfPTVJJQ9sTCtpkiTfwpXYx8GMzXQhHDP76v1": [ + { + "amount": "60.502962304", + "slot": { + "period": 106254, + "thread": 25 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 298337, + "thread": 14 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 484123, + "thread": 14 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 514787, + "thread": 13 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 661697, + "thread": 10 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 845737, + "thread": 18 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1014157, + "thread": 11 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1249912, + "thread": 17 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1388285, + "thread": 26 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1512993, + "thread": 4 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1786383, + "thread": 1 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 1944700, + "thread": 30 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2102333, + "thread": 29 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2241434, + "thread": 25 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2449056, + "thread": 18 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2470171, + "thread": 18 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2759510, + "thread": 6 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 2851419, + "thread": 11 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 3074773, + "thread": 16 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 3228927, + "thread": 14 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 3428611, + "thread": 27 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 3552401, + "thread": 5 + } + }, + { + "amount": "60.502962304", + "slot": { + "period": 3674061, + "thread": 13 + } + }, + { + "amount": "60.502962300", + "slot": { + "period": 3854034, + "thread": 16 + } + } + ], + "AU12cNbqkt9TibkoSewurG23BssoDh4V35b1xHZV3eV2PaRVdB7QD": [ + { + "amount": "165.152560840", + "slot": { + "period": 51518, + "thread": 27 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 294544, + "thread": 29 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 444881, + "thread": 13 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 618770, + "thread": 18 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 792229, + "thread": 12 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 972058, + "thread": 24 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1110176, + "thread": 13 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1246896, + "thread": 30 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1401061, + "thread": 1 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1631436, + "thread": 24 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1687243, + "thread": 14 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 1831195, + "thread": 15 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2032716, + "thread": 15 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2248592, + "thread": 11 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2401882, + "thread": 17 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2546699, + "thread": 7 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2728368, + "thread": 31 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 2940858, + "thread": 14 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 3009466, + "thread": 24 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 3200294, + "thread": 23 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 3320223, + "thread": 27 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 3592916, + "thread": 7 + } + }, + { + "amount": "165.152560840", + "slot": { + "period": 3728033, + "thread": 16 + } + }, + { + "amount": "165.152560850", + "slot": { + "period": 3822434, + "thread": 3 + } + } + ], + "AU12cNw74xUp2usz2exJt1Sj7cF2zcPRihtcTTRChzmfpULDf8YYo": [ + { + "amount": "273.003979275", + "slot": { + "period": 127363, + "thread": 12 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 196837, + "thread": 29 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 463484, + "thread": 13 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 509481, + "thread": 1 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 748898, + "thread": 25 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 910324, + "thread": 4 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1063073, + "thread": 12 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1153962, + "thread": 7 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1463297, + "thread": 9 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1591404, + "thread": 1 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1736501, + "thread": 17 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1890469, + "thread": 17 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 1982340, + "thread": 6 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 2189261, + "thread": 4 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 2436365, + "thread": 13 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 2543170, + "thread": 10 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 2740227, + "thread": 5 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 2904024, + "thread": 11 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 3087292, + "thread": 16 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 3152613, + "thread": 2 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 3309029, + "thread": 8 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 3463457, + "thread": 28 + } + }, + { + "amount": "273.003979275", + "slot": { + "period": 3705163, + "thread": 17 + } + }, + { + "amount": "273.003979273", + "slot": { + "period": 3853548, + "thread": 13 + } + } + ], + "AU12cRLHtHE3EdJcRT5Ppfp2ifVM5kmJGPhJPJLgSFovS7iqKDoCF": [ + { + "amount": "145.137934977", + "slot": { + "period": 95549, + "thread": 2 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 249913, + "thread": 22 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 394910, + "thread": 13 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 500632, + "thread": 31 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 710023, + "thread": 30 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 855598, + "thread": 26 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1095067, + "thread": 16 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1279419, + "thread": 21 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1457185, + "thread": 14 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1556027, + "thread": 24 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1743197, + "thread": 8 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 1882272, + "thread": 16 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2013084, + "thread": 6 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2258863, + "thread": 12 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2394643, + "thread": 17 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2468589, + "thread": 3 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2775164, + "thread": 7 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 2854992, + "thread": 18 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 3091837, + "thread": 21 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 3210323, + "thread": 30 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 3377913, + "thread": 2 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 3460090, + "thread": 0 + } + }, + { + "amount": "145.137934977", + "slot": { + "period": 3707011, + "thread": 6 + } + }, + { + "amount": "145.137934978", + "slot": { + "period": 3836233, + "thread": 10 + } + } + ], + "AU12cRPgpPdCokgJ6mr8B88TpQ4V3Tyk1t82aCxxoVk1i7RtHa5kp": [ + { + "amount": "633.656348656", + "slot": { + "period": 132632, + "thread": 25 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 177415, + "thread": 31 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 429833, + "thread": 8 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 497003, + "thread": 31 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 705088, + "thread": 22 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 903130, + "thread": 23 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1036544, + "thread": 7 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1165328, + "thread": 29 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1452676, + "thread": 31 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1592498, + "thread": 12 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1696204, + "thread": 23 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 1874883, + "thread": 12 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2121089, + "thread": 10 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2240620, + "thread": 16 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2443487, + "thread": 13 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2570922, + "thread": 16 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2703970, + "thread": 8 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 2850805, + "thread": 9 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 3100634, + "thread": 23 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 3287772, + "thread": 29 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 3348655, + "thread": 10 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 3509115, + "thread": 22 + } + }, + { + "amount": "633.656348656", + "slot": { + "period": 3629372, + "thread": 27 + } + }, + { + "amount": "633.656348655", + "slot": { + "period": 3878748, + "thread": 18 + } + } + ], + "AU12cRTXMaVqBBGNT8dvVjt8DprHVWRkiBjdzUo7izUgeZ9FMwaaz": [ + { + "amount": "151.132958513", + "slot": { + "period": 15941, + "thread": 0 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 269263, + "thread": 25 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 471065, + "thread": 28 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 615295, + "thread": 25 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 783485, + "thread": 28 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 943468, + "thread": 15 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1100041, + "thread": 12 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1269857, + "thread": 22 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1358905, + "thread": 3 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1556925, + "thread": 22 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1731672, + "thread": 26 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 1827805, + "thread": 2 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2089193, + "thread": 2 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2236199, + "thread": 9 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2447682, + "thread": 19 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2544974, + "thread": 11 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2691784, + "thread": 17 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 2889957, + "thread": 29 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 3069795, + "thread": 4 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 3247417, + "thread": 6 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 3443595, + "thread": 14 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 3526672, + "thread": 10 + } + }, + { + "amount": "151.132958513", + "slot": { + "period": 3710893, + "thread": 1 + } + }, + { + "amount": "151.132958514", + "slot": { + "period": 3870123, + "thread": 27 + } + } + ], + "AU12cRUkZebtCALpNLM1Gx54WrRXwTCUKqqMARR1ZDcU8jSrwWnEJ": [ + { + "amount": "259.533035399", + "slot": { + "period": 54906, + "thread": 18 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 227450, + "thread": 8 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 459917, + "thread": 5 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 534288, + "thread": 21 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 810175, + "thread": 23 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 863426, + "thread": 22 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1136322, + "thread": 30 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1280328, + "thread": 29 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1359321, + "thread": 14 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1584723, + "thread": 12 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1702642, + "thread": 3 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1958441, + "thread": 27 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 1983368, + "thread": 16 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2251562, + "thread": 15 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2408838, + "thread": 24 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2616418, + "thread": 31 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2762575, + "thread": 24 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2802799, + "thread": 7 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 2980468, + "thread": 8 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 3262398, + "thread": 0 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 3383793, + "thread": 24 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 3496820, + "thread": 4 + } + }, + { + "amount": "259.533035399", + "slot": { + "period": 3704934, + "thread": 29 + } + }, + { + "amount": "259.533035392", + "slot": { + "period": 3790251, + "thread": 15 + } + } + ], + "AU12cSQYcbyrgpvygGs99Zij4nFR8DeZikRSVGZ21tpHKYqNAvaj": [ + { + "amount": "164.003170299", + "slot": { + "period": 140135, + "thread": 12 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 307251, + "thread": 0 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 415281, + "thread": 13 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 493111, + "thread": 19 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 717225, + "thread": 1 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 852079, + "thread": 4 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1124387, + "thread": 5 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1199753, + "thread": 12 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1375409, + "thread": 12 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1521621, + "thread": 0 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1782821, + "thread": 16 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 1879481, + "thread": 22 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2071152, + "thread": 21 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2147191, + "thread": 20 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2427717, + "thread": 27 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2473229, + "thread": 12 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2789541, + "thread": 15 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 2933172, + "thread": 19 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 3004366, + "thread": 16 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 3246086, + "thread": 5 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 3291775, + "thread": 14 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 3565168, + "thread": 14 + } + }, + { + "amount": "164.003170299", + "slot": { + "period": 3680306, + "thread": 4 + } + }, + { + "amount": "164.003170300", + "slot": { + "period": 3911560, + "thread": 7 + } + } + ], + "AU12cSdSckVxV6RM7m5XU56k6AXXXLqb4YwUjtQy3tJK4eEd2i2QB": [ + { + "amount": "98.631515251", + "slot": { + "period": 128090, + "thread": 0 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 226835, + "thread": 3 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 401979, + "thread": 16 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 591699, + "thread": 17 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 705919, + "thread": 24 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 942657, + "thread": 5 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1020209, + "thread": 23 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1273771, + "thread": 31 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1470751, + "thread": 23 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1519953, + "thread": 2 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1771744, + "thread": 9 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 1851429, + "thread": 1 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2040397, + "thread": 9 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2151697, + "thread": 2 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2443265, + "thread": 1 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2470984, + "thread": 5 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2741410, + "thread": 29 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 2874627, + "thread": 3 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 3119257, + "thread": 23 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 3161093, + "thread": 4 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 3371175, + "thread": 7 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 3501321, + "thread": 11 + } + }, + { + "amount": "98.631515251", + "slot": { + "period": 3660855, + "thread": 6 + } + }, + { + "amount": "98.631515246", + "slot": { + "period": 3923620, + "thread": 12 + } + } + ], + "AU12cTT5z35HJQWWXf8jJRC7qMBJKJ6aGKLYSAHFmb6t2C4ej2k3i": [ + { + "amount": "72.993654692", + "slot": { + "period": 86732, + "thread": 0 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 218978, + "thread": 15 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 332770, + "thread": 24 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 599700, + "thread": 15 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 744636, + "thread": 14 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 932042, + "thread": 27 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1101558, + "thread": 25 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1276141, + "thread": 1 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1431110, + "thread": 29 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1539759, + "thread": 13 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1741026, + "thread": 23 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 1883499, + "thread": 19 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2081877, + "thread": 23 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2218257, + "thread": 19 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2336232, + "thread": 12 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2595791, + "thread": 24 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2699281, + "thread": 29 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 2838094, + "thread": 21 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 3113109, + "thread": 25 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 3215782, + "thread": 23 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 3415623, + "thread": 0 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 3569745, + "thread": 10 + } + }, + { + "amount": "72.993654692", + "slot": { + "period": 3685072, + "thread": 9 + } + }, + { + "amount": "72.993654681", + "slot": { + "period": 3831842, + "thread": 1 + } + } + ], + "AU12cTyhLTrVJ6JN781BPUoePdnNZ6cmXTKVX4jiG6HZ3Yj7LF9vb": [ + { + "amount": "316.704948315", + "slot": { + "period": 87847, + "thread": 28 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 320219, + "thread": 4 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 432837, + "thread": 25 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 525800, + "thread": 29 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 751501, + "thread": 29 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 938255, + "thread": 17 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1035961, + "thread": 13 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1174158, + "thread": 20 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1404111, + "thread": 4 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1550156, + "thread": 23 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1735463, + "thread": 30 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 1810841, + "thread": 12 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2031641, + "thread": 19 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2273377, + "thread": 6 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2454165, + "thread": 5 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2500758, + "thread": 14 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2781134, + "thread": 15 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 2903563, + "thread": 26 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 3001629, + "thread": 22 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 3169891, + "thread": 31 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 3351422, + "thread": 11 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 3602046, + "thread": 5 + } + }, + { + "amount": "316.704948315", + "slot": { + "period": 3704624, + "thread": 22 + } + }, + { + "amount": "316.704948323", + "slot": { + "period": 3847953, + "thread": 12 + } + } + ], + "AU12cVS1rYG1UqsLuNsoH19mZrySXyV5DxQt2aFLYFcLhYbDEoZNd": [ + { + "amount": "246.608891939", + "slot": { + "period": 110436, + "thread": 3 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 205016, + "thread": 4 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 450016, + "thread": 14 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 628120, + "thread": 29 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 673291, + "thread": 5 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 954550, + "thread": 28 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1090595, + "thread": 0 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1208933, + "thread": 11 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1359476, + "thread": 21 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1517700, + "thread": 27 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1739354, + "thread": 26 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1947040, + "thread": 18 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 1978834, + "thread": 14 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 2204766, + "thread": 28 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 2356693, + "thread": 13 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 2519342, + "thread": 25 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 2738035, + "thread": 2 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 2838007, + "thread": 5 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 3062853, + "thread": 1 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 3277767, + "thread": 11 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 3450368, + "thread": 29 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 3591931, + "thread": 2 + } + }, + { + "amount": "246.608891939", + "slot": { + "period": 3767665, + "thread": 6 + } + }, + { + "amount": "246.608891943", + "slot": { + "period": 3890103, + "thread": 16 + } + } + ], + "AU12cVhW6oubsmDQ2sQLWzzvs3UZp9zMmEnaAuf3SoGkcpvZroA5Q": [ + { + "amount": "154.099937502", + "slot": { + "period": 137767, + "thread": 5 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 196473, + "thread": 2 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 384492, + "thread": 2 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 564547, + "thread": 8 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 692674, + "thread": 25 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 850514, + "thread": 15 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1102532, + "thread": 14 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1299873, + "thread": 11 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1403525, + "thread": 8 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1552547, + "thread": 13 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1707802, + "thread": 13 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 1952356, + "thread": 28 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2039046, + "thread": 9 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2151460, + "thread": 9 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2408710, + "thread": 28 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2541065, + "thread": 6 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2684084, + "thread": 17 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 2913919, + "thread": 10 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 3051707, + "thread": 31 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 3223169, + "thread": 19 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 3345177, + "thread": 26 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 3550188, + "thread": 10 + } + }, + { + "amount": "154.099937502", + "slot": { + "period": 3661520, + "thread": 5 + } + }, + { + "amount": "154.099937512", + "slot": { + "period": 3784892, + "thread": 15 + } + } + ], + "AU12cVx3tMYj5C9oJQMePGx6zwvYFpzTQkZDY8ErxyKFo7BLDcnn5": [ + { + "amount": "90.578300950", + "slot": { + "period": 159652, + "thread": 13 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 288414, + "thread": 22 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 338325, + "thread": 10 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 567718, + "thread": 28 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 749744, + "thread": 26 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 898308, + "thread": 8 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1014001, + "thread": 29 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1304863, + "thread": 21 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1354597, + "thread": 31 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1493343, + "thread": 2 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1762676, + "thread": 15 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 1817671, + "thread": 19 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2072928, + "thread": 8 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2251568, + "thread": 11 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2363353, + "thread": 26 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2587290, + "thread": 21 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2627617, + "thread": 2 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 2817756, + "thread": 22 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 3000077, + "thread": 28 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 3252291, + "thread": 13 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 3339565, + "thread": 27 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 3570464, + "thread": 4 + } + }, + { + "amount": "90.578300950", + "slot": { + "period": 3694402, + "thread": 31 + } + }, + { + "amount": "90.578300949", + "slot": { + "period": 3813824, + "thread": 11 + } + } + ], + "AU12cWmAck4oARjCRmf93MHLFYydq17fPuxGHixLTBuPcUAHBUnr9": [ + { + "amount": "149.191137369", + "slot": { + "period": 126999, + "thread": 12 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 207960, + "thread": 2 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 397737, + "thread": 9 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 640647, + "thread": 0 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 805182, + "thread": 22 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 968534, + "thread": 11 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1140627, + "thread": 15 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1280687, + "thread": 17 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1373562, + "thread": 26 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1548927, + "thread": 30 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1688450, + "thread": 25 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 1953686, + "thread": 1 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2045083, + "thread": 18 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2198245, + "thread": 30 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2314263, + "thread": 20 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2594656, + "thread": 21 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2754025, + "thread": 10 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 2892727, + "thread": 26 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 3034199, + "thread": 23 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 3278149, + "thread": 26 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 3411707, + "thread": 0 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 3496559, + "thread": 1 + } + }, + { + "amount": "149.191137369", + "slot": { + "period": 3705257, + "thread": 29 + } + }, + { + "amount": "149.191137365", + "slot": { + "period": 3919007, + "thread": 0 + } + } + ], + "AU12cWqvp1z8Xp2Y1WV3kLGqVdksjLib2bhvMzfK6y8f7WDDLhanb": [ + { + "amount": "363.126850200", + "slot": { + "period": 10928, + "thread": 11 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 182188, + "thread": 25 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 444718, + "thread": 30 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 601337, + "thread": 7 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 682176, + "thread": 8 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 961380, + "thread": 0 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1105939, + "thread": 3 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1269270, + "thread": 4 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1369977, + "thread": 20 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1525779, + "thread": 12 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1770455, + "thread": 29 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 1829704, + "thread": 7 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2091958, + "thread": 21 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2244622, + "thread": 9 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2442855, + "thread": 21 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2577864, + "thread": 13 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2700725, + "thread": 1 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 2875445, + "thread": 23 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 3069018, + "thread": 8 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 3196286, + "thread": 24 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 3368047, + "thread": 23 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 3513538, + "thread": 13 + } + }, + { + "amount": "363.126850200", + "slot": { + "period": 3749799, + "thread": 27 + } + }, + { + "amount": "363.126850191", + "slot": { + "period": 3922576, + "thread": 30 + } + } + ], + "AU12cWrk2f82dgQ1xhJjtzqmqwALUhsZ6wNqgnCK1XnT3mCBZjrd4": [ + { + "amount": "357.821554437", + "slot": { + "period": 131986, + "thread": 14 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 169833, + "thread": 18 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 414452, + "thread": 10 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 604432, + "thread": 27 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 688264, + "thread": 8 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 915277, + "thread": 22 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1101342, + "thread": 5 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1301408, + "thread": 7 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1351474, + "thread": 30 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1600686, + "thread": 18 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1760569, + "thread": 5 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 1863373, + "thread": 30 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2107852, + "thread": 0 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2270437, + "thread": 10 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2404764, + "thread": 5 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2479679, + "thread": 23 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2781965, + "thread": 0 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 2861850, + "thread": 1 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 3104758, + "thread": 20 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 3192929, + "thread": 29 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 3425388, + "thread": 1 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 3577450, + "thread": 21 + } + }, + { + "amount": "357.821554437", + "slot": { + "period": 3671002, + "thread": 18 + } + }, + { + "amount": "357.821554432", + "slot": { + "period": 3909335, + "thread": 1 + } + } + ], + "AU12cX56sEBUbsdoN3tZLNKxwVUc3shNG4ApN4URgcYUgXiUTtMdx": [ + { + "amount": "57.760847311", + "slot": { + "period": 160736, + "thread": 22 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 221377, + "thread": 15 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 350924, + "thread": 6 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 574424, + "thread": 20 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 682690, + "thread": 18 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 862762, + "thread": 31 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1103867, + "thread": 0 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1175551, + "thread": 14 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1453644, + "thread": 19 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1561727, + "thread": 3 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1705319, + "thread": 27 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 1885473, + "thread": 6 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2090968, + "thread": 8 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2241394, + "thread": 19 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2418262, + "thread": 19 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2606806, + "thread": 6 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2772379, + "thread": 30 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 2818984, + "thread": 24 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 3101948, + "thread": 1 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 3184386, + "thread": 13 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 3308424, + "thread": 13 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 3515275, + "thread": 8 + } + }, + { + "amount": "57.760847311", + "slot": { + "period": 3665646, + "thread": 26 + } + }, + { + "amount": "57.760847305", + "slot": { + "period": 3909498, + "thread": 9 + } + } + ], + "AU12cXVY9HwPphUmux68xVR6MHZCffWLE4rEBFgcEUu3Bz6kpbo53": [ + { + "amount": "138.915638375", + "slot": { + "period": 149572, + "thread": 7 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 170148, + "thread": 1 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 406864, + "thread": 6 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 641757, + "thread": 13 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 818629, + "thread": 9 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 891115, + "thread": 13 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1128447, + "thread": 13 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1181936, + "thread": 26 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1452446, + "thread": 11 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1527756, + "thread": 28 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1705965, + "thread": 26 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 1880677, + "thread": 16 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2050327, + "thread": 22 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2233515, + "thread": 30 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2381256, + "thread": 16 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2469025, + "thread": 6 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2755568, + "thread": 23 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 2931373, + "thread": 27 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 3072627, + "thread": 4 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 3123831, + "thread": 20 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 3395727, + "thread": 22 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 3486796, + "thread": 28 + } + }, + { + "amount": "138.915638375", + "slot": { + "period": 3729330, + "thread": 6 + } + }, + { + "amount": "138.915638369", + "slot": { + "period": 3889481, + "thread": 7 + } + } + ], + "AU12cXnbr5wJ6u7tN8L2kaBZDn8brQiswTHDzRrJ13CaX2MVK5GTK": [ + { + "amount": "179.379556926", + "slot": { + "period": 78022, + "thread": 23 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 207924, + "thread": 19 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 341797, + "thread": 30 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 617372, + "thread": 18 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 739934, + "thread": 15 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 900841, + "thread": 9 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1008369, + "thread": 16 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1215138, + "thread": 8 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1400802, + "thread": 25 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1639204, + "thread": 24 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1729652, + "thread": 18 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 1844154, + "thread": 14 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2056200, + "thread": 4 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2251987, + "thread": 13 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2441779, + "thread": 16 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2502256, + "thread": 24 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2624450, + "thread": 0 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 2887599, + "thread": 19 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 3042428, + "thread": 18 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 3233558, + "thread": 4 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 3328353, + "thread": 22 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 3511695, + "thread": 0 + } + }, + { + "amount": "179.379556926", + "slot": { + "period": 3770864, + "thread": 26 + } + }, + { + "amount": "179.379556923", + "slot": { + "period": 3918011, + "thread": 5 + } + } + ], + "AU12cY14RcbccoKwDqbZXTXvhqPNjAW1UUgmDGgDwVwpJtbB7RpVb": [ + { + "amount": "122.752473019", + "slot": { + "period": 29721, + "thread": 19 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 283125, + "thread": 9 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 452496, + "thread": 10 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 590114, + "thread": 31 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 756379, + "thread": 31 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 945543, + "thread": 3 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1002673, + "thread": 9 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1270195, + "thread": 21 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1446534, + "thread": 5 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1559121, + "thread": 18 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1703212, + "thread": 9 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 1912337, + "thread": 2 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2142460, + "thread": 27 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2279838, + "thread": 28 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2381596, + "thread": 11 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2563285, + "thread": 7 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2763952, + "thread": 17 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 2863051, + "thread": 8 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 3009304, + "thread": 16 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 3255490, + "thread": 25 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 3331626, + "thread": 11 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 3454528, + "thread": 11 + } + }, + { + "amount": "122.752473019", + "slot": { + "period": 3697123, + "thread": 14 + } + }, + { + "amount": "122.752473026", + "slot": { + "period": 3908889, + "thread": 26 + } + } + ], + "AU12cZvzG5mtdhXbXH3SJ8X5tHftYWJvMNBaiEVXWmay43BmQD8Zc": [ + { + "amount": "342.043571229", + "slot": { + "period": 163702, + "thread": 19 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 253845, + "thread": 27 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 346945, + "thread": 7 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 560520, + "thread": 3 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 719889, + "thread": 3 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 895290, + "thread": 0 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1060950, + "thread": 15 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1180878, + "thread": 30 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1318482, + "thread": 8 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1554423, + "thread": 10 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1770947, + "thread": 20 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 1946683, + "thread": 9 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2139361, + "thread": 1 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2207163, + "thread": 1 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2400111, + "thread": 15 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2568182, + "thread": 25 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2664480, + "thread": 24 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 2819975, + "thread": 9 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 3054634, + "thread": 27 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 3204105, + "thread": 6 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 3398802, + "thread": 24 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 3616249, + "thread": 3 + } + }, + { + "amount": "342.043571229", + "slot": { + "period": 3681017, + "thread": 0 + } + }, + { + "amount": "342.043571233", + "slot": { + "period": 3798639, + "thread": 21 + } + } + ], + "AU12caHwr8zBJtxM3b9G4pYWcFwa5v8PL3Hdz5g9djb6HFiEmrzrf": [ + { + "amount": "254.783336940", + "slot": { + "period": 136849, + "thread": 18 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 171465, + "thread": 2 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 332976, + "thread": 1 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 648571, + "thread": 23 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 789022, + "thread": 15 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 878850, + "thread": 16 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1048880, + "thread": 24 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1202811, + "thread": 12 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1445075, + "thread": 3 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1616645, + "thread": 8 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1701608, + "thread": 0 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 1956802, + "thread": 15 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2015713, + "thread": 30 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2147118, + "thread": 23 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2428176, + "thread": 8 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2617525, + "thread": 10 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2760284, + "thread": 0 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 2936409, + "thread": 14 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 3000765, + "thread": 1 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 3260982, + "thread": 27 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 3326348, + "thread": 3 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 3488661, + "thread": 2 + } + }, + { + "amount": "254.783336940", + "slot": { + "period": 3774670, + "thread": 17 + } + }, + { + "amount": "254.783336948", + "slot": { + "period": 3817276, + "thread": 13 + } + } + ], + "AU12caiwkW5W13KwfHbdGa5NXbUK21TVoTBbW6eTZsG8mNLwbLtve": [ + { + "amount": "2770.833333333", + "slot": { + "period": 57283, + "thread": 1 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 195777, + "thread": 0 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 378385, + "thread": 9 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 496495, + "thread": 18 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 678815, + "thread": 0 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 899752, + "thread": 19 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1002821, + "thread": 18 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1307608, + "thread": 27 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1334085, + "thread": 23 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1544372, + "thread": 22 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1779217, + "thread": 4 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 1826478, + "thread": 13 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2017693, + "thread": 4 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2188182, + "thread": 2 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2411784, + "thread": 0 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2481152, + "thread": 5 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2777222, + "thread": 31 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 2856417, + "thread": 27 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3037301, + "thread": 25 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3268075, + "thread": 12 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3322101, + "thread": 13 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3510428, + "thread": 15 + } + }, + { + "amount": "2770.833333333", + "slot": { + "period": 3706383, + "thread": 28 + } + }, + { + "amount": "2770.833333341", + "slot": { + "period": 3864026, + "thread": 5 + } + } + ], + "AU12cbHieEiJxn9TJM5CankuC1GA2tD5GE3ySYRdN4scdEjf1fbcq": [ + { + "amount": "186.680819390", + "slot": { + "period": 139335, + "thread": 15 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 285173, + "thread": 25 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 453111, + "thread": 15 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 631310, + "thread": 26 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 812508, + "thread": 27 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 910517, + "thread": 4 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1115591, + "thread": 2 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1267085, + "thread": 6 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1358630, + "thread": 22 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1512328, + "thread": 19 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1774920, + "thread": 30 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 1957355, + "thread": 14 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2039250, + "thread": 10 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2268340, + "thread": 6 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2447032, + "thread": 9 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2552404, + "thread": 29 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2658662, + "thread": 3 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 2917897, + "thread": 1 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 3016945, + "thread": 13 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 3150289, + "thread": 20 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 3448326, + "thread": 26 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 3593303, + "thread": 17 + } + }, + { + "amount": "186.680819390", + "slot": { + "period": 3649479, + "thread": 11 + } + }, + { + "amount": "186.680819400", + "slot": { + "period": 3821437, + "thread": 3 + } + } + ], + "AU12ccHW6cmUdvhZQzD23xLQkGLT5ENnQhwipWwE9PzCzjPECdTML": [ + { + "amount": "262.455793649", + "slot": { + "period": 97653, + "thread": 23 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 257627, + "thread": 22 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 420987, + "thread": 23 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 516761, + "thread": 25 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 797544, + "thread": 15 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 827331, + "thread": 23 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 992220, + "thread": 16 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1275584, + "thread": 14 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1345863, + "thread": 24 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1641002, + "thread": 26 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1709430, + "thread": 31 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1937117, + "thread": 31 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 1991245, + "thread": 17 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2202692, + "thread": 21 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2355371, + "thread": 12 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2504188, + "thread": 3 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2785919, + "thread": 15 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2796924, + "thread": 17 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 2978289, + "thread": 16 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 3192388, + "thread": 10 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 3369802, + "thread": 3 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 3514811, + "thread": 23 + } + }, + { + "amount": "262.455793649", + "slot": { + "period": 3635803, + "thread": 13 + } + }, + { + "amount": "262.455793650", + "slot": { + "period": 3931822, + "thread": 12 + } + } + ], + "AU12cdCobfmsJc9VgZt4MEbv1E6kFSKce5EbdkANZWwpX1768mCgV": [ + { + "amount": "108.995341519", + "slot": { + "period": 90650, + "thread": 4 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 272844, + "thread": 14 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 348757, + "thread": 10 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 543398, + "thread": 30 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 771337, + "thread": 16 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 947590, + "thread": 19 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1126751, + "thread": 14 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1297672, + "thread": 3 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1323017, + "thread": 20 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1580928, + "thread": 24 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1779587, + "thread": 3 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 1852763, + "thread": 2 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2105538, + "thread": 8 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2189437, + "thread": 12 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2411038, + "thread": 27 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2605954, + "thread": 14 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2703075, + "thread": 26 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 2899178, + "thread": 5 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 3100374, + "thread": 20 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 3131804, + "thread": 18 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 3412744, + "thread": 23 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 3574285, + "thread": 20 + } + }, + { + "amount": "108.995341519", + "slot": { + "period": 3771240, + "thread": 21 + } + }, + { + "amount": "108.995341526", + "slot": { + "period": 3813481, + "thread": 13 + } + } + ], + "AU12cdN6yBazmkDu6FFX5kxtp69yfc9dJpeuxsoK5SBamC1cgAZAB": [ + { + "amount": "101.646200070", + "slot": { + "period": 83145, + "thread": 30 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 194189, + "thread": 22 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 371278, + "thread": 9 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 613495, + "thread": 12 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 785757, + "thread": 20 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 848374, + "thread": 10 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1082154, + "thread": 12 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1211934, + "thread": 24 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1455516, + "thread": 17 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1567102, + "thread": 23 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1654035, + "thread": 14 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 1859942, + "thread": 24 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2075392, + "thread": 20 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2215417, + "thread": 12 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2338076, + "thread": 19 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2578828, + "thread": 27 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2736881, + "thread": 7 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 2906137, + "thread": 17 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 3109136, + "thread": 1 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 3257739, + "thread": 6 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 3322575, + "thread": 2 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 3470760, + "thread": 28 + } + }, + { + "amount": "101.646200070", + "slot": { + "period": 3758273, + "thread": 2 + } + }, + { + "amount": "101.646200064", + "slot": { + "period": 3872235, + "thread": 22 + } + } + ], + "AU12ce9Scd2GrYYuGjy8erdB6byp6rPYDx8MGu7taxaP9fEE3bsuH": [ + { + "amount": "314.547903040", + "slot": { + "period": 123061, + "thread": 7 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 287389, + "thread": 18 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 348956, + "thread": 28 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 515017, + "thread": 29 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 708678, + "thread": 22 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 889179, + "thread": 22 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1113268, + "thread": 17 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1184752, + "thread": 25 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1341188, + "thread": 4 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1519883, + "thread": 1 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1787644, + "thread": 5 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 1900465, + "thread": 10 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2013569, + "thread": 22 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2226354, + "thread": 20 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2314579, + "thread": 8 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2486123, + "thread": 20 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2771727, + "thread": 27 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 2799394, + "thread": 5 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 3106151, + "thread": 13 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 3251660, + "thread": 17 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 3323754, + "thread": 9 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 3601697, + "thread": 31 + } + }, + { + "amount": "314.547903040", + "slot": { + "period": 3644241, + "thread": 1 + } + }, + { + "amount": "314.547903048", + "slot": { + "period": 3896915, + "thread": 28 + } + } + ], + "AU12ceR1UpL3z5u9wdrd6kv33FtaZTXzUJyXhi3MQnhPBeLnfJbpM": [ + { + "amount": "157.378256233", + "slot": { + "period": 128847, + "thread": 28 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 294890, + "thread": 2 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 383688, + "thread": 18 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 578307, + "thread": 30 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 760820, + "thread": 11 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 928199, + "thread": 31 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1034342, + "thread": 21 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1277204, + "thread": 17 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1337441, + "thread": 5 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1525580, + "thread": 17 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1799757, + "thread": 0 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 1967887, + "thread": 24 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2127576, + "thread": 8 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2280247, + "thread": 10 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2394561, + "thread": 7 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2519356, + "thread": 17 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2667435, + "thread": 11 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 2853015, + "thread": 21 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 3021941, + "thread": 27 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 3258820, + "thread": 8 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 3326854, + "thread": 17 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 3540162, + "thread": 16 + } + }, + { + "amount": "157.378256233", + "slot": { + "period": 3741306, + "thread": 23 + } + }, + { + "amount": "157.378256243", + "slot": { + "period": 3822184, + "thread": 0 + } + } + ], + "AU12ceotxFaLQp1m5xCJiLdXAFf5faM3amX7WVCu1YmfBVy5CRrHq": [ + { + "amount": "342.528793336", + "slot": { + "period": 74445, + "thread": 24 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 249857, + "thread": 11 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 472527, + "thread": 1 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 567553, + "thread": 19 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 723677, + "thread": 14 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 922445, + "thread": 15 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1129278, + "thread": 23 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1292843, + "thread": 30 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1320533, + "thread": 23 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1491468, + "thread": 31 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1718068, + "thread": 18 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 1972546, + "thread": 18 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2117434, + "thread": 19 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2157741, + "thread": 30 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2416990, + "thread": 25 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2605371, + "thread": 17 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2752134, + "thread": 1 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 2867673, + "thread": 14 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 3020606, + "thread": 27 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 3271445, + "thread": 7 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 3396493, + "thread": 31 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 3482652, + "thread": 21 + } + }, + { + "amount": "342.528793336", + "slot": { + "period": 3728565, + "thread": 1 + } + }, + { + "amount": "342.528793342", + "slot": { + "period": 3930385, + "thread": 16 + } + } + ], + "AU12cf4wgewJZ6sQyz6mTTD9dsUjWGpRxFYaPPkEqEKAcMwZoL73k": [ + { + "amount": "437.321273239", + "slot": { + "period": 97688, + "thread": 25 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 251655, + "thread": 10 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 483910, + "thread": 4 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 531322, + "thread": 13 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 780056, + "thread": 8 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 896289, + "thread": 0 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1054304, + "thread": 19 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1232403, + "thread": 8 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1419944, + "thread": 8 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1533004, + "thread": 16 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1751387, + "thread": 15 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 1908802, + "thread": 5 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2016750, + "thread": 25 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2270398, + "thread": 17 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2377217, + "thread": 11 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2622917, + "thread": 5 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2711609, + "thread": 8 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2913394, + "thread": 15 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 2969241, + "thread": 24 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 3213291, + "thread": 15 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 3404944, + "thread": 29 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 3475507, + "thread": 20 + } + }, + { + "amount": "437.321273239", + "slot": { + "period": 3725342, + "thread": 10 + } + }, + { + "amount": "437.321273234", + "slot": { + "period": 3798828, + "thread": 10 + } + } + ], + "AU12cfGRVqbXY7fmWPme9pqg3SMHgc12WYsGtdm9DbGao6yC4KnPi": [ + { + "amount": "71.003558476", + "slot": { + "period": 44544, + "thread": 28 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 199422, + "thread": 23 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 353229, + "thread": 24 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 616312, + "thread": 14 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 761720, + "thread": 4 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 954609, + "thread": 12 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1137386, + "thread": 3 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1278658, + "thread": 26 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1379281, + "thread": 31 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1557329, + "thread": 3 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1661173, + "thread": 5 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 1886449, + "thread": 8 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2074082, + "thread": 23 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2198774, + "thread": 31 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2384544, + "thread": 23 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2516617, + "thread": 10 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2750017, + "thread": 19 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 2812266, + "thread": 2 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 3098163, + "thread": 3 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 3260734, + "thread": 4 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 3334183, + "thread": 11 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 3564258, + "thread": 31 + } + }, + { + "amount": "71.003558476", + "slot": { + "period": 3632991, + "thread": 29 + } + }, + { + "amount": "71.003558475", + "slot": { + "period": 3875022, + "thread": 11 + } + } + ], + "AU12cgnWT2rvNWzWXSyvw23vQFfoqJo2D4B17ENXYBGzHEzfrn5f2": [ + { + "amount": "464.982558913", + "slot": { + "period": 78406, + "thread": 27 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 271002, + "thread": 27 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 363172, + "thread": 30 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 563489, + "thread": 10 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 732500, + "thread": 19 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 882694, + "thread": 27 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1084645, + "thread": 3 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1297327, + "thread": 7 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1456588, + "thread": 14 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1506524, + "thread": 22 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1660095, + "thread": 27 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 1916038, + "thread": 23 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2059145, + "thread": 19 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2209326, + "thread": 26 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2318119, + "thread": 11 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2507325, + "thread": 2 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2778773, + "thread": 4 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 2843280, + "thread": 26 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 3006793, + "thread": 20 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 3285309, + "thread": 30 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 3398737, + "thread": 31 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 3512032, + "thread": 27 + } + }, + { + "amount": "464.982558913", + "slot": { + "period": 3720408, + "thread": 23 + } + }, + { + "amount": "464.982558916", + "slot": { + "period": 3844671, + "thread": 2 + } + } + ], + "AU12ch9yFvoNEHppqRphQ97zCE7K8czyb8K5iGBtLDyUKQphW3aDG": [ + { + "amount": "189.849012375", + "slot": { + "period": 123125, + "thread": 11 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 303216, + "thread": 14 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 373394, + "thread": 21 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 496591, + "thread": 7 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 697680, + "thread": 4 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 834704, + "thread": 16 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1027434, + "thread": 22 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1233962, + "thread": 30 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1425228, + "thread": 21 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1618150, + "thread": 22 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1747378, + "thread": 14 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 1932513, + "thread": 18 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2016253, + "thread": 0 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2227385, + "thread": 6 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2398021, + "thread": 0 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2479849, + "thread": 19 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2786355, + "thread": 12 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 2826874, + "thread": 9 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 3072639, + "thread": 21 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 3248675, + "thread": 9 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 3421163, + "thread": 6 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 3500022, + "thread": 0 + } + }, + { + "amount": "189.849012375", + "slot": { + "period": 3638616, + "thread": 0 + } + }, + { + "amount": "189.849012385", + "slot": { + "period": 3782832, + "thread": 17 + } + } + ], + "AU12chNRF8jQGKq6ZAZ6KwndVNtyt486VWQbGmUPZuYYGXRhx6MeF": [ + { + "amount": "257.858180884", + "slot": { + "period": 105501, + "thread": 22 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 303350, + "thread": 30 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 489441, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 617942, + "thread": 6 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 715850, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 925653, + "thread": 31 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1102598, + "thread": 12 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1202932, + "thread": 26 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1386160, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1497272, + "thread": 2 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1653413, + "thread": 0 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 1918961, + "thread": 15 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2048452, + "thread": 27 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2251248, + "thread": 21 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2302331, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2551115, + "thread": 5 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2650666, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2948312, + "thread": 14 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 2953882, + "thread": 25 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 3179106, + "thread": 17 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 3399347, + "thread": 13 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 3527003, + "thread": 25 + } + }, + { + "amount": "257.858180884", + "slot": { + "period": 3651113, + "thread": 18 + } + }, + { + "amount": "257.858180890", + "slot": { + "period": 3911744, + "thread": 15 + } + } + ], + "AU12ciFwBo88ZgEUrzUg8gcXZ7pb4iXmEK5TKh88Csf31vE3h39Ee": [ + { + "amount": "52.600305444", + "slot": { + "period": 68815, + "thread": 19 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 181796, + "thread": 13 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 357096, + "thread": 5 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 569487, + "thread": 15 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 749083, + "thread": 0 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 945573, + "thread": 1 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1108765, + "thread": 28 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1156626, + "thread": 2 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1336916, + "thread": 20 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1530026, + "thread": 11 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1657303, + "thread": 30 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 1971793, + "thread": 20 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2129083, + "thread": 24 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2154796, + "thread": 22 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2326196, + "thread": 7 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2488537, + "thread": 11 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2790347, + "thread": 22 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 2833587, + "thread": 19 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 3017429, + "thread": 12 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 3213595, + "thread": 25 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 3421143, + "thread": 29 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 3479561, + "thread": 3 + } + }, + { + "amount": "52.600305444", + "slot": { + "period": 3654683, + "thread": 18 + } + }, + { + "amount": "52.600305440", + "slot": { + "period": 3783636, + "thread": 10 + } + } + ], + "AU12ciN7vP6FQF97dND9FMtuWduuhWmqXGfZ12rUdP25N5HApgV7q": [ + { + "amount": "195.593177415", + "slot": { + "period": 121255, + "thread": 27 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 191311, + "thread": 11 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 325618, + "thread": 3 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 564556, + "thread": 20 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 786572, + "thread": 5 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 824052, + "thread": 20 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1014993, + "thread": 19 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1233470, + "thread": 12 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1370127, + "thread": 11 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1563528, + "thread": 27 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1792909, + "thread": 5 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 1911710, + "thread": 25 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2127879, + "thread": 1 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2148957, + "thread": 2 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2348920, + "thread": 0 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2571776, + "thread": 30 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2736181, + "thread": 13 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 2927995, + "thread": 22 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 3065132, + "thread": 18 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 3163716, + "thread": 0 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 3297121, + "thread": 20 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 3598369, + "thread": 14 + } + }, + { + "amount": "195.593177415", + "slot": { + "period": 3664666, + "thread": 18 + } + }, + { + "amount": "195.593177417", + "slot": { + "period": 3843046, + "thread": 26 + } + } + ], + "AU12cjmBBRjSZTN3o2G4AMc2DrrSia36xYYZyx8yqNMfhaLRB3Xfz": [ + { + "amount": "178.869611406", + "slot": { + "period": 60986, + "thread": 4 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 212433, + "thread": 17 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 334784, + "thread": 18 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 645487, + "thread": 23 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 747681, + "thread": 9 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 906258, + "thread": 2 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1134863, + "thread": 29 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1188306, + "thread": 19 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1320490, + "thread": 23 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1619704, + "thread": 2 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1662825, + "thread": 7 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 1834520, + "thread": 28 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2038390, + "thread": 6 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2174233, + "thread": 16 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2340918, + "thread": 1 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2563313, + "thread": 8 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2756700, + "thread": 13 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 2891715, + "thread": 9 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 3009030, + "thread": 14 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 3251516, + "thread": 25 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 3396788, + "thread": 0 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 3467021, + "thread": 29 + } + }, + { + "amount": "178.869611406", + "slot": { + "period": 3678589, + "thread": 23 + } + }, + { + "amount": "178.869611403", + "slot": { + "period": 3832480, + "thread": 9 + } + } + ], + "AU12cm3gSAjKSpXXEHWw2BmtkLCQ8GTarvVP4j29jT1WLJA1RpNWZ": [ + { + "amount": "175.910963065", + "slot": { + "period": 119355, + "thread": 5 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 246868, + "thread": 15 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 429781, + "thread": 31 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 597764, + "thread": 15 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 795964, + "thread": 2 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 969742, + "thread": 21 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1124474, + "thread": 15 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1238035, + "thread": 19 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1342241, + "thread": 17 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1561830, + "thread": 6 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1745696, + "thread": 24 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1871765, + "thread": 4 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 1983554, + "thread": 5 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2290834, + "thread": 3 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2445980, + "thread": 14 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2491112, + "thread": 28 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2692556, + "thread": 27 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2929784, + "thread": 22 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 2976570, + "thread": 14 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 3287536, + "thread": 5 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 3326996, + "thread": 23 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 3563047, + "thread": 9 + } + }, + { + "amount": "175.910963065", + "slot": { + "period": 3686384, + "thread": 1 + } + }, + { + "amount": "175.910963058", + "slot": { + "period": 3819936, + "thread": 7 + } + } + ], + "AU12cmchfDzf5N11dJY2Nm6aykQMiJMajtTVqb7LcahcePvZLpFrh": [ + { + "amount": "51.207200770", + "slot": { + "period": 143086, + "thread": 8 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 263002, + "thread": 7 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 459836, + "thread": 18 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 529881, + "thread": 28 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 685730, + "thread": 6 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 930463, + "thread": 18 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1045182, + "thread": 13 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1255447, + "thread": 8 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1397887, + "thread": 19 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1558937, + "thread": 6 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1771775, + "thread": 26 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 1865627, + "thread": 23 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2013309, + "thread": 22 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2282036, + "thread": 8 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2332318, + "thread": 29 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2573273, + "thread": 26 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2682391, + "thread": 9 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 2798608, + "thread": 31 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 3082413, + "thread": 7 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 3195196, + "thread": 2 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 3439335, + "thread": 19 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 3490263, + "thread": 3 + } + }, + { + "amount": "51.207200770", + "slot": { + "period": 3724711, + "thread": 21 + } + }, + { + "amount": "51.207200762", + "slot": { + "period": 3804745, + "thread": 2 + } + } + ], + "AU12cmsxxF1shHiuxurnBiCgg6bkhtvGJCV5wGDjzG2enZftHSXE3": [ + { + "amount": "302.865983614", + "slot": { + "period": 113910, + "thread": 23 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 269251, + "thread": 20 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 428448, + "thread": 26 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 615345, + "thread": 0 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 673661, + "thread": 20 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 902309, + "thread": 23 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1021462, + "thread": 2 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1188294, + "thread": 21 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1437482, + "thread": 22 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1505441, + "thread": 5 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1798921, + "thread": 27 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 1821659, + "thread": 5 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2101638, + "thread": 3 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2250633, + "thread": 31 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2339193, + "thread": 0 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2492379, + "thread": 9 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2679666, + "thread": 16 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2932814, + "thread": 10 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 2955708, + "thread": 25 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 3194747, + "thread": 31 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 3392223, + "thread": 14 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 3492948, + "thread": 3 + } + }, + { + "amount": "302.865983614", + "slot": { + "period": 3654643, + "thread": 3 + } + }, + { + "amount": "302.865983617", + "slot": { + "period": 3791224, + "thread": 7 + } + } + ], + "AU12cnEjJDJ9wWcvU88RQHh7JrVEFJ3LmQXJsuBix8eJzHSHXAHGv": [ + { + "amount": "206.474348158", + "slot": { + "period": 54803, + "thread": 12 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 180537, + "thread": 2 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 350582, + "thread": 16 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 505595, + "thread": 15 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 776477, + "thread": 4 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 821609, + "thread": 12 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1020519, + "thread": 12 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1195671, + "thread": 10 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1473658, + "thread": 20 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1571389, + "thread": 3 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1769749, + "thread": 31 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 1864721, + "thread": 0 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2104650, + "thread": 24 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2151351, + "thread": 27 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2412517, + "thread": 9 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2521500, + "thread": 2 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2704654, + "thread": 10 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 2833341, + "thread": 14 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 3112376, + "thread": 30 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 3206494, + "thread": 30 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 3449444, + "thread": 19 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 3501404, + "thread": 27 + } + }, + { + "amount": "206.474348158", + "slot": { + "period": 3645382, + "thread": 5 + } + }, + { + "amount": "206.474348149", + "slot": { + "period": 3862818, + "thread": 20 + } + } + ], + "AU12cnTgQjeH59QiDmyVCoDi9c2CmEAiXW2EyGpfkKPZHfxyMRRgV": [ + { + "amount": "73.140404399", + "slot": { + "period": 22258, + "thread": 29 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 220309, + "thread": 29 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 453118, + "thread": 16 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 530017, + "thread": 6 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 751609, + "thread": 4 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 925904, + "thread": 3 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1125246, + "thread": 9 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1214813, + "thread": 29 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1329170, + "thread": 20 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1598781, + "thread": 3 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1694094, + "thread": 21 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 1897582, + "thread": 12 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2030621, + "thread": 26 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2228949, + "thread": 19 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2298598, + "thread": 8 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2532551, + "thread": 24 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2725732, + "thread": 26 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2864986, + "thread": 20 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 2964589, + "thread": 28 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 3278007, + "thread": 20 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 3314530, + "thread": 12 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 3616774, + "thread": 18 + } + }, + { + "amount": "73.140404399", + "slot": { + "period": 3619213, + "thread": 7 + } + }, + { + "amount": "73.140404392", + "slot": { + "period": 3798125, + "thread": 2 + } + } + ], + "AU12cnsKVVs8L8a7yHdZJp19QZuEtVQHhGutyvte2zLiSs67jAHi5": [ + { + "amount": "157.808767890", + "slot": { + "period": 142466, + "thread": 31 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 273489, + "thread": 23 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 334157, + "thread": 9 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 502769, + "thread": 12 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 680063, + "thread": 31 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 897716, + "thread": 20 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1096666, + "thread": 6 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1177944, + "thread": 21 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1456646, + "thread": 25 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1600262, + "thread": 8 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1755541, + "thread": 26 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 1960945, + "thread": 30 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2005288, + "thread": 12 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2201599, + "thread": 29 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2392293, + "thread": 26 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2573039, + "thread": 13 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2764339, + "thread": 22 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 2859738, + "thread": 21 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 3001083, + "thread": 11 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 3249624, + "thread": 12 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 3375929, + "thread": 4 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 3606856, + "thread": 15 + } + }, + { + "amount": "157.808767890", + "slot": { + "period": 3658378, + "thread": 7 + } + }, + { + "amount": "157.808767898", + "slot": { + "period": 3908188, + "thread": 9 + } + } + ], + "AU12coHfVJaAe8EeyGtqcvpqaoChCR2zHiYBpVneesvkk8pWJET89": [ + { + "amount": "543.259517108", + "slot": { + "period": 36343, + "thread": 2 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 182958, + "thread": 28 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 404879, + "thread": 26 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 632647, + "thread": 11 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 742775, + "thread": 2 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 892757, + "thread": 21 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1028165, + "thread": 26 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1281331, + "thread": 1 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1405381, + "thread": 15 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1511696, + "thread": 2 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1668312, + "thread": 30 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1843177, + "thread": 29 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 1997991, + "thread": 24 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 2276608, + "thread": 25 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 2445325, + "thread": 18 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 2582026, + "thread": 31 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 2646324, + "thread": 5 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 2814262, + "thread": 13 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 3091254, + "thread": 12 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 3226579, + "thread": 11 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 3338544, + "thread": 7 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 3566292, + "thread": 19 + } + }, + { + "amount": "543.259517108", + "slot": { + "period": 3673422, + "thread": 28 + } + }, + { + "amount": "543.259517107", + "slot": { + "period": 3859804, + "thread": 27 + } + } + ], + "AU12coPHVKVnTmS8vU1oBVnzo1aEnZYNiKUuGrqRBXjKFRmrnVGXY": [ + { + "amount": "160.434857265", + "slot": { + "period": 80665, + "thread": 12 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 177996, + "thread": 14 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 334090, + "thread": 30 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 499778, + "thread": 3 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 784789, + "thread": 9 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 932208, + "thread": 2 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1135104, + "thread": 5 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1213699, + "thread": 14 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1436439, + "thread": 11 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1578586, + "thread": 11 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1664785, + "thread": 3 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 1926015, + "thread": 12 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2105362, + "thread": 12 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2262463, + "thread": 3 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2366618, + "thread": 3 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2493262, + "thread": 4 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2729789, + "thread": 28 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2920470, + "thread": 10 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 2975752, + "thread": 12 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 3168056, + "thread": 26 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 3292454, + "thread": 27 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 3474137, + "thread": 11 + } + }, + { + "amount": "160.434857265", + "slot": { + "period": 3728252, + "thread": 7 + } + }, + { + "amount": "160.434857263", + "slot": { + "period": 3864173, + "thread": 2 + } + } + ], + "AU12coUnujbASDkWwY6WpFkyx8aCMrpBQeVJSGGrENZyhVpNA2zuT": [ + { + "amount": "428.340628558", + "slot": { + "period": 32912, + "thread": 10 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 313492, + "thread": 7 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 383550, + "thread": 9 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 565429, + "thread": 26 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 723666, + "thread": 1 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 846990, + "thread": 7 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1071433, + "thread": 30 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1195836, + "thread": 31 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1435762, + "thread": 8 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1484763, + "thread": 30 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1713141, + "thread": 19 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 1828431, + "thread": 10 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2097675, + "thread": 8 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2176174, + "thread": 16 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2310494, + "thread": 20 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2504740, + "thread": 5 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2643740, + "thread": 23 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 2834414, + "thread": 10 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 3084854, + "thread": 14 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 3155583, + "thread": 27 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 3307503, + "thread": 31 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 3528828, + "thread": 14 + } + }, + { + "amount": "428.340628558", + "slot": { + "period": 3710788, + "thread": 29 + } + }, + { + "amount": "428.340628547", + "slot": { + "period": 3817876, + "thread": 28 + } + } + ], + "AU12coX4QjhkifCrLbyvnM91jzU8t4JdLjXTNJvWsacXEacHWPhYa": [ + { + "amount": "250.685397754", + "slot": { + "period": 113112, + "thread": 1 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 309468, + "thread": 18 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 359169, + "thread": 6 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 613723, + "thread": 19 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 772403, + "thread": 9 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 954566, + "thread": 29 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1107192, + "thread": 29 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1316879, + "thread": 2 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1425738, + "thread": 16 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1619266, + "thread": 3 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1673610, + "thread": 12 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 1970466, + "thread": 19 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2126132, + "thread": 6 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2238979, + "thread": 0 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2357464, + "thread": 12 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2562041, + "thread": 22 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2710520, + "thread": 28 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 2938524, + "thread": 7 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 3059529, + "thread": 15 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 3239239, + "thread": 19 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 3340825, + "thread": 7 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 3482680, + "thread": 21 + } + }, + { + "amount": "250.685397754", + "slot": { + "period": 3744199, + "thread": 2 + } + }, + { + "amount": "250.685397764", + "slot": { + "period": 3946577, + "thread": 20 + } + } + ], + "AU12cpmP3mJb5Xiag6XsURd5vaJ6o4RYVjZxXtAp9tZLKQarpF25M": [ + { + "amount": "98.745217931", + "slot": { + "period": 162276, + "thread": 3 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 262424, + "thread": 30 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 344501, + "thread": 1 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 520267, + "thread": 8 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 691099, + "thread": 29 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 874805, + "thread": 14 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1099507, + "thread": 12 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1183549, + "thread": 6 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1318153, + "thread": 17 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1584630, + "thread": 4 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1769234, + "thread": 5 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 1839387, + "thread": 23 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2003651, + "thread": 9 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2288674, + "thread": 11 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2301462, + "thread": 20 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2618676, + "thread": 29 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2729497, + "thread": 28 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2811746, + "thread": 19 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 2957959, + "thread": 19 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 3273546, + "thread": 5 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 3370338, + "thread": 0 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 3538146, + "thread": 30 + } + }, + { + "amount": "98.745217931", + "slot": { + "period": 3776190, + "thread": 30 + } + }, + { + "amount": "98.745217926", + "slot": { + "period": 3840272, + "thread": 27 + } + } + ], + "AU12cqrThTwVdv2AGTfmFD1aQFkKoX7wiEPt9aTKeZbvFjFuW69dZ": [ + { + "amount": "262.794951882", + "slot": { + "period": 32345, + "thread": 15 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 290036, + "thread": 7 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 447615, + "thread": 3 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 491833, + "thread": 20 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 672589, + "thread": 7 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 837803, + "thread": 21 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1074798, + "thread": 8 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1267923, + "thread": 5 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1422966, + "thread": 18 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1572143, + "thread": 6 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1702423, + "thread": 12 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1940380, + "thread": 30 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 1999998, + "thread": 9 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 2246684, + "thread": 10 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 2401751, + "thread": 13 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 2511825, + "thread": 14 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 2662963, + "thread": 28 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 2804677, + "thread": 13 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 3086814, + "thread": 29 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 3190088, + "thread": 12 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 3397773, + "thread": 2 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 3524391, + "thread": 8 + } + }, + { + "amount": "262.794951882", + "slot": { + "period": 3646158, + "thread": 22 + } + }, + { + "amount": "262.794951883", + "slot": { + "period": 3803896, + "thread": 27 + } + } + ], + "AU12csN2f65urMjNG3BgegHmgrYL73zhvLnAEHSkwdT6oqcRLfJgx": [ + { + "amount": "195.967562242", + "slot": { + "period": 77265, + "thread": 30 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 320885, + "thread": 8 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 338138, + "thread": 3 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 579938, + "thread": 19 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 687494, + "thread": 19 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 929805, + "thread": 5 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1109585, + "thread": 31 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1223691, + "thread": 19 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1360443, + "thread": 0 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1614215, + "thread": 14 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1654213, + "thread": 27 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 1848831, + "thread": 25 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2133384, + "thread": 15 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2217022, + "thread": 25 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2456727, + "thread": 1 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2466201, + "thread": 8 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2774619, + "thread": 11 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 2807788, + "thread": 22 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 3077696, + "thread": 27 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 3265498, + "thread": 21 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 3334190, + "thread": 14 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 3600059, + "thread": 26 + } + }, + { + "amount": "195.967562242", + "slot": { + "period": 3620236, + "thread": 18 + } + }, + { + "amount": "195.967562231", + "slot": { + "period": 3855715, + "thread": 24 + } + } + ], + "AU12csUfrD5P46kfdNEnCmGVY8iJ1DeJN8MWkjudhFGYCfRS5irji": [ + { + "amount": "153.999010099", + "slot": { + "period": 164723, + "thread": 11 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 290619, + "thread": 24 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 353427, + "thread": 28 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 597097, + "thread": 11 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 750292, + "thread": 5 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 876978, + "thread": 0 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1014050, + "thread": 29 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1298588, + "thread": 2 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1408023, + "thread": 22 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1554210, + "thread": 15 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1759328, + "thread": 1 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 1864680, + "thread": 17 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2128750, + "thread": 8 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2198862, + "thread": 20 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2415147, + "thread": 28 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2498298, + "thread": 15 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2697146, + "thread": 8 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2876031, + "thread": 6 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 2955301, + "thread": 15 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 3250385, + "thread": 9 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 3376391, + "thread": 6 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 3601614, + "thread": 23 + } + }, + { + "amount": "153.999010099", + "slot": { + "period": 3702240, + "thread": 1 + } + }, + { + "amount": "153.999010097", + "slot": { + "period": 3840672, + "thread": 5 + } + } + ], + "AU12ctCgXBEHS9xjgGHhwh617tH61yi6faW8CUiLNJzreiZ4uhnKA": [ + { + "amount": "74.480935637", + "slot": { + "period": 14344, + "thread": 27 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 315516, + "thread": 21 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 424374, + "thread": 2 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 618469, + "thread": 13 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 790311, + "thread": 17 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 913729, + "thread": 8 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1053897, + "thread": 28 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1166727, + "thread": 12 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1350169, + "thread": 31 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1602255, + "thread": 19 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1693699, + "thread": 28 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 1823762, + "thread": 18 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2014388, + "thread": 1 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2287739, + "thread": 14 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2452243, + "thread": 4 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2520396, + "thread": 26 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2656129, + "thread": 16 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2861752, + "thread": 20 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 2991087, + "thread": 13 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 3197312, + "thread": 5 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 3334463, + "thread": 1 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 3491379, + "thread": 11 + } + }, + { + "amount": "74.480935637", + "slot": { + "period": 3725065, + "thread": 7 + } + }, + { + "amount": "74.480935632", + "slot": { + "period": 3903934, + "thread": 27 + } + } + ], + "AU12ctN1mXznjTToqkTtik5DhLJgP2h5QdW9kxESFVBShJgN6PKcM": [ + { + "amount": "64.197707512", + "slot": { + "period": 152946, + "thread": 2 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 239529, + "thread": 21 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 368087, + "thread": 29 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 527416, + "thread": 27 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 736227, + "thread": 3 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 889167, + "thread": 18 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1135520, + "thread": 9 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1219918, + "thread": 11 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1423678, + "thread": 13 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1505943, + "thread": 15 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1774745, + "thread": 31 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 1899004, + "thread": 29 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2071968, + "thread": 25 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2168410, + "thread": 25 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2387955, + "thread": 12 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2495026, + "thread": 17 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2721412, + "thread": 5 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2843467, + "thread": 9 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 2997656, + "thread": 21 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 3147982, + "thread": 18 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 3309570, + "thread": 8 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 3576874, + "thread": 4 + } + }, + { + "amount": "64.197707512", + "slot": { + "period": 3773136, + "thread": 23 + } + }, + { + "amount": "64.197707515", + "slot": { + "period": 3818035, + "thread": 25 + } + } + ], + "AU12ctxSdv9m5F38a3nqK2waXkyxF8yoYuAC7zCWnLaNbxfQxkVg1": [ + { + "amount": "61.089562029", + "slot": { + "period": 48822, + "thread": 28 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 205204, + "thread": 8 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 400170, + "thread": 4 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 602691, + "thread": 20 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 781597, + "thread": 16 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 917492, + "thread": 2 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1133672, + "thread": 8 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1283848, + "thread": 26 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1449425, + "thread": 1 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1535222, + "thread": 2 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1752951, + "thread": 7 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 1959456, + "thread": 25 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2003877, + "thread": 19 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2261869, + "thread": 1 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2425072, + "thread": 16 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2500445, + "thread": 18 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2760220, + "thread": 14 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2872111, + "thread": 6 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 2983510, + "thread": 28 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 3184894, + "thread": 13 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 3414312, + "thread": 11 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 3579217, + "thread": 24 + } + }, + { + "amount": "61.089562029", + "slot": { + "period": 3696558, + "thread": 17 + } + }, + { + "amount": "61.089562037", + "slot": { + "period": 3910389, + "thread": 13 + } + } + ], + "AU12curvhgNp8FuzZAoKxWtKefKXJ65U3rVAzAmTpxmFSi3KAY56v": [ + { + "amount": "156.602924259", + "slot": { + "period": 12929, + "thread": 31 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 187331, + "thread": 18 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 395501, + "thread": 17 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 624281, + "thread": 27 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 790512, + "thread": 3 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 873084, + "thread": 31 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1046373, + "thread": 17 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1260438, + "thread": 8 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1334554, + "thread": 16 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1508448, + "thread": 16 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1762624, + "thread": 29 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 1921417, + "thread": 31 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2040853, + "thread": 21 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2187558, + "thread": 11 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2308412, + "thread": 24 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2568247, + "thread": 31 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2728331, + "thread": 0 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 2932983, + "thread": 19 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 3013405, + "thread": 9 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 3200056, + "thread": 16 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 3295482, + "thread": 24 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 3505928, + "thread": 28 + } + }, + { + "amount": "156.602924259", + "slot": { + "period": 3659983, + "thread": 5 + } + }, + { + "amount": "156.602924265", + "slot": { + "period": 3819549, + "thread": 9 + } + } + ], + "AU12cvCiBnLZwNghgoiqijFQR2UuVZ3gpe8KrsmwSaMjQWAWHCCmg": [ + { + "amount": "209.942142345", + "slot": { + "period": 80372, + "thread": 21 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 167680, + "thread": 12 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 481549, + "thread": 29 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 513731, + "thread": 16 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 784857, + "thread": 2 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 879123, + "thread": 1 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1045663, + "thread": 14 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1278232, + "thread": 28 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1361468, + "thread": 29 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1596601, + "thread": 12 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1676587, + "thread": 6 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 1813414, + "thread": 12 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2009376, + "thread": 11 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2228431, + "thread": 24 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2360897, + "thread": 12 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2467457, + "thread": 2 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2775536, + "thread": 15 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 2896369, + "thread": 12 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 3089396, + "thread": 27 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 3220310, + "thread": 28 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 3330501, + "thread": 26 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 3594178, + "thread": 25 + } + }, + { + "amount": "209.942142345", + "slot": { + "period": 3627867, + "thread": 23 + } + }, + { + "amount": "209.942142348", + "slot": { + "period": 3861206, + "thread": 29 + } + } + ], + "AU12cvtU8gZ8VHxw4q5X36H1JNNAhPrP7cvWz7kCpcMVVA5cmKL7G": [ + { + "amount": "250.513416833", + "slot": { + "period": 105348, + "thread": 25 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 198056, + "thread": 9 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 370393, + "thread": 17 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 633941, + "thread": 19 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 688856, + "thread": 0 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 892511, + "thread": 5 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1101195, + "thread": 8 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1276633, + "thread": 0 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1402528, + "thread": 13 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1546897, + "thread": 21 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1801376, + "thread": 4 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 1893188, + "thread": 1 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2077333, + "thread": 5 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2181733, + "thread": 4 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2443971, + "thread": 17 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2499515, + "thread": 14 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2702743, + "thread": 3 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 2898287, + "thread": 1 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 3014883, + "thread": 0 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 3274296, + "thread": 0 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 3356280, + "thread": 1 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 3549643, + "thread": 15 + } + }, + { + "amount": "250.513416833", + "slot": { + "period": 3633326, + "thread": 29 + } + }, + { + "amount": "250.513416844", + "slot": { + "period": 3845806, + "thread": 14 + } + } + ], + "AU12cvxRM7k6fpPbA4haJ28smhoAEWvW2tsqFmATWva1Z3wLAuiBL": [ + { + "amount": "84.246814451", + "slot": { + "period": 17967, + "thread": 12 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 261966, + "thread": 24 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 381153, + "thread": 16 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 568175, + "thread": 29 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 803499, + "thread": 20 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 902670, + "thread": 4 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1111703, + "thread": 12 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1278758, + "thread": 6 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1322570, + "thread": 3 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1497531, + "thread": 11 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1697408, + "thread": 22 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 1834227, + "thread": 0 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2076468, + "thread": 26 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2266042, + "thread": 25 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2316139, + "thread": 4 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2580132, + "thread": 6 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2640469, + "thread": 22 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2858899, + "thread": 23 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 2967449, + "thread": 10 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 3204066, + "thread": 29 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 3446164, + "thread": 23 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 3495584, + "thread": 9 + } + }, + { + "amount": "84.246814451", + "slot": { + "period": 3769809, + "thread": 16 + } + }, + { + "amount": "84.246814444", + "slot": { + "period": 3787859, + "thread": 1 + } + } + ], + "AU12cwKuUoWRzbsXc5drD21JSWizR187B84aTUA1QQwpjaJgDjfVz": [ + { + "amount": "85.935754181", + "slot": { + "period": 158268, + "thread": 7 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 175774, + "thread": 4 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 336802, + "thread": 16 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 561078, + "thread": 13 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 792433, + "thread": 28 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 949043, + "thread": 30 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1039326, + "thread": 30 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1177042, + "thread": 12 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1424860, + "thread": 11 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1552002, + "thread": 21 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1720035, + "thread": 31 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 1834157, + "thread": 24 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2115281, + "thread": 11 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2266944, + "thread": 29 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2348721, + "thread": 5 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2483643, + "thread": 19 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2694002, + "thread": 5 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 2853888, + "thread": 20 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 3059897, + "thread": 11 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 3127034, + "thread": 4 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 3310667, + "thread": 19 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 3570920, + "thread": 10 + } + }, + { + "amount": "85.935754181", + "slot": { + "period": 3757879, + "thread": 2 + } + }, + { + "amount": "85.935754183", + "slot": { + "period": 3845340, + "thread": 7 + } + } + ], + "AU12cxP2XV6FNEEFqjoAVtQ1n3yp8qV4xeWsGwsMJaMoRLeq2i2xz": [ + { + "amount": "365.361255241", + "slot": { + "period": 141683, + "thread": 21 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 251783, + "thread": 18 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 442758, + "thread": 28 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 592170, + "thread": 2 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 731920, + "thread": 0 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 904644, + "thread": 2 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1037260, + "thread": 17 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1204422, + "thread": 15 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1415913, + "thread": 4 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1508651, + "thread": 1 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1647266, + "thread": 8 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 1902237, + "thread": 11 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2121249, + "thread": 25 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2246291, + "thread": 17 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2411854, + "thread": 25 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2553612, + "thread": 29 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2661014, + "thread": 17 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 2874620, + "thread": 14 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 3081754, + "thread": 30 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 3135882, + "thread": 27 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 3354543, + "thread": 22 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 3508935, + "thread": 11 + } + }, + { + "amount": "365.361255241", + "slot": { + "period": 3716084, + "thread": 20 + } + }, + { + "amount": "365.361255240", + "slot": { + "period": 3845904, + "thread": 30 + } + } + ], + "AU12cyK2WEbMq5QUekfw5C3RPeQK6PdrHwGYHKfzVieamMzse7XW9": [ + { + "amount": "71.892853586", + "slot": { + "period": 45445, + "thread": 9 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 177637, + "thread": 9 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 445745, + "thread": 7 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 633361, + "thread": 6 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 732577, + "thread": 15 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 961873, + "thread": 7 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 986959, + "thread": 23 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1302669, + "thread": 18 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1434206, + "thread": 27 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1521480, + "thread": 2 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1682118, + "thread": 26 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1923457, + "thread": 13 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 1994604, + "thread": 6 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2157356, + "thread": 11 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2383794, + "thread": 1 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2568894, + "thread": 20 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2683599, + "thread": 18 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2909289, + "thread": 23 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 2970427, + "thread": 29 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 3271363, + "thread": 25 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 3397598, + "thread": 7 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 3475847, + "thread": 28 + } + }, + { + "amount": "71.892853586", + "slot": { + "period": 3721900, + "thread": 9 + } + }, + { + "amount": "71.892853582", + "slot": { + "period": 3885709, + "thread": 29 + } + } + ], + "AU12d1YSCruPXiYoCbuCjEJP7CfHjXgxa3rSPd3KTyrRTtjNcFfNM": [ + { + "amount": "155.032824027", + "slot": { + "period": 80403, + "thread": 27 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 246384, + "thread": 25 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 366721, + "thread": 29 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 649681, + "thread": 22 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 681997, + "thread": 29 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 927499, + "thread": 26 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1092394, + "thread": 3 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1285983, + "thread": 16 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1454019, + "thread": 1 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1556699, + "thread": 0 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1679731, + "thread": 10 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1836265, + "thread": 29 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 1979399, + "thread": 17 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 2283187, + "thread": 5 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 2439355, + "thread": 27 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 2532058, + "thread": 18 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 2631239, + "thread": 12 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 2801048, + "thread": 11 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 3024987, + "thread": 18 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 3236524, + "thread": 6 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 3400697, + "thread": 4 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 3580326, + "thread": 16 + } + }, + { + "amount": "155.032824027", + "slot": { + "period": 3673310, + "thread": 11 + } + }, + { + "amount": "155.032824026", + "slot": { + "period": 3933157, + "thread": 11 + } + } + ], + "AU12d283TdydyEy7hsjGPPSUtL8MztEaScsbKxhMX2Xuo1M9x3hnC": [ + { + "amount": "383.338485024", + "slot": { + "period": 78379, + "thread": 25 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 198936, + "thread": 31 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 469264, + "thread": 21 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 625086, + "thread": 2 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 654958, + "thread": 20 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 841461, + "thread": 22 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1132997, + "thread": 30 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1256498, + "thread": 25 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1428638, + "thread": 3 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1558135, + "thread": 4 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1790472, + "thread": 13 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 1927676, + "thread": 6 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2068717, + "thread": 25 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2174661, + "thread": 13 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2444612, + "thread": 5 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2555634, + "thread": 22 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2639722, + "thread": 2 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 2850931, + "thread": 29 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 3066911, + "thread": 3 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 3279118, + "thread": 6 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 3364588, + "thread": 22 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 3548361, + "thread": 20 + } + }, + { + "amount": "383.338485024", + "slot": { + "period": 3711849, + "thread": 11 + } + }, + { + "amount": "383.338485033", + "slot": { + "period": 3849005, + "thread": 5 + } + } + ], + "AU12d29LpQyT9heJvQhuHqwyzh8FczWeo8DzG4y6fkzfYuw5TSzv5": [ + { + "amount": "107.180543862", + "slot": { + "period": 158311, + "thread": 1 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 286040, + "thread": 4 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 420480, + "thread": 4 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 641338, + "thread": 20 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 659069, + "thread": 6 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 851078, + "thread": 31 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1135926, + "thread": 30 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1174147, + "thread": 2 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1396227, + "thread": 17 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1538622, + "thread": 18 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1715260, + "thread": 2 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 1833887, + "thread": 22 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2123213, + "thread": 20 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2257508, + "thread": 28 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2405606, + "thread": 21 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2554581, + "thread": 29 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2716946, + "thread": 31 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 2935181, + "thread": 31 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 3046162, + "thread": 18 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 3268960, + "thread": 30 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 3334140, + "thread": 4 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 3467159, + "thread": 10 + } + }, + { + "amount": "107.180543862", + "slot": { + "period": 3716716, + "thread": 7 + } + }, + { + "amount": "107.180543858", + "slot": { + "period": 3853088, + "thread": 13 + } + } + ], + "AU12d3Z4YbVa1EbQAuS1jAb9DVUqMvFwyHC9snpzbNFoxH3cfm4d6": [ + { + "amount": "53.562618184", + "slot": { + "period": 153587, + "thread": 10 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 181070, + "thread": 25 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 435308, + "thread": 11 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 578658, + "thread": 14 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 682417, + "thread": 5 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 839187, + "thread": 31 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1131570, + "thread": 31 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1272259, + "thread": 17 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1351290, + "thread": 11 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1517302, + "thread": 0 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1692922, + "thread": 18 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 1846494, + "thread": 31 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2061431, + "thread": 10 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2213046, + "thread": 31 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2445390, + "thread": 3 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2621971, + "thread": 27 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2723347, + "thread": 1 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 2883483, + "thread": 1 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 3029367, + "thread": 27 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 3284104, + "thread": 8 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 3291715, + "thread": 0 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 3504751, + "thread": 20 + } + }, + { + "amount": "53.562618184", + "slot": { + "period": 3655582, + "thread": 7 + } + }, + { + "amount": "53.562618185", + "slot": { + "period": 3936527, + "thread": 3 + } + } + ], + "AU12d3kKs8wEaBPpUjbiqk7m7EKuKZvjWt59CbpTiPMYNyw8x53XE": [ + { + "amount": "181.915048708", + "slot": { + "period": 144277, + "thread": 31 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 171715, + "thread": 2 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 418302, + "thread": 1 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 601063, + "thread": 23 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 692364, + "thread": 30 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 932677, + "thread": 28 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1138610, + "thread": 8 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1151012, + "thread": 29 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1323550, + "thread": 19 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1616043, + "thread": 3 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1728928, + "thread": 19 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1832785, + "thread": 28 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 1995949, + "thread": 28 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2209818, + "thread": 21 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2451413, + "thread": 13 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2578994, + "thread": 22 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2646589, + "thread": 17 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2794859, + "thread": 2 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 2956777, + "thread": 16 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 3172610, + "thread": 12 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 3391185, + "thread": 24 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 3537674, + "thread": 10 + } + }, + { + "amount": "181.915048708", + "slot": { + "period": 3748884, + "thread": 31 + } + }, + { + "amount": "181.915048702", + "slot": { + "period": 3864875, + "thread": 14 + } + } + ], + "AU12d4nzgbSeLC8DRUDBP3FAf2pErpqHvRzWMYK6LWUeqnPhEvi7s": [ + { + "amount": "109.398066391", + "slot": { + "period": 24067, + "thread": 0 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 289126, + "thread": 30 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 424542, + "thread": 12 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 531490, + "thread": 5 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 723514, + "thread": 24 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 891374, + "thread": 30 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1129300, + "thread": 23 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1237288, + "thread": 6 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1423302, + "thread": 29 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1629248, + "thread": 4 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1717783, + "thread": 26 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 1919317, + "thread": 10 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2101233, + "thread": 13 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2274631, + "thread": 31 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2295308, + "thread": 24 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2510948, + "thread": 11 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2731119, + "thread": 17 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 2905527, + "thread": 9 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 3062227, + "thread": 22 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 3254776, + "thread": 5 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 3319659, + "thread": 24 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 3608256, + "thread": 5 + } + }, + { + "amount": "109.398066391", + "slot": { + "period": 3656077, + "thread": 31 + } + }, + { + "amount": "109.398066388", + "slot": { + "period": 3871666, + "thread": 2 + } + } + ], + "AU12d6FaTP599FZL7pdxsAFQjjXWGaX97qbhidEToVvUJShAcjcdk": [ + { + "amount": "95.495720885", + "slot": { + "period": 56550, + "thread": 8 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 276864, + "thread": 24 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 335044, + "thread": 16 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 653393, + "thread": 20 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 664499, + "thread": 0 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 890727, + "thread": 29 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1058164, + "thread": 17 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1177949, + "thread": 11 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1362746, + "thread": 5 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1559808, + "thread": 2 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1745721, + "thread": 16 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 1957342, + "thread": 15 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2119989, + "thread": 18 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2168296, + "thread": 26 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2387399, + "thread": 5 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2534056, + "thread": 20 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2730525, + "thread": 9 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2879078, + "thread": 9 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 2954306, + "thread": 4 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 3175524, + "thread": 11 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 3406120, + "thread": 14 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 3472218, + "thread": 8 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 3667334, + "thread": 14 + } + }, + { + "amount": "95.495720885", + "slot": { + "period": 3876283, + "thread": 16 + } + } + ], + "AU12d78vJJbcpU3uexUBY73VY5NWzyZirwpaNdQPTY2rzewxeVcSv": [ + { + "amount": "173.688542430", + "slot": { + "period": 107535, + "thread": 24 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 292369, + "thread": 1 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 471265, + "thread": 17 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 505888, + "thread": 9 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 766804, + "thread": 17 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 878214, + "thread": 9 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1052191, + "thread": 7 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1231542, + "thread": 0 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1441766, + "thread": 21 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1577093, + "thread": 14 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1748885, + "thread": 7 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 1853251, + "thread": 31 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2001083, + "thread": 27 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2212032, + "thread": 26 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2457189, + "thread": 5 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2532822, + "thread": 16 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2691266, + "thread": 23 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 2861863, + "thread": 19 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 3043891, + "thread": 12 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 3266833, + "thread": 3 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 3390686, + "thread": 1 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 3583562, + "thread": 7 + } + }, + { + "amount": "173.688542430", + "slot": { + "period": 3678924, + "thread": 22 + } + }, + { + "amount": "173.688542426", + "slot": { + "period": 3797514, + "thread": 22 + } + } + ], + "AU12d7ZNygJu3Cz4RbHvyrsAaqYHNrEAKcf8RzWaQQfwChm4Un4He": [ + { + "amount": "543.461025846", + "slot": { + "period": 146325, + "thread": 16 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 170852, + "thread": 28 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 342612, + "thread": 8 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 556147, + "thread": 17 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 717741, + "thread": 18 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 934088, + "thread": 22 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1070657, + "thread": 12 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1163867, + "thread": 12 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1361434, + "thread": 23 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1509546, + "thread": 10 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1655980, + "thread": 12 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 1851461, + "thread": 8 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2110418, + "thread": 11 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2236093, + "thread": 8 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2331173, + "thread": 14 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2570837, + "thread": 5 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2715250, + "thread": 7 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 2801142, + "thread": 7 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 3105386, + "thread": 14 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 3220262, + "thread": 18 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 3323409, + "thread": 27 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 3500137, + "thread": 29 + } + }, + { + "amount": "543.461025846", + "slot": { + "period": 3688498, + "thread": 12 + } + }, + { + "amount": "543.461025845", + "slot": { + "period": 3816651, + "thread": 30 + } + } + ], + "AU12d7orDijiLiWYUWGbtcygPX2Dy8phYxipCJEk85jqK4QQPGxSA": [ + { + "amount": "126.320297454", + "slot": { + "period": 20933, + "thread": 17 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 286296, + "thread": 14 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 356809, + "thread": 1 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 646934, + "thread": 23 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 737365, + "thread": 31 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 960849, + "thread": 30 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1007087, + "thread": 21 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1168449, + "thread": 11 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1386129, + "thread": 14 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1632778, + "thread": 22 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1705198, + "thread": 9 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1841443, + "thread": 2 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 1983925, + "thread": 19 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2188643, + "thread": 19 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2387686, + "thread": 14 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2504162, + "thread": 3 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2770146, + "thread": 1 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2796518, + "thread": 31 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 2965387, + "thread": 14 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 3211723, + "thread": 30 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 3349851, + "thread": 7 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 3608471, + "thread": 31 + } + }, + { + "amount": "126.320297454", + "slot": { + "period": 3752050, + "thread": 31 + } + }, + { + "amount": "126.320297442", + "slot": { + "period": 3820776, + "thread": 4 + } + } + ], + "AU12d9jundRRWDHr9beQscWLdSsoYz157JReGmKe4SDAre5mqXCGT": [ + { + "amount": "91.811106817", + "slot": { + "period": 148675, + "thread": 21 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 192568, + "thread": 10 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 403708, + "thread": 5 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 600747, + "thread": 22 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 742831, + "thread": 3 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 881262, + "thread": 11 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1148505, + "thread": 11 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1214918, + "thread": 16 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1473064, + "thread": 20 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1512845, + "thread": 19 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1785156, + "thread": 28 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 1827933, + "thread": 21 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2098425, + "thread": 30 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2219711, + "thread": 5 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2362813, + "thread": 27 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2496720, + "thread": 11 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2706663, + "thread": 4 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 2907061, + "thread": 8 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 3112905, + "thread": 0 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 3276858, + "thread": 18 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 3305730, + "thread": 23 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 3538739, + "thread": 20 + } + }, + { + "amount": "91.811106817", + "slot": { + "period": 3768994, + "thread": 23 + } + }, + { + "amount": "91.811106807", + "slot": { + "period": 3811016, + "thread": 18 + } + } + ], + "AU12d9ukxSYJcV8sh7EqjzU7ks4L2hGC3nyvFDxVbpUtMLQtX14z3": [ + { + "amount": "210.277209424", + "slot": { + "period": 150896, + "thread": 7 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 283248, + "thread": 5 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 386532, + "thread": 18 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 565243, + "thread": 3 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 759572, + "thread": 3 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 951973, + "thread": 2 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1124044, + "thread": 3 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1312740, + "thread": 23 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1408178, + "thread": 23 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1533585, + "thread": 16 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1765539, + "thread": 2 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 1892808, + "thread": 13 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2016359, + "thread": 25 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2266725, + "thread": 25 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2365172, + "thread": 18 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2502516, + "thread": 7 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2687312, + "thread": 6 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2878908, + "thread": 14 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 2971389, + "thread": 12 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 3277050, + "thread": 31 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 3346163, + "thread": 24 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 3614097, + "thread": 11 + } + }, + { + "amount": "210.277209424", + "slot": { + "period": 3667974, + "thread": 29 + } + }, + { + "amount": "210.277209421", + "slot": { + "period": 3916524, + "thread": 1 + } + } + ], + "AU12dB1LdstkcyQZ7dMueJLUkw9mu7nWQaKpSwbWZFiJqqcWUyX7S": [ + { + "amount": "180.010057007", + "slot": { + "period": 151903, + "thread": 21 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 240610, + "thread": 4 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 370273, + "thread": 24 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 643155, + "thread": 4 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 803084, + "thread": 27 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 824162, + "thread": 18 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1055977, + "thread": 2 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1151118, + "thread": 24 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1321787, + "thread": 31 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1598871, + "thread": 5 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1651741, + "thread": 27 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1915813, + "thread": 17 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 1999084, + "thread": 9 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 2242271, + "thread": 23 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 2376322, + "thread": 26 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 2570169, + "thread": 5 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 2683286, + "thread": 8 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 2869308, + "thread": 28 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 3052400, + "thread": 20 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 3124606, + "thread": 1 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 3387906, + "thread": 23 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 3594600, + "thread": 20 + } + }, + { + "amount": "180.010057007", + "slot": { + "period": 3713268, + "thread": 27 + } + }, + { + "amount": "180.010057012", + "slot": { + "period": 3791451, + "thread": 31 + } + } + ], + "AU12dBMU7SdgrX83SF8x6TSwBFdKRr9KZiYSwCnrMWVKddFyVX4Dm": [ + { + "amount": "176.379505198", + "slot": { + "period": 72472, + "thread": 19 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 262431, + "thread": 29 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 488848, + "thread": 11 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 547591, + "thread": 19 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 722619, + "thread": 20 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 846969, + "thread": 2 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1101553, + "thread": 2 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1167805, + "thread": 8 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1333644, + "thread": 9 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1614691, + "thread": 20 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1721599, + "thread": 28 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 1922997, + "thread": 18 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2094181, + "thread": 17 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2165844, + "thread": 2 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2379884, + "thread": 31 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2522326, + "thread": 20 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2689337, + "thread": 3 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 2875747, + "thread": 13 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 3022193, + "thread": 16 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 3246471, + "thread": 14 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 3400881, + "thread": 22 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 3454269, + "thread": 24 + } + }, + { + "amount": "176.379505198", + "slot": { + "period": 3622482, + "thread": 27 + } + }, + { + "amount": "176.379505191", + "slot": { + "period": 3880759, + "thread": 13 + } + } + ], + "AU12dDCtdGSQezk3pjntSCFjEWSJU6GzjjdPakwL8WZvyUefkQ8Z1": [ + { + "amount": "54.995109080", + "slot": { + "period": 46992, + "thread": 2 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 170948, + "thread": 24 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 433714, + "thread": 16 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 571204, + "thread": 26 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 765042, + "thread": 8 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 964931, + "thread": 13 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 982908, + "thread": 27 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 1280855, + "thread": 3 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 1442200, + "thread": 3 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 1513203, + "thread": 6 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 1684557, + "thread": 16 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 1914378, + "thread": 25 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2110699, + "thread": 24 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2274690, + "thread": 28 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2411920, + "thread": 27 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2623139, + "thread": 7 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2660102, + "thread": 5 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 2941416, + "thread": 21 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 3051664, + "thread": 25 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 3152674, + "thread": 11 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 3396110, + "thread": 14 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 3591758, + "thread": 13 + } + }, + { + "amount": "54.995109080", + "slot": { + "period": 3769561, + "thread": 12 + } + }, + { + "amount": "54.995109091", + "slot": { + "period": 3845432, + "thread": 15 + } + } + ], + "AU12dDbxC6HL3WKCURdgCNdi6ZKSAFG43bac4qBLxqRKDfRWpsmoW": [ + { + "amount": "305.149621647", + "slot": { + "period": 113562, + "thread": 17 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 322385, + "thread": 10 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 476334, + "thread": 15 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 511754, + "thread": 10 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 741039, + "thread": 17 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 858121, + "thread": 21 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1023381, + "thread": 3 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1219330, + "thread": 9 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1424512, + "thread": 14 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1491562, + "thread": 25 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1664824, + "thread": 18 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1918954, + "thread": 24 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 1993910, + "thread": 16 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 2202625, + "thread": 6 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 2436069, + "thread": 15 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 2571784, + "thread": 21 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 2737820, + "thread": 16 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 2897071, + "thread": 28 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 3026084, + "thread": 13 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 3166319, + "thread": 22 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 3390047, + "thread": 14 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 3599684, + "thread": 0 + } + }, + { + "amount": "305.149621647", + "slot": { + "period": 3771502, + "thread": 18 + } + }, + { + "amount": "305.149621646", + "slot": { + "period": 3875326, + "thread": 4 + } + } + ], + "AU12dDcYFzNz7v7TBgNHHWMBdXHm3Qz3mqqmxLmMM4M5E87igBNkw": [ + { + "amount": "187.208122008", + "slot": { + "period": 103883, + "thread": 12 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 178132, + "thread": 0 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 384274, + "thread": 19 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 551498, + "thread": 15 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 784636, + "thread": 12 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 858303, + "thread": 25 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1014394, + "thread": 20 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1184837, + "thread": 31 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1337668, + "thread": 14 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1504508, + "thread": 10 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1767488, + "thread": 11 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 1964258, + "thread": 30 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2106297, + "thread": 5 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2229470, + "thread": 16 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2450146, + "thread": 12 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2526571, + "thread": 24 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2709906, + "thread": 22 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 2877807, + "thread": 27 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3044236, + "thread": 3 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3141012, + "thread": 16 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3391764, + "thread": 24 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3542754, + "thread": 25 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3773188, + "thread": 21 + } + }, + { + "amount": "187.208122008", + "slot": { + "period": 3793174, + "thread": 5 + } + } + ], + "AU12dDuAgxykZC3bW8779nNpTVnefKf8FxJQ2Fh1H4hTUonw238Rf": [ + { + "amount": "81.647967677", + "slot": { + "period": 159949, + "thread": 29 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 177749, + "thread": 6 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 462523, + "thread": 27 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 633359, + "thread": 12 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 673526, + "thread": 27 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 906370, + "thread": 9 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1083449, + "thread": 26 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1184481, + "thread": 20 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1442625, + "thread": 8 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1497221, + "thread": 2 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1779619, + "thread": 6 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 1968871, + "thread": 3 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2055508, + "thread": 9 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2218878, + "thread": 24 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2312348, + "thread": 12 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2464523, + "thread": 7 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2751840, + "thread": 14 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 2806676, + "thread": 1 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 3017606, + "thread": 22 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 3200359, + "thread": 25 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 3343444, + "thread": 31 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 3532356, + "thread": 13 + } + }, + { + "amount": "81.647967677", + "slot": { + "period": 3711918, + "thread": 23 + } + }, + { + "amount": "81.647967683", + "slot": { + "period": 3798699, + "thread": 21 + } + } + ], + "AU12dE6TJYJ1qce9YcDvFU8gQp23qAEdciQWTg9mQ86F2D6Qxe2X4": [ + { + "amount": "356.136343195", + "slot": { + "period": 124957, + "thread": 19 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 282714, + "thread": 9 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 407310, + "thread": 25 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 590152, + "thread": 3 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 777668, + "thread": 25 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 903704, + "thread": 6 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1106065, + "thread": 25 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1308580, + "thread": 10 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1465430, + "thread": 31 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1506439, + "thread": 19 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1747096, + "thread": 1 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1915339, + "thread": 27 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 1985731, + "thread": 13 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 2282886, + "thread": 23 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 2333344, + "thread": 1 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 2593592, + "thread": 3 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 2727416, + "thread": 20 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 2883119, + "thread": 1 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 3109028, + "thread": 5 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 3141488, + "thread": 11 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 3377334, + "thread": 7 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 3478472, + "thread": 28 + } + }, + { + "amount": "356.136343195", + "slot": { + "period": 3713206, + "thread": 5 + } + }, + { + "amount": "356.136343196", + "slot": { + "period": 3830364, + "thread": 23 + } + } + ], + "AU12dE95L87c1xqLZ4Ezxb4TjFSqwhiSnTXVFPFwkhNYZXhLGXykr": [ + { + "amount": "95.502235807", + "slot": { + "period": 31501, + "thread": 6 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 251488, + "thread": 27 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 490452, + "thread": 11 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 600614, + "thread": 7 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 675826, + "thread": 0 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 829356, + "thread": 10 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1074339, + "thread": 17 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1250755, + "thread": 23 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1389205, + "thread": 19 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1530108, + "thread": 6 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1667870, + "thread": 8 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 1852567, + "thread": 16 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2107739, + "thread": 22 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2207189, + "thread": 25 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2446252, + "thread": 24 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2499396, + "thread": 20 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2649039, + "thread": 16 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 2916616, + "thread": 18 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 3049006, + "thread": 17 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 3199050, + "thread": 26 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 3435724, + "thread": 17 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 3557658, + "thread": 16 + } + }, + { + "amount": "95.502235807", + "slot": { + "period": 3719227, + "thread": 16 + } + }, + { + "amount": "95.502235800", + "slot": { + "period": 3839098, + "thread": 21 + } + } + ], + "AU12dEXyCuaMJ4LmrZn1JENt2tWAusL4TVZPsmqn59WRyniKXqKR2": [ + { + "amount": "185.001580956", + "slot": { + "period": 147568, + "thread": 16 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 226976, + "thread": 26 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 422558, + "thread": 26 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 572649, + "thread": 12 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 805426, + "thread": 24 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 949672, + "thread": 20 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1033701, + "thread": 5 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1297837, + "thread": 21 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1398202, + "thread": 9 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1602541, + "thread": 21 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1689849, + "thread": 11 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 1855489, + "thread": 31 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2000913, + "thread": 31 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2235058, + "thread": 19 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2445659, + "thread": 2 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2619812, + "thread": 10 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2683288, + "thread": 23 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 2949676, + "thread": 18 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 3038043, + "thread": 6 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 3265062, + "thread": 2 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 3363426, + "thread": 10 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 3596843, + "thread": 7 + } + }, + { + "amount": "185.001580956", + "slot": { + "period": 3629097, + "thread": 1 + } + }, + { + "amount": "185.001580954", + "slot": { + "period": 3838175, + "thread": 30 + } + } + ], + "AU12dErd6odboKqAFfeaNHJiHzCmcKmjSXd32Aj7xDamN3WV5HSms": [ + { + "amount": "56.761302236", + "slot": { + "period": 156211, + "thread": 28 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 218444, + "thread": 6 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 479692, + "thread": 28 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 611347, + "thread": 23 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 684807, + "thread": 2 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 870057, + "thread": 28 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1138925, + "thread": 19 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1218829, + "thread": 30 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1382955, + "thread": 21 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1549601, + "thread": 31 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1703647, + "thread": 5 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 1901337, + "thread": 0 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2031767, + "thread": 20 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2172959, + "thread": 8 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2299696, + "thread": 9 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2483871, + "thread": 9 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2665736, + "thread": 17 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 2907769, + "thread": 4 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 3000444, + "thread": 20 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 3155542, + "thread": 7 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 3393766, + "thread": 15 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 3562892, + "thread": 26 + } + }, + { + "amount": "56.761302236", + "slot": { + "period": 3625827, + "thread": 11 + } + }, + { + "amount": "56.761302229", + "slot": { + "period": 3796108, + "thread": 31 + } + } + ], + "AU12dGV3z59JT5oURbTQnx54D5HZwG9PVVAMUXisqgAM91ELbAdTC": [ + { + "amount": "72.236973559", + "slot": { + "period": 34512, + "thread": 22 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 269855, + "thread": 16 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 450194, + "thread": 3 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 526886, + "thread": 29 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 743324, + "thread": 9 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 972684, + "thread": 1 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1122609, + "thread": 15 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1259382, + "thread": 31 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1394658, + "thread": 6 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1601834, + "thread": 22 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1689814, + "thread": 20 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 1968776, + "thread": 3 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2139257, + "thread": 17 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2161764, + "thread": 11 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2457985, + "thread": 5 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2500809, + "thread": 8 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2670300, + "thread": 16 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 2949681, + "thread": 1 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 3028194, + "thread": 18 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 3257058, + "thread": 0 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 3415107, + "thread": 15 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 3601976, + "thread": 1 + } + }, + { + "amount": "72.236973559", + "slot": { + "period": 3726190, + "thread": 21 + } + }, + { + "amount": "72.236973569", + "slot": { + "period": 3849417, + "thread": 18 + } + } + ], + "AU12dGhHoyQW89B6osokVKXTmFVjCGXJTyzzpdLcogwPVfR8rfaFu": [ + { + "amount": "610.558643762", + "slot": { + "period": 165792, + "thread": 11 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 298705, + "thread": 24 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 435939, + "thread": 6 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 616576, + "thread": 11 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 655596, + "thread": 15 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 973714, + "thread": 12 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 994850, + "thread": 2 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 1275281, + "thread": 1 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 1340348, + "thread": 18 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 1511410, + "thread": 12 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 1685409, + "thread": 17 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 1870024, + "thread": 20 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2029921, + "thread": 5 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2287704, + "thread": 0 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2342069, + "thread": 27 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2468157, + "thread": 22 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2722146, + "thread": 21 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2810853, + "thread": 6 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 2954218, + "thread": 28 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 3255012, + "thread": 25 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 3368770, + "thread": 2 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 3603988, + "thread": 2 + } + }, + { + "amount": "610.558643762", + "slot": { + "period": 3618821, + "thread": 30 + } + }, + { + "amount": "610.558643768", + "slot": { + "period": 3823751, + "thread": 23 + } + } + ], + "AU12dHLhhMz9DKDyjLG47Mjqf8FwHzVgGTZ3XL44io55D1Yzdcezk": [ + { + "amount": "413.738662532", + "slot": { + "period": 64918, + "thread": 14 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 297198, + "thread": 14 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 367396, + "thread": 25 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 613795, + "thread": 25 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 743472, + "thread": 12 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 881696, + "thread": 9 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 983730, + "thread": 4 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 1280898, + "thread": 21 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 1352060, + "thread": 18 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 1571405, + "thread": 11 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 1805279, + "thread": 23 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 1836983, + "thread": 17 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2066700, + "thread": 31 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2248357, + "thread": 19 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2316708, + "thread": 7 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2484493, + "thread": 21 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2777122, + "thread": 8 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2939275, + "thread": 24 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 2979858, + "thread": 3 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 3216056, + "thread": 21 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 3326823, + "thread": 1 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 3520764, + "thread": 5 + } + }, + { + "amount": "413.738662532", + "slot": { + "period": 3711162, + "thread": 27 + } + }, + { + "amount": "413.738662523", + "slot": { + "period": 3919874, + "thread": 29 + } + } + ], + "AU12dJMZJG27mcKrXttVpY8KyPTkvV6DzDKTaYHKPWiYiugZVVBeV": [ + { + "amount": "590.757170466", + "slot": { + "period": 161253, + "thread": 28 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 238919, + "thread": 12 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 389697, + "thread": 26 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 608747, + "thread": 18 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 687527, + "thread": 13 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 875443, + "thread": 17 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1135528, + "thread": 15 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1239191, + "thread": 30 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1418229, + "thread": 14 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1513306, + "thread": 26 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1741704, + "thread": 17 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 1863894, + "thread": 21 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2048017, + "thread": 26 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2204787, + "thread": 10 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2364729, + "thread": 3 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2479500, + "thread": 28 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2737537, + "thread": 26 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 2865621, + "thread": 3 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 3011984, + "thread": 9 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 3169406, + "thread": 26 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 3434040, + "thread": 27 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 3519188, + "thread": 29 + } + }, + { + "amount": "590.757170466", + "slot": { + "period": 3705132, + "thread": 31 + } + }, + { + "amount": "590.757170455", + "slot": { + "period": 3902729, + "thread": 8 + } + } + ], + "AU12dLshutf5naE3QpSTzLGKTmiAbaMPiTvs5ttJtUVkUarRGnss9": [ + { + "amount": "153.596850918", + "slot": { + "period": 112201, + "thread": 29 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 178022, + "thread": 5 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 416086, + "thread": 20 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 630853, + "thread": 18 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 789529, + "thread": 1 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 976488, + "thread": 13 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1124009, + "thread": 13 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1231983, + "thread": 6 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1375275, + "thread": 15 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1503593, + "thread": 5 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1730512, + "thread": 27 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1839072, + "thread": 2 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 1982046, + "thread": 23 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 2215452, + "thread": 5 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 2359372, + "thread": 22 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 2485348, + "thread": 11 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 2713347, + "thread": 29 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 2898968, + "thread": 2 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 3058393, + "thread": 14 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 3206409, + "thread": 5 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 3352092, + "thread": 2 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 3518881, + "thread": 13 + } + }, + { + "amount": "153.596850918", + "slot": { + "period": 3766941, + "thread": 20 + } + }, + { + "amount": "153.596850917", + "slot": { + "period": 3937610, + "thread": 23 + } + } + ], + "AU12dNXr7jYcc1524F2wnXqLZvK2Jc8b3og3UPrHXYKstv1wwinQf": [ + { + "amount": "55.852733638", + "slot": { + "period": 86028, + "thread": 14 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 265022, + "thread": 21 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 461068, + "thread": 13 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 567622, + "thread": 2 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 676941, + "thread": 10 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 953481, + "thread": 27 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1125052, + "thread": 6 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1296287, + "thread": 16 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1380733, + "thread": 16 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1609521, + "thread": 25 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1724669, + "thread": 11 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 1832268, + "thread": 18 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2045821, + "thread": 25 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2260615, + "thread": 29 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2403242, + "thread": 10 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2609229, + "thread": 31 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2641662, + "thread": 3 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 2903095, + "thread": 21 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 3005872, + "thread": 29 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 3223338, + "thread": 7 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 3418706, + "thread": 17 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 3547395, + "thread": 14 + } + }, + { + "amount": "55.852733638", + "slot": { + "period": 3653101, + "thread": 12 + } + }, + { + "amount": "55.852733647", + "slot": { + "period": 3917462, + "thread": 16 + } + } + ], + "AU12dNjraLFuMaanxddPRsCJF8dcAS8MEZ5uiMGpBpQC9ScSWV6Ly": [ + { + "amount": "357.606440838", + "slot": { + "period": 62657, + "thread": 16 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 222520, + "thread": 1 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 341616, + "thread": 31 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 509499, + "thread": 17 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 782656, + "thread": 6 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 835084, + "thread": 17 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1063521, + "thread": 27 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1304007, + "thread": 28 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1471760, + "thread": 31 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1521637, + "thread": 6 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1647846, + "thread": 7 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 1886921, + "thread": 19 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2039315, + "thread": 24 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2144314, + "thread": 0 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2393898, + "thread": 3 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2480197, + "thread": 1 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2740831, + "thread": 9 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2869934, + "thread": 5 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 2967079, + "thread": 30 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 3269323, + "thread": 28 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 3424814, + "thread": 22 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 3597163, + "thread": 6 + } + }, + { + "amount": "357.606440838", + "slot": { + "period": 3765191, + "thread": 6 + } + }, + { + "amount": "357.606440827", + "slot": { + "period": 3858968, + "thread": 16 + } + } + ], + "AU12dQ6NZ4ETMUUHQB3uaP9y1PnD6k3TLyyhRDKHg4jVnfe6Zgh9T": [ + { + "amount": "158.803504470", + "slot": { + "period": 165632, + "thread": 1 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 199785, + "thread": 3 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 469542, + "thread": 0 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 521072, + "thread": 26 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 762763, + "thread": 17 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 904719, + "thread": 29 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1134570, + "thread": 5 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1254501, + "thread": 22 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1343218, + "thread": 10 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1602901, + "thread": 25 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1724471, + "thread": 19 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1919297, + "thread": 28 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 1982804, + "thread": 2 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 2262813, + "thread": 24 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 2440959, + "thread": 5 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 2507420, + "thread": 27 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 2742812, + "thread": 21 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 2831010, + "thread": 2 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 3042852, + "thread": 29 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 3141082, + "thread": 14 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 3375704, + "thread": 9 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 3538418, + "thread": 8 + } + }, + { + "amount": "158.803504470", + "slot": { + "period": 3772825, + "thread": 26 + } + }, + { + "amount": "158.803504460", + "slot": { + "period": 3914889, + "thread": 11 + } + } + ], + "AU12dQG4jYp8Kbw9AMNj3gxZWQUsiBgipvEMKp9iMUXvDdDVaCe7v": [ + { + "amount": "99.273624962", + "slot": { + "period": 163921, + "thread": 17 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 311935, + "thread": 7 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 324157, + "thread": 25 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 585014, + "thread": 16 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 696809, + "thread": 20 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 891516, + "thread": 1 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1149691, + "thread": 17 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1181279, + "thread": 18 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1417907, + "thread": 2 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1595660, + "thread": 14 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1760717, + "thread": 2 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 1893617, + "thread": 26 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2085987, + "thread": 13 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2159249, + "thread": 29 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2382347, + "thread": 15 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2531884, + "thread": 31 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2733670, + "thread": 30 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 2918693, + "thread": 9 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 3069948, + "thread": 19 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 3166588, + "thread": 28 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 3323148, + "thread": 26 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 3514086, + "thread": 25 + } + }, + { + "amount": "99.273624962", + "slot": { + "period": 3708480, + "thread": 30 + } + }, + { + "amount": "99.273624963", + "slot": { + "period": 3874556, + "thread": 2 + } + } + ], + "AU12dQVCPqBWBcmV2yvACK1dz5JZ6mdPMt5hf7hxpyfY8CJFkXBPc": [ + { + "amount": "184.501558724", + "slot": { + "period": 47611, + "thread": 15 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 317139, + "thread": 22 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 482453, + "thread": 9 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 601452, + "thread": 11 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 695475, + "thread": 24 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 849480, + "thread": 21 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1029520, + "thread": 30 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1297422, + "thread": 3 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1379363, + "thread": 21 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1561249, + "thread": 8 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1795578, + "thread": 28 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 1891930, + "thread": 0 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2070095, + "thread": 6 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2230755, + "thread": 26 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2388640, + "thread": 21 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2565076, + "thread": 22 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2697578, + "thread": 22 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 2887496, + "thread": 3 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 3081586, + "thread": 12 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 3218463, + "thread": 2 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 3329339, + "thread": 17 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 3561983, + "thread": 6 + } + }, + { + "amount": "184.501558724", + "slot": { + "period": 3651803, + "thread": 18 + } + }, + { + "amount": "184.501558725", + "slot": { + "period": 3894423, + "thread": 0 + } + } + ], + "AU12dRtyVJ4vPSAz15K4bm5GYucSLAXhk824AioxqcaNp8meDzEuP": [ + { + "amount": "180.476831555", + "slot": { + "period": 88296, + "thread": 13 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 184390, + "thread": 2 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 459751, + "thread": 2 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 626424, + "thread": 27 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 778019, + "thread": 6 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 966055, + "thread": 23 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1105577, + "thread": 2 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1153317, + "thread": 10 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1325292, + "thread": 30 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1486504, + "thread": 15 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1785834, + "thread": 2 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 1921723, + "thread": 4 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2059626, + "thread": 1 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2280317, + "thread": 8 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2429567, + "thread": 19 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2482993, + "thread": 4 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2654961, + "thread": 4 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2845877, + "thread": 4 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 2997685, + "thread": 25 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 3186626, + "thread": 27 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 3310092, + "thread": 25 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 3555363, + "thread": 30 + } + }, + { + "amount": "180.476831555", + "slot": { + "period": 3673281, + "thread": 10 + } + }, + { + "amount": "180.476831548", + "slot": { + "period": 3797430, + "thread": 2 + } + } + ], + "AU12dSTktcK1H9qRAJvdbDA9vjatydP3JT4Ek8hv6nAWggPXvCtzL": [ + { + "amount": "179.265394264", + "slot": { + "period": 101016, + "thread": 14 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 259149, + "thread": 12 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 450797, + "thread": 22 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 651201, + "thread": 17 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 818093, + "thread": 10 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 861519, + "thread": 11 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1093077, + "thread": 22 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1308079, + "thread": 3 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1318815, + "thread": 21 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1555959, + "thread": 4 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1716481, + "thread": 3 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 1854153, + "thread": 9 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2032846, + "thread": 10 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2213110, + "thread": 25 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2443774, + "thread": 11 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2604914, + "thread": 25 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2754840, + "thread": 10 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 2795620, + "thread": 7 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 3115013, + "thread": 8 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 3248461, + "thread": 8 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 3335394, + "thread": 18 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 3558975, + "thread": 31 + } + }, + { + "amount": "179.265394264", + "slot": { + "period": 3689691, + "thread": 9 + } + }, + { + "amount": "179.265394267", + "slot": { + "period": 3780973, + "thread": 13 + } + } + ], + "AU12dTBxEa6Ach2qH2BdsRJfYB4WZinJQVx9aRBXUx4tQDkJ1gUHK": [ + { + "amount": "140.688121595", + "slot": { + "period": 166338, + "thread": 0 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 249475, + "thread": 31 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 362942, + "thread": 20 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 586912, + "thread": 26 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 814910, + "thread": 6 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 982139, + "thread": 31 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 994633, + "thread": 23 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 1192753, + "thread": 20 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 1475349, + "thread": 30 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 1531505, + "thread": 22 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 1718742, + "thread": 2 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 1827982, + "thread": 15 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2021618, + "thread": 0 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2257894, + "thread": 30 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2298708, + "thread": 17 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2610133, + "thread": 21 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2753843, + "thread": 15 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 2800624, + "thread": 26 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 3059500, + "thread": 5 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 3182231, + "thread": 21 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 3413293, + "thread": 7 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 3609683, + "thread": 23 + } + }, + { + "amount": "140.688121595", + "slot": { + "period": 3712805, + "thread": 19 + } + }, + { + "amount": "140.688121598", + "slot": { + "period": 3837748, + "thread": 25 + } + } + ], + "AU12dTL8AgcRJGEpyjNU4AhsQu346XEGVDhKEY5Ce6w3YDHs1BXx3": [ + { + "amount": "159.799315256", + "slot": { + "period": 132873, + "thread": 29 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 190552, + "thread": 17 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 453748, + "thread": 7 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 643449, + "thread": 8 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 716549, + "thread": 7 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 982452, + "thread": 20 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1037994, + "thread": 28 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1206186, + "thread": 1 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1320718, + "thread": 3 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1534313, + "thread": 9 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1670715, + "thread": 24 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1849564, + "thread": 10 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 1987933, + "thread": 2 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 2269910, + "thread": 22 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 2383194, + "thread": 7 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 2491653, + "thread": 31 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 2778009, + "thread": 9 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 2861773, + "thread": 31 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 3077955, + "thread": 4 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 3124599, + "thread": 16 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 3449424, + "thread": 27 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 3545679, + "thread": 6 + } + }, + { + "amount": "159.799315256", + "slot": { + "period": 3677105, + "thread": 5 + } + }, + { + "amount": "159.799315252", + "slot": { + "period": 3853024, + "thread": 19 + } + } + ], + "AU12dTcHuZEyK8R4iQZn1ckBEfNgWXySouA9dJpCYcGuPABebz25A": [ + { + "amount": "127.435765537", + "slot": { + "period": 92299, + "thread": 28 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 308335, + "thread": 25 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 371074, + "thread": 31 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 573687, + "thread": 22 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 789792, + "thread": 19 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 852533, + "thread": 25 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1142358, + "thread": 9 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1311012, + "thread": 29 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1345142, + "thread": 24 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1483758, + "thread": 27 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1739348, + "thread": 4 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 1841861, + "thread": 5 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2032772, + "thread": 28 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2250998, + "thread": 5 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2351980, + "thread": 29 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2472560, + "thread": 5 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2647830, + "thread": 2 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 2873214, + "thread": 0 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 3042425, + "thread": 3 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 3158574, + "thread": 7 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 3372959, + "thread": 15 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 3480466, + "thread": 7 + } + }, + { + "amount": "127.435765537", + "slot": { + "period": 3687781, + "thread": 9 + } + }, + { + "amount": "127.435765536", + "slot": { + "period": 3901365, + "thread": 9 + } + } + ], + "AU12dTdxoiKRtVRuefU2krFUmaefn8Ko9UmjdV76VYJVTVTvCjGPN": [ + { + "amount": "178.886984728", + "slot": { + "period": 127747, + "thread": 16 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 231300, + "thread": 21 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 333127, + "thread": 2 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 651544, + "thread": 12 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 695548, + "thread": 28 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 936136, + "thread": 7 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1060111, + "thread": 25 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1203858, + "thread": 3 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1411364, + "thread": 20 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1546062, + "thread": 29 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1703696, + "thread": 30 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 1888094, + "thread": 28 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2090353, + "thread": 18 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2278026, + "thread": 11 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2378062, + "thread": 19 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2613736, + "thread": 28 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2657117, + "thread": 16 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 2902501, + "thread": 3 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 3016822, + "thread": 29 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 3261263, + "thread": 28 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 3370941, + "thread": 6 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 3475082, + "thread": 19 + } + }, + { + "amount": "178.886984728", + "slot": { + "period": 3661760, + "thread": 5 + } + }, + { + "amount": "178.886984723", + "slot": { + "period": 3796210, + "thread": 16 + } + } + ], + "AU12dTkhNtzGufEUZZrmGv1UiTGSWX6fbsfYG4BKknFBXiwbsu4Cv": [ + { + "amount": "400.961714788", + "slot": { + "period": 89967, + "thread": 20 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 315320, + "thread": 13 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 339245, + "thread": 18 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 625949, + "thread": 27 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 693237, + "thread": 25 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 824983, + "thread": 3 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1107739, + "thread": 19 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1267096, + "thread": 0 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1414247, + "thread": 15 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1612937, + "thread": 21 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1789277, + "thread": 7 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 1866905, + "thread": 8 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2115085, + "thread": 0 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2194657, + "thread": 25 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2321028, + "thread": 30 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2592087, + "thread": 31 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2635052, + "thread": 12 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 2852199, + "thread": 12 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 3045372, + "thread": 25 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 3121838, + "thread": 20 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 3293941, + "thread": 27 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 3498992, + "thread": 10 + } + }, + { + "amount": "400.961714788", + "slot": { + "period": 3665346, + "thread": 23 + } + }, + { + "amount": "400.961714793", + "slot": { + "period": 3869609, + "thread": 27 + } + } + ], + "AU12dTzN2j2Uko44mbxn4ZigfQubb5NUut14FKRZ7cGjXd1RUSWKu": [ + { + "amount": "145.083698754", + "slot": { + "period": 103196, + "thread": 6 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 205133, + "thread": 17 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 380004, + "thread": 0 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 575628, + "thread": 15 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 688708, + "thread": 1 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 862239, + "thread": 22 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1061679, + "thread": 18 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1311911, + "thread": 27 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1345132, + "thread": 11 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1626867, + "thread": 7 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1767426, + "thread": 19 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 1941191, + "thread": 26 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2046410, + "thread": 0 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2255853, + "thread": 3 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2377406, + "thread": 6 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2522968, + "thread": 16 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2669922, + "thread": 5 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 2937250, + "thread": 23 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 3028283, + "thread": 17 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 3226695, + "thread": 30 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 3303788, + "thread": 21 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 3579841, + "thread": 24 + } + }, + { + "amount": "145.083698754", + "slot": { + "period": 3643937, + "thread": 10 + } + }, + { + "amount": "145.083698746", + "slot": { + "period": 3800653, + "thread": 31 + } + } + ], + "AU12dUQYvUnE2H4edQ1KZKRtehfQv1RRdcPzLLTTPDwW3dfDpZd5R": [ + { + "amount": "105.160750546", + "slot": { + "period": 136306, + "thread": 24 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 193516, + "thread": 8 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 389264, + "thread": 2 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 587797, + "thread": 12 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 724754, + "thread": 18 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 944683, + "thread": 25 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1115844, + "thread": 0 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1280366, + "thread": 3 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1379124, + "thread": 31 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1618361, + "thread": 1 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1675645, + "thread": 15 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 1974189, + "thread": 3 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2037002, + "thread": 7 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2263379, + "thread": 25 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2365846, + "thread": 20 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2557563, + "thread": 9 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2704016, + "thread": 3 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 2901985, + "thread": 21 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 3020200, + "thread": 24 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 3125848, + "thread": 29 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 3310011, + "thread": 28 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 3585840, + "thread": 13 + } + }, + { + "amount": "105.160750546", + "slot": { + "period": 3626310, + "thread": 31 + } + }, + { + "amount": "105.160750549", + "slot": { + "period": 3885348, + "thread": 0 + } + } + ], + "AU12dVZ7XhYtwWuEe7zKeLNzzHaTNnNEQCedK7QRht7mydkghbYWp": [ + { + "amount": "66.779577242", + "slot": { + "period": 77045, + "thread": 28 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 196217, + "thread": 0 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 326317, + "thread": 1 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 497338, + "thread": 21 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 818566, + "thread": 7 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 928172, + "thread": 14 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1044091, + "thread": 4 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1274592, + "thread": 22 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1405177, + "thread": 21 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1499908, + "thread": 12 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1722854, + "thread": 16 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1923855, + "thread": 0 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 1995258, + "thread": 1 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 2151967, + "thread": 29 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 2368251, + "thread": 15 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 2498079, + "thread": 6 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 2709933, + "thread": 22 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 2883477, + "thread": 1 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 3002194, + "thread": 17 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 3164120, + "thread": 18 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 3322881, + "thread": 16 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 3453821, + "thread": 25 + } + }, + { + "amount": "66.779577242", + "slot": { + "period": 3768746, + "thread": 25 + } + }, + { + "amount": "66.779577230", + "slot": { + "period": 3941288, + "thread": 20 + } + } + ], + "AU12dXXrB8xkH3ncL1ZSxZS8wj5MyLhPNQwbmXkHt126vBAgKZTA": [ + { + "amount": "274.486252367", + "slot": { + "period": 150136, + "thread": 11 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 229090, + "thread": 5 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 419697, + "thread": 27 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 518331, + "thread": 4 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 696920, + "thread": 18 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 914061, + "thread": 30 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1129336, + "thread": 28 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1236134, + "thread": 6 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1462649, + "thread": 9 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1558224, + "thread": 6 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1680453, + "thread": 12 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1865554, + "thread": 27 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 1997063, + "thread": 0 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 2168249, + "thread": 11 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 2437707, + "thread": 27 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 2614478, + "thread": 3 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 2626123, + "thread": 21 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 2949584, + "thread": 7 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 3071799, + "thread": 5 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 3267217, + "thread": 25 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 3348433, + "thread": 11 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 3507597, + "thread": 20 + } + }, + { + "amount": "274.486252367", + "slot": { + "period": 3776366, + "thread": 30 + } + }, + { + "amount": "274.486252362", + "slot": { + "period": 3837200, + "thread": 1 + } + } + ], + "AU12dXyVoKK3u3NoTU6WJPfSQuVDKvM1f6LxyMEvRBRdUjxUfDVAf": [ + { + "amount": "436.052274203", + "slot": { + "period": 18230, + "thread": 29 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 316046, + "thread": 11 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 410386, + "thread": 30 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 635182, + "thread": 1 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 756671, + "thread": 28 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 873389, + "thread": 19 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 985662, + "thread": 0 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1233686, + "thread": 18 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1380378, + "thread": 30 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1498334, + "thread": 13 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1711959, + "thread": 13 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1829068, + "thread": 7 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 1995501, + "thread": 4 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 2273794, + "thread": 9 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 2345275, + "thread": 21 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 2624184, + "thread": 17 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 2663279, + "thread": 31 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 2841938, + "thread": 4 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 3033524, + "thread": 3 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 3186598, + "thread": 16 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 3359455, + "thread": 6 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 3576469, + "thread": 28 + } + }, + { + "amount": "436.052274203", + "slot": { + "period": 3718273, + "thread": 13 + } + }, + { + "amount": "436.052274211", + "slot": { + "period": 3810661, + "thread": 8 + } + } + ], + "AU12dYA5xoV4pVaHtn1N6XCEBw7G82wNMEfZpW6H568UPhBPd1vce": [ + { + "amount": "146.568330080", + "slot": { + "period": 88727, + "thread": 8 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 303684, + "thread": 11 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 447035, + "thread": 22 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 492157, + "thread": 29 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 665065, + "thread": 14 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 905423, + "thread": 15 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1075302, + "thread": 25 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1317212, + "thread": 2 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1467497, + "thread": 11 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1631139, + "thread": 11 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1790141, + "thread": 22 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 1955032, + "thread": 12 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2007307, + "thread": 26 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2178129, + "thread": 8 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2424016, + "thread": 25 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2619315, + "thread": 22 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2662158, + "thread": 21 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 2894911, + "thread": 19 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 3120254, + "thread": 25 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 3199779, + "thread": 14 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 3407726, + "thread": 7 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 3611950, + "thread": 7 + } + }, + { + "amount": "146.568330080", + "slot": { + "period": 3653283, + "thread": 10 + } + }, + { + "amount": "146.568330073", + "slot": { + "period": 3931975, + "thread": 13 + } + } + ], + "AU12dYgWJ1JTiRMhm14iYchP6sBEZbP8DsY2gvyDDH4LTE5zyDhYD": [ + { + "amount": "143.168020751", + "slot": { + "period": 165403, + "thread": 8 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 246951, + "thread": 24 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 458075, + "thread": 24 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 652322, + "thread": 29 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 771778, + "thread": 25 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 942402, + "thread": 12 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1136196, + "thread": 15 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1279013, + "thread": 28 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1362830, + "thread": 1 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1612744, + "thread": 12 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1788841, + "thread": 26 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 1838067, + "thread": 2 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2131376, + "thread": 2 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2275566, + "thread": 1 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2379709, + "thread": 4 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2563563, + "thread": 0 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2716242, + "thread": 31 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2858007, + "thread": 22 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 2969513, + "thread": 13 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 3229486, + "thread": 4 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 3357041, + "thread": 24 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 3565113, + "thread": 17 + } + }, + { + "amount": "143.168020751", + "slot": { + "period": 3676919, + "thread": 10 + } + }, + { + "amount": "143.168020745", + "slot": { + "period": 3802777, + "thread": 6 + } + } + ], + "AU12dZaC57rLjsJSkgmHjACpwBJzHYy7XhrK3ohavDtD6AtXrmLg5": [ + { + "amount": "235.888366633", + "slot": { + "period": 147113, + "thread": 8 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 285045, + "thread": 5 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 473986, + "thread": 12 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 591496, + "thread": 9 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 685801, + "thread": 17 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 917272, + "thread": 22 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1140231, + "thread": 3 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1290594, + "thread": 14 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1324472, + "thread": 24 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1563661, + "thread": 17 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1799570, + "thread": 2 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1970967, + "thread": 23 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 1981275, + "thread": 19 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 2204050, + "thread": 9 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 2312095, + "thread": 13 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 2622715, + "thread": 26 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 2782337, + "thread": 22 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 2795147, + "thread": 6 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 3006575, + "thread": 19 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 3247136, + "thread": 1 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 3447520, + "thread": 8 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 3519780, + "thread": 18 + } + }, + { + "amount": "235.888366633", + "slot": { + "period": 3760360, + "thread": 22 + } + }, + { + "amount": "235.888366629", + "slot": { + "period": 3915793, + "thread": 22 + } + } + ], + "AU12dZfsNmwou6hXzFF6tSUHD3itisUH58mz8ADUVRfUqJHdnYoyR": [ + { + "amount": "97.446701590", + "slot": { + "period": 82001, + "thread": 27 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 311137, + "thread": 31 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 429370, + "thread": 18 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 572165, + "thread": 13 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 664469, + "thread": 7 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 972514, + "thread": 14 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1135258, + "thread": 3 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1264125, + "thread": 3 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1330329, + "thread": 0 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1550851, + "thread": 4 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1771921, + "thread": 23 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 1897690, + "thread": 31 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2052315, + "thread": 16 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2192773, + "thread": 1 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2363888, + "thread": 9 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2603416, + "thread": 24 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2630903, + "thread": 19 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 2921009, + "thread": 9 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 3067042, + "thread": 25 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 3122031, + "thread": 29 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 3347869, + "thread": 11 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 3556925, + "thread": 15 + } + }, + { + "amount": "97.446701590", + "slot": { + "period": 3686174, + "thread": 10 + } + }, + { + "amount": "97.446701583", + "slot": { + "period": 3884451, + "thread": 11 + } + } + ], + "AU12db1ozgJmUDzdPGmAMXD38R8gbfxJ6XKtPkm7C2h37pAeyk3Ti": [ + { + "amount": "126.199632546", + "slot": { + "period": 47424, + "thread": 0 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 322002, + "thread": 14 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 447678, + "thread": 29 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 624234, + "thread": 19 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 737162, + "thread": 9 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 895354, + "thread": 28 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1033431, + "thread": 3 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1187521, + "thread": 22 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1419721, + "thread": 26 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1555421, + "thread": 27 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1746439, + "thread": 17 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 1826207, + "thread": 11 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2053853, + "thread": 5 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2243994, + "thread": 11 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2456910, + "thread": 14 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2569866, + "thread": 15 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2769861, + "thread": 17 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 2902323, + "thread": 3 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 3026960, + "thread": 10 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 3202076, + "thread": 25 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 3336985, + "thread": 31 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 3538935, + "thread": 1 + } + }, + { + "amount": "126.199632546", + "slot": { + "period": 3773368, + "thread": 30 + } + }, + { + "amount": "126.199632553", + "slot": { + "period": 3843498, + "thread": 3 + } + } + ], + "AU12db4kmTV68RA3FZciCZeT8Vf9uBq7wmyTakbfZ6FHiDKQSQRNN": [ + { + "amount": "243.268724664", + "slot": { + "period": 20478, + "thread": 15 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 189530, + "thread": 9 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 384135, + "thread": 10 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 634849, + "thread": 7 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 766343, + "thread": 18 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 897719, + "thread": 28 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1018773, + "thread": 26 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1316218, + "thread": 14 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1368582, + "thread": 26 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1557602, + "thread": 19 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1751416, + "thread": 19 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 1963420, + "thread": 13 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2012545, + "thread": 17 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2200398, + "thread": 14 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2438044, + "thread": 17 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2508723, + "thread": 21 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2725466, + "thread": 8 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2929829, + "thread": 27 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 2995730, + "thread": 29 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 3258545, + "thread": 12 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 3365349, + "thread": 22 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 3586005, + "thread": 23 + } + }, + { + "amount": "243.268724664", + "slot": { + "period": 3731456, + "thread": 17 + } + }, + { + "amount": "243.268724663", + "slot": { + "period": 3934016, + "thread": 11 + } + } + ], + "AU12dbA7hWCNBpBKFFAFv7TbaN9FRt4Dx1BsbPoehRBwUmjT2s5gL": [ + { + "amount": "474.286844389", + "slot": { + "period": 64616, + "thread": 16 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 230145, + "thread": 20 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 394025, + "thread": 21 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 498678, + "thread": 15 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 710866, + "thread": 3 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 899653, + "thread": 10 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1043765, + "thread": 31 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1268836, + "thread": 10 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1455687, + "thread": 9 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1637291, + "thread": 29 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1737919, + "thread": 3 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 1836115, + "thread": 5 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2059347, + "thread": 9 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2257032, + "thread": 31 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2302414, + "thread": 20 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2505780, + "thread": 18 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2668920, + "thread": 12 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 2851568, + "thread": 7 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 3076083, + "thread": 1 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 3246572, + "thread": 0 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 3370453, + "thread": 1 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 3509112, + "thread": 29 + } + }, + { + "amount": "474.286844389", + "slot": { + "period": 3654701, + "thread": 14 + } + }, + { + "amount": "474.286844390", + "slot": { + "period": 3806478, + "thread": 31 + } + } + ], + "AU12dbid61wEHT9AzgxfR21rAtrjzNPGhjS19RqzPizzeKrFPxYMU": [ + { + "amount": "630.744137529", + "slot": { + "period": 43929, + "thread": 6 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 300499, + "thread": 5 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 363683, + "thread": 1 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 503087, + "thread": 7 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 812569, + "thread": 9 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 923831, + "thread": 7 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1117401, + "thread": 15 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1275208, + "thread": 22 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1412197, + "thread": 15 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1509680, + "thread": 21 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1670555, + "thread": 27 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 1906001, + "thread": 22 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2099246, + "thread": 15 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2216796, + "thread": 19 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2335035, + "thread": 16 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2541155, + "thread": 12 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2761010, + "thread": 1 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 2879128, + "thread": 7 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 3044984, + "thread": 27 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 3200658, + "thread": 23 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 3318696, + "thread": 6 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 3607202, + "thread": 17 + } + }, + { + "amount": "630.744137529", + "slot": { + "period": 3631403, + "thread": 1 + } + }, + { + "amount": "630.744137522", + "slot": { + "period": 3839772, + "thread": 23 + } + } + ], + "AU12dbpQjjSh2pWTFRDTCB2GgGSEsHSNGiiPyMrXBgSNR17Nm9EsH": [ + { + "amount": "307.020355391", + "slot": { + "period": 99317, + "thread": 20 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 210809, + "thread": 19 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 407989, + "thread": 28 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 606557, + "thread": 16 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 728667, + "thread": 31 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 897310, + "thread": 5 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1010658, + "thread": 12 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1217577, + "thread": 22 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1445669, + "thread": 13 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1590469, + "thread": 10 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1666834, + "thread": 1 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1820482, + "thread": 4 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 1989939, + "thread": 4 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2196085, + "thread": 15 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2441262, + "thread": 9 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2586242, + "thread": 21 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2646660, + "thread": 25 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2898415, + "thread": 23 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 2967979, + "thread": 23 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 3218364, + "thread": 25 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 3330086, + "thread": 8 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 3577211, + "thread": 11 + } + }, + { + "amount": "307.020355391", + "slot": { + "period": 3687998, + "thread": 6 + } + }, + { + "amount": "307.020355395", + "slot": { + "period": 3931842, + "thread": 18 + } + } + ], + "AU12dcGBVbgvpMfxT8FphCrf78QtTh5X8dv2ezWCFgEvXCPKde939": [ + { + "amount": "355.322834214", + "slot": { + "period": 150255, + "thread": 20 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 274301, + "thread": 5 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 486132, + "thread": 12 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 605936, + "thread": 28 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 672979, + "thread": 17 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 827190, + "thread": 16 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1023310, + "thread": 24 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1290079, + "thread": 31 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1392380, + "thread": 3 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1489444, + "thread": 4 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1799736, + "thread": 23 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 1891802, + "thread": 18 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2089932, + "thread": 30 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2220440, + "thread": 3 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2435122, + "thread": 20 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2570316, + "thread": 30 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2627745, + "thread": 17 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 2881101, + "thread": 31 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3102229, + "thread": 30 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3229160, + "thread": 7 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3386652, + "thread": 20 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3474793, + "thread": 4 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3736876, + "thread": 7 + } + }, + { + "amount": "355.322834214", + "slot": { + "period": 3932684, + "thread": 15 + } + } + ], + "AU12dcMBLLb2UhdcnEAcYVS5eMH5YDjNssik1Q45GEfmMxiHEDb4N": [ + { + "amount": "145.474626943", + "slot": { + "period": 86381, + "thread": 13 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 215747, + "thread": 3 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 386508, + "thread": 2 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 528472, + "thread": 10 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 719705, + "thread": 23 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 931589, + "thread": 25 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 996386, + "thread": 13 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 1193960, + "thread": 24 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 1467422, + "thread": 17 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 1631232, + "thread": 21 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 1669609, + "thread": 4 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 1844793, + "thread": 18 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2083221, + "thread": 3 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2234698, + "thread": 8 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2312558, + "thread": 0 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2487916, + "thread": 22 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2645457, + "thread": 30 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 2884261, + "thread": 23 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 3101951, + "thread": 0 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 3283418, + "thread": 7 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 3334688, + "thread": 21 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 3515689, + "thread": 19 + } + }, + { + "amount": "145.474626943", + "slot": { + "period": 3707187, + "thread": 1 + } + }, + { + "amount": "145.474626953", + "slot": { + "period": 3876774, + "thread": 9 + } + } + ], + "AU12dcUMb4cr9opjC3HbbzgR1qNBhh4cqKQTJ2ng4A7cT8qRCRQAh": [ + { + "amount": "167.600395245", + "slot": { + "period": 110395, + "thread": 14 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 286313, + "thread": 6 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 366411, + "thread": 9 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 603877, + "thread": 13 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 660712, + "thread": 15 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 879282, + "thread": 9 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 995187, + "thread": 26 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 1293355, + "thread": 20 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 1327184, + "thread": 1 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 1576452, + "thread": 27 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 1804403, + "thread": 26 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 1870936, + "thread": 1 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2109382, + "thread": 25 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2187779, + "thread": 20 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2365477, + "thread": 19 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2613545, + "thread": 7 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2770390, + "thread": 21 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 2851504, + "thread": 24 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 3064239, + "thread": 4 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 3223139, + "thread": 22 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 3359918, + "thread": 9 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 3454623, + "thread": 31 + } + }, + { + "amount": "167.600395245", + "slot": { + "period": 3705534, + "thread": 29 + } + }, + { + "amount": "167.600395238", + "slot": { + "period": 3930543, + "thread": 31 + } + } + ], + "AU12dcXvzYhRQMix2CF9hEKCjd5kY3oogyq7KzgwL4L43Gya5qgtw": [ + { + "amount": "214.554595329", + "slot": { + "period": 16667, + "thread": 3 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 185512, + "thread": 5 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 342391, + "thread": 2 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 531901, + "thread": 15 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 700612, + "thread": 18 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 952700, + "thread": 28 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1074515, + "thread": 24 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1168633, + "thread": 30 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1470104, + "thread": 14 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1568120, + "thread": 11 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1670190, + "thread": 6 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 1897117, + "thread": 17 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2089837, + "thread": 4 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2259365, + "thread": 17 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2362924, + "thread": 3 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2580241, + "thread": 11 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2719543, + "thread": 18 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2847994, + "thread": 26 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 2981916, + "thread": 14 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 3193504, + "thread": 10 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 3415204, + "thread": 3 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 3564466, + "thread": 2 + } + }, + { + "amount": "214.554595329", + "slot": { + "period": 3677283, + "thread": 5 + } + }, + { + "amount": "214.554595319", + "slot": { + "period": 3902189, + "thread": 30 + } + } + ], + "AU12dd4b5HoSTz6S95wcNQZnufnx3LWpZ3gUDwAFJVhVRd9Kwr2M4": [ + { + "amount": "191.755168215", + "slot": { + "period": 77256, + "thread": 16 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 284059, + "thread": 13 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 441663, + "thread": 13 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 514965, + "thread": 11 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 703039, + "thread": 23 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 964213, + "thread": 17 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1069831, + "thread": 4 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1281890, + "thread": 17 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1355479, + "thread": 30 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1528814, + "thread": 5 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1682369, + "thread": 24 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 1941964, + "thread": 1 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2034142, + "thread": 20 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2289675, + "thread": 25 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2338599, + "thread": 5 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2519758, + "thread": 0 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2737005, + "thread": 3 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2869609, + "thread": 8 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 2996242, + "thread": 1 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 3224836, + "thread": 31 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 3407124, + "thread": 21 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 3510989, + "thread": 1 + } + }, + { + "amount": "191.755168215", + "slot": { + "period": 3709042, + "thread": 8 + } + }, + { + "amount": "191.755168217", + "slot": { + "period": 3830652, + "thread": 9 + } + } + ], + "AU12ddQdcxtNTmJz1cGrjqmanYsC4JD6u6aTRE2B3nkhp12EsPTht": [ + { + "amount": "289.527984931", + "slot": { + "period": 139676, + "thread": 3 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 175765, + "thread": 28 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 433143, + "thread": 16 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 550181, + "thread": 12 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 747230, + "thread": 29 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 907843, + "thread": 7 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1012038, + "thread": 28 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1259781, + "thread": 1 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1318881, + "thread": 4 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1532522, + "thread": 20 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1726301, + "thread": 11 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 1918551, + "thread": 10 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2099489, + "thread": 25 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2159307, + "thread": 0 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2347143, + "thread": 22 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2516799, + "thread": 10 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2674263, + "thread": 27 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 2926163, + "thread": 17 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 3015177, + "thread": 3 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 3193979, + "thread": 23 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 3419577, + "thread": 18 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 3495949, + "thread": 5 + } + }, + { + "amount": "289.527984931", + "slot": { + "period": 3704343, + "thread": 25 + } + }, + { + "amount": "289.527984937", + "slot": { + "period": 3930679, + "thread": 24 + } + } + ], + "AU12de8EUkKNf9RhFUXTLpo9fTNTmZJtTjeWm3mKTi4wKvSiLRCHR": [ + { + "amount": "551.455657871", + "slot": { + "period": 36689, + "thread": 6 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 315476, + "thread": 4 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 490533, + "thread": 2 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 628330, + "thread": 14 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 663344, + "thread": 30 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 879348, + "thread": 3 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1071939, + "thread": 26 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1295841, + "thread": 17 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1338927, + "thread": 23 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1640718, + "thread": 22 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1790705, + "thread": 24 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 1852403, + "thread": 21 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2046329, + "thread": 4 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2213163, + "thread": 4 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2415363, + "thread": 5 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2473367, + "thread": 23 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2743807, + "thread": 9 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 2899658, + "thread": 8 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 3036494, + "thread": 22 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 3125030, + "thread": 2 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 3387185, + "thread": 9 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 3467088, + "thread": 29 + } + }, + { + "amount": "551.455657871", + "slot": { + "period": 3741124, + "thread": 16 + } + }, + { + "amount": "551.455657878", + "slot": { + "period": 3829964, + "thread": 11 + } + } + ], + "AU12df21ip1Jq2JqThng123TfzGByjuJrDWpnSz25RZqbBJ8stZeM": [ + { + "amount": "512.105725514", + "slot": { + "period": 46895, + "thread": 15 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 230407, + "thread": 16 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 390955, + "thread": 11 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 540253, + "thread": 27 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 791150, + "thread": 22 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 954624, + "thread": 24 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1148224, + "thread": 10 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1278849, + "thread": 20 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1478389, + "thread": 12 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1599025, + "thread": 20 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1673755, + "thread": 15 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 1927608, + "thread": 21 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2107151, + "thread": 21 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2230571, + "thread": 13 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2315169, + "thread": 31 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2577875, + "thread": 27 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2739614, + "thread": 29 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 2822732, + "thread": 17 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 3060954, + "thread": 6 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 3260148, + "thread": 5 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 3314142, + "thread": 21 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 3547793, + "thread": 2 + } + }, + { + "amount": "512.105725514", + "slot": { + "period": 3708387, + "thread": 22 + } + }, + { + "amount": "512.105725524", + "slot": { + "period": 3853665, + "thread": 7 + } + } + ], + "AU12dfNpCk12hoz1zRnw5gs5zhV4oQVNSjRfcf5Wv4UqgrKXwFf2B": [ + { + "amount": "78.814131146", + "slot": { + "period": 22872, + "thread": 31 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 221954, + "thread": 20 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 369878, + "thread": 2 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 506009, + "thread": 13 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 771459, + "thread": 22 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 851122, + "thread": 25 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1052172, + "thread": 9 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1254961, + "thread": 24 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1467876, + "thread": 29 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1519343, + "thread": 3 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1733990, + "thread": 28 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 1875110, + "thread": 17 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2091818, + "thread": 23 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2148778, + "thread": 19 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2434811, + "thread": 7 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2560865, + "thread": 31 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2744631, + "thread": 8 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 2869616, + "thread": 15 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 3014395, + "thread": 30 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 3210661, + "thread": 6 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 3411217, + "thread": 14 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 3495251, + "thread": 14 + } + }, + { + "amount": "78.814131146", + "slot": { + "period": 3778564, + "thread": 30 + } + }, + { + "amount": "78.814131153", + "slot": { + "period": 3836097, + "thread": 3 + } + } + ], + "AU12dgNHS3z4DrW8AzdNLBJeZ3i6g3kRz7kCXo9W6F8hUvaeiwPR7": [ + { + "amount": "146.177692670", + "slot": { + "period": 146758, + "thread": 11 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 224084, + "thread": 12 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 463946, + "thread": 4 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 651688, + "thread": 31 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 689649, + "thread": 30 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 825891, + "thread": 0 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1036080, + "thread": 12 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1193136, + "thread": 21 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1452198, + "thread": 1 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1587296, + "thread": 6 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1723047, + "thread": 12 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 1869124, + "thread": 12 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2141270, + "thread": 8 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2254171, + "thread": 14 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2357118, + "thread": 26 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2564557, + "thread": 10 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2751921, + "thread": 30 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 2859561, + "thread": 16 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 3018382, + "thread": 22 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 3210392, + "thread": 13 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 3317895, + "thread": 21 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 3609621, + "thread": 8 + } + }, + { + "amount": "146.177692670", + "slot": { + "period": 3672113, + "thread": 9 + } + }, + { + "amount": "146.177692680", + "slot": { + "period": 3941951, + "thread": 27 + } + } + ], + "AU12di2p82nBP5ewK4Eq3TxPfzn4U2onXmksrRmYek4f9WqLSnRMG": [ + { + "amount": "95.356500100", + "slot": { + "period": 161037, + "thread": 13 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 291875, + "thread": 24 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 481507, + "thread": 28 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 632142, + "thread": 17 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 712997, + "thread": 15 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 955174, + "thread": 30 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1066053, + "thread": 18 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1166397, + "thread": 29 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1355952, + "thread": 24 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1543553, + "thread": 15 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1791729, + "thread": 28 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 1847431, + "thread": 13 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2103976, + "thread": 4 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2294459, + "thread": 27 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2454563, + "thread": 29 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2511806, + "thread": 17 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2728739, + "thread": 6 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 2938878, + "thread": 10 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 3038436, + "thread": 20 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 3209295, + "thread": 1 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 3334592, + "thread": 2 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 3578618, + "thread": 28 + } + }, + { + "amount": "95.356500100", + "slot": { + "period": 3703538, + "thread": 17 + } + }, + { + "amount": "95.356500107", + "slot": { + "period": 3799739, + "thread": 14 + } + } + ], + "AU12diPKEB24n3sid28SL7TxH5Hy3fXTjLecPpJVEKi5e8M6FhZq6": [ + { + "amount": "422.560526246", + "slot": { + "period": 73246, + "thread": 14 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 278113, + "thread": 22 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 336314, + "thread": 15 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 618985, + "thread": 4 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 744333, + "thread": 12 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 967853, + "thread": 23 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1015995, + "thread": 4 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1186176, + "thread": 7 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1439923, + "thread": 21 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1635126, + "thread": 13 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1782538, + "thread": 29 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 1809890, + "thread": 31 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2067641, + "thread": 26 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2171049, + "thread": 26 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2358273, + "thread": 14 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2538535, + "thread": 7 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2781860, + "thread": 27 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 2813908, + "thread": 27 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 3053278, + "thread": 11 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 3227728, + "thread": 31 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 3407952, + "thread": 1 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 3524987, + "thread": 31 + } + }, + { + "amount": "422.560526246", + "slot": { + "period": 3755200, + "thread": 31 + } + }, + { + "amount": "422.560526244", + "slot": { + "period": 3869535, + "thread": 29 + } + } + ], + "AU12diWzPgWru6oyxnrNQk2w8yD4GuxSfB5oLv6V1pUiSG9Lw3jWZ": [ + { + "amount": "244.302981636", + "slot": { + "period": 82328, + "thread": 28 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 259654, + "thread": 28 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 418599, + "thread": 25 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 579572, + "thread": 21 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 755547, + "thread": 17 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 973743, + "thread": 28 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1094288, + "thread": 17 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1301862, + "thread": 28 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1454669, + "thread": 26 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1608153, + "thread": 29 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1776096, + "thread": 29 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 1825784, + "thread": 25 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2119557, + "thread": 3 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2162173, + "thread": 27 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2316576, + "thread": 1 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2484949, + "thread": 23 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2753518, + "thread": 15 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 2922842, + "thread": 26 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3040874, + "thread": 11 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3276369, + "thread": 30 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3400832, + "thread": 11 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3482054, + "thread": 13 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3673135, + "thread": 19 + } + }, + { + "amount": "244.302981636", + "slot": { + "period": 3918666, + "thread": 21 + } + } + ], + "AU12diyNFKkaedu1oV7gwWbf19JWo6qT15k55UCCVV4GsePAsY3Ye": [ + { + "amount": "541.860317447", + "slot": { + "period": 94724, + "thread": 15 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 192526, + "thread": 3 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 434410, + "thread": 17 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 629647, + "thread": 30 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 712723, + "thread": 2 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 829311, + "thread": 12 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1022938, + "thread": 5 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1305769, + "thread": 22 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1384361, + "thread": 24 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1643780, + "thread": 18 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1712410, + "thread": 22 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 1937849, + "thread": 14 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2025640, + "thread": 30 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2293334, + "thread": 3 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2346854, + "thread": 14 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2547206, + "thread": 2 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2704289, + "thread": 2 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2873991, + "thread": 18 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 2988123, + "thread": 5 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 3279203, + "thread": 29 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 3335602, + "thread": 25 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 3470033, + "thread": 0 + } + }, + { + "amount": "541.860317447", + "slot": { + "period": 3736021, + "thread": 18 + } + }, + { + "amount": "541.860317446", + "slot": { + "period": 3888159, + "thread": 16 + } + } + ], + "AU12dj3X3dpzUKXVCp3pjVgXv4BSwmXrCFVrwmqHcAEjVYKbhTfRX": [ + { + "amount": "278.603407939", + "slot": { + "period": 108840, + "thread": 26 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 305980, + "thread": 8 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 446399, + "thread": 14 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 544619, + "thread": 21 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 755459, + "thread": 10 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 905689, + "thread": 11 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1034894, + "thread": 6 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1287843, + "thread": 0 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1321667, + "thread": 13 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1484314, + "thread": 6 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1798963, + "thread": 3 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 1931640, + "thread": 4 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2126299, + "thread": 7 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2230689, + "thread": 14 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2394540, + "thread": 26 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2567837, + "thread": 31 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2670865, + "thread": 20 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 2913800, + "thread": 23 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 3051964, + "thread": 28 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 3187353, + "thread": 10 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 3299369, + "thread": 30 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 3469688, + "thread": 22 + } + }, + { + "amount": "278.603407939", + "slot": { + "period": 3729894, + "thread": 0 + } + }, + { + "amount": "278.603407934", + "slot": { + "period": 3928532, + "thread": 21 + } + } + ], + "AU12djM3YqYBWhCeTBDm2VKAiinyTdzfWBFY5YuNwYLbK9Uu26mc5": [ + { + "amount": "353.057686690", + "slot": { + "period": 24003, + "thread": 9 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 273448, + "thread": 2 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 354293, + "thread": 23 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 504200, + "thread": 15 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 782962, + "thread": 20 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 866585, + "thread": 15 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1149127, + "thread": 15 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1248923, + "thread": 31 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1364916, + "thread": 26 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1503115, + "thread": 15 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1808399, + "thread": 26 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 1944238, + "thread": 15 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2012998, + "thread": 0 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2242131, + "thread": 1 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2361846, + "thread": 14 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2595581, + "thread": 21 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2668271, + "thread": 8 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 2889513, + "thread": 19 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 3114020, + "thread": 0 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 3257233, + "thread": 23 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 3393293, + "thread": 22 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 3460651, + "thread": 17 + } + }, + { + "amount": "353.057686690", + "slot": { + "period": 3766151, + "thread": 25 + } + }, + { + "amount": "353.057686702", + "slot": { + "period": 3836938, + "thread": 27 + } + } + ], + "AU12dkPjC2UT9Zu8PhdrLia2xNfXWBDBr7mFHg1M8XzEwutQ6opMD": [ + { + "amount": "154.796121246", + "slot": { + "period": 83332, + "thread": 15 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 312970, + "thread": 10 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 361100, + "thread": 11 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 589349, + "thread": 27 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 787816, + "thread": 0 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 852571, + "thread": 0 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 997381, + "thread": 16 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 1203587, + "thread": 24 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 1447180, + "thread": 11 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 1502202, + "thread": 19 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 1771722, + "thread": 27 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 1846531, + "thread": 22 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2083268, + "thread": 25 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2192190, + "thread": 27 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2304683, + "thread": 23 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2491345, + "thread": 16 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2676290, + "thread": 20 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 2797355, + "thread": 27 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 3010607, + "thread": 5 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 3139794, + "thread": 27 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 3437996, + "thread": 16 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 3522795, + "thread": 31 + } + }, + { + "amount": "154.796121246", + "slot": { + "period": 3745264, + "thread": 18 + } + }, + { + "amount": "154.796121256", + "slot": { + "period": 3931449, + "thread": 2 + } + } + ], + "AU12dkXeZBEndYLbmLVMJtyDzj37pvGeDMjVi3QL82bVUmMjet6e4": [ + { + "amount": "87.982590419", + "slot": { + "period": 56838, + "thread": 20 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 175877, + "thread": 5 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 456757, + "thread": 31 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 543805, + "thread": 29 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 728468, + "thread": 6 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 912797, + "thread": 9 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1085685, + "thread": 31 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1238154, + "thread": 5 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1320637, + "thread": 3 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1602834, + "thread": 31 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1705310, + "thread": 9 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 1888857, + "thread": 23 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2056568, + "thread": 14 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2162256, + "thread": 9 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2407270, + "thread": 3 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2466293, + "thread": 5 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2763778, + "thread": 1 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2792608, + "thread": 23 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 2995552, + "thread": 13 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 3182693, + "thread": 0 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 3434838, + "thread": 22 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 3530207, + "thread": 21 + } + }, + { + "amount": "87.982590419", + "slot": { + "period": 3635431, + "thread": 28 + } + }, + { + "amount": "87.982590420", + "slot": { + "period": 3784279, + "thread": 1 + } + } + ], + "AU12dknynjE9Ss9P8fUbwz7GtiCpXDuZmgx2JRKmYL2CmeGYqH2gM": [ + { + "amount": "183.469666638", + "slot": { + "period": 131675, + "thread": 29 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 210679, + "thread": 15 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 469487, + "thread": 0 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 542860, + "thread": 13 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 699102, + "thread": 23 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 908173, + "thread": 20 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1070998, + "thread": 16 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1316404, + "thread": 30 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1361698, + "thread": 26 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1577499, + "thread": 22 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1792432, + "thread": 7 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 1967076, + "thread": 10 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2035316, + "thread": 7 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2263543, + "thread": 29 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2305801, + "thread": 26 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2559160, + "thread": 12 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2785561, + "thread": 17 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 2845850, + "thread": 14 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 3068478, + "thread": 19 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 3152745, + "thread": 25 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 3409780, + "thread": 17 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 3553419, + "thread": 14 + } + }, + { + "amount": "183.469666638", + "slot": { + "period": 3699971, + "thread": 16 + } + }, + { + "amount": "183.469666647", + "slot": { + "period": 3935886, + "thread": 17 + } + } + ], + "AU12dkzQQPTavReVX6gjgY8k3wtpVwds7uJq5BcbnAqvgdyNnJ2Ry": [ + { + "amount": "152.012553125", + "slot": { + "period": 55330, + "thread": 28 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 231652, + "thread": 10 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 352916, + "thread": 8 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 502213, + "thread": 31 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 672324, + "thread": 10 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 885519, + "thread": 9 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1021153, + "thread": 4 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1222961, + "thread": 2 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1341156, + "thread": 16 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1645541, + "thread": 12 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1681586, + "thread": 19 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 1923636, + "thread": 23 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2043951, + "thread": 19 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2235236, + "thread": 13 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2394854, + "thread": 13 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2595085, + "thread": 17 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2755461, + "thread": 9 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2947983, + "thread": 7 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 2981022, + "thread": 26 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 3199781, + "thread": 23 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 3370193, + "thread": 25 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 3596533, + "thread": 23 + } + }, + { + "amount": "152.012553125", + "slot": { + "period": 3668142, + "thread": 3 + } + }, + { + "amount": "152.012553126", + "slot": { + "period": 3920762, + "thread": 22 + } + } + ], + "AU12dmxULjw2oEsRifF7Fc3eJGnQHr4ZMJRuikyUnsBAW7tKzdtM9": [ + { + "amount": "479.840272247", + "slot": { + "period": 122806, + "thread": 18 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 266065, + "thread": 24 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 485814, + "thread": 29 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 613891, + "thread": 10 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 714545, + "thread": 18 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 974365, + "thread": 30 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1008252, + "thread": 22 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1201901, + "thread": 15 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1330878, + "thread": 13 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1533840, + "thread": 17 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1695440, + "thread": 5 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 1875981, + "thread": 3 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2022916, + "thread": 20 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2247540, + "thread": 21 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2396455, + "thread": 6 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2579516, + "thread": 7 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2729523, + "thread": 0 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 2856587, + "thread": 15 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 3044599, + "thread": 28 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 3262347, + "thread": 31 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 3391656, + "thread": 6 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 3607826, + "thread": 13 + } + }, + { + "amount": "479.840272247", + "slot": { + "period": 3627824, + "thread": 5 + } + }, + { + "amount": "479.840272245", + "slot": { + "period": 3858302, + "thread": 12 + } + } + ], + "AU12dngRJejn4KzKio5HT6fuDHJUCTQ7rmzCS17SgYTVCugnD7SSq": [ + { + "amount": "224.434068649", + "slot": { + "period": 42215, + "thread": 25 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 208839, + "thread": 22 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 328239, + "thread": 30 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 536860, + "thread": 10 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 809381, + "thread": 12 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 830160, + "thread": 21 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1024424, + "thread": 12 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1293925, + "thread": 23 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1405371, + "thread": 29 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1592037, + "thread": 29 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1803957, + "thread": 29 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 1914941, + "thread": 19 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2027343, + "thread": 26 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2252642, + "thread": 30 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2354852, + "thread": 25 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2587455, + "thread": 18 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2783877, + "thread": 16 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2809406, + "thread": 6 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 2993709, + "thread": 14 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 3245466, + "thread": 11 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 3305064, + "thread": 7 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 3506863, + "thread": 11 + } + }, + { + "amount": "224.434068649", + "slot": { + "period": 3751015, + "thread": 20 + } + }, + { + "amount": "224.434068660", + "slot": { + "period": 3889661, + "thread": 30 + } + } + ], + "AU12doepdQkDMqHoWzhpuNu8HJUSH5REXPLSwN3oKj9U8kADCeYfr": [ + { + "amount": "563.181962727", + "slot": { + "period": 74142, + "thread": 10 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 254371, + "thread": 7 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 478272, + "thread": 28 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 498117, + "thread": 0 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 718991, + "thread": 5 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 849756, + "thread": 11 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 998670, + "thread": 12 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1259990, + "thread": 23 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1360353, + "thread": 31 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1483851, + "thread": 0 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1769077, + "thread": 21 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1962341, + "thread": 25 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 1994550, + "thread": 26 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 2256718, + "thread": 5 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 2388345, + "thread": 27 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 2567809, + "thread": 21 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 2724909, + "thread": 19 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 2912496, + "thread": 9 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 3084388, + "thread": 13 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 3141115, + "thread": 25 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 3377192, + "thread": 27 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 3520901, + "thread": 6 + } + }, + { + "amount": "563.181962727", + "slot": { + "period": 3636036, + "thread": 13 + } + }, + { + "amount": "563.181962717", + "slot": { + "period": 3874690, + "thread": 21 + } + } + ], + "AU12dpRXmfoACty6KRqAwwQMJaKnpgT1xcMRXPycH6WRTd43YER1f": [ + { + "amount": "179.554176216", + "slot": { + "period": 23386, + "thread": 12 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 287109, + "thread": 29 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 366178, + "thread": 25 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 599543, + "thread": 21 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 807549, + "thread": 7 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 982355, + "thread": 0 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 988626, + "thread": 29 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 1304897, + "thread": 16 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 1413915, + "thread": 30 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 1486346, + "thread": 3 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 1783813, + "thread": 20 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 1843842, + "thread": 24 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2127112, + "thread": 0 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2242643, + "thread": 27 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2320168, + "thread": 28 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2474396, + "thread": 11 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2747852, + "thread": 8 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 2893392, + "thread": 11 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 3117477, + "thread": 31 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 3148297, + "thread": 25 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 3426839, + "thread": 1 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 3483133, + "thread": 0 + } + }, + { + "amount": "179.554176216", + "slot": { + "period": 3683268, + "thread": 16 + } + }, + { + "amount": "179.554176209", + "slot": { + "period": 3821710, + "thread": 4 + } + } + ], + "AU12dpXKD2BZirK8zk8Cvuyz6J3SAYuPBAfNuFzrbSQJB9SMEWfT3": [ + { + "amount": "155.148268826", + "slot": { + "period": 29347, + "thread": 13 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 205617, + "thread": 10 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 411814, + "thread": 7 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 495615, + "thread": 28 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 691052, + "thread": 28 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 957315, + "thread": 2 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1063107, + "thread": 3 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1256763, + "thread": 15 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1391176, + "thread": 0 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1609747, + "thread": 26 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1744283, + "thread": 5 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 1883601, + "thread": 25 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2086335, + "thread": 8 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2262912, + "thread": 3 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2354454, + "thread": 14 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2623964, + "thread": 27 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2639395, + "thread": 28 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2930329, + "thread": 11 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 2955339, + "thread": 17 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 3143584, + "thread": 9 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 3375408, + "thread": 18 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 3482070, + "thread": 6 + } + }, + { + "amount": "155.148268826", + "slot": { + "period": 3676264, + "thread": 30 + } + }, + { + "amount": "155.148268827", + "slot": { + "period": 3841791, + "thread": 6 + } + } + ], + "AU12dpitSKvBYoEToZ8pBMiHhX8AWvdhR8QamxzoEgtxSzC5m5Wqi": [ + { + "amount": "62.849785535", + "slot": { + "period": 79236, + "thread": 29 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 179615, + "thread": 1 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 350097, + "thread": 25 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 602072, + "thread": 16 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 770079, + "thread": 31 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 874620, + "thread": 4 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1052622, + "thread": 10 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1207639, + "thread": 2 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1416309, + "thread": 2 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1591151, + "thread": 6 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1801692, + "thread": 3 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 1939212, + "thread": 30 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2088988, + "thread": 15 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2158808, + "thread": 21 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2452214, + "thread": 27 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2537006, + "thread": 1 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2717133, + "thread": 2 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 2908391, + "thread": 6 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 3064989, + "thread": 26 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 3217936, + "thread": 23 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 3318895, + "thread": 25 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 3474281, + "thread": 4 + } + }, + { + "amount": "62.849785535", + "slot": { + "period": 3718577, + "thread": 7 + } + }, + { + "amount": "62.849785530", + "slot": { + "period": 3890731, + "thread": 18 + } + } + ], + "AU12dq2jjUpmJpaiwx4YYafTHE3TAQ9BeMXDuhHCoAmMbvEAdnTcw": [ + { + "amount": "330.203023114", + "slot": { + "period": 156712, + "thread": 18 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 256544, + "thread": 31 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 355762, + "thread": 19 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 553788, + "thread": 31 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 712515, + "thread": 27 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 870236, + "thread": 16 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1142783, + "thread": 18 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1278473, + "thread": 12 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1439546, + "thread": 6 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1547555, + "thread": 2 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1807739, + "thread": 31 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 1851865, + "thread": 8 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2035405, + "thread": 8 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2244780, + "thread": 23 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2310157, + "thread": 26 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2489970, + "thread": 5 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2759525, + "thread": 24 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 2932416, + "thread": 17 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 3090814, + "thread": 16 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 3195589, + "thread": 24 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 3388687, + "thread": 30 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 3451690, + "thread": 17 + } + }, + { + "amount": "330.203023114", + "slot": { + "period": 3676586, + "thread": 17 + } + }, + { + "amount": "330.203023119", + "slot": { + "period": 3831296, + "thread": 17 + } + } + ], + "AU12dqAjwVzC7t2gHwLSxLqi8UWm6Kei6NaXVAWymbniEtQUnQj5w": [ + { + "amount": "56.630325316", + "slot": { + "period": 43052, + "thread": 27 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 283271, + "thread": 4 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 382746, + "thread": 12 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 614662, + "thread": 10 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 817185, + "thread": 26 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 933760, + "thread": 4 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1060511, + "thread": 7 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1171922, + "thread": 3 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1477524, + "thread": 24 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1583152, + "thread": 13 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1740853, + "thread": 17 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 1937620, + "thread": 30 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2024959, + "thread": 4 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2221410, + "thread": 25 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2420612, + "thread": 2 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2513192, + "thread": 11 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2725603, + "thread": 16 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2950031, + "thread": 26 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 2956783, + "thread": 27 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 3246165, + "thread": 14 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 3444707, + "thread": 13 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 3473677, + "thread": 18 + } + }, + { + "amount": "56.630325316", + "slot": { + "period": 3701830, + "thread": 25 + } + }, + { + "amount": "56.630325325", + "slot": { + "period": 3880163, + "thread": 29 + } + } + ], + "AU12dqBuzJKfefNMDyncVUfEjaxV4XSzyucY3SDDRNjbvA8XDnNAH": [ + { + "amount": "552.587333199", + "slot": { + "period": 119454, + "thread": 6 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 210284, + "thread": 29 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 473001, + "thread": 5 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 552350, + "thread": 10 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 748765, + "thread": 16 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 950844, + "thread": 5 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1098232, + "thread": 1 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1169406, + "thread": 29 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1345706, + "thread": 5 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1562162, + "thread": 27 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1729613, + "thread": 0 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 1965758, + "thread": 21 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2082597, + "thread": 1 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2196710, + "thread": 27 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2420296, + "thread": 24 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2485545, + "thread": 14 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2628379, + "thread": 11 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2838632, + "thread": 20 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 2963778, + "thread": 16 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 3132560, + "thread": 12 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 3384213, + "thread": 8 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 3522622, + "thread": 26 + } + }, + { + "amount": "552.587333199", + "slot": { + "period": 3731478, + "thread": 23 + } + }, + { + "amount": "552.587333192", + "slot": { + "period": 3890418, + "thread": 17 + } + } + ], + "AU12drRdUVX4fJEQGRYTqKkSvCkbehbCDSDk9ATtw9KS6pQ9HcQ5o": [ + { + "amount": "73.090876667", + "slot": { + "period": 45458, + "thread": 20 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 279956, + "thread": 29 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 466119, + "thread": 3 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 616600, + "thread": 25 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 806358, + "thread": 15 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 876263, + "thread": 14 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1093246, + "thread": 1 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1262616, + "thread": 28 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1339100, + "thread": 6 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1533630, + "thread": 3 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1753415, + "thread": 10 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 1859474, + "thread": 24 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2029816, + "thread": 0 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2269486, + "thread": 2 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2441197, + "thread": 12 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2561454, + "thread": 29 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2718624, + "thread": 26 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 2813202, + "thread": 14 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 3066966, + "thread": 17 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 3201101, + "thread": 11 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 3325675, + "thread": 30 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 3527315, + "thread": 11 + } + }, + { + "amount": "73.090876667", + "slot": { + "period": 3705204, + "thread": 14 + } + }, + { + "amount": "73.090876673", + "slot": { + "period": 3808942, + "thread": 3 + } + } + ], + "AU12ds861TahB4VcVeicXwKL7bJCqYStgqfnkVj2wQtVENZNG8cmD": [ + { + "amount": "240.690746030", + "slot": { + "period": 13980, + "thread": 15 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 228562, + "thread": 19 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 325104, + "thread": 19 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 549292, + "thread": 4 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 656095, + "thread": 15 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 944687, + "thread": 18 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1005474, + "thread": 5 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1225430, + "thread": 0 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1334566, + "thread": 10 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1640109, + "thread": 19 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1706568, + "thread": 22 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 1840541, + "thread": 22 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2053927, + "thread": 29 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2256664, + "thread": 10 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2331542, + "thread": 20 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2565851, + "thread": 21 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2654371, + "thread": 10 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 2835595, + "thread": 31 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 3049873, + "thread": 23 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 3264557, + "thread": 14 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 3319649, + "thread": 0 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 3506540, + "thread": 8 + } + }, + { + "amount": "240.690746030", + "slot": { + "period": 3743843, + "thread": 30 + } + }, + { + "amount": "240.690746032", + "slot": { + "period": 3884942, + "thread": 21 + } + } + ], + "AU12dt1Ezxehf3yaRL97PyLBoQP6qBL1kbK5UpCu48B3Yz8ydfYYM": [ + { + "amount": "428.659657328", + "slot": { + "period": 75801, + "thread": 8 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 307821, + "thread": 27 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 487782, + "thread": 0 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 503957, + "thread": 9 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 810621, + "thread": 17 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 834731, + "thread": 6 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1121899, + "thread": 9 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1285078, + "thread": 18 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1380948, + "thread": 11 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1605538, + "thread": 16 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1749290, + "thread": 0 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 1874970, + "thread": 24 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2138372, + "thread": 25 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2169283, + "thread": 28 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2297073, + "thread": 9 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2555925, + "thread": 19 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2744617, + "thread": 0 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 2888004, + "thread": 4 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 3113018, + "thread": 5 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 3171769, + "thread": 20 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 3335544, + "thread": 8 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 3494659, + "thread": 18 + } + }, + { + "amount": "428.659657328", + "slot": { + "period": 3738881, + "thread": 8 + } + }, + { + "amount": "428.659657324", + "slot": { + "period": 3894923, + "thread": 16 + } + } + ], + "AU12dtV5x1ZkjAiJNQiDVyTVV6h9upbueRX9PyxzUrcBAoPDPCucZ": [ + { + "amount": "325.939703495", + "slot": { + "period": 136288, + "thread": 4 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 280135, + "thread": 13 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 393573, + "thread": 16 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 638922, + "thread": 15 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 746006, + "thread": 14 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 851517, + "thread": 9 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1055455, + "thread": 31 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1191623, + "thread": 30 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1440104, + "thread": 15 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1552687, + "thread": 0 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1688439, + "thread": 18 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 1933919, + "thread": 23 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2031370, + "thread": 25 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2277245, + "thread": 7 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2409490, + "thread": 24 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2488595, + "thread": 5 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2660688, + "thread": 10 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 2828192, + "thread": 1 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 3079261, + "thread": 22 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 3190942, + "thread": 15 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 3382021, + "thread": 11 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 3577386, + "thread": 26 + } + }, + { + "amount": "325.939703495", + "slot": { + "period": 3674091, + "thread": 26 + } + }, + { + "amount": "325.939703485", + "slot": { + "period": 3908381, + "thread": 6 + } + } + ], + "AU12dtcWX8gPoJt2oS5x5RN4BrTwF7j5CQiJ9JzAEfPKCVRLmMtHo": [ + { + "amount": "318.663658051", + "slot": { + "period": 165145, + "thread": 18 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 281912, + "thread": 15 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 428926, + "thread": 8 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 593748, + "thread": 14 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 766335, + "thread": 25 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 824976, + "thread": 30 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1117818, + "thread": 10 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1202623, + "thread": 27 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1375994, + "thread": 24 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1574021, + "thread": 29 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1747797, + "thread": 27 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 1814281, + "thread": 20 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2021215, + "thread": 29 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2217928, + "thread": 10 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2444497, + "thread": 25 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2559852, + "thread": 19 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2654431, + "thread": 0 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 2868959, + "thread": 20 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 3041851, + "thread": 27 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 3130172, + "thread": 23 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 3397433, + "thread": 3 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 3494900, + "thread": 4 + } + }, + { + "amount": "318.663658051", + "slot": { + "period": 3639005, + "thread": 31 + } + }, + { + "amount": "318.663658056", + "slot": { + "period": 3851494, + "thread": 12 + } + } + ], + "AU12duEbUdMMxCQtg2XGwpeZVmnnbzjWtQokfNKCMC1tzvD2quqzy": [ + { + "amount": "607.862127520", + "slot": { + "period": 52472, + "thread": 15 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 227703, + "thread": 0 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 403483, + "thread": 24 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 496311, + "thread": 12 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 686932, + "thread": 14 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 880791, + "thread": 21 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1036633, + "thread": 12 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1164443, + "thread": 14 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1451186, + "thread": 10 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1500108, + "thread": 14 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1649893, + "thread": 30 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 1819913, + "thread": 6 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2079545, + "thread": 21 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2181363, + "thread": 19 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2460519, + "thread": 20 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2601627, + "thread": 17 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2790918, + "thread": 12 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 2891064, + "thread": 5 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 3071065, + "thread": 24 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 3139192, + "thread": 10 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 3304842, + "thread": 16 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 3492875, + "thread": 11 + } + }, + { + "amount": "607.862127520", + "slot": { + "period": 3723401, + "thread": 0 + } + }, + { + "amount": "607.862127509", + "slot": { + "period": 3897414, + "thread": 18 + } + } + ], + "AU12duFqBr5kKod4KNf2A7kfS5jSWMpUAUHbWGT6HnB9PwmAxjNBs": [ + { + "amount": "294.655648769", + "slot": { + "period": 94986, + "thread": 8 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 315514, + "thread": 5 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 426245, + "thread": 24 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 494363, + "thread": 12 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 705564, + "thread": 21 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 968051, + "thread": 5 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 992922, + "thread": 24 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 1198794, + "thread": 24 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 1344560, + "thread": 0 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 1528249, + "thread": 1 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 1675188, + "thread": 19 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 1821860, + "thread": 26 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2090592, + "thread": 1 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2192033, + "thread": 23 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2457896, + "thread": 1 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2520822, + "thread": 17 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2699715, + "thread": 29 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2910082, + "thread": 4 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 2960220, + "thread": 23 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 3225780, + "thread": 9 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 3407291, + "thread": 0 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 3453227, + "thread": 27 + } + }, + { + "amount": "294.655648769", + "slot": { + "period": 3748621, + "thread": 13 + } + }, + { + "amount": "294.655648770", + "slot": { + "period": 3797938, + "thread": 3 + } + } + ], + "AU12duKmX9h293wcHsYowFYMQ6z7z48wUNG9x6ZrSP6fotciNAwGH": [ + { + "amount": "285.791812794", + "slot": { + "period": 107746, + "thread": 14 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 193137, + "thread": 2 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 353143, + "thread": 19 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 572462, + "thread": 5 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 670265, + "thread": 6 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 936961, + "thread": 10 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1102706, + "thread": 8 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1216889, + "thread": 7 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1346258, + "thread": 19 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1568662, + "thread": 2 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1805065, + "thread": 29 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 1956915, + "thread": 3 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2010649, + "thread": 8 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2167691, + "thread": 3 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2456184, + "thread": 7 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2538303, + "thread": 1 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2764147, + "thread": 15 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 2894442, + "thread": 10 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 3082287, + "thread": 10 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 3123735, + "thread": 25 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 3415746, + "thread": 5 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 3481609, + "thread": 22 + } + }, + { + "amount": "285.791812794", + "slot": { + "period": 3651535, + "thread": 29 + } + }, + { + "amount": "285.791812788", + "slot": { + "period": 3863163, + "thread": 24 + } + } + ], + "AU12duYPLfd2WCnfrPYZ2QAJqb17uoR4CBbkaVSQeP6QAfx5zSk3A": [ + { + "amount": "141.949810572", + "slot": { + "period": 21364, + "thread": 9 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 225000, + "thread": 20 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 485549, + "thread": 4 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 530429, + "thread": 13 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 746210, + "thread": 18 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 979114, + "thread": 31 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1035096, + "thread": 6 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1217314, + "thread": 7 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1352055, + "thread": 14 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1548934, + "thread": 16 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1692662, + "thread": 16 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 1915938, + "thread": 1 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2027295, + "thread": 11 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2293213, + "thread": 17 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2416970, + "thread": 16 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2615450, + "thread": 19 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2717428, + "thread": 7 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 2881888, + "thread": 9 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 3035910, + "thread": 27 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 3200621, + "thread": 18 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 3290551, + "thread": 1 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 3605680, + "thread": 3 + } + }, + { + "amount": "141.949810572", + "slot": { + "period": 3634402, + "thread": 5 + } + }, + { + "amount": "141.949810571", + "slot": { + "period": 3932187, + "thread": 1 + } + } + ], + "AU12dv5odCcrPvgws4Lk9ZxiT7hxg38UdWwRxf8kQnzUHTw31XbaN": [ + { + "amount": "315.874683017", + "slot": { + "period": 162372, + "thread": 10 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 299884, + "thread": 12 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 422633, + "thread": 17 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 603185, + "thread": 13 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 794563, + "thread": 29 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 876118, + "thread": 21 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1110165, + "thread": 19 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1224854, + "thread": 26 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1338918, + "thread": 16 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1562871, + "thread": 26 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1673990, + "thread": 24 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1849129, + "thread": 11 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 1983895, + "thread": 29 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 2242907, + "thread": 23 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 2362673, + "thread": 15 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 2489459, + "thread": 25 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 2711701, + "thread": 7 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 2874260, + "thread": 27 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 3084970, + "thread": 9 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 3217850, + "thread": 29 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 3316563, + "thread": 24 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 3549735, + "thread": 8 + } + }, + { + "amount": "315.874683017", + "slot": { + "period": 3677693, + "thread": 13 + } + }, + { + "amount": "315.874683009", + "slot": { + "period": 3910712, + "thread": 7 + } + } + ], + "AU12dw6fWcMuEzXxM45ww1LGxDte1dLFo85TCqwFNHcNqHmyLVd6U": [ + { + "amount": "385.326546001", + "slot": { + "period": 141763, + "thread": 2 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 217335, + "thread": 18 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 395781, + "thread": 13 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 531461, + "thread": 9 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 714300, + "thread": 18 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 886074, + "thread": 13 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1144222, + "thread": 14 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1253052, + "thread": 5 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1399779, + "thread": 26 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1539981, + "thread": 10 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1702348, + "thread": 23 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 1871026, + "thread": 14 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2086472, + "thread": 7 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2154761, + "thread": 29 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2423787, + "thread": 8 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2499440, + "thread": 31 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2708035, + "thread": 26 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 2912881, + "thread": 26 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 3120666, + "thread": 31 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 3164988, + "thread": 25 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 3352684, + "thread": 30 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 3529736, + "thread": 0 + } + }, + { + "amount": "385.326546001", + "slot": { + "period": 3743322, + "thread": 9 + } + }, + { + "amount": "385.326545994", + "slot": { + "period": 3855754, + "thread": 16 + } + } + ], + "AU12dxLjuJLftChwuSwK9TZTAwMZnhmKa2yCK1Phu74imabgPWe5Z": [ + { + "amount": "145.739499926", + "slot": { + "period": 12666, + "thread": 17 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 305741, + "thread": 5 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 399893, + "thread": 23 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 652393, + "thread": 24 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 791208, + "thread": 2 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 912023, + "thread": 12 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1106615, + "thread": 2 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1277540, + "thread": 2 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1386618, + "thread": 12 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1480909, + "thread": 30 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1665690, + "thread": 29 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1879762, + "thread": 15 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 1979479, + "thread": 6 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 2278250, + "thread": 4 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 2425341, + "thread": 7 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 2486892, + "thread": 2 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 2676129, + "thread": 30 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 2943921, + "thread": 25 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 3102285, + "thread": 24 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 3180811, + "thread": 3 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 3350027, + "thread": 10 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 3598699, + "thread": 25 + } + }, + { + "amount": "145.739499926", + "slot": { + "period": 3632630, + "thread": 4 + } + }, + { + "amount": "145.739499920", + "slot": { + "period": 3801715, + "thread": 24 + } + } + ], + "AU12dyF7eJghbCvqqi1Y1Gv5qFMkHq8hJjPPS5dXtSthnMYf7uVhs": [ + { + "amount": "66.093571990", + "slot": { + "period": 59695, + "thread": 2 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 302030, + "thread": 26 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 477797, + "thread": 11 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 597966, + "thread": 20 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 674156, + "thread": 13 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 845429, + "thread": 28 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1051144, + "thread": 2 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1154411, + "thread": 20 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1475177, + "thread": 17 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1486460, + "thread": 15 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1769099, + "thread": 6 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 1833177, + "thread": 21 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2090683, + "thread": 1 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2173066, + "thread": 12 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2386950, + "thread": 9 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2583550, + "thread": 1 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2668706, + "thread": 30 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 2867688, + "thread": 27 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 3082363, + "thread": 5 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 3279226, + "thread": 10 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 3394039, + "thread": 3 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 3512072, + "thread": 17 + } + }, + { + "amount": "66.093571990", + "slot": { + "period": 3750872, + "thread": 3 + } + }, + { + "amount": "66.093572000", + "slot": { + "period": 3936141, + "thread": 0 + } + } + ], + "AU12dypufNbw7df2zZqh4cAHEohMZRDLfG4E3NE6M9emJpWj32bMz": [ + { + "amount": "63.497222943", + "slot": { + "period": 159808, + "thread": 13 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 310214, + "thread": 1 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 441728, + "thread": 25 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 576715, + "thread": 23 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 750545, + "thread": 1 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 955639, + "thread": 11 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1071297, + "thread": 3 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1174659, + "thread": 11 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1414621, + "thread": 31 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1500098, + "thread": 18 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1795262, + "thread": 4 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1961401, + "thread": 1 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 1997153, + "thread": 12 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 2195448, + "thread": 29 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 2341188, + "thread": 29 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 2523626, + "thread": 13 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 2789996, + "thread": 30 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 2908628, + "thread": 23 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 3046340, + "thread": 31 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 3155713, + "thread": 10 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 3350845, + "thread": 13 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 3583471, + "thread": 0 + } + }, + { + "amount": "63.497222943", + "slot": { + "period": 3618063, + "thread": 7 + } + }, + { + "amount": "63.497222946", + "slot": { + "period": 3856947, + "thread": 30 + } + } + ], + "AU12dz2t4HeEuzaZj9eDUKqmyxCDWVXFuWDC1VxGsUqsS9dLzpGaj": [ + { + "amount": "65.222107566", + "slot": { + "period": 16011, + "thread": 30 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 185455, + "thread": 0 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 468026, + "thread": 26 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 494338, + "thread": 18 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 695272, + "thread": 31 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 956270, + "thread": 3 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1144718, + "thread": 27 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1315720, + "thread": 25 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1458342, + "thread": 9 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1598519, + "thread": 23 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1675934, + "thread": 7 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 1948733, + "thread": 17 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2044235, + "thread": 31 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2195260, + "thread": 27 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2417662, + "thread": 8 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2538734, + "thread": 27 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2691522, + "thread": 6 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2888943, + "thread": 0 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 2974099, + "thread": 31 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 3202195, + "thread": 5 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 3371013, + "thread": 13 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 3564514, + "thread": 12 + } + }, + { + "amount": "65.222107566", + "slot": { + "period": 3684022, + "thread": 16 + } + }, + { + "amount": "65.222107577", + "slot": { + "period": 3907568, + "thread": 4 + } + } + ], + "AU12dzLbJg2JywsFUg8uKm1L1KNea46n8gRVpJjyKqV9FV4DEQXdS": [ + { + "amount": "300.108805842", + "slot": { + "period": 50712, + "thread": 16 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 259422, + "thread": 1 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 483035, + "thread": 11 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 557613, + "thread": 18 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 780605, + "thread": 27 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 898937, + "thread": 21 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1052346, + "thread": 27 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1232415, + "thread": 28 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1341710, + "thread": 24 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1501486, + "thread": 30 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1751589, + "thread": 28 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 1974024, + "thread": 0 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2118400, + "thread": 19 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2234681, + "thread": 31 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2395719, + "thread": 22 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2596709, + "thread": 27 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2691333, + "thread": 13 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 2870159, + "thread": 28 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 3023225, + "thread": 10 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 3167492, + "thread": 3 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 3345515, + "thread": 17 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 3583473, + "thread": 31 + } + }, + { + "amount": "300.108805842", + "slot": { + "period": 3770473, + "thread": 10 + } + }, + { + "amount": "300.108805840", + "slot": { + "period": 3912966, + "thread": 11 + } + } + ], + "AU12dzzvgKkZkEZ6PtLe6smesR46roKTKpoWVq4Qr5p9yTfoHh7zj": [ + { + "amount": "652.606389503", + "slot": { + "period": 135041, + "thread": 5 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 230737, + "thread": 26 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 353608, + "thread": 3 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 550504, + "thread": 24 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 749160, + "thread": 1 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 831705, + "thread": 6 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1027995, + "thread": 4 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1238122, + "thread": 31 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1432149, + "thread": 27 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1566947, + "thread": 14 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1721875, + "thread": 23 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 1908945, + "thread": 24 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2044139, + "thread": 18 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2154171, + "thread": 11 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2305459, + "thread": 30 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2603251, + "thread": 14 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2699581, + "thread": 8 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 2858863, + "thread": 1 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 3012399, + "thread": 3 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 3165417, + "thread": 30 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 3447685, + "thread": 30 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 3575267, + "thread": 18 + } + }, + { + "amount": "652.606389503", + "slot": { + "period": 3657240, + "thread": 3 + } + }, + { + "amount": "652.606389502", + "slot": { + "period": 3818403, + "thread": 20 + } + } + ], + "AU12e1dXMLgwgvWLZN657BzUpitFRk3N1YfPUuAd2phDGhQ8JgCnB": [ + { + "amount": "56.065406667", + "slot": { + "period": 103689, + "thread": 6 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 169233, + "thread": 14 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 458415, + "thread": 26 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 631928, + "thread": 26 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 790112, + "thread": 22 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 938895, + "thread": 21 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1102483, + "thread": 1 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1197411, + "thread": 28 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1360210, + "thread": 22 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1507177, + "thread": 6 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1733721, + "thread": 14 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 1824356, + "thread": 16 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2071282, + "thread": 13 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2284720, + "thread": 27 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2435297, + "thread": 22 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2619469, + "thread": 10 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2661292, + "thread": 26 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 2897066, + "thread": 24 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 3037580, + "thread": 8 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 3162598, + "thread": 29 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 3395689, + "thread": 10 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 3455628, + "thread": 7 + } + }, + { + "amount": "56.065406667", + "slot": { + "period": 3755139, + "thread": 13 + } + }, + { + "amount": "56.065406668", + "slot": { + "period": 3786421, + "thread": 21 + } + } + ], + "AU12e1i4ZEHL9vVvU4rfpw81WgB7QgEBvmQPZf5ieZL77hZ1dCzgj": [ + { + "amount": "128.343322580", + "slot": { + "period": 103185, + "thread": 13 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 197970, + "thread": 15 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 388349, + "thread": 11 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 547875, + "thread": 6 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 794631, + "thread": 17 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 852436, + "thread": 25 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1021252, + "thread": 17 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1169786, + "thread": 25 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1440856, + "thread": 16 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1503606, + "thread": 23 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1721324, + "thread": 27 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 1934786, + "thread": 30 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2036296, + "thread": 6 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2243063, + "thread": 2 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2402655, + "thread": 16 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2517315, + "thread": 23 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2748005, + "thread": 28 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 2847366, + "thread": 28 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 3057847, + "thread": 5 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 3261920, + "thread": 24 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 3292471, + "thread": 26 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 3602965, + "thread": 11 + } + }, + { + "amount": "128.343322580", + "slot": { + "period": 3724505, + "thread": 20 + } + }, + { + "amount": "128.343322578", + "slot": { + "period": 3833531, + "thread": 6 + } + } + ], + "AU12e1umQHix8vRMM2Gwe5H5CxMTgYT2nKPCZcNZgp1rnDbTXZXNC": [ + { + "amount": "534.623656808", + "slot": { + "period": 94822, + "thread": 24 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 295124, + "thread": 24 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 427375, + "thread": 20 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 506154, + "thread": 18 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 781067, + "thread": 27 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 933414, + "thread": 13 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 990647, + "thread": 11 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 1313252, + "thread": 22 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 1363637, + "thread": 30 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 1493814, + "thread": 23 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 1733924, + "thread": 3 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 1970321, + "thread": 16 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2071440, + "thread": 28 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2167448, + "thread": 16 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2330554, + "thread": 25 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2617434, + "thread": 1 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2692924, + "thread": 2 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 2860482, + "thread": 26 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 3071269, + "thread": 15 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 3243111, + "thread": 16 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 3348858, + "thread": 9 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 3584054, + "thread": 11 + } + }, + { + "amount": "534.623656808", + "slot": { + "period": 3646735, + "thread": 13 + } + }, + { + "amount": "534.623656797", + "slot": { + "period": 3829779, + "thread": 13 + } + } + ], + "AU12e2N91Fw3xfLcunE6ddToJGxoJrey39vCpzKcUBZjyDBwaeQXJ": [ + { + "amount": "205.841913450", + "slot": { + "period": 87859, + "thread": 20 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 206790, + "thread": 6 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 433909, + "thread": 28 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 536168, + "thread": 9 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 728240, + "thread": 28 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 825637, + "thread": 1 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1148612, + "thread": 27 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1161862, + "thread": 0 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1434835, + "thread": 9 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1482329, + "thread": 9 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1661720, + "thread": 16 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 1967242, + "thread": 31 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2116412, + "thread": 19 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2240526, + "thread": 30 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2342361, + "thread": 8 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2610570, + "thread": 14 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2729446, + "thread": 9 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 2848161, + "thread": 1 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3031196, + "thread": 3 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3155586, + "thread": 14 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3340027, + "thread": 9 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3591864, + "thread": 25 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3740144, + "thread": 18 + } + }, + { + "amount": "205.841913450", + "slot": { + "period": 3882173, + "thread": 6 + } + } + ], + "AU12e5M3jAA8728X4yJ6mmvfVdjomwx6kN4BXdLu3DpKdeu9ViAz3": [ + { + "amount": "259.830612973", + "slot": { + "period": 66587, + "thread": 31 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 285352, + "thread": 12 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 359019, + "thread": 6 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 606811, + "thread": 15 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 653623, + "thread": 2 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 873212, + "thread": 14 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 990619, + "thread": 7 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1307863, + "thread": 19 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1433659, + "thread": 8 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1528140, + "thread": 2 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1745244, + "thread": 11 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1820232, + "thread": 22 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 1990984, + "thread": 5 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2227307, + "thread": 6 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2444199, + "thread": 30 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2497315, + "thread": 17 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2690586, + "thread": 21 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2816766, + "thread": 24 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 2978737, + "thread": 20 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 3195958, + "thread": 20 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 3369108, + "thread": 0 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 3501911, + "thread": 11 + } + }, + { + "amount": "259.830612973", + "slot": { + "period": 3683335, + "thread": 14 + } + }, + { + "amount": "259.830612967", + "slot": { + "period": 3855409, + "thread": 0 + } + } + ], + "AU12e5Qqnq5eWzyWVFiFXeEpgygcH18FPsNK75K49ZrmCLJy6xFzb": [ + { + "amount": "146.965920076", + "slot": { + "period": 107456, + "thread": 19 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 303296, + "thread": 30 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 474949, + "thread": 27 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 557406, + "thread": 1 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 694865, + "thread": 3 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 904545, + "thread": 3 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1028296, + "thread": 24 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1251934, + "thread": 23 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1464440, + "thread": 24 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1612149, + "thread": 24 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1698078, + "thread": 25 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 1832556, + "thread": 20 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2020934, + "thread": 13 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2172398, + "thread": 5 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2352871, + "thread": 21 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2503121, + "thread": 12 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2710672, + "thread": 5 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 2949132, + "thread": 9 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 3091914, + "thread": 20 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 3209262, + "thread": 1 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 3447526, + "thread": 30 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 3458786, + "thread": 25 + } + }, + { + "amount": "146.965920076", + "slot": { + "period": 3777521, + "thread": 25 + } + }, + { + "amount": "146.965920080", + "slot": { + "period": 3934366, + "thread": 10 + } + } + ], + "AU12e5vEakxMn8bWqzTvBFHkTsw4UNK15FKhSBqhPWVtQbfSE2Pkk": [ + { + "amount": "68.456448348", + "slot": { + "period": 53389, + "thread": 14 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 276366, + "thread": 13 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 366998, + "thread": 31 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 512610, + "thread": 25 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 723872, + "thread": 17 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 951187, + "thread": 12 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1108791, + "thread": 12 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1185221, + "thread": 9 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1433339, + "thread": 6 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1512822, + "thread": 1 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1706407, + "thread": 14 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 1872958, + "thread": 0 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2131159, + "thread": 31 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2179684, + "thread": 23 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2383544, + "thread": 20 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2532572, + "thread": 12 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2691907, + "thread": 14 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 2893793, + "thread": 24 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 3100362, + "thread": 6 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 3153330, + "thread": 26 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 3363480, + "thread": 26 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 3596209, + "thread": 25 + } + }, + { + "amount": "68.456448348", + "slot": { + "period": 3618068, + "thread": 15 + } + }, + { + "amount": "68.456448345", + "slot": { + "period": 3863973, + "thread": 24 + } + } + ], + "AU12e5xrTtF91JJ7CZC1ckcRVEvdEWGeHtS4cMDq4H2s7uNqD6CVx": [ + { + "amount": "190.459266696", + "slot": { + "period": 45584, + "thread": 12 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 319583, + "thread": 18 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 484569, + "thread": 12 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 582813, + "thread": 2 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 755915, + "thread": 3 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 865040, + "thread": 29 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 986867, + "thread": 3 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 1230223, + "thread": 12 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 1352294, + "thread": 14 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 1634398, + "thread": 18 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 1767759, + "thread": 29 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 1919870, + "thread": 0 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2063061, + "thread": 9 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2176822, + "thread": 21 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2383293, + "thread": 3 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2577895, + "thread": 26 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2643412, + "thread": 8 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2845732, + "thread": 18 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 2975821, + "thread": 30 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 3128147, + "thread": 23 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 3389279, + "thread": 18 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 3556967, + "thread": 19 + } + }, + { + "amount": "190.459266696", + "slot": { + "period": 3764205, + "thread": 28 + } + }, + { + "amount": "190.459266698", + "slot": { + "period": 3790823, + "thread": 18 + } + } + ], + "AU12e6MvjvkSzFKyzRRzrYQm9bvrUGuxoFkHKMBNh4DbzqfZWzQx6": [ + { + "amount": "138.339813430", + "slot": { + "period": 45786, + "thread": 1 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 312244, + "thread": 24 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 327156, + "thread": 20 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 561344, + "thread": 9 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 792677, + "thread": 2 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 918509, + "thread": 18 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1060770, + "thread": 23 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1180077, + "thread": 12 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1330372, + "thread": 13 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1500842, + "thread": 25 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1764347, + "thread": 18 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1810099, + "thread": 3 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 1998233, + "thread": 29 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2192172, + "thread": 24 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2320076, + "thread": 13 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2557072, + "thread": 5 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2639294, + "thread": 13 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2897993, + "thread": 11 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 2959123, + "thread": 6 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 3259388, + "thread": 18 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 3293122, + "thread": 16 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 3497666, + "thread": 13 + } + }, + { + "amount": "138.339813430", + "slot": { + "period": 3714933, + "thread": 31 + } + }, + { + "amount": "138.339813422", + "slot": { + "period": 3823896, + "thread": 2 + } + } + ], + "AU12e7mgh3bJwQALCZ8gB4LhX9mtr5Wad57GCx19gaW1WdiojLcPQ": [ + { + "amount": "243.301978810", + "slot": { + "period": 95309, + "thread": 9 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 176981, + "thread": 30 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 443929, + "thread": 2 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 568507, + "thread": 5 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 808896, + "thread": 18 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 899000, + "thread": 21 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1075158, + "thread": 14 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1315775, + "thread": 8 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1434847, + "thread": 22 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1634709, + "thread": 9 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1771395, + "thread": 26 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 1904279, + "thread": 16 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2064695, + "thread": 9 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2292916, + "thread": 27 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2380955, + "thread": 29 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2583683, + "thread": 30 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2748250, + "thread": 8 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2935598, + "thread": 18 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 2965032, + "thread": 10 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 3259723, + "thread": 25 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 3340910, + "thread": 24 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 3601244, + "thread": 15 + } + }, + { + "amount": "243.301978810", + "slot": { + "period": 3752487, + "thread": 12 + } + }, + { + "amount": "243.301978805", + "slot": { + "period": 3863978, + "thread": 21 + } + } + ], + "AU12e7vC9bD7gGnEiT6pLikL6TX3UEibt2vHxVq6xXyhMqH8m52vw": [ + { + "amount": "255.880693299", + "slot": { + "period": 75528, + "thread": 12 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 269426, + "thread": 3 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 360335, + "thread": 20 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 586737, + "thread": 27 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 790536, + "thread": 14 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 948270, + "thread": 20 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1117910, + "thread": 17 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1295196, + "thread": 16 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1367632, + "thread": 9 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1550787, + "thread": 5 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1746237, + "thread": 25 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 1853145, + "thread": 26 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2133305, + "thread": 20 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2266989, + "thread": 25 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2391403, + "thread": 1 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2542172, + "thread": 16 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2709397, + "thread": 10 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2815408, + "thread": 26 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 2958547, + "thread": 11 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 3221305, + "thread": 24 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 3327807, + "thread": 11 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 3612342, + "thread": 8 + } + }, + { + "amount": "255.880693299", + "slot": { + "period": 3775286, + "thread": 26 + } + }, + { + "amount": "255.880693296", + "slot": { + "period": 3909414, + "thread": 13 + } + } + ], + "AU12e9Q8Y4kNTUVFa1KdSo462u9DX6iv6v6srgzhhFxXHzNy98D3D": [ + { + "amount": "101.750321476", + "slot": { + "period": 132662, + "thread": 29 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 302217, + "thread": 24 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 474006, + "thread": 21 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 561276, + "thread": 3 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 724138, + "thread": 24 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 929879, + "thread": 11 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1101298, + "thread": 30 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1166804, + "thread": 19 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1362318, + "thread": 25 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1635920, + "thread": 23 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1790267, + "thread": 20 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 1884045, + "thread": 13 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2012779, + "thread": 9 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2289732, + "thread": 13 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2428511, + "thread": 0 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2570849, + "thread": 21 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2769394, + "thread": 9 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 2804356, + "thread": 25 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 3050616, + "thread": 8 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 3144923, + "thread": 0 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 3311923, + "thread": 18 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 3461234, + "thread": 29 + } + }, + { + "amount": "101.750321476", + "slot": { + "period": 3670695, + "thread": 23 + } + }, + { + "amount": "101.750321471", + "slot": { + "period": 3848319, + "thread": 4 + } + } + ], + "AU12eACxiDsTuUWc3QRTkzGcRoS8jPXCic93wAXDEXPLaedScs85y": [ + { + "amount": "155.888557517", + "slot": { + "period": 150278, + "thread": 1 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 292066, + "thread": 25 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 486710, + "thread": 31 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 589779, + "thread": 15 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 687251, + "thread": 13 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 908894, + "thread": 4 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1106290, + "thread": 0 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1171052, + "thread": 24 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1360357, + "thread": 14 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1645992, + "thread": 22 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1788765, + "thread": 11 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 1966351, + "thread": 10 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2007362, + "thread": 25 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2176477, + "thread": 7 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2421309, + "thread": 25 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2599862, + "thread": 0 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2781865, + "thread": 0 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 2920353, + "thread": 8 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 3107304, + "thread": 25 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 3136109, + "thread": 20 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 3393500, + "thread": 29 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 3478778, + "thread": 10 + } + }, + { + "amount": "155.888557517", + "slot": { + "period": 3619698, + "thread": 22 + } + }, + { + "amount": "155.888557506", + "slot": { + "period": 3939932, + "thread": 8 + } + } + ], + "AU12eAcrsoUST3x8soseBJeqSkVsGfHTu7NQL1Bpfuv7mQn198hkz": [ + { + "amount": "52.462641448", + "slot": { + "period": 110265, + "thread": 15 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 285595, + "thread": 2 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 365081, + "thread": 31 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 526432, + "thread": 31 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 728141, + "thread": 25 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 971795, + "thread": 11 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1071208, + "thread": 4 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1208989, + "thread": 22 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1338822, + "thread": 24 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1522890, + "thread": 13 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1729324, + "thread": 1 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 1836205, + "thread": 5 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2049451, + "thread": 29 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2160651, + "thread": 11 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2395195, + "thread": 2 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2493348, + "thread": 27 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2736223, + "thread": 15 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 2913039, + "thread": 1 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 3016312, + "thread": 24 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 3206214, + "thread": 17 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 3356522, + "thread": 22 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 3510709, + "thread": 23 + } + }, + { + "amount": "52.462641448", + "slot": { + "period": 3688405, + "thread": 10 + } + }, + { + "amount": "52.462641441", + "slot": { + "period": 3799446, + "thread": 5 + } + } + ], + "AU12eAv1pdkSkkdM6vwcCfPYWyihsSzwzhUnG9j6LHWGa7RSK4vDS": [ + { + "amount": "356.306159300", + "slot": { + "period": 11991, + "thread": 14 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 281291, + "thread": 21 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 380689, + "thread": 17 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 555239, + "thread": 24 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 747851, + "thread": 19 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 921022, + "thread": 15 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1094397, + "thread": 24 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1235419, + "thread": 15 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1423602, + "thread": 17 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1533526, + "thread": 15 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1746265, + "thread": 1 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 1879725, + "thread": 4 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2029354, + "thread": 27 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2150401, + "thread": 8 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2456577, + "thread": 5 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2496034, + "thread": 8 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2647027, + "thread": 9 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 2849945, + "thread": 26 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 3114171, + "thread": 31 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 3262365, + "thread": 25 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 3442111, + "thread": 13 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 3580309, + "thread": 12 + } + }, + { + "amount": "356.306159300", + "slot": { + "period": 3666173, + "thread": 24 + } + }, + { + "amount": "356.306159311", + "slot": { + "period": 3939985, + "thread": 24 + } + } + ], + "AU12eBA3UUYouzz1bJZYXBBTQXEmvyEVGW5AxXWQDz8Jso3kSgBNy": [ + { + "amount": "292.961176587", + "slot": { + "period": 158530, + "thread": 15 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 195929, + "thread": 8 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 459431, + "thread": 28 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 553662, + "thread": 24 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 735245, + "thread": 0 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 886082, + "thread": 15 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1098281, + "thread": 31 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1266976, + "thread": 28 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1358563, + "thread": 17 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1581334, + "thread": 26 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1739240, + "thread": 13 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 1810676, + "thread": 6 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2111069, + "thread": 17 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2181111, + "thread": 4 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2349759, + "thread": 27 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2592000, + "thread": 25 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2739754, + "thread": 28 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 2884848, + "thread": 1 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 3096839, + "thread": 9 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 3267775, + "thread": 12 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 3430770, + "thread": 15 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 3496601, + "thread": 11 + } + }, + { + "amount": "292.961176587", + "slot": { + "period": 3776296, + "thread": 7 + } + }, + { + "amount": "292.961176582", + "slot": { + "period": 3891123, + "thread": 31 + } + } + ], + "AU12eBSNJXapxK6M1F3a9ACrboPtCM8AYSZCqmrV2LKyXb2tRGPfH": [ + { + "amount": "173.088160656", + "slot": { + "period": 57068, + "thread": 31 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 212709, + "thread": 20 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 396467, + "thread": 10 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 613091, + "thread": 11 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 713741, + "thread": 2 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 929091, + "thread": 27 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1071579, + "thread": 30 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1234964, + "thread": 17 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1329951, + "thread": 30 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1534056, + "thread": 4 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1798657, + "thread": 22 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 1837251, + "thread": 7 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2002401, + "thread": 17 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2240775, + "thread": 18 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2389166, + "thread": 19 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2477366, + "thread": 31 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2639102, + "thread": 1 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2940347, + "thread": 18 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 2990150, + "thread": 6 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 3236364, + "thread": 23 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 3423718, + "thread": 15 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 3527843, + "thread": 26 + } + }, + { + "amount": "173.088160656", + "slot": { + "period": 3759439, + "thread": 7 + } + }, + { + "amount": "173.088160659", + "slot": { + "period": 3873134, + "thread": 21 + } + } + ], + "AU12eCAUSNzCodeqMdov3Cp1gpBceWb5VF8mG336CikwfZPRLx7J3": [ + { + "amount": "339.929564338", + "slot": { + "period": 66334, + "thread": 5 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 213005, + "thread": 27 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 400640, + "thread": 5 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 507035, + "thread": 24 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 736553, + "thread": 28 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 958338, + "thread": 23 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1004855, + "thread": 15 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1212684, + "thread": 21 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1390403, + "thread": 12 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1529837, + "thread": 15 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1753050, + "thread": 4 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 1848571, + "thread": 3 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2071967, + "thread": 30 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2257265, + "thread": 19 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2353921, + "thread": 20 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2534418, + "thread": 30 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2745885, + "thread": 29 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 2933290, + "thread": 9 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 3093995, + "thread": 1 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 3174507, + "thread": 18 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 3391961, + "thread": 18 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 3561844, + "thread": 1 + } + }, + { + "amount": "339.929564338", + "slot": { + "period": 3698459, + "thread": 23 + } + }, + { + "amount": "339.929564349", + "slot": { + "period": 3875699, + "thread": 27 + } + } + ], + "AU12eCr288fC24KFdBw22aJ7mqjVjdWtDSntYv6hgFzxVocFV8JVx": [ + { + "amount": "227.853912912", + "slot": { + "period": 119200, + "thread": 5 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 321829, + "thread": 12 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 328176, + "thread": 22 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 635728, + "thread": 11 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 803340, + "thread": 4 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 873166, + "thread": 12 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1021407, + "thread": 10 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1238683, + "thread": 19 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1467874, + "thread": 31 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1498616, + "thread": 30 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1703596, + "thread": 23 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1844695, + "thread": 0 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 1991231, + "thread": 19 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 2153600, + "thread": 18 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 2433927, + "thread": 25 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 2615015, + "thread": 19 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 2674389, + "thread": 5 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 2914626, + "thread": 5 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 3008000, + "thread": 7 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 3275089, + "thread": 6 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 3399456, + "thread": 15 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 3587572, + "thread": 29 + } + }, + { + "amount": "227.853912912", + "slot": { + "period": 3768603, + "thread": 16 + } + }, + { + "amount": "227.853912921", + "slot": { + "period": 3865964, + "thread": 5 + } + } + ], + "AU12eDMwKn6KcfUKsukGakmEEnXnziJPsPLWAt2o1ZHA4wiRwgjY2": [ + { + "amount": "83.504177849", + "slot": { + "period": 84656, + "thread": 9 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 211937, + "thread": 23 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 421148, + "thread": 29 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 560501, + "thread": 12 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 799031, + "thread": 17 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 961481, + "thread": 11 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1051572, + "thread": 7 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1286510, + "thread": 20 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1324986, + "thread": 21 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1482697, + "thread": 29 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1789741, + "thread": 20 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 1971107, + "thread": 23 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2113168, + "thread": 27 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2179463, + "thread": 26 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2460621, + "thread": 2 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2584801, + "thread": 27 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2645818, + "thread": 16 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 2802295, + "thread": 3 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 3013305, + "thread": 3 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 3224169, + "thread": 15 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 3378505, + "thread": 20 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 3523019, + "thread": 21 + } + }, + { + "amount": "83.504177849", + "slot": { + "period": 3708897, + "thread": 23 + } + }, + { + "amount": "83.504177854", + "slot": { + "period": 3881083, + "thread": 20 + } + } + ], + "AU12eDQdRTQACFtSccvLHpzGWQeqTc4yg78jS58v5sdqYnR54H1o5": [ + { + "amount": "216.402996905", + "slot": { + "period": 119631, + "thread": 4 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 316511, + "thread": 27 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 463682, + "thread": 26 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 545890, + "thread": 30 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 730998, + "thread": 28 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 957180, + "thread": 5 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1140875, + "thread": 4 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1295088, + "thread": 16 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1381883, + "thread": 17 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1529473, + "thread": 15 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1735403, + "thread": 7 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 1916210, + "thread": 1 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2078458, + "thread": 10 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2252580, + "thread": 19 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2382259, + "thread": 24 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2604978, + "thread": 24 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2680419, + "thread": 31 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 2826704, + "thread": 22 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 3118405, + "thread": 24 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 3161132, + "thread": 22 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 3300861, + "thread": 11 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 3495199, + "thread": 17 + } + }, + { + "amount": "216.402996905", + "slot": { + "period": 3655332, + "thread": 8 + } + }, + { + "amount": "216.402996902", + "slot": { + "period": 3878102, + "thread": 1 + } + } + ], + "AU12eDUw9UC1wibUs7qr2VFhd6GxwpTaqScH9Q3NU8e5UqSA4NH3i": [ + { + "amount": "185.116444272", + "slot": { + "period": 107786, + "thread": 4 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 177433, + "thread": 8 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 326894, + "thread": 0 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 516635, + "thread": 3 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 680964, + "thread": 30 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 861693, + "thread": 26 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 999295, + "thread": 0 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 1232135, + "thread": 24 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 1406157, + "thread": 28 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 1582988, + "thread": 21 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 1649276, + "thread": 26 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 1854888, + "thread": 5 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2040409, + "thread": 7 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2243187, + "thread": 13 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2331906, + "thread": 28 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2465611, + "thread": 19 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2738728, + "thread": 7 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2856640, + "thread": 22 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 2984246, + "thread": 22 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 3242147, + "thread": 28 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 3442424, + "thread": 4 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 3465452, + "thread": 20 + } + }, + { + "amount": "185.116444272", + "slot": { + "period": 3777087, + "thread": 8 + } + }, + { + "amount": "185.116444277", + "slot": { + "period": 3925066, + "thread": 21 + } + } + ], + "AU12eDVFyTaKg5BfZSAoCb6kUJJBnWQjYkR69fxSnDQ7tK9j5MVg6": [ + { + "amount": "176.172983733", + "slot": { + "period": 149327, + "thread": 8 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 195908, + "thread": 14 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 464169, + "thread": 19 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 646276, + "thread": 15 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 813649, + "thread": 2 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 868712, + "thread": 13 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1069106, + "thread": 2 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1242417, + "thread": 25 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1320070, + "thread": 8 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1614366, + "thread": 10 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1684557, + "thread": 22 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1923791, + "thread": 26 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 1995734, + "thread": 22 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 2171370, + "thread": 13 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 2340923, + "thread": 12 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 2562559, + "thread": 20 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 2634262, + "thread": 24 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 2884476, + "thread": 29 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 3087959, + "thread": 29 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 3230748, + "thread": 0 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 3428844, + "thread": 11 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 3570374, + "thread": 31 + } + }, + { + "amount": "176.172983733", + "slot": { + "period": 3717075, + "thread": 23 + } + }, + { + "amount": "176.172983743", + "slot": { + "period": 3871143, + "thread": 9 + } + } + ], + "AU12eDgbmSKbnqC3YGxJLHC6xRfDFjgZ57bdcstCyHHjD69d5kByr": [ + { + "amount": "147.756171043", + "slot": { + "period": 41432, + "thread": 26 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 202967, + "thread": 13 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 372813, + "thread": 4 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 644852, + "thread": 6 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 686472, + "thread": 25 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 906564, + "thread": 0 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1047668, + "thread": 22 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1153256, + "thread": 2 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1428671, + "thread": 18 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1483955, + "thread": 2 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1768950, + "thread": 22 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 1950795, + "thread": 15 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2052100, + "thread": 19 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2276131, + "thread": 13 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2406275, + "thread": 17 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2469927, + "thread": 5 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2690680, + "thread": 26 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 2794220, + "thread": 5 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 3041658, + "thread": 11 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 3133762, + "thread": 0 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 3320704, + "thread": 12 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 3582876, + "thread": 13 + } + }, + { + "amount": "147.756171043", + "slot": { + "period": 3673898, + "thread": 12 + } + }, + { + "amount": "147.756171048", + "slot": { + "period": 3807284, + "thread": 22 + } + } + ], + "AU12eE97gAQ7TjgsPMcabrD7BfwQewDNvAVZUzFeAT6bRKkBBxCJ6": [ + { + "amount": "183.375814185", + "slot": { + "period": 135413, + "thread": 9 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 220070, + "thread": 2 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 336030, + "thread": 5 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 603953, + "thread": 27 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 788172, + "thread": 16 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 904399, + "thread": 20 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1114238, + "thread": 4 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1272995, + "thread": 4 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1353658, + "thread": 15 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1568314, + "thread": 8 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1743199, + "thread": 17 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 1866235, + "thread": 17 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2091585, + "thread": 15 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2202347, + "thread": 6 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2416504, + "thread": 28 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2545325, + "thread": 16 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2718696, + "thread": 12 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 2871173, + "thread": 17 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 3079588, + "thread": 20 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 3219903, + "thread": 19 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 3394357, + "thread": 13 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 3578600, + "thread": 27 + } + }, + { + "amount": "183.375814185", + "slot": { + "period": 3682972, + "thread": 20 + } + }, + { + "amount": "183.375814196", + "slot": { + "period": 3919476, + "thread": 27 + } + } + ], + "AU12eEn5bA5sArHEVc1tGL1KQBZRZbc827B7fzuBF82f7a6Wk6Vr4": [ + { + "amount": "197.434180229", + "slot": { + "period": 154853, + "thread": 30 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 194843, + "thread": 24 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 405143, + "thread": 4 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 606455, + "thread": 3 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 741286, + "thread": 20 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 874352, + "thread": 18 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1097993, + "thread": 12 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1270589, + "thread": 30 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1386220, + "thread": 22 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1493174, + "thread": 3 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1728807, + "thread": 15 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 1971870, + "thread": 3 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2075969, + "thread": 19 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2246507, + "thread": 19 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2417367, + "thread": 15 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2489497, + "thread": 18 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2683980, + "thread": 21 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 2844122, + "thread": 31 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 3042694, + "thread": 5 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 3260157, + "thread": 0 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 3352063, + "thread": 21 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 3545259, + "thread": 18 + } + }, + { + "amount": "197.434180229", + "slot": { + "period": 3764731, + "thread": 15 + } + }, + { + "amount": "197.434180234", + "slot": { + "period": 3908760, + "thread": 20 + } + } + ], + "AU12eFRpPDRDeUSXte88tJ1FgT49MF8vBXjZWn8iqYrG2mvtrENSB": [ + { + "amount": "86.791536834", + "slot": { + "period": 148874, + "thread": 14 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 262973, + "thread": 24 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 456442, + "thread": 21 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 631783, + "thread": 11 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 761008, + "thread": 25 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 957987, + "thread": 30 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1044996, + "thread": 16 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1270294, + "thread": 20 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1321085, + "thread": 4 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1559563, + "thread": 5 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1798374, + "thread": 19 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 1852473, + "thread": 2 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2017605, + "thread": 29 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2275276, + "thread": 0 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2296566, + "thread": 21 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2597798, + "thread": 23 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2686997, + "thread": 2 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 2892829, + "thread": 14 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 3060086, + "thread": 2 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 3237654, + "thread": 10 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 3423346, + "thread": 2 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 3590755, + "thread": 13 + } + }, + { + "amount": "86.791536834", + "slot": { + "period": 3695942, + "thread": 9 + } + }, + { + "amount": "86.791536846", + "slot": { + "period": 3811768, + "thread": 6 + } + } + ], + "AU12eFfjRG2rRb3pZLTfxMi4bMMgehHmvYgmtYStFRE1BCRp8ryhE": [ + { + "amount": "284.123496866", + "slot": { + "period": 80764, + "thread": 6 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 192346, + "thread": 3 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 335392, + "thread": 11 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 637326, + "thread": 20 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 685013, + "thread": 28 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 982275, + "thread": 4 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1007244, + "thread": 10 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1315689, + "thread": 19 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1355997, + "thread": 0 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1617743, + "thread": 1 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1705592, + "thread": 2 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 1828745, + "thread": 20 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2021162, + "thread": 15 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2203821, + "thread": 26 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2401250, + "thread": 5 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2468027, + "thread": 2 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2784635, + "thread": 15 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2831419, + "thread": 23 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 2979881, + "thread": 8 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 3281665, + "thread": 25 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 3420507, + "thread": 8 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 3487273, + "thread": 5 + } + }, + { + "amount": "284.123496866", + "slot": { + "period": 3758391, + "thread": 21 + } + }, + { + "amount": "284.123496865", + "slot": { + "period": 3925875, + "thread": 31 + } + } + ], + "AU12eGJb5D3d5WmZUsnga592tHxA9ByAyDaNAddJt5hTz4gZcaJ39": [ + { + "amount": "443.778205259", + "slot": { + "period": 63130, + "thread": 21 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 302759, + "thread": 14 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 468358, + "thread": 22 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 645530, + "thread": 1 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 723309, + "thread": 8 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 828723, + "thread": 16 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1132579, + "thread": 22 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1231026, + "thread": 4 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1401027, + "thread": 13 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1592383, + "thread": 25 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1748972, + "thread": 7 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 1933069, + "thread": 16 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2027606, + "thread": 13 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2188710, + "thread": 22 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2427044, + "thread": 8 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2578034, + "thread": 29 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2765648, + "thread": 30 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 2809060, + "thread": 29 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 3006235, + "thread": 26 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 3179465, + "thread": 20 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 3343343, + "thread": 16 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 3469396, + "thread": 0 + } + }, + { + "amount": "443.778205259", + "slot": { + "period": 3777726, + "thread": 31 + } + }, + { + "amount": "443.778205250", + "slot": { + "period": 3863810, + "thread": 10 + } + } + ], + "AU12eGV96h7pf88XitzBwygh53pPYQH2yx2PFro5sgD6KmjDuZcWH": [ + { + "amount": "88.313998708", + "slot": { + "period": 146092, + "thread": 17 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 299642, + "thread": 5 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 382607, + "thread": 22 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 608320, + "thread": 12 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 716919, + "thread": 21 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 962277, + "thread": 21 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1131800, + "thread": 21 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1263139, + "thread": 2 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1420237, + "thread": 10 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1496831, + "thread": 17 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1744079, + "thread": 19 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 1883223, + "thread": 14 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2103266, + "thread": 3 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2236387, + "thread": 4 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2331849, + "thread": 5 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2614036, + "thread": 27 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2695389, + "thread": 13 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 2952620, + "thread": 10 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 3054946, + "thread": 10 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 3275127, + "thread": 7 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 3324003, + "thread": 29 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 3475620, + "thread": 7 + } + }, + { + "amount": "88.313998708", + "slot": { + "period": 3744654, + "thread": 3 + } + }, + { + "amount": "88.313998706", + "slot": { + "period": 3851811, + "thread": 8 + } + } + ], + "AU12eGWFiUFF6PzNsdvbeVkE3EgZd4MmNgTm65AtTKTmAn5hmtcfo": [ + { + "amount": "169.898797435", + "slot": { + "period": 147676, + "thread": 31 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 279832, + "thread": 20 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 474622, + "thread": 24 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 649084, + "thread": 19 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 819450, + "thread": 5 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 976642, + "thread": 13 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1081520, + "thread": 16 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1248287, + "thread": 9 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1400833, + "thread": 4 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1498750, + "thread": 15 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1760998, + "thread": 23 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 1898478, + "thread": 10 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2091987, + "thread": 24 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2274313, + "thread": 25 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2452493, + "thread": 30 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2497696, + "thread": 1 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2655369, + "thread": 8 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 2930065, + "thread": 10 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 3033149, + "thread": 18 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 3268000, + "thread": 21 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 3334716, + "thread": 30 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 3563823, + "thread": 7 + } + }, + { + "amount": "169.898797435", + "slot": { + "period": 3620375, + "thread": 20 + } + }, + { + "amount": "169.898797439", + "slot": { + "period": 3847738, + "thread": 19 + } + } + ], + "AU12eJ8UJJ2DED7cM5MjSHm3ksBnAFSnXVbSSgQmhY9BkmUxdYcm3": [ + { + "amount": "415.504009914", + "slot": { + "period": 162554, + "thread": 29 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 195639, + "thread": 18 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 429558, + "thread": 9 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 617500, + "thread": 21 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 679614, + "thread": 21 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 835829, + "thread": 11 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1114807, + "thread": 1 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1187152, + "thread": 14 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1434780, + "thread": 0 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1591068, + "thread": 7 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1698399, + "thread": 11 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 1940314, + "thread": 16 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2141303, + "thread": 3 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2209192, + "thread": 19 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2310537, + "thread": 8 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2608727, + "thread": 13 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2751985, + "thread": 13 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 2901320, + "thread": 10 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 3061505, + "thread": 4 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 3270985, + "thread": 3 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 3341320, + "thread": 10 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 3534298, + "thread": 12 + } + }, + { + "amount": "415.504009914", + "slot": { + "period": 3686197, + "thread": 25 + } + }, + { + "amount": "415.504009912", + "slot": { + "period": 3826183, + "thread": 4 + } + } + ], + "AU12eJHKZmX1xRf9Evzbop8NDUn3LSjMSUvefJCV3RJ2LRciQdPL4": [ + { + "amount": "210.751626852", + "slot": { + "period": 25875, + "thread": 12 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 292440, + "thread": 10 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 407915, + "thread": 24 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 634802, + "thread": 13 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 678918, + "thread": 25 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 831792, + "thread": 30 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1084742, + "thread": 7 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1222424, + "thread": 2 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1478807, + "thread": 23 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1508912, + "thread": 22 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1663589, + "thread": 31 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1841430, + "thread": 24 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 1998962, + "thread": 31 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 2214775, + "thread": 27 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 2448902, + "thread": 15 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 2487584, + "thread": 18 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 2627013, + "thread": 4 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 2950738, + "thread": 16 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 3063695, + "thread": 24 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 3287026, + "thread": 21 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 3393140, + "thread": 1 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 3503890, + "thread": 22 + } + }, + { + "amount": "210.751626852", + "slot": { + "period": 3741396, + "thread": 28 + } + }, + { + "amount": "210.751626856", + "slot": { + "period": 3848685, + "thread": 10 + } + } + ], + "AU12eJJmHrNeTKskDZfVeeqDbgvnZVmG3pu6Dg7ANmSDmbjacHsLx": [ + { + "amount": "196.424494924", + "slot": { + "period": 89901, + "thread": 30 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 323182, + "thread": 30 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 362453, + "thread": 19 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 651639, + "thread": 11 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 720851, + "thread": 14 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 858072, + "thread": 13 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1086126, + "thread": 4 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1217604, + "thread": 16 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1338388, + "thread": 1 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1625816, + "thread": 24 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1702068, + "thread": 26 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1856390, + "thread": 10 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 1999788, + "thread": 3 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 2162379, + "thread": 1 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 2310235, + "thread": 6 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 2523012, + "thread": 15 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 2723915, + "thread": 8 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 2942383, + "thread": 29 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 3035662, + "thread": 23 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 3179086, + "thread": 19 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 3449128, + "thread": 31 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 3510374, + "thread": 23 + } + }, + { + "amount": "196.424494924", + "slot": { + "period": 3627546, + "thread": 22 + } + }, + { + "amount": "196.424494912", + "slot": { + "period": 3937850, + "thread": 12 + } + } + ], + "AU12eL4xqjrac2c32T3M5Kg7E8xviv4mjJAB8unWg99mv7hbANat7": [ + { + "amount": "146.728949959", + "slot": { + "period": 40107, + "thread": 14 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 305018, + "thread": 12 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 372893, + "thread": 23 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 566219, + "thread": 8 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 806987, + "thread": 23 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 830739, + "thread": 24 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1024040, + "thread": 11 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1276284, + "thread": 29 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1401844, + "thread": 21 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1571365, + "thread": 14 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1689896, + "thread": 16 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 1892363, + "thread": 23 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2089834, + "thread": 12 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2184511, + "thread": 0 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2415379, + "thread": 11 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2564899, + "thread": 9 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2639031, + "thread": 24 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 2895402, + "thread": 6 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 3015860, + "thread": 9 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 3229132, + "thread": 1 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 3299231, + "thread": 12 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 3541376, + "thread": 1 + } + }, + { + "amount": "146.728949959", + "slot": { + "period": 3659522, + "thread": 10 + } + }, + { + "amount": "146.728949968", + "slot": { + "period": 3892622, + "thread": 25 + } + } + ], + "AU12eLD2A2uQw16gpP4zTe2gcZy2gLLtHY3HqiFFxtkxtb9N4B888": [ + { + "amount": "350.394568822", + "slot": { + "period": 79712, + "thread": 22 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 247322, + "thread": 21 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 469883, + "thread": 2 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 528476, + "thread": 1 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 778858, + "thread": 27 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 867178, + "thread": 30 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1043799, + "thread": 8 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1194388, + "thread": 12 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1361883, + "thread": 31 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1563910, + "thread": 4 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1797421, + "thread": 18 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 1870401, + "thread": 29 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2132769, + "thread": 26 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2258546, + "thread": 19 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2319048, + "thread": 2 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2493539, + "thread": 29 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2646472, + "thread": 23 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2816344, + "thread": 20 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 2954285, + "thread": 7 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 3143163, + "thread": 3 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 3398332, + "thread": 2 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 3596082, + "thread": 29 + } + }, + { + "amount": "350.394568822", + "slot": { + "period": 3774329, + "thread": 19 + } + }, + { + "amount": "350.394568810", + "slot": { + "period": 3911972, + "thread": 13 + } + } + ], + "AU12eLJXkUkiHXNbQbidMHu6RgSaXd5TD2CKecY71AQWWNj5XHEJ3": [ + { + "amount": "254.809998663", + "slot": { + "period": 120531, + "thread": 19 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 298610, + "thread": 6 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 490134, + "thread": 17 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 550305, + "thread": 20 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 683106, + "thread": 7 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 903793, + "thread": 2 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1120856, + "thread": 17 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1242508, + "thread": 10 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1435923, + "thread": 25 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1522410, + "thread": 16 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1768028, + "thread": 31 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 1881958, + "thread": 26 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2111459, + "thread": 1 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2285455, + "thread": 19 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2349720, + "thread": 22 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2612613, + "thread": 5 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2784809, + "thread": 23 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2851946, + "thread": 23 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 2995093, + "thread": 31 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 3240795, + "thread": 8 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 3339938, + "thread": 22 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 3532198, + "thread": 1 + } + }, + { + "amount": "254.809998663", + "slot": { + "period": 3756420, + "thread": 5 + } + }, + { + "amount": "254.809998659", + "slot": { + "period": 3909511, + "thread": 11 + } + } + ], + "AU12eMEy6yeEno2warvvfADjmDAc3vAozqwnAmDcYwvqEsbxSJEF2": [ + { + "amount": "140.524950488", + "slot": { + "period": 15094, + "thread": 20 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 202855, + "thread": 28 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 453431, + "thread": 5 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 537195, + "thread": 17 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 815817, + "thread": 5 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 840834, + "thread": 31 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1108871, + "thread": 9 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1217384, + "thread": 19 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1408737, + "thread": 13 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1493597, + "thread": 25 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1756366, + "thread": 6 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 1944406, + "thread": 29 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2026647, + "thread": 27 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2270614, + "thread": 3 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2328823, + "thread": 12 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2622403, + "thread": 7 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2681817, + "thread": 24 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2860136, + "thread": 0 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 2963217, + "thread": 13 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 3219072, + "thread": 20 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 3405196, + "thread": 6 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 3491797, + "thread": 12 + } + }, + { + "amount": "140.524950488", + "slot": { + "period": 3725977, + "thread": 15 + } + }, + { + "amount": "140.524950476", + "slot": { + "period": 3919786, + "thread": 13 + } + } + ], + "AU12eMMLsDFfJ6wAZs3SCnTQcacPyrDDq5fFxQEmEV4xpya9pQ87p": [ + { + "amount": "157.021058860", + "slot": { + "period": 110826, + "thread": 25 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 196865, + "thread": 21 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 379294, + "thread": 26 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 643766, + "thread": 7 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 658061, + "thread": 13 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 892567, + "thread": 21 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1111527, + "thread": 1 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1261621, + "thread": 31 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1391294, + "thread": 1 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1599898, + "thread": 13 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1712924, + "thread": 18 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 1907060, + "thread": 18 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2003305, + "thread": 1 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2254147, + "thread": 27 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2345913, + "thread": 0 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2594533, + "thread": 11 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2740836, + "thread": 26 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 2934657, + "thread": 3 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 3015767, + "thread": 16 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 3121888, + "thread": 16 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 3435750, + "thread": 23 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 3582327, + "thread": 22 + } + }, + { + "amount": "157.021058860", + "slot": { + "period": 3773201, + "thread": 16 + } + }, + { + "amount": "157.021058850", + "slot": { + "period": 3901434, + "thread": 15 + } + } + ], + "AU12eN8DKoc1WpAu2osC9R44DbmGWEGhq5KkDnsz3F5Ke3ZbhkAhJ": [ + { + "amount": "161.713922474", + "slot": { + "period": 96934, + "thread": 26 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 203345, + "thread": 14 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 457568, + "thread": 22 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 641399, + "thread": 16 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 811021, + "thread": 0 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 870569, + "thread": 26 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1031370, + "thread": 3 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1226031, + "thread": 29 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1436519, + "thread": 9 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1577601, + "thread": 1 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1780091, + "thread": 1 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 1851545, + "thread": 29 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2103503, + "thread": 9 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2247512, + "thread": 23 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2380652, + "thread": 29 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2521485, + "thread": 9 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2664592, + "thread": 26 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 2885266, + "thread": 11 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 3051295, + "thread": 1 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 3159191, + "thread": 2 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 3346264, + "thread": 6 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 3563379, + "thread": 25 + } + }, + { + "amount": "161.713922474", + "slot": { + "period": 3625822, + "thread": 31 + } + }, + { + "amount": "161.713922478", + "slot": { + "period": 3846151, + "thread": 30 + } + } + ], + "AU12eNSZTFo5uNHRm3joWFSMVHu6FrqXT1vfJsqc6kmTRsvVxLKCL": [ + { + "amount": "186.357092419", + "slot": { + "period": 148043, + "thread": 0 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 294319, + "thread": 15 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 401038, + "thread": 16 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 532963, + "thread": 27 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 655962, + "thread": 26 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 835962, + "thread": 27 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1149374, + "thread": 19 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1219843, + "thread": 21 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1469967, + "thread": 21 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1535522, + "thread": 21 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1667694, + "thread": 26 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1861824, + "thread": 17 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 1978465, + "thread": 18 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 2256227, + "thread": 15 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 2384428, + "thread": 4 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 2475448, + "thread": 6 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 2684522, + "thread": 16 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 2889904, + "thread": 12 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 3115185, + "thread": 23 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 3197178, + "thread": 7 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 3434388, + "thread": 26 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 3513554, + "thread": 23 + } + }, + { + "amount": "186.357092419", + "slot": { + "period": 3760410, + "thread": 20 + } + }, + { + "amount": "186.357092421", + "slot": { + "period": 3782922, + "thread": 8 + } + } + ], + "AU12ePPHHwsRmbJkHHovD7xJy493cBK1DLL8H1KMXHJo9MwUbSR8C": [ + { + "amount": "51.434262464", + "slot": { + "period": 54925, + "thread": 26 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 189726, + "thread": 18 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 400360, + "thread": 15 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 509937, + "thread": 25 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 680356, + "thread": 27 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 925904, + "thread": 16 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1057197, + "thread": 14 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1156176, + "thread": 4 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1423791, + "thread": 30 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1541070, + "thread": 21 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1746862, + "thread": 27 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 1971463, + "thread": 6 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2112318, + "thread": 16 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2150308, + "thread": 19 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2379997, + "thread": 10 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2619393, + "thread": 1 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2650442, + "thread": 18 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 2863444, + "thread": 12 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 3013276, + "thread": 14 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 3162826, + "thread": 30 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 3288942, + "thread": 3 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 3455474, + "thread": 7 + } + }, + { + "amount": "51.434262464", + "slot": { + "period": 3705242, + "thread": 1 + } + }, + { + "amount": "51.434262474", + "slot": { + "period": 3922290, + "thread": 13 + } + } + ], + "AU12ePStVFixFUA6tcwiFgNhU72WinStgH5GZ2qwF5jp1nqkTktjY": [ + { + "amount": "55.019070091", + "slot": { + "period": 18351, + "thread": 3 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 283209, + "thread": 18 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 327389, + "thread": 15 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 524229, + "thread": 8 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 715174, + "thread": 5 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 835032, + "thread": 26 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1080400, + "thread": 19 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1294210, + "thread": 8 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1462310, + "thread": 27 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1564406, + "thread": 10 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1728467, + "thread": 29 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 1828644, + "thread": 19 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2042702, + "thread": 22 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2228694, + "thread": 27 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2311692, + "thread": 24 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2486088, + "thread": 22 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2682805, + "thread": 23 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 2864466, + "thread": 6 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 3044189, + "thread": 27 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 3127321, + "thread": 19 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 3418077, + "thread": 31 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 3501147, + "thread": 19 + } + }, + { + "amount": "55.019070091", + "slot": { + "period": 3771399, + "thread": 19 + } + }, + { + "amount": "55.019070100", + "slot": { + "period": 3784070, + "thread": 25 + } + } + ], + "AU12ePzV1s9H7bQY5g73VKTUwg2YJaCRYWNdgLEfbqQP45Pp59CeB": [ + { + "amount": "154.322938489", + "slot": { + "period": 80597, + "thread": 12 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 206410, + "thread": 1 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 486313, + "thread": 9 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 585471, + "thread": 21 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 781194, + "thread": 4 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 878658, + "thread": 0 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1144383, + "thread": 11 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1188789, + "thread": 22 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1477478, + "thread": 9 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1570713, + "thread": 12 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1662203, + "thread": 24 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1891889, + "thread": 2 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 1995740, + "thread": 22 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 2190442, + "thread": 12 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 2311830, + "thread": 9 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 2557663, + "thread": 13 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 2702847, + "thread": 7 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 2905638, + "thread": 11 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 3003231, + "thread": 11 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 3264922, + "thread": 22 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 3430524, + "thread": 10 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 3502563, + "thread": 11 + } + }, + { + "amount": "154.322938489", + "slot": { + "period": 3757406, + "thread": 10 + } + }, + { + "amount": "154.322938486", + "slot": { + "period": 3782301, + "thread": 20 + } + } + ], + "AU12eQqe6WqKwi54A8crZVSsT1wTPnietdcjrtT2UU9TJKRAUB5f6": [ + { + "amount": "468.635261914", + "slot": { + "period": 22873, + "thread": 12 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 220988, + "thread": 1 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 366165, + "thread": 11 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 540464, + "thread": 30 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 798846, + "thread": 31 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 926922, + "thread": 18 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1134433, + "thread": 21 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1214915, + "thread": 11 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1430093, + "thread": 21 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1564700, + "thread": 10 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1708152, + "thread": 31 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 1842049, + "thread": 14 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2012676, + "thread": 11 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2232059, + "thread": 17 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2361603, + "thread": 1 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2605899, + "thread": 15 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2724117, + "thread": 2 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 2874549, + "thread": 8 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 3121087, + "thread": 29 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 3164658, + "thread": 15 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 3290714, + "thread": 2 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 3617859, + "thread": 16 + } + }, + { + "amount": "468.635261914", + "slot": { + "period": 3623832, + "thread": 17 + } + }, + { + "amount": "468.635261905", + "slot": { + "period": 3883757, + "thread": 14 + } + } + ], + "AU12eR3h81TnoVUUZxiTYqQt1HxMT6rvZPVtEEdbBYei3DYHjfbzL": [ + { + "amount": "71.745179255", + "slot": { + "period": 18608, + "thread": 3 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 215518, + "thread": 30 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 353622, + "thread": 10 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 624090, + "thread": 19 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 688182, + "thread": 26 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 876507, + "thread": 19 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 991645, + "thread": 1 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 1302320, + "thread": 14 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 1327728, + "thread": 2 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 1581115, + "thread": 5 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 1685025, + "thread": 16 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 1885113, + "thread": 15 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2143308, + "thread": 27 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2144970, + "thread": 7 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2378600, + "thread": 15 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2623432, + "thread": 23 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2675786, + "thread": 28 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 2888875, + "thread": 2 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 3100194, + "thread": 5 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 3246667, + "thread": 19 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 3424094, + "thread": 18 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 3484666, + "thread": 20 + } + }, + { + "amount": "71.745179255", + "slot": { + "period": 3755204, + "thread": 20 + } + }, + { + "amount": "71.745179258", + "slot": { + "period": 3812041, + "thread": 31 + } + } + ], + "AU12eRAmcosDztUURsgo39x8du6xxfaCHSYSzMGRfrn79YcQU7b86": [ + { + "amount": "101.168738927", + "slot": { + "period": 23370, + "thread": 16 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 232697, + "thread": 0 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 489545, + "thread": 11 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 506057, + "thread": 0 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 818331, + "thread": 1 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 848887, + "thread": 28 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1043312, + "thread": 12 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1226022, + "thread": 2 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1374738, + "thread": 13 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1599090, + "thread": 13 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1678891, + "thread": 24 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 1952076, + "thread": 8 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2088746, + "thread": 24 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2170763, + "thread": 15 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2434516, + "thread": 0 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2541898, + "thread": 13 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2709475, + "thread": 0 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2936705, + "thread": 2 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 2969235, + "thread": 8 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 3218227, + "thread": 5 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 3294350, + "thread": 2 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 3560747, + "thread": 24 + } + }, + { + "amount": "101.168738927", + "slot": { + "period": 3725646, + "thread": 24 + } + }, + { + "amount": "101.168738930", + "slot": { + "period": 3787403, + "thread": 29 + } + } + ], + "AU12eS7NEUu25dMsF8SEpMVfR8NaEQ9kpU7Ziz8Ncf4eBZ7j68Yko": [ + { + "amount": "188.834140528", + "slot": { + "period": 31674, + "thread": 20 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 232639, + "thread": 31 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 338034, + "thread": 18 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 629698, + "thread": 25 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 742311, + "thread": 2 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 927190, + "thread": 10 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1039457, + "thread": 2 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1304614, + "thread": 29 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1389974, + "thread": 9 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1624474, + "thread": 20 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1683762, + "thread": 4 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 1920628, + "thread": 12 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2036812, + "thread": 12 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2178479, + "thread": 19 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2339808, + "thread": 23 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2522428, + "thread": 17 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2714365, + "thread": 31 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 2946579, + "thread": 2 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 3055504, + "thread": 23 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 3131218, + "thread": 2 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 3295619, + "thread": 3 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 3597216, + "thread": 24 + } + }, + { + "amount": "188.834140528", + "slot": { + "period": 3632502, + "thread": 25 + } + }, + { + "amount": "188.834140518", + "slot": { + "period": 3900462, + "thread": 8 + } + } + ], + "AU12eTdMm3mhwxcyLnYHyS54ugbtNr3xdRL3F7HnaZa7bP3PDRtzk": [ + { + "amount": "144.890599468", + "slot": { + "period": 83445, + "thread": 11 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 179852, + "thread": 20 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 415772, + "thread": 19 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 586486, + "thread": 18 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 717164, + "thread": 26 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 878988, + "thread": 19 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1015909, + "thread": 27 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1272641, + "thread": 6 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1368841, + "thread": 11 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1540588, + "thread": 24 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1680157, + "thread": 22 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 1849293, + "thread": 3 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2139509, + "thread": 14 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2278295, + "thread": 30 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2388578, + "thread": 1 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2507341, + "thread": 30 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2719109, + "thread": 0 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2870553, + "thread": 11 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 2962682, + "thread": 15 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 3231518, + "thread": 13 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 3331388, + "thread": 23 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 3527901, + "thread": 29 + } + }, + { + "amount": "144.890599468", + "slot": { + "period": 3646104, + "thread": 9 + } + }, + { + "amount": "144.890599467", + "slot": { + "period": 3843029, + "thread": 11 + } + } + ], + "AU12eTeaCLANBVp1X9rU3HXXNFfXmeRX2rpxR3hNsmq8cZ19BmF8U": [ + { + "amount": "527.220581893", + "slot": { + "period": 154389, + "thread": 30 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 244231, + "thread": 17 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 479515, + "thread": 26 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 614006, + "thread": 31 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 681906, + "thread": 28 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 922951, + "thread": 4 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1113536, + "thread": 4 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1247569, + "thread": 16 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1373869, + "thread": 17 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1612432, + "thread": 3 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1669369, + "thread": 21 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1938475, + "thread": 6 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 1987250, + "thread": 9 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 2155028, + "thread": 7 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 2461122, + "thread": 9 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 2500742, + "thread": 2 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 2660738, + "thread": 16 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 2836746, + "thread": 30 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 3100341, + "thread": 8 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 3248443, + "thread": 18 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 3409667, + "thread": 31 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 3567545, + "thread": 22 + } + }, + { + "amount": "527.220581893", + "slot": { + "period": 3635083, + "thread": 9 + } + }, + { + "amount": "527.220581900", + "slot": { + "period": 3855082, + "thread": 14 + } + } + ], + "AU12eThoTSS7kFjHvAZ1ikyP7NAawQQ124sswDVrfFyWXwzbNwLn3": [ + { + "amount": "86.727928423", + "slot": { + "period": 64106, + "thread": 27 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 318547, + "thread": 11 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 461511, + "thread": 18 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 506279, + "thread": 18 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 762178, + "thread": 27 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 859695, + "thread": 10 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1103597, + "thread": 4 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1184761, + "thread": 2 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1347002, + "thread": 6 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1631855, + "thread": 12 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1796949, + "thread": 3 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 1941352, + "thread": 3 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2091517, + "thread": 1 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2227419, + "thread": 3 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2387936, + "thread": 3 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2474518, + "thread": 19 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2697562, + "thread": 18 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 2934513, + "thread": 23 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 3094695, + "thread": 6 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 3250639, + "thread": 18 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 3366909, + "thread": 5 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 3461321, + "thread": 20 + } + }, + { + "amount": "86.727928423", + "slot": { + "period": 3668129, + "thread": 8 + } + }, + { + "amount": "86.727928422", + "slot": { + "period": 3925800, + "thread": 16 + } + } + ], + "AU12eU7tiApw7CWF5x2Kkens2VRZ7rALkz1t32rZ5xQUGc2xfrKgS": [ + { + "amount": "452.648886381", + "slot": { + "period": 69827, + "thread": 11 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 304300, + "thread": 9 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 416539, + "thread": 5 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 553541, + "thread": 21 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 801094, + "thread": 9 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 843411, + "thread": 23 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1049224, + "thread": 22 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1283412, + "thread": 11 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1435103, + "thread": 31 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1482679, + "thread": 3 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1783328, + "thread": 26 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1859392, + "thread": 17 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 1998293, + "thread": 8 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 2178433, + "thread": 22 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 2428149, + "thread": 8 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 2477438, + "thread": 3 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 2720111, + "thread": 21 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 2808295, + "thread": 16 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 3054120, + "thread": 24 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 3197148, + "thread": 17 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 3378820, + "thread": 19 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 3480485, + "thread": 22 + } + }, + { + "amount": "452.648886381", + "slot": { + "period": 3653283, + "thread": 22 + } + }, + { + "amount": "452.648886383", + "slot": { + "period": 3800087, + "thread": 26 + } + } + ], + "AU12eUPnpXqyKrfXMezi4VjitUZz2zKipPoYbLV7hu5SEjuiKpgbC": [ + { + "amount": "203.368309458", + "slot": { + "period": 60565, + "thread": 24 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 238235, + "thread": 21 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 463524, + "thread": 22 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 602957, + "thread": 18 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 757316, + "thread": 4 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 923223, + "thread": 30 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1101982, + "thread": 17 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1170009, + "thread": 19 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1440078, + "thread": 19 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1615312, + "thread": 6 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1676048, + "thread": 10 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 1815529, + "thread": 9 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2122522, + "thread": 29 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2156143, + "thread": 23 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2409410, + "thread": 6 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2579290, + "thread": 21 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2652094, + "thread": 17 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2836565, + "thread": 26 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 2980864, + "thread": 3 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 3287916, + "thread": 6 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 3288718, + "thread": 29 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 3502641, + "thread": 1 + } + }, + { + "amount": "203.368309458", + "slot": { + "period": 3722342, + "thread": 19 + } + }, + { + "amount": "203.368309455", + "slot": { + "period": 3908115, + "thread": 15 + } + } + ], + "AU12eUspJwNShDJM5RkdYZRY1Dc4rPbRxTEgrb1VxfjKUbhk3vDA5": [ + { + "amount": "315.479635047", + "slot": { + "period": 153661, + "thread": 11 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 293962, + "thread": 24 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 374664, + "thread": 7 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 514626, + "thread": 16 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 723287, + "thread": 31 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 935003, + "thread": 7 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1027645, + "thread": 14 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1153304, + "thread": 30 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1353126, + "thread": 16 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1508642, + "thread": 0 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1797184, + "thread": 27 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1889458, + "thread": 15 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 1991084, + "thread": 1 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 2178082, + "thread": 11 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 2353995, + "thread": 30 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 2556712, + "thread": 18 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 2751939, + "thread": 4 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 2888570, + "thread": 6 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 3117994, + "thread": 12 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 3287399, + "thread": 9 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 3362562, + "thread": 28 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 3572619, + "thread": 24 + } + }, + { + "amount": "315.479635047", + "slot": { + "period": 3755701, + "thread": 13 + } + }, + { + "amount": "315.479635056", + "slot": { + "period": 3903672, + "thread": 1 + } + } + ], + "AU12eVrVnNbit2kfiQdyG7ZHrj56SwR5u972rkQXt3DTs9n8KB8Lq": [ + { + "amount": "62.501199106", + "slot": { + "period": 21150, + "thread": 13 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 200361, + "thread": 13 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 443389, + "thread": 19 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 505033, + "thread": 16 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 729086, + "thread": 1 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 872676, + "thread": 16 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1016018, + "thread": 29 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1197128, + "thread": 16 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1464260, + "thread": 15 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1518400, + "thread": 6 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1767699, + "thread": 11 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 1874013, + "thread": 30 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2057327, + "thread": 22 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2281014, + "thread": 5 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2378632, + "thread": 21 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2533975, + "thread": 14 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2695232, + "thread": 29 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 2952114, + "thread": 18 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 3063093, + "thread": 9 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 3234208, + "thread": 1 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 3383085, + "thread": 4 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 3521046, + "thread": 28 + } + }, + { + "amount": "62.501199106", + "slot": { + "period": 3619931, + "thread": 31 + } + }, + { + "amount": "62.501199099", + "slot": { + "period": 3797951, + "thread": 9 + } + } + ], + "AU12eW62SQQR1Q1qTKzaNg5Mg1hMHc4fRnZHMD2cGg5RuWJPaBXDz": [ + { + "amount": "530.875605531", + "slot": { + "period": 149653, + "thread": 31 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 198605, + "thread": 9 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 408669, + "thread": 22 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 641326, + "thread": 16 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 660591, + "thread": 22 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 967358, + "thread": 7 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 994461, + "thread": 14 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 1177023, + "thread": 31 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 1385500, + "thread": 5 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 1633937, + "thread": 17 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 1650125, + "thread": 11 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 1943204, + "thread": 5 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2079719, + "thread": 5 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2237709, + "thread": 12 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2440155, + "thread": 17 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2532346, + "thread": 29 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2645763, + "thread": 9 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 2846877, + "thread": 26 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3005720, + "thread": 2 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3229645, + "thread": 4 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3356031, + "thread": 29 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3602444, + "thread": 22 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3699436, + "thread": 23 + } + }, + { + "amount": "530.875605531", + "slot": { + "period": 3873717, + "thread": 15 + } + } + ], + "AU12eWWSa6AnmdJVFxqFqveMAZRBhZNBt5gscTgDCecyJ2JuiLDh8": [ + { + "amount": "88.832053731", + "slot": { + "period": 121903, + "thread": 20 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 281627, + "thread": 17 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 341185, + "thread": 24 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 625677, + "thread": 21 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 680268, + "thread": 20 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 823850, + "thread": 24 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1043823, + "thread": 10 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1317317, + "thread": 11 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1335655, + "thread": 30 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1599743, + "thread": 16 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1746770, + "thread": 20 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1888038, + "thread": 20 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 1987896, + "thread": 14 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 2199499, + "thread": 3 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 2379868, + "thread": 14 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 2478979, + "thread": 25 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 2729053, + "thread": 21 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 2792891, + "thread": 6 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 3086920, + "thread": 16 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 3265548, + "thread": 16 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 3406985, + "thread": 1 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 3469513, + "thread": 11 + } + }, + { + "amount": "88.832053731", + "slot": { + "period": 3671632, + "thread": 22 + } + }, + { + "amount": "88.832053736", + "slot": { + "period": 3892366, + "thread": 20 + } + } + ], + "AU12eWk64xh1nV59RdCnru4WjR5USRJraNQS2PSh43Bg7Qq1ZjuUs": [ + { + "amount": "236.626830709", + "slot": { + "period": 80777, + "thread": 25 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 171182, + "thread": 14 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 397873, + "thread": 8 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 543599, + "thread": 6 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 725468, + "thread": 31 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 935121, + "thread": 18 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1044788, + "thread": 0 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1196299, + "thread": 26 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1388110, + "thread": 0 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1562712, + "thread": 20 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1772789, + "thread": 13 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 1919477, + "thread": 11 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2062798, + "thread": 15 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2287499, + "thread": 7 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2329152, + "thread": 2 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2622413, + "thread": 7 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2711413, + "thread": 7 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 2918851, + "thread": 18 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 3113052, + "thread": 28 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 3214878, + "thread": 14 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 3365035, + "thread": 12 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 3470094, + "thread": 29 + } + }, + { + "amount": "236.626830709", + "slot": { + "period": 3665373, + "thread": 27 + } + }, + { + "amount": "236.626830714", + "slot": { + "period": 3861554, + "thread": 12 + } + } + ], + "AU12eZ55QP7vguJDAwvUgibMb72oNiRWRFKby2pdiTsBsANfy2aV": [ + { + "amount": "165.814760587", + "slot": { + "period": 107913, + "thread": 16 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 297713, + "thread": 13 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 453024, + "thread": 12 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 493296, + "thread": 23 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 717978, + "thread": 15 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 876333, + "thread": 23 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 989329, + "thread": 3 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1230379, + "thread": 0 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1422668, + "thread": 31 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1559193, + "thread": 17 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1718793, + "thread": 17 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1894201, + "thread": 27 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 1994825, + "thread": 7 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 2264243, + "thread": 4 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 2307810, + "thread": 3 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 2514995, + "thread": 0 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 2786133, + "thread": 28 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 2811239, + "thread": 21 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 3104365, + "thread": 18 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 3280985, + "thread": 25 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 3444636, + "thread": 26 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 3557981, + "thread": 19 + } + }, + { + "amount": "165.814760587", + "slot": { + "period": 3681944, + "thread": 15 + } + }, + { + "amount": "165.814760595", + "slot": { + "period": 3941615, + "thread": 7 + } + } + ], + "AU12eZdLVBF1hsWKdhc3xdNKQG577XyUBbuw2tx8ufMwYXMxjpjZo": [ + { + "amount": "201.751027798", + "slot": { + "period": 129144, + "thread": 29 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 178502, + "thread": 29 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 451065, + "thread": 4 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 585654, + "thread": 13 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 654111, + "thread": 6 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 930900, + "thread": 15 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1050521, + "thread": 25 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1286571, + "thread": 17 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1414038, + "thread": 17 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1524807, + "thread": 11 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1687302, + "thread": 14 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 1844780, + "thread": 19 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2003018, + "thread": 28 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2287803, + "thread": 22 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2401178, + "thread": 2 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2588297, + "thread": 21 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2692831, + "thread": 3 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2901658, + "thread": 24 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 2994210, + "thread": 29 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 3195764, + "thread": 1 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 3299089, + "thread": 21 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 3596785, + "thread": 7 + } + }, + { + "amount": "201.751027798", + "slot": { + "period": 3737366, + "thread": 6 + } + }, + { + "amount": "201.751027804", + "slot": { + "period": 3933326, + "thread": 11 + } + } + ], + "AU12ebAHCDo4BVYU8mRYKjg4SvAMC3aXE48Q5WUNhMCd42d68bDe6": [ + { + "amount": "112.340796303", + "slot": { + "period": 91115, + "thread": 27 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 253679, + "thread": 5 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 417677, + "thread": 31 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 523543, + "thread": 7 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 698727, + "thread": 1 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 915601, + "thread": 26 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1015569, + "thread": 2 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1215944, + "thread": 28 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1418245, + "thread": 8 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1618163, + "thread": 25 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1798999, + "thread": 22 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 1935818, + "thread": 7 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2138270, + "thread": 3 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2193445, + "thread": 10 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2390281, + "thread": 2 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2518393, + "thread": 20 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2687286, + "thread": 13 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 2942574, + "thread": 1 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 3019741, + "thread": 22 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 3148914, + "thread": 8 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 3380554, + "thread": 9 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 3503234, + "thread": 29 + } + }, + { + "amount": "112.340796303", + "slot": { + "period": 3776662, + "thread": 29 + } + }, + { + "amount": "112.340796301", + "slot": { + "period": 3795891, + "thread": 10 + } + } + ], + "AU12ebUj7d79GxBq3caNNnnJPDiPsV6XkyZ1XDx1rX65Q4HVx92ki": [ + { + "amount": "285.614777645", + "slot": { + "period": 20027, + "thread": 8 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 265020, + "thread": 23 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 426695, + "thread": 5 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 509009, + "thread": 1 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 715052, + "thread": 12 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 891548, + "thread": 25 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1094290, + "thread": 15 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1303460, + "thread": 30 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1323103, + "thread": 31 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1513714, + "thread": 7 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1797977, + "thread": 10 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 1830438, + "thread": 24 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2084545, + "thread": 18 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2258607, + "thread": 19 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2419541, + "thread": 8 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2535791, + "thread": 13 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2754289, + "thread": 10 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2909170, + "thread": 0 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 2955870, + "thread": 28 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 3170732, + "thread": 4 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 3428615, + "thread": 11 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 3529021, + "thread": 28 + } + }, + { + "amount": "285.614777645", + "slot": { + "period": 3704892, + "thread": 31 + } + }, + { + "amount": "285.614777653", + "slot": { + "period": 3859186, + "thread": 31 + } + } + ], + "AU12ehKurkgDhmxpvrTcuS5iQBfqXiUq8HiJSyZZtCKRS4nsNgqYg": [ + { + "amount": "195.058671567", + "slot": { + "period": 128749, + "thread": 4 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 319237, + "thread": 3 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 356626, + "thread": 3 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 520598, + "thread": 16 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 801416, + "thread": 28 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 917625, + "thread": 29 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1075930, + "thread": 12 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1315708, + "thread": 13 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1387381, + "thread": 2 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1511905, + "thread": 22 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1778697, + "thread": 17 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 1943659, + "thread": 20 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2031719, + "thread": 26 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2213301, + "thread": 2 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2302037, + "thread": 18 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2592693, + "thread": 11 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2654036, + "thread": 4 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 2843702, + "thread": 29 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 3113686, + "thread": 28 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 3215632, + "thread": 30 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 3294707, + "thread": 20 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 3586267, + "thread": 25 + } + }, + { + "amount": "195.058671567", + "slot": { + "period": 3776154, + "thread": 7 + } + }, + { + "amount": "195.058671571", + "slot": { + "period": 3917942, + "thread": 15 + } + } + ], + "AU12eia9bMdhV1z3xTW9W71nGmazGAf73YvN4trRHASgbecLrMddF": [ + { + "amount": "209.316019002", + "slot": { + "period": 114165, + "thread": 24 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 254202, + "thread": 22 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 325615, + "thread": 11 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 615959, + "thread": 12 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 783064, + "thread": 30 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 880293, + "thread": 21 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1131385, + "thread": 19 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1227324, + "thread": 0 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1446401, + "thread": 7 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1596912, + "thread": 9 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1719171, + "thread": 27 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 1876955, + "thread": 4 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2053456, + "thread": 27 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2179886, + "thread": 26 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2305872, + "thread": 24 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2579618, + "thread": 22 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2681949, + "thread": 23 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 2936331, + "thread": 17 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 3097752, + "thread": 30 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 3242773, + "thread": 10 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 3376160, + "thread": 25 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 3453748, + "thread": 24 + } + }, + { + "amount": "209.316019002", + "slot": { + "period": 3766213, + "thread": 21 + } + }, + { + "amount": "209.316018993", + "slot": { + "period": 3895307, + "thread": 6 + } + } + ], + "AU12ejV7rcNGT34NF61aK1cKbVDcAyCP6kq7u877pyh1EiQEzLVqH": [ + { + "amount": "519.982372382", + "slot": { + "period": 120297, + "thread": 30 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 296570, + "thread": 20 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 373118, + "thread": 21 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 505629, + "thread": 21 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 743973, + "thread": 28 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 971089, + "thread": 17 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1034109, + "thread": 8 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1292966, + "thread": 0 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1466504, + "thread": 31 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1582700, + "thread": 31 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1714811, + "thread": 15 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 1875094, + "thread": 8 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2131910, + "thread": 19 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2222686, + "thread": 17 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2310566, + "thread": 7 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2566798, + "thread": 19 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2661274, + "thread": 19 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 2900458, + "thread": 17 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 3041393, + "thread": 24 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 3282463, + "thread": 5 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 3300185, + "thread": 9 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 3544603, + "thread": 10 + } + }, + { + "amount": "519.982372382", + "slot": { + "period": 3684876, + "thread": 0 + } + }, + { + "amount": "519.982372384", + "slot": { + "period": 3896527, + "thread": 21 + } + } + ], + "AU12ejyZWD46yJhZ8n7VfqaqFuExAgbAfTCeyZMPPB51SM3dmeeTN": [ + { + "amount": "88.473080767", + "slot": { + "period": 106891, + "thread": 1 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 281604, + "thread": 18 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 484862, + "thread": 9 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 561881, + "thread": 1 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 756395, + "thread": 25 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 922929, + "thread": 1 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1128703, + "thread": 10 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1304599, + "thread": 14 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1317890, + "thread": 15 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1544272, + "thread": 18 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1779129, + "thread": 10 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 1863541, + "thread": 12 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2110512, + "thread": 16 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2287640, + "thread": 25 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2406344, + "thread": 28 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2577704, + "thread": 14 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2727055, + "thread": 11 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 2891485, + "thread": 25 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 3094529, + "thread": 24 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 3263025, + "thread": 12 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 3417511, + "thread": 27 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 3601370, + "thread": 17 + } + }, + { + "amount": "88.473080767", + "slot": { + "period": 3660554, + "thread": 15 + } + }, + { + "amount": "88.473080771", + "slot": { + "period": 3866322, + "thread": 26 + } + } + ], + "AU12eky7gtZis4TTZ9e9d9fp3PkL4GvDP5Tq8Lh4coPhT2JEoS6Nu": [ + { + "amount": "83.038059167", + "slot": { + "period": 104859, + "thread": 24 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 242803, + "thread": 26 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 363303, + "thread": 30 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 552967, + "thread": 5 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 715542, + "thread": 19 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 832265, + "thread": 6 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 983817, + "thread": 10 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 1153433, + "thread": 12 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 1361026, + "thread": 16 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 1558862, + "thread": 9 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 1765526, + "thread": 26 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 1970263, + "thread": 29 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2085003, + "thread": 13 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2225976, + "thread": 31 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2456845, + "thread": 23 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2539715, + "thread": 20 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2659760, + "thread": 18 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 2949135, + "thread": 21 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 3038379, + "thread": 18 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 3136164, + "thread": 0 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 3327864, + "thread": 18 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 3489412, + "thread": 31 + } + }, + { + "amount": "83.038059167", + "slot": { + "period": 3727001, + "thread": 15 + } + }, + { + "amount": "83.038059176", + "slot": { + "period": 3806465, + "thread": 18 + } + } + ], + "AU12eoerDWEzjLGkfqHHeuhYM7qonScDvnu6i5sFvRWxEV7rrWuBe": [ + { + "amount": "331.504473404", + "slot": { + "period": 154623, + "thread": 5 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 193692, + "thread": 23 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 459240, + "thread": 16 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 620242, + "thread": 17 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 792453, + "thread": 15 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 906685, + "thread": 8 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1127145, + "thread": 8 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1179286, + "thread": 28 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1405515, + "thread": 17 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1587286, + "thread": 9 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1666396, + "thread": 1 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 1919248, + "thread": 19 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2011442, + "thread": 22 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2177766, + "thread": 26 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2299425, + "thread": 20 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2555741, + "thread": 6 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2764552, + "thread": 11 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 2841608, + "thread": 31 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 3106315, + "thread": 3 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 3256032, + "thread": 12 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 3295657, + "thread": 3 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 3530173, + "thread": 6 + } + }, + { + "amount": "331.504473404", + "slot": { + "period": 3759189, + "thread": 19 + } + }, + { + "amount": "331.504473408", + "slot": { + "period": 3786601, + "thread": 2 + } + } + ], + "AU12epZ384sbyebuqzD7VcMawmrK27ica81JJ6NE9Mfpn42FnN3hm": [ + { + "amount": "469.147217895", + "slot": { + "period": 130389, + "thread": 7 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 263841, + "thread": 28 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 429158, + "thread": 23 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 500382, + "thread": 20 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 707050, + "thread": 2 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 828606, + "thread": 14 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1037189, + "thread": 11 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1222961, + "thread": 3 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1372824, + "thread": 13 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1645920, + "thread": 8 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1675014, + "thread": 0 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 1849759, + "thread": 24 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2036367, + "thread": 22 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2293503, + "thread": 13 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2444359, + "thread": 31 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2469726, + "thread": 16 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2729718, + "thread": 24 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2813502, + "thread": 26 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 2973681, + "thread": 3 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 3171571, + "thread": 5 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 3424706, + "thread": 6 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 3560450, + "thread": 29 + } + }, + { + "amount": "469.147217895", + "slot": { + "period": 3700722, + "thread": 1 + } + }, + { + "amount": "469.147217898", + "slot": { + "period": 3798808, + "thread": 5 + } + } + ], + "AU12epo2L5mFnYfYUDTZeGYKdxgytMnkN1JdjEjoKh4KprVFSJpZ6": [ + { + "amount": "189.328483419", + "slot": { + "period": 50545, + "thread": 5 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 296925, + "thread": 13 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 441020, + "thread": 13 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 638525, + "thread": 27 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 780329, + "thread": 2 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 842896, + "thread": 24 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1128230, + "thread": 11 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1266679, + "thread": 4 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1453123, + "thread": 17 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1568177, + "thread": 29 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1650294, + "thread": 21 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 1924748, + "thread": 16 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2106057, + "thread": 26 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2280832, + "thread": 30 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2402946, + "thread": 11 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2621767, + "thread": 16 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2656432, + "thread": 13 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 2861013, + "thread": 20 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3070727, + "thread": 25 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3225644, + "thread": 7 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3398325, + "thread": 25 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3574974, + "thread": 20 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3717386, + "thread": 25 + } + }, + { + "amount": "189.328483419", + "slot": { + "period": 3852466, + "thread": 16 + } + } + ], + "AU12eqVhy4S1Wy7yTsjSt1WSY794mBvkVvXu8AzoSEGmRcvZNzhDS": [ + { + "amount": "279.576693580", + "slot": { + "period": 30630, + "thread": 14 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 292162, + "thread": 16 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 373952, + "thread": 21 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 511868, + "thread": 12 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 745413, + "thread": 12 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 915269, + "thread": 22 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1149132, + "thread": 16 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1317366, + "thread": 19 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1442928, + "thread": 21 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1628295, + "thread": 31 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1784549, + "thread": 26 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 1824426, + "thread": 30 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2037968, + "thread": 15 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2277996, + "thread": 21 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2322113, + "thread": 17 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2554871, + "thread": 17 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2742177, + "thread": 29 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 2869109, + "thread": 12 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 3028888, + "thread": 8 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 3155703, + "thread": 11 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 3326615, + "thread": 20 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 3537387, + "thread": 20 + } + }, + { + "amount": "279.576693580", + "slot": { + "period": 3660833, + "thread": 5 + } + }, + { + "amount": "279.576693590", + "slot": { + "period": 3918233, + "thread": 16 + } + } + ], + "AU12eqYWdo5QrH3pdAmCSrgWUL3dtCLroavMwmgnSa1WCVYECJHjw": [ + { + "amount": "194.799233143", + "slot": { + "period": 89931, + "thread": 17 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 250510, + "thread": 21 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 467982, + "thread": 23 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 564327, + "thread": 16 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 812167, + "thread": 4 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 851852, + "thread": 31 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 999711, + "thread": 21 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 1160357, + "thread": 21 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 1446997, + "thread": 8 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 1531885, + "thread": 27 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 1760734, + "thread": 12 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 1929284, + "thread": 27 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2128484, + "thread": 7 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2288417, + "thread": 18 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2459767, + "thread": 12 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2504291, + "thread": 22 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2723997, + "thread": 8 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 2821904, + "thread": 23 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 3090224, + "thread": 11 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 3166257, + "thread": 0 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 3433885, + "thread": 28 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 3481748, + "thread": 30 + } + }, + { + "amount": "194.799233143", + "slot": { + "period": 3708007, + "thread": 6 + } + }, + { + "amount": "194.799233134", + "slot": { + "period": 3837613, + "thread": 20 + } + } + ], + "AU12er9fxT77L4XBavqKJnXaam9mXKAvZdereYMV65nKABm62kkj": [ + { + "amount": "137.482628632", + "slot": { + "period": 89136, + "thread": 29 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 314281, + "thread": 24 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 481318, + "thread": 0 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 573424, + "thread": 8 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 811199, + "thread": 15 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 822968, + "thread": 24 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1111311, + "thread": 1 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1233240, + "thread": 8 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1444391, + "thread": 31 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1493081, + "thread": 1 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1740925, + "thread": 11 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 1853295, + "thread": 9 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2034409, + "thread": 4 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2196783, + "thread": 4 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2334283, + "thread": 18 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2510694, + "thread": 10 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2775038, + "thread": 7 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 2849295, + "thread": 12 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 3105556, + "thread": 14 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 3238633, + "thread": 19 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 3377985, + "thread": 28 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 3455372, + "thread": 30 + } + }, + { + "amount": "137.482628632", + "slot": { + "period": 3745932, + "thread": 20 + } + }, + { + "amount": "137.482628620", + "slot": { + "period": 3829368, + "thread": 14 + } + } + ], + "AU12erYaU1pYbwxofoL3ZyQZGndFbHJbGNsVeTT7xQNCWt4SbBweD": [ + { + "amount": "484.495004281", + "slot": { + "period": 118662, + "thread": 26 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 244893, + "thread": 17 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 441279, + "thread": 26 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 618030, + "thread": 30 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 779747, + "thread": 28 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 851131, + "thread": 23 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1006916, + "thread": 13 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1245933, + "thread": 28 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1473030, + "thread": 24 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1556293, + "thread": 22 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1661396, + "thread": 8 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 1921134, + "thread": 31 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2022254, + "thread": 7 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2172340, + "thread": 2 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2352578, + "thread": 14 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2606896, + "thread": 13 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2675128, + "thread": 18 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 2837946, + "thread": 17 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 3037776, + "thread": 9 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 3181074, + "thread": 19 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 3319479, + "thread": 28 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 3509981, + "thread": 12 + } + }, + { + "amount": "484.495004281", + "slot": { + "period": 3706098, + "thread": 26 + } + }, + { + "amount": "484.495004272", + "slot": { + "period": 3863372, + "thread": 12 + } + } + ], + "AU12esQa7Nc7k6Qvu52JQVXuzQXc1U57vpaQLPsUwaXqRB5KiWMFY": [ + { + "amount": "128.871555665", + "slot": { + "period": 87560, + "thread": 15 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 311599, + "thread": 24 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 351774, + "thread": 7 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 607701, + "thread": 23 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 772632, + "thread": 16 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 871390, + "thread": 23 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1016301, + "thread": 20 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1181623, + "thread": 31 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1413412, + "thread": 31 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1615771, + "thread": 18 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1730994, + "thread": 0 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 1918690, + "thread": 7 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2079292, + "thread": 16 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2181376, + "thread": 21 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2399849, + "thread": 12 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2490604, + "thread": 20 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2708810, + "thread": 12 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2874749, + "thread": 14 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 2954429, + "thread": 23 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 3287512, + "thread": 29 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 3340742, + "thread": 5 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 3551779, + "thread": 26 + } + }, + { + "amount": "128.871555665", + "slot": { + "period": 3766691, + "thread": 24 + } + }, + { + "amount": "128.871555666", + "slot": { + "period": 3879016, + "thread": 26 + } + } + ], + "AU12esu2S4bXy1u1CowpnrAbtaSV2Npf533zwconpU51Bepif5sPY": [ + { + "amount": "275.083282377", + "slot": { + "period": 11274, + "thread": 9 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 241573, + "thread": 14 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 427167, + "thread": 18 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 517040, + "thread": 17 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 726693, + "thread": 28 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 919562, + "thread": 0 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1011715, + "thread": 14 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1157748, + "thread": 19 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1317713, + "thread": 15 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1616764, + "thread": 11 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1710144, + "thread": 13 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 1833306, + "thread": 16 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2066075, + "thread": 27 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2203511, + "thread": 10 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2383179, + "thread": 2 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2504174, + "thread": 25 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2707930, + "thread": 27 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2856704, + "thread": 15 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 2972642, + "thread": 0 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 3155324, + "thread": 0 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 3401252, + "thread": 0 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 3452480, + "thread": 5 + } + }, + { + "amount": "275.083282377", + "slot": { + "period": 3668974, + "thread": 20 + } + }, + { + "amount": "275.083282371", + "slot": { + "period": 3938634, + "thread": 10 + } + } + ], + "AU12etGvekJdzezxY6eqGbugn6CkifrodiZvuh23QHtzsuSyy1wt2": [ + { + "amount": "151.318513528", + "slot": { + "period": 82032, + "thread": 15 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 308994, + "thread": 12 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 378860, + "thread": 2 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 511576, + "thread": 19 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 776723, + "thread": 11 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 917176, + "thread": 22 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1053064, + "thread": 11 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1156814, + "thread": 5 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1336900, + "thread": 27 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1616807, + "thread": 24 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1714903, + "thread": 15 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 1935795, + "thread": 14 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2039037, + "thread": 5 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2274371, + "thread": 6 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2333555, + "thread": 22 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2519976, + "thread": 20 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2639743, + "thread": 26 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 2904439, + "thread": 12 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 3052325, + "thread": 27 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 3152300, + "thread": 7 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 3368050, + "thread": 16 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 3482477, + "thread": 17 + } + }, + { + "amount": "151.318513528", + "slot": { + "period": 3737512, + "thread": 1 + } + }, + { + "amount": "151.318513527", + "slot": { + "period": 3833973, + "thread": 14 + } + } + ], + "AU12etW3Gs9ZnhEkwjPPS1eyjkYhgPyGymYt7SUhHs4LWMNdufXZ7": [ + { + "amount": "191.814910584", + "slot": { + "period": 150099, + "thread": 4 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 174382, + "thread": 22 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 474601, + "thread": 18 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 498786, + "thread": 6 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 739867, + "thread": 11 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 937830, + "thread": 14 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1023358, + "thread": 18 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1214185, + "thread": 4 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1372135, + "thread": 3 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1642705, + "thread": 29 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1782061, + "thread": 19 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1836241, + "thread": 7 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 1995736, + "thread": 19 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2258288, + "thread": 0 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2355080, + "thread": 23 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2492916, + "thread": 7 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2698428, + "thread": 2 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2939598, + "thread": 0 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 2958168, + "thread": 28 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 3158495, + "thread": 4 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 3395666, + "thread": 25 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 3617023, + "thread": 4 + } + }, + { + "amount": "191.814910584", + "slot": { + "period": 3730115, + "thread": 19 + } + }, + { + "amount": "191.814910594", + "slot": { + "period": 3940155, + "thread": 9 + } + } + ], + "AU12euFPBT86i2iq4y69mzaNyz6JCoJtd9doGcMoPCgAZJGDYDGLa": [ + { + "amount": "532.183904088", + "slot": { + "period": 92108, + "thread": 29 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 177936, + "thread": 23 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 371665, + "thread": 19 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 648424, + "thread": 17 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 769565, + "thread": 18 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 902709, + "thread": 12 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1097362, + "thread": 18 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1309498, + "thread": 17 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1396578, + "thread": 7 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1591955, + "thread": 22 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1726894, + "thread": 19 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 1941743, + "thread": 0 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2068397, + "thread": 1 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2189149, + "thread": 9 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2443261, + "thread": 19 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2468223, + "thread": 24 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2784812, + "thread": 14 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 2944716, + "thread": 17 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3030869, + "thread": 28 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3284073, + "thread": 22 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3424619, + "thread": 9 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3608909, + "thread": 22 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3693297, + "thread": 18 + } + }, + { + "amount": "532.183904088", + "slot": { + "period": 3883128, + "thread": 3 + } + } + ], + "AU12euqMEtBFujd8uLaBurDHgRBLwJhNCrbhY8uEuKnGHHLuePmEf": [ + { + "amount": "260.553298007", + "slot": { + "period": 139507, + "thread": 25 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 279580, + "thread": 24 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 419725, + "thread": 15 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 619679, + "thread": 19 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 700162, + "thread": 17 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 827389, + "thread": 10 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1091072, + "thread": 3 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1208922, + "thread": 21 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1403586, + "thread": 20 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1641948, + "thread": 18 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1806769, + "thread": 20 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 1828138, + "thread": 11 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2003671, + "thread": 23 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2151626, + "thread": 23 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2353537, + "thread": 23 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2543247, + "thread": 16 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2672977, + "thread": 18 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 2910758, + "thread": 28 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 3020901, + "thread": 18 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 3183808, + "thread": 16 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 3427060, + "thread": 31 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 3473108, + "thread": 19 + } + }, + { + "amount": "260.553298007", + "slot": { + "period": 3660925, + "thread": 5 + } + }, + { + "amount": "260.553298016", + "slot": { + "period": 3892124, + "thread": 2 + } + } + ], + "AU12eus7qNushsP5RacTjjJCtXCXpfJaQs5JKKMSPNoGW4DZnuniP": [ + { + "amount": "72.331982366", + "slot": { + "period": 34415, + "thread": 10 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 213196, + "thread": 20 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 335537, + "thread": 14 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 548840, + "thread": 13 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 769281, + "thread": 12 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 890469, + "thread": 23 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1009221, + "thread": 6 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1214836, + "thread": 4 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1454444, + "thread": 13 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1534563, + "thread": 30 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1753937, + "thread": 18 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 1826570, + "thread": 29 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2139300, + "thread": 24 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2193651, + "thread": 0 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2462069, + "thread": 8 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2551301, + "thread": 30 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2688191, + "thread": 0 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2821648, + "thread": 27 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 2976281, + "thread": 26 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 3266049, + "thread": 24 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 3403005, + "thread": 1 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 3491281, + "thread": 29 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 3746709, + "thread": 14 + } + }, + { + "amount": "72.331982366", + "slot": { + "period": 3823016, + "thread": 22 + } + } + ], + "AU12evpHd53g85ZgAs7FWWckae9SA6ZvqiiTukQzGTUSuxc4TdD4L": [ + { + "amount": "515.433423601", + "slot": { + "period": 59584, + "thread": 29 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 198547, + "thread": 10 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 458334, + "thread": 7 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 498571, + "thread": 22 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 746906, + "thread": 14 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 914961, + "thread": 21 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1012048, + "thread": 28 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1186027, + "thread": 30 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1465046, + "thread": 15 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1547376, + "thread": 10 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1768249, + "thread": 3 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 1936919, + "thread": 10 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2091263, + "thread": 26 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2172862, + "thread": 31 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2455060, + "thread": 23 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2565192, + "thread": 10 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2754107, + "thread": 18 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 2934735, + "thread": 27 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 3030512, + "thread": 30 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 3213932, + "thread": 25 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 3312594, + "thread": 11 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 3453505, + "thread": 16 + } + }, + { + "amount": "515.433423601", + "slot": { + "period": 3709874, + "thread": 2 + } + }, + { + "amount": "515.433423600", + "slot": { + "period": 3883989, + "thread": 9 + } + } + ], + "AU12ewjdNxWMFGKyy7MQDkN3vEfSXgM4kvwmmCtc2MSwjWe37P1MQ": [ + { + "amount": "88.126824219", + "slot": { + "period": 88218, + "thread": 15 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 197997, + "thread": 14 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 338095, + "thread": 7 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 584870, + "thread": 0 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 715105, + "thread": 3 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 831919, + "thread": 19 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1138935, + "thread": 14 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1254925, + "thread": 1 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1391399, + "thread": 31 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1587051, + "thread": 24 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1746255, + "thread": 28 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 1817463, + "thread": 30 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2132283, + "thread": 21 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2246825, + "thread": 22 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2339036, + "thread": 25 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2544017, + "thread": 24 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2681865, + "thread": 29 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 2816073, + "thread": 24 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 3071370, + "thread": 5 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 3134383, + "thread": 29 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 3434526, + "thread": 0 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 3542431, + "thread": 17 + } + }, + { + "amount": "88.126824219", + "slot": { + "period": 3705784, + "thread": 19 + } + }, + { + "amount": "88.126824218", + "slot": { + "period": 3941263, + "thread": 4 + } + } + ], + "AU12ewnY5fMffUqrsfCkFKm8UQWgUtHDEfVu27eSRZXLQgTyYX37z": [ + { + "amount": "51.427203043", + "slot": { + "period": 54846, + "thread": 12 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 257443, + "thread": 20 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 428158, + "thread": 16 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 640141, + "thread": 3 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 728256, + "thread": 23 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 952978, + "thread": 14 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1088757, + "thread": 2 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1237189, + "thread": 26 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1390852, + "thread": 19 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1496008, + "thread": 19 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1700239, + "thread": 0 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 1902716, + "thread": 28 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2089615, + "thread": 19 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2216592, + "thread": 28 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2316940, + "thread": 5 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2508027, + "thread": 4 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2784099, + "thread": 22 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 2930307, + "thread": 30 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 3066810, + "thread": 0 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 3210273, + "thread": 22 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 3407118, + "thread": 6 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 3541018, + "thread": 15 + } + }, + { + "amount": "51.427203043", + "slot": { + "period": 3629258, + "thread": 14 + } + }, + { + "amount": "51.427203053", + "slot": { + "period": 3908212, + "thread": 4 + } + } + ], + "AU12exEyczfpSGpEiRY97ZwxgJ4U41VwLfQVVujj7EEdEqwCrCKy9": [ + { + "amount": "271.214638464", + "slot": { + "period": 128216, + "thread": 27 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 172589, + "thread": 7 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 405264, + "thread": 2 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 520657, + "thread": 11 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 745942, + "thread": 16 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 977864, + "thread": 14 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1002363, + "thread": 19 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1300918, + "thread": 11 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1386935, + "thread": 1 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1640214, + "thread": 25 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1757394, + "thread": 31 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 1937233, + "thread": 14 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2054206, + "thread": 27 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2205055, + "thread": 31 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2447065, + "thread": 25 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2476156, + "thread": 24 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2653259, + "thread": 3 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2883900, + "thread": 15 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 2975924, + "thread": 2 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 3138304, + "thread": 1 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 3373142, + "thread": 21 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 3536072, + "thread": 28 + } + }, + { + "amount": "271.214638464", + "slot": { + "period": 3664394, + "thread": 18 + } + }, + { + "amount": "271.214638471", + "slot": { + "period": 3885120, + "thread": 27 + } + } + ], + "AU12eyCC4JuV7VWr4tsvrVL8xE5FCu9NzGQ5U5jod6mhGrx1MdoF": [ + { + "amount": "70.409990346", + "slot": { + "period": 167018, + "thread": 7 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 274807, + "thread": 25 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 447728, + "thread": 10 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 569095, + "thread": 31 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 780623, + "thread": 6 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 911334, + "thread": 23 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1143677, + "thread": 13 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1280030, + "thread": 26 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1341954, + "thread": 20 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1556921, + "thread": 10 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1765312, + "thread": 12 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 1965602, + "thread": 2 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2128762, + "thread": 2 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2271232, + "thread": 1 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2368238, + "thread": 13 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2594819, + "thread": 22 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2645852, + "thread": 16 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 2876156, + "thread": 2 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 3069008, + "thread": 22 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 3145123, + "thread": 11 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 3364860, + "thread": 7 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 3595846, + "thread": 3 + } + }, + { + "amount": "70.409990346", + "slot": { + "period": 3760753, + "thread": 0 + } + }, + { + "amount": "70.409990338", + "slot": { + "period": 3794029, + "thread": 6 + } + } + ], + "AU12eyZV6iN6FnCmmcQ9vRa5t5k586kWbA4VQyxoyyPnXgtT9bgRE": [ + { + "amount": "484.203749452", + "slot": { + "period": 164143, + "thread": 13 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 316662, + "thread": 12 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 359218, + "thread": 18 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 577613, + "thread": 14 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 726578, + "thread": 10 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 846795, + "thread": 1 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1100056, + "thread": 20 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1281445, + "thread": 25 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1367315, + "thread": 12 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1515724, + "thread": 23 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1720823, + "thread": 23 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 1965748, + "thread": 21 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2066223, + "thread": 22 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2175996, + "thread": 20 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2374576, + "thread": 5 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2563191, + "thread": 3 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2648961, + "thread": 8 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2894178, + "thread": 0 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 2979838, + "thread": 10 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 3177262, + "thread": 14 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 3385924, + "thread": 0 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 3543037, + "thread": 4 + } + }, + { + "amount": "484.203749452", + "slot": { + "period": 3705766, + "thread": 18 + } + }, + { + "amount": "484.203749451", + "slot": { + "period": 3890524, + "thread": 31 + } + } + ], + "AU12ezbnE7nePN4wPup7s3KotUgQHgt3jiJNkBdZqyXy1RgErYzkg": [ + { + "amount": "198.902242100", + "slot": { + "period": 36907, + "thread": 3 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 226856, + "thread": 10 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 465027, + "thread": 21 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 565063, + "thread": 24 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 769095, + "thread": 14 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 884156, + "thread": 23 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1133970, + "thread": 4 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1171216, + "thread": 22 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1457834, + "thread": 27 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1613709, + "thread": 4 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1664708, + "thread": 0 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1816539, + "thread": 6 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 1994825, + "thread": 9 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2288691, + "thread": 5 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2419607, + "thread": 18 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2605018, + "thread": 20 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2658306, + "thread": 5 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2850408, + "thread": 19 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 2956142, + "thread": 1 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 3165697, + "thread": 9 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 3383225, + "thread": 12 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 3464702, + "thread": 12 + } + }, + { + "amount": "198.902242100", + "slot": { + "period": 3741479, + "thread": 30 + } + }, + { + "amount": "198.902242088", + "slot": { + "period": 3880436, + "thread": 7 + } + } + ], + "AU12f1GfJPFs7o5n5spiVReWVdfnL77owf5C1aGhRiFTECMXUrY65": [ + { + "amount": "427.587304859", + "slot": { + "period": 31182, + "thread": 13 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 302808, + "thread": 20 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 486015, + "thread": 5 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 566621, + "thread": 4 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 757278, + "thread": 29 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 925772, + "thread": 9 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1137356, + "thread": 29 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1220343, + "thread": 5 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1408043, + "thread": 15 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1597706, + "thread": 26 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1755879, + "thread": 5 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1849366, + "thread": 16 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 1992289, + "thread": 1 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 2202081, + "thread": 31 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 2416242, + "thread": 27 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 2466825, + "thread": 9 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 2760501, + "thread": 23 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 2920469, + "thread": 1 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 3079228, + "thread": 27 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 3239136, + "thread": 6 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 3422589, + "thread": 27 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 3536097, + "thread": 14 + } + }, + { + "amount": "427.587304859", + "slot": { + "period": 3686800, + "thread": 14 + } + }, + { + "amount": "427.587304869", + "slot": { + "period": 3946347, + "thread": 10 + } + } + ], + "AU12f1aAL2imJYCDm4BbZN5GewCanmwdEAdBbEBDR69uaRRGZNiPA": [ + { + "amount": "107.842433018", + "slot": { + "period": 24111, + "thread": 16 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 268319, + "thread": 5 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 329340, + "thread": 18 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 560258, + "thread": 1 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 686049, + "thread": 20 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 857984, + "thread": 8 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1075446, + "thread": 16 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1292422, + "thread": 30 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1380103, + "thread": 23 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1579549, + "thread": 30 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1793145, + "thread": 1 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 1819415, + "thread": 27 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2013787, + "thread": 31 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2164037, + "thread": 31 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2405099, + "thread": 31 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2623878, + "thread": 29 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2737842, + "thread": 20 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 2934393, + "thread": 2 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 3047877, + "thread": 0 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 3178919, + "thread": 8 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 3312967, + "thread": 16 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 3487674, + "thread": 23 + } + }, + { + "amount": "107.842433018", + "slot": { + "period": 3640788, + "thread": 22 + } + }, + { + "amount": "107.842433019", + "slot": { + "period": 3822896, + "thread": 9 + } + } + ], + "AU12f2fjrTsWSeYdSr2KfkioKs7mqPbm1pQXDsdMuCg1iJQXKWTBp": [ + { + "amount": "70.530219373", + "slot": { + "period": 154459, + "thread": 7 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 259863, + "thread": 20 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 433940, + "thread": 25 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 594742, + "thread": 24 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 656979, + "thread": 3 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 823645, + "thread": 11 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1090945, + "thread": 21 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1303210, + "thread": 30 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1330357, + "thread": 9 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1499064, + "thread": 20 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1712724, + "thread": 2 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 1859137, + "thread": 21 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2106673, + "thread": 28 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2293904, + "thread": 31 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2427595, + "thread": 25 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2614971, + "thread": 0 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2747777, + "thread": 25 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 2909082, + "thread": 28 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 3101804, + "thread": 10 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 3125402, + "thread": 4 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 3388627, + "thread": 28 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 3609176, + "thread": 12 + } + }, + { + "amount": "70.530219373", + "slot": { + "period": 3651516, + "thread": 23 + } + }, + { + "amount": "70.530219376", + "slot": { + "period": 3850065, + "thread": 2 + } + } + ], + "AU12f2upbvhKPUevxxV1EuhhXgSRE1YvFEMYawqKerPqXsMHX6RsP": [ + { + "amount": "142.684724688", + "slot": { + "period": 86489, + "thread": 14 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 263249, + "thread": 1 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 485060, + "thread": 1 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 516286, + "thread": 21 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 815290, + "thread": 27 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 869351, + "thread": 16 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1088881, + "thread": 27 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1179397, + "thread": 17 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1320255, + "thread": 5 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1581876, + "thread": 26 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1668157, + "thread": 13 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 1889093, + "thread": 23 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2065670, + "thread": 12 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2275079, + "thread": 5 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2342988, + "thread": 27 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2516229, + "thread": 15 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2778715, + "thread": 23 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 2830369, + "thread": 12 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 3068074, + "thread": 3 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 3156901, + "thread": 28 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 3380635, + "thread": 7 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 3472147, + "thread": 31 + } + }, + { + "amount": "142.684724688", + "slot": { + "period": 3683396, + "thread": 27 + } + }, + { + "amount": "142.684724699", + "slot": { + "period": 3829444, + "thread": 21 + } + } + ], + "AU12f3eiwNgL9gwztu8or6rqtmbu8NzTWzVqXvknKy6FBHttnExtQ": [ + { + "amount": "383.057955929", + "slot": { + "period": 18818, + "thread": 1 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 194980, + "thread": 4 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 444677, + "thread": 5 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 583202, + "thread": 18 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 696593, + "thread": 23 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 950568, + "thread": 8 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1000481, + "thread": 20 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1304330, + "thread": 22 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1397238, + "thread": 8 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1633037, + "thread": 13 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1697408, + "thread": 29 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1964398, + "thread": 25 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 1994612, + "thread": 23 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 2202376, + "thread": 1 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 2436473, + "thread": 25 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 2528811, + "thread": 8 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 2686612, + "thread": 0 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 2951848, + "thread": 20 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 3076380, + "thread": 1 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 3225784, + "thread": 31 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 3324838, + "thread": 8 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 3597338, + "thread": 29 + } + }, + { + "amount": "383.057955929", + "slot": { + "period": 3711203, + "thread": 19 + } + }, + { + "amount": "383.057955922", + "slot": { + "period": 3902788, + "thread": 2 + } + } + ], + "AU12f4CyQy6T9y7yaeiQbyjiV29tbu9PCL86JruDaqBQGPunDyGyG": [ + { + "amount": "81.986986615", + "slot": { + "period": 68633, + "thread": 26 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 319846, + "thread": 0 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 422447, + "thread": 13 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 599528, + "thread": 24 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 714261, + "thread": 18 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 971759, + "thread": 20 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1047129, + "thread": 5 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1165459, + "thread": 4 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1328621, + "thread": 28 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1479978, + "thread": 7 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1701011, + "thread": 17 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 1841771, + "thread": 5 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2133565, + "thread": 9 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2217602, + "thread": 12 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2317883, + "thread": 18 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2552887, + "thread": 11 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2624618, + "thread": 4 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2819052, + "thread": 1 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 2959984, + "thread": 17 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 3223553, + "thread": 21 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 3385341, + "thread": 1 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 3576120, + "thread": 14 + } + }, + { + "amount": "81.986986615", + "slot": { + "period": 3730384, + "thread": 3 + } + }, + { + "amount": "81.986986617", + "slot": { + "period": 3790763, + "thread": 13 + } + } + ], + "AU12f4JitFaR8QNJBcPevkwgGq2hW7hKYMSST8JvumPez9e4ShMGe": [ + { + "amount": "180.332924355", + "slot": { + "period": 43792, + "thread": 4 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 197554, + "thread": 24 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 485319, + "thread": 0 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 628252, + "thread": 8 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 810642, + "thread": 18 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 936402, + "thread": 2 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1051997, + "thread": 21 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1175389, + "thread": 26 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1415807, + "thread": 17 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1528107, + "thread": 28 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1721226, + "thread": 19 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 1880202, + "thread": 5 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2023478, + "thread": 15 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2157338, + "thread": 1 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2304089, + "thread": 26 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2499623, + "thread": 0 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2680277, + "thread": 1 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 2907803, + "thread": 19 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 3082790, + "thread": 18 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 3148594, + "thread": 27 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 3373323, + "thread": 10 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 3617482, + "thread": 26 + } + }, + { + "amount": "180.332924355", + "slot": { + "period": 3674219, + "thread": 3 + } + }, + { + "amount": "180.332924352", + "slot": { + "period": 3886774, + "thread": 20 + } + } + ], + "AU12f4S4H7C8gjzFAvHqTLYCaJjpC3V25jihcXTk8ghhCy484qiD8": [ + { + "amount": "53.933956414", + "slot": { + "period": 129456, + "thread": 27 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 168098, + "thread": 24 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 402231, + "thread": 23 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 531158, + "thread": 10 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 788152, + "thread": 1 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 870829, + "thread": 4 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1147300, + "thread": 21 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1152603, + "thread": 3 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1415448, + "thread": 0 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1571741, + "thread": 26 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1711135, + "thread": 4 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 1919763, + "thread": 9 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2134641, + "thread": 7 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2194428, + "thread": 24 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2298255, + "thread": 31 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2560726, + "thread": 2 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2660179, + "thread": 9 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 2845330, + "thread": 10 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 3111360, + "thread": 25 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 3229702, + "thread": 3 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 3304018, + "thread": 18 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 3529360, + "thread": 8 + } + }, + { + "amount": "53.933956414", + "slot": { + "period": 3695305, + "thread": 12 + } + }, + { + "amount": "53.933956416", + "slot": { + "period": 3851354, + "thread": 5 + } + } + ], + "AU12f4Yqbde2R8qm19JEKUQhFsuxcCTKkCFWvYDMAYQegkyLMYPcD": [ + { + "amount": "168.305312684", + "slot": { + "period": 122362, + "thread": 13 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 238573, + "thread": 23 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 353425, + "thread": 6 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 560527, + "thread": 2 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 672163, + "thread": 7 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 837809, + "thread": 27 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1034619, + "thread": 18 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1224661, + "thread": 18 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1396392, + "thread": 25 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1612667, + "thread": 26 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1681712, + "thread": 11 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 1850390, + "thread": 23 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2100180, + "thread": 20 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2152237, + "thread": 25 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2343002, + "thread": 22 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2479193, + "thread": 30 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2787273, + "thread": 26 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 2831103, + "thread": 9 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 3104414, + "thread": 4 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 3199769, + "thread": 6 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 3376984, + "thread": 10 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 3552946, + "thread": 16 + } + }, + { + "amount": "168.305312684", + "slot": { + "period": 3715425, + "thread": 28 + } + }, + { + "amount": "168.305312688", + "slot": { + "period": 3827822, + "thread": 15 + } + } + ], + "AU12f4ZRJYFXg5JnmSfEcWLjGhbVGgCgfLeqqayrHENjtdNcaBDvs": [ + { + "amount": "180.774240281", + "slot": { + "period": 16985, + "thread": 28 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 167531, + "thread": 28 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 354161, + "thread": 16 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 502161, + "thread": 19 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 706590, + "thread": 5 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 943238, + "thread": 18 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1016494, + "thread": 19 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1317062, + "thread": 14 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1423544, + "thread": 16 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1498298, + "thread": 15 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1780851, + "thread": 30 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1975304, + "thread": 20 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 1979335, + "thread": 7 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 2273525, + "thread": 14 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 2315631, + "thread": 20 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 2492548, + "thread": 7 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 2721658, + "thread": 29 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 2834427, + "thread": 30 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 3048253, + "thread": 11 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 3164239, + "thread": 22 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 3382456, + "thread": 16 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 3472647, + "thread": 25 + } + }, + { + "amount": "180.774240281", + "slot": { + "period": 3742254, + "thread": 5 + } + }, + { + "amount": "180.774240289", + "slot": { + "period": 3798662, + "thread": 0 + } + } + ], + "AU12f52SFzayLhT9KvsnWNf5MsBg5c1xwx17zpfR5wyYDKiEuC7iS": [ + { + "amount": "138.964226214", + "slot": { + "period": 130023, + "thread": 18 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 252615, + "thread": 13 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 407184, + "thread": 10 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 589291, + "thread": 10 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 681507, + "thread": 31 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 897540, + "thread": 17 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1111862, + "thread": 21 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1300328, + "thread": 20 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1407973, + "thread": 17 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1645271, + "thread": 18 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1776022, + "thread": 1 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 1868134, + "thread": 24 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2084896, + "thread": 21 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2214158, + "thread": 28 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2332388, + "thread": 17 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2556507, + "thread": 8 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2780522, + "thread": 14 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2876346, + "thread": 24 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 2988512, + "thread": 19 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 3252509, + "thread": 2 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 3419776, + "thread": 1 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 3508933, + "thread": 23 + } + }, + { + "amount": "138.964226214", + "slot": { + "period": 3693154, + "thread": 6 + } + }, + { + "amount": "138.964226216", + "slot": { + "period": 3920952, + "thread": 29 + } + } + ], + "AU12f64qph12aAjizWKLHsqD2BVw6QzeX8mgjKe4wyYJDd7sBF3v9": [ + { + "amount": "359.198319072", + "slot": { + "period": 141206, + "thread": 12 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 249071, + "thread": 3 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 449749, + "thread": 25 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 568213, + "thread": 10 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 756701, + "thread": 7 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 978737, + "thread": 20 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1051285, + "thread": 13 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1159223, + "thread": 30 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1396626, + "thread": 26 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1556285, + "thread": 5 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1807109, + "thread": 24 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 1862905, + "thread": 16 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2118797, + "thread": 23 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2178730, + "thread": 2 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2354480, + "thread": 23 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2597631, + "thread": 20 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2784265, + "thread": 8 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 2854496, + "thread": 3 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 3088607, + "thread": 29 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 3247287, + "thread": 7 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 3432280, + "thread": 19 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 3562114, + "thread": 0 + } + }, + { + "amount": "359.198319072", + "slot": { + "period": 3676800, + "thread": 21 + } + }, + { + "amount": "359.198319079", + "slot": { + "period": 3874825, + "thread": 11 + } + } + ], + "AU12f6W7FnPdCnLxiQ3wScZ2hkaFdqmWNvzwJXYdCEB5cQTkQkSco": [ + { + "amount": "242.288058293", + "slot": { + "period": 58695, + "thread": 24 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 175224, + "thread": 20 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 459879, + "thread": 3 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 526597, + "thread": 11 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 763472, + "thread": 20 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 935805, + "thread": 19 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1042510, + "thread": 23 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1158937, + "thread": 18 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1341336, + "thread": 21 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1633390, + "thread": 18 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1690845, + "thread": 28 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 1861996, + "thread": 8 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2058073, + "thread": 23 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2221176, + "thread": 26 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2428248, + "thread": 11 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2536340, + "thread": 0 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2644190, + "thread": 18 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 2805087, + "thread": 17 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 3080379, + "thread": 19 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 3255330, + "thread": 4 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 3414337, + "thread": 21 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 3493542, + "thread": 14 + } + }, + { + "amount": "242.288058293", + "slot": { + "period": 3672965, + "thread": 21 + } + }, + { + "amount": "242.288058301", + "slot": { + "period": 3935270, + "thread": 5 + } + } + ], + "AU12f6rJ8HGtVgHx4bjcSzEA6UZb4stFnFc1k6nMPdkiccXibE9KZ": [ + { + "amount": "59.859407975", + "slot": { + "period": 130550, + "thread": 21 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 323614, + "thread": 12 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 397778, + "thread": 8 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 604434, + "thread": 9 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 706614, + "thread": 4 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 877306, + "thread": 23 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1008761, + "thread": 19 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1173995, + "thread": 15 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1339741, + "thread": 2 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1542762, + "thread": 21 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1803182, + "thread": 4 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 1853955, + "thread": 10 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2011345, + "thread": 14 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2214100, + "thread": 17 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2321421, + "thread": 20 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2535572, + "thread": 9 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2639533, + "thread": 18 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 2814994, + "thread": 25 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 3096022, + "thread": 0 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 3153407, + "thread": 15 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 3367882, + "thread": 15 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 3500840, + "thread": 24 + } + }, + { + "amount": "59.859407975", + "slot": { + "period": 3719512, + "thread": 9 + } + }, + { + "amount": "59.859407979", + "slot": { + "period": 3793470, + "thread": 4 + } + } + ], + "AU12f7AwgfHDNFr3KUY9KvuwfHxWXWKrX7eqDX3QWJbKMeC4GAPu5": [ + { + "amount": "266.506412127", + "slot": { + "period": 129887, + "thread": 19 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 244070, + "thread": 16 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 418596, + "thread": 4 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 544295, + "thread": 13 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 668396, + "thread": 7 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 968957, + "thread": 31 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1138469, + "thread": 22 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1174592, + "thread": 28 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1357408, + "thread": 15 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1511418, + "thread": 15 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1716394, + "thread": 28 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 1872912, + "thread": 29 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2143028, + "thread": 7 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2203926, + "thread": 6 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2399740, + "thread": 6 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2552963, + "thread": 23 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2778164, + "thread": 24 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2847092, + "thread": 17 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 2992040, + "thread": 11 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 3161598, + "thread": 17 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 3420478, + "thread": 27 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 3544902, + "thread": 2 + } + }, + { + "amount": "266.506412127", + "slot": { + "period": 3622176, + "thread": 28 + } + }, + { + "amount": "266.506412137", + "slot": { + "period": 3804390, + "thread": 6 + } + } + ], + "AU12f8BWQXENJmC6Z8S6LfJ1q4UjiHAwygwgGEmm71zZ1dKNf2VG2": [ + { + "amount": "430.734814470", + "slot": { + "period": 82701, + "thread": 13 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 284178, + "thread": 17 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 328023, + "thread": 16 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 531663, + "thread": 12 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 744417, + "thread": 27 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 860101, + "thread": 5 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1034118, + "thread": 4 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1191360, + "thread": 18 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1423688, + "thread": 0 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1564273, + "thread": 30 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1743154, + "thread": 16 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 1835228, + "thread": 28 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2080282, + "thread": 20 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2148129, + "thread": 7 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2320243, + "thread": 31 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2553580, + "thread": 24 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2717305, + "thread": 13 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 2911628, + "thread": 12 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 3107962, + "thread": 29 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 3283561, + "thread": 20 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 3427104, + "thread": 11 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 3507525, + "thread": 3 + } + }, + { + "amount": "430.734814470", + "slot": { + "period": 3744628, + "thread": 28 + } + }, + { + "amount": "430.734814465", + "slot": { + "period": 3795044, + "thread": 14 + } + } + ], + "AU12f8CHjNRh9akZBMtNtj9y5hznWGoBB3M9AuVkgvGWTb269Hfwk": [ + { + "amount": "105.836792903", + "slot": { + "period": 119822, + "thread": 7 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 236904, + "thread": 15 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 375083, + "thread": 2 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 529568, + "thread": 3 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 782298, + "thread": 14 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 829125, + "thread": 23 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1111649, + "thread": 22 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1301417, + "thread": 23 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1324184, + "thread": 27 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1527165, + "thread": 21 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1780467, + "thread": 21 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1838106, + "thread": 10 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 1997614, + "thread": 27 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2281131, + "thread": 26 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2410733, + "thread": 14 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2484081, + "thread": 4 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2753208, + "thread": 15 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2811210, + "thread": 20 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 2994106, + "thread": 29 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 3254593, + "thread": 9 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 3413855, + "thread": 3 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 3571257, + "thread": 17 + } + }, + { + "amount": "105.836792903", + "slot": { + "period": 3766994, + "thread": 20 + } + }, + { + "amount": "105.836792914", + "slot": { + "period": 3935107, + "thread": 8 + } + } + ], + "AU12f8iA7BCH1W64qNi5cCDBgjx1vbBUQCt29ch3sMEpzVdL1Fozu": [ + { + "amount": "65.605579531", + "slot": { + "period": 150545, + "thread": 26 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 231054, + "thread": 30 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 416683, + "thread": 10 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 533640, + "thread": 28 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 717683, + "thread": 0 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 964131, + "thread": 20 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1079607, + "thread": 24 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1184624, + "thread": 15 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1457939, + "thread": 16 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1590052, + "thread": 14 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1679555, + "thread": 26 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 1820957, + "thread": 14 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2013867, + "thread": 10 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2217814, + "thread": 26 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2425812, + "thread": 19 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2569894, + "thread": 5 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2644588, + "thread": 15 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2825460, + "thread": 21 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 2981556, + "thread": 28 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 3143211, + "thread": 0 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 3450444, + "thread": 1 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 3596624, + "thread": 7 + } + }, + { + "amount": "65.605579531", + "slot": { + "period": 3763418, + "thread": 6 + } + }, + { + "amount": "65.605579538", + "slot": { + "period": 3848749, + "thread": 30 + } + } + ], + "AU12f96tMRAqDQ8AF69Rtqi4zKpgkPYYWW89RN3a8xG63wDFiSts4": [ + { + "amount": "169.969707624", + "slot": { + "period": 72269, + "thread": 8 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 205165, + "thread": 31 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 396880, + "thread": 29 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 590274, + "thread": 4 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 727831, + "thread": 18 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 966686, + "thread": 2 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1046367, + "thread": 7 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1278440, + "thread": 4 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1394739, + "thread": 18 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1552506, + "thread": 4 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1804558, + "thread": 8 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1835067, + "thread": 15 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 1983563, + "thread": 3 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 2159854, + "thread": 30 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 2365738, + "thread": 12 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 2522804, + "thread": 5 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 2744757, + "thread": 27 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 2846562, + "thread": 15 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 3015029, + "thread": 19 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 3272167, + "thread": 27 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 3313510, + "thread": 29 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 3487789, + "thread": 5 + } + }, + { + "amount": "169.969707624", + "slot": { + "period": 3741384, + "thread": 25 + } + }, + { + "amount": "169.969707625", + "slot": { + "period": 3939466, + "thread": 25 + } + } + ], + "AU12f9HrqWPQAmrYXCpuqWXCPcAfeAYu3LxBwcHsVfyN9L2B1pxdt": [ + { + "amount": "169.847803537", + "slot": { + "period": 52766, + "thread": 31 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 200261, + "thread": 23 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 483812, + "thread": 4 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 587257, + "thread": 0 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 755359, + "thread": 11 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 970340, + "thread": 20 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 999635, + "thread": 11 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 1218474, + "thread": 0 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 1476001, + "thread": 1 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 1586956, + "thread": 17 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 1777862, + "thread": 20 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 1958051, + "thread": 22 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2040132, + "thread": 18 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2195587, + "thread": 7 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2336353, + "thread": 15 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2543224, + "thread": 28 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2676167, + "thread": 18 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 2926688, + "thread": 8 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 3105428, + "thread": 6 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 3136196, + "thread": 17 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 3329369, + "thread": 12 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 3555095, + "thread": 3 + } + }, + { + "amount": "169.847803537", + "slot": { + "period": 3722945, + "thread": 12 + } + }, + { + "amount": "169.847803547", + "slot": { + "period": 3918906, + "thread": 4 + } + } + ], + "AU12f9L18Q7P74v5SsswV3UjP3y5CETmZqmfPJhVjoCt96me8Bst5": [ + { + "amount": "89.444052756", + "slot": { + "period": 85488, + "thread": 8 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 219781, + "thread": 28 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 448495, + "thread": 13 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 621503, + "thread": 24 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 739948, + "thread": 18 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 911854, + "thread": 20 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1006234, + "thread": 8 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1297140, + "thread": 12 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1371375, + "thread": 7 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1549134, + "thread": 30 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1790172, + "thread": 31 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 1816536, + "thread": 14 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2041641, + "thread": 27 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2257098, + "thread": 8 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2315568, + "thread": 4 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2598657, + "thread": 2 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2772355, + "thread": 6 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 2827566, + "thread": 20 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 3040848, + "thread": 19 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 3253553, + "thread": 16 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 3288768, + "thread": 26 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 3617176, + "thread": 1 + } + }, + { + "amount": "89.444052756", + "slot": { + "period": 3672670, + "thread": 6 + } + }, + { + "amount": "89.444052767", + "slot": { + "period": 3893410, + "thread": 1 + } + } + ], + "AU12f9mJTVwUmE9hnaW17ZsN7ekkBUBFBjfZAcCcFq76AQtnoCk2f": [ + { + "amount": "74.943835529", + "slot": { + "period": 149088, + "thread": 29 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 234632, + "thread": 12 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 478247, + "thread": 2 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 633807, + "thread": 26 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 669813, + "thread": 24 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 963654, + "thread": 11 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1114811, + "thread": 6 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1257508, + "thread": 24 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1413740, + "thread": 12 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1494921, + "thread": 28 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1673512, + "thread": 31 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1861483, + "thread": 21 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 1994059, + "thread": 13 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 2192670, + "thread": 6 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 2455860, + "thread": 1 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 2475823, + "thread": 17 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 2738755, + "thread": 22 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 2824868, + "thread": 26 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 3098610, + "thread": 22 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 3202184, + "thread": 5 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 3305919, + "thread": 10 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 3460356, + "thread": 24 + } + }, + { + "amount": "74.943835529", + "slot": { + "period": 3629016, + "thread": 10 + } + }, + { + "amount": "74.943835534", + "slot": { + "period": 3810040, + "thread": 22 + } + } + ], + "AU12f9uNnaDsiLusfrkJ8THuSpv9vwZdx7eTwjq2CyitzPUYtmcSh": [ + { + "amount": "55.121438900", + "slot": { + "period": 23411, + "thread": 21 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 242385, + "thread": 4 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 377039, + "thread": 19 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 526971, + "thread": 18 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 781578, + "thread": 7 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 864188, + "thread": 8 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1055395, + "thread": 19 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1239272, + "thread": 4 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1331768, + "thread": 12 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1562072, + "thread": 12 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1785302, + "thread": 24 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 1901121, + "thread": 2 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2124103, + "thread": 10 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2178549, + "thread": 24 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2460940, + "thread": 26 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2512931, + "thread": 8 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2676810, + "thread": 0 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 2912355, + "thread": 26 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 3052215, + "thread": 2 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 3135154, + "thread": 7 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 3440127, + "thread": 3 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 3460579, + "thread": 6 + } + }, + { + "amount": "55.121438900", + "slot": { + "period": 3661266, + "thread": 11 + } + }, + { + "amount": "55.121438912", + "slot": { + "period": 3852383, + "thread": 30 + } + } + ], + "AU12fAJrYTRMno1fbUzmpMLDWVCxeYd1HH9x2dQefcbf8Aks2Hfzx": [ + { + "amount": "290.576261372", + "slot": { + "period": 24106, + "thread": 17 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 194862, + "thread": 3 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 447957, + "thread": 13 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 610977, + "thread": 25 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 658295, + "thread": 5 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 888053, + "thread": 6 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1015083, + "thread": 29 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1317049, + "thread": 6 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1355790, + "thread": 21 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1577343, + "thread": 20 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1712930, + "thread": 6 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 1881711, + "thread": 0 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2133887, + "thread": 5 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2187430, + "thread": 24 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2354000, + "thread": 2 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2546441, + "thread": 26 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2787614, + "thread": 19 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 2926972, + "thread": 14 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 3083845, + "thread": 31 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 3265693, + "thread": 27 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 3339066, + "thread": 9 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 3571445, + "thread": 16 + } + }, + { + "amount": "290.576261372", + "slot": { + "period": 3699336, + "thread": 4 + } + }, + { + "amount": "290.576261377", + "slot": { + "period": 3817755, + "thread": 0 + } + } + ], + "AU12fBD7SDRUDVAGfqbojQwPVCi6n824QJx9znxSakC2fXWzbgWpf": [ + { + "amount": "733.490803235", + "slot": { + "period": 161704, + "thread": 31 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 222774, + "thread": 7 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 421696, + "thread": 3 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 651526, + "thread": 15 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 711755, + "thread": 3 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 897306, + "thread": 23 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1001529, + "thread": 27 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1199777, + "thread": 4 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1463137, + "thread": 13 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1638389, + "thread": 15 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1707162, + "thread": 8 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 1920130, + "thread": 15 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2138306, + "thread": 3 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2286662, + "thread": 23 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2317469, + "thread": 7 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2586187, + "thread": 5 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2750721, + "thread": 24 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 2841918, + "thread": 6 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 3031869, + "thread": 10 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 3244129, + "thread": 26 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 3349811, + "thread": 15 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 3609537, + "thread": 9 + } + }, + { + "amount": "733.490803235", + "slot": { + "period": 3627552, + "thread": 9 + } + }, + { + "amount": "733.490803245", + "slot": { + "period": 3838732, + "thread": 16 + } + } + ], + "AU12fCMZee4SNtBvFHTD6AGDA6gXraWNvQy887haGU4f6zVUFoRPC": [ + { + "amount": "163.647547203", + "slot": { + "period": 59427, + "thread": 8 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 247507, + "thread": 25 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 353277, + "thread": 28 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 526635, + "thread": 4 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 696880, + "thread": 12 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 895311, + "thread": 26 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1029465, + "thread": 29 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1190337, + "thread": 23 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1443915, + "thread": 27 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1610613, + "thread": 4 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1764315, + "thread": 28 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 1967949, + "thread": 30 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2104663, + "thread": 24 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2264002, + "thread": 14 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2338927, + "thread": 10 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2500584, + "thread": 0 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2738020, + "thread": 13 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 2853591, + "thread": 14 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 3000504, + "thread": 3 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 3259887, + "thread": 21 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 3366866, + "thread": 16 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 3463871, + "thread": 24 + } + }, + { + "amount": "163.647547203", + "slot": { + "period": 3732260, + "thread": 12 + } + }, + { + "amount": "163.647547206", + "slot": { + "period": 3935249, + "thread": 30 + } + } + ], + "AU12fCQtH74tzde2n1dAjJvRazvhw82iKVbZfmhbKc8DEnsxKB8Lz": [ + { + "amount": "148.471344169", + "slot": { + "period": 48240, + "thread": 6 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 174655, + "thread": 7 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 388008, + "thread": 18 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 575837, + "thread": 27 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 682683, + "thread": 31 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 919654, + "thread": 9 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1002675, + "thread": 6 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1203422, + "thread": 19 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1444324, + "thread": 15 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1495689, + "thread": 30 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1713540, + "thread": 23 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 1886453, + "thread": 6 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2118734, + "thread": 10 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2203627, + "thread": 27 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2317945, + "thread": 28 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2498153, + "thread": 31 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2648744, + "thread": 29 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 2932085, + "thread": 8 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 3108723, + "thread": 1 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 3263601, + "thread": 22 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 3328327, + "thread": 7 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 3550163, + "thread": 17 + } + }, + { + "amount": "148.471344169", + "slot": { + "period": 3651123, + "thread": 23 + } + }, + { + "amount": "148.471344167", + "slot": { + "period": 3811129, + "thread": 21 + } + } + ], + "AU12fDEca7vFiWY9fRKuJg1LXuPzGNDf9Nw9YjvMxp5FsyqdjUaus": [ + { + "amount": "56.249165532", + "slot": { + "period": 53109, + "thread": 14 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 254800, + "thread": 23 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 369599, + "thread": 0 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 593247, + "thread": 28 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 775184, + "thread": 18 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 942070, + "thread": 26 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1096401, + "thread": 16 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1193072, + "thread": 14 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1383107, + "thread": 14 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1606009, + "thread": 12 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1786264, + "thread": 27 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 1924999, + "thread": 5 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2101349, + "thread": 26 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2144615, + "thread": 31 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2426439, + "thread": 23 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2525049, + "thread": 16 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2645077, + "thread": 23 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 2823171, + "thread": 12 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 3008156, + "thread": 18 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 3267673, + "thread": 12 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 3375650, + "thread": 15 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 3597395, + "thread": 17 + } + }, + { + "amount": "56.249165532", + "slot": { + "period": 3619761, + "thread": 25 + } + }, + { + "amount": "56.249165526", + "slot": { + "period": 3868086, + "thread": 2 + } + } + ], + "AU12fDF1DhWenV9xVHU7pJfvupX8nZWirLjWH9DACrrzUyRU9j9eT": [ + { + "amount": "144.462785926", + "slot": { + "period": 90830, + "thread": 13 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 232283, + "thread": 5 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 427554, + "thread": 19 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 580253, + "thread": 25 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 733933, + "thread": 14 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 927878, + "thread": 28 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1145854, + "thread": 14 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1237216, + "thread": 31 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1332288, + "thread": 11 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1489556, + "thread": 19 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1788740, + "thread": 11 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1921776, + "thread": 13 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 1982161, + "thread": 20 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 2233969, + "thread": 12 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 2325244, + "thread": 14 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 2566012, + "thread": 21 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 2771009, + "thread": 9 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 2912866, + "thread": 17 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 3036408, + "thread": 3 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 3210654, + "thread": 14 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 3311067, + "thread": 2 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 3529827, + "thread": 3 + } + }, + { + "amount": "144.462785926", + "slot": { + "period": 3728805, + "thread": 18 + } + }, + { + "amount": "144.462785929", + "slot": { + "period": 3815508, + "thread": 24 + } + } + ], + "AU12fEkidowQKbh62RBjLEcn3omizPWj8AwrNGuf12u8DdqPk2a6u": [ + { + "amount": "194.010425667", + "slot": { + "period": 20027, + "thread": 7 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 225359, + "thread": 20 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 357790, + "thread": 30 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 522492, + "thread": 17 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 677092, + "thread": 4 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 879504, + "thread": 6 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1034107, + "thread": 5 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1292814, + "thread": 19 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1416685, + "thread": 10 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1501260, + "thread": 30 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1793651, + "thread": 15 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 1942236, + "thread": 21 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2122746, + "thread": 29 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2244569, + "thread": 28 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2296911, + "thread": 7 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2614074, + "thread": 28 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2719320, + "thread": 1 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 2818518, + "thread": 5 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 3031141, + "thread": 1 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 3226854, + "thread": 5 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 3381567, + "thread": 3 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 3492194, + "thread": 2 + } + }, + { + "amount": "194.010425667", + "slot": { + "period": 3635604, + "thread": 10 + } + }, + { + "amount": "194.010425666", + "slot": { + "period": 3920758, + "thread": 8 + } + } + ], + "AU12fFskQgV33MgiRJLTaRKRvtHE5YKxyDYMhYWo5rpAy67CuMQXX": [ + { + "amount": "179.465626632", + "slot": { + "period": 58452, + "thread": 8 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 245814, + "thread": 12 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 360506, + "thread": 3 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 555862, + "thread": 30 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 770188, + "thread": 16 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 842549, + "thread": 4 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1068268, + "thread": 24 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1312608, + "thread": 9 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1432648, + "thread": 18 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1623926, + "thread": 23 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1741791, + "thread": 6 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 1813123, + "thread": 14 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2051727, + "thread": 10 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2148136, + "thread": 16 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2302628, + "thread": 2 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2497209, + "thread": 28 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2625359, + "thread": 2 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 2923394, + "thread": 9 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 3019198, + "thread": 23 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 3177703, + "thread": 5 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 3301374, + "thread": 30 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 3603072, + "thread": 5 + } + }, + { + "amount": "179.465626632", + "slot": { + "period": 3758661, + "thread": 26 + } + }, + { + "amount": "179.465626637", + "slot": { + "period": 3942203, + "thread": 30 + } + } + ], + "AU12fGMbi1qJiVwhvm4dvJNXVKGrrKMMNs3sSBZQwhXNEAKz8bTir": [ + { + "amount": "468.829044633", + "slot": { + "period": 100515, + "thread": 8 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 288613, + "thread": 16 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 356810, + "thread": 2 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 597633, + "thread": 18 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 719947, + "thread": 7 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 934400, + "thread": 13 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1054652, + "thread": 25 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1256206, + "thread": 9 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1345943, + "thread": 4 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1614423, + "thread": 19 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1673803, + "thread": 20 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 1831901, + "thread": 11 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2141352, + "thread": 30 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2200794, + "thread": 21 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2375287, + "thread": 29 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2580880, + "thread": 18 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2754725, + "thread": 12 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 2862320, + "thread": 30 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 3072977, + "thread": 12 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 3159239, + "thread": 31 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 3319223, + "thread": 13 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 3526394, + "thread": 11 + } + }, + { + "amount": "468.829044633", + "slot": { + "period": 3745310, + "thread": 9 + } + }, + { + "amount": "468.829044644", + "slot": { + "period": 3831152, + "thread": 20 + } + } + ], + "AU12fGRvCLBKgbcJ5fkzX8bjjQr2GXdeKiY5re7Y92KkMeSdr3dqy": [ + { + "amount": "173.109902026", + "slot": { + "period": 120853, + "thread": 26 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 205215, + "thread": 26 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 485466, + "thread": 28 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 516769, + "thread": 14 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 763491, + "thread": 21 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 924108, + "thread": 24 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1041910, + "thread": 30 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1171355, + "thread": 4 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1352858, + "thread": 27 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1612745, + "thread": 26 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1768937, + "thread": 17 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 1894474, + "thread": 14 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2096854, + "thread": 30 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2247938, + "thread": 2 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2326145, + "thread": 16 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2490925, + "thread": 25 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2659089, + "thread": 20 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 2876814, + "thread": 1 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 3032029, + "thread": 2 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 3249048, + "thread": 1 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 3341836, + "thread": 16 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 3582727, + "thread": 19 + } + }, + { + "amount": "173.109902026", + "slot": { + "period": 3652703, + "thread": 13 + } + }, + { + "amount": "173.109902021", + "slot": { + "period": 3855164, + "thread": 31 + } + } + ], + "AU12fHK1wbvgTNekLWMJhDDhaAX6KYGA4e535aNDJKBa677ectFLC": [ + { + "amount": "143.279245999", + "slot": { + "period": 94480, + "thread": 18 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 311332, + "thread": 22 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 420435, + "thread": 19 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 533417, + "thread": 8 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 813965, + "thread": 19 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 889927, + "thread": 13 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1134792, + "thread": 6 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1314401, + "thread": 23 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1428152, + "thread": 19 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1579789, + "thread": 21 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1687126, + "thread": 28 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 1897725, + "thread": 29 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2005957, + "thread": 20 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2164238, + "thread": 21 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2406365, + "thread": 15 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2554936, + "thread": 28 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2738009, + "thread": 8 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 2912908, + "thread": 4 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 3082527, + "thread": 31 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 3272825, + "thread": 6 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 3377732, + "thread": 31 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 3476238, + "thread": 16 + } + }, + { + "amount": "143.279245999", + "slot": { + "period": 3648803, + "thread": 20 + } + }, + { + "amount": "143.279245995", + "slot": { + "period": 3894994, + "thread": 21 + } + } + ], + "AU12fHRbytRVdjqx1LG1yVviCi8jMRkZ676iHq7vJcxsxzJmx6Mbs": [ + { + "amount": "119.226236015", + "slot": { + "period": 28790, + "thread": 15 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 182786, + "thread": 12 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 374239, + "thread": 24 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 493298, + "thread": 3 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 771227, + "thread": 14 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 901392, + "thread": 31 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1087738, + "thread": 22 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1269871, + "thread": 2 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1397264, + "thread": 12 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1621131, + "thread": 4 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1768697, + "thread": 26 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1849592, + "thread": 4 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 1995037, + "thread": 15 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 2291193, + "thread": 13 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 2418488, + "thread": 22 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 2503130, + "thread": 8 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 2781063, + "thread": 12 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 2871375, + "thread": 26 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 3047105, + "thread": 4 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 3184640, + "thread": 28 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 3419632, + "thread": 12 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 3451243, + "thread": 5 + } + }, + { + "amount": "119.226236015", + "slot": { + "period": 3643623, + "thread": 7 + } + }, + { + "amount": "119.226236018", + "slot": { + "period": 3873711, + "thread": 17 + } + } + ], + "AU12fHvSi7gpEHpmA9H4y6DRUVgfqyUSnKr7pwsYTYGtCbCEfDLEh": [ + { + "amount": "97.263078701", + "slot": { + "period": 117312, + "thread": 28 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 317806, + "thread": 15 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 449836, + "thread": 17 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 647653, + "thread": 24 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 682196, + "thread": 13 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 932693, + "thread": 27 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1032049, + "thread": 15 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1300414, + "thread": 29 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1370246, + "thread": 0 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1541457, + "thread": 0 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1674588, + "thread": 23 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 1935960, + "thread": 23 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2046013, + "thread": 14 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2277418, + "thread": 0 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2354371, + "thread": 2 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2535398, + "thread": 10 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2661333, + "thread": 10 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 2947334, + "thread": 3 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 3025307, + "thread": 4 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 3257576, + "thread": 23 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 3398444, + "thread": 23 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 3501887, + "thread": 10 + } + }, + { + "amount": "97.263078701", + "slot": { + "period": 3744367, + "thread": 3 + } + }, + { + "amount": "97.263078702", + "slot": { + "period": 3842540, + "thread": 4 + } + } + ], + "AU12fJLcD5aQ3po5BrKd4BcF2eZsr7vnNYspx3f65BfKcVBymy3RR": [ + { + "amount": "156.411261374", + "slot": { + "period": 130205, + "thread": 2 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 277260, + "thread": 13 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 393865, + "thread": 31 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 545847, + "thread": 13 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 687407, + "thread": 11 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 905931, + "thread": 27 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1140455, + "thread": 31 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1243479, + "thread": 9 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1428298, + "thread": 25 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1569022, + "thread": 24 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1650993, + "thread": 11 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 1970292, + "thread": 5 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2012946, + "thread": 19 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2217487, + "thread": 23 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2323516, + "thread": 0 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2475985, + "thread": 20 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2723526, + "thread": 1 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2937077, + "thread": 23 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 2979436, + "thread": 0 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 3244995, + "thread": 29 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 3301175, + "thread": 9 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 3546150, + "thread": 11 + } + }, + { + "amount": "156.411261374", + "slot": { + "period": 3690676, + "thread": 13 + } + }, + { + "amount": "156.411261383", + "slot": { + "period": 3936848, + "thread": 11 + } + } + ], + "AU12fJfNS2yQC6fprjRtZK9DGcvqnmvCFA8SHB2ynbYNA7SKEYUoj": [ + { + "amount": "90.751700889", + "slot": { + "period": 12660, + "thread": 12 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 273040, + "thread": 9 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 430174, + "thread": 11 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 575081, + "thread": 7 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 674788, + "thread": 26 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 946564, + "thread": 0 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1119702, + "thread": 10 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1201040, + "thread": 25 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1370804, + "thread": 2 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1582071, + "thread": 31 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1748098, + "thread": 25 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 1877002, + "thread": 21 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2074109, + "thread": 7 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2185840, + "thread": 4 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2440454, + "thread": 5 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2557549, + "thread": 17 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2634841, + "thread": 25 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 2904482, + "thread": 20 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 3108742, + "thread": 7 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 3162576, + "thread": 30 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 3373662, + "thread": 10 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 3537030, + "thread": 8 + } + }, + { + "amount": "90.751700889", + "slot": { + "period": 3729839, + "thread": 3 + } + }, + { + "amount": "90.751700893", + "slot": { + "period": 3821592, + "thread": 6 + } + } + ], + "AU12fMNnQdkkHiKupGKDMhNVJi2EX9WxWntmzV8i7HaK97ewKvD8": [ + { + "amount": "126.003167370", + "slot": { + "period": 139245, + "thread": 23 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 180731, + "thread": 22 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 410600, + "thread": 22 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 607971, + "thread": 26 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 708027, + "thread": 1 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 918012, + "thread": 2 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1101079, + "thread": 15 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1284889, + "thread": 30 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1463639, + "thread": 3 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1633939, + "thread": 30 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1675064, + "thread": 28 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1906949, + "thread": 1 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 1991769, + "thread": 31 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 2276614, + "thread": 29 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 2339491, + "thread": 14 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 2560915, + "thread": 8 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 2725269, + "thread": 20 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 2886674, + "thread": 6 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 3028753, + "thread": 13 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 3232940, + "thread": 12 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 3307529, + "thread": 18 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 3604439, + "thread": 26 + } + }, + { + "amount": "126.003167370", + "slot": { + "period": 3728818, + "thread": 15 + } + }, + { + "amount": "126.003167369", + "slot": { + "period": 3916614, + "thread": 17 + } + } + ], + "AU12fP1duB2LaAsgHeAeHbnXZV9FCp3Z9FKwSU2BGeLEfFp2PHVGK": [ + { + "amount": "117.903490846", + "slot": { + "period": 142653, + "thread": 30 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 210118, + "thread": 3 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 371290, + "thread": 16 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 544172, + "thread": 5 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 701936, + "thread": 27 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 910584, + "thread": 18 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1055891, + "thread": 15 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1186962, + "thread": 0 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1381589, + "thread": 23 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1584753, + "thread": 20 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1731517, + "thread": 22 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 1946838, + "thread": 24 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2050045, + "thread": 12 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2293081, + "thread": 30 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2390695, + "thread": 13 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2599803, + "thread": 1 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2691167, + "thread": 31 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2888058, + "thread": 3 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 2999784, + "thread": 12 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 3241280, + "thread": 27 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 3376711, + "thread": 30 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 3505710, + "thread": 11 + } + }, + { + "amount": "117.903490846", + "slot": { + "period": 3686248, + "thread": 21 + } + }, + { + "amount": "117.903490849", + "slot": { + "period": 3894973, + "thread": 5 + } + } + ], + "AU12fRZ4ehkq9VyT2zC7LrEgjQocAWaAN6KZTtwLcDKR3yiDmPThw": [ + { + "amount": "290.313632885", + "slot": { + "period": 24448, + "thread": 9 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 298011, + "thread": 23 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 363230, + "thread": 4 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 600696, + "thread": 22 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 680265, + "thread": 22 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 840329, + "thread": 31 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1016738, + "thread": 19 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1289821, + "thread": 23 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1386789, + "thread": 14 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1489076, + "thread": 4 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1776279, + "thread": 2 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 1919734, + "thread": 10 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2082921, + "thread": 26 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2173911, + "thread": 23 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2302311, + "thread": 7 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2509262, + "thread": 21 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2784548, + "thread": 16 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2909925, + "thread": 4 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 2991563, + "thread": 21 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 3174550, + "thread": 2 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 3434223, + "thread": 17 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 3463474, + "thread": 16 + } + }, + { + "amount": "290.313632885", + "slot": { + "period": 3651017, + "thread": 29 + } + }, + { + "amount": "290.313632891", + "slot": { + "period": 3821061, + "thread": 26 + } + } + ], + "AU12fT9fHX1m7vSCkSMehgtdSRuFBpra1twCa4fQisqXLBurffz1G": [ + { + "amount": "351.355666878", + "slot": { + "period": 99478, + "thread": 13 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 321545, + "thread": 13 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 349768, + "thread": 23 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 539682, + "thread": 0 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 683712, + "thread": 10 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 861400, + "thread": 13 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1016442, + "thread": 1 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1252962, + "thread": 8 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1426122, + "thread": 7 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1560617, + "thread": 25 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1673070, + "thread": 27 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1945748, + "thread": 0 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 1996839, + "thread": 21 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 2167749, + "thread": 8 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 2333379, + "thread": 28 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 2479926, + "thread": 10 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 2711728, + "thread": 16 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 2885989, + "thread": 31 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 3058908, + "thread": 18 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 3162019, + "thread": 26 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 3398661, + "thread": 16 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 3549173, + "thread": 3 + } + }, + { + "amount": "351.355666878", + "slot": { + "period": 3713975, + "thread": 30 + } + }, + { + "amount": "351.355666871", + "slot": { + "period": 3879574, + "thread": 28 + } + } + ], + "AU12fTyZMy1udkq9X7UsZjdthYRfouEaFf38w8BtjCgwrFwADxUFi": [ + { + "amount": "225.909415973", + "slot": { + "period": 167025, + "thread": 27 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 291960, + "thread": 10 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 430185, + "thread": 2 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 513549, + "thread": 21 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 775514, + "thread": 14 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 895376, + "thread": 17 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1123486, + "thread": 21 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1288047, + "thread": 2 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1452928, + "thread": 25 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1502418, + "thread": 4 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1679895, + "thread": 27 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 1812348, + "thread": 17 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2068511, + "thread": 28 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2250171, + "thread": 20 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2363535, + "thread": 26 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2462782, + "thread": 17 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2673837, + "thread": 9 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 2842637, + "thread": 3 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 3101274, + "thread": 25 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 3123869, + "thread": 16 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 3425309, + "thread": 29 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 3579739, + "thread": 24 + } + }, + { + "amount": "225.909415973", + "slot": { + "period": 3628600, + "thread": 4 + } + }, + { + "amount": "225.909415980", + "slot": { + "period": 3814197, + "thread": 24 + } + } + ], + "AU12fV7K4hdpfWruAKkpoyksr4JjBBUbBtKYzRDUKksDBtV48RKyL": [ + { + "amount": "64.963761658", + "slot": { + "period": 79382, + "thread": 8 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 256448, + "thread": 26 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 447523, + "thread": 0 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 515183, + "thread": 8 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 695634, + "thread": 24 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 926803, + "thread": 31 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1009442, + "thread": 22 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1163433, + "thread": 10 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1449380, + "thread": 17 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1564761, + "thread": 25 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1700525, + "thread": 6 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 1831806, + "thread": 13 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2111609, + "thread": 28 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2213299, + "thread": 16 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2356143, + "thread": 17 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2518663, + "thread": 18 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2633373, + "thread": 1 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 2938343, + "thread": 2 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 3062178, + "thread": 11 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 3218924, + "thread": 24 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 3417132, + "thread": 25 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 3608883, + "thread": 11 + } + }, + { + "amount": "64.963761658", + "slot": { + "period": 3749252, + "thread": 14 + } + }, + { + "amount": "64.963761666", + "slot": { + "period": 3932647, + "thread": 28 + } + } + ], + "AU12fW4eNyznRcDfez88bAeFs2LsBoourCP8bnw9k1RDqnnSYXm4S": [ + { + "amount": "98.065455782", + "slot": { + "period": 150370, + "thread": 16 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 216290, + "thread": 26 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 429828, + "thread": 18 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 575109, + "thread": 9 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 809639, + "thread": 30 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 874041, + "thread": 6 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1063366, + "thread": 23 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1302386, + "thread": 13 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1479473, + "thread": 19 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1588931, + "thread": 28 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1674998, + "thread": 1 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 1914673, + "thread": 1 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2008638, + "thread": 13 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2261897, + "thread": 10 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2434048, + "thread": 10 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2588072, + "thread": 27 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2790274, + "thread": 21 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 2928858, + "thread": 30 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 3005910, + "thread": 22 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 3275556, + "thread": 14 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 3407613, + "thread": 15 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 3467528, + "thread": 4 + } + }, + { + "amount": "98.065455782", + "slot": { + "period": 3725185, + "thread": 11 + } + }, + { + "amount": "98.065455774", + "slot": { + "period": 3888181, + "thread": 4 + } + } + ], + "AU12fWxGRf6fktxGghdshPKV45vKWmY3Dn5HCCf5aGHR7ZrTv4rWj": [ + { + "amount": "144.827962835", + "slot": { + "period": 27433, + "thread": 30 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 207382, + "thread": 21 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 442784, + "thread": 4 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 522602, + "thread": 15 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 813047, + "thread": 26 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 825231, + "thread": 13 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 987639, + "thread": 13 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 1193566, + "thread": 6 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 1411998, + "thread": 4 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 1557198, + "thread": 5 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 1650202, + "thread": 9 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 1821963, + "thread": 8 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2088127, + "thread": 12 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2283344, + "thread": 30 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2430242, + "thread": 23 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2548330, + "thread": 27 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2779656, + "thread": 20 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2814057, + "thread": 22 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 2994600, + "thread": 14 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 3274912, + "thread": 17 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 3436674, + "thread": 9 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 3547815, + "thread": 17 + } + }, + { + "amount": "144.827962835", + "slot": { + "period": 3664645, + "thread": 15 + } + }, + { + "amount": "144.827962827", + "slot": { + "period": 3838172, + "thread": 30 + } + } + ], + "AU12fXn9C9huJPKWYe24gFMJXAMxD5ddQU6sTQ3VgvWfvsEoZYbFo": [ + { + "amount": "62.336822361", + "slot": { + "period": 154150, + "thread": 3 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 310874, + "thread": 31 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 371984, + "thread": 15 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 649222, + "thread": 22 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 656209, + "thread": 24 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 872566, + "thread": 30 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1028632, + "thread": 1 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1156479, + "thread": 3 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1366528, + "thread": 25 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1626875, + "thread": 17 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1663341, + "thread": 7 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 1946194, + "thread": 5 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2028374, + "thread": 1 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2241750, + "thread": 23 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2338689, + "thread": 30 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2511573, + "thread": 28 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2668994, + "thread": 2 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2941824, + "thread": 10 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 2988359, + "thread": 6 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 3147865, + "thread": 20 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 3425231, + "thread": 6 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 3483323, + "thread": 28 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 3668822, + "thread": 21 + } + }, + { + "amount": "62.336822361", + "slot": { + "period": 3796371, + "thread": 14 + } + } + ], + "AU12fY2CTrixv9KEQ3Eaq7CtHiaYyHTfUcEy5XqpdfxduM7F3KnBm": [ + { + "amount": "658.808508152", + "slot": { + "period": 74326, + "thread": 6 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 281910, + "thread": 13 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 431253, + "thread": 12 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 536845, + "thread": 4 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 751816, + "thread": 22 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 906237, + "thread": 8 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1058607, + "thread": 6 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1151067, + "thread": 26 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1388843, + "thread": 30 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1584362, + "thread": 14 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1759023, + "thread": 26 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 1881345, + "thread": 30 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2108201, + "thread": 24 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2211633, + "thread": 30 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2427013, + "thread": 24 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2542119, + "thread": 18 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2723361, + "thread": 23 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 2908867, + "thread": 21 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 3068135, + "thread": 9 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 3237886, + "thread": 3 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 3384322, + "thread": 27 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 3553182, + "thread": 28 + } + }, + { + "amount": "658.808508152", + "slot": { + "period": 3723027, + "thread": 22 + } + }, + { + "amount": "658.808508143", + "slot": { + "period": 3894974, + "thread": 3 + } + } + ], + "AU12fYdRknnsQvUofb23Bv6zS4bffqbaeEBMbAoVRJkBYoh6ifZ5E": [ + { + "amount": "586.025861361", + "slot": { + "period": 120260, + "thread": 5 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 247407, + "thread": 24 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 381687, + "thread": 0 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 591310, + "thread": 14 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 811520, + "thread": 23 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 887293, + "thread": 12 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1098467, + "thread": 11 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1302273, + "thread": 3 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1432782, + "thread": 12 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1482241, + "thread": 24 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1779271, + "thread": 19 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 1945529, + "thread": 8 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2103309, + "thread": 29 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2239459, + "thread": 8 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2361187, + "thread": 3 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2510284, + "thread": 23 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2765666, + "thread": 25 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2877132, + "thread": 12 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 2974613, + "thread": 17 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 3205330, + "thread": 19 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 3449250, + "thread": 25 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 3488298, + "thread": 20 + } + }, + { + "amount": "586.025861361", + "slot": { + "period": 3647973, + "thread": 12 + } + }, + { + "amount": "586.025861360", + "slot": { + "period": 3929717, + "thread": 17 + } + } + ], + "AU12fZjLJ2Kyuab698pgpiKYKyA6VjhSsAmpsVpUkK1xAXD8np2Gs": [ + { + "amount": "304.485157490", + "slot": { + "period": 144737, + "thread": 23 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 269356, + "thread": 9 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 353205, + "thread": 26 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 543466, + "thread": 21 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 739522, + "thread": 31 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 972175, + "thread": 12 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1058848, + "thread": 13 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1164427, + "thread": 13 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1454253, + "thread": 29 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1629613, + "thread": 18 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1735433, + "thread": 19 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 1815041, + "thread": 24 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2030222, + "thread": 29 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2170370, + "thread": 23 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2347768, + "thread": 23 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2604323, + "thread": 17 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2740610, + "thread": 23 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 2915136, + "thread": 3 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 3077685, + "thread": 25 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 3168075, + "thread": 4 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 3311654, + "thread": 18 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 3490326, + "thread": 9 + } + }, + { + "amount": "304.485157490", + "slot": { + "period": 3684635, + "thread": 18 + } + }, + { + "amount": "304.485157496", + "slot": { + "period": 3874125, + "thread": 11 + } + } + ], + "AU12fZoda3UUnMBdgC4HwTttToWYV4qqnQatS1JR1Gw2WKC1HQAB4": [ + { + "amount": "303.488880140", + "slot": { + "period": 49553, + "thread": 17 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 206595, + "thread": 11 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 442957, + "thread": 12 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 510509, + "thread": 4 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 727674, + "thread": 10 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 974695, + "thread": 31 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1141895, + "thread": 27 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1314227, + "thread": 30 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1335526, + "thread": 23 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1506132, + "thread": 5 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1780349, + "thread": 11 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 1868908, + "thread": 12 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2017695, + "thread": 11 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2207101, + "thread": 30 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2335671, + "thread": 10 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2476454, + "thread": 13 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2644991, + "thread": 14 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 2930104, + "thread": 0 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3003958, + "thread": 19 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3254703, + "thread": 2 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3388724, + "thread": 15 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3570388, + "thread": 7 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3733897, + "thread": 7 + } + }, + { + "amount": "303.488880140", + "slot": { + "period": 3822440, + "thread": 13 + } + } + ], + "AU12faDCNi4UKbJkuHohfYu2a6Tv5Efs77Di1bgFXosVq9EaNqyxv": [ + { + "amount": "125.681520197", + "slot": { + "period": 75837, + "thread": 16 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 275349, + "thread": 0 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 438088, + "thread": 17 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 516386, + "thread": 8 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 655615, + "thread": 10 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 956053, + "thread": 21 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1128571, + "thread": 22 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1296787, + "thread": 16 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1351818, + "thread": 8 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1503896, + "thread": 13 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1669838, + "thread": 7 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 1809224, + "thread": 10 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2115185, + "thread": 11 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2217967, + "thread": 28 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2371575, + "thread": 23 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2544203, + "thread": 3 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2766423, + "thread": 24 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2858415, + "thread": 16 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 2969653, + "thread": 11 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 3176032, + "thread": 20 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 3438752, + "thread": 5 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 3616840, + "thread": 2 + } + }, + { + "amount": "125.681520197", + "slot": { + "period": 3652048, + "thread": 24 + } + }, + { + "amount": "125.681520202", + "slot": { + "period": 3944024, + "thread": 12 + } + } + ], + "AU12fbC2UNjyAx9QjLco4rmZH1GAej566u4eZdX4H6HsHh7WGauy1": [ + { + "amount": "312.323474722", + "slot": { + "period": 56905, + "thread": 20 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 289921, + "thread": 6 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 488650, + "thread": 2 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 548123, + "thread": 14 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 792091, + "thread": 1 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 821613, + "thread": 6 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1033599, + "thread": 4 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1222951, + "thread": 6 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1354115, + "thread": 11 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1548519, + "thread": 31 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1749676, + "thread": 3 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 1945952, + "thread": 13 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2142536, + "thread": 9 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2164553, + "thread": 5 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2313136, + "thread": 20 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2587831, + "thread": 6 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2724852, + "thread": 23 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 2861769, + "thread": 2 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 3080481, + "thread": 28 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 3127670, + "thread": 18 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 3410467, + "thread": 24 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 3462077, + "thread": 21 + } + }, + { + "amount": "312.323474722", + "slot": { + "period": 3680744, + "thread": 1 + } + }, + { + "amount": "312.323474725", + "slot": { + "period": 3849251, + "thread": 5 + } + } + ], + "AU12fcMrejxR4v3U5yosf728y4RebHdwmCZCwDitSisYZrmscCzov": [ + { + "amount": "303.740987352", + "slot": { + "period": 106218, + "thread": 21 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 216393, + "thread": 24 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 480400, + "thread": 27 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 627132, + "thread": 3 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 809299, + "thread": 21 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 883953, + "thread": 18 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1025079, + "thread": 12 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1293209, + "thread": 4 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1387678, + "thread": 22 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1604939, + "thread": 25 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1727891, + "thread": 11 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 1884532, + "thread": 28 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2054946, + "thread": 1 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2192532, + "thread": 1 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2432712, + "thread": 17 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2613782, + "thread": 25 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2790700, + "thread": 13 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 2914501, + "thread": 27 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 3057108, + "thread": 4 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 3194706, + "thread": 12 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 3347500, + "thread": 16 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 3513356, + "thread": 21 + } + }, + { + "amount": "303.740987352", + "slot": { + "period": 3663725, + "thread": 16 + } + }, + { + "amount": "303.740987356", + "slot": { + "period": 3820535, + "thread": 14 + } + } + ], + "AU12fds58N14Q7sFhrJ46EEoxbBU3zh4Dr4HbyBe7kYy6fgN7Sthc": [ + { + "amount": "145.799570684", + "slot": { + "period": 15941, + "thread": 30 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 214669, + "thread": 4 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 342404, + "thread": 1 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 633079, + "thread": 3 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 735944, + "thread": 19 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 951382, + "thread": 7 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1119373, + "thread": 15 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1235048, + "thread": 23 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1367589, + "thread": 8 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1624436, + "thread": 3 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1724886, + "thread": 27 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 1965585, + "thread": 1 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2110327, + "thread": 25 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2150745, + "thread": 12 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2297326, + "thread": 31 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2466669, + "thread": 18 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2755462, + "thread": 24 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 2927698, + "thread": 15 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 3080286, + "thread": 24 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 3143139, + "thread": 13 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 3374992, + "thread": 14 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 3599736, + "thread": 30 + } + }, + { + "amount": "145.799570684", + "slot": { + "period": 3621846, + "thread": 25 + } + }, + { + "amount": "145.799570687", + "slot": { + "period": 3910061, + "thread": 18 + } + } + ], + "AU12ff5cYGj6NeG22MEMJN7pSX1j8eFGPtb8spZpfdz6a1RSNsrz": [ + { + "amount": "62.629359247", + "slot": { + "period": 104092, + "thread": 10 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 225392, + "thread": 1 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 326163, + "thread": 14 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 626401, + "thread": 21 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 687426, + "thread": 16 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 972745, + "thread": 12 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1000403, + "thread": 26 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1191955, + "thread": 25 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1355358, + "thread": 31 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1552785, + "thread": 11 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1709514, + "thread": 1 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1822659, + "thread": 10 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 1998810, + "thread": 27 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2156166, + "thread": 20 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2298818, + "thread": 24 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2521769, + "thread": 0 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2705541, + "thread": 18 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2931262, + "thread": 27 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 2966758, + "thread": 10 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 3251750, + "thread": 9 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 3318490, + "thread": 24 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 3554815, + "thread": 21 + } + }, + { + "amount": "62.629359247", + "slot": { + "period": 3676969, + "thread": 13 + } + }, + { + "amount": "62.629359241", + "slot": { + "period": 3931848, + "thread": 27 + } + } + ], + "AU12ffdREt6PReiJ4xjsDkBhGHfWp5KKSKBDihXAXaCMqaacmTPa": [ + { + "amount": "112.202684955", + "slot": { + "period": 40574, + "thread": 10 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 221647, + "thread": 31 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 490756, + "thread": 1 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 618511, + "thread": 7 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 799655, + "thread": 10 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 948198, + "thread": 8 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1126615, + "thread": 16 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1305253, + "thread": 27 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1430219, + "thread": 18 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1521519, + "thread": 8 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1733054, + "thread": 29 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1865831, + "thread": 21 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 1996054, + "thread": 23 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 2219350, + "thread": 20 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 2351074, + "thread": 17 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 2554433, + "thread": 5 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 2643470, + "thread": 7 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 2810107, + "thread": 13 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 3057935, + "thread": 10 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 3190650, + "thread": 1 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 3313546, + "thread": 0 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 3553613, + "thread": 11 + } + }, + { + "amount": "112.202684955", + "slot": { + "period": 3621450, + "thread": 23 + } + }, + { + "amount": "112.202684956", + "slot": { + "period": 3830713, + "thread": 20 + } + } + ], + "AU12ffe12WFB1V48A2RRDYGd9NktFsZKZ9hXrnQeSAfRGE6V1eP8D": [ + { + "amount": "297.139192514", + "slot": { + "period": 140296, + "thread": 21 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 183273, + "thread": 25 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 405294, + "thread": 27 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 645653, + "thread": 27 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 675889, + "thread": 15 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 892219, + "thread": 0 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1120548, + "thread": 19 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1162761, + "thread": 7 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1470499, + "thread": 1 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1502559, + "thread": 6 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1801280, + "thread": 30 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 1810113, + "thread": 8 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2069396, + "thread": 22 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2156110, + "thread": 5 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2441479, + "thread": 27 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2537878, + "thread": 9 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2641976, + "thread": 25 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 2848059, + "thread": 1 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 3014518, + "thread": 0 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 3143217, + "thread": 28 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 3291458, + "thread": 8 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 3482694, + "thread": 20 + } + }, + { + "amount": "297.139192514", + "slot": { + "period": 3635399, + "thread": 11 + } + }, + { + "amount": "297.139192520", + "slot": { + "period": 3791689, + "thread": 30 + } + } + ], + "AU12fffgbFKMRiQc8yzMe46Qi4KmPArxKtX62sZYWGEK3srYp1HY2": [ + { + "amount": "169.288654198", + "slot": { + "period": 30950, + "thread": 18 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 256336, + "thread": 18 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 387465, + "thread": 8 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 562800, + "thread": 21 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 721531, + "thread": 20 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 833139, + "thread": 18 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1081812, + "thread": 17 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1296232, + "thread": 24 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1364515, + "thread": 23 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1538685, + "thread": 7 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1670749, + "thread": 21 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 1944057, + "thread": 31 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2011311, + "thread": 12 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2165611, + "thread": 7 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2448935, + "thread": 11 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2558726, + "thread": 11 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2693376, + "thread": 1 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 2847169, + "thread": 11 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 3056510, + "thread": 24 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 3138297, + "thread": 8 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 3332427, + "thread": 21 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 3583243, + "thread": 23 + } + }, + { + "amount": "169.288654198", + "slot": { + "period": 3661414, + "thread": 19 + } + }, + { + "amount": "169.288654205", + "slot": { + "period": 3903047, + "thread": 0 + } + } + ], + "AU12ffxgbyRucvu18giKUUYKJeewd8tzRy3veK3DYKjCiuMuLaAkD": [ + { + "amount": "383.010145158", + "slot": { + "period": 141025, + "thread": 23 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 261132, + "thread": 3 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 402484, + "thread": 2 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 512345, + "thread": 25 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 813981, + "thread": 25 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 869318, + "thread": 20 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1055682, + "thread": 9 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1193535, + "thread": 31 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1414743, + "thread": 12 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1573065, + "thread": 7 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1734090, + "thread": 6 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 1880000, + "thread": 17 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2063128, + "thread": 10 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2292518, + "thread": 2 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2401289, + "thread": 30 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2591245, + "thread": 23 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2643108, + "thread": 27 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 2872356, + "thread": 4 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 3104177, + "thread": 21 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 3126669, + "thread": 4 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 3314311, + "thread": 9 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 3504102, + "thread": 10 + } + }, + { + "amount": "383.010145158", + "slot": { + "period": 3757559, + "thread": 21 + } + }, + { + "amount": "383.010145147", + "slot": { + "period": 3866145, + "thread": 22 + } + } + ], + "AU12fgJ3oEQ3HGkhA4DZgPRCSXTsXBE8FxLTrX8s1drJ1qtuiizxG": [ + { + "amount": "114.269500796", + "slot": { + "period": 36570, + "thread": 13 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 245358, + "thread": 18 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 444362, + "thread": 14 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 589128, + "thread": 2 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 769210, + "thread": 16 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 892324, + "thread": 24 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1002904, + "thread": 30 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1152276, + "thread": 12 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1381768, + "thread": 2 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1576293, + "thread": 10 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1785156, + "thread": 4 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1831556, + "thread": 18 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 1989964, + "thread": 22 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 2221905, + "thread": 31 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 2381790, + "thread": 29 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 2614194, + "thread": 25 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 2775750, + "thread": 15 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 2908768, + "thread": 3 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 3030764, + "thread": 5 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 3182439, + "thread": 4 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 3431810, + "thread": 16 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 3532683, + "thread": 6 + } + }, + { + "amount": "114.269500796", + "slot": { + "period": 3629902, + "thread": 17 + } + }, + { + "amount": "114.269500788", + "slot": { + "period": 3833582, + "thread": 1 + } + } + ], + "AU12fgK689cd4zEpCBKxsNScSS8QqgVn62qGMYZkwRScpugSTPhjE": [ + { + "amount": "61.064130507", + "slot": { + "period": 103096, + "thread": 10 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 230865, + "thread": 12 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 465276, + "thread": 22 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 581989, + "thread": 3 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 694377, + "thread": 24 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 890797, + "thread": 25 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1122577, + "thread": 15 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1186793, + "thread": 11 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1323803, + "thread": 16 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1617678, + "thread": 31 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1724922, + "thread": 19 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 1908295, + "thread": 6 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2106529, + "thread": 10 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2264731, + "thread": 23 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2331716, + "thread": 31 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2506442, + "thread": 28 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2780783, + "thread": 15 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 2832903, + "thread": 21 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 3108402, + "thread": 21 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 3272128, + "thread": 0 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 3393828, + "thread": 28 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 3468769, + "thread": 9 + } + }, + { + "amount": "61.064130507", + "slot": { + "period": 3714224, + "thread": 21 + } + }, + { + "amount": "61.064130504", + "slot": { + "period": 3941179, + "thread": 24 + } + } + ], + "AU12fhNFsickFX1EfNyx9uoDsh9h9oD6aGgGiSNqSnkaZwv77LLEJ": [ + { + "amount": "61.533189157", + "slot": { + "period": 46705, + "thread": 2 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 312449, + "thread": 10 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 404237, + "thread": 14 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 508376, + "thread": 21 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 807992, + "thread": 6 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 878578, + "thread": 1 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1004353, + "thread": 15 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1224941, + "thread": 7 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1414731, + "thread": 30 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1644053, + "thread": 1 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1681166, + "thread": 28 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 1910325, + "thread": 24 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2132285, + "thread": 9 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2167742, + "thread": 4 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2409101, + "thread": 13 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2597269, + "thread": 27 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2740935, + "thread": 18 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 2893658, + "thread": 17 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 3057561, + "thread": 12 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 3148261, + "thread": 12 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 3355537, + "thread": 1 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 3550675, + "thread": 23 + } + }, + { + "amount": "61.533189157", + "slot": { + "period": 3681503, + "thread": 31 + } + }, + { + "amount": "61.533189166", + "slot": { + "period": 3939819, + "thread": 9 + } + } + ], + "AU12fhd5FZd3CJp9hKeo3HxzDnudQP76RFippz2PH8N75qeyNd6xq": [ + { + "amount": "94.877563847", + "slot": { + "period": 163975, + "thread": 1 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 258223, + "thread": 18 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 364783, + "thread": 9 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 559149, + "thread": 11 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 813114, + "thread": 14 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 973511, + "thread": 18 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1007875, + "thread": 18 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1257496, + "thread": 20 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1338055, + "thread": 30 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1640349, + "thread": 14 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1684909, + "thread": 0 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 1965709, + "thread": 22 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2095238, + "thread": 0 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2226692, + "thread": 6 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2430351, + "thread": 13 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2612400, + "thread": 1 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2712156, + "thread": 28 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 2849594, + "thread": 17 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 3103454, + "thread": 21 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 3143306, + "thread": 20 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 3337180, + "thread": 31 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 3603790, + "thread": 17 + } + }, + { + "amount": "94.877563847", + "slot": { + "period": 3626864, + "thread": 8 + } + }, + { + "amount": "94.877563843", + "slot": { + "period": 3843031, + "thread": 21 + } + } + ], + "AU12fi5B77FZpYQkW54r9VNV27DmydsP6tsLgWJokRBV72waH92cK": [ + { + "amount": "169.509515362", + "slot": { + "period": 156646, + "thread": 29 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 197741, + "thread": 30 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 427273, + "thread": 17 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 644384, + "thread": 1 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 697485, + "thread": 23 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 919306, + "thread": 30 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1099914, + "thread": 28 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1229033, + "thread": 26 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1374849, + "thread": 30 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1619402, + "thread": 17 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1682328, + "thread": 3 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 1963867, + "thread": 5 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2024388, + "thread": 19 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2193952, + "thread": 26 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2321861, + "thread": 16 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2490307, + "thread": 29 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2754801, + "thread": 3 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 2943384, + "thread": 13 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 3106181, + "thread": 13 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 3238552, + "thread": 1 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 3306742, + "thread": 1 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 3534879, + "thread": 28 + } + }, + { + "amount": "169.509515362", + "slot": { + "period": 3748348, + "thread": 22 + } + }, + { + "amount": "169.509515373", + "slot": { + "period": 3937642, + "thread": 18 + } + } + ], + "AU12fiXhnw9Xeb5xxxZvDpnNWSGGGa9v9N3uSnTNmrx8d7ax9jAr": [ + { + "amount": "164.740838037", + "slot": { + "period": 91911, + "thread": 6 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 235172, + "thread": 25 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 366231, + "thread": 31 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 543751, + "thread": 14 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 793726, + "thread": 5 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 835930, + "thread": 16 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1147546, + "thread": 22 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1301931, + "thread": 15 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1376043, + "thread": 14 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1601643, + "thread": 17 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1657504, + "thread": 21 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 1849544, + "thread": 6 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2033308, + "thread": 5 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2277267, + "thread": 4 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2353647, + "thread": 6 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2478584, + "thread": 29 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2753622, + "thread": 9 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 2928361, + "thread": 12 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 3103338, + "thread": 22 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 3198375, + "thread": 27 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 3372448, + "thread": 14 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 3588332, + "thread": 15 + } + }, + { + "amount": "164.740838037", + "slot": { + "period": 3765955, + "thread": 13 + } + }, + { + "amount": "164.740838027", + "slot": { + "period": 3809491, + "thread": 11 + } + } + ], + "AU12fjyo9Po3TehBmqE8gYGqGXp2Ct9rmrcACcjDZg6UH6MoQs8yy": [ + { + "amount": "390.228694142", + "slot": { + "period": 55529, + "thread": 9 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 261751, + "thread": 22 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 432409, + "thread": 9 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 560053, + "thread": 5 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 731680, + "thread": 1 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 857712, + "thread": 3 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1075755, + "thread": 3 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1190903, + "thread": 19 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1373135, + "thread": 0 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1558579, + "thread": 15 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1778703, + "thread": 5 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1931093, + "thread": 2 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 1991319, + "thread": 5 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 2187739, + "thread": 3 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 2377002, + "thread": 17 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 2525963, + "thread": 0 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 2700597, + "thread": 10 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 2913606, + "thread": 9 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 3050342, + "thread": 18 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 3171422, + "thread": 29 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 3401723, + "thread": 2 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 3455633, + "thread": 24 + } + }, + { + "amount": "390.228694142", + "slot": { + "period": 3674182, + "thread": 15 + } + }, + { + "amount": "390.228694136", + "slot": { + "period": 3849882, + "thread": 24 + } + } + ], + "AU12fkoR39JToUNC8f4967fNYsufeZY2T5gdGqwrJ72SwRBcCHsEV": [ + { + "amount": "126.849652098", + "slot": { + "period": 45179, + "thread": 9 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 314490, + "thread": 29 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 353831, + "thread": 16 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 650668, + "thread": 27 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 820240, + "thread": 8 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 895392, + "thread": 13 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1104224, + "thread": 17 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1172923, + "thread": 23 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1411058, + "thread": 8 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1542657, + "thread": 7 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1752727, + "thread": 3 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 1864626, + "thread": 3 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2017439, + "thread": 15 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2196434, + "thread": 2 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2403502, + "thread": 16 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2594172, + "thread": 14 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2643429, + "thread": 18 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2913277, + "thread": 6 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 2992855, + "thread": 20 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 3222546, + "thread": 24 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 3426839, + "thread": 25 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 3578475, + "thread": 1 + } + }, + { + "amount": "126.849652098", + "slot": { + "period": 3708232, + "thread": 6 + } + }, + { + "amount": "126.849652094", + "slot": { + "period": 3918682, + "thread": 18 + } + } + ], + "AU12fmM4tn9zQHKW1oY6VjjmAK7YHhsMpG898h5iaszCYm2dKzsz7": [ + { + "amount": "218.331484825", + "slot": { + "period": 87842, + "thread": 1 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 236548, + "thread": 21 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 376491, + "thread": 1 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 539670, + "thread": 23 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 667293, + "thread": 0 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 829550, + "thread": 31 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1125124, + "thread": 12 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1284505, + "thread": 27 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1441970, + "thread": 18 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1525342, + "thread": 11 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1738495, + "thread": 3 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1882336, + "thread": 13 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 1985501, + "thread": 3 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2241878, + "thread": 14 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2402688, + "thread": 22 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2581754, + "thread": 12 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2642136, + "thread": 28 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2886066, + "thread": 8 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 2976636, + "thread": 29 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 3271752, + "thread": 9 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 3361626, + "thread": 5 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 3556372, + "thread": 14 + } + }, + { + "amount": "218.331484825", + "slot": { + "period": 3745864, + "thread": 26 + } + }, + { + "amount": "218.331484824", + "slot": { + "period": 3894355, + "thread": 1 + } + } + ], + "AU12fmXbAN6D95iPgPXnRrwf2psosBRSxqNJs378KajGjwrDKBQ9v": [ + { + "amount": "112.527600602", + "slot": { + "period": 86957, + "thread": 27 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 313245, + "thread": 29 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 454000, + "thread": 7 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 579808, + "thread": 8 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 818307, + "thread": 2 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 947428, + "thread": 13 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1066245, + "thread": 6 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1228628, + "thread": 20 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1451432, + "thread": 9 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1639629, + "thread": 5 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1796126, + "thread": 28 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 1902869, + "thread": 15 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2015330, + "thread": 29 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2242430, + "thread": 3 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2370444, + "thread": 31 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2601591, + "thread": 25 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2745837, + "thread": 24 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 2813009, + "thread": 8 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 3070768, + "thread": 5 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 3151833, + "thread": 18 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 3407675, + "thread": 26 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 3605683, + "thread": 23 + } + }, + { + "amount": "112.527600602", + "slot": { + "period": 3730867, + "thread": 7 + } + }, + { + "amount": "112.527600596", + "slot": { + "period": 3887754, + "thread": 13 + } + } + ], + "AU12fn8dfSwSGVUdQiJUUqWHqjMyMQJvp6eJn6STELHoYtuYEJZpP": [ + { + "amount": "267.800064653", + "slot": { + "period": 52710, + "thread": 4 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 255847, + "thread": 10 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 469733, + "thread": 18 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 509344, + "thread": 17 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 775670, + "thread": 4 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 939170, + "thread": 3 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1132279, + "thread": 7 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1307652, + "thread": 21 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1377087, + "thread": 21 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1604251, + "thread": 13 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1683590, + "thread": 16 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 1948280, + "thread": 12 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2063074, + "thread": 16 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2219278, + "thread": 31 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2401019, + "thread": 7 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2541032, + "thread": 14 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2688567, + "thread": 5 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2809470, + "thread": 29 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 2969981, + "thread": 26 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 3146223, + "thread": 3 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 3341483, + "thread": 10 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 3615989, + "thread": 17 + } + }, + { + "amount": "267.800064653", + "slot": { + "period": 3751316, + "thread": 28 + } + }, + { + "amount": "267.800064655", + "slot": { + "period": 3874670, + "thread": 10 + } + } + ], + "AU12fncxfRWjTiczHTYJ43nqYD31W5gijbWzKXUBZkU8u5u7Ntd7B": [ + { + "amount": "129.124284849", + "slot": { + "period": 95534, + "thread": 12 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 224906, + "thread": 18 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 338575, + "thread": 0 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 529768, + "thread": 1 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 761203, + "thread": 20 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 887465, + "thread": 17 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1034889, + "thread": 5 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1258658, + "thread": 12 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1417764, + "thread": 31 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1491482, + "thread": 7 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1791248, + "thread": 11 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 1891093, + "thread": 28 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2025558, + "thread": 24 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2192756, + "thread": 27 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2325342, + "thread": 4 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2545751, + "thread": 7 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2642255, + "thread": 31 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 2953121, + "thread": 17 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 3046023, + "thread": 17 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 3220245, + "thread": 18 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 3369063, + "thread": 15 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 3505526, + "thread": 26 + } + }, + { + "amount": "129.124284849", + "slot": { + "period": 3624973, + "thread": 7 + } + }, + { + "amount": "129.124284848", + "slot": { + "period": 3825809, + "thread": 29 + } + } + ], + "AU12fpdDUp8fvpCZxybakPRZPi47g8pD6Y1YXrodWhDHngXK5yqTE": [ + { + "amount": "150.347595970", + "slot": { + "period": 97109, + "thread": 21 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 264682, + "thread": 6 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 351495, + "thread": 9 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 589873, + "thread": 12 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 684433, + "thread": 7 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 945397, + "thread": 5 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 983323, + "thread": 12 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 1232152, + "thread": 27 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 1478102, + "thread": 4 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 1623765, + "thread": 13 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 1658069, + "thread": 25 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 1921364, + "thread": 25 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2134152, + "thread": 5 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2177832, + "thread": 17 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2398400, + "thread": 28 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2545010, + "thread": 5 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2711190, + "thread": 11 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 2829827, + "thread": 14 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 3089185, + "thread": 20 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 3177275, + "thread": 4 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 3447721, + "thread": 2 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 3516932, + "thread": 24 + } + }, + { + "amount": "150.347595970", + "slot": { + "period": 3750111, + "thread": 3 + } + }, + { + "amount": "150.347595966", + "slot": { + "period": 3926515, + "thread": 19 + } + } + ], + "AU12fqDyQBKz24KfRrEn9VevHAgCEXwYjtSwmaZqiQvTxe5ZwVfkC": [ + { + "amount": "84.020867998", + "slot": { + "period": 166163, + "thread": 21 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 210764, + "thread": 28 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 375770, + "thread": 14 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 547219, + "thread": 17 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 748030, + "thread": 12 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 825358, + "thread": 19 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1019885, + "thread": 21 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1150492, + "thread": 10 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1349573, + "thread": 26 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1494345, + "thread": 26 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1779034, + "thread": 28 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 1970459, + "thread": 10 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2088793, + "thread": 29 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2194551, + "thread": 5 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2418137, + "thread": 28 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2585679, + "thread": 11 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2774592, + "thread": 4 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 2873731, + "thread": 0 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 3113501, + "thread": 24 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 3202770, + "thread": 4 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 3328225, + "thread": 7 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 3487172, + "thread": 16 + } + }, + { + "amount": "84.020867998", + "slot": { + "period": 3627497, + "thread": 30 + } + }, + { + "amount": "84.020868008", + "slot": { + "period": 3933045, + "thread": 11 + } + } + ], + "AU12fqEJHpqSWz4KQ1B4K7r6rPKzrA4jqnQ8DBRXXJv1JoQ24ptRu": [ + { + "amount": "64.102506511", + "slot": { + "period": 60070, + "thread": 25 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 218565, + "thread": 28 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 475706, + "thread": 26 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 624445, + "thread": 25 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 765126, + "thread": 26 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 897111, + "thread": 11 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1087101, + "thread": 11 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1243715, + "thread": 22 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1400038, + "thread": 16 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1518320, + "thread": 23 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1757593, + "thread": 10 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 1838700, + "thread": 9 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2095144, + "thread": 5 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2269360, + "thread": 18 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2340731, + "thread": 4 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2594801, + "thread": 21 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2647057, + "thread": 5 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 2829298, + "thread": 20 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 3037955, + "thread": 25 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 3234440, + "thread": 30 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 3426922, + "thread": 0 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 3466903, + "thread": 8 + } + }, + { + "amount": "64.102506511", + "slot": { + "period": 3687384, + "thread": 30 + } + }, + { + "amount": "64.102506522", + "slot": { + "period": 3803833, + "thread": 27 + } + } + ], + "AU12frEBGQ5tdGEZ4YDan5EbhEWFCuDGrzD3UDiBoVV7rkjj1v8TD": [ + { + "amount": "302.290183251", + "slot": { + "period": 153673, + "thread": 12 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 289549, + "thread": 27 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 367509, + "thread": 15 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 499607, + "thread": 11 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 799492, + "thread": 23 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 839607, + "thread": 12 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 983596, + "thread": 31 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 1174630, + "thread": 2 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 1398308, + "thread": 4 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 1526520, + "thread": 10 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 1719161, + "thread": 4 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 1829936, + "thread": 28 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2022312, + "thread": 22 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2231466, + "thread": 7 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2433632, + "thread": 20 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2610540, + "thread": 1 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2665262, + "thread": 23 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 2884971, + "thread": 1 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 3043675, + "thread": 23 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 3190996, + "thread": 29 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 3316853, + "thread": 1 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 3512486, + "thread": 21 + } + }, + { + "amount": "302.290183251", + "slot": { + "period": 3676283, + "thread": 15 + } + }, + { + "amount": "302.290183259", + "slot": { + "period": 3903449, + "thread": 9 + } + } + ], + "AU12fsLdxhmZR18Xf21eQ3wQLS7tV3m27qD91JGnsKkRAbdMnhHEf": [ + { + "amount": "314.543860280", + "slot": { + "period": 118739, + "thread": 9 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 191865, + "thread": 20 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 347965, + "thread": 19 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 592197, + "thread": 20 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 819124, + "thread": 24 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 852574, + "thread": 9 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1118549, + "thread": 6 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1156929, + "thread": 24 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1430708, + "thread": 21 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1582884, + "thread": 31 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1729181, + "thread": 29 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 1885608, + "thread": 29 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2116743, + "thread": 21 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2158856, + "thread": 11 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2338051, + "thread": 20 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2554456, + "thread": 6 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2703790, + "thread": 6 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2943893, + "thread": 24 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 2981365, + "thread": 17 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 3213391, + "thread": 17 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 3446170, + "thread": 17 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 3503916, + "thread": 9 + } + }, + { + "amount": "314.543860280", + "slot": { + "period": 3756567, + "thread": 10 + } + }, + { + "amount": "314.543860286", + "slot": { + "period": 3904854, + "thread": 7 + } + } + ], + "AU12ftXHPAS6TpqrBpjnsnMq3y3DC3SYxMcbX3nubs3yn1PorPpED": [ + { + "amount": "59.566227259", + "slot": { + "period": 165250, + "thread": 27 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 197510, + "thread": 4 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 370954, + "thread": 9 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 519569, + "thread": 23 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 797864, + "thread": 16 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 970784, + "thread": 18 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1088101, + "thread": 20 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1174601, + "thread": 1 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1463849, + "thread": 31 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1619233, + "thread": 20 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1789347, + "thread": 4 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 1809239, + "thread": 16 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2102211, + "thread": 20 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2282131, + "thread": 5 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2305836, + "thread": 22 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2499183, + "thread": 14 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2737436, + "thread": 26 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 2888189, + "thread": 9 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 3030744, + "thread": 24 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 3197517, + "thread": 16 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 3367481, + "thread": 31 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 3478713, + "thread": 15 + } + }, + { + "amount": "59.566227259", + "slot": { + "period": 3748854, + "thread": 26 + } + }, + { + "amount": "59.566227258", + "slot": { + "period": 3886518, + "thread": 23 + } + } + ], + "AU12fu8znQbtXGCJyN63VwkS4R7XWWmHwwn6e9hKqn2Qq2qF2mPmd": [ + { + "amount": "149.013970387", + "slot": { + "period": 162215, + "thread": 17 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 276651, + "thread": 29 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 347687, + "thread": 27 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 637721, + "thread": 30 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 791788, + "thread": 28 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 859929, + "thread": 26 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1136289, + "thread": 0 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1309248, + "thread": 22 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1448372, + "thread": 11 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1593558, + "thread": 2 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1781309, + "thread": 8 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 1964547, + "thread": 25 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2033303, + "thread": 11 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2246509, + "thread": 22 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2315272, + "thread": 9 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2589777, + "thread": 25 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2717887, + "thread": 31 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2794685, + "thread": 4 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 2958928, + "thread": 9 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 3122142, + "thread": 13 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 3398659, + "thread": 30 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 3500541, + "thread": 1 + } + }, + { + "amount": "149.013970387", + "slot": { + "period": 3745458, + "thread": 3 + } + }, + { + "amount": "149.013970382", + "slot": { + "period": 3873049, + "thread": 26 + } + } + ], + "AU12fudcwdZ1zpeGH3rDT2162BVYznMzSx9jrc9dkcEUVDF7E7LNr": [ + { + "amount": "70.842924255", + "slot": { + "period": 105925, + "thread": 29 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 233128, + "thread": 25 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 443914, + "thread": 15 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 556160, + "thread": 7 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 792179, + "thread": 30 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 909007, + "thread": 5 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1058731, + "thread": 16 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1195470, + "thread": 30 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1442568, + "thread": 8 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1518303, + "thread": 24 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1716249, + "thread": 30 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 1813061, + "thread": 19 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2135022, + "thread": 3 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2177209, + "thread": 10 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2335728, + "thread": 23 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2517504, + "thread": 17 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2710186, + "thread": 3 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 2808085, + "thread": 30 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 3096150, + "thread": 14 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 3172402, + "thread": 3 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 3444085, + "thread": 17 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 3493269, + "thread": 10 + } + }, + { + "amount": "70.842924255", + "slot": { + "period": 3687860, + "thread": 23 + } + }, + { + "amount": "70.842924258", + "slot": { + "period": 3869452, + "thread": 13 + } + } + ], + "AU12fwn9UL8boJhJSnFzTffWTPqR8eZebmBhGGZKbBqBHJxmrHPC1": [ + { + "amount": "205.052988890", + "slot": { + "period": 16711, + "thread": 24 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 264370, + "thread": 23 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 358400, + "thread": 9 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 543523, + "thread": 2 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 772509, + "thread": 9 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 940403, + "thread": 13 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1093645, + "thread": 30 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1152671, + "thread": 0 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1363970, + "thread": 3 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1586432, + "thread": 5 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1776556, + "thread": 18 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 1863983, + "thread": 28 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2115411, + "thread": 7 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2167627, + "thread": 22 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2347819, + "thread": 15 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2468268, + "thread": 1 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2740701, + "thread": 13 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 2936689, + "thread": 7 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 3071190, + "thread": 3 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 3204893, + "thread": 27 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 3295208, + "thread": 14 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 3528760, + "thread": 18 + } + }, + { + "amount": "205.052988890", + "slot": { + "period": 3714343, + "thread": 1 + } + }, + { + "amount": "205.052988893", + "slot": { + "period": 3890712, + "thread": 24 + } + } + ], + "AU12fwzUda89oe8Gg9XpXTPSuJ4mtUYqWKucXYeavVbFfYJMuDFsi": [ + { + "amount": "94.945053259", + "slot": { + "period": 22393, + "thread": 3 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 265094, + "thread": 12 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 418261, + "thread": 19 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 649735, + "thread": 0 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 782024, + "thread": 31 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 855031, + "thread": 4 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1120563, + "thread": 23 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1216186, + "thread": 27 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1419556, + "thread": 20 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1527535, + "thread": 8 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1722495, + "thread": 25 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 1966197, + "thread": 4 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2026527, + "thread": 29 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2247177, + "thread": 9 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2357011, + "thread": 22 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2467518, + "thread": 26 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2732903, + "thread": 27 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 2911125, + "thread": 16 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 3081273, + "thread": 28 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 3234143, + "thread": 26 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 3305668, + "thread": 7 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 3482768, + "thread": 21 + } + }, + { + "amount": "94.945053259", + "slot": { + "period": 3690470, + "thread": 21 + } + }, + { + "amount": "94.945053255", + "slot": { + "period": 3800956, + "thread": 13 + } + } + ], + "AU12fxSRkYdJzRBXkKoigDzure22iUNtsGqbU5iGFkQTgC1UP3ZGY": [ + { + "amount": "244.651283232", + "slot": { + "period": 51997, + "thread": 31 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 206440, + "thread": 18 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 416221, + "thread": 7 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 502741, + "thread": 9 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 767522, + "thread": 14 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 857336, + "thread": 17 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1070252, + "thread": 16 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1309988, + "thread": 11 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1439393, + "thread": 7 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1565562, + "thread": 20 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1732018, + "thread": 31 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 1900430, + "thread": 17 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2064296, + "thread": 24 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2244482, + "thread": 22 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2428648, + "thread": 20 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2525627, + "thread": 15 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2679437, + "thread": 1 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2825291, + "thread": 0 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 2978756, + "thread": 1 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 3138450, + "thread": 0 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 3379174, + "thread": 23 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 3494156, + "thread": 0 + } + }, + { + "amount": "244.651283232", + "slot": { + "period": 3722267, + "thread": 9 + } + }, + { + "amount": "244.651283240", + "slot": { + "period": 3847337, + "thread": 29 + } + } + ], + "AU12fxbQh4XgD9th4bijHkg25DyszQ5rLeLfGCvCEFGjQHczdWAzd": [ + { + "amount": "186.077091448", + "slot": { + "period": 108194, + "thread": 25 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 261910, + "thread": 9 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 324027, + "thread": 14 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 590304, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 782760, + "thread": 14 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 936284, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1120828, + "thread": 26 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1172497, + "thread": 18 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1340802, + "thread": 30 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1539489, + "thread": 7 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1751614, + "thread": 31 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 1866845, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2053844, + "thread": 13 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2253889, + "thread": 16 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2405219, + "thread": 14 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2567162, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2788580, + "thread": 7 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 2920356, + "thread": 24 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 3082760, + "thread": 27 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 3284279, + "thread": 30 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 3322831, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 3526660, + "thread": 20 + } + }, + { + "amount": "186.077091448", + "slot": { + "period": 3620847, + "thread": 7 + } + }, + { + "amount": "186.077091445", + "slot": { + "period": 3880977, + "thread": 22 + } + } + ], + "AU12fxpu3Zrny7CjqmEqEd6H121zkGvFpjUkUG2GgFYhwMrCvYFRQ": [ + { + "amount": "179.926433351", + "slot": { + "period": 92051, + "thread": 28 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 314885, + "thread": 10 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 476149, + "thread": 22 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 608663, + "thread": 27 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 662307, + "thread": 13 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 837330, + "thread": 6 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1037904, + "thread": 20 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1228415, + "thread": 18 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1431311, + "thread": 6 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1527519, + "thread": 6 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1775644, + "thread": 8 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 1923634, + "thread": 13 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2040933, + "thread": 7 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2232364, + "thread": 28 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2419651, + "thread": 10 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2610543, + "thread": 9 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2643705, + "thread": 8 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 2947964, + "thread": 28 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 3053048, + "thread": 22 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 3218914, + "thread": 5 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 3355930, + "thread": 18 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 3553187, + "thread": 7 + } + }, + { + "amount": "179.926433351", + "slot": { + "period": 3765912, + "thread": 26 + } + }, + { + "amount": "179.926433343", + "slot": { + "period": 3929424, + "thread": 31 + } + } + ], + "AU12fyPMH6jZxoPyjnFwc1QDrosHdaCkbshD9Z7WZPoEDT58ytVCt": [ + { + "amount": "119.772767697", + "slot": { + "period": 118141, + "thread": 26 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 185601, + "thread": 12 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 394856, + "thread": 23 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 536350, + "thread": 16 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 784464, + "thread": 23 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 982641, + "thread": 23 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1056933, + "thread": 26 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1153109, + "thread": 2 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1444881, + "thread": 9 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1544274, + "thread": 1 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1797847, + "thread": 31 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 1839290, + "thread": 10 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2001422, + "thread": 19 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2219811, + "thread": 30 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2405847, + "thread": 9 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2467790, + "thread": 27 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2634114, + "thread": 4 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 2882335, + "thread": 20 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 3039537, + "thread": 29 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 3188484, + "thread": 24 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 3367475, + "thread": 24 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 3533164, + "thread": 28 + } + }, + { + "amount": "119.772767697", + "slot": { + "period": 3619127, + "thread": 21 + } + }, + { + "amount": "119.772767692", + "slot": { + "period": 3908248, + "thread": 17 + } + } + ], + "AU12g1Jmf3UokDKzBVWzNSvq4krN9g98XuWXVKNdhkD6JzgiYtDj9": [ + { + "amount": "69.444787879", + "slot": { + "period": 118581, + "thread": 30 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 300984, + "thread": 14 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 404713, + "thread": 29 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 558632, + "thread": 2 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 670516, + "thread": 5 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 822972, + "thread": 3 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1092928, + "thread": 9 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1172213, + "thread": 0 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1367081, + "thread": 5 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1570130, + "thread": 30 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1655847, + "thread": 29 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 1859309, + "thread": 22 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2057594, + "thread": 28 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2266386, + "thread": 1 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2435116, + "thread": 4 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2611915, + "thread": 29 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2684995, + "thread": 29 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 2804480, + "thread": 28 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 3066570, + "thread": 19 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 3181230, + "thread": 6 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 3298834, + "thread": 14 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 3533596, + "thread": 3 + } + }, + { + "amount": "69.444787879", + "slot": { + "period": 3700030, + "thread": 21 + } + }, + { + "amount": "69.444787870", + "slot": { + "period": 3857861, + "thread": 16 + } + } + ], + "AU12g1X44sKaAGPzox6ojuTHAR4FJUMg5jbDtYHoCFvSVTLAApUuf": [ + { + "amount": "372.010754779", + "slot": { + "period": 34381, + "thread": 19 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 191393, + "thread": 6 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 383944, + "thread": 6 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 620202, + "thread": 24 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 791583, + "thread": 2 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 923491, + "thread": 3 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1077238, + "thread": 0 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1315393, + "thread": 24 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1333146, + "thread": 0 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1522247, + "thread": 20 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1749231, + "thread": 28 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1895727, + "thread": 5 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 1986051, + "thread": 27 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 2147209, + "thread": 29 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 2368246, + "thread": 6 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 2468876, + "thread": 14 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 2693650, + "thread": 20 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 2849209, + "thread": 15 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 3055229, + "thread": 28 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 3208094, + "thread": 2 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 3300506, + "thread": 11 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 3516829, + "thread": 22 + } + }, + { + "amount": "372.010754779", + "slot": { + "period": 3656601, + "thread": 26 + } + }, + { + "amount": "372.010754771", + "slot": { + "period": 3930793, + "thread": 10 + } + } + ], + "AU12g2Kj7ASgbrrN9ytiZZVKLL81c5EcyTL2JMTtKMNXds1J9DYJp": [ + { + "amount": "235.137439199", + "slot": { + "period": 81732, + "thread": 4 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 277136, + "thread": 28 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 451164, + "thread": 29 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 531206, + "thread": 20 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 677427, + "thread": 14 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 943741, + "thread": 20 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1001081, + "thread": 18 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1172406, + "thread": 11 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1335344, + "thread": 6 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1636789, + "thread": 27 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1661247, + "thread": 13 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1876051, + "thread": 20 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 1977973, + "thread": 1 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 2268170, + "thread": 28 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 2335478, + "thread": 10 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 2469819, + "thread": 25 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 2681640, + "thread": 12 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 2797417, + "thread": 24 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 3059118, + "thread": 24 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 3127488, + "thread": 0 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 3450463, + "thread": 1 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 3539476, + "thread": 14 + } + }, + { + "amount": "235.137439199", + "slot": { + "period": 3667094, + "thread": 27 + } + }, + { + "amount": "235.137439206", + "slot": { + "period": 3868650, + "thread": 23 + } + } + ], + "AU12g4iAi4vij1vEZanVdync2RdNzTK2ufzwg9wqwEtTbR7J6jTTh": [ + { + "amount": "410.080365281", + "slot": { + "period": 161379, + "thread": 19 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 281248, + "thread": 27 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 462427, + "thread": 31 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 608929, + "thread": 17 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 818042, + "thread": 20 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 875640, + "thread": 10 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1058841, + "thread": 9 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1182312, + "thread": 30 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1460462, + "thread": 24 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1497001, + "thread": 22 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1714391, + "thread": 6 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 1924654, + "thread": 23 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2110193, + "thread": 23 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2206756, + "thread": 24 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2345605, + "thread": 17 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2578521, + "thread": 17 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2626766, + "thread": 22 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 2923508, + "thread": 18 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 3053653, + "thread": 24 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 3259002, + "thread": 9 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 3433304, + "thread": 31 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 3545473, + "thread": 7 + } + }, + { + "amount": "410.080365281", + "slot": { + "period": 3623092, + "thread": 14 + } + }, + { + "amount": "410.080365277", + "slot": { + "period": 3877864, + "thread": 22 + } + } + ], + "AU12g5Gu1sHnZMb5CViZDnS3miBjZu8Nn7Wvk5cmFcg27h6LFjsQh": [ + { + "amount": "130.853943249", + "slot": { + "period": 40373, + "thread": 16 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 243337, + "thread": 2 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 351688, + "thread": 0 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 578554, + "thread": 15 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 679924, + "thread": 30 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 965559, + "thread": 4 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1051475, + "thread": 28 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1157494, + "thread": 17 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1389047, + "thread": 30 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1638824, + "thread": 7 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1782888, + "thread": 9 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 1887808, + "thread": 20 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2088782, + "thread": 4 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2278310, + "thread": 14 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2379669, + "thread": 26 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2478050, + "thread": 18 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2764311, + "thread": 15 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 2820805, + "thread": 16 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 3066360, + "thread": 30 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 3188792, + "thread": 3 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 3321898, + "thread": 31 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 3550956, + "thread": 0 + } + }, + { + "amount": "130.853943249", + "slot": { + "period": 3778784, + "thread": 15 + } + }, + { + "amount": "130.853943245", + "slot": { + "period": 3882884, + "thread": 30 + } + } + ], + "AU12g5W9ifYtsLn5JszwDqfcoYLqPZaUZcNDkqjPgDUNvsCqzfaMW": [ + { + "amount": "190.930601092", + "slot": { + "period": 46335, + "thread": 17 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 217754, + "thread": 8 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 487882, + "thread": 16 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 542964, + "thread": 13 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 664515, + "thread": 31 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 884600, + "thread": 15 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 982937, + "thread": 28 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 1282400, + "thread": 21 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 1320000, + "thread": 21 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 1596502, + "thread": 30 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 1697502, + "thread": 25 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 1925033, + "thread": 18 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2046217, + "thread": 21 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2290443, + "thread": 19 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2334240, + "thread": 24 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2479847, + "thread": 2 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2705540, + "thread": 25 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 2908272, + "thread": 17 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 3120948, + "thread": 24 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 3237976, + "thread": 28 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 3349317, + "thread": 21 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 3595696, + "thread": 26 + } + }, + { + "amount": "190.930601092", + "slot": { + "period": 3667702, + "thread": 10 + } + }, + { + "amount": "190.930601104", + "slot": { + "period": 3788226, + "thread": 30 + } + } + ], + "AU12g63DZNouazBPCf8yEpGbgieVVmCdBr7DChJdWfWNzrvq9dkmV": [ + { + "amount": "105.665509645", + "slot": { + "period": 145560, + "thread": 9 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 184625, + "thread": 29 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 373562, + "thread": 24 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 650281, + "thread": 17 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 703466, + "thread": 27 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 872851, + "thread": 13 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1048508, + "thread": 10 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1231016, + "thread": 2 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1414204, + "thread": 27 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1497639, + "thread": 15 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1705741, + "thread": 22 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 1924143, + "thread": 12 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2068322, + "thread": 9 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2257312, + "thread": 19 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2367733, + "thread": 21 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2467962, + "thread": 13 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2680892, + "thread": 18 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 2906267, + "thread": 2 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 3000207, + "thread": 19 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 3123834, + "thread": 24 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 3316996, + "thread": 21 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 3506380, + "thread": 2 + } + }, + { + "amount": "105.665509645", + "slot": { + "period": 3767705, + "thread": 16 + } + }, + { + "amount": "105.665509651", + "slot": { + "period": 3939439, + "thread": 0 + } + } + ], + "AU12g7VmLWKGdZU5XVWdEWKK9u2RbYo8dhxCsr2vAfvStwojNA3nY": [ + { + "amount": "206.643272638", + "slot": { + "period": 163875, + "thread": 21 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 210511, + "thread": 20 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 479028, + "thread": 14 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 627146, + "thread": 21 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 654528, + "thread": 22 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 931374, + "thread": 28 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1081381, + "thread": 8 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1211691, + "thread": 16 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1414269, + "thread": 8 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1636969, + "thread": 28 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1808512, + "thread": 13 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1933041, + "thread": 12 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 1988873, + "thread": 12 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 2235342, + "thread": 30 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 2441039, + "thread": 5 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 2570145, + "thread": 8 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 2719378, + "thread": 2 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 2842417, + "thread": 9 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3074609, + "thread": 23 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3281700, + "thread": 10 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3296155, + "thread": 30 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3528239, + "thread": 14 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3694196, + "thread": 31 + } + }, + { + "amount": "206.643272638", + "slot": { + "period": 3917616, + "thread": 22 + } + } + ], + "AU12g7WQYpbCLQyLdeHTGZr6JU4JzCmcNKmhXPMFjfdvSLnt8r81z": [ + { + "amount": "89.558049247", + "slot": { + "period": 62597, + "thread": 19 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 257274, + "thread": 6 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 465576, + "thread": 10 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 518450, + "thread": 19 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 764298, + "thread": 26 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 838625, + "thread": 10 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1092588, + "thread": 0 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1181985, + "thread": 0 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1392382, + "thread": 3 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1623026, + "thread": 4 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1758528, + "thread": 12 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 1898423, + "thread": 15 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2071845, + "thread": 1 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2243874, + "thread": 3 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2359503, + "thread": 7 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2584197, + "thread": 13 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2762731, + "thread": 20 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 2846929, + "thread": 3 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 3028711, + "thread": 3 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 3161529, + "thread": 20 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 3343749, + "thread": 2 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 3459732, + "thread": 3 + } + }, + { + "amount": "89.558049247", + "slot": { + "period": 3714500, + "thread": 8 + } + }, + { + "amount": "89.558049249", + "slot": { + "period": 3830887, + "thread": 5 + } + } + ], + "AU12g7csTagENPGgCgZ4a1FdDYBeM2JvxosezNRe6yRHJx6TrHyKu": [ + { + "amount": "207.972348873", + "slot": { + "period": 73168, + "thread": 21 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 269163, + "thread": 8 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 324674, + "thread": 8 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 553421, + "thread": 10 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 673768, + "thread": 7 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 948930, + "thread": 19 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1098501, + "thread": 4 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1311272, + "thread": 28 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1327848, + "thread": 5 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1581137, + "thread": 4 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1752410, + "thread": 23 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 1852604, + "thread": 7 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2128652, + "thread": 29 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2174195, + "thread": 1 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2318892, + "thread": 18 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2464727, + "thread": 20 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2651850, + "thread": 30 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 2835135, + "thread": 1 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 3093387, + "thread": 3 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 3160153, + "thread": 9 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 3443315, + "thread": 22 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 3567944, + "thread": 14 + } + }, + { + "amount": "207.972348873", + "slot": { + "period": 3669531, + "thread": 28 + } + }, + { + "amount": "207.972348870", + "slot": { + "period": 3830125, + "thread": 9 + } + } + ], + "AU12g81gGjXiPTKNzmgNyPqdrPNTunKvyJktmKJ74RtHNd4LsW7DY": [ + { + "amount": "161.729074394", + "slot": { + "period": 23625, + "thread": 20 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 215041, + "thread": 13 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 370440, + "thread": 19 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 611356, + "thread": 4 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 721535, + "thread": 24 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 901639, + "thread": 21 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1047822, + "thread": 7 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1307690, + "thread": 12 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1460212, + "thread": 14 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1580791, + "thread": 28 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1687036, + "thread": 19 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1823823, + "thread": 2 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 1977168, + "thread": 28 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 2273375, + "thread": 5 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 2444051, + "thread": 17 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 2485563, + "thread": 27 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 2760936, + "thread": 28 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 2802091, + "thread": 14 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 3014831, + "thread": 21 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 3250321, + "thread": 10 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 3349309, + "thread": 2 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 3513549, + "thread": 15 + } + }, + { + "amount": "161.729074394", + "slot": { + "period": 3658615, + "thread": 13 + } + }, + { + "amount": "161.729074399", + "slot": { + "period": 3790686, + "thread": 15 + } + } + ], + "AU12g8EH2G6hnYtTGfwykDtz7FhaU7T7bjDaX6qcEhbEihUvRRmDc": [ + { + "amount": "232.899740439", + "slot": { + "period": 50181, + "thread": 31 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 220125, + "thread": 18 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 395436, + "thread": 8 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 521806, + "thread": 0 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 815346, + "thread": 7 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 970819, + "thread": 5 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1096733, + "thread": 26 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1299606, + "thread": 15 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1358849, + "thread": 21 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1631733, + "thread": 14 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1797388, + "thread": 19 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 1903297, + "thread": 3 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2001000, + "thread": 27 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2192129, + "thread": 9 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2370113, + "thread": 23 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2510725, + "thread": 13 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2741826, + "thread": 11 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 2832637, + "thread": 23 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 3023855, + "thread": 8 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 3149367, + "thread": 5 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 3448091, + "thread": 16 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 3456368, + "thread": 18 + } + }, + { + "amount": "232.899740439", + "slot": { + "period": 3762981, + "thread": 9 + } + }, + { + "amount": "232.899740444", + "slot": { + "period": 3890483, + "thread": 29 + } + } + ], + "AU12g8q56i9FT4eA3r6KpQo916cT3riVRhK2bCqxBHMaLQuuRetVt": [ + { + "amount": "193.916172302", + "slot": { + "period": 41695, + "thread": 9 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 174432, + "thread": 23 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 366574, + "thread": 18 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 589557, + "thread": 10 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 755578, + "thread": 14 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 871838, + "thread": 25 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1014855, + "thread": 11 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1215679, + "thread": 21 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1373736, + "thread": 20 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1623096, + "thread": 13 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1660537, + "thread": 5 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 1866863, + "thread": 15 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2007603, + "thread": 31 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2195544, + "thread": 7 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2337861, + "thread": 4 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2579340, + "thread": 12 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2633490, + "thread": 25 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 2824931, + "thread": 1 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 3034082, + "thread": 16 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 3285963, + "thread": 24 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 3293075, + "thread": 31 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 3586174, + "thread": 4 + } + }, + { + "amount": "193.916172302", + "slot": { + "period": 3631296, + "thread": 4 + } + }, + { + "amount": "193.916172296", + "slot": { + "period": 3883149, + "thread": 15 + } + } + ], + "AU12g9E13xp5zZmPXgsmBUSEVFNG3jazmXz4SBrzbBjUET9febb5K": [ + { + "amount": "162.823861451", + "slot": { + "period": 24482, + "thread": 18 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 168649, + "thread": 22 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 484896, + "thread": 0 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 568269, + "thread": 7 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 722509, + "thread": 29 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 931069, + "thread": 6 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1000397, + "thread": 12 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1269818, + "thread": 13 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1333700, + "thread": 18 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1616641, + "thread": 29 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1797418, + "thread": 29 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 1858344, + "thread": 3 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2095449, + "thread": 10 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2244435, + "thread": 26 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2368801, + "thread": 1 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2525608, + "thread": 2 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2689308, + "thread": 31 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 2829852, + "thread": 10 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 3058989, + "thread": 1 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 3186170, + "thread": 13 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 3317531, + "thread": 7 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 3466440, + "thread": 15 + } + }, + { + "amount": "162.823861451", + "slot": { + "period": 3768768, + "thread": 14 + } + }, + { + "amount": "162.823861444", + "slot": { + "period": 3899881, + "thread": 13 + } + } + ], + "AU12g9No46ZCendUTBjUY6YquyEL2drZW8c1yiqkCM3WLVJJDSsqr": [ + { + "amount": "81.382443702", + "slot": { + "period": 19572, + "thread": 7 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 219924, + "thread": 23 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 374142, + "thread": 28 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 559646, + "thread": 26 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 737992, + "thread": 13 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 899100, + "thread": 16 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1098184, + "thread": 22 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1200162, + "thread": 7 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1405371, + "thread": 17 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1645103, + "thread": 4 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1648713, + "thread": 17 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 1864541, + "thread": 29 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2059254, + "thread": 5 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2176735, + "thread": 3 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2433945, + "thread": 4 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2490327, + "thread": 25 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2659239, + "thread": 11 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2952611, + "thread": 25 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 2979614, + "thread": 4 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 3124149, + "thread": 7 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 3324806, + "thread": 9 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 3474799, + "thread": 13 + } + }, + { + "amount": "81.382443702", + "slot": { + "period": 3732682, + "thread": 6 + } + }, + { + "amount": "81.382443710", + "slot": { + "period": 3874653, + "thread": 13 + } + } + ], + "AU12g9VEEcYcNkAZxbPwg7BWFPdAndE4xMYhckcf2fwtYTAF258Gr": [ + { + "amount": "93.470987967", + "slot": { + "period": 55088, + "thread": 18 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 175599, + "thread": 4 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 346269, + "thread": 26 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 536765, + "thread": 30 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 706866, + "thread": 10 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 821137, + "thread": 2 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1105939, + "thread": 16 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1225559, + "thread": 12 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1384724, + "thread": 23 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1575786, + "thread": 9 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1798518, + "thread": 14 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1965173, + "thread": 8 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 1984213, + "thread": 22 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2190623, + "thread": 20 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2306378, + "thread": 22 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2484147, + "thread": 26 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2638169, + "thread": 8 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2907458, + "thread": 16 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 2977789, + "thread": 9 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 3253609, + "thread": 3 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 3303164, + "thread": 26 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 3479777, + "thread": 1 + } + }, + { + "amount": "93.470987967", + "slot": { + "period": 3747761, + "thread": 9 + } + }, + { + "amount": "93.470987973", + "slot": { + "period": 3834153, + "thread": 8 + } + } + ], + "AU12g9mHdqBoumXButonQAkaTZdhef8ggVhbqCaGt9tr19J4nddbS": [ + { + "amount": "89.976692211", + "slot": { + "period": 31140, + "thread": 29 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 278728, + "thread": 20 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 488761, + "thread": 10 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 603512, + "thread": 30 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 814846, + "thread": 24 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 977917, + "thread": 9 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1130889, + "thread": 16 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1261676, + "thread": 11 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1322907, + "thread": 23 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1553718, + "thread": 26 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1761040, + "thread": 13 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 1904912, + "thread": 5 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2067017, + "thread": 28 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2186059, + "thread": 29 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2297296, + "thread": 25 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2516289, + "thread": 24 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2755301, + "thread": 13 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 2800492, + "thread": 31 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 3047273, + "thread": 28 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 3252471, + "thread": 5 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 3364794, + "thread": 24 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 3530572, + "thread": 7 + } + }, + { + "amount": "89.976692211", + "slot": { + "period": 3691047, + "thread": 0 + } + }, + { + "amount": "89.976692209", + "slot": { + "period": 3924985, + "thread": 30 + } + } + ], + "AU12gAqnjkrkhyRxxTV5ApkDGXD5CJzgHK7QNyBrX39nvLpTB5Enm": [ + { + "amount": "962.342926347", + "slot": { + "period": 11139, + "thread": 28 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 186066, + "thread": 1 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 378768, + "thread": 14 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 506662, + "thread": 6 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 732517, + "thread": 7 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 938747, + "thread": 12 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1093545, + "thread": 1 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1247098, + "thread": 1 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1442897, + "thread": 19 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1642931, + "thread": 16 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1650857, + "thread": 19 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 1882327, + "thread": 6 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2018020, + "thread": 8 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2246923, + "thread": 6 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2346459, + "thread": 25 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2542028, + "thread": 25 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2703804, + "thread": 10 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 2798934, + "thread": 2 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 3016943, + "thread": 19 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 3278508, + "thread": 1 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 3404798, + "thread": 7 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 3574044, + "thread": 11 + } + }, + { + "amount": "962.342926347", + "slot": { + "period": 3673959, + "thread": 13 + } + }, + { + "amount": "962.342926340", + "slot": { + "period": 3938327, + "thread": 20 + } + } + ], + "AU12gBGEyMNEMePJDifAMdPBfybgB95pEXxXny2U3YB2NtZoe3VDJ": [ + { + "amount": "201.478505524", + "slot": { + "period": 120169, + "thread": 5 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 305041, + "thread": 22 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 413710, + "thread": 24 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 616142, + "thread": 14 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 710167, + "thread": 17 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 934383, + "thread": 6 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1123477, + "thread": 3 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1244312, + "thread": 6 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1435168, + "thread": 11 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1512581, + "thread": 10 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1780100, + "thread": 7 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 1828208, + "thread": 9 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2090833, + "thread": 20 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2169532, + "thread": 8 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2435459, + "thread": 3 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2580109, + "thread": 27 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2628666, + "thread": 13 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 2892791, + "thread": 12 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 3047996, + "thread": 23 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 3156740, + "thread": 25 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 3393285, + "thread": 23 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 3583989, + "thread": 12 + } + }, + { + "amount": "201.478505524", + "slot": { + "period": 3627068, + "thread": 14 + } + }, + { + "amount": "201.478505519", + "slot": { + "period": 3923026, + "thread": 19 + } + } + ], + "AU12gBZc42WVxyDu6KEF45EnxWkQqs9boafuUhb43wLVmnyJSYFuV": [ + { + "amount": "220.310492390", + "slot": { + "period": 67608, + "thread": 1 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 274929, + "thread": 28 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 447650, + "thread": 18 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 626854, + "thread": 12 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 773618, + "thread": 29 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 980320, + "thread": 31 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1134790, + "thread": 0 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1281492, + "thread": 16 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1390576, + "thread": 16 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1617193, + "thread": 9 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1669086, + "thread": 26 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 1920351, + "thread": 5 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2094850, + "thread": 24 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2237904, + "thread": 14 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2363208, + "thread": 17 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2580539, + "thread": 23 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2739370, + "thread": 18 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 2793388, + "thread": 27 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 3008731, + "thread": 21 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 3281854, + "thread": 31 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 3364877, + "thread": 29 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 3467909, + "thread": 4 + } + }, + { + "amount": "220.310492390", + "slot": { + "period": 3635352, + "thread": 5 + } + }, + { + "amount": "220.310492383", + "slot": { + "period": 3833215, + "thread": 20 + } + } + ], + "AU12gBbZzVZCbVET2G9Re3vQNqBjFeANWAzoCZszMqpK9xdMX2Ygk": [ + { + "amount": "144.874652952", + "slot": { + "period": 62098, + "thread": 26 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 172924, + "thread": 11 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 341039, + "thread": 24 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 618509, + "thread": 17 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 686338, + "thread": 13 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 930118, + "thread": 13 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1000614, + "thread": 28 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1273139, + "thread": 7 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1333822, + "thread": 24 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1598513, + "thread": 5 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1669454, + "thread": 1 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 1856941, + "thread": 7 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2116087, + "thread": 19 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2268606, + "thread": 28 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2427801, + "thread": 6 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2584022, + "thread": 20 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2679182, + "thread": 17 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 2942186, + "thread": 23 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 3066334, + "thread": 22 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 3125887, + "thread": 22 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 3435757, + "thread": 15 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 3507303, + "thread": 27 + } + }, + { + "amount": "144.874652952", + "slot": { + "period": 3718455, + "thread": 3 + } + }, + { + "amount": "144.874652963", + "slot": { + "period": 3808991, + "thread": 9 + } + } + ], + "AU12gBqou2YVihdNx611yMJKcEbmEgXpNyZrPT14bCBhh5Av8vTX2": [ + { + "amount": "190.408608982", + "slot": { + "period": 74525, + "thread": 9 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 283636, + "thread": 26 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 487868, + "thread": 13 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 589969, + "thread": 14 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 707432, + "thread": 3 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 847792, + "thread": 2 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1037580, + "thread": 13 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1272815, + "thread": 2 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1399025, + "thread": 3 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1622490, + "thread": 0 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1771295, + "thread": 7 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 1897293, + "thread": 25 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2041343, + "thread": 13 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2216340, + "thread": 24 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2333873, + "thread": 13 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2555860, + "thread": 5 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2781540, + "thread": 10 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 2888124, + "thread": 1 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 3070740, + "thread": 11 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 3222616, + "thread": 17 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 3349866, + "thread": 4 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 3507551, + "thread": 18 + } + }, + { + "amount": "190.408608982", + "slot": { + "period": 3738234, + "thread": 2 + } + }, + { + "amount": "190.408608983", + "slot": { + "period": 3788242, + "thread": 14 + } + } + ], + "AU12gC3hqNz6evN74yUicwcb61ueNVnD93svEYMQrPCXmdkZjdMU2": [ + { + "amount": "97.606793706", + "slot": { + "period": 58047, + "thread": 1 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 302184, + "thread": 18 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 389291, + "thread": 0 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 633487, + "thread": 26 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 665100, + "thread": 1 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 948540, + "thread": 15 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1103854, + "thread": 24 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1252879, + "thread": 13 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1334339, + "thread": 7 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1534395, + "thread": 25 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1713042, + "thread": 23 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 1820816, + "thread": 13 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2066434, + "thread": 2 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2267498, + "thread": 23 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2389563, + "thread": 26 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2481695, + "thread": 20 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2732115, + "thread": 19 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 2842914, + "thread": 0 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 3000190, + "thread": 15 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 3269203, + "thread": 1 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 3379224, + "thread": 27 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 3528990, + "thread": 5 + } + }, + { + "amount": "97.606793706", + "slot": { + "period": 3747381, + "thread": 26 + } + }, + { + "amount": "97.606793717", + "slot": { + "period": 3838984, + "thread": 15 + } + } + ], + "AU12gCLC2QEhM3RfUE5iytPX8E61CyRCHQsxccdRs5azSV7A2tHXA": [ + { + "amount": "240.819513343", + "slot": { + "period": 75904, + "thread": 27 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 246323, + "thread": 9 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 388524, + "thread": 1 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 581217, + "thread": 1 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 763724, + "thread": 27 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 912240, + "thread": 26 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 990429, + "thread": 13 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1272092, + "thread": 3 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1410685, + "thread": 15 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1491922, + "thread": 16 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1751058, + "thread": 24 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1965978, + "thread": 2 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 1997251, + "thread": 2 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 2262075, + "thread": 8 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 2324285, + "thread": 9 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 2560322, + "thread": 5 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 2731884, + "thread": 18 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 2845655, + "thread": 14 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 3071010, + "thread": 13 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 3231358, + "thread": 28 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 3306849, + "thread": 20 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 3463628, + "thread": 8 + } + }, + { + "amount": "240.819513343", + "slot": { + "period": 3750233, + "thread": 10 + } + }, + { + "amount": "240.819513354", + "slot": { + "period": 3827893, + "thread": 25 + } + } + ], + "AU12gDqs8RwDVNzpkkqwngCJbc7AZ5u387cKKzUM39dzka9ZN47jb": [ + { + "amount": "278.955760667", + "slot": { + "period": 143462, + "thread": 10 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 308589, + "thread": 31 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 326391, + "thread": 4 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 535130, + "thread": 10 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 703419, + "thread": 26 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 916192, + "thread": 28 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1038977, + "thread": 24 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1196685, + "thread": 5 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1323847, + "thread": 2 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1639931, + "thread": 26 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1690567, + "thread": 3 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 1966375, + "thread": 0 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2039963, + "thread": 23 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2209581, + "thread": 27 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2378370, + "thread": 23 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2584276, + "thread": 5 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2736380, + "thread": 14 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 2880326, + "thread": 11 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 3055766, + "thread": 5 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 3206344, + "thread": 23 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 3321931, + "thread": 27 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 3541067, + "thread": 24 + } + }, + { + "amount": "278.955760667", + "slot": { + "period": 3711455, + "thread": 8 + } + }, + { + "amount": "278.955760657", + "slot": { + "period": 3833183, + "thread": 15 + } + } + ], + "AU12gEMQo3yJNVFBp8JUB2qboMQPMx7BiXyu5rQMQQZT3Mvu92How": [ + { + "amount": "221.557407743", + "slot": { + "period": 29561, + "thread": 6 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 224183, + "thread": 19 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 402565, + "thread": 28 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 631923, + "thread": 30 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 669854, + "thread": 18 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 960303, + "thread": 27 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1072535, + "thread": 17 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1303819, + "thread": 27 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1431462, + "thread": 6 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1515494, + "thread": 9 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1694465, + "thread": 16 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 1822676, + "thread": 5 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2010811, + "thread": 21 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2190596, + "thread": 26 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2312977, + "thread": 7 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2535475, + "thread": 6 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2643559, + "thread": 3 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 2815318, + "thread": 25 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 3091185, + "thread": 26 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 3263138, + "thread": 9 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 3390736, + "thread": 5 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 3498398, + "thread": 30 + } + }, + { + "amount": "221.557407743", + "slot": { + "period": 3716911, + "thread": 3 + } + }, + { + "amount": "221.557407733", + "slot": { + "period": 3852074, + "thread": 7 + } + } + ], + "AU12gF2VrLLDXgRaiTa95gqj6x3ofNdLjoRwToJ8Hd76L4G84zcJZ": [ + { + "amount": "414.705751960", + "slot": { + "period": 62593, + "thread": 9 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 235362, + "thread": 7 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 394605, + "thread": 4 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 559495, + "thread": 29 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 734699, + "thread": 30 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 871685, + "thread": 15 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1011858, + "thread": 30 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1227981, + "thread": 13 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1336714, + "thread": 6 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1562804, + "thread": 3 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1804425, + "thread": 28 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 1869429, + "thread": 9 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2116810, + "thread": 27 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2205793, + "thread": 9 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2400473, + "thread": 2 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2564730, + "thread": 31 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2635781, + "thread": 19 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 2926142, + "thread": 27 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 3024794, + "thread": 3 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 3130484, + "thread": 10 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 3363076, + "thread": 20 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 3607811, + "thread": 29 + } + }, + { + "amount": "414.705751960", + "slot": { + "period": 3656461, + "thread": 31 + } + }, + { + "amount": "414.705751968", + "slot": { + "period": 3877446, + "thread": 5 + } + } + ], + "AU12gFMFGPv9KNqr2o6ef7sCrpFFzrtqGarReCizKuAke124RLc4i": [ + { + "amount": "536.719092618", + "slot": { + "period": 23940, + "thread": 25 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 296499, + "thread": 27 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 439711, + "thread": 23 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 597703, + "thread": 22 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 738644, + "thread": 19 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 902654, + "thread": 16 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1118106, + "thread": 27 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1265598, + "thread": 14 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1346790, + "thread": 2 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1520387, + "thread": 20 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1801517, + "thread": 24 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 1958705, + "thread": 25 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2115768, + "thread": 24 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2200869, + "thread": 29 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2412720, + "thread": 4 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2476553, + "thread": 28 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2651678, + "thread": 7 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 2889618, + "thread": 20 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 3097053, + "thread": 7 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 3175275, + "thread": 8 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 3324591, + "thread": 22 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 3611965, + "thread": 2 + } + }, + { + "amount": "536.719092618", + "slot": { + "period": 3702283, + "thread": 18 + } + }, + { + "amount": "536.719092630", + "slot": { + "period": 3895177, + "thread": 21 + } + } + ], + "AU12gFbKkaKZb7fVo4s8nT9MCZBYLCRoghy9ZPYgDKbvv2WZgYpRe": [ + { + "amount": "154.559863359", + "slot": { + "period": 24123, + "thread": 9 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 173966, + "thread": 9 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 352962, + "thread": 23 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 634466, + "thread": 7 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 728491, + "thread": 9 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 947485, + "thread": 24 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1095059, + "thread": 22 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1235352, + "thread": 7 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1466493, + "thread": 20 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1547823, + "thread": 24 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1715509, + "thread": 17 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 1843350, + "thread": 29 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2136577, + "thread": 7 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2192078, + "thread": 9 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2453810, + "thread": 19 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2480483, + "thread": 14 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2695901, + "thread": 11 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 2823391, + "thread": 8 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 3049705, + "thread": 29 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 3231188, + "thread": 20 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 3311932, + "thread": 14 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 3584187, + "thread": 20 + } + }, + { + "amount": "154.559863359", + "slot": { + "period": 3678315, + "thread": 31 + } + }, + { + "amount": "154.559863348", + "slot": { + "period": 3815057, + "thread": 13 + } + } + ], + "AU12gG2x1PLJ2JkAhbYiFhHtEHbjvcSTTSCZFeecfuUezLgMrXgDU": [ + { + "amount": "850.704166667", + "slot": { + "period": 69944, + "thread": 17 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 246684, + "thread": 16 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 338699, + "thread": 28 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 532692, + "thread": 9 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 815950, + "thread": 30 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 917225, + "thread": 29 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1130171, + "thread": 22 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1291473, + "thread": 20 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1347253, + "thread": 18 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1481119, + "thread": 20 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1717781, + "thread": 13 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1844481, + "thread": 11 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2087611, + "thread": 8 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2226553, + "thread": 27 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2376342, + "thread": 11 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2491715, + "thread": 25 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2774202, + "thread": 12 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2909531, + "thread": 27 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3014284, + "thread": 30 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3180793, + "thread": 19 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3333762, + "thread": 23 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3452769, + "thread": 0 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3625239, + "thread": 5 + } + }, + { + "amount": "850.704166659", + "slot": { + "period": 3889984, + "thread": 18 + } + } + ], + "AU12gG5Qm3AYys3qAoTBaGUgy3WLdCrQAYGgkjVU2jUNbSNjkhTRf": [ + { + "amount": "208.139171197", + "slot": { + "period": 95577, + "thread": 21 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 190896, + "thread": 7 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 401783, + "thread": 23 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 651271, + "thread": 29 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 718697, + "thread": 4 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 951131, + "thread": 20 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1018911, + "thread": 22 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1167352, + "thread": 20 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1378362, + "thread": 31 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1553397, + "thread": 17 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1717620, + "thread": 30 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 1947687, + "thread": 17 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2073268, + "thread": 17 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2213805, + "thread": 28 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2421165, + "thread": 29 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2516230, + "thread": 17 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2746316, + "thread": 19 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 2906693, + "thread": 7 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 3035624, + "thread": 7 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 3149231, + "thread": 27 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 3434668, + "thread": 3 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 3607829, + "thread": 8 + } + }, + { + "amount": "208.139171197", + "slot": { + "period": 3657950, + "thread": 16 + } + }, + { + "amount": "208.139171187", + "slot": { + "period": 3823903, + "thread": 1 + } + } + ], + "AU12gGVspAQxneTRwxPdbsCPkutfd1hwKZVPRCzyiQmbwZ5tT7ghW": [ + { + "amount": "72.461742344", + "slot": { + "period": 138718, + "thread": 22 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 294824, + "thread": 1 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 481278, + "thread": 19 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 653152, + "thread": 20 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 771724, + "thread": 1 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 922392, + "thread": 14 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1143866, + "thread": 22 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1174733, + "thread": 21 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1470433, + "thread": 27 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1640421, + "thread": 25 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1722132, + "thread": 30 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 1901812, + "thread": 6 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2112262, + "thread": 22 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2265231, + "thread": 24 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2422015, + "thread": 25 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2621363, + "thread": 12 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2698765, + "thread": 5 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2827388, + "thread": 16 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 2987936, + "thread": 15 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 3139748, + "thread": 21 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 3314831, + "thread": 2 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 3609104, + "thread": 30 + } + }, + { + "amount": "72.461742344", + "slot": { + "period": 3672477, + "thread": 14 + } + }, + { + "amount": "72.461742339", + "slot": { + "period": 3860445, + "thread": 3 + } + } + ], + "AU12gGjxAv2BCQKbQprihNRaUsYV6ztQj8Hs3cG3VAKLnRkKEQsDt": [ + { + "amount": "433.699962058", + "slot": { + "period": 108151, + "thread": 10 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 256861, + "thread": 21 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 438917, + "thread": 13 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 542883, + "thread": 6 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 750316, + "thread": 17 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 859648, + "thread": 18 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1063271, + "thread": 28 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1316164, + "thread": 6 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1479054, + "thread": 13 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1552408, + "thread": 25 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1730814, + "thread": 4 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 1975850, + "thread": 31 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2009866, + "thread": 5 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2265335, + "thread": 12 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2313272, + "thread": 6 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2616130, + "thread": 31 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2643374, + "thread": 8 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2842297, + "thread": 20 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 2991758, + "thread": 30 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 3139116, + "thread": 27 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 3317489, + "thread": 16 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 3547402, + "thread": 4 + } + }, + { + "amount": "433.699962058", + "slot": { + "period": 3771248, + "thread": 28 + } + }, + { + "amount": "433.699962048", + "slot": { + "period": 3887265, + "thread": 4 + } + } + ], + "AU12gJ3h1CNW5dqg38X8EfgdvPmvsDCarQ2ug5WpWfAJyXkf7NsrQ": [ + { + "amount": "81.706883311", + "slot": { + "period": 69100, + "thread": 1 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 172616, + "thread": 4 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 329551, + "thread": 11 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 571222, + "thread": 6 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 774033, + "thread": 28 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 925233, + "thread": 15 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1088821, + "thread": 10 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1209027, + "thread": 22 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1412031, + "thread": 20 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1512923, + "thread": 7 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1795094, + "thread": 26 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1907911, + "thread": 0 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 1982501, + "thread": 31 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 2280488, + "thread": 3 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 2414980, + "thread": 6 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 2620318, + "thread": 5 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 2761591, + "thread": 5 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 2820007, + "thread": 3 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 3009408, + "thread": 22 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 3182081, + "thread": 26 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 3319978, + "thread": 17 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 3462184, + "thread": 28 + } + }, + { + "amount": "81.706883311", + "slot": { + "period": 3703061, + "thread": 8 + } + }, + { + "amount": "81.706883305", + "slot": { + "period": 3919757, + "thread": 26 + } + } + ], + "AU12gKDW9wtbU1qMmD4w4i8TYAeDN8xizd3hKA1evXvkYAauMF6LN": [ + { + "amount": "703.630107599", + "slot": { + "period": 142096, + "thread": 26 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 185809, + "thread": 1 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 324223, + "thread": 21 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 556340, + "thread": 19 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 755007, + "thread": 11 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 841878, + "thread": 29 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1113662, + "thread": 5 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1312165, + "thread": 29 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1415295, + "thread": 18 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1584027, + "thread": 9 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1717616, + "thread": 17 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 1896012, + "thread": 30 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2132050, + "thread": 31 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2190465, + "thread": 28 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2312671, + "thread": 26 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2593344, + "thread": 12 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2711310, + "thread": 0 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 2877691, + "thread": 16 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 3058614, + "thread": 27 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 3264146, + "thread": 5 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 3312288, + "thread": 4 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 3584168, + "thread": 0 + } + }, + { + "amount": "703.630107599", + "slot": { + "period": 3735704, + "thread": 10 + } + }, + { + "amount": "703.630107597", + "slot": { + "period": 3846730, + "thread": 6 + } + } + ], + "AU12gKJqmhaouU7D691dSV9XbZVLuAN321nzv2KEq2YjP65mLYeEJ": [ + { + "amount": "134.671844335", + "slot": { + "period": 35232, + "thread": 29 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 181272, + "thread": 15 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 357319, + "thread": 9 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 573082, + "thread": 21 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 681433, + "thread": 23 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 977480, + "thread": 6 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1002593, + "thread": 0 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1172871, + "thread": 19 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1359277, + "thread": 30 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1550022, + "thread": 2 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1772676, + "thread": 5 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1815677, + "thread": 29 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 1982516, + "thread": 3 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 2195363, + "thread": 19 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 2382700, + "thread": 25 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 2462459, + "thread": 29 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 2667989, + "thread": 1 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 2951613, + "thread": 1 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 3038314, + "thread": 8 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 3281652, + "thread": 19 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 3316419, + "thread": 27 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 3589434, + "thread": 16 + } + }, + { + "amount": "134.671844335", + "slot": { + "period": 3650539, + "thread": 23 + } + }, + { + "amount": "134.671844327", + "slot": { + "period": 3840379, + "thread": 9 + } + } + ], + "AU12gKTS9hg91t1YYSdKhnzjMkmjguwbY4XUtYA2u6ff9zgkGvRcf": [ + { + "amount": "512.056777896", + "slot": { + "period": 107978, + "thread": 23 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 282458, + "thread": 20 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 480303, + "thread": 10 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 593505, + "thread": 25 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 810686, + "thread": 5 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 887724, + "thread": 19 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1138996, + "thread": 22 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1167764, + "thread": 13 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1336676, + "thread": 27 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1603010, + "thread": 14 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1660812, + "thread": 2 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 1920010, + "thread": 24 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2038396, + "thread": 19 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2279942, + "thread": 19 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2408261, + "thread": 7 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2588660, + "thread": 1 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2690543, + "thread": 7 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2796194, + "thread": 8 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 2960372, + "thread": 26 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 3143713, + "thread": 5 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 3355372, + "thread": 13 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 3491912, + "thread": 11 + } + }, + { + "amount": "512.056777896", + "slot": { + "period": 3730150, + "thread": 0 + } + }, + { + "amount": "512.056777902", + "slot": { + "period": 3879743, + "thread": 7 + } + } + ], + "AU12gLGDdqnkAnU4bUh1bKpgdsJoj2e1mAPpe2KJ3T59GWFkG57rE": [ + { + "amount": "294.412997921", + "slot": { + "period": 133017, + "thread": 31 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 253603, + "thread": 17 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 426504, + "thread": 3 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 518645, + "thread": 20 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 807002, + "thread": 7 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 883874, + "thread": 12 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1071113, + "thread": 24 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1297281, + "thread": 25 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1429915, + "thread": 29 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1586910, + "thread": 21 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1748984, + "thread": 10 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 1942048, + "thread": 23 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2097643, + "thread": 28 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2203730, + "thread": 17 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2311639, + "thread": 19 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2598346, + "thread": 12 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2740890, + "thread": 0 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 2843483, + "thread": 6 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 3076776, + "thread": 0 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 3200093, + "thread": 19 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 3311936, + "thread": 23 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 3492842, + "thread": 4 + } + }, + { + "amount": "294.412997921", + "slot": { + "period": 3630390, + "thread": 6 + } + }, + { + "amount": "294.412997915", + "slot": { + "period": 3814621, + "thread": 17 + } + } + ], + "AU12gLnY6QqovGX4afe8FEUwEw3s6hBBfD2iGsWXaRiaP8W8wDS5a": [ + { + "amount": "232.694251193", + "slot": { + "period": 69489, + "thread": 18 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 200674, + "thread": 3 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 358183, + "thread": 5 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 552793, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 686104, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 976401, + "thread": 4 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1008691, + "thread": 13 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1187532, + "thread": 7 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1463775, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1571228, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1709839, + "thread": 16 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 1917647, + "thread": 16 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2034234, + "thread": 18 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2251694, + "thread": 12 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2399953, + "thread": 3 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2584652, + "thread": 16 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2634139, + "thread": 17 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 2857790, + "thread": 14 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 3076738, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 3223883, + "thread": 28 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 3442032, + "thread": 1 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 3544687, + "thread": 10 + } + }, + { + "amount": "232.694251193", + "slot": { + "period": 3779292, + "thread": 6 + } + }, + { + "amount": "232.694251188", + "slot": { + "period": 3932198, + "thread": 5 + } + } + ], + "AU12gMDW4xuf3p5QVBF5FWS47b3vCRUnjzAGfy4jLDDWRm3gBoWYh": [ + { + "amount": "379.966102393", + "slot": { + "period": 137888, + "thread": 26 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 315914, + "thread": 13 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 425851, + "thread": 22 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 518804, + "thread": 31 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 745899, + "thread": 5 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 948828, + "thread": 22 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1137517, + "thread": 0 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1287611, + "thread": 20 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1329016, + "thread": 27 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1564965, + "thread": 24 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1662305, + "thread": 30 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 1828241, + "thread": 22 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2082942, + "thread": 18 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2208477, + "thread": 15 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2420088, + "thread": 8 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2616592, + "thread": 16 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2672572, + "thread": 19 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 2844319, + "thread": 27 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 3046748, + "thread": 16 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 3243647, + "thread": 23 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 3373934, + "thread": 29 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 3495378, + "thread": 21 + } + }, + { + "amount": "379.966102393", + "slot": { + "period": 3748679, + "thread": 6 + } + }, + { + "amount": "379.966102385", + "slot": { + "period": 3931833, + "thread": 29 + } + } + ], + "AU12gMQmGgEDDmpYvYqFZyHc3iZEV97i4vzPCyhGdRrSfmeoxYzBM": [ + { + "amount": "139.383663875", + "slot": { + "period": 102312, + "thread": 24 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 170528, + "thread": 11 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 374509, + "thread": 13 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 567528, + "thread": 23 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 723935, + "thread": 14 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 929150, + "thread": 20 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1145156, + "thread": 17 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1222128, + "thread": 9 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1416967, + "thread": 3 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1572071, + "thread": 6 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1796329, + "thread": 23 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 1819969, + "thread": 6 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2132521, + "thread": 9 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2162975, + "thread": 5 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2426056, + "thread": 10 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2481689, + "thread": 24 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2641567, + "thread": 3 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2921445, + "thread": 23 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 2965674, + "thread": 14 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 3247667, + "thread": 12 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 3372885, + "thread": 29 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 3603425, + "thread": 1 + } + }, + { + "amount": "139.383663875", + "slot": { + "period": 3696723, + "thread": 29 + } + }, + { + "amount": "139.383663884", + "slot": { + "period": 3939816, + "thread": 31 + } + } + ], + "AU12gNK2v4AUiaTqLV3J75n5Em3brC9PaN1zR3zpTKuhPXvcHAadE": [ + { + "amount": "70.971846400", + "slot": { + "period": 118940, + "thread": 0 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 258344, + "thread": 26 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 467535, + "thread": 21 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 627333, + "thread": 11 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 766726, + "thread": 24 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 918028, + "thread": 9 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1131629, + "thread": 19 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1269659, + "thread": 9 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1323325, + "thread": 2 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1636827, + "thread": 30 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1661480, + "thread": 25 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 1953979, + "thread": 30 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2107682, + "thread": 19 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2202276, + "thread": 21 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2418492, + "thread": 0 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2546532, + "thread": 3 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2663460, + "thread": 0 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 2855012, + "thread": 30 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 3094686, + "thread": 7 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 3278749, + "thread": 26 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 3410240, + "thread": 25 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 3505037, + "thread": 15 + } + }, + { + "amount": "70.971846400", + "slot": { + "period": 3723004, + "thread": 2 + } + }, + { + "amount": "70.971846409", + "slot": { + "period": 3832625, + "thread": 30 + } + } + ], + "AU12gPY3gwwoF9h7ZnBASPfcaYTanZ6EghRaRebxSHUnKiPsznwVe": [ + { + "amount": "346.157101221", + "slot": { + "period": 97874, + "thread": 31 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 195002, + "thread": 13 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 327567, + "thread": 25 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 629238, + "thread": 30 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 782539, + "thread": 3 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 953358, + "thread": 9 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1082500, + "thread": 18 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1277862, + "thread": 6 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1412315, + "thread": 1 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1561634, + "thread": 12 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1666376, + "thread": 0 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1941035, + "thread": 22 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 1983494, + "thread": 9 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 2266494, + "thread": 1 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 2296229, + "thread": 26 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 2497582, + "thread": 3 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 2691024, + "thread": 2 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 2855169, + "thread": 10 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 3055223, + "thread": 14 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 3167785, + "thread": 17 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 3385829, + "thread": 3 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 3517355, + "thread": 25 + } + }, + { + "amount": "346.157101221", + "slot": { + "period": 3657856, + "thread": 5 + } + }, + { + "amount": "346.157101211", + "slot": { + "period": 3797630, + "thread": 31 + } + } + ], + "AU12gQobXvbeFw6JAVhL9hce3xWo1J8m8sW5sdnr1QX6FHEJG24CJ": [ + { + "amount": "93.989699829", + "slot": { + "period": 83440, + "thread": 26 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 296344, + "thread": 21 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 380181, + "thread": 0 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 525019, + "thread": 17 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 678710, + "thread": 11 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 927293, + "thread": 10 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1056701, + "thread": 24 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1229606, + "thread": 30 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1320609, + "thread": 18 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1536028, + "thread": 24 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1747931, + "thread": 3 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 1921530, + "thread": 6 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2122516, + "thread": 0 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2224080, + "thread": 16 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2328209, + "thread": 24 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2480824, + "thread": 10 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2681432, + "thread": 28 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 2852018, + "thread": 9 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 3027828, + "thread": 10 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 3197033, + "thread": 29 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 3301503, + "thread": 5 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 3507503, + "thread": 28 + } + }, + { + "amount": "93.989699829", + "slot": { + "period": 3699645, + "thread": 4 + } + }, + { + "amount": "93.989699834", + "slot": { + "period": 3840873, + "thread": 16 + } + } + ], + "AU12gQruN94X4MJ41jzmNX6ghLpEAk9iHXTUxsgagLXLXFazkbwo6": [ + { + "amount": "497.769686504", + "slot": { + "period": 14697, + "thread": 13 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 174503, + "thread": 1 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 430358, + "thread": 30 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 542295, + "thread": 23 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 754930, + "thread": 31 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 946651, + "thread": 26 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1039486, + "thread": 2 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1163395, + "thread": 23 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1443589, + "thread": 8 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1641766, + "thread": 31 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1679747, + "thread": 25 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 1824829, + "thread": 8 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2110946, + "thread": 11 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2260118, + "thread": 4 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2358996, + "thread": 18 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2517652, + "thread": 21 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2646148, + "thread": 23 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2941113, + "thread": 13 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 2958115, + "thread": 24 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 3250799, + "thread": 18 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 3417480, + "thread": 29 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 3540547, + "thread": 14 + } + }, + { + "amount": "497.769686504", + "slot": { + "period": 3719590, + "thread": 7 + } + }, + { + "amount": "497.769686496", + "slot": { + "period": 3830368, + "thread": 29 + } + } + ], + "AU12gR9Q3wGhsAsq3o3TjTLqBqB3eUV5T9f6o8ZhYq8gmcPDA4Vfs": [ + { + "amount": "242.615229031", + "slot": { + "period": 42109, + "thread": 3 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 293763, + "thread": 14 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 403332, + "thread": 15 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 502457, + "thread": 6 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 748664, + "thread": 25 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 947997, + "thread": 6 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1051157, + "thread": 23 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1240613, + "thread": 25 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1428687, + "thread": 8 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1616962, + "thread": 5 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1677858, + "thread": 24 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 1918593, + "thread": 11 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2001645, + "thread": 3 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2231448, + "thread": 9 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2396480, + "thread": 1 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2476003, + "thread": 0 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2662727, + "thread": 19 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 2912361, + "thread": 2 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 3007338, + "thread": 1 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 3214173, + "thread": 9 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 3438268, + "thread": 18 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 3519091, + "thread": 24 + } + }, + { + "amount": "242.615229031", + "slot": { + "period": 3654502, + "thread": 18 + } + }, + { + "amount": "242.615229025", + "slot": { + "period": 3933496, + "thread": 7 + } + } + ], + "AU12gSrT3dJhM1bodApWBi2iauYax1sVV5r5cBFMjUiDor5mmTqTE": [ + { + "amount": "98.234523206", + "slot": { + "period": 91112, + "thread": 6 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 269813, + "thread": 4 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 475793, + "thread": 2 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 547401, + "thread": 7 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 710197, + "thread": 8 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 844078, + "thread": 21 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1014203, + "thread": 0 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1163139, + "thread": 29 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1346027, + "thread": 9 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1518329, + "thread": 1 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1651691, + "thread": 28 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 1916050, + "thread": 28 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2018339, + "thread": 5 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2154554, + "thread": 19 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2433407, + "thread": 30 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2534743, + "thread": 8 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2756245, + "thread": 23 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 2903730, + "thread": 11 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 3021321, + "thread": 31 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 3266068, + "thread": 8 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 3449340, + "thread": 3 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 3552454, + "thread": 27 + } + }, + { + "amount": "98.234523206", + "slot": { + "period": 3777777, + "thread": 7 + } + }, + { + "amount": "98.234523210", + "slot": { + "period": 3891586, + "thread": 13 + } + } + ], + "AU12gTz9X2SbxJra3h28H7JDFGp4Kf6nHk2RYmuXGVDJqKxbBMAWr": [ + { + "amount": "145.050629955", + "slot": { + "period": 139640, + "thread": 13 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 233935, + "thread": 0 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 334864, + "thread": 28 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 597665, + "thread": 1 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 688645, + "thread": 26 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 964004, + "thread": 13 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1021571, + "thread": 11 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1172467, + "thread": 8 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1350452, + "thread": 27 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1510752, + "thread": 29 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1726792, + "thread": 26 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 1910604, + "thread": 10 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2122983, + "thread": 23 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2237000, + "thread": 28 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2326039, + "thread": 13 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2556796, + "thread": 10 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2791659, + "thread": 18 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 2835630, + "thread": 19 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 3042945, + "thread": 16 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 3205399, + "thread": 15 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 3419372, + "thread": 24 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 3577163, + "thread": 14 + } + }, + { + "amount": "145.050629955", + "slot": { + "period": 3664837, + "thread": 22 + } + }, + { + "amount": "145.050629950", + "slot": { + "period": 3789043, + "thread": 21 + } + } + ], + "AU12gUHAs3PSBtAqjKVYaBX7BHgRunRL4tj1gtmBNSAnPMGV2bwEJ": [ + { + "amount": "96.192069869", + "slot": { + "period": 12013, + "thread": 15 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 279807, + "thread": 11 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 369167, + "thread": 19 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 589668, + "thread": 8 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 702116, + "thread": 29 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 852244, + "thread": 15 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1049685, + "thread": 13 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1154959, + "thread": 8 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1340492, + "thread": 23 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1573674, + "thread": 23 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1699231, + "thread": 4 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 1932545, + "thread": 19 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2139652, + "thread": 24 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2211128, + "thread": 26 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2345012, + "thread": 7 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2488449, + "thread": 12 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2747920, + "thread": 6 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2893744, + "thread": 22 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 2971755, + "thread": 8 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 3242296, + "thread": 3 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 3290011, + "thread": 5 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 3499451, + "thread": 19 + } + }, + { + "amount": "96.192069869", + "slot": { + "period": 3630336, + "thread": 28 + } + }, + { + "amount": "96.192069876", + "slot": { + "period": 3789500, + "thread": 14 + } + } + ], + "AU12gUxEA86X63NtSpHDqWxHCDmKDCXhqnA2DsufuhQXerGM7YnrR": [ + { + "amount": "148.923872471", + "slot": { + "period": 73432, + "thread": 13 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 207154, + "thread": 2 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 463385, + "thread": 9 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 493143, + "thread": 23 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 722355, + "thread": 28 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 924242, + "thread": 28 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1042133, + "thread": 28 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1187504, + "thread": 7 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1445026, + "thread": 7 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1574543, + "thread": 23 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1699259, + "thread": 20 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 1930408, + "thread": 19 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2065845, + "thread": 17 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2206994, + "thread": 24 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2396710, + "thread": 10 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2619146, + "thread": 21 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2782362, + "thread": 5 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 2880212, + "thread": 5 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 3009494, + "thread": 22 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 3174319, + "thread": 5 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 3420639, + "thread": 19 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 3522892, + "thread": 12 + } + }, + { + "amount": "148.923872471", + "slot": { + "period": 3714646, + "thread": 23 + } + }, + { + "amount": "148.923872468", + "slot": { + "period": 3943877, + "thread": 20 + } + } + ], + "AU12gV3EeFGss2fprBfHhxvFREYdZoQ5y8nB1ojCeiuwHdiDiBpeS": [ + { + "amount": "146.894627285", + "slot": { + "period": 25146, + "thread": 0 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 195624, + "thread": 31 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 489189, + "thread": 18 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 517833, + "thread": 13 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 755684, + "thread": 9 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 825831, + "thread": 1 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1028780, + "thread": 31 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1196679, + "thread": 7 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1349093, + "thread": 28 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1524416, + "thread": 24 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1790315, + "thread": 1 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 1828285, + "thread": 10 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2054701, + "thread": 6 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2171956, + "thread": 2 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2375279, + "thread": 1 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2499585, + "thread": 30 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2697642, + "thread": 29 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 2870033, + "thread": 10 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 3047459, + "thread": 10 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 3239106, + "thread": 10 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 3418478, + "thread": 11 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 3500902, + "thread": 3 + } + }, + { + "amount": "146.894627285", + "slot": { + "period": 3674163, + "thread": 1 + } + }, + { + "amount": "146.894627277", + "slot": { + "period": 3927365, + "thread": 1 + } + } + ], + "AU12gV4rnmn9QWsnVfjNm5dUiMN4up86SV7ux9LtvRAj6amU6dsMJ": [ + { + "amount": "355.609181554", + "slot": { + "period": 44848, + "thread": 27 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 322065, + "thread": 24 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 326408, + "thread": 2 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 630484, + "thread": 30 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 794991, + "thread": 24 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 875001, + "thread": 0 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1087931, + "thread": 19 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1258691, + "thread": 16 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1331889, + "thread": 23 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1549572, + "thread": 25 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1741745, + "thread": 11 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 1914333, + "thread": 5 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2078558, + "thread": 28 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2158539, + "thread": 28 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2300805, + "thread": 26 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2478485, + "thread": 25 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2769335, + "thread": 11 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 2838004, + "thread": 1 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 3077412, + "thread": 23 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 3271758, + "thread": 4 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 3316703, + "thread": 9 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 3529625, + "thread": 2 + } + }, + { + "amount": "355.609181554", + "slot": { + "period": 3740056, + "thread": 10 + } + }, + { + "amount": "355.609181559", + "slot": { + "period": 3876967, + "thread": 13 + } + } + ], + "AU12gVe3zLFZQet2pJpWnN8kaEgkvMbq9TTBrpifqv4Sj5wgQBKpD": [ + { + "amount": "85.870048448", + "slot": { + "period": 73236, + "thread": 15 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 308896, + "thread": 21 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 432890, + "thread": 12 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 653277, + "thread": 22 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 704575, + "thread": 27 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 856302, + "thread": 25 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1026322, + "thread": 18 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1255502, + "thread": 28 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1445345, + "thread": 16 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1496036, + "thread": 16 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1771250, + "thread": 7 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 1891256, + "thread": 13 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2127109, + "thread": 24 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2166280, + "thread": 18 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2368466, + "thread": 13 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2592165, + "thread": 31 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2672620, + "thread": 9 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 2929874, + "thread": 7 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 3101014, + "thread": 12 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 3141729, + "thread": 21 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 3366870, + "thread": 28 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 3563910, + "thread": 11 + } + }, + { + "amount": "85.870048448", + "slot": { + "period": 3639410, + "thread": 4 + } + }, + { + "amount": "85.870048447", + "slot": { + "period": 3934891, + "thread": 30 + } + } + ], + "AU12gWXQT2szR4p7NpmpMPrqfUsJae45QHsk7NWW5RsC1mWxVezmE": [ + { + "amount": "295.870887644", + "slot": { + "period": 33053, + "thread": 21 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 205327, + "thread": 13 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 461627, + "thread": 20 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 631552, + "thread": 10 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 695232, + "thread": 27 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 879282, + "thread": 22 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1009057, + "thread": 1 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1179666, + "thread": 30 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1470156, + "thread": 19 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1637089, + "thread": 18 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1735253, + "thread": 27 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 1911025, + "thread": 20 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2070498, + "thread": 18 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2153478, + "thread": 14 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2356802, + "thread": 20 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2534993, + "thread": 4 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2689209, + "thread": 20 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2827665, + "thread": 15 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 2968025, + "thread": 13 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 3207621, + "thread": 19 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 3370388, + "thread": 18 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 3480696, + "thread": 14 + } + }, + { + "amount": "295.870887644", + "slot": { + "period": 3646470, + "thread": 30 + } + }, + { + "amount": "295.870887636", + "slot": { + "period": 3849481, + "thread": 11 + } + } + ], + "AU12gX4X25xHzUTMYDCjag5rvWwUptjfZadLUUi581qutWiwmeNZU": [ + { + "amount": "109.301288054", + "slot": { + "period": 108672, + "thread": 5 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 232552, + "thread": 16 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 331944, + "thread": 23 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 538983, + "thread": 30 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 684690, + "thread": 3 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 916208, + "thread": 14 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1059232, + "thread": 10 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1252133, + "thread": 19 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1333064, + "thread": 4 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1500620, + "thread": 17 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1706149, + "thread": 26 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1873995, + "thread": 15 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 1980151, + "thread": 30 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 2284248, + "thread": 9 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 2407259, + "thread": 10 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 2582272, + "thread": 17 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 2750362, + "thread": 19 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 2841678, + "thread": 29 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 3010827, + "thread": 9 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 3202103, + "thread": 11 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 3439268, + "thread": 25 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 3486515, + "thread": 2 + } + }, + { + "amount": "109.301288054", + "slot": { + "period": 3669811, + "thread": 17 + } + }, + { + "amount": "109.301288044", + "slot": { + "period": 3812155, + "thread": 21 + } + } + ], + "AU12gYEJM6PhDFUVfQwFmFeEwncQ8ie7zcVFoMd8jc1dGPoev7fDM": [ + { + "amount": "335.144158620", + "slot": { + "period": 111327, + "thread": 14 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 285611, + "thread": 19 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 425595, + "thread": 13 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 575541, + "thread": 17 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 802803, + "thread": 23 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 924563, + "thread": 10 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1123703, + "thread": 30 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1267533, + "thread": 0 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1413248, + "thread": 19 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1642811, + "thread": 21 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1760574, + "thread": 19 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 1972062, + "thread": 15 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2031771, + "thread": 1 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2254848, + "thread": 6 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2449247, + "thread": 30 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2515358, + "thread": 23 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2743556, + "thread": 31 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2928630, + "thread": 23 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 2969735, + "thread": 3 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 3220593, + "thread": 30 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 3357607, + "thread": 28 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 3573224, + "thread": 20 + } + }, + { + "amount": "335.144158620", + "slot": { + "period": 3765434, + "thread": 27 + } + }, + { + "amount": "335.144158615", + "slot": { + "period": 3935431, + "thread": 2 + } + } + ], + "AU12gYVeYxuE3822iyy1Abo21xi46sPtzWEoS8fc4D2wuAAandEU8": [ + { + "amount": "133.305067603", + "slot": { + "period": 50708, + "thread": 15 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 224041, + "thread": 27 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 443606, + "thread": 5 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 521305, + "thread": 14 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 660916, + "thread": 31 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 841213, + "thread": 22 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1063352, + "thread": 1 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1219601, + "thread": 20 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1463681, + "thread": 6 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1597854, + "thread": 1 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1742649, + "thread": 23 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 1828819, + "thread": 1 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2048675, + "thread": 11 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2234527, + "thread": 8 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2332742, + "thread": 3 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2506737, + "thread": 25 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2690620, + "thread": 13 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 2823106, + "thread": 25 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 3053250, + "thread": 27 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 3284945, + "thread": 18 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 3357950, + "thread": 31 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 3608401, + "thread": 29 + } + }, + { + "amount": "133.305067603", + "slot": { + "period": 3753679, + "thread": 28 + } + }, + { + "amount": "133.305067604", + "slot": { + "period": 3915279, + "thread": 15 + } + } + ], + "AU12gZBZGWdy8cGDy152vFZUEg7BhBqxoFMYN9F2qmCCdMbcGqGj6": [ + { + "amount": "90.707905806", + "slot": { + "period": 85220, + "thread": 30 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 287761, + "thread": 21 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 337046, + "thread": 19 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 558637, + "thread": 28 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 660348, + "thread": 2 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 934045, + "thread": 14 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1003962, + "thread": 27 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1268684, + "thread": 25 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1321121, + "thread": 20 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1555443, + "thread": 3 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1657638, + "thread": 18 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1928837, + "thread": 0 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 1994278, + "thread": 26 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 2152301, + "thread": 19 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 2362097, + "thread": 8 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 2570789, + "thread": 11 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 2777348, + "thread": 11 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 2863365, + "thread": 31 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 3017940, + "thread": 29 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 3251863, + "thread": 31 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 3382198, + "thread": 7 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 3450688, + "thread": 0 + } + }, + { + "amount": "90.707905806", + "slot": { + "period": 3764734, + "thread": 14 + } + }, + { + "amount": "90.707905807", + "slot": { + "period": 3819681, + "thread": 29 + } + } + ], + "AU12ga49CmcTxoiHnMqoTLJ7ZpN5Lc9kW5RcLcnxV16ATjzUjFXGc": [ + { + "amount": "188.094830712", + "slot": { + "period": 140380, + "thread": 7 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 286728, + "thread": 6 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 341201, + "thread": 13 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 550321, + "thread": 2 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 661440, + "thread": 24 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 820921, + "thread": 23 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1107853, + "thread": 22 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1168704, + "thread": 13 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1349468, + "thread": 1 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1535543, + "thread": 27 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1658968, + "thread": 23 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 1897546, + "thread": 10 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2136705, + "thread": 24 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2177655, + "thread": 0 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2353189, + "thread": 20 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2584525, + "thread": 8 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2688430, + "thread": 2 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 2937301, + "thread": 28 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 3103150, + "thread": 2 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 3260195, + "thread": 17 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 3432348, + "thread": 9 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 3572801, + "thread": 7 + } + }, + { + "amount": "188.094830712", + "slot": { + "period": 3762762, + "thread": 19 + } + }, + { + "amount": "188.094830701", + "slot": { + "period": 3866679, + "thread": 17 + } + } + ], + "AU12gaJNKhzvroB7WmQ7KP4qxAqJi3C7fnobgY9MGyNyJQvisjtCu": [ + { + "amount": "117.528955459", + "slot": { + "period": 29878, + "thread": 29 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 229041, + "thread": 2 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 414998, + "thread": 19 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 647488, + "thread": 11 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 685337, + "thread": 22 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 832172, + "thread": 18 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1022553, + "thread": 0 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1307045, + "thread": 9 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1377963, + "thread": 17 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1520929, + "thread": 27 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1695960, + "thread": 26 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 1926993, + "thread": 8 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2013866, + "thread": 24 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2239693, + "thread": 13 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2367646, + "thread": 31 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2466022, + "thread": 18 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2629221, + "thread": 24 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2889360, + "thread": 8 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 2969437, + "thread": 11 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 3211690, + "thread": 11 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 3419391, + "thread": 8 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 3520760, + "thread": 6 + } + }, + { + "amount": "117.528955459", + "slot": { + "period": 3717606, + "thread": 27 + } + }, + { + "amount": "117.528955450", + "slot": { + "period": 3856208, + "thread": 21 + } + } + ], + "AU12gacWt7ZwNn4xKk42WVwtbaBDuemDfybYTM3TFQX2Bc68QqEb4": [ + { + "amount": "522.727613598", + "slot": { + "period": 11335, + "thread": 7 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 253035, + "thread": 16 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 393725, + "thread": 5 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 645106, + "thread": 4 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 723897, + "thread": 24 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 879853, + "thread": 3 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1103937, + "thread": 12 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1312994, + "thread": 30 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1338731, + "thread": 30 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1611431, + "thread": 19 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1712653, + "thread": 1 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1863929, + "thread": 5 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 1985828, + "thread": 30 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2164723, + "thread": 26 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2295366, + "thread": 30 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2576235, + "thread": 30 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2712664, + "thread": 9 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2880016, + "thread": 22 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 2995490, + "thread": 9 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 3156436, + "thread": 21 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 3373912, + "thread": 15 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 3474621, + "thread": 10 + } + }, + { + "amount": "522.727613598", + "slot": { + "period": 3727731, + "thread": 12 + } + }, + { + "amount": "522.727613596", + "slot": { + "period": 3945321, + "thread": 22 + } + } + ], + "AU12gauKP8HP9qnogcUqjezGK6Eo9wwzs3nSyp8EeHC6TP5Rbwmwn": [ + { + "amount": "241.122179716", + "slot": { + "period": 140483, + "thread": 26 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 240824, + "thread": 3 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 435598, + "thread": 7 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 636215, + "thread": 19 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 803226, + "thread": 12 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 875499, + "thread": 12 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1148474, + "thread": 19 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1204155, + "thread": 18 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1396787, + "thread": 17 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1529085, + "thread": 1 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1786852, + "thread": 16 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 1940971, + "thread": 5 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2128328, + "thread": 4 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2230805, + "thread": 2 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2460227, + "thread": 29 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2579179, + "thread": 6 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2745954, + "thread": 1 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 2865342, + "thread": 15 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 3078765, + "thread": 19 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 3129146, + "thread": 18 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 3446022, + "thread": 27 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 3537147, + "thread": 5 + } + }, + { + "amount": "241.122179716", + "slot": { + "period": 3756759, + "thread": 14 + } + }, + { + "amount": "241.122179705", + "slot": { + "period": 3826180, + "thread": 7 + } + } + ], + "AU12gba8ZNUdQh7CfmR7r1zrQMnUJhude1z4ynz4VkUBy2amBuvcp": [ + { + "amount": "153.762658117", + "slot": { + "period": 147606, + "thread": 1 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 222936, + "thread": 11 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 428181, + "thread": 28 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 499430, + "thread": 5 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 742094, + "thread": 21 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 943237, + "thread": 9 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1042832, + "thread": 14 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1153452, + "thread": 5 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1436118, + "thread": 30 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1535356, + "thread": 13 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1741130, + "thread": 19 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 1945167, + "thread": 1 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2015684, + "thread": 31 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2151700, + "thread": 3 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2380679, + "thread": 15 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2555621, + "thread": 13 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2752134, + "thread": 16 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2908424, + "thread": 18 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 2956878, + "thread": 16 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 3131039, + "thread": 6 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 3392215, + "thread": 16 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 3484733, + "thread": 9 + } + }, + { + "amount": "153.762658117", + "slot": { + "period": 3708742, + "thread": 23 + } + }, + { + "amount": "153.762658128", + "slot": { + "period": 3788372, + "thread": 19 + } + } + ], + "AU12gbg9V7LVVyn1WvyTTZnn4QsnmU5bHPfhdkYR6Ffffu7mLv3sN": [ + { + "amount": "379.369280150", + "slot": { + "period": 72836, + "thread": 14 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 197513, + "thread": 0 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 458290, + "thread": 1 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 641604, + "thread": 28 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 729535, + "thread": 31 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 868643, + "thread": 20 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1004025, + "thread": 21 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1299029, + "thread": 26 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1394944, + "thread": 15 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1482732, + "thread": 26 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1683100, + "thread": 31 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 1863277, + "thread": 5 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2094693, + "thread": 30 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2292864, + "thread": 19 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2345637, + "thread": 24 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2581038, + "thread": 1 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2725304, + "thread": 20 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 2926547, + "thread": 5 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 3010238, + "thread": 19 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 3266299, + "thread": 13 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 3334197, + "thread": 0 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 3521599, + "thread": 31 + } + }, + { + "amount": "379.369280150", + "slot": { + "period": 3657735, + "thread": 16 + } + }, + { + "amount": "379.369280143", + "slot": { + "period": 3871409, + "thread": 27 + } + } + ], + "AU12gcVWophWkV8atRPp3ihXWh4gukinN4niyioXTf2iuTXH1eGCy": [ + { + "amount": "65.711772441", + "slot": { + "period": 112821, + "thread": 25 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 210364, + "thread": 11 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 407795, + "thread": 14 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 575714, + "thread": 17 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 819140, + "thread": 13 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 841024, + "thread": 8 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1101125, + "thread": 25 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1297952, + "thread": 12 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1383084, + "thread": 13 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1553347, + "thread": 17 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1754029, + "thread": 3 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 1914529, + "thread": 15 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2121010, + "thread": 7 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2287687, + "thread": 29 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2370099, + "thread": 27 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2607521, + "thread": 27 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2730254, + "thread": 8 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 2792691, + "thread": 21 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 3101371, + "thread": 0 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 3211636, + "thread": 26 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 3416971, + "thread": 10 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 3581259, + "thread": 23 + } + }, + { + "amount": "65.711772441", + "slot": { + "period": 3759156, + "thread": 18 + } + }, + { + "amount": "65.711772442", + "slot": { + "period": 3922313, + "thread": 6 + } + } + ], + "AU12gcXdY4SVNBuNtWksmYbFAMew6Ry5d9p3475EdGBgsiQx3m2Wq": [ + { + "amount": "107.641691466", + "slot": { + "period": 108334, + "thread": 24 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 323676, + "thread": 30 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 372902, + "thread": 21 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 579124, + "thread": 1 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 781783, + "thread": 5 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 881110, + "thread": 29 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1140968, + "thread": 22 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1306090, + "thread": 5 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1417477, + "thread": 1 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1546608, + "thread": 7 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1666105, + "thread": 23 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 1881806, + "thread": 27 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2016846, + "thread": 3 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2148883, + "thread": 14 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2329388, + "thread": 21 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2589530, + "thread": 17 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2768140, + "thread": 9 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 2817539, + "thread": 18 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 3040388, + "thread": 17 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 3224395, + "thread": 21 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 3299271, + "thread": 26 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 3480305, + "thread": 12 + } + }, + { + "amount": "107.641691466", + "slot": { + "period": 3639979, + "thread": 9 + } + }, + { + "amount": "107.641691454", + "slot": { + "period": 3945098, + "thread": 14 + } + } + ], + "AU12gcayN9xi7iwxLCJSMQyVwN6TeBQT8jCHxGR8MEDg8yAZecX1a": [ + { + "amount": "292.744108420", + "slot": { + "period": 128905, + "thread": 21 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 268045, + "thread": 30 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 484538, + "thread": 13 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 518530, + "thread": 11 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 744750, + "thread": 5 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 896857, + "thread": 22 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1082170, + "thread": 24 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1258672, + "thread": 25 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1366249, + "thread": 0 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1489262, + "thread": 12 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1771179, + "thread": 6 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 1811038, + "thread": 10 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2129881, + "thread": 12 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2271976, + "thread": 14 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2442346, + "thread": 14 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2494400, + "thread": 25 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2708140, + "thread": 2 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 2931818, + "thread": 19 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 3006516, + "thread": 23 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 3246991, + "thread": 21 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 3289640, + "thread": 31 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 3570793, + "thread": 16 + } + }, + { + "amount": "292.744108420", + "slot": { + "period": 3625527, + "thread": 17 + } + }, + { + "amount": "292.744108415", + "slot": { + "period": 3795714, + "thread": 16 + } + } + ], + "AU12ge4uQP5jdsodfvaSXQGHoALy8HkwHetavnm8JhjiPEJnsaAmH": [ + { + "amount": "91.197314462", + "slot": { + "period": 71678, + "thread": 16 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 302836, + "thread": 9 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 333253, + "thread": 7 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 543071, + "thread": 15 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 761237, + "thread": 23 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 981556, + "thread": 26 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1077038, + "thread": 22 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1169389, + "thread": 16 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1397670, + "thread": 22 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1505507, + "thread": 22 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1724114, + "thread": 14 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 1833499, + "thread": 23 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2068573, + "thread": 29 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2160969, + "thread": 10 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2453363, + "thread": 10 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2463863, + "thread": 27 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2668258, + "thread": 1 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2817247, + "thread": 26 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 2965661, + "thread": 24 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 3226747, + "thread": 1 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 3426780, + "thread": 4 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 3540339, + "thread": 7 + } + }, + { + "amount": "91.197314462", + "slot": { + "period": 3662358, + "thread": 22 + } + }, + { + "amount": "91.197314466", + "slot": { + "period": 3911342, + "thread": 22 + } + } + ], + "AU12geBxFNQaAJGdtvuTVDaoEF48Gf5XkpzyKTBAZLU92FDeQ1SAH": [ + { + "amount": "319.348285751", + "slot": { + "period": 47878, + "thread": 9 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 286854, + "thread": 30 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 473170, + "thread": 25 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 567735, + "thread": 16 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 760783, + "thread": 16 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 938000, + "thread": 25 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1024065, + "thread": 13 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1179655, + "thread": 5 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1441879, + "thread": 14 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1603994, + "thread": 7 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1696850, + "thread": 1 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 1883326, + "thread": 6 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2108470, + "thread": 10 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2231689, + "thread": 29 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2313723, + "thread": 26 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2604256, + "thread": 8 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2667645, + "thread": 9 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2947280, + "thread": 12 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 2959190, + "thread": 16 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 3177537, + "thread": 19 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 3448913, + "thread": 2 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 3571093, + "thread": 4 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 3684024, + "thread": 18 + } + }, + { + "amount": "319.348285751", + "slot": { + "period": 3903317, + "thread": 4 + } + } + ], + "AU12gf4npyL5NF9Coo9A8HDQzVDoQo4f3xqehEoL4jWPG9Rp6xrVE": [ + { + "amount": "301.674294609", + "slot": { + "period": 33987, + "thread": 11 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 285380, + "thread": 31 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 483974, + "thread": 9 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 639543, + "thread": 6 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 710913, + "thread": 18 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 959095, + "thread": 22 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 992480, + "thread": 0 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1219394, + "thread": 6 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1429968, + "thread": 19 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1570450, + "thread": 4 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1693058, + "thread": 30 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1975180, + "thread": 22 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 1998810, + "thread": 21 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 2240334, + "thread": 27 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 2455947, + "thread": 13 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 2506838, + "thread": 14 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 2722433, + "thread": 30 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 2863722, + "thread": 4 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 3095310, + "thread": 12 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 3280165, + "thread": 20 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 3341789, + "thread": 5 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 3582108, + "thread": 16 + } + }, + { + "amount": "301.674294609", + "slot": { + "period": 3759133, + "thread": 24 + } + }, + { + "amount": "301.674294608", + "slot": { + "period": 3798733, + "thread": 1 + } + } + ], + "AU12gfL6SbjhxfXbKpJxdC9Mj8pTCbj7AEDyPWMAPon9pyZdWk7T9": [ + { + "amount": "50512.000000000", + "slot": { + "period": 103360, + "thread": 29 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 180753, + "thread": 2 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 453139, + "thread": 6 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 631995, + "thread": 28 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 819193, + "thread": 25 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 919711, + "thread": 17 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1147926, + "thread": 1 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1179701, + "thread": 16 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1362376, + "thread": 15 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1589038, + "thread": 23 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1782858, + "thread": 2 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 1901718, + "thread": 12 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2080774, + "thread": 26 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2268206, + "thread": 10 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2346400, + "thread": 20 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2499645, + "thread": 15 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2639151, + "thread": 3 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2873185, + "thread": 9 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 2981471, + "thread": 24 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 3214034, + "thread": 12 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 3349235, + "thread": 3 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 3514744, + "thread": 13 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 3737451, + "thread": 11 + } + }, + { + "amount": "50512.000000000", + "slot": { + "period": 3920813, + "thread": 10 + } + } + ], + "AU12gfLF73uWfSLKXfCX56SFcjF7aeh8vB1VtazewrBySxuusLVD7": [ + { + "amount": "549.775178204", + "slot": { + "period": 167210, + "thread": 10 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 190044, + "thread": 14 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 357019, + "thread": 12 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 636734, + "thread": 6 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 690569, + "thread": 11 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 852823, + "thread": 31 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1116622, + "thread": 21 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1182423, + "thread": 30 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1433530, + "thread": 28 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1554896, + "thread": 22 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1709670, + "thread": 13 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 1898941, + "thread": 12 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2064658, + "thread": 16 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2171511, + "thread": 9 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2348972, + "thread": 22 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2569780, + "thread": 29 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2717054, + "thread": 10 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 2894103, + "thread": 16 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 3054480, + "thread": 14 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 3204718, + "thread": 18 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 3299416, + "thread": 2 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 3498247, + "thread": 21 + } + }, + { + "amount": "549.775178204", + "slot": { + "period": 3646343, + "thread": 20 + } + }, + { + "amount": "549.775178215", + "slot": { + "period": 3929117, + "thread": 14 + } + } + ], + "AU12gfSSoGNdwA8WCkrrcRwAj9x2nuXTuMKDQZ9Vm82HTmzgv3GCi": [ + { + "amount": "229.133150916", + "slot": { + "period": 72482, + "thread": 24 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 234111, + "thread": 5 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 477364, + "thread": 29 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 634672, + "thread": 13 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 780029, + "thread": 28 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 851641, + "thread": 17 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1108788, + "thread": 23 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1150473, + "thread": 31 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1459975, + "thread": 26 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1587122, + "thread": 29 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1673184, + "thread": 17 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 1857851, + "thread": 30 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2044666, + "thread": 19 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2201529, + "thread": 22 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2374790, + "thread": 31 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2552204, + "thread": 23 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2647397, + "thread": 19 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 2927154, + "thread": 9 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3090584, + "thread": 15 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3266421, + "thread": 16 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3334141, + "thread": 17 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3610704, + "thread": 2 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3729814, + "thread": 0 + } + }, + { + "amount": "229.133150916", + "slot": { + "period": 3942572, + "thread": 23 + } + } + ], + "AU12ggPjqSE9y6p4eV8dh8A3S9MJN4HiJKgeoVswkUmK3gw7rZdim": [ + { + "amount": "267.635632887", + "slot": { + "period": 57153, + "thread": 29 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 202507, + "thread": 0 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 426382, + "thread": 24 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 513615, + "thread": 31 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 808409, + "thread": 27 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 857420, + "thread": 1 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1032725, + "thread": 24 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1202470, + "thread": 13 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1370513, + "thread": 27 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1527943, + "thread": 11 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1800391, + "thread": 18 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1902271, + "thread": 4 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 1999594, + "thread": 29 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 2283596, + "thread": 4 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 2419393, + "thread": 9 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 2476701, + "thread": 14 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 2649296, + "thread": 1 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 2807805, + "thread": 17 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 3117551, + "thread": 8 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 3218402, + "thread": 28 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 3381636, + "thread": 9 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 3495774, + "thread": 21 + } + }, + { + "amount": "267.635632887", + "slot": { + "period": 3760487, + "thread": 27 + } + }, + { + "amount": "267.635632879", + "slot": { + "period": 3813725, + "thread": 31 + } + } + ], + "AU12ggxeEpP3iwybyw9tYUZSCSCEAWMGmHNViSW8CZ9MSXrDpTLf7": [ + { + "amount": "125.402648491", + "slot": { + "period": 36186, + "thread": 13 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 270840, + "thread": 28 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 406482, + "thread": 4 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 540342, + "thread": 4 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 744684, + "thread": 18 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 950563, + "thread": 2 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1073467, + "thread": 0 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1203607, + "thread": 13 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1439966, + "thread": 30 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1513839, + "thread": 7 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1732577, + "thread": 27 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 1879264, + "thread": 15 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2137505, + "thread": 18 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2194456, + "thread": 9 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2312947, + "thread": 17 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2586042, + "thread": 19 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2635302, + "thread": 31 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 2861360, + "thread": 9 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 3046845, + "thread": 8 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 3195881, + "thread": 20 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 3372739, + "thread": 6 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 3476251, + "thread": 0 + } + }, + { + "amount": "125.402648491", + "slot": { + "period": 3732412, + "thread": 9 + } + }, + { + "amount": "125.402648498", + "slot": { + "period": 3798133, + "thread": 21 + } + } + ], + "AU12gh4KoD6TkfCD6UrJWdPSSvTCPn9RHVPSYzZ9PHBSggGz4k477": [ + { + "amount": "86.427717580", + "slot": { + "period": 111972, + "thread": 26 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 224661, + "thread": 23 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 372092, + "thread": 17 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 604439, + "thread": 6 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 672073, + "thread": 23 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 966043, + "thread": 11 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1078389, + "thread": 25 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1308072, + "thread": 2 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1395027, + "thread": 0 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1515736, + "thread": 14 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1719743, + "thread": 25 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 1964139, + "thread": 15 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2097103, + "thread": 9 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2221054, + "thread": 31 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2317314, + "thread": 13 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2470538, + "thread": 15 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2693302, + "thread": 0 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 2934368, + "thread": 6 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 3005610, + "thread": 1 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 3256859, + "thread": 8 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 3315384, + "thread": 25 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 3493397, + "thread": 9 + } + }, + { + "amount": "86.427717580", + "slot": { + "period": 3757016, + "thread": 12 + } + }, + { + "amount": "86.427717586", + "slot": { + "period": 3883528, + "thread": 3 + } + } + ], + "AU12ghMJu824ZtHN1dew5rVV8sqpg5ukKVqYxyKCnrDPbsd7f3bpf": [ + { + "amount": "181.598088846", + "slot": { + "period": 48632, + "thread": 24 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 232085, + "thread": 10 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 475495, + "thread": 6 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 558917, + "thread": 18 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 698739, + "thread": 12 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 967673, + "thread": 8 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1115099, + "thread": 6 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1204542, + "thread": 31 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1472863, + "thread": 1 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1603379, + "thread": 3 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1708309, + "thread": 18 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 1862223, + "thread": 2 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2043288, + "thread": 4 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2251236, + "thread": 3 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2451327, + "thread": 23 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2517570, + "thread": 1 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2674825, + "thread": 9 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 2866430, + "thread": 29 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 3032413, + "thread": 12 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 3201736, + "thread": 12 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 3355672, + "thread": 8 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 3501791, + "thread": 9 + } + }, + { + "amount": "181.598088846", + "slot": { + "period": 3696846, + "thread": 16 + } + }, + { + "amount": "181.598088853", + "slot": { + "period": 3849147, + "thread": 22 + } + } + ], + "AU12ghiuZCL346WNbNEHmbJNxfsM3wEQ8jQ2pnhcHP2pmyfmP7s89": [ + { + "amount": "75.698921961", + "slot": { + "period": 128886, + "thread": 3 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 321647, + "thread": 3 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 346808, + "thread": 15 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 516291, + "thread": 7 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 676464, + "thread": 23 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 823909, + "thread": 28 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1149200, + "thread": 25 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1182641, + "thread": 5 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1354219, + "thread": 14 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1504267, + "thread": 27 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1725210, + "thread": 2 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 1858225, + "thread": 14 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2048336, + "thread": 7 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2257323, + "thread": 28 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2427689, + "thread": 8 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2539166, + "thread": 15 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2701338, + "thread": 27 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 2860764, + "thread": 31 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 3054080, + "thread": 15 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 3189428, + "thread": 20 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 3327602, + "thread": 29 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 3538839, + "thread": 16 + } + }, + { + "amount": "75.698921961", + "slot": { + "period": 3665525, + "thread": 11 + } + }, + { + "amount": "75.698921951", + "slot": { + "period": 3940002, + "thread": 28 + } + } + ], + "AU12giu43VK7VRYEGf9oSBcSSpCeiFWG32doZtqFL63dLY7b6Ywwi": [ + { + "amount": "60.341785281", + "slot": { + "period": 32729, + "thread": 27 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 269615, + "thread": 3 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 389493, + "thread": 17 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 506887, + "thread": 2 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 765793, + "thread": 27 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 915830, + "thread": 8 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1007818, + "thread": 4 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1239631, + "thread": 9 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1355540, + "thread": 26 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1497800, + "thread": 25 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1733570, + "thread": 7 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 1903200, + "thread": 12 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2052609, + "thread": 3 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2247181, + "thread": 21 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2395409, + "thread": 21 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2621766, + "thread": 9 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2652399, + "thread": 5 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 2821780, + "thread": 4 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 3038292, + "thread": 28 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 3241735, + "thread": 1 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 3398204, + "thread": 31 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 3519093, + "thread": 20 + } + }, + { + "amount": "60.341785281", + "slot": { + "period": 3634763, + "thread": 28 + } + }, + { + "amount": "60.341785277", + "slot": { + "period": 3928671, + "thread": 23 + } + } + ], + "AU12gjLKgyw998w44qCYL13dmZKSvkLaxxxSMgLPRPC2tdTXhbJ6Z": [ + { + "amount": "164.399742566", + "slot": { + "period": 24105, + "thread": 29 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 221289, + "thread": 30 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 374457, + "thread": 30 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 640705, + "thread": 22 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 746329, + "thread": 30 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 921226, + "thread": 8 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1084890, + "thread": 22 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1170211, + "thread": 26 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1441547, + "thread": 31 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1500624, + "thread": 27 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1664748, + "thread": 17 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1925991, + "thread": 31 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 1977009, + "thread": 14 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 2147781, + "thread": 26 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 2313685, + "thread": 25 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 2566790, + "thread": 25 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 2645536, + "thread": 6 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 2894705, + "thread": 7 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 3019189, + "thread": 11 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 3229325, + "thread": 3 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 3341966, + "thread": 28 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 3565338, + "thread": 0 + } + }, + { + "amount": "164.399742566", + "slot": { + "period": 3739639, + "thread": 0 + } + }, + { + "amount": "164.399742556", + "slot": { + "period": 3927730, + "thread": 25 + } + } + ], + "AU12gkZxWD6q8KwEWi1z8ZtgjwmKEASy44src36Y2kEVNfzuz4Sqe": [ + { + "amount": "216.702955555", + "slot": { + "period": 157311, + "thread": 8 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 276161, + "thread": 0 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 487037, + "thread": 14 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 593967, + "thread": 6 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 708365, + "thread": 2 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 978197, + "thread": 11 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1104147, + "thread": 13 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1165237, + "thread": 21 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1454103, + "thread": 2 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1633389, + "thread": 24 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1662392, + "thread": 1 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 1853627, + "thread": 31 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2111697, + "thread": 16 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2240134, + "thread": 21 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2305739, + "thread": 16 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2595320, + "thread": 22 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2791465, + "thread": 11 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2817737, + "thread": 7 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 2984406, + "thread": 30 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 3126498, + "thread": 5 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 3362784, + "thread": 6 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 3582967, + "thread": 25 + } + }, + { + "amount": "216.702955555", + "slot": { + "period": 3684818, + "thread": 11 + } + }, + { + "amount": "216.702955558", + "slot": { + "period": 3946153, + "thread": 26 + } + } + ], + "AU12gkc92DzL5m2FKhuVfLvqURCKGXWFbG29SKjq5guH3ERgTnu9x": [ + { + "amount": "256.961365830", + "slot": { + "period": 95318, + "thread": 7 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 201721, + "thread": 1 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 374999, + "thread": 4 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 644637, + "thread": 4 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 699201, + "thread": 10 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 876270, + "thread": 10 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1054340, + "thread": 6 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1182214, + "thread": 6 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1456463, + "thread": 30 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1531222, + "thread": 0 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1680564, + "thread": 5 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 1831698, + "thread": 17 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2139009, + "thread": 8 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2216837, + "thread": 17 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2380719, + "thread": 21 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2570270, + "thread": 22 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2677675, + "thread": 23 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 2860146, + "thread": 16 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 3100249, + "thread": 23 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 3180319, + "thread": 16 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 3295201, + "thread": 5 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 3601191, + "thread": 31 + } + }, + { + "amount": "256.961365830", + "slot": { + "period": 3671623, + "thread": 4 + } + }, + { + "amount": "256.961365827", + "slot": { + "period": 3900481, + "thread": 17 + } + } + ], + "AU12gnQn1rg2BTv96HzwK8D7nNquR7RRAEWP9KL9AiTxbhWzZ92ME": [ + { + "amount": "141.505180213", + "slot": { + "period": 63606, + "thread": 0 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 240551, + "thread": 17 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 432156, + "thread": 27 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 504505, + "thread": 15 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 801758, + "thread": 4 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 938015, + "thread": 14 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1122843, + "thread": 16 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1209911, + "thread": 12 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1403166, + "thread": 7 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1599489, + "thread": 2 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1806683, + "thread": 4 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 1845016, + "thread": 7 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2076657, + "thread": 4 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2246632, + "thread": 17 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2430000, + "thread": 13 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2551633, + "thread": 2 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2676816, + "thread": 21 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 2895068, + "thread": 16 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 3023351, + "thread": 17 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 3140520, + "thread": 19 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 3296638, + "thread": 27 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 3570877, + "thread": 24 + } + }, + { + "amount": "141.505180213", + "slot": { + "period": 3704511, + "thread": 26 + } + }, + { + "amount": "141.505180224", + "slot": { + "period": 3870262, + "thread": 26 + } + } + ], + "AU12gnasRxz5Wa5aFBcQ4NhFFgYT6gQDTG3WJmgyyvbJKp43t2FK3": [ + { + "amount": "80.524431214", + "slot": { + "period": 127381, + "thread": 7 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 298689, + "thread": 12 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 342426, + "thread": 22 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 624927, + "thread": 9 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 677010, + "thread": 22 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 864915, + "thread": 9 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1069631, + "thread": 19 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1166640, + "thread": 3 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1430864, + "thread": 12 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1529888, + "thread": 4 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1711850, + "thread": 7 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 1937273, + "thread": 13 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2006133, + "thread": 23 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2285451, + "thread": 3 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2449617, + "thread": 7 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2490821, + "thread": 6 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2672549, + "thread": 1 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 2818190, + "thread": 29 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 3065209, + "thread": 12 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 3140045, + "thread": 15 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 3375608, + "thread": 7 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 3599371, + "thread": 9 + } + }, + { + "amount": "80.524431214", + "slot": { + "period": 3697769, + "thread": 23 + } + }, + { + "amount": "80.524431223", + "slot": { + "period": 3785403, + "thread": 20 + } + } + ], + "AU12gnauhatKw2YGUtxCsSogZp61J9dxKwfLy8je74JtNBpZ2gKQW": [ + { + "amount": "174.395973415", + "slot": { + "period": 163212, + "thread": 22 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 320654, + "thread": 21 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 364024, + "thread": 23 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 590064, + "thread": 2 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 798278, + "thread": 4 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 861620, + "thread": 30 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1084395, + "thread": 20 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1265992, + "thread": 9 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1474328, + "thread": 29 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1558124, + "thread": 25 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1779184, + "thread": 14 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 1975248, + "thread": 31 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2005418, + "thread": 1 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2168247, + "thread": 12 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2375757, + "thread": 0 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2520887, + "thread": 0 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2685728, + "thread": 2 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 2807613, + "thread": 18 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 3004812, + "thread": 11 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 3185590, + "thread": 31 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 3308800, + "thread": 8 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 3467709, + "thread": 15 + } + }, + { + "amount": "174.395973415", + "slot": { + "period": 3634263, + "thread": 21 + } + }, + { + "amount": "174.395973410", + "slot": { + "period": 3918434, + "thread": 5 + } + } + ], + "AU12gngEAYqqBoLjoVj1jHVxSU9tXuCMqhQNWAj9KxpXWfUH5XEjZ": [ + { + "amount": "129.502558076", + "slot": { + "period": 134379, + "thread": 4 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 313975, + "thread": 26 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 327861, + "thread": 25 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 589436, + "thread": 16 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 684292, + "thread": 6 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 832465, + "thread": 12 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1099277, + "thread": 4 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1202836, + "thread": 5 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1401239, + "thread": 27 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1575185, + "thread": 2 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1754105, + "thread": 30 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 1811137, + "thread": 7 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2018565, + "thread": 18 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2223696, + "thread": 24 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2408277, + "thread": 9 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2581733, + "thread": 3 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2688373, + "thread": 11 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2829444, + "thread": 22 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 2976594, + "thread": 12 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 3180172, + "thread": 4 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 3412266, + "thread": 28 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 3594133, + "thread": 30 + } + }, + { + "amount": "129.502558076", + "slot": { + "period": 3629944, + "thread": 14 + } + }, + { + "amount": "129.502558069", + "slot": { + "period": 3868483, + "thread": 26 + } + } + ], + "AU12go7kmr1VGfHLm5MCXnDGKij1ebLyRWb1afnchhcWJDRnwWKyw": [ + { + "amount": "639.098177997", + "slot": { + "period": 115133, + "thread": 6 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 242138, + "thread": 30 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 409575, + "thread": 7 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 513640, + "thread": 22 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 725024, + "thread": 12 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 940219, + "thread": 21 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1121635, + "thread": 12 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1178418, + "thread": 5 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1452251, + "thread": 10 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1530450, + "thread": 28 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1786168, + "thread": 10 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1924451, + "thread": 21 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 1999216, + "thread": 27 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 2275929, + "thread": 9 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 2408621, + "thread": 20 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 2585173, + "thread": 23 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 2662731, + "thread": 16 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 2871264, + "thread": 3 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3079706, + "thread": 6 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3232859, + "thread": 15 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3328900, + "thread": 21 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3452158, + "thread": 27 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3689793, + "thread": 19 + } + }, + { + "amount": "639.098177997", + "slot": { + "period": 3881742, + "thread": 14 + } + } + ], + "AU12gp3tPt7BJkNHhU4XCUeGp5n5axeK8Cgbu7nFq7qkfpzhAKn2u": [ + { + "amount": "101.109748127", + "slot": { + "period": 35746, + "thread": 13 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 292351, + "thread": 9 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 485014, + "thread": 1 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 637349, + "thread": 30 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 664730, + "thread": 15 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 872174, + "thread": 5 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1074516, + "thread": 26 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1269502, + "thread": 13 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1373806, + "thread": 0 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1494210, + "thread": 24 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1727211, + "thread": 1 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 1929134, + "thread": 26 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2096672, + "thread": 18 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2190443, + "thread": 15 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2338204, + "thread": 2 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2484096, + "thread": 9 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2774831, + "thread": 13 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 2854996, + "thread": 17 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 3026251, + "thread": 14 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 3194206, + "thread": 0 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 3338671, + "thread": 24 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 3480008, + "thread": 3 + } + }, + { + "amount": "101.109748127", + "slot": { + "period": 3640822, + "thread": 19 + } + }, + { + "amount": "101.109748117", + "slot": { + "period": 3809659, + "thread": 5 + } + } + ], + "AU12gpFWgZZXb7ViQeTVEYKKzxHiVB989zYhzL4eqBVCBbqRH5bZC": [ + { + "amount": "63.012358583", + "slot": { + "period": 130072, + "thread": 12 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 198526, + "thread": 28 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 414077, + "thread": 7 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 498666, + "thread": 2 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 774066, + "thread": 3 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 959376, + "thread": 10 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1066623, + "thread": 5 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1222041, + "thread": 13 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1347158, + "thread": 21 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1490049, + "thread": 28 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1737313, + "thread": 10 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1857169, + "thread": 5 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 1990371, + "thread": 7 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 2182923, + "thread": 12 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 2387352, + "thread": 20 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 2508595, + "thread": 8 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 2747608, + "thread": 15 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 2951567, + "thread": 26 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 3105112, + "thread": 16 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 3219802, + "thread": 5 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 3448963, + "thread": 25 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 3540726, + "thread": 8 + } + }, + { + "amount": "63.012358583", + "slot": { + "period": 3624103, + "thread": 26 + } + }, + { + "amount": "63.012358594", + "slot": { + "period": 3861435, + "thread": 14 + } + } + ], + "AU12gpGAh6wvgwsozmW3RC2b2rxqTU9bjwi7MyBtXC6VsiejkkkCq": [ + { + "amount": "128.679246267", + "slot": { + "period": 119242, + "thread": 4 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 222193, + "thread": 8 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 443181, + "thread": 10 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 634207, + "thread": 3 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 763566, + "thread": 6 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 890941, + "thread": 25 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1026804, + "thread": 25 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1170702, + "thread": 30 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1476362, + "thread": 30 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1591453, + "thread": 3 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1764178, + "thread": 22 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 1968182, + "thread": 24 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2064995, + "thread": 0 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2232936, + "thread": 12 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2333279, + "thread": 23 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2500969, + "thread": 7 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2626439, + "thread": 12 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 2823203, + "thread": 3 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 3029971, + "thread": 8 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 3137968, + "thread": 29 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 3363434, + "thread": 25 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 3469218, + "thread": 11 + } + }, + { + "amount": "128.679246267", + "slot": { + "period": 3749141, + "thread": 2 + } + }, + { + "amount": "128.679246263", + "slot": { + "period": 3791212, + "thread": 21 + } + } + ], + "AU12gptavFCuZKBvbP7FdY3JfadwAiYHxXdHs5Xk9EaggdTckdaim": [ + { + "amount": "204.398644921", + "slot": { + "period": 35237, + "thread": 26 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 205911, + "thread": 31 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 424561, + "thread": 0 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 595603, + "thread": 30 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 786607, + "thread": 29 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 919712, + "thread": 26 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1026701, + "thread": 10 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1222433, + "thread": 21 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1349027, + "thread": 24 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1481915, + "thread": 31 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1741477, + "thread": 17 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 1880534, + "thread": 11 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2105218, + "thread": 12 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2215885, + "thread": 10 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2311491, + "thread": 21 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2493548, + "thread": 4 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2729510, + "thread": 1 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 2820031, + "thread": 27 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 3071534, + "thread": 7 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 3141666, + "thread": 17 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 3427296, + "thread": 6 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 3470203, + "thread": 30 + } + }, + { + "amount": "204.398644921", + "slot": { + "period": 3691274, + "thread": 22 + } + }, + { + "amount": "204.398644932", + "slot": { + "period": 3842163, + "thread": 0 + } + } + ], + "AU12gq6NwgbB29NUQ3baefJbSyBZpp91VjXoi6ErMN6T9QyW6uSdu": [ + { + "amount": "404.315860532", + "slot": { + "period": 125635, + "thread": 30 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 180069, + "thread": 28 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 380626, + "thread": 29 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 552851, + "thread": 31 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 787981, + "thread": 10 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 943888, + "thread": 0 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1061753, + "thread": 7 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1282435, + "thread": 18 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1358799, + "thread": 27 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1533388, + "thread": 30 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1775456, + "thread": 5 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 1950826, + "thread": 2 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2112955, + "thread": 11 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2224276, + "thread": 13 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2305038, + "thread": 5 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2471085, + "thread": 13 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2626191, + "thread": 1 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 2881464, + "thread": 12 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 3102405, + "thread": 15 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 3152873, + "thread": 12 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 3311873, + "thread": 5 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 3582170, + "thread": 20 + } + }, + { + "amount": "404.315860532", + "slot": { + "period": 3714537, + "thread": 24 + } + }, + { + "amount": "404.315860521", + "slot": { + "period": 3906116, + "thread": 6 + } + } + ], + "AU12gqEyFJneEYcPr9x4ejavAD8uDVwYJ8WTAyf9w5hyYetFA9AQv": [ + { + "amount": "158.150950151", + "slot": { + "period": 93863, + "thread": 31 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 301795, + "thread": 3 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 327464, + "thread": 19 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 634987, + "thread": 14 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 670608, + "thread": 3 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 834682, + "thread": 7 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 991662, + "thread": 29 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1150557, + "thread": 29 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1451220, + "thread": 1 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1593559, + "thread": 2 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1673522, + "thread": 17 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1829673, + "thread": 13 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 1981182, + "thread": 27 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 2169059, + "thread": 21 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 2455949, + "thread": 31 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 2579867, + "thread": 21 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 2723656, + "thread": 6 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 2843540, + "thread": 18 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 3018415, + "thread": 7 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 3156482, + "thread": 10 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 3426727, + "thread": 26 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 3532791, + "thread": 5 + } + }, + { + "amount": "158.150950151", + "slot": { + "period": 3735245, + "thread": 2 + } + }, + { + "amount": "158.150950144", + "slot": { + "period": 3909866, + "thread": 0 + } + } + ], + "AU12gqzbZHVYwoep6sJCvaVAi4Tu7wS5vm4SBkz1PhBDgvmKNfHh3": [ + { + "amount": "72.386821536", + "slot": { + "period": 53220, + "thread": 5 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 263140, + "thread": 17 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 472609, + "thread": 2 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 521757, + "thread": 30 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 723775, + "thread": 3 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 964926, + "thread": 10 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1122441, + "thread": 17 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1282652, + "thread": 5 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1357561, + "thread": 13 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1556057, + "thread": 18 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1769055, + "thread": 7 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 1851883, + "thread": 24 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2135708, + "thread": 3 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2163255, + "thread": 18 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2344642, + "thread": 4 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2503729, + "thread": 4 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2684200, + "thread": 7 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 2934279, + "thread": 1 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 3070006, + "thread": 21 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 3130082, + "thread": 20 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 3410349, + "thread": 3 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 3527763, + "thread": 15 + } + }, + { + "amount": "72.386821536", + "slot": { + "period": 3690608, + "thread": 8 + } + }, + { + "amount": "72.386821524", + "slot": { + "period": 3878460, + "thread": 8 + } + } + ], + "AU12grBheggvjjeozWBeFqq28rYjJuerTqVH25XgAwwpLYGmazttL": [ + { + "amount": "346.522167174", + "slot": { + "period": 81141, + "thread": 29 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 259940, + "thread": 5 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 461890, + "thread": 20 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 535979, + "thread": 17 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 730118, + "thread": 10 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 864534, + "thread": 19 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1108615, + "thread": 1 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1184154, + "thread": 3 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1322955, + "thread": 26 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1502141, + "thread": 7 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1801886, + "thread": 3 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 1923452, + "thread": 13 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2076658, + "thread": 11 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2263826, + "thread": 6 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2343132, + "thread": 31 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2524584, + "thread": 24 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2714649, + "thread": 21 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2912200, + "thread": 15 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 2960056, + "thread": 24 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 3265272, + "thread": 7 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 3374796, + "thread": 29 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 3528445, + "thread": 25 + } + }, + { + "amount": "346.522167174", + "slot": { + "period": 3653805, + "thread": 20 + } + }, + { + "amount": "346.522167163", + "slot": { + "period": 3945626, + "thread": 4 + } + } + ], + "AU12grh5LAqa1qbyeeYVefVCFGP1mCpQ7EEC3MwRq62JUpk2vBXDU": [ + { + "amount": "90.140633684", + "slot": { + "period": 59897, + "thread": 26 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 200639, + "thread": 6 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 401543, + "thread": 15 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 498896, + "thread": 2 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 720425, + "thread": 22 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 894177, + "thread": 1 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 989403, + "thread": 21 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 1166046, + "thread": 18 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 1375201, + "thread": 23 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 1528769, + "thread": 15 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 1744868, + "thread": 14 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 1825511, + "thread": 9 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2026835, + "thread": 30 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2236103, + "thread": 30 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2311615, + "thread": 22 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2614863, + "thread": 28 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2712920, + "thread": 0 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 2861946, + "thread": 28 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 3098688, + "thread": 9 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 3268381, + "thread": 6 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 3310936, + "thread": 2 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 3483619, + "thread": 22 + } + }, + { + "amount": "90.140633684", + "slot": { + "period": 3625170, + "thread": 30 + } + }, + { + "amount": "90.140633676", + "slot": { + "period": 3929673, + "thread": 0 + } + } + ], + "AU12gsFySQjXbUoWQrB7hHPfnwpXHqtzr7N7r6MxRsnED2twNWVS": [ + { + "amount": "111.101187563", + "slot": { + "period": 56379, + "thread": 24 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 244432, + "thread": 24 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 409513, + "thread": 12 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 495587, + "thread": 27 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 801771, + "thread": 4 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 859014, + "thread": 8 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1007130, + "thread": 22 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1183150, + "thread": 11 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1355061, + "thread": 30 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1623778, + "thread": 5 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1663305, + "thread": 28 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 1894645, + "thread": 3 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2050317, + "thread": 31 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2275625, + "thread": 12 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2304641, + "thread": 9 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2537230, + "thread": 4 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2744884, + "thread": 5 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2805234, + "thread": 9 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 2974083, + "thread": 2 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 3189195, + "thread": 17 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 3408263, + "thread": 7 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 3583760, + "thread": 18 + } + }, + { + "amount": "111.101187563", + "slot": { + "period": 3710891, + "thread": 30 + } + }, + { + "amount": "111.101187557", + "slot": { + "period": 3790778, + "thread": 18 + } + } + ], + "AU12gsaujZvz1r8iL3vuTGz3TiyyBvwHzstxhEWSxGP5fEFJYXJhS": [ + { + "amount": "538.389847387", + "slot": { + "period": 136322, + "thread": 7 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 243963, + "thread": 19 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 329733, + "thread": 23 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 552210, + "thread": 12 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 708316, + "thread": 14 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 981125, + "thread": 21 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1108171, + "thread": 18 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1252072, + "thread": 22 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1446838, + "thread": 30 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1611768, + "thread": 10 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1647160, + "thread": 8 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 1833057, + "thread": 13 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2020670, + "thread": 14 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2280611, + "thread": 5 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2339462, + "thread": 10 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2487520, + "thread": 1 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2779395, + "thread": 15 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 2923461, + "thread": 23 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 3042385, + "thread": 27 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 3209492, + "thread": 23 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 3367609, + "thread": 9 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 3485428, + "thread": 30 + } + }, + { + "amount": "538.389847387", + "slot": { + "period": 3645340, + "thread": 11 + } + }, + { + "amount": "538.389847379", + "slot": { + "period": 3927489, + "thread": 28 + } + } + ], + "AU12gsbePD9hKDFUrSWEBfoN25qJ6wc61ZonQUXXbVZwQEBTkuZQx": [ + { + "amount": "1735.181315497", + "slot": { + "period": 101193, + "thread": 7 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 242561, + "thread": 18 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 470021, + "thread": 23 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 578707, + "thread": 18 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 730991, + "thread": 21 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 878747, + "thread": 15 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1136837, + "thread": 15 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1182950, + "thread": 3 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1396218, + "thread": 21 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1628212, + "thread": 19 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1748873, + "thread": 28 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 1942632, + "thread": 17 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2037808, + "thread": 19 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2240632, + "thread": 10 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2448290, + "thread": 2 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2570193, + "thread": 6 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2780490, + "thread": 5 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2947133, + "thread": 14 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 2980229, + "thread": 5 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 3155186, + "thread": 15 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 3297724, + "thread": 2 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 3567258, + "thread": 11 + } + }, + { + "amount": "1735.181315497", + "slot": { + "period": 3674257, + "thread": 26 + } + }, + { + "amount": "1735.181315515", + "slot": { + "period": 3932008, + "thread": 30 + } + } + ], + "AU12gt1R59DjcWHbZvQfssUFWBYWHn1x3KimocSBLiWxy7Vsp85EK": [ + { + "amount": "149.880120958", + "slot": { + "period": 63663, + "thread": 25 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 240418, + "thread": 7 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 468020, + "thread": 23 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 518494, + "thread": 13 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 714501, + "thread": 22 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 876374, + "thread": 14 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1097721, + "thread": 25 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1293747, + "thread": 25 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1453736, + "thread": 3 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1616605, + "thread": 30 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1714897, + "thread": 21 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 1896242, + "thread": 7 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2018981, + "thread": 16 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2237494, + "thread": 28 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2415269, + "thread": 25 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2480012, + "thread": 6 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2648848, + "thread": 31 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 2889352, + "thread": 12 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 3075364, + "thread": 21 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 3183968, + "thread": 11 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 3329823, + "thread": 19 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 3577608, + "thread": 9 + } + }, + { + "amount": "149.880120958", + "slot": { + "period": 3639858, + "thread": 1 + } + }, + { + "amount": "149.880120950", + "slot": { + "period": 3937670, + "thread": 25 + } + } + ], + "AU12gtgmkg6zJvLMeV8KgSYU2521qVfuQbwCBcy4bKHswGMdHWhSN": [ + { + "amount": "251.163864740", + "slot": { + "period": 61321, + "thread": 5 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 269097, + "thread": 29 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 391840, + "thread": 1 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 550801, + "thread": 30 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 659586, + "thread": 6 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 940650, + "thread": 6 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1043085, + "thread": 26 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1156366, + "thread": 1 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1379320, + "thread": 14 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1548571, + "thread": 22 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1751976, + "thread": 4 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 1927411, + "thread": 16 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2043506, + "thread": 31 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2236154, + "thread": 28 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2431133, + "thread": 7 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2615030, + "thread": 5 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2680439, + "thread": 10 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 2930972, + "thread": 12 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 3096048, + "thread": 4 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 3288540, + "thread": 19 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 3305962, + "thread": 1 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 3457066, + "thread": 31 + } + }, + { + "amount": "251.163864740", + "slot": { + "period": 3735249, + "thread": 16 + } + }, + { + "amount": "251.163864745", + "slot": { + "period": 3798061, + "thread": 5 + } + } + ], + "AU12gtsX2cjCseaeWS1z6zFysxcgHZ7YHD719ymDx5tjS2PpESNfa": [ + { + "amount": "100.573831872", + "slot": { + "period": 151754, + "thread": 11 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 276288, + "thread": 17 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 452728, + "thread": 13 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 571434, + "thread": 31 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 787861, + "thread": 26 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 824238, + "thread": 22 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1087076, + "thread": 0 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1190789, + "thread": 22 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1449506, + "thread": 10 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1616941, + "thread": 25 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1736545, + "thread": 31 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 1828420, + "thread": 7 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2014544, + "thread": 17 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2270093, + "thread": 28 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2447365, + "thread": 2 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2605834, + "thread": 12 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2642411, + "thread": 27 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 2831365, + "thread": 0 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 3017410, + "thread": 10 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 3160180, + "thread": 9 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 3336224, + "thread": 0 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 3595235, + "thread": 11 + } + }, + { + "amount": "100.573831872", + "slot": { + "period": 3705732, + "thread": 12 + } + }, + { + "amount": "100.573831870", + "slot": { + "period": 3819532, + "thread": 21 + } + } + ], + "AU12gvWj5dqthkdnZDfLB47wLWjE6iSLEUngHve2Qvngde28SfUFG": [ + { + "amount": "275.560070133", + "slot": { + "period": 81593, + "thread": 9 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 261907, + "thread": 0 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 487587, + "thread": 0 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 596940, + "thread": 9 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 698788, + "thread": 7 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 870519, + "thread": 29 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1132913, + "thread": 31 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1271541, + "thread": 14 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1430144, + "thread": 11 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1568966, + "thread": 11 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1797957, + "thread": 15 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 1928181, + "thread": 23 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2017253, + "thread": 12 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2168140, + "thread": 7 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2447018, + "thread": 13 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2579871, + "thread": 3 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2676733, + "thread": 21 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 2853950, + "thread": 6 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 3029350, + "thread": 9 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 3134514, + "thread": 12 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 3377632, + "thread": 9 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 3522269, + "thread": 4 + } + }, + { + "amount": "275.560070133", + "slot": { + "period": 3709538, + "thread": 13 + } + }, + { + "amount": "275.560070137", + "slot": { + "period": 3907458, + "thread": 6 + } + } + ], + "AU12gwJxHfCDkziM3XjQkihXhQb9SHBtow3ts4ZUCoQPtvoUcm26a": [ + { + "amount": "358.905282695", + "slot": { + "period": 52001, + "thread": 28 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 214295, + "thread": 29 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 426714, + "thread": 21 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 541867, + "thread": 30 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 735659, + "thread": 24 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 964014, + "thread": 22 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1026778, + "thread": 18 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1247409, + "thread": 20 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1424631, + "thread": 4 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1566278, + "thread": 18 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1789789, + "thread": 11 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 1830087, + "thread": 24 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2005031, + "thread": 29 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2260780, + "thread": 2 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2332584, + "thread": 18 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2557010, + "thread": 9 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2726071, + "thread": 0 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 2800957, + "thread": 12 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 3040040, + "thread": 22 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 3274072, + "thread": 19 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 3416771, + "thread": 7 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 3493762, + "thread": 21 + } + }, + { + "amount": "358.905282695", + "slot": { + "period": 3768572, + "thread": 0 + } + }, + { + "amount": "358.905282689", + "slot": { + "period": 3938037, + "thread": 12 + } + } + ], + "AU12gxW2cqG734eYdsoRPp2jNTCQ5E4m8nrb2Uuob6oLH19CynVLr": [ + { + "amount": "184.339061158", + "slot": { + "period": 140350, + "thread": 16 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 196933, + "thread": 18 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 357113, + "thread": 27 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 647634, + "thread": 24 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 739774, + "thread": 24 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 851295, + "thread": 18 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1081504, + "thread": 19 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1194863, + "thread": 10 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1411353, + "thread": 14 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1504939, + "thread": 26 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1754561, + "thread": 13 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 1809063, + "thread": 8 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2053277, + "thread": 14 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2275868, + "thread": 28 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2454220, + "thread": 10 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2513511, + "thread": 31 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2733824, + "thread": 4 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 2830853, + "thread": 0 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 3020318, + "thread": 11 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 3265122, + "thread": 14 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 3310934, + "thread": 11 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 3526160, + "thread": 15 + } + }, + { + "amount": "184.339061158", + "slot": { + "period": 3669142, + "thread": 1 + } + }, + { + "amount": "184.339061159", + "slot": { + "period": 3937122, + "thread": 22 + } + } + ], + "AU12gyTx9pTbHUypiu4gewj5KGnGqDtsYjaDcJyQ1tivtyDqgf1j9": [ + { + "amount": "71.958076906", + "slot": { + "period": 164552, + "thread": 30 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 242734, + "thread": 12 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 436673, + "thread": 12 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 580953, + "thread": 18 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 792081, + "thread": 4 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 848824, + "thread": 11 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 999790, + "thread": 27 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 1169666, + "thread": 16 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 1477789, + "thread": 26 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 1569354, + "thread": 23 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 1702162, + "thread": 9 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 1949882, + "thread": 3 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2016686, + "thread": 19 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2203940, + "thread": 6 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2459424, + "thread": 13 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2491895, + "thread": 25 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2763289, + "thread": 8 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 2849882, + "thread": 22 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 3009465, + "thread": 24 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 3143671, + "thread": 2 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 3306352, + "thread": 22 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 3533698, + "thread": 28 + } + }, + { + "amount": "71.958076906", + "slot": { + "period": 3676624, + "thread": 29 + } + }, + { + "amount": "71.958076909", + "slot": { + "period": 3859278, + "thread": 2 + } + } + ], + "AU12gysBPtMAPFySWicaNoLSyZbuXjC8Tw3xB8rThqBC3eoVkgAdh": [ + { + "amount": "102.218866703", + "slot": { + "period": 164107, + "thread": 2 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 286057, + "thread": 1 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 480825, + "thread": 14 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 549851, + "thread": 17 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 732471, + "thread": 25 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 852253, + "thread": 16 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1044884, + "thread": 14 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1178720, + "thread": 26 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1386521, + "thread": 15 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1614017, + "thread": 25 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1699979, + "thread": 27 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1814288, + "thread": 27 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 1989769, + "thread": 17 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 2167516, + "thread": 17 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 2448374, + "thread": 10 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 2567939, + "thread": 18 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 2776964, + "thread": 31 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 2874032, + "thread": 11 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 3032975, + "thread": 12 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 3139168, + "thread": 26 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 3301603, + "thread": 0 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 3600522, + "thread": 27 + } + }, + { + "amount": "102.218866703", + "slot": { + "period": 3679441, + "thread": 2 + } + }, + { + "amount": "102.218866709", + "slot": { + "period": 3907291, + "thread": 17 + } + } + ], + "AU12gz1jakvpGGqG7JkMzNUe6VtAQc1bQFUd3UPkhBKbXpAkywTnt": [ + { + "amount": "162.161802367", + "slot": { + "period": 124262, + "thread": 13 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 203037, + "thread": 16 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 473833, + "thread": 5 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 609740, + "thread": 3 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 798874, + "thread": 14 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 924767, + "thread": 19 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1117125, + "thread": 0 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1172107, + "thread": 6 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1326302, + "thread": 13 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1626703, + "thread": 16 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1770232, + "thread": 10 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 1933183, + "thread": 31 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2030982, + "thread": 27 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2195789, + "thread": 4 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2363341, + "thread": 16 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2490002, + "thread": 24 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2721831, + "thread": 4 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2902004, + "thread": 6 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 2979235, + "thread": 6 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 3141491, + "thread": 2 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 3375804, + "thread": 21 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 3590694, + "thread": 14 + } + }, + { + "amount": "162.161802367", + "slot": { + "period": 3777262, + "thread": 14 + } + }, + { + "amount": "162.161802362", + "slot": { + "period": 3860224, + "thread": 30 + } + } + ], + "AU12gzoKuPQ2PCMtpEf7t8bNwxBDQ8rPQWLUBszJJZwRFyKhefxiv": [ + { + "amount": "409.045879837", + "slot": { + "period": 23036, + "thread": 8 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 172993, + "thread": 29 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 463939, + "thread": 27 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 509164, + "thread": 25 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 678264, + "thread": 6 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 970864, + "thread": 25 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1109449, + "thread": 2 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1150440, + "thread": 19 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1334044, + "thread": 15 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1548079, + "thread": 0 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1791746, + "thread": 7 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 1915977, + "thread": 20 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2083286, + "thread": 19 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2161063, + "thread": 14 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2326750, + "thread": 8 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2543335, + "thread": 18 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2753188, + "thread": 12 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2871324, + "thread": 19 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 2958502, + "thread": 6 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 3285774, + "thread": 3 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 3358320, + "thread": 6 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 3568034, + "thread": 30 + } + }, + { + "amount": "409.045879837", + "slot": { + "period": 3719029, + "thread": 4 + } + }, + { + "amount": "409.045879847", + "slot": { + "period": 3827391, + "thread": 17 + } + } + ], + "AU12h1nLbWMB7XdT2guffwJwPpzNCTPjhmR5gZhBF9cg3EH2AH5wy": [ + { + "amount": "136.226487931", + "slot": { + "period": 13963, + "thread": 7 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 228906, + "thread": 17 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 360512, + "thread": 12 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 529512, + "thread": 7 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 676768, + "thread": 15 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 917570, + "thread": 12 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1069343, + "thread": 0 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1235237, + "thread": 17 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1454642, + "thread": 18 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1483906, + "thread": 16 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1743924, + "thread": 6 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1869023, + "thread": 8 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 1999970, + "thread": 7 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 2157779, + "thread": 21 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 2322486, + "thread": 17 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 2591491, + "thread": 2 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 2668111, + "thread": 29 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 2886351, + "thread": 6 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 3054788, + "thread": 9 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 3172383, + "thread": 28 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 3404260, + "thread": 4 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 3512621, + "thread": 19 + } + }, + { + "amount": "136.226487931", + "slot": { + "period": 3635202, + "thread": 27 + } + }, + { + "amount": "136.226487932", + "slot": { + "period": 3912523, + "thread": 24 + } + } + ], + "AU12h2PrMqHoauetQR1q5Y2zd3tUew4JGT9zAPMqS43jE6kHPLfao": [ + { + "amount": "174.330838200", + "slot": { + "period": 164506, + "thread": 31 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 268962, + "thread": 27 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 490172, + "thread": 25 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 539147, + "thread": 11 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 680940, + "thread": 11 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 866438, + "thread": 30 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1014978, + "thread": 10 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1246841, + "thread": 12 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1388926, + "thread": 16 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1564624, + "thread": 27 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1695563, + "thread": 29 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 1947678, + "thread": 22 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2140049, + "thread": 3 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2292452, + "thread": 13 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2358644, + "thread": 15 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2546703, + "thread": 17 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2706825, + "thread": 28 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 2847817, + "thread": 20 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 3034051, + "thread": 26 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 3156673, + "thread": 25 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 3314138, + "thread": 16 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 3500627, + "thread": 25 + } + }, + { + "amount": "174.330838200", + "slot": { + "period": 3646622, + "thread": 27 + } + }, + { + "amount": "174.330838207", + "slot": { + "period": 3936430, + "thread": 5 + } + } + ], + "AU12h2YiqKMBRVMe2WwJVvU6DhKi3NC6SoNWZS4JFyWgPM3hGzK51": [ + { + "amount": "470.527583300", + "slot": { + "period": 102131, + "thread": 0 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 185241, + "thread": 17 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 328370, + "thread": 7 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 639948, + "thread": 22 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 709598, + "thread": 8 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 924680, + "thread": 14 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1106250, + "thread": 31 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1301073, + "thread": 15 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1425926, + "thread": 18 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1580990, + "thread": 0 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1652888, + "thread": 23 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 1875472, + "thread": 2 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2136926, + "thread": 15 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2263914, + "thread": 31 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2458009, + "thread": 0 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2576402, + "thread": 12 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2642848, + "thread": 20 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2840428, + "thread": 25 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 2960321, + "thread": 23 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 3186416, + "thread": 25 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 3348480, + "thread": 22 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 3579651, + "thread": 7 + } + }, + { + "amount": "470.527583300", + "slot": { + "period": 3653552, + "thread": 16 + } + }, + { + "amount": "470.527583299", + "slot": { + "period": 3784009, + "thread": 7 + } + } + ], + "AU12h3kL4osvpqvubX6PvhnUv2wsrJsbApZVGoBVE1LDmeAWsTZq2": [ + { + "amount": "135.951163106", + "slot": { + "period": 56048, + "thread": 6 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 255828, + "thread": 13 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 326937, + "thread": 22 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 583394, + "thread": 0 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 703701, + "thread": 11 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 911991, + "thread": 9 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1085919, + "thread": 8 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1293086, + "thread": 13 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1390343, + "thread": 3 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1602293, + "thread": 0 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1728024, + "thread": 0 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 1863235, + "thread": 11 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2087556, + "thread": 26 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2264629, + "thread": 16 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2409343, + "thread": 6 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2466972, + "thread": 18 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2780811, + "thread": 12 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 2899916, + "thread": 3 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 3078758, + "thread": 5 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 3195831, + "thread": 27 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 3321558, + "thread": 28 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 3610072, + "thread": 26 + } + }, + { + "amount": "135.951163106", + "slot": { + "period": 3663540, + "thread": 9 + } + }, + { + "amount": "135.951163096", + "slot": { + "period": 3939466, + "thread": 8 + } + } + ], + "AU12h4XvCSqdccQTWyUpK1Q2mciXt2ete76e8vTUykVXxRojpePmR": [ + { + "amount": "83.410553781", + "slot": { + "period": 75079, + "thread": 11 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 230031, + "thread": 18 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 396826, + "thread": 6 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 572815, + "thread": 12 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 668262, + "thread": 24 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 913888, + "thread": 26 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1012258, + "thread": 25 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1200835, + "thread": 27 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1474237, + "thread": 21 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1523127, + "thread": 24 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1662390, + "thread": 6 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 1967187, + "thread": 15 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2032193, + "thread": 31 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2166688, + "thread": 2 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2363776, + "thread": 19 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2508286, + "thread": 21 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2756478, + "thread": 1 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2802725, + "thread": 26 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 2989586, + "thread": 20 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 3164600, + "thread": 29 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 3408098, + "thread": 3 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 3590641, + "thread": 4 + } + }, + { + "amount": "83.410553781", + "slot": { + "period": 3744060, + "thread": 3 + } + }, + { + "amount": "83.410553774", + "slot": { + "period": 3861527, + "thread": 17 + } + } + ], + "AU12h4i3D7WHsMdNQUBc1KpW36MCorMXRoFgHYtDQkxMJUvAdDTRg": [ + { + "amount": "174.389862747", + "slot": { + "period": 76731, + "thread": 11 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 283957, + "thread": 6 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 349984, + "thread": 28 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 572123, + "thread": 9 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 747856, + "thread": 1 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 844235, + "thread": 14 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1096567, + "thread": 20 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1272067, + "thread": 18 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1332949, + "thread": 19 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1539959, + "thread": 30 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1721274, + "thread": 18 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1862748, + "thread": 20 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 1992101, + "thread": 3 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2180743, + "thread": 14 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2428782, + "thread": 4 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2481075, + "thread": 29 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2651712, + "thread": 0 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2834560, + "thread": 31 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 2996983, + "thread": 29 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 3264234, + "thread": 23 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 3343910, + "thread": 19 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 3617165, + "thread": 2 + } + }, + { + "amount": "174.389862747", + "slot": { + "period": 3641493, + "thread": 20 + } + }, + { + "amount": "174.389862754", + "slot": { + "period": 3910624, + "thread": 2 + } + } + ], + "AU12h4qydHzTYNw4p6P1ZUhBJfhJBUEkxsQ2pPkx9H2qm3cbXnYJW": [ + { + "amount": "76.354972198", + "slot": { + "period": 83526, + "thread": 15 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 265954, + "thread": 28 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 389117, + "thread": 19 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 513291, + "thread": 22 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 744032, + "thread": 8 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 855651, + "thread": 12 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1104739, + "thread": 27 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1193301, + "thread": 20 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1397117, + "thread": 29 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1523941, + "thread": 6 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1700227, + "thread": 29 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 1967269, + "thread": 24 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2104354, + "thread": 25 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2264534, + "thread": 29 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2386804, + "thread": 13 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2574755, + "thread": 11 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2723963, + "thread": 30 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 2900511, + "thread": 8 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 3062294, + "thread": 20 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 3126222, + "thread": 15 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 3316007, + "thread": 14 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 3498301, + "thread": 19 + } + }, + { + "amount": "76.354972198", + "slot": { + "period": 3638265, + "thread": 21 + } + }, + { + "amount": "76.354972193", + "slot": { + "period": 3818060, + "thread": 19 + } + } + ], + "AU12h5EqznGgG1cfrgiZyAwHuo9tD1DGA4AyW4RzF5guBDYpcCshu": [ + { + "amount": "228.094008114", + "slot": { + "period": 162537, + "thread": 31 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 301451, + "thread": 30 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 443610, + "thread": 25 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 560329, + "thread": 27 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 673109, + "thread": 14 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 922695, + "thread": 1 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1065410, + "thread": 12 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1262117, + "thread": 25 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1321497, + "thread": 11 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1615690, + "thread": 10 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1658767, + "thread": 21 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1854129, + "thread": 23 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 1982283, + "thread": 25 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2207392, + "thread": 18 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2382428, + "thread": 17 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2475183, + "thread": 19 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2772990, + "thread": 18 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2825166, + "thread": 9 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 2968947, + "thread": 26 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 3177575, + "thread": 22 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 3432446, + "thread": 26 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 3611537, + "thread": 0 + } + }, + { + "amount": "228.094008114", + "slot": { + "period": 3750518, + "thread": 7 + } + }, + { + "amount": "228.094008106", + "slot": { + "period": 3848726, + "thread": 17 + } + } + ], + "AU12h6LDYJRnAqBXBzMg7pGvkXxJ3jrPTucmBZvgytQRroMvcq16x": [ + { + "amount": "354.313601462", + "slot": { + "period": 50391, + "thread": 12 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 199783, + "thread": 22 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 346809, + "thread": 19 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 623528, + "thread": 28 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 750919, + "thread": 28 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 887786, + "thread": 21 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1029660, + "thread": 15 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1279796, + "thread": 0 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1451126, + "thread": 16 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1523225, + "thread": 13 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1761392, + "thread": 23 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 1934137, + "thread": 18 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2095157, + "thread": 18 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2243828, + "thread": 10 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2409069, + "thread": 30 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2548701, + "thread": 26 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2739774, + "thread": 17 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 2822244, + "thread": 8 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 3114534, + "thread": 25 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 3252454, + "thread": 27 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 3426719, + "thread": 19 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 3506373, + "thread": 10 + } + }, + { + "amount": "354.313601462", + "slot": { + "period": 3693059, + "thread": 19 + } + }, + { + "amount": "354.313601469", + "slot": { + "period": 3824796, + "thread": 28 + } + } + ], + "AU12h6hWc1wF4pPFNdJj8AFLE99C1zbbTqp3rq5C3ZcaE4CNqip73": [ + { + "amount": "261.176766450", + "slot": { + "period": 21781, + "thread": 13 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 254474, + "thread": 31 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 334476, + "thread": 22 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 594302, + "thread": 5 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 657084, + "thread": 15 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 971878, + "thread": 14 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1118941, + "thread": 1 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1301557, + "thread": 29 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1444354, + "thread": 27 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1580283, + "thread": 1 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1784552, + "thread": 9 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 1945355, + "thread": 10 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2102863, + "thread": 28 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2233764, + "thread": 22 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2434608, + "thread": 1 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2596534, + "thread": 12 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2706127, + "thread": 8 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2904578, + "thread": 7 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 2964155, + "thread": 12 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 3194079, + "thread": 1 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 3428168, + "thread": 22 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 3558739, + "thread": 29 + } + }, + { + "amount": "261.176766450", + "slot": { + "period": 3752906, + "thread": 1 + } + }, + { + "amount": "261.176766438", + "slot": { + "period": 3916381, + "thread": 26 + } + } + ], + "AU12h6xqWjZLAtbnKLRRhcNP36ZrsfhaqwYJXNxzJuQZ47RtocqTe": [ + { + "amount": "214.116880546", + "slot": { + "period": 149093, + "thread": 16 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 279213, + "thread": 10 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 451189, + "thread": 22 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 524346, + "thread": 17 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 742102, + "thread": 26 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 972771, + "thread": 14 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1092715, + "thread": 9 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1191218, + "thread": 20 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1384071, + "thread": 31 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1490468, + "thread": 31 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1738376, + "thread": 13 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1974118, + "thread": 30 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 1995876, + "thread": 6 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 2227449, + "thread": 1 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 2305429, + "thread": 15 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 2494606, + "thread": 15 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 2644129, + "thread": 8 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 2849293, + "thread": 21 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 3103971, + "thread": 29 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 3234495, + "thread": 26 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 3340076, + "thread": 19 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 3519507, + "thread": 22 + } + }, + { + "amount": "214.116880546", + "slot": { + "period": 3640919, + "thread": 26 + } + }, + { + "amount": "214.116880534", + "slot": { + "period": 3792266, + "thread": 20 + } + } + ], + "AU12h7g1LKExxxZKQjX7EU8Ge62ZH7xC99YY8oQtprSN7vLfKvUGw": [ + { + "amount": "406.550089558", + "slot": { + "period": 126378, + "thread": 2 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 320446, + "thread": 24 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 467486, + "thread": 1 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 500067, + "thread": 15 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 748800, + "thread": 10 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 863520, + "thread": 21 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1095492, + "thread": 25 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1202827, + "thread": 15 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1424851, + "thread": 2 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1592209, + "thread": 12 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1795884, + "thread": 28 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 1967473, + "thread": 27 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2087726, + "thread": 26 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2239248, + "thread": 8 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2426992, + "thread": 0 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2550871, + "thread": 7 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2643080, + "thread": 9 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 2904736, + "thread": 20 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 3007253, + "thread": 26 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 3141511, + "thread": 25 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 3418967, + "thread": 25 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 3533782, + "thread": 6 + } + }, + { + "amount": "406.550089558", + "slot": { + "period": 3712037, + "thread": 16 + } + }, + { + "amount": "406.550089553", + "slot": { + "period": 3803489, + "thread": 26 + } + } + ], + "AU12h88Q7QSvFC3csuA2SxRfxAti1ndUfEuM53CjSEEPCp5c5EP2F": [ + { + "amount": "123.230108826", + "slot": { + "period": 38017, + "thread": 12 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 181239, + "thread": 3 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 414762, + "thread": 27 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 519717, + "thread": 24 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 739160, + "thread": 3 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 876812, + "thread": 16 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1086039, + "thread": 22 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1301455, + "thread": 19 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1464741, + "thread": 12 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1557972, + "thread": 28 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1726289, + "thread": 20 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 1949080, + "thread": 21 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2015159, + "thread": 2 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2152516, + "thread": 15 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2411167, + "thread": 23 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2576124, + "thread": 0 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2786591, + "thread": 8 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 2866903, + "thread": 28 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 3028339, + "thread": 8 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 3249171, + "thread": 0 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 3347961, + "thread": 12 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 3489313, + "thread": 19 + } + }, + { + "amount": "123.230108826", + "slot": { + "period": 3726896, + "thread": 16 + } + }, + { + "amount": "123.230108830", + "slot": { + "period": 3908709, + "thread": 28 + } + } + ], + "AU12h9oQsNyay9rzoMwxfPUVKufCjYYE4fdt8oabthwFqnfeCtLzQ": [ + { + "amount": "133.201912240", + "slot": { + "period": 125197, + "thread": 17 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 195693, + "thread": 24 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 327171, + "thread": 20 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 573929, + "thread": 11 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 697975, + "thread": 27 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 839776, + "thread": 1 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1103328, + "thread": 31 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1273588, + "thread": 10 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1370211, + "thread": 31 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1641412, + "thread": 7 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1650630, + "thread": 26 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 1898884, + "thread": 24 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2100207, + "thread": 6 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2153147, + "thread": 7 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2352325, + "thread": 23 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2495837, + "thread": 22 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2709561, + "thread": 4 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2924338, + "thread": 20 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 2990659, + "thread": 30 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 3149910, + "thread": 8 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 3410003, + "thread": 5 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 3570790, + "thread": 3 + } + }, + { + "amount": "133.201912240", + "slot": { + "period": 3763541, + "thread": 25 + } + }, + { + "amount": "133.201912237", + "slot": { + "period": 3885686, + "thread": 2 + } + } + ], + "AU12h9vxDtKb3ctgnAsSXGaGjwvFcDKHNLkR7tbfSrQwxvRgLrkY2": [ + { + "amount": "82.169065464", + "slot": { + "period": 104376, + "thread": 31 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 177328, + "thread": 11 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 469264, + "thread": 10 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 501940, + "thread": 11 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 678724, + "thread": 31 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 929936, + "thread": 18 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1140161, + "thread": 5 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1178624, + "thread": 30 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1392462, + "thread": 30 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1521584, + "thread": 8 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1697445, + "thread": 26 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 1892532, + "thread": 25 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2043213, + "thread": 4 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2175884, + "thread": 31 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2402412, + "thread": 27 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2488837, + "thread": 12 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2709831, + "thread": 17 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 2930432, + "thread": 9 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 3057143, + "thread": 5 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 3192170, + "thread": 5 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 3415719, + "thread": 2 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 3559027, + "thread": 5 + } + }, + { + "amount": "82.169065464", + "slot": { + "period": 3654169, + "thread": 6 + } + }, + { + "amount": "82.169065475", + "slot": { + "period": 3909057, + "thread": 18 + } + } + ], + "AU12h9wskYDoe9dqr3ZTS3Y3tXa1MdwdMAAVN6QsXDsL8KVYCyjGo": [ + { + "amount": "160.022750098", + "slot": { + "period": 52269, + "thread": 4 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 250707, + "thread": 10 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 390084, + "thread": 10 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 574488, + "thread": 10 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 657202, + "thread": 15 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 958704, + "thread": 23 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1061670, + "thread": 2 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1235819, + "thread": 15 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1349226, + "thread": 19 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1555517, + "thread": 13 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1799829, + "thread": 6 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 1946962, + "thread": 3 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2000034, + "thread": 21 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2173400, + "thread": 9 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2318960, + "thread": 3 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2514731, + "thread": 3 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2741926, + "thread": 12 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 2914554, + "thread": 27 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 3023498, + "thread": 12 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 3238954, + "thread": 23 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 3365758, + "thread": 5 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 3558192, + "thread": 14 + } + }, + { + "amount": "160.022750098", + "slot": { + "period": 3721056, + "thread": 22 + } + }, + { + "amount": "160.022750105", + "slot": { + "period": 3849846, + "thread": 29 + } + } + ], + "AU12hA9djmoihjbTfLJYajeixTZm2DNoVaHVXo3C6WfqnyHyG4TWc": [ + { + "amount": "225.963448486", + "slot": { + "period": 53672, + "thread": 31 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 180669, + "thread": 7 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 433668, + "thread": 31 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 527246, + "thread": 18 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 784463, + "thread": 26 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 852078, + "thread": 20 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1102558, + "thread": 19 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1252724, + "thread": 9 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1355509, + "thread": 1 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1508790, + "thread": 27 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1762193, + "thread": 21 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 1864208, + "thread": 12 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2111503, + "thread": 25 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2256605, + "thread": 25 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2375617, + "thread": 12 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2598789, + "thread": 29 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2783749, + "thread": 29 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 2916029, + "thread": 5 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 3013630, + "thread": 31 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 3127035, + "thread": 23 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 3411265, + "thread": 14 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 3593810, + "thread": 27 + } + }, + { + "amount": "225.963448486", + "slot": { + "period": 3769305, + "thread": 4 + } + }, + { + "amount": "225.963448483", + "slot": { + "period": 3912452, + "thread": 3 + } + } + ], + "AU12hAE2S8FSMhtBkuMUb9FWzY53u1wqDdGQHPh2ypiqJhsAs1i45": [ + { + "amount": "93.753476277", + "slot": { + "period": 137342, + "thread": 12 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 200740, + "thread": 29 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 448403, + "thread": 21 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 614961, + "thread": 28 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 799122, + "thread": 23 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 870982, + "thread": 30 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1124169, + "thread": 1 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1275130, + "thread": 17 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1366619, + "thread": 15 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1597181, + "thread": 4 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1700642, + "thread": 2 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 1860738, + "thread": 14 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2125206, + "thread": 1 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2252021, + "thread": 29 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2457819, + "thread": 0 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2594965, + "thread": 3 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2748033, + "thread": 22 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2866025, + "thread": 29 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 2998809, + "thread": 19 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 3281066, + "thread": 16 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 3402885, + "thread": 17 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 3473301, + "thread": 27 + } + }, + { + "amount": "93.753476277", + "slot": { + "period": 3756773, + "thread": 21 + } + }, + { + "amount": "93.753476274", + "slot": { + "period": 3834400, + "thread": 31 + } + } + ], + "AU12hAYm3nf3fhBQdahiLLVjEDuPgBnTDnEu1PqewYqdv2JsgXsA": [ + { + "amount": "66.615099756", + "slot": { + "period": 40257, + "thread": 4 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 204634, + "thread": 13 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 482372, + "thread": 31 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 541999, + "thread": 4 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 685814, + "thread": 8 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 822538, + "thread": 25 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1056777, + "thread": 4 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1195092, + "thread": 22 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1394094, + "thread": 19 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1604543, + "thread": 24 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1752134, + "thread": 5 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 1893965, + "thread": 11 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2127126, + "thread": 10 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2216293, + "thread": 25 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2309176, + "thread": 26 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2569482, + "thread": 13 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2762262, + "thread": 8 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 2946199, + "thread": 4 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 3075684, + "thread": 10 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 3227974, + "thread": 10 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 3416606, + "thread": 24 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 3468704, + "thread": 9 + } + }, + { + "amount": "66.615099756", + "slot": { + "period": 3658140, + "thread": 15 + } + }, + { + "amount": "66.615099753", + "slot": { + "period": 3945508, + "thread": 17 + } + } + ], + "AU12hAmKC6Rnq8D8GhHBtZQD9R1jVWGQgrhUzj2t7kzS1XF7Bi8y6": [ + { + "amount": "115.021627263", + "slot": { + "period": 92230, + "thread": 6 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 202215, + "thread": 25 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 414213, + "thread": 22 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 644280, + "thread": 15 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 672048, + "thread": 14 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 893027, + "thread": 4 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1068436, + "thread": 26 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1183273, + "thread": 5 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1362712, + "thread": 22 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1574743, + "thread": 21 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1647656, + "thread": 12 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 1867848, + "thread": 30 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2060881, + "thread": 16 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2216989, + "thread": 25 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2335174, + "thread": 21 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2513534, + "thread": 26 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2756710, + "thread": 4 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 2900797, + "thread": 10 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 3097013, + "thread": 5 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 3159993, + "thread": 6 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 3340772, + "thread": 9 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 3565314, + "thread": 13 + } + }, + { + "amount": "115.021627263", + "slot": { + "period": 3716039, + "thread": 14 + } + }, + { + "amount": "115.021627273", + "slot": { + "period": 3780068, + "thread": 16 + } + } + ], + "AU12hBDF2AaQhgu4k1aJBdYKbYdLzCaewc9cbs8aGXBAtdzy6Tbbh": [ + { + "amount": "166.604998952", + "slot": { + "period": 153673, + "thread": 17 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 224168, + "thread": 18 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 465171, + "thread": 16 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 517086, + "thread": 30 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 738450, + "thread": 7 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 881056, + "thread": 5 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1004590, + "thread": 25 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1170326, + "thread": 11 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1468109, + "thread": 23 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1629150, + "thread": 21 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1740749, + "thread": 1 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 1817255, + "thread": 1 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2011738, + "thread": 13 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2250519, + "thread": 13 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2364820, + "thread": 7 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2478395, + "thread": 16 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2640170, + "thread": 9 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 2904716, + "thread": 16 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 3040665, + "thread": 17 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 3265545, + "thread": 25 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 3381622, + "thread": 8 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 3591390, + "thread": 21 + } + }, + { + "amount": "166.604998952", + "slot": { + "period": 3635784, + "thread": 3 + } + }, + { + "amount": "166.604998959", + "slot": { + "period": 3829338, + "thread": 0 + } + } + ], + "AU12hBFmceRmyTJA49CKFGDA22FKX15QBG1uuL7Xzy7JL8eM32rt": [ + { + "amount": "290.943032015", + "slot": { + "period": 73847, + "thread": 1 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 261900, + "thread": 29 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 402688, + "thread": 19 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 564397, + "thread": 2 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 692750, + "thread": 23 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 973562, + "thread": 0 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1126928, + "thread": 21 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1306430, + "thread": 17 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1371270, + "thread": 29 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1555475, + "thread": 28 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1795839, + "thread": 7 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 1951090, + "thread": 7 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2076761, + "thread": 20 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2240216, + "thread": 3 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2366662, + "thread": 19 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2522153, + "thread": 5 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2663349, + "thread": 30 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2872934, + "thread": 19 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 2956840, + "thread": 23 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 3147399, + "thread": 7 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 3353371, + "thread": 7 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 3580343, + "thread": 17 + } + }, + { + "amount": "290.943032015", + "slot": { + "period": 3751310, + "thread": 26 + } + }, + { + "amount": "290.943032016", + "slot": { + "period": 3854898, + "thread": 26 + } + } + ], + "AU12hCR4dR2kEZZpERqFRELSr4sVEXVnFrFpM5hf9z5ZjUGGJMp9v": [ + { + "amount": "196.215957943", + "slot": { + "period": 80676, + "thread": 1 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 208631, + "thread": 25 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 456427, + "thread": 27 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 528016, + "thread": 26 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 674986, + "thread": 5 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 842895, + "thread": 7 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1047715, + "thread": 12 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1249289, + "thread": 11 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1339604, + "thread": 11 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1628662, + "thread": 13 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1712375, + "thread": 20 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 1887924, + "thread": 4 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2007847, + "thread": 4 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2211358, + "thread": 27 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2434491, + "thread": 18 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2593143, + "thread": 21 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2688944, + "thread": 17 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 2863128, + "thread": 17 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 3022037, + "thread": 11 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 3132469, + "thread": 17 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 3387257, + "thread": 29 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 3514313, + "thread": 18 + } + }, + { + "amount": "196.215957943", + "slot": { + "period": 3701893, + "thread": 22 + } + }, + { + "amount": "196.215957944", + "slot": { + "period": 3782804, + "thread": 20 + } + } + ], + "AU12hCd6BxmKiNadhXNYHC8vY2jg7rmMTsLhQt22jdtrxQJerg6iU": [ + { + "amount": "70.728170660", + "slot": { + "period": 102344, + "thread": 31 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 256051, + "thread": 26 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 353920, + "thread": 15 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 500276, + "thread": 30 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 668267, + "thread": 14 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 866417, + "thread": 30 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1047206, + "thread": 2 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1260583, + "thread": 25 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1436896, + "thread": 26 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1518316, + "thread": 6 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1746990, + "thread": 6 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 1902604, + "thread": 14 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2000693, + "thread": 14 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2148509, + "thread": 27 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2301088, + "thread": 2 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2590904, + "thread": 7 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2780051, + "thread": 8 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 2860753, + "thread": 26 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 3003480, + "thread": 26 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 3176386, + "thread": 29 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 3356049, + "thread": 2 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 3464321, + "thread": 13 + } + }, + { + "amount": "70.728170660", + "slot": { + "period": 3653002, + "thread": 31 + } + }, + { + "amount": "70.728170668", + "slot": { + "period": 3895464, + "thread": 5 + } + } + ], + "AU12hDyQCt6cBjNnmBS9LWzLU8aTeACQjZ33guM3EKP6gLCgGjirK": [ + { + "amount": "231.026749873", + "slot": { + "period": 86578, + "thread": 10 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 202343, + "thread": 30 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 434551, + "thread": 1 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 541986, + "thread": 3 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 702810, + "thread": 23 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 905466, + "thread": 19 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1074873, + "thread": 6 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1211148, + "thread": 8 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1384856, + "thread": 28 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1576867, + "thread": 31 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1771790, + "thread": 18 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 1936813, + "thread": 22 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2121660, + "thread": 12 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2231582, + "thread": 31 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2303329, + "thread": 6 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2568502, + "thread": 15 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2714797, + "thread": 5 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2896550, + "thread": 23 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 2976882, + "thread": 11 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 3256564, + "thread": 4 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 3326244, + "thread": 25 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 3493379, + "thread": 19 + } + }, + { + "amount": "231.026749873", + "slot": { + "period": 3676972, + "thread": 26 + } + }, + { + "amount": "231.026749880", + "slot": { + "period": 3823740, + "thread": 3 + } + } + ], + "AU12hEkQJoLvFBPb8XisuhCMkHJviC6XAauRyB2F9TsoUE5Ahx8zp": [ + { + "amount": "297.387595343", + "slot": { + "period": 164547, + "thread": 1 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 198553, + "thread": 11 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 336446, + "thread": 26 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 512077, + "thread": 9 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 654664, + "thread": 21 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 862747, + "thread": 28 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1108675, + "thread": 11 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1316004, + "thread": 6 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1451185, + "thread": 14 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1599597, + "thread": 29 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1778980, + "thread": 18 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 1813800, + "thread": 6 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2067561, + "thread": 18 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2230820, + "thread": 25 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2427616, + "thread": 16 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2584667, + "thread": 1 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2747777, + "thread": 17 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 2923057, + "thread": 5 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 3001880, + "thread": 16 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 3162904, + "thread": 11 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 3364630, + "thread": 26 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 3581042, + "thread": 26 + } + }, + { + "amount": "297.387595343", + "slot": { + "period": 3737151, + "thread": 15 + } + }, + { + "amount": "297.387595344", + "slot": { + "period": 3834476, + "thread": 4 + } + } + ], + "AU12hF5rhWXxmr2KnVuwkMbdQfY1m62Y9tEbru4d4R8KgYvZfAkV2": [ + { + "amount": "454.571255950", + "slot": { + "period": 91870, + "thread": 14 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 228637, + "thread": 4 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 376501, + "thread": 20 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 515159, + "thread": 5 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 774759, + "thread": 29 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 841211, + "thread": 20 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1144107, + "thread": 18 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1183895, + "thread": 20 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1391126, + "thread": 25 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1558146, + "thread": 22 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1650895, + "thread": 0 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 1885412, + "thread": 0 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2052908, + "thread": 17 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2225131, + "thread": 5 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2398098, + "thread": 10 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2621287, + "thread": 15 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2764101, + "thread": 28 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 2801410, + "thread": 11 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 3068122, + "thread": 31 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 3178338, + "thread": 11 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 3401531, + "thread": 11 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 3498636, + "thread": 28 + } + }, + { + "amount": "454.571255950", + "slot": { + "period": 3767659, + "thread": 18 + } + }, + { + "amount": "454.571255948", + "slot": { + "period": 3936638, + "thread": 7 + } + } + ], + "AU12hFkgibzfQ79smFGZTktQnAmLy178Ta93mA88BxTwpJw2hJrP2": [ + { + "amount": "57.355437230", + "slot": { + "period": 63328, + "thread": 3 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 182549, + "thread": 2 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 410707, + "thread": 13 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 499829, + "thread": 20 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 743270, + "thread": 8 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 833552, + "thread": 0 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 991310, + "thread": 3 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 1153256, + "thread": 25 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 1340454, + "thread": 10 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 1529580, + "thread": 30 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 1797502, + "thread": 22 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 1836897, + "thread": 15 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2072643, + "thread": 26 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2144456, + "thread": 31 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2318491, + "thread": 3 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2473177, + "thread": 4 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2665282, + "thread": 9 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 2933485, + "thread": 26 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 3086815, + "thread": 0 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 3170247, + "thread": 26 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 3382048, + "thread": 7 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 3501068, + "thread": 17 + } + }, + { + "amount": "57.355437230", + "slot": { + "period": 3675061, + "thread": 31 + } + }, + { + "amount": "57.355437236", + "slot": { + "period": 3909460, + "thread": 24 + } + } + ], + "AU12hGFJBkoNxyvT8bhVrH6vmZjGTThvx8boa9GdRzBrvBYQRHQrz": [ + { + "amount": "80.017062732", + "slot": { + "period": 150996, + "thread": 17 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 297520, + "thread": 3 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 374635, + "thread": 29 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 617286, + "thread": 20 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 742280, + "thread": 24 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 873109, + "thread": 23 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1019616, + "thread": 13 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1243225, + "thread": 11 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1361644, + "thread": 22 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1616427, + "thread": 18 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1661621, + "thread": 12 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 1941115, + "thread": 9 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2087717, + "thread": 22 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2153243, + "thread": 22 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2416855, + "thread": 17 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2477810, + "thread": 31 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2685071, + "thread": 13 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2915498, + "thread": 29 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 2981635, + "thread": 8 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 3132456, + "thread": 22 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 3373894, + "thread": 6 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 3480347, + "thread": 9 + } + }, + { + "amount": "80.017062732", + "slot": { + "period": 3706602, + "thread": 12 + } + }, + { + "amount": "80.017062726", + "slot": { + "period": 3865540, + "thread": 8 + } + } + ], + "AU12hGzuZjkiAobHuNcWHZt2oiJBREtozF5UvJ81adtoCFdWa9J7B": [ + { + "amount": "540.968906630", + "slot": { + "period": 111015, + "thread": 30 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 249388, + "thread": 20 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 448816, + "thread": 22 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 586349, + "thread": 27 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 684711, + "thread": 14 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 898522, + "thread": 11 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1039225, + "thread": 23 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1233758, + "thread": 21 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1455003, + "thread": 26 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1631937, + "thread": 6 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1795347, + "thread": 1 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 1858978, + "thread": 13 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2009418, + "thread": 7 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2246595, + "thread": 13 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2406153, + "thread": 21 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2488495, + "thread": 4 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2679876, + "thread": 29 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 2875113, + "thread": 5 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 3023579, + "thread": 4 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 3201689, + "thread": 30 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 3349172, + "thread": 24 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 3470095, + "thread": 2 + } + }, + { + "amount": "540.968906630", + "slot": { + "period": 3777149, + "thread": 19 + } + }, + { + "amount": "540.968906623", + "slot": { + "period": 3921356, + "thread": 4 + } + } + ], + "AU12hHTAqsAqp4trfLHiqzvPYp2ZQVEiqSsiyr11AMLaRSrE4VhM3": [ + { + "amount": "157.606573760", + "slot": { + "period": 91373, + "thread": 10 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 186738, + "thread": 14 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 411354, + "thread": 1 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 527956, + "thread": 23 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 814181, + "thread": 12 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 921626, + "thread": 9 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1056592, + "thread": 4 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1227019, + "thread": 19 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1397383, + "thread": 24 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1505398, + "thread": 29 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1808990, + "thread": 20 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1901838, + "thread": 29 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 1996391, + "thread": 19 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 2290387, + "thread": 28 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 2359062, + "thread": 25 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 2545062, + "thread": 20 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 2666075, + "thread": 18 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 2881852, + "thread": 12 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 3036629, + "thread": 14 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 3185865, + "thread": 12 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 3395669, + "thread": 20 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 3574915, + "thread": 24 + } + }, + { + "amount": "157.606573760", + "slot": { + "period": 3738283, + "thread": 18 + } + }, + { + "amount": "157.606573764", + "slot": { + "period": 3782851, + "thread": 15 + } + } + ], + "AU12hKUzB3ZcK8LNipcg6fTnTexZEm2bvDoNuzBKKcUQBhofxE5rM": [ + { + "amount": "221.904045007", + "slot": { + "period": 138399, + "thread": 5 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 274511, + "thread": 22 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 401873, + "thread": 6 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 502079, + "thread": 23 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 764803, + "thread": 12 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 934122, + "thread": 16 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1087849, + "thread": 2 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1308134, + "thread": 20 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1405749, + "thread": 14 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1540653, + "thread": 5 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1734736, + "thread": 25 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 1810184, + "thread": 25 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2117439, + "thread": 6 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2199208, + "thread": 27 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2399898, + "thread": 14 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2516204, + "thread": 18 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2628837, + "thread": 17 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 2842776, + "thread": 13 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 3099053, + "thread": 19 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 3178629, + "thread": 19 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 3301365, + "thread": 24 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 3580247, + "thread": 16 + } + }, + { + "amount": "221.904045007", + "slot": { + "period": 3680199, + "thread": 11 + } + }, + { + "amount": "221.904044998", + "slot": { + "period": 3946238, + "thread": 23 + } + } + ], + "AU12hMe7VaViAZrxZGnFSXMUxtL4CSSYZb2dm1nFNSNTDYCKG7XgV": [ + { + "amount": "102.183975439", + "slot": { + "period": 101587, + "thread": 7 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 307450, + "thread": 7 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 471669, + "thread": 18 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 628806, + "thread": 27 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 760314, + "thread": 0 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 976959, + "thread": 29 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1123564, + "thread": 9 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1213851, + "thread": 11 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1333446, + "thread": 6 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1615885, + "thread": 3 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1688861, + "thread": 21 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 1868557, + "thread": 24 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2091213, + "thread": 8 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2208872, + "thread": 19 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2331833, + "thread": 28 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2561314, + "thread": 1 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2669161, + "thread": 4 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 2842869, + "thread": 8 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 3018238, + "thread": 0 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 3283242, + "thread": 28 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 3354626, + "thread": 1 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 3589134, + "thread": 15 + } + }, + { + "amount": "102.183975439", + "slot": { + "period": 3662942, + "thread": 27 + } + }, + { + "amount": "102.183975435", + "slot": { + "period": 3871833, + "thread": 21 + } + } + ], + "AU12hMp8qerFQZ1EgHtuor6DpnX32xKymSDxfagwzEa9hQNAw7SRy": [ + { + "amount": "120.192219662", + "slot": { + "period": 62377, + "thread": 14 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 318320, + "thread": 27 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 390498, + "thread": 3 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 633542, + "thread": 8 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 676531, + "thread": 18 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 927070, + "thread": 1 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1040442, + "thread": 25 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1276434, + "thread": 10 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1462865, + "thread": 8 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1605262, + "thread": 25 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1792898, + "thread": 23 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 1857002, + "thread": 24 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2129971, + "thread": 1 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2283798, + "thread": 5 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2316896, + "thread": 1 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2600447, + "thread": 2 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2789008, + "thread": 17 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 2823426, + "thread": 8 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 3116041, + "thread": 31 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 3274016, + "thread": 22 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 3369870, + "thread": 7 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 3605161, + "thread": 5 + } + }, + { + "amount": "120.192219662", + "slot": { + "period": 3642271, + "thread": 4 + } + }, + { + "amount": "120.192219666", + "slot": { + "period": 3860312, + "thread": 9 + } + } + ], + "AU12hNkhVCCk8YDN1tAJG1p88LUuiE8gQE7QBSmBHiK2x6E1jDUDC": [ + { + "amount": "99.652738842", + "slot": { + "period": 68287, + "thread": 28 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 179475, + "thread": 8 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 452820, + "thread": 7 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 504323, + "thread": 9 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 816841, + "thread": 10 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 822181, + "thread": 9 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1045241, + "thread": 6 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1208522, + "thread": 4 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1421737, + "thread": 22 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1501725, + "thread": 0 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1798707, + "thread": 2 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 1929924, + "thread": 1 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2087349, + "thread": 13 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2253518, + "thread": 10 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2462259, + "thread": 6 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2474336, + "thread": 26 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2704136, + "thread": 5 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 2828011, + "thread": 25 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 3059949, + "thread": 9 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 3232128, + "thread": 0 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 3309209, + "thread": 25 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 3464244, + "thread": 28 + } + }, + { + "amount": "99.652738842", + "slot": { + "period": 3703909, + "thread": 20 + } + }, + { + "amount": "99.652738839", + "slot": { + "period": 3944864, + "thread": 8 + } + } + ], + "AU12hPVNJvvv62TYwVpdrcjVT4jHA66UgWJ36hWs9cBZ74SaXHFeB": [ + { + "amount": "570.052387457", + "slot": { + "period": 113643, + "thread": 31 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 230654, + "thread": 6 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 414435, + "thread": 10 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 536325, + "thread": 19 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 688482, + "thread": 14 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 833852, + "thread": 21 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1073599, + "thread": 27 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1263651, + "thread": 18 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1334504, + "thread": 26 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1510445, + "thread": 30 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1709737, + "thread": 16 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1973713, + "thread": 19 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 1989794, + "thread": 23 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2176446, + "thread": 30 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2374547, + "thread": 1 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2567040, + "thread": 12 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2636252, + "thread": 24 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2846855, + "thread": 6 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 2994234, + "thread": 7 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 3147367, + "thread": 12 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 3338945, + "thread": 19 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 3491372, + "thread": 19 + } + }, + { + "amount": "570.052387457", + "slot": { + "period": 3678672, + "thread": 12 + } + }, + { + "amount": "570.052387459", + "slot": { + "period": 3802856, + "thread": 20 + } + } + ], + "AU12hS99HD6XZshjYzvQAwh4pRhraetf16x7Mp6Hm1YV1m1Vibany": [ + { + "amount": "167.629959267", + "slot": { + "period": 66273, + "thread": 19 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 208153, + "thread": 9 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 451291, + "thread": 13 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 599024, + "thread": 1 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 772058, + "thread": 30 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 864131, + "thread": 17 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1014985, + "thread": 22 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1271725, + "thread": 19 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1439738, + "thread": 14 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1511999, + "thread": 14 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1674761, + "thread": 15 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 1845658, + "thread": 0 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2134738, + "thread": 31 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2155338, + "thread": 18 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2343597, + "thread": 24 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2493782, + "thread": 10 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2630782, + "thread": 5 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2853217, + "thread": 2 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 2987683, + "thread": 23 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 3214006, + "thread": 23 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 3381890, + "thread": 6 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 3513948, + "thread": 19 + } + }, + { + "amount": "167.629959267", + "slot": { + "period": 3637568, + "thread": 6 + } + }, + { + "amount": "167.629959276", + "slot": { + "period": 3820223, + "thread": 4 + } + } + ], + "AU12hTf9bdEbV1X7rNYm478DQtGHxR98JJ1SWp2Q8hyFpKNWHPnGs": [ + { + "amount": "179.688698635", + "slot": { + "period": 27626, + "thread": 14 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 174837, + "thread": 18 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 343346, + "thread": 14 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 569257, + "thread": 11 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 691003, + "thread": 30 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 942112, + "thread": 1 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1084085, + "thread": 31 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1308513, + "thread": 22 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1403340, + "thread": 19 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1559895, + "thread": 3 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1797596, + "thread": 8 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 1893863, + "thread": 14 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2043310, + "thread": 4 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2266044, + "thread": 28 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2318776, + "thread": 18 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2475046, + "thread": 5 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2660083, + "thread": 22 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 2879859, + "thread": 15 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 3002844, + "thread": 3 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 3281861, + "thread": 31 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 3295906, + "thread": 9 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 3615662, + "thread": 14 + } + }, + { + "amount": "179.688698635", + "slot": { + "period": 3767747, + "thread": 26 + } + }, + { + "amount": "179.688698627", + "slot": { + "period": 3864394, + "thread": 13 + } + } + ], + "AU12hU5si9W9koxgJrtyAfNVkf6rS6qKBbkzqGtEheoDqvbRsN9Ys": [ + { + "amount": "94.178794857", + "slot": { + "period": 141472, + "thread": 30 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 272824, + "thread": 5 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 400061, + "thread": 1 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 550376, + "thread": 6 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 786824, + "thread": 3 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 950818, + "thread": 19 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1064619, + "thread": 0 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1223392, + "thread": 1 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1341263, + "thread": 25 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1498836, + "thread": 20 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1708979, + "thread": 21 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 1883926, + "thread": 14 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2107994, + "thread": 5 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2289825, + "thread": 14 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2420190, + "thread": 2 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2547068, + "thread": 10 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2646870, + "thread": 12 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 2928964, + "thread": 1 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 3103161, + "thread": 4 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 3123097, + "thread": 10 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 3314545, + "thread": 28 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 3468861, + "thread": 6 + } + }, + { + "amount": "94.178794857", + "slot": { + "period": 3662166, + "thread": 14 + } + }, + { + "amount": "94.178794851", + "slot": { + "period": 3884789, + "thread": 6 + } + } + ], + "AU12hVPLafnR475kvmFKc927GroTWHm745PhpJowZ9b7npMjSnTdy": [ + { + "amount": "84.982419464", + "slot": { + "period": 142692, + "thread": 23 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 223293, + "thread": 8 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 480925, + "thread": 6 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 559386, + "thread": 21 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 684384, + "thread": 20 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 911563, + "thread": 31 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1146810, + "thread": 8 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1298227, + "thread": 5 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1332120, + "thread": 19 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1595742, + "thread": 24 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1722011, + "thread": 3 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 1836436, + "thread": 23 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2098513, + "thread": 18 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2245834, + "thread": 11 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2344322, + "thread": 5 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2470010, + "thread": 13 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2688871, + "thread": 24 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 2792657, + "thread": 19 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 3113623, + "thread": 30 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 3143682, + "thread": 1 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 3328661, + "thread": 19 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 3472142, + "thread": 5 + } + }, + { + "amount": "84.982419464", + "slot": { + "period": 3776347, + "thread": 4 + } + }, + { + "amount": "84.982419467", + "slot": { + "period": 3893852, + "thread": 1 + } + } + ], + "AU12hVoDHK4qdjMTX9Gvhz1PU9TAadWzf7EH9QNbMYCWND67MUo3b": [ + { + "amount": "182.946521557", + "slot": { + "period": 126116, + "thread": 27 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 272491, + "thread": 26 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 359973, + "thread": 9 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 586733, + "thread": 3 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 672468, + "thread": 4 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 895055, + "thread": 26 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1094428, + "thread": 1 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1187915, + "thread": 11 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1333824, + "thread": 9 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1629055, + "thread": 15 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1779291, + "thread": 26 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 1841088, + "thread": 10 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2138106, + "thread": 19 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2188955, + "thread": 19 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2405513, + "thread": 11 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2572241, + "thread": 17 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2703042, + "thread": 0 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 2913290, + "thread": 3 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 3036532, + "thread": 15 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 3279612, + "thread": 22 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 3327617, + "thread": 21 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 3457328, + "thread": 3 + } + }, + { + "amount": "182.946521557", + "slot": { + "period": 3767672, + "thread": 13 + } + }, + { + "amount": "182.946521546", + "slot": { + "period": 3904145, + "thread": 3 + } + } + ], + "AU12hXBe8RwXsXmqk2ok9yismsXcLMcSnH1A3qDkvVvjhUQHFkNV": [ + { + "amount": "195.490405852", + "slot": { + "period": 105444, + "thread": 9 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 234674, + "thread": 1 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 401221, + "thread": 20 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 515441, + "thread": 9 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 770037, + "thread": 8 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 928683, + "thread": 18 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1039468, + "thread": 30 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1191671, + "thread": 10 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1448292, + "thread": 10 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1594193, + "thread": 21 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1746920, + "thread": 7 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 1943644, + "thread": 4 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2073830, + "thread": 9 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2197134, + "thread": 0 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2379758, + "thread": 15 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2478181, + "thread": 22 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2785095, + "thread": 29 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 2952051, + "thread": 30 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 3070547, + "thread": 10 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 3138893, + "thread": 9 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 3360078, + "thread": 9 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 3557169, + "thread": 17 + } + }, + { + "amount": "195.490405852", + "slot": { + "period": 3679349, + "thread": 12 + } + }, + { + "amount": "195.490405846", + "slot": { + "period": 3883944, + "thread": 29 + } + } + ], + "AU12hXo8aewE9gnRLJfHz3psSZSXZbUYkSeE8nBa1bK3N8w29kEUM": [ + { + "amount": "172.335269680", + "slot": { + "period": 126797, + "thread": 23 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 176889, + "thread": 1 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 368368, + "thread": 3 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 638267, + "thread": 14 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 751008, + "thread": 21 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 911548, + "thread": 9 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1071343, + "thread": 28 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1236471, + "thread": 22 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1330171, + "thread": 6 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1604909, + "thread": 14 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1700259, + "thread": 0 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 1812677, + "thread": 19 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2101644, + "thread": 12 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2176917, + "thread": 26 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2340007, + "thread": 31 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2472429, + "thread": 12 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2767622, + "thread": 4 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 2882266, + "thread": 26 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 3093983, + "thread": 15 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 3210187, + "thread": 31 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 3414046, + "thread": 14 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 3509260, + "thread": 0 + } + }, + { + "amount": "172.335269680", + "slot": { + "period": 3622064, + "thread": 14 + } + }, + { + "amount": "172.335269688", + "slot": { + "period": 3903409, + "thread": 3 + } + } + ], + "AU12hZfEAvrqyZUP2AEWa7zJxzdpMZbnuK4LL3NtAiZunEgmwZtm6": [ + { + "amount": "54.725328599", + "slot": { + "period": 23997, + "thread": 15 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 241545, + "thread": 13 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 472694, + "thread": 10 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 610902, + "thread": 17 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 653623, + "thread": 23 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 931883, + "thread": 9 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1033440, + "thread": 15 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1193588, + "thread": 29 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1326703, + "thread": 13 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1633519, + "thread": 27 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1679003, + "thread": 27 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 1860362, + "thread": 8 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2065914, + "thread": 15 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2192650, + "thread": 3 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2430058, + "thread": 29 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2507185, + "thread": 30 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2752473, + "thread": 13 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 2841704, + "thread": 31 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 3022641, + "thread": 12 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 3168007, + "thread": 29 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 3348613, + "thread": 12 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 3596953, + "thread": 15 + } + }, + { + "amount": "54.725328599", + "slot": { + "period": 3778619, + "thread": 31 + } + }, + { + "amount": "54.725328606", + "slot": { + "period": 3835462, + "thread": 14 + } + } + ], + "AU12hZfYQavH13mD1KWtuWwHwjJ3L4ktXeJ5z9MWu4D3rNUTfRh1c": [ + { + "amount": "596.059730217", + "slot": { + "period": 45799, + "thread": 6 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 270780, + "thread": 11 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 419429, + "thread": 7 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 553866, + "thread": 26 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 716882, + "thread": 10 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 980249, + "thread": 30 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1059085, + "thread": 3 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1260176, + "thread": 1 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1414453, + "thread": 13 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1486713, + "thread": 17 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1798505, + "thread": 31 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 1937899, + "thread": 29 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2022582, + "thread": 18 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2191577, + "thread": 25 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2361338, + "thread": 31 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2553421, + "thread": 7 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2668815, + "thread": 28 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 2943923, + "thread": 6 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 3003330, + "thread": 7 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 3282493, + "thread": 3 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 3381314, + "thread": 30 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 3502350, + "thread": 16 + } + }, + { + "amount": "596.059730217", + "slot": { + "period": 3753617, + "thread": 26 + } + }, + { + "amount": "596.059730209", + "slot": { + "period": 3786796, + "thread": 18 + } + } + ], + "AU12haQyBf1rs7nnpyoyBxBAJ6mdC4dm9vNUqNPAVbrj3cQJExMLo": [ + { + "amount": "188.533910518", + "slot": { + "period": 31680, + "thread": 19 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 276604, + "thread": 31 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 461012, + "thread": 25 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 644579, + "thread": 6 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 677073, + "thread": 30 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 859022, + "thread": 14 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1025569, + "thread": 3 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1288324, + "thread": 2 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1341637, + "thread": 9 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1637393, + "thread": 11 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1794890, + "thread": 13 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 1954164, + "thread": 24 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2088634, + "thread": 14 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2212004, + "thread": 6 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2459372, + "thread": 1 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2524043, + "thread": 20 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2715046, + "thread": 22 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2846370, + "thread": 11 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 2956607, + "thread": 28 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 3277891, + "thread": 18 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 3329693, + "thread": 21 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 3521446, + "thread": 8 + } + }, + { + "amount": "188.533910518", + "slot": { + "period": 3660063, + "thread": 5 + } + }, + { + "amount": "188.533910530", + "slot": { + "period": 3892767, + "thread": 7 + } + } + ], + "AU12hag5yV5kPvPvy1R6fjiocTyq1MiMMwQaf7JSiN3TTy8TWPsc2": [ + { + "amount": "365.615503308", + "slot": { + "period": 95638, + "thread": 13 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 272569, + "thread": 29 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 404904, + "thread": 11 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 562615, + "thread": 18 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 668215, + "thread": 27 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 928157, + "thread": 29 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1131594, + "thread": 1 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1268064, + "thread": 4 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1445978, + "thread": 27 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1498876, + "thread": 24 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1683380, + "thread": 26 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 1954934, + "thread": 27 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2137565, + "thread": 1 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2238376, + "thread": 3 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2381441, + "thread": 29 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2519411, + "thread": 10 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2789769, + "thread": 3 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 2844681, + "thread": 18 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 3107954, + "thread": 7 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 3254632, + "thread": 3 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 3318873, + "thread": 27 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 3523354, + "thread": 0 + } + }, + { + "amount": "365.615503308", + "slot": { + "period": 3707442, + "thread": 23 + } + }, + { + "amount": "365.615503307", + "slot": { + "period": 3814183, + "thread": 31 + } + } + ], + "AU12hb6D4FM89umtKHsez39sxWpvGy3wYf38Lviv3G3Bm5iYfGuH3": [ + { + "amount": "175.587237452", + "slot": { + "period": 98854, + "thread": 9 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 194098, + "thread": 4 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 342496, + "thread": 17 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 623124, + "thread": 13 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 814177, + "thread": 27 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 965233, + "thread": 9 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1076661, + "thread": 13 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1290560, + "thread": 16 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1400402, + "thread": 5 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1576679, + "thread": 6 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1782247, + "thread": 4 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 1880199, + "thread": 17 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2022608, + "thread": 31 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2171502, + "thread": 8 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2297707, + "thread": 12 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2516432, + "thread": 30 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2746820, + "thread": 31 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 2830679, + "thread": 1 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 3056832, + "thread": 18 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 3281400, + "thread": 27 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 3404491, + "thread": 0 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 3593729, + "thread": 20 + } + }, + { + "amount": "175.587237452", + "slot": { + "period": 3723998, + "thread": 10 + } + }, + { + "amount": "175.587237451", + "slot": { + "period": 3927549, + "thread": 3 + } + } + ], + "AU12hbaPcud9mYmYVbgHbi5BtyrCtZTqJgTouTe17sErouDi7P6R": [ + { + "amount": "343.400126591", + "slot": { + "period": 160269, + "thread": 10 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 310127, + "thread": 21 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 361284, + "thread": 21 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 616072, + "thread": 30 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 737851, + "thread": 17 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 870328, + "thread": 16 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1113109, + "thread": 10 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1218937, + "thread": 9 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1470432, + "thread": 9 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1510771, + "thread": 6 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1736371, + "thread": 11 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 1924886, + "thread": 8 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2013257, + "thread": 8 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2276267, + "thread": 16 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2447960, + "thread": 4 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2492846, + "thread": 24 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2720982, + "thread": 25 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2937171, + "thread": 31 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 2956527, + "thread": 2 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 3276738, + "thread": 25 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 3448746, + "thread": 26 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 3474757, + "thread": 12 + } + }, + { + "amount": "343.400126591", + "slot": { + "period": 3742823, + "thread": 19 + } + }, + { + "amount": "343.400126592", + "slot": { + "period": 3806108, + "thread": 23 + } + } + ], + "AU12hcsQrs6puiEJJJUFxEMvqcVrMdXuV3BsnJeALreNBZnaUG1SV": [ + { + "amount": "168.033611331", + "slot": { + "period": 118170, + "thread": 23 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 274469, + "thread": 1 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 443416, + "thread": 30 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 610717, + "thread": 22 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 669555, + "thread": 4 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 966517, + "thread": 4 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1007644, + "thread": 3 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1224401, + "thread": 6 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1446572, + "thread": 9 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1527688, + "thread": 19 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1722622, + "thread": 5 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1842800, + "thread": 20 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 1994355, + "thread": 25 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 2204197, + "thread": 11 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 2455532, + "thread": 17 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 2539431, + "thread": 18 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 2742144, + "thread": 23 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 2931110, + "thread": 21 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3102925, + "thread": 2 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3229404, + "thread": 15 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3311355, + "thread": 24 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3551405, + "thread": 30 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3719547, + "thread": 9 + } + }, + { + "amount": "168.033611331", + "slot": { + "period": 3788036, + "thread": 31 + } + } + ], + "AU12hdvxeNgEUmfpktdzRa9VNfNZizGnhkjRkjRXA2ue2DnRpJuPZ": [ + { + "amount": "554166.666666667", + "slot": { + "period": 167400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 324000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 491400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 653400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 820800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 982800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1150200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1317600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1479600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1647000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1809000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 1976400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2143800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2295000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2462400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2624400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2791800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 2953800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3121200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3288600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3450600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3618000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3780000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 3947400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4114800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4266000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4433400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4595400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4762800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 4924800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5092200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5259600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5421600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5589000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5751000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 5918400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6085800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6237000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6404400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6566400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6733800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 6895800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7063200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7230600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7392600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7560000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7722000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 7889400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8056800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8213400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8380800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8542800, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8710200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 8872200, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9039600, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9207000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9369000, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9536400, + "thread": 0 + } + }, + { + "amount": "554166.666666667", + "slot": { + "period": 9698400, + "thread": 0 + } + }, + { + "amount": "554166.666666647", + "slot": { + "period": 9865800, + "thread": 0 + } + } + ], + "AU12hdyJZrRCh9N1RsCvWnVVfUZybeDWdFjdvnUUggTEZxAbjCCTC": [ + { + "amount": "487.215482124", + "slot": { + "period": 121186, + "thread": 2 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 174571, + "thread": 12 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 396933, + "thread": 28 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 565811, + "thread": 2 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 737976, + "thread": 24 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 909396, + "thread": 15 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1135262, + "thread": 15 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1249313, + "thread": 5 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1425893, + "thread": 23 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1522147, + "thread": 10 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1672015, + "thread": 4 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 1816511, + "thread": 20 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2049757, + "thread": 24 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2193757, + "thread": 1 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2367048, + "thread": 25 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2484297, + "thread": 13 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2668683, + "thread": 25 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 2888799, + "thread": 15 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 3094238, + "thread": 10 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 3225819, + "thread": 21 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 3316443, + "thread": 2 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 3458725, + "thread": 15 + } + }, + { + "amount": "487.215482124", + "slot": { + "period": 3719194, + "thread": 11 + } + }, + { + "amount": "487.215482123", + "slot": { + "period": 3860471, + "thread": 5 + } + } + ], + "AU12heacifABi6fymcxADoQPRwvkKWqoa5WfRaZgHeJ17aVAxmMBW": [ + { + "amount": "130.667324297", + "slot": { + "period": 41941, + "thread": 0 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 271054, + "thread": 14 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 484174, + "thread": 3 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 567529, + "thread": 7 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 735621, + "thread": 7 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 973832, + "thread": 20 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1117209, + "thread": 19 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1193254, + "thread": 7 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1473047, + "thread": 23 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1491949, + "thread": 15 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1700348, + "thread": 23 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 1809142, + "thread": 27 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2136473, + "thread": 13 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2245941, + "thread": 9 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2343114, + "thread": 24 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2510060, + "thread": 10 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2772123, + "thread": 5 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 2862573, + "thread": 28 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 3025146, + "thread": 0 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 3121956, + "thread": 19 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 3306626, + "thread": 30 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 3505070, + "thread": 0 + } + }, + { + "amount": "130.667324297", + "slot": { + "period": 3678444, + "thread": 23 + } + }, + { + "amount": "130.667324294", + "slot": { + "period": 3947023, + "thread": 10 + } + } + ], + "AU12hef1wQJ85mv82CmD5dxsSzJpx9SfCiLZysd4qwNUV3UyPQTCF": [ + { + "amount": "102.061983583", + "slot": { + "period": 30231, + "thread": 17 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 305643, + "thread": 21 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 371376, + "thread": 19 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 552563, + "thread": 27 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 813166, + "thread": 4 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 847055, + "thread": 26 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1073015, + "thread": 14 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1313465, + "thread": 23 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1365954, + "thread": 21 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1583282, + "thread": 30 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1726147, + "thread": 28 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 1845886, + "thread": 13 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2096817, + "thread": 3 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2170591, + "thread": 11 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2310510, + "thread": 3 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2616509, + "thread": 9 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2632562, + "thread": 10 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 2820024, + "thread": 26 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 3017242, + "thread": 10 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 3235123, + "thread": 15 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 3399101, + "thread": 5 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 3475392, + "thread": 29 + } + }, + { + "amount": "102.061983583", + "slot": { + "period": 3746287, + "thread": 11 + } + }, + { + "amount": "102.061983586", + "slot": { + "period": 3828106, + "thread": 29 + } + } + ], + "AU12hfn97wsjeLTFDjsnBidTw5hHB7cwr51jqCEghQQb9oVBqo68J": [ + { + "amount": "297.212881102", + "slot": { + "period": 41125, + "thread": 20 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 237231, + "thread": 5 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 467159, + "thread": 16 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 602174, + "thread": 7 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 753501, + "thread": 13 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 951206, + "thread": 19 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1129963, + "thread": 5 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1170531, + "thread": 5 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1366201, + "thread": 7 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1608097, + "thread": 22 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1758773, + "thread": 29 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 1902087, + "thread": 18 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2066640, + "thread": 18 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2271305, + "thread": 11 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2338655, + "thread": 16 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2541093, + "thread": 20 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2660822, + "thread": 17 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 2910537, + "thread": 17 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 3095256, + "thread": 16 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 3257458, + "thread": 8 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 3395016, + "thread": 27 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 3550476, + "thread": 30 + } + }, + { + "amount": "297.212881102", + "slot": { + "period": 3766234, + "thread": 24 + } + }, + { + "amount": "297.212881105", + "slot": { + "period": 3801289, + "thread": 17 + } + } + ], + "AU12hfz9QnhXF6RfPmDk3mDcixr4k7pQDkL4wNee7yoAjN3vhmPoD": [ + { + "amount": "164.220346015", + "slot": { + "period": 85299, + "thread": 14 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 264437, + "thread": 4 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 450927, + "thread": 18 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 509481, + "thread": 26 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 768528, + "thread": 15 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 942059, + "thread": 14 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1120716, + "thread": 7 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1199172, + "thread": 12 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1435002, + "thread": 15 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1552321, + "thread": 23 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1667121, + "thread": 12 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 1844792, + "thread": 9 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2042760, + "thread": 9 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2253836, + "thread": 20 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2378595, + "thread": 19 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2548427, + "thread": 30 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2707002, + "thread": 13 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 2812291, + "thread": 4 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 3104278, + "thread": 0 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 3226948, + "thread": 2 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 3334813, + "thread": 3 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 3550597, + "thread": 9 + } + }, + { + "amount": "164.220346015", + "slot": { + "period": 3668649, + "thread": 8 + } + }, + { + "amount": "164.220346022", + "slot": { + "period": 3798707, + "thread": 4 + } + } + ], + "AU12hgH27EoA1hngY8deQC4bFB4hjH3hvf287k2cpB16ZuSNGuXBs": [ + { + "amount": "289.282299884", + "slot": { + "period": 145474, + "thread": 18 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 281621, + "thread": 15 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 370704, + "thread": 14 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 545825, + "thread": 28 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 746524, + "thread": 3 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 979356, + "thread": 25 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1056477, + "thread": 4 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1290438, + "thread": 22 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1408499, + "thread": 15 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1518641, + "thread": 24 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1790325, + "thread": 15 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 1957439, + "thread": 26 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2116657, + "thread": 13 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2273420, + "thread": 24 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2310992, + "thread": 29 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2487314, + "thread": 4 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2635489, + "thread": 13 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 2883494, + "thread": 23 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 3108606, + "thread": 27 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 3194864, + "thread": 22 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 3344552, + "thread": 5 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 3493446, + "thread": 0 + } + }, + { + "amount": "289.282299884", + "slot": { + "period": 3642075, + "thread": 29 + } + }, + { + "amount": "289.282299889", + "slot": { + "period": 3894723, + "thread": 17 + } + } + ], + "AU12hi9rP1imSfsCP8fSwHd4Y8GNpLL9B85BfmyAgD3PQEJ5FnyGg": [ + { + "amount": "514.444497718", + "slot": { + "period": 162185, + "thread": 21 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 196102, + "thread": 8 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 416440, + "thread": 26 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 544542, + "thread": 21 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 684033, + "thread": 20 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 899561, + "thread": 4 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1102678, + "thread": 14 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1284835, + "thread": 19 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1419074, + "thread": 27 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1629690, + "thread": 12 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1788727, + "thread": 5 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1924542, + "thread": 6 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 1996871, + "thread": 0 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 2253953, + "thread": 13 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 2449453, + "thread": 8 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 2566371, + "thread": 27 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 2703275, + "thread": 12 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 2850898, + "thread": 15 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 3105062, + "thread": 29 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 3150994, + "thread": 25 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 3416008, + "thread": 14 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 3594928, + "thread": 23 + } + }, + { + "amount": "514.444497718", + "slot": { + "period": 3747032, + "thread": 29 + } + }, + { + "amount": "514.444497708", + "slot": { + "period": 3817210, + "thread": 26 + } + } + ], + "AU12hiJotKKMjJLE6bDFsiMBxB9AjF9hChviZsBcFGtynhJJqczp3": [ + { + "amount": "81.199048139", + "slot": { + "period": 42933, + "thread": 26 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 175253, + "thread": 7 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 366272, + "thread": 24 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 521012, + "thread": 14 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 746863, + "thread": 22 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 941919, + "thread": 26 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1056396, + "thread": 27 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1219276, + "thread": 21 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1357421, + "thread": 19 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1633985, + "thread": 30 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1728652, + "thread": 4 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 1841445, + "thread": 3 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2036173, + "thread": 10 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2290449, + "thread": 31 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2421062, + "thread": 23 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2501286, + "thread": 15 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2781755, + "thread": 17 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 2865230, + "thread": 26 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 3079433, + "thread": 14 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 3281620, + "thread": 0 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 3378002, + "thread": 5 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 3518167, + "thread": 12 + } + }, + { + "amount": "81.199048139", + "slot": { + "period": 3719927, + "thread": 21 + } + }, + { + "amount": "81.199048147", + "slot": { + "period": 3941327, + "thread": 17 + } + } + ], + "AU12hihKUVPTejHUVDhjXVx4zGFWiLH9fj11bxqndYufeQJnNnn1y": [ + { + "amount": "434.316648331", + "slot": { + "period": 50391, + "thread": 19 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 282632, + "thread": 8 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 409588, + "thread": 12 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 645235, + "thread": 31 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 782508, + "thread": 6 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 910725, + "thread": 9 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1025177, + "thread": 7 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1198414, + "thread": 25 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1396483, + "thread": 28 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1568758, + "thread": 18 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1741951, + "thread": 16 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 1845289, + "thread": 29 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2137980, + "thread": 29 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2151626, + "thread": 7 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2326081, + "thread": 3 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2559605, + "thread": 2 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2778756, + "thread": 8 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 2798031, + "thread": 21 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 3116442, + "thread": 1 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 3122120, + "thread": 25 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 3290167, + "thread": 2 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 3468773, + "thread": 16 + } + }, + { + "amount": "434.316648331", + "slot": { + "period": 3631831, + "thread": 11 + } + }, + { + "amount": "434.316648341", + "slot": { + "period": 3790963, + "thread": 0 + } + } + ], + "AU12hj1FvmCfZEVnq4t6ZKqU5g2orAsL9dfUBxKH1LAq4JRUad5iE": [ + { + "amount": "228.237149617", + "slot": { + "period": 93656, + "thread": 22 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 281372, + "thread": 3 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 391322, + "thread": 6 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 512539, + "thread": 10 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 717421, + "thread": 14 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 922470, + "thread": 10 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 994165, + "thread": 8 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 1289047, + "thread": 25 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 1420086, + "thread": 2 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 1537135, + "thread": 19 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 1701842, + "thread": 29 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 1872791, + "thread": 0 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2111516, + "thread": 18 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2152735, + "thread": 5 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2423399, + "thread": 30 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2502689, + "thread": 18 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2760152, + "thread": 28 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 2799678, + "thread": 8 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 3079850, + "thread": 17 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 3121651, + "thread": 2 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 3361992, + "thread": 18 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 3589556, + "thread": 27 + } + }, + { + "amount": "228.237149617", + "slot": { + "period": 3685283, + "thread": 19 + } + }, + { + "amount": "228.237149625", + "slot": { + "period": 3941478, + "thread": 11 + } + } + ], + "AU12hjeZt2Lp9dJ5hcysBFui2A3Qyyenf4sh6JToK2f9Ve7RYGnay": [ + { + "amount": "191.248190848", + "slot": { + "period": 80104, + "thread": 3 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 231924, + "thread": 1 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 329058, + "thread": 13 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 543776, + "thread": 8 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 687888, + "thread": 3 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 941275, + "thread": 24 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1025327, + "thread": 22 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1194849, + "thread": 21 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1427210, + "thread": 11 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1562291, + "thread": 12 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1800148, + "thread": 21 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 1817480, + "thread": 10 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2049457, + "thread": 7 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2263079, + "thread": 1 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2454009, + "thread": 23 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2473239, + "thread": 6 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2629145, + "thread": 12 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 2887601, + "thread": 12 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3031458, + "thread": 29 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3176109, + "thread": 30 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3299373, + "thread": 24 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3458760, + "thread": 24 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3732296, + "thread": 24 + } + }, + { + "amount": "191.248190848", + "slot": { + "period": 3878534, + "thread": 3 + } + } + ], + "AU12hkpWxuFKBDm9XYi3XgLXu6oby4Z9UHHxD4bRA27eFCbVN2HRA": [ + { + "amount": "134.684787365", + "slot": { + "period": 149387, + "thread": 25 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 239254, + "thread": 30 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 437659, + "thread": 27 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 550817, + "thread": 4 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 749942, + "thread": 12 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 869989, + "thread": 20 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1027299, + "thread": 20 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1248194, + "thread": 19 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1434908, + "thread": 29 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1582106, + "thread": 12 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1804950, + "thread": 29 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 1895132, + "thread": 31 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2089756, + "thread": 6 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2265026, + "thread": 18 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2330702, + "thread": 18 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2499335, + "thread": 6 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2712349, + "thread": 6 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2924928, + "thread": 22 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 2976533, + "thread": 20 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 3277203, + "thread": 29 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 3321943, + "thread": 21 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 3524008, + "thread": 29 + } + }, + { + "amount": "134.684787365", + "slot": { + "period": 3750222, + "thread": 14 + } + }, + { + "amount": "134.684787375", + "slot": { + "period": 3903545, + "thread": 2 + } + } + ], + "AU12hkrYRpuLTnriDbUJ4gbDApwsiC1waXUeMh5FDZiTQC9RBwT4C": [ + { + "amount": "139.763895399", + "slot": { + "period": 134091, + "thread": 21 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 291325, + "thread": 11 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 437690, + "thread": 6 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 587408, + "thread": 7 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 800812, + "thread": 28 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 822367, + "thread": 16 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1123321, + "thread": 28 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1211733, + "thread": 27 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1454027, + "thread": 3 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1590228, + "thread": 25 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1672846, + "thread": 27 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 1819169, + "thread": 21 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2103755, + "thread": 19 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2204921, + "thread": 30 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2345239, + "thread": 23 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2538207, + "thread": 12 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2690538, + "thread": 20 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 2943162, + "thread": 24 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 3030433, + "thread": 8 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 3211362, + "thread": 3 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 3355291, + "thread": 31 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 3513529, + "thread": 5 + } + }, + { + "amount": "139.763895399", + "slot": { + "period": 3745360, + "thread": 28 + } + }, + { + "amount": "139.763895401", + "slot": { + "period": 3946645, + "thread": 7 + } + } + ], + "AU12hkzEfk3UYDJ4dZtedstFezydbFXc6TCU7b5UFuYBDRCtMHdPv": [ + { + "amount": "133.685307393", + "slot": { + "period": 132460, + "thread": 3 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 203376, + "thread": 1 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 412418, + "thread": 22 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 573052, + "thread": 9 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 793805, + "thread": 22 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 965917, + "thread": 6 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1025489, + "thread": 7 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1206037, + "thread": 27 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1351711, + "thread": 21 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1597724, + "thread": 3 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1682179, + "thread": 5 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 1952998, + "thread": 29 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2006384, + "thread": 20 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2219656, + "thread": 6 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2359612, + "thread": 22 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2561903, + "thread": 12 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2653471, + "thread": 13 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 2877788, + "thread": 18 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 3056152, + "thread": 7 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 3271581, + "thread": 22 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 3403664, + "thread": 21 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 3560888, + "thread": 18 + } + }, + { + "amount": "133.685307393", + "slot": { + "period": 3757945, + "thread": 25 + } + }, + { + "amount": "133.685307402", + "slot": { + "period": 3884092, + "thread": 19 + } + } + ], + "AU12hn1nBoGWfuaD6NBDxTorg7bUZTNhrgvswTnX1zHkDfhwp4Sef": [ + { + "amount": "96.975036672", + "slot": { + "period": 157411, + "thread": 29 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 295091, + "thread": 6 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 405572, + "thread": 18 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 539101, + "thread": 13 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 674749, + "thread": 21 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 890196, + "thread": 24 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1003383, + "thread": 24 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1177730, + "thread": 12 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1355015, + "thread": 10 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1493955, + "thread": 0 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1719333, + "thread": 14 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 1847344, + "thread": 15 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2010263, + "thread": 16 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2227604, + "thread": 6 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2310193, + "thread": 20 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2565526, + "thread": 14 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2742831, + "thread": 28 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 2866216, + "thread": 25 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 3036929, + "thread": 21 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 3186408, + "thread": 9 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 3372846, + "thread": 15 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 3591497, + "thread": 18 + } + }, + { + "amount": "96.975036672", + "slot": { + "period": 3709369, + "thread": 28 + } + }, + { + "amount": "96.975036681", + "slot": { + "period": 3884587, + "thread": 2 + } + } + ], + "AU12hnXte2iUPj8hQXBSSeBvAEDNUABomnCBFXnHRP49tQyywTBNU": [ + { + "amount": "86.509458598", + "slot": { + "period": 116197, + "thread": 1 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 220807, + "thread": 12 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 486723, + "thread": 30 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 651814, + "thread": 6 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 718393, + "thread": 23 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 943055, + "thread": 27 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1101003, + "thread": 3 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1251698, + "thread": 20 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1348701, + "thread": 17 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1507444, + "thread": 4 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1786985, + "thread": 5 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 1846645, + "thread": 22 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2069515, + "thread": 14 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2269262, + "thread": 14 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2423531, + "thread": 27 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2489348, + "thread": 3 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2748019, + "thread": 18 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 2900624, + "thread": 0 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 3120163, + "thread": 22 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 3285129, + "thread": 2 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 3441107, + "thread": 30 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 3612817, + "thread": 1 + } + }, + { + "amount": "86.509458598", + "slot": { + "period": 3768993, + "thread": 7 + } + }, + { + "amount": "86.509458605", + "slot": { + "period": 3946939, + "thread": 10 + } + } + ], + "AU12hnh45q83bs7QfvqVSuEHQiQp1iDHLc9oa6EuLa9QKKHWA96Uz": [ + { + "amount": "291.464274282", + "slot": { + "period": 165178, + "thread": 16 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 222624, + "thread": 10 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 484059, + "thread": 9 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 628034, + "thread": 4 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 768408, + "thread": 27 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 906066, + "thread": 19 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1034468, + "thread": 15 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1167654, + "thread": 7 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1413349, + "thread": 24 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1646790, + "thread": 15 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1694148, + "thread": 22 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 1884174, + "thread": 0 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2047377, + "thread": 27 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2156811, + "thread": 16 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2409375, + "thread": 11 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2536891, + "thread": 26 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2781341, + "thread": 29 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 2917477, + "thread": 11 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 3073022, + "thread": 15 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 3232136, + "thread": 12 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 3437796, + "thread": 10 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 3565646, + "thread": 31 + } + }, + { + "amount": "291.464274282", + "slot": { + "period": 3778235, + "thread": 23 + } + }, + { + "amount": "291.464274291", + "slot": { + "period": 3824704, + "thread": 8 + } + } + ], + "AU12hopAqA3TQutQkLB4ggn6PqPHvkhtUePYmyFSedD6wEGtZBr5g": [ + { + "amount": "190.791738804", + "slot": { + "period": 161716, + "thread": 31 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 175199, + "thread": 26 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 360030, + "thread": 26 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 498460, + "thread": 16 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 721132, + "thread": 21 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 848136, + "thread": 22 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1085001, + "thread": 14 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1300522, + "thread": 2 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1475063, + "thread": 30 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1646840, + "thread": 30 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1690299, + "thread": 8 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 1938987, + "thread": 10 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2132461, + "thread": 28 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2201908, + "thread": 6 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2398010, + "thread": 14 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2575157, + "thread": 23 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2768673, + "thread": 31 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2881203, + "thread": 1 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 2964678, + "thread": 11 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 3222576, + "thread": 1 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 3301859, + "thread": 1 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 3477780, + "thread": 10 + } + }, + { + "amount": "190.791738804", + "slot": { + "period": 3721098, + "thread": 12 + } + }, + { + "amount": "190.791738801", + "slot": { + "period": 3836474, + "thread": 26 + } + } + ], + "AU12hoq96xQC6v5Zk5KSDC3NLG6XnNqCo8cVNYBWYeq4NSpQXAZpx": [ + { + "amount": "345.387741822", + "slot": { + "period": 40670, + "thread": 23 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 175869, + "thread": 15 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 466874, + "thread": 11 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 644336, + "thread": 7 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 715635, + "thread": 8 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 894898, + "thread": 24 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1149580, + "thread": 13 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1242737, + "thread": 1 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1352181, + "thread": 29 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1625515, + "thread": 30 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1683751, + "thread": 31 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 1950017, + "thread": 19 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2112368, + "thread": 15 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2266905, + "thread": 14 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2314432, + "thread": 1 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2557140, + "thread": 10 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2706748, + "thread": 3 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 2840387, + "thread": 12 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 3094151, + "thread": 10 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 3166605, + "thread": 14 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 3425233, + "thread": 14 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 3491019, + "thread": 13 + } + }, + { + "amount": "345.387741822", + "slot": { + "period": 3732353, + "thread": 22 + } + }, + { + "amount": "345.387741823", + "slot": { + "period": 3941930, + "thread": 13 + } + } + ], + "AU12howgBQ2z2QKTr8DZcjomWP1jNzQgnKp8fioJMkJwBWtuGH9DD": [ + { + "amount": "184.539341395", + "slot": { + "period": 96795, + "thread": 31 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 310213, + "thread": 19 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 343024, + "thread": 27 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 603323, + "thread": 5 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 663525, + "thread": 6 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 830146, + "thread": 25 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1070047, + "thread": 5 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1219678, + "thread": 4 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1391344, + "thread": 20 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1480727, + "thread": 30 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1704189, + "thread": 2 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 1921334, + "thread": 7 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2017541, + "thread": 13 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2153579, + "thread": 28 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2320938, + "thread": 2 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2473614, + "thread": 27 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2724296, + "thread": 29 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 2838870, + "thread": 16 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 3024371, + "thread": 30 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 3283877, + "thread": 17 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 3292659, + "thread": 13 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 3612828, + "thread": 11 + } + }, + { + "amount": "184.539341395", + "slot": { + "period": 3660432, + "thread": 11 + } + }, + { + "amount": "184.539341387", + "slot": { + "period": 3853741, + "thread": 16 + } + } + ], + "AU12hp4SLZ5jA9jC1iop61zpBPhaS3WQQ1ywRDN2YAMkWfUMtmzKM": [ + { + "amount": "151.254925937", + "slot": { + "period": 19631, + "thread": 28 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 183996, + "thread": 13 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 432322, + "thread": 2 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 633925, + "thread": 22 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 679632, + "thread": 5 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 952055, + "thread": 26 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1072136, + "thread": 8 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1278582, + "thread": 20 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1358773, + "thread": 14 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1569010, + "thread": 30 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1663798, + "thread": 21 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 1885647, + "thread": 26 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2128503, + "thread": 28 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2187851, + "thread": 5 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2395808, + "thread": 3 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2568708, + "thread": 24 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2638509, + "thread": 12 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2851874, + "thread": 21 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 2982924, + "thread": 3 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 3217107, + "thread": 17 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 3411152, + "thread": 27 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 3465993, + "thread": 16 + } + }, + { + "amount": "151.254925937", + "slot": { + "period": 3729778, + "thread": 15 + } + }, + { + "amount": "151.254925945", + "slot": { + "period": 3884662, + "thread": 27 + } + } + ], + "AU12hpAy1aQNWQ25U12K94GcXiuhcCEHPu2m6n9soiPZsu6gNcrP2": [ + { + "amount": "243.172241426", + "slot": { + "period": 145676, + "thread": 7 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 303028, + "thread": 30 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 471321, + "thread": 9 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 553951, + "thread": 5 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 680975, + "thread": 5 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 887209, + "thread": 26 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1052189, + "thread": 7 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1202367, + "thread": 4 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1460864, + "thread": 27 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1513766, + "thread": 9 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1694623, + "thread": 22 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 1826612, + "thread": 22 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2023261, + "thread": 7 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2294253, + "thread": 19 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2310430, + "thread": 20 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2549382, + "thread": 18 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2640136, + "thread": 26 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 2857620, + "thread": 19 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 3003377, + "thread": 23 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 3276544, + "thread": 29 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 3390599, + "thread": 26 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 3470608, + "thread": 1 + } + }, + { + "amount": "243.172241426", + "slot": { + "period": 3678128, + "thread": 20 + } + }, + { + "amount": "243.172241437", + "slot": { + "period": 3903338, + "thread": 8 + } + } + ], + "AU12hpfswdoMv6FJeaiq5ikUi9UuYbZahDWzProW4c9EhkL9YZQLR": [ + { + "amount": "387.582023961", + "slot": { + "period": 157361, + "thread": 5 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 307083, + "thread": 20 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 419972, + "thread": 14 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 586676, + "thread": 19 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 655636, + "thread": 27 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 980367, + "thread": 11 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1135153, + "thread": 23 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1200819, + "thread": 7 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1360183, + "thread": 15 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1566186, + "thread": 12 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1748040, + "thread": 15 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 1957321, + "thread": 2 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2084793, + "thread": 20 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2233668, + "thread": 17 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2353087, + "thread": 24 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2478654, + "thread": 26 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2728751, + "thread": 2 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 2849889, + "thread": 25 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 3045920, + "thread": 21 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 3281167, + "thread": 30 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 3377333, + "thread": 7 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 3538007, + "thread": 22 + } + }, + { + "amount": "387.582023961", + "slot": { + "period": 3699102, + "thread": 0 + } + }, + { + "amount": "387.582023968", + "slot": { + "period": 3868357, + "thread": 20 + } + } + ], + "AU12hqHP3EYv6EZ1Zrs6UX585dQUSo7uzvXK2bLK6ix46Ld3cs1D3": [ + { + "amount": "211.469441364", + "slot": { + "period": 85422, + "thread": 19 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 308106, + "thread": 31 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 369649, + "thread": 16 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 520538, + "thread": 19 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 778597, + "thread": 31 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 885095, + "thread": 20 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1011704, + "thread": 29 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1307539, + "thread": 8 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1389312, + "thread": 28 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1547066, + "thread": 0 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1695026, + "thread": 28 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 1929037, + "thread": 5 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2111073, + "thread": 10 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2232328, + "thread": 21 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2299618, + "thread": 26 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2534249, + "thread": 18 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2643620, + "thread": 7 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 2930841, + "thread": 5 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 3040096, + "thread": 12 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 3187901, + "thread": 8 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 3309921, + "thread": 8 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 3530810, + "thread": 29 + } + }, + { + "amount": "211.469441364", + "slot": { + "period": 3736533, + "thread": 3 + } + }, + { + "amount": "211.469441352", + "slot": { + "period": 3851688, + "thread": 17 + } + } + ], + "AU12hqp3GRr3Zwi6Xi1fUbnhxzooYJVzgWwgKNKdqNPLCiJm5r6bC": [ + { + "amount": "444.233430078", + "slot": { + "period": 62863, + "thread": 4 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 288219, + "thread": 23 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 449432, + "thread": 31 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 537612, + "thread": 13 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 782678, + "thread": 18 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 837758, + "thread": 28 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 998223, + "thread": 29 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1201339, + "thread": 2 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1368841, + "thread": 9 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1511869, + "thread": 8 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1668885, + "thread": 15 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1846911, + "thread": 20 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 1997596, + "thread": 16 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2237496, + "thread": 28 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2449462, + "thread": 15 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2506622, + "thread": 14 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2760269, + "thread": 30 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2808947, + "thread": 4 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 2955077, + "thread": 10 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 3285451, + "thread": 18 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 3297331, + "thread": 14 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 3559466, + "thread": 7 + } + }, + { + "amount": "444.233430078", + "slot": { + "period": 3625803, + "thread": 4 + } + }, + { + "amount": "444.233430074", + "slot": { + "period": 3852547, + "thread": 4 + } + } + ], + "AU12hr6PRS9MELDLBBMcofv3iKWUhyUg6GUEUgdmtaw2VZcpbAUeL": [ + { + "amount": "162.184355481", + "slot": { + "period": 90871, + "thread": 31 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 182996, + "thread": 19 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 411494, + "thread": 27 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 609943, + "thread": 17 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 661299, + "thread": 11 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 925720, + "thread": 17 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1120296, + "thread": 6 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1219791, + "thread": 28 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1442820, + "thread": 13 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1550014, + "thread": 30 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1714573, + "thread": 1 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 1863564, + "thread": 10 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2126590, + "thread": 3 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2247051, + "thread": 12 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2448565, + "thread": 29 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2513209, + "thread": 26 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2672125, + "thread": 4 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 2919023, + "thread": 16 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 3108865, + "thread": 28 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 3192478, + "thread": 21 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 3399859, + "thread": 13 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 3591185, + "thread": 1 + } + }, + { + "amount": "162.184355481", + "slot": { + "period": 3657757, + "thread": 8 + } + }, + { + "amount": "162.184355475", + "slot": { + "period": 3886030, + "thread": 21 + } + } + ], + "AU12hs7ZpqmBwn5KqG8ZAQHzpnSw34ced3xzMjRxWorYFk1G42x3y": [ + { + "amount": "204.755365146", + "slot": { + "period": 162873, + "thread": 15 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 203128, + "thread": 9 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 371696, + "thread": 20 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 625303, + "thread": 18 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 735893, + "thread": 23 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 962867, + "thread": 1 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1094774, + "thread": 14 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1166633, + "thread": 0 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1357666, + "thread": 7 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1497854, + "thread": 7 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1782877, + "thread": 26 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 1816956, + "thread": 3 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2089115, + "thread": 11 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2169722, + "thread": 4 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2295583, + "thread": 10 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2497387, + "thread": 2 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2652323, + "thread": 2 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 2887963, + "thread": 4 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3091529, + "thread": 14 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3288278, + "thread": 1 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3326122, + "thread": 27 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3592713, + "thread": 29 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3658962, + "thread": 11 + } + }, + { + "amount": "204.755365146", + "slot": { + "period": 3944324, + "thread": 19 + } + } + ], + "AU12htBm7ZcYAKgz5gQPUJCohzUFdmopfVXfijLcv8dVtvqBF6Seu": [ + { + "amount": "126.546420378", + "slot": { + "period": 66543, + "thread": 17 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 295031, + "thread": 11 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 421710, + "thread": 4 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 611583, + "thread": 20 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 716093, + "thread": 14 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 843770, + "thread": 4 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1012578, + "thread": 27 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1303893, + "thread": 16 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1386518, + "thread": 7 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1588278, + "thread": 16 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1728842, + "thread": 18 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 1943330, + "thread": 11 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2052563, + "thread": 24 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2164229, + "thread": 14 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2299613, + "thread": 18 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2592343, + "thread": 16 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2756366, + "thread": 6 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2856121, + "thread": 1 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 2996501, + "thread": 17 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 3184008, + "thread": 8 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 3402862, + "thread": 30 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 3598703, + "thread": 22 + } + }, + { + "amount": "126.546420378", + "slot": { + "period": 3726790, + "thread": 20 + } + }, + { + "amount": "126.546420384", + "slot": { + "period": 3932977, + "thread": 22 + } + } + ], + "AU12htkWfN5Gou4LKcpziD3PR9cpjoddASrtviV1ojCdT9xAYxhkh": [ + { + "amount": "54.998218080", + "slot": { + "period": 136633, + "thread": 19 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 250867, + "thread": 15 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 396317, + "thread": 10 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 582313, + "thread": 0 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 733446, + "thread": 0 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 899038, + "thread": 17 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1141466, + "thread": 20 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1316808, + "thread": 19 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1378102, + "thread": 24 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1529757, + "thread": 15 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1780611, + "thread": 25 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1817710, + "thread": 13 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 1976735, + "thread": 6 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 2282557, + "thread": 3 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 2461513, + "thread": 0 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 2579337, + "thread": 15 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 2636219, + "thread": 1 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 2812793, + "thread": 14 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 3016530, + "thread": 8 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 3173758, + "thread": 31 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 3339739, + "thread": 0 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 3520856, + "thread": 3 + } + }, + { + "amount": "54.998218080", + "slot": { + "period": 3685457, + "thread": 29 + } + }, + { + "amount": "54.998218084", + "slot": { + "period": 3919826, + "thread": 10 + } + } + ], + "AU12huC2RXPVUCymsc9Y3PwFBzZbKs1qe82tS7TgBNb81zZVunrvi": [ + { + "amount": "204.250776943", + "slot": { + "period": 81759, + "thread": 28 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 222482, + "thread": 10 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 348345, + "thread": 17 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 579115, + "thread": 25 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 730759, + "thread": 7 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 883825, + "thread": 12 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1059112, + "thread": 4 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1262180, + "thread": 29 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1426713, + "thread": 17 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1517832, + "thread": 18 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1801536, + "thread": 5 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 1892235, + "thread": 16 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2092322, + "thread": 3 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2181623, + "thread": 8 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2322033, + "thread": 31 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2604741, + "thread": 13 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2718628, + "thread": 17 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 2851248, + "thread": 22 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 3090410, + "thread": 27 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 3233532, + "thread": 27 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 3331612, + "thread": 14 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 3545060, + "thread": 27 + } + }, + { + "amount": "204.250776943", + "slot": { + "period": 3710027, + "thread": 18 + } + }, + { + "amount": "204.250776941", + "slot": { + "period": 3906517, + "thread": 3 + } + } + ], + "AU12huFMiTebJXBWMg6BjB5mMX2yZq1bapkHcgGtkmtMCyw1Y9SfQ": [ + { + "amount": "116.979231424", + "slot": { + "period": 69780, + "thread": 2 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 255162, + "thread": 30 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 471204, + "thread": 1 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 520410, + "thread": 0 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 746211, + "thread": 16 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 958551, + "thread": 2 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1068148, + "thread": 4 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1186935, + "thread": 26 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1355689, + "thread": 4 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1551864, + "thread": 16 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1659850, + "thread": 21 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 1843961, + "thread": 19 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2069709, + "thread": 1 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2289416, + "thread": 24 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2307703, + "thread": 2 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2571758, + "thread": 31 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2711143, + "thread": 15 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 2802122, + "thread": 15 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 3015580, + "thread": 14 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 3194082, + "thread": 25 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 3431592, + "thread": 30 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 3617030, + "thread": 9 + } + }, + { + "amount": "116.979231424", + "slot": { + "period": 3723714, + "thread": 6 + } + }, + { + "amount": "116.979231418", + "slot": { + "period": 3878180, + "thread": 19 + } + } + ], + "AU12hv816Qwt5tWZPYWhwENdUMz1hRSEsAPJGoitg6oSJDiojxREK": [ + { + "amount": "614.655814763", + "slot": { + "period": 112719, + "thread": 27 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 321360, + "thread": 26 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 446526, + "thread": 28 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 617308, + "thread": 17 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 763592, + "thread": 22 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 927075, + "thread": 13 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1129496, + "thread": 31 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1244273, + "thread": 4 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1475480, + "thread": 22 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1520795, + "thread": 25 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1651661, + "thread": 4 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 1809795, + "thread": 18 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2014843, + "thread": 20 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2205880, + "thread": 13 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2441722, + "thread": 10 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2524583, + "thread": 0 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2631727, + "thread": 15 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 2853173, + "thread": 3 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 3115145, + "thread": 25 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 3201254, + "thread": 29 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 3434789, + "thread": 3 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 3596643, + "thread": 12 + } + }, + { + "amount": "614.655814763", + "slot": { + "period": 3679943, + "thread": 27 + } + }, + { + "amount": "614.655814773", + "slot": { + "period": 3856394, + "thread": 3 + } + } + ], + "AU12hvKygqTiSkDgqrJUjXsCGsvtjGxPHKLRUYuhMdxpPrXAmTJ4s": [ + { + "amount": "107.909113703", + "slot": { + "period": 98307, + "thread": 6 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 274949, + "thread": 17 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 440339, + "thread": 5 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 595086, + "thread": 20 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 753081, + "thread": 10 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 883723, + "thread": 24 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1132481, + "thread": 9 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1151997, + "thread": 14 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1351765, + "thread": 5 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1633122, + "thread": 29 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1729137, + "thread": 26 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 1961715, + "thread": 14 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2017277, + "thread": 2 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2154931, + "thread": 19 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2302104, + "thread": 4 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2464934, + "thread": 28 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2773501, + "thread": 15 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 2899105, + "thread": 18 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 3008990, + "thread": 30 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 3263001, + "thread": 24 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 3350085, + "thread": 5 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 3566038, + "thread": 0 + } + }, + { + "amount": "107.909113703", + "slot": { + "period": 3767876, + "thread": 31 + } + }, + { + "amount": "107.909113714", + "slot": { + "period": 3862517, + "thread": 15 + } + } + ], + "AU12hvcfWaF3SC996WX9R4v3hrUkoKWiNsZojSaUqAmxszFWFiXCE": [ + { + "amount": "168.736845085", + "slot": { + "period": 64584, + "thread": 8 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 253821, + "thread": 0 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 462461, + "thread": 31 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 646840, + "thread": 17 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 787600, + "thread": 14 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 854558, + "thread": 6 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1035366, + "thread": 24 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1261896, + "thread": 10 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1458430, + "thread": 18 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1627071, + "thread": 3 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1792513, + "thread": 16 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 1922129, + "thread": 6 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2037136, + "thread": 23 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2171452, + "thread": 27 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2439534, + "thread": 15 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2529238, + "thread": 7 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2773127, + "thread": 12 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2847010, + "thread": 3 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 2956888, + "thread": 28 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 3133294, + "thread": 23 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 3393635, + "thread": 0 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 3455647, + "thread": 3 + } + }, + { + "amount": "168.736845085", + "slot": { + "period": 3719739, + "thread": 19 + } + }, + { + "amount": "168.736845088", + "slot": { + "period": 3841953, + "thread": 29 + } + } + ], + "AU12hwRLkY4UvA4n6KFKRDVc4g9CLJXzqMiSXsRjSfWSMu5BYXQ8g": [ + { + "amount": "193.931284301", + "slot": { + "period": 150502, + "thread": 10 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 214761, + "thread": 21 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 328400, + "thread": 5 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 629671, + "thread": 8 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 728082, + "thread": 29 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 970284, + "thread": 25 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1085687, + "thread": 29 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1223022, + "thread": 31 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1440067, + "thread": 26 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1532453, + "thread": 10 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1737888, + "thread": 9 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1830026, + "thread": 7 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 1992847, + "thread": 22 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 2157322, + "thread": 0 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 2366003, + "thread": 6 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 2576674, + "thread": 18 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 2651912, + "thread": 23 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 2816455, + "thread": 27 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 3023822, + "thread": 8 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 3150885, + "thread": 15 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 3335525, + "thread": 15 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 3540311, + "thread": 5 + } + }, + { + "amount": "193.931284301", + "slot": { + "period": 3623582, + "thread": 27 + } + }, + { + "amount": "193.931284311", + "slot": { + "period": 3791637, + "thread": 17 + } + } + ], + "AU12hwi9vZPAieAVKFR6ao8zZ2u4895RRmLJxUwqk19HzH7ZSzT1p": [ + { + "amount": "223.162444775", + "slot": { + "period": 83325, + "thread": 1 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 288838, + "thread": 0 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 475511, + "thread": 16 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 522037, + "thread": 30 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 681168, + "thread": 8 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 877309, + "thread": 11 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1132385, + "thread": 15 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1279992, + "thread": 4 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1347482, + "thread": 26 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1526115, + "thread": 5 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1785280, + "thread": 27 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 1927915, + "thread": 16 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2031096, + "thread": 28 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2260646, + "thread": 4 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2309209, + "thread": 22 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2462570, + "thread": 27 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2766581, + "thread": 27 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 2900577, + "thread": 15 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 3115339, + "thread": 16 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 3148784, + "thread": 9 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 3423882, + "thread": 8 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 3481933, + "thread": 28 + } + }, + { + "amount": "223.162444775", + "slot": { + "period": 3743941, + "thread": 20 + } + }, + { + "amount": "223.162444767", + "slot": { + "period": 3810095, + "thread": 23 + } + } + ], + "AU12hxq9KVBjWCB9xX1rFaL1jbBav5gG9hyRk5dEnmKwPBYy7RTLk": [ + { + "amount": "217.252553141", + "slot": { + "period": 105506, + "thread": 24 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 320043, + "thread": 0 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 439431, + "thread": 2 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 606381, + "thread": 27 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 749038, + "thread": 24 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 966425, + "thread": 12 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1063686, + "thread": 15 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1209335, + "thread": 7 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1437619, + "thread": 5 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1623449, + "thread": 15 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1708806, + "thread": 21 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 1888226, + "thread": 18 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2062730, + "thread": 14 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2144248, + "thread": 18 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2312479, + "thread": 16 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2574542, + "thread": 5 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2648126, + "thread": 11 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 2821286, + "thread": 18 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 3012101, + "thread": 18 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 3270685, + "thread": 23 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 3307208, + "thread": 13 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 3466488, + "thread": 22 + } + }, + { + "amount": "217.252553141", + "slot": { + "period": 3744944, + "thread": 0 + } + }, + { + "amount": "217.252553142", + "slot": { + "period": 3853880, + "thread": 14 + } + } + ], + "AU12hySr2qFbkuE4E6G6yvZwhdEbGZYV1oooHFkXsQpLagbuq2DCG": [ + { + "amount": "74.616046724", + "slot": { + "period": 157071, + "thread": 7 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 304620, + "thread": 4 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 442646, + "thread": 6 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 642350, + "thread": 6 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 725894, + "thread": 26 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 840587, + "thread": 8 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1015086, + "thread": 28 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1313784, + "thread": 20 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1419736, + "thread": 7 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1555170, + "thread": 6 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1727148, + "thread": 20 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 1876185, + "thread": 14 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2135855, + "thread": 3 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2242311, + "thread": 29 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2407182, + "thread": 9 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2481577, + "thread": 31 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2759058, + "thread": 27 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2914096, + "thread": 13 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 2985415, + "thread": 15 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 3233881, + "thread": 25 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 3328685, + "thread": 18 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 3557091, + "thread": 31 + } + }, + { + "amount": "74.616046724", + "slot": { + "period": 3632004, + "thread": 26 + } + }, + { + "amount": "74.616046730", + "slot": { + "period": 3826337, + "thread": 18 + } + } + ], + "AU12hyZ3EirpcJAmSxGKJ4EfWQyc1ufFTBtnV6KfJf8qtBC4uu1fy": [ + { + "amount": "93.762898088", + "slot": { + "period": 93609, + "thread": 9 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 232054, + "thread": 14 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 334614, + "thread": 24 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 547708, + "thread": 19 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 697278, + "thread": 23 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 922668, + "thread": 21 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1044913, + "thread": 27 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1209905, + "thread": 3 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1460038, + "thread": 28 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1512112, + "thread": 21 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1671568, + "thread": 17 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 1859092, + "thread": 14 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2108064, + "thread": 18 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2237113, + "thread": 26 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2314930, + "thread": 16 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2464393, + "thread": 19 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2654742, + "thread": 26 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 2794451, + "thread": 14 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 3064829, + "thread": 30 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 3278325, + "thread": 14 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 3433248, + "thread": 20 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 3584400, + "thread": 18 + } + }, + { + "amount": "93.762898088", + "slot": { + "period": 3688410, + "thread": 12 + } + }, + { + "amount": "93.762898078", + "slot": { + "period": 3808274, + "thread": 4 + } + } + ], + "AU12i1evEU5GaYEcHRMmm9ZYxRTF2TzxNMgZETNntx5VFWrBXgeqt": [ + { + "amount": "124.869357311", + "slot": { + "period": 147729, + "thread": 18 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 269697, + "thread": 28 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 353566, + "thread": 25 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 641493, + "thread": 20 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 771506, + "thread": 17 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 877546, + "thread": 14 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1071202, + "thread": 19 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1214273, + "thread": 9 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1345555, + "thread": 15 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1552358, + "thread": 21 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1706732, + "thread": 0 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 1937980, + "thread": 6 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2055325, + "thread": 12 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2163721, + "thread": 5 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2318576, + "thread": 9 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2567574, + "thread": 16 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2695514, + "thread": 3 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 2854561, + "thread": 28 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 3120572, + "thread": 4 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 3280714, + "thread": 26 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 3435702, + "thread": 13 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 3470106, + "thread": 26 + } + }, + { + "amount": "124.869357311", + "slot": { + "period": 3688779, + "thread": 21 + } + }, + { + "amount": "124.869357306", + "slot": { + "period": 3832041, + "thread": 0 + } + } + ], + "AU12i23ZdFpTTu4UKUEQieFgwd94yAeXe4YbwGEWiPS6JiBJ2SLge": [ + { + "amount": "186.519014604", + "slot": { + "period": 41491, + "thread": 3 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 178976, + "thread": 8 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 415140, + "thread": 21 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 645666, + "thread": 19 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 719334, + "thread": 19 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 891683, + "thread": 19 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1004372, + "thread": 13 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1260265, + "thread": 22 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1330257, + "thread": 2 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1492121, + "thread": 17 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1804938, + "thread": 21 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 1852732, + "thread": 7 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2036412, + "thread": 23 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2195197, + "thread": 23 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2365106, + "thread": 14 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2622792, + "thread": 18 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2716915, + "thread": 8 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2883287, + "thread": 25 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 2986003, + "thread": 8 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 3275697, + "thread": 0 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 3392344, + "thread": 19 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 3529363, + "thread": 15 + } + }, + { + "amount": "186.519014604", + "slot": { + "period": 3747804, + "thread": 2 + } + }, + { + "amount": "186.519014595", + "slot": { + "period": 3935744, + "thread": 12 + } + } + ], + "AU12i28F4ZE9BeQBGMzE8uFP3Ap2TDVjr4G75XSdHcUAtHDE3oufG": [ + { + "amount": "103.882168020", + "slot": { + "period": 161644, + "thread": 24 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 286208, + "thread": 31 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 435564, + "thread": 12 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 629494, + "thread": 4 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 797723, + "thread": 0 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 856624, + "thread": 12 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1135673, + "thread": 30 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1191712, + "thread": 1 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1376265, + "thread": 8 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1613218, + "thread": 30 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1760309, + "thread": 24 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 1905259, + "thread": 16 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2139144, + "thread": 19 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2271145, + "thread": 28 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2418752, + "thread": 16 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2560800, + "thread": 31 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2732368, + "thread": 18 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 2931304, + "thread": 5 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 3093446, + "thread": 7 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 3215058, + "thread": 8 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 3318951, + "thread": 5 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 3607285, + "thread": 29 + } + }, + { + "amount": "103.882168020", + "slot": { + "period": 3655928, + "thread": 15 + } + }, + { + "amount": "103.882168030", + "slot": { + "period": 3789770, + "thread": 9 + } + } + ], + "AU12i2LETj383SiKT4S6Fh28HMsJXUfWQ3gMmAQ6MUwBG5nRZNKaA": [ + { + "amount": "579.853624458", + "slot": { + "period": 43207, + "thread": 29 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 319110, + "thread": 6 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 460091, + "thread": 12 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 652085, + "thread": 12 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 733120, + "thread": 21 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 940634, + "thread": 2 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1008807, + "thread": 24 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1212833, + "thread": 31 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1424969, + "thread": 15 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1539452, + "thread": 23 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1795003, + "thread": 28 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 1837872, + "thread": 7 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2020764, + "thread": 4 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2260676, + "thread": 4 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2383164, + "thread": 2 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2609702, + "thread": 23 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2752104, + "thread": 22 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 2860510, + "thread": 24 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 3112065, + "thread": 21 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 3225956, + "thread": 6 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 3440583, + "thread": 12 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 3462387, + "thread": 27 + } + }, + { + "amount": "579.853624458", + "slot": { + "period": 3689526, + "thread": 8 + } + }, + { + "amount": "579.853624470", + "slot": { + "period": 3864504, + "thread": 25 + } + } + ], + "AU12i2Pt1ffpt4nYuUTz9UyVjBBeDcsDwHXQtmwsERe85jCdy5F2Y": [ + { + "amount": "197.739023808", + "slot": { + "period": 105827, + "thread": 19 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 244282, + "thread": 23 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 343459, + "thread": 18 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 498034, + "thread": 0 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 723773, + "thread": 5 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 907892, + "thread": 10 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1022432, + "thread": 0 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1264372, + "thread": 0 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1396927, + "thread": 2 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1603030, + "thread": 29 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1782749, + "thread": 18 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1958885, + "thread": 9 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 1986449, + "thread": 16 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 2179211, + "thread": 22 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 2326014, + "thread": 13 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 2603460, + "thread": 2 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 2677814, + "thread": 13 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 2909898, + "thread": 9 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 3085979, + "thread": 12 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 3178676, + "thread": 20 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 3316936, + "thread": 31 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 3504301, + "thread": 15 + } + }, + { + "amount": "197.739023808", + "slot": { + "period": 3762103, + "thread": 16 + } + }, + { + "amount": "197.739023803", + "slot": { + "period": 3879271, + "thread": 8 + } + } + ], + "AU12i3R2EfyA8exnpe78juUQCBLwibCv2C3ZhP7e5xwD3hD3hvAG": [ + { + "amount": "237.067786530", + "slot": { + "period": 88822, + "thread": 14 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 280154, + "thread": 2 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 467188, + "thread": 22 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 588418, + "thread": 10 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 683918, + "thread": 17 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 909867, + "thread": 27 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 993392, + "thread": 9 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 1262873, + "thread": 24 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 1462890, + "thread": 28 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 1557094, + "thread": 5 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 1799665, + "thread": 19 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 1880162, + "thread": 26 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2033339, + "thread": 24 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2239723, + "thread": 9 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2431917, + "thread": 16 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2491171, + "thread": 18 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2688846, + "thread": 5 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 2917871, + "thread": 29 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 3103068, + "thread": 3 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 3228397, + "thread": 15 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 3363255, + "thread": 21 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 3495518, + "thread": 11 + } + }, + { + "amount": "237.067786530", + "slot": { + "period": 3712257, + "thread": 13 + } + }, + { + "amount": "237.067786526", + "slot": { + "period": 3935726, + "thread": 21 + } + } + ], + "AU12i3f5438rUtLNektsVL3txCeuZaRmBoW9Yoxgphi2yVnWEN2QN": [ + { + "amount": "315.647982331", + "slot": { + "period": 58257, + "thread": 21 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 168961, + "thread": 14 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 394520, + "thread": 26 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 553481, + "thread": 7 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 785531, + "thread": 19 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 922416, + "thread": 12 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1022584, + "thread": 20 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1150680, + "thread": 14 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1421159, + "thread": 17 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1611907, + "thread": 17 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1784931, + "thread": 25 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 1935575, + "thread": 11 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2129522, + "thread": 13 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2237974, + "thread": 23 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2335189, + "thread": 12 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2549691, + "thread": 8 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2691712, + "thread": 4 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 2877210, + "thread": 16 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 3096260, + "thread": 25 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 3211855, + "thread": 26 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 3441629, + "thread": 4 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 3533843, + "thread": 13 + } + }, + { + "amount": "315.647982331", + "slot": { + "period": 3686862, + "thread": 15 + } + }, + { + "amount": "315.647982340", + "slot": { + "period": 3794998, + "thread": 0 + } + } + ], + "AU12i4XyAy7kHqrGp1WoQGtQjGsKus7VDqaDCL193owJ7NxjAy86u": [ + { + "amount": "417.085452477", + "slot": { + "period": 100549, + "thread": 9 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 286226, + "thread": 27 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 411562, + "thread": 2 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 578729, + "thread": 24 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 784065, + "thread": 30 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 850828, + "thread": 12 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1017507, + "thread": 31 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1164464, + "thread": 9 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1331900, + "thread": 25 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1601408, + "thread": 11 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1802561, + "thread": 26 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 1832979, + "thread": 23 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2082210, + "thread": 13 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2208752, + "thread": 16 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2418582, + "thread": 23 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2622551, + "thread": 3 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2662512, + "thread": 28 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 2873034, + "thread": 31 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 3065508, + "thread": 5 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 3167423, + "thread": 21 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 3367559, + "thread": 10 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 3552918, + "thread": 0 + } + }, + { + "amount": "417.085452477", + "slot": { + "period": 3698563, + "thread": 11 + } + }, + { + "amount": "417.085452473", + "slot": { + "period": 3855673, + "thread": 16 + } + } + ], + "AU12i54agggSMjgz23EooZSWVEQ5SrFnZV5HVAx8jDkW2DCHNy6kV": [ + { + "amount": "59.610005275", + "slot": { + "period": 46398, + "thread": 8 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 190999, + "thread": 4 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 434381, + "thread": 10 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 535460, + "thread": 7 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 690075, + "thread": 24 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 915411, + "thread": 25 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1103716, + "thread": 13 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1153972, + "thread": 31 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1407585, + "thread": 24 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1597779, + "thread": 20 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1743236, + "thread": 6 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 1932544, + "thread": 18 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2044725, + "thread": 29 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2247480, + "thread": 23 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2399088, + "thread": 17 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2607947, + "thread": 8 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2664012, + "thread": 9 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2891127, + "thread": 8 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 2990408, + "thread": 29 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 3123354, + "thread": 9 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 3424744, + "thread": 13 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 3556775, + "thread": 21 + } + }, + { + "amount": "59.610005275", + "slot": { + "period": 3702990, + "thread": 12 + } + }, + { + "amount": "59.610005265", + "slot": { + "period": 3914424, + "thread": 23 + } + } + ], + "AU12i7AbGvXGUThYEZK6wGBxEeb1HmcwHwjpywtchgJqoWZXzBk4F": [ + { + "amount": "551.922014406", + "slot": { + "period": 54655, + "thread": 2 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 294606, + "thread": 1 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 333037, + "thread": 26 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 634270, + "thread": 2 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 679026, + "thread": 30 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 925795, + "thread": 11 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1044266, + "thread": 3 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1302847, + "thread": 2 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1424668, + "thread": 28 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1602385, + "thread": 6 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1767333, + "thread": 31 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1894482, + "thread": 17 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 1978616, + "thread": 4 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 2218833, + "thread": 6 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 2450284, + "thread": 22 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 2606888, + "thread": 22 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 2703923, + "thread": 5 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 2806405, + "thread": 30 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 3084675, + "thread": 6 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 3172042, + "thread": 13 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 3382177, + "thread": 24 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 3609703, + "thread": 4 + } + }, + { + "amount": "551.922014406", + "slot": { + "period": 3625045, + "thread": 15 + } + }, + { + "amount": "551.922014418", + "slot": { + "period": 3827783, + "thread": 9 + } + } + ], + "AU12i7tEgFWXNdSvmNRhuCChydrFG2GLboB49WztjRAsJzM7PLzAn": [ + { + "amount": "153.057573298", + "slot": { + "period": 92003, + "thread": 27 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 167718, + "thread": 24 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 473747, + "thread": 21 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 518299, + "thread": 6 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 658166, + "thread": 23 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 943022, + "thread": 20 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1052286, + "thread": 8 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1214979, + "thread": 27 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1459577, + "thread": 12 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1646683, + "thread": 9 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1730869, + "thread": 20 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 1818943, + "thread": 20 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2102691, + "thread": 28 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2192618, + "thread": 22 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2424205, + "thread": 10 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2575298, + "thread": 25 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2770459, + "thread": 8 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 2951464, + "thread": 6 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 3079885, + "thread": 6 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 3246946, + "thread": 9 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 3448195, + "thread": 3 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 3587087, + "thread": 8 + } + }, + { + "amount": "153.057573298", + "slot": { + "period": 3652147, + "thread": 27 + } + }, + { + "amount": "153.057573300", + "slot": { + "period": 3906318, + "thread": 17 + } + } + ], + "AU12i8YR1PMZivQ2Ue9HoZ9KcA1QzzYExVVWkFhBqpPdNuQd9uyfc": [ + { + "amount": "52.086667746", + "slot": { + "period": 136279, + "thread": 26 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 187841, + "thread": 25 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 428073, + "thread": 18 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 610205, + "thread": 30 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 785052, + "thread": 7 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 922891, + "thread": 11 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1142183, + "thread": 23 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1212925, + "thread": 13 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1384229, + "thread": 10 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1593425, + "thread": 14 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1682434, + "thread": 12 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 1921848, + "thread": 5 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2019822, + "thread": 6 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2290450, + "thread": 12 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2415678, + "thread": 29 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2623312, + "thread": 21 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2723437, + "thread": 0 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 2836120, + "thread": 26 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 3042549, + "thread": 7 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 3181938, + "thread": 4 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 3324086, + "thread": 17 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 3567923, + "thread": 12 + } + }, + { + "amount": "52.086667746", + "slot": { + "period": 3747121, + "thread": 4 + } + }, + { + "amount": "52.086667738", + "slot": { + "period": 3823979, + "thread": 27 + } + } + ], + "AU12i9NSQZhSNpaGkjRFLCyFNUW6piEUXEkZn9QN6PqHPWj1JA7MW": [ + { + "amount": "107.920006770", + "slot": { + "period": 76333, + "thread": 4 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 182757, + "thread": 3 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 367203, + "thread": 29 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 625054, + "thread": 22 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 729142, + "thread": 31 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 969928, + "thread": 30 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1117143, + "thread": 8 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1241815, + "thread": 19 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1355772, + "thread": 21 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1567511, + "thread": 26 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1655994, + "thread": 11 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 1832525, + "thread": 20 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2047745, + "thread": 14 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2259426, + "thread": 2 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2339844, + "thread": 21 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2507439, + "thread": 8 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2758650, + "thread": 9 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 2812621, + "thread": 3 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 3044363, + "thread": 27 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 3224859, + "thread": 13 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 3334040, + "thread": 20 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 3539053, + "thread": 9 + } + }, + { + "amount": "107.920006770", + "slot": { + "period": 3698766, + "thread": 3 + } + }, + { + "amount": "107.920006768", + "slot": { + "period": 3915514, + "thread": 27 + } + } + ], + "AU12i9eX3zB8JytHXYnBmcLtAg12gnGcykrGGJ7zMyhbBiKy2UZfw": [ + { + "amount": "71.208553814", + "slot": { + "period": 34193, + "thread": 1 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 177738, + "thread": 9 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 428461, + "thread": 11 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 535572, + "thread": 8 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 791238, + "thread": 16 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 932332, + "thread": 7 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1040201, + "thread": 0 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1152155, + "thread": 21 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1366285, + "thread": 4 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1538815, + "thread": 17 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1753378, + "thread": 0 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 1843402, + "thread": 7 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2046375, + "thread": 22 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2235780, + "thread": 0 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2421553, + "thread": 18 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2558058, + "thread": 9 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2746857, + "thread": 24 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 2870512, + "thread": 3 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 3067323, + "thread": 5 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 3211364, + "thread": 30 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 3435064, + "thread": 15 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 3571241, + "thread": 2 + } + }, + { + "amount": "71.208553814", + "slot": { + "period": 3669489, + "thread": 1 + } + }, + { + "amount": "71.208553819", + "slot": { + "period": 3905340, + "thread": 1 + } + } + ], + "AU12iA1n5p7TR9koNikUcgDsY3Dyq6qzEpHfbEmQZabnQ12iNifcn": [ + { + "amount": "373.498588019", + "slot": { + "period": 95091, + "thread": 13 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 317042, + "thread": 5 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 394900, + "thread": 3 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 587500, + "thread": 10 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 757874, + "thread": 16 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 973034, + "thread": 17 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 990261, + "thread": 19 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 1197726, + "thread": 9 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 1348515, + "thread": 4 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 1495522, + "thread": 18 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 1700405, + "thread": 2 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 1861744, + "thread": 29 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2084472, + "thread": 3 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2221900, + "thread": 26 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2373172, + "thread": 22 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2496579, + "thread": 5 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2706010, + "thread": 21 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 2823391, + "thread": 31 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 3039555, + "thread": 12 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 3234686, + "thread": 10 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 3337778, + "thread": 2 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 3527382, + "thread": 15 + } + }, + { + "amount": "373.498588019", + "slot": { + "period": 3665497, + "thread": 30 + } + }, + { + "amount": "373.498588018", + "slot": { + "period": 3868990, + "thread": 8 + } + } + ], + "AU12iA6YkKW5S78HKoB7aiU8HgrQ7nuE1kztmj2J7R21W53xijzd2": [ + { + "amount": "165.547939164", + "slot": { + "period": 40621, + "thread": 3 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 191655, + "thread": 1 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 408472, + "thread": 8 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 541708, + "thread": 19 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 804494, + "thread": 21 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 974591, + "thread": 23 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1018157, + "thread": 15 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1313019, + "thread": 19 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1432948, + "thread": 16 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1480834, + "thread": 8 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1733644, + "thread": 23 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 1951115, + "thread": 17 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2136639, + "thread": 16 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2291594, + "thread": 17 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2421288, + "thread": 9 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2557213, + "thread": 2 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2707716, + "thread": 28 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 2935957, + "thread": 26 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 3039935, + "thread": 25 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 3228088, + "thread": 31 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 3393639, + "thread": 8 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 3609189, + "thread": 16 + } + }, + { + "amount": "165.547939164", + "slot": { + "period": 3776856, + "thread": 21 + } + }, + { + "amount": "165.547939168", + "slot": { + "period": 3909444, + "thread": 17 + } + } + ], + "AU12iAmnsP3ZF57PgvQvUBdPnfadcXaK2gsh3wXUwhvdr8fMfQufs": [ + { + "amount": "132.987785868", + "slot": { + "period": 49386, + "thread": 13 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 289494, + "thread": 26 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 385269, + "thread": 19 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 530298, + "thread": 28 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 757848, + "thread": 14 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 953834, + "thread": 19 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1044325, + "thread": 7 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1188499, + "thread": 28 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1369968, + "thread": 21 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1590432, + "thread": 10 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1710080, + "thread": 13 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 1944395, + "thread": 4 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2085131, + "thread": 29 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2169964, + "thread": 29 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2343852, + "thread": 6 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2493359, + "thread": 13 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2690041, + "thread": 0 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 2878258, + "thread": 19 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 3035853, + "thread": 24 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 3251830, + "thread": 12 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 3307862, + "thread": 23 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 3496482, + "thread": 13 + } + }, + { + "amount": "132.987785868", + "slot": { + "period": 3694530, + "thread": 15 + } + }, + { + "amount": "132.987785869", + "slot": { + "period": 3833343, + "thread": 14 + } + } + ], + "AU12iCcBqZZHoYZXmqqVVZw7GFzbnioo6S5prmQtFEQ1dT1TLb36z": [ + { + "amount": "208.981536029", + "slot": { + "period": 69735, + "thread": 11 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 280550, + "thread": 24 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 356670, + "thread": 12 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 508109, + "thread": 15 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 706680, + "thread": 13 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 828527, + "thread": 9 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1039429, + "thread": 22 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1175054, + "thread": 20 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1379537, + "thread": 3 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1552656, + "thread": 0 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1657611, + "thread": 31 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 1936158, + "thread": 24 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2095006, + "thread": 22 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2280705, + "thread": 4 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2376532, + "thread": 8 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2538903, + "thread": 1 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2769329, + "thread": 17 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2926363, + "thread": 14 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 2966002, + "thread": 27 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 3237537, + "thread": 10 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 3356160, + "thread": 20 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 3489830, + "thread": 6 + } + }, + { + "amount": "208.981536029", + "slot": { + "period": 3714485, + "thread": 0 + } + }, + { + "amount": "208.981536030", + "slot": { + "period": 3941307, + "thread": 25 + } + } + ], + "AU12iCvoDLVaEuCaRCHZGNHmPGyWqFxJ4WL16gXVMCJNYPctEEPn": [ + { + "amount": "372.177635989", + "slot": { + "period": 94882, + "thread": 4 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 190075, + "thread": 7 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 435843, + "thread": 8 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 595451, + "thread": 15 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 667473, + "thread": 12 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 911508, + "thread": 27 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1046319, + "thread": 6 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1175684, + "thread": 22 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1477636, + "thread": 7 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1526902, + "thread": 8 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1770949, + "thread": 12 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 1820761, + "thread": 16 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2051807, + "thread": 2 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2156904, + "thread": 15 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2305730, + "thread": 12 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2587538, + "thread": 2 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2658774, + "thread": 17 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 2862117, + "thread": 16 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 3094980, + "thread": 0 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 3237196, + "thread": 6 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 3355562, + "thread": 29 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 3557035, + "thread": 2 + } + }, + { + "amount": "372.177635989", + "slot": { + "period": 3644263, + "thread": 13 + } + }, + { + "amount": "372.177635998", + "slot": { + "period": 3785025, + "thread": 21 + } + } + ], + "AU12iENxdEBuTERJJiUFMh1Han5P4tcZb7Y4Z7vbsxCU44F3Gfhx3": [ + { + "amount": "119.320636174", + "slot": { + "period": 126003, + "thread": 29 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 209275, + "thread": 31 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 369886, + "thread": 17 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 639239, + "thread": 28 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 713452, + "thread": 26 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 875758, + "thread": 23 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1111558, + "thread": 11 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1249966, + "thread": 10 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1388361, + "thread": 7 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1498634, + "thread": 0 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1762674, + "thread": 24 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 1848468, + "thread": 16 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2060003, + "thread": 30 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2193933, + "thread": 12 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2388644, + "thread": 30 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2564762, + "thread": 8 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2660006, + "thread": 5 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 2951535, + "thread": 26 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 3018045, + "thread": 11 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 3248342, + "thread": 13 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 3436316, + "thread": 29 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 3506170, + "thread": 10 + } + }, + { + "amount": "119.320636174", + "slot": { + "period": 3657856, + "thread": 8 + } + }, + { + "amount": "119.320636163", + "slot": { + "period": 3945320, + "thread": 28 + } + } + ], + "AU12iEojGHgtA2tufBFM3hyTcpGuu5WzLR2LthmdZWuLgxgyV1xPK": [ + { + "amount": "124.744647258", + "slot": { + "period": 79819, + "thread": 9 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 215937, + "thread": 25 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 444484, + "thread": 31 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 633264, + "thread": 18 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 769984, + "thread": 8 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 851047, + "thread": 13 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1080795, + "thread": 19 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1259754, + "thread": 7 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1452884, + "thread": 5 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1543325, + "thread": 22 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1662003, + "thread": 2 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 1959132, + "thread": 31 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2015221, + "thread": 11 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2221022, + "thread": 26 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2358211, + "thread": 10 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2608099, + "thread": 7 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2650525, + "thread": 11 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2850212, + "thread": 22 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 2996430, + "thread": 30 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 3159006, + "thread": 2 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 3365993, + "thread": 16 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 3532975, + "thread": 7 + } + }, + { + "amount": "124.744647258", + "slot": { + "period": 3774725, + "thread": 13 + } + }, + { + "amount": "124.744647269", + "slot": { + "period": 3833386, + "thread": 25 + } + } + ], + "AU12iF57SXfC9mn4BJ895TXypbz5op7dWouEYmt7HkQAePmX5wSVH": [ + { + "amount": "75.070581282", + "slot": { + "period": 107123, + "thread": 17 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 299808, + "thread": 4 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 463195, + "thread": 6 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 620078, + "thread": 23 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 666494, + "thread": 6 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 902926, + "thread": 27 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1072283, + "thread": 3 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1269994, + "thread": 5 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1423089, + "thread": 3 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1615881, + "thread": 7 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1779272, + "thread": 20 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 1847614, + "thread": 31 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2036127, + "thread": 4 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2282541, + "thread": 11 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2335410, + "thread": 7 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2523121, + "thread": 26 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2639056, + "thread": 7 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 2928110, + "thread": 3 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 3054903, + "thread": 6 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 3189523, + "thread": 4 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 3295898, + "thread": 27 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 3516989, + "thread": 15 + } + }, + { + "amount": "75.070581282", + "slot": { + "period": 3734502, + "thread": 12 + } + }, + { + "amount": "75.070581273", + "slot": { + "period": 3796387, + "thread": 12 + } + } + ], + "AU12iFGDe2UCeuc7Wo5kAMYhfMk4woESeiLWewc41P74aAMbAHBw9": [ + { + "amount": "250.293236597", + "slot": { + "period": 55829, + "thread": 23 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 230208, + "thread": 11 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 357850, + "thread": 6 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 500129, + "thread": 7 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 690102, + "thread": 2 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 862946, + "thread": 28 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1096814, + "thread": 11 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1217009, + "thread": 31 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1472085, + "thread": 9 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1485500, + "thread": 8 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1678622, + "thread": 9 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 1886091, + "thread": 2 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2033285, + "thread": 1 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2214811, + "thread": 19 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2424039, + "thread": 17 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2520854, + "thread": 6 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2769276, + "thread": 25 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 2822790, + "thread": 28 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 3005359, + "thread": 7 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 3264485, + "thread": 6 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 3303912, + "thread": 23 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 3605475, + "thread": 19 + } + }, + { + "amount": "250.293236597", + "slot": { + "period": 3765079, + "thread": 0 + } + }, + { + "amount": "250.293236588", + "slot": { + "period": 3939458, + "thread": 23 + } + } + ], + "AU12iFfLXYGrnrAjiieXV5kNxzuhA6voarUDTPp7szyFPzEsm6CHo": [ + { + "amount": "204.857632020", + "slot": { + "period": 83083, + "thread": 5 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 323413, + "thread": 3 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 343249, + "thread": 3 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 584477, + "thread": 25 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 736404, + "thread": 31 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 857873, + "thread": 9 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 998348, + "thread": 27 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1223196, + "thread": 4 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1348161, + "thread": 17 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1559973, + "thread": 16 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1746666, + "thread": 26 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1960193, + "thread": 5 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 1992353, + "thread": 17 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 2293648, + "thread": 5 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 2413765, + "thread": 3 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 2581526, + "thread": 29 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 2659168, + "thread": 10 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 2807746, + "thread": 26 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 3070001, + "thread": 19 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 3264957, + "thread": 23 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 3424077, + "thread": 12 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 3532700, + "thread": 18 + } + }, + { + "amount": "204.857632020", + "slot": { + "period": 3633419, + "thread": 18 + } + }, + { + "amount": "204.857632027", + "slot": { + "period": 3905536, + "thread": 0 + } + } + ], + "AU12iFo6Qq9GHA3j8zvNPBEwew7VtyKKmJJseGqr8zJRXqV5U7kca": [ + { + "amount": "627.219763493", + "slot": { + "period": 115525, + "thread": 4 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 295961, + "thread": 26 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 484778, + "thread": 17 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 492359, + "thread": 4 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 763680, + "thread": 10 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 849459, + "thread": 31 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1130643, + "thread": 3 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1296959, + "thread": 4 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1407684, + "thread": 0 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1521652, + "thread": 6 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1711915, + "thread": 3 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1918425, + "thread": 8 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 1983625, + "thread": 27 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 2199109, + "thread": 3 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 2324630, + "thread": 17 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 2512711, + "thread": 2 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 2755621, + "thread": 3 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 2859891, + "thread": 31 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 3055931, + "thread": 2 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 3264020, + "thread": 2 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 3325242, + "thread": 7 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 3543756, + "thread": 0 + } + }, + { + "amount": "627.219763493", + "slot": { + "period": 3708297, + "thread": 0 + } + }, + { + "amount": "627.219763501", + "slot": { + "period": 3842737, + "thread": 20 + } + } + ], + "AU12iGirJH1n1oRX7kybNw5LFzNf5wQsnf2w4qkhf1iVNRPeJ1vgj": [ + { + "amount": "214.787014179", + "slot": { + "period": 20559, + "thread": 22 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 309013, + "thread": 8 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 371593, + "thread": 1 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 528602, + "thread": 11 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 703368, + "thread": 27 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 947238, + "thread": 2 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1098243, + "thread": 27 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1222411, + "thread": 26 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1438696, + "thread": 7 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1596083, + "thread": 1 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1737751, + "thread": 8 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 1884831, + "thread": 22 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2070737, + "thread": 20 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2209503, + "thread": 12 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2369872, + "thread": 4 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2602290, + "thread": 11 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2738239, + "thread": 0 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2868471, + "thread": 10 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 2995712, + "thread": 31 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 3241488, + "thread": 14 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 3385613, + "thread": 13 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 3477713, + "thread": 19 + } + }, + { + "amount": "214.787014179", + "slot": { + "period": 3724446, + "thread": 7 + } + }, + { + "amount": "214.787014177", + "slot": { + "period": 3874961, + "thread": 5 + } + } + ], + "AU12iH67xBrzKqNqQsgDr1qd6TorYsPhhrY9gqXqgJJaYJv7P8WqM": [ + { + "amount": "58.456698073", + "slot": { + "period": 56756, + "thread": 18 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 247957, + "thread": 20 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 408779, + "thread": 11 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 533415, + "thread": 26 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 672488, + "thread": 24 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 876145, + "thread": 1 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1095247, + "thread": 6 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1242634, + "thread": 16 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1442814, + "thread": 0 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1509260, + "thread": 31 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1771711, + "thread": 11 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1951395, + "thread": 17 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 1999319, + "thread": 11 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 2290444, + "thread": 9 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 2352703, + "thread": 5 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 2466631, + "thread": 12 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 2640574, + "thread": 9 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 2796141, + "thread": 20 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 3042693, + "thread": 28 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 3136787, + "thread": 30 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 3332144, + "thread": 7 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 3484822, + "thread": 24 + } + }, + { + "amount": "58.456698073", + "slot": { + "period": 3776460, + "thread": 10 + } + }, + { + "amount": "58.456698084", + "slot": { + "period": 3816014, + "thread": 20 + } + } + ], + "AU12iHdeNVS3rXkdwptgv4xiwF69atZH3qETNC12DGjcsHdfCG4JM": [ + { + "amount": "134.242163728", + "slot": { + "period": 116495, + "thread": 30 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 209769, + "thread": 29 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 363053, + "thread": 30 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 588510, + "thread": 4 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 708594, + "thread": 12 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 841630, + "thread": 4 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1047486, + "thread": 22 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1169173, + "thread": 1 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1386797, + "thread": 22 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1590147, + "thread": 17 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1750182, + "thread": 9 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 1897995, + "thread": 14 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2033626, + "thread": 16 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2217172, + "thread": 30 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2360370, + "thread": 23 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2470683, + "thread": 1 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2728238, + "thread": 26 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 2840328, + "thread": 1 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 3017833, + "thread": 0 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 3281621, + "thread": 3 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 3416094, + "thread": 26 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 3548722, + "thread": 14 + } + }, + { + "amount": "134.242163728", + "slot": { + "period": 3652481, + "thread": 18 + } + }, + { + "amount": "134.242163729", + "slot": { + "period": 3944687, + "thread": 28 + } + } + ], + "AU12iJFEypZyyUgqwZYMeGVqc7vZtswAPwcGifV11hkvCGz6nQXGy": [ + { + "amount": "120.268392237", + "slot": { + "period": 163074, + "thread": 8 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 302605, + "thread": 27 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 420632, + "thread": 26 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 607355, + "thread": 25 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 778436, + "thread": 22 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 839497, + "thread": 14 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1020525, + "thread": 26 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1293914, + "thread": 0 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1345517, + "thread": 11 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1571830, + "thread": 30 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1737099, + "thread": 20 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 1885163, + "thread": 27 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2082045, + "thread": 12 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2219325, + "thread": 17 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2369225, + "thread": 9 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2582687, + "thread": 14 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2729872, + "thread": 14 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2813829, + "thread": 1 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 2977488, + "thread": 23 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 3179484, + "thread": 5 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 3408097, + "thread": 3 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 3599181, + "thread": 26 + } + }, + { + "amount": "120.268392237", + "slot": { + "period": 3768050, + "thread": 25 + } + }, + { + "amount": "120.268392233", + "slot": { + "period": 3928266, + "thread": 17 + } + } + ], + "AU12iJQrWtms9W8U6aFAwTNRhvM37ZAybteabcjfVn3BwzrXPbqwE": [ + { + "amount": "236.516979631", + "slot": { + "period": 28663, + "thread": 12 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 212192, + "thread": 17 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 449146, + "thread": 13 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 493524, + "thread": 1 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 770166, + "thread": 21 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 866244, + "thread": 22 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1137371, + "thread": 28 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1191931, + "thread": 20 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1465633, + "thread": 5 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1528933, + "thread": 1 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1668623, + "thread": 7 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1846922, + "thread": 29 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 1979632, + "thread": 14 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2254321, + "thread": 7 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2396076, + "thread": 18 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2622038, + "thread": 5 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2715234, + "thread": 13 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2894614, + "thread": 21 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 2964486, + "thread": 22 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 3201344, + "thread": 2 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 3351732, + "thread": 7 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 3493492, + "thread": 1 + } + }, + { + "amount": "236.516979631", + "slot": { + "period": 3660116, + "thread": 26 + } + }, + { + "amount": "236.516979630", + "slot": { + "period": 3879878, + "thread": 3 + } + } + ], + "AU12iKCAidMAhudXHgw5jJNXBbLy4EtnSE9K3DiEBLU5VQpiwYE3h": [ + { + "amount": "52.180909915", + "slot": { + "period": 11527, + "thread": 20 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 230286, + "thread": 25 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 413302, + "thread": 3 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 600053, + "thread": 22 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 682595, + "thread": 16 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 911835, + "thread": 10 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1041307, + "thread": 26 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1300813, + "thread": 27 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1416273, + "thread": 24 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1546626, + "thread": 27 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1677042, + "thread": 7 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 1973137, + "thread": 10 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2024694, + "thread": 25 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2258217, + "thread": 26 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2310803, + "thread": 13 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2552244, + "thread": 31 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2765418, + "thread": 25 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2885524, + "thread": 10 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 2976866, + "thread": 26 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 3121238, + "thread": 11 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 3301735, + "thread": 11 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 3558082, + "thread": 18 + } + }, + { + "amount": "52.180909915", + "slot": { + "period": 3637365, + "thread": 30 + } + }, + { + "amount": "52.180909916", + "slot": { + "period": 3923169, + "thread": 11 + } + } + ], + "AU12iKL6Aica5K7UfnVNwfQVknU2ndCCPCrUUjaWPgdrpSRmpEXim": [ + { + "amount": "192.183819950", + "slot": { + "period": 81889, + "thread": 14 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 281444, + "thread": 30 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 345028, + "thread": 0 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 560600, + "thread": 20 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 712737, + "thread": 20 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 967426, + "thread": 29 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1019301, + "thread": 25 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1252613, + "thread": 7 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1324936, + "thread": 6 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1611752, + "thread": 13 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1719577, + "thread": 20 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 1880307, + "thread": 16 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2136166, + "thread": 25 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2183133, + "thread": 24 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2397341, + "thread": 3 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2616201, + "thread": 24 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2706542, + "thread": 22 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 2801520, + "thread": 5 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 3044590, + "thread": 11 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 3187481, + "thread": 20 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 3357396, + "thread": 22 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 3465366, + "thread": 24 + } + }, + { + "amount": "192.183819950", + "slot": { + "period": 3745001, + "thread": 19 + } + }, + { + "amount": "192.183819962", + "slot": { + "period": 3802444, + "thread": 29 + } + } + ], + "AU12iLE5YVw2a2FFFrvayfCyuMcLZfi7raNS3fBhmm5EfnDT5FY6M": [ + { + "amount": "452.913495770", + "slot": { + "period": 52387, + "thread": 28 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 262971, + "thread": 15 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 462820, + "thread": 31 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 627505, + "thread": 25 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 692006, + "thread": 15 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 973957, + "thread": 17 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1140365, + "thread": 16 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1170680, + "thread": 4 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1354719, + "thread": 30 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1521372, + "thread": 19 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1690020, + "thread": 13 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1915329, + "thread": 21 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 1990185, + "thread": 21 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 2248748, + "thread": 28 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 2404343, + "thread": 4 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 2600906, + "thread": 14 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 2754347, + "thread": 3 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 2918994, + "thread": 9 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 3054592, + "thread": 15 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 3260283, + "thread": 20 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 3365505, + "thread": 14 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 3570940, + "thread": 0 + } + }, + { + "amount": "452.913495770", + "slot": { + "period": 3715365, + "thread": 24 + } + }, + { + "amount": "452.913495776", + "slot": { + "period": 3922978, + "thread": 28 + } + } + ], + "AU12iLa7uKu8exc6fWMfHkR8soUP9WMHCaaSYMs9wWoZ6GddkQvtU": [ + { + "amount": "102.909760101", + "slot": { + "period": 71319, + "thread": 0 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 235050, + "thread": 11 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 338965, + "thread": 9 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 568242, + "thread": 21 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 667387, + "thread": 17 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 828204, + "thread": 13 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1010935, + "thread": 0 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1282869, + "thread": 30 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1461295, + "thread": 2 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1625052, + "thread": 12 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1736666, + "thread": 1 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 1881383, + "thread": 31 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2037619, + "thread": 0 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2154942, + "thread": 23 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2354706, + "thread": 19 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2475272, + "thread": 8 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2694219, + "thread": 17 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 2801260, + "thread": 31 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 3001538, + "thread": 24 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 3240509, + "thread": 2 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 3322392, + "thread": 16 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 3603610, + "thread": 17 + } + }, + { + "amount": "102.909760101", + "slot": { + "period": 3706977, + "thread": 16 + } + }, + { + "amount": "102.909760102", + "slot": { + "period": 3818960, + "thread": 1 + } + } + ], + "AU12iM2NLuTMLSVRxDtVwNXeCAjaJTBemNfYaJjmWoQLAGzmqoSyK": [ + { + "amount": "173.674735704", + "slot": { + "period": 86382, + "thread": 0 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 178932, + "thread": 6 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 422636, + "thread": 23 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 582934, + "thread": 28 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 758734, + "thread": 24 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 916212, + "thread": 3 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1036141, + "thread": 20 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1156454, + "thread": 22 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1320218, + "thread": 2 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1585175, + "thread": 17 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1806125, + "thread": 3 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 1946532, + "thread": 20 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2020582, + "thread": 17 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2215298, + "thread": 1 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2423003, + "thread": 11 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2562274, + "thread": 24 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2636806, + "thread": 24 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2863798, + "thread": 18 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 2975135, + "thread": 1 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 3158079, + "thread": 13 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 3431748, + "thread": 8 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 3572871, + "thread": 5 + } + }, + { + "amount": "173.674735704", + "slot": { + "period": 3742728, + "thread": 10 + } + }, + { + "amount": "173.674735696", + "slot": { + "period": 3894894, + "thread": 25 + } + } + ], + "AU12iPhkcrr56nRG6RuneSweJRdjhiKxoMdDVWcJdeazqoYG9xqqo": [ + { + "amount": "107.129440131", + "slot": { + "period": 102619, + "thread": 8 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 227927, + "thread": 24 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 326103, + "thread": 5 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 631819, + "thread": 22 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 784633, + "thread": 4 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 957675, + "thread": 6 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1105043, + "thread": 7 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1301142, + "thread": 15 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1360385, + "thread": 16 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1636108, + "thread": 26 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1691170, + "thread": 6 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1849917, + "thread": 10 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 1977269, + "thread": 12 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 2222524, + "thread": 13 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 2322389, + "thread": 1 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 2533485, + "thread": 26 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 2674786, + "thread": 29 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 2899969, + "thread": 17 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 3034083, + "thread": 22 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 3220964, + "thread": 15 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 3381476, + "thread": 8 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 3522094, + "thread": 27 + } + }, + { + "amount": "107.129440131", + "slot": { + "period": 3755025, + "thread": 19 + } + }, + { + "amount": "107.129440128", + "slot": { + "period": 3799470, + "thread": 8 + } + } + ], + "AU12iQ96a97tBzawQ8XHmiRBdVKrGd9oKfEqXoM8wRLHLdUCXherk": [ + { + "amount": "470.104631103", + "slot": { + "period": 20440, + "thread": 30 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 219640, + "thread": 31 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 365930, + "thread": 16 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 507631, + "thread": 23 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 661488, + "thread": 8 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 875329, + "thread": 25 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1046952, + "thread": 30 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1204702, + "thread": 9 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1431097, + "thread": 16 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1542877, + "thread": 28 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1807387, + "thread": 23 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 1941173, + "thread": 19 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2015954, + "thread": 24 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2225942, + "thread": 19 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2341649, + "thread": 6 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2491703, + "thread": 29 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2643473, + "thread": 11 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 2853126, + "thread": 29 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 3062063, + "thread": 17 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 3235350, + "thread": 29 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 3366433, + "thread": 19 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 3518659, + "thread": 2 + } + }, + { + "amount": "470.104631103", + "slot": { + "period": 3767911, + "thread": 3 + } + }, + { + "amount": "470.104631107", + "slot": { + "period": 3821268, + "thread": 16 + } + } + ], + "AU12iRU92Jyi8kisZJt72bVwEhTVbGNeBkjP42n41hY9G6gz5xJjn": [ + { + "amount": "244.292561155", + "slot": { + "period": 153794, + "thread": 4 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 170099, + "thread": 25 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 332044, + "thread": 12 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 518854, + "thread": 23 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 755584, + "thread": 30 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 843505, + "thread": 8 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1115769, + "thread": 2 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1199670, + "thread": 30 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1397394, + "thread": 23 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1504437, + "thread": 20 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1735070, + "thread": 29 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1916018, + "thread": 6 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 1996514, + "thread": 18 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 2211948, + "thread": 17 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 2360085, + "thread": 21 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 2550636, + "thread": 23 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 2658941, + "thread": 1 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 2892139, + "thread": 12 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 3083411, + "thread": 17 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 3260122, + "thread": 30 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 3309052, + "thread": 7 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 3477911, + "thread": 24 + } + }, + { + "amount": "244.292561155", + "slot": { + "period": 3668016, + "thread": 2 + } + }, + { + "amount": "244.292561152", + "slot": { + "period": 3825503, + "thread": 0 + } + } + ], + "AU12iS6JSYWh2n87C43nR19yv8zrwcVoswPZbkbf7etigZNxdBSE4": [ + { + "amount": "198.937586745", + "slot": { + "period": 124248, + "thread": 22 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 203248, + "thread": 2 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 451519, + "thread": 7 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 552376, + "thread": 19 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 666387, + "thread": 26 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 911471, + "thread": 3 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1119000, + "thread": 14 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1189375, + "thread": 0 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1410171, + "thread": 25 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1600562, + "thread": 27 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1715645, + "thread": 21 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 1958863, + "thread": 16 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2123477, + "thread": 23 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2281979, + "thread": 4 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2308427, + "thread": 6 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2468529, + "thread": 29 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2719378, + "thread": 8 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 2802937, + "thread": 14 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 3120372, + "thread": 29 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 3164887, + "thread": 3 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 3423033, + "thread": 20 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 3507572, + "thread": 9 + } + }, + { + "amount": "198.937586745", + "slot": { + "period": 3729089, + "thread": 14 + } + }, + { + "amount": "198.937586742", + "slot": { + "period": 3859655, + "thread": 24 + } + } + ], + "AU12iSxeY7MNpXBGCZ4EXqtK5gvffgfrQ7k4eewFrSgoHZ6ZfTmCL": [ + { + "amount": "222.517592537", + "slot": { + "period": 61755, + "thread": 14 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 224009, + "thread": 26 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 458505, + "thread": 26 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 599305, + "thread": 24 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 804623, + "thread": 17 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 947960, + "thread": 20 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1089358, + "thread": 12 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1181640, + "thread": 20 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1422902, + "thread": 22 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1540652, + "thread": 3 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1711028, + "thread": 9 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 1966230, + "thread": 17 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2128449, + "thread": 5 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2252963, + "thread": 16 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2401915, + "thread": 29 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2539184, + "thread": 21 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2785810, + "thread": 25 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2953461, + "thread": 16 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 2984557, + "thread": 18 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 3146227, + "thread": 15 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 3415339, + "thread": 7 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 3560579, + "thread": 2 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 3687907, + "thread": 25 + } + }, + { + "amount": "222.517592537", + "slot": { + "period": 3787180, + "thread": 8 + } + } + ], + "AU12iUbdZsn2quec4iFYo9nW2QGv1BigKTsxnqWJHYmfwXGUPuApt": [ + { + "amount": "247.411319439", + "slot": { + "period": 132009, + "thread": 5 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 194318, + "thread": 28 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 421394, + "thread": 19 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 538608, + "thread": 9 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 671012, + "thread": 6 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 913815, + "thread": 5 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 993218, + "thread": 17 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 1191094, + "thread": 9 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 1343640, + "thread": 6 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 1620950, + "thread": 17 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 1698887, + "thread": 30 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 1938587, + "thread": 0 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2103365, + "thread": 26 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2190838, + "thread": 21 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2359187, + "thread": 4 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2515943, + "thread": 6 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2727855, + "thread": 19 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 2854784, + "thread": 7 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 3017171, + "thread": 21 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 3247664, + "thread": 7 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 3335270, + "thread": 11 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 3520282, + "thread": 12 + } + }, + { + "amount": "247.411319439", + "slot": { + "period": 3665949, + "thread": 18 + } + }, + { + "amount": "247.411319431", + "slot": { + "period": 3815240, + "thread": 31 + } + } + ], + "AU12iVAUGBjr4FChe3GhM7epZYKjRduC9fwdbwKdBc7hR9FXFHDBp": [ + { + "amount": "410.230646952", + "slot": { + "period": 48823, + "thread": 31 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 255212, + "thread": 18 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 371431, + "thread": 19 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 615469, + "thread": 1 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 742728, + "thread": 4 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 844476, + "thread": 23 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 998176, + "thread": 11 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 1151907, + "thread": 1 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 1379466, + "thread": 26 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 1595149, + "thread": 20 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 1719924, + "thread": 2 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 1814170, + "thread": 9 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2110431, + "thread": 7 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2208009, + "thread": 0 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2360300, + "thread": 29 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2587830, + "thread": 31 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2707841, + "thread": 24 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 2885385, + "thread": 29 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 3102667, + "thread": 20 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 3185508, + "thread": 17 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 3345179, + "thread": 15 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 3495653, + "thread": 3 + } + }, + { + "amount": "410.230646952", + "slot": { + "period": 3656898, + "thread": 26 + } + }, + { + "amount": "410.230646961", + "slot": { + "period": 3908491, + "thread": 11 + } + } + ], + "AU12iWMpPZ4ZLfjs12E1P2esrvTtSA71rrtzUT8UXuooRKXS4r4RG": [ + { + "amount": "98.506054007", + "slot": { + "period": 22766, + "thread": 2 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 225933, + "thread": 30 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 339154, + "thread": 11 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 555984, + "thread": 12 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 796330, + "thread": 20 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 946700, + "thread": 26 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1100132, + "thread": 21 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1157540, + "thread": 29 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1334847, + "thread": 27 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1626962, + "thread": 5 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1804198, + "thread": 8 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 1901842, + "thread": 8 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2006938, + "thread": 14 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2179542, + "thread": 23 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2426894, + "thread": 12 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2548567, + "thread": 18 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2740040, + "thread": 19 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 2802121, + "thread": 21 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 3010842, + "thread": 29 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 3201932, + "thread": 8 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 3313244, + "thread": 15 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 3476532, + "thread": 12 + } + }, + { + "amount": "98.506054007", + "slot": { + "period": 3758987, + "thread": 9 + } + }, + { + "amount": "98.506053998", + "slot": { + "period": 3912506, + "thread": 25 + } + } + ], + "AU12iWPb7F9aDhAzNa2dWmLqTRQp9sFMrvWnZUx3q3uL2Znx9dzFP": [ + { + "amount": "462.447993387", + "slot": { + "period": 32201, + "thread": 17 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 190666, + "thread": 17 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 330798, + "thread": 4 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 624782, + "thread": 8 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 796282, + "thread": 25 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 851259, + "thread": 21 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1059076, + "thread": 8 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1289359, + "thread": 21 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1465043, + "thread": 21 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1593460, + "thread": 26 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1707956, + "thread": 11 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 1891984, + "thread": 27 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2044822, + "thread": 20 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2286114, + "thread": 23 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2347500, + "thread": 16 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2561523, + "thread": 5 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2694156, + "thread": 17 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2861641, + "thread": 11 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 2970997, + "thread": 6 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 3285019, + "thread": 1 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 3377724, + "thread": 10 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 3498645, + "thread": 5 + } + }, + { + "amount": "462.447993387", + "slot": { + "period": 3636902, + "thread": 17 + } + }, + { + "amount": "462.447993378", + "slot": { + "period": 3937736, + "thread": 9 + } + } + ], + "AU12iXUVS6bFhB9VSJJcsd1XcVhbzkDZ42jmbGPdGEv7ZhfFfW5Aq": [ + { + "amount": "280.988179719", + "slot": { + "period": 28144, + "thread": 22 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 244637, + "thread": 10 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 383924, + "thread": 16 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 540575, + "thread": 5 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 725926, + "thread": 19 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 883326, + "thread": 0 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1029601, + "thread": 29 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1192211, + "thread": 15 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1377389, + "thread": 11 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1528075, + "thread": 22 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1669284, + "thread": 0 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 1829675, + "thread": 26 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2029280, + "thread": 11 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2181344, + "thread": 18 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2315707, + "thread": 5 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2474730, + "thread": 1 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2714620, + "thread": 25 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2866774, + "thread": 1 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 2982566, + "thread": 6 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 3139981, + "thread": 3 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 3384282, + "thread": 9 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 3519675, + "thread": 4 + } + }, + { + "amount": "280.988179719", + "slot": { + "period": 3637958, + "thread": 8 + } + }, + { + "amount": "280.988179714", + "slot": { + "period": 3847211, + "thread": 25 + } + } + ], + "AU12iYf43xoyZA9ozpD7Mm4MrXPewACLBbcZ9i8KzyC5B68UXYZdB": [ + { + "amount": "59.463993727", + "slot": { + "period": 113989, + "thread": 15 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 279987, + "thread": 21 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 450448, + "thread": 12 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 624660, + "thread": 28 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 669714, + "thread": 10 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 878837, + "thread": 21 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1018942, + "thread": 29 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1238256, + "thread": 10 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1397739, + "thread": 23 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1613094, + "thread": 2 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1681598, + "thread": 12 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1811268, + "thread": 28 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 1980882, + "thread": 24 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2203585, + "thread": 9 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2359277, + "thread": 6 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2614437, + "thread": 6 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2693696, + "thread": 13 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2796487, + "thread": 3 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 2981809, + "thread": 20 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 3273350, + "thread": 17 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 3450443, + "thread": 21 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 3511949, + "thread": 4 + } + }, + { + "amount": "59.463993727", + "slot": { + "period": 3627391, + "thread": 24 + } + }, + { + "amount": "59.463993723", + "slot": { + "period": 3924806, + "thread": 27 + } + } + ], + "AU12iZuecqKdvmz5zF4gwgyDCaikvCJw8ajaMDTusMNywVDBFXcRT": [ + { + "amount": "315.238056975", + "slot": { + "period": 17387, + "thread": 22 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 203438, + "thread": 23 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 353174, + "thread": 10 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 608839, + "thread": 23 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 819471, + "thread": 24 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 972466, + "thread": 24 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1104688, + "thread": 15 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1291945, + "thread": 26 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1386550, + "thread": 13 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1596724, + "thread": 26 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1739107, + "thread": 24 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 1859907, + "thread": 8 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2061826, + "thread": 25 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2178594, + "thread": 21 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2416279, + "thread": 2 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2482113, + "thread": 9 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2778964, + "thread": 22 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2889454, + "thread": 27 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 2987944, + "thread": 12 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 3211261, + "thread": 7 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 3317651, + "thread": 23 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 3481682, + "thread": 13 + } + }, + { + "amount": "315.238056975", + "slot": { + "period": 3774057, + "thread": 0 + } + }, + { + "amount": "315.238056973", + "slot": { + "period": 3799576, + "thread": 3 + } + } + ], + "AU12iaNbvzqPxRvuDqDG3QWkvX1VjRoyZ3gQc2aDYR2Fs36CywR6q": [ + { + "amount": "363.797132980", + "slot": { + "period": 103215, + "thread": 16 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 284749, + "thread": 21 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 387902, + "thread": 7 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 558797, + "thread": 25 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 662152, + "thread": 30 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 822952, + "thread": 22 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1098000, + "thread": 23 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1243471, + "thread": 6 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1338549, + "thread": 9 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1560976, + "thread": 6 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1791764, + "thread": 7 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 1889646, + "thread": 10 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2113280, + "thread": 7 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2158218, + "thread": 11 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2395770, + "thread": 8 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2600318, + "thread": 8 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2692265, + "thread": 25 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 2940694, + "thread": 5 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 3006689, + "thread": 15 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 3143350, + "thread": 24 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 3335903, + "thread": 24 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 3495398, + "thread": 18 + } + }, + { + "amount": "363.797132980", + "slot": { + "period": 3685688, + "thread": 12 + } + }, + { + "amount": "363.797132981", + "slot": { + "period": 3911928, + "thread": 4 + } + } + ], + "AU12iaS2tYKmTiDo6g5pQ1sXY5TbLp9F7nGNrSti2KxfRf7qNFZEq": [ + { + "amount": "133.956348026", + "slot": { + "period": 48929, + "thread": 12 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 291340, + "thread": 10 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 434148, + "thread": 27 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 631712, + "thread": 14 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 671720, + "thread": 8 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 894879, + "thread": 21 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1142865, + "thread": 2 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1315840, + "thread": 6 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1469467, + "thread": 5 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1525155, + "thread": 11 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1767230, + "thread": 27 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 1892206, + "thread": 20 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2055612, + "thread": 4 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2228879, + "thread": 10 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2406358, + "thread": 17 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2506763, + "thread": 17 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2744185, + "thread": 8 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2852150, + "thread": 11 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 2963526, + "thread": 15 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 3185134, + "thread": 7 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 3330270, + "thread": 13 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 3575173, + "thread": 9 + } + }, + { + "amount": "133.956348026", + "slot": { + "period": 3690069, + "thread": 25 + } + }, + { + "amount": "133.956348016", + "slot": { + "period": 3819191, + "thread": 18 + } + } + ], + "AU12iaXke5ZoCtRtX7DLGoamEbqJ5RWfCNMJH3yVewjMGMJWsxvFf": [ + { + "amount": "192.188231566", + "slot": { + "period": 73201, + "thread": 24 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 215907, + "thread": 19 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 377405, + "thread": 9 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 608032, + "thread": 26 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 687166, + "thread": 2 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 977707, + "thread": 9 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1018291, + "thread": 31 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1260879, + "thread": 6 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1395282, + "thread": 29 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1508769, + "thread": 1 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1742617, + "thread": 8 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 1879386, + "thread": 22 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2029141, + "thread": 27 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2294558, + "thread": 24 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2368108, + "thread": 4 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2520200, + "thread": 19 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2789639, + "thread": 4 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 2842504, + "thread": 22 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 3027535, + "thread": 13 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 3211926, + "thread": 20 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 3316611, + "thread": 12 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 3452851, + "thread": 21 + } + }, + { + "amount": "192.188231566", + "slot": { + "period": 3740307, + "thread": 17 + } + }, + { + "amount": "192.188231574", + "slot": { + "period": 3916760, + "thread": 3 + } + } + ], + "AU12iaytWMFVkvg8c1dq5AdBQ3mQQakEk67eySjecMVXbFD3zaP5u": [ + { + "amount": "270.812764291", + "slot": { + "period": 22159, + "thread": 31 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 294301, + "thread": 20 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 424800, + "thread": 17 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 536710, + "thread": 20 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 705507, + "thread": 1 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 914643, + "thread": 30 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1003395, + "thread": 3 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1216794, + "thread": 30 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1358738, + "thread": 15 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1593860, + "thread": 21 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1653769, + "thread": 10 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1860043, + "thread": 13 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 1989383, + "thread": 21 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 2272935, + "thread": 8 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 2444241, + "thread": 11 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 2557972, + "thread": 20 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 2668920, + "thread": 20 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 2933002, + "thread": 5 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 3051558, + "thread": 28 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 3277977, + "thread": 21 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 3392554, + "thread": 24 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 3526593, + "thread": 25 + } + }, + { + "amount": "270.812764291", + "slot": { + "period": 3715132, + "thread": 23 + } + }, + { + "amount": "270.812764281", + "slot": { + "period": 3879207, + "thread": 4 + } + } + ], + "AU12ibJcYLMddYUqMDAM99HHD3QNTT4S2m7A8xXt9tisKhSFMhHQA": [ + { + "amount": "183.741823865", + "slot": { + "period": 160175, + "thread": 14 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 253311, + "thread": 6 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 477992, + "thread": 31 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 567025, + "thread": 20 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 707003, + "thread": 22 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 926538, + "thread": 24 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1019372, + "thread": 23 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1311418, + "thread": 20 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1406046, + "thread": 5 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1497335, + "thread": 26 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1726542, + "thread": 11 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 1970360, + "thread": 22 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2064047, + "thread": 27 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2206527, + "thread": 1 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2315036, + "thread": 6 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2570892, + "thread": 24 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2767102, + "thread": 17 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 2817260, + "thread": 2 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 3071407, + "thread": 22 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 3159221, + "thread": 11 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 3386007, + "thread": 24 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 3555846, + "thread": 5 + } + }, + { + "amount": "183.741823865", + "slot": { + "period": 3725249, + "thread": 5 + } + }, + { + "amount": "183.741823864", + "slot": { + "period": 3942439, + "thread": 22 + } + } + ], + "AU12ic12zejw1RH8J7YpKsM4CyfCYXZ9fK3xb9dCfKkMfjHkCGDwd": [ + { + "amount": "59.882529325", + "slot": { + "period": 155873, + "thread": 24 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 249554, + "thread": 1 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 351546, + "thread": 23 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 595172, + "thread": 29 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 691154, + "thread": 11 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 912283, + "thread": 12 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1149574, + "thread": 3 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1308573, + "thread": 9 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1387314, + "thread": 0 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1511720, + "thread": 2 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1743745, + "thread": 12 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1931080, + "thread": 26 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 1987528, + "thread": 11 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2190418, + "thread": 6 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2425742, + "thread": 0 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2615907, + "thread": 19 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2718750, + "thread": 8 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2933065, + "thread": 7 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 2970871, + "thread": 3 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 3167516, + "thread": 30 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 3302180, + "thread": 8 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 3566302, + "thread": 8 + } + }, + { + "amount": "59.882529325", + "slot": { + "period": 3716381, + "thread": 5 + } + }, + { + "amount": "59.882529318", + "slot": { + "period": 3847109, + "thread": 14 + } + } + ], + "AU12ic1QbHGxkVZ4gCBWs89WdyQDHHUBVGAGo4r9Ah1nPc8G4npTW": [ + { + "amount": "395.232004966", + "slot": { + "period": 162839, + "thread": 2 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 207748, + "thread": 17 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 339258, + "thread": 21 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 551712, + "thread": 20 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 748018, + "thread": 2 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 933426, + "thread": 22 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1025907, + "thread": 18 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1227327, + "thread": 22 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1434086, + "thread": 10 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1568844, + "thread": 3 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1744896, + "thread": 7 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1837589, + "thread": 14 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 1999334, + "thread": 26 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 2163975, + "thread": 25 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 2437441, + "thread": 11 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 2558514, + "thread": 0 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 2631272, + "thread": 7 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 2796559, + "thread": 16 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 3003179, + "thread": 26 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 3157560, + "thread": 7 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 3445750, + "thread": 10 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 3576948, + "thread": 10 + } + }, + { + "amount": "395.232004966", + "slot": { + "period": 3700441, + "thread": 0 + } + }, + { + "amount": "395.232004973", + "slot": { + "period": 3841292, + "thread": 10 + } + } + ], + "AU12icAwaaPeWFNms2MVPTB2Qc9wYha469rRbdTrmF5d8xB1sq1Ta": [ + { + "amount": "163.531087212", + "slot": { + "period": 135402, + "thread": 24 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 256649, + "thread": 19 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 385130, + "thread": 19 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 609272, + "thread": 8 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 800134, + "thread": 17 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 905264, + "thread": 0 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1019211, + "thread": 27 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1296577, + "thread": 13 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1456576, + "thread": 17 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1484995, + "thread": 1 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1681455, + "thread": 19 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 1821022, + "thread": 31 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2117357, + "thread": 17 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2208624, + "thread": 26 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2306140, + "thread": 4 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2488875, + "thread": 27 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2786495, + "thread": 25 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 2863890, + "thread": 11 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 3017146, + "thread": 28 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 3249340, + "thread": 22 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 3323808, + "thread": 27 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 3603833, + "thread": 20 + } + }, + { + "amount": "163.531087212", + "slot": { + "period": 3758048, + "thread": 0 + } + }, + { + "amount": "163.531087211", + "slot": { + "period": 3865672, + "thread": 27 + } + } + ], + "AU12icdeKBsaLAXjUgT95XqBzgzwya6XnC7PYEgQXGYdPVnwFfvSy": [ + { + "amount": "132.608996547", + "slot": { + "period": 26760, + "thread": 18 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 214783, + "thread": 15 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 464518, + "thread": 11 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 511582, + "thread": 8 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 762992, + "thread": 16 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 932826, + "thread": 25 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1002880, + "thread": 5 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1193385, + "thread": 20 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1377268, + "thread": 29 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1552673, + "thread": 6 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1670995, + "thread": 20 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 1880269, + "thread": 8 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2103209, + "thread": 22 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2215097, + "thread": 3 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2380476, + "thread": 30 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2525638, + "thread": 13 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2785779, + "thread": 26 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2895101, + "thread": 14 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 2991652, + "thread": 30 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 3223237, + "thread": 22 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 3383051, + "thread": 4 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 3545105, + "thread": 18 + } + }, + { + "amount": "132.608996547", + "slot": { + "period": 3693342, + "thread": 15 + } + }, + { + "amount": "132.608996546", + "slot": { + "period": 3861857, + "thread": 6 + } + } + ], + "AU12id1x5awPaW7gZbDjik2y98e48uXzNqYWFAd8nC2r6QYGfqxEk": [ + { + "amount": "79.860799886", + "slot": { + "period": 127244, + "thread": 12 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 284186, + "thread": 19 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 368699, + "thread": 18 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 651110, + "thread": 5 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 730112, + "thread": 27 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 872189, + "thread": 29 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 996833, + "thread": 25 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 1248646, + "thread": 7 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 1463218, + "thread": 25 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 1558278, + "thread": 0 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 1738546, + "thread": 29 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 1837958, + "thread": 23 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2063345, + "thread": 20 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2199309, + "thread": 2 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2356434, + "thread": 17 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2615493, + "thread": 8 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2765335, + "thread": 5 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 2798194, + "thread": 15 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 3015155, + "thread": 29 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 3248023, + "thread": 16 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 3357858, + "thread": 15 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 3524742, + "thread": 4 + } + }, + { + "amount": "79.860799886", + "slot": { + "period": 3677246, + "thread": 13 + } + }, + { + "amount": "79.860799875", + "slot": { + "period": 3838819, + "thread": 31 + } + } + ], + "AU12idKRLBH7wmpNLA9utXiFwZAmUm4CuPcnRX49KnUZVaMBcwjS9": [ + { + "amount": "164.561025366", + "slot": { + "period": 63395, + "thread": 3 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 271759, + "thread": 0 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 392458, + "thread": 20 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 651124, + "thread": 17 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 786146, + "thread": 12 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 953205, + "thread": 0 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1124750, + "thread": 22 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1278760, + "thread": 1 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1410268, + "thread": 30 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1611428, + "thread": 26 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1725102, + "thread": 14 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 1835141, + "thread": 29 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2129696, + "thread": 3 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2277807, + "thread": 12 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2313095, + "thread": 19 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2501182, + "thread": 12 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2724836, + "thread": 0 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 2827178, + "thread": 10 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 3108809, + "thread": 19 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 3265992, + "thread": 19 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 3307055, + "thread": 8 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 3596377, + "thread": 0 + } + }, + { + "amount": "164.561025366", + "slot": { + "period": 3711903, + "thread": 20 + } + }, + { + "amount": "164.561025358", + "slot": { + "period": 3845899, + "thread": 6 + } + } + ], + "AU12ieSEf9JarPDnFp6UZaGCvP9akZC3mw97GFRgRjJTFd7speaXx": [ + { + "amount": "638.732177551", + "slot": { + "period": 63466, + "thread": 7 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 291476, + "thread": 20 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 483780, + "thread": 13 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 531754, + "thread": 1 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 725142, + "thread": 27 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 857769, + "thread": 7 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1130286, + "thread": 24 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1196385, + "thread": 24 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1426360, + "thread": 6 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1588008, + "thread": 13 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1798062, + "thread": 4 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 1891669, + "thread": 11 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2121648, + "thread": 4 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2255120, + "thread": 20 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2430041, + "thread": 19 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2616842, + "thread": 15 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2656627, + "thread": 9 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 2931000, + "thread": 18 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 3091582, + "thread": 6 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 3276976, + "thread": 28 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 3319046, + "thread": 2 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 3483506, + "thread": 4 + } + }, + { + "amount": "638.732177551", + "slot": { + "period": 3719740, + "thread": 2 + } + }, + { + "amount": "638.732177554", + "slot": { + "period": 3825093, + "thread": 19 + } + } + ], + "AU12ifi7CRWh2CuqPZJQGJMzYTKqELZZHHKTfQytnxE3M7HXQmGcc": [ + { + "amount": "346.924894420", + "slot": { + "period": 131510, + "thread": 7 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 299903, + "thread": 20 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 444312, + "thread": 22 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 626724, + "thread": 15 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 789379, + "thread": 1 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 891406, + "thread": 8 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1054151, + "thread": 29 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1196511, + "thread": 19 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1411345, + "thread": 3 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1557916, + "thread": 18 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1674441, + "thread": 23 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 1975115, + "thread": 15 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2119205, + "thread": 1 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2257529, + "thread": 20 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2358727, + "thread": 10 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2480479, + "thread": 4 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2748960, + "thread": 31 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2824648, + "thread": 0 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 2953905, + "thread": 12 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 3259605, + "thread": 11 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 3333175, + "thread": 19 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 3617312, + "thread": 20 + } + }, + { + "amount": "346.924894420", + "slot": { + "period": 3776377, + "thread": 21 + } + }, + { + "amount": "346.924894422", + "slot": { + "period": 3813364, + "thread": 17 + } + } + ], + "AU12ifzGNHNvD3d3imMEX5SJL9yjCsAyp8CjCCDtBZMEpATv3uPYq": [ + { + "amount": "63.619636416", + "slot": { + "period": 79660, + "thread": 31 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 226922, + "thread": 6 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 367564, + "thread": 28 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 559568, + "thread": 12 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 757385, + "thread": 2 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 951066, + "thread": 4 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1076852, + "thread": 22 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1297194, + "thread": 23 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1394063, + "thread": 9 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1529848, + "thread": 11 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1712336, + "thread": 20 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 1817769, + "thread": 8 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2034797, + "thread": 23 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2197943, + "thread": 16 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2350803, + "thread": 12 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2479102, + "thread": 8 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2683903, + "thread": 23 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 2934340, + "thread": 16 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 3087956, + "thread": 19 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 3273273, + "thread": 10 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 3358575, + "thread": 28 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 3595371, + "thread": 12 + } + }, + { + "amount": "63.619636416", + "slot": { + "period": 3640294, + "thread": 14 + } + }, + { + "amount": "63.619636417", + "slot": { + "period": 3889076, + "thread": 16 + } + } + ], + "AU12igAwYLbQ1meFMNopMn6jPnmnxLiqtYR2Cah6X62HAwt6CLVVD": [ + { + "amount": "104.465501643", + "slot": { + "period": 38835, + "thread": 9 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 298430, + "thread": 15 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 477401, + "thread": 28 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 617163, + "thread": 20 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 777888, + "thread": 17 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 821276, + "thread": 26 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 998289, + "thread": 8 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 1202904, + "thread": 6 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 1326315, + "thread": 9 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 1481109, + "thread": 31 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 1798521, + "thread": 2 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 1838361, + "thread": 2 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2012124, + "thread": 12 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2231969, + "thread": 21 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2380961, + "thread": 31 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2526813, + "thread": 18 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2698249, + "thread": 17 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2810967, + "thread": 18 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 2986551, + "thread": 31 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 3163277, + "thread": 24 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 3302121, + "thread": 12 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 3505832, + "thread": 2 + } + }, + { + "amount": "104.465501643", + "slot": { + "period": 3692379, + "thread": 11 + } + }, + { + "amount": "104.465501647", + "slot": { + "period": 3791461, + "thread": 25 + } + } + ], + "AU12igDdfZHes2EbYh6nS5ciWGoX7YifDsEjutGjfXpa5dYAQsF2Z": [ + { + "amount": "425.118554920", + "slot": { + "period": 160126, + "thread": 26 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 194461, + "thread": 9 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 435844, + "thread": 16 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 531597, + "thread": 22 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 660482, + "thread": 24 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 884867, + "thread": 1 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1102372, + "thread": 30 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1300799, + "thread": 14 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1345990, + "thread": 26 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1640529, + "thread": 24 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1743804, + "thread": 12 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 1817643, + "thread": 6 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2023877, + "thread": 4 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2250956, + "thread": 6 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2331173, + "thread": 13 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2583400, + "thread": 13 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2766368, + "thread": 1 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2949000, + "thread": 26 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 2998306, + "thread": 4 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 3235734, + "thread": 27 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 3434295, + "thread": 16 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 3583488, + "thread": 29 + } + }, + { + "amount": "425.118554920", + "slot": { + "period": 3644603, + "thread": 27 + } + }, + { + "amount": "425.118554912", + "slot": { + "period": 3924009, + "thread": 3 + } + } + ], + "AU12igYYNM5HWyE6bkf5cieziMFtCaRnQRrXCZTMaskqhu7wW46Wu": [ + { + "amount": "359.878460909", + "slot": { + "period": 119567, + "thread": 1 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 234837, + "thread": 30 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 394167, + "thread": 7 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 607309, + "thread": 29 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 668144, + "thread": 7 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 873940, + "thread": 3 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1090191, + "thread": 15 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1244938, + "thread": 11 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1371879, + "thread": 27 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1587141, + "thread": 4 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1714644, + "thread": 23 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 1834960, + "thread": 4 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2002326, + "thread": 16 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2190166, + "thread": 23 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2376171, + "thread": 30 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2498352, + "thread": 5 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2694316, + "thread": 10 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 2943101, + "thread": 4 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 3008369, + "thread": 26 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 3136757, + "thread": 24 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 3439800, + "thread": 3 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 3495806, + "thread": 21 + } + }, + { + "amount": "359.878460909", + "slot": { + "period": 3691644, + "thread": 31 + } + }, + { + "amount": "359.878460916", + "slot": { + "period": 3898931, + "thread": 28 + } + } + ], + "AU12ihiy2C4hJ5P3kvaM8J5xLk9JcrQFEncMitxFQkWDVhhE8EYaz": [ + { + "amount": "220.807931532", + "slot": { + "period": 164956, + "thread": 3 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 214652, + "thread": 7 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 490444, + "thread": 10 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 564107, + "thread": 4 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 703452, + "thread": 16 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 936084, + "thread": 0 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1122258, + "thread": 12 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1218155, + "thread": 23 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1435323, + "thread": 1 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1541176, + "thread": 17 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1783724, + "thread": 16 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 1941930, + "thread": 9 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2046478, + "thread": 15 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2222648, + "thread": 27 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2397193, + "thread": 14 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2548230, + "thread": 3 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2758759, + "thread": 19 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 2798078, + "thread": 0 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 3016955, + "thread": 26 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 3133544, + "thread": 17 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 3439092, + "thread": 28 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 3603382, + "thread": 6 + } + }, + { + "amount": "220.807931532", + "slot": { + "period": 3692716, + "thread": 17 + } + }, + { + "amount": "220.807931541", + "slot": { + "period": 3935398, + "thread": 8 + } + } + ], + "AU12iiRNcu5Ys5cfeJenaNmrmE9gygmcJYocG3ZgkLYKoecB22my6": [ + { + "amount": "79.333140715", + "slot": { + "period": 32392, + "thread": 7 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 314707, + "thread": 25 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 483622, + "thread": 19 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 561074, + "thread": 18 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 713823, + "thread": 22 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 889680, + "thread": 25 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1006462, + "thread": 23 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1190924, + "thread": 4 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1430252, + "thread": 26 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1603008, + "thread": 24 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1783217, + "thread": 11 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 1936777, + "thread": 14 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2091926, + "thread": 28 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2236960, + "thread": 20 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2394026, + "thread": 31 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2553931, + "thread": 6 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2651825, + "thread": 28 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2920725, + "thread": 15 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 2985223, + "thread": 14 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 3216429, + "thread": 3 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 3377022, + "thread": 15 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 3564052, + "thread": 18 + } + }, + { + "amount": "79.333140715", + "slot": { + "period": 3745406, + "thread": 19 + } + }, + { + "amount": "79.333140713", + "slot": { + "period": 3804759, + "thread": 21 + } + } + ], + "AU12ijNe6L3P2x3CpXSL16TUxhSjGWSCHxrGpmLAksBG8B4VfNJiN": [ + { + "amount": "74.908237176", + "slot": { + "period": 110236, + "thread": 1 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 268439, + "thread": 5 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 349312, + "thread": 0 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 607836, + "thread": 27 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 806143, + "thread": 21 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 828574, + "thread": 12 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1091588, + "thread": 0 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1162181, + "thread": 18 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1338835, + "thread": 9 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1536382, + "thread": 20 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1649102, + "thread": 24 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 1963770, + "thread": 3 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2017192, + "thread": 8 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2245117, + "thread": 4 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2336602, + "thread": 29 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2616073, + "thread": 14 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2739738, + "thread": 10 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 2948147, + "thread": 14 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 3064489, + "thread": 13 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 3201740, + "thread": 21 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 3389027, + "thread": 14 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 3505093, + "thread": 4 + } + }, + { + "amount": "74.908237176", + "slot": { + "period": 3683519, + "thread": 30 + } + }, + { + "amount": "74.908237164", + "slot": { + "period": 3917993, + "thread": 5 + } + } + ], + "AU12ijRoC7DQvtndMLkG4CzdwNQL5TaCRoTJ7rhyXKCfefjUr9bz3": [ + { + "amount": "120.315499061", + "slot": { + "period": 15479, + "thread": 21 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 225293, + "thread": 23 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 443000, + "thread": 4 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 509071, + "thread": 5 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 675261, + "thread": 27 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 849302, + "thread": 17 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1007693, + "thread": 2 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1283118, + "thread": 14 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1376055, + "thread": 26 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1586599, + "thread": 4 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1772501, + "thread": 18 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 1820262, + "thread": 29 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2081417, + "thread": 17 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2227949, + "thread": 13 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2461588, + "thread": 25 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2496745, + "thread": 25 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2681632, + "thread": 16 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 2877631, + "thread": 6 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 3007590, + "thread": 12 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 3240136, + "thread": 13 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 3317233, + "thread": 5 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 3511956, + "thread": 29 + } + }, + { + "amount": "120.315499061", + "slot": { + "period": 3751834, + "thread": 9 + } + }, + { + "amount": "120.315499066", + "slot": { + "period": 3906583, + "thread": 30 + } + } + ], + "AU12ikVQkAPw8YkWSqP77MUae1LynPKpjx68EcV76sR8eHCodKBzu": [ + { + "amount": "93.263199047", + "slot": { + "period": 158907, + "thread": 19 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 295189, + "thread": 9 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 380772, + "thread": 26 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 601051, + "thread": 28 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 678032, + "thread": 12 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 840970, + "thread": 29 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 985559, + "thread": 10 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 1165411, + "thread": 13 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 1383529, + "thread": 0 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 1481763, + "thread": 10 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 1744345, + "thread": 4 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 1842443, + "thread": 22 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2033622, + "thread": 0 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2237457, + "thread": 7 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2357308, + "thread": 1 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2519543, + "thread": 19 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2789218, + "thread": 31 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 2848457, + "thread": 12 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 3021183, + "thread": 24 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 3217783, + "thread": 9 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 3356592, + "thread": 0 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 3512495, + "thread": 12 + } + }, + { + "amount": "93.263199047", + "slot": { + "period": 3779241, + "thread": 29 + } + }, + { + "amount": "93.263199050", + "slot": { + "period": 3891908, + "thread": 20 + } + } + ], + "AU12ikWqfd1976SuQKytGtT6DePoRGFRVp8FsezfHkWRKdDdBqyZq": [ + { + "amount": "70.090649984", + "slot": { + "period": 79002, + "thread": 11 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 265230, + "thread": 17 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 410793, + "thread": 19 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 501591, + "thread": 18 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 724477, + "thread": 31 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 885282, + "thread": 18 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1063264, + "thread": 0 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1306882, + "thread": 31 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1392633, + "thread": 6 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1603708, + "thread": 2 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1677544, + "thread": 23 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 1878232, + "thread": 15 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2050365, + "thread": 20 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2163701, + "thread": 9 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2327605, + "thread": 5 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2507007, + "thread": 22 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2645060, + "thread": 2 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 2852936, + "thread": 21 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 3110635, + "thread": 25 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 3163335, + "thread": 7 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 3400869, + "thread": 6 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 3578805, + "thread": 30 + } + }, + { + "amount": "70.090649984", + "slot": { + "period": 3751031, + "thread": 7 + } + }, + { + "amount": "70.090649994", + "slot": { + "period": 3908940, + "thread": 31 + } + } + ], + "AU12ikx5iKkULoMjHhbkXZ5X89C86RE7RFQfxb1h4qVp96AKXEBvV": [ + { + "amount": "291.729631266", + "slot": { + "period": 40661, + "thread": 13 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 192547, + "thread": 27 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 412959, + "thread": 29 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 622984, + "thread": 2 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 800549, + "thread": 19 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 879579, + "thread": 15 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1149782, + "thread": 20 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1174669, + "thread": 28 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1468800, + "thread": 0 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1535251, + "thread": 0 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1661438, + "thread": 28 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 1921679, + "thread": 16 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2009200, + "thread": 3 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2203310, + "thread": 9 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2346207, + "thread": 31 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2609114, + "thread": 8 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2766402, + "thread": 20 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 2886293, + "thread": 16 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 3075184, + "thread": 27 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 3186964, + "thread": 13 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 3408611, + "thread": 3 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 3541747, + "thread": 0 + } + }, + { + "amount": "291.729631266", + "slot": { + "period": 3640405, + "thread": 21 + } + }, + { + "amount": "291.729631263", + "slot": { + "period": 3947334, + "thread": 23 + } + } + ], + "AU12imPwJ1NeRvLigV5JMzb8WUTAULNEFToeD2knXbFSK5TjzEdwq": [ + { + "amount": "63.407985828", + "slot": { + "period": 74099, + "thread": 3 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 193923, + "thread": 28 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 378385, + "thread": 30 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 509381, + "thread": 22 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 738593, + "thread": 6 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 942507, + "thread": 14 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1128917, + "thread": 17 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1171404, + "thread": 12 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1412157, + "thread": 3 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1502836, + "thread": 29 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1783607, + "thread": 24 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 1964685, + "thread": 5 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2120444, + "thread": 23 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2242929, + "thread": 9 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2394913, + "thread": 22 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2622856, + "thread": 9 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2698748, + "thread": 17 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2793263, + "thread": 11 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 2978551, + "thread": 0 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 3154946, + "thread": 9 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 3449959, + "thread": 31 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 3598114, + "thread": 4 + } + }, + { + "amount": "63.407985828", + "slot": { + "period": 3649168, + "thread": 14 + } + }, + { + "amount": "63.407985836", + "slot": { + "period": 3817596, + "thread": 29 + } + } + ], + "AU12imb7hjc6YK7QbWhXwZZSbvpHVWmiizwopBS4A84NdCAKYxfJ6": [ + { + "amount": "231.612924363", + "slot": { + "period": 112612, + "thread": 27 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 249716, + "thread": 0 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 458816, + "thread": 17 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 554713, + "thread": 16 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 813096, + "thread": 17 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 889056, + "thread": 5 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1047906, + "thread": 17 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1287737, + "thread": 26 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1347754, + "thread": 13 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1549767, + "thread": 25 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1693360, + "thread": 7 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 1957571, + "thread": 9 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2052527, + "thread": 17 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2281468, + "thread": 24 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2311539, + "thread": 27 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2571737, + "thread": 22 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2780049, + "thread": 0 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 2941367, + "thread": 29 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 3047976, + "thread": 18 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 3197465, + "thread": 26 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 3399281, + "thread": 28 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 3591495, + "thread": 10 + } + }, + { + "amount": "231.612924363", + "slot": { + "period": 3694475, + "thread": 16 + } + }, + { + "amount": "231.612924370", + "slot": { + "period": 3908351, + "thread": 31 + } + } + ], + "AU12inebNZLHxF5KLD1cQ1F1D2LYUo7VJHxVWabf3zfo74H6W5tKR": [ + { + "amount": "595.389481862", + "slot": { + "period": 144261, + "thread": 6 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 198869, + "thread": 11 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 440301, + "thread": 23 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 539800, + "thread": 18 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 811512, + "thread": 4 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 970062, + "thread": 31 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1114062, + "thread": 1 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1238939, + "thread": 30 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1360132, + "thread": 8 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1481877, + "thread": 0 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1693464, + "thread": 27 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 1879391, + "thread": 16 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2127236, + "thread": 1 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2160516, + "thread": 25 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2366834, + "thread": 7 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2596121, + "thread": 22 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2783427, + "thread": 24 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 2941326, + "thread": 8 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 3121198, + "thread": 22 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 3139302, + "thread": 1 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 3333726, + "thread": 1 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 3591121, + "thread": 10 + } + }, + { + "amount": "595.389481862", + "slot": { + "period": 3710097, + "thread": 17 + } + }, + { + "amount": "595.389481870", + "slot": { + "period": 3930800, + "thread": 7 + } + } + ], + "AU12ip6K46X3qC5oQTtMsy9ZZac95SKyXExp9KUumpkpPUBpAbpWg": [ + { + "amount": "389.269520743", + "slot": { + "period": 31927, + "thread": 23 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 261969, + "thread": 7 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 348310, + "thread": 26 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 607594, + "thread": 28 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 678052, + "thread": 11 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 875738, + "thread": 15 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1012602, + "thread": 16 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1270659, + "thread": 24 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1337564, + "thread": 2 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1532507, + "thread": 19 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1782645, + "thread": 7 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 1874796, + "thread": 20 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2023364, + "thread": 10 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2245607, + "thread": 12 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2345353, + "thread": 14 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2474049, + "thread": 8 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2738722, + "thread": 4 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 2794983, + "thread": 8 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 3080655, + "thread": 16 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 3179964, + "thread": 11 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 3392296, + "thread": 20 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 3558537, + "thread": 1 + } + }, + { + "amount": "389.269520743", + "slot": { + "period": 3704088, + "thread": 2 + } + }, + { + "amount": "389.269520737", + "slot": { + "period": 3808354, + "thread": 7 + } + } + ], + "AU12iproeLpq5MLjoNuPPTXM1u8rdGdTR4vc95Sd6mvxXVAguKKy5": [ + { + "amount": "77.130105982", + "slot": { + "period": 66606, + "thread": 23 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 285900, + "thread": 15 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 343451, + "thread": 27 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 601187, + "thread": 11 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 720526, + "thread": 14 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 920670, + "thread": 13 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1114178, + "thread": 10 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1174649, + "thread": 19 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1321602, + "thread": 18 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1542916, + "thread": 29 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1667390, + "thread": 18 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 1919475, + "thread": 27 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2073975, + "thread": 14 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2171603, + "thread": 10 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2433147, + "thread": 26 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2476875, + "thread": 19 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2754048, + "thread": 12 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 2915475, + "thread": 20 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 3069450, + "thread": 24 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 3159721, + "thread": 11 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 3370550, + "thread": 15 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 3558308, + "thread": 2 + } + }, + { + "amount": "77.130105982", + "slot": { + "period": 3723790, + "thread": 15 + } + }, + { + "amount": "77.130105988", + "slot": { + "period": 3931603, + "thread": 3 + } + } + ], + "AU12iq8UyqyX7fjEUM7wjdyihTrWsRZ77x38GLpeP1an9epo3GrAt": [ + { + "amount": "242.912908595", + "slot": { + "period": 93272, + "thread": 31 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 304862, + "thread": 29 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 441161, + "thread": 23 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 513535, + "thread": 25 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 676850, + "thread": 5 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 941694, + "thread": 27 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1145312, + "thread": 2 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1203076, + "thread": 30 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1389308, + "thread": 6 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1572652, + "thread": 27 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1710866, + "thread": 22 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 1826951, + "thread": 24 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2124827, + "thread": 21 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2179341, + "thread": 21 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2363087, + "thread": 0 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2516919, + "thread": 0 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2642566, + "thread": 27 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 2827826, + "thread": 17 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 3019194, + "thread": 24 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 3236431, + "thread": 7 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 3401617, + "thread": 28 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 3451984, + "thread": 11 + } + }, + { + "amount": "242.912908595", + "slot": { + "period": 3679390, + "thread": 15 + } + }, + { + "amount": "242.912908590", + "slot": { + "period": 3780837, + "thread": 5 + } + } + ], + "AU12irtMnVGR4N7kSgK1np83zUFQTT4ewDwz9a5kejmgRusqU735b": [ + { + "amount": "415.462115381", + "slot": { + "period": 27998, + "thread": 18 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 297204, + "thread": 13 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 438313, + "thread": 1 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 498231, + "thread": 20 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 726738, + "thread": 17 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 861461, + "thread": 12 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 998408, + "thread": 16 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1301253, + "thread": 1 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1368600, + "thread": 25 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1479932, + "thread": 26 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1806103, + "thread": 12 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1810465, + "thread": 8 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 1990181, + "thread": 5 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 2179051, + "thread": 23 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 2355755, + "thread": 10 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 2615248, + "thread": 4 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 2728651, + "thread": 6 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 2836335, + "thread": 26 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3019978, + "thread": 22 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3132410, + "thread": 17 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3445298, + "thread": 18 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3514141, + "thread": 29 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3732219, + "thread": 14 + } + }, + { + "amount": "415.462115381", + "slot": { + "period": 3854859, + "thread": 21 + } + } + ], + "AU12iruvhvjMs2RDtWhoKQn1WBBFFmYLDhcfNEFimTzyv44LJR2Cp": [ + { + "amount": "262.750833431", + "slot": { + "period": 86036, + "thread": 28 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 219193, + "thread": 28 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 329120, + "thread": 25 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 621275, + "thread": 10 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 707327, + "thread": 27 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 923005, + "thread": 24 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1024112, + "thread": 28 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1202458, + "thread": 7 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1421542, + "thread": 17 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1602773, + "thread": 6 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1754569, + "thread": 18 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1841276, + "thread": 18 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 1982043, + "thread": 22 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 2294242, + "thread": 25 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 2445980, + "thread": 21 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 2579024, + "thread": 22 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 2749958, + "thread": 21 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 2908277, + "thread": 20 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 3074748, + "thread": 5 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 3221319, + "thread": 6 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 3435020, + "thread": 5 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 3545748, + "thread": 10 + } + }, + { + "amount": "262.750833431", + "slot": { + "period": 3661458, + "thread": 18 + } + }, + { + "amount": "262.750833425", + "slot": { + "period": 3868692, + "thread": 0 + } + } + ], + "AU12is3Wqbzcaov2jAsQczDW12D4KZDsin3YoLK3Xtus2oj3bdS4R": [ + { + "amount": "134.544600606", + "slot": { + "period": 126512, + "thread": 6 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 184330, + "thread": 27 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 391696, + "thread": 31 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 551449, + "thread": 4 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 735150, + "thread": 26 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 933361, + "thread": 19 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1094947, + "thread": 23 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1186435, + "thread": 14 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1472201, + "thread": 18 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1613354, + "thread": 30 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1719713, + "thread": 1 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1888056, + "thread": 8 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 1994036, + "thread": 3 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 2238769, + "thread": 19 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 2310868, + "thread": 15 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 2509187, + "thread": 17 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 2726974, + "thread": 3 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 2859760, + "thread": 16 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 3002965, + "thread": 2 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 3166754, + "thread": 8 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 3307897, + "thread": 12 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 3608402, + "thread": 10 + } + }, + { + "amount": "134.544600606", + "slot": { + "period": 3639952, + "thread": 3 + } + }, + { + "amount": "134.544600618", + "slot": { + "period": 3836213, + "thread": 31 + } + } + ], + "AU12iti8HRxDEn32bLgBueZcn32EMGKABds9nnmRzetvxV6aiGFjQ": [ + { + "amount": "155.387089031", + "slot": { + "period": 72330, + "thread": 4 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 181191, + "thread": 19 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 379749, + "thread": 9 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 580120, + "thread": 14 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 781385, + "thread": 0 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 852071, + "thread": 20 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1038895, + "thread": 17 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1212594, + "thread": 22 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1424926, + "thread": 15 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1554603, + "thread": 31 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1776677, + "thread": 5 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 1813501, + "thread": 10 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2041052, + "thread": 2 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2273637, + "thread": 17 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2317364, + "thread": 7 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2601271, + "thread": 3 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2690563, + "thread": 17 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2918544, + "thread": 27 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 2957173, + "thread": 17 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 3255595, + "thread": 26 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 3398243, + "thread": 0 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 3458040, + "thread": 21 + } + }, + { + "amount": "155.387089031", + "slot": { + "period": 3680618, + "thread": 31 + } + }, + { + "amount": "155.387089021", + "slot": { + "period": 3887249, + "thread": 29 + } + } + ], + "AU12iuXEqKkytBXmjBFdFdxf9zLjfQrVt8FTYJbpcoiCPbmscfxPi": [ + { + "amount": "426.568034825", + "slot": { + "period": 112417, + "thread": 18 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 300352, + "thread": 25 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 484121, + "thread": 17 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 554794, + "thread": 12 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 704435, + "thread": 18 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 962500, + "thread": 17 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1075457, + "thread": 5 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1307923, + "thread": 11 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1371819, + "thread": 2 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1624075, + "thread": 1 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1675771, + "thread": 2 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 1838558, + "thread": 0 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2140490, + "thread": 14 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2265858, + "thread": 21 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2438317, + "thread": 28 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2542578, + "thread": 0 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2772453, + "thread": 24 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 2911061, + "thread": 22 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3118534, + "thread": 12 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3213217, + "thread": 6 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3413136, + "thread": 19 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3599901, + "thread": 5 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3677282, + "thread": 12 + } + }, + { + "amount": "426.568034825", + "slot": { + "period": 3831449, + "thread": 26 + } + } + ], + "AU12iugTNK615zwkLvz3Rg6ziFmd6PQrrnezj2bhdW2eqtkwp5q7y": [ + { + "amount": "462.699299905", + "slot": { + "period": 70582, + "thread": 26 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 255013, + "thread": 31 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 428613, + "thread": 27 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 597317, + "thread": 1 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 693533, + "thread": 9 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 935963, + "thread": 27 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1124530, + "thread": 24 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1253869, + "thread": 31 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1406751, + "thread": 22 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1552183, + "thread": 18 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1719948, + "thread": 16 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 1967802, + "thread": 19 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2041521, + "thread": 10 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2199616, + "thread": 14 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2299620, + "thread": 31 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2504077, + "thread": 16 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2740441, + "thread": 21 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2924387, + "thread": 0 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 2968285, + "thread": 7 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 3269565, + "thread": 19 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 3349213, + "thread": 29 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 3504553, + "thread": 24 + } + }, + { + "amount": "462.699299905", + "slot": { + "period": 3709436, + "thread": 9 + } + }, + { + "amount": "462.699299904", + "slot": { + "period": 3927096, + "thread": 11 + } + } + ], + "AU12iuivjM4aQP28enUb4p5BRK4MKW17dmYbGkVvFKtFLJMzizFRK": [ + { + "amount": "211.382555623", + "slot": { + "period": 132275, + "thread": 20 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 209345, + "thread": 31 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 338282, + "thread": 25 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 532605, + "thread": 28 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 740953, + "thread": 7 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 863669, + "thread": 24 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1033628, + "thread": 23 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1165685, + "thread": 17 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1471363, + "thread": 5 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1485807, + "thread": 1 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1660859, + "thread": 6 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 1891193, + "thread": 3 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2067255, + "thread": 18 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2210169, + "thread": 29 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2442151, + "thread": 17 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2548273, + "thread": 9 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2639498, + "thread": 16 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 2921976, + "thread": 25 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 3044640, + "thread": 25 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 3251591, + "thread": 16 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 3438109, + "thread": 26 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 3582495, + "thread": 21 + } + }, + { + "amount": "211.382555623", + "slot": { + "period": 3675668, + "thread": 19 + } + }, + { + "amount": "211.382555626", + "slot": { + "period": 3899798, + "thread": 22 + } + } + ], + "AU12ivhd7dVfMNX5KZy1eLHJFYnEabK6VyyHyNorfXNLY1af7toMN": [ + { + "amount": "90.886596870", + "slot": { + "period": 56490, + "thread": 24 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 200876, + "thread": 1 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 370098, + "thread": 28 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 532410, + "thread": 1 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 682421, + "thread": 7 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 937018, + "thread": 25 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1062414, + "thread": 30 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1209110, + "thread": 6 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1327201, + "thread": 1 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1630256, + "thread": 24 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1710918, + "thread": 23 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 1970993, + "thread": 13 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2111153, + "thread": 30 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2198146, + "thread": 11 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2306727, + "thread": 9 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2570813, + "thread": 29 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2787897, + "thread": 16 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 2799992, + "thread": 24 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 3044016, + "thread": 11 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 3274542, + "thread": 28 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 3385467, + "thread": 7 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 3509732, + "thread": 3 + } + }, + { + "amount": "90.886596870", + "slot": { + "period": 3657103, + "thread": 20 + } + }, + { + "amount": "90.886596860", + "slot": { + "period": 3854116, + "thread": 31 + } + } + ], + "AU12iwBGKevAuY8oiTZwvkrzJ7nCaq3j4VyeKbP9VnCWMXx71FpWa": [ + { + "amount": "128.044160973", + "slot": { + "period": 83237, + "thread": 1 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 232683, + "thread": 0 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 452313, + "thread": 28 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 503003, + "thread": 16 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 791517, + "thread": 14 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 836832, + "thread": 2 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1009256, + "thread": 6 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1252977, + "thread": 12 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1463668, + "thread": 12 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1492981, + "thread": 10 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1726699, + "thread": 29 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 1851429, + "thread": 24 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2026036, + "thread": 16 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2280790, + "thread": 20 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2388886, + "thread": 13 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2468352, + "thread": 0 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2651911, + "thread": 16 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2827179, + "thread": 28 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 2955759, + "thread": 28 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 3288387, + "thread": 10 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 3308701, + "thread": 1 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 3474353, + "thread": 3 + } + }, + { + "amount": "128.044160973", + "slot": { + "period": 3687842, + "thread": 27 + } + }, + { + "amount": "128.044160971", + "slot": { + "period": 3859339, + "thread": 6 + } + } + ], + "AU12iwfsaJFB22DtZ6626AtQsFuXNbbwv2hd33aFgoSLApF2Z8DEc": [ + { + "amount": "182.070379119", + "slot": { + "period": 122168, + "thread": 29 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 206731, + "thread": 16 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 341211, + "thread": 11 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 524639, + "thread": 19 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 709408, + "thread": 21 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 831548, + "thread": 20 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1061195, + "thread": 20 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1198821, + "thread": 25 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1398708, + "thread": 20 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1575836, + "thread": 18 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1716417, + "thread": 16 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1930630, + "thread": 22 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 1978671, + "thread": 27 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 2242775, + "thread": 22 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 2373691, + "thread": 10 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 2570585, + "thread": 19 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 2666585, + "thread": 28 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 2935266, + "thread": 12 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 3056556, + "thread": 29 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 3179536, + "thread": 9 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 3420737, + "thread": 7 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 3576303, + "thread": 5 + } + }, + { + "amount": "182.070379119", + "slot": { + "period": 3653754, + "thread": 30 + } + }, + { + "amount": "182.070379108", + "slot": { + "period": 3871637, + "thread": 25 + } + } + ], + "AU12iwrh6ZgjfNSei4LhQK3oA5Hs8UZsjCm35yDqneTPad4rimp4P": [ + { + "amount": "69.057935916", + "slot": { + "period": 114797, + "thread": 29 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 269459, + "thread": 20 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 432132, + "thread": 16 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 604891, + "thread": 7 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 740721, + "thread": 0 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 919447, + "thread": 5 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1111097, + "thread": 17 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1246265, + "thread": 12 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1407860, + "thread": 1 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1540722, + "thread": 2 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1719945, + "thread": 18 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 1926617, + "thread": 25 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2044124, + "thread": 17 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2200572, + "thread": 18 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2367076, + "thread": 27 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2534914, + "thread": 7 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2678800, + "thread": 5 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2799501, + "thread": 19 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 2987276, + "thread": 6 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 3263516, + "thread": 25 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 3388989, + "thread": 4 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 3459833, + "thread": 3 + } + }, + { + "amount": "69.057935916", + "slot": { + "period": 3622082, + "thread": 25 + } + }, + { + "amount": "69.057935917", + "slot": { + "period": 3885056, + "thread": 6 + } + } + ], + "AU12ix8GLS5RH1kgkwX5sgdTgatfa76D8zJwC7WVHHhD1igDGWb2F": [ + { + "amount": "118.605757125", + "slot": { + "period": 69660, + "thread": 18 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 192347, + "thread": 14 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 395645, + "thread": 24 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 511524, + "thread": 3 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 667520, + "thread": 29 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 932975, + "thread": 5 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1092206, + "thread": 18 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1236797, + "thread": 14 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1395814, + "thread": 30 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1640056, + "thread": 1 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1711530, + "thread": 7 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 1974888, + "thread": 29 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2038696, + "thread": 12 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2225447, + "thread": 2 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2316367, + "thread": 20 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2509940, + "thread": 9 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2765764, + "thread": 7 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 2928408, + "thread": 19 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 3107372, + "thread": 26 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 3156327, + "thread": 31 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 3414828, + "thread": 8 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 3557753, + "thread": 29 + } + }, + { + "amount": "118.605757125", + "slot": { + "period": 3651155, + "thread": 8 + } + }, + { + "amount": "118.605757120", + "slot": { + "period": 3803972, + "thread": 29 + } + } + ], + "AU12ixcZQPnhauPaBsi3htmes3Puu1B2KFPDfwP1rQdZFHuLD9wFd": [ + { + "amount": "486.401938178", + "slot": { + "period": 146032, + "thread": 31 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 201513, + "thread": 23 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 471597, + "thread": 8 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 642389, + "thread": 12 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 701314, + "thread": 2 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 844399, + "thread": 16 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1012128, + "thread": 7 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1158039, + "thread": 9 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1461134, + "thread": 21 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1499509, + "thread": 2 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1653846, + "thread": 18 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 1856040, + "thread": 18 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2123448, + "thread": 2 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2144496, + "thread": 28 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2301265, + "thread": 22 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2463229, + "thread": 4 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2637963, + "thread": 12 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2862830, + "thread": 18 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 2997973, + "thread": 6 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 3215605, + "thread": 7 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 3446870, + "thread": 17 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 3551091, + "thread": 19 + } + }, + { + "amount": "486.401938178", + "slot": { + "period": 3658652, + "thread": 2 + } + }, + { + "amount": "486.401938185", + "slot": { + "period": 3853882, + "thread": 10 + } + } + ], + "AU12j19Nr7P5nkv13Yx3PrzzC8PMrDvpGrDijFmdy3oCfH666RehE": [ + { + "amount": "76.092955649", + "slot": { + "period": 19986, + "thread": 4 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 224363, + "thread": 13 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 442195, + "thread": 27 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 602260, + "thread": 9 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 784641, + "thread": 31 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 945457, + "thread": 3 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1067820, + "thread": 12 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1155718, + "thread": 12 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1451798, + "thread": 24 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1553217, + "thread": 13 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1676900, + "thread": 9 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1811444, + "thread": 10 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 1989920, + "thread": 16 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 2155143, + "thread": 15 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 2437533, + "thread": 15 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 2540513, + "thread": 3 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 2667498, + "thread": 21 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 2942842, + "thread": 6 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 3092148, + "thread": 21 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 3131380, + "thread": 6 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 3397222, + "thread": 23 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 3616845, + "thread": 4 + } + }, + { + "amount": "76.092955649", + "slot": { + "period": 3744454, + "thread": 10 + } + }, + { + "amount": "76.092955644", + "slot": { + "period": 3894308, + "thread": 18 + } + } + ], + "AU12j1C1cZTAM5UTQkrPXMYXASdAjCBc5Ve27HuLkjM1ZHpf9bdTp": [ + { + "amount": "141.072802347", + "slot": { + "period": 158265, + "thread": 2 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 245590, + "thread": 2 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 479809, + "thread": 18 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 552624, + "thread": 20 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 738126, + "thread": 14 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 976418, + "thread": 12 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1100574, + "thread": 14 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1248975, + "thread": 1 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1408174, + "thread": 27 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1504126, + "thread": 21 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1731510, + "thread": 2 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1870196, + "thread": 29 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 1984200, + "thread": 3 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2231427, + "thread": 31 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2413872, + "thread": 25 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2516461, + "thread": 30 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2629137, + "thread": 8 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2853478, + "thread": 29 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 2967447, + "thread": 7 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 3263336, + "thread": 14 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 3432990, + "thread": 25 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 3589154, + "thread": 10 + } + }, + { + "amount": "141.072802347", + "slot": { + "period": 3672725, + "thread": 1 + } + }, + { + "amount": "141.072802355", + "slot": { + "period": 3783289, + "thread": 5 + } + } + ], + "AU12j1J8oozfTPMCFXwcNhPF7xA19Prkdy7LG3EctcS1WnRDYxCdT": [ + { + "amount": "273.602136446", + "slot": { + "period": 33580, + "thread": 20 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 235134, + "thread": 7 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 410071, + "thread": 20 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 612513, + "thread": 31 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 793830, + "thread": 24 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 843846, + "thread": 18 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1129352, + "thread": 22 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1291087, + "thread": 19 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1411420, + "thread": 7 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1631678, + "thread": 16 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1748889, + "thread": 16 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 1931754, + "thread": 6 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2061547, + "thread": 19 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2245261, + "thread": 13 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2318609, + "thread": 24 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2486254, + "thread": 31 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2733269, + "thread": 19 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 2914489, + "thread": 15 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 3071483, + "thread": 18 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 3239562, + "thread": 26 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 3354356, + "thread": 16 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 3518388, + "thread": 24 + } + }, + { + "amount": "273.602136446", + "slot": { + "period": 3763443, + "thread": 6 + } + }, + { + "amount": "273.602136438", + "slot": { + "period": 3880699, + "thread": 24 + } + } + ], + "AU12j1JDqfrh4uTwktzT5MgGpDv3GrSvxfktKQ4R9a3atSVJJwEkt": [ + { + "amount": "177.285895619", + "slot": { + "period": 153377, + "thread": 17 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 233824, + "thread": 1 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 356973, + "thread": 15 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 649851, + "thread": 3 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 667935, + "thread": 0 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 831572, + "thread": 30 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1102783, + "thread": 31 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1202183, + "thread": 13 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1392699, + "thread": 23 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1489987, + "thread": 25 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1667475, + "thread": 16 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 1919677, + "thread": 6 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2000671, + "thread": 18 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2180909, + "thread": 9 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2411796, + "thread": 13 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2526712, + "thread": 30 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2686895, + "thread": 6 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 2820102, + "thread": 0 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 3080074, + "thread": 26 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 3214176, + "thread": 1 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 3448666, + "thread": 17 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 3607228, + "thread": 1 + } + }, + { + "amount": "177.285895619", + "slot": { + "period": 3721860, + "thread": 13 + } + }, + { + "amount": "177.285895622", + "slot": { + "period": 3824415, + "thread": 18 + } + } + ], + "AU12j1JgsazLYF9XkBEUWk7wLaemBe1gY8MkAvVYphcKqD5CRFcCY": [ + { + "amount": "148.975912476", + "slot": { + "period": 75056, + "thread": 5 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 316876, + "thread": 22 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 454761, + "thread": 24 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 556439, + "thread": 26 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 662175, + "thread": 0 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 847790, + "thread": 0 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1084349, + "thread": 25 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1212580, + "thread": 13 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1454775, + "thread": 9 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1602585, + "thread": 18 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1679834, + "thread": 1 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 1954086, + "thread": 9 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2050322, + "thread": 17 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2239109, + "thread": 0 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2445268, + "thread": 2 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2588659, + "thread": 27 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2757570, + "thread": 4 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 2939127, + "thread": 15 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 3068692, + "thread": 22 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 3156722, + "thread": 3 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 3355068, + "thread": 7 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 3576046, + "thread": 27 + } + }, + { + "amount": "148.975912476", + "slot": { + "period": 3749549, + "thread": 13 + } + }, + { + "amount": "148.975912483", + "slot": { + "period": 3804921, + "thread": 0 + } + } + ], + "AU12j25FxWqvV7EtcaJtwe6NuDCu2VnmaKheoEFEY7VZdaWstr3PL": [ + { + "amount": "133.441671789", + "slot": { + "period": 144528, + "thread": 29 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 257279, + "thread": 8 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 484855, + "thread": 2 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 604526, + "thread": 22 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 681753, + "thread": 31 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 952446, + "thread": 16 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1106808, + "thread": 14 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1249637, + "thread": 9 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1336983, + "thread": 16 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1612660, + "thread": 0 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1677367, + "thread": 25 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 1880985, + "thread": 8 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2094747, + "thread": 16 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2249281, + "thread": 5 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2312656, + "thread": 25 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2559015, + "thread": 6 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2785354, + "thread": 9 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 2867305, + "thread": 26 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 3082029, + "thread": 17 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 3198532, + "thread": 5 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 3334720, + "thread": 30 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 3557061, + "thread": 18 + } + }, + { + "amount": "133.441671789", + "slot": { + "period": 3705228, + "thread": 21 + } + }, + { + "amount": "133.441671791", + "slot": { + "period": 3916676, + "thread": 19 + } + } + ], + "AU12j2SkPi74XoVtZEQay9hHcGE1JRDU824x7DSTMs3uHd3UkJK1i": [ + { + "amount": "318.896364584", + "slot": { + "period": 119582, + "thread": 26 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 243597, + "thread": 29 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 393412, + "thread": 10 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 624076, + "thread": 16 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 659146, + "thread": 4 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 927061, + "thread": 9 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 993430, + "thread": 27 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 1193657, + "thread": 17 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 1405373, + "thread": 11 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 1584174, + "thread": 15 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 1782125, + "thread": 3 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 1944282, + "thread": 29 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2020050, + "thread": 1 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2208812, + "thread": 12 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2373232, + "thread": 17 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2584659, + "thread": 2 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2667914, + "thread": 8 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 2833039, + "thread": 10 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 3060459, + "thread": 18 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 3221645, + "thread": 2 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 3447887, + "thread": 31 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 3494244, + "thread": 27 + } + }, + { + "amount": "318.896364584", + "slot": { + "period": 3710703, + "thread": 11 + } + }, + { + "amount": "318.896364595", + "slot": { + "period": 3794902, + "thread": 29 + } + } + ], + "AU12j3QsJTTrc1UboDG6fGT46RHLyG1y4aSpP4Pk24Nu4LFMTVbEq": [ + { + "amount": "245.200556165", + "slot": { + "period": 45183, + "thread": 26 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 314130, + "thread": 11 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 376053, + "thread": 17 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 652875, + "thread": 4 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 760548, + "thread": 5 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 930130, + "thread": 5 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1035021, + "thread": 6 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1179953, + "thread": 9 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1368192, + "thread": 21 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1629152, + "thread": 4 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1701996, + "thread": 14 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 1811626, + "thread": 4 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2136042, + "thread": 27 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2249621, + "thread": 22 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2357520, + "thread": 18 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2597031, + "thread": 28 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2675891, + "thread": 15 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2927450, + "thread": 28 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 2980607, + "thread": 28 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 3216903, + "thread": 19 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 3318980, + "thread": 22 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 3495808, + "thread": 16 + } + }, + { + "amount": "245.200556165", + "slot": { + "period": 3760713, + "thread": 8 + } + }, + { + "amount": "245.200556156", + "slot": { + "period": 3910519, + "thread": 25 + } + } + ], + "AU12j3R5MPXnqAYB2B8JQ428AX8BXDuNtuWgr4keYvvq7WvwAwgFW": [ + { + "amount": "199.497237806", + "slot": { + "period": 119487, + "thread": 13 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 258761, + "thread": 17 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 352907, + "thread": 25 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 560060, + "thread": 17 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 713898, + "thread": 2 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 849333, + "thread": 31 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1117101, + "thread": 12 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1156821, + "thread": 1 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1465836, + "thread": 27 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1627059, + "thread": 12 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1734204, + "thread": 22 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 1965597, + "thread": 11 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2106472, + "thread": 29 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2170620, + "thread": 9 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2460436, + "thread": 7 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2618720, + "thread": 0 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2715189, + "thread": 11 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 2942391, + "thread": 30 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 3059433, + "thread": 29 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 3168036, + "thread": 23 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 3323404, + "thread": 22 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 3460681, + "thread": 28 + } + }, + { + "amount": "199.497237806", + "slot": { + "period": 3651811, + "thread": 28 + } + }, + { + "amount": "199.497237796", + "slot": { + "period": 3795646, + "thread": 18 + } + } + ], + "AU12j3cKUubY49CX77fYSjgwr1Dy2jXZEuGmDsxCMakwH5DojxcH4": [ + { + "amount": "128.878506589", + "slot": { + "period": 51945, + "thread": 10 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 209823, + "thread": 9 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 349551, + "thread": 29 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 532756, + "thread": 29 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 709164, + "thread": 28 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 857340, + "thread": 12 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1045574, + "thread": 15 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1287812, + "thread": 8 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1399575, + "thread": 22 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1634022, + "thread": 10 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1653932, + "thread": 0 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 1913830, + "thread": 16 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2037652, + "thread": 25 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2293828, + "thread": 18 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2338414, + "thread": 25 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2475285, + "thread": 6 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2788671, + "thread": 19 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 2850957, + "thread": 4 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 3070340, + "thread": 7 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 3255126, + "thread": 27 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 3437992, + "thread": 27 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 3554301, + "thread": 14 + } + }, + { + "amount": "128.878506589", + "slot": { + "period": 3718621, + "thread": 4 + } + }, + { + "amount": "128.878506582", + "slot": { + "period": 3870622, + "thread": 17 + } + } + ], + "AU12j45KeakZe1YszTNyzCHhwuVD4QGmGPzxt7fEdSWktWAnRfFCg": [ + { + "amount": "548.334033431", + "slot": { + "period": 35250, + "thread": 7 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 271070, + "thread": 28 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 404002, + "thread": 3 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 599389, + "thread": 24 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 767756, + "thread": 24 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 875944, + "thread": 14 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1032030, + "thread": 9 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1180816, + "thread": 1 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1372288, + "thread": 1 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1561194, + "thread": 7 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1679898, + "thread": 17 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 1831848, + "thread": 15 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2068596, + "thread": 31 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2283633, + "thread": 31 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2434627, + "thread": 24 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2590930, + "thread": 3 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2715371, + "thread": 15 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 2817646, + "thread": 23 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3067373, + "thread": 2 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3168993, + "thread": 0 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3356592, + "thread": 14 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3515652, + "thread": 21 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3633022, + "thread": 30 + } + }, + { + "amount": "548.334033431", + "slot": { + "period": 3935036, + "thread": 19 + } + } + ], + "AU12j45oMEoM17XANnLSR7eQJm7WLcktw7Ywh8RJAKBUGgV2QaGuo": [ + { + "amount": "283.751474517", + "slot": { + "period": 115388, + "thread": 29 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 276059, + "thread": 9 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 491166, + "thread": 2 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 512014, + "thread": 31 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 654510, + "thread": 6 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 937707, + "thread": 23 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1000354, + "thread": 10 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1210922, + "thread": 10 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1450113, + "thread": 2 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1644521, + "thread": 18 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1674143, + "thread": 13 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 1905249, + "thread": 14 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2055463, + "thread": 2 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2219457, + "thread": 23 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2441768, + "thread": 17 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2608128, + "thread": 16 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2667519, + "thread": 24 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 2867727, + "thread": 26 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 3060136, + "thread": 4 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 3136980, + "thread": 30 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 3342694, + "thread": 26 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 3511006, + "thread": 20 + } + }, + { + "amount": "283.751474517", + "slot": { + "period": 3620298, + "thread": 24 + } + }, + { + "amount": "283.751474516", + "slot": { + "period": 3941021, + "thread": 14 + } + } + ], + "AU12j4RxcNzySA6zqzBDzxjH3Q5KFpVjEKZE5fY59YBwT7zTTmuYF": [ + { + "amount": "127.150473275", + "slot": { + "period": 47821, + "thread": 3 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 314131, + "thread": 0 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 389212, + "thread": 31 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 527476, + "thread": 2 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 758043, + "thread": 25 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 948926, + "thread": 24 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1141613, + "thread": 1 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1268545, + "thread": 14 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1444199, + "thread": 4 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1516705, + "thread": 21 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1797242, + "thread": 22 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 1872079, + "thread": 12 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2043043, + "thread": 0 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2235589, + "thread": 20 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2386174, + "thread": 28 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2559287, + "thread": 17 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2692874, + "thread": 12 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 2795971, + "thread": 1 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 3106979, + "thread": 11 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 3227741, + "thread": 7 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 3331378, + "thread": 25 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 3477453, + "thread": 19 + } + }, + { + "amount": "127.150473275", + "slot": { + "period": 3661689, + "thread": 2 + } + }, + { + "amount": "127.150473285", + "slot": { + "period": 3842286, + "thread": 16 + } + } + ], + "AU12j55QCsRiGr8AiKFh7yJ8Zc86Ck9zoMa97jDkMTC2EAY7683wa": [ + { + "amount": "257.794293715", + "slot": { + "period": 124180, + "thread": 11 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 311338, + "thread": 20 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 372500, + "thread": 16 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 501088, + "thread": 18 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 671225, + "thread": 20 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 839369, + "thread": 30 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1145313, + "thread": 29 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1167637, + "thread": 18 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1434711, + "thread": 3 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1548448, + "thread": 3 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1699416, + "thread": 5 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 1870285, + "thread": 30 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2101285, + "thread": 6 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2188120, + "thread": 30 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2372098, + "thread": 28 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2611969, + "thread": 21 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2665547, + "thread": 0 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 2811511, + "thread": 0 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 3115364, + "thread": 31 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 3180783, + "thread": 3 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 3293109, + "thread": 12 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 3540687, + "thread": 18 + } + }, + { + "amount": "257.794293715", + "slot": { + "period": 3725015, + "thread": 5 + } + }, + { + "amount": "257.794293706", + "slot": { + "period": 3914136, + "thread": 9 + } + } + ], + "AU12j5rQ5SsNMrwQFshcB8skjEXo2rCFik6mmqPeF2qZjnhDPttsC": [ + { + "amount": "106.644321306", + "slot": { + "period": 142575, + "thread": 31 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 291343, + "thread": 5 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 447891, + "thread": 1 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 504674, + "thread": 24 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 709627, + "thread": 3 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 891558, + "thread": 3 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1105651, + "thread": 1 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1153374, + "thread": 1 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1374323, + "thread": 16 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1638462, + "thread": 8 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1712137, + "thread": 29 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 1972495, + "thread": 7 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2116733, + "thread": 7 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2189470, + "thread": 31 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2320234, + "thread": 12 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2468543, + "thread": 10 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2697496, + "thread": 17 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2910993, + "thread": 16 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 2985002, + "thread": 0 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 3131945, + "thread": 28 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 3354832, + "thread": 10 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 3553072, + "thread": 6 + } + }, + { + "amount": "106.644321306", + "slot": { + "period": 3625115, + "thread": 6 + } + }, + { + "amount": "106.644321294", + "slot": { + "period": 3934643, + "thread": 17 + } + } + ], + "AU12j6JssbxaQhS4gojvgELeAzDdkafKgTSdhUxpNBWqWhbfJTJ5E": [ + { + "amount": "62.332362361", + "slot": { + "period": 19167, + "thread": 5 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 206530, + "thread": 21 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 442212, + "thread": 14 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 581015, + "thread": 11 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 706355, + "thread": 17 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 928779, + "thread": 25 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1097243, + "thread": 11 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1163028, + "thread": 4 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1323942, + "thread": 14 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1606864, + "thread": 10 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1751138, + "thread": 3 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 1860315, + "thread": 4 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2109168, + "thread": 8 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2164990, + "thread": 8 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2425756, + "thread": 20 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2613305, + "thread": 25 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2760961, + "thread": 5 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 2818236, + "thread": 22 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 3120288, + "thread": 9 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 3236689, + "thread": 20 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 3373672, + "thread": 22 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 3559959, + "thread": 20 + } + }, + { + "amount": "62.332362361", + "slot": { + "period": 3700647, + "thread": 11 + } + }, + { + "amount": "62.332362362", + "slot": { + "period": 3859697, + "thread": 26 + } + } + ], + "AU12j77nLYzzEErbX5zdDBzKjXonJGxa8PmnPq9CbR7ZybLDHSAEd": [ + { + "amount": "316.702639249", + "slot": { + "period": 151889, + "thread": 16 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 302414, + "thread": 30 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 422189, + "thread": 8 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 572228, + "thread": 11 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 764099, + "thread": 4 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 859627, + "thread": 1 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 997139, + "thread": 17 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 1222331, + "thread": 10 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 1328278, + "thread": 20 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 1494702, + "thread": 9 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 1709372, + "thread": 18 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 1816736, + "thread": 31 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2086471, + "thread": 31 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2243121, + "thread": 18 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2348345, + "thread": 3 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2512873, + "thread": 24 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2780069, + "thread": 17 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2848836, + "thread": 30 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 2957457, + "thread": 28 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 3257136, + "thread": 25 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 3292418, + "thread": 4 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 3611619, + "thread": 28 + } + }, + { + "amount": "316.702639249", + "slot": { + "period": 3740701, + "thread": 12 + } + }, + { + "amount": "316.702639239", + "slot": { + "period": 3882216, + "thread": 21 + } + } + ], + "AU12j8q14Zpk1VbVD1PsHXhkSipZwaX7agEnUXMZniDyBzpYJ3YYC": [ + { + "amount": "146.085805185", + "slot": { + "period": 137593, + "thread": 16 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 271087, + "thread": 26 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 420542, + "thread": 3 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 623182, + "thread": 6 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 806433, + "thread": 6 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 916137, + "thread": 16 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1016845, + "thread": 0 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1250979, + "thread": 14 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1432646, + "thread": 27 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1565939, + "thread": 29 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1685204, + "thread": 3 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 1862685, + "thread": 24 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2112941, + "thread": 30 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2212690, + "thread": 27 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2299656, + "thread": 25 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2585914, + "thread": 4 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2636492, + "thread": 27 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 2809301, + "thread": 18 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 3073999, + "thread": 27 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 3283010, + "thread": 7 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 3343889, + "thread": 13 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 3478223, + "thread": 29 + } + }, + { + "amount": "146.085805185", + "slot": { + "period": 3670246, + "thread": 11 + } + }, + { + "amount": "146.085805174", + "slot": { + "period": 3808896, + "thread": 26 + } + } + ], + "AU12j9Y3RccEFME4qPHpjPcoJVTiotEUYP5wEbqftvr2BbZitJ4w5": [ + { + "amount": "255.529035202", + "slot": { + "period": 17156, + "thread": 14 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 199938, + "thread": 31 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 427582, + "thread": 29 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 556804, + "thread": 11 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 743141, + "thread": 6 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 974924, + "thread": 12 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1064758, + "thread": 6 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1255520, + "thread": 30 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1478660, + "thread": 2 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1638852, + "thread": 16 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1697482, + "thread": 4 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 1952295, + "thread": 21 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2027618, + "thread": 11 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2215376, + "thread": 16 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2433328, + "thread": 23 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2594080, + "thread": 12 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2703383, + "thread": 18 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 2920976, + "thread": 4 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 3065994, + "thread": 29 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 3279207, + "thread": 27 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 3349116, + "thread": 6 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 3572399, + "thread": 15 + } + }, + { + "amount": "255.529035202", + "slot": { + "period": 3705245, + "thread": 31 + } + }, + { + "amount": "255.529035205", + "slot": { + "period": 3859403, + "thread": 2 + } + } + ], + "AU12jATmkmZiNJGsHEJeFaEkVUAzrT9tvv8AWfwMViCdNyZe2xwFG": [ + { + "amount": "75.194224599", + "slot": { + "period": 13960, + "thread": 27 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 261260, + "thread": 17 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 396182, + "thread": 24 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 598414, + "thread": 21 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 789749, + "thread": 0 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 827790, + "thread": 8 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1044731, + "thread": 31 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1279940, + "thread": 6 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1467500, + "thread": 17 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1599264, + "thread": 9 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1751884, + "thread": 19 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 1892991, + "thread": 28 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2009525, + "thread": 6 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2250108, + "thread": 15 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2375873, + "thread": 18 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2608648, + "thread": 4 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2759025, + "thread": 10 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 2796443, + "thread": 24 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 3051813, + "thread": 17 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 3285147, + "thread": 22 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 3337152, + "thread": 20 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 3604362, + "thread": 6 + } + }, + { + "amount": "75.194224599", + "slot": { + "period": 3689825, + "thread": 6 + } + }, + { + "amount": "75.194224600", + "slot": { + "period": 3895115, + "thread": 27 + } + } + ], + "AU12jArqjyVT6kPkRvGQBXuTzC1M3BbmqPG4KMBTEa4Kuqb8VVgRi": [ + { + "amount": "220.670449409", + "slot": { + "period": 15752, + "thread": 20 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 259785, + "thread": 27 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 383051, + "thread": 13 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 592406, + "thread": 1 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 786966, + "thread": 15 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 958806, + "thread": 14 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 994916, + "thread": 24 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 1262660, + "thread": 13 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 1420528, + "thread": 0 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 1507731, + "thread": 26 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 1734855, + "thread": 22 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 1974553, + "thread": 19 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2116262, + "thread": 14 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2235337, + "thread": 31 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2373707, + "thread": 9 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2501723, + "thread": 8 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2761562, + "thread": 21 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2852283, + "thread": 25 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 2979954, + "thread": 11 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 3130678, + "thread": 15 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 3361898, + "thread": 30 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 3507266, + "thread": 8 + } + }, + { + "amount": "220.670449409", + "slot": { + "period": 3701660, + "thread": 22 + } + }, + { + "amount": "220.670449416", + "slot": { + "period": 3855283, + "thread": 16 + } + } + ], + "AU12jAtkAhi9gqwZLaUDLnhrhfYVZJG9xEukmSnUt4W15AjdKp5XH": [ + { + "amount": "100.162742064", + "slot": { + "period": 36391, + "thread": 17 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 177962, + "thread": 7 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 347087, + "thread": 2 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 574871, + "thread": 17 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 745108, + "thread": 11 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 941896, + "thread": 3 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 998155, + "thread": 30 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 1296870, + "thread": 31 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 1345347, + "thread": 16 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 1570792, + "thread": 18 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 1736533, + "thread": 30 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 1970061, + "thread": 1 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2032544, + "thread": 18 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2250796, + "thread": 25 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2364669, + "thread": 14 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2492678, + "thread": 10 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2695905, + "thread": 15 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 2907280, + "thread": 31 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 3015271, + "thread": 16 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 3177239, + "thread": 19 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 3422988, + "thread": 6 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 3527246, + "thread": 23 + } + }, + { + "amount": "100.162742064", + "slot": { + "period": 3759109, + "thread": 20 + } + }, + { + "amount": "100.162742071", + "slot": { + "period": 3889138, + "thread": 30 + } + } + ], + "AU12jAuiKZjcAQfkJK3PQsAxV5jPttikSP2w7xmGqEFJWzYNVzfqS": [ + { + "amount": "66.390956762", + "slot": { + "period": 48880, + "thread": 24 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 175766, + "thread": 14 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 402145, + "thread": 0 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 627657, + "thread": 23 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 791680, + "thread": 2 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 961157, + "thread": 31 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1033424, + "thread": 23 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1231169, + "thread": 24 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1363640, + "thread": 12 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1626446, + "thread": 14 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1777642, + "thread": 22 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 1917547, + "thread": 0 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2044017, + "thread": 30 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2283064, + "thread": 17 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2345164, + "thread": 21 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2483646, + "thread": 17 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2733636, + "thread": 23 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 2910650, + "thread": 27 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 3091144, + "thread": 9 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 3130212, + "thread": 12 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 3294731, + "thread": 24 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 3593366, + "thread": 7 + } + }, + { + "amount": "66.390956762", + "slot": { + "period": 3651942, + "thread": 4 + } + }, + { + "amount": "66.390956765", + "slot": { + "period": 3816557, + "thread": 31 + } + } + ], + "AU12jBb7UU1zF8zznRwLAZKV7MpiEk2JmPnnMmo5Jbr1N3RqErAeM": [ + { + "amount": "191.498498002", + "slot": { + "period": 121653, + "thread": 27 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 301646, + "thread": 24 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 483375, + "thread": 29 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 593527, + "thread": 15 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 689092, + "thread": 23 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 943458, + "thread": 1 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1115058, + "thread": 18 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1309264, + "thread": 9 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1454598, + "thread": 29 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1492713, + "thread": 16 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1708306, + "thread": 16 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1967102, + "thread": 2 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 1990368, + "thread": 29 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2222677, + "thread": 21 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2298139, + "thread": 26 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2502239, + "thread": 0 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2778052, + "thread": 13 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2952052, + "thread": 26 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 2972632, + "thread": 26 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 3241284, + "thread": 30 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 3403203, + "thread": 9 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 3572882, + "thread": 3 + } + }, + { + "amount": "191.498498002", + "slot": { + "period": 3629672, + "thread": 15 + } + }, + { + "amount": "191.498498010", + "slot": { + "period": 3869539, + "thread": 25 + } + } + ], + "AU12jBdBpYSvjgbvXEZYoqCazwSXEm5mdLGBUvKNFastED1hAqMgD": [ + { + "amount": "57.258046472", + "slot": { + "period": 154639, + "thread": 8 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 237478, + "thread": 20 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 475820, + "thread": 1 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 494640, + "thread": 16 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 685025, + "thread": 17 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 915205, + "thread": 14 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1012716, + "thread": 18 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1272513, + "thread": 8 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1383931, + "thread": 30 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1527775, + "thread": 31 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1766813, + "thread": 3 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 1923667, + "thread": 26 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2093425, + "thread": 6 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2200057, + "thread": 16 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2299986, + "thread": 21 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2566222, + "thread": 12 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2690477, + "thread": 4 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 2928730, + "thread": 23 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 3036412, + "thread": 28 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 3141799, + "thread": 13 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 3344220, + "thread": 11 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 3508056, + "thread": 21 + } + }, + { + "amount": "57.258046472", + "slot": { + "period": 3690160, + "thread": 14 + } + }, + { + "amount": "57.258046480", + "slot": { + "period": 3876464, + "thread": 28 + } + } + ], + "AU12jCMP8MbjYNyy4mi6xwgiXz8G6jFK6q1wMuF3xzTDinCDUWHj9": [ + { + "amount": "126.826619293", + "slot": { + "period": 98070, + "thread": 15 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 283647, + "thread": 6 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 447818, + "thread": 30 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 509920, + "thread": 13 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 812305, + "thread": 15 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 924737, + "thread": 23 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 995484, + "thread": 11 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 1284386, + "thread": 18 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 1323538, + "thread": 3 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 1590546, + "thread": 15 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 1744945, + "thread": 29 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 1919506, + "thread": 27 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2033807, + "thread": 19 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2257861, + "thread": 21 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2451011, + "thread": 9 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2551837, + "thread": 6 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2693856, + "thread": 23 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2945365, + "thread": 29 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 2971156, + "thread": 2 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 3184413, + "thread": 6 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 3344438, + "thread": 17 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 3607514, + "thread": 25 + } + }, + { + "amount": "126.826619293", + "slot": { + "period": 3665678, + "thread": 30 + } + }, + { + "amount": "126.826619302", + "slot": { + "period": 3815901, + "thread": 7 + } + } + ], + "AU12jEL7uLunzaj7yZMrYELk4DdHncMjxVzhr5spH7mqAX8fEHpD7": [ + { + "amount": "172.202467668", + "slot": { + "period": 135327, + "thread": 18 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 236971, + "thread": 7 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 366553, + "thread": 27 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 563808, + "thread": 2 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 788225, + "thread": 0 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 917484, + "thread": 16 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1073862, + "thread": 30 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1263541, + "thread": 4 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1350409, + "thread": 15 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1602138, + "thread": 0 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1774913, + "thread": 23 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1969932, + "thread": 25 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 1994304, + "thread": 18 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 2293518, + "thread": 24 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 2319554, + "thread": 31 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 2520644, + "thread": 11 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 2749140, + "thread": 21 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 2828780, + "thread": 0 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 3104804, + "thread": 19 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 3246963, + "thread": 16 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 3399325, + "thread": 21 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 3597500, + "thread": 29 + } + }, + { + "amount": "172.202467668", + "slot": { + "period": 3656287, + "thread": 25 + } + }, + { + "amount": "172.202467679", + "slot": { + "period": 3912842, + "thread": 2 + } + } + ], + "AU12jETw5AWgQAN4j9tL91USMzwNqsaUwWWff5kwCtk9mHFe4gCHw": [ + { + "amount": "457.198289907", + "slot": { + "period": 135844, + "thread": 25 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 249535, + "thread": 8 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 393146, + "thread": 23 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 627562, + "thread": 23 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 667783, + "thread": 18 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 833633, + "thread": 13 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1021232, + "thread": 8 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1277350, + "thread": 5 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1372347, + "thread": 19 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1581775, + "thread": 26 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1806292, + "thread": 14 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 1903156, + "thread": 8 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2019717, + "thread": 18 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2245483, + "thread": 26 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2441980, + "thread": 18 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2567648, + "thread": 19 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2737399, + "thread": 4 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2946643, + "thread": 3 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 2995984, + "thread": 0 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 3211892, + "thread": 21 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 3405774, + "thread": 16 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 3575365, + "thread": 23 + } + }, + { + "amount": "457.198289907", + "slot": { + "period": 3620123, + "thread": 25 + } + }, + { + "amount": "457.198289915", + "slot": { + "period": 3932279, + "thread": 20 + } + } + ], + "AU12jFAWwGQPShqAi2rgLkvRQnX44jnxyuzb2Y3AnJwytzwMTSVG6": [ + { + "amount": "59.882390425", + "slot": { + "period": 52539, + "thread": 7 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 314263, + "thread": 23 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 381314, + "thread": 28 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 494063, + "thread": 13 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 713426, + "thread": 1 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 950454, + "thread": 21 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1051520, + "thread": 23 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1295851, + "thread": 17 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1404515, + "thread": 29 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1520042, + "thread": 15 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1806120, + "thread": 6 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 1946898, + "thread": 10 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2057055, + "thread": 9 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2283945, + "thread": 30 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2353599, + "thread": 9 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2498525, + "thread": 25 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2643818, + "thread": 2 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 2823415, + "thread": 20 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 3107541, + "thread": 1 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 3173285, + "thread": 28 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 3440378, + "thread": 12 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 3452158, + "thread": 13 + } + }, + { + "amount": "59.882390425", + "slot": { + "period": 3733592, + "thread": 2 + } + }, + { + "amount": "59.882390415", + "slot": { + "period": 3818876, + "thread": 29 + } + } + ], + "AU12jFTBdDqFFtNftyTJ5bvoFGGRFBpWFrgXQ5nFDCAzVW92NoznB": [ + { + "amount": "153.028589930", + "slot": { + "period": 29676, + "thread": 6 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 186247, + "thread": 28 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 466951, + "thread": 1 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 496582, + "thread": 18 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 726807, + "thread": 16 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 844095, + "thread": 29 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 987576, + "thread": 29 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 1285588, + "thread": 28 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 1437235, + "thread": 3 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 1506463, + "thread": 2 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 1737592, + "thread": 5 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 1971428, + "thread": 28 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2005841, + "thread": 10 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2206253, + "thread": 6 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2309720, + "thread": 14 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2552064, + "thread": 19 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2697564, + "thread": 13 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 2849260, + "thread": 10 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 3038149, + "thread": 1 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 3214605, + "thread": 14 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 3298320, + "thread": 26 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 3496879, + "thread": 5 + } + }, + { + "amount": "153.028589930", + "slot": { + "period": 3768647, + "thread": 4 + } + }, + { + "amount": "153.028589933", + "slot": { + "period": 3943782, + "thread": 21 + } + } + ], + "AU12jFVA5SJbVcXFB7ygzwkSKyrkuSKfqZYhi6iZot8JUguLP4QBL": [ + { + "amount": "152.559142989", + "slot": { + "period": 92455, + "thread": 16 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 279570, + "thread": 30 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 462041, + "thread": 7 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 581160, + "thread": 0 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 730243, + "thread": 7 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 858480, + "thread": 26 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1111798, + "thread": 3 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1155061, + "thread": 6 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1440273, + "thread": 18 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1488260, + "thread": 8 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1804356, + "thread": 17 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 1969772, + "thread": 27 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2002987, + "thread": 1 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2288677, + "thread": 13 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2328445, + "thread": 25 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2592307, + "thread": 7 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2775976, + "thread": 29 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 2854348, + "thread": 20 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 3079919, + "thread": 14 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 3174559, + "thread": 27 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 3320734, + "thread": 21 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 3514722, + "thread": 28 + } + }, + { + "amount": "152.559142989", + "slot": { + "period": 3722297, + "thread": 22 + } + }, + { + "amount": "152.559142982", + "slot": { + "period": 3798212, + "thread": 23 + } + } + ], + "AU12jFnJXDdaHJjoWAzw7DMKPYdA44YCjikqnpgqKuV8vVB4XjEmM": [ + { + "amount": "104.956589358", + "slot": { + "period": 45293, + "thread": 16 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 316596, + "thread": 20 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 408285, + "thread": 25 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 618490, + "thread": 1 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 733107, + "thread": 21 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 873489, + "thread": 12 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 986072, + "thread": 21 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 1245751, + "thread": 16 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 1406536, + "thread": 16 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 1557104, + "thread": 9 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 1669550, + "thread": 19 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 1892303, + "thread": 23 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2057556, + "thread": 15 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2238792, + "thread": 7 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2408070, + "thread": 14 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2504902, + "thread": 5 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2740030, + "thread": 2 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 2862241, + "thread": 1 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 3114022, + "thread": 3 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 3226357, + "thread": 5 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 3364314, + "thread": 31 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 3532888, + "thread": 9 + } + }, + { + "amount": "104.956589358", + "slot": { + "period": 3747695, + "thread": 8 + } + }, + { + "amount": "104.956589362", + "slot": { + "period": 3899673, + "thread": 8 + } + } + ], + "AU12jFnkKAGQSxfxXdBzZYRGc39HAWoWz1iJNtquZDowdJJtSuDYQ": [ + { + "amount": "136.591561242", + "slot": { + "period": 12862, + "thread": 8 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 255969, + "thread": 20 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 381683, + "thread": 13 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 652112, + "thread": 15 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 782583, + "thread": 29 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 940139, + "thread": 8 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1094245, + "thread": 11 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1152554, + "thread": 0 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1322111, + "thread": 10 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1578251, + "thread": 24 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1685721, + "thread": 10 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 1873876, + "thread": 11 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2099533, + "thread": 17 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2175076, + "thread": 4 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2403126, + "thread": 27 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2511925, + "thread": 11 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2785606, + "thread": 31 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 2935536, + "thread": 6 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 3007208, + "thread": 17 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 3202959, + "thread": 8 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 3292535, + "thread": 31 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 3519158, + "thread": 1 + } + }, + { + "amount": "136.591561242", + "slot": { + "period": 3658898, + "thread": 1 + } + }, + { + "amount": "136.591561237", + "slot": { + "period": 3825283, + "thread": 18 + } + } + ], + "AU12jG4rQ4zn6oqC1tEVzSEzST17pVmsgSREXE1q4mgYYBKanA9ju": [ + { + "amount": "494.853673074", + "slot": { + "period": 162425, + "thread": 16 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 294099, + "thread": 21 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 339560, + "thread": 28 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 558125, + "thread": 18 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 775357, + "thread": 24 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 955690, + "thread": 1 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1098828, + "thread": 7 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1238454, + "thread": 13 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1408594, + "thread": 2 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1513596, + "thread": 16 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1734668, + "thread": 7 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1967360, + "thread": 20 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 1996287, + "thread": 10 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2172324, + "thread": 26 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2326365, + "thread": 1 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2569618, + "thread": 28 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2635923, + "thread": 5 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2874808, + "thread": 15 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 2987661, + "thread": 27 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 3226353, + "thread": 25 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 3423289, + "thread": 16 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 3508894, + "thread": 18 + } + }, + { + "amount": "494.853673074", + "slot": { + "period": 3627823, + "thread": 25 + } + }, + { + "amount": "494.853673072", + "slot": { + "period": 3846794, + "thread": 15 + } + } + ], + "AU12jGCaZZ4Dn7CDKczEvAwGU1LtHQcbGNkYSwKTVjkEcQNDrj48N": [ + { + "amount": "137.896170624", + "slot": { + "period": 101787, + "thread": 22 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 226396, + "thread": 16 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 368468, + "thread": 29 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 573354, + "thread": 8 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 694688, + "thread": 7 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 937435, + "thread": 14 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1005976, + "thread": 12 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1213469, + "thread": 2 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1477545, + "thread": 3 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1548303, + "thread": 17 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1767127, + "thread": 12 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 1814730, + "thread": 26 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2109441, + "thread": 0 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2252889, + "thread": 18 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2309418, + "thread": 16 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2538586, + "thread": 29 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2672273, + "thread": 16 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 2933048, + "thread": 31 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 3120899, + "thread": 23 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 3189011, + "thread": 11 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 3292465, + "thread": 12 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 3543667, + "thread": 29 + } + }, + { + "amount": "137.896170624", + "slot": { + "period": 3741122, + "thread": 17 + } + }, + { + "amount": "137.896170621", + "slot": { + "period": 3813068, + "thread": 1 + } + } + ], + "AU12jL8GrKvr3cEj7pYugckHYYUni8wkPKjDwBwzsDkA1SrWWcezQ": [ + { + "amount": "133.843478264", + "slot": { + "period": 77558, + "thread": 17 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 215980, + "thread": 31 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 444160, + "thread": 21 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 526549, + "thread": 31 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 755346, + "thread": 16 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 836328, + "thread": 13 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1069853, + "thread": 27 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1284370, + "thread": 21 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1349764, + "thread": 12 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1481842, + "thread": 24 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1717523, + "thread": 21 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 1873014, + "thread": 31 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2104701, + "thread": 9 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2217694, + "thread": 15 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2403519, + "thread": 7 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2606697, + "thread": 31 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2637123, + "thread": 1 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 2921643, + "thread": 29 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 3041382, + "thread": 4 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 3275742, + "thread": 25 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 3355730, + "thread": 23 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 3511669, + "thread": 21 + } + }, + { + "amount": "133.843478264", + "slot": { + "period": 3682835, + "thread": 9 + } + }, + { + "amount": "133.843478268", + "slot": { + "period": 3788437, + "thread": 19 + } + } + ], + "AU12jLZpRBFwGsqXQaWaWbAYwzvMwNx8pWq1TJG65T7RBjzxKZS5k": [ + { + "amount": "633.322580323", + "slot": { + "period": 133927, + "thread": 20 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 280376, + "thread": 18 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 468437, + "thread": 3 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 577176, + "thread": 15 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 685958, + "thread": 3 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 876627, + "thread": 14 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 995796, + "thread": 21 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 1208459, + "thread": 27 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 1384547, + "thread": 11 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 1579221, + "thread": 11 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 1741203, + "thread": 9 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 1970137, + "thread": 24 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2029525, + "thread": 9 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2230427, + "thread": 20 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2395587, + "thread": 20 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2593519, + "thread": 28 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2749477, + "thread": 24 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 2844947, + "thread": 24 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 3014319, + "thread": 8 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 3177816, + "thread": 0 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 3368224, + "thread": 5 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 3505481, + "thread": 29 + } + }, + { + "amount": "633.322580323", + "slot": { + "period": 3745485, + "thread": 31 + } + }, + { + "amount": "633.322580334", + "slot": { + "period": 3841898, + "thread": 1 + } + } + ], + "AU12jMDX4mLnaiSU2MCycnodT6ga8PtLKyVm6dppjRnh2M4xTFreV": [ + { + "amount": "113.537811311", + "slot": { + "period": 158579, + "thread": 21 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 296870, + "thread": 6 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 441460, + "thread": 10 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 633213, + "thread": 4 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 653426, + "thread": 14 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 927297, + "thread": 25 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1080929, + "thread": 15 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1314504, + "thread": 0 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1416588, + "thread": 7 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1644029, + "thread": 20 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1667387, + "thread": 21 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 1846580, + "thread": 25 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2042154, + "thread": 18 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2169636, + "thread": 25 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2371881, + "thread": 1 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2622040, + "thread": 29 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2656313, + "thread": 18 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2880959, + "thread": 9 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 2962515, + "thread": 27 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 3195942, + "thread": 3 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 3397089, + "thread": 29 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 3546365, + "thread": 1 + } + }, + { + "amount": "113.537811311", + "slot": { + "period": 3622555, + "thread": 26 + } + }, + { + "amount": "113.537811313", + "slot": { + "period": 3898852, + "thread": 0 + } + } + ], + "AU12jMGzVDiHDnWehZiE5rDEHnp7ouM69WDAETCxPLz1KLaU5ztYr": [ + { + "amount": "363.530307989", + "slot": { + "period": 132748, + "thread": 21 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 226359, + "thread": 5 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 467468, + "thread": 23 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 594055, + "thread": 0 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 817088, + "thread": 0 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 879835, + "thread": 25 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1042453, + "thread": 14 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1192196, + "thread": 12 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1434242, + "thread": 24 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1601764, + "thread": 17 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1668530, + "thread": 14 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 1823524, + "thread": 10 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2024665, + "thread": 15 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2262118, + "thread": 27 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2436521, + "thread": 14 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2585079, + "thread": 10 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2689290, + "thread": 9 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 2937566, + "thread": 31 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 3112634, + "thread": 25 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 3158036, + "thread": 26 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 3346284, + "thread": 26 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 3572699, + "thread": 7 + } + }, + { + "amount": "363.530307989", + "slot": { + "period": 3634808, + "thread": 26 + } + }, + { + "amount": "363.530307983", + "slot": { + "period": 3817789, + "thread": 19 + } + } + ], + "AU12jNHdq9X4LcMAAg8nTQKBC4c7Nq5jD6x74JikKH4cUn1ZHjvUr": [ + { + "amount": "512.051912756", + "slot": { + "period": 111154, + "thread": 1 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 228024, + "thread": 26 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 368675, + "thread": 18 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 649817, + "thread": 1 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 727136, + "thread": 14 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 938269, + "thread": 13 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1007634, + "thread": 30 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1179925, + "thread": 16 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1405642, + "thread": 0 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1487239, + "thread": 11 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1705288, + "thread": 19 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 1826791, + "thread": 19 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2093652, + "thread": 31 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2218330, + "thread": 1 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2336824, + "thread": 1 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2540068, + "thread": 3 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2643001, + "thread": 5 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2897423, + "thread": 19 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 2964573, + "thread": 16 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 3182480, + "thread": 30 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 3327322, + "thread": 23 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 3565469, + "thread": 11 + } + }, + { + "amount": "512.051912756", + "slot": { + "period": 3667415, + "thread": 5 + } + }, + { + "amount": "512.051912755", + "slot": { + "period": 3869716, + "thread": 17 + } + } + ], + "AU12jNKzZ1K7VF7inon93fGV2mQJHWee4QMhrMSbLYLyJWWCosQT1": [ + { + "amount": "90.612286895", + "slot": { + "period": 112634, + "thread": 1 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 235442, + "thread": 20 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 440182, + "thread": 9 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 511402, + "thread": 29 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 800820, + "thread": 20 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 963810, + "thread": 0 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1114506, + "thread": 8 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1174198, + "thread": 23 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1467467, + "thread": 16 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1607162, + "thread": 10 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1669161, + "thread": 11 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 1851906, + "thread": 9 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2038884, + "thread": 14 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2143963, + "thread": 10 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2459587, + "thread": 21 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2500648, + "thread": 13 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2673523, + "thread": 20 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 2951604, + "thread": 26 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 3029630, + "thread": 30 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 3184468, + "thread": 23 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 3319991, + "thread": 28 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 3598415, + "thread": 23 + } + }, + { + "amount": "90.612286895", + "slot": { + "period": 3770772, + "thread": 18 + } + }, + { + "amount": "90.612286884", + "slot": { + "period": 3869669, + "thread": 28 + } + } + ], + "AU12jPwX3r3jcS2s7Q7TFyB1YyJYuT9bAWzP7vV9Pk7xiQzHrsUJP": [ + { + "amount": "409.168883941", + "slot": { + "period": 90918, + "thread": 10 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 323927, + "thread": 20 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 366486, + "thread": 6 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 565438, + "thread": 20 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 812995, + "thread": 31 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 957861, + "thread": 5 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1004263, + "thread": 20 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1269173, + "thread": 8 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1320145, + "thread": 30 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1503627, + "thread": 10 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1665346, + "thread": 31 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1818691, + "thread": 12 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 1997979, + "thread": 24 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2259667, + "thread": 16 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2349910, + "thread": 25 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2543551, + "thread": 7 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2772158, + "thread": 23 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2924024, + "thread": 16 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 2954848, + "thread": 31 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 3179061, + "thread": 7 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 3394792, + "thread": 12 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 3572350, + "thread": 8 + } + }, + { + "amount": "409.168883941", + "slot": { + "period": 3634948, + "thread": 26 + } + }, + { + "amount": "409.168883938", + "slot": { + "period": 3816194, + "thread": 12 + } + } + ], + "AU12jScJNqgQKVqZK7hPnDMnUxkHkCrf9i9gmaaqt6kAUDgLfa4n": [ + { + "amount": "108.125591003", + "slot": { + "period": 124246, + "thread": 30 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 252910, + "thread": 26 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 351795, + "thread": 14 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 596212, + "thread": 29 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 812113, + "thread": 1 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 904433, + "thread": 12 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 997356, + "thread": 25 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 1199923, + "thread": 0 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 1427387, + "thread": 5 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 1534990, + "thread": 27 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 1776886, + "thread": 23 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 1953353, + "thread": 26 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2026379, + "thread": 31 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2272035, + "thread": 12 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2384060, + "thread": 31 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2469969, + "thread": 17 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2704646, + "thread": 29 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 2811336, + "thread": 10 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 3050852, + "thread": 7 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 3176850, + "thread": 31 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 3376838, + "thread": 22 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 3499354, + "thread": 21 + } + }, + { + "amount": "108.125591003", + "slot": { + "period": 3719057, + "thread": 31 + } + }, + { + "amount": "108.125590995", + "slot": { + "period": 3918291, + "thread": 7 + } + } + ], + "AU12jSgkHGsbwEpEkZMjdxbck2Sd8yoAEshc233scgggsvaCFUnWy": [ + { + "amount": "126.906700732", + "slot": { + "period": 118432, + "thread": 12 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 296589, + "thread": 18 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 431460, + "thread": 4 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 602769, + "thread": 9 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 813459, + "thread": 4 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 828618, + "thread": 12 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1051947, + "thread": 7 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1201412, + "thread": 7 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1327034, + "thread": 17 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1528726, + "thread": 9 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1685599, + "thread": 22 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1821895, + "thread": 24 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 1981976, + "thread": 13 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 2198512, + "thread": 11 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 2391244, + "thread": 21 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 2554742, + "thread": 5 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 2715857, + "thread": 28 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 2826561, + "thread": 14 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 3042924, + "thread": 4 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 3201098, + "thread": 5 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 3430930, + "thread": 7 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 3506855, + "thread": 14 + } + }, + { + "amount": "126.906700732", + "slot": { + "period": 3738055, + "thread": 1 + } + }, + { + "amount": "126.906700728", + "slot": { + "period": 3917466, + "thread": 3 + } + } + ], + "AU12jTG5BZ3iKTxWJC3zenGr7geQuft3dCd9YsLptmN3nMdiPULyj": [ + { + "amount": "126.179287428", + "slot": { + "period": 40913, + "thread": 8 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 280482, + "thread": 25 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 352230, + "thread": 17 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 633669, + "thread": 21 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 722458, + "thread": 27 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 899786, + "thread": 18 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1075824, + "thread": 8 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1219530, + "thread": 6 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1370263, + "thread": 20 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1570667, + "thread": 26 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1666647, + "thread": 12 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1865557, + "thread": 21 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 1976850, + "thread": 23 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 2277957, + "thread": 31 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 2314240, + "thread": 29 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 2464066, + "thread": 3 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 2636573, + "thread": 30 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 2795112, + "thread": 15 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 3102337, + "thread": 10 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 3136603, + "thread": 28 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 3376932, + "thread": 4 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 3548527, + "thread": 12 + } + }, + { + "amount": "126.179287428", + "slot": { + "period": 3727607, + "thread": 6 + } + }, + { + "amount": "126.179287416", + "slot": { + "period": 3814321, + "thread": 2 + } + } + ], + "AU12jUgBpeE1ZGaFHc1nvjKt1heNkegLeQ2dr9gK5ecmREn8ezwuE": [ + { + "amount": "216.390578399", + "slot": { + "period": 94230, + "thread": 31 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 304350, + "thread": 12 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 474631, + "thread": 14 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 613455, + "thread": 22 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 681135, + "thread": 7 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 880791, + "thread": 30 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1081964, + "thread": 7 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1304977, + "thread": 17 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1414569, + "thread": 12 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1505057, + "thread": 13 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1771785, + "thread": 10 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 1974741, + "thread": 24 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2009357, + "thread": 11 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2185288, + "thread": 5 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2405173, + "thread": 5 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2557455, + "thread": 8 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2732891, + "thread": 19 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2867006, + "thread": 20 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 2982182, + "thread": 0 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 3124042, + "thread": 8 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 3368302, + "thread": 18 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 3609639, + "thread": 21 + } + }, + { + "amount": "216.390578399", + "slot": { + "period": 3701261, + "thread": 12 + } + }, + { + "amount": "216.390578396", + "slot": { + "period": 3911815, + "thread": 18 + } + } + ], + "AU12jVNjme1F1bZkT784U9qf8Tz6348nnrCLYSzS2xDXrDd7c5UTT": [ + { + "amount": "60.065812677", + "slot": { + "period": 131615, + "thread": 21 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 210711, + "thread": 24 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 377739, + "thread": 11 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 630041, + "thread": 3 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 745536, + "thread": 28 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 955322, + "thread": 4 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1070798, + "thread": 20 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1204457, + "thread": 29 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1403760, + "thread": 12 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1554146, + "thread": 3 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1716759, + "thread": 20 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 1828262, + "thread": 22 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2140530, + "thread": 7 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2197609, + "thread": 16 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2365381, + "thread": 30 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2557037, + "thread": 24 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2740333, + "thread": 26 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2952948, + "thread": 14 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 2985507, + "thread": 8 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 3276176, + "thread": 19 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 3296895, + "thread": 23 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 3548635, + "thread": 2 + } + }, + { + "amount": "60.065812677", + "slot": { + "period": 3686459, + "thread": 15 + } + }, + { + "amount": "60.065812678", + "slot": { + "period": 3886255, + "thread": 14 + } + } + ], + "AU12jVZ5NTrRTXLJC9r98YFR9pSrLA5KHbKD56bo7biUPGfWYGjHV": [ + { + "amount": "480.756888745", + "slot": { + "period": 30758, + "thread": 8 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 263743, + "thread": 27 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 455753, + "thread": 23 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 555938, + "thread": 12 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 797734, + "thread": 30 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 856296, + "thread": 31 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1092717, + "thread": 8 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1221383, + "thread": 6 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1378920, + "thread": 24 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1507151, + "thread": 26 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1712099, + "thread": 21 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1899740, + "thread": 10 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 1986290, + "thread": 24 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 2201477, + "thread": 17 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 2376200, + "thread": 2 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 2518357, + "thread": 7 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 2644282, + "thread": 9 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 2875319, + "thread": 23 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 3109867, + "thread": 9 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 3121257, + "thread": 3 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 3292442, + "thread": 25 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 3505157, + "thread": 1 + } + }, + { + "amount": "480.756888745", + "slot": { + "period": 3758603, + "thread": 11 + } + }, + { + "amount": "480.756888747", + "slot": { + "period": 3943403, + "thread": 14 + } + } + ], + "AU12jVhmTdTjDdAeeTtLjXPM6RXVq9QgXhmwfzWGuwXXUYwAUSboT": [ + { + "amount": "228.902933724", + "slot": { + "period": 50839, + "thread": 27 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 210978, + "thread": 24 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 333355, + "thread": 0 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 629833, + "thread": 13 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 668025, + "thread": 0 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 932107, + "thread": 28 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1116991, + "thread": 25 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1285930, + "thread": 29 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1337420, + "thread": 2 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1567043, + "thread": 25 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1801138, + "thread": 12 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 1839015, + "thread": 17 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2088595, + "thread": 2 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2147451, + "thread": 25 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2369548, + "thread": 14 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2502279, + "thread": 8 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2699682, + "thread": 25 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 2933012, + "thread": 14 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 3038839, + "thread": 21 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 3279213, + "thread": 1 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 3405072, + "thread": 5 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 3583551, + "thread": 23 + } + }, + { + "amount": "228.902933724", + "slot": { + "period": 3642914, + "thread": 7 + } + }, + { + "amount": "228.902933720", + "slot": { + "period": 3824618, + "thread": 18 + } + } + ], + "AU12jWJYM8z7jpdUHk1tqsUjEmzTJhkYJYwuNeUcxKe6kXdofoV2V": [ + { + "amount": "289.593776488", + "slot": { + "period": 20156, + "thread": 13 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 274922, + "thread": 20 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 375236, + "thread": 23 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 598416, + "thread": 7 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 782593, + "thread": 28 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 850800, + "thread": 0 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1015623, + "thread": 25 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1169158, + "thread": 20 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1339230, + "thread": 29 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1557772, + "thread": 7 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1715863, + "thread": 13 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 1849020, + "thread": 31 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2104829, + "thread": 17 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2237464, + "thread": 14 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2304737, + "thread": 4 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2608138, + "thread": 21 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2704497, + "thread": 6 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 2850015, + "thread": 21 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 3011658, + "thread": 8 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 3205678, + "thread": 25 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 3302453, + "thread": 31 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 3472547, + "thread": 23 + } + }, + { + "amount": "289.593776488", + "slot": { + "period": 3700136, + "thread": 19 + } + }, + { + "amount": "289.593776496", + "slot": { + "period": 3825098, + "thread": 14 + } + } + ], + "AU12jWNJopHhCpsLjxDEbrMQcdTXaBcepSn1mxS33hh1EqXxU18aL": [ + { + "amount": "2916.666666667", + "slot": { + "period": 113219, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 193850, + "thread": 16 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 484147, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 583624, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 738840, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 968774, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1141244, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1204601, + "thread": 18 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1467089, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1514328, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1712245, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1861238, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2097553, + "thread": 5 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2205318, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2433574, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2557300, + "thread": 12 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2633223, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2947791, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2977695, + "thread": 29 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3196800, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3402349, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3564911, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3762013, + "thread": 11 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3843748, + "thread": 9 + } + } + ], + "AU12jWRQaKwe9QWncJBHuN4PZ99Z8YDHadeGuFpGvCyTQGuYoCaSo": [ + { + "amount": "72.689693352", + "slot": { + "period": 101537, + "thread": 17 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 293080, + "thread": 4 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 361347, + "thread": 10 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 600258, + "thread": 7 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 797190, + "thread": 23 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 969238, + "thread": 29 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1107130, + "thread": 0 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1288326, + "thread": 5 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1439690, + "thread": 13 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1584055, + "thread": 3 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1652457, + "thread": 26 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 1921842, + "thread": 6 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2030081, + "thread": 2 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2162837, + "thread": 28 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2349023, + "thread": 18 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2606034, + "thread": 12 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2698202, + "thread": 28 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 2870983, + "thread": 3 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 3066909, + "thread": 22 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 3121973, + "thread": 16 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 3344279, + "thread": 24 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 3470116, + "thread": 21 + } + }, + { + "amount": "72.689693352", + "slot": { + "period": 3722885, + "thread": 28 + } + }, + { + "amount": "72.689693353", + "slot": { + "period": 3791844, + "thread": 10 + } + } + ], + "AU12jWWq4HZkudkXyqqBZVn1kYemvotzihQPCwb1zdHACJnFRcrYX": [ + { + "amount": "79.540757588", + "slot": { + "period": 156569, + "thread": 14 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 201979, + "thread": 7 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 385817, + "thread": 17 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 543609, + "thread": 22 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 673152, + "thread": 12 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 976488, + "thread": 16 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1121261, + "thread": 9 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1279353, + "thread": 14 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1474123, + "thread": 19 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1584386, + "thread": 31 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1783114, + "thread": 21 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 1848258, + "thread": 27 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2141982, + "thread": 5 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2189953, + "thread": 1 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2308866, + "thread": 4 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2507193, + "thread": 19 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2720756, + "thread": 31 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 2924632, + "thread": 13 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3111161, + "thread": 16 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3279144, + "thread": 2 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3347699, + "thread": 28 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3612951, + "thread": 20 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3664631, + "thread": 25 + } + }, + { + "amount": "79.540757588", + "slot": { + "period": 3905971, + "thread": 6 + } + } + ], + "AU12jX3pdyJmhSNMUa6Fktr87MVtczAcER64v3h5zQq1ApWjq2EZT": [ + { + "amount": "344.474538970", + "slot": { + "period": 75986, + "thread": 7 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 245101, + "thread": 14 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 448944, + "thread": 6 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 582852, + "thread": 20 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 659596, + "thread": 22 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 836305, + "thread": 15 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1130879, + "thread": 5 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1295558, + "thread": 1 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1415661, + "thread": 28 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1545575, + "thread": 7 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1805521, + "thread": 13 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 1851303, + "thread": 27 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2112098, + "thread": 19 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2285995, + "thread": 8 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2374639, + "thread": 29 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2501116, + "thread": 15 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2718186, + "thread": 31 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 2849925, + "thread": 21 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 3002954, + "thread": 10 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 3256771, + "thread": 16 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 3395040, + "thread": 17 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 3470898, + "thread": 9 + } + }, + { + "amount": "344.474538970", + "slot": { + "period": 3701001, + "thread": 3 + } + }, + { + "amount": "344.474538965", + "slot": { + "period": 3903269, + "thread": 20 + } + } + ], + "AU12jY4thZXtKR5CEc6CsKRQkRAxDiqygHEcFJLK3MHAbwMSX23Fr": [ + { + "amount": "160.253234221", + "slot": { + "period": 108979, + "thread": 12 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 170017, + "thread": 22 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 444799, + "thread": 0 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 540259, + "thread": 6 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 811838, + "thread": 7 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 896737, + "thread": 3 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1141580, + "thread": 25 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1156223, + "thread": 0 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1317628, + "thread": 9 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1639047, + "thread": 13 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1697875, + "thread": 24 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 1879732, + "thread": 21 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2140842, + "thread": 30 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2293617, + "thread": 4 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2412459, + "thread": 26 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2532674, + "thread": 27 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2626891, + "thread": 11 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 2792602, + "thread": 1 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 3088727, + "thread": 23 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 3190736, + "thread": 6 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 3357874, + "thread": 29 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 3571126, + "thread": 14 + } + }, + { + "amount": "160.253234221", + "slot": { + "period": 3726680, + "thread": 27 + } + }, + { + "amount": "160.253234227", + "slot": { + "period": 3892249, + "thread": 1 + } + } + ], + "AU12jYKY4GLLMFFD6BdQw6t6jfbz4DvNUn1XRx22ofWXYc5DXK1MW": [ + { + "amount": "160.929176632", + "slot": { + "period": 46705, + "thread": 23 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 184982, + "thread": 11 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 483333, + "thread": 31 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 617115, + "thread": 18 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 699666, + "thread": 22 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 896071, + "thread": 9 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1119767, + "thread": 26 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1244878, + "thread": 18 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1454074, + "thread": 15 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1527929, + "thread": 0 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1790452, + "thread": 19 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 1936751, + "thread": 23 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2094678, + "thread": 0 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2289261, + "thread": 27 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2444611, + "thread": 7 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2568983, + "thread": 2 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2693913, + "thread": 31 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 2822576, + "thread": 8 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3018491, + "thread": 20 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3180922, + "thread": 2 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3380640, + "thread": 24 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3513936, + "thread": 12 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3760528, + "thread": 3 + } + }, + { + "amount": "160.929176632", + "slot": { + "period": 3816100, + "thread": 5 + } + } + ], + "AU12jZPR7kLj7YBbm36EZgqaj7rjUHmxyKNPmss2aPSCXzY17JTvQ": [ + { + "amount": "157.973287429", + "slot": { + "period": 164704, + "thread": 20 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 307963, + "thread": 6 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 452524, + "thread": 18 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 628364, + "thread": 10 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 818658, + "thread": 18 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 980430, + "thread": 27 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1146232, + "thread": 3 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1169146, + "thread": 30 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1460909, + "thread": 10 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1527190, + "thread": 6 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1686525, + "thread": 25 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1886242, + "thread": 4 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 1985737, + "thread": 20 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 2201216, + "thread": 18 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 2433396, + "thread": 30 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 2572615, + "thread": 24 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 2754591, + "thread": 28 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 2890743, + "thread": 4 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 3119540, + "thread": 9 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 3145438, + "thread": 24 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 3351784, + "thread": 4 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 3524780, + "thread": 26 + } + }, + { + "amount": "157.973287429", + "slot": { + "period": 3647564, + "thread": 23 + } + }, + { + "amount": "157.973287426", + "slot": { + "period": 3914635, + "thread": 0 + } + } + ], + "AU12jZp1pXUZ4WbZKnQfuCYwuWdEnZXsbnSGJJtUyFx3WpQHpLrhC": [ + { + "amount": "64.583585417", + "slot": { + "period": 162300, + "thread": 17 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 278450, + "thread": 26 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 377545, + "thread": 25 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 622442, + "thread": 21 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 815031, + "thread": 9 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 936266, + "thread": 5 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1019211, + "thread": 7 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1291857, + "thread": 11 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1395669, + "thread": 31 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1646356, + "thread": 6 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1797207, + "thread": 29 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1961879, + "thread": 2 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 1980019, + "thread": 29 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 2151681, + "thread": 6 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 2452223, + "thread": 25 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 2513302, + "thread": 27 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 2649103, + "thread": 26 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 2882064, + "thread": 11 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 3072969, + "thread": 10 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 3128490, + "thread": 23 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 3388564, + "thread": 4 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 3543440, + "thread": 1 + } + }, + { + "amount": "64.583585417", + "slot": { + "period": 3776338, + "thread": 6 + } + }, + { + "amount": "64.583585420", + "slot": { + "period": 3912893, + "thread": 19 + } + } + ], + "AU12ja1qqahXV6RwhnFH1mmFStggnHiPRDsMBL72ygbVNSaQTreTp": [ + { + "amount": "418.782457020", + "slot": { + "period": 131660, + "thread": 12 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 275809, + "thread": 8 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 424886, + "thread": 30 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 569811, + "thread": 22 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 671530, + "thread": 11 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 902642, + "thread": 5 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1052850, + "thread": 31 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1175393, + "thread": 25 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1372058, + "thread": 19 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1539755, + "thread": 2 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1694486, + "thread": 25 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 1855279, + "thread": 30 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2133855, + "thread": 14 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2204199, + "thread": 14 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2433685, + "thread": 28 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2548533, + "thread": 5 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2700724, + "thread": 4 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2818779, + "thread": 1 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 2955136, + "thread": 15 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 3195393, + "thread": 17 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 3396754, + "thread": 30 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 3504960, + "thread": 20 + } + }, + { + "amount": "418.782457020", + "slot": { + "period": 3709213, + "thread": 9 + } + }, + { + "amount": "418.782457009", + "slot": { + "period": 3835633, + "thread": 0 + } + } + ], + "AU12jahXurUzwYU1BbsoaTNZzn2p3a6n14rHCnd2V9MLEHToKZPig": [ + { + "amount": "324.067848532", + "slot": { + "period": 58392, + "thread": 17 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 288248, + "thread": 13 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 352782, + "thread": 1 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 505258, + "thread": 2 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 674759, + "thread": 0 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 885536, + "thread": 6 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1033630, + "thread": 7 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1299502, + "thread": 18 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1318092, + "thread": 27 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1594415, + "thread": 19 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1718875, + "thread": 14 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1886909, + "thread": 30 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 1992142, + "thread": 1 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 2258608, + "thread": 10 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 2410760, + "thread": 21 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 2514562, + "thread": 19 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 2701387, + "thread": 15 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 2822102, + "thread": 21 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 3034585, + "thread": 4 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 3206595, + "thread": 21 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 3308735, + "thread": 4 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 3560807, + "thread": 9 + } + }, + { + "amount": "324.067848532", + "slot": { + "period": 3765516, + "thread": 19 + } + }, + { + "amount": "324.067848525", + "slot": { + "period": 3836827, + "thread": 29 + } + } + ], + "AU12jamBWZqNKx1ka6uZX4XEGcRVNnyHYpLt9fm9ksfNSqHPBv4SB": [ + { + "amount": "301.392010750", + "slot": { + "period": 40121, + "thread": 9 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 259639, + "thread": 29 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 357150, + "thread": 18 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 516947, + "thread": 18 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 793166, + "thread": 9 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 844173, + "thread": 18 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1023570, + "thread": 7 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1214735, + "thread": 26 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1473816, + "thread": 23 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1550520, + "thread": 21 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1713585, + "thread": 7 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 1916594, + "thread": 18 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2006698, + "thread": 21 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2268607, + "thread": 23 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2447408, + "thread": 6 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2540230, + "thread": 8 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2774264, + "thread": 28 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 2933177, + "thread": 15 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 3008254, + "thread": 30 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 3151737, + "thread": 21 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 3391937, + "thread": 8 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 3525014, + "thread": 24 + } + }, + { + "amount": "301.392010750", + "slot": { + "period": 3732777, + "thread": 5 + } + }, + { + "amount": "301.392010741", + "slot": { + "period": 3875735, + "thread": 4 + } + } + ], + "AU12jbNNhWxXhHToVN4GErTQPUTyzPysWaWUEKP5rNQ7LH7EHfG4g": [ + { + "amount": "177.666216985", + "slot": { + "period": 149381, + "thread": 16 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 271446, + "thread": 24 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 486678, + "thread": 8 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 530790, + "thread": 9 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 777237, + "thread": 0 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 935961, + "thread": 12 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1080162, + "thread": 10 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1165345, + "thread": 4 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1371605, + "thread": 29 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1573856, + "thread": 27 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1699762, + "thread": 27 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 1918409, + "thread": 25 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2061424, + "thread": 13 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2216809, + "thread": 29 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2355664, + "thread": 5 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2582247, + "thread": 2 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2666654, + "thread": 22 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 2835003, + "thread": 14 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 3085183, + "thread": 0 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 3229912, + "thread": 5 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 3431523, + "thread": 24 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 3504799, + "thread": 9 + } + }, + { + "amount": "177.666216985", + "slot": { + "period": 3772830, + "thread": 25 + } + }, + { + "amount": "177.666216976", + "slot": { + "period": 3827294, + "thread": 15 + } + } + ], + "AU12jbwfPjw1r2t4xY7NTQh1x9ittTj2wNkDxPkRmzuAfRBKQCCam": [ + { + "amount": "56.097598037", + "slot": { + "period": 117701, + "thread": 8 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 185648, + "thread": 28 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 420599, + "thread": 7 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 500449, + "thread": 23 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 772388, + "thread": 3 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 956470, + "thread": 27 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1024422, + "thread": 10 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1313364, + "thread": 2 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1342673, + "thread": 30 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1505552, + "thread": 19 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1790340, + "thread": 13 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 1975629, + "thread": 25 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2062807, + "thread": 28 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2175477, + "thread": 26 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2432553, + "thread": 4 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2548376, + "thread": 5 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2712364, + "thread": 3 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 2922687, + "thread": 23 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 3007657, + "thread": 9 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 3124492, + "thread": 16 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 3409507, + "thread": 23 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 3509660, + "thread": 23 + } + }, + { + "amount": "56.097598037", + "slot": { + "period": 3653663, + "thread": 2 + } + }, + { + "amount": "56.097598026", + "slot": { + "period": 3846388, + "thread": 0 + } + } + ], + "AU12jcCjSVRWvrWrYw84ZW4e3JkLYcjFCZRrR9RL4iEXWCnRNs7Qc": [ + { + "amount": "360.782445056", + "slot": { + "period": 144719, + "thread": 30 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 307836, + "thread": 4 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 434396, + "thread": 6 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 533575, + "thread": 16 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 782350, + "thread": 2 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 864467, + "thread": 1 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 994108, + "thread": 18 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 1263895, + "thread": 30 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 1367418, + "thread": 20 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 1612365, + "thread": 15 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 1732422, + "thread": 14 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 1964967, + "thread": 26 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2054490, + "thread": 19 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2187502, + "thread": 19 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2303296, + "thread": 8 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2591512, + "thread": 20 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2629730, + "thread": 9 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 2945480, + "thread": 12 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3038858, + "thread": 19 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3270743, + "thread": 24 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3382588, + "thread": 0 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3534691, + "thread": 24 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3729330, + "thread": 31 + } + }, + { + "amount": "360.782445056", + "slot": { + "period": 3829618, + "thread": 11 + } + } + ], + "AU12jdaqdDBQQ5EJjkYkahyvrLa3mjpjYJQnVmYrE6RwVHGJ7shAw": [ + { + "amount": "122.767811417", + "slot": { + "period": 160952, + "thread": 25 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 306087, + "thread": 19 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 465799, + "thread": 11 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 558618, + "thread": 12 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 761567, + "thread": 21 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 903951, + "thread": 11 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1148654, + "thread": 6 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1227156, + "thread": 19 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1345851, + "thread": 20 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1646665, + "thread": 11 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1789456, + "thread": 26 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 1919588, + "thread": 21 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2050457, + "thread": 25 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2183408, + "thread": 27 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2459055, + "thread": 29 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2569016, + "thread": 1 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2766582, + "thread": 4 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 2903357, + "thread": 3 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 3066452, + "thread": 19 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 3170684, + "thread": 4 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 3375234, + "thread": 15 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 3509983, + "thread": 16 + } + }, + { + "amount": "122.767811417", + "slot": { + "period": 3716528, + "thread": 13 + } + }, + { + "amount": "122.767811428", + "slot": { + "period": 3857787, + "thread": 0 + } + } + ], + "AU12jdxceuHmqdVhd4Gc87eHCW9yKq47QTsCKs96s3tqay6VRjJbv": [ + { + "amount": "151.909468321", + "slot": { + "period": 153643, + "thread": 23 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 191087, + "thread": 21 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 471562, + "thread": 11 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 505554, + "thread": 28 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 750473, + "thread": 6 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 898886, + "thread": 29 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1087562, + "thread": 30 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1271490, + "thread": 30 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1474384, + "thread": 9 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1607536, + "thread": 5 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1653722, + "thread": 9 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 1857264, + "thread": 13 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2086057, + "thread": 24 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2231388, + "thread": 19 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2324127, + "thread": 26 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2545370, + "thread": 31 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2756091, + "thread": 18 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 2814749, + "thread": 19 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 3005981, + "thread": 1 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 3196760, + "thread": 14 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 3351640, + "thread": 8 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 3598764, + "thread": 10 + } + }, + { + "amount": "151.909468321", + "slot": { + "period": 3704354, + "thread": 25 + } + }, + { + "amount": "151.909468323", + "slot": { + "period": 3810999, + "thread": 31 + } + } + ], + "AU12jekT2oArVi3D9Qoup1iBeNEL5J2QBjYDUZZeCeXDDwAvmf8jc": [ + { + "amount": "210.030097603", + "slot": { + "period": 58365, + "thread": 0 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 254550, + "thread": 9 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 447884, + "thread": 12 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 598931, + "thread": 13 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 718378, + "thread": 17 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 947956, + "thread": 25 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1019360, + "thread": 29 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1206307, + "thread": 21 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1400558, + "thread": 5 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1574536, + "thread": 26 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1776910, + "thread": 15 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 1913071, + "thread": 0 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2095532, + "thread": 18 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2221665, + "thread": 21 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2373417, + "thread": 23 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2502719, + "thread": 24 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2655427, + "thread": 1 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 2830202, + "thread": 27 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 3119082, + "thread": 15 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 3130776, + "thread": 6 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 3304605, + "thread": 27 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 3591136, + "thread": 24 + } + }, + { + "amount": "210.030097603", + "slot": { + "period": 3763376, + "thread": 4 + } + }, + { + "amount": "210.030097594", + "slot": { + "period": 3904612, + "thread": 11 + } + } + ], + "AU12jeugKeVB4En2Ted9R8qvLVSWGV8rGaD2bWFGNDPK11dD43cWw": [ + { + "amount": "135.594647906", + "slot": { + "period": 141134, + "thread": 19 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 216823, + "thread": 26 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 331138, + "thread": 11 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 543990, + "thread": 10 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 669937, + "thread": 0 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 951868, + "thread": 8 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1016868, + "thread": 3 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1191612, + "thread": 0 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1458545, + "thread": 17 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1490488, + "thread": 15 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1675953, + "thread": 19 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 1975422, + "thread": 31 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2062314, + "thread": 6 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2283123, + "thread": 31 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2408060, + "thread": 5 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2475532, + "thread": 15 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2668758, + "thread": 30 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 2871122, + "thread": 24 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 3035447, + "thread": 8 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 3192948, + "thread": 19 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 3355344, + "thread": 12 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 3554962, + "thread": 23 + } + }, + { + "amount": "135.594647906", + "slot": { + "period": 3731003, + "thread": 17 + } + }, + { + "amount": "135.594647907", + "slot": { + "period": 3882938, + "thread": 24 + } + } + ], + "AU12jgxpZt8eqBvki36kiKxc2Pr4sXHpashQTAKVCWB6f1Uouw8XH": [ + { + "amount": "134.104325812", + "slot": { + "period": 62990, + "thread": 21 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 205291, + "thread": 20 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 352846, + "thread": 2 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 646136, + "thread": 27 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 704987, + "thread": 12 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 892255, + "thread": 3 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1079956, + "thread": 4 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1165795, + "thread": 12 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1323722, + "thread": 8 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1555984, + "thread": 14 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1797941, + "thread": 26 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1913448, + "thread": 3 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 1981888, + "thread": 19 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 2161946, + "thread": 29 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 2322611, + "thread": 16 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 2492411, + "thread": 9 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 2753335, + "thread": 15 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 2850617, + "thread": 29 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 3030112, + "thread": 7 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 3197570, + "thread": 2 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 3336498, + "thread": 8 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 3607021, + "thread": 13 + } + }, + { + "amount": "134.104325812", + "slot": { + "period": 3656623, + "thread": 27 + } + }, + { + "amount": "134.104325807", + "slot": { + "period": 3867976, + "thread": 17 + } + } + ], + "AU12jhDjpCvqLS5SUCi6Zmt2LxJaFVyTfq6bMznW3bGbPVuRYAu3c": [ + { + "amount": "114.724499909", + "slot": { + "period": 40056, + "thread": 22 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 313654, + "thread": 3 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 324039, + "thread": 31 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 578638, + "thread": 1 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 681049, + "thread": 20 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 833578, + "thread": 13 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1116664, + "thread": 20 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1207676, + "thread": 28 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1408419, + "thread": 16 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1520843, + "thread": 14 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1681569, + "thread": 8 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 1846695, + "thread": 12 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2126405, + "thread": 11 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2178513, + "thread": 3 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2329672, + "thread": 11 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2498853, + "thread": 26 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2719215, + "thread": 20 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 2816558, + "thread": 1 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3095547, + "thread": 28 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3164019, + "thread": 23 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3449531, + "thread": 11 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3483255, + "thread": 14 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3671197, + "thread": 25 + } + }, + { + "amount": "114.724499909", + "slot": { + "period": 3853284, + "thread": 21 + } + } + ], + "AU12jhDq7HJgkqEGgEKmGD9tdX4xhpJbAgisdysbiKUhF5kq5Mttq": [ + { + "amount": "144.168366506", + "slot": { + "period": 13633, + "thread": 20 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 232940, + "thread": 7 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 338970, + "thread": 13 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 612977, + "thread": 26 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 731528, + "thread": 0 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 928672, + "thread": 12 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1145486, + "thread": 29 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1201328, + "thread": 12 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1351586, + "thread": 21 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1503750, + "thread": 3 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1697430, + "thread": 3 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 1822001, + "thread": 7 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2054424, + "thread": 22 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2268615, + "thread": 12 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2338283, + "thread": 31 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2477359, + "thread": 0 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2654521, + "thread": 9 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 2811212, + "thread": 8 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 3063239, + "thread": 30 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 3214760, + "thread": 2 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 3397517, + "thread": 17 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 3502063, + "thread": 21 + } + }, + { + "amount": "144.168366506", + "slot": { + "period": 3728024, + "thread": 3 + } + }, + { + "amount": "144.168366497", + "slot": { + "period": 3789847, + "thread": 24 + } + } + ], + "AU12jhUsyRJWJgLu5vjK1ah5sTwVepb9qmcEjkPjhDLhMVHtNWU9B": [ + { + "amount": "94.391217728", + "slot": { + "period": 46146, + "thread": 4 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 207580, + "thread": 17 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 374993, + "thread": 15 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 610802, + "thread": 13 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 740718, + "thread": 10 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 925495, + "thread": 0 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1101126, + "thread": 12 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1155334, + "thread": 20 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1475002, + "thread": 21 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1641415, + "thread": 5 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1791544, + "thread": 12 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 1914933, + "thread": 25 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2048892, + "thread": 21 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2149974, + "thread": 13 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2335021, + "thread": 20 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2502783, + "thread": 19 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2695722, + "thread": 15 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 2894585, + "thread": 28 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 3038727, + "thread": 0 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 3144189, + "thread": 28 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 3419648, + "thread": 7 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 3591486, + "thread": 28 + } + }, + { + "amount": "94.391217728", + "slot": { + "period": 3727212, + "thread": 4 + } + }, + { + "amount": "94.391217717", + "slot": { + "period": 3795625, + "thread": 11 + } + } + ], + "AU12jhbCenEMUwPxw4mM92wfRuMmjxyd2q4qerJQtDUagaYajoqkb": [ + { + "amount": "503.858373534", + "slot": { + "period": 37683, + "thread": 24 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 252554, + "thread": 2 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 483709, + "thread": 1 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 638760, + "thread": 2 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 792258, + "thread": 17 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 871374, + "thread": 1 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 998132, + "thread": 28 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1283054, + "thread": 24 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1473215, + "thread": 7 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1639712, + "thread": 7 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1708790, + "thread": 27 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1811320, + "thread": 12 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 1979892, + "thread": 15 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 2237300, + "thread": 6 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 2435063, + "thread": 15 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 2614089, + "thread": 16 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 2640172, + "thread": 21 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 2803988, + "thread": 11 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 3104996, + "thread": 7 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 3149677, + "thread": 25 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 3409004, + "thread": 12 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 3544692, + "thread": 30 + } + }, + { + "amount": "503.858373534", + "slot": { + "period": 3668861, + "thread": 0 + } + }, + { + "amount": "503.858373541", + "slot": { + "period": 3940338, + "thread": 18 + } + } + ], + "AU12jiPzPs8ak7ptQ9747USuGLfGiGjDfUkBxUkUXwAXMS4VvZNNR": [ + { + "amount": "260.946328171", + "slot": { + "period": 149182, + "thread": 27 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 238179, + "thread": 11 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 390619, + "thread": 7 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 500771, + "thread": 7 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 732878, + "thread": 21 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 841698, + "thread": 3 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1110293, + "thread": 12 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1255565, + "thread": 14 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1382700, + "thread": 20 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1618917, + "thread": 0 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1786127, + "thread": 6 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 1952575, + "thread": 21 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2096960, + "thread": 21 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2276854, + "thread": 11 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2355104, + "thread": 11 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2613913, + "thread": 12 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2758095, + "thread": 24 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 2859653, + "thread": 9 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 3044613, + "thread": 20 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 3163128, + "thread": 16 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 3392902, + "thread": 0 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 3501877, + "thread": 19 + } + }, + { + "amount": "260.946328171", + "slot": { + "period": 3643589, + "thread": 29 + } + }, + { + "amount": "260.946328179", + "slot": { + "period": 3780895, + "thread": 25 + } + } + ], + "AU12jjMRBNoN2sxVQs28wyAvL9zVXr7oh1UsGTSdNC9tV19oZkp6R": [ + { + "amount": "174.204088930", + "slot": { + "period": 24246, + "thread": 0 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 205592, + "thread": 16 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 427636, + "thread": 14 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 564968, + "thread": 5 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 791733, + "thread": 12 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 825895, + "thread": 0 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1131753, + "thread": 25 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1234403, + "thread": 26 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1323889, + "thread": 0 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1508145, + "thread": 7 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1698001, + "thread": 31 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 1868022, + "thread": 10 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2072245, + "thread": 31 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2258747, + "thread": 12 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2315195, + "thread": 19 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2487397, + "thread": 18 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2708394, + "thread": 13 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2832025, + "thread": 31 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 2959139, + "thread": 15 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 3220924, + "thread": 30 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 3429480, + "thread": 16 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 3559617, + "thread": 6 + } + }, + { + "amount": "174.204088930", + "slot": { + "period": 3752786, + "thread": 25 + } + }, + { + "amount": "174.204088918", + "slot": { + "period": 3801582, + "thread": 10 + } + } + ], + "AU12jkRbRkzJjUKbUPGR4Q7N9TfojbEkWRaos6jyCpoRRsucPPr7C": [ + { + "amount": "85.248902605", + "slot": { + "period": 61379, + "thread": 17 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 280765, + "thread": 10 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 421294, + "thread": 31 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 588049, + "thread": 2 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 726305, + "thread": 16 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 967192, + "thread": 31 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1086112, + "thread": 21 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1251444, + "thread": 7 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1323900, + "thread": 27 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1568808, + "thread": 19 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1772821, + "thread": 7 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 1833438, + "thread": 8 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2088261, + "thread": 28 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2269913, + "thread": 18 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2444144, + "thread": 6 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2583454, + "thread": 16 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2757542, + "thread": 19 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 2945722, + "thread": 19 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 3117581, + "thread": 30 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 3184286, + "thread": 3 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 3372365, + "thread": 15 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 3515740, + "thread": 31 + } + }, + { + "amount": "85.248902605", + "slot": { + "period": 3701321, + "thread": 7 + } + }, + { + "amount": "85.248902607", + "slot": { + "period": 3829120, + "thread": 26 + } + } + ], + "AU12jm9Htto7mHshFwvWd3z9xKbYT26wB4DRTbDjzoTZA5MSWek7R": [ + { + "amount": "95.714482964", + "slot": { + "period": 100150, + "thread": 23 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 193678, + "thread": 26 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 363754, + "thread": 7 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 521184, + "thread": 0 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 682164, + "thread": 21 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 956899, + "thread": 19 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1025384, + "thread": 15 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1255327, + "thread": 31 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1375307, + "thread": 29 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1485469, + "thread": 11 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1681614, + "thread": 0 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 1864502, + "thread": 15 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2136388, + "thread": 17 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2269310, + "thread": 6 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2410591, + "thread": 15 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2555012, + "thread": 12 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2674569, + "thread": 11 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2806989, + "thread": 18 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 2962134, + "thread": 6 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 3166743, + "thread": 2 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 3302350, + "thread": 22 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 3598514, + "thread": 28 + } + }, + { + "amount": "95.714482964", + "slot": { + "period": 3689316, + "thread": 17 + } + }, + { + "amount": "95.714482976", + "slot": { + "period": 3833296, + "thread": 15 + } + } + ], + "AU12jmeUtGsi8C5z9NdDPnmxZzGzy1asuXnLDU1GR3nH1PxtwzGFh": [ + { + "amount": "368.188527228", + "slot": { + "period": 85164, + "thread": 7 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 173237, + "thread": 14 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 373655, + "thread": 21 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 537266, + "thread": 1 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 734037, + "thread": 25 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 956051, + "thread": 5 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1147684, + "thread": 14 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1200059, + "thread": 31 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1463776, + "thread": 28 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1555967, + "thread": 25 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1674726, + "thread": 26 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 1971982, + "thread": 21 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2035105, + "thread": 7 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2243218, + "thread": 24 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2374383, + "thread": 10 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2551851, + "thread": 12 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2687080, + "thread": 23 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 2822129, + "thread": 10 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 3073398, + "thread": 11 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 3217669, + "thread": 22 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 3325075, + "thread": 7 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 3568270, + "thread": 31 + } + }, + { + "amount": "368.188527228", + "slot": { + "period": 3666148, + "thread": 3 + } + }, + { + "amount": "368.188527217", + "slot": { + "period": 3918915, + "thread": 17 + } + } + ], + "AU12jn1ASqbdzgj95KS3Hn1GahWPy156qU5kTy8veRLA1ravtDpBu": [ + { + "amount": "162.757250625", + "slot": { + "period": 66713, + "thread": 0 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 257451, + "thread": 7 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 389997, + "thread": 30 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 547940, + "thread": 11 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 749712, + "thread": 11 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 853747, + "thread": 11 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 995094, + "thread": 19 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 1276873, + "thread": 16 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 1465577, + "thread": 2 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 1610876, + "thread": 28 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 1689702, + "thread": 0 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 1896851, + "thread": 15 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2066780, + "thread": 30 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2229906, + "thread": 0 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2343932, + "thread": 12 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2471099, + "thread": 1 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2722485, + "thread": 13 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2898656, + "thread": 9 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 2977249, + "thread": 14 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 3271818, + "thread": 31 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 3448166, + "thread": 16 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 3607832, + "thread": 1 + } + }, + { + "amount": "162.757250625", + "slot": { + "period": 3660103, + "thread": 6 + } + }, + { + "amount": "162.757250626", + "slot": { + "period": 3787222, + "thread": 9 + } + } + ], + "AU12jnRhZHBbVmoY7M6MewAXsrRTUjcz5YQRnmrz5BYm96jMJVoNX": [ + { + "amount": "436.724300284", + "slot": { + "period": 94387, + "thread": 26 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 192020, + "thread": 12 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 428328, + "thread": 28 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 565374, + "thread": 7 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 776424, + "thread": 23 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 945029, + "thread": 0 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1012612, + "thread": 14 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1282379, + "thread": 0 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1439157, + "thread": 28 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1509067, + "thread": 4 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1685135, + "thread": 25 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 1952663, + "thread": 24 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2078928, + "thread": 18 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2195402, + "thread": 1 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2348246, + "thread": 6 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2516409, + "thread": 12 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2695747, + "thread": 24 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 2850377, + "thread": 22 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 3067625, + "thread": 4 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 3131233, + "thread": 22 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 3415322, + "thread": 13 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 3497090, + "thread": 0 + } + }, + { + "amount": "436.724300284", + "slot": { + "period": 3659250, + "thread": 5 + } + }, + { + "amount": "436.724300278", + "slot": { + "period": 3880563, + "thread": 12 + } + } + ], + "AU12jnnZMx8xfHbpF2PNoNbuChhw45rJQqc9v3BjJkVUcBG4SfLD4": [ + { + "amount": "70.042479570", + "slot": { + "period": 136296, + "thread": 21 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 261021, + "thread": 6 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 391506, + "thread": 5 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 627099, + "thread": 7 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 816030, + "thread": 30 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 868020, + "thread": 15 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1063810, + "thread": 22 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1255838, + "thread": 29 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1436025, + "thread": 18 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1600574, + "thread": 19 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1795204, + "thread": 30 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 1901323, + "thread": 9 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2080558, + "thread": 10 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2248856, + "thread": 9 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2400145, + "thread": 4 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2580892, + "thread": 15 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2664888, + "thread": 9 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 2871713, + "thread": 6 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3074082, + "thread": 7 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3146022, + "thread": 0 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3365592, + "thread": 7 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3503060, + "thread": 31 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3629818, + "thread": 12 + } + }, + { + "amount": "70.042479570", + "slot": { + "period": 3924934, + "thread": 10 + } + } + ], + "AU12jqGJqA1itMtobTSH93n1QWawk1iDc8qsrGGt8QUmBtPahvmBa": [ + { + "amount": "309.691355129", + "slot": { + "period": 77863, + "thread": 25 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 318279, + "thread": 7 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 389164, + "thread": 18 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 554947, + "thread": 9 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 768682, + "thread": 11 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 948903, + "thread": 15 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1036392, + "thread": 21 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1250920, + "thread": 8 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1382133, + "thread": 10 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1516662, + "thread": 10 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1806482, + "thread": 15 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 1849385, + "thread": 18 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2041097, + "thread": 9 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2205109, + "thread": 16 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2347797, + "thread": 30 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2509141, + "thread": 12 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2746782, + "thread": 18 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2940830, + "thread": 27 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 2972760, + "thread": 23 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 3167816, + "thread": 31 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 3438748, + "thread": 13 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 3539667, + "thread": 5 + } + }, + { + "amount": "309.691355129", + "slot": { + "period": 3647081, + "thread": 30 + } + }, + { + "amount": "309.691355126", + "slot": { + "period": 3854130, + "thread": 5 + } + } + ], + "AU12jqfs5LfD63F1R8aE12H2VsJd866sXFuBBrh6e83mohxErmg8M": [ + { + "amount": "256.844391929", + "slot": { + "period": 22816, + "thread": 5 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 227977, + "thread": 13 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 441485, + "thread": 13 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 597902, + "thread": 5 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 819697, + "thread": 30 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 884699, + "thread": 15 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1027523, + "thread": 29 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1176705, + "thread": 6 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1371158, + "thread": 4 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1552101, + "thread": 20 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1743771, + "thread": 29 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 1891036, + "thread": 7 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2053040, + "thread": 30 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2182137, + "thread": 18 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2429707, + "thread": 25 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2602396, + "thread": 26 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2690121, + "thread": 7 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 2918198, + "thread": 9 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 3013467, + "thread": 5 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 3132856, + "thread": 26 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 3432540, + "thread": 31 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 3457490, + "thread": 21 + } + }, + { + "amount": "256.844391929", + "slot": { + "period": 3679713, + "thread": 4 + } + }, + { + "amount": "256.844391925", + "slot": { + "period": 3788593, + "thread": 1 + } + } + ], + "AU12jqmq1H6dVmCdNHNDa2QKivcaHUGBZtvxG1vXntwJX9LeCLmLo": [ + { + "amount": "519.378596358", + "slot": { + "period": 135084, + "thread": 7 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 315345, + "thread": 2 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 486350, + "thread": 14 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 491915, + "thread": 8 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 808961, + "thread": 28 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 929539, + "thread": 27 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1021296, + "thread": 10 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1268199, + "thread": 24 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1477243, + "thread": 0 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1555519, + "thread": 2 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1803365, + "thread": 13 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 1954426, + "thread": 24 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2129335, + "thread": 1 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2165020, + "thread": 15 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2435868, + "thread": 5 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2615465, + "thread": 9 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2640353, + "thread": 17 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 2829432, + "thread": 5 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 3042594, + "thread": 5 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 3152943, + "thread": 29 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 3385024, + "thread": 21 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 3592149, + "thread": 31 + } + }, + { + "amount": "519.378596358", + "slot": { + "period": 3776427, + "thread": 0 + } + }, + { + "amount": "519.378596361", + "slot": { + "period": 3781185, + "thread": 5 + } + } + ], + "AU12jr8nNN25skSzVepvwQ4p7N3PbUGS2gY1xmWVkPc3ofhmfsypL": [ + { + "amount": "161.656399126", + "slot": { + "period": 158466, + "thread": 16 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 242319, + "thread": 20 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 376366, + "thread": 29 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 494762, + "thread": 2 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 656823, + "thread": 30 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 846030, + "thread": 15 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1128486, + "thread": 6 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1208671, + "thread": 4 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1338618, + "thread": 5 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1624783, + "thread": 16 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1775095, + "thread": 22 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 1912068, + "thread": 5 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2109594, + "thread": 23 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2229340, + "thread": 20 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2446184, + "thread": 10 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2498352, + "thread": 13 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2787497, + "thread": 7 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 2798584, + "thread": 1 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 3103307, + "thread": 28 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 3174004, + "thread": 6 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 3411113, + "thread": 0 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 3579331, + "thread": 0 + } + }, + { + "amount": "161.656399126", + "slot": { + "period": 3672989, + "thread": 21 + } + }, + { + "amount": "161.656399115", + "slot": { + "period": 3885424, + "thread": 1 + } + } + ], + "AU12jrHefar9KvWYDbzZTsyPWhYNsGnPTW8a4kD4YLwDqru5SY8MQ": [ + { + "amount": "138.941338910", + "slot": { + "period": 120083, + "thread": 17 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 310765, + "thread": 24 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 343455, + "thread": 28 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 526741, + "thread": 11 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 729894, + "thread": 8 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 975708, + "thread": 12 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1062814, + "thread": 12 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1179991, + "thread": 13 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1352001, + "thread": 20 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1550496, + "thread": 2 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1766650, + "thread": 15 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 1959467, + "thread": 2 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2026897, + "thread": 29 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2277718, + "thread": 29 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2334253, + "thread": 3 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2582879, + "thread": 21 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2629132, + "thread": 9 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 2891007, + "thread": 26 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 3025391, + "thread": 12 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 3219837, + "thread": 2 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 3387485, + "thread": 6 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 3504120, + "thread": 12 + } + }, + { + "amount": "138.941338910", + "slot": { + "period": 3749517, + "thread": 24 + } + }, + { + "amount": "138.941338906", + "slot": { + "period": 3801381, + "thread": 26 + } + } + ], + "AU12jrLFSn4FBxjEeQr2LaRZF7U16qozajjqq14x5vzLLmvMJV9WN": [ + { + "amount": "432.166683852", + "slot": { + "period": 88992, + "thread": 22 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 297791, + "thread": 8 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 413916, + "thread": 27 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 579475, + "thread": 7 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 742643, + "thread": 6 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 864970, + "thread": 17 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1126777, + "thread": 26 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1306929, + "thread": 17 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1449695, + "thread": 26 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1605667, + "thread": 23 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1667364, + "thread": 9 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 1966683, + "thread": 29 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2008757, + "thread": 31 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2200544, + "thread": 7 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2376611, + "thread": 5 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2468545, + "thread": 10 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2656518, + "thread": 5 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2951306, + "thread": 27 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 2985151, + "thread": 1 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 3209679, + "thread": 6 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 3411531, + "thread": 26 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 3486298, + "thread": 10 + } + }, + { + "amount": "432.166683852", + "slot": { + "period": 3760660, + "thread": 3 + } + }, + { + "amount": "432.166683841", + "slot": { + "period": 3899307, + "thread": 0 + } + } + ], + "AU12jrpRLU4DakFmRZNDMS67wDmRZ39DK5FPPCGvZGDQHVoKFr7jr": [ + { + "amount": "57.389409713", + "slot": { + "period": 52262, + "thread": 10 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 277015, + "thread": 20 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 397683, + "thread": 0 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 651470, + "thread": 4 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 763672, + "thread": 20 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 915349, + "thread": 12 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1018198, + "thread": 10 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1253844, + "thread": 16 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1322762, + "thread": 5 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1560352, + "thread": 2 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1677435, + "thread": 31 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1889196, + "thread": 17 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 1982679, + "thread": 26 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 2243711, + "thread": 16 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 2344955, + "thread": 25 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 2570277, + "thread": 1 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 2697743, + "thread": 0 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 2901291, + "thread": 10 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 3050905, + "thread": 23 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 3232497, + "thread": 24 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 3289010, + "thread": 10 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 3453338, + "thread": 2 + } + }, + { + "amount": "57.389409713", + "slot": { + "period": 3778505, + "thread": 16 + } + }, + { + "amount": "57.389409717", + "slot": { + "period": 3849657, + "thread": 0 + } + } + ], + "AU12jtmwQvAtZEgSsGC37hnufjmXYkdbTAGAZLzutsHSTgKHVoy8j": [ + { + "amount": "161.761561454", + "slot": { + "period": 163104, + "thread": 6 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 182461, + "thread": 11 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 464082, + "thread": 13 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 617718, + "thread": 12 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 744646, + "thread": 19 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 947605, + "thread": 18 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1073071, + "thread": 17 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1278482, + "thread": 15 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1440290, + "thread": 26 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1521548, + "thread": 7 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1684234, + "thread": 28 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 1901039, + "thread": 29 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2141654, + "thread": 14 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2176251, + "thread": 28 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2439443, + "thread": 10 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2586522, + "thread": 22 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2787793, + "thread": 15 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 2941865, + "thread": 5 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 3030847, + "thread": 16 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 3252216, + "thread": 24 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 3394920, + "thread": 13 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 3522657, + "thread": 10 + } + }, + { + "amount": "161.761561454", + "slot": { + "period": 3622082, + "thread": 14 + } + }, + { + "amount": "161.761561460", + "slot": { + "period": 3939498, + "thread": 18 + } + } + ], + "AU12jumQnY2Szjf8iDWHrBvp6HpzCmg27pJrV4eyz2FQmhQ1Kn3xw": [ + { + "amount": "157.701510960", + "slot": { + "period": 109381, + "thread": 26 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 255340, + "thread": 10 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 458360, + "thread": 30 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 595975, + "thread": 16 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 781680, + "thread": 31 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 883279, + "thread": 17 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1132835, + "thread": 27 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1163244, + "thread": 0 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1374623, + "thread": 5 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1514222, + "thread": 16 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1804086, + "thread": 11 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 1877708, + "thread": 26 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2001187, + "thread": 12 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2231588, + "thread": 31 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2304609, + "thread": 10 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2540903, + "thread": 28 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2785949, + "thread": 1 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 2862199, + "thread": 24 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 3108928, + "thread": 5 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 3168572, + "thread": 6 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 3417067, + "thread": 6 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 3539099, + "thread": 8 + } + }, + { + "amount": "157.701510960", + "slot": { + "period": 3670799, + "thread": 24 + } + }, + { + "amount": "157.701510956", + "slot": { + "period": 3923490, + "thread": 20 + } + } + ], + "AU12jv4ivY6Y1DUrqBGqF1QfwNcmdr86Q4KS1AGjt2dyhCHbj8Bj1": [ + { + "amount": "107.147052725", + "slot": { + "period": 98074, + "thread": 11 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 205284, + "thread": 15 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 482478, + "thread": 10 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 585267, + "thread": 21 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 732706, + "thread": 4 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 845233, + "thread": 10 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1087883, + "thread": 17 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1246860, + "thread": 16 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1325744, + "thread": 4 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1596945, + "thread": 15 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1784898, + "thread": 21 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 1882868, + "thread": 27 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2087776, + "thread": 29 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2259964, + "thread": 31 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2410222, + "thread": 4 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2488306, + "thread": 23 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2635558, + "thread": 1 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 2797623, + "thread": 26 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 3056436, + "thread": 1 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 3188042, + "thread": 18 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 3426862, + "thread": 14 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 3495437, + "thread": 11 + } + }, + { + "amount": "107.147052725", + "slot": { + "period": 3700784, + "thread": 7 + } + }, + { + "amount": "107.147052724", + "slot": { + "period": 3862961, + "thread": 10 + } + } + ], + "AU12jvLaYcinLDBBgpj8vxdtbMdYQKDe45cgh1Qe8pqP4c7t6KEpf": [ + { + "amount": "273.090934001", + "slot": { + "period": 71166, + "thread": 14 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 320409, + "thread": 24 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 429008, + "thread": 11 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 646346, + "thread": 9 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 663011, + "thread": 21 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 904576, + "thread": 7 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1136199, + "thread": 12 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1274361, + "thread": 27 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1473313, + "thread": 17 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1545942, + "thread": 11 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1675325, + "thread": 26 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 1971913, + "thread": 25 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2036292, + "thread": 5 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2146399, + "thread": 30 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2385249, + "thread": 23 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2525991, + "thread": 16 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2761673, + "thread": 3 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 2880196, + "thread": 27 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 3033664, + "thread": 1 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 3202656, + "thread": 29 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 3424248, + "thread": 24 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 3487005, + "thread": 1 + } + }, + { + "amount": "273.090934001", + "slot": { + "period": 3660232, + "thread": 7 + } + }, + { + "amount": "273.090934008", + "slot": { + "period": 3909050, + "thread": 8 + } + } + ], + "AU12jvYLDsXpWGnJRSUWvLq8PsFyj7KTa5Y9BDUDCNPTTacCDU4XR": [ + { + "amount": "57.940848694", + "slot": { + "period": 18630, + "thread": 13 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 248971, + "thread": 28 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 461261, + "thread": 29 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 593227, + "thread": 19 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 714914, + "thread": 20 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 864747, + "thread": 31 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1046756, + "thread": 28 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1212039, + "thread": 25 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1363582, + "thread": 25 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1579755, + "thread": 15 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1678301, + "thread": 1 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 1920040, + "thread": 29 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2054504, + "thread": 4 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2187228, + "thread": 2 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2453718, + "thread": 22 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2585582, + "thread": 15 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2746581, + "thread": 25 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2879884, + "thread": 25 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 2968981, + "thread": 28 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 3284514, + "thread": 13 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 3343204, + "thread": 22 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 3584873, + "thread": 13 + } + }, + { + "amount": "57.940848694", + "slot": { + "period": 3729421, + "thread": 25 + } + }, + { + "amount": "57.940848683", + "slot": { + "period": 3843495, + "thread": 20 + } + } + ], + "AU12jvsXNtrEorYCMSEr3QWopC2Lvyukp69jLoEWkD2ojoLwmrCs7": [ + { + "amount": "132.218692919", + "slot": { + "period": 94159, + "thread": 26 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 274679, + "thread": 11 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 455615, + "thread": 30 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 613260, + "thread": 25 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 656571, + "thread": 14 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 849047, + "thread": 11 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1040042, + "thread": 8 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1234267, + "thread": 15 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1444385, + "thread": 12 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1619299, + "thread": 2 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1698451, + "thread": 15 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 1969148, + "thread": 20 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2041446, + "thread": 1 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2184315, + "thread": 8 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2305968, + "thread": 2 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2544053, + "thread": 19 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2715668, + "thread": 7 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2897906, + "thread": 4 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 2957793, + "thread": 2 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 3183314, + "thread": 10 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 3387780, + "thread": 13 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 3499030, + "thread": 30 + } + }, + { + "amount": "132.218692919", + "slot": { + "period": 3672026, + "thread": 22 + } + }, + { + "amount": "132.218692922", + "slot": { + "period": 3793759, + "thread": 30 + } + } + ], + "AU12jwBqs6tb6v9Zzq86dZVoyrdwerhfLkwHk3SF3fte5En8fVS2Z": [ + { + "amount": "77.706931715", + "slot": { + "period": 75943, + "thread": 29 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 205379, + "thread": 2 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 381650, + "thread": 1 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 631608, + "thread": 26 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 674610, + "thread": 25 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 844880, + "thread": 24 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1138749, + "thread": 28 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1213987, + "thread": 21 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1353083, + "thread": 5 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1559206, + "thread": 29 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1721398, + "thread": 10 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 1913940, + "thread": 5 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2089493, + "thread": 4 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2278730, + "thread": 28 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2340021, + "thread": 29 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2491265, + "thread": 25 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2663511, + "thread": 20 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 2902301, + "thread": 13 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 3108246, + "thread": 8 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 3145874, + "thread": 3 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 3370599, + "thread": 22 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 3587040, + "thread": 15 + } + }, + { + "amount": "77.706931715", + "slot": { + "period": 3629097, + "thread": 9 + } + }, + { + "amount": "77.706931721", + "slot": { + "period": 3926622, + "thread": 4 + } + } + ], + "AU12jweSVbzWwvAHw2yKjGWjqQTAzWGLuveJn1jbS9npWw6wLC6Bn": [ + { + "amount": "90.936135359", + "slot": { + "period": 49194, + "thread": 26 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 299563, + "thread": 1 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 422385, + "thread": 5 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 560529, + "thread": 24 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 773375, + "thread": 29 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 902053, + "thread": 18 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1021017, + "thread": 28 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1158681, + "thread": 19 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1334253, + "thread": 11 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1555206, + "thread": 31 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1779678, + "thread": 15 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 1899973, + "thread": 16 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2052791, + "thread": 5 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2208504, + "thread": 28 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2326720, + "thread": 2 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2568585, + "thread": 27 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2789040, + "thread": 18 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2906934, + "thread": 3 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 2999854, + "thread": 17 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 3217183, + "thread": 29 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 3401881, + "thread": 10 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 3487740, + "thread": 8 + } + }, + { + "amount": "90.936135359", + "slot": { + "period": 3627879, + "thread": 20 + } + }, + { + "amount": "90.936135353", + "slot": { + "period": 3808171, + "thread": 7 + } + } + ], + "AU12jxTtKKmuAzJFeqX6dGR8UNkaDFKPrZ4ZGm1mci1m36N7WGpVn": [ + { + "amount": "88.252888524", + "slot": { + "period": 153692, + "thread": 25 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 305559, + "thread": 4 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 465932, + "thread": 3 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 640921, + "thread": 31 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 818821, + "thread": 20 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 857483, + "thread": 3 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1111355, + "thread": 0 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1224976, + "thread": 9 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1425944, + "thread": 12 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1589058, + "thread": 15 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1673439, + "thread": 24 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 1904224, + "thread": 5 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2020767, + "thread": 6 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2185517, + "thread": 5 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2364755, + "thread": 7 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2475700, + "thread": 7 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2767403, + "thread": 2 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 2947035, + "thread": 20 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 3100900, + "thread": 23 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 3155555, + "thread": 2 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 3391201, + "thread": 15 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 3503753, + "thread": 5 + } + }, + { + "amount": "88.252888524", + "slot": { + "period": 3741762, + "thread": 28 + } + }, + { + "amount": "88.252888517", + "slot": { + "period": 3810749, + "thread": 1 + } + } + ], + "AU12jxctkG6HX6ddhVajtA1ghZ9rCzmD62AAc1kiP3xhJMrV3ZEvw": [ + { + "amount": "94.605036935", + "slot": { + "period": 78341, + "thread": 11 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 232193, + "thread": 4 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 453776, + "thread": 22 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 653034, + "thread": 15 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 675207, + "thread": 22 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 923222, + "thread": 7 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1143951, + "thread": 31 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1291103, + "thread": 3 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1332340, + "thread": 3 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1480549, + "thread": 1 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1807761, + "thread": 20 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1809484, + "thread": 18 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 1988850, + "thread": 9 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 2153184, + "thread": 16 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 2446646, + "thread": 17 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 2506417, + "thread": 15 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 2761759, + "thread": 31 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 2818983, + "thread": 10 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 3012799, + "thread": 11 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 3216136, + "thread": 21 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 3367479, + "thread": 1 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 3469131, + "thread": 26 + } + }, + { + "amount": "94.605036935", + "slot": { + "period": 3671055, + "thread": 17 + } + }, + { + "amount": "94.605036926", + "slot": { + "period": 3913901, + "thread": 13 + } + } + ], + "AU12jxqhLqs2qxTGKNcXy19a5af25UhPFkPPjgpAtr7Uxsuw6keZm": [ + { + "amount": "437.276922880", + "slot": { + "period": 158631, + "thread": 30 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 265287, + "thread": 26 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 435798, + "thread": 22 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 558304, + "thread": 26 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 753582, + "thread": 6 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 846690, + "thread": 25 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1060750, + "thread": 22 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1273700, + "thread": 28 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1369363, + "thread": 18 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1518482, + "thread": 3 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1775278, + "thread": 23 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 1836314, + "thread": 27 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2083083, + "thread": 4 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2249875, + "thread": 0 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2433949, + "thread": 1 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2527357, + "thread": 4 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2728957, + "thread": 12 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2800784, + "thread": 11 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 2981385, + "thread": 8 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 3135529, + "thread": 20 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 3437421, + "thread": 13 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 3574687, + "thread": 27 + } + }, + { + "amount": "437.276922880", + "slot": { + "period": 3640655, + "thread": 31 + } + }, + { + "amount": "437.276922877", + "slot": { + "period": 3784034, + "thread": 24 + } + } + ], + "AU12jy94osi5YMP9fpU5HbukNWYqB9FHcaD1LdVxu1fseW4mkCmUs": [ + { + "amount": "192.112873709", + "slot": { + "period": 97440, + "thread": 10 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 171578, + "thread": 11 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 466018, + "thread": 6 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 544968, + "thread": 3 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 818653, + "thread": 7 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 874005, + "thread": 31 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1095412, + "thread": 15 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1217428, + "thread": 8 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1365484, + "thread": 27 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1604299, + "thread": 3 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1675320, + "thread": 19 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1877884, + "thread": 0 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 1983093, + "thread": 28 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 2197356, + "thread": 15 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 2312061, + "thread": 2 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 2474065, + "thread": 22 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 2768682, + "thread": 16 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 2797574, + "thread": 24 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 3073632, + "thread": 19 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 3214468, + "thread": 1 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 3355540, + "thread": 18 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 3548341, + "thread": 30 + } + }, + { + "amount": "192.112873709", + "slot": { + "period": 3768999, + "thread": 22 + } + }, + { + "amount": "192.112873712", + "slot": { + "period": 3852956, + "thread": 22 + } + } + ], + "AU12jywJ5GMenfgQQLJLz741r9jNFxWXZUrjcKVTfka6fZp14Sdhp": [ + { + "amount": "151.002047135", + "slot": { + "period": 153270, + "thread": 17 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 261934, + "thread": 0 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 324384, + "thread": 7 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 541511, + "thread": 19 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 715372, + "thread": 18 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 841226, + "thread": 10 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1118226, + "thread": 13 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1173458, + "thread": 3 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1363228, + "thread": 10 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1615581, + "thread": 16 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1679576, + "thread": 16 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1888208, + "thread": 6 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 1993053, + "thread": 12 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 2201415, + "thread": 7 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 2354328, + "thread": 29 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 2503462, + "thread": 8 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 2688860, + "thread": 22 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 2807465, + "thread": 7 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 3050526, + "thread": 10 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 3192984, + "thread": 25 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 3294899, + "thread": 30 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 3468731, + "thread": 7 + } + }, + { + "amount": "151.002047135", + "slot": { + "period": 3709594, + "thread": 9 + } + }, + { + "amount": "151.002047145", + "slot": { + "period": 3803698, + "thread": 11 + } + } + ], + "AU12jywcYdMUr5PktZ5id22jzjDdf1k3f1XZNvWL25LcyJHcXkgCX": [ + { + "amount": "519.260205977", + "slot": { + "period": 86431, + "thread": 19 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 213216, + "thread": 0 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 360319, + "thread": 13 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 648006, + "thread": 8 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 671823, + "thread": 16 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 884336, + "thread": 26 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1039148, + "thread": 7 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1203830, + "thread": 13 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1376406, + "thread": 22 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1518839, + "thread": 7 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1717779, + "thread": 4 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 1855007, + "thread": 9 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2012335, + "thread": 3 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2207784, + "thread": 12 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2421732, + "thread": 15 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2474075, + "thread": 13 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2682646, + "thread": 15 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2795956, + "thread": 26 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 2990528, + "thread": 21 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 3232797, + "thread": 21 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 3377581, + "thread": 12 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 3494561, + "thread": 21 + } + }, + { + "amount": "519.260205977", + "slot": { + "period": 3725525, + "thread": 13 + } + }, + { + "amount": "519.260205974", + "slot": { + "period": 3881170, + "thread": 11 + } + } + ], + "AU12jzUgSYTkxHjEYr5bYRBYME6jvvUQnRDqTECyJJhrJbeJvfSsH": [ + { + "amount": "194.865760874", + "slot": { + "period": 47263, + "thread": 8 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 248712, + "thread": 10 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 375443, + "thread": 31 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 625340, + "thread": 29 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 699184, + "thread": 0 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 909348, + "thread": 0 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1106817, + "thread": 1 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1214381, + "thread": 14 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1466004, + "thread": 15 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1498107, + "thread": 12 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1771837, + "thread": 20 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 1871910, + "thread": 6 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2107098, + "thread": 8 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2188662, + "thread": 19 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2324567, + "thread": 0 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2462421, + "thread": 0 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2722858, + "thread": 19 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2816377, + "thread": 26 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 2983396, + "thread": 9 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 3153246, + "thread": 19 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 3320813, + "thread": 14 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 3566422, + "thread": 26 + } + }, + { + "amount": "194.865760874", + "slot": { + "period": 3734534, + "thread": 7 + } + }, + { + "amount": "194.865760886", + "slot": { + "period": 3899919, + "thread": 15 + } + } + ], + "AU12jzg15HYdz3wGBHnBNc5vHw391uzUGen2xpf5PBQSHPPEoGhAL": [ + { + "amount": "194.179626479", + "slot": { + "period": 26273, + "thread": 4 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 321458, + "thread": 1 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 367456, + "thread": 14 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 521894, + "thread": 0 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 669953, + "thread": 11 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 866246, + "thread": 13 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1010258, + "thread": 21 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1157960, + "thread": 12 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1375880, + "thread": 4 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1558960, + "thread": 14 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1798986, + "thread": 5 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 1838886, + "thread": 22 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2043485, + "thread": 13 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2258188, + "thread": 30 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2336069, + "thread": 21 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2568179, + "thread": 15 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2633775, + "thread": 4 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 2861897, + "thread": 9 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 3045150, + "thread": 13 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 3253843, + "thread": 21 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 3409540, + "thread": 20 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 3565588, + "thread": 12 + } + }, + { + "amount": "194.179626479", + "slot": { + "period": 3717022, + "thread": 26 + } + }, + { + "amount": "194.179626476", + "slot": { + "period": 3931453, + "thread": 29 + } + } + ], + "AU12jzm1uAzBQSDpLZTqqusCov87h3Wc9U7JNEsMVZp52tc4jM2pm": [ + { + "amount": "178.882605898", + "slot": { + "period": 152160, + "thread": 23 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 320606, + "thread": 4 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 382439, + "thread": 31 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 634722, + "thread": 22 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 719282, + "thread": 1 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 857217, + "thread": 25 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1046740, + "thread": 4 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1223371, + "thread": 30 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1318172, + "thread": 22 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1513999, + "thread": 16 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1713234, + "thread": 31 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 1907633, + "thread": 2 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2076683, + "thread": 28 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2148026, + "thread": 30 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2367793, + "thread": 27 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2567164, + "thread": 1 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2761808, + "thread": 21 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 2809673, + "thread": 14 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 3103396, + "thread": 11 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 3195617, + "thread": 22 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 3336855, + "thread": 22 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 3495797, + "thread": 13 + } + }, + { + "amount": "178.882605898", + "slot": { + "period": 3691183, + "thread": 22 + } + }, + { + "amount": "178.882605903", + "slot": { + "period": 3864977, + "thread": 5 + } + } + ], + "AU12k3DAb4GHz9KjWHUPVfPJgeit45oUveu8vdw1R2vY7bbMhxNSZ": [ + { + "amount": "84.159368699", + "slot": { + "period": 57269, + "thread": 31 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 205603, + "thread": 15 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 490423, + "thread": 4 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 548950, + "thread": 0 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 745821, + "thread": 23 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 976151, + "thread": 28 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 987710, + "thread": 2 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 1295909, + "thread": 17 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 1450734, + "thread": 7 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 1528787, + "thread": 23 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 1784518, + "thread": 11 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 1914261, + "thread": 7 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2036849, + "thread": 1 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2190151, + "thread": 29 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2297792, + "thread": 17 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2505529, + "thread": 14 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2733888, + "thread": 2 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2831863, + "thread": 20 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 2993396, + "thread": 10 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 3155655, + "thread": 9 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 3376264, + "thread": 9 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 3455780, + "thread": 31 + } + }, + { + "amount": "84.159368699", + "slot": { + "period": 3759482, + "thread": 22 + } + }, + { + "amount": "84.159368693", + "slot": { + "period": 3851889, + "thread": 30 + } + } + ], + "AU12k4qSuMH6DrJLpPbjHMV6971sNsSDVNbGNKtB6mb4ixbWh7RaM": [ + { + "amount": "147.111037550", + "slot": { + "period": 35116, + "thread": 3 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 171172, + "thread": 30 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 410903, + "thread": 29 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 618546, + "thread": 22 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 696856, + "thread": 7 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 921576, + "thread": 28 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1111667, + "thread": 13 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1210427, + "thread": 7 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1379689, + "thread": 15 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1567430, + "thread": 1 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1801993, + "thread": 18 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 1925377, + "thread": 13 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2100726, + "thread": 11 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2234325, + "thread": 17 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2358416, + "thread": 8 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2483771, + "thread": 9 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2637580, + "thread": 15 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2886785, + "thread": 16 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 2970003, + "thread": 0 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 3272359, + "thread": 10 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 3413809, + "thread": 10 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 3495930, + "thread": 25 + } + }, + { + "amount": "147.111037550", + "slot": { + "period": 3669153, + "thread": 28 + } + }, + { + "amount": "147.111037547", + "slot": { + "period": 3944450, + "thread": 7 + } + } + ], + "AU12k5PxxrvnMibMk8t11KdLGeeMAxCsoDvrWp29GefPVewmegLQC": [ + { + "amount": "225.097761860", + "slot": { + "period": 21975, + "thread": 19 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 252636, + "thread": 24 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 342729, + "thread": 15 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 608110, + "thread": 18 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 781675, + "thread": 16 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 909203, + "thread": 26 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1000582, + "thread": 26 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1285222, + "thread": 27 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1384455, + "thread": 19 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1535840, + "thread": 19 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1727467, + "thread": 0 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 1973617, + "thread": 12 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2078094, + "thread": 31 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2164551, + "thread": 27 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2458715, + "thread": 21 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2495788, + "thread": 25 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2673968, + "thread": 2 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 2951011, + "thread": 18 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 3102150, + "thread": 26 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 3195148, + "thread": 25 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 3406023, + "thread": 13 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 3555197, + "thread": 13 + } + }, + { + "amount": "225.097761860", + "slot": { + "period": 3620559, + "thread": 12 + } + }, + { + "amount": "225.097761861", + "slot": { + "period": 3867525, + "thread": 10 + } + } + ], + "AU12k7Fob6rzCwcKT9A22258WdUHc8e5tbFbX7FwXJuE4q72yohxd": [ + { + "amount": "275.559894852", + "slot": { + "period": 46055, + "thread": 24 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 187260, + "thread": 9 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 488685, + "thread": 17 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 574151, + "thread": 5 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 706072, + "thread": 6 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 940346, + "thread": 6 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 998788, + "thread": 19 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 1186739, + "thread": 1 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 1408354, + "thread": 1 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 1481900, + "thread": 5 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 1708379, + "thread": 17 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 1961613, + "thread": 8 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2012984, + "thread": 16 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2181181, + "thread": 27 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2365968, + "thread": 22 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2579249, + "thread": 18 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2759907, + "thread": 6 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 2859111, + "thread": 21 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 3017868, + "thread": 1 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 3220205, + "thread": 12 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 3418215, + "thread": 14 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 3521891, + "thread": 12 + } + }, + { + "amount": "275.559894852", + "slot": { + "period": 3624461, + "thread": 16 + } + }, + { + "amount": "275.559894853", + "slot": { + "period": 3925054, + "thread": 5 + } + } + ], + "AU12k7SjA189gWXFFMJ55vuwKePL3EN62eKgJrv83VngdnaPXHote": [ + { + "amount": "293.556102424", + "slot": { + "period": 138399, + "thread": 2 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 180493, + "thread": 17 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 461255, + "thread": 2 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 640909, + "thread": 25 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 677965, + "thread": 21 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 824484, + "thread": 25 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 983290, + "thread": 22 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1249441, + "thread": 27 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1321452, + "thread": 3 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1601479, + "thread": 20 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1745982, + "thread": 18 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1849592, + "thread": 4 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 1993433, + "thread": 18 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 2294106, + "thread": 20 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 2307976, + "thread": 21 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 2549996, + "thread": 4 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 2635480, + "thread": 7 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 2889298, + "thread": 5 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 3092285, + "thread": 8 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 3249929, + "thread": 1 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 3337504, + "thread": 29 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 3547957, + "thread": 29 + } + }, + { + "amount": "293.556102424", + "slot": { + "period": 3747933, + "thread": 12 + } + }, + { + "amount": "293.556102429", + "slot": { + "period": 3843071, + "thread": 23 + } + } + ], + "AU12k7abr1u4XAguZVsrW1x1GHVSo7HFr5vQ53dM68Kb22usLE7SZ": [ + { + "amount": "136.812517835", + "slot": { + "period": 63050, + "thread": 6 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 281345, + "thread": 31 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 349408, + "thread": 8 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 624647, + "thread": 22 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 799759, + "thread": 19 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 894618, + "thread": 19 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1051519, + "thread": 24 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1293267, + "thread": 2 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1392333, + "thread": 21 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1499696, + "thread": 26 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1709543, + "thread": 28 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 1961991, + "thread": 7 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2136473, + "thread": 15 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2171214, + "thread": 12 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2405078, + "thread": 3 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2595991, + "thread": 9 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2689488, + "thread": 7 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 2917188, + "thread": 14 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 3028251, + "thread": 27 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 3192287, + "thread": 19 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 3326518, + "thread": 15 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 3508191, + "thread": 10 + } + }, + { + "amount": "136.812517835", + "slot": { + "period": 3664969, + "thread": 26 + } + }, + { + "amount": "136.812517827", + "slot": { + "period": 3821253, + "thread": 22 + } + } + ], + "AU12k7adDdyiLoV4Y8JowH7v17nRkPtaxAvDThTifnoppB6p9oSKt": [ + { + "amount": "381.442427802", + "slot": { + "period": 109356, + "thread": 27 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 284386, + "thread": 10 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 484968, + "thread": 25 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 556163, + "thread": 22 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 699516, + "thread": 2 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 888272, + "thread": 22 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 991371, + "thread": 14 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 1305816, + "thread": 14 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 1420717, + "thread": 18 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 1561692, + "thread": 9 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 1785800, + "thread": 23 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 1908039, + "thread": 6 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2036762, + "thread": 11 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2158563, + "thread": 0 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2325747, + "thread": 8 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2489487, + "thread": 3 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2666796, + "thread": 7 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 2875878, + "thread": 16 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 3107292, + "thread": 11 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 3149715, + "thread": 26 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 3320747, + "thread": 22 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 3482422, + "thread": 30 + } + }, + { + "amount": "381.442427802", + "slot": { + "period": 3689211, + "thread": 12 + } + }, + { + "amount": "381.442427809", + "slot": { + "period": 3911625, + "thread": 24 + } + } + ], + "AU12k885Wy8Dv4cNLNLTYwwg3MEvNU3TXzQ2cFy1oubQtnLALDNP3": [ + { + "amount": "133.720264886", + "slot": { + "period": 28635, + "thread": 17 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 230095, + "thread": 5 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 460818, + "thread": 1 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 567262, + "thread": 18 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 716213, + "thread": 15 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 896486, + "thread": 1 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1060484, + "thread": 11 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1302597, + "thread": 22 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1358687, + "thread": 31 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1508768, + "thread": 1 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1718542, + "thread": 4 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 1820747, + "thread": 26 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2037633, + "thread": 6 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2157669, + "thread": 5 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2312198, + "thread": 24 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2551316, + "thread": 15 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2751086, + "thread": 15 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 2859067, + "thread": 23 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 3012531, + "thread": 1 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 3174899, + "thread": 16 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 3404838, + "thread": 19 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 3496142, + "thread": 11 + } + }, + { + "amount": "133.720264886", + "slot": { + "period": 3660394, + "thread": 30 + } + }, + { + "amount": "133.720264898", + "slot": { + "period": 3946150, + "thread": 19 + } + } + ], + "AU12k9GsxkDiBSws5A8uKGEPadDmM2M41gLXLB7K863RsgCVEdY5y": [ + { + "amount": "349.805125100", + "slot": { + "period": 74057, + "thread": 19 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 179819, + "thread": 28 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 478695, + "thread": 22 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 554043, + "thread": 3 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 656709, + "thread": 24 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 937159, + "thread": 30 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 998597, + "thread": 19 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 1308689, + "thread": 12 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 1418238, + "thread": 26 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 1499024, + "thread": 15 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 1777995, + "thread": 25 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 1882254, + "thread": 5 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2097262, + "thread": 23 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2205586, + "thread": 8 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2423389, + "thread": 29 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2569423, + "thread": 7 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2726245, + "thread": 29 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 2811742, + "thread": 20 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 3008216, + "thread": 16 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 3199763, + "thread": 6 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 3414657, + "thread": 6 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 3545110, + "thread": 26 + } + }, + { + "amount": "349.805125100", + "slot": { + "period": 3631357, + "thread": 0 + } + }, + { + "amount": "349.805125105", + "slot": { + "period": 3835805, + "thread": 3 + } + } + ], + "AU12k9p9RmFY879k3GDBBvRJYnqWXLSjRaQWwLCm3UxjyDwXe53bF": [ + { + "amount": "68.164008574", + "slot": { + "period": 115586, + "thread": 25 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 303789, + "thread": 23 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 427642, + "thread": 8 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 539899, + "thread": 8 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 811816, + "thread": 11 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 966260, + "thread": 8 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1115937, + "thread": 13 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1186901, + "thread": 21 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1401692, + "thread": 3 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1549869, + "thread": 7 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1660229, + "thread": 21 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 1877074, + "thread": 2 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2089340, + "thread": 2 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2221076, + "thread": 26 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2460346, + "thread": 11 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2494907, + "thread": 12 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2679655, + "thread": 30 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 2824560, + "thread": 22 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 3036105, + "thread": 12 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 3154545, + "thread": 24 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 3369336, + "thread": 18 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 3580777, + "thread": 6 + } + }, + { + "amount": "68.164008574", + "slot": { + "period": 3667642, + "thread": 0 + } + }, + { + "amount": "68.164008576", + "slot": { + "period": 3806808, + "thread": 14 + } + } + ], + "AU12kBeQjmbVCNhpJsJNYJgigZz8nwmugvrpunFn8wgJkRGKKWic7": [ + { + "amount": "78.309368201", + "slot": { + "period": 36150, + "thread": 21 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 191967, + "thread": 1 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 468344, + "thread": 0 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 509363, + "thread": 8 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 768548, + "thread": 4 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 909893, + "thread": 3 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1089730, + "thread": 19 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1217336, + "thread": 6 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1322527, + "thread": 29 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1587342, + "thread": 15 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1662748, + "thread": 7 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 1833752, + "thread": 16 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2138584, + "thread": 17 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2246687, + "thread": 15 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2391291, + "thread": 20 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2545047, + "thread": 8 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2661388, + "thread": 26 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 2904019, + "thread": 16 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 3053162, + "thread": 23 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 3156673, + "thread": 14 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 3315985, + "thread": 24 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 3591385, + "thread": 29 + } + }, + { + "amount": "78.309368201", + "slot": { + "period": 3659297, + "thread": 20 + } + }, + { + "amount": "78.309368204", + "slot": { + "period": 3860967, + "thread": 6 + } + } + ], + "AU12kCLc6MBi2ctueJAAcARC7NaqJMGNHh4BF6PmLLyKUnUrtAAs6": [ + { + "amount": "235.208750344", + "slot": { + "period": 23584, + "thread": 3 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 213187, + "thread": 13 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 336938, + "thread": 31 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 535605, + "thread": 18 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 760450, + "thread": 1 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 940180, + "thread": 23 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1098538, + "thread": 4 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1214210, + "thread": 14 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1421274, + "thread": 22 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1489493, + "thread": 6 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1650254, + "thread": 2 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 1823323, + "thread": 21 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2015669, + "thread": 18 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2249473, + "thread": 7 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2426919, + "thread": 17 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2612100, + "thread": 20 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2722173, + "thread": 23 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2946270, + "thread": 11 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 2989320, + "thread": 9 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 3153828, + "thread": 15 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 3380703, + "thread": 27 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 3497557, + "thread": 22 + } + }, + { + "amount": "235.208750344", + "slot": { + "period": 3652272, + "thread": 29 + } + }, + { + "amount": "235.208750339", + "slot": { + "period": 3856747, + "thread": 1 + } + } + ], + "AU12kCg33DKbXdzy4xPSMwMtCysu5xF5bumEcSkofkqZjqTQYZPTc": [ + { + "amount": "293.318659237", + "slot": { + "period": 62812, + "thread": 31 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 236005, + "thread": 8 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 446002, + "thread": 31 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 598921, + "thread": 3 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 719823, + "thread": 24 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 831570, + "thread": 29 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 983035, + "thread": 18 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 1271618, + "thread": 20 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 1451635, + "thread": 9 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 1640013, + "thread": 20 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 1764246, + "thread": 1 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 1947738, + "thread": 10 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2002738, + "thread": 23 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2167839, + "thread": 0 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2438797, + "thread": 8 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2462902, + "thread": 14 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2724475, + "thread": 12 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 2803888, + "thread": 0 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 3049115, + "thread": 18 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 3169601, + "thread": 20 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 3440560, + "thread": 6 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 3585103, + "thread": 27 + } + }, + { + "amount": "293.318659237", + "slot": { + "period": 3646911, + "thread": 31 + } + }, + { + "amount": "293.318659246", + "slot": { + "period": 3946301, + "thread": 3 + } + } + ], + "AU12kDWeTu3z3PKiYkfnAiECiY6vUFGZuospf4TVmwhv1ReZyoC1C": [ + { + "amount": "123.812910047", + "slot": { + "period": 100966, + "thread": 25 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 317132, + "thread": 19 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 351428, + "thread": 2 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 571379, + "thread": 11 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 756926, + "thread": 31 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 899137, + "thread": 31 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1050651, + "thread": 12 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1216386, + "thread": 8 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1394916, + "thread": 30 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1585827, + "thread": 7 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1667679, + "thread": 9 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 1835456, + "thread": 26 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2041923, + "thread": 30 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2240230, + "thread": 8 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2368982, + "thread": 4 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2555906, + "thread": 28 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2657803, + "thread": 30 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2919607, + "thread": 19 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 2974742, + "thread": 23 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 3203054, + "thread": 4 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 3402910, + "thread": 31 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 3558110, + "thread": 25 + } + }, + { + "amount": "123.812910047", + "slot": { + "period": 3691228, + "thread": 22 + } + }, + { + "amount": "123.812910040", + "slot": { + "period": 3934971, + "thread": 20 + } + } + ], + "AU12kDg8LzoQc6SmHMrhsQ7Cy23tp1VEi5JPNAcw9yUCCTyi3LRNi": [ + { + "amount": "66.017861974", + "slot": { + "period": 64604, + "thread": 24 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 225856, + "thread": 17 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 407690, + "thread": 6 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 534554, + "thread": 12 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 769118, + "thread": 16 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 963558, + "thread": 21 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1139392, + "thread": 0 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1317466, + "thread": 7 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1467347, + "thread": 22 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1541142, + "thread": 17 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1792298, + "thread": 9 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 1975265, + "thread": 24 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2042899, + "thread": 13 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2210716, + "thread": 30 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2376509, + "thread": 18 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2485134, + "thread": 2 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2684193, + "thread": 16 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 2883481, + "thread": 17 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 3007702, + "thread": 12 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 3195696, + "thread": 21 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 3433388, + "thread": 13 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 3528372, + "thread": 24 + } + }, + { + "amount": "66.017861974", + "slot": { + "period": 3757871, + "thread": 4 + } + }, + { + "amount": "66.017861964", + "slot": { + "period": 3784640, + "thread": 19 + } + } + ], + "AU12kEiVU8a8LB4xfUjQKtq5547VkKM35Ray4tQafyn2qNAkyKMuF": [ + { + "amount": "56.089011342", + "slot": { + "period": 128800, + "thread": 16 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 302425, + "thread": 2 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 378427, + "thread": 27 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 523255, + "thread": 31 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 818529, + "thread": 13 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 872010, + "thread": 9 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1070194, + "thread": 24 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1288546, + "thread": 27 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1397658, + "thread": 17 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1535815, + "thread": 31 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1655091, + "thread": 8 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 1876558, + "thread": 31 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2117428, + "thread": 30 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2207335, + "thread": 7 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2446423, + "thread": 10 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2542314, + "thread": 12 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2701855, + "thread": 27 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 2841708, + "thread": 27 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 3022919, + "thread": 15 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 3277239, + "thread": 12 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 3360865, + "thread": 2 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 3523014, + "thread": 10 + } + }, + { + "amount": "56.089011342", + "slot": { + "period": 3629668, + "thread": 6 + } + }, + { + "amount": "56.089011336", + "slot": { + "period": 3828332, + "thread": 18 + } + } + ], + "AU12kFLFX9BhgVC3duYpvBdYzLFj7VbX5JunE4scRsbSMwAnrj5c7": [ + { + "amount": "209.299485975", + "slot": { + "period": 62870, + "thread": 2 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 293426, + "thread": 8 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 415356, + "thread": 17 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 641662, + "thread": 20 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 814091, + "thread": 22 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 825971, + "thread": 9 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1019052, + "thread": 31 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1239060, + "thread": 6 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1447652, + "thread": 16 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1640614, + "thread": 18 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1785884, + "thread": 11 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 1904029, + "thread": 17 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2048471, + "thread": 19 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2192501, + "thread": 18 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2428664, + "thread": 4 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2568531, + "thread": 14 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2733636, + "thread": 29 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 2839433, + "thread": 27 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 3049095, + "thread": 12 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 3261480, + "thread": 16 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 3384228, + "thread": 30 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 3569080, + "thread": 3 + } + }, + { + "amount": "209.299485975", + "slot": { + "period": 3757361, + "thread": 29 + } + }, + { + "amount": "209.299485973", + "slot": { + "period": 3880986, + "thread": 4 + } + } + ], + "AU12kFaE61KJXCXw4iiqwDz7Z87B5nLubZ8FVxZ3imGkdTLU9DW24": [ + { + "amount": "460.895665308", + "slot": { + "period": 96386, + "thread": 17 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 212544, + "thread": 5 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 370396, + "thread": 3 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 645461, + "thread": 30 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 659679, + "thread": 2 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 976961, + "thread": 3 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1122472, + "thread": 30 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1217382, + "thread": 30 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1416324, + "thread": 11 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1502435, + "thread": 23 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1660195, + "thread": 10 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 1899178, + "thread": 12 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2094951, + "thread": 3 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2152316, + "thread": 27 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2349229, + "thread": 24 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2517076, + "thread": 18 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2773043, + "thread": 13 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 2945111, + "thread": 25 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 3028774, + "thread": 18 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 3257613, + "thread": 17 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 3293706, + "thread": 10 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 3458663, + "thread": 13 + } + }, + { + "amount": "460.895665308", + "slot": { + "period": 3676984, + "thread": 0 + } + }, + { + "amount": "460.895665305", + "slot": { + "period": 3787726, + "thread": 13 + } + } + ], + "AU12kG4a1X8wqUwqdo97kH5CjvMEY8PTMPj4vQfT1LT98FBza7NB3": [ + { + "amount": "194.653653827", + "slot": { + "period": 106493, + "thread": 24 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 223626, + "thread": 31 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 480018, + "thread": 4 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 646075, + "thread": 28 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 718785, + "thread": 15 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 870025, + "thread": 6 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 989124, + "thread": 24 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 1289342, + "thread": 24 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 1374306, + "thread": 16 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 1600441, + "thread": 14 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 1667849, + "thread": 28 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 1911695, + "thread": 1 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2042175, + "thread": 18 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2213408, + "thread": 20 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2405436, + "thread": 4 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2619034, + "thread": 19 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2703061, + "thread": 21 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2795263, + "thread": 16 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 2969851, + "thread": 16 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 3188691, + "thread": 23 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 3329817, + "thread": 27 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 3477357, + "thread": 0 + } + }, + { + "amount": "194.653653827", + "slot": { + "period": 3641644, + "thread": 24 + } + }, + { + "amount": "194.653653828", + "slot": { + "period": 3923717, + "thread": 28 + } + } + ], + "AU12kGS3XpMrnuX47TmJHNu6uUVmy3hnhXLzRpqJPPkPxAPdXoAyz": [ + { + "amount": "84.461809714", + "slot": { + "period": 12939, + "thread": 3 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 290258, + "thread": 26 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 388668, + "thread": 5 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 520682, + "thread": 8 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 701924, + "thread": 5 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 955325, + "thread": 21 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1132283, + "thread": 8 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1297916, + "thread": 14 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1466920, + "thread": 10 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1509995, + "thread": 11 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1683629, + "thread": 24 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 1975172, + "thread": 7 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2010496, + "thread": 31 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2264197, + "thread": 26 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2378764, + "thread": 10 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2525684, + "thread": 26 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2660326, + "thread": 4 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2856979, + "thread": 0 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 2980643, + "thread": 23 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 3202237, + "thread": 0 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 3428940, + "thread": 18 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 3475687, + "thread": 16 + } + }, + { + "amount": "84.461809714", + "slot": { + "period": 3624938, + "thread": 5 + } + }, + { + "amount": "84.461809719", + "slot": { + "period": 3858112, + "thread": 22 + } + } + ], + "AU12kHCLYC6yw9a2ECdxqcpKZXqnbALpU2zETW3HKCvzPKSVA5HiY": [ + { + "amount": "515.872293534", + "slot": { + "period": 87932, + "thread": 15 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 300445, + "thread": 29 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 463348, + "thread": 24 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 509552, + "thread": 21 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 742676, + "thread": 26 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 962427, + "thread": 21 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1127223, + "thread": 31 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1159381, + "thread": 2 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1427805, + "thread": 28 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1596270, + "thread": 0 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1730385, + "thread": 4 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 1842970, + "thread": 18 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2119237, + "thread": 4 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2163747, + "thread": 20 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2428780, + "thread": 4 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2580598, + "thread": 17 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2638668, + "thread": 10 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 2828356, + "thread": 8 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 3094617, + "thread": 5 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 3202482, + "thread": 0 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 3293529, + "thread": 26 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 3455139, + "thread": 11 + } + }, + { + "amount": "515.872293534", + "slot": { + "period": 3777931, + "thread": 30 + } + }, + { + "amount": "515.872293529", + "slot": { + "period": 3823119, + "thread": 26 + } + } + ], + "AU12kHsL4k8VrWjPLcxLnYLkBByihDv7E4BAGqQxtcsz9d2dP9ywx": [ + { + "amount": "117.929795930", + "slot": { + "period": 54100, + "thread": 10 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 178597, + "thread": 17 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 437484, + "thread": 31 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 527529, + "thread": 26 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 722013, + "thread": 30 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 844690, + "thread": 28 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 982962, + "thread": 29 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 1249249, + "thread": 4 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 1455083, + "thread": 23 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 1521862, + "thread": 10 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 1784647, + "thread": 9 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 1919593, + "thread": 4 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2042635, + "thread": 18 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2193500, + "thread": 0 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2402628, + "thread": 5 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2538782, + "thread": 9 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2701467, + "thread": 19 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 2914578, + "thread": 26 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 3006790, + "thread": 18 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 3159970, + "thread": 17 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 3345825, + "thread": 15 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 3616947, + "thread": 19 + } + }, + { + "amount": "117.929795930", + "slot": { + "period": 3741637, + "thread": 16 + } + }, + { + "amount": "117.929795940", + "slot": { + "period": 3922482, + "thread": 24 + } + } + ], + "AU12kJ5qbjQtdo2HetiyLveWLTswoDWatS79ANz6sHuG4itHDb9u4": [ + { + "amount": "350.297356311", + "slot": { + "period": 33150, + "thread": 4 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 219040, + "thread": 11 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 429954, + "thread": 19 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 575663, + "thread": 18 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 669591, + "thread": 3 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 859329, + "thread": 15 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 995581, + "thread": 8 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 1268584, + "thread": 7 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 1360706, + "thread": 27 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 1601159, + "thread": 11 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 1716303, + "thread": 3 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 1831994, + "thread": 3 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2063096, + "thread": 2 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2157042, + "thread": 26 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2301452, + "thread": 5 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2565181, + "thread": 23 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2754312, + "thread": 13 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 2933977, + "thread": 13 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 3008843, + "thread": 9 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 3270448, + "thread": 11 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 3425212, + "thread": 4 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 3531728, + "thread": 5 + } + }, + { + "amount": "350.297356311", + "slot": { + "period": 3684881, + "thread": 23 + } + }, + { + "amount": "350.297356302", + "slot": { + "period": 3893914, + "thread": 1 + } + } + ], + "AU12kLc4YyibjDD31zBZgNRxSLEd4FDsZ77tnGAX94trvBMFxZQxc": [ + { + "amount": "134.402483929", + "slot": { + "period": 142177, + "thread": 22 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 318327, + "thread": 27 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 330449, + "thread": 15 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 499558, + "thread": 9 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 712074, + "thread": 9 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 858240, + "thread": 18 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1117263, + "thread": 20 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1194605, + "thread": 18 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1364982, + "thread": 16 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1592747, + "thread": 19 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1723142, + "thread": 12 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1859021, + "thread": 2 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 1990925, + "thread": 27 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 2194145, + "thread": 8 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 2372641, + "thread": 18 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 2594405, + "thread": 31 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 2708150, + "thread": 5 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 2807852, + "thread": 14 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 3084014, + "thread": 17 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 3228541, + "thread": 15 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 3327131, + "thread": 9 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 3539861, + "thread": 7 + } + }, + { + "amount": "134.402483929", + "slot": { + "period": 3662053, + "thread": 27 + } + }, + { + "amount": "134.402483920", + "slot": { + "period": 3795460, + "thread": 4 + } + } + ], + "AU12kMXxrEm5jDyM9GoE2vGskfnPxb57hVCiexU66wKaknLXgpRiB": [ + { + "amount": "97.844577176", + "slot": { + "period": 143645, + "thread": 20 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 275439, + "thread": 4 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 433744, + "thread": 31 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 612476, + "thread": 14 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 670014, + "thread": 20 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 979202, + "thread": 11 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1048978, + "thread": 0 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1265308, + "thread": 3 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1321981, + "thread": 3 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1488100, + "thread": 5 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1740673, + "thread": 26 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 1907267, + "thread": 2 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2107099, + "thread": 28 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2197800, + "thread": 10 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2425731, + "thread": 6 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2621361, + "thread": 16 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2653231, + "thread": 14 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2867087, + "thread": 22 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 2987341, + "thread": 21 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 3185809, + "thread": 25 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 3415832, + "thread": 19 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 3604073, + "thread": 3 + } + }, + { + "amount": "97.844577176", + "slot": { + "period": 3627284, + "thread": 27 + } + }, + { + "amount": "97.844577166", + "slot": { + "period": 3864212, + "thread": 13 + } + } + ], + "AU12kMsuMp2uWPhJuMh6yyyoJWrbiMK9gxeapENj98gYCxdmksmj2": [ + { + "amount": "157.008499105", + "slot": { + "period": 111965, + "thread": 0 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 206926, + "thread": 9 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 453787, + "thread": 11 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 546805, + "thread": 18 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 792580, + "thread": 28 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 909730, + "thread": 28 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1097632, + "thread": 4 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1168989, + "thread": 3 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1365509, + "thread": 20 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1646520, + "thread": 17 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1790816, + "thread": 14 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 1890719, + "thread": 10 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2029017, + "thread": 9 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2176715, + "thread": 18 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2428467, + "thread": 13 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2580942, + "thread": 22 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2686113, + "thread": 19 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2940636, + "thread": 14 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 2956754, + "thread": 21 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 3216988, + "thread": 21 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 3331497, + "thread": 20 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 3511876, + "thread": 24 + } + }, + { + "amount": "157.008499105", + "slot": { + "period": 3658702, + "thread": 22 + } + }, + { + "amount": "157.008499110", + "slot": { + "period": 3943029, + "thread": 29 + } + } + ], + "AU12kNif4xzdAHogWQ1JyJKnQ9ZJhvqK5e1cDazwHT6u6Ev4cVVin": [ + { + "amount": "61.901653414", + "slot": { + "period": 121704, + "thread": 17 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 227928, + "thread": 0 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 470670, + "thread": 0 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 631496, + "thread": 4 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 792401, + "thread": 5 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 885382, + "thread": 21 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1131484, + "thread": 6 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1202337, + "thread": 16 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1371875, + "thread": 8 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1486324, + "thread": 9 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1791505, + "thread": 19 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 1822625, + "thread": 29 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2077731, + "thread": 17 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2264828, + "thread": 23 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2458749, + "thread": 5 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2546560, + "thread": 28 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2744327, + "thread": 4 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 2845732, + "thread": 27 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 3070855, + "thread": 8 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 3268982, + "thread": 29 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 3414743, + "thread": 24 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 3495326, + "thread": 10 + } + }, + { + "amount": "61.901653414", + "slot": { + "period": 3635295, + "thread": 9 + } + }, + { + "amount": "61.901653424", + "slot": { + "period": 3832647, + "thread": 13 + } + } + ], + "AU12kPVi3j5XtCCwkSvPE9Zm7ViKQZoKWAL3f1aifDvnXLLbfb2C4": [ + { + "amount": "188.004128536", + "slot": { + "period": 79231, + "thread": 15 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 317682, + "thread": 4 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 401654, + "thread": 19 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 637899, + "thread": 31 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 719937, + "thread": 19 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 822090, + "thread": 23 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1015451, + "thread": 17 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1156787, + "thread": 27 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1327507, + "thread": 11 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1573315, + "thread": 16 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1732529, + "thread": 7 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 1924075, + "thread": 29 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2139989, + "thread": 12 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2260893, + "thread": 3 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2440550, + "thread": 6 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2579572, + "thread": 0 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2778876, + "thread": 29 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 2885516, + "thread": 31 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 3071955, + "thread": 25 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 3168134, + "thread": 23 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 3335977, + "thread": 23 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 3612565, + "thread": 20 + } + }, + { + "amount": "188.004128536", + "slot": { + "period": 3620073, + "thread": 22 + } + }, + { + "amount": "188.004128542", + "slot": { + "period": 3901508, + "thread": 14 + } + } + ], + "AU12kPp1QELzeoqjSNDb8gmanSXqg2s8roJoivv3mDuERDD1o24SL": [ + { + "amount": "262.510094419", + "slot": { + "period": 66855, + "thread": 14 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 178554, + "thread": 10 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 325390, + "thread": 11 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 623246, + "thread": 18 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 758597, + "thread": 21 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 881393, + "thread": 20 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 988031, + "thread": 23 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1269478, + "thread": 16 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1346291, + "thread": 9 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1542656, + "thread": 14 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1794832, + "thread": 16 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1942543, + "thread": 7 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 1979741, + "thread": 22 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 2251186, + "thread": 16 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 2375933, + "thread": 3 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 2550648, + "thread": 23 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 2662768, + "thread": 1 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 2833729, + "thread": 19 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 3095857, + "thread": 17 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 3207773, + "thread": 29 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 3369153, + "thread": 10 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 3499645, + "thread": 11 + } + }, + { + "amount": "262.510094419", + "slot": { + "period": 3667315, + "thread": 16 + } + }, + { + "amount": "262.510094420", + "slot": { + "period": 3887573, + "thread": 28 + } + } + ], + "AU12kQVeTHNB2oHXbbC1Ets5QapnjXXXMyzWwhmrLR6cmf1ajjZmA": [ + { + "amount": "271.043408080", + "slot": { + "period": 166621, + "thread": 18 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 195064, + "thread": 2 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 352024, + "thread": 0 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 561232, + "thread": 0 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 682777, + "thread": 25 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 875541, + "thread": 23 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1087901, + "thread": 4 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1247819, + "thread": 27 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1469772, + "thread": 8 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1502681, + "thread": 21 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1727494, + "thread": 2 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 1859458, + "thread": 30 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2080522, + "thread": 15 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2202534, + "thread": 25 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2430047, + "thread": 16 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2499220, + "thread": 15 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2687345, + "thread": 17 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 2878566, + "thread": 24 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 3016018, + "thread": 18 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 3287846, + "thread": 28 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 3366085, + "thread": 2 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 3559076, + "thread": 16 + } + }, + { + "amount": "271.043408080", + "slot": { + "period": 3720573, + "thread": 13 + } + }, + { + "amount": "271.043408072", + "slot": { + "period": 3812419, + "thread": 25 + } + } + ], + "AU12kRgtvSXxcqBG9bmSoexmtZEEUW7Lo7QdRGbGayNFnP8ySzh4t": [ + { + "amount": "296.705625643", + "slot": { + "period": 126083, + "thread": 9 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 254563, + "thread": 25 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 417151, + "thread": 20 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 581903, + "thread": 21 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 812331, + "thread": 20 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 947646, + "thread": 14 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1042744, + "thread": 2 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1172838, + "thread": 3 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1477857, + "thread": 3 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1634645, + "thread": 1 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1754499, + "thread": 27 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 1960452, + "thread": 23 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2069933, + "thread": 24 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2280282, + "thread": 31 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2424878, + "thread": 20 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2547973, + "thread": 16 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2735440, + "thread": 28 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 2938831, + "thread": 7 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 3119546, + "thread": 12 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 3159948, + "thread": 29 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 3299504, + "thread": 29 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 3516710, + "thread": 3 + } + }, + { + "amount": "296.705625643", + "slot": { + "period": 3710668, + "thread": 24 + } + }, + { + "amount": "296.705625644", + "slot": { + "period": 3818188, + "thread": 6 + } + } + ], + "AU12kSMz7H3d7a27Fr8RS613yMC6KFugwtwiVc5LUFUjRRicrRb2u": [ + { + "amount": "202.697759629", + "slot": { + "period": 137208, + "thread": 15 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 310358, + "thread": 20 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 437727, + "thread": 17 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 512460, + "thread": 17 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 767195, + "thread": 9 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 890702, + "thread": 0 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1001651, + "thread": 17 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1235972, + "thread": 21 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1443116, + "thread": 7 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1552878, + "thread": 11 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1706516, + "thread": 19 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 1967161, + "thread": 2 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2095851, + "thread": 21 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2185171, + "thread": 28 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2383456, + "thread": 6 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2514252, + "thread": 29 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2660975, + "thread": 12 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 2804933, + "thread": 25 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 3067853, + "thread": 28 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 3214514, + "thread": 27 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 3335056, + "thread": 5 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 3526553, + "thread": 29 + } + }, + { + "amount": "202.697759629", + "slot": { + "period": 3750550, + "thread": 6 + } + }, + { + "amount": "202.697759638", + "slot": { + "period": 3935534, + "thread": 27 + } + } + ], + "AU12kTZ8W8xPWtjA5QEoX59mZqmsEYSTLSRbMJ4cKN62FVL8bFXJp": [ + { + "amount": "381.247811564", + "slot": { + "period": 42917, + "thread": 19 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 310342, + "thread": 8 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 414849, + "thread": 1 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 545472, + "thread": 26 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 810573, + "thread": 20 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 979943, + "thread": 20 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1072145, + "thread": 30 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1186878, + "thread": 31 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1404828, + "thread": 28 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1550380, + "thread": 7 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1771280, + "thread": 20 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 1944520, + "thread": 2 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2028878, + "thread": 2 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2169840, + "thread": 5 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2300899, + "thread": 10 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2464927, + "thread": 18 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2666732, + "thread": 27 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 2852945, + "thread": 19 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 3040808, + "thread": 11 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 3270528, + "thread": 0 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 3360300, + "thread": 14 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 3567133, + "thread": 24 + } + }, + { + "amount": "381.247811564", + "slot": { + "period": 3770524, + "thread": 25 + } + }, + { + "amount": "381.247811574", + "slot": { + "period": 3889428, + "thread": 0 + } + } + ], + "AU12kTpYuAbFrG1kGa87tS2u4cStWviV1yfxYkJJ6b6JpsggcBn6e": [ + { + "amount": "270.595225600", + "slot": { + "period": 151441, + "thread": 13 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 288686, + "thread": 14 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 345744, + "thread": 17 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 584052, + "thread": 11 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 693228, + "thread": 24 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 919036, + "thread": 14 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 990008, + "thread": 29 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 1307404, + "thread": 15 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 1387250, + "thread": 6 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 1561901, + "thread": 23 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 1705518, + "thread": 23 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 1952824, + "thread": 5 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2004799, + "thread": 31 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2167462, + "thread": 9 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2311197, + "thread": 25 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2543662, + "thread": 12 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2668116, + "thread": 14 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 2896838, + "thread": 24 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 3001107, + "thread": 15 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 3232265, + "thread": 24 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 3416836, + "thread": 17 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 3610376, + "thread": 22 + } + }, + { + "amount": "270.595225600", + "slot": { + "period": 3634791, + "thread": 31 + } + }, + { + "amount": "270.595225610", + "slot": { + "period": 3940353, + "thread": 24 + } + } + ], + "AU12kUfiZ395Hp6RsEuQts3VhbsStMWnVyvCQRKcsW8bpvRLJC4wC": [ + { + "amount": "110.118002997", + "slot": { + "period": 13430, + "thread": 3 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 255808, + "thread": 30 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 470500, + "thread": 15 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 571732, + "thread": 4 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 694994, + "thread": 2 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 861740, + "thread": 29 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1062712, + "thread": 16 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1216954, + "thread": 17 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1345281, + "thread": 4 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1602842, + "thread": 3 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1669011, + "thread": 25 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 1856965, + "thread": 26 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2084226, + "thread": 5 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2268984, + "thread": 8 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2380388, + "thread": 30 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2621527, + "thread": 0 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2685977, + "thread": 5 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 2948215, + "thread": 5 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 3081068, + "thread": 3 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 3280275, + "thread": 30 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 3301450, + "thread": 31 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 3511184, + "thread": 15 + } + }, + { + "amount": "110.118002997", + "slot": { + "period": 3734459, + "thread": 2 + } + }, + { + "amount": "110.118002993", + "slot": { + "period": 3884317, + "thread": 14 + } + } + ], + "AU12kUsHrmAysqrK5NqKKB5nR3kGmqtDXsZ2t75xBigiFimCD9kCX": [ + { + "amount": "494.008804095", + "slot": { + "period": 68122, + "thread": 16 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 219099, + "thread": 1 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 478327, + "thread": 7 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 504283, + "thread": 6 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 678212, + "thread": 6 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 928945, + "thread": 0 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1052528, + "thread": 30 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1305841, + "thread": 17 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1443955, + "thread": 23 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1560314, + "thread": 30 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1794735, + "thread": 28 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 1975261, + "thread": 1 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2005057, + "thread": 3 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2148732, + "thread": 28 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2398921, + "thread": 7 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2558656, + "thread": 8 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2653275, + "thread": 6 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 2841221, + "thread": 18 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 3091040, + "thread": 0 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 3270516, + "thread": 19 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 3417446, + "thread": 23 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 3564541, + "thread": 19 + } + }, + { + "amount": "494.008804095", + "slot": { + "period": 3775200, + "thread": 16 + } + }, + { + "amount": "494.008804094", + "slot": { + "period": 3915216, + "thread": 1 + } + } + ], + "AU12kWAxaVmdpNdZyRHQSG6CWp7iJ2uuwQVL1mQypQf5Uosbf8Y2L": [ + { + "amount": "65.795669007", + "slot": { + "period": 128847, + "thread": 22 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 228062, + "thread": 10 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 486752, + "thread": 13 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 521625, + "thread": 25 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 792627, + "thread": 5 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 824910, + "thread": 21 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1090392, + "thread": 3 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1202750, + "thread": 7 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1433570, + "thread": 23 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1520582, + "thread": 4 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1714917, + "thread": 24 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 1922046, + "thread": 28 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2095228, + "thread": 20 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2193858, + "thread": 22 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2438319, + "thread": 12 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2470292, + "thread": 31 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2741927, + "thread": 3 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 2953362, + "thread": 31 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 3087940, + "thread": 20 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 3133608, + "thread": 17 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 3367113, + "thread": 13 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 3531644, + "thread": 19 + } + }, + { + "amount": "65.795669007", + "slot": { + "period": 3642080, + "thread": 9 + } + }, + { + "amount": "65.795668998", + "slot": { + "period": 3854862, + "thread": 20 + } + } + ], + "AU12kX7tup32JezRhZRWg5YvqnM2QzffqRhfjVfJRY16Ez6esGWa2": [ + { + "amount": "609.815509317", + "slot": { + "period": 78063, + "thread": 22 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 257467, + "thread": 14 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 354268, + "thread": 6 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 641766, + "thread": 17 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 816118, + "thread": 10 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 922821, + "thread": 27 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1099563, + "thread": 14 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1299785, + "thread": 0 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1356090, + "thread": 15 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1520189, + "thread": 29 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1715364, + "thread": 26 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 1913091, + "thread": 3 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2017322, + "thread": 15 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2151125, + "thread": 13 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2401676, + "thread": 25 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2495599, + "thread": 25 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2790660, + "thread": 27 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 2817627, + "thread": 27 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 3047312, + "thread": 30 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 3155909, + "thread": 17 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 3297531, + "thread": 17 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 3597143, + "thread": 29 + } + }, + { + "amount": "609.815509317", + "slot": { + "period": 3626679, + "thread": 25 + } + }, + { + "amount": "609.815509314", + "slot": { + "period": 3841184, + "thread": 23 + } + } + ], + "AU12kXKyiHn6vsqjFwd4Xf8X2PzJFGF15FiyhxgoqQoFy5GtqsT8L": [ + { + "amount": "464.119807279", + "slot": { + "period": 21943, + "thread": 2 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 299059, + "thread": 15 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 380212, + "thread": 27 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 621375, + "thread": 26 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 786627, + "thread": 1 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 842325, + "thread": 6 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1042753, + "thread": 31 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1252290, + "thread": 0 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1329394, + "thread": 14 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1522805, + "thread": 6 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1763256, + "thread": 25 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 1890120, + "thread": 5 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2081279, + "thread": 19 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2278343, + "thread": 3 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2433399, + "thread": 8 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2610911, + "thread": 1 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2638399, + "thread": 1 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 2817119, + "thread": 28 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 3018178, + "thread": 26 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 3259176, + "thread": 2 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 3431346, + "thread": 10 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 3617782, + "thread": 11 + } + }, + { + "amount": "464.119807279", + "slot": { + "period": 3739015, + "thread": 30 + } + }, + { + "amount": "464.119807286", + "slot": { + "period": 3819188, + "thread": 14 + } + } + ], + "AU12kXdrDp1B75xW4ELtTC6SYMV6cgbFiTqjBCcCR7znGyYZwGyv5": [ + { + "amount": "137.069350470", + "slot": { + "period": 119745, + "thread": 7 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 171122, + "thread": 6 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 362688, + "thread": 4 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 580455, + "thread": 3 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 684096, + "thread": 31 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 828929, + "thread": 19 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1069264, + "thread": 20 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1201114, + "thread": 13 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1389594, + "thread": 11 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1517286, + "thread": 13 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1719240, + "thread": 13 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 1938587, + "thread": 2 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2143566, + "thread": 10 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2180904, + "thread": 29 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2356249, + "thread": 19 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2549276, + "thread": 10 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2674486, + "thread": 17 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2912455, + "thread": 27 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 2981916, + "thread": 21 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 3237219, + "thread": 19 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 3327338, + "thread": 2 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 3522979, + "thread": 15 + } + }, + { + "amount": "137.069350470", + "slot": { + "period": 3720900, + "thread": 29 + } + }, + { + "amount": "137.069350474", + "slot": { + "period": 3833398, + "thread": 1 + } + } + ], + "AU12kXmuUzFWP6E7HkVYzzy6p9CekKCgshsQz4Gx4GTXDWJScuQax": [ + { + "amount": "343.708687581", + "slot": { + "period": 112586, + "thread": 22 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 193341, + "thread": 0 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 356988, + "thread": 12 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 625736, + "thread": 6 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 722699, + "thread": 24 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 930941, + "thread": 10 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1015211, + "thread": 8 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1228917, + "thread": 29 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1366000, + "thread": 0 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1506260, + "thread": 4 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1806528, + "thread": 5 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 1957831, + "thread": 14 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2040943, + "thread": 1 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2175713, + "thread": 1 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2370583, + "thread": 18 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2608797, + "thread": 6 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2655886, + "thread": 17 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2793322, + "thread": 27 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 2998509, + "thread": 25 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 3167966, + "thread": 26 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 3411176, + "thread": 27 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 3532774, + "thread": 6 + } + }, + { + "amount": "343.708687581", + "slot": { + "period": 3689058, + "thread": 26 + } + }, + { + "amount": "343.708687574", + "slot": { + "period": 3930289, + "thread": 22 + } + } + ], + "AU12kYndSpP2EEUNGhZbTQ3xk5KxrBQ5cVbytpcR5YJVB3conhTWz": [ + { + "amount": "164.702002641", + "slot": { + "period": 32006, + "thread": 22 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 174551, + "thread": 19 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 325641, + "thread": 19 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 500521, + "thread": 29 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 685770, + "thread": 26 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 949938, + "thread": 30 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 997549, + "thread": 13 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 1186554, + "thread": 31 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 1381439, + "thread": 21 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 1645752, + "thread": 13 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 1784201, + "thread": 15 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 1857492, + "thread": 28 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2079470, + "thread": 1 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2216674, + "thread": 31 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2306941, + "thread": 22 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2620199, + "thread": 26 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2748330, + "thread": 29 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2912450, + "thread": 26 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 2970612, + "thread": 11 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 3257307, + "thread": 25 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 3342147, + "thread": 5 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 3541600, + "thread": 0 + } + }, + { + "amount": "164.702002641", + "slot": { + "period": 3772759, + "thread": 27 + } + }, + { + "amount": "164.702002642", + "slot": { + "period": 3882144, + "thread": 3 + } + } + ], + "AU12kaUkjjaG1ZcctyYMPRErBR5WwhMMufHHQ5TTr6CFnSxRWPF5K": [ + { + "amount": "674.855075451", + "slot": { + "period": 116464, + "thread": 5 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 176900, + "thread": 8 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 459136, + "thread": 7 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 533701, + "thread": 29 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 663859, + "thread": 1 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 949699, + "thread": 4 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1011505, + "thread": 3 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1233748, + "thread": 17 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1376609, + "thread": 15 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1519556, + "thread": 15 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1772116, + "thread": 14 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 1849639, + "thread": 0 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2001432, + "thread": 28 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2287479, + "thread": 18 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2354739, + "thread": 24 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2478310, + "thread": 27 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2654295, + "thread": 4 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 2933053, + "thread": 9 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 3052061, + "thread": 15 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 3243727, + "thread": 6 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 3318302, + "thread": 5 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 3588505, + "thread": 23 + } + }, + { + "amount": "674.855075451", + "slot": { + "period": 3693922, + "thread": 14 + } + }, + { + "amount": "674.855075441", + "slot": { + "period": 3874282, + "thread": 31 + } + } + ], + "AU12kaWnTPRUyQEdHMmQhWU6YtZEtkjVpqkUgjmjcGzwVYi86jWuB": [ + { + "amount": "123.206119370", + "slot": { + "period": 161266, + "thread": 17 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 241850, + "thread": 19 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 481516, + "thread": 14 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 614734, + "thread": 25 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 662291, + "thread": 9 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 867574, + "thread": 11 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1005456, + "thread": 16 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1292685, + "thread": 27 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1392390, + "thread": 0 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1602450, + "thread": 4 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1739297, + "thread": 2 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1826434, + "thread": 5 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 1995408, + "thread": 17 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2229264, + "thread": 15 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2329903, + "thread": 1 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2530521, + "thread": 1 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2678002, + "thread": 12 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2865536, + "thread": 25 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 2967290, + "thread": 28 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 3133015, + "thread": 8 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 3450264, + "thread": 24 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 3599652, + "thread": 8 + } + }, + { + "amount": "123.206119370", + "slot": { + "period": 3631080, + "thread": 19 + } + }, + { + "amount": "123.206119365", + "slot": { + "period": 3818595, + "thread": 1 + } + } + ], + "AU12kcxLAjBfoohXYDbQXjJYUtMrGsmGtCscawiVa3kEz9iirK6wT": [ + { + "amount": "72.065624218", + "slot": { + "period": 139564, + "thread": 19 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 283488, + "thread": 14 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 412340, + "thread": 9 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 592012, + "thread": 9 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 762405, + "thread": 23 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 919601, + "thread": 29 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1050424, + "thread": 2 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1159836, + "thread": 20 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1358764, + "thread": 11 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1613440, + "thread": 23 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1721619, + "thread": 8 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 1852344, + "thread": 14 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2082316, + "thread": 6 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2206004, + "thread": 27 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2311823, + "thread": 22 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2591018, + "thread": 22 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2713942, + "thread": 7 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 2911044, + "thread": 2 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 3063535, + "thread": 15 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 3273270, + "thread": 25 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 3333766, + "thread": 16 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 3551645, + "thread": 15 + } + }, + { + "amount": "72.065624218", + "slot": { + "period": 3634949, + "thread": 2 + } + }, + { + "amount": "72.065624215", + "slot": { + "period": 3781035, + "thread": 1 + } + } + ], + "AU12kdFvGZ83fDHpYfsA6oWPRStRih46rCu9Fbh6XvC4hDDEXuX8Y": [ + { + "amount": "156.461578466", + "slot": { + "period": 105442, + "thread": 31 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 272435, + "thread": 6 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 395691, + "thread": 4 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 649415, + "thread": 25 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 812788, + "thread": 5 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 886548, + "thread": 15 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1103051, + "thread": 4 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1151199, + "thread": 29 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1451143, + "thread": 15 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1531448, + "thread": 1 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1760790, + "thread": 25 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1900111, + "thread": 4 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 1985068, + "thread": 14 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 2283583, + "thread": 11 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 2422865, + "thread": 26 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 2563675, + "thread": 26 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 2788272, + "thread": 25 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 2874110, + "thread": 8 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 3064086, + "thread": 10 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 3263574, + "thread": 29 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 3430510, + "thread": 14 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 3500363, + "thread": 31 + } + }, + { + "amount": "156.461578466", + "slot": { + "period": 3769904, + "thread": 2 + } + }, + { + "amount": "156.461578473", + "slot": { + "period": 3932646, + "thread": 0 + } + } + ], + "AU12kdYFKfTEwGkCKhJQE8jpZW7jNgTWhpDykMmnDQw5vKsqNTK15": [ + { + "amount": "122.394106308", + "slot": { + "period": 29087, + "thread": 8 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 213276, + "thread": 15 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 478165, + "thread": 1 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 582227, + "thread": 14 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 695519, + "thread": 18 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 835513, + "thread": 9 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1016848, + "thread": 16 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1261991, + "thread": 30 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1398659, + "thread": 13 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1567391, + "thread": 2 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1651758, + "thread": 26 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 1864098, + "thread": 4 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2096742, + "thread": 17 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2196040, + "thread": 7 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2422607, + "thread": 1 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2555300, + "thread": 18 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2724326, + "thread": 26 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 2903986, + "thread": 2 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 3042923, + "thread": 22 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 3240341, + "thread": 6 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 3395080, + "thread": 24 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 3596692, + "thread": 13 + } + }, + { + "amount": "122.394106308", + "slot": { + "period": 3678033, + "thread": 5 + } + }, + { + "amount": "122.394106298", + "slot": { + "period": 3844549, + "thread": 16 + } + } + ], + "AU12kfW1dnxXXdtzfLDZYJBriT7sMGUHtvn7Dji8itMwvoq1Znc4M": [ + { + "amount": "66.630983879", + "slot": { + "period": 82765, + "thread": 15 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 287995, + "thread": 20 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 373619, + "thread": 13 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 625293, + "thread": 7 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 677216, + "thread": 5 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 850079, + "thread": 5 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1075690, + "thread": 28 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1277698, + "thread": 17 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1399393, + "thread": 31 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1548327, + "thread": 14 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1783781, + "thread": 8 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 1874643, + "thread": 20 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2122056, + "thread": 19 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2275977, + "thread": 16 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2328783, + "thread": 19 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2594993, + "thread": 4 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2728968, + "thread": 30 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 2819381, + "thread": 12 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 3054817, + "thread": 10 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 3160906, + "thread": 8 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 3415477, + "thread": 29 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 3491730, + "thread": 29 + } + }, + { + "amount": "66.630983879", + "slot": { + "period": 3745803, + "thread": 2 + } + }, + { + "amount": "66.630983877", + "slot": { + "period": 3927055, + "thread": 20 + } + } + ], + "AU12kfwcWMVHqyDy8djHq5FrAsqCoc9HGXSmJ74xhAqVYXS1fbN4U": [ + { + "amount": "53.423742183", + "slot": { + "period": 153565, + "thread": 4 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 273458, + "thread": 19 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 456538, + "thread": 10 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 495683, + "thread": 11 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 790257, + "thread": 15 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 832284, + "thread": 7 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1080247, + "thread": 20 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1266120, + "thread": 1 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1430387, + "thread": 22 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1490654, + "thread": 10 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1707036, + "thread": 31 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 1944799, + "thread": 3 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2045924, + "thread": 28 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2170070, + "thread": 25 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2417431, + "thread": 29 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2467187, + "thread": 31 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2694395, + "thread": 0 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 2889787, + "thread": 18 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 3105207, + "thread": 6 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 3219385, + "thread": 20 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 3402941, + "thread": 6 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 3539604, + "thread": 19 + } + }, + { + "amount": "53.423742183", + "slot": { + "period": 3674536, + "thread": 20 + } + }, + { + "amount": "53.423742175", + "slot": { + "period": 3932695, + "thread": 11 + } + } + ], + "AU12kg1cBcYVQFKyJ2HwHa4Wz9d8Z98BvaqynzmpRsE1xiqyHcAhd": [ + { + "amount": "1395.535786704", + "slot": { + "period": 33532, + "thread": 8 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 302373, + "thread": 22 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 382352, + "thread": 2 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 646230, + "thread": 24 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 655019, + "thread": 16 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 975884, + "thread": 6 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1069800, + "thread": 11 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1174445, + "thread": 16 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1452077, + "thread": 24 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1611798, + "thread": 21 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1769477, + "thread": 11 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 1971670, + "thread": 4 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2004422, + "thread": 22 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2273913, + "thread": 21 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2301430, + "thread": 5 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2607809, + "thread": 18 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2639047, + "thread": 6 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 2858278, + "thread": 26 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 3040995, + "thread": 21 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 3257614, + "thread": 5 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 3372805, + "thread": 15 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 3556121, + "thread": 19 + } + }, + { + "amount": "1395.535786704", + "slot": { + "period": 3631455, + "thread": 29 + } + }, + { + "amount": "1395.535786705", + "slot": { + "period": 3889639, + "thread": 17 + } + } + ], + "AU12kg4rfSNAhxmzPe5xcHeFxRZfjXH9F32MNE1ALcQmDgWPjWMA2": [ + { + "amount": "99.426956269", + "slot": { + "period": 102832, + "thread": 29 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 200490, + "thread": 10 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 447730, + "thread": 16 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 576643, + "thread": 13 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 654727, + "thread": 23 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 944638, + "thread": 21 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1126417, + "thread": 9 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1252302, + "thread": 14 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1368790, + "thread": 31 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1529559, + "thread": 5 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1771155, + "thread": 25 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 1825988, + "thread": 22 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2029678, + "thread": 13 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2171201, + "thread": 18 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2376106, + "thread": 6 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2512571, + "thread": 9 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2679633, + "thread": 11 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 2861404, + "thread": 9 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 3088708, + "thread": 14 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 3256286, + "thread": 18 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 3344182, + "thread": 18 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 3460376, + "thread": 22 + } + }, + { + "amount": "99.426956269", + "slot": { + "period": 3618006, + "thread": 24 + } + }, + { + "amount": "99.426956268", + "slot": { + "period": 3928376, + "thread": 2 + } + } + ], + "AU12kgjCS8jQaPFefvHvaoN1XeT2mQySGEZA3A3AqrQY5FJkKoyKy": [ + { + "amount": "158.590314879", + "slot": { + "period": 76050, + "thread": 29 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 259086, + "thread": 14 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 327768, + "thread": 24 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 497654, + "thread": 15 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 756876, + "thread": 10 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 859964, + "thread": 0 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1075804, + "thread": 15 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1314938, + "thread": 21 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1421046, + "thread": 23 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1524388, + "thread": 20 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1674409, + "thread": 28 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1954657, + "thread": 27 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 1977927, + "thread": 17 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 2175614, + "thread": 11 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 2400714, + "thread": 10 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 2615165, + "thread": 2 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 2680283, + "thread": 25 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 2945388, + "thread": 5 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 3040772, + "thread": 7 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 3136264, + "thread": 8 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 3357077, + "thread": 25 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 3529788, + "thread": 12 + } + }, + { + "amount": "158.590314879", + "slot": { + "period": 3763595, + "thread": 7 + } + }, + { + "amount": "158.590314877", + "slot": { + "period": 3796567, + "thread": 1 + } + } + ], + "AU12kiMT6AdSPH8xVyVofeSfx4eLZERUbdii6UUVPTf9FuKKvB41r": [ + { + "amount": "126.355959306", + "slot": { + "period": 80001, + "thread": 6 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 254851, + "thread": 10 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 406959, + "thread": 29 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 606718, + "thread": 23 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 720154, + "thread": 23 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 877810, + "thread": 19 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1006840, + "thread": 4 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1200950, + "thread": 3 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1338631, + "thread": 23 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1480762, + "thread": 5 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1668652, + "thread": 31 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 1909436, + "thread": 23 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2119695, + "thread": 10 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2213080, + "thread": 22 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2354430, + "thread": 14 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2543655, + "thread": 18 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2690826, + "thread": 16 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 2847931, + "thread": 22 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 3119400, + "thread": 1 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 3176295, + "thread": 9 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 3439912, + "thread": 6 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 3540563, + "thread": 3 + } + }, + { + "amount": "126.355959306", + "slot": { + "period": 3706377, + "thread": 1 + } + }, + { + "amount": "126.355959314", + "slot": { + "period": 3835369, + "thread": 30 + } + } + ], + "AU12kiWP8NudGi2NvFtk2Nvm9FTZKBr6pbWpf4Md7gLQFPKAtUuDz": [ + { + "amount": "324.751432826", + "slot": { + "period": 24634, + "thread": 30 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 316417, + "thread": 13 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 357471, + "thread": 23 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 600449, + "thread": 9 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 730863, + "thread": 31 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 952649, + "thread": 19 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1040122, + "thread": 13 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1227873, + "thread": 11 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1475836, + "thread": 7 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1629359, + "thread": 5 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1654065, + "thread": 17 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1883020, + "thread": 1 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 1991292, + "thread": 0 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2159630, + "thread": 23 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2447199, + "thread": 17 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2500480, + "thread": 22 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2774223, + "thread": 29 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2869767, + "thread": 19 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 2972492, + "thread": 12 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 3281227, + "thread": 26 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 3290516, + "thread": 28 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 3544673, + "thread": 10 + } + }, + { + "amount": "324.751432826", + "slot": { + "period": 3693432, + "thread": 30 + } + }, + { + "amount": "324.751432821", + "slot": { + "period": 3784814, + "thread": 10 + } + } + ], + "AU12kit2XkCpChdxbU9fz8zvtBt8xdB8woysMtj6JNUm2Eccpnc9u": [ + { + "amount": "104.391803103", + "slot": { + "period": 46138, + "thread": 11 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 218102, + "thread": 6 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 346276, + "thread": 12 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 626751, + "thread": 3 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 691710, + "thread": 3 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 886416, + "thread": 12 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1108497, + "thread": 1 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1211097, + "thread": 23 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1422724, + "thread": 12 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1494271, + "thread": 10 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1676385, + "thread": 14 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 1873045, + "thread": 26 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2055456, + "thread": 9 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2189556, + "thread": 26 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2347632, + "thread": 11 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2592171, + "thread": 21 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2746133, + "thread": 17 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 2800329, + "thread": 15 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 3029082, + "thread": 0 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 3254906, + "thread": 7 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 3369661, + "thread": 31 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 3581546, + "thread": 24 + } + }, + { + "amount": "104.391803103", + "slot": { + "period": 3747178, + "thread": 16 + } + }, + { + "amount": "104.391803104", + "slot": { + "period": 3862268, + "thread": 9 + } + } + ], + "AU12kit6tiUW86h6i8E54ATn56EL2vJs9eWztQQYPb7D17ev6DfgS": [ + { + "amount": "135.798709046", + "slot": { + "period": 48097, + "thread": 27 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 215098, + "thread": 11 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 349350, + "thread": 1 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 535467, + "thread": 19 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 755275, + "thread": 7 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 929141, + "thread": 5 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1013858, + "thread": 17 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1307642, + "thread": 24 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1472611, + "thread": 12 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1633074, + "thread": 3 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1702500, + "thread": 29 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 1969879, + "thread": 17 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2012999, + "thread": 8 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2292156, + "thread": 2 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2308945, + "thread": 24 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2577327, + "thread": 21 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2705141, + "thread": 6 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2907075, + "thread": 29 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 2987862, + "thread": 19 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 3249133, + "thread": 31 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 3370032, + "thread": 1 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 3475945, + "thread": 25 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 3680355, + "thread": 18 + } + }, + { + "amount": "135.798709046", + "slot": { + "period": 3856363, + "thread": 25 + } + } + ], + "AU12kjiKhkvFkSLxo52bq9iwStqZ9nkn3SNHHCmabbnhaxv1rVY4A": [ + { + "amount": "343.822939779", + "slot": { + "period": 151880, + "thread": 10 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 237465, + "thread": 22 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 364471, + "thread": 9 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 539049, + "thread": 5 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 692052, + "thread": 11 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 822884, + "thread": 19 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1053152, + "thread": 28 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1185625, + "thread": 28 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1402364, + "thread": 3 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1611137, + "thread": 14 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1767650, + "thread": 0 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 1943536, + "thread": 31 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2098433, + "thread": 25 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2192834, + "thread": 23 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2404900, + "thread": 17 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2497222, + "thread": 2 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2709667, + "thread": 31 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 2865407, + "thread": 16 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3103729, + "thread": 0 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3180622, + "thread": 9 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3351361, + "thread": 5 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3514329, + "thread": 31 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3739807, + "thread": 23 + } + }, + { + "amount": "343.822939779", + "slot": { + "period": 3858480, + "thread": 14 + } + } + ], + "AU12kjxFaPmwkEKg17VnHz1XtsD3tq9eDQCN6fS5EJ4dtDdVmcTPp": [ + { + "amount": "298.655304915", + "slot": { + "period": 28984, + "thread": 6 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 178429, + "thread": 14 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 417172, + "thread": 20 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 535299, + "thread": 13 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 739011, + "thread": 8 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 905215, + "thread": 31 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1085514, + "thread": 10 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1266230, + "thread": 12 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1330649, + "thread": 27 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1602190, + "thread": 30 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1781837, + "thread": 5 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 1973429, + "thread": 0 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2002453, + "thread": 18 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2164467, + "thread": 28 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2394253, + "thread": 26 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2524630, + "thread": 1 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2754989, + "thread": 27 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 2817538, + "thread": 12 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 3001686, + "thread": 23 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 3214188, + "thread": 19 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 3427941, + "thread": 0 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 3591896, + "thread": 4 + } + }, + { + "amount": "298.655304915", + "slot": { + "period": 3724219, + "thread": 18 + } + }, + { + "amount": "298.655304922", + "slot": { + "period": 3859616, + "thread": 28 + } + } + ], + "AU12kkVkYjAMdoVxd9Q7xnfcj6uxsh6E6QaZqLy4iQDD1BkYobwfr": [ + { + "amount": "77.789548774", + "slot": { + "period": 113070, + "thread": 2 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 236519, + "thread": 27 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 471646, + "thread": 10 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 548170, + "thread": 31 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 672622, + "thread": 23 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 880221, + "thread": 19 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 989196, + "thread": 4 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1284600, + "thread": 8 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1385240, + "thread": 14 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1503581, + "thread": 24 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1656591, + "thread": 9 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1830307, + "thread": 4 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 1992127, + "thread": 13 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 2169006, + "thread": 18 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 2323916, + "thread": 31 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 2607353, + "thread": 20 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 2675635, + "thread": 3 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 2879924, + "thread": 26 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 3010466, + "thread": 6 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 3265897, + "thread": 1 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 3435438, + "thread": 2 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 3602884, + "thread": 24 + } + }, + { + "amount": "77.789548774", + "slot": { + "period": 3667756, + "thread": 6 + } + }, + { + "amount": "77.789548777", + "slot": { + "period": 3895268, + "thread": 6 + } + } + ], + "AU12kkjvN3aBVrFiimJgRDasXV6JFcZiYX7Ra7QjvgJayFixSaG6L": [ + { + "amount": "135.848001265", + "slot": { + "period": 123817, + "thread": 26 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 169739, + "thread": 4 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 385476, + "thread": 0 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 502411, + "thread": 29 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 724836, + "thread": 5 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 896795, + "thread": 3 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1037378, + "thread": 22 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1252208, + "thread": 11 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1417949, + "thread": 28 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1517554, + "thread": 16 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1649002, + "thread": 2 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 1972016, + "thread": 0 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2043296, + "thread": 4 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2276774, + "thread": 13 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2410380, + "thread": 7 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2484016, + "thread": 6 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2778664, + "thread": 21 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2943722, + "thread": 28 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 2975364, + "thread": 25 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 3255747, + "thread": 11 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 3392412, + "thread": 12 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 3594661, + "thread": 12 + } + }, + { + "amount": "135.848001265", + "slot": { + "period": 3693275, + "thread": 18 + } + }, + { + "amount": "135.848001273", + "slot": { + "period": 3848550, + "thread": 2 + } + } + ], + "AU12km1xZAQiJbffKmU7a1Du3ZFCPC6kbbXh1Ti37WW3ejLf24LCc": [ + { + "amount": "188.023454206", + "slot": { + "period": 92033, + "thread": 8 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 304081, + "thread": 16 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 374578, + "thread": 26 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 634394, + "thread": 20 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 715641, + "thread": 1 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 839928, + "thread": 6 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1109351, + "thread": 29 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1239641, + "thread": 6 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1318925, + "thread": 5 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1561634, + "thread": 26 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1660462, + "thread": 29 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 1859186, + "thread": 11 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2110706, + "thread": 10 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2212770, + "thread": 21 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2306566, + "thread": 20 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2586294, + "thread": 14 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2711180, + "thread": 0 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 2897434, + "thread": 31 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 3117870, + "thread": 8 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 3244311, + "thread": 28 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 3342415, + "thread": 28 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 3537747, + "thread": 21 + } + }, + { + "amount": "188.023454206", + "slot": { + "period": 3747110, + "thread": 16 + } + }, + { + "amount": "188.023454203", + "slot": { + "period": 3932864, + "thread": 16 + } + } + ], + "AU12knGec3AE2HpjLdhibzRawXa9uH7NNEuaHNLW9dzmSWgXJzCbx": [ + { + "amount": "191.350979307", + "slot": { + "period": 35260, + "thread": 20 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 197502, + "thread": 8 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 329185, + "thread": 7 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 644783, + "thread": 6 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 777503, + "thread": 2 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 884514, + "thread": 16 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1146866, + "thread": 23 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1197830, + "thread": 6 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1342761, + "thread": 16 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1599097, + "thread": 24 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1688647, + "thread": 4 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 1905284, + "thread": 23 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2089598, + "thread": 5 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2288858, + "thread": 17 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2394544, + "thread": 11 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2597626, + "thread": 4 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2752189, + "thread": 0 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2838564, + "thread": 10 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 2969935, + "thread": 1 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 3197797, + "thread": 9 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 3340378, + "thread": 7 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 3573655, + "thread": 28 + } + }, + { + "amount": "191.350979307", + "slot": { + "period": 3655880, + "thread": 17 + } + }, + { + "amount": "191.350979316", + "slot": { + "period": 3940174, + "thread": 3 + } + } + ], + "AU12knPC7iShzbQGAMnaHQUTegzU5nkGyNGBYEMQjKnTWFRSGfyCm": [ + { + "amount": "97.150332678", + "slot": { + "period": 143997, + "thread": 19 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 221925, + "thread": 15 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 418627, + "thread": 12 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 516253, + "thread": 5 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 682344, + "thread": 31 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 829557, + "thread": 31 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1082739, + "thread": 14 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1189394, + "thread": 0 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1421036, + "thread": 26 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1611770, + "thread": 14 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1677543, + "thread": 16 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 1879794, + "thread": 5 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2081475, + "thread": 5 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2232623, + "thread": 29 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2337720, + "thread": 16 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2557157, + "thread": 9 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2669421, + "thread": 19 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2898282, + "thread": 30 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 2961267, + "thread": 25 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 3244806, + "thread": 15 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 3316992, + "thread": 22 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 3568664, + "thread": 20 + } + }, + { + "amount": "97.150332678", + "slot": { + "period": 3653634, + "thread": 27 + } + }, + { + "amount": "97.150332675", + "slot": { + "period": 3901819, + "thread": 30 + } + } + ], + "AU12knQiwpjLWo7dsYnsEP9HngARVY5iHFAzNPwmQAXrij3ZcgEeD": [ + { + "amount": "147.522129647", + "slot": { + "period": 82585, + "thread": 30 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 254087, + "thread": 22 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 437566, + "thread": 16 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 524661, + "thread": 16 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 798295, + "thread": 26 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 956451, + "thread": 31 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 984894, + "thread": 27 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 1212827, + "thread": 13 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 1458752, + "thread": 12 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 1596366, + "thread": 6 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 1803593, + "thread": 16 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 1873241, + "thread": 0 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2078020, + "thread": 3 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2194095, + "thread": 19 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2401575, + "thread": 18 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2527322, + "thread": 3 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2677704, + "thread": 17 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 2866921, + "thread": 26 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 3028323, + "thread": 4 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 3134649, + "thread": 30 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 3312780, + "thread": 28 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 3559975, + "thread": 29 + } + }, + { + "amount": "147.522129647", + "slot": { + "period": 3649407, + "thread": 2 + } + }, + { + "amount": "147.522129639", + "slot": { + "period": 3793314, + "thread": 1 + } + } + ], + "AU12knjEhTsQdu7GPpodQ3PZ9uRJy6LBG1nWe4k2J9RCja3BBPvdZ": [ + { + "amount": "214.501378785", + "slot": { + "period": 41056, + "thread": 12 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 278404, + "thread": 10 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 403840, + "thread": 7 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 491938, + "thread": 20 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 779573, + "thread": 20 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 917611, + "thread": 29 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1016742, + "thread": 0 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1273601, + "thread": 21 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1432691, + "thread": 28 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1624610, + "thread": 2 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1792813, + "thread": 17 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 1893338, + "thread": 7 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2121323, + "thread": 30 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2205392, + "thread": 3 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2425313, + "thread": 14 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2579495, + "thread": 25 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2749124, + "thread": 3 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 2885266, + "thread": 18 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 3040987, + "thread": 4 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 3176079, + "thread": 27 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 3429123, + "thread": 26 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 3526581, + "thread": 0 + } + }, + { + "amount": "214.501378785", + "slot": { + "period": 3695693, + "thread": 3 + } + }, + { + "amount": "214.501378795", + "slot": { + "period": 3896278, + "thread": 12 + } + } + ], + "AU12koXLQF6F2bpDU2RpxoExERf4iUPWpD8ohVx1KbLq3PP1YwqzH": [ + { + "amount": "183.238513367", + "slot": { + "period": 161277, + "thread": 2 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 306965, + "thread": 21 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 356331, + "thread": 16 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 539109, + "thread": 31 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 782276, + "thread": 22 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 857492, + "thread": 12 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1017492, + "thread": 10 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1277487, + "thread": 29 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1448902, + "thread": 23 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1574510, + "thread": 21 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1774165, + "thread": 26 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 1863702, + "thread": 7 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2058499, + "thread": 5 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2184143, + "thread": 26 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2457307, + "thread": 4 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2617471, + "thread": 30 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2634611, + "thread": 11 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 2827867, + "thread": 30 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 3057543, + "thread": 21 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 3160796, + "thread": 24 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 3433071, + "thread": 29 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 3565740, + "thread": 8 + } + }, + { + "amount": "183.238513367", + "slot": { + "period": 3717165, + "thread": 21 + } + }, + { + "amount": "183.238513361", + "slot": { + "period": 3883585, + "thread": 23 + } + } + ], + "AU12kpYb2HagpDQeyZzFt9PkJTp8zVi2zxp9ms8AVAfSg66vEPUK2": [ + { + "amount": "241.827862168", + "slot": { + "period": 66478, + "thread": 19 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 264133, + "thread": 28 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 464449, + "thread": 24 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 503699, + "thread": 31 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 764286, + "thread": 23 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 823903, + "thread": 1 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1149373, + "thread": 8 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1185378, + "thread": 17 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1375208, + "thread": 0 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1580209, + "thread": 30 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1651570, + "thread": 28 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 1925352, + "thread": 16 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2030167, + "thread": 26 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2239651, + "thread": 11 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2441033, + "thread": 16 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2535721, + "thread": 22 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2641303, + "thread": 13 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2820061, + "thread": 22 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 2976706, + "thread": 26 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 3238886, + "thread": 6 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 3376733, + "thread": 1 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 3512071, + "thread": 30 + } + }, + { + "amount": "241.827862168", + "slot": { + "period": 3631617, + "thread": 10 + } + }, + { + "amount": "241.827862178", + "slot": { + "period": 3935619, + "thread": 19 + } + } + ], + "AU12kpynHfdRQLDS3TYM7XYqpxLkJdDYKFNr5fyed2V3AJQLeQ2HP": [ + { + "amount": "152.041770053", + "slot": { + "period": 82699, + "thread": 0 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 223811, + "thread": 23 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 463516, + "thread": 11 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 608672, + "thread": 29 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 665708, + "thread": 8 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 967643, + "thread": 10 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1069669, + "thread": 2 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1252491, + "thread": 16 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1321185, + "thread": 17 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1578624, + "thread": 19 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1769407, + "thread": 29 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 1898729, + "thread": 9 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2104576, + "thread": 7 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2286114, + "thread": 10 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2306286, + "thread": 10 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2559008, + "thread": 4 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2678330, + "thread": 16 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 2846087, + "thread": 17 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 3078363, + "thread": 30 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 3247471, + "thread": 3 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 3290788, + "thread": 4 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 3499491, + "thread": 27 + } + }, + { + "amount": "152.041770053", + "slot": { + "period": 3690815, + "thread": 3 + } + }, + { + "amount": "152.041770044", + "slot": { + "period": 3860720, + "thread": 25 + } + } + ], + "AU12kqGj82jxcvnK7XNGzGbCFEpeug66DvpYSWuLY8HVW7mdaQ2WV": [ + { + "amount": "477.652587782", + "slot": { + "period": 97579, + "thread": 22 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 232779, + "thread": 18 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 444856, + "thread": 24 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 493299, + "thread": 11 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 790626, + "thread": 27 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 938586, + "thread": 20 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1133017, + "thread": 8 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1277933, + "thread": 13 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1404812, + "thread": 9 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1489767, + "thread": 20 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1695201, + "thread": 26 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1903152, + "thread": 29 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 1998270, + "thread": 25 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 2149923, + "thread": 29 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 2460835, + "thread": 11 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 2492594, + "thread": 24 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 2663156, + "thread": 22 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 2798404, + "thread": 27 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 3098936, + "thread": 17 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 3185126, + "thread": 24 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 3293291, + "thread": 3 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 3480913, + "thread": 10 + } + }, + { + "amount": "477.652587782", + "slot": { + "period": 3718300, + "thread": 24 + } + }, + { + "amount": "477.652587784", + "slot": { + "period": 3845688, + "thread": 23 + } + } + ], + "AU12kqGsyqtZYgP16YHCDUmAmJf5Xtbaer8b5u3FwXQfLqEpeVd1H": [ + { + "amount": "147.689870148", + "slot": { + "period": 114287, + "thread": 29 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 299985, + "thread": 22 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 406422, + "thread": 4 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 508998, + "thread": 23 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 797362, + "thread": 4 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 962888, + "thread": 31 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 987464, + "thread": 17 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 1199867, + "thread": 27 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 1352244, + "thread": 9 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 1542873, + "thread": 9 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 1751977, + "thread": 28 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 1923984, + "thread": 4 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2083272, + "thread": 17 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2205164, + "thread": 1 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2306026, + "thread": 31 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2570866, + "thread": 2 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2769823, + "thread": 7 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 2813164, + "thread": 16 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 3096922, + "thread": 16 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 3246943, + "thread": 31 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 3382853, + "thread": 16 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 3477010, + "thread": 13 + } + }, + { + "amount": "147.689870148", + "slot": { + "period": 3703542, + "thread": 28 + } + }, + { + "amount": "147.689870150", + "slot": { + "period": 3893390, + "thread": 26 + } + } + ], + "AU12kquwjuekmmMXFh4Gi6EVpTdpAz6iGsP6fBXfY2bZoPr7Hyiax": [ + { + "amount": "278.625973216", + "slot": { + "period": 152233, + "thread": 11 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 275781, + "thread": 22 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 435394, + "thread": 17 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 549799, + "thread": 14 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 813524, + "thread": 23 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 831302, + "thread": 23 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1077091, + "thread": 23 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1286247, + "thread": 12 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1463174, + "thread": 26 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1528552, + "thread": 8 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1664460, + "thread": 1 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 1938874, + "thread": 25 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2119431, + "thread": 11 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2250459, + "thread": 1 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2422239, + "thread": 2 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2490407, + "thread": 6 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2679378, + "thread": 4 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 2896645, + "thread": 4 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 3095592, + "thread": 28 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 3139783, + "thread": 31 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 3388179, + "thread": 7 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 3599776, + "thread": 29 + } + }, + { + "amount": "278.625973216", + "slot": { + "period": 3702240, + "thread": 7 + } + }, + { + "amount": "278.625973221", + "slot": { + "period": 3874348, + "thread": 0 + } + } + ], + "AU12ktfNaKfqVtQgEx53CHmBPNVxRWGhzisYCEQ3H5iyqVFpcDRHc": [ + { + "amount": "153.976726924", + "slot": { + "period": 61681, + "thread": 24 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 313094, + "thread": 30 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 443744, + "thread": 27 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 496872, + "thread": 21 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 663795, + "thread": 4 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 906756, + "thread": 22 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1081813, + "thread": 17 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1186957, + "thread": 1 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1394951, + "thread": 31 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1587637, + "thread": 4 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1700690, + "thread": 2 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 1912102, + "thread": 24 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2133624, + "thread": 3 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2222759, + "thread": 0 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2323546, + "thread": 2 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2569884, + "thread": 16 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2760229, + "thread": 11 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 2949320, + "thread": 7 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 3097099, + "thread": 9 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 3156287, + "thread": 5 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 3417263, + "thread": 23 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 3521215, + "thread": 4 + } + }, + { + "amount": "153.976726924", + "slot": { + "period": 3623415, + "thread": 18 + } + }, + { + "amount": "153.976726935", + "slot": { + "period": 3811141, + "thread": 30 + } + } + ], + "AU12kti4GxEHNhF7rbs2dLXu2REGy3dN623Hq3WJxbPsm5Fpa6xsc": [ + { + "amount": "58.614584009", + "slot": { + "period": 135295, + "thread": 28 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 251460, + "thread": 7 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 440466, + "thread": 8 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 608116, + "thread": 4 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 670228, + "thread": 1 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 918159, + "thread": 31 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1041618, + "thread": 30 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1314689, + "thread": 31 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1379038, + "thread": 28 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1587110, + "thread": 6 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1728232, + "thread": 25 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 1921624, + "thread": 12 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2101984, + "thread": 23 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2245723, + "thread": 13 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2446110, + "thread": 11 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2559330, + "thread": 22 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2765974, + "thread": 6 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 2898274, + "thread": 4 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 3041003, + "thread": 16 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 3164298, + "thread": 31 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 3438722, + "thread": 12 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 3475899, + "thread": 15 + } + }, + { + "amount": "58.614584009", + "slot": { + "period": 3715345, + "thread": 21 + } + }, + { + "amount": "58.614584008", + "slot": { + "period": 3798408, + "thread": 24 + } + } + ], + "AU12kvFx1r5vK7zEa9121yqbedgXxND35fcnnyQV6vt6a3TETBRSx": [ + { + "amount": "54.766675086", + "slot": { + "period": 115583, + "thread": 5 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 282145, + "thread": 18 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 331627, + "thread": 28 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 499840, + "thread": 8 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 789434, + "thread": 25 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 971321, + "thread": 15 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1046227, + "thread": 30 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1175980, + "thread": 23 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1409086, + "thread": 18 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1564286, + "thread": 10 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1715256, + "thread": 19 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 1900432, + "thread": 29 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2019461, + "thread": 14 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2240394, + "thread": 9 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2410343, + "thread": 29 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2619190, + "thread": 12 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2772204, + "thread": 28 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 2860199, + "thread": 15 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 3115477, + "thread": 30 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 3181716, + "thread": 0 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 3360142, + "thread": 15 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 3584037, + "thread": 17 + } + }, + { + "amount": "54.766675086", + "slot": { + "period": 3656404, + "thread": 26 + } + }, + { + "amount": "54.766675093", + "slot": { + "period": 3891098, + "thread": 30 + } + } + ], + "AU12kvjTESRoDbzM9Ey2Fb3XRJKzuddzjVL5KXzTGJwS9axQ6zXVQ": [ + { + "amount": "138.753340784", + "slot": { + "period": 140768, + "thread": 7 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 229544, + "thread": 19 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 389703, + "thread": 0 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 569134, + "thread": 2 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 732911, + "thread": 9 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 852273, + "thread": 0 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1134906, + "thread": 26 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1170367, + "thread": 26 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1337985, + "thread": 7 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1495651, + "thread": 6 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1763305, + "thread": 14 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 1879294, + "thread": 30 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2107370, + "thread": 8 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2247105, + "thread": 12 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2311770, + "thread": 27 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2538306, + "thread": 1 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2703976, + "thread": 19 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 2811300, + "thread": 29 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 3077865, + "thread": 22 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 3181608, + "thread": 21 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 3428763, + "thread": 26 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 3545682, + "thread": 9 + } + }, + { + "amount": "138.753340784", + "slot": { + "period": 3761275, + "thread": 3 + } + }, + { + "amount": "138.753340796", + "slot": { + "period": 3795946, + "thread": 21 + } + } + ], + "AU12kwUJxkGJoRCMkkSHVUkmNfsgUd4KEND3uatrvP3EXXQNDaooQ": [ + { + "amount": "71.820704585", + "slot": { + "period": 77983, + "thread": 10 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 201935, + "thread": 11 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 449828, + "thread": 19 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 590164, + "thread": 10 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 809083, + "thread": 16 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 875763, + "thread": 13 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 994201, + "thread": 14 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 1303225, + "thread": 6 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 1454601, + "thread": 3 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 1632988, + "thread": 22 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 1794654, + "thread": 7 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 1813755, + "thread": 27 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2049047, + "thread": 16 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2244184, + "thread": 23 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2404464, + "thread": 23 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2615078, + "thread": 16 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2669357, + "thread": 7 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 2885400, + "thread": 15 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3079605, + "thread": 20 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3136697, + "thread": 12 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3338958, + "thread": 24 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3614946, + "thread": 25 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3759793, + "thread": 19 + } + }, + { + "amount": "71.820704585", + "slot": { + "period": 3837279, + "thread": 29 + } + } + ], + "AU12kwdPbkdU9S7Yp5ME7dm3dGMMdrVRuRsQKJ9Vq8UACmySScRnL": [ + { + "amount": "376.752710396", + "slot": { + "period": 17243, + "thread": 15 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 240621, + "thread": 28 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 486552, + "thread": 18 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 622211, + "thread": 7 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 784698, + "thread": 26 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 922067, + "thread": 1 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1049445, + "thread": 7 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1253505, + "thread": 12 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1351478, + "thread": 18 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1618297, + "thread": 31 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1651186, + "thread": 16 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 1869567, + "thread": 31 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2083124, + "thread": 12 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2240771, + "thread": 7 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2329469, + "thread": 18 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2543642, + "thread": 2 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2736342, + "thread": 8 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 2921970, + "thread": 16 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 3071041, + "thread": 5 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 3245181, + "thread": 12 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 3340552, + "thread": 30 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 3579817, + "thread": 24 + } + }, + { + "amount": "376.752710396", + "slot": { + "period": 3772513, + "thread": 20 + } + }, + { + "amount": "376.752710385", + "slot": { + "period": 3858722, + "thread": 27 + } + } + ], + "AU12kx7MPLqxkJyiHZg6QNhWY5cDPAWgDZkUbnZ3tKeQngcVrTAzo": [ + { + "amount": "305.272086625", + "slot": { + "period": 86781, + "thread": 24 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 222452, + "thread": 25 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 426437, + "thread": 23 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 492612, + "thread": 23 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 672067, + "thread": 26 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 921757, + "thread": 23 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1046996, + "thread": 11 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1169919, + "thread": 11 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1428493, + "thread": 12 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1624790, + "thread": 24 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1695611, + "thread": 1 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1928515, + "thread": 16 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 1977585, + "thread": 24 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 2184586, + "thread": 1 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 2372622, + "thread": 6 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 2585831, + "thread": 8 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 2668420, + "thread": 24 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 2870767, + "thread": 2 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 3115384, + "thread": 15 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 3198672, + "thread": 28 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 3441289, + "thread": 23 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 3488426, + "thread": 11 + } + }, + { + "amount": "305.272086625", + "slot": { + "period": 3651670, + "thread": 15 + } + }, + { + "amount": "305.272086622", + "slot": { + "period": 3815137, + "thread": 1 + } + } + ], + "AU12kxdN59SFfiBhrBHW6Kini9abweBwb8ifgkqQM49HE8HabPBj9": [ + { + "amount": "642.055428884", + "slot": { + "period": 60535, + "thread": 11 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 191595, + "thread": 19 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 460010, + "thread": 27 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 534154, + "thread": 14 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 711411, + "thread": 29 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 853991, + "thread": 31 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 992229, + "thread": 15 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 1201568, + "thread": 15 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 1399721, + "thread": 5 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 1489172, + "thread": 6 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 1771477, + "thread": 26 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 1921651, + "thread": 23 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2040993, + "thread": 22 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2231445, + "thread": 16 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2299715, + "thread": 27 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2578948, + "thread": 15 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2632510, + "thread": 26 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2841447, + "thread": 7 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 2966709, + "thread": 7 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 3148541, + "thread": 25 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 3418581, + "thread": 12 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 3504047, + "thread": 11 + } + }, + { + "amount": "642.055428884", + "slot": { + "period": 3676456, + "thread": 25 + } + }, + { + "amount": "642.055428891", + "slot": { + "period": 3830434, + "thread": 21 + } + } + ], + "AU12kyg92DUjY5yMnJTpzZRBY9ogpCxeVfMZyFo2SUNfowLDS8bG": [ + { + "amount": "257.825798119", + "slot": { + "period": 76633, + "thread": 29 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 179480, + "thread": 0 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 459765, + "thread": 19 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 541566, + "thread": 14 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 712857, + "thread": 23 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 918331, + "thread": 17 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1060985, + "thread": 0 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1216241, + "thread": 13 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1381639, + "thread": 15 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1619348, + "thread": 0 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1728029, + "thread": 4 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1832392, + "thread": 0 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 1998586, + "thread": 9 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 2145820, + "thread": 5 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 2296378, + "thread": 21 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 2525623, + "thread": 21 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 2752364, + "thread": 18 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 2863587, + "thread": 2 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 3052039, + "thread": 16 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 3240488, + "thread": 30 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 3295989, + "thread": 18 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 3527108, + "thread": 27 + } + }, + { + "amount": "257.825798119", + "slot": { + "period": 3739423, + "thread": 31 + } + }, + { + "amount": "257.825798128", + "slot": { + "period": 3897278, + "thread": 25 + } + } + ], + "AU12kyj3PoMCbMJiMGeXJaZxfNq1CjNnc5KDM2oYqkRod7AeEgX9b": [ + { + "amount": "185.352242737", + "slot": { + "period": 55012, + "thread": 6 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 321638, + "thread": 19 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 387401, + "thread": 24 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 508610, + "thread": 25 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 789147, + "thread": 13 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 831727, + "thread": 9 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1093154, + "thread": 7 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1306397, + "thread": 23 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1342663, + "thread": 28 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1638275, + "thread": 0 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1714375, + "thread": 14 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 1931368, + "thread": 4 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2120903, + "thread": 5 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2186983, + "thread": 0 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2400318, + "thread": 20 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2616947, + "thread": 23 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2639545, + "thread": 1 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 2853682, + "thread": 27 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 3013461, + "thread": 11 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 3157285, + "thread": 24 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 3351468, + "thread": 7 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 3505865, + "thread": 9 + } + }, + { + "amount": "185.352242737", + "slot": { + "period": 3761280, + "thread": 14 + } + }, + { + "amount": "185.352242732", + "slot": { + "period": 3793803, + "thread": 23 + } + } + ], + "AU12kyjvxhwK2SxAqJycFy6Xi8pWcWwDTbbDSxdrkc5xsoyK3aBRK": [ + { + "amount": "299.638044626", + "slot": { + "period": 84522, + "thread": 27 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 233256, + "thread": 10 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 464005, + "thread": 25 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 592133, + "thread": 13 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 796232, + "thread": 17 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 912888, + "thread": 12 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1022094, + "thread": 6 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1298030, + "thread": 14 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1415828, + "thread": 28 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1625099, + "thread": 21 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1746165, + "thread": 17 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 1822126, + "thread": 9 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2061016, + "thread": 28 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2236189, + "thread": 19 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2319146, + "thread": 11 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2485649, + "thread": 20 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2679255, + "thread": 4 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 2875699, + "thread": 17 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 3071148, + "thread": 10 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 3192087, + "thread": 20 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 3391819, + "thread": 24 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 3533895, + "thread": 15 + } + }, + { + "amount": "299.638044626", + "slot": { + "period": 3729859, + "thread": 15 + } + }, + { + "amount": "299.638044631", + "slot": { + "period": 3855482, + "thread": 1 + } + } + ], + "AU12kz6csWvhDgnXBQ8q98PJUvFtWjM8QBM5vuBoUvqj6kd5zPJEn": [ + { + "amount": "66.756246381", + "slot": { + "period": 143840, + "thread": 5 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 209766, + "thread": 28 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 393133, + "thread": 9 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 494410, + "thread": 28 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 819752, + "thread": 17 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 956339, + "thread": 24 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1009175, + "thread": 14 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1227130, + "thread": 10 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1397543, + "thread": 1 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1546301, + "thread": 6 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1673043, + "thread": 3 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 1866519, + "thread": 24 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2016412, + "thread": 24 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2208584, + "thread": 30 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2390672, + "thread": 3 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2463367, + "thread": 23 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2717015, + "thread": 18 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 2929588, + "thread": 28 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 3104942, + "thread": 1 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 3171526, + "thread": 16 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 3417889, + "thread": 2 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 3513941, + "thread": 19 + } + }, + { + "amount": "66.756246381", + "slot": { + "period": 3699583, + "thread": 24 + } + }, + { + "amount": "66.756246372", + "slot": { + "period": 3830465, + "thread": 20 + } + } + ], + "AU12kzcLcJUTKYgDUEedbf3AnY8ZBYSGhMqbxypMs5WF8AXJjbzFE": [ + { + "amount": "605.169162610", + "slot": { + "period": 80765, + "thread": 26 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 228817, + "thread": 12 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 425741, + "thread": 23 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 517364, + "thread": 1 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 710591, + "thread": 3 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 918326, + "thread": 27 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1005012, + "thread": 31 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1290348, + "thread": 7 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1422025, + "thread": 19 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1589759, + "thread": 15 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1793533, + "thread": 21 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1881287, + "thread": 12 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 1976812, + "thread": 8 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2203116, + "thread": 18 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2334045, + "thread": 26 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2529033, + "thread": 0 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2754649, + "thread": 16 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2895856, + "thread": 8 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 2996327, + "thread": 21 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 3262954, + "thread": 1 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 3397872, + "thread": 31 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 3544829, + "thread": 7 + } + }, + { + "amount": "605.169162610", + "slot": { + "period": 3703661, + "thread": 5 + } + }, + { + "amount": "605.169162619", + "slot": { + "period": 3925972, + "thread": 25 + } + } + ], + "AU12m1bQDPJjDTD1GeDDNWExJcLo8qoAdTp6tWTPvuNMjGS1WcjnZ": [ + { + "amount": "170.794945030", + "slot": { + "period": 139081, + "thread": 15 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 284264, + "thread": 28 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 466221, + "thread": 12 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 536976, + "thread": 27 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 785535, + "thread": 18 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 851436, + "thread": 17 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 996907, + "thread": 30 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 1253004, + "thread": 1 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 1475883, + "thread": 1 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 1484652, + "thread": 18 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 1662752, + "thread": 16 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 1918375, + "thread": 20 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2041982, + "thread": 10 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2160580, + "thread": 24 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2381406, + "thread": 4 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2552480, + "thread": 5 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2757343, + "thread": 13 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 2903325, + "thread": 3 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 3096805, + "thread": 18 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 3258237, + "thread": 15 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 3290710, + "thread": 26 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 3566406, + "thread": 30 + } + }, + { + "amount": "170.794945030", + "slot": { + "period": 3669535, + "thread": 6 + } + }, + { + "amount": "170.794945041", + "slot": { + "period": 3797513, + "thread": 5 + } + } + ], + "AU12m2bMn4xxPVLNZ45NGYFyrfG2DKQhX167VTwgS7UC7Mb7eFtjQ": [ + { + "amount": "312.190361862", + "slot": { + "period": 77099, + "thread": 25 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 291135, + "thread": 10 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 483339, + "thread": 11 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 564933, + "thread": 31 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 723643, + "thread": 2 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 882535, + "thread": 27 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1103862, + "thread": 20 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1206655, + "thread": 16 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1319843, + "thread": 0 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1551932, + "thread": 12 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1803204, + "thread": 11 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 1877983, + "thread": 19 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2110736, + "thread": 25 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2220730, + "thread": 21 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2394982, + "thread": 6 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2573257, + "thread": 14 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2655338, + "thread": 28 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 2894671, + "thread": 9 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 3049564, + "thread": 24 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 3182207, + "thread": 7 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 3351352, + "thread": 13 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 3539544, + "thread": 31 + } + }, + { + "amount": "312.190361862", + "slot": { + "period": 3653176, + "thread": 8 + } + }, + { + "amount": "312.190361872", + "slot": { + "period": 3886443, + "thread": 10 + } + } + ], + "AU12m2d7FGVHfnZ4k18ykJTf9NJ9S1QPYaEcnC1nG8bZbgav27eYM": [ + { + "amount": "58.607822403", + "slot": { + "period": 112261, + "thread": 1 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 245513, + "thread": 13 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 332744, + "thread": 3 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 531549, + "thread": 21 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 778635, + "thread": 17 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 839939, + "thread": 10 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1046562, + "thread": 6 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1264401, + "thread": 25 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1451406, + "thread": 14 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1549639, + "thread": 19 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1697413, + "thread": 6 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 1922021, + "thread": 17 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2096747, + "thread": 4 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2173019, + "thread": 14 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2449892, + "thread": 10 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2570686, + "thread": 13 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2753283, + "thread": 21 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 2805088, + "thread": 22 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 3099950, + "thread": 9 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 3278717, + "thread": 30 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 3405607, + "thread": 30 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 3574958, + "thread": 23 + } + }, + { + "amount": "58.607822403", + "slot": { + "period": 3696258, + "thread": 21 + } + }, + { + "amount": "58.607822401", + "slot": { + "period": 3868471, + "thread": 21 + } + } + ], + "AU12m2xaCbGgwBJ4WkmouSLJeioAA43rf9NNHWGv9P7oBQJzqwrov": [ + { + "amount": "150.727668758", + "slot": { + "period": 132991, + "thread": 9 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 263176, + "thread": 7 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 422719, + "thread": 4 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 509289, + "thread": 28 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 656250, + "thread": 29 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 877740, + "thread": 3 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1081906, + "thread": 27 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1262023, + "thread": 6 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1448562, + "thread": 1 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1579432, + "thread": 22 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1765166, + "thread": 18 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 1921730, + "thread": 26 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2038221, + "thread": 31 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2243974, + "thread": 4 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2384522, + "thread": 7 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2503408, + "thread": 16 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2746754, + "thread": 0 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 2880122, + "thread": 5 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 3083667, + "thread": 1 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 3173443, + "thread": 0 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 3340091, + "thread": 6 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 3489460, + "thread": 1 + } + }, + { + "amount": "150.727668758", + "slot": { + "period": 3682500, + "thread": 24 + } + }, + { + "amount": "150.727668770", + "slot": { + "period": 3862731, + "thread": 2 + } + } + ], + "AU12m4ikUwA7LajggSHEkQYwMreKYnczGNLVhAq8MTXu7wj8RvmwB": [ + { + "amount": "679.692267169", + "slot": { + "period": 12849, + "thread": 1 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 187671, + "thread": 19 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 461950, + "thread": 12 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 613718, + "thread": 6 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 664468, + "thread": 22 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 893802, + "thread": 11 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1075871, + "thread": 14 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1179738, + "thread": 25 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1470857, + "thread": 27 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1535609, + "thread": 13 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1655221, + "thread": 11 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1848989, + "thread": 29 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 1976573, + "thread": 5 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 2243265, + "thread": 25 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 2340018, + "thread": 18 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 2592426, + "thread": 23 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 2670264, + "thread": 18 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 2812684, + "thread": 0 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 3034182, + "thread": 10 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 3241537, + "thread": 2 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 3378858, + "thread": 31 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 3538143, + "thread": 9 + } + }, + { + "amount": "679.692267169", + "slot": { + "period": 3766893, + "thread": 15 + } + }, + { + "amount": "679.692267158", + "slot": { + "period": 3830950, + "thread": 29 + } + } + ], + "AU12m5GzUfAzWqprX4qkrHJNMRMLP16szYnM6HqbtEv6KVZ9r4jcd": [ + { + "amount": "81.696328066", + "slot": { + "period": 100406, + "thread": 4 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 188456, + "thread": 11 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 334502, + "thread": 27 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 627534, + "thread": 31 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 773489, + "thread": 14 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 909629, + "thread": 24 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1042289, + "thread": 21 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1296301, + "thread": 19 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1461188, + "thread": 24 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1628925, + "thread": 5 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1685204, + "thread": 24 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 1815558, + "thread": 31 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2128632, + "thread": 0 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2287387, + "thread": 8 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2347866, + "thread": 22 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2504582, + "thread": 5 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2673322, + "thread": 2 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 2924135, + "thread": 4 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 3074309, + "thread": 21 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 3178411, + "thread": 1 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 3363238, + "thread": 27 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 3600988, + "thread": 9 + } + }, + { + "amount": "81.696328066", + "slot": { + "period": 3756098, + "thread": 16 + } + }, + { + "amount": "81.696328056", + "slot": { + "period": 3939855, + "thread": 19 + } + } + ], + "AU12m5JexNbi4iFqNzDBEQTh3rZ64dAbWK9eN7NZmZsWte88BQ8g6": [ + { + "amount": "133.709401591", + "slot": { + "period": 130056, + "thread": 19 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 263883, + "thread": 0 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 433258, + "thread": 3 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 604555, + "thread": 11 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 684323, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 963185, + "thread": 0 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 992365, + "thread": 3 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 1214885, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 1401084, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 1620903, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 1698003, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 1948507, + "thread": 6 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2093082, + "thread": 2 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2279172, + "thread": 3 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2421213, + "thread": 18 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2507804, + "thread": 8 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2630706, + "thread": 13 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 2915627, + "thread": 20 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 3035624, + "thread": 28 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 3214781, + "thread": 9 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 3354202, + "thread": 3 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 3594458, + "thread": 12 + } + }, + { + "amount": "133.709401591", + "slot": { + "period": 3733272, + "thread": 21 + } + }, + { + "amount": "133.709401581", + "slot": { + "period": 3788811, + "thread": 15 + } + } + ], + "AU12m6Fqp1bizbNgxdZKBVLXuPEbhDiMBfD5GkvrXrLA7wd9PpYYc": [ + { + "amount": "342.546414651", + "slot": { + "period": 112504, + "thread": 4 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 218412, + "thread": 20 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 423016, + "thread": 13 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 579876, + "thread": 28 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 738393, + "thread": 25 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 835792, + "thread": 16 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1041334, + "thread": 8 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1182223, + "thread": 1 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1392921, + "thread": 18 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1480823, + "thread": 18 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1768923, + "thread": 9 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 1952151, + "thread": 23 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2030944, + "thread": 9 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2162527, + "thread": 25 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2303216, + "thread": 20 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2610301, + "thread": 4 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2691270, + "thread": 28 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 2862131, + "thread": 29 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 3013663, + "thread": 13 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 3181600, + "thread": 20 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 3303959, + "thread": 12 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 3504580, + "thread": 28 + } + }, + { + "amount": "342.546414651", + "slot": { + "period": 3622011, + "thread": 22 + } + }, + { + "amount": "342.546414659", + "slot": { + "period": 3879279, + "thread": 30 + } + } + ], + "AU12m6jzEC2st1qp2uB57XKbRbj9AiCYFxpxpQwmFv7rNwLN4vPTN": [ + { + "amount": "322.353987563", + "slot": { + "period": 65271, + "thread": 12 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 176829, + "thread": 5 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 461558, + "thread": 25 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 652272, + "thread": 13 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 714801, + "thread": 5 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 828994, + "thread": 30 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1129912, + "thread": 27 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1176535, + "thread": 4 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1345858, + "thread": 6 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1512394, + "thread": 25 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1686009, + "thread": 16 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 1949187, + "thread": 11 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2119539, + "thread": 0 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2189510, + "thread": 2 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2398166, + "thread": 18 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2492058, + "thread": 7 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2662133, + "thread": 13 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 2856173, + "thread": 5 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 3098348, + "thread": 23 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 3245304, + "thread": 11 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 3402965, + "thread": 3 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 3515053, + "thread": 8 + } + }, + { + "amount": "322.353987563", + "slot": { + "period": 3646306, + "thread": 30 + } + }, + { + "amount": "322.353987570", + "slot": { + "period": 3801255, + "thread": 13 + } + } + ], + "AU12m7L4RFLPCFZP4m2FRKvTdjgsMt2H3w6ZfoV5zeoDg67tos4Yu": [ + { + "amount": "474.673925953", + "slot": { + "period": 79585, + "thread": 17 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 311867, + "thread": 24 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 340064, + "thread": 14 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 549499, + "thread": 19 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 675215, + "thread": 8 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 905543, + "thread": 21 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1032054, + "thread": 15 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1185748, + "thread": 1 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1421803, + "thread": 29 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1529108, + "thread": 14 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1684462, + "thread": 1 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 1877960, + "thread": 9 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2064358, + "thread": 9 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2182792, + "thread": 4 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2445467, + "thread": 28 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2601462, + "thread": 29 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2757569, + "thread": 12 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 2864342, + "thread": 21 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 3081145, + "thread": 3 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 3235631, + "thread": 19 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 3343786, + "thread": 28 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 3577589, + "thread": 9 + } + }, + { + "amount": "474.673925953", + "slot": { + "period": 3630422, + "thread": 17 + } + }, + { + "amount": "474.673925943", + "slot": { + "period": 3808327, + "thread": 19 + } + } + ], + "AU12m7vsN1LTcNaemhzkcoC2xN1rp5R3WkzwKzVCnAJnvL1zfN3gL": [ + { + "amount": "223.185194684", + "slot": { + "period": 24743, + "thread": 16 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 275320, + "thread": 29 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 405189, + "thread": 1 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 631576, + "thread": 15 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 766346, + "thread": 1 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 937519, + "thread": 21 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 997559, + "thread": 6 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 1186443, + "thread": 27 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 1467165, + "thread": 1 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 1537454, + "thread": 22 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 1792471, + "thread": 24 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 1936669, + "thread": 17 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2123997, + "thread": 30 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2289238, + "thread": 29 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2298098, + "thread": 19 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2543515, + "thread": 4 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2748081, + "thread": 12 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2926950, + "thread": 8 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 2988580, + "thread": 19 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 3232200, + "thread": 18 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 3409934, + "thread": 12 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 3570611, + "thread": 31 + } + }, + { + "amount": "223.185194684", + "slot": { + "period": 3705215, + "thread": 21 + } + }, + { + "amount": "223.185194695", + "slot": { + "period": 3887947, + "thread": 20 + } + } + ], + "AU12m87ZFNfQqhSeo9SccAkhpnQGy5LnW2ncy583SKhgqcTWdjCsC": [ + { + "amount": "282.173489921", + "slot": { + "period": 149351, + "thread": 21 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 179404, + "thread": 26 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 403168, + "thread": 12 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 631378, + "thread": 1 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 816102, + "thread": 6 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 899283, + "thread": 16 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1018902, + "thread": 28 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1308796, + "thread": 26 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1388516, + "thread": 28 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1616734, + "thread": 8 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1801629, + "thread": 22 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 1822036, + "thread": 2 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2093716, + "thread": 3 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2206184, + "thread": 14 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2342642, + "thread": 21 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2535633, + "thread": 19 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2708411, + "thread": 1 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2909093, + "thread": 21 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 2957321, + "thread": 22 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 3249915, + "thread": 0 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 3393641, + "thread": 25 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 3568711, + "thread": 6 + } + }, + { + "amount": "282.173489921", + "slot": { + "period": 3620558, + "thread": 5 + } + }, + { + "amount": "282.173489931", + "slot": { + "period": 3909497, + "thread": 9 + } + } + ], + "AU12m8C8BcN8fLP7gdgzer4ax6ZjbdpREPHb5oPhS38XRZoucihSP": [ + { + "amount": "71.216104169", + "slot": { + "period": 38856, + "thread": 18 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 291050, + "thread": 14 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 441864, + "thread": 26 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 624358, + "thread": 30 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 761040, + "thread": 13 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 965383, + "thread": 10 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 989601, + "thread": 20 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 1173247, + "thread": 16 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 1322599, + "thread": 22 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 1555620, + "thread": 19 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 1684408, + "thread": 30 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 1925879, + "thread": 4 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2106948, + "thread": 21 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2267907, + "thread": 25 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2404483, + "thread": 27 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2534844, + "thread": 27 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2701485, + "thread": 12 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 2941475, + "thread": 10 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 3011412, + "thread": 11 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 3277393, + "thread": 31 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 3384259, + "thread": 3 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 3610944, + "thread": 28 + } + }, + { + "amount": "71.216104169", + "slot": { + "period": 3757464, + "thread": 11 + } + }, + { + "amount": "71.216104158", + "slot": { + "period": 3807233, + "thread": 16 + } + } + ], + "AU12m8EZYcTVFeFhKvBxdSad3aewKJCVGguerbyabH8rMSbbkC3w": [ + { + "amount": "460.717442051", + "slot": { + "period": 76616, + "thread": 16 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 201405, + "thread": 2 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 490649, + "thread": 11 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 516642, + "thread": 22 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 666459, + "thread": 16 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 882528, + "thread": 20 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1105574, + "thread": 21 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1254615, + "thread": 8 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1458912, + "thread": 9 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1594785, + "thread": 27 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1800246, + "thread": 5 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 1809513, + "thread": 24 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2084082, + "thread": 18 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2166172, + "thread": 21 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2330872, + "thread": 11 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2494105, + "thread": 5 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2627002, + "thread": 14 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 2818094, + "thread": 29 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 3046132, + "thread": 4 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 3129675, + "thread": 0 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 3367868, + "thread": 17 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 3522451, + "thread": 1 + } + }, + { + "amount": "460.717442051", + "slot": { + "period": 3687157, + "thread": 18 + } + }, + { + "amount": "460.717442059", + "slot": { + "period": 3858486, + "thread": 13 + } + } + ], + "AU12m8Ef1b4nYiVCAJLzFWHGu6hKHCZ1oNcdbGoHfbgtBM12AdUNk": [ + { + "amount": "165.011619694", + "slot": { + "period": 75505, + "thread": 4 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 205281, + "thread": 18 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 411168, + "thread": 22 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 564108, + "thread": 12 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 710903, + "thread": 21 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 899536, + "thread": 4 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1054988, + "thread": 7 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1226953, + "thread": 22 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1454587, + "thread": 28 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1497692, + "thread": 12 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1765256, + "thread": 22 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 1814560, + "thread": 17 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2089177, + "thread": 2 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2188554, + "thread": 10 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2322574, + "thread": 10 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2534639, + "thread": 19 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2653183, + "thread": 7 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 2908828, + "thread": 22 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 3103993, + "thread": 14 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 3210375, + "thread": 24 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 3360904, + "thread": 15 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 3581344, + "thread": 2 + } + }, + { + "amount": "165.011619694", + "slot": { + "period": 3735854, + "thread": 1 + } + }, + { + "amount": "165.011619690", + "slot": { + "period": 3785715, + "thread": 30 + } + } + ], + "AU12m94wAhDT2uz8iGU3aYQRDnRdPMsGc1BBnvjNXZ19ErUfNXq4Z": [ + { + "amount": "194.366824356", + "slot": { + "period": 165036, + "thread": 16 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 233009, + "thread": 3 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 333333, + "thread": 0 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 592049, + "thread": 19 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 779731, + "thread": 12 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 941954, + "thread": 27 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 986801, + "thread": 3 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 1193354, + "thread": 4 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 1372354, + "thread": 0 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 1637866, + "thread": 1 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 1741063, + "thread": 7 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 1810193, + "thread": 25 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2118636, + "thread": 16 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2184930, + "thread": 26 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2368899, + "thread": 15 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2577090, + "thread": 10 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2762148, + "thread": 23 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 2951504, + "thread": 29 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 3097525, + "thread": 13 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 3157160, + "thread": 12 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 3322962, + "thread": 9 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 3500304, + "thread": 12 + } + }, + { + "amount": "194.366824356", + "slot": { + "period": 3635627, + "thread": 11 + } + }, + { + "amount": "194.366824345", + "slot": { + "period": 3878740, + "thread": 16 + } + } + ], + "AU12m9VH1VGYPcTRN3Mx2eNes5MCXV4TaGficbpHY75KbZxHSzGxj": [ + { + "amount": "233.108578040", + "slot": { + "period": 141821, + "thread": 14 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 291349, + "thread": 26 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 380619, + "thread": 28 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 638239, + "thread": 26 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 676593, + "thread": 3 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 903143, + "thread": 10 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1034686, + "thread": 23 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1204378, + "thread": 9 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1455848, + "thread": 25 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1586187, + "thread": 23 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1653026, + "thread": 12 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 1848435, + "thread": 8 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2049398, + "thread": 9 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2234293, + "thread": 13 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2400681, + "thread": 21 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2528086, + "thread": 0 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2640727, + "thread": 6 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 2810781, + "thread": 5 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 3051878, + "thread": 24 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 3207946, + "thread": 0 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 3306404, + "thread": 31 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 3515732, + "thread": 28 + } + }, + { + "amount": "233.108578040", + "slot": { + "period": 3629508, + "thread": 15 + } + }, + { + "amount": "233.108578044", + "slot": { + "period": 3859772, + "thread": 13 + } + } + ], + "AU12m9Wxhz7H9nnAtmjBVcuoBDw9cYGcp3phX1MnmswP39MvuybZq": [ + { + "amount": "267.341828796", + "slot": { + "period": 60746, + "thread": 2 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 306688, + "thread": 4 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 463396, + "thread": 14 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 651495, + "thread": 4 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 718300, + "thread": 22 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 873213, + "thread": 19 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1013425, + "thread": 24 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1299280, + "thread": 22 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1465174, + "thread": 31 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1586322, + "thread": 5 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1690398, + "thread": 4 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 1827662, + "thread": 8 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2084571, + "thread": 19 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2168855, + "thread": 25 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2325187, + "thread": 12 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2574872, + "thread": 14 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2766793, + "thread": 13 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 2901511, + "thread": 15 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 3083426, + "thread": 2 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 3214608, + "thread": 16 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 3390661, + "thread": 13 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 3598103, + "thread": 21 + } + }, + { + "amount": "267.341828796", + "slot": { + "period": 3757707, + "thread": 21 + } + }, + { + "amount": "267.341828802", + "slot": { + "period": 3926425, + "thread": 16 + } + } + ], + "AU12mABDjeyk7RV98qBe2FwkfCbMdF6a8fPeg8Euaem7XQmofYjgf": [ + { + "amount": "465.318039594", + "slot": { + "period": 68540, + "thread": 23 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 217291, + "thread": 12 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 339355, + "thread": 20 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 581542, + "thread": 7 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 712433, + "thread": 20 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 863781, + "thread": 7 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1043319, + "thread": 10 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1188070, + "thread": 24 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1469816, + "thread": 15 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1641637, + "thread": 4 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1649611, + "thread": 8 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 1883049, + "thread": 2 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2008069, + "thread": 14 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2154624, + "thread": 3 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2405715, + "thread": 9 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2536842, + "thread": 19 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2757276, + "thread": 18 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2837569, + "thread": 21 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 2954892, + "thread": 11 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 3199365, + "thread": 29 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 3424175, + "thread": 20 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 3487364, + "thread": 22 + } + }, + { + "amount": "465.318039594", + "slot": { + "period": 3761655, + "thread": 21 + } + }, + { + "amount": "465.318039596", + "slot": { + "period": 3891247, + "thread": 15 + } + } + ], + "AU12mALP2wdnKNByxNLfGFeM5fPoPjXBemjsCNvkro5kYt7UQDC8A": [ + { + "amount": "175.071428997", + "slot": { + "period": 56139, + "thread": 29 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 241956, + "thread": 28 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 480209, + "thread": 5 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 609038, + "thread": 29 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 680183, + "thread": 30 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 877724, + "thread": 0 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 996831, + "thread": 19 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 1217608, + "thread": 25 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 1451705, + "thread": 8 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 1513154, + "thread": 30 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 1723038, + "thread": 16 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 1912148, + "thread": 28 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2058391, + "thread": 14 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2212563, + "thread": 14 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2441287, + "thread": 19 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2562654, + "thread": 6 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2672761, + "thread": 25 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 2823201, + "thread": 17 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 3054312, + "thread": 2 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 3248333, + "thread": 11 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 3297010, + "thread": 2 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 3560431, + "thread": 29 + } + }, + { + "amount": "175.071428997", + "slot": { + "period": 3718567, + "thread": 15 + } + }, + { + "amount": "175.071428991", + "slot": { + "period": 3880637, + "thread": 9 + } + } + ], + "AU12mBfAmYp5Lb8Vy5mQ3JhrnKffgWg24TXTGQp73Ekb4743YLQ4x": [ + { + "amount": "446.263964003", + "slot": { + "period": 143538, + "thread": 24 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 263860, + "thread": 4 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 428665, + "thread": 26 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 591867, + "thread": 28 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 722557, + "thread": 22 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 966437, + "thread": 14 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1033210, + "thread": 13 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1271743, + "thread": 20 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1323385, + "thread": 25 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1508081, + "thread": 17 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1664520, + "thread": 26 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 1833168, + "thread": 4 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2122534, + "thread": 13 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2283947, + "thread": 28 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2409498, + "thread": 23 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2502592, + "thread": 1 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2761860, + "thread": 12 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 2862203, + "thread": 4 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 3031830, + "thread": 20 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 3259689, + "thread": 25 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 3314137, + "thread": 30 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 3609385, + "thread": 31 + } + }, + { + "amount": "446.263964003", + "slot": { + "period": 3724579, + "thread": 12 + } + }, + { + "amount": "446.263963992", + "slot": { + "period": 3940689, + "thread": 5 + } + } + ], + "AU12mBsRFhS8Pui2bBVkUFFUS6mDqRwbtnxQtHSJBU8DzLpniqov2": [ + { + "amount": "499.242150484", + "slot": { + "period": 107435, + "thread": 14 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 253547, + "thread": 1 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 354062, + "thread": 4 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 536992, + "thread": 3 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 818170, + "thread": 31 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 940762, + "thread": 28 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1095352, + "thread": 5 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1234423, + "thread": 10 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1432382, + "thread": 11 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1485869, + "thread": 1 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1692550, + "thread": 21 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 1948519, + "thread": 21 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2050637, + "thread": 13 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2170623, + "thread": 13 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2400328, + "thread": 10 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2535261, + "thread": 17 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2675314, + "thread": 16 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 2829419, + "thread": 9 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3115218, + "thread": 22 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3155718, + "thread": 7 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3302611, + "thread": 14 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3611387, + "thread": 30 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3651475, + "thread": 5 + } + }, + { + "amount": "499.242150484", + "slot": { + "period": 3858159, + "thread": 7 + } + } + ], + "AU12mCRihH91CBg3buCMTLjAJqcTbfveXJkSnEfWZkj9uu9XD3Vue": [ + { + "amount": "521.408326158", + "slot": { + "period": 29346, + "thread": 12 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 280780, + "thread": 22 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 435890, + "thread": 28 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 591834, + "thread": 27 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 763786, + "thread": 30 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 939840, + "thread": 24 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1103823, + "thread": 7 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1153854, + "thread": 15 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1431118, + "thread": 7 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1609397, + "thread": 6 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1776499, + "thread": 20 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 1907137, + "thread": 12 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2126058, + "thread": 29 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2204543, + "thread": 17 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2367549, + "thread": 29 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2514024, + "thread": 8 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2790877, + "thread": 27 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 2945539, + "thread": 4 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 3005053, + "thread": 18 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 3253186, + "thread": 25 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 3438683, + "thread": 4 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 3519698, + "thread": 28 + } + }, + { + "amount": "521.408326158", + "slot": { + "period": 3737173, + "thread": 26 + } + }, + { + "amount": "521.408326153", + "slot": { + "period": 3785940, + "thread": 2 + } + } + ], + "AU12mCdgeuAVLNPXQGftgaVyymWoHL5zdG1hyCkxiRfEzpAnDN2zV": [ + { + "amount": "373.569634094", + "slot": { + "period": 36074, + "thread": 7 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 212179, + "thread": 15 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 417006, + "thread": 19 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 559455, + "thread": 29 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 771301, + "thread": 3 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 872820, + "thread": 29 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1056634, + "thread": 25 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1265791, + "thread": 25 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1421572, + "thread": 11 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1619405, + "thread": 10 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1712459, + "thread": 11 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 1912859, + "thread": 8 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2141828, + "thread": 13 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2268523, + "thread": 16 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2344648, + "thread": 29 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2562258, + "thread": 29 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2742758, + "thread": 14 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2806485, + "thread": 27 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 2984377, + "thread": 12 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 3211366, + "thread": 22 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 3448691, + "thread": 20 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 3559168, + "thread": 7 + } + }, + { + "amount": "373.569634094", + "slot": { + "period": 3710998, + "thread": 22 + } + }, + { + "amount": "373.569634100", + "slot": { + "period": 3946496, + "thread": 17 + } + } + ], + "AU12mCmFRcyNtMH7T7VFt8K54fJGroEWbQJLgrurGcebH7ZLjaV9v": [ + { + "amount": "328.938628349", + "slot": { + "period": 19274, + "thread": 5 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 256757, + "thread": 9 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 359041, + "thread": 8 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 556784, + "thread": 24 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 671731, + "thread": 15 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 839679, + "thread": 11 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1102495, + "thread": 15 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1297576, + "thread": 31 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1463917, + "thread": 23 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1512298, + "thread": 1 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1736409, + "thread": 14 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 1940404, + "thread": 13 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2069120, + "thread": 2 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2261695, + "thread": 23 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2410918, + "thread": 1 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2496347, + "thread": 30 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2692257, + "thread": 31 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 2944802, + "thread": 7 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 3116922, + "thread": 7 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 3284951, + "thread": 9 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 3358194, + "thread": 14 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 3578531, + "thread": 17 + } + }, + { + "amount": "328.938628349", + "slot": { + "period": 3682371, + "thread": 21 + } + }, + { + "amount": "328.938628356", + "slot": { + "period": 3941081, + "thread": 17 + } + } + ], + "AU12mDPfRoHTQk4L4BVEpY8mF5JeJJX4bbJH6CvsJEctgNc7yibss": [ + { + "amount": "345.727931166", + "slot": { + "period": 31512, + "thread": 28 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 248478, + "thread": 18 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 426828, + "thread": 5 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 506096, + "thread": 20 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 692033, + "thread": 28 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 973269, + "thread": 13 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1020838, + "thread": 28 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1207214, + "thread": 19 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1416156, + "thread": 16 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1585068, + "thread": 14 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1780567, + "thread": 19 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 1873431, + "thread": 18 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2125564, + "thread": 28 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2201475, + "thread": 18 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2430160, + "thread": 7 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2523507, + "thread": 26 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2662883, + "thread": 22 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 2914944, + "thread": 18 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 3017904, + "thread": 16 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 3213135, + "thread": 4 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 3383519, + "thread": 30 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 3457291, + "thread": 6 + } + }, + { + "amount": "345.727931166", + "slot": { + "period": 3657021, + "thread": 4 + } + }, + { + "amount": "345.727931157", + "slot": { + "period": 3883549, + "thread": 5 + } + } + ], + "AU12mEGm1J4Svs44uuFmFvJP14ofXaTKAtrkgmwTjNRpMcJ6XUvBb": [ + { + "amount": "258.449233182", + "slot": { + "period": 91909, + "thread": 0 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 183106, + "thread": 19 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 335932, + "thread": 31 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 556371, + "thread": 27 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 740588, + "thread": 28 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 872219, + "thread": 10 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1050819, + "thread": 13 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1253559, + "thread": 14 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1470076, + "thread": 20 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1533564, + "thread": 15 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1753732, + "thread": 9 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1969651, + "thread": 11 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 1983680, + "thread": 8 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 2280788, + "thread": 10 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 2405833, + "thread": 13 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 2487434, + "thread": 7 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 2693961, + "thread": 1 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 2910918, + "thread": 29 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 3037930, + "thread": 24 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 3133691, + "thread": 24 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 3392012, + "thread": 26 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 3528213, + "thread": 11 + } + }, + { + "amount": "258.449233182", + "slot": { + "period": 3769970, + "thread": 23 + } + }, + { + "amount": "258.449233174", + "slot": { + "period": 3903441, + "thread": 8 + } + } + ], + "AU12mEemXrxhgE4FBWHeKsNxJ8dzDHDHGyHjtfFucKxzR1x2bP2va": [ + { + "amount": "173.111877664", + "slot": { + "period": 40757, + "thread": 16 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 292783, + "thread": 23 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 399952, + "thread": 4 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 631714, + "thread": 30 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 674292, + "thread": 19 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 846910, + "thread": 5 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1044200, + "thread": 22 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1254339, + "thread": 1 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1408468, + "thread": 8 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1606347, + "thread": 24 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1733623, + "thread": 11 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 1898321, + "thread": 18 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2133991, + "thread": 31 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2233829, + "thread": 18 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2450270, + "thread": 23 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2582031, + "thread": 2 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2711764, + "thread": 6 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 2884867, + "thread": 11 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 3039537, + "thread": 11 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 3174413, + "thread": 2 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 3423642, + "thread": 10 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 3593881, + "thread": 5 + } + }, + { + "amount": "173.111877664", + "slot": { + "period": 3648748, + "thread": 10 + } + }, + { + "amount": "173.111877662", + "slot": { + "period": 3939370, + "thread": 30 + } + } + ], + "AU12mEhgKURKXXqPZrm2pE9Y9iiYRpPLRo3d76fHamyoCcFUhAkTk": [ + { + "amount": "218.858498571", + "slot": { + "period": 59113, + "thread": 30 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 170464, + "thread": 7 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 337163, + "thread": 17 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 629792, + "thread": 13 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 798807, + "thread": 25 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 843840, + "thread": 21 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1064570, + "thread": 8 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1165925, + "thread": 16 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1447677, + "thread": 26 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1632137, + "thread": 28 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1798211, + "thread": 25 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 1827383, + "thread": 27 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2091083, + "thread": 1 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2222993, + "thread": 13 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2380799, + "thread": 16 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2550644, + "thread": 16 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2634785, + "thread": 1 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 2902385, + "thread": 25 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 3007058, + "thread": 24 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 3140061, + "thread": 7 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 3359028, + "thread": 5 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 3535935, + "thread": 0 + } + }, + { + "amount": "218.858498571", + "slot": { + "period": 3762219, + "thread": 26 + } + }, + { + "amount": "218.858498579", + "slot": { + "period": 3887557, + "thread": 7 + } + } + ], + "AU12mFkAjjshBaMDWCXJKBqozQncXzGcUfRCVmJJam6nj9PvQ2hL6": [ + { + "amount": "298.737587295", + "slot": { + "period": 150952, + "thread": 6 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 214266, + "thread": 21 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 485560, + "thread": 26 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 529875, + "thread": 23 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 710125, + "thread": 15 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 848216, + "thread": 24 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1046148, + "thread": 11 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1247421, + "thread": 5 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1452362, + "thread": 7 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1577755, + "thread": 7 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1657245, + "thread": 9 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 1952970, + "thread": 20 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2090464, + "thread": 8 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2231156, + "thread": 12 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2372887, + "thread": 19 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2614731, + "thread": 22 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2709073, + "thread": 3 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 2944382, + "thread": 30 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 3024427, + "thread": 2 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 3212646, + "thread": 12 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 3326953, + "thread": 27 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 3458360, + "thread": 31 + } + }, + { + "amount": "298.737587295", + "slot": { + "period": 3699773, + "thread": 31 + } + }, + { + "amount": "298.737587290", + "slot": { + "period": 3845299, + "thread": 6 + } + } + ], + "AU12mG5WF13pUA1akLVwZfJqLzfLVzeNUZhiAXTAJJEExV9KUg4BE": [ + { + "amount": "78.423357062", + "slot": { + "period": 147849, + "thread": 19 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 305474, + "thread": 25 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 486720, + "thread": 31 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 542062, + "thread": 20 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 772394, + "thread": 10 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 888478, + "thread": 29 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1007703, + "thread": 2 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1254605, + "thread": 22 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1344721, + "thread": 21 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1582550, + "thread": 18 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1727004, + "thread": 4 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1877849, + "thread": 30 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 1979599, + "thread": 31 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2249474, + "thread": 0 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2304015, + "thread": 18 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2611429, + "thread": 11 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2774910, + "thread": 27 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2805567, + "thread": 19 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 2986980, + "thread": 24 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 3180414, + "thread": 13 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 3399881, + "thread": 12 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 3485982, + "thread": 23 + } + }, + { + "amount": "78.423357062", + "slot": { + "period": 3671233, + "thread": 20 + } + }, + { + "amount": "78.423357059", + "slot": { + "period": 3939100, + "thread": 29 + } + } + ], + "AU12mG9rHrUMrhbKbgHbHDQwyoCZBbSWBnzK6W74ePjogq8g1KfUt": [ + { + "amount": "66.351338361", + "slot": { + "period": 33132, + "thread": 27 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 192448, + "thread": 15 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 384004, + "thread": 0 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 546179, + "thread": 29 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 694314, + "thread": 5 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 840885, + "thread": 9 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1122730, + "thread": 1 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1232500, + "thread": 13 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1417033, + "thread": 12 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1554686, + "thread": 6 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1676673, + "thread": 7 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 1821023, + "thread": 31 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2007484, + "thread": 0 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2244387, + "thread": 28 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2417192, + "thread": 12 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2562119, + "thread": 5 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2790979, + "thread": 15 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 2817955, + "thread": 24 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 3016647, + "thread": 25 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 3235406, + "thread": 1 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 3397528, + "thread": 0 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 3524566, + "thread": 14 + } + }, + { + "amount": "66.351338361", + "slot": { + "period": 3754068, + "thread": 3 + } + }, + { + "amount": "66.351338350", + "slot": { + "period": 3912734, + "thread": 16 + } + } + ], + "AU12mGVhs7LNGnRatFS9XV3dL5UufZsuK2a734F3QHa1W2sBPZiSH": [ + { + "amount": "135.566768652", + "slot": { + "period": 70534, + "thread": 5 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 307071, + "thread": 21 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 419506, + "thread": 27 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 562445, + "thread": 11 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 759113, + "thread": 7 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 942617, + "thread": 15 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1126193, + "thread": 23 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1240341, + "thread": 8 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1370835, + "thread": 10 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1563843, + "thread": 2 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1683903, + "thread": 13 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1950793, + "thread": 30 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 1978543, + "thread": 23 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 2240335, + "thread": 3 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 2304181, + "thread": 7 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 2591790, + "thread": 21 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 2750425, + "thread": 24 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 2946200, + "thread": 6 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 3049166, + "thread": 15 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 3157541, + "thread": 18 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 3404062, + "thread": 26 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 3583628, + "thread": 24 + } + }, + { + "amount": "135.566768652", + "slot": { + "period": 3765298, + "thread": 19 + } + }, + { + "amount": "135.566768664", + "slot": { + "period": 3815403, + "thread": 12 + } + } + ], + "AU12mGqSei4P2wdVUM3czQRVhmS4wGZG4oK6Th8osmau27viQ7G5X": [ + { + "amount": "184.372789298", + "slot": { + "period": 55882, + "thread": 10 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 295282, + "thread": 27 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 333379, + "thread": 8 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 519917, + "thread": 8 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 770671, + "thread": 20 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 881462, + "thread": 4 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1050781, + "thread": 3 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1245400, + "thread": 5 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1425381, + "thread": 11 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1487495, + "thread": 11 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1679675, + "thread": 15 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 1835829, + "thread": 31 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2096346, + "thread": 31 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2191897, + "thread": 13 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2392675, + "thread": 12 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2544128, + "thread": 25 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2709572, + "thread": 26 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 2905156, + "thread": 8 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 3061270, + "thread": 12 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 3265224, + "thread": 3 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 3318215, + "thread": 29 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 3575406, + "thread": 19 + } + }, + { + "amount": "184.372789298", + "slot": { + "period": 3724754, + "thread": 0 + } + }, + { + "amount": "184.372789300", + "slot": { + "period": 3888512, + "thread": 12 + } + } + ], + "AU12mJDNTsL6Ngk69bULf6KxfchJwAcM2M8zFqyRWiQf4MXkkK6fn": [ + { + "amount": "141.030260784", + "slot": { + "period": 132714, + "thread": 4 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 297955, + "thread": 19 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 412240, + "thread": 23 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 512324, + "thread": 13 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 694472, + "thread": 20 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 830327, + "thread": 8 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1040562, + "thread": 30 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1192580, + "thread": 24 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1473631, + "thread": 22 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1639643, + "thread": 1 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1690377, + "thread": 21 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 1842552, + "thread": 7 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2079601, + "thread": 23 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2181511, + "thread": 25 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2338119, + "thread": 26 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2541057, + "thread": 16 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2673230, + "thread": 6 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 2805549, + "thread": 24 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 3089556, + "thread": 28 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 3277182, + "thread": 15 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 3373916, + "thread": 5 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 3534822, + "thread": 7 + } + }, + { + "amount": "141.030260784", + "slot": { + "period": 3637832, + "thread": 27 + } + }, + { + "amount": "141.030260793", + "slot": { + "period": 3780624, + "thread": 25 + } + } + ], + "AU12mK1iRJj67n4xcnBG8RWdPuDr4hKTjc11eW6ShxssZKHib1JS8": [ + { + "amount": "85.818472087", + "slot": { + "period": 121433, + "thread": 14 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 312617, + "thread": 10 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 420072, + "thread": 13 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 500537, + "thread": 20 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 745157, + "thread": 14 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 822587, + "thread": 8 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 984156, + "thread": 21 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 1309310, + "thread": 16 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 1344553, + "thread": 12 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 1559872, + "thread": 22 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 1683625, + "thread": 0 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 1840546, + "thread": 6 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2060257, + "thread": 9 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2244732, + "thread": 21 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2297227, + "thread": 16 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2619985, + "thread": 9 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2749222, + "thread": 10 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2796847, + "thread": 16 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 2986209, + "thread": 25 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 3276045, + "thread": 10 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 3337670, + "thread": 14 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 3608275, + "thread": 28 + } + }, + { + "amount": "85.818472087", + "slot": { + "period": 3764391, + "thread": 23 + } + }, + { + "amount": "85.818472094", + "slot": { + "period": 3882375, + "thread": 16 + } + } + ], + "AU12mMFPuzf4Du3wjDsq8N1pFqCYSvjPUS8N4tpqQRRNYJZLPmWDw": [ + { + "amount": "144.013694390", + "slot": { + "period": 65491, + "thread": 6 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 291682, + "thread": 17 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 419436, + "thread": 26 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 500877, + "thread": 22 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 765999, + "thread": 31 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 953105, + "thread": 26 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1003307, + "thread": 25 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1190146, + "thread": 9 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1401971, + "thread": 27 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1550108, + "thread": 4 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1754102, + "thread": 8 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 1873706, + "thread": 20 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2011305, + "thread": 12 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2195391, + "thread": 3 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2319927, + "thread": 31 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2563419, + "thread": 18 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2702925, + "thread": 3 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 2928909, + "thread": 31 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 3058393, + "thread": 28 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 3180437, + "thread": 4 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 3334136, + "thread": 17 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 3475125, + "thread": 27 + } + }, + { + "amount": "144.013694390", + "slot": { + "period": 3718916, + "thread": 11 + } + }, + { + "amount": "144.013694387", + "slot": { + "period": 3885263, + "thread": 9 + } + } + ], + "AU12mMdJTkX56a1bbCUtuSdaBL5ZdfhGKQjfDJRJ9Fzxu9bbUtDid": [ + { + "amount": "77.134257387", + "slot": { + "period": 102424, + "thread": 23 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 215281, + "thread": 23 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 390772, + "thread": 22 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 577705, + "thread": 29 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 663601, + "thread": 21 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 920818, + "thread": 10 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1145187, + "thread": 24 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1264148, + "thread": 17 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1459791, + "thread": 10 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1588940, + "thread": 7 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1696318, + "thread": 8 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 1902859, + "thread": 11 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2065414, + "thread": 30 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2161041, + "thread": 31 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2315212, + "thread": 2 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2485068, + "thread": 24 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2644488, + "thread": 30 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2810242, + "thread": 10 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 2984751, + "thread": 13 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 3126106, + "thread": 0 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 3444584, + "thread": 10 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 3477383, + "thread": 2 + } + }, + { + "amount": "77.134257387", + "slot": { + "period": 3710367, + "thread": 3 + } + }, + { + "amount": "77.134257394", + "slot": { + "period": 3812290, + "thread": 0 + } + } + ], + "AU12mPaWikdr9H9iMFpWLphCvuw3g5dRJqLt7LLYHxzHWUEUcGqXj": [ + { + "amount": "294.070286799", + "slot": { + "period": 124977, + "thread": 30 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 253543, + "thread": 20 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 349734, + "thread": 3 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 646785, + "thread": 14 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 708169, + "thread": 16 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 837692, + "thread": 21 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1074052, + "thread": 31 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1230369, + "thread": 19 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1327091, + "thread": 14 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1590018, + "thread": 24 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1647018, + "thread": 10 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 1837780, + "thread": 31 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2142379, + "thread": 27 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2212556, + "thread": 2 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2340985, + "thread": 27 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2576572, + "thread": 22 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2779878, + "thread": 30 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 2797016, + "thread": 14 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 3098785, + "thread": 23 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 3262870, + "thread": 3 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 3309711, + "thread": 7 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 3542739, + "thread": 12 + } + }, + { + "amount": "294.070286799", + "slot": { + "period": 3632175, + "thread": 14 + } + }, + { + "amount": "294.070286788", + "slot": { + "period": 3814645, + "thread": 21 + } + } + ], + "AU12mPkhDL98Txeo2g4E51Kzv8gM3d6ZrMTFpri8PgNg5TMboZTea": [ + { + "amount": "209.874112503", + "slot": { + "period": 15867, + "thread": 26 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 284356, + "thread": 20 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 424920, + "thread": 31 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 599418, + "thread": 12 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 709346, + "thread": 21 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 885943, + "thread": 28 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1015473, + "thread": 22 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1245490, + "thread": 13 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1407796, + "thread": 12 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1509340, + "thread": 24 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1690556, + "thread": 11 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 1887620, + "thread": 4 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2120520, + "thread": 3 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2149064, + "thread": 3 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2364247, + "thread": 21 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2592649, + "thread": 17 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2722751, + "thread": 6 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 2873846, + "thread": 8 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 3072945, + "thread": 17 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 3193288, + "thread": 12 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 3323673, + "thread": 15 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 3526185, + "thread": 18 + } + }, + { + "amount": "209.874112503", + "slot": { + "period": 3738772, + "thread": 7 + } + }, + { + "amount": "209.874112506", + "slot": { + "period": 3834102, + "thread": 14 + } + } + ], + "AU12mQxd2cghkKjwsgBd8ogHdNjzbbe5BnC7wtVnu8Jgg8KeSrQtE": [ + { + "amount": "130.286260812", + "slot": { + "period": 122896, + "thread": 22 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 294002, + "thread": 27 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 477981, + "thread": 31 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 524988, + "thread": 31 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 690482, + "thread": 6 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 833210, + "thread": 24 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 999616, + "thread": 8 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 1227077, + "thread": 4 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 1428651, + "thread": 15 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 1557375, + "thread": 18 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 1734741, + "thread": 30 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 1934255, + "thread": 12 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2143153, + "thread": 27 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2211050, + "thread": 20 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2323136, + "thread": 0 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2497656, + "thread": 24 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2643181, + "thread": 19 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 2825361, + "thread": 11 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 3001438, + "thread": 18 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 3237096, + "thread": 9 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 3335664, + "thread": 4 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 3487037, + "thread": 20 + } + }, + { + "amount": "130.286260812", + "slot": { + "period": 3632002, + "thread": 7 + } + }, + { + "amount": "130.286260822", + "slot": { + "period": 3796251, + "thread": 4 + } + } + ], + "AU12mR3CCrotqkdhyCtsdz3JPig22RFMSrApUXCif4Tn8KiV2p9ok": [ + { + "amount": "65.745910235", + "slot": { + "period": 111100, + "thread": 25 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 237526, + "thread": 24 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 423578, + "thread": 23 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 610515, + "thread": 6 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 665928, + "thread": 16 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 873581, + "thread": 25 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1003088, + "thread": 25 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1158635, + "thread": 26 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1422985, + "thread": 3 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1639499, + "thread": 7 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1707548, + "thread": 30 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 1849994, + "thread": 3 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2010437, + "thread": 12 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2146921, + "thread": 1 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2428813, + "thread": 1 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2602619, + "thread": 22 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2724569, + "thread": 13 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 2920438, + "thread": 11 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 3001577, + "thread": 5 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 3243316, + "thread": 18 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 3390879, + "thread": 16 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 3603222, + "thread": 14 + } + }, + { + "amount": "65.745910235", + "slot": { + "period": 3635021, + "thread": 25 + } + }, + { + "amount": "65.745910244", + "slot": { + "period": 3907263, + "thread": 12 + } + } + ], + "AU12mSJ3639o4GpKKjuMf1rGqfL5Pu5euWCw3xHNvdGiPDiGS2MQw": [ + { + "amount": "152.053726457", + "slot": { + "period": 156422, + "thread": 1 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 201399, + "thread": 21 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 358056, + "thread": 20 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 650754, + "thread": 10 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 790732, + "thread": 21 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 883193, + "thread": 31 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1072191, + "thread": 14 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1271345, + "thread": 19 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1388366, + "thread": 15 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1576127, + "thread": 22 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1715218, + "thread": 20 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1855711, + "thread": 1 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 1980004, + "thread": 23 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 2248866, + "thread": 25 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 2453321, + "thread": 20 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 2508082, + "thread": 27 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 2751169, + "thread": 31 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 2845930, + "thread": 9 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3071326, + "thread": 0 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3227221, + "thread": 27 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3343111, + "thread": 1 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3607950, + "thread": 2 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3619712, + "thread": 16 + } + }, + { + "amount": "152.053726457", + "slot": { + "period": 3854400, + "thread": 18 + } + } + ], + "AU12mUDyQpjRX3oMzaL6mszJwXrTivqdrUWSZ99hCYFVZgkeqmi1P": [ + { + "amount": "197.165489780", + "slot": { + "period": 25560, + "thread": 21 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 212994, + "thread": 17 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 438561, + "thread": 1 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 568106, + "thread": 3 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 672034, + "thread": 3 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 923844, + "thread": 14 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1042161, + "thread": 4 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1211897, + "thread": 21 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1449035, + "thread": 18 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1546142, + "thread": 7 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1733421, + "thread": 16 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 1920297, + "thread": 2 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2129590, + "thread": 26 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2292910, + "thread": 0 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2369701, + "thread": 2 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2525230, + "thread": 12 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2678936, + "thread": 12 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 2808753, + "thread": 12 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 3024043, + "thread": 5 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 3283245, + "thread": 0 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 3413480, + "thread": 16 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 3501276, + "thread": 23 + } + }, + { + "amount": "197.165489780", + "slot": { + "period": 3657130, + "thread": 28 + } + }, + { + "amount": "197.165489783", + "slot": { + "period": 3892584, + "thread": 31 + } + } + ], + "AU12mVLrLN9AmzanwXT2PJBSa7m6nhcJKnqUhsz8CU998np826Nia": [ + { + "amount": "183.146246145", + "slot": { + "period": 115838, + "thread": 10 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 319844, + "thread": 30 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 413220, + "thread": 22 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 519859, + "thread": 29 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 790718, + "thread": 14 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 863542, + "thread": 16 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 989841, + "thread": 18 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 1244219, + "thread": 20 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 1454881, + "thread": 17 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 1543184, + "thread": 29 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 1677564, + "thread": 18 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 1885270, + "thread": 15 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2081624, + "thread": 3 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2290319, + "thread": 9 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2402729, + "thread": 26 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2592881, + "thread": 15 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2767286, + "thread": 19 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 2903405, + "thread": 6 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 3033627, + "thread": 3 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 3128329, + "thread": 28 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 3339460, + "thread": 24 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 3500218, + "thread": 1 + } + }, + { + "amount": "183.146246145", + "slot": { + "period": 3714603, + "thread": 16 + } + }, + { + "amount": "183.146246141", + "slot": { + "period": 3852203, + "thread": 8 + } + } + ], + "AU12mVbeVMLCEVYt6X78AgfyaS7g4xcmHvgCmfkXc7RKNGKXrEXvu": [ + { + "amount": "201.079742898", + "slot": { + "period": 161803, + "thread": 6 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 198857, + "thread": 4 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 483714, + "thread": 5 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 640753, + "thread": 4 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 770224, + "thread": 28 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 904755, + "thread": 5 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1043995, + "thread": 29 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1216018, + "thread": 13 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1450100, + "thread": 24 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1495238, + "thread": 3 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1757140, + "thread": 16 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 1833916, + "thread": 12 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2015119, + "thread": 14 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2268254, + "thread": 17 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2443353, + "thread": 14 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2494178, + "thread": 19 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2787747, + "thread": 17 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 2938591, + "thread": 25 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 3050014, + "thread": 12 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 3278889, + "thread": 8 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 3420797, + "thread": 11 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 3497948, + "thread": 9 + } + }, + { + "amount": "201.079742898", + "slot": { + "period": 3720911, + "thread": 6 + } + }, + { + "amount": "201.079742888", + "slot": { + "period": 3845163, + "thread": 3 + } + } + ], + "AU12mViosLGZVGE2XppWsf1KteJy6BB7HyGGQqfxy72pZ9DVyVPs": [ + { + "amount": "163.963646631", + "slot": { + "period": 126933, + "thread": 16 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 193727, + "thread": 7 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 341353, + "thread": 8 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 509235, + "thread": 16 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 786890, + "thread": 25 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 906678, + "thread": 12 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1007866, + "thread": 30 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1242708, + "thread": 18 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1477557, + "thread": 8 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1580647, + "thread": 28 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1742581, + "thread": 30 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 1968265, + "thread": 10 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2061651, + "thread": 19 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2172154, + "thread": 16 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2459558, + "thread": 14 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2533741, + "thread": 22 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2653196, + "thread": 6 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 2809134, + "thread": 26 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 3086021, + "thread": 13 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 3269083, + "thread": 28 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 3339512, + "thread": 7 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 3587407, + "thread": 5 + } + }, + { + "amount": "163.963646631", + "slot": { + "period": 3628770, + "thread": 24 + } + }, + { + "amount": "163.963646634", + "slot": { + "period": 3793133, + "thread": 13 + } + } + ], + "AU12mWCtmvsdP55hBLuLwfepatoxgVT4xHsKR74sf15KnsbYSrLQa": [ + { + "amount": "75.699963781", + "slot": { + "period": 127730, + "thread": 24 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 267847, + "thread": 11 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 441982, + "thread": 27 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 532386, + "thread": 8 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 794116, + "thread": 21 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 868671, + "thread": 18 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1024341, + "thread": 26 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1229929, + "thread": 10 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1457002, + "thread": 16 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1623577, + "thread": 14 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1687697, + "thread": 19 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 1941613, + "thread": 20 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2018123, + "thread": 8 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2293654, + "thread": 4 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2396370, + "thread": 21 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2622829, + "thread": 5 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2683079, + "thread": 7 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2858841, + "thread": 30 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 2964384, + "thread": 1 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 3173540, + "thread": 23 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 3390230, + "thread": 31 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 3474006, + "thread": 18 + } + }, + { + "amount": "75.699963781", + "slot": { + "period": 3693786, + "thread": 25 + } + }, + { + "amount": "75.699963778", + "slot": { + "period": 3794390, + "thread": 30 + } + } + ], + "AU12mWSPvzXMnkR4QDGL7XpuTYYkwyGAi4p1kV5ZU8mWUSDSyavJv": [ + { + "amount": "503.750846043", + "slot": { + "period": 134165, + "thread": 4 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 192276, + "thread": 19 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 376683, + "thread": 16 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 530851, + "thread": 26 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 752770, + "thread": 8 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 898823, + "thread": 20 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1138443, + "thread": 14 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1164370, + "thread": 15 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1441802, + "thread": 11 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1563711, + "thread": 19 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1699467, + "thread": 28 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 1899863, + "thread": 1 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2098450, + "thread": 25 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2148086, + "thread": 5 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2455974, + "thread": 18 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2573662, + "thread": 13 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2701876, + "thread": 2 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 2808352, + "thread": 15 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 3095004, + "thread": 24 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 3217119, + "thread": 11 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 3382301, + "thread": 0 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 3612528, + "thread": 28 + } + }, + { + "amount": "503.750846043", + "slot": { + "period": 3775683, + "thread": 7 + } + }, + { + "amount": "503.750846051", + "slot": { + "period": 3823398, + "thread": 16 + } + } + ], + "AU12mX9XYayPj3gqnubdcogtL6oc2yGxUbq6tJ5joeSzVpYtwDM4p": [ + { + "amount": "153.147570734", + "slot": { + "period": 154422, + "thread": 3 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 288170, + "thread": 0 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 487026, + "thread": 24 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 564151, + "thread": 11 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 814584, + "thread": 21 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 885512, + "thread": 2 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1095155, + "thread": 28 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1198201, + "thread": 4 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1465790, + "thread": 17 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1606384, + "thread": 17 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1662520, + "thread": 16 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 1821258, + "thread": 5 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2124236, + "thread": 5 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2162363, + "thread": 23 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2338529, + "thread": 22 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2501231, + "thread": 25 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2669411, + "thread": 18 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 2864482, + "thread": 16 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 3008663, + "thread": 7 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 3241568, + "thread": 2 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 3378787, + "thread": 2 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 3590454, + "thread": 11 + } + }, + { + "amount": "153.147570734", + "slot": { + "period": 3704493, + "thread": 22 + } + }, + { + "amount": "153.147570739", + "slot": { + "period": 3915997, + "thread": 21 + } + } + ], + "AU12mXL5CiRQTTcnTZu766CXgxQL1pYFFqQ6mjqbghccYFstgvtkt": [ + { + "amount": "312.035453719", + "slot": { + "period": 94951, + "thread": 18 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 303143, + "thread": 18 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 364906, + "thread": 4 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 508163, + "thread": 5 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 779802, + "thread": 24 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 856773, + "thread": 20 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1135968, + "thread": 19 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1199868, + "thread": 31 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1356281, + "thread": 19 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1526236, + "thread": 26 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1779727, + "thread": 0 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 1881064, + "thread": 24 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2103272, + "thread": 31 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2271984, + "thread": 25 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2360115, + "thread": 1 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2564921, + "thread": 29 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2746767, + "thread": 3 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 2795153, + "thread": 25 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 3110324, + "thread": 11 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 3218156, + "thread": 4 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 3412830, + "thread": 5 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 3615300, + "thread": 26 + } + }, + { + "amount": "312.035453719", + "slot": { + "period": 3660387, + "thread": 24 + } + }, + { + "amount": "312.035453718", + "slot": { + "period": 3782348, + "thread": 17 + } + } + ], + "AU12mY4cr5MJ9oz4vNbn3dnYpxxgw6XvBv7YfRURzm1JeX8jKvNy4": [ + { + "amount": "199.796407701", + "slot": { + "period": 166679, + "thread": 15 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 295403, + "thread": 26 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 482441, + "thread": 0 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 614074, + "thread": 10 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 762149, + "thread": 6 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 884470, + "thread": 13 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1097088, + "thread": 14 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1274422, + "thread": 15 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1434144, + "thread": 25 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1621851, + "thread": 25 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1778359, + "thread": 2 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 1848587, + "thread": 5 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2077976, + "thread": 0 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2252716, + "thread": 7 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2398283, + "thread": 19 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2620014, + "thread": 3 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2670104, + "thread": 15 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 2848013, + "thread": 18 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 3011278, + "thread": 23 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 3219712, + "thread": 12 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 3374209, + "thread": 25 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 3504642, + "thread": 7 + } + }, + { + "amount": "199.796407701", + "slot": { + "period": 3631815, + "thread": 15 + } + }, + { + "amount": "199.796407696", + "slot": { + "period": 3864240, + "thread": 10 + } + } + ], + "AU12mY9jQoWkNzA6HQtXUVZL51nSELGkH5sNyD13RahzokP3VSzNq": [ + { + "amount": "103.477577920", + "slot": { + "period": 64591, + "thread": 21 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 228920, + "thread": 28 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 437540, + "thread": 2 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 562113, + "thread": 4 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 785710, + "thread": 27 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 972376, + "thread": 9 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1035655, + "thread": 15 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1170445, + "thread": 3 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1370198, + "thread": 3 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1545003, + "thread": 5 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1714880, + "thread": 22 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 1965394, + "thread": 24 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2047454, + "thread": 20 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2175878, + "thread": 21 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2410918, + "thread": 0 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2607714, + "thread": 18 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2758846, + "thread": 28 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 2823520, + "thread": 3 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 3022760, + "thread": 22 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 3176741, + "thread": 27 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 3373337, + "thread": 15 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 3486978, + "thread": 25 + } + }, + { + "amount": "103.477577920", + "slot": { + "period": 3621667, + "thread": 7 + } + }, + { + "amount": "103.477577930", + "slot": { + "period": 3784970, + "thread": 11 + } + } + ], + "AU12mZC4pLaAobCYFAHn5svkQBp8gwN2aAypAdke2aCLTNUQNGhjP": [ + { + "amount": "312.657177878", + "slot": { + "period": 58780, + "thread": 19 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 216756, + "thread": 20 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 489558, + "thread": 11 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 544152, + "thread": 30 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 755006, + "thread": 15 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 864357, + "thread": 24 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1133779, + "thread": 31 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1186892, + "thread": 5 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1410633, + "thread": 14 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1501915, + "thread": 24 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1711386, + "thread": 26 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 1964964, + "thread": 10 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2048069, + "thread": 16 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2283604, + "thread": 9 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2328276, + "thread": 27 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2573919, + "thread": 14 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2756333, + "thread": 7 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2909384, + "thread": 15 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 2962337, + "thread": 11 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 3237220, + "thread": 9 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 3411422, + "thread": 24 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 3528418, + "thread": 17 + } + }, + { + "amount": "312.657177878", + "slot": { + "period": 3661645, + "thread": 22 + } + }, + { + "amount": "312.657177879", + "slot": { + "period": 3927664, + "thread": 24 + } + } + ], + "AU12mZFdVKkP91kkXeRwKsRLjKGsNgkyyZwUyhhsMc9gWSsEwCBcX": [ + { + "amount": "133.410197964", + "slot": { + "period": 28051, + "thread": 21 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 317155, + "thread": 18 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 413943, + "thread": 9 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 519310, + "thread": 18 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 764553, + "thread": 25 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 864099, + "thread": 14 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1078126, + "thread": 18 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1261737, + "thread": 27 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1340895, + "thread": 27 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1579760, + "thread": 9 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1727323, + "thread": 27 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 1851375, + "thread": 2 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2098839, + "thread": 15 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2185325, + "thread": 21 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2320986, + "thread": 15 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2609708, + "thread": 8 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2624719, + "thread": 21 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 2874930, + "thread": 20 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 3054617, + "thread": 16 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 3145819, + "thread": 21 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 3448834, + "thread": 31 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 3600934, + "thread": 27 + } + }, + { + "amount": "133.410197964", + "slot": { + "period": 3674153, + "thread": 4 + } + }, + { + "amount": "133.410197957", + "slot": { + "period": 3878871, + "thread": 27 + } + } + ], + "AU12ma4v4ZniFDvLEb4449YPh3QoupapHaLPhBSmByUQXvC2Y4jDs": [ + { + "amount": "6023.500000000", + "slot": { + "period": 152978, + "thread": 29 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 213603, + "thread": 11 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 336339, + "thread": 10 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 545146, + "thread": 9 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 680305, + "thread": 22 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 855834, + "thread": 20 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 989591, + "thread": 27 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 1253418, + "thread": 2 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 1383918, + "thread": 10 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 1490555, + "thread": 24 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 1747465, + "thread": 17 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 1870107, + "thread": 31 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2061530, + "thread": 24 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2222944, + "thread": 18 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2421158, + "thread": 12 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2479836, + "thread": 24 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2654832, + "thread": 29 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 2910530, + "thread": 6 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3000558, + "thread": 15 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3214050, + "thread": 4 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3404749, + "thread": 5 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3560473, + "thread": 18 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3724938, + "thread": 5 + } + }, + { + "amount": "6023.500000000", + "slot": { + "period": 3891748, + "thread": 21 + } + } + ], + "AU12ma6opUJsbYpJ48CYNT2Ejj6kSXZkij1wiR6iawjf8AMzZke9A": [ + { + "amount": "384.982424266", + "slot": { + "period": 67969, + "thread": 5 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 313149, + "thread": 16 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 401276, + "thread": 28 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 568437, + "thread": 19 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 806917, + "thread": 7 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 856568, + "thread": 24 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1080497, + "thread": 22 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1185051, + "thread": 3 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1456145, + "thread": 8 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1514926, + "thread": 28 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1666722, + "thread": 26 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 1961885, + "thread": 9 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2010939, + "thread": 1 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2234161, + "thread": 30 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2458049, + "thread": 21 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2492314, + "thread": 30 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2729528, + "thread": 6 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2894973, + "thread": 6 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 2978663, + "thread": 4 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 3174472, + "thread": 5 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 3434880, + "thread": 25 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 3491113, + "thread": 31 + } + }, + { + "amount": "384.982424266", + "slot": { + "period": 3700109, + "thread": 7 + } + }, + { + "amount": "384.982424261", + "slot": { + "period": 3866270, + "thread": 19 + } + } + ], + "AU12maqTFAKxMTyd5J2AmMJymTh23XKUtC2HoRfnDTrNfiQvzLFxh": [ + { + "amount": "389.674773729", + "slot": { + "period": 102031, + "thread": 9 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 227056, + "thread": 27 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 381166, + "thread": 5 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 571486, + "thread": 13 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 733728, + "thread": 31 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 881104, + "thread": 19 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 991764, + "thread": 27 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 1273294, + "thread": 10 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 1321253, + "thread": 30 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 1547451, + "thread": 11 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 1798273, + "thread": 1 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 1894684, + "thread": 19 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2100651, + "thread": 10 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2236800, + "thread": 10 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2421037, + "thread": 13 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2522856, + "thread": 21 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2673631, + "thread": 12 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 2847678, + "thread": 20 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 3050216, + "thread": 16 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 3144250, + "thread": 1 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 3351286, + "thread": 21 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 3585959, + "thread": 4 + } + }, + { + "amount": "389.674773729", + "slot": { + "period": 3654996, + "thread": 2 + } + }, + { + "amount": "389.674773733", + "slot": { + "period": 3815236, + "thread": 16 + } + } + ], + "AU12mbELuvhzRsbuRATNvxPMy1emJZm5i3UWPGkS9bmEqptG69WRm": [ + { + "amount": "177.275767513", + "slot": { + "period": 22350, + "thread": 19 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 266520, + "thread": 1 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 339836, + "thread": 24 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 505839, + "thread": 24 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 695950, + "thread": 7 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 973199, + "thread": 16 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1070957, + "thread": 1 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1176285, + "thread": 13 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1351181, + "thread": 30 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1595394, + "thread": 27 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1676686, + "thread": 28 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 1857848, + "thread": 25 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2096043, + "thread": 31 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2235727, + "thread": 11 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2455659, + "thread": 0 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2497627, + "thread": 28 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2735929, + "thread": 3 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 2826295, + "thread": 5 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 3112803, + "thread": 27 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 3138006, + "thread": 11 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 3306909, + "thread": 10 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 3601056, + "thread": 4 + } + }, + { + "amount": "177.275767513", + "slot": { + "period": 3698222, + "thread": 9 + } + }, + { + "amount": "177.275767506", + "slot": { + "period": 3792898, + "thread": 10 + } + } + ], + "AU12mbWCYXZxYHzrTtiXoKgrcghxzXBeC6qp499zqphZRPXEfsru": [ + { + "amount": "211.019283784", + "slot": { + "period": 83050, + "thread": 23 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 175917, + "thread": 12 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 384847, + "thread": 18 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 543261, + "thread": 2 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 726385, + "thread": 3 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 932899, + "thread": 6 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 988509, + "thread": 25 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 1191961, + "thread": 18 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 1447121, + "thread": 31 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 1504531, + "thread": 3 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 1706039, + "thread": 16 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 1812463, + "thread": 21 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2109826, + "thread": 22 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2161719, + "thread": 31 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2336174, + "thread": 24 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2560746, + "thread": 9 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2743187, + "thread": 2 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 2853348, + "thread": 2 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 3013379, + "thread": 12 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 3270750, + "thread": 4 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 3303939, + "thread": 29 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 3469818, + "thread": 26 + } + }, + { + "amount": "211.019283784", + "slot": { + "period": 3702812, + "thread": 28 + } + }, + { + "amount": "211.019283783", + "slot": { + "period": 3906605, + "thread": 26 + } + } + ], + "AU12mbsUB8G1bdnBQDFsqmCU1v6ngrkZVeuG8dDbKHkSo3wcVBNm": [ + { + "amount": "157.865625382", + "slot": { + "period": 40483, + "thread": 4 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 292602, + "thread": 14 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 454992, + "thread": 12 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 496658, + "thread": 26 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 775209, + "thread": 20 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 935348, + "thread": 6 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1012918, + "thread": 10 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1222112, + "thread": 9 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1364321, + "thread": 15 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1507855, + "thread": 19 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1670745, + "thread": 27 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 1970180, + "thread": 18 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2054517, + "thread": 16 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2279169, + "thread": 23 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2366967, + "thread": 30 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2503828, + "thread": 30 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2757901, + "thread": 0 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 2841309, + "thread": 16 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 3063063, + "thread": 26 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 3218427, + "thread": 27 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 3337026, + "thread": 25 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 3516025, + "thread": 19 + } + }, + { + "amount": "157.865625382", + "slot": { + "period": 3779080, + "thread": 13 + } + }, + { + "amount": "157.865625385", + "slot": { + "period": 3917315, + "thread": 13 + } + } + ], + "AU12mbzHqTu319goN433xXeBZeVBmJ6ps4wRC9mTAHEiDfni2YjCg": [ + { + "amount": "333.493899041", + "slot": { + "period": 55837, + "thread": 26 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 176855, + "thread": 24 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 338234, + "thread": 28 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 628306, + "thread": 19 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 665104, + "thread": 13 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 860140, + "thread": 26 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1143399, + "thread": 28 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1299216, + "thread": 2 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1328962, + "thread": 13 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1594409, + "thread": 22 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1697909, + "thread": 11 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 1941667, + "thread": 27 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2030381, + "thread": 2 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2153307, + "thread": 23 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2444348, + "thread": 5 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2503362, + "thread": 6 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2679234, + "thread": 30 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 2835026, + "thread": 2 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 3051808, + "thread": 29 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 3278895, + "thread": 29 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 3323089, + "thread": 21 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 3562748, + "thread": 9 + } + }, + { + "amount": "333.493899041", + "slot": { + "period": 3733932, + "thread": 20 + } + }, + { + "amount": "333.493899047", + "slot": { + "period": 3889441, + "thread": 6 + } + } + ], + "AU12mce8jUW349WnHGzAe9oe3oQ1UZ17jQLs2GdYUVqqFu4fhZHmb": [ + { + "amount": "221.770156118", + "slot": { + "period": 65355, + "thread": 13 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 278843, + "thread": 19 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 460623, + "thread": 7 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 538137, + "thread": 0 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 753771, + "thread": 0 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 851151, + "thread": 12 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1014782, + "thread": 25 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1258328, + "thread": 24 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1441067, + "thread": 13 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1632720, + "thread": 14 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1781550, + "thread": 15 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 1846042, + "thread": 5 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2105918, + "thread": 16 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2257280, + "thread": 28 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2446133, + "thread": 15 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2539354, + "thread": 23 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2630982, + "thread": 26 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 2797519, + "thread": 25 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 3002708, + "thread": 18 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 3247441, + "thread": 18 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 3362666, + "thread": 10 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 3615483, + "thread": 22 + } + }, + { + "amount": "221.770156118", + "slot": { + "period": 3768611, + "thread": 11 + } + }, + { + "amount": "221.770156121", + "slot": { + "period": 3817997, + "thread": 4 + } + } + ], + "AU12mchwXEFZNyATkrRfhqtUFsJ1NWSmRt385t4AoWR3Bkfg6DuXc": [ + { + "amount": "192.102423976", + "slot": { + "period": 160236, + "thread": 24 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 220853, + "thread": 22 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 382799, + "thread": 21 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 600599, + "thread": 1 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 710272, + "thread": 10 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 978084, + "thread": 28 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1140209, + "thread": 17 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1204878, + "thread": 29 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1402194, + "thread": 17 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1543417, + "thread": 28 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1649128, + "thread": 21 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 1888976, + "thread": 30 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2055782, + "thread": 10 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2161200, + "thread": 11 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2375595, + "thread": 13 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2530216, + "thread": 15 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2640954, + "thread": 13 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2908258, + "thread": 28 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 2998283, + "thread": 15 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 3215413, + "thread": 26 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 3354253, + "thread": 22 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 3457533, + "thread": 29 + } + }, + { + "amount": "192.102423976", + "slot": { + "period": 3619061, + "thread": 1 + } + }, + { + "amount": "192.102423979", + "slot": { + "period": 3920089, + "thread": 1 + } + } + ], + "AU12mcrt5DLXsJ1aYcyh5BsdNkHTCYEAqfyceUjtXqvjcuXo37Per": [ + { + "amount": "176.789720517", + "slot": { + "period": 108274, + "thread": 3 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 192623, + "thread": 18 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 452904, + "thread": 5 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 537110, + "thread": 30 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 657194, + "thread": 8 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 906533, + "thread": 16 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1120545, + "thread": 30 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1259017, + "thread": 24 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1394647, + "thread": 11 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1525419, + "thread": 0 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1702064, + "thread": 6 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 1965746, + "thread": 12 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2135273, + "thread": 2 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2249956, + "thread": 17 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2400840, + "thread": 15 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2482307, + "thread": 25 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2693118, + "thread": 26 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2812755, + "thread": 19 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 2971628, + "thread": 9 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 3224077, + "thread": 0 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 3299358, + "thread": 26 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 3479919, + "thread": 24 + } + }, + { + "amount": "176.789720517", + "slot": { + "period": 3776008, + "thread": 9 + } + }, + { + "amount": "176.789720525", + "slot": { + "period": 3858279, + "thread": 13 + } + } + ], + "AU12mdfjXQPjd3SwpgJQ8ZMqELLT2F8fYQwaDsEJYdYWrxq7VEu6e": [ + { + "amount": "322.356809051", + "slot": { + "period": 146303, + "thread": 25 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 175786, + "thread": 5 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 466335, + "thread": 8 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 525880, + "thread": 2 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 706530, + "thread": 15 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 904703, + "thread": 6 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1122506, + "thread": 28 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1199639, + "thread": 17 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1377151, + "thread": 6 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1620204, + "thread": 14 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1745050, + "thread": 12 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 1832391, + "thread": 7 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2031482, + "thread": 31 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2239861, + "thread": 25 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2364428, + "thread": 13 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2493222, + "thread": 5 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2641455, + "thread": 24 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 2825906, + "thread": 9 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 3041628, + "thread": 27 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 3165654, + "thread": 6 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 3426918, + "thread": 5 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 3559583, + "thread": 1 + } + }, + { + "amount": "322.356809051", + "slot": { + "period": 3636771, + "thread": 13 + } + }, + { + "amount": "322.356809041", + "slot": { + "period": 3792380, + "thread": 22 + } + } + ], + "AU12meVrqZbtswucmoncFv6ZgAsV6zKZdHjFhQXe1Z2HRa2prdE64": [ + { + "amount": "72.660799624", + "slot": { + "period": 29465, + "thread": 17 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 173119, + "thread": 16 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 401979, + "thread": 21 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 572099, + "thread": 17 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 759469, + "thread": 0 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 854582, + "thread": 8 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1090195, + "thread": 6 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1255932, + "thread": 4 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1397502, + "thread": 20 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1609873, + "thread": 27 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1712963, + "thread": 31 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 1922849, + "thread": 23 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2116195, + "thread": 4 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2158539, + "thread": 5 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2370159, + "thread": 2 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2540883, + "thread": 24 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2673100, + "thread": 17 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2832736, + "thread": 9 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 2992044, + "thread": 11 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 3260574, + "thread": 6 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 3301788, + "thread": 5 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 3572366, + "thread": 16 + } + }, + { + "amount": "72.660799624", + "slot": { + "period": 3661491, + "thread": 9 + } + }, + { + "amount": "72.660799621", + "slot": { + "period": 3894103, + "thread": 17 + } + } + ], + "AU12mf2mRfmVsXPyHKcGnGN4SaYntAUqnyVx6z9RLUH55Hbvn4zV6": [ + { + "amount": "164.278174626", + "slot": { + "period": 160796, + "thread": 15 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 290397, + "thread": 24 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 324072, + "thread": 28 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 632555, + "thread": 3 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 668391, + "thread": 29 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 852053, + "thread": 23 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1102261, + "thread": 15 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1246017, + "thread": 4 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1450228, + "thread": 7 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1495352, + "thread": 3 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1746184, + "thread": 16 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 1967992, + "thread": 20 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2003920, + "thread": 28 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2225098, + "thread": 25 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2414354, + "thread": 27 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2506473, + "thread": 29 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2698111, + "thread": 17 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 2935109, + "thread": 22 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 3050704, + "thread": 1 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 3163248, + "thread": 14 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 3385782, + "thread": 17 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 3593026, + "thread": 3 + } + }, + { + "amount": "164.278174626", + "slot": { + "period": 3728777, + "thread": 20 + } + }, + { + "amount": "164.278174615", + "slot": { + "period": 3871882, + "thread": 22 + } + } + ], + "AU12mfGgJKfhDf1MtSbhM1rWiGRjQbEkHLmArVTFKjmwtgPuV6KZA": [ + { + "amount": "341.255333703", + "slot": { + "period": 88672, + "thread": 3 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 258946, + "thread": 27 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 345123, + "thread": 27 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 652013, + "thread": 23 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 762395, + "thread": 23 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 871355, + "thread": 22 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1021635, + "thread": 17 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1197527, + "thread": 26 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1338144, + "thread": 10 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1567002, + "thread": 21 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1660529, + "thread": 20 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 1869522, + "thread": 20 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2029303, + "thread": 28 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2186745, + "thread": 20 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2342650, + "thread": 3 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2524784, + "thread": 31 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2745081, + "thread": 5 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2878683, + "thread": 25 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 2970693, + "thread": 28 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 3239682, + "thread": 17 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 3325870, + "thread": 17 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 3465862, + "thread": 25 + } + }, + { + "amount": "341.255333703", + "slot": { + "period": 3753219, + "thread": 4 + } + }, + { + "amount": "341.255333702", + "slot": { + "period": 3870590, + "thread": 14 + } + } + ], + "AU12mfqEg5Acpf5JeGZ9x29boRTNE7KjHiuv26CSNpR6qRyBTg2nr": [ + { + "amount": "326.573382523", + "slot": { + "period": 39963, + "thread": 15 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 189712, + "thread": 26 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 460322, + "thread": 24 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 515892, + "thread": 1 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 710231, + "thread": 7 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 879823, + "thread": 26 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1126754, + "thread": 7 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1246673, + "thread": 8 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1401020, + "thread": 10 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1644816, + "thread": 22 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1772651, + "thread": 24 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 1830028, + "thread": 15 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2035925, + "thread": 11 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2174753, + "thread": 24 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2397108, + "thread": 18 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2615996, + "thread": 5 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2694803, + "thread": 15 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 2932570, + "thread": 24 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3052992, + "thread": 31 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3261426, + "thread": 3 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3416271, + "thread": 30 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3498686, + "thread": 20 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3676571, + "thread": 17 + } + }, + { + "amount": "326.573382523", + "slot": { + "period": 3825790, + "thread": 2 + } + } + ], + "AU12mgVx934p9Pzrdr1m35fGZ693aTkza1b6itwuMmyjY3Ws4nhcE": [ + { + "amount": "591.866020007", + "slot": { + "period": 122373, + "thread": 12 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 221077, + "thread": 6 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 374049, + "thread": 22 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 608304, + "thread": 2 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 716440, + "thread": 15 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 849264, + "thread": 10 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1144755, + "thread": 27 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1294565, + "thread": 23 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1405629, + "thread": 6 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1599258, + "thread": 2 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1669389, + "thread": 25 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 1858158, + "thread": 2 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2002871, + "thread": 3 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2199017, + "thread": 19 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2431013, + "thread": 4 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2526384, + "thread": 25 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2774382, + "thread": 17 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 2863793, + "thread": 11 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 3038205, + "thread": 24 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 3223760, + "thread": 29 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 3401527, + "thread": 18 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 3602794, + "thread": 21 + } + }, + { + "amount": "591.866020007", + "slot": { + "period": 3741600, + "thread": 25 + } + }, + { + "amount": "591.866020003", + "slot": { + "period": 3880542, + "thread": 10 + } + } + ], + "AU12mgYfgP9LBVykvjDFyXKNvN5iUVGG7vCy8TGz4WWHpAarhCWE2": [ + { + "amount": "556.603336284", + "slot": { + "period": 128434, + "thread": 10 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 207306, + "thread": 20 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 404289, + "thread": 27 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 580596, + "thread": 12 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 774251, + "thread": 10 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 964628, + "thread": 5 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1139201, + "thread": 21 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1222449, + "thread": 28 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1477273, + "thread": 0 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1581958, + "thread": 22 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1738472, + "thread": 23 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 1956989, + "thread": 8 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2062914, + "thread": 31 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2148810, + "thread": 24 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2450301, + "thread": 12 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2554534, + "thread": 8 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2726442, + "thread": 3 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2820771, + "thread": 31 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 2996561, + "thread": 22 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 3210707, + "thread": 15 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 3395512, + "thread": 0 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 3461272, + "thread": 4 + } + }, + { + "amount": "556.603336284", + "slot": { + "period": 3772711, + "thread": 17 + } + }, + { + "amount": "556.603336281", + "slot": { + "period": 3905462, + "thread": 0 + } + } + ], + "AU12miGsdcaZzTN3AGHniSP24azRc1va6cnzjP21PHi1xBvEb2AU9": [ + { + "amount": "56.534816500", + "slot": { + "period": 114531, + "thread": 11 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 193910, + "thread": 26 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 378408, + "thread": 31 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 599715, + "thread": 16 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 684592, + "thread": 16 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 979080, + "thread": 17 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1071269, + "thread": 15 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1270976, + "thread": 14 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1343227, + "thread": 4 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1588556, + "thread": 6 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1679450, + "thread": 14 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1901159, + "thread": 20 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 1991147, + "thread": 12 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 2218253, + "thread": 21 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 2457839, + "thread": 15 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 2505279, + "thread": 31 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 2686097, + "thread": 3 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 2886821, + "thread": 20 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 3102364, + "thread": 27 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 3287924, + "thread": 18 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 3349810, + "thread": 31 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 3610236, + "thread": 13 + } + }, + { + "amount": "56.534816500", + "slot": { + "period": 3740342, + "thread": 18 + } + }, + { + "amount": "56.534816493", + "slot": { + "period": 3936402, + "thread": 31 + } + } + ], + "AU12mioUi931ekuYYopufGjw8aeyTCxqDk7dA94G6BxU3bG88a9EN": [ + { + "amount": "79.707577092", + "slot": { + "period": 101155, + "thread": 25 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 239836, + "thread": 29 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 463707, + "thread": 8 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 575007, + "thread": 23 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 762376, + "thread": 28 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 911523, + "thread": 19 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1081123, + "thread": 27 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1275426, + "thread": 11 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1387930, + "thread": 11 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1553135, + "thread": 7 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1662500, + "thread": 10 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 1940840, + "thread": 2 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2129193, + "thread": 1 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2199952, + "thread": 20 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2323933, + "thread": 10 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2591627, + "thread": 22 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2707529, + "thread": 14 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2805460, + "thread": 26 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 2991783, + "thread": 26 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 3216433, + "thread": 26 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 3443859, + "thread": 2 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 3500687, + "thread": 2 + } + }, + { + "amount": "79.707577092", + "slot": { + "period": 3720695, + "thread": 13 + } + }, + { + "amount": "79.707577096", + "slot": { + "period": 3865104, + "thread": 3 + } + } + ], + "AU12mjFGmD9VcsGrjq8DodBd1TuXNdAdpipiVWLhF6kxQ8yDDNKyn": [ + { + "amount": "156.069503102", + "slot": { + "period": 141001, + "thread": 27 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 202678, + "thread": 29 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 382255, + "thread": 18 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 585211, + "thread": 1 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 699726, + "thread": 24 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 876168, + "thread": 25 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1069780, + "thread": 29 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1172136, + "thread": 26 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1355880, + "thread": 13 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1480031, + "thread": 26 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1722544, + "thread": 8 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1822315, + "thread": 0 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 1994188, + "thread": 0 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 2276535, + "thread": 7 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 2367417, + "thread": 14 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 2557362, + "thread": 5 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 2702611, + "thread": 4 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 2934711, + "thread": 25 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 3066444, + "thread": 8 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 3160960, + "thread": 24 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 3323086, + "thread": 13 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 3599969, + "thread": 27 + } + }, + { + "amount": "156.069503102", + "slot": { + "period": 3730612, + "thread": 19 + } + }, + { + "amount": "156.069503111", + "slot": { + "period": 3888728, + "thread": 0 + } + } + ], + "AU12mjZYxzcg3eogAvnP6HYutVMXUjYqqnMrJ1TJqYByYPdSTzRPa": [ + { + "amount": "96.859974449", + "slot": { + "period": 67673, + "thread": 18 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 280086, + "thread": 11 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 405678, + "thread": 23 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 638600, + "thread": 6 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 814722, + "thread": 14 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 855726, + "thread": 13 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1065732, + "thread": 28 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1261868, + "thread": 17 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1409250, + "thread": 5 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1501563, + "thread": 13 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1697113, + "thread": 24 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 1861567, + "thread": 20 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2102802, + "thread": 4 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2180844, + "thread": 17 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2368872, + "thread": 23 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2491951, + "thread": 7 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2683142, + "thread": 20 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 2899297, + "thread": 26 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 3004404, + "thread": 22 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 3236774, + "thread": 1 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 3417043, + "thread": 10 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 3489365, + "thread": 26 + } + }, + { + "amount": "96.859974449", + "slot": { + "period": 3745608, + "thread": 6 + } + }, + { + "amount": "96.859974458", + "slot": { + "period": 3823123, + "thread": 5 + } + } + ], + "AU12mk4Xmq1RakkvHpLRZjcfqZ2s6uZf8s4ogYD59d1W4cURdrK6H": [ + { + "amount": "59.143344957", + "slot": { + "period": 134906, + "thread": 12 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 319480, + "thread": 8 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 475511, + "thread": 11 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 558927, + "thread": 24 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 785272, + "thread": 17 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 963154, + "thread": 29 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1082634, + "thread": 21 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1284715, + "thread": 18 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1384650, + "thread": 18 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1601890, + "thread": 18 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1648688, + "thread": 17 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 1961920, + "thread": 30 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2053915, + "thread": 25 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2144405, + "thread": 7 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2380447, + "thread": 7 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2523835, + "thread": 29 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2657848, + "thread": 17 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 2826599, + "thread": 7 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 3081256, + "thread": 28 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 3185074, + "thread": 31 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 3320876, + "thread": 0 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 3468707, + "thread": 31 + } + }, + { + "amount": "59.143344957", + "slot": { + "period": 3715669, + "thread": 22 + } + }, + { + "amount": "59.143344953", + "slot": { + "period": 3932392, + "thread": 2 + } + } + ], + "AU12mnLnry6SqCZK9PJh1pgSAsfA6J2onTzSnBhzTtwpGRk3Qy78V": [ + { + "amount": "540.711087482", + "slot": { + "period": 83114, + "thread": 16 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 289015, + "thread": 21 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 400007, + "thread": 24 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 496168, + "thread": 28 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 743739, + "thread": 17 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 870795, + "thread": 12 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1056762, + "thread": 21 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1254301, + "thread": 8 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1467712, + "thread": 3 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1565080, + "thread": 27 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1732846, + "thread": 4 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 1976044, + "thread": 21 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2141637, + "thread": 29 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2281228, + "thread": 4 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2302224, + "thread": 30 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2547139, + "thread": 24 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2757106, + "thread": 12 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 2910257, + "thread": 6 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3050832, + "thread": 4 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3254738, + "thread": 2 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3340992, + "thread": 13 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3560075, + "thread": 22 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3772298, + "thread": 27 + } + }, + { + "amount": "540.711087482", + "slot": { + "period": 3836039, + "thread": 25 + } + } + ], + "AU12mogc7evvC8haSCqhhENh7WsvGfrHZNJKvXUmaBrwgwqvV7VrS": [ + { + "amount": "162.529399192", + "slot": { + "period": 147122, + "thread": 25 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 278328, + "thread": 1 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 365548, + "thread": 9 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 542239, + "thread": 31 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 807732, + "thread": 30 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 958300, + "thread": 28 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1095769, + "thread": 2 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1304280, + "thread": 19 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1467085, + "thread": 13 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1486520, + "thread": 11 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1764384, + "thread": 25 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 1914701, + "thread": 7 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2010073, + "thread": 8 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2177550, + "thread": 10 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2348149, + "thread": 5 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2554274, + "thread": 27 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2665043, + "thread": 4 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2803124, + "thread": 23 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 2978391, + "thread": 28 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 3145081, + "thread": 28 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 3316481, + "thread": 29 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 3491696, + "thread": 29 + } + }, + { + "amount": "162.529399192", + "slot": { + "period": 3670629, + "thread": 31 + } + }, + { + "amount": "162.529399182", + "slot": { + "period": 3843572, + "thread": 6 + } + } + ], + "AU12mpqev3SxChtS9WNriQfw1gTy2SxM3PaVmKD6JnUs2v2LP9cNK": [ + { + "amount": "513.449513609", + "slot": { + "period": 23040, + "thread": 31 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 254357, + "thread": 11 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 374864, + "thread": 13 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 521485, + "thread": 17 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 677985, + "thread": 27 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 871210, + "thread": 24 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1044428, + "thread": 12 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1219201, + "thread": 28 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1473021, + "thread": 8 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1527566, + "thread": 20 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1685645, + "thread": 18 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 1938096, + "thread": 30 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2021365, + "thread": 25 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2169895, + "thread": 18 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2344850, + "thread": 27 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2518438, + "thread": 19 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2779704, + "thread": 17 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 2862447, + "thread": 23 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 3037529, + "thread": 7 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 3244099, + "thread": 29 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 3307380, + "thread": 10 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 3510510, + "thread": 4 + } + }, + { + "amount": "513.449513609", + "slot": { + "period": 3646790, + "thread": 14 + } + }, + { + "amount": "513.449513606", + "slot": { + "period": 3805334, + "thread": 9 + } + } + ], + "AU12msPU3GwA6zhXP34WcVsWN6VZaMGaFV7nodePvCVkWnzkqUy9M": [ + { + "amount": "151.212731107", + "slot": { + "period": 120411, + "thread": 13 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 290082, + "thread": 2 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 461699, + "thread": 14 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 585835, + "thread": 0 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 691408, + "thread": 0 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 899178, + "thread": 6 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1130787, + "thread": 31 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1156229, + "thread": 5 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1400073, + "thread": 28 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1587877, + "thread": 16 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1655034, + "thread": 5 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 1822670, + "thread": 26 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2087976, + "thread": 19 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2162235, + "thread": 25 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2436346, + "thread": 30 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2604051, + "thread": 31 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2728258, + "thread": 30 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2828946, + "thread": 22 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 2958851, + "thread": 5 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 3121905, + "thread": 23 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 3344423, + "thread": 18 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 3541930, + "thread": 3 + } + }, + { + "amount": "151.212731107", + "slot": { + "period": 3624989, + "thread": 14 + } + }, + { + "amount": "151.212731108", + "slot": { + "period": 3885640, + "thread": 24 + } + } + ], + "AU12mtmYX82wyRhgeoQPZmQ9kxR9b894qQuaP5X69UvcAdnDuWxnX": [ + { + "amount": "309.739523445", + "slot": { + "period": 124345, + "thread": 25 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 193259, + "thread": 11 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 451029, + "thread": 17 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 530009, + "thread": 6 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 810612, + "thread": 15 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 923413, + "thread": 19 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1071543, + "thread": 0 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1258494, + "thread": 30 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1404917, + "thread": 13 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1596998, + "thread": 8 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1773071, + "thread": 30 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 1872064, + "thread": 26 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2101872, + "thread": 8 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2201497, + "thread": 14 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2407890, + "thread": 13 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2559783, + "thread": 31 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2727864, + "thread": 7 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 2863658, + "thread": 19 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 3026792, + "thread": 0 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 3172194, + "thread": 5 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 3354606, + "thread": 19 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 3585123, + "thread": 29 + } + }, + { + "amount": "309.739523445", + "slot": { + "period": 3690674, + "thread": 21 + } + }, + { + "amount": "309.739523446", + "slot": { + "period": 3805741, + "thread": 8 + } + } + ], + "AU12mtzeyBecbPAF96gyLa4eaa6rWffZ8mKo8fgaKj2iZzpsURm9N": [ + { + "amount": "221.145822824", + "slot": { + "period": 113408, + "thread": 5 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 280270, + "thread": 24 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 361747, + "thread": 30 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 554652, + "thread": 0 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 777411, + "thread": 13 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 949961, + "thread": 10 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1087354, + "thread": 28 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1222170, + "thread": 24 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1338895, + "thread": 12 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1509642, + "thread": 13 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1783850, + "thread": 7 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 1959508, + "thread": 31 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2100771, + "thread": 15 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2164331, + "thread": 29 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2311493, + "thread": 30 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2500619, + "thread": 1 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2730229, + "thread": 27 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 2819789, + "thread": 10 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 3044257, + "thread": 21 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 3148189, + "thread": 16 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 3403453, + "thread": 29 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 3544017, + "thread": 10 + } + }, + { + "amount": "221.145822824", + "slot": { + "period": 3673559, + "thread": 10 + } + }, + { + "amount": "221.145822813", + "slot": { + "period": 3864585, + "thread": 19 + } + } + ], + "AU12muK9qvhjKkmP16L5exivaTQLVuHqBqxpD1WZaEspziLgr7dqy": [ + { + "amount": "194.893891348", + "slot": { + "period": 79202, + "thread": 22 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 307882, + "thread": 31 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 348816, + "thread": 28 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 632070, + "thread": 0 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 757226, + "thread": 14 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 962909, + "thread": 29 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1139062, + "thread": 19 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1254531, + "thread": 2 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1348244, + "thread": 10 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1606372, + "thread": 8 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1716602, + "thread": 20 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 1815018, + "thread": 27 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2106078, + "thread": 7 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2175225, + "thread": 22 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2419535, + "thread": 9 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2573083, + "thread": 4 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2680750, + "thread": 20 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2833768, + "thread": 18 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 2999744, + "thread": 4 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 3200903, + "thread": 12 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 3312358, + "thread": 13 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 3561275, + "thread": 23 + } + }, + { + "amount": "194.893891348", + "slot": { + "period": 3664644, + "thread": 22 + } + }, + { + "amount": "194.893891336", + "slot": { + "period": 3866729, + "thread": 15 + } + } + ], + "AU12mvDFsEMUy2JRitbah9f4gBR3Xxr69p3HdakiNFibybKJM5Jkm": [ + { + "amount": "148.619123495", + "slot": { + "period": 112853, + "thread": 16 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 250294, + "thread": 15 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 419264, + "thread": 18 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 524287, + "thread": 11 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 804140, + "thread": 13 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 945322, + "thread": 27 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1083847, + "thread": 12 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1211429, + "thread": 30 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1456997, + "thread": 0 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1636241, + "thread": 22 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1729830, + "thread": 23 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 1883992, + "thread": 27 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2040175, + "thread": 10 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2219222, + "thread": 2 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2385977, + "thread": 4 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2471542, + "thread": 5 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2740952, + "thread": 2 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 2805771, + "thread": 10 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 3073150, + "thread": 4 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 3179253, + "thread": 31 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 3403820, + "thread": 23 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 3520811, + "thread": 0 + } + }, + { + "amount": "148.619123495", + "slot": { + "period": 3765831, + "thread": 12 + } + }, + { + "amount": "148.619123492", + "slot": { + "period": 3859884, + "thread": 8 + } + } + ], + "AU12mxEyAtRRx99hexBZW9nF6VeTQ9d3ZXM2ijVang5Nf1CdthYdf": [ + { + "amount": "217.996902256", + "slot": { + "period": 124883, + "thread": 8 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 236591, + "thread": 4 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 467993, + "thread": 7 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 606944, + "thread": 28 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 779114, + "thread": 2 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 964016, + "thread": 24 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1019635, + "thread": 6 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1202844, + "thread": 18 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1428225, + "thread": 20 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1568827, + "thread": 17 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1805104, + "thread": 5 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 1828301, + "thread": 28 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2039468, + "thread": 8 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2221895, + "thread": 16 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2380529, + "thread": 8 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2597443, + "thread": 11 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2734620, + "thread": 18 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 2809186, + "thread": 30 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 3104482, + "thread": 4 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 3267901, + "thread": 14 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 3350828, + "thread": 2 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 3461704, + "thread": 21 + } + }, + { + "amount": "217.996902256", + "slot": { + "period": 3692237, + "thread": 23 + } + }, + { + "amount": "217.996902248", + "slot": { + "period": 3849154, + "thread": 22 + } + } + ], + "AU12mxMD3pCM6UDt18APjRyjACMfkcTQzifYv2hU7VKPVkqwgxCfW": [ + { + "amount": "70.264288105", + "slot": { + "period": 53725, + "thread": 25 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 280745, + "thread": 8 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 451388, + "thread": 20 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 604566, + "thread": 8 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 738410, + "thread": 26 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 901687, + "thread": 31 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 990632, + "thread": 14 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 1181888, + "thread": 1 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 1449273, + "thread": 23 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 1595393, + "thread": 6 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 1789372, + "thread": 4 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 1841520, + "thread": 7 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2093744, + "thread": 30 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2207709, + "thread": 15 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2444366, + "thread": 28 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2547743, + "thread": 11 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2632300, + "thread": 17 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 2951663, + "thread": 0 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 3080775, + "thread": 5 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 3150356, + "thread": 21 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 3355641, + "thread": 8 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 3500627, + "thread": 3 + } + }, + { + "amount": "70.264288105", + "slot": { + "period": 3633772, + "thread": 4 + } + }, + { + "amount": "70.264288094", + "slot": { + "period": 3941021, + "thread": 0 + } + } + ], + "AU12mxY7M56ngsLBSurYRXZtpjr4kAfUvMucF26f6rTd3piQaLoVK": [ + { + "amount": "302.333047085", + "slot": { + "period": 112578, + "thread": 9 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 221515, + "thread": 26 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 431321, + "thread": 30 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 589365, + "thread": 19 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 779915, + "thread": 30 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 956702, + "thread": 26 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1052505, + "thread": 28 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1241767, + "thread": 6 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1427043, + "thread": 4 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1549829, + "thread": 25 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1769528, + "thread": 9 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 1864578, + "thread": 27 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2014532, + "thread": 12 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2267059, + "thread": 1 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2295329, + "thread": 4 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2500137, + "thread": 21 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2782797, + "thread": 12 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 2907463, + "thread": 25 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 3072715, + "thread": 18 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 3260046, + "thread": 25 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 3385131, + "thread": 7 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 3467543, + "thread": 2 + } + }, + { + "amount": "302.333047085", + "slot": { + "period": 3712542, + "thread": 8 + } + }, + { + "amount": "302.333047080", + "slot": { + "period": 3812118, + "thread": 16 + } + } + ], + "AU12mzbrfQx7axgqrqd54b5KuR2q2XfTcCTu8reiKBrP3jYMAVCdE": [ + { + "amount": "105.560931771", + "slot": { + "period": 106407, + "thread": 4 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 277658, + "thread": 23 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 488902, + "thread": 19 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 650744, + "thread": 3 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 820579, + "thread": 4 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 960751, + "thread": 0 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1069799, + "thread": 26 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1169610, + "thread": 1 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1323798, + "thread": 29 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1528851, + "thread": 28 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1669675, + "thread": 4 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 1883445, + "thread": 11 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2095333, + "thread": 10 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2216246, + "thread": 20 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2389754, + "thread": 8 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2546777, + "thread": 24 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2681436, + "thread": 2 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 2916627, + "thread": 10 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 3055956, + "thread": 6 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 3272564, + "thread": 14 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 3343617, + "thread": 9 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 3532893, + "thread": 20 + } + }, + { + "amount": "105.560931771", + "slot": { + "period": 3659567, + "thread": 26 + } + }, + { + "amount": "105.560931769", + "slot": { + "period": 3941878, + "thread": 28 + } + } + ], + "AU12n1E6n8YGVLPVefXkR56r24n2J9KcNRueZes5gmoAPWfkd78A5": [ + { + "amount": "189.400300663", + "slot": { + "period": 155508, + "thread": 13 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 239416, + "thread": 21 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 389782, + "thread": 2 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 509245, + "thread": 16 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 747310, + "thread": 10 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 923211, + "thread": 21 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1021585, + "thread": 24 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1277498, + "thread": 30 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1392655, + "thread": 23 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1607851, + "thread": 27 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1760845, + "thread": 7 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 1974858, + "thread": 29 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2076442, + "thread": 7 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2262634, + "thread": 1 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2461984, + "thread": 3 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2533988, + "thread": 1 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2625863, + "thread": 20 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 2873414, + "thread": 23 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 3062701, + "thread": 9 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 3274830, + "thread": 25 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 3423551, + "thread": 8 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 3491348, + "thread": 21 + } + }, + { + "amount": "189.400300663", + "slot": { + "period": 3732470, + "thread": 15 + } + }, + { + "amount": "189.400300664", + "slot": { + "period": 3940291, + "thread": 10 + } + } + ], + "AU12n1hy28zzY9Y4JcR4xCvtZhtLyFq9WJEZoAbF79D78p871Hcaq": [ + { + "amount": "287.010434658", + "slot": { + "period": 120809, + "thread": 9 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 271463, + "thread": 20 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 437787, + "thread": 25 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 644897, + "thread": 20 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 720007, + "thread": 23 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 839808, + "thread": 31 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1096517, + "thread": 21 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1292028, + "thread": 26 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1398459, + "thread": 25 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1609190, + "thread": 24 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1785481, + "thread": 7 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 1813893, + "thread": 15 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2081665, + "thread": 23 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2255413, + "thread": 21 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2432358, + "thread": 17 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2523463, + "thread": 1 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2711061, + "thread": 26 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 2892471, + "thread": 1 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 3047089, + "thread": 24 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 3138337, + "thread": 6 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 3384070, + "thread": 15 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 3573417, + "thread": 21 + } + }, + { + "amount": "287.010434658", + "slot": { + "period": 3725408, + "thread": 26 + } + }, + { + "amount": "287.010434656", + "slot": { + "period": 3869407, + "thread": 25 + } + } + ], + "AU12n2WMhPpMnTfStJaJnA1bSZs9EVBKURTcBoeKXTUA5osrWPPgY": [ + { + "amount": "307.968050168", + "slot": { + "period": 150065, + "thread": 22 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 191651, + "thread": 3 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 346162, + "thread": 14 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 597120, + "thread": 20 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 809775, + "thread": 1 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 896166, + "thread": 19 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1006723, + "thread": 26 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1283277, + "thread": 16 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1420089, + "thread": 18 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1604202, + "thread": 16 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1790817, + "thread": 26 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 1888247, + "thread": 24 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2138576, + "thread": 14 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2294370, + "thread": 27 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2320113, + "thread": 30 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2572554, + "thread": 21 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2776820, + "thread": 3 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 2794504, + "thread": 21 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 3086993, + "thread": 3 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 3199385, + "thread": 18 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 3397369, + "thread": 31 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 3601473, + "thread": 1 + } + }, + { + "amount": "307.968050168", + "slot": { + "period": 3764004, + "thread": 21 + } + }, + { + "amount": "307.968050156", + "slot": { + "period": 3899833, + "thread": 19 + } + } + ], + "AU12n2aRXivnkdZcg8odHqUUjzz9XtfGdABwUBP86LKVD6jC2uWBb": [ + { + "amount": "124.947603145", + "slot": { + "period": 139390, + "thread": 28 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 233241, + "thread": 9 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 476628, + "thread": 16 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 514625, + "thread": 22 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 705279, + "thread": 9 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 965688, + "thread": 28 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1075553, + "thread": 27 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1269870, + "thread": 24 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1343411, + "thread": 11 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1552824, + "thread": 6 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1683577, + "thread": 20 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 1945951, + "thread": 1 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2088406, + "thread": 25 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2168463, + "thread": 28 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2444097, + "thread": 23 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2566711, + "thread": 17 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2658501, + "thread": 9 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 2841250, + "thread": 21 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 3075951, + "thread": 14 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 3220424, + "thread": 4 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 3427430, + "thread": 5 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 3545062, + "thread": 2 + } + }, + { + "amount": "124.947603145", + "slot": { + "period": 3758110, + "thread": 9 + } + }, + { + "amount": "124.947603142", + "slot": { + "period": 3856366, + "thread": 23 + } + } + ], + "AU12n33kGtdDP5Q5v9UAYTEvzD2wcdTxpaiB7aT4bfAeCQVF6rtpm": [ + { + "amount": "324.917564536", + "slot": { + "period": 18731, + "thread": 7 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 183700, + "thread": 10 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 454901, + "thread": 23 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 524188, + "thread": 26 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 685563, + "thread": 29 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 963985, + "thread": 25 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1109039, + "thread": 4 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1228955, + "thread": 18 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1430453, + "thread": 31 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1543768, + "thread": 21 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1679389, + "thread": 2 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 1915756, + "thread": 3 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2028395, + "thread": 26 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2180367, + "thread": 23 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2381889, + "thread": 19 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2514550, + "thread": 28 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2728563, + "thread": 27 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 2865247, + "thread": 5 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 3021549, + "thread": 3 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 3261484, + "thread": 28 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 3352486, + "thread": 31 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 3512276, + "thread": 25 + } + }, + { + "amount": "324.917564536", + "slot": { + "period": 3737989, + "thread": 12 + } + }, + { + "amount": "324.917564529", + "slot": { + "period": 3834348, + "thread": 0 + } + } + ], + "AU12n33ncqEsJiG8dEZD7SbzooY3VCEuLF2fnTjbv6y7LDCrSsqAs": [ + { + "amount": "167.092124846", + "slot": { + "period": 66991, + "thread": 11 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 191100, + "thread": 28 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 393897, + "thread": 13 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 561121, + "thread": 29 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 771715, + "thread": 12 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 870815, + "thread": 22 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1005673, + "thread": 15 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1223416, + "thread": 13 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1437388, + "thread": 9 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1557331, + "thread": 17 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1666869, + "thread": 26 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1896987, + "thread": 10 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 1990794, + "thread": 13 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 2195167, + "thread": 26 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 2355913, + "thread": 8 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 2553717, + "thread": 28 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 2646888, + "thread": 27 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 2799998, + "thread": 1 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 3022361, + "thread": 30 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 3211853, + "thread": 26 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 3292931, + "thread": 4 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 3616837, + "thread": 17 + } + }, + { + "amount": "167.092124846", + "slot": { + "period": 3749048, + "thread": 25 + } + }, + { + "amount": "167.092124838", + "slot": { + "period": 3918625, + "thread": 24 + } + } + ], + "AU12n3nEppNBDj3Ubg7MGWLZ7akcvX2iFBF2sNdtJWDKmj8P5E5jU": [ + { + "amount": "479.353389896", + "slot": { + "period": 81806, + "thread": 24 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 279777, + "thread": 0 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 348971, + "thread": 24 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 592503, + "thread": 23 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 766024, + "thread": 14 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 912113, + "thread": 15 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1129929, + "thread": 1 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1296759, + "thread": 16 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1420802, + "thread": 30 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1645929, + "thread": 19 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1771640, + "thread": 22 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 1828096, + "thread": 18 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2133485, + "thread": 6 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2274383, + "thread": 25 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2330278, + "thread": 28 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2468732, + "thread": 27 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2708748, + "thread": 27 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 2927245, + "thread": 0 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 3010843, + "thread": 31 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 3237236, + "thread": 18 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 3321811, + "thread": 14 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 3566786, + "thread": 19 + } + }, + { + "amount": "479.353389896", + "slot": { + "period": 3768325, + "thread": 8 + } + }, + { + "amount": "479.353389897", + "slot": { + "period": 3938335, + "thread": 4 + } + } + ], + "AU12n4VoGTr5tAhkY8r3UStJNHaf3TpCgr9VrDYmvdcro3qjrh3Jx": [ + { + "amount": "138.208650106", + "slot": { + "period": 103140, + "thread": 24 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 268226, + "thread": 7 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 348371, + "thread": 15 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 573656, + "thread": 5 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 752119, + "thread": 29 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 912553, + "thread": 3 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1077557, + "thread": 0 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1250220, + "thread": 23 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1417144, + "thread": 3 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1568861, + "thread": 20 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1680627, + "thread": 0 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1809477, + "thread": 2 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 1999365, + "thread": 14 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2156883, + "thread": 15 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2411886, + "thread": 21 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2622691, + "thread": 11 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2706821, + "thread": 12 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2909639, + "thread": 14 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 2986921, + "thread": 7 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 3123306, + "thread": 31 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 3439213, + "thread": 10 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 3528292, + "thread": 21 + } + }, + { + "amount": "138.208650106", + "slot": { + "period": 3663068, + "thread": 11 + } + }, + { + "amount": "138.208650095", + "slot": { + "period": 3822802, + "thread": 8 + } + } + ], + "AU12n4YBvCNEnvxwcipXyQgVsaTLoWP6FXCk89hsBC3AZA7qqHpbi": [ + { + "amount": "343.594190404", + "slot": { + "period": 53660, + "thread": 8 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 271516, + "thread": 7 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 427663, + "thread": 0 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 631766, + "thread": 21 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 755486, + "thread": 31 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 963367, + "thread": 25 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1020136, + "thread": 31 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1308961, + "thread": 18 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1378886, + "thread": 13 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1550542, + "thread": 15 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1661587, + "thread": 7 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 1950473, + "thread": 3 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2053429, + "thread": 29 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2145971, + "thread": 6 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2362257, + "thread": 15 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2592664, + "thread": 1 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2711492, + "thread": 22 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 2941902, + "thread": 15 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 3046463, + "thread": 24 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 3191105, + "thread": 10 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 3357768, + "thread": 16 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 3592025, + "thread": 5 + } + }, + { + "amount": "343.594190404", + "slot": { + "period": 3734718, + "thread": 22 + } + }, + { + "amount": "343.594190394", + "slot": { + "period": 3817089, + "thread": 30 + } + } + ], + "AU12n6akzLjbL4VvXYewKQarhP4GTQo7cSx6cNqtiKqy83djUqEQu": [ + { + "amount": "156.780942653", + "slot": { + "period": 90960, + "thread": 10 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 174938, + "thread": 28 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 471382, + "thread": 11 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 517419, + "thread": 8 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 706888, + "thread": 11 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 871584, + "thread": 1 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1062486, + "thread": 23 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1163945, + "thread": 11 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1438292, + "thread": 23 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1624080, + "thread": 12 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1761685, + "thread": 21 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 1902537, + "thread": 25 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2028720, + "thread": 14 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2259342, + "thread": 3 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2331186, + "thread": 25 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2485844, + "thread": 28 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2749542, + "thread": 15 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 2911523, + "thread": 18 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 3016958, + "thread": 7 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 3265730, + "thread": 8 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 3378446, + "thread": 10 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 3479321, + "thread": 18 + } + }, + { + "amount": "156.780942653", + "slot": { + "period": 3743108, + "thread": 9 + } + }, + { + "amount": "156.780942664", + "slot": { + "period": 3869050, + "thread": 31 + } + } + ], + "AU12n6nteUawVPhf13hXaravGzpre8MxyzZ6FP9Qhr1avRApVr1aE": [ + { + "amount": "116.534002155", + "slot": { + "period": 103944, + "thread": 3 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 209833, + "thread": 4 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 324941, + "thread": 30 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 618327, + "thread": 22 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 751598, + "thread": 25 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 925633, + "thread": 22 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1088478, + "thread": 14 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1282223, + "thread": 10 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1336944, + "thread": 4 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1496428, + "thread": 10 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1687908, + "thread": 25 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 1925698, + "thread": 9 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2111527, + "thread": 8 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2289609, + "thread": 10 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2362417, + "thread": 0 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2554030, + "thread": 9 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2770165, + "thread": 11 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2882967, + "thread": 7 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 2990093, + "thread": 7 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 3199360, + "thread": 5 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 3384790, + "thread": 15 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 3460715, + "thread": 19 + } + }, + { + "amount": "116.534002155", + "slot": { + "period": 3712520, + "thread": 6 + } + }, + { + "amount": "116.534002144", + "slot": { + "period": 3906475, + "thread": 5 + } + } + ], + "AU12n6rbRKQzskZMmgjz5s7g5vVmyz5uXLF5yyQd1YKUvqLtKU3R1": [ + { + "amount": "243.257947092", + "slot": { + "period": 127409, + "thread": 6 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 197733, + "thread": 5 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 411218, + "thread": 25 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 570663, + "thread": 2 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 790944, + "thread": 1 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 962821, + "thread": 27 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 984544, + "thread": 21 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 1216259, + "thread": 10 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 1331224, + "thread": 20 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 1523131, + "thread": 5 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 1681927, + "thread": 16 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 1960144, + "thread": 7 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2099411, + "thread": 13 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2157054, + "thread": 18 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2334733, + "thread": 6 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2507945, + "thread": 21 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2738996, + "thread": 27 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2853937, + "thread": 16 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 2960346, + "thread": 17 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 3166903, + "thread": 3 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 3364180, + "thread": 15 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 3451778, + "thread": 30 + } + }, + { + "amount": "243.257947092", + "slot": { + "period": 3711041, + "thread": 19 + } + }, + { + "amount": "243.257947097", + "slot": { + "period": 3897685, + "thread": 3 + } + } + ], + "AU12n7RX3D9PemWxwf1XbkPVzBeBgi9AXtcRGSQSxhNVchN3UNbyE": [ + { + "amount": "557.758152744", + "slot": { + "period": 115799, + "thread": 29 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 185510, + "thread": 8 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 476920, + "thread": 6 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 616523, + "thread": 24 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 779730, + "thread": 8 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 922352, + "thread": 0 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1004887, + "thread": 20 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1311152, + "thread": 25 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1379316, + "thread": 5 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1559326, + "thread": 30 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1787976, + "thread": 18 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 1963354, + "thread": 28 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2044687, + "thread": 4 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2209930, + "thread": 0 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2299521, + "thread": 20 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2515831, + "thread": 8 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2782608, + "thread": 7 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2924551, + "thread": 19 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 2983446, + "thread": 15 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 3212870, + "thread": 25 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 3310775, + "thread": 23 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 3540055, + "thread": 7 + } + }, + { + "amount": "557.758152744", + "slot": { + "period": 3619250, + "thread": 1 + } + }, + { + "amount": "557.758152736", + "slot": { + "period": 3942344, + "thread": 26 + } + } + ], + "AU12n7wLw9MuUhC5JVoqBqyxDwuXY3BDrZ4apk614sMA6Rc23dQFQ": [ + { + "amount": "99.514833305", + "slot": { + "period": 89249, + "thread": 8 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 281821, + "thread": 2 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 409336, + "thread": 0 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 494301, + "thread": 0 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 654548, + "thread": 27 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 957880, + "thread": 28 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1125686, + "thread": 4 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1317227, + "thread": 13 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1336587, + "thread": 17 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1540641, + "thread": 3 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1777581, + "thread": 19 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1833429, + "thread": 2 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 1980602, + "thread": 9 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 2184568, + "thread": 14 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 2307892, + "thread": 29 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 2571729, + "thread": 6 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 2753129, + "thread": 23 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 2828637, + "thread": 16 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 3117518, + "thread": 12 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 3274658, + "thread": 9 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 3412519, + "thread": 22 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 3554970, + "thread": 18 + } + }, + { + "amount": "99.514833305", + "slot": { + "period": 3644332, + "thread": 20 + } + }, + { + "amount": "99.514833304", + "slot": { + "period": 3832881, + "thread": 3 + } + } + ], + "AU12n8QTz66qUNwPWg1qZJrTkV5sZT6X6N4gH33YhYa2XDZwbCcXU": [ + { + "amount": "70.567968332", + "slot": { + "period": 78206, + "thread": 22 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 266179, + "thread": 2 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 426250, + "thread": 4 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 650065, + "thread": 25 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 805958, + "thread": 10 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 933695, + "thread": 21 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1003912, + "thread": 30 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1267274, + "thread": 4 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1365534, + "thread": 6 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1536407, + "thread": 4 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1771322, + "thread": 27 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 1860175, + "thread": 12 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2029155, + "thread": 8 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2214379, + "thread": 1 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2395704, + "thread": 17 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2616463, + "thread": 31 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2685876, + "thread": 17 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 2874946, + "thread": 4 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 3102240, + "thread": 20 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 3282790, + "thread": 1 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 3322274, + "thread": 7 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 3543102, + "thread": 29 + } + }, + { + "amount": "70.567968332", + "slot": { + "period": 3656616, + "thread": 22 + } + }, + { + "amount": "70.567968339", + "slot": { + "period": 3888885, + "thread": 2 + } + } + ], + "AU12n9ERyM3Adz2e4xwf7ouNHHwAuFUSVFxPkGuPNhPCLHTZsuxpe": [ + { + "amount": "212.733035524", + "slot": { + "period": 21341, + "thread": 7 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 271735, + "thread": 15 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 335701, + "thread": 4 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 577232, + "thread": 5 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 801107, + "thread": 6 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 870168, + "thread": 31 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 999038, + "thread": 10 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 1153850, + "thread": 9 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 1416568, + "thread": 19 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 1518469, + "thread": 22 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 1753484, + "thread": 26 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 1902002, + "thread": 13 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2125984, + "thread": 2 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2209705, + "thread": 4 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2386499, + "thread": 7 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2466629, + "thread": 25 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2764114, + "thread": 20 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 2852019, + "thread": 12 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 3088557, + "thread": 19 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 3256817, + "thread": 9 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 3441270, + "thread": 13 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 3489976, + "thread": 29 + } + }, + { + "amount": "212.733035524", + "slot": { + "period": 3625814, + "thread": 23 + } + }, + { + "amount": "212.733035523", + "slot": { + "period": 3928277, + "thread": 23 + } + } + ], + "AU12n9azy7pemLJC8xRtey4QRy1cByUYPpwDsuQ9pjmj5Fpu5ejVK": [ + { + "amount": "229.172541855", + "slot": { + "period": 99081, + "thread": 28 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 169800, + "thread": 28 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 408568, + "thread": 29 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 534432, + "thread": 29 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 756109, + "thread": 21 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 942602, + "thread": 28 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1098000, + "thread": 4 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1153571, + "thread": 8 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1361360, + "thread": 18 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1540611, + "thread": 16 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1655401, + "thread": 19 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 1915639, + "thread": 13 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2016917, + "thread": 21 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2277917, + "thread": 9 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2341538, + "thread": 31 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2478845, + "thread": 4 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2711422, + "thread": 18 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 2886352, + "thread": 30 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 3097515, + "thread": 27 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 3248502, + "thread": 15 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 3319307, + "thread": 21 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 3517965, + "thread": 30 + } + }, + { + "amount": "229.172541855", + "slot": { + "period": 3749932, + "thread": 1 + } + }, + { + "amount": "229.172541850", + "slot": { + "period": 3824639, + "thread": 19 + } + } + ], + "AU12nAYmocNH27wt5uT1yyJAFv1hM2ENhUvJCXw8RRw1YG9m4dpts": [ + { + "amount": "95.916476631", + "slot": { + "period": 98927, + "thread": 7 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 216357, + "thread": 22 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 477572, + "thread": 26 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 594292, + "thread": 13 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 763921, + "thread": 20 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 876351, + "thread": 19 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1094225, + "thread": 8 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1243608, + "thread": 8 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1357250, + "thread": 13 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1480211, + "thread": 29 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1702501, + "thread": 9 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 1939552, + "thread": 22 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2054326, + "thread": 12 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2285443, + "thread": 16 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2362097, + "thread": 9 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2502007, + "thread": 21 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2624751, + "thread": 17 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 2899939, + "thread": 13 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 3015411, + "thread": 25 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 3178902, + "thread": 14 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 3323668, + "thread": 27 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 3468544, + "thread": 27 + } + }, + { + "amount": "95.916476631", + "slot": { + "period": 3632544, + "thread": 9 + } + }, + { + "amount": "95.916476627", + "slot": { + "period": 3947009, + "thread": 16 + } + } + ], + "AU12nBSWHBYyPqezc63zvcK3ZXksJQcUSfem6n6Rj4na9DG6dqnc9": [ + { + "amount": "445.429182231", + "slot": { + "period": 67138, + "thread": 24 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 291354, + "thread": 29 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 475249, + "thread": 28 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 543715, + "thread": 25 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 712161, + "thread": 6 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 874338, + "thread": 16 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1010333, + "thread": 31 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1313327, + "thread": 4 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1327201, + "thread": 18 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1481293, + "thread": 4 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1774955, + "thread": 7 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 1836403, + "thread": 10 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2030139, + "thread": 5 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2175610, + "thread": 15 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2447609, + "thread": 14 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2465873, + "thread": 15 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2737243, + "thread": 6 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2878427, + "thread": 18 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 2956757, + "thread": 18 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 3125541, + "thread": 24 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 3308793, + "thread": 29 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 3549682, + "thread": 6 + } + }, + { + "amount": "445.429182231", + "slot": { + "period": 3773214, + "thread": 10 + } + }, + { + "amount": "445.429182226", + "slot": { + "period": 3875668, + "thread": 27 + } + } + ], + "AU12nBss62v6piU7mpbUHsnkhizEUhBsi7mMTPBZiuQSo1A6bdmQJ": [ + { + "amount": "211.288098329", + "slot": { + "period": 11917, + "thread": 28 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 312645, + "thread": 10 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 411521, + "thread": 13 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 528099, + "thread": 15 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 815437, + "thread": 25 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 922518, + "thread": 10 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1121751, + "thread": 27 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1152664, + "thread": 10 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1464439, + "thread": 20 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1500747, + "thread": 31 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1727113, + "thread": 30 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 1958892, + "thread": 6 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2087864, + "thread": 31 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2151769, + "thread": 10 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2421273, + "thread": 16 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2602203, + "thread": 21 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2748374, + "thread": 24 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 2908317, + "thread": 18 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 3120136, + "thread": 28 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 3232954, + "thread": 11 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 3354266, + "thread": 24 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 3566758, + "thread": 12 + } + }, + { + "amount": "211.288098329", + "slot": { + "period": 3704067, + "thread": 9 + } + }, + { + "amount": "211.288098332", + "slot": { + "period": 3849713, + "thread": 23 + } + } + ], + "AU12nDUSU1LvyEaBEbV7QhoKuY3X6kBgB4nURB5SrrrFzkTs6uJdx": [ + { + "amount": "391.094134856", + "slot": { + "period": 121533, + "thread": 2 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 192828, + "thread": 10 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 344149, + "thread": 23 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 638687, + "thread": 26 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 747550, + "thread": 27 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 849952, + "thread": 14 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1060300, + "thread": 5 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1293212, + "thread": 25 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1394775, + "thread": 23 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1543324, + "thread": 0 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1700842, + "thread": 17 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 1934189, + "thread": 2 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2114578, + "thread": 8 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2244400, + "thread": 14 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2416972, + "thread": 4 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2563477, + "thread": 3 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2749807, + "thread": 31 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2856542, + "thread": 11 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 2992890, + "thread": 25 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 3131767, + "thread": 28 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 3419898, + "thread": 26 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 3520870, + "thread": 29 + } + }, + { + "amount": "391.094134856", + "slot": { + "period": 3753066, + "thread": 27 + } + }, + { + "amount": "391.094134849", + "slot": { + "period": 3842687, + "thread": 28 + } + } + ], + "AU12nE8Eyp9b4PQndiqbNsm7Yp5rxotMotTBPXcR6Mb5hjv3buGh7": [ + { + "amount": "138.024051668", + "slot": { + "period": 27252, + "thread": 16 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 198211, + "thread": 5 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 423221, + "thread": 4 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 638378, + "thread": 26 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 763218, + "thread": 9 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 968199, + "thread": 17 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1078879, + "thread": 28 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1246315, + "thread": 31 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1328070, + "thread": 20 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1573563, + "thread": 19 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1791516, + "thread": 21 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 1961897, + "thread": 7 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2139504, + "thread": 30 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2232551, + "thread": 30 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2435606, + "thread": 0 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2622170, + "thread": 29 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2731594, + "thread": 1 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2938842, + "thread": 25 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 2982472, + "thread": 21 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 3141294, + "thread": 19 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 3369480, + "thread": 1 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 3470435, + "thread": 7 + } + }, + { + "amount": "138.024051668", + "slot": { + "period": 3647241, + "thread": 16 + } + }, + { + "amount": "138.024051669", + "slot": { + "period": 3825817, + "thread": 12 + } + } + ], + "AU12nEsqQsEUHf9SJ5PgQmmu5e2N33MtCvaydE4MZWSMmWAbwsXYs": [ + { + "amount": "217.630435950", + "slot": { + "period": 166045, + "thread": 26 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 209176, + "thread": 15 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 403056, + "thread": 12 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 611471, + "thread": 7 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 805650, + "thread": 10 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 973423, + "thread": 20 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1038767, + "thread": 15 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1252782, + "thread": 3 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1337363, + "thread": 27 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1493634, + "thread": 29 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1674602, + "thread": 27 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 1954278, + "thread": 14 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2104301, + "thread": 14 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2254189, + "thread": 7 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2382154, + "thread": 9 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2614902, + "thread": 31 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2649833, + "thread": 8 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 2835866, + "thread": 8 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 3085263, + "thread": 21 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 3210212, + "thread": 10 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 3359275, + "thread": 0 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 3475130, + "thread": 18 + } + }, + { + "amount": "217.630435950", + "slot": { + "period": 3690125, + "thread": 27 + } + }, + { + "amount": "217.630435960", + "slot": { + "period": 3861069, + "thread": 9 + } + } + ], + "AU12nFMoGgrR1awqfDzfsxq57kSZMHnUDkEydVCyr9nKZEVaS2KHB": [ + { + "amount": "534.543900817", + "slot": { + "period": 122893, + "thread": 30 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 322031, + "thread": 29 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 484640, + "thread": 11 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 526382, + "thread": 1 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 797458, + "thread": 7 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 897501, + "thread": 9 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1119030, + "thread": 7 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1219903, + "thread": 17 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1381135, + "thread": 28 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1551067, + "thread": 17 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1728361, + "thread": 31 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 1927448, + "thread": 25 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2131567, + "thread": 24 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2158454, + "thread": 24 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2307296, + "thread": 16 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2558055, + "thread": 25 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2719166, + "thread": 21 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 2815550, + "thread": 4 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 3010459, + "thread": 29 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 3138160, + "thread": 4 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 3425138, + "thread": 9 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 3534148, + "thread": 22 + } + }, + { + "amount": "534.543900817", + "slot": { + "period": 3623357, + "thread": 7 + } + }, + { + "amount": "534.543900816", + "slot": { + "period": 3919707, + "thread": 7 + } + } + ], + "AU12nFihpoS7CzjqxZTc7AqPPVyJfEHL21pqxhdt6y8SvsU791TMM": [ + { + "amount": "311.417805328", + "slot": { + "period": 60021, + "thread": 23 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 291267, + "thread": 19 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 489773, + "thread": 19 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 604658, + "thread": 14 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 774801, + "thread": 18 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 839451, + "thread": 0 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1136807, + "thread": 15 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1195239, + "thread": 26 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1401254, + "thread": 4 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1536129, + "thread": 2 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1786300, + "thread": 8 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 1825226, + "thread": 6 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2128428, + "thread": 28 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2229858, + "thread": 0 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2371596, + "thread": 26 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2586124, + "thread": 13 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2731147, + "thread": 4 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2943961, + "thread": 22 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 2990516, + "thread": 6 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 3244410, + "thread": 18 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 3289885, + "thread": 20 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 3551127, + "thread": 19 + } + }, + { + "amount": "311.417805328", + "slot": { + "period": 3753719, + "thread": 21 + } + }, + { + "amount": "311.417805327", + "slot": { + "period": 3861408, + "thread": 13 + } + } + ], + "AU12nGhKm5G5gCYaouHQno2YwT1rTezJsk5JQJtrr1VYFneWAYZqK": [ + { + "amount": "206.820219462", + "slot": { + "period": 82944, + "thread": 14 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 278363, + "thread": 31 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 471875, + "thread": 12 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 598488, + "thread": 9 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 654290, + "thread": 20 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 907768, + "thread": 22 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1146310, + "thread": 0 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1191541, + "thread": 9 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1474167, + "thread": 0 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1580055, + "thread": 21 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1764499, + "thread": 15 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 1813120, + "thread": 29 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2132976, + "thread": 17 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2199300, + "thread": 16 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2460618, + "thread": 16 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2561820, + "thread": 25 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2753823, + "thread": 24 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2877037, + "thread": 12 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 2971218, + "thread": 16 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 3140484, + "thread": 26 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 3430015, + "thread": 5 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 3457347, + "thread": 27 + } + }, + { + "amount": "206.820219462", + "slot": { + "period": 3678783, + "thread": 12 + } + }, + { + "amount": "206.820219459", + "slot": { + "period": 3855175, + "thread": 19 + } + } + ], + "AU12nGr7fYzFyzv2MdSmCgf6qR82H7njrAGy8C1nkaWYYKDyqvqKa": [ + { + "amount": "88.464920816", + "slot": { + "period": 159713, + "thread": 2 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 227830, + "thread": 19 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 391710, + "thread": 17 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 617637, + "thread": 25 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 698030, + "thread": 20 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 876931, + "thread": 6 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1146949, + "thread": 1 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1315565, + "thread": 27 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1451063, + "thread": 6 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1557982, + "thread": 29 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1730106, + "thread": 17 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 1974518, + "thread": 4 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2096078, + "thread": 25 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2226355, + "thread": 25 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2416122, + "thread": 3 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2619475, + "thread": 16 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2734561, + "thread": 23 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 2825931, + "thread": 10 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 3079397, + "thread": 1 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 3211487, + "thread": 28 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 3337075, + "thread": 4 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 3517638, + "thread": 12 + } + }, + { + "amount": "88.464920816", + "slot": { + "period": 3751733, + "thread": 3 + } + }, + { + "amount": "88.464920826", + "slot": { + "period": 3885568, + "thread": 19 + } + } + ], + "AU12nH86m6X6JRT6FP9wosKFQntvpMZp7e4tmjUtN2R7WaJXdMmTh": [ + { + "amount": "136.196808234", + "slot": { + "period": 52029, + "thread": 24 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 278848, + "thread": 18 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 462308, + "thread": 6 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 649179, + "thread": 26 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 688193, + "thread": 7 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 842473, + "thread": 0 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1026480, + "thread": 9 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1222757, + "thread": 23 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1467129, + "thread": 10 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1496953, + "thread": 23 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1686618, + "thread": 17 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 1930721, + "thread": 11 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2056343, + "thread": 24 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2180831, + "thread": 24 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2392388, + "thread": 24 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2537958, + "thread": 9 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2738437, + "thread": 22 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 2933475, + "thread": 27 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 3042134, + "thread": 22 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 3274129, + "thread": 27 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 3302167, + "thread": 6 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 3592662, + "thread": 21 + } + }, + { + "amount": "136.196808234", + "slot": { + "period": 3736356, + "thread": 10 + } + }, + { + "amount": "136.196808245", + "slot": { + "period": 3912747, + "thread": 24 + } + } + ], + "AU12nJSqpoGKMyZx9hwqFCLD1PQfrDTY65EJSvnCxtnsFhvPhxG6c": [ + { + "amount": "221.828937946", + "slot": { + "period": 12568, + "thread": 15 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 226610, + "thread": 8 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 387879, + "thread": 11 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 605362, + "thread": 30 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 780830, + "thread": 27 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 892931, + "thread": 24 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1067160, + "thread": 7 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1156927, + "thread": 19 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1322668, + "thread": 20 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1485623, + "thread": 6 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1698315, + "thread": 10 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 1925354, + "thread": 3 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2076034, + "thread": 21 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2190615, + "thread": 27 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2403036, + "thread": 6 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2572325, + "thread": 20 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2663805, + "thread": 10 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 2899046, + "thread": 4 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 3078491, + "thread": 21 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 3243126, + "thread": 12 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 3389167, + "thread": 7 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 3510798, + "thread": 11 + } + }, + { + "amount": "221.828937946", + "slot": { + "period": 3757453, + "thread": 9 + } + }, + { + "amount": "221.828937952", + "slot": { + "period": 3840945, + "thread": 17 + } + } + ], + "AU12nJyf4rhj4YBA2WTMVL417HKJEUr6bWG3Gtckh2nYnJ1GGs7uq": [ + { + "amount": "80.685935329", + "slot": { + "period": 41436, + "thread": 0 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 224312, + "thread": 11 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 457319, + "thread": 2 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 584776, + "thread": 8 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 785553, + "thread": 15 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 931040, + "thread": 16 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1112622, + "thread": 14 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1150509, + "thread": 5 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1427416, + "thread": 14 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1618622, + "thread": 15 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1709930, + "thread": 4 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 1919506, + "thread": 23 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2123088, + "thread": 8 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2230701, + "thread": 19 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2331057, + "thread": 8 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2516699, + "thread": 7 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2715624, + "thread": 7 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 2919942, + "thread": 7 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 3105148, + "thread": 24 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 3178837, + "thread": 1 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 3318399, + "thread": 8 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 3504593, + "thread": 11 + } + }, + { + "amount": "80.685935329", + "slot": { + "period": 3639549, + "thread": 26 + } + }, + { + "amount": "80.685935333", + "slot": { + "period": 3798781, + "thread": 19 + } + } + ], + "AU12nKjMHJAyr9hXqvnYUAzyCmENWB78FKV5kkRyuzRFvHXbjgcKS": [ + { + "amount": "563.884822358", + "slot": { + "period": 50191, + "thread": 24 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 237706, + "thread": 1 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 438351, + "thread": 21 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 563910, + "thread": 3 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 807611, + "thread": 31 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 849036, + "thread": 26 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1018433, + "thread": 23 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1174849, + "thread": 12 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1393773, + "thread": 2 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1640129, + "thread": 30 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1782954, + "thread": 27 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 1882878, + "thread": 15 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2081969, + "thread": 22 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2217586, + "thread": 0 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2392282, + "thread": 19 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2539747, + "thread": 29 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2688746, + "thread": 31 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 2924566, + "thread": 26 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 3074791, + "thread": 22 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 3226661, + "thread": 28 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 3351053, + "thread": 9 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 3514331, + "thread": 6 + } + }, + { + "amount": "563.884822358", + "slot": { + "period": 3629530, + "thread": 30 + } + }, + { + "amount": "563.884822362", + "slot": { + "period": 3819192, + "thread": 17 + } + } + ], + "AU12nKwiYPffYacd7EXWk55WA9FbVzyGEHJREZn84MkvB9nZ2rk1G": [ + { + "amount": "212.752005600", + "slot": { + "period": 56701, + "thread": 23 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 195687, + "thread": 12 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 330500, + "thread": 25 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 629730, + "thread": 2 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 756932, + "thread": 18 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 910354, + "thread": 1 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1044241, + "thread": 14 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1199847, + "thread": 26 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1431885, + "thread": 17 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1502305, + "thread": 22 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1751471, + "thread": 25 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 1837423, + "thread": 11 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2039245, + "thread": 13 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2285662, + "thread": 13 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2352733, + "thread": 4 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2490969, + "thread": 18 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2627121, + "thread": 9 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 2891622, + "thread": 15 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 3035282, + "thread": 21 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 3163202, + "thread": 10 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 3402567, + "thread": 14 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 3613680, + "thread": 18 + } + }, + { + "amount": "212.752005600", + "slot": { + "period": 3771218, + "thread": 2 + } + }, + { + "amount": "212.752005596", + "slot": { + "period": 3829008, + "thread": 9 + } + } + ], + "AU12nLUztvZh5ju95RvoU69M6WYQ1N5hkygdGAoW8C3RSbhan7bwm": [ + { + "amount": "122.130141147", + "slot": { + "period": 102744, + "thread": 28 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 182814, + "thread": 0 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 352139, + "thread": 30 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 618847, + "thread": 21 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 670495, + "thread": 24 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 870816, + "thread": 8 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1029457, + "thread": 24 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1185699, + "thread": 22 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1455331, + "thread": 11 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1554862, + "thread": 6 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1714046, + "thread": 22 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 1957747, + "thread": 19 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2000053, + "thread": 17 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2260267, + "thread": 27 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2327624, + "thread": 31 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2589077, + "thread": 21 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2770030, + "thread": 24 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 2928431, + "thread": 16 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 3064952, + "thread": 4 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 3227015, + "thread": 25 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 3344909, + "thread": 1 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 3610579, + "thread": 3 + } + }, + { + "amount": "122.130141147", + "slot": { + "period": 3676195, + "thread": 20 + } + }, + { + "amount": "122.130141155", + "slot": { + "period": 3897849, + "thread": 22 + } + } + ], + "AU12nMHA2KnKNs27X8AuCg4356n5BxsMHAY23y7UXDHKL3Yqidbt1": [ + { + "amount": "293.637015530", + "slot": { + "period": 106649, + "thread": 6 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 212316, + "thread": 11 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 334497, + "thread": 15 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 642145, + "thread": 10 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 820614, + "thread": 2 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 886942, + "thread": 3 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1131073, + "thread": 21 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1162511, + "thread": 26 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1389145, + "thread": 21 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1621325, + "thread": 5 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1662349, + "thread": 12 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 1877987, + "thread": 10 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2003857, + "thread": 24 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2236448, + "thread": 1 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2410581, + "thread": 16 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2577984, + "thread": 22 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2670210, + "thread": 25 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2797073, + "thread": 9 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 2959527, + "thread": 22 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 3171487, + "thread": 14 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 3326201, + "thread": 23 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 3578595, + "thread": 4 + } + }, + { + "amount": "293.637015530", + "slot": { + "period": 3770453, + "thread": 28 + } + }, + { + "amount": "293.637015528", + "slot": { + "period": 3930595, + "thread": 29 + } + } + ], + "AU12nN1Uft6krQkVgCeBYdKcMUgCtT8hJSY14DsgFX1RzDrqzNR2G": [ + { + "amount": "169.718066855", + "slot": { + "period": 53392, + "thread": 30 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 306375, + "thread": 28 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 407258, + "thread": 30 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 600942, + "thread": 14 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 788779, + "thread": 26 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 940015, + "thread": 4 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1057506, + "thread": 23 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1242343, + "thread": 26 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1462768, + "thread": 15 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1637323, + "thread": 4 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1703630, + "thread": 18 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 1817313, + "thread": 30 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2108886, + "thread": 3 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2171140, + "thread": 19 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2379725, + "thread": 31 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2555956, + "thread": 16 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2745488, + "thread": 29 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 2925104, + "thread": 15 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 3019352, + "thread": 9 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 3195892, + "thread": 8 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 3407677, + "thread": 0 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 3596972, + "thread": 24 + } + }, + { + "amount": "169.718066855", + "slot": { + "period": 3626764, + "thread": 11 + } + }, + { + "amount": "169.718066860", + "slot": { + "period": 3811219, + "thread": 1 + } + } + ], + "AU12nN2qLHmqbdRuD2BHJuktPRHX1pUEcvsNHnML4eF5Hz8K5p2e3": [ + { + "amount": "128.098825138", + "slot": { + "period": 146135, + "thread": 12 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 231100, + "thread": 20 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 433083, + "thread": 29 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 496619, + "thread": 11 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 795829, + "thread": 0 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 897081, + "thread": 25 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1020941, + "thread": 31 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1163274, + "thread": 14 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1381705, + "thread": 25 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1531585, + "thread": 2 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1666963, + "thread": 16 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 1865339, + "thread": 24 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2105140, + "thread": 21 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2257405, + "thread": 8 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2415496, + "thread": 17 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2500703, + "thread": 1 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2755709, + "thread": 20 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 2829754, + "thread": 12 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 3037815, + "thread": 2 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 3253869, + "thread": 15 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 3356946, + "thread": 4 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 3542929, + "thread": 8 + } + }, + { + "amount": "128.098825138", + "slot": { + "period": 3761611, + "thread": 17 + } + }, + { + "amount": "128.098825130", + "slot": { + "period": 3876853, + "thread": 17 + } + } + ], + "AU12nNEaL6u8GNkfst5oXxDmuocG3xk7uyPqLqxPqPzDCnFbn7r15": [ + { + "amount": "515.474751809", + "slot": { + "period": 154117, + "thread": 24 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 258419, + "thread": 2 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 462943, + "thread": 3 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 573702, + "thread": 28 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 774952, + "thread": 11 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 923832, + "thread": 12 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1078046, + "thread": 12 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1215344, + "thread": 18 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1438731, + "thread": 10 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1639528, + "thread": 9 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1661694, + "thread": 31 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 1926220, + "thread": 24 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2044473, + "thread": 11 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2284683, + "thread": 3 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2311797, + "thread": 8 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2588372, + "thread": 14 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2664066, + "thread": 1 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 2941935, + "thread": 23 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 3028301, + "thread": 16 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 3145931, + "thread": 16 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 3427996, + "thread": 15 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 3543667, + "thread": 1 + } + }, + { + "amount": "515.474751809", + "slot": { + "period": 3675164, + "thread": 16 + } + }, + { + "amount": "515.474751820", + "slot": { + "period": 3931825, + "thread": 12 + } + } + ], + "AU12nNPK4FSz912F9BsyJtyzw9cyHGgycVHHEj7P7BeaCt14hSSKy": [ + { + "amount": "155.688862876", + "slot": { + "period": 144411, + "thread": 8 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 296275, + "thread": 8 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 479265, + "thread": 15 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 578366, + "thread": 10 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 732501, + "thread": 14 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 841518, + "thread": 1 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1081346, + "thread": 8 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1261637, + "thread": 0 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1441944, + "thread": 27 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1619811, + "thread": 1 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1651671, + "thread": 22 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 1881363, + "thread": 6 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2071148, + "thread": 26 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2213823, + "thread": 16 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2351458, + "thread": 20 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2476859, + "thread": 22 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2649794, + "thread": 10 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 2799551, + "thread": 9 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 3004254, + "thread": 11 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 3259957, + "thread": 24 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 3360242, + "thread": 4 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 3479910, + "thread": 17 + } + }, + { + "amount": "155.688862876", + "slot": { + "period": 3730050, + "thread": 4 + } + }, + { + "amount": "155.688862872", + "slot": { + "period": 3818707, + "thread": 28 + } + } + ], + "AU12nPSxjVq1EYgo2EJWRpmvcfRq9p43eQX7j6Pe1PeZfTi9QoAfG": [ + { + "amount": "123.682766716", + "slot": { + "period": 32478, + "thread": 26 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 282495, + "thread": 14 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 411229, + "thread": 26 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 542968, + "thread": 3 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 726233, + "thread": 9 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 900889, + "thread": 19 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1125329, + "thread": 10 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1167722, + "thread": 15 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1406222, + "thread": 25 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1560738, + "thread": 11 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1747488, + "thread": 1 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 1823761, + "thread": 3 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2017617, + "thread": 0 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2198781, + "thread": 17 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2318931, + "thread": 12 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2500640, + "thread": 23 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2665677, + "thread": 9 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 2912711, + "thread": 26 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 3062877, + "thread": 27 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 3216713, + "thread": 14 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 3449698, + "thread": 11 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 3507465, + "thread": 25 + } + }, + { + "amount": "123.682766716", + "slot": { + "period": 3719106, + "thread": 6 + } + }, + { + "amount": "123.682766704", + "slot": { + "period": 3925807, + "thread": 1 + } + } + ], + "AU12nRHPFxLkiwL2GGU9BdtiuCjhZH7DtTLwuDLeLerrLiirPQWw6": [ + { + "amount": "165.780465333", + "slot": { + "period": 122405, + "thread": 25 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 222932, + "thread": 20 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 357061, + "thread": 16 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 495920, + "thread": 12 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 765930, + "thread": 14 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 883259, + "thread": 15 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1120996, + "thread": 29 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1219890, + "thread": 9 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1471051, + "thread": 12 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1555770, + "thread": 4 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1774688, + "thread": 28 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 1931951, + "thread": 19 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2040707, + "thread": 16 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2239464, + "thread": 26 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2349421, + "thread": 12 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2566068, + "thread": 13 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2663495, + "thread": 22 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 2938969, + "thread": 24 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 3009918, + "thread": 26 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 3208241, + "thread": 26 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 3441621, + "thread": 3 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 3595537, + "thread": 26 + } + }, + { + "amount": "165.780465333", + "slot": { + "period": 3644002, + "thread": 7 + } + }, + { + "amount": "165.780465341", + "slot": { + "period": 3930934, + "thread": 0 + } + } + ], + "AU12nRsGuxFPqBTE9kjGJRQEp7fGzpCyemqh4NvathKHtDPTDjLFV": [ + { + "amount": "398.020814983", + "slot": { + "period": 138599, + "thread": 14 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 169136, + "thread": 31 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 341261, + "thread": 14 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 590995, + "thread": 19 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 727201, + "thread": 4 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 822567, + "thread": 30 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1049259, + "thread": 1 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1255247, + "thread": 20 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1329933, + "thread": 11 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1628613, + "thread": 18 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1749665, + "thread": 4 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 1956687, + "thread": 2 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2044265, + "thread": 28 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2186005, + "thread": 21 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2406468, + "thread": 28 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2560851, + "thread": 1 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2692115, + "thread": 30 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 2952507, + "thread": 4 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 3067396, + "thread": 29 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 3180848, + "thread": 1 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 3439658, + "thread": 22 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 3555962, + "thread": 26 + } + }, + { + "amount": "398.020814983", + "slot": { + "period": 3710299, + "thread": 8 + } + }, + { + "amount": "398.020814981", + "slot": { + "period": 3931909, + "thread": 1 + } + } + ], + "AU12nSYUpKN7wotA6T84M9KZtu9o8yYhUH9LnuGk3wTjYm5PgxEQD": [ + { + "amount": "142.418977820", + "slot": { + "period": 111252, + "thread": 18 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 186973, + "thread": 5 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 439711, + "thread": 29 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 647191, + "thread": 30 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 781817, + "thread": 15 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 967493, + "thread": 23 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1130444, + "thread": 28 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1219389, + "thread": 13 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1470394, + "thread": 6 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1590957, + "thread": 12 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1740087, + "thread": 28 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1889137, + "thread": 7 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 1982433, + "thread": 25 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 2274749, + "thread": 21 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 2348150, + "thread": 11 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 2612633, + "thread": 11 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 2730999, + "thread": 29 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 2911905, + "thread": 7 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 3114526, + "thread": 28 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 3177558, + "thread": 29 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 3435771, + "thread": 27 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 3548643, + "thread": 12 + } + }, + { + "amount": "142.418977820", + "slot": { + "period": 3696884, + "thread": 15 + } + }, + { + "amount": "142.418977831", + "slot": { + "period": 3788728, + "thread": 10 + } + } + ], + "AU12nSodXbZrzsZGDnQWG45LhfqwZu1T4utD5gEfZe8YSqEXT87Qj": [ + { + "amount": "297.524738129", + "slot": { + "period": 142898, + "thread": 0 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 310155, + "thread": 28 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 477346, + "thread": 14 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 621010, + "thread": 3 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 765290, + "thread": 22 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 829869, + "thread": 6 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1085064, + "thread": 29 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1304099, + "thread": 17 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1349337, + "thread": 0 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1621623, + "thread": 5 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1686466, + "thread": 10 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 1954300, + "thread": 31 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2065814, + "thread": 7 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2268902, + "thread": 0 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2371935, + "thread": 30 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2622338, + "thread": 17 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2785792, + "thread": 30 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2912367, + "thread": 28 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 2966104, + "thread": 23 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 3161345, + "thread": 4 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 3448174, + "thread": 24 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 3617476, + "thread": 8 + } + }, + { + "amount": "297.524738129", + "slot": { + "period": 3687302, + "thread": 29 + } + }, + { + "amount": "297.524738138", + "slot": { + "period": 3891062, + "thread": 26 + } + } + ], + "AU12nUM3eSGSjiVW3bMRg7DEDQ6k6JRc88JVkFzymtZRbzKXkjgSZ": [ + { + "amount": "263.764931300", + "slot": { + "period": 73427, + "thread": 15 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 244252, + "thread": 29 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 443707, + "thread": 15 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 573927, + "thread": 11 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 787069, + "thread": 11 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 901992, + "thread": 25 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1136598, + "thread": 15 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1263917, + "thread": 0 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1399487, + "thread": 26 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1584987, + "thread": 4 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1707257, + "thread": 8 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 1896435, + "thread": 23 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2029505, + "thread": 4 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2208381, + "thread": 9 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2411740, + "thread": 14 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2555294, + "thread": 30 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2791435, + "thread": 15 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 2792508, + "thread": 26 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 3089447, + "thread": 17 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 3260565, + "thread": 12 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 3352746, + "thread": 8 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 3452122, + "thread": 24 + } + }, + { + "amount": "263.764931300", + "slot": { + "period": 3676799, + "thread": 20 + } + }, + { + "amount": "263.764931308", + "slot": { + "period": 3816137, + "thread": 11 + } + } + ], + "AU12nUbDuDsVmSygQwMVCXucsTEaEPY2wbg44p5JHVtbwJZsyifqw": [ + { + "amount": "164.577733529", + "slot": { + "period": 53732, + "thread": 23 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 181591, + "thread": 12 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 464269, + "thread": 0 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 557000, + "thread": 13 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 656180, + "thread": 15 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 846824, + "thread": 8 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1035419, + "thread": 16 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1237948, + "thread": 11 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1341757, + "thread": 29 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1499996, + "thread": 1 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1658796, + "thread": 17 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 1871090, + "thread": 8 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2017419, + "thread": 7 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2220517, + "thread": 25 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2393884, + "thread": 18 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2479311, + "thread": 26 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2750524, + "thread": 9 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 2816136, + "thread": 29 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 3045415, + "thread": 5 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 3265411, + "thread": 28 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 3376545, + "thread": 11 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 3475765, + "thread": 29 + } + }, + { + "amount": "164.577733529", + "slot": { + "period": 3635572, + "thread": 15 + } + }, + { + "amount": "164.577733528", + "slot": { + "period": 3848053, + "thread": 24 + } + } + ], + "AU12nUfN3EiD51DUxSp7Ue8zaHM3HWxhf7RpLssjPmpka9rAwMRan": [ + { + "amount": "267.024665248", + "slot": { + "period": 140867, + "thread": 22 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 240368, + "thread": 26 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 453012, + "thread": 16 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 551688, + "thread": 4 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 758138, + "thread": 24 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 889435, + "thread": 16 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1075617, + "thread": 30 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1226012, + "thread": 2 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1384936, + "thread": 29 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1498784, + "thread": 7 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1764341, + "thread": 25 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 1868229, + "thread": 0 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2068186, + "thread": 6 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2211675, + "thread": 2 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2357598, + "thread": 11 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2615040, + "thread": 19 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2668584, + "thread": 4 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2852815, + "thread": 8 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 2975559, + "thread": 13 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 3244384, + "thread": 2 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 3392856, + "thread": 8 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 3614693, + "thread": 17 + } + }, + { + "amount": "267.024665248", + "slot": { + "period": 3684622, + "thread": 16 + } + }, + { + "amount": "267.024665246", + "slot": { + "period": 3913379, + "thread": 17 + } + } + ], + "AU12nV7A3pn9LXkRQTcC6J24wtsYUUdwBbhGAjjvKMFLmW7Uee1qF": [ + { + "amount": "277.340445365", + "slot": { + "period": 108643, + "thread": 23 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 262740, + "thread": 7 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 327917, + "thread": 23 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 650078, + "thread": 7 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 755390, + "thread": 5 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 833239, + "thread": 24 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 990184, + "thread": 26 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 1299366, + "thread": 21 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 1337919, + "thread": 14 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 1571148, + "thread": 12 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 1728452, + "thread": 27 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 1816845, + "thread": 28 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2130861, + "thread": 3 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2231615, + "thread": 26 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2368777, + "thread": 13 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2509916, + "thread": 1 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2786371, + "thread": 22 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2813135, + "thread": 23 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 2978975, + "thread": 18 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 3149988, + "thread": 5 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 3341859, + "thread": 31 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 3481965, + "thread": 8 + } + }, + { + "amount": "277.340445365", + "slot": { + "period": 3629199, + "thread": 2 + } + }, + { + "amount": "277.340445364", + "slot": { + "period": 3859877, + "thread": 6 + } + } + ], + "AU12nWMrJjoKQyo6Enuh6FgNK6LBvnUjmj2A1fNKr5K61y6s8Ya7s": [ + { + "amount": "270.850394761", + "slot": { + "period": 135516, + "thread": 5 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 237958, + "thread": 23 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 413683, + "thread": 15 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 555045, + "thread": 5 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 669871, + "thread": 30 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 840449, + "thread": 31 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1032500, + "thread": 10 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1219250, + "thread": 22 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1392373, + "thread": 5 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1489705, + "thread": 31 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1678038, + "thread": 2 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1967202, + "thread": 7 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 1999349, + "thread": 31 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2246657, + "thread": 16 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2370554, + "thread": 20 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2571743, + "thread": 24 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2630267, + "thread": 23 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2939865, + "thread": 18 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 2963616, + "thread": 30 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 3241597, + "thread": 14 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 3385213, + "thread": 28 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 3517610, + "thread": 8 + } + }, + { + "amount": "270.850394761", + "slot": { + "period": 3722497, + "thread": 11 + } + }, + { + "amount": "270.850394758", + "slot": { + "period": 3841702, + "thread": 16 + } + } + ], + "AU12nWTDVRfTTwzdpkZnfUtDceF1Xv8nUNTbKHsUQD15jswev9X3e": [ + { + "amount": "223.039935728", + "slot": { + "period": 96404, + "thread": 10 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 250020, + "thread": 15 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 363504, + "thread": 31 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 530183, + "thread": 25 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 806311, + "thread": 16 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 930694, + "thread": 15 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1104942, + "thread": 5 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1156385, + "thread": 9 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1387738, + "thread": 28 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1625960, + "thread": 20 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1692892, + "thread": 16 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 1939282, + "thread": 1 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2108497, + "thread": 9 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2202752, + "thread": 31 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2363827, + "thread": 9 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2508867, + "thread": 7 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2644287, + "thread": 28 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 2887780, + "thread": 30 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 3066026, + "thread": 29 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 3271084, + "thread": 15 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 3418529, + "thread": 7 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 3570186, + "thread": 31 + } + }, + { + "amount": "223.039935728", + "slot": { + "period": 3638556, + "thread": 10 + } + }, + { + "amount": "223.039935731", + "slot": { + "period": 3866037, + "thread": 5 + } + } + ], + "AU12nXFRFpk7vQvNk7uwxEFvJJk5Mu38XuxCEQhNoRAyMHiz2EGbJ": [ + { + "amount": "286.622162605", + "slot": { + "period": 23568, + "thread": 18 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 322322, + "thread": 13 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 391880, + "thread": 22 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 497696, + "thread": 12 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 656678, + "thread": 18 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 976401, + "thread": 28 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1041948, + "thread": 7 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1174236, + "thread": 16 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1353368, + "thread": 23 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1623223, + "thread": 29 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1682638, + "thread": 19 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 1972957, + "thread": 23 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2043048, + "thread": 29 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2168382, + "thread": 15 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2347292, + "thread": 18 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2485078, + "thread": 10 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2653058, + "thread": 6 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2836363, + "thread": 11 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 2997115, + "thread": 21 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 3201547, + "thread": 11 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 3413508, + "thread": 3 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 3466182, + "thread": 7 + } + }, + { + "amount": "286.622162605", + "slot": { + "period": 3717059, + "thread": 19 + } + }, + { + "amount": "286.622162612", + "slot": { + "period": 3799360, + "thread": 15 + } + } + ], + "AU12nXnQ3uHBKTy7hdgGbjF5AsEVQUtz2cvXPm2XY9noynaCXa9jp": [ + { + "amount": "566.998455722", + "slot": { + "period": 115022, + "thread": 19 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 220251, + "thread": 19 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 411449, + "thread": 7 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 539880, + "thread": 5 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 656570, + "thread": 15 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 975585, + "thread": 5 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1138215, + "thread": 23 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1248163, + "thread": 25 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1464667, + "thread": 15 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1600620, + "thread": 29 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1775633, + "thread": 20 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 1813875, + "thread": 23 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2112193, + "thread": 22 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2237912, + "thread": 17 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2338229, + "thread": 9 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2567725, + "thread": 14 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2742858, + "thread": 28 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 2911593, + "thread": 17 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 3073586, + "thread": 29 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 3277822, + "thread": 11 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 3407527, + "thread": 23 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 3517651, + "thread": 27 + } + }, + { + "amount": "566.998455722", + "slot": { + "period": 3651856, + "thread": 22 + } + }, + { + "amount": "566.998455711", + "slot": { + "period": 3807238, + "thread": 27 + } + } + ], + "AU12nY671o2L8xdgYXggbWYi3C7rpRtHhHDL8tcvEzSkdZnWGw9eH": [ + { + "amount": "142.389216584", + "slot": { + "period": 23674, + "thread": 16 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 183195, + "thread": 9 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 477292, + "thread": 24 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 607233, + "thread": 17 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 756147, + "thread": 16 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 861572, + "thread": 22 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1028948, + "thread": 21 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1189287, + "thread": 29 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1379162, + "thread": 23 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1614058, + "thread": 12 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1720313, + "thread": 20 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 1929207, + "thread": 7 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2111977, + "thread": 22 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2174707, + "thread": 15 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2460929, + "thread": 12 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2497274, + "thread": 0 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2715374, + "thread": 24 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 2907798, + "thread": 12 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 3045852, + "thread": 30 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 3197584, + "thread": 2 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 3413782, + "thread": 25 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 3501318, + "thread": 16 + } + }, + { + "amount": "142.389216584", + "slot": { + "period": 3694448, + "thread": 4 + } + }, + { + "amount": "142.389216581", + "slot": { + "period": 3853571, + "thread": 27 + } + } + ], + "AU12nYsbGZ9DPtkSSWzcGYSz5UdoKjasF9AJ31hp3mMj35TCV9BhP": [ + { + "amount": "376.086681796", + "slot": { + "period": 73078, + "thread": 19 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 295158, + "thread": 26 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 362074, + "thread": 10 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 648836, + "thread": 28 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 666484, + "thread": 9 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 848812, + "thread": 29 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1002975, + "thread": 25 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1191222, + "thread": 27 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1403814, + "thread": 26 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1539246, + "thread": 24 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1725102, + "thread": 13 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 1878740, + "thread": 13 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2075715, + "thread": 6 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2191451, + "thread": 17 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2315207, + "thread": 25 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2574349, + "thread": 12 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2783305, + "thread": 18 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 2869005, + "thread": 9 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 3103109, + "thread": 30 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 3160038, + "thread": 17 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 3341910, + "thread": 13 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 3562787, + "thread": 10 + } + }, + { + "amount": "376.086681796", + "slot": { + "period": 3735005, + "thread": 24 + } + }, + { + "amount": "376.086681797", + "slot": { + "period": 3826958, + "thread": 6 + } + } + ], + "AU12nZ1HUMZXucHHQXkz9oe7FQEbuJCfRFbjTZ87YjhmYFFqME1MV": [ + { + "amount": "160.741597249", + "slot": { + "period": 100047, + "thread": 10 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 218948, + "thread": 13 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 440804, + "thread": 30 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 510962, + "thread": 2 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 695189, + "thread": 6 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 861680, + "thread": 12 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1043731, + "thread": 29 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1302624, + "thread": 5 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1372021, + "thread": 31 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1588859, + "thread": 30 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1767907, + "thread": 19 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 1974304, + "thread": 4 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2125089, + "thread": 28 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2257491, + "thread": 7 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2452993, + "thread": 3 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2482785, + "thread": 11 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2735745, + "thread": 17 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 2915352, + "thread": 5 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 3011259, + "thread": 21 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 3143578, + "thread": 28 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 3398664, + "thread": 29 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 3487124, + "thread": 17 + } + }, + { + "amount": "160.741597249", + "slot": { + "period": 3757382, + "thread": 19 + } + }, + { + "amount": "160.741597243", + "slot": { + "period": 3802594, + "thread": 11 + } + } + ], + "AU12na5DopbKXszjtJEBdiekwJEK9VdkUXbeHwr9Vkr8MmrXSUDYD": [ + { + "amount": "488.054815066", + "slot": { + "period": 77564, + "thread": 15 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 183644, + "thread": 10 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 428065, + "thread": 31 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 494826, + "thread": 30 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 690313, + "thread": 18 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 952413, + "thread": 19 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1127759, + "thread": 16 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1263157, + "thread": 25 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1455361, + "thread": 21 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1597741, + "thread": 4 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1720011, + "thread": 20 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1893277, + "thread": 24 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 1993099, + "thread": 3 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 2229428, + "thread": 25 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 2338942, + "thread": 13 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 2590738, + "thread": 15 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 2709164, + "thread": 29 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 2794875, + "thread": 14 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 3098270, + "thread": 20 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 3233349, + "thread": 7 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 3299678, + "thread": 15 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 3456296, + "thread": 11 + } + }, + { + "amount": "488.054815066", + "slot": { + "period": 3719308, + "thread": 26 + } + }, + { + "amount": "488.054815074", + "slot": { + "period": 3784947, + "thread": 27 + } + } + ], + "AU12nao7sbpLhSTLwo5tkygu46RYcsG15MNqXbHkKUZtgMFNLUjH2": [ + { + "amount": "128.129021633", + "slot": { + "period": 147877, + "thread": 28 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 290305, + "thread": 6 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 458510, + "thread": 18 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 650709, + "thread": 27 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 782747, + "thread": 5 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 865849, + "thread": 2 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1066496, + "thread": 22 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1265178, + "thread": 13 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1469753, + "thread": 21 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1495619, + "thread": 24 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1742170, + "thread": 14 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 1940710, + "thread": 21 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2038152, + "thread": 9 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2217150, + "thread": 25 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2308826, + "thread": 0 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2476696, + "thread": 5 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2671726, + "thread": 28 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2897027, + "thread": 24 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 2997096, + "thread": 22 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 3224223, + "thread": 14 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 3388519, + "thread": 24 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 3548976, + "thread": 13 + } + }, + { + "amount": "128.129021633", + "slot": { + "period": 3714251, + "thread": 26 + } + }, + { + "amount": "128.129021627", + "slot": { + "period": 3848756, + "thread": 16 + } + } + ], + "AU12nb6fQtezGFvYmkbZK4onVk1bzdDMvYLkBRPKok92RxY5JZza9": [ + { + "amount": "71.258014113", + "slot": { + "period": 111533, + "thread": 7 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 241230, + "thread": 12 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 456561, + "thread": 16 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 542226, + "thread": 3 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 721408, + "thread": 22 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 865284, + "thread": 15 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 997778, + "thread": 27 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 1269802, + "thread": 18 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 1328018, + "thread": 24 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 1548487, + "thread": 6 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 1660653, + "thread": 24 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 1850140, + "thread": 31 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2072019, + "thread": 18 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2179353, + "thread": 5 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2318345, + "thread": 1 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2503225, + "thread": 15 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2728237, + "thread": 20 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2865667, + "thread": 28 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 2963911, + "thread": 11 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 3260499, + "thread": 6 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 3421911, + "thread": 3 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 3453773, + "thread": 10 + } + }, + { + "amount": "71.258014113", + "slot": { + "period": 3742880, + "thread": 0 + } + }, + { + "amount": "71.258014106", + "slot": { + "period": 3799430, + "thread": 29 + } + } + ], + "AU12nb7WB62pJTeKgu1mVqHZEC4J94GF5rp5bojowhnUorPJ5Jfef": [ + { + "amount": "55.854647565", + "slot": { + "period": 72519, + "thread": 14 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 207483, + "thread": 13 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 458947, + "thread": 20 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 635410, + "thread": 8 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 697939, + "thread": 10 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 971546, + "thread": 14 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1062056, + "thread": 12 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1249912, + "thread": 27 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1406264, + "thread": 16 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1615572, + "thread": 29 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1648330, + "thread": 16 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 1842263, + "thread": 13 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2014784, + "thread": 10 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2187649, + "thread": 20 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2413495, + "thread": 28 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2511593, + "thread": 19 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2655126, + "thread": 28 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 2916936, + "thread": 18 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 3036628, + "thread": 17 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 3214482, + "thread": 6 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 3387411, + "thread": 29 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 3590321, + "thread": 30 + } + }, + { + "amount": "55.854647565", + "slot": { + "period": 3736280, + "thread": 20 + } + }, + { + "amount": "55.854647561", + "slot": { + "period": 3818772, + "thread": 23 + } + } + ], + "AU12nbEwFZ46X3UYmuEaYwxShNg3ne45LAvH9JYJyaUEyo584y94U": [ + { + "amount": "205.884930813", + "slot": { + "period": 23851, + "thread": 0 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 179033, + "thread": 18 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 425959, + "thread": 13 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 652371, + "thread": 9 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 673952, + "thread": 5 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 913485, + "thread": 11 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 999285, + "thread": 17 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 1212139, + "thread": 26 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 1425640, + "thread": 27 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 1635317, + "thread": 7 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 1795125, + "thread": 12 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 1828079, + "thread": 28 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2134581, + "thread": 22 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2290527, + "thread": 22 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2367508, + "thread": 13 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2540491, + "thread": 20 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2774389, + "thread": 5 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2951410, + "thread": 10 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 2999146, + "thread": 18 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 3262773, + "thread": 2 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 3370341, + "thread": 2 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 3469210, + "thread": 4 + } + }, + { + "amount": "205.884930813", + "slot": { + "period": 3750293, + "thread": 29 + } + }, + { + "amount": "205.884930821", + "slot": { + "period": 3795996, + "thread": 7 + } + } + ], + "AU12nbFhRRqNmctN1DC7kkMGKQ8rgNjerGWfdjpJ2UX5j88HKazMC": [ + { + "amount": "280.203709986", + "slot": { + "period": 46720, + "thread": 0 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 261407, + "thread": 16 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 362777, + "thread": 3 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 619309, + "thread": 24 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 770300, + "thread": 16 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 906817, + "thread": 4 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1090164, + "thread": 1 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1286860, + "thread": 19 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1415742, + "thread": 9 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1483530, + "thread": 27 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1754162, + "thread": 1 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 1883155, + "thread": 12 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2033734, + "thread": 4 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2205668, + "thread": 15 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2413303, + "thread": 31 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2522289, + "thread": 31 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2636495, + "thread": 4 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2879041, + "thread": 29 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 2978003, + "thread": 16 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 3226288, + "thread": 9 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 3414524, + "thread": 14 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 3588134, + "thread": 19 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 3723491, + "thread": 8 + } + }, + { + "amount": "280.203709986", + "slot": { + "period": 3888997, + "thread": 24 + } + } + ], + "AU12nbGJC8adM8BBvsHiJaexJzs1Cc7SqpAbH9uw8rSNe81FunV8Q": [ + { + "amount": "288.913377544", + "slot": { + "period": 110450, + "thread": 30 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 309271, + "thread": 22 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 452083, + "thread": 18 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 635652, + "thread": 6 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 804217, + "thread": 5 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 844929, + "thread": 21 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1128139, + "thread": 22 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1255164, + "thread": 13 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1375970, + "thread": 8 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1494844, + "thread": 4 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1748993, + "thread": 5 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 1960915, + "thread": 31 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2122780, + "thread": 30 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2145257, + "thread": 8 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2325045, + "thread": 8 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2613636, + "thread": 0 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2693322, + "thread": 19 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 2839155, + "thread": 12 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 3032909, + "thread": 16 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 3280157, + "thread": 26 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 3444181, + "thread": 18 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 3610286, + "thread": 24 + } + }, + { + "amount": "288.913377544", + "slot": { + "period": 3752183, + "thread": 31 + } + }, + { + "amount": "288.913377548", + "slot": { + "period": 3910020, + "thread": 2 + } + } + ], + "AU12nbmzy5FiwpHDRDw4kRFkTkDzeWyTh8dVjnHkHtg3nkX1yQ1fh": [ + { + "amount": "214.140480390", + "slot": { + "period": 18353, + "thread": 16 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 221427, + "thread": 28 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 489414, + "thread": 3 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 618308, + "thread": 20 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 802453, + "thread": 6 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 956182, + "thread": 17 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1054383, + "thread": 23 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1161297, + "thread": 31 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1474628, + "thread": 15 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1553968, + "thread": 1 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1668382, + "thread": 17 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 1855691, + "thread": 9 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2058661, + "thread": 29 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2200260, + "thread": 14 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2432043, + "thread": 10 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2598848, + "thread": 29 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2694586, + "thread": 23 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 2809501, + "thread": 9 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 3034625, + "thread": 24 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 3246470, + "thread": 18 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 3448348, + "thread": 16 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 3581803, + "thread": 25 + } + }, + { + "amount": "214.140480390", + "slot": { + "period": 3734468, + "thread": 5 + } + }, + { + "amount": "214.140480388", + "slot": { + "period": 3878213, + "thread": 25 + } + } + ], + "AU12ne2mUvA44ZnoHco7XS2dezmYQpRMc5SnzT1ieaac6Av8NWeLp": [ + { + "amount": "279.478208604", + "slot": { + "period": 93756, + "thread": 9 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 302501, + "thread": 6 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 435214, + "thread": 18 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 646652, + "thread": 8 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 740923, + "thread": 29 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 840552, + "thread": 15 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1003236, + "thread": 13 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1236501, + "thread": 16 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1352011, + "thread": 11 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1531789, + "thread": 31 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1729041, + "thread": 13 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 1957832, + "thread": 2 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2063379, + "thread": 17 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2195808, + "thread": 19 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2311262, + "thread": 12 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2516083, + "thread": 31 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2744618, + "thread": 7 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2855811, + "thread": 7 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 2979658, + "thread": 28 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 3146490, + "thread": 3 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 3408545, + "thread": 14 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 3480122, + "thread": 28 + } + }, + { + "amount": "279.478208604", + "slot": { + "period": 3746067, + "thread": 24 + } + }, + { + "amount": "279.478208596", + "slot": { + "period": 3790505, + "thread": 12 + } + } + ], + "AU12nezbzg6SNC3tm8YK3mpm5tJjxzNB63YZSS6ED6yJe1LiNdNpV": [ + { + "amount": "335.407047218", + "slot": { + "period": 144820, + "thread": 9 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 216569, + "thread": 12 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 468739, + "thread": 19 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 608255, + "thread": 0 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 672436, + "thread": 23 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 894614, + "thread": 2 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1057031, + "thread": 2 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1168125, + "thread": 27 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1336085, + "thread": 0 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1511675, + "thread": 8 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1696809, + "thread": 19 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 1884193, + "thread": 24 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2035172, + "thread": 23 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2171251, + "thread": 2 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2434083, + "thread": 25 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2471959, + "thread": 27 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2702800, + "thread": 17 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 2908941, + "thread": 23 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 3120833, + "thread": 18 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 3239515, + "thread": 23 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 3352139, + "thread": 29 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 3558127, + "thread": 6 + } + }, + { + "amount": "335.407047218", + "slot": { + "period": 3713419, + "thread": 20 + } + }, + { + "amount": "335.407047230", + "slot": { + "period": 3940880, + "thread": 11 + } + } + ], + "AU12nf4zEv817Z9RSjxtXr8nHg8AG5aPqx89mxhecvwMicgeYWmJC": [ + { + "amount": "153.363339670", + "slot": { + "period": 55318, + "thread": 21 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 254234, + "thread": 16 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 478770, + "thread": 6 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 492302, + "thread": 19 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 789644, + "thread": 17 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 856705, + "thread": 16 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 996828, + "thread": 18 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1287866, + "thread": 7 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1453995, + "thread": 29 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1642618, + "thread": 16 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1769730, + "thread": 26 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1921361, + "thread": 16 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 1981043, + "thread": 28 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 2183557, + "thread": 17 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 2315580, + "thread": 11 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 2612304, + "thread": 11 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 2710008, + "thread": 28 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 2859740, + "thread": 16 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 3022102, + "thread": 2 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 3224791, + "thread": 0 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 3380621, + "thread": 14 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 3508894, + "thread": 27 + } + }, + { + "amount": "153.363339670", + "slot": { + "period": 3621629, + "thread": 30 + } + }, + { + "amount": "153.363339665", + "slot": { + "period": 3936519, + "thread": 27 + } + } + ], + "AU12nfKbghJcsNB1Pvr9KRwj5gzdgquSUZ5U11WsiKBpvRqjGGyDG": [ + { + "amount": "143.666991750", + "slot": { + "period": 93327, + "thread": 31 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 217790, + "thread": 17 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 328046, + "thread": 8 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 531156, + "thread": 20 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 815320, + "thread": 29 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 836817, + "thread": 18 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1127524, + "thread": 27 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1152536, + "thread": 19 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1368236, + "thread": 5 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1613813, + "thread": 5 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1746252, + "thread": 9 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 1942595, + "thread": 5 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2077242, + "thread": 29 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2167601, + "thread": 27 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2428211, + "thread": 29 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2599688, + "thread": 16 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2752383, + "thread": 22 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 2894793, + "thread": 25 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 3064622, + "thread": 29 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 3209110, + "thread": 19 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 3375510, + "thread": 10 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 3499992, + "thread": 0 + } + }, + { + "amount": "143.666991750", + "slot": { + "period": 3707678, + "thread": 12 + } + }, + { + "amount": "143.666991757", + "slot": { + "period": 3805087, + "thread": 16 + } + } + ], + "AU12nh4gjWTCwidjhWPBnN2QYyMUJPPpkCwaY8xy3xopHkigW3dxU": [ + { + "amount": "128.769059851", + "slot": { + "period": 122288, + "thread": 7 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 251306, + "thread": 10 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 460837, + "thread": 27 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 581237, + "thread": 2 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 731723, + "thread": 23 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 911885, + "thread": 27 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1095791, + "thread": 17 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1251231, + "thread": 11 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1337911, + "thread": 26 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1590480, + "thread": 21 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1671296, + "thread": 14 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 1840878, + "thread": 2 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2131614, + "thread": 30 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2179797, + "thread": 14 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2362436, + "thread": 5 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2604213, + "thread": 5 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2675632, + "thread": 3 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 2804554, + "thread": 7 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 3009258, + "thread": 26 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 3147653, + "thread": 13 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 3397235, + "thread": 18 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 3468726, + "thread": 31 + } + }, + { + "amount": "128.769059851", + "slot": { + "period": 3682912, + "thread": 12 + } + }, + { + "amount": "128.769059845", + "slot": { + "period": 3917242, + "thread": 8 + } + } + ], + "AU12nhNjuoAjVtNF631RReLWwTNVirLspVi4sygX8322NYzbAwG44": [ + { + "amount": "184.683338503", + "slot": { + "period": 144922, + "thread": 26 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 229481, + "thread": 22 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 365691, + "thread": 23 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 520185, + "thread": 7 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 656614, + "thread": 10 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 891906, + "thread": 9 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1065927, + "thread": 22 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1261183, + "thread": 25 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1350195, + "thread": 24 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1567245, + "thread": 10 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1656484, + "thread": 28 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 1873579, + "thread": 9 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2084293, + "thread": 24 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2198892, + "thread": 25 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2356145, + "thread": 12 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2557576, + "thread": 10 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2785544, + "thread": 21 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 2903398, + "thread": 11 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 3061494, + "thread": 12 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 3287164, + "thread": 18 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 3356135, + "thread": 13 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 3482395, + "thread": 18 + } + }, + { + "amount": "184.683338503", + "slot": { + "period": 3706930, + "thread": 11 + } + }, + { + "amount": "184.683338502", + "slot": { + "period": 3858706, + "thread": 25 + } + } + ], + "AU12njacApi6ffc12YmmjXmCoWsrTwz4KCq33oEg2Ehjnq1tCiCpy": [ + { + "amount": "176.100428174", + "slot": { + "period": 73484, + "thread": 15 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 221255, + "thread": 29 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 363753, + "thread": 5 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 565850, + "thread": 3 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 743530, + "thread": 11 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 905802, + "thread": 24 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 993688, + "thread": 30 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 1266983, + "thread": 1 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 1426447, + "thread": 3 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 1549707, + "thread": 7 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 1789246, + "thread": 25 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 1880940, + "thread": 8 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2110386, + "thread": 20 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2230920, + "thread": 11 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2422255, + "thread": 27 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2585994, + "thread": 18 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2774641, + "thread": 0 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 2828219, + "thread": 30 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 3055552, + "thread": 6 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 3157041, + "thread": 0 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 3298967, + "thread": 19 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 3599532, + "thread": 28 + } + }, + { + "amount": "176.100428174", + "slot": { + "period": 3765877, + "thread": 2 + } + }, + { + "amount": "176.100428168", + "slot": { + "period": 3803774, + "thread": 21 + } + } + ], + "AU12nkCS6wJbpSQ49SxKPX1BABQBmh67RDY6rBvJNdYtH1Mnw2cva": [ + { + "amount": "163.117331289", + "slot": { + "period": 83151, + "thread": 21 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 321558, + "thread": 20 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 413603, + "thread": 25 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 587873, + "thread": 0 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 736843, + "thread": 25 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 946381, + "thread": 8 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1048424, + "thread": 30 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1240187, + "thread": 17 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1387298, + "thread": 14 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1640102, + "thread": 24 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1647033, + "thread": 24 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 1945837, + "thread": 12 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2078252, + "thread": 1 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2239649, + "thread": 16 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2390916, + "thread": 31 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2498797, + "thread": 27 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2775992, + "thread": 8 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 2792820, + "thread": 9 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 3111306, + "thread": 29 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 3287645, + "thread": 13 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 3371655, + "thread": 22 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 3480544, + "thread": 0 + } + }, + { + "amount": "163.117331289", + "slot": { + "period": 3755337, + "thread": 28 + } + }, + { + "amount": "163.117331284", + "slot": { + "period": 3922010, + "thread": 9 + } + } + ], + "AU12nnVLFS7Dpr6W8d6EEa7TpFgyfRgWqrXnDrd1n6Lq6WtNxo5Z": [ + { + "amount": "400.914153525", + "slot": { + "period": 122882, + "thread": 8 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 226394, + "thread": 22 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 445287, + "thread": 16 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 624147, + "thread": 20 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 723527, + "thread": 5 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 902834, + "thread": 14 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1131728, + "thread": 16 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1194521, + "thread": 26 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1330464, + "thread": 20 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1614779, + "thread": 9 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1757569, + "thread": 4 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 1889636, + "thread": 27 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2101517, + "thread": 17 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2175802, + "thread": 10 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2432889, + "thread": 29 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2521213, + "thread": 24 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2777546, + "thread": 1 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 2796927, + "thread": 18 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 3109003, + "thread": 14 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 3187667, + "thread": 5 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 3422229, + "thread": 30 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 3495628, + "thread": 18 + } + }, + { + "amount": "400.914153525", + "slot": { + "period": 3713523, + "thread": 15 + } + }, + { + "amount": "400.914153519", + "slot": { + "period": 3781149, + "thread": 5 + } + } + ], + "AU12nnYKBvUkZtkY2ZyGbnqgx6gvSwLdfhFz2BuGnUvJpm7tHr8sm": [ + { + "amount": "79.802910803", + "slot": { + "period": 34096, + "thread": 17 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 313980, + "thread": 15 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 406098, + "thread": 12 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 533646, + "thread": 10 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 718844, + "thread": 11 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 870666, + "thread": 17 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1090754, + "thread": 18 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1282192, + "thread": 23 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1352834, + "thread": 23 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1594647, + "thread": 9 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1689256, + "thread": 29 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 1864408, + "thread": 18 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2021642, + "thread": 3 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2272233, + "thread": 20 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2332253, + "thread": 22 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2617782, + "thread": 23 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2770837, + "thread": 19 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2815964, + "thread": 22 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 2973490, + "thread": 3 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 3278736, + "thread": 11 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 3436900, + "thread": 29 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 3516160, + "thread": 12 + } + }, + { + "amount": "79.802910803", + "slot": { + "period": 3769639, + "thread": 22 + } + }, + { + "amount": "79.802910811", + "slot": { + "period": 3782593, + "thread": 0 + } + } + ], + "AU12noQ94KHVrpFdMjM2d82nUQBRooccxsPmFRn21jTL6AdXpZjDx": [ + { + "amount": "183.928940790", + "slot": { + "period": 153087, + "thread": 19 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 281262, + "thread": 29 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 419979, + "thread": 11 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 614548, + "thread": 5 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 672104, + "thread": 10 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 941492, + "thread": 15 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1122464, + "thread": 7 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1158701, + "thread": 18 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1423735, + "thread": 14 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1632140, + "thread": 20 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1766087, + "thread": 12 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 1958886, + "thread": 13 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2090591, + "thread": 14 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2203957, + "thread": 11 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2306261, + "thread": 17 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2488577, + "thread": 29 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2698661, + "thread": 29 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 2864329, + "thread": 2 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 3014757, + "thread": 10 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 3259528, + "thread": 25 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 3342468, + "thread": 25 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 3552606, + "thread": 1 + } + }, + { + "amount": "183.928940790", + "slot": { + "period": 3678445, + "thread": 20 + } + }, + { + "amount": "183.928940782", + "slot": { + "period": 3808448, + "thread": 14 + } + } + ], + "AU12noudLPxQ2C9J78h28SGosHd1GEosdVrFU8sXUXBpbeBJ7UV2R": [ + { + "amount": "262.808940329", + "slot": { + "period": 14532, + "thread": 31 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 214536, + "thread": 12 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 465445, + "thread": 4 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 541943, + "thread": 17 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 687411, + "thread": 3 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 907962, + "thread": 9 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1147428, + "thread": 9 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1249220, + "thread": 7 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1331245, + "thread": 8 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1578345, + "thread": 25 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1715077, + "thread": 30 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 1930689, + "thread": 9 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2107754, + "thread": 19 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2180385, + "thread": 29 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2443472, + "thread": 24 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2488367, + "thread": 16 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2654591, + "thread": 14 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 2823927, + "thread": 2 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 3094661, + "thread": 10 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 3262422, + "thread": 11 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 3324677, + "thread": 2 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 3467735, + "thread": 25 + } + }, + { + "amount": "262.808940329", + "slot": { + "period": 3667637, + "thread": 10 + } + }, + { + "amount": "262.808940326", + "slot": { + "period": 3925097, + "thread": 12 + } + } + ], + "AU12nouecZwUwyiMXVVn7KFPHrEdriiuSBVdjJ41ZizBoFLqyfVMD": [ + { + "amount": "82.246613904", + "slot": { + "period": 88279, + "thread": 21 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 248001, + "thread": 23 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 417463, + "thread": 11 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 651908, + "thread": 1 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 723481, + "thread": 7 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 917132, + "thread": 21 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1056531, + "thread": 2 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1151210, + "thread": 8 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1400913, + "thread": 14 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1582984, + "thread": 22 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1771013, + "thread": 11 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 1845942, + "thread": 11 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2022679, + "thread": 1 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2241359, + "thread": 19 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2323106, + "thread": 13 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2496314, + "thread": 30 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2651826, + "thread": 15 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2934045, + "thread": 21 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 2982216, + "thread": 26 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 3160514, + "thread": 11 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 3298964, + "thread": 15 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 3614450, + "thread": 17 + } + }, + { + "amount": "82.246613904", + "slot": { + "period": 3758277, + "thread": 10 + } + }, + { + "amount": "82.246613898", + "slot": { + "period": 3927240, + "thread": 21 + } + } + ], + "AU12npShRAaBxPz1F65CqaBK7VH8o3dJgQeAvfXbjPY6aCN4V66qC": [ + { + "amount": "172.750766250", + "slot": { + "period": 97957, + "thread": 25 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 298719, + "thread": 22 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 363522, + "thread": 20 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 576783, + "thread": 12 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 793551, + "thread": 12 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 857210, + "thread": 7 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1033842, + "thread": 24 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1296190, + "thread": 5 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1408686, + "thread": 27 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1491230, + "thread": 10 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1740774, + "thread": 31 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 1923413, + "thread": 15 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2101799, + "thread": 9 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2179804, + "thread": 16 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2363926, + "thread": 21 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2465410, + "thread": 26 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2774787, + "thread": 21 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 2918651, + "thread": 22 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 3058897, + "thread": 24 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 3179818, + "thread": 25 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 3403618, + "thread": 2 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 3500073, + "thread": 1 + } + }, + { + "amount": "172.750766250", + "slot": { + "period": 3691181, + "thread": 2 + } + }, + { + "amount": "172.750766252", + "slot": { + "period": 3863995, + "thread": 12 + } + } + ], + "AU12npiZxSYjx1SszBubZd5WJBFNMjKfBfsK3a9NsYN2RfQVWYAVR": [ + { + "amount": "99.949254368", + "slot": { + "period": 137088, + "thread": 15 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 168183, + "thread": 26 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 394681, + "thread": 29 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 546402, + "thread": 15 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 762000, + "thread": 27 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 898924, + "thread": 27 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1131625, + "thread": 6 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1159154, + "thread": 31 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1377267, + "thread": 28 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1504592, + "thread": 2 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1702619, + "thread": 23 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 1889825, + "thread": 13 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2090893, + "thread": 19 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2148916, + "thread": 20 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2405990, + "thread": 14 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2467273, + "thread": 7 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2701424, + "thread": 8 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 2944430, + "thread": 15 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 3009325, + "thread": 12 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 3202855, + "thread": 29 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 3325709, + "thread": 31 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 3471369, + "thread": 1 + } + }, + { + "amount": "99.949254368", + "slot": { + "period": 3722657, + "thread": 15 + } + }, + { + "amount": "99.949254363", + "slot": { + "period": 3790058, + "thread": 18 + } + } + ], + "AU12npwLCXntkcaqVoSLxcJpVa6uuob3zMcDgnTLToMG1vNih2Pb2": [ + { + "amount": "178.661587818", + "slot": { + "period": 59054, + "thread": 26 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 321573, + "thread": 15 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 438514, + "thread": 3 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 626623, + "thread": 29 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 713485, + "thread": 6 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 868163, + "thread": 21 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1136640, + "thread": 6 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1182816, + "thread": 27 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1339968, + "thread": 9 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1640994, + "thread": 18 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1709051, + "thread": 25 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 1926574, + "thread": 29 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2087401, + "thread": 30 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2276780, + "thread": 15 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2447388, + "thread": 26 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2597614, + "thread": 15 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2773420, + "thread": 25 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 2875299, + "thread": 14 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 3071585, + "thread": 14 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 3189806, + "thread": 7 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 3363404, + "thread": 12 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 3497862, + "thread": 1 + } + }, + { + "amount": "178.661587818", + "slot": { + "period": 3647133, + "thread": 17 + } + }, + { + "amount": "178.661587810", + "slot": { + "period": 3859607, + "thread": 26 + } + } + ], + "AU12nrBLfwXe4M3JjXSSj8UhKaL1xUR3VsDaua92tJg9cnrmkYTo6": [ + { + "amount": "126.967313889", + "slot": { + "period": 91291, + "thread": 27 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 266578, + "thread": 17 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 479489, + "thread": 7 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 535958, + "thread": 24 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 665947, + "thread": 6 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 941690, + "thread": 4 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1142296, + "thread": 13 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1317113, + "thread": 10 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1388315, + "thread": 23 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1634415, + "thread": 8 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1759868, + "thread": 3 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1826809, + "thread": 5 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 1983244, + "thread": 19 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2168710, + "thread": 3 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2370501, + "thread": 14 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2510429, + "thread": 30 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2774781, + "thread": 24 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2795701, + "thread": 31 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 2978080, + "thread": 23 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 3267631, + "thread": 18 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 3371366, + "thread": 2 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 3542635, + "thread": 0 + } + }, + { + "amount": "126.967313889", + "slot": { + "period": 3691186, + "thread": 31 + } + }, + { + "amount": "126.967313900", + "slot": { + "period": 3938424, + "thread": 1 + } + } + ], + "AU12nreAKFkp52Xv1DpfSjay7DUtVdS7c1cGHWTwXDBNcjTcczjj": [ + { + "amount": "160.818426032", + "slot": { + "period": 115026, + "thread": 31 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 223279, + "thread": 25 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 377570, + "thread": 21 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 536988, + "thread": 29 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 680010, + "thread": 19 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 842410, + "thread": 16 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1036070, + "thread": 16 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1179756, + "thread": 25 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1371221, + "thread": 0 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1500941, + "thread": 16 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1742075, + "thread": 1 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 1879902, + "thread": 13 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2045018, + "thread": 6 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2285840, + "thread": 27 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2378984, + "thread": 3 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2595750, + "thread": 2 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2658317, + "thread": 26 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2948708, + "thread": 0 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 2974139, + "thread": 10 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 3221171, + "thread": 7 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 3440587, + "thread": 20 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 3502398, + "thread": 18 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 3637513, + "thread": 6 + } + }, + { + "amount": "160.818426032", + "slot": { + "period": 3934279, + "thread": 20 + } + } + ], + "AU12nrjFfAGxRxYyT1tfxPhB91fLeLBune3RCq3CP2sjwuHVQEk5V": [ + { + "amount": "458.071242728", + "slot": { + "period": 88554, + "thread": 3 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 295084, + "thread": 3 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 480745, + "thread": 24 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 607504, + "thread": 22 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 817537, + "thread": 10 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 916880, + "thread": 12 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1074098, + "thread": 11 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1302707, + "thread": 1 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1447808, + "thread": 6 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1592924, + "thread": 13 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1740772, + "thread": 14 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 1904265, + "thread": 29 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2121613, + "thread": 5 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2164403, + "thread": 25 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2376206, + "thread": 5 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2552271, + "thread": 23 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2741794, + "thread": 27 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2904155, + "thread": 8 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 2968024, + "thread": 25 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 3133462, + "thread": 16 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 3320117, + "thread": 26 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 3462491, + "thread": 3 + } + }, + { + "amount": "458.071242728", + "slot": { + "period": 3644688, + "thread": 16 + } + }, + { + "amount": "458.071242731", + "slot": { + "period": 3942985, + "thread": 2 + } + } + ], + "AU12ns9CvRF9dNkFN1pZKhagxcnB1r5Bei1KEX4wwUFLauTGj5mNt": [ + { + "amount": "216.596021310", + "slot": { + "period": 128607, + "thread": 11 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 290891, + "thread": 31 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 418847, + "thread": 13 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 548265, + "thread": 14 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 677520, + "thread": 31 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 937967, + "thread": 19 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1072628, + "thread": 9 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1278385, + "thread": 15 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1429264, + "thread": 10 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1562447, + "thread": 25 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1789242, + "thread": 4 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 1871700, + "thread": 28 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2099768, + "thread": 20 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2201729, + "thread": 7 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2453580, + "thread": 23 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2466044, + "thread": 23 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2738141, + "thread": 30 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2909808, + "thread": 23 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 2982541, + "thread": 6 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 3271755, + "thread": 21 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 3354239, + "thread": 3 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 3584105, + "thread": 9 + } + }, + { + "amount": "216.596021310", + "slot": { + "period": 3703326, + "thread": 10 + } + }, + { + "amount": "216.596021322", + "slot": { + "period": 3877347, + "thread": 11 + } + } + ], + "AU12nsLMoEFvW2MiKY4axmcHUQGqRDRmvn3unwSUU7TVbBmd8op3S": [ + { + "amount": "363.200792747", + "slot": { + "period": 103951, + "thread": 30 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 244283, + "thread": 25 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 435726, + "thread": 9 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 579633, + "thread": 25 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 705247, + "thread": 20 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 933205, + "thread": 15 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1112326, + "thread": 15 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1306937, + "thread": 19 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1478819, + "thread": 16 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1521131, + "thread": 10 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1727037, + "thread": 3 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 1917889, + "thread": 21 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2031235, + "thread": 9 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2255641, + "thread": 21 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2306996, + "thread": 8 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2570714, + "thread": 22 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2743039, + "thread": 12 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 2862684, + "thread": 28 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 3070058, + "thread": 7 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 3124028, + "thread": 10 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 3398538, + "thread": 28 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 3601719, + "thread": 0 + } + }, + { + "amount": "363.200792747", + "slot": { + "period": 3758791, + "thread": 8 + } + }, + { + "amount": "363.200792745", + "slot": { + "period": 3856915, + "thread": 11 + } + } + ], + "AU12nsNZqtYu9PBsKy9q2pchRKrRMfmuEucAFVXx6nYvNksdE5ehd": [ + { + "amount": "62.803890254", + "slot": { + "period": 113370, + "thread": 30 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 289257, + "thread": 2 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 385051, + "thread": 10 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 645645, + "thread": 16 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 666790, + "thread": 0 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 862506, + "thread": 14 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1068725, + "thread": 9 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1180826, + "thread": 7 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1378193, + "thread": 16 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1613848, + "thread": 9 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1718115, + "thread": 22 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 1901682, + "thread": 1 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2014626, + "thread": 2 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2161045, + "thread": 18 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2311330, + "thread": 29 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2601028, + "thread": 12 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2698376, + "thread": 3 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 2859075, + "thread": 8 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 3045485, + "thread": 11 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 3214919, + "thread": 4 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 3289399, + "thread": 7 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 3530446, + "thread": 14 + } + }, + { + "amount": "62.803890254", + "slot": { + "period": 3640415, + "thread": 23 + } + }, + { + "amount": "62.803890257", + "slot": { + "period": 3924622, + "thread": 22 + } + } + ], + "AU12nuP7Wk6Tsmn9ZeFxowtJn2yc85LqSeKAbzoAeUnckDW65P3qa": [ + { + "amount": "220.026990905", + "slot": { + "period": 148705, + "thread": 1 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 222675, + "thread": 16 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 416115, + "thread": 14 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 620243, + "thread": 11 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 814913, + "thread": 29 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 916192, + "thread": 10 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1076684, + "thread": 28 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1256087, + "thread": 31 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1333245, + "thread": 10 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1603387, + "thread": 14 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1763850, + "thread": 23 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 1972640, + "thread": 29 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2089970, + "thread": 2 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2221353, + "thread": 10 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2440977, + "thread": 1 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2542234, + "thread": 27 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2701099, + "thread": 20 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2820678, + "thread": 9 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 2981908, + "thread": 22 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 3241960, + "thread": 14 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 3449023, + "thread": 15 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 3532025, + "thread": 24 + } + }, + { + "amount": "220.026990905", + "slot": { + "period": 3679145, + "thread": 15 + } + }, + { + "amount": "220.026990911", + "slot": { + "period": 3783632, + "thread": 13 + } + } + ], + "AU12nugFJLhokKoqD6o3Jro8Kq4j74e2v5P8DTrLAHEgUpqejLX5z": [ + { + "amount": "236.009229217", + "slot": { + "period": 92255, + "thread": 6 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 191221, + "thread": 14 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 415332, + "thread": 26 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 584333, + "thread": 27 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 721365, + "thread": 0 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 982092, + "thread": 13 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1017338, + "thread": 26 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1225077, + "thread": 24 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1381517, + "thread": 14 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1479739, + "thread": 25 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1654406, + "thread": 30 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 1862939, + "thread": 28 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2133096, + "thread": 18 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2177892, + "thread": 21 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2426156, + "thread": 11 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2464344, + "thread": 18 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2777247, + "thread": 12 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 2835141, + "thread": 0 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 3047632, + "thread": 25 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 3187827, + "thread": 21 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 3311744, + "thread": 31 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 3544074, + "thread": 15 + } + }, + { + "amount": "236.009229217", + "slot": { + "period": 3699948, + "thread": 4 + } + }, + { + "amount": "236.009229219", + "slot": { + "period": 3884349, + "thread": 16 + } + } + ], + "AU12nveem53FRrGoZXmLuTPEFo566bKse3i7b5gifGqbwVTPdRwHt": [ + { + "amount": "108.772178920", + "slot": { + "period": 98793, + "thread": 28 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 181899, + "thread": 20 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 486457, + "thread": 12 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 642724, + "thread": 12 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 731113, + "thread": 13 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 964380, + "thread": 21 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 996655, + "thread": 8 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 1166532, + "thread": 20 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 1362156, + "thread": 14 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 1577663, + "thread": 3 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 1653602, + "thread": 8 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 1929104, + "thread": 8 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2129012, + "thread": 1 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2245859, + "thread": 10 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2417459, + "thread": 23 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2610131, + "thread": 29 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2788682, + "thread": 16 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 2815215, + "thread": 29 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 3004833, + "thread": 31 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 3246194, + "thread": 13 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 3431528, + "thread": 5 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 3518065, + "thread": 18 + } + }, + { + "amount": "108.772178920", + "slot": { + "period": 3762430, + "thread": 5 + } + }, + { + "amount": "108.772178914", + "slot": { + "period": 3832358, + "thread": 22 + } + } + ], + "AU12nwUQC7vx31Z3aiBn2yJEyPaQNKrjL7dhrEF5pEADm2RKzCivz": [ + { + "amount": "95.161689006", + "slot": { + "period": 158981, + "thread": 18 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 189543, + "thread": 28 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 485607, + "thread": 2 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 600300, + "thread": 4 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 706738, + "thread": 17 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 940851, + "thread": 6 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1022327, + "thread": 28 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1249801, + "thread": 22 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1402122, + "thread": 2 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1525419, + "thread": 3 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1712420, + "thread": 8 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 1955420, + "thread": 7 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2016710, + "thread": 6 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2270830, + "thread": 12 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2347784, + "thread": 0 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2611795, + "thread": 17 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2707221, + "thread": 27 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 2929915, + "thread": 11 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 3063762, + "thread": 28 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 3221776, + "thread": 9 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 3409305, + "thread": 18 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 3569701, + "thread": 2 + } + }, + { + "amount": "95.161689006", + "slot": { + "period": 3619450, + "thread": 15 + } + }, + { + "amount": "95.161689010", + "slot": { + "period": 3915165, + "thread": 6 + } + } + ], + "AU12nwVpdmgpnfrVecLyfR2Hkw6NoHhSZ1DTYZiWM36NoKzgPMz82": [ + { + "amount": "92.315640076", + "slot": { + "period": 33297, + "thread": 11 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 186420, + "thread": 23 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 337804, + "thread": 18 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 494691, + "thread": 17 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 714833, + "thread": 20 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 859713, + "thread": 8 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1111824, + "thread": 23 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1226509, + "thread": 7 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1469040, + "thread": 25 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1542414, + "thread": 1 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1740339, + "thread": 29 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 1956662, + "thread": 28 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2088013, + "thread": 20 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2216204, + "thread": 8 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2330470, + "thread": 1 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2592480, + "thread": 10 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2733469, + "thread": 26 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2831072, + "thread": 8 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 2968237, + "thread": 3 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 3153816, + "thread": 15 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 3395298, + "thread": 15 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 3520573, + "thread": 13 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 3717172, + "thread": 25 + } + }, + { + "amount": "92.315640076", + "slot": { + "period": 3876486, + "thread": 26 + } + } + ], + "AU12nwfnrSr7bWUP7BRijV7a2nFMXA6RTADgyQMBvyG9dscYtuJKM": [ + { + "amount": "263.834768367", + "slot": { + "period": 26373, + "thread": 2 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 169195, + "thread": 1 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 483537, + "thread": 28 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 610955, + "thread": 28 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 819981, + "thread": 23 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 887471, + "thread": 10 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1020329, + "thread": 1 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1224610, + "thread": 20 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1441296, + "thread": 4 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1569980, + "thread": 4 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1725119, + "thread": 1 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 1821896, + "thread": 25 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2038121, + "thread": 31 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2144575, + "thread": 31 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2317249, + "thread": 6 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2473788, + "thread": 17 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2791779, + "thread": 16 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2833067, + "thread": 2 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 2994415, + "thread": 28 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 3216418, + "thread": 13 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 3291837, + "thread": 14 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 3504345, + "thread": 13 + } + }, + { + "amount": "263.834768367", + "slot": { + "period": 3695535, + "thread": 16 + } + }, + { + "amount": "263.834768357", + "slot": { + "period": 3935883, + "thread": 14 + } + } + ], + "AU12nxPzgo1sK2y49Tu2rp2DhPFzP4wmzeyAUamYSKJfabSu1GNfV": [ + { + "amount": "216.318646147", + "slot": { + "period": 102533, + "thread": 23 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 293649, + "thread": 12 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 425769, + "thread": 9 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 492973, + "thread": 30 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 760002, + "thread": 19 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 928800, + "thread": 26 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1016460, + "thread": 28 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1243165, + "thread": 11 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1457681, + "thread": 28 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1583639, + "thread": 15 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1752547, + "thread": 9 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 1948902, + "thread": 19 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2094645, + "thread": 21 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2256469, + "thread": 14 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2446423, + "thread": 29 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2560668, + "thread": 1 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2774658, + "thread": 18 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 2927536, + "thread": 25 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 3071010, + "thread": 12 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 3274052, + "thread": 6 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 3401072, + "thread": 18 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 3603373, + "thread": 30 + } + }, + { + "amount": "216.318646147", + "slot": { + "period": 3626879, + "thread": 29 + } + }, + { + "amount": "216.318646138", + "slot": { + "period": 3833883, + "thread": 8 + } + } + ], + "AU12nxazkGcmRSjBQxUpkGEb6e1hgtieWabnJ8TCkFseRbyjBQq2W": [ + { + "amount": "163.565652119", + "slot": { + "period": 119535, + "thread": 16 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 188614, + "thread": 15 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 446477, + "thread": 19 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 613368, + "thread": 27 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 724166, + "thread": 11 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 826414, + "thread": 5 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1015041, + "thread": 5 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1167709, + "thread": 13 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1430011, + "thread": 17 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1632505, + "thread": 8 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1713575, + "thread": 20 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 1974992, + "thread": 7 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2090924, + "thread": 6 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2199370, + "thread": 21 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2363809, + "thread": 17 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2612821, + "thread": 29 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2751931, + "thread": 10 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 2891048, + "thread": 23 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 3003393, + "thread": 25 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 3268740, + "thread": 23 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 3445082, + "thread": 6 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 3511826, + "thread": 6 + } + }, + { + "amount": "163.565652119", + "slot": { + "period": 3659791, + "thread": 24 + } + }, + { + "amount": "163.565652110", + "slot": { + "period": 3854161, + "thread": 7 + } + } + ], + "AU12nxebxD6oZw7ZaqAjuPs6yL4e2rWJFYwdSnBojQffB5pH8SnkY": [ + { + "amount": "154.931325683", + "slot": { + "period": 165327, + "thread": 24 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 268161, + "thread": 16 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 382995, + "thread": 5 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 552614, + "thread": 22 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 783655, + "thread": 13 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 890096, + "thread": 4 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1113241, + "thread": 1 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1176828, + "thread": 0 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1376550, + "thread": 9 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1482928, + "thread": 27 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1746262, + "thread": 26 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 1932472, + "thread": 0 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2138791, + "thread": 28 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2278686, + "thread": 27 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2345110, + "thread": 17 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2614688, + "thread": 22 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2626127, + "thread": 19 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 2920121, + "thread": 9 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 3004010, + "thread": 19 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 3238828, + "thread": 1 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 3379223, + "thread": 6 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 3472965, + "thread": 18 + } + }, + { + "amount": "154.931325683", + "slot": { + "period": 3646945, + "thread": 22 + } + }, + { + "amount": "154.931325691", + "slot": { + "period": 3841883, + "thread": 2 + } + } + ], + "AU12nxwYGfKoUBD5johahNi9HdvD7UWjq2ukoQmGeShhYBzsXjaY5": [ + { + "amount": "205.036708315", + "slot": { + "period": 139966, + "thread": 10 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 175137, + "thread": 26 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 482472, + "thread": 27 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 615188, + "thread": 8 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 693565, + "thread": 13 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 932346, + "thread": 3 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 986084, + "thread": 29 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 1256229, + "thread": 31 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 1446710, + "thread": 9 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 1490730, + "thread": 19 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 1687855, + "thread": 22 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 1834039, + "thread": 16 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2018457, + "thread": 30 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2269764, + "thread": 11 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2300875, + "thread": 20 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2616543, + "thread": 11 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2658733, + "thread": 17 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 2901664, + "thread": 20 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 3114228, + "thread": 6 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 3193892, + "thread": 17 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 3403846, + "thread": 19 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 3594491, + "thread": 28 + } + }, + { + "amount": "205.036708315", + "slot": { + "period": 3636804, + "thread": 11 + } + }, + { + "amount": "205.036708326", + "slot": { + "period": 3823971, + "thread": 19 + } + } + ], + "AU12ny8YhwmWUSbjrQVXwByLvtY15sRLVAqrDWTu21nrTHMuv8S6B": [ + { + "amount": "361.053875728", + "slot": { + "period": 94588, + "thread": 8 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 171604, + "thread": 9 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 384274, + "thread": 17 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 525837, + "thread": 5 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 660896, + "thread": 11 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 887964, + "thread": 13 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1040107, + "thread": 23 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1301020, + "thread": 24 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1322372, + "thread": 3 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1504146, + "thread": 21 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1662550, + "thread": 6 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 1814419, + "thread": 29 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2087221, + "thread": 20 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2282642, + "thread": 24 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2427213, + "thread": 3 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2528516, + "thread": 1 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2683304, + "thread": 23 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 2882861, + "thread": 23 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 3071892, + "thread": 21 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 3131362, + "thread": 21 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 3380507, + "thread": 16 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 3582135, + "thread": 26 + } + }, + { + "amount": "361.053875728", + "slot": { + "period": 3627129, + "thread": 8 + } + }, + { + "amount": "361.053875725", + "slot": { + "period": 3916827, + "thread": 16 + } + } + ], + "AU12nyWPNi3B7EPCRTQKjbRkdtC116VTSaqKCxAMqohaMc5heEcZB": [ + { + "amount": "421.834435989", + "slot": { + "period": 61092, + "thread": 1 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 172004, + "thread": 7 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 381947, + "thread": 13 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 624135, + "thread": 5 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 679560, + "thread": 30 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 927476, + "thread": 26 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1137490, + "thread": 29 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1197053, + "thread": 0 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1447526, + "thread": 28 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1508353, + "thread": 25 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1747945, + "thread": 19 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 1853294, + "thread": 9 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2002362, + "thread": 18 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2234961, + "thread": 31 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2415651, + "thread": 4 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2518574, + "thread": 23 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2694919, + "thread": 20 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 2951840, + "thread": 30 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 3090847, + "thread": 26 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 3190928, + "thread": 26 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 3391862, + "thread": 28 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 3611599, + "thread": 0 + } + }, + { + "amount": "421.834435989", + "slot": { + "period": 3770346, + "thread": 20 + } + }, + { + "amount": "421.834435988", + "slot": { + "period": 3855495, + "thread": 12 + } + } + ], + "AU12nzNBCPNqUJjDkEfyqmHkifVPM4eBRJrRgB1FcPuazMjwoNR7z": [ + { + "amount": "83.114362582", + "slot": { + "period": 32737, + "thread": 20 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 197055, + "thread": 30 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 479390, + "thread": 17 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 503722, + "thread": 22 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 703172, + "thread": 1 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 930234, + "thread": 17 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1068090, + "thread": 18 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1211026, + "thread": 22 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1325235, + "thread": 21 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1586335, + "thread": 14 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1679121, + "thread": 15 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 1920965, + "thread": 24 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2088456, + "thread": 31 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2287941, + "thread": 20 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2312758, + "thread": 20 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2516850, + "thread": 30 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2721533, + "thread": 11 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 2869953, + "thread": 6 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 3065550, + "thread": 17 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 3149753, + "thread": 9 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 3432156, + "thread": 7 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 3606379, + "thread": 15 + } + }, + { + "amount": "83.114362582", + "slot": { + "period": 3690447, + "thread": 23 + } + }, + { + "amount": "83.114362581", + "slot": { + "period": 3882129, + "thread": 22 + } + } + ], + "AU12o17QhL8vmYBmUHv3M2yTu9RAd2gcyTSdS1BUXGpeDrYbdqGc3": [ + { + "amount": "531.763022146", + "slot": { + "period": 90755, + "thread": 29 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 228732, + "thread": 9 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 396687, + "thread": 27 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 575055, + "thread": 30 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 719017, + "thread": 27 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 851024, + "thread": 9 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1046542, + "thread": 9 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1189825, + "thread": 27 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1465031, + "thread": 20 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1610598, + "thread": 30 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1791083, + "thread": 0 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 1915853, + "thread": 19 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2038247, + "thread": 9 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2209792, + "thread": 5 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2416631, + "thread": 30 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2464409, + "thread": 11 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2661585, + "thread": 9 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 2921968, + "thread": 3 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 3093467, + "thread": 16 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 3167887, + "thread": 31 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 3381993, + "thread": 30 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 3524156, + "thread": 18 + } + }, + { + "amount": "531.763022146", + "slot": { + "period": 3776813, + "thread": 19 + } + }, + { + "amount": "531.763022148", + "slot": { + "period": 3900655, + "thread": 27 + } + } + ], + "AU12o1rn6km9TSWk2aFZoF5X86ovWve67YkcKtKCsjhQ9aDsm17WV": [ + { + "amount": "93.652529295", + "slot": { + "period": 152030, + "thread": 23 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 279255, + "thread": 10 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 343447, + "thread": 12 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 516525, + "thread": 6 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 730529, + "thread": 16 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 877007, + "thread": 24 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 988397, + "thread": 0 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 1177857, + "thread": 1 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 1356046, + "thread": 6 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 1645600, + "thread": 6 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 1789569, + "thread": 0 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 1919672, + "thread": 9 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2107542, + "thread": 10 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2279524, + "thread": 27 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2338746, + "thread": 21 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2522712, + "thread": 5 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2709343, + "thread": 22 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2939408, + "thread": 13 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 2993133, + "thread": 27 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 3231716, + "thread": 23 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 3405468, + "thread": 23 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 3600037, + "thread": 9 + } + }, + { + "amount": "93.652529295", + "slot": { + "period": 3668718, + "thread": 10 + } + }, + { + "amount": "93.652529300", + "slot": { + "period": 3820261, + "thread": 20 + } + } + ], + "AU12o24vN19YUuvXwC6ieJNdnqRfWn6myfMuAkm9HQ57GCJCkBRTX": [ + { + "amount": "127.093289714", + "slot": { + "period": 44673, + "thread": 18 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 284755, + "thread": 23 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 473778, + "thread": 27 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 590039, + "thread": 12 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 748816, + "thread": 6 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 851591, + "thread": 8 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1015449, + "thread": 21 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1263733, + "thread": 3 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1451888, + "thread": 5 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1605667, + "thread": 3 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1724913, + "thread": 10 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 1816066, + "thread": 13 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2017770, + "thread": 1 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2264348, + "thread": 15 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2334069, + "thread": 22 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2599015, + "thread": 31 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2779012, + "thread": 27 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2832852, + "thread": 3 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 2966129, + "thread": 13 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 3224619, + "thread": 5 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 3320863, + "thread": 8 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 3613303, + "thread": 7 + } + }, + { + "amount": "127.093289714", + "slot": { + "period": 3676716, + "thread": 12 + } + }, + { + "amount": "127.093289711", + "slot": { + "period": 3932051, + "thread": 6 + } + } + ], + "AU12o2Aqw1wU4Bu7Q3mvLa59emD7WBuCRASfAfa8Cxwn6ChCdRCkY": [ + { + "amount": "146.312629703", + "slot": { + "period": 31559, + "thread": 28 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 211693, + "thread": 24 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 383957, + "thread": 16 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 531543, + "thread": 26 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 740877, + "thread": 7 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 846428, + "thread": 27 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1053316, + "thread": 18 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1180325, + "thread": 13 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1352135, + "thread": 15 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1501833, + "thread": 1 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1759068, + "thread": 19 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 1814286, + "thread": 6 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2086714, + "thread": 13 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2189253, + "thread": 15 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2357839, + "thread": 1 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2519807, + "thread": 29 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2718729, + "thread": 8 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 2872706, + "thread": 13 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 3087821, + "thread": 17 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 3248207, + "thread": 14 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 3381766, + "thread": 14 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 3478403, + "thread": 21 + } + }, + { + "amount": "146.312629703", + "slot": { + "period": 3759786, + "thread": 16 + } + }, + { + "amount": "146.312629700", + "slot": { + "period": 3882036, + "thread": 6 + } + } + ], + "AU12o3gGWC7H4bn1zUTkvMsNkUm9KkTCpHJCjX4NoR5w5QXsf3Snq": [ + { + "amount": "235.306282288", + "slot": { + "period": 148350, + "thread": 16 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 265938, + "thread": 25 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 372580, + "thread": 13 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 501855, + "thread": 14 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 654407, + "thread": 23 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 845453, + "thread": 26 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1008196, + "thread": 28 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1202803, + "thread": 4 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1479152, + "thread": 21 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1638261, + "thread": 20 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1690173, + "thread": 2 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1876405, + "thread": 23 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 1979923, + "thread": 31 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2176701, + "thread": 3 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2380078, + "thread": 8 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2476900, + "thread": 16 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2668382, + "thread": 6 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2898904, + "thread": 22 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 2997371, + "thread": 4 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 3262576, + "thread": 17 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 3374583, + "thread": 30 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 3571040, + "thread": 12 + } + }, + { + "amount": "235.306282288", + "slot": { + "period": 3699003, + "thread": 29 + } + }, + { + "amount": "235.306282280", + "slot": { + "period": 3916246, + "thread": 4 + } + } + ], + "AU12o3oDtSnDbcUK4GjqjkeUL4wvtvGCwKKMiyXzE6v4Xd9hTKnko": [ + { + "amount": "247.291425007", + "slot": { + "period": 145559, + "thread": 24 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 169670, + "thread": 3 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 368974, + "thread": 22 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 596585, + "thread": 25 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 760171, + "thread": 21 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 873320, + "thread": 25 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1068426, + "thread": 21 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1152934, + "thread": 6 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1323462, + "thread": 19 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1638407, + "thread": 5 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1712744, + "thread": 28 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 1853876, + "thread": 4 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2052490, + "thread": 10 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2263961, + "thread": 25 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2394626, + "thread": 16 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2501425, + "thread": 31 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2769904, + "thread": 14 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2877735, + "thread": 0 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 2978132, + "thread": 15 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 3247590, + "thread": 15 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 3399058, + "thread": 15 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 3470964, + "thread": 21 + } + }, + { + "amount": "247.291425007", + "slot": { + "period": 3735707, + "thread": 2 + } + }, + { + "amount": "247.291424999", + "slot": { + "period": 3813697, + "thread": 23 + } + } + ], + "AU12o4e4673s5QM13aUSFWJ6B9om1Gf4K6cEG4eJ92MYJG3MnSvDP": [ + { + "amount": "569.175330171", + "slot": { + "period": 164009, + "thread": 20 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 292655, + "thread": 2 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 399865, + "thread": 20 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 639750, + "thread": 1 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 733263, + "thread": 18 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 981349, + "thread": 13 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1129906, + "thread": 30 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1266984, + "thread": 26 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1352317, + "thread": 10 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1645019, + "thread": 22 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1656148, + "thread": 15 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 1961557, + "thread": 3 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2116746, + "thread": 29 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2263159, + "thread": 20 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2357215, + "thread": 27 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2606417, + "thread": 22 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2673825, + "thread": 14 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 2853554, + "thread": 4 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 3082287, + "thread": 18 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 3258479, + "thread": 8 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 3375363, + "thread": 10 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 3567779, + "thread": 24 + } + }, + { + "amount": "569.175330171", + "slot": { + "period": 3697016, + "thread": 16 + } + }, + { + "amount": "569.175330165", + "slot": { + "period": 3848550, + "thread": 27 + } + } + ], + "AU12o4gGcJ5uXKtXqmwtiUhaAtMZGBhoohPCCptFmVyM9u49GYmNg": [ + { + "amount": "152.174392319", + "slot": { + "period": 131003, + "thread": 30 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 250210, + "thread": 9 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 335273, + "thread": 22 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 530639, + "thread": 9 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 769436, + "thread": 15 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 853858, + "thread": 30 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1112124, + "thread": 25 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1159501, + "thread": 21 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1471208, + "thread": 9 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1605201, + "thread": 19 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1801596, + "thread": 18 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 1931330, + "thread": 13 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2031497, + "thread": 1 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2286012, + "thread": 15 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2390453, + "thread": 9 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2538128, + "thread": 15 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2676084, + "thread": 24 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 2807624, + "thread": 21 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 3117995, + "thread": 22 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 3165215, + "thread": 27 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 3435507, + "thread": 25 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 3503042, + "thread": 1 + } + }, + { + "amount": "152.174392319", + "slot": { + "period": 3638171, + "thread": 2 + } + }, + { + "amount": "152.174392321", + "slot": { + "period": 3857321, + "thread": 23 + } + } + ], + "AU12o4wsNKsRBW4a2qjW3rheRHui9jbNWvfk1ZjkM1DwTjn7qgPyC": [ + { + "amount": "86.439579355", + "slot": { + "period": 11190, + "thread": 0 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 247561, + "thread": 21 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 471478, + "thread": 26 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 561297, + "thread": 15 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 782154, + "thread": 4 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 864235, + "thread": 25 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1077631, + "thread": 4 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1274526, + "thread": 14 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1391353, + "thread": 18 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1628190, + "thread": 15 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1749463, + "thread": 0 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1855625, + "thread": 20 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 1980853, + "thread": 7 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2264085, + "thread": 11 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2348719, + "thread": 29 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2481966, + "thread": 10 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2732067, + "thread": 13 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2835244, + "thread": 8 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 2965432, + "thread": 25 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 3211532, + "thread": 24 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 3352398, + "thread": 19 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 3481104, + "thread": 29 + } + }, + { + "amount": "86.439579355", + "slot": { + "period": 3769867, + "thread": 10 + } + }, + { + "amount": "86.439579357", + "slot": { + "period": 3839011, + "thread": 24 + } + } + ], + "AU12o859Xe8L247mEKN78xC5kePhmeGVtmyPqa4RE6hEcj4aW56NR": [ + { + "amount": "358.623316371", + "slot": { + "period": 96065, + "thread": 7 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 266925, + "thread": 12 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 349150, + "thread": 22 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 601730, + "thread": 29 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 720896, + "thread": 31 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 950613, + "thread": 12 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1089980, + "thread": 29 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1191439, + "thread": 19 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1405847, + "thread": 22 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1535906, + "thread": 22 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1673017, + "thread": 29 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 1814119, + "thread": 31 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2120982, + "thread": 24 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2197374, + "thread": 15 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2314268, + "thread": 13 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2505305, + "thread": 17 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2779931, + "thread": 11 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2950119, + "thread": 5 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 2993599, + "thread": 26 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 3173505, + "thread": 27 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 3409599, + "thread": 8 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 3490694, + "thread": 0 + } + }, + { + "amount": "358.623316371", + "slot": { + "period": 3687293, + "thread": 24 + } + }, + { + "amount": "358.623316375", + "slot": { + "period": 3945311, + "thread": 7 + } + } + ], + "AU12o8BHe2ZfXcmFZqNb3SYAaqnHDMnjYUS7cWsiiKWqBMeY9cyhR": [ + { + "amount": "139.628465426", + "slot": { + "period": 22319, + "thread": 24 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 249585, + "thread": 27 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 431759, + "thread": 30 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 493515, + "thread": 19 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 694413, + "thread": 9 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 930710, + "thread": 30 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1038604, + "thread": 18 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1247888, + "thread": 15 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1465057, + "thread": 20 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1508243, + "thread": 21 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1726114, + "thread": 0 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 1909267, + "thread": 12 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2123764, + "thread": 6 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2205731, + "thread": 21 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2405995, + "thread": 6 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2525094, + "thread": 26 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2728413, + "thread": 28 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 2935554, + "thread": 28 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 3118600, + "thread": 29 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 3153001, + "thread": 24 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 3374098, + "thread": 15 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 3577418, + "thread": 0 + } + }, + { + "amount": "139.628465426", + "slot": { + "period": 3620904, + "thread": 18 + } + }, + { + "amount": "139.628465414", + "slot": { + "period": 3865988, + "thread": 8 + } + } + ], + "AU12o8rw5MVhYHRJEgBT5S1sgqZXZPbqLtktERrL1WQ8eCYoBUtiZ": [ + { + "amount": "170.320996994", + "slot": { + "period": 124422, + "thread": 29 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 195430, + "thread": 22 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 430744, + "thread": 1 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 637982, + "thread": 3 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 786871, + "thread": 9 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 980533, + "thread": 8 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1007394, + "thread": 21 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1159609, + "thread": 15 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1418013, + "thread": 29 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1623429, + "thread": 24 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1770982, + "thread": 11 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 1941937, + "thread": 25 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2119763, + "thread": 4 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2185298, + "thread": 3 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2350475, + "thread": 24 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2475712, + "thread": 23 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2744527, + "thread": 22 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 2829882, + "thread": 2 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 3065280, + "thread": 15 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 3269990, + "thread": 30 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 3312125, + "thread": 19 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 3501947, + "thread": 21 + } + }, + { + "amount": "170.320996994", + "slot": { + "period": 3684482, + "thread": 15 + } + }, + { + "amount": "170.320997002", + "slot": { + "period": 3835248, + "thread": 16 + } + } + ], + "AU12o9DQWcqzYkhXiYZMpXbEB4ZkXJ5YAbdRUuwF3RA8GBXhyGw8z": [ + { + "amount": "158.727007456", + "slot": { + "period": 147855, + "thread": 30 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 229347, + "thread": 27 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 463271, + "thread": 6 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 594685, + "thread": 31 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 717456, + "thread": 13 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 895977, + "thread": 0 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1065434, + "thread": 3 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1289088, + "thread": 27 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1391516, + "thread": 9 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1533665, + "thread": 7 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1807879, + "thread": 26 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 1833432, + "thread": 24 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2114114, + "thread": 14 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2238129, + "thread": 18 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2454237, + "thread": 3 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2539450, + "thread": 18 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2739864, + "thread": 21 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2876951, + "thread": 28 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 2983777, + "thread": 23 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 3170336, + "thread": 14 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 3298987, + "thread": 15 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 3578476, + "thread": 6 + } + }, + { + "amount": "158.727007456", + "slot": { + "period": 3636597, + "thread": 5 + } + }, + { + "amount": "158.727007453", + "slot": { + "period": 3869204, + "thread": 27 + } + } + ], + "AU12o9P2VGucjQv93aQunJ124pJL2rfRziu3qX4sZ2GnwJrrKQATo": [ + { + "amount": "100.801619441", + "slot": { + "period": 144360, + "thread": 19 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 214390, + "thread": 10 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 487506, + "thread": 9 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 566123, + "thread": 17 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 726009, + "thread": 30 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 885073, + "thread": 16 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1059991, + "thread": 25 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1299822, + "thread": 27 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1432893, + "thread": 13 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1537371, + "thread": 22 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1702107, + "thread": 24 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 1849656, + "thread": 8 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2098971, + "thread": 10 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2147349, + "thread": 14 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2310887, + "thread": 23 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2588534, + "thread": 3 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2648235, + "thread": 16 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 2897290, + "thread": 4 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 3003310, + "thread": 15 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 3285325, + "thread": 3 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 3408572, + "thread": 29 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 3451448, + "thread": 21 + } + }, + { + "amount": "100.801619441", + "slot": { + "period": 3713042, + "thread": 1 + } + }, + { + "amount": "100.801619452", + "slot": { + "period": 3801853, + "thread": 3 + } + } + ], + "AU12o9o7r2oUEamPaxHpz6nFjewAgYKiz9Di7sFag7bMk2Nfpp9mM": [ + { + "amount": "141.914322172", + "slot": { + "period": 144227, + "thread": 15 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 186513, + "thread": 21 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 337306, + "thread": 20 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 559827, + "thread": 1 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 752633, + "thread": 6 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 904752, + "thread": 22 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1034255, + "thread": 10 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1207111, + "thread": 3 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1407977, + "thread": 24 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1577204, + "thread": 17 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1658446, + "thread": 12 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 1930129, + "thread": 11 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2094458, + "thread": 11 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2175431, + "thread": 10 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2335662, + "thread": 9 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2598021, + "thread": 24 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2733170, + "thread": 29 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2901793, + "thread": 15 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 2966718, + "thread": 8 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 3191900, + "thread": 30 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 3293774, + "thread": 13 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 3604708, + "thread": 3 + } + }, + { + "amount": "141.914322172", + "slot": { + "period": 3685309, + "thread": 23 + } + }, + { + "amount": "141.914322181", + "slot": { + "period": 3885951, + "thread": 29 + } + } + ], + "AU12o9y4Ya2kbq7FpDN7cXdLLGiFKxTjEuz2xexv1ATfjGEUQu25Z": [ + { + "amount": "105.595078752", + "slot": { + "period": 100741, + "thread": 14 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 293600, + "thread": 4 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 374010, + "thread": 31 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 582981, + "thread": 2 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 795817, + "thread": 25 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 941745, + "thread": 20 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1011013, + "thread": 14 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1161975, + "thread": 9 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1336909, + "thread": 16 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1502980, + "thread": 10 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1754200, + "thread": 8 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1878090, + "thread": 1 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 1988221, + "thread": 24 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 2187541, + "thread": 23 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 2359279, + "thread": 11 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 2514786, + "thread": 28 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 2778129, + "thread": 29 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 2861672, + "thread": 6 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 3087070, + "thread": 21 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 3155538, + "thread": 20 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 3380425, + "thread": 4 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 3562680, + "thread": 1 + } + }, + { + "amount": "105.595078752", + "slot": { + "period": 3720944, + "thread": 17 + } + }, + { + "amount": "105.595078747", + "slot": { + "period": 3787860, + "thread": 6 + } + } + ], + "AU12oAkKsPSDLYsGnnZp9keTERAjgd8PTDpQKm67keRrdSi3XPRNa": [ + { + "amount": "618.418179324", + "slot": { + "period": 138493, + "thread": 0 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 280063, + "thread": 22 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 436729, + "thread": 5 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 585901, + "thread": 14 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 780510, + "thread": 16 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 923823, + "thread": 10 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1123217, + "thread": 4 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1237191, + "thread": 6 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1447917, + "thread": 2 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1508295, + "thread": 5 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1649758, + "thread": 22 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 1914749, + "thread": 4 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2053587, + "thread": 1 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2160782, + "thread": 24 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2350277, + "thread": 26 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2573239, + "thread": 7 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2672257, + "thread": 31 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 2821575, + "thread": 31 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 3109852, + "thread": 9 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 3251233, + "thread": 19 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 3369264, + "thread": 28 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 3527642, + "thread": 30 + } + }, + { + "amount": "618.418179324", + "slot": { + "period": 3690512, + "thread": 18 + } + }, + { + "amount": "618.418179315", + "slot": { + "period": 3946579, + "thread": 10 + } + } + ], + "AU12oB449gtkPPmk7kPe74UWyb31aGqyQQbJtfgsKMPVkeRoyHi3X": [ + { + "amount": "288.010621986", + "slot": { + "period": 70538, + "thread": 13 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 223083, + "thread": 0 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 428498, + "thread": 6 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 523112, + "thread": 29 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 710761, + "thread": 25 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 916482, + "thread": 29 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 987910, + "thread": 19 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 1237515, + "thread": 23 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 1357694, + "thread": 0 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 1633547, + "thread": 6 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 1714855, + "thread": 18 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 1961699, + "thread": 15 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2023596, + "thread": 24 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2167079, + "thread": 6 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2443070, + "thread": 30 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2585845, + "thread": 1 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2700950, + "thread": 24 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2811562, + "thread": 2 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 2986885, + "thread": 16 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 3205592, + "thread": 28 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 3404229, + "thread": 14 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 3573578, + "thread": 31 + } + }, + { + "amount": "288.010621986", + "slot": { + "period": 3679801, + "thread": 20 + } + }, + { + "amount": "288.010621992", + "slot": { + "period": 3928738, + "thread": 4 + } + } + ], + "AU12oBXMpTnDjMVrXuwhAUtadpmQp4hYhGjrL7xFXcnbG95EELEtX": [ + { + "amount": "443.262902622", + "slot": { + "period": 93008, + "thread": 0 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 240809, + "thread": 7 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 463066, + "thread": 20 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 495714, + "thread": 0 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 816758, + "thread": 17 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 912746, + "thread": 3 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1146719, + "thread": 17 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1203231, + "thread": 26 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1414354, + "thread": 31 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1616517, + "thread": 24 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1753145, + "thread": 9 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 1880633, + "thread": 13 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2060555, + "thread": 10 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2156285, + "thread": 16 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2366261, + "thread": 4 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2495897, + "thread": 0 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2785922, + "thread": 12 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 2896229, + "thread": 0 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 3041791, + "thread": 13 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 3158766, + "thread": 5 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 3382164, + "thread": 17 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 3513829, + "thread": 10 + } + }, + { + "amount": "443.262902622", + "slot": { + "period": 3733971, + "thread": 8 + } + }, + { + "amount": "443.262902618", + "slot": { + "period": 3791179, + "thread": 2 + } + } + ], + "AU12oBxz1wHbzCGHNib5qam7LepWdPCufffrm1WxnsHsPiUw7oKX3": [ + { + "amount": "345.673873952", + "slot": { + "period": 143657, + "thread": 24 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 241840, + "thread": 0 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 339366, + "thread": 21 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 602460, + "thread": 16 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 674253, + "thread": 14 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 898383, + "thread": 13 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1135592, + "thread": 29 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1233051, + "thread": 21 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1360474, + "thread": 23 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1611557, + "thread": 8 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1670738, + "thread": 21 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 1847382, + "thread": 15 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2097633, + "thread": 28 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2264676, + "thread": 24 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2301107, + "thread": 13 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2593930, + "thread": 25 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2721110, + "thread": 21 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 2927101, + "thread": 31 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 3102143, + "thread": 30 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 3198052, + "thread": 18 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 3378586, + "thread": 4 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 3460953, + "thread": 21 + } + }, + { + "amount": "345.673873952", + "slot": { + "period": 3766750, + "thread": 23 + } + }, + { + "amount": "345.673873941", + "slot": { + "period": 3827839, + "thread": 6 + } + } + ], + "AU12oCgXgDpKBaGXUTAUv8tRYkVV3cxkguLW4FXJbvkDd66VWMhEs": [ + { + "amount": "142.782165799", + "slot": { + "period": 96655, + "thread": 26 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 276714, + "thread": 3 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 429097, + "thread": 7 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 575986, + "thread": 26 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 769640, + "thread": 30 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 850366, + "thread": 22 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1010929, + "thread": 9 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1273853, + "thread": 21 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1406731, + "thread": 7 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1646588, + "thread": 11 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1667700, + "thread": 12 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 1961200, + "thread": 5 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2135832, + "thread": 16 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2226685, + "thread": 25 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2312259, + "thread": 7 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2474327, + "thread": 3 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2630215, + "thread": 23 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 2820250, + "thread": 16 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 3102285, + "thread": 16 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 3174229, + "thread": 21 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 3428935, + "thread": 6 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 3457595, + "thread": 26 + } + }, + { + "amount": "142.782165799", + "slot": { + "period": 3710441, + "thread": 17 + } + }, + { + "amount": "142.782165809", + "slot": { + "period": 3944145, + "thread": 8 + } + } + ], + "AU12oCjarvTXDhxEavqNVrMBcnemavzqyvp4zN2pXm7aHde2G2qcz": [ + { + "amount": "248.367692003", + "slot": { + "period": 83906, + "thread": 22 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 211560, + "thread": 27 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 342258, + "thread": 9 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 644347, + "thread": 8 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 695268, + "thread": 31 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 968739, + "thread": 22 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1125800, + "thread": 14 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1300295, + "thread": 27 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1340401, + "thread": 22 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1484634, + "thread": 18 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1678575, + "thread": 22 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 1816363, + "thread": 10 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2055551, + "thread": 29 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2271118, + "thread": 26 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2306115, + "thread": 0 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2471844, + "thread": 5 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2736154, + "thread": 23 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 2883319, + "thread": 2 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 3058047, + "thread": 13 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 3275645, + "thread": 17 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 3391543, + "thread": 11 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 3484108, + "thread": 12 + } + }, + { + "amount": "248.367692003", + "slot": { + "period": 3769723, + "thread": 30 + } + }, + { + "amount": "248.367691999", + "slot": { + "period": 3850981, + "thread": 13 + } + } + ], + "AU12oDXkUjPpAPd1GnKZLigZ3H2VTFXcr1SP33dWgQtpk7iQ1rVSw": [ + { + "amount": "81.117020620", + "slot": { + "period": 140992, + "thread": 23 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 260579, + "thread": 17 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 378931, + "thread": 25 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 604879, + "thread": 3 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 788066, + "thread": 8 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 853501, + "thread": 2 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1078957, + "thread": 25 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1189778, + "thread": 4 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1436355, + "thread": 18 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1640050, + "thread": 15 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1757545, + "thread": 2 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 1949345, + "thread": 3 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2007096, + "thread": 24 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2145167, + "thread": 6 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2339630, + "thread": 19 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2474506, + "thread": 27 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2690602, + "thread": 26 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2904153, + "thread": 5 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 2993884, + "thread": 30 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 3206485, + "thread": 20 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 3336548, + "thread": 9 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 3539975, + "thread": 30 + } + }, + { + "amount": "81.117020620", + "slot": { + "period": 3742394, + "thread": 29 + } + }, + { + "amount": "81.117020616", + "slot": { + "period": 3853046, + "thread": 16 + } + } + ], + "AU12oDqTs3xC63WZvYVWkhfswndMYh1b9pxERKEn3Cm2pB4BHBSFc": [ + { + "amount": "156.823802872", + "slot": { + "period": 51117, + "thread": 11 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 205106, + "thread": 10 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 360912, + "thread": 31 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 651230, + "thread": 25 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 796366, + "thread": 25 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 837699, + "thread": 22 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1005205, + "thread": 16 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1152982, + "thread": 26 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1332446, + "thread": 16 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1542989, + "thread": 0 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1796958, + "thread": 2 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 1890265, + "thread": 8 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2118014, + "thread": 28 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2236897, + "thread": 1 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2383638, + "thread": 27 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2608489, + "thread": 31 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2626076, + "thread": 29 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 2850509, + "thread": 29 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 3023935, + "thread": 15 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 3261330, + "thread": 30 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 3363879, + "thread": 18 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 3617545, + "thread": 20 + } + }, + { + "amount": "156.823802872", + "slot": { + "period": 3736275, + "thread": 24 + } + }, + { + "amount": "156.823802873", + "slot": { + "period": 3901701, + "thread": 0 + } + } + ], + "AU12oETRBUUGaw7swxuMxEcLAGmTxTi8ndibWhjNHRXNYjgkgZwrd": [ + { + "amount": "135.773529115", + "slot": { + "period": 117232, + "thread": 31 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 319054, + "thread": 21 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 392553, + "thread": 2 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 614902, + "thread": 4 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 742200, + "thread": 30 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 920142, + "thread": 20 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1047435, + "thread": 30 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1255128, + "thread": 15 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1379414, + "thread": 26 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1503342, + "thread": 18 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1719260, + "thread": 16 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 1962806, + "thread": 10 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2118167, + "thread": 6 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2214190, + "thread": 4 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2303950, + "thread": 25 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2595242, + "thread": 22 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2690194, + "thread": 25 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 2866693, + "thread": 23 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 3000736, + "thread": 5 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 3254735, + "thread": 31 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 3421910, + "thread": 19 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 3574962, + "thread": 24 + } + }, + { + "amount": "135.773529115", + "slot": { + "period": 3756632, + "thread": 31 + } + }, + { + "amount": "135.773529123", + "slot": { + "period": 3913019, + "thread": 19 + } + } + ], + "AU12oGqbkojKYvVb6FyUPyaM3LRYyZGfyXjexFVHzm7kjyGxdFGG1": [ + { + "amount": "215.579003576", + "slot": { + "period": 110361, + "thread": 29 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 317454, + "thread": 30 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 457122, + "thread": 28 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 617359, + "thread": 23 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 758946, + "thread": 27 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 822705, + "thread": 15 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1086250, + "thread": 6 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1266662, + "thread": 20 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1342111, + "thread": 16 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1640129, + "thread": 29 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1763797, + "thread": 20 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1885839, + "thread": 18 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 1998184, + "thread": 20 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 2224265, + "thread": 2 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 2456771, + "thread": 15 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 2467108, + "thread": 26 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 2629533, + "thread": 9 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 2845756, + "thread": 1 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 3092169, + "thread": 25 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 3266130, + "thread": 16 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 3380366, + "thread": 22 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 3488295, + "thread": 27 + } + }, + { + "amount": "215.579003576", + "slot": { + "period": 3656483, + "thread": 17 + } + }, + { + "amount": "215.579003585", + "slot": { + "period": 3906253, + "thread": 25 + } + } + ], + "AU12oHEqtAMkxLrv2B46CfVpJeQ4evJ6zZ8FdKt8ZwJCWrL24NuZv": [ + { + "amount": "170.014254957", + "slot": { + "period": 128257, + "thread": 25 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 261206, + "thread": 3 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 420783, + "thread": 11 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 508132, + "thread": 12 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 695914, + "thread": 7 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 923009, + "thread": 25 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1123705, + "thread": 22 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1193326, + "thread": 29 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1365303, + "thread": 28 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1511758, + "thread": 3 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1797625, + "thread": 23 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 1944900, + "thread": 8 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2138626, + "thread": 28 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2150760, + "thread": 16 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2399956, + "thread": 0 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2575052, + "thread": 26 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2675863, + "thread": 11 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 2853919, + "thread": 20 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 3055524, + "thread": 31 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 3233127, + "thread": 3 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 3423875, + "thread": 3 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 3601429, + "thread": 25 + } + }, + { + "amount": "170.014254957", + "slot": { + "period": 3640429, + "thread": 27 + } + }, + { + "amount": "170.014254952", + "slot": { + "period": 3841675, + "thread": 21 + } + } + ], + "AU12oHgKmAieAfNhMu6PGJSCXFKpbC7xR5Jv5gNPmy5TxDmELYQwf": [ + { + "amount": "149.329204671", + "slot": { + "period": 136027, + "thread": 20 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 299767, + "thread": 22 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 354189, + "thread": 7 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 633354, + "thread": 27 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 820595, + "thread": 15 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 942803, + "thread": 0 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1109537, + "thread": 27 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1316214, + "thread": 14 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1381224, + "thread": 15 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1484393, + "thread": 19 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1773898, + "thread": 4 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 1915266, + "thread": 6 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2132157, + "thread": 1 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2206506, + "thread": 24 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2296288, + "thread": 5 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2551769, + "thread": 12 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2758023, + "thread": 25 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2795453, + "thread": 19 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 2990214, + "thread": 6 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 3243963, + "thread": 18 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 3326842, + "thread": 25 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 3545186, + "thread": 15 + } + }, + { + "amount": "149.329204671", + "slot": { + "period": 3715884, + "thread": 4 + } + }, + { + "amount": "149.329204668", + "slot": { + "period": 3945247, + "thread": 9 + } + } + ], + "AU12oJYDoooCvd4hE6TQBsV5B3F3mJizqXLMnKdzVCRmGoatZHsfe": [ + { + "amount": "149.687963375", + "slot": { + "period": 132274, + "thread": 4 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 229985, + "thread": 25 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 330515, + "thread": 6 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 605122, + "thread": 1 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 725006, + "thread": 1 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 905456, + "thread": 24 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1032823, + "thread": 4 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1286217, + "thread": 23 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1389098, + "thread": 17 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1479912, + "thread": 6 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1789379, + "thread": 14 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 1901958, + "thread": 12 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2084988, + "thread": 16 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2255807, + "thread": 1 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2382648, + "thread": 8 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2551598, + "thread": 3 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2660337, + "thread": 4 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2879384, + "thread": 23 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 2979570, + "thread": 8 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 3264940, + "thread": 18 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 3356687, + "thread": 17 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 3595243, + "thread": 23 + } + }, + { + "amount": "149.687963375", + "slot": { + "period": 3765504, + "thread": 5 + } + }, + { + "amount": "149.687963384", + "slot": { + "period": 3943712, + "thread": 14 + } + } + ], + "AU12oJjbzJ7FHpbqjah3vngNmpiKCHdA5GZtYqKNy8AizZLrTLaJ9": [ + { + "amount": "341.588230389", + "slot": { + "period": 48938, + "thread": 14 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 313952, + "thread": 0 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 457645, + "thread": 4 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 635512, + "thread": 23 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 777381, + "thread": 10 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 923303, + "thread": 11 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1077417, + "thread": 28 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1309394, + "thread": 28 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1419758, + "thread": 31 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1508326, + "thread": 1 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1677345, + "thread": 30 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 1933027, + "thread": 17 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2004507, + "thread": 7 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2195205, + "thread": 22 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2394401, + "thread": 30 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2548129, + "thread": 17 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2790162, + "thread": 23 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 2865183, + "thread": 31 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 3103820, + "thread": 11 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 3170744, + "thread": 27 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 3407565, + "thread": 5 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 3582244, + "thread": 24 + } + }, + { + "amount": "341.588230389", + "slot": { + "period": 3776999, + "thread": 13 + } + }, + { + "amount": "341.588230379", + "slot": { + "period": 3844589, + "thread": 9 + } + } + ], + "AU12oKB4AYGEeeczC84JsiWKUsd4hk44qSA8BQ8ZYiaeVJNRMGwUW": [ + { + "amount": "140.095774496", + "slot": { + "period": 160839, + "thread": 8 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 214124, + "thread": 2 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 326210, + "thread": 30 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 493434, + "thread": 23 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 815438, + "thread": 18 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 977301, + "thread": 3 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1062525, + "thread": 19 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1156817, + "thread": 20 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1385207, + "thread": 4 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1619191, + "thread": 24 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1799610, + "thread": 9 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 1973544, + "thread": 2 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2119708, + "thread": 24 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2182871, + "thread": 26 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2431902, + "thread": 15 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2520234, + "thread": 11 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2701696, + "thread": 4 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 2932506, + "thread": 15 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 3011142, + "thread": 26 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 3275137, + "thread": 12 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 3332831, + "thread": 27 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 3569791, + "thread": 13 + } + }, + { + "amount": "140.095774496", + "slot": { + "period": 3755083, + "thread": 15 + } + }, + { + "amount": "140.095774488", + "slot": { + "period": 3875099, + "thread": 6 + } + } + ], + "AU12oKGmaHXhJ9vXPT42Mskw76iYAmWV6DW2JJ22LVUEFBRR1XZNH": [ + { + "amount": "162.205095239", + "slot": { + "period": 142642, + "thread": 20 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 285717, + "thread": 16 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 413807, + "thread": 17 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 507816, + "thread": 5 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 722677, + "thread": 7 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 881355, + "thread": 13 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1142872, + "thread": 13 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1229790, + "thread": 0 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1364370, + "thread": 26 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1571845, + "thread": 15 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1757611, + "thread": 18 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 1912759, + "thread": 18 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2106806, + "thread": 12 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2281982, + "thread": 17 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2439434, + "thread": 19 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2542394, + "thread": 10 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2649971, + "thread": 21 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 2918927, + "thread": 14 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 3099003, + "thread": 21 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 3161551, + "thread": 13 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 3369573, + "thread": 30 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 3561800, + "thread": 27 + } + }, + { + "amount": "162.205095239", + "slot": { + "period": 3622230, + "thread": 14 + } + }, + { + "amount": "162.205095245", + "slot": { + "period": 3857236, + "thread": 26 + } + } + ], + "AU12oKnuUEsLqutA3YkbyPntwL7SFYHwDEeTUoYgQeovTsEDG65uS": [ + { + "amount": "186.533219888", + "slot": { + "period": 155996, + "thread": 10 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 174229, + "thread": 24 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 461039, + "thread": 28 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 521964, + "thread": 2 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 720059, + "thread": 31 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 931428, + "thread": 18 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 986059, + "thread": 12 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 1254720, + "thread": 24 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 1362446, + "thread": 31 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 1577680, + "thread": 1 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 1650619, + "thread": 1 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 1884828, + "thread": 18 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2123436, + "thread": 3 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2152089, + "thread": 29 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2324528, + "thread": 16 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2531764, + "thread": 4 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2790726, + "thread": 9 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 2879237, + "thread": 31 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 3020311, + "thread": 28 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 3272300, + "thread": 7 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 3298247, + "thread": 26 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 3566431, + "thread": 24 + } + }, + { + "amount": "186.533219888", + "slot": { + "period": 3744245, + "thread": 5 + } + }, + { + "amount": "186.533219878", + "slot": { + "period": 3888035, + "thread": 19 + } + } + ], + "AU12oLZUu7iC59hra9ZibtepeNGzDikZ6so289yQfHLmg7MXGPhAJ": [ + { + "amount": "116.330647990", + "slot": { + "period": 121620, + "thread": 11 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 188756, + "thread": 14 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 407681, + "thread": 18 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 575538, + "thread": 16 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 730777, + "thread": 1 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 861162, + "thread": 25 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1086759, + "thread": 0 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1312458, + "thread": 14 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1330827, + "thread": 20 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1533596, + "thread": 25 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1716032, + "thread": 13 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1843660, + "thread": 29 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 1977337, + "thread": 24 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2180424, + "thread": 21 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2434721, + "thread": 10 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2576184, + "thread": 25 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2772689, + "thread": 14 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2952333, + "thread": 31 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 2954230, + "thread": 14 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 3128757, + "thread": 8 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 3391598, + "thread": 17 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 3525916, + "thread": 18 + } + }, + { + "amount": "116.330647990", + "slot": { + "period": 3724770, + "thread": 8 + } + }, + { + "amount": "116.330648000", + "slot": { + "period": 3927671, + "thread": 16 + } + } + ], + "AU12oMfNh9UtTqtFJDecxhKBaKutnTt7z3DvS5KLUr7SsYHqPhLrV": [ + { + "amount": "203.254919588", + "slot": { + "period": 77916, + "thread": 18 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 306775, + "thread": 28 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 425356, + "thread": 5 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 627007, + "thread": 18 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 699396, + "thread": 3 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 973157, + "thread": 24 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1114856, + "thread": 17 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1212351, + "thread": 12 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1429308, + "thread": 24 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1495803, + "thread": 3 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1694504, + "thread": 23 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 1852951, + "thread": 11 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2042759, + "thread": 26 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2203491, + "thread": 4 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2372090, + "thread": 4 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2555705, + "thread": 10 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2721762, + "thread": 6 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2820048, + "thread": 7 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 2993838, + "thread": 3 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 3153816, + "thread": 5 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 3301727, + "thread": 2 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 3501659, + "thread": 2 + } + }, + { + "amount": "203.254919588", + "slot": { + "period": 3746856, + "thread": 31 + } + }, + { + "amount": "203.254919594", + "slot": { + "period": 3898272, + "thread": 18 + } + } + ], + "AU12oMfozNfM7uGcHNDTnVE9S4g3DekZkrz3AmJDQwKNixKuFitUb": [ + { + "amount": "73.078650358", + "slot": { + "period": 114944, + "thread": 13 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 209928, + "thread": 7 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 333349, + "thread": 12 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 612772, + "thread": 18 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 663864, + "thread": 9 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 874918, + "thread": 15 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1004219, + "thread": 10 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1158328, + "thread": 11 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1476566, + "thread": 16 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1479742, + "thread": 23 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1694490, + "thread": 0 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 1900341, + "thread": 17 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2016315, + "thread": 17 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2161822, + "thread": 14 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2419304, + "thread": 8 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2509327, + "thread": 22 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2660332, + "thread": 4 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2846034, + "thread": 16 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 2957444, + "thread": 23 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 3179233, + "thread": 30 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 3362391, + "thread": 11 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 3573262, + "thread": 0 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 3625275, + "thread": 28 + } + }, + { + "amount": "73.078650358", + "slot": { + "period": 3861343, + "thread": 22 + } + } + ], + "AU12oNLNUHPaTYx7zCPLV66MHP3FEnsPfqjPz3NgxVirhQoKc74mi": [ + { + "amount": "509.607677598", + "slot": { + "period": 89232, + "thread": 21 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 214116, + "thread": 20 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 432899, + "thread": 7 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 625108, + "thread": 16 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 716606, + "thread": 6 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 881429, + "thread": 11 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1123851, + "thread": 5 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1307193, + "thread": 10 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1333081, + "thread": 27 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1549809, + "thread": 1 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1766896, + "thread": 15 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 1975214, + "thread": 27 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2032320, + "thread": 12 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2243480, + "thread": 8 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2345871, + "thread": 13 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2593905, + "thread": 14 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2683057, + "thread": 25 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2895163, + "thread": 28 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 2967803, + "thread": 0 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 3197221, + "thread": 26 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 3401473, + "thread": 28 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 3527704, + "thread": 6 + } + }, + { + "amount": "509.607677598", + "slot": { + "period": 3772167, + "thread": 24 + } + }, + { + "amount": "509.607677587", + "slot": { + "period": 3802779, + "thread": 18 + } + } + ], + "AU12oNez6Qp6V2DmsMtUQ4zQbcidBM4TJzEas6rNFK1VovF5WD6XN": [ + { + "amount": "306.594776249", + "slot": { + "period": 73217, + "thread": 25 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 188823, + "thread": 28 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 365596, + "thread": 24 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 593072, + "thread": 15 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 732520, + "thread": 8 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 969034, + "thread": 26 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1039134, + "thread": 3 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1209168, + "thread": 15 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1420493, + "thread": 2 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1582097, + "thread": 5 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1741922, + "thread": 0 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 1964583, + "thread": 12 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2057676, + "thread": 27 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2229798, + "thread": 10 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2444563, + "thread": 22 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2600287, + "thread": 29 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2666636, + "thread": 23 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2940317, + "thread": 17 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 2973465, + "thread": 1 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 3285929, + "thread": 3 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 3366863, + "thread": 2 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 3488542, + "thread": 20 + } + }, + { + "amount": "306.594776249", + "slot": { + "period": 3713163, + "thread": 3 + } + }, + { + "amount": "306.594776244", + "slot": { + "period": 3808986, + "thread": 2 + } + } + ], + "AU12oNuLrB7f4fqCBxa6c5zZJLcSt9J6dvhVSZwFLPhXmLDb87Hfz": [ + { + "amount": "227.284672999", + "slot": { + "period": 51899, + "thread": 6 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 302914, + "thread": 23 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 395752, + "thread": 2 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 615811, + "thread": 15 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 752945, + "thread": 1 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 973847, + "thread": 25 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1123293, + "thread": 20 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1294188, + "thread": 22 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1368863, + "thread": 9 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1642250, + "thread": 15 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1721545, + "thread": 20 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 1826286, + "thread": 31 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2082101, + "thread": 5 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2173109, + "thread": 23 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2332239, + "thread": 16 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2552579, + "thread": 7 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2723371, + "thread": 7 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 2935086, + "thread": 23 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 3057308, + "thread": 4 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 3244819, + "thread": 15 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 3361818, + "thread": 6 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 3455579, + "thread": 8 + } + }, + { + "amount": "227.284672999", + "slot": { + "period": 3663100, + "thread": 2 + } + }, + { + "amount": "227.284673010", + "slot": { + "period": 3791953, + "thread": 16 + } + } + ], + "AU12oP8SJNfYC1QG5sEkt2ZvNnEvH616XEm3AdvmgEUo53Q7NesPy": [ + { + "amount": "181.276246307", + "slot": { + "period": 72634, + "thread": 24 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 233632, + "thread": 10 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 470464, + "thread": 0 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 588795, + "thread": 28 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 747407, + "thread": 19 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 917923, + "thread": 22 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1012598, + "thread": 20 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1289562, + "thread": 17 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1379731, + "thread": 17 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1582684, + "thread": 13 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1672958, + "thread": 13 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 1930424, + "thread": 29 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2080423, + "thread": 23 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2223334, + "thread": 20 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2459170, + "thread": 22 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2561515, + "thread": 26 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2652783, + "thread": 29 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 2948517, + "thread": 13 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 3032026, + "thread": 20 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 3208610, + "thread": 8 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 3367033, + "thread": 22 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 3602803, + "thread": 5 + } + }, + { + "amount": "181.276246307", + "slot": { + "period": 3695594, + "thread": 30 + } + }, + { + "amount": "181.276246300", + "slot": { + "period": 3943886, + "thread": 25 + } + } + ], + "AU12oP9ridYACPt4esJNx12K9ShwvZqrMpmSTwxY6rQWz3atWTgk5": [ + { + "amount": "77.680456145", + "slot": { + "period": 149214, + "thread": 17 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 263143, + "thread": 7 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 356098, + "thread": 12 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 581320, + "thread": 28 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 724958, + "thread": 13 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 845790, + "thread": 0 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1042431, + "thread": 2 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1254692, + "thread": 26 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1439036, + "thread": 21 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1527083, + "thread": 12 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1701105, + "thread": 18 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 1971491, + "thread": 24 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2047182, + "thread": 2 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2161731, + "thread": 31 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2424800, + "thread": 14 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2546379, + "thread": 14 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2782140, + "thread": 0 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 2834288, + "thread": 25 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 3053568, + "thread": 5 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 3199852, + "thread": 6 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 3350310, + "thread": 20 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 3589685, + "thread": 20 + } + }, + { + "amount": "77.680456145", + "slot": { + "period": 3720587, + "thread": 22 + } + }, + { + "amount": "77.680456146", + "slot": { + "period": 3856224, + "thread": 9 + } + } + ], + "AU12oPyH73kLiPvV9BnxpFYicq5w8jDsNMK4SMXzSJt4hc6GJ47WK": [ + { + "amount": "312.890371872", + "slot": { + "period": 104070, + "thread": 17 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 307284, + "thread": 4 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 446760, + "thread": 16 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 559337, + "thread": 27 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 703548, + "thread": 16 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 871811, + "thread": 16 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1087864, + "thread": 15 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1317367, + "thread": 8 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1479221, + "thread": 10 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1578214, + "thread": 31 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1787317, + "thread": 24 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1864775, + "thread": 29 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 1988758, + "thread": 0 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 2204805, + "thread": 11 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 2341423, + "thread": 31 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 2613732, + "thread": 4 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 2782402, + "thread": 1 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 2801675, + "thread": 15 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 3047699, + "thread": 2 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 3254345, + "thread": 19 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 3399095, + "thread": 0 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 3540600, + "thread": 8 + } + }, + { + "amount": "312.890371872", + "slot": { + "period": 3651792, + "thread": 10 + } + }, + { + "amount": "312.890371862", + "slot": { + "period": 3790927, + "thread": 15 + } + } + ], + "AU12oRGgKLfJMAEScL4mUe98Yi8myWN3y3N5bf2osKqXa2MP1P2vM": [ + { + "amount": "131.962834602", + "slot": { + "period": 31772, + "thread": 25 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 255709, + "thread": 4 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 433723, + "thread": 9 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 648189, + "thread": 13 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 728167, + "thread": 12 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 941120, + "thread": 1 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1043902, + "thread": 7 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1266427, + "thread": 4 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1336963, + "thread": 30 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1493377, + "thread": 31 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1784914, + "thread": 29 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 1893472, + "thread": 21 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2133817, + "thread": 7 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2146997, + "thread": 14 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2312150, + "thread": 12 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2569150, + "thread": 12 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2677089, + "thread": 19 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 2886282, + "thread": 5 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 3120080, + "thread": 10 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 3270816, + "thread": 1 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 3411836, + "thread": 20 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 3549950, + "thread": 11 + } + }, + { + "amount": "131.962834602", + "slot": { + "period": 3679400, + "thread": 14 + } + }, + { + "amount": "131.962834597", + "slot": { + "period": 3866165, + "thread": 2 + } + } + ], + "AU12oRVkuHJd8E1fPCsfTRyqBoH5BuPXBo3D4DZG7oBfkC7xkyQUQ": [ + { + "amount": "137.177262066", + "slot": { + "period": 65092, + "thread": 9 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 186320, + "thread": 22 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 469619, + "thread": 3 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 537357, + "thread": 25 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 819170, + "thread": 13 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 854306, + "thread": 9 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 998922, + "thread": 11 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 1312330, + "thread": 15 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 1417493, + "thread": 25 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 1536263, + "thread": 20 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 1790824, + "thread": 14 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 1974658, + "thread": 4 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2005465, + "thread": 10 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2285146, + "thread": 18 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2379472, + "thread": 15 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2538857, + "thread": 27 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2774714, + "thread": 13 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2849125, + "thread": 26 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 2958144, + "thread": 15 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 3159347, + "thread": 30 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 3317471, + "thread": 10 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 3456313, + "thread": 11 + } + }, + { + "amount": "137.177262066", + "slot": { + "period": 3632311, + "thread": 4 + } + }, + { + "amount": "137.177262060", + "slot": { + "period": 3898128, + "thread": 28 + } + } + ], + "AU12oRWD3ZHbPaSju5CWGa89cpy8dYKCHEYTaMDjMAywNxWPFbbe9": [ + { + "amount": "129.592528828", + "slot": { + "period": 72226, + "thread": 31 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 273052, + "thread": 17 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 483370, + "thread": 19 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 508754, + "thread": 10 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 758461, + "thread": 5 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 894860, + "thread": 9 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1089823, + "thread": 17 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1269383, + "thread": 21 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1474958, + "thread": 28 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1541449, + "thread": 20 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1690392, + "thread": 3 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 1846533, + "thread": 30 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2039455, + "thread": 11 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2246236, + "thread": 12 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2332562, + "thread": 7 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2485283, + "thread": 13 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2700103, + "thread": 23 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2925615, + "thread": 14 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 2990187, + "thread": 7 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 3144368, + "thread": 7 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 3384391, + "thread": 6 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 3597418, + "thread": 21 + } + }, + { + "amount": "129.592528828", + "slot": { + "period": 3758227, + "thread": 15 + } + }, + { + "amount": "129.592528825", + "slot": { + "period": 3917935, + "thread": 6 + } + } + ], + "AU12oRn7AeMH96DW4Y1tWY3JqNgL7W8YfvbKou4gYoKjKv9yHKUVX": [ + { + "amount": "146.755001259", + "slot": { + "period": 110879, + "thread": 31 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 323509, + "thread": 26 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 430747, + "thread": 13 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 583678, + "thread": 13 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 711375, + "thread": 29 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 890625, + "thread": 13 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1020532, + "thread": 7 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1230275, + "thread": 17 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1378915, + "thread": 19 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1616462, + "thread": 4 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1751384, + "thread": 11 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 1858344, + "thread": 24 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2020274, + "thread": 2 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2226264, + "thread": 29 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2323137, + "thread": 11 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2480798, + "thread": 19 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2764029, + "thread": 22 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 2809682, + "thread": 21 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 3087616, + "thread": 14 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 3218962, + "thread": 20 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 3344128, + "thread": 0 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 3513128, + "thread": 1 + } + }, + { + "amount": "146.755001259", + "slot": { + "period": 3647568, + "thread": 9 + } + }, + { + "amount": "146.755001258", + "slot": { + "period": 3882626, + "thread": 18 + } + } + ], + "AU12oUA1sKhBcPexrXtyaabQp2AaKhBqmG5PvS17YotXz3uHcSaFc": [ + { + "amount": "178.128249712", + "slot": { + "period": 108214, + "thread": 7 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 256448, + "thread": 16 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 447042, + "thread": 16 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 612620, + "thread": 9 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 764277, + "thread": 11 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 844923, + "thread": 1 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1045542, + "thread": 24 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1222510, + "thread": 30 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1457658, + "thread": 18 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1603397, + "thread": 31 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1657206, + "thread": 8 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 1865399, + "thread": 24 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2057344, + "thread": 2 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2200074, + "thread": 10 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2419339, + "thread": 19 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2582273, + "thread": 23 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2651155, + "thread": 3 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 2817498, + "thread": 15 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 3003866, + "thread": 9 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 3260987, + "thread": 31 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 3375223, + "thread": 4 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 3554310, + "thread": 13 + } + }, + { + "amount": "178.128249712", + "slot": { + "period": 3624067, + "thread": 24 + } + }, + { + "amount": "178.128249709", + "slot": { + "period": 3832259, + "thread": 13 + } + } + ], + "AU12oUW47pbnkFLDGRstfej5ZxNdW1gAfwrdTigTDwcBvQ5YHiNh7": [ + { + "amount": "175.337306160", + "slot": { + "period": 22307, + "thread": 21 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 200852, + "thread": 1 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 446638, + "thread": 21 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 624797, + "thread": 19 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 657389, + "thread": 11 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 844201, + "thread": 18 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1007911, + "thread": 12 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1185160, + "thread": 31 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1394039, + "thread": 3 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1490683, + "thread": 26 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1802612, + "thread": 24 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 1861160, + "thread": 2 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2128073, + "thread": 13 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2182632, + "thread": 11 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2406550, + "thread": 20 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2533758, + "thread": 18 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2776482, + "thread": 10 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 2895865, + "thread": 9 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 3092933, + "thread": 26 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 3255284, + "thread": 3 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 3379719, + "thread": 6 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 3468280, + "thread": 28 + } + }, + { + "amount": "175.337306160", + "slot": { + "period": 3660113, + "thread": 9 + } + }, + { + "amount": "175.337306151", + "slot": { + "period": 3936938, + "thread": 13 + } + } + ], + "AU12oUkTKVdxtVfdQrxNRmcCS15raESzjak6Pq9JiEtQBsS2ej6ev": [ + { + "amount": "132.780646961", + "slot": { + "period": 39354, + "thread": 11 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 225841, + "thread": 10 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 340556, + "thread": 14 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 606832, + "thread": 19 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 675301, + "thread": 6 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 958627, + "thread": 9 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1093695, + "thread": 31 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1295692, + "thread": 15 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1456724, + "thread": 0 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1522039, + "thread": 12 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1665077, + "thread": 27 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 1886081, + "thread": 7 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2039612, + "thread": 8 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2286278, + "thread": 21 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2324065, + "thread": 8 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2573526, + "thread": 20 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2677820, + "thread": 22 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 2899875, + "thread": 22 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 3090232, + "thread": 12 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 3221093, + "thread": 11 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 3299763, + "thread": 1 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 3459347, + "thread": 30 + } + }, + { + "amount": "132.780646961", + "slot": { + "period": 3710183, + "thread": 29 + } + }, + { + "amount": "132.780646960", + "slot": { + "period": 3896018, + "thread": 16 + } + } + ], + "AU12oWU5Zz3jLFVQ53yQgLZD4ENuJZHUwoGHv9imbZ6gK9QUwVwNK": [ + { + "amount": "139.916138271", + "slot": { + "period": 72101, + "thread": 26 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 198344, + "thread": 5 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 368922, + "thread": 23 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 614094, + "thread": 18 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 785333, + "thread": 21 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 824240, + "thread": 24 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1046210, + "thread": 3 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1238570, + "thread": 25 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1318855, + "thread": 24 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1625664, + "thread": 26 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1748649, + "thread": 22 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 1857041, + "thread": 22 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2040679, + "thread": 1 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2214876, + "thread": 21 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2399394, + "thread": 29 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2546646, + "thread": 1 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2784309, + "thread": 18 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2898080, + "thread": 23 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 2984899, + "thread": 31 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 3124711, + "thread": 14 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 3448594, + "thread": 8 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 3478611, + "thread": 13 + } + }, + { + "amount": "139.916138271", + "slot": { + "period": 3647308, + "thread": 29 + } + }, + { + "amount": "139.916138281", + "slot": { + "period": 3934419, + "thread": 12 + } + } + ], + "AU12oWqYY3tFGAoa3zUKRifLeBe37fMhLGjToNfvvfxZpKo3sN4uE": [ + { + "amount": "503.611767090", + "slot": { + "period": 100249, + "thread": 9 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 265777, + "thread": 11 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 380197, + "thread": 17 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 645881, + "thread": 4 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 698553, + "thread": 2 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 973689, + "thread": 28 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1068046, + "thread": 24 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1247493, + "thread": 0 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1333856, + "thread": 20 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1597422, + "thread": 25 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1699905, + "thread": 11 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 1878110, + "thread": 18 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2109222, + "thread": 11 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2211187, + "thread": 24 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2342223, + "thread": 28 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2535283, + "thread": 17 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2710299, + "thread": 27 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 2935248, + "thread": 3 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3004125, + "thread": 17 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3250090, + "thread": 26 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3396928, + "thread": 0 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3548792, + "thread": 29 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3619124, + "thread": 15 + } + }, + { + "amount": "503.611767090", + "slot": { + "period": 3863718, + "thread": 18 + } + } + ], + "AU12oX9bgHEQPdAhMHviJCWx6JKBf1xoP7zcx5jC7MGXDGda4Xxxq": [ + { + "amount": "530.170534176", + "slot": { + "period": 89055, + "thread": 30 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 298923, + "thread": 3 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 452352, + "thread": 9 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 524797, + "thread": 27 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 661395, + "thread": 26 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 938698, + "thread": 17 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1144876, + "thread": 7 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1198449, + "thread": 30 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1362188, + "thread": 2 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1641435, + "thread": 11 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1762425, + "thread": 25 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 1942943, + "thread": 30 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2070997, + "thread": 12 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2209260, + "thread": 23 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2366960, + "thread": 24 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2467289, + "thread": 17 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2649299, + "thread": 3 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 2871806, + "thread": 11 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 3117050, + "thread": 4 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 3131606, + "thread": 2 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 3308191, + "thread": 19 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 3530600, + "thread": 18 + } + }, + { + "amount": "530.170534176", + "slot": { + "period": 3714762, + "thread": 16 + } + }, + { + "amount": "530.170534166", + "slot": { + "period": 3810519, + "thread": 26 + } + } + ], + "AU12oXM3TEWBPAjaMQ31JbxF5JPZy1tqNAFKvyo5VC6S6gpzaysxi": [ + { + "amount": "79.202125465", + "slot": { + "period": 43988, + "thread": 16 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 285973, + "thread": 15 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 379650, + "thread": 1 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 588354, + "thread": 0 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 702795, + "thread": 2 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 842780, + "thread": 0 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1091512, + "thread": 7 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1210416, + "thread": 17 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1412112, + "thread": 1 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1557715, + "thread": 23 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1673026, + "thread": 14 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1852433, + "thread": 18 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 1997619, + "thread": 23 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 2171037, + "thread": 10 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 2365910, + "thread": 2 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 2496134, + "thread": 24 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 2633396, + "thread": 16 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 2827943, + "thread": 20 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 3047786, + "thread": 15 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 3250720, + "thread": 14 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 3301690, + "thread": 10 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 3561484, + "thread": 22 + } + }, + { + "amount": "79.202125465", + "slot": { + "period": 3771875, + "thread": 12 + } + }, + { + "amount": "79.202125462", + "slot": { + "period": 3892987, + "thread": 23 + } + } + ], + "AU12oY6fqKFtKEgaDJ957gbaftm3G15kEws67XHUu5ac6fRfagfSf": [ + { + "amount": "58.308837060", + "slot": { + "period": 144193, + "thread": 6 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 176689, + "thread": 28 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 445133, + "thread": 25 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 491465, + "thread": 5 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 794167, + "thread": 1 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 977173, + "thread": 4 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1034131, + "thread": 28 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1229479, + "thread": 19 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1320748, + "thread": 30 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1491173, + "thread": 26 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1697888, + "thread": 29 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 1892627, + "thread": 18 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2122153, + "thread": 1 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2161784, + "thread": 4 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2370980, + "thread": 10 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2624165, + "thread": 5 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2742421, + "thread": 16 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 2863903, + "thread": 11 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 3106197, + "thread": 5 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 3139230, + "thread": 26 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 3308978, + "thread": 16 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 3519535, + "thread": 4 + } + }, + { + "amount": "58.308837060", + "slot": { + "period": 3676139, + "thread": 2 + } + }, + { + "amount": "58.308837061", + "slot": { + "period": 3788558, + "thread": 11 + } + } + ], + "AU12oZTUzdSJVt3NsjbfV6tWJMERHVNT81g71tYhKVm3siqeeVbPY": [ + { + "amount": "489.421906254", + "slot": { + "period": 22893, + "thread": 18 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 182813, + "thread": 6 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 469384, + "thread": 17 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 517703, + "thread": 13 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 705985, + "thread": 3 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 973639, + "thread": 2 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 986758, + "thread": 15 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1216128, + "thread": 25 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1354206, + "thread": 10 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1637261, + "thread": 21 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1727851, + "thread": 14 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1892557, + "thread": 6 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 1984301, + "thread": 31 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2255311, + "thread": 23 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2304734, + "thread": 3 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2472061, + "thread": 16 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2667604, + "thread": 2 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2898340, + "thread": 17 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 2994132, + "thread": 18 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 3222370, + "thread": 1 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 3410978, + "thread": 23 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 3477629, + "thread": 14 + } + }, + { + "amount": "489.421906254", + "slot": { + "period": 3633116, + "thread": 25 + } + }, + { + "amount": "489.421906252", + "slot": { + "period": 3931111, + "thread": 19 + } + } + ], + "AU12oanJ6oeDmtcjWtQdaKfRfr68awR85m8JZ8aY4Y4pzx3QvJbkw": [ + { + "amount": "377.023013430", + "slot": { + "period": 157097, + "thread": 29 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 275346, + "thread": 22 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 449572, + "thread": 24 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 630424, + "thread": 22 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 789936, + "thread": 10 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 905021, + "thread": 24 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1041195, + "thread": 3 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1302779, + "thread": 2 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1449027, + "thread": 25 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1580007, + "thread": 17 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1673565, + "thread": 18 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1846235, + "thread": 17 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 1978656, + "thread": 19 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 2250803, + "thread": 22 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 2387712, + "thread": 25 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 2547399, + "thread": 14 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 2679768, + "thread": 24 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 2923015, + "thread": 27 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 3036239, + "thread": 15 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 3257139, + "thread": 15 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 3400313, + "thread": 5 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 3523197, + "thread": 17 + } + }, + { + "amount": "377.023013430", + "slot": { + "period": 3709855, + "thread": 19 + } + }, + { + "amount": "377.023013436", + "slot": { + "period": 3902179, + "thread": 10 + } + } + ], + "AU12oarGASwwzyyh7fyoE6QvpXiBH5y8sWtvgSxreYTkyFb3X8aeL": [ + { + "amount": "164.589366569", + "slot": { + "period": 119594, + "thread": 12 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 277794, + "thread": 14 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 483198, + "thread": 7 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 551681, + "thread": 6 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 760085, + "thread": 27 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 932661, + "thread": 3 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1036766, + "thread": 16 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1159289, + "thread": 21 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1383947, + "thread": 3 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1495555, + "thread": 8 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1688980, + "thread": 22 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1967408, + "thread": 23 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 1985722, + "thread": 6 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 2249930, + "thread": 11 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 2323859, + "thread": 27 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 2585935, + "thread": 5 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 2772310, + "thread": 28 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 2866244, + "thread": 28 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 3085945, + "thread": 26 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 3277620, + "thread": 16 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 3292520, + "thread": 2 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 3482024, + "thread": 0 + } + }, + { + "amount": "164.589366569", + "slot": { + "period": 3681085, + "thread": 2 + } + }, + { + "amount": "164.589366558", + "slot": { + "period": 3824591, + "thread": 26 + } + } + ], + "AU12obfp2zzGpT4rjDMJ2knpnbemqDaAMLRj5LK8qHn9S6omajh4s": [ + { + "amount": "604.039917656", + "slot": { + "period": 44378, + "thread": 10 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 230777, + "thread": 20 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 366849, + "thread": 15 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 612459, + "thread": 16 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 729682, + "thread": 10 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 838390, + "thread": 0 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1065395, + "thread": 10 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1212993, + "thread": 21 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1398012, + "thread": 4 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1608655, + "thread": 8 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1647519, + "thread": 6 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 1812442, + "thread": 16 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2024151, + "thread": 15 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2242352, + "thread": 12 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2297228, + "thread": 11 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2543274, + "thread": 29 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2706803, + "thread": 24 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 2879089, + "thread": 14 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 3036418, + "thread": 11 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 3144196, + "thread": 3 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 3337888, + "thread": 28 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 3458366, + "thread": 11 + } + }, + { + "amount": "604.039917656", + "slot": { + "period": 3686002, + "thread": 4 + } + }, + { + "amount": "604.039917662", + "slot": { + "period": 3902970, + "thread": 23 + } + } + ], + "AU12obvtLTiDT1Q3m4FuAJKDacaCoZBbtY17c933g5z7Z24XLKUvg": [ + { + "amount": "130.292055526", + "slot": { + "period": 36505, + "thread": 23 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 302196, + "thread": 9 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 355109, + "thread": 24 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 611430, + "thread": 23 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 706379, + "thread": 1 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 902350, + "thread": 13 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1007416, + "thread": 9 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1267727, + "thread": 6 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1417532, + "thread": 5 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1543792, + "thread": 23 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1733061, + "thread": 15 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 1825504, + "thread": 22 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2119027, + "thread": 18 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2241239, + "thread": 17 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2353013, + "thread": 4 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2489061, + "thread": 22 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2690950, + "thread": 10 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 2846460, + "thread": 28 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 3112674, + "thread": 5 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 3261980, + "thread": 26 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 3364119, + "thread": 22 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 3528892, + "thread": 20 + } + }, + { + "amount": "130.292055526", + "slot": { + "period": 3753240, + "thread": 0 + } + }, + { + "amount": "130.292055523", + "slot": { + "period": 3860212, + "thread": 30 + } + } + ], + "AU12oc6MtpobxFUiu2dsjtFgBxR9SQWFGtjjxTzfYuvNMjwFyx5zk": [ + { + "amount": "152.801015904", + "slot": { + "period": 47812, + "thread": 22 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 214058, + "thread": 10 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 331113, + "thread": 1 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 554699, + "thread": 17 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 713160, + "thread": 22 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 935378, + "thread": 19 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1129440, + "thread": 3 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1191628, + "thread": 11 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1355599, + "thread": 12 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1509456, + "thread": 8 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1691271, + "thread": 14 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1923812, + "thread": 3 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 1998200, + "thread": 29 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 2182178, + "thread": 12 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 2425691, + "thread": 23 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 2519764, + "thread": 29 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 2718358, + "thread": 7 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 2873036, + "thread": 22 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 3118139, + "thread": 25 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 3208236, + "thread": 1 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 3433119, + "thread": 27 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 3452889, + "thread": 6 + } + }, + { + "amount": "152.801015904", + "slot": { + "period": 3712994, + "thread": 8 + } + }, + { + "amount": "152.801015911", + "slot": { + "period": 3818598, + "thread": 4 + } + } + ], + "AU12ocETSTz7Go9Psnf876WsRETdtT8xT4wxBTd8Zc6Uz4exHVubT": [ + { + "amount": "137.126464941", + "slot": { + "period": 39447, + "thread": 16 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 296221, + "thread": 23 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 419584, + "thread": 0 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 594709, + "thread": 21 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 752708, + "thread": 5 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 919003, + "thread": 17 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1140254, + "thread": 7 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1179563, + "thread": 15 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1321673, + "thread": 7 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1502522, + "thread": 19 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1693702, + "thread": 10 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 1886725, + "thread": 18 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2116506, + "thread": 25 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2171292, + "thread": 11 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2456476, + "thread": 23 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2520715, + "thread": 17 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2674151, + "thread": 29 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 2935155, + "thread": 30 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 3038132, + "thread": 0 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 3193035, + "thread": 18 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 3445542, + "thread": 10 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 3546357, + "thread": 1 + } + }, + { + "amount": "137.126464941", + "slot": { + "period": 3728360, + "thread": 21 + } + }, + { + "amount": "137.126464949", + "slot": { + "period": 3832116, + "thread": 3 + } + } + ], + "AU12ocSxcTrb9jCFaHcCtHDNHns4rmrNjVN5kDd35va4FkQnuWW6d": [ + { + "amount": "126.298788607", + "slot": { + "period": 129224, + "thread": 27 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 233926, + "thread": 21 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 376266, + "thread": 1 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 561593, + "thread": 18 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 736738, + "thread": 27 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 941311, + "thread": 20 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1101613, + "thread": 0 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1242398, + "thread": 6 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1326947, + "thread": 6 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1595996, + "thread": 0 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1780901, + "thread": 15 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1831443, + "thread": 9 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 1999209, + "thread": 26 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2199902, + "thread": 30 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2330641, + "thread": 12 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2502861, + "thread": 8 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2746970, + "thread": 27 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2889690, + "thread": 17 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 2969448, + "thread": 27 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 3250214, + "thread": 23 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 3444190, + "thread": 15 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 3544988, + "thread": 7 + } + }, + { + "amount": "126.298788607", + "slot": { + "period": 3679593, + "thread": 17 + } + }, + { + "amount": "126.298788610", + "slot": { + "period": 3843661, + "thread": 17 + } + } + ], + "AU12odM38jAmDruwpAsyuLzPezzZNGcMd4WBQiHtazSjLfgjdhB15": [ + { + "amount": "257.616238142", + "slot": { + "period": 142943, + "thread": 6 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 204043, + "thread": 8 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 463170, + "thread": 6 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 529304, + "thread": 20 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 662721, + "thread": 17 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 879316, + "thread": 27 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1006093, + "thread": 2 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1275368, + "thread": 2 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1365491, + "thread": 17 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1503674, + "thread": 14 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1774532, + "thread": 23 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 1916361, + "thread": 24 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2058388, + "thread": 8 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2274192, + "thread": 10 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2428313, + "thread": 23 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2589232, + "thread": 31 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2699127, + "thread": 16 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 2901435, + "thread": 1 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 3012111, + "thread": 25 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 3174114, + "thread": 6 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 3332497, + "thread": 1 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 3478652, + "thread": 9 + } + }, + { + "amount": "257.616238142", + "slot": { + "period": 3769504, + "thread": 7 + } + }, + { + "amount": "257.616238150", + "slot": { + "period": 3837324, + "thread": 12 + } + } + ], + "AU12odMv6ViuVGosyQ4J7AFTwKoXkH6xxHmFVhiBYojruFEBn4KMX": [ + { + "amount": "55.876818976", + "slot": { + "period": 155568, + "thread": 20 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 201337, + "thread": 10 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 336489, + "thread": 13 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 543568, + "thread": 25 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 745302, + "thread": 6 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 945146, + "thread": 1 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1054294, + "thread": 15 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1282842, + "thread": 16 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1434162, + "thread": 26 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1503867, + "thread": 6 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1766128, + "thread": 12 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1814235, + "thread": 7 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 1977680, + "thread": 4 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 2292021, + "thread": 14 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 2456487, + "thread": 31 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 2478781, + "thread": 22 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 2752482, + "thread": 23 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 2899141, + "thread": 18 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 3081663, + "thread": 11 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 3258085, + "thread": 6 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 3420198, + "thread": 6 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 3608108, + "thread": 17 + } + }, + { + "amount": "55.876818976", + "slot": { + "period": 3757987, + "thread": 14 + } + }, + { + "amount": "55.876818965", + "slot": { + "period": 3938712, + "thread": 30 + } + } + ], + "AU12oecUcVHveWfwwyayQ6q5BzYPdxdkeiqWErmCES4AC5JfxsLWh": [ + { + "amount": "247.244307406", + "slot": { + "period": 143772, + "thread": 31 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 300025, + "thread": 18 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 394121, + "thread": 17 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 599618, + "thread": 4 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 722527, + "thread": 19 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 901885, + "thread": 16 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1136436, + "thread": 18 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1313581, + "thread": 1 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1401524, + "thread": 9 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1482041, + "thread": 14 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1789979, + "thread": 29 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 1877712, + "thread": 10 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2028302, + "thread": 21 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2279447, + "thread": 18 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2379937, + "thread": 31 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2486984, + "thread": 20 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2789193, + "thread": 11 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 2935953, + "thread": 17 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 3015727, + "thread": 23 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 3193258, + "thread": 6 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 3438813, + "thread": 15 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 3503916, + "thread": 14 + } + }, + { + "amount": "247.244307406", + "slot": { + "period": 3665368, + "thread": 13 + } + }, + { + "amount": "247.244307409", + "slot": { + "period": 3856278, + "thread": 28 + } + } + ], + "AU12oefMF7L4FGjWb9fyhWDM7WuLxuKbGJikv9sy2kJ4d7xoXHpPr": [ + { + "amount": "312.815631648", + "slot": { + "period": 84811, + "thread": 16 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 308567, + "thread": 29 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 440187, + "thread": 0 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 634050, + "thread": 0 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 785671, + "thread": 10 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 879633, + "thread": 16 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1063089, + "thread": 18 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1288945, + "thread": 19 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1418156, + "thread": 19 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1502395, + "thread": 22 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1744405, + "thread": 1 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 1868955, + "thread": 11 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2115716, + "thread": 24 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2256700, + "thread": 26 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2374535, + "thread": 29 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2605280, + "thread": 3 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2694730, + "thread": 15 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 2921826, + "thread": 27 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 3108254, + "thread": 17 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 3254661, + "thread": 20 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 3295679, + "thread": 14 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 3510305, + "thread": 0 + } + }, + { + "amount": "312.815631648", + "slot": { + "period": 3628924, + "thread": 9 + } + }, + { + "amount": "312.815631643", + "slot": { + "period": 3894655, + "thread": 19 + } + } + ], + "AU12oeg2rNvgcDGpXF97bWYGbgYuoHxnpsRLFdTgpz9F69DdLvVUP": [ + { + "amount": "85.651085746", + "slot": { + "period": 62156, + "thread": 10 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 180213, + "thread": 20 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 407708, + "thread": 7 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 496840, + "thread": 10 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 729670, + "thread": 20 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 875650, + "thread": 24 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1149844, + "thread": 22 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1153642, + "thread": 9 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1406104, + "thread": 15 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1588807, + "thread": 8 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1659351, + "thread": 5 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1810738, + "thread": 8 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 1987542, + "thread": 6 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 2269910, + "thread": 11 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 2371239, + "thread": 5 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 2539830, + "thread": 27 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 2660554, + "thread": 24 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 2937217, + "thread": 9 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 3057800, + "thread": 23 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 3228297, + "thread": 16 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 3365578, + "thread": 29 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 3458891, + "thread": 1 + } + }, + { + "amount": "85.651085746", + "slot": { + "period": 3684426, + "thread": 28 + } + }, + { + "amount": "85.651085753", + "slot": { + "period": 3784881, + "thread": 15 + } + } + ], + "AU12oexgoLeV8ZAZLwSGk9pstBUFpC1iznPafv91ymqKmLMzU6qtZ": [ + { + "amount": "456.666410007", + "slot": { + "period": 119732, + "thread": 12 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 281448, + "thread": 30 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 327866, + "thread": 12 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 646045, + "thread": 0 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 797672, + "thread": 30 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 867930, + "thread": 27 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1025399, + "thread": 16 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1233024, + "thread": 19 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1465858, + "thread": 2 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1573201, + "thread": 5 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1655252, + "thread": 7 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 1851120, + "thread": 2 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2102325, + "thread": 1 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2216949, + "thread": 19 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2326033, + "thread": 26 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2492101, + "thread": 24 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2775220, + "thread": 20 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 2837694, + "thread": 30 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 3002595, + "thread": 19 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 3211134, + "thread": 31 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 3368851, + "thread": 29 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 3563923, + "thread": 5 + } + }, + { + "amount": "456.666410007", + "slot": { + "period": 3737943, + "thread": 22 + } + }, + { + "amount": "456.666410004", + "slot": { + "period": 3924337, + "thread": 12 + } + } + ], + "AU12ogKsWjrg7moiPQHbiUbZEmNkgnwR4XyhGAwYfXf2jP42tiDGX": [ + { + "amount": "191.704950288", + "slot": { + "period": 19535, + "thread": 14 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 181408, + "thread": 5 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 384312, + "thread": 17 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 589534, + "thread": 18 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 695881, + "thread": 15 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 864418, + "thread": 18 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1030436, + "thread": 21 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1277205, + "thread": 4 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1412122, + "thread": 14 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1624312, + "thread": 9 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1657916, + "thread": 22 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 1865016, + "thread": 16 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2003639, + "thread": 11 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2150390, + "thread": 14 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2357471, + "thread": 3 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2506660, + "thread": 28 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2716611, + "thread": 13 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2817908, + "thread": 26 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 2969040, + "thread": 10 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 3274585, + "thread": 15 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 3361163, + "thread": 23 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 3583626, + "thread": 30 + } + }, + { + "amount": "191.704950288", + "slot": { + "period": 3740887, + "thread": 14 + } + }, + { + "amount": "191.704950276", + "slot": { + "period": 3907524, + "thread": 13 + } + } + ], + "AU12oh7co8kqKk5Gzvdwj9EenqTefefYj8kCchJJG1NfPvnkzeT8z": [ + { + "amount": "249.357619253", + "slot": { + "period": 106847, + "thread": 17 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 318299, + "thread": 18 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 417816, + "thread": 1 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 641762, + "thread": 13 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 794698, + "thread": 29 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 887171, + "thread": 7 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1091229, + "thread": 16 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1178091, + "thread": 21 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1457144, + "thread": 7 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1574608, + "thread": 28 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1720905, + "thread": 25 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 1943868, + "thread": 24 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2109204, + "thread": 19 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2270727, + "thread": 8 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2392639, + "thread": 11 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2591908, + "thread": 26 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2725212, + "thread": 1 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 2936083, + "thread": 24 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 3062668, + "thread": 31 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 3283974, + "thread": 9 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 3429327, + "thread": 7 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 3583331, + "thread": 15 + } + }, + { + "amount": "249.357619253", + "slot": { + "period": 3699424, + "thread": 11 + } + }, + { + "amount": "249.357619252", + "slot": { + "period": 3934980, + "thread": 29 + } + } + ], + "AU12ohD4Ust4CJgwyvtkmfocmjPy3q4oca8LNzwchv5TSewhzcEqz": [ + { + "amount": "475.192216830", + "slot": { + "period": 38265, + "thread": 30 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 210819, + "thread": 16 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 391842, + "thread": 7 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 589376, + "thread": 2 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 756836, + "thread": 20 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 911440, + "thread": 7 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1007479, + "thread": 17 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1300462, + "thread": 15 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1467256, + "thread": 11 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1516043, + "thread": 4 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1700934, + "thread": 22 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 1969774, + "thread": 15 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2119185, + "thread": 25 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2173464, + "thread": 23 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2445720, + "thread": 13 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2565959, + "thread": 2 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2694356, + "thread": 31 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 2808943, + "thread": 15 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 3103617, + "thread": 5 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 3249672, + "thread": 5 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 3372826, + "thread": 7 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 3544677, + "thread": 5 + } + }, + { + "amount": "475.192216830", + "slot": { + "period": 3641599, + "thread": 4 + } + }, + { + "amount": "475.192216839", + "slot": { + "period": 3788263, + "thread": 7 + } + } + ], + "AU12ohgQew82eBTXp814MznUmt2HLz5fdiWWAXrxxKn43a5vL6eFQ": [ + { + "amount": "53.018022430", + "slot": { + "period": 26109, + "thread": 26 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 176154, + "thread": 6 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 413942, + "thread": 12 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 540427, + "thread": 15 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 819323, + "thread": 13 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 865745, + "thread": 14 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1146260, + "thread": 7 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1254758, + "thread": 26 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1366829, + "thread": 3 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1485167, + "thread": 5 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1664996, + "thread": 2 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 1854064, + "thread": 5 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2075832, + "thread": 21 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2216787, + "thread": 15 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2409612, + "thread": 6 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2532327, + "thread": 21 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2656544, + "thread": 4 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2913259, + "thread": 27 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 2987696, + "thread": 3 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 3238273, + "thread": 22 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 3316866, + "thread": 1 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 3613479, + "thread": 21 + } + }, + { + "amount": "53.018022430", + "slot": { + "period": 3637104, + "thread": 4 + } + }, + { + "amount": "53.018022429", + "slot": { + "period": 3790392, + "thread": 19 + } + } + ], + "AU12oimyUCDgvneCM9Vv3nNTU17J3e1Ahq9tXN79Ss94W5eBkKdo5": [ + { + "amount": "138.522778665", + "slot": { + "period": 85197, + "thread": 15 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 200423, + "thread": 5 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 364916, + "thread": 8 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 493575, + "thread": 27 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 776590, + "thread": 30 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 886944, + "thread": 29 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1081911, + "thread": 28 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1179770, + "thread": 29 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1342397, + "thread": 17 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1512606, + "thread": 17 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1672482, + "thread": 23 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 1964445, + "thread": 16 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2012677, + "thread": 31 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2254887, + "thread": 24 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2439285, + "thread": 0 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2562325, + "thread": 4 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2649649, + "thread": 5 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 2799037, + "thread": 4 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 3058577, + "thread": 17 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 3124351, + "thread": 10 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 3444707, + "thread": 1 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 3477703, + "thread": 18 + } + }, + { + "amount": "138.522778665", + "slot": { + "period": 3688700, + "thread": 21 + } + }, + { + "amount": "138.522778654", + "slot": { + "period": 3804031, + "thread": 10 + } + } + ], + "AU12oj7T1MYTxxqama7oXrzHc5qZPgUgeCPvN9jFaww2Jy2PReSvb": [ + { + "amount": "99.087414013", + "slot": { + "period": 59239, + "thread": 11 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 245810, + "thread": 23 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 399126, + "thread": 11 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 560054, + "thread": 8 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 764241, + "thread": 11 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 827604, + "thread": 27 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1146801, + "thread": 23 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1186851, + "thread": 19 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1427152, + "thread": 19 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1641116, + "thread": 11 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1716789, + "thread": 9 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 1869921, + "thread": 13 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2002216, + "thread": 8 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2200307, + "thread": 27 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2321777, + "thread": 4 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2585880, + "thread": 26 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2754029, + "thread": 16 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 2848811, + "thread": 19 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 3042258, + "thread": 26 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 3135266, + "thread": 27 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 3321107, + "thread": 7 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 3585021, + "thread": 11 + } + }, + { + "amount": "99.087414013", + "slot": { + "period": 3735423, + "thread": 1 + } + }, + { + "amount": "99.087414011", + "slot": { + "period": 3853152, + "thread": 17 + } + } + ], + "AU12om4Xazo9ZVDA7cBNHwd4QB56PNmvqok8pVbbrUGdaLT1KJT9y": [ + { + "amount": "363.075394583", + "slot": { + "period": 70042, + "thread": 6 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 302903, + "thread": 8 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 426292, + "thread": 14 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 571507, + "thread": 19 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 690271, + "thread": 7 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 846298, + "thread": 8 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1081299, + "thread": 5 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1179004, + "thread": 15 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1359219, + "thread": 9 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1554599, + "thread": 30 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1734716, + "thread": 14 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 1912118, + "thread": 28 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2029722, + "thread": 17 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2279968, + "thread": 17 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2313618, + "thread": 15 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2547784, + "thread": 8 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2776519, + "thread": 10 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 2813635, + "thread": 6 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 3015366, + "thread": 11 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 3189581, + "thread": 5 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 3291768, + "thread": 9 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 3519028, + "thread": 12 + } + }, + { + "amount": "363.075394583", + "slot": { + "period": 3659707, + "thread": 11 + } + }, + { + "amount": "363.075394587", + "slot": { + "period": 3798919, + "thread": 31 + } + } + ], + "AU12omJhXBBFLm2bTfBxTDMWcJYDgstexSm6e5SVcMjJwbyCTXaSe": [ + { + "amount": "205.589317829", + "slot": { + "period": 122475, + "thread": 5 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 322655, + "thread": 21 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 453769, + "thread": 17 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 505597, + "thread": 17 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 666376, + "thread": 18 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 913344, + "thread": 5 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1110274, + "thread": 12 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1161773, + "thread": 25 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1402756, + "thread": 12 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1573305, + "thread": 15 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1679632, + "thread": 19 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 1907446, + "thread": 14 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2125966, + "thread": 23 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2158882, + "thread": 17 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2459859, + "thread": 25 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2559370, + "thread": 29 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2751486, + "thread": 5 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 2940598, + "thread": 24 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 3114937, + "thread": 24 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 3131626, + "thread": 30 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 3294806, + "thread": 30 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 3547481, + "thread": 21 + } + }, + { + "amount": "205.589317829", + "slot": { + "period": 3779569, + "thread": 25 + } + }, + { + "amount": "205.589317832", + "slot": { + "period": 3945953, + "thread": 12 + } + } + ], + "AU12omQVc9oqgMdf9pdLYmssFLxegr1AuVGN8hvYd2XGBXnAr1r9G": [ + { + "amount": "185.592296928", + "slot": { + "period": 127179, + "thread": 29 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 292137, + "thread": 16 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 414345, + "thread": 31 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 540978, + "thread": 20 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 658788, + "thread": 3 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 861545, + "thread": 13 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 997557, + "thread": 5 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 1228633, + "thread": 0 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 1377848, + "thread": 8 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 1581678, + "thread": 0 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 1713446, + "thread": 20 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 1965619, + "thread": 3 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2128083, + "thread": 31 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2246684, + "thread": 2 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2400681, + "thread": 13 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2621732, + "thread": 7 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2738730, + "thread": 31 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 2934000, + "thread": 6 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 3063314, + "thread": 26 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 3263930, + "thread": 29 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 3432157, + "thread": 16 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 3608068, + "thread": 6 + } + }, + { + "amount": "185.592296928", + "slot": { + "period": 3702595, + "thread": 7 + } + }, + { + "amount": "185.592296930", + "slot": { + "period": 3813637, + "thread": 22 + } + } + ], + "AU12omxXf8oZ6rF9xxZ27qfY9vSWvTtqcTyocS1xBEwQ6HCJyREY5": [ + { + "amount": "122.433769785", + "slot": { + "period": 109212, + "thread": 1 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 257123, + "thread": 30 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 476640, + "thread": 26 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 548765, + "thread": 14 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 705635, + "thread": 16 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 831356, + "thread": 20 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1138265, + "thread": 1 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1156449, + "thread": 4 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1334547, + "thread": 3 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1500349, + "thread": 29 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1665112, + "thread": 3 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 1830070, + "thread": 26 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2060076, + "thread": 7 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2147453, + "thread": 14 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2409557, + "thread": 20 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2604152, + "thread": 30 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2739140, + "thread": 15 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 2848114, + "thread": 14 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 3052223, + "thread": 3 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 3186189, + "thread": 23 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 3386616, + "thread": 7 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 3551303, + "thread": 18 + } + }, + { + "amount": "122.433769785", + "slot": { + "period": 3721041, + "thread": 23 + } + }, + { + "amount": "122.433769792", + "slot": { + "period": 3854920, + "thread": 24 + } + } + ], + "AU12on4SPN7281rAk2sW7JQ1QiPfpSxGVRHubVATJJttqhUvgNqmR": [ + { + "amount": "413.936643727", + "slot": { + "period": 42388, + "thread": 19 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 179496, + "thread": 19 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 482041, + "thread": 11 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 513280, + "thread": 24 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 694765, + "thread": 15 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 905752, + "thread": 27 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1046397, + "thread": 26 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1254225, + "thread": 7 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1333691, + "thread": 14 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1624810, + "thread": 11 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1727962, + "thread": 3 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1828331, + "thread": 25 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 1986969, + "thread": 10 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2198587, + "thread": 22 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2460327, + "thread": 14 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2534650, + "thread": 1 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2785966, + "thread": 12 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2904582, + "thread": 5 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 2982635, + "thread": 15 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 3243573, + "thread": 13 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 3410469, + "thread": 21 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 3539258, + "thread": 20 + } + }, + { + "amount": "413.936643727", + "slot": { + "period": 3632508, + "thread": 18 + } + }, + { + "amount": "413.936643721", + "slot": { + "period": 3796823, + "thread": 20 + } + } + ], + "AU12onM7izeGc2Q2HCip5Cigpiiieccv8ZyE4VRqwmrwPFUp27Xdg": [ + { + "amount": "308.733639461", + "slot": { + "period": 143424, + "thread": 31 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 286395, + "thread": 20 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 386800, + "thread": 27 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 604982, + "thread": 28 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 775310, + "thread": 20 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 942029, + "thread": 18 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1068392, + "thread": 30 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1288988, + "thread": 18 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1369524, + "thread": 29 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1554799, + "thread": 11 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1805620, + "thread": 11 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 1884199, + "thread": 21 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2046125, + "thread": 21 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2182942, + "thread": 1 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2461972, + "thread": 8 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2557955, + "thread": 6 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2752223, + "thread": 5 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 2947620, + "thread": 8 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 3036665, + "thread": 15 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 3146992, + "thread": 1 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 3307582, + "thread": 26 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 3462776, + "thread": 22 + } + }, + { + "amount": "308.733639461", + "slot": { + "period": 3681315, + "thread": 21 + } + }, + { + "amount": "308.733639470", + "slot": { + "period": 3810811, + "thread": 23 + } + } + ], + "AU12onQMvSzhCQ6TSd8JRzBaqiYYBQZK2tmfjHMYkHtdYDhp19fbH": [ + { + "amount": "81.397151135", + "slot": { + "period": 122056, + "thread": 29 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 292107, + "thread": 31 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 421990, + "thread": 2 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 609425, + "thread": 5 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 737272, + "thread": 5 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 964859, + "thread": 15 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1081167, + "thread": 27 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1199959, + "thread": 22 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1376498, + "thread": 25 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1539003, + "thread": 8 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1783166, + "thread": 13 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 1932165, + "thread": 9 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2101300, + "thread": 6 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2169324, + "thread": 0 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2329961, + "thread": 17 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2497224, + "thread": 30 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2638020, + "thread": 7 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2913927, + "thread": 23 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 2996975, + "thread": 10 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 3182460, + "thread": 13 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 3377931, + "thread": 24 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 3513888, + "thread": 31 + } + }, + { + "amount": "81.397151135", + "slot": { + "period": 3702672, + "thread": 11 + } + }, + { + "amount": "81.397151125", + "slot": { + "period": 3837852, + "thread": 8 + } + } + ], + "AU12onZ2WyUpbtjs87xnAUGoMZCMKvhoXzpCu4KE5kmUBYAPY6XYW": [ + { + "amount": "58.271717159", + "slot": { + "period": 119459, + "thread": 22 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 257829, + "thread": 13 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 451239, + "thread": 9 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 564797, + "thread": 15 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 775516, + "thread": 9 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 967840, + "thread": 4 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1041921, + "thread": 31 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1202204, + "thread": 23 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1333642, + "thread": 20 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1606749, + "thread": 2 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1768684, + "thread": 10 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 1924867, + "thread": 17 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2008707, + "thread": 11 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2260353, + "thread": 20 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2394587, + "thread": 8 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2609275, + "thread": 29 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2661024, + "thread": 12 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2924941, + "thread": 22 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 2993655, + "thread": 1 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 3221211, + "thread": 13 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 3373669, + "thread": 15 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 3543077, + "thread": 31 + } + }, + { + "amount": "58.271717159", + "slot": { + "period": 3751151, + "thread": 30 + } + }, + { + "amount": "58.271717157", + "slot": { + "period": 3916283, + "thread": 9 + } + } + ], + "AU12onhhLrBspK1gQVuYDgmvCu2qPubsb97YnJTmdD8iNrSkSWPZZ": [ + { + "amount": "257.266245446", + "slot": { + "period": 74399, + "thread": 16 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 294557, + "thread": 24 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 378686, + "thread": 0 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 615515, + "thread": 24 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 781080, + "thread": 26 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 903061, + "thread": 21 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 996486, + "thread": 30 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 1157230, + "thread": 14 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 1444558, + "thread": 2 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 1528003, + "thread": 26 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 1749721, + "thread": 6 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 1934978, + "thread": 21 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2080432, + "thread": 14 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2181406, + "thread": 2 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2371414, + "thread": 16 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2487780, + "thread": 21 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2681983, + "thread": 16 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 2915488, + "thread": 5 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 3017147, + "thread": 20 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 3177340, + "thread": 31 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 3381532, + "thread": 7 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 3521444, + "thread": 24 + } + }, + { + "amount": "257.266245446", + "slot": { + "period": 3649254, + "thread": 19 + } + }, + { + "amount": "257.266245452", + "slot": { + "period": 3902847, + "thread": 26 + } + } + ], + "AU12oniRKLVLioG38kH6XQVgovCbsEmQ2ia27b9AqybA9cyzMLxNH": [ + { + "amount": "490.039741615", + "slot": { + "period": 15875, + "thread": 4 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 242040, + "thread": 0 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 432693, + "thread": 29 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 512854, + "thread": 15 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 748008, + "thread": 13 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 935310, + "thread": 24 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1100144, + "thread": 15 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1306812, + "thread": 12 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1436327, + "thread": 3 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1481193, + "thread": 18 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1719860, + "thread": 8 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 1847317, + "thread": 4 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2024832, + "thread": 6 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2284600, + "thread": 1 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2403510, + "thread": 13 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2541080, + "thread": 15 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2640168, + "thread": 11 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 2857424, + "thread": 12 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 3056693, + "thread": 5 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 3225538, + "thread": 31 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 3382999, + "thread": 26 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 3475179, + "thread": 17 + } + }, + { + "amount": "490.039741615", + "slot": { + "period": 3629362, + "thread": 17 + } + }, + { + "amount": "490.039741616", + "slot": { + "period": 3862473, + "thread": 9 + } + } + ], + "AU12oo4j8yL91aEDt7V9NbtFB1FdiKYsV6XXwkoWsZxGUm4HgawHC": [ + { + "amount": "132.512177418", + "slot": { + "period": 82251, + "thread": 18 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 264572, + "thread": 1 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 371578, + "thread": 3 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 541571, + "thread": 2 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 692748, + "thread": 7 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 897890, + "thread": 12 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1046022, + "thread": 3 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1176594, + "thread": 25 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1453094, + "thread": 0 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1564770, + "thread": 30 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1732409, + "thread": 22 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 1889750, + "thread": 13 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2079827, + "thread": 7 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2268045, + "thread": 29 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2416829, + "thread": 6 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2591590, + "thread": 3 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2647984, + "thread": 6 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 2858599, + "thread": 2 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 3091204, + "thread": 21 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 3181746, + "thread": 27 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 3339476, + "thread": 28 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 3546282, + "thread": 17 + } + }, + { + "amount": "132.512177418", + "slot": { + "period": 3763317, + "thread": 9 + } + }, + { + "amount": "132.512177415", + "slot": { + "period": 3794012, + "thread": 23 + } + } + ], + "AU12ooPZVJgJ6S9EpkfV7DpopaUUFmg5xCJrRjVHPPaqyQ7phhdmo": [ + { + "amount": "181.776067500", + "slot": { + "period": 137991, + "thread": 13 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 318780, + "thread": 10 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 375663, + "thread": 27 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 495251, + "thread": 15 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 737465, + "thread": 8 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 888576, + "thread": 10 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1148002, + "thread": 4 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1174912, + "thread": 0 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1345372, + "thread": 23 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1621328, + "thread": 1 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1757193, + "thread": 9 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 1913272, + "thread": 4 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2037819, + "thread": 13 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2249344, + "thread": 20 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2417086, + "thread": 28 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2588561, + "thread": 18 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2626750, + "thread": 8 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 2836669, + "thread": 7 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 3110262, + "thread": 29 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 3215428, + "thread": 16 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 3372187, + "thread": 14 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 3474625, + "thread": 10 + } + }, + { + "amount": "181.776067500", + "slot": { + "period": 3673131, + "thread": 20 + } + }, + { + "amount": "181.776067511", + "slot": { + "period": 3832075, + "thread": 5 + } + } + ], + "AU12opLj76CU7d2ZFZ6KAhFwgonMdc6KPjm7pd1xcHRNe4YcsK1vh": [ + { + "amount": "293.594155866", + "slot": { + "period": 164121, + "thread": 27 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 250291, + "thread": 19 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 488670, + "thread": 18 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 506286, + "thread": 26 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 701244, + "thread": 9 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 924573, + "thread": 5 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1147253, + "thread": 1 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1193660, + "thread": 17 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1469481, + "thread": 19 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1505080, + "thread": 18 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1805974, + "thread": 10 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 1922597, + "thread": 21 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2049091, + "thread": 31 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2168021, + "thread": 19 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2357397, + "thread": 2 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2571971, + "thread": 23 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2719812, + "thread": 17 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2851157, + "thread": 30 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 2971941, + "thread": 23 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 3212129, + "thread": 14 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 3354823, + "thread": 3 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 3597929, + "thread": 23 + } + }, + { + "amount": "293.594155866", + "slot": { + "period": 3762233, + "thread": 1 + } + }, + { + "amount": "293.594155871", + "slot": { + "period": 3910789, + "thread": 10 + } + } + ], + "AU12opx7nS2HzeT35pZbEbRPKweM2Lj3yp6du5oDsrWJovEa9RR7F": [ + { + "amount": "133.601281319", + "slot": { + "period": 75393, + "thread": 27 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 168494, + "thread": 30 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 421537, + "thread": 17 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 546233, + "thread": 20 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 731733, + "thread": 15 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 924353, + "thread": 21 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1063078, + "thread": 23 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1153171, + "thread": 1 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1381575, + "thread": 14 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1539710, + "thread": 14 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1786244, + "thread": 4 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 1852475, + "thread": 0 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2082280, + "thread": 6 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2214704, + "thread": 31 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2329394, + "thread": 29 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2613901, + "thread": 7 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2717605, + "thread": 11 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 2798438, + "thread": 19 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 3004306, + "thread": 2 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 3198297, + "thread": 16 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 3310555, + "thread": 0 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 3608802, + "thread": 24 + } + }, + { + "amount": "133.601281319", + "slot": { + "period": 3746503, + "thread": 23 + } + }, + { + "amount": "133.601281327", + "slot": { + "period": 3915617, + "thread": 11 + } + } + ], + "AU12oqRqZ5TQFVEFTYJzpwBxEtn6buCvFUTo4mi6L8GQ9fhCiBMN9": [ + { + "amount": "675.590991124", + "slot": { + "period": 123036, + "thread": 13 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 250359, + "thread": 22 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 334137, + "thread": 18 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 541818, + "thread": 9 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 686951, + "thread": 26 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 955842, + "thread": 15 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 989330, + "thread": 25 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 1186845, + "thread": 17 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 1478928, + "thread": 30 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 1540149, + "thread": 26 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 1735606, + "thread": 5 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 1857258, + "thread": 0 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2053706, + "thread": 3 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2181257, + "thread": 23 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2417246, + "thread": 24 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2536483, + "thread": 15 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2702462, + "thread": 31 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2880787, + "thread": 9 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 2956375, + "thread": 19 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 3160545, + "thread": 19 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 3319828, + "thread": 29 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 3552019, + "thread": 16 + } + }, + { + "amount": "675.590991124", + "slot": { + "period": 3769969, + "thread": 8 + } + }, + { + "amount": "675.590991134", + "slot": { + "period": 3842889, + "thread": 31 + } + } + ], + "AU12orPf14hQ4gaK1GtK8Czvo1cBPwJffKDR82RSjFKPRFBXP4BWt": [ + { + "amount": "140.301254351", + "slot": { + "period": 126662, + "thread": 7 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 188225, + "thread": 22 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 412109, + "thread": 24 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 595858, + "thread": 23 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 693707, + "thread": 30 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 971310, + "thread": 21 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1066846, + "thread": 9 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1255967, + "thread": 15 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1322438, + "thread": 25 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1554422, + "thread": 13 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1726278, + "thread": 21 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 1828524, + "thread": 2 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2103718, + "thread": 14 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2288243, + "thread": 25 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2414669, + "thread": 12 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2600845, + "thread": 26 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2758343, + "thread": 5 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 2947167, + "thread": 28 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 3101891, + "thread": 11 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 3122550, + "thread": 27 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 3297639, + "thread": 27 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 3547268, + "thread": 29 + } + }, + { + "amount": "140.301254351", + "slot": { + "period": 3666242, + "thread": 22 + } + }, + { + "amount": "140.301254343", + "slot": { + "period": 3792975, + "thread": 31 + } + } + ], + "AU12orzxVEuZKZEESPoGARPtffzuuQcrWRvXb4ahHLsE7eNu3FRD5": [ + { + "amount": "77.594196232", + "slot": { + "period": 120725, + "thread": 30 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 222549, + "thread": 11 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 488968, + "thread": 6 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 519159, + "thread": 15 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 816402, + "thread": 23 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 869105, + "thread": 31 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1098784, + "thread": 13 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1187092, + "thread": 16 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1396316, + "thread": 3 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1605080, + "thread": 10 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1731459, + "thread": 30 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1976138, + "thread": 21 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 1989171, + "thread": 8 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 2153400, + "thread": 14 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 2441833, + "thread": 5 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 2480868, + "thread": 7 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 2636869, + "thread": 16 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 2839022, + "thread": 8 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 3099656, + "thread": 31 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 3175280, + "thread": 7 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 3446135, + "thread": 3 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 3575624, + "thread": 21 + } + }, + { + "amount": "77.594196232", + "slot": { + "period": 3702520, + "thread": 15 + } + }, + { + "amount": "77.594196228", + "slot": { + "period": 3801548, + "thread": 4 + } + } + ], + "AU12os3LWq9UTPiLbmMT2dyxyhNA9Ex5bPcqzT9egR5yVeQUdJYro": [ + { + "amount": "270.725211100", + "slot": { + "period": 66595, + "thread": 28 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 256125, + "thread": 31 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 395180, + "thread": 11 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 510268, + "thread": 13 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 784975, + "thread": 5 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 824965, + "thread": 10 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1039150, + "thread": 15 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1223172, + "thread": 17 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1333328, + "thread": 20 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1518637, + "thread": 23 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1666972, + "thread": 9 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 1824239, + "thread": 30 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2137575, + "thread": 9 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2188489, + "thread": 0 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2309919, + "thread": 29 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2485800, + "thread": 1 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2682632, + "thread": 27 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 2900642, + "thread": 8 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 3090008, + "thread": 26 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 3232587, + "thread": 17 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 3303929, + "thread": 29 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 3458489, + "thread": 12 + } + }, + { + "amount": "270.725211100", + "slot": { + "period": 3751044, + "thread": 26 + } + }, + { + "amount": "270.725211104", + "slot": { + "period": 3820669, + "thread": 22 + } + } + ], + "AU12osv1pVRkW6nRjQzPpAenS4CTiwfuswHLmH8bNRAxf1FdJcJed": [ + { + "amount": "318.598456863", + "slot": { + "period": 67981, + "thread": 14 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 252330, + "thread": 17 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 339517, + "thread": 9 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 515114, + "thread": 3 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 710358, + "thread": 0 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 919033, + "thread": 10 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 999429, + "thread": 10 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 1170902, + "thread": 20 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 1459137, + "thread": 7 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 1627880, + "thread": 14 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 1662795, + "thread": 24 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 1828135, + "thread": 14 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2079009, + "thread": 2 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2282915, + "thread": 21 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2443466, + "thread": 8 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2500219, + "thread": 15 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2678903, + "thread": 26 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 2922668, + "thread": 23 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 3026706, + "thread": 30 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 3145540, + "thread": 9 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 3432321, + "thread": 29 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 3510600, + "thread": 2 + } + }, + { + "amount": "318.598456863", + "slot": { + "period": 3711167, + "thread": 25 + } + }, + { + "amount": "318.598456856", + "slot": { + "period": 3892054, + "thread": 8 + } + } + ], + "AU12oswwvUPESSX9gs5KYaF9kfo5zDR33eMiQRPMV4HHN2ATHQNr2": [ + { + "amount": "302.679349468", + "slot": { + "period": 112961, + "thread": 3 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 289957, + "thread": 22 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 419114, + "thread": 4 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 525968, + "thread": 6 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 665411, + "thread": 26 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 861223, + "thread": 3 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1079314, + "thread": 14 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1194598, + "thread": 24 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1363808, + "thread": 6 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1636074, + "thread": 2 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1779494, + "thread": 16 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 1909294, + "thread": 13 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2117768, + "thread": 2 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2186934, + "thread": 27 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2436449, + "thread": 14 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2555005, + "thread": 1 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2752534, + "thread": 13 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2809909, + "thread": 28 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 2972806, + "thread": 5 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 3146324, + "thread": 2 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 3416170, + "thread": 27 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 3465093, + "thread": 26 + } + }, + { + "amount": "302.679349468", + "slot": { + "period": 3711154, + "thread": 5 + } + }, + { + "amount": "302.679349458", + "slot": { + "period": 3881700, + "thread": 8 + } + } + ], + "AU12ot8xzhJ1nAinx9cqnUMvREQ37xuzUWgaLqw242XDLAP5wcFdu": [ + { + "amount": "111.024200138", + "slot": { + "period": 148643, + "thread": 5 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 314638, + "thread": 15 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 389692, + "thread": 1 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 635604, + "thread": 26 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 754254, + "thread": 5 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 874020, + "thread": 31 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1049092, + "thread": 16 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1201419, + "thread": 1 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1377544, + "thread": 30 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1569632, + "thread": 25 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1657343, + "thread": 5 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 1855606, + "thread": 8 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2072112, + "thread": 15 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2287181, + "thread": 13 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2296239, + "thread": 11 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2493253, + "thread": 12 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2790386, + "thread": 6 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2902483, + "thread": 18 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 2986440, + "thread": 30 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 3229447, + "thread": 20 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 3438129, + "thread": 24 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 3517438, + "thread": 23 + } + }, + { + "amount": "111.024200138", + "slot": { + "period": 3626098, + "thread": 2 + } + }, + { + "amount": "111.024200128", + "slot": { + "period": 3921579, + "thread": 5 + } + } + ], + "AU12otDRV6cjT1Ms8MWrNGw2L47PCHCdtfAC4GrWr9SJM7kP8ynP2": [ + { + "amount": "583.333333333", + "slot": { + "period": 33768, + "thread": 7 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 302369, + "thread": 31 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 412061, + "thread": 4 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 579418, + "thread": 26 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 716154, + "thread": 21 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 849964, + "thread": 30 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1132011, + "thread": 11 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1262286, + "thread": 5 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1325387, + "thread": 14 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1486670, + "thread": 2 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1785089, + "thread": 17 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 1873992, + "thread": 13 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2081797, + "thread": 0 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2286697, + "thread": 6 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2316742, + "thread": 15 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2474325, + "thread": 22 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2722535, + "thread": 24 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2856811, + "thread": 27 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 2995284, + "thread": 0 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 3236680, + "thread": 27 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 3402392, + "thread": 0 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 3475263, + "thread": 28 + } + }, + { + "amount": "583.333333333", + "slot": { + "period": 3708064, + "thread": 3 + } + }, + { + "amount": "583.333333341", + "slot": { + "period": 3797120, + "thread": 30 + } + } + ], + "AU12otu5brhsv1JdXyqhqBgxuJgJXKrnQqkBtGjzDrQA7AbvVT1jZ": [ + { + "amount": "650.994513479", + "slot": { + "period": 165655, + "thread": 4 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 234112, + "thread": 26 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 406417, + "thread": 28 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 621641, + "thread": 22 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 739252, + "thread": 23 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 925072, + "thread": 12 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1088045, + "thread": 14 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1228398, + "thread": 19 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1432725, + "thread": 19 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1635892, + "thread": 14 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1763402, + "thread": 24 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 1860655, + "thread": 18 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2108568, + "thread": 26 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2292117, + "thread": 3 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2461152, + "thread": 25 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2493261, + "thread": 19 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2678210, + "thread": 5 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2859238, + "thread": 3 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 2958319, + "thread": 26 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 3272132, + "thread": 0 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 3356104, + "thread": 28 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 3613880, + "thread": 14 + } + }, + { + "amount": "650.994513479", + "slot": { + "period": 3768789, + "thread": 14 + } + }, + { + "amount": "650.994513468", + "slot": { + "period": 3837176, + "thread": 31 + } + } + ], + "AU12ouDT7BpSUzNKgYqipsFZkjtw7WJARqJe1m6pmkUTfoEiLrrB5": [ + { + "amount": "81.004745362", + "slot": { + "period": 26497, + "thread": 26 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 174735, + "thread": 12 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 475949, + "thread": 5 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 637212, + "thread": 5 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 731537, + "thread": 3 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 867920, + "thread": 27 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1014207, + "thread": 21 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1285764, + "thread": 12 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1361450, + "thread": 5 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1573020, + "thread": 4 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1696444, + "thread": 18 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 1957429, + "thread": 4 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2091730, + "thread": 13 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2260553, + "thread": 23 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2449023, + "thread": 23 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2539269, + "thread": 3 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2717432, + "thread": 22 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 2817999, + "thread": 9 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 3119217, + "thread": 14 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 3248813, + "thread": 16 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 3388476, + "thread": 22 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 3459588, + "thread": 10 + } + }, + { + "amount": "81.004745362", + "slot": { + "period": 3703843, + "thread": 3 + } + }, + { + "amount": "81.004745364", + "slot": { + "period": 3873230, + "thread": 19 + } + } + ], + "AU12ouambveGBriKp1DSLuJgXda8utuDrobJ1iqRBsGiv7BZLfq54": [ + { + "amount": "295.623166467", + "slot": { + "period": 66624, + "thread": 28 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 203658, + "thread": 12 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 435318, + "thread": 26 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 611156, + "thread": 29 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 654200, + "thread": 6 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 895270, + "thread": 1 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1116050, + "thread": 20 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1160392, + "thread": 30 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1360303, + "thread": 25 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1552049, + "thread": 0 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1756933, + "thread": 9 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 1847735, + "thread": 30 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2043403, + "thread": 9 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2257918, + "thread": 2 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2455084, + "thread": 26 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2623149, + "thread": 9 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2706126, + "thread": 0 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 2854301, + "thread": 11 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 3047222, + "thread": 11 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 3228081, + "thread": 29 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 3299095, + "thread": 6 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 3502897, + "thread": 10 + } + }, + { + "amount": "295.623166467", + "slot": { + "period": 3719070, + "thread": 21 + } + }, + { + "amount": "295.623166477", + "slot": { + "period": 3826742, + "thread": 12 + } + } + ], + "AU12ouhChrD4AV1L14amMNsiSavEscE3VKe5EWneEie7wnVQJLtZf": [ + { + "amount": "103.615018587", + "slot": { + "period": 79705, + "thread": 25 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 273351, + "thread": 17 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 338304, + "thread": 1 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 603284, + "thread": 29 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 675260, + "thread": 30 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 918745, + "thread": 20 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 996560, + "thread": 26 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 1264231, + "thread": 2 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 1330893, + "thread": 20 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 1543098, + "thread": 6 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 1684372, + "thread": 5 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 1911552, + "thread": 6 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2139193, + "thread": 26 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2159868, + "thread": 12 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2393467, + "thread": 6 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2608370, + "thread": 7 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2778037, + "thread": 4 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 2921404, + "thread": 24 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 3093793, + "thread": 25 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 3149176, + "thread": 6 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 3383549, + "thread": 0 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 3459105, + "thread": 22 + } + }, + { + "amount": "103.615018587", + "slot": { + "period": 3678939, + "thread": 7 + } + }, + { + "amount": "103.615018593", + "slot": { + "period": 3871351, + "thread": 13 + } + } + ], + "AU12ovdwVwSzaKQ46imnGmmSrpvjKvAHgWyM4dMGjL1TtHM1RvN4b": [ + { + "amount": "383.805986009", + "slot": { + "period": 88435, + "thread": 15 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 230981, + "thread": 8 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 384299, + "thread": 10 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 541100, + "thread": 17 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 793462, + "thread": 28 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 926874, + "thread": 13 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1014351, + "thread": 31 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1269359, + "thread": 8 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1340889, + "thread": 7 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1548964, + "thread": 24 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1681008, + "thread": 31 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 1887391, + "thread": 9 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2084356, + "thread": 14 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2159448, + "thread": 16 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2383140, + "thread": 5 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2557703, + "thread": 30 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2631306, + "thread": 1 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 2948785, + "thread": 1 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 3004493, + "thread": 7 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 3234233, + "thread": 27 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 3301468, + "thread": 2 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 3494177, + "thread": 23 + } + }, + { + "amount": "383.805986009", + "slot": { + "period": 3704117, + "thread": 25 + } + }, + { + "amount": "383.805986014", + "slot": { + "period": 3871747, + "thread": 15 + } + } + ], + "AU12owNC81iRzPxKVa6JvfhKWsdm78KwSEoMPWkKR5XekpN1ngr5u": [ + { + "amount": "410.266460979", + "slot": { + "period": 62609, + "thread": 18 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 230030, + "thread": 21 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 336446, + "thread": 24 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 517153, + "thread": 7 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 688400, + "thread": 9 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 935171, + "thread": 13 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 999085, + "thread": 28 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 1167010, + "thread": 11 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 1352501, + "thread": 31 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 1488356, + "thread": 3 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 1716773, + "thread": 27 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 1926860, + "thread": 13 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2106579, + "thread": 15 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2224476, + "thread": 9 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2455931, + "thread": 19 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2538678, + "thread": 4 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2716071, + "thread": 23 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 2922310, + "thread": 22 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 3005804, + "thread": 17 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 3265184, + "thread": 22 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 3415405, + "thread": 18 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 3498427, + "thread": 17 + } + }, + { + "amount": "410.266460979", + "slot": { + "period": 3706141, + "thread": 6 + } + }, + { + "amount": "410.266460981", + "slot": { + "period": 3944653, + "thread": 14 + } + } + ], + "AU12owTFqJAGgP2X8TL2nYtunGJdPNJEW3ubN392exLz5sHtpH9Fb": [ + { + "amount": "494.819992976", + "slot": { + "period": 56680, + "thread": 11 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 214739, + "thread": 8 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 425236, + "thread": 15 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 554828, + "thread": 9 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 695535, + "thread": 21 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 937821, + "thread": 15 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1147071, + "thread": 23 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1259589, + "thread": 28 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1422833, + "thread": 11 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1592084, + "thread": 3 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1787018, + "thread": 3 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 1845094, + "thread": 4 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2129723, + "thread": 4 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2265886, + "thread": 2 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2428949, + "thread": 7 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2561631, + "thread": 9 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2771536, + "thread": 1 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2937213, + "thread": 28 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 2962234, + "thread": 0 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 3277478, + "thread": 1 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 3381607, + "thread": 20 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 3521308, + "thread": 25 + } + }, + { + "amount": "494.819992976", + "slot": { + "period": 3778477, + "thread": 17 + } + }, + { + "amount": "494.819992972", + "slot": { + "period": 3791407, + "thread": 6 + } + } + ], + "AU12owW2ZVEHafdkYhSZLCZAqFGGeQmnCjWVdcsqPe6J5Zft5PLFE": [ + { + "amount": "64.696244290", + "slot": { + "period": 12408, + "thread": 14 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 169768, + "thread": 16 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 375426, + "thread": 20 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 551858, + "thread": 15 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 688796, + "thread": 1 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 911411, + "thread": 28 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1067762, + "thread": 16 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1206579, + "thread": 0 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1453179, + "thread": 23 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1485568, + "thread": 5 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1655794, + "thread": 24 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 1966349, + "thread": 5 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2040073, + "thread": 8 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2219768, + "thread": 11 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2360472, + "thread": 18 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2561400, + "thread": 17 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2736209, + "thread": 23 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 2953758, + "thread": 8 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 3028291, + "thread": 6 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 3175726, + "thread": 7 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 3359521, + "thread": 23 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 3498821, + "thread": 12 + } + }, + { + "amount": "64.696244290", + "slot": { + "period": 3674310, + "thread": 29 + } + }, + { + "amount": "64.696244293", + "slot": { + "period": 3808279, + "thread": 16 + } + } + ], + "AU12ox4SxTav8bPTjQVsEkxZkiAo7Y5CtAHLcQP2FJtiRKoPSkfXv": [ + { + "amount": "385.285832315", + "slot": { + "period": 94418, + "thread": 3 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 311575, + "thread": 30 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 461477, + "thread": 20 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 548541, + "thread": 5 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 813680, + "thread": 23 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 934527, + "thread": 2 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1064238, + "thread": 15 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1188177, + "thread": 19 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1331235, + "thread": 17 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1620292, + "thread": 15 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1710118, + "thread": 16 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 1893299, + "thread": 16 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2070652, + "thread": 6 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2169853, + "thread": 6 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2302822, + "thread": 20 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2505096, + "thread": 13 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2764540, + "thread": 9 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 2852833, + "thread": 31 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 3105820, + "thread": 2 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 3137384, + "thread": 25 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 3295213, + "thread": 28 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 3547201, + "thread": 12 + } + }, + { + "amount": "385.285832315", + "slot": { + "period": 3650236, + "thread": 24 + } + }, + { + "amount": "385.285832316", + "slot": { + "period": 3936423, + "thread": 25 + } + } + ], + "AU12oxvNb8b9gNbFBXksHcEQVH8EANuUxdefZHGPweXzsUCYhguxB": [ + { + "amount": "142.392632320", + "slot": { + "period": 157969, + "thread": 29 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 206394, + "thread": 16 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 417009, + "thread": 27 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 492286, + "thread": 24 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 665840, + "thread": 16 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 841711, + "thread": 26 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1089391, + "thread": 18 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1251495, + "thread": 21 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1344255, + "thread": 11 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1557516, + "thread": 25 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1706503, + "thread": 9 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 1839667, + "thread": 11 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2013988, + "thread": 21 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2256210, + "thread": 1 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2328295, + "thread": 23 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2619546, + "thread": 19 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2712754, + "thread": 9 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 2920893, + "thread": 25 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 3056078, + "thread": 29 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 3129794, + "thread": 20 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 3305761, + "thread": 22 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 3498510, + "thread": 13 + } + }, + { + "amount": "142.392632320", + "slot": { + "period": 3776761, + "thread": 15 + } + }, + { + "amount": "142.392632332", + "slot": { + "period": 3927958, + "thread": 19 + } + } + ], + "AU12oyhwxjFZ1Kygr9ks3jdnBEb1rhrgRSWBXYAvupSMkJzyXTZqo": [ + { + "amount": "208.686363179", + "slot": { + "period": 160634, + "thread": 27 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 228702, + "thread": 14 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 472587, + "thread": 1 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 624867, + "thread": 8 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 708935, + "thread": 7 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 912058, + "thread": 29 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1140542, + "thread": 23 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1313580, + "thread": 1 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1458587, + "thread": 11 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1603344, + "thread": 9 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1782613, + "thread": 21 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 1870604, + "thread": 9 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2061676, + "thread": 2 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2244313, + "thread": 23 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2383835, + "thread": 6 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2623264, + "thread": 5 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2731830, + "thread": 26 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2805626, + "thread": 14 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 2986189, + "thread": 25 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 3255471, + "thread": 6 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 3382813, + "thread": 2 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 3547820, + "thread": 14 + } + }, + { + "amount": "208.686363179", + "slot": { + "period": 3737357, + "thread": 14 + } + }, + { + "amount": "208.686363177", + "slot": { + "period": 3890675, + "thread": 8 + } + } + ], + "AU12ozA1qZ9hC2CZMujpec54DRRWzDr4UBEfoSZdw89taRTGCQvx3": [ + { + "amount": "147.708932471", + "slot": { + "period": 101394, + "thread": 11 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 198740, + "thread": 29 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 475632, + "thread": 27 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 618710, + "thread": 24 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 753636, + "thread": 13 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 862093, + "thread": 31 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1036615, + "thread": 14 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1251835, + "thread": 25 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1399304, + "thread": 5 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1586825, + "thread": 5 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1705468, + "thread": 3 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 1891889, + "thread": 20 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2068836, + "thread": 25 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2223781, + "thread": 26 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2360242, + "thread": 17 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2484856, + "thread": 9 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2744200, + "thread": 11 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 2826765, + "thread": 29 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 3110199, + "thread": 25 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 3208166, + "thread": 19 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 3406712, + "thread": 6 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 3560625, + "thread": 12 + } + }, + { + "amount": "147.708932471", + "slot": { + "period": 3670752, + "thread": 14 + } + }, + { + "amount": "147.708932475", + "slot": { + "period": 3912992, + "thread": 12 + } + } + ], + "AU12ozdVgeJuHz32yLSKLZPrF1FRpPU8gXidXSnrrqQv4Utin9WKL": [ + { + "amount": "252.222473095", + "slot": { + "period": 38891, + "thread": 12 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 267890, + "thread": 12 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 382383, + "thread": 20 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 559608, + "thread": 24 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 687255, + "thread": 19 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 901508, + "thread": 16 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1141559, + "thread": 17 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1231391, + "thread": 24 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1359678, + "thread": 19 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1564443, + "thread": 31 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1745217, + "thread": 12 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1892381, + "thread": 15 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 1980086, + "thread": 29 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 2276941, + "thread": 28 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 2335124, + "thread": 29 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 2562206, + "thread": 12 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 2745733, + "thread": 24 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 2886212, + "thread": 8 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 3000790, + "thread": 20 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 3249212, + "thread": 21 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 3376300, + "thread": 20 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 3454777, + "thread": 13 + } + }, + { + "amount": "252.222473095", + "slot": { + "period": 3758904, + "thread": 11 + } + }, + { + "amount": "252.222473099", + "slot": { + "period": 3876536, + "thread": 5 + } + } + ], + "AU12ozpEKpo9yZ7iw7cewwLPx34kqTiCsd2dZWhS4D7tB47tj4NNj": [ + { + "amount": "322.556577873", + "slot": { + "period": 166039, + "thread": 20 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 319447, + "thread": 1 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 438723, + "thread": 25 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 612396, + "thread": 22 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 740806, + "thread": 5 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 926450, + "thread": 18 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1088496, + "thread": 25 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1225232, + "thread": 9 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1386671, + "thread": 7 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1629787, + "thread": 0 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1682217, + "thread": 26 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 1882670, + "thread": 20 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2121578, + "thread": 11 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2242903, + "thread": 17 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2317273, + "thread": 17 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2519646, + "thread": 1 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2754451, + "thread": 14 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2876532, + "thread": 21 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 2982518, + "thread": 11 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 3218148, + "thread": 16 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 3327540, + "thread": 17 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 3588906, + "thread": 6 + } + }, + { + "amount": "322.556577873", + "slot": { + "period": 3654215, + "thread": 22 + } + }, + { + "amount": "322.556577868", + "slot": { + "period": 3882707, + "thread": 16 + } + } + ], + "AU12p18v8SN4eZtMRXmD3WvGRmvnyVf9SmTDEdmp9NcMiaCgX3rA8": [ + { + "amount": "141.193988755", + "slot": { + "period": 83287, + "thread": 29 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 222353, + "thread": 28 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 484373, + "thread": 3 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 652929, + "thread": 5 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 754996, + "thread": 21 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 920568, + "thread": 21 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1142531, + "thread": 28 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1249475, + "thread": 2 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1375058, + "thread": 5 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1584243, + "thread": 25 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1767419, + "thread": 20 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 1814089, + "thread": 8 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2050190, + "thread": 19 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2213671, + "thread": 25 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2376346, + "thread": 18 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2579102, + "thread": 8 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2724713, + "thread": 16 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 2802007, + "thread": 18 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 3032100, + "thread": 29 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 3228837, + "thread": 18 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 3321664, + "thread": 11 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 3586775, + "thread": 2 + } + }, + { + "amount": "141.193988755", + "slot": { + "period": 3703130, + "thread": 4 + } + }, + { + "amount": "141.193988758", + "slot": { + "period": 3881113, + "thread": 13 + } + } + ], + "AU12p1UWu3nPt1aK6c1PsZjQ81otCTWZvrnLxKjf2xRKKqHApD6R8": [ + { + "amount": "292.087568279", + "slot": { + "period": 45124, + "thread": 18 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 253155, + "thread": 27 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 349158, + "thread": 28 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 613122, + "thread": 4 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 686623, + "thread": 14 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 945226, + "thread": 13 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1117462, + "thread": 26 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1258679, + "thread": 7 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1404242, + "thread": 22 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1556241, + "thread": 22 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1808608, + "thread": 3 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 1967144, + "thread": 26 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2076894, + "thread": 2 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2199553, + "thread": 25 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2354625, + "thread": 24 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2577820, + "thread": 30 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2656489, + "thread": 19 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 2934785, + "thread": 22 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 3095268, + "thread": 30 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 3146588, + "thread": 13 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 3293606, + "thread": 2 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 3520714, + "thread": 18 + } + }, + { + "amount": "292.087568279", + "slot": { + "period": 3773244, + "thread": 17 + } + }, + { + "amount": "292.087568270", + "slot": { + "period": 3896590, + "thread": 3 + } + } + ], + "AU12p1UoURk97zn3qLWKHHbZjHBSBkbVg3avbSnPj3Hg6i3Wa15f3": [ + { + "amount": "92.107785752", + "slot": { + "period": 32593, + "thread": 0 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 270227, + "thread": 29 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 437649, + "thread": 2 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 620341, + "thread": 22 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 656678, + "thread": 22 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 919686, + "thread": 2 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1090630, + "thread": 9 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1194136, + "thread": 23 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1353469, + "thread": 9 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1548690, + "thread": 12 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1678501, + "thread": 18 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1970894, + "thread": 6 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 1996460, + "thread": 27 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 2155574, + "thread": 12 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 2357719, + "thread": 20 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 2483133, + "thread": 21 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 2782494, + "thread": 20 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 2835988, + "thread": 9 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 3076623, + "thread": 30 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 3211693, + "thread": 17 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 3393092, + "thread": 14 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 3585519, + "thread": 28 + } + }, + { + "amount": "92.107785752", + "slot": { + "period": 3712095, + "thread": 9 + } + }, + { + "amount": "92.107785753", + "slot": { + "period": 3943968, + "thread": 18 + } + } + ], + "AU12p1xrBRrFcPFRm498RAzm9G7R7kREjvyNYGpTUWXFFHm14EYd5": [ + { + "amount": "221.016388786", + "slot": { + "period": 27010, + "thread": 12 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 194996, + "thread": 18 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 397035, + "thread": 1 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 545841, + "thread": 26 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 717399, + "thread": 25 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 885283, + "thread": 21 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1041132, + "thread": 1 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1306155, + "thread": 3 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1358659, + "thread": 28 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1583317, + "thread": 30 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1693698, + "thread": 31 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 1940750, + "thread": 21 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2048280, + "thread": 7 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2230349, + "thread": 1 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2305209, + "thread": 8 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2613284, + "thread": 25 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2688928, + "thread": 20 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 2953717, + "thread": 24 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 3049437, + "thread": 28 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 3150369, + "thread": 4 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 3339298, + "thread": 28 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 3496738, + "thread": 16 + } + }, + { + "amount": "221.016388786", + "slot": { + "period": 3683426, + "thread": 6 + } + }, + { + "amount": "221.016388781", + "slot": { + "period": 3837827, + "thread": 10 + } + } + ], + "AU12p38H9mLQPX9XrbTVkgjHzrdDfC38hfH3eYdc6FDRmz5L4RErC": [ + { + "amount": "448.243321444", + "slot": { + "period": 72253, + "thread": 27 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 316251, + "thread": 6 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 380728, + "thread": 6 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 556778, + "thread": 8 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 802865, + "thread": 9 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 863003, + "thread": 17 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1102514, + "thread": 13 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1186994, + "thread": 28 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1328167, + "thread": 26 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1619452, + "thread": 26 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1665756, + "thread": 11 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 1906515, + "thread": 15 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2116975, + "thread": 12 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2238928, + "thread": 14 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2299647, + "thread": 17 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2477892, + "thread": 26 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2696563, + "thread": 31 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 2826435, + "thread": 15 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 3012956, + "thread": 29 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 3221020, + "thread": 11 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 3427166, + "thread": 12 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 3538414, + "thread": 16 + } + }, + { + "amount": "448.243321444", + "slot": { + "period": 3698086, + "thread": 26 + } + }, + { + "amount": "448.243321455", + "slot": { + "period": 3886065, + "thread": 27 + } + } + ], + "AU12p4fUNsgPSe6JYBzBSieGYHRHfYPKJ4XBsMxkg6KKQHPV7k9Ly": [ + { + "amount": "114.644623677", + "slot": { + "period": 42546, + "thread": 26 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 218674, + "thread": 2 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 408887, + "thread": 26 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 644044, + "thread": 25 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 668229, + "thread": 20 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 857802, + "thread": 13 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1134564, + "thread": 0 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1253595, + "thread": 3 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1396731, + "thread": 18 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1580978, + "thread": 8 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1689385, + "thread": 28 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 1832498, + "thread": 17 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2076363, + "thread": 17 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2272123, + "thread": 20 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2412334, + "thread": 3 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2617129, + "thread": 20 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2712253, + "thread": 0 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 2825704, + "thread": 14 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 3066309, + "thread": 1 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 3196888, + "thread": 24 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 3443198, + "thread": 19 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 3459660, + "thread": 7 + } + }, + { + "amount": "114.644623677", + "slot": { + "period": 3772034, + "thread": 19 + } + }, + { + "amount": "114.644623686", + "slot": { + "period": 3881401, + "thread": 23 + } + } + ], + "AU12p66bfvHy8jbcdgQBPTdom6PMYkQevJsj7cMQjJwGGXt9o6wGd": [ + { + "amount": "95.864162515", + "slot": { + "period": 48527, + "thread": 4 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 188165, + "thread": 6 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 364356, + "thread": 25 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 611075, + "thread": 25 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 688119, + "thread": 27 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 920869, + "thread": 19 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1049905, + "thread": 25 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1207929, + "thread": 24 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1340847, + "thread": 0 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1535019, + "thread": 6 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1713423, + "thread": 17 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 1902379, + "thread": 27 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2071727, + "thread": 8 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2285042, + "thread": 16 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2358718, + "thread": 28 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2566919, + "thread": 8 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2721246, + "thread": 1 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 2866539, + "thread": 12 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 3091385, + "thread": 2 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 3161639, + "thread": 1 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 3340965, + "thread": 21 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 3597992, + "thread": 6 + } + }, + { + "amount": "95.864162515", + "slot": { + "period": 3628483, + "thread": 5 + } + }, + { + "amount": "95.864162509", + "slot": { + "period": 3810298, + "thread": 9 + } + } + ], + "AU12p818GhhgJjANGqRgnanJw44iqMg5EdgcjzsVNi3ertpPNZG7Q": [ + { + "amount": "291.086487715", + "slot": { + "period": 137492, + "thread": 11 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 226998, + "thread": 3 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 398709, + "thread": 20 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 651512, + "thread": 19 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 723812, + "thread": 10 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 823999, + "thread": 17 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1035020, + "thread": 31 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1218588, + "thread": 4 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1452078, + "thread": 25 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1624856, + "thread": 28 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1660861, + "thread": 9 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 1960596, + "thread": 2 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2022292, + "thread": 6 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2215666, + "thread": 28 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2343522, + "thread": 9 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2598419, + "thread": 6 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2780649, + "thread": 29 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 2795330, + "thread": 8 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 3053349, + "thread": 16 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 3215278, + "thread": 3 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 3350067, + "thread": 4 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 3455830, + "thread": 5 + } + }, + { + "amount": "291.086487715", + "slot": { + "period": 3741692, + "thread": 8 + } + }, + { + "amount": "291.086487707", + "slot": { + "period": 3867244, + "thread": 30 + } + } + ], + "AU12p81SDxsBt52HGBLjD1sUuGPaGaFpVzt9hhQWMWQCAAAyBTKaq": [ + { + "amount": "94.809414663", + "slot": { + "period": 119214, + "thread": 12 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 237072, + "thread": 14 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 391504, + "thread": 14 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 559142, + "thread": 1 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 707296, + "thread": 27 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 870835, + "thread": 19 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1137955, + "thread": 30 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1316153, + "thread": 24 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1370705, + "thread": 21 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1537633, + "thread": 3 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1660724, + "thread": 31 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1865195, + "thread": 2 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 1977701, + "thread": 8 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 2262443, + "thread": 21 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 2297553, + "thread": 3 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 2606794, + "thread": 15 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 2656194, + "thread": 14 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 2949284, + "thread": 3 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 3109151, + "thread": 8 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 3233638, + "thread": 28 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 3374100, + "thread": 7 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 3567410, + "thread": 15 + } + }, + { + "amount": "94.809414663", + "slot": { + "period": 3639269, + "thread": 28 + } + }, + { + "amount": "94.809414667", + "slot": { + "period": 3840405, + "thread": 5 + } + } + ], + "AU12p9NduxzZKHK8TuNepUZKc6gwSzuT6msa9NcdGNCbSPSqE4Rcc": [ + { + "amount": "576.353922169", + "slot": { + "period": 115827, + "thread": 24 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 318061, + "thread": 17 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 379973, + "thread": 14 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 576556, + "thread": 24 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 820696, + "thread": 21 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 947484, + "thread": 25 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1037460, + "thread": 5 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1175092, + "thread": 1 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1448972, + "thread": 17 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1623397, + "thread": 7 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1771713, + "thread": 25 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 1868556, + "thread": 28 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2095360, + "thread": 24 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2192575, + "thread": 30 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2398422, + "thread": 30 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2611956, + "thread": 11 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2770013, + "thread": 23 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2862670, + "thread": 29 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 2955094, + "thread": 29 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 3169072, + "thread": 24 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 3311807, + "thread": 14 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 3470715, + "thread": 28 + } + }, + { + "amount": "576.353922169", + "slot": { + "period": 3755100, + "thread": 3 + } + }, + { + "amount": "576.353922158", + "slot": { + "period": 3847218, + "thread": 25 + } + } + ], + "AU12pA3CkCTgdqajyiZzFPV6xjoXisuYdAPtqxckxBs4egzNBMc5H": [ + { + "amount": "57.463225374", + "slot": { + "period": 78057, + "thread": 4 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 306026, + "thread": 1 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 463119, + "thread": 20 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 546453, + "thread": 1 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 659692, + "thread": 29 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 823152, + "thread": 3 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1069350, + "thread": 7 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1215773, + "thread": 3 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1350076, + "thread": 19 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1635098, + "thread": 2 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1779951, + "thread": 3 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1830440, + "thread": 3 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 1991385, + "thread": 20 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 2157113, + "thread": 5 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 2446749, + "thread": 22 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 2507137, + "thread": 17 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 2741288, + "thread": 22 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 2878733, + "thread": 9 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3053085, + "thread": 0 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3126490, + "thread": 5 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3297749, + "thread": 29 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3454592, + "thread": 31 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3671565, + "thread": 1 + } + }, + { + "amount": "57.463225374", + "slot": { + "period": 3924177, + "thread": 21 + } + } + ], + "AU12pAUgWAZGoZYbSPrFmdJBdHpF4SXkaPmrVvR9Pk2TyyBjkhoPD": [ + { + "amount": "445.678370654", + "slot": { + "period": 39574, + "thread": 18 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 233575, + "thread": 9 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 328649, + "thread": 13 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 652498, + "thread": 30 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 663722, + "thread": 27 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 860173, + "thread": 25 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1100958, + "thread": 30 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1230933, + "thread": 6 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1461913, + "thread": 13 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1490136, + "thread": 23 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1719204, + "thread": 3 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 1954754, + "thread": 1 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2102168, + "thread": 8 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2282012, + "thread": 19 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2351442, + "thread": 0 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2502884, + "thread": 19 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2640454, + "thread": 26 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 2842835, + "thread": 22 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 3012590, + "thread": 16 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 3141204, + "thread": 23 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 3402251, + "thread": 14 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 3485164, + "thread": 18 + } + }, + { + "amount": "445.678370654", + "slot": { + "period": 3630700, + "thread": 8 + } + }, + { + "amount": "445.678370658", + "slot": { + "period": 3866422, + "thread": 8 + } + } + ], + "AU12pAXpWqYzGL35dzAZVkYHb87TYe5vsZaRGA18ps7j6aR444x1k": [ + { + "amount": "459.044786785", + "slot": { + "period": 128304, + "thread": 8 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 314434, + "thread": 17 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 362272, + "thread": 9 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 533100, + "thread": 8 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 819808, + "thread": 11 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 979919, + "thread": 9 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1014002, + "thread": 11 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1204496, + "thread": 2 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1372062, + "thread": 18 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1585997, + "thread": 0 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1700082, + "thread": 17 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 1943053, + "thread": 19 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2024700, + "thread": 13 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2195852, + "thread": 1 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2387107, + "thread": 16 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2579344, + "thread": 18 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2742201, + "thread": 9 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2800296, + "thread": 12 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 2995151, + "thread": 9 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 3209327, + "thread": 19 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 3426450, + "thread": 15 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 3534018, + "thread": 16 + } + }, + { + "amount": "459.044786785", + "slot": { + "period": 3700157, + "thread": 24 + } + }, + { + "amount": "459.044786789", + "slot": { + "period": 3782500, + "thread": 15 + } + } + ], + "AU12pCis6PYxLPgxuH18frbpQmWbB2C6kviF5XoDyT1qkKQAUvTkF": [ + { + "amount": "266.878785869", + "slot": { + "period": 164116, + "thread": 9 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 240279, + "thread": 13 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 459449, + "thread": 9 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 602894, + "thread": 20 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 738449, + "thread": 0 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 885621, + "thread": 26 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1107808, + "thread": 30 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1150423, + "thread": 4 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1476592, + "thread": 4 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1519640, + "thread": 23 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1693154, + "thread": 17 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 1857105, + "thread": 16 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2062787, + "thread": 29 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2178310, + "thread": 29 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2444388, + "thread": 5 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2488351, + "thread": 12 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2748793, + "thread": 28 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 2793541, + "thread": 6 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 3101264, + "thread": 23 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 3180864, + "thread": 19 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 3435177, + "thread": 7 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 3491802, + "thread": 10 + } + }, + { + "amount": "266.878785869", + "slot": { + "period": 3759865, + "thread": 22 + } + }, + { + "amount": "266.878785864", + "slot": { + "period": 3868005, + "thread": 11 + } + } + ], + "AU12pCmrGFJz5fXgBZp2G3aemmhpRETSx4vMEecudezzWCrgpz467": [ + { + "amount": "130.491991235", + "slot": { + "period": 131876, + "thread": 25 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 178990, + "thread": 25 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 360228, + "thread": 9 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 603120, + "thread": 8 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 802227, + "thread": 8 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 853304, + "thread": 16 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1002630, + "thread": 0 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1161910, + "thread": 30 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1395065, + "thread": 2 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1598122, + "thread": 3 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1770810, + "thread": 23 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 1856177, + "thread": 2 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2086893, + "thread": 4 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2181135, + "thread": 17 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2461253, + "thread": 7 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2615095, + "thread": 27 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2684563, + "thread": 30 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 2911934, + "thread": 3 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 3112327, + "thread": 28 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 3129995, + "thread": 8 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 3335483, + "thread": 6 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 3557860, + "thread": 19 + } + }, + { + "amount": "130.491991235", + "slot": { + "period": 3682080, + "thread": 0 + } + }, + { + "amount": "130.491991234", + "slot": { + "period": 3781244, + "thread": 22 + } + } + ], + "AU12pDRKe66bNH7BeYKojanrRfUHbT7VFS5ptVe91CZsBxdrtYwdF": [ + { + "amount": "94.165708895", + "slot": { + "period": 21018, + "thread": 7 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 264677, + "thread": 5 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 330654, + "thread": 17 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 644483, + "thread": 19 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 740886, + "thread": 3 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 890925, + "thread": 20 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1018763, + "thread": 22 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1181366, + "thread": 24 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1378137, + "thread": 27 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1488539, + "thread": 23 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1800867, + "thread": 27 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 1875200, + "thread": 1 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2031939, + "thread": 7 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2241771, + "thread": 30 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2384832, + "thread": 3 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2493662, + "thread": 22 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2779375, + "thread": 17 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 2795252, + "thread": 9 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 3034878, + "thread": 10 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 3275945, + "thread": 5 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 3311220, + "thread": 17 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 3577986, + "thread": 24 + } + }, + { + "amount": "94.165708895", + "slot": { + "period": 3712829, + "thread": 6 + } + }, + { + "amount": "94.165708888", + "slot": { + "period": 3900401, + "thread": 23 + } + } + ], + "AU12pE4KAc9XZn21T1iMwdDkKYp6986aNiWhQq29dXW7Z6f89SDSx": [ + { + "amount": "61.805245728", + "slot": { + "period": 126351, + "thread": 31 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 299991, + "thread": 10 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 442809, + "thread": 29 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 498283, + "thread": 29 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 782266, + "thread": 22 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 875220, + "thread": 6 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1064768, + "thread": 19 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1198425, + "thread": 27 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1468795, + "thread": 20 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1498303, + "thread": 10 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1763736, + "thread": 27 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 1840473, + "thread": 26 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2002726, + "thread": 7 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2224284, + "thread": 5 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2456861, + "thread": 17 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2465798, + "thread": 21 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2656341, + "thread": 17 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 2797282, + "thread": 0 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 3003672, + "thread": 29 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 3288592, + "thread": 24 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 3298121, + "thread": 15 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 3611484, + "thread": 6 + } + }, + { + "amount": "61.805245728", + "slot": { + "period": 3649960, + "thread": 22 + } + }, + { + "amount": "61.805245730", + "slot": { + "period": 3918161, + "thread": 15 + } + } + ], + "AU12pExMXw6CmFY3sYTAXPqTNDkop2Tt4Cjgehqp3g2HankJQLFtx": [ + { + "amount": "85.391962502", + "slot": { + "period": 19066, + "thread": 20 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 219629, + "thread": 11 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 428087, + "thread": 31 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 546984, + "thread": 27 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 766964, + "thread": 8 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 829711, + "thread": 31 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 986467, + "thread": 31 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 1169995, + "thread": 3 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 1439007, + "thread": 13 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 1566336, + "thread": 16 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 1694718, + "thread": 7 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 1814829, + "thread": 4 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2004686, + "thread": 5 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2210738, + "thread": 28 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2460194, + "thread": 28 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2595603, + "thread": 1 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2762702, + "thread": 23 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 2879941, + "thread": 11 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 3036291, + "thread": 3 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 3276639, + "thread": 13 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 3381184, + "thread": 25 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 3484749, + "thread": 13 + } + }, + { + "amount": "85.391962502", + "slot": { + "period": 3754511, + "thread": 14 + } + }, + { + "amount": "85.391962503", + "slot": { + "period": 3904720, + "thread": 2 + } + } + ], + "AU12pFnfJX2JTos8kUDnPKrefScvACxCfwMF7qFwdMLqDdZqbs9EU": [ + { + "amount": "89.598811867", + "slot": { + "period": 67926, + "thread": 21 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 183251, + "thread": 0 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 397667, + "thread": 11 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 531470, + "thread": 13 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 758823, + "thread": 17 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 868277, + "thread": 23 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1081317, + "thread": 18 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1274570, + "thread": 29 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1451509, + "thread": 23 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1530174, + "thread": 17 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1659462, + "thread": 7 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 1909659, + "thread": 16 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2068680, + "thread": 2 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2168370, + "thread": 9 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2377188, + "thread": 5 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2581241, + "thread": 2 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2719736, + "thread": 6 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 2830123, + "thread": 24 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 3063157, + "thread": 2 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 3125163, + "thread": 28 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 3386878, + "thread": 3 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 3581001, + "thread": 6 + } + }, + { + "amount": "89.598811867", + "slot": { + "period": 3628664, + "thread": 11 + } + }, + { + "amount": "89.598811861", + "slot": { + "period": 3885454, + "thread": 27 + } + } + ], + "AU12pFsbej16i7hAPKsSUNp2ae5ymUSMh3xS7JGNvUYHZZPcLs3aV": [ + { + "amount": "158.065972310", + "slot": { + "period": 49553, + "thread": 22 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 269381, + "thread": 10 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 456709, + "thread": 4 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 542755, + "thread": 25 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 718980, + "thread": 22 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 886590, + "thread": 2 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1054740, + "thread": 25 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1208492, + "thread": 21 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1368971, + "thread": 0 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1495261, + "thread": 26 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1699404, + "thread": 15 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1814423, + "thread": 8 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 1990790, + "thread": 7 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 2193064, + "thread": 8 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 2433017, + "thread": 26 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 2496292, + "thread": 30 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 2636586, + "thread": 7 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 2906883, + "thread": 25 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3027268, + "thread": 25 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3252186, + "thread": 19 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3387254, + "thread": 0 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3496544, + "thread": 12 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3687429, + "thread": 0 + } + }, + { + "amount": "158.065972310", + "slot": { + "period": 3911961, + "thread": 4 + } + } + ], + "AU12pGkHwMHcK8zh1zmUoFL9f6uGf6EfBojAjnqTsB3DvPU374sx3": [ + { + "amount": "85.539889823", + "slot": { + "period": 155909, + "thread": 23 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 207755, + "thread": 0 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 489537, + "thread": 16 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 616497, + "thread": 29 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 675371, + "thread": 21 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 947268, + "thread": 15 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1049505, + "thread": 29 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1277763, + "thread": 9 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1459816, + "thread": 0 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1513456, + "thread": 26 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1690203, + "thread": 14 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 1856985, + "thread": 23 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2036562, + "thread": 23 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2147468, + "thread": 4 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2383701, + "thread": 7 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2504351, + "thread": 5 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2760767, + "thread": 7 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2929090, + "thread": 16 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 2970352, + "thread": 29 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 3148339, + "thread": 0 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 3393458, + "thread": 22 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 3519808, + "thread": 0 + } + }, + { + "amount": "85.539889823", + "slot": { + "period": 3777737, + "thread": 20 + } + }, + { + "amount": "85.539889818", + "slot": { + "period": 3783432, + "thread": 13 + } + } + ], + "AU12pHFQzFLZugnE5kXSYWNEE3kyYGBhQWfUoYNptJv7fmWVA1yuZ": [ + { + "amount": "169.018022302", + "slot": { + "period": 109329, + "thread": 27 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 210104, + "thread": 14 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 394559, + "thread": 6 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 551959, + "thread": 14 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 799019, + "thread": 20 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 960155, + "thread": 28 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 998417, + "thread": 10 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 1211127, + "thread": 19 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 1396772, + "thread": 31 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 1547041, + "thread": 7 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 1673919, + "thread": 8 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 1857059, + "thread": 16 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2141251, + "thread": 4 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2197166, + "thread": 10 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2363719, + "thread": 20 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2622217, + "thread": 5 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2768392, + "thread": 6 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2941259, + "thread": 30 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 2985077, + "thread": 15 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 3189055, + "thread": 8 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 3314603, + "thread": 15 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 3575690, + "thread": 26 + } + }, + { + "amount": "169.018022302", + "slot": { + "period": 3676122, + "thread": 30 + } + }, + { + "amount": "169.018022294", + "slot": { + "period": 3816357, + "thread": 2 + } + } + ], + "AU12pHwhrTNYyaRy4FkCDSPfYJtGkpP1NrTNmnCCoUcoXjAV3X8HX": [ + { + "amount": "259.691208899", + "slot": { + "period": 122917, + "thread": 6 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 314363, + "thread": 24 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 337833, + "thread": 0 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 540098, + "thread": 30 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 791401, + "thread": 19 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 859007, + "thread": 7 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1055650, + "thread": 13 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1301222, + "thread": 9 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1469977, + "thread": 9 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1623793, + "thread": 31 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1759913, + "thread": 9 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 1810715, + "thread": 10 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2072772, + "thread": 8 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2191769, + "thread": 12 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2365139, + "thread": 31 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2491724, + "thread": 8 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2740188, + "thread": 24 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 2934698, + "thread": 29 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 3088364, + "thread": 21 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 3224772, + "thread": 4 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 3398449, + "thread": 31 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 3545738, + "thread": 9 + } + }, + { + "amount": "259.691208899", + "slot": { + "period": 3722899, + "thread": 11 + } + }, + { + "amount": "259.691208901", + "slot": { + "period": 3856453, + "thread": 7 + } + } + ], + "AU12pJPz47MzhxUTRAJ8hCVd3ogKkbifapDyhwXkWWfV8aVbsGtEr": [ + { + "amount": "329.804278850", + "slot": { + "period": 93823, + "thread": 24 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 180646, + "thread": 20 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 367609, + "thread": 1 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 580874, + "thread": 16 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 799607, + "thread": 18 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 910661, + "thread": 3 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1075007, + "thread": 31 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1171018, + "thread": 27 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1321647, + "thread": 14 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1519932, + "thread": 28 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1712429, + "thread": 31 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 1848663, + "thread": 0 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2086393, + "thread": 25 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2252770, + "thread": 9 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2415405, + "thread": 23 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2468172, + "thread": 25 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2627779, + "thread": 9 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 2904771, + "thread": 14 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 3013573, + "thread": 24 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 3134136, + "thread": 13 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 3388746, + "thread": 25 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 3511427, + "thread": 3 + } + }, + { + "amount": "329.804278850", + "slot": { + "period": 3668843, + "thread": 4 + } + }, + { + "amount": "329.804278838", + "slot": { + "period": 3910574, + "thread": 23 + } + } + ], + "AU12pJi76NoJGYUvjYTuK3TRNNZfzRrwdJUPnPBoYTezv6yBLFmac": [ + { + "amount": "210.739327336", + "slot": { + "period": 56653, + "thread": 20 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 291707, + "thread": 25 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 398906, + "thread": 26 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 523180, + "thread": 0 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 813589, + "thread": 19 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 861563, + "thread": 7 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1014458, + "thread": 12 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1310485, + "thread": 15 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1349001, + "thread": 24 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1602194, + "thread": 31 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1679774, + "thread": 11 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 1876573, + "thread": 23 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2134411, + "thread": 29 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2250281, + "thread": 29 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2370553, + "thread": 20 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2515686, + "thread": 7 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2643026, + "thread": 9 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 2824158, + "thread": 20 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 3104812, + "thread": 12 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 3262812, + "thread": 3 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 3427522, + "thread": 1 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 3607307, + "thread": 9 + } + }, + { + "amount": "210.739327336", + "slot": { + "period": 3654523, + "thread": 3 + } + }, + { + "amount": "210.739327345", + "slot": { + "period": 3854794, + "thread": 16 + } + } + ], + "AU12pJvW7ym4RRap7FeofbMmDGGFsY7wXi9Z47AbdwnrEdwWgZaXa": [ + { + "amount": "158.753813543", + "slot": { + "period": 15462, + "thread": 5 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 204182, + "thread": 4 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 352307, + "thread": 3 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 594720, + "thread": 24 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 798371, + "thread": 26 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 952257, + "thread": 27 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1040743, + "thread": 28 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1249817, + "thread": 17 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1390038, + "thread": 18 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1550855, + "thread": 3 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1717761, + "thread": 26 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 1889490, + "thread": 13 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2075459, + "thread": 12 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2241300, + "thread": 20 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2305866, + "thread": 19 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2481238, + "thread": 8 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2763346, + "thread": 12 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2944850, + "thread": 29 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 2969344, + "thread": 9 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 3252459, + "thread": 17 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 3314417, + "thread": 24 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 3554772, + "thread": 14 + } + }, + { + "amount": "158.753813543", + "slot": { + "period": 3766356, + "thread": 11 + } + }, + { + "amount": "158.753813544", + "slot": { + "period": 3803481, + "thread": 9 + } + } + ], + "AU12pK45YgZytgrC2SL35fTMjefEe9TuDUDUjV7WzmL4akX8o9f6i": [ + { + "amount": "382.199409010", + "slot": { + "period": 164536, + "thread": 31 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 271234, + "thread": 7 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 431294, + "thread": 29 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 589930, + "thread": 29 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 792557, + "thread": 15 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 879856, + "thread": 8 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1145756, + "thread": 5 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1189815, + "thread": 25 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1417463, + "thread": 2 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1589725, + "thread": 22 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1726093, + "thread": 7 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 1853731, + "thread": 3 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2114658, + "thread": 7 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2256400, + "thread": 26 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2386840, + "thread": 21 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2529469, + "thread": 10 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2691827, + "thread": 6 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2929298, + "thread": 9 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 2981241, + "thread": 3 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 3204219, + "thread": 7 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 3357034, + "thread": 14 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 3582260, + "thread": 5 + } + }, + { + "amount": "382.199409010", + "slot": { + "period": 3706769, + "thread": 19 + } + }, + { + "amount": "382.199409014", + "slot": { + "period": 3840310, + "thread": 12 + } + } + ], + "AU12pKiwA1MF6LVP9CsjaQHt4dttdks72aYxNaK8ViZjeMBjTWNA7": [ + { + "amount": "329.654008202", + "slot": { + "period": 153344, + "thread": 1 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 246752, + "thread": 8 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 362736, + "thread": 18 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 520490, + "thread": 7 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 785033, + "thread": 0 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 934668, + "thread": 1 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1072677, + "thread": 28 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1306164, + "thread": 27 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1438763, + "thread": 21 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1484247, + "thread": 11 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1707440, + "thread": 2 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 1833475, + "thread": 2 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2051046, + "thread": 30 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2262327, + "thread": 1 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2408621, + "thread": 6 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2506797, + "thread": 0 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2786310, + "thread": 21 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2923376, + "thread": 5 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 2994172, + "thread": 10 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 3144231, + "thread": 18 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 3441007, + "thread": 10 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 3481168, + "thread": 25 + } + }, + { + "amount": "329.654008202", + "slot": { + "period": 3651353, + "thread": 20 + } + }, + { + "amount": "329.654008195", + "slot": { + "period": 3837339, + "thread": 26 + } + } + ], + "AU12pKxHWBhpgwQFmmwJ62UGBZ7uxPAaDf5hdxPgLidS9y1mVgVaz": [ + { + "amount": "295.290655955", + "slot": { + "period": 70432, + "thread": 2 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 257676, + "thread": 30 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 332849, + "thread": 15 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 619686, + "thread": 28 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 663460, + "thread": 4 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 968711, + "thread": 5 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1018860, + "thread": 14 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1256565, + "thread": 12 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1403146, + "thread": 10 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1578561, + "thread": 24 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1761824, + "thread": 24 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 1856336, + "thread": 5 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2090960, + "thread": 6 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2274170, + "thread": 7 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2461499, + "thread": 1 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2558506, + "thread": 12 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2740203, + "thread": 30 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2826385, + "thread": 5 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 2968644, + "thread": 1 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 3189531, + "thread": 6 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 3420828, + "thread": 31 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 3457958, + "thread": 30 + } + }, + { + "amount": "295.290655955", + "slot": { + "period": 3632046, + "thread": 11 + } + }, + { + "amount": "295.290655963", + "slot": { + "period": 3922481, + "thread": 6 + } + } + ], + "AU12pL7tay58WhyXi49BXmESmLbENearo423ZyXqgqkQanMqJTbrN": [ + { + "amount": "115.791436313", + "slot": { + "period": 124892, + "thread": 19 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 259144, + "thread": 30 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 479329, + "thread": 16 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 503743, + "thread": 24 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 736569, + "thread": 29 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 859167, + "thread": 17 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1102010, + "thread": 18 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1304726, + "thread": 1 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1331041, + "thread": 29 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1486642, + "thread": 22 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1743816, + "thread": 9 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 1895284, + "thread": 28 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2132808, + "thread": 27 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2281571, + "thread": 22 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2354541, + "thread": 31 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2602847, + "thread": 25 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2721189, + "thread": 18 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 2855351, + "thread": 26 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 3062524, + "thread": 8 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 3166361, + "thread": 13 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 3432603, + "thread": 17 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 3554151, + "thread": 7 + } + }, + { + "amount": "115.791436313", + "slot": { + "period": 3774576, + "thread": 5 + } + }, + { + "amount": "115.791436314", + "slot": { + "period": 3842649, + "thread": 28 + } + } + ], + "AU12pLJKTPA4DrpcNzZtJ3JMDW9xFSr3PwXNAsMX2uc3UD9jPBNh1": [ + { + "amount": "71.896387780", + "slot": { + "period": 96998, + "thread": 3 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 295588, + "thread": 11 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 387747, + "thread": 19 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 623459, + "thread": 2 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 676625, + "thread": 18 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 827600, + "thread": 7 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1036309, + "thread": 10 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1235142, + "thread": 19 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1442917, + "thread": 30 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1549304, + "thread": 17 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1768070, + "thread": 5 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 1958998, + "thread": 25 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2099930, + "thread": 23 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2271561, + "thread": 6 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2334168, + "thread": 15 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2608846, + "thread": 15 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2667403, + "thread": 8 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 2895943, + "thread": 24 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 3084308, + "thread": 26 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 3264523, + "thread": 5 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 3396059, + "thread": 12 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 3536818, + "thread": 3 + } + }, + { + "amount": "71.896387780", + "slot": { + "period": 3679417, + "thread": 3 + } + }, + { + "amount": "71.896387783", + "slot": { + "period": 3797331, + "thread": 14 + } + } + ], + "AU12pLfb1mNQCTtUMx8uKWfgN1Yn8PrTDKc3szMbE8LTVhsdVYEsp": [ + { + "amount": "323.519139019", + "slot": { + "period": 158817, + "thread": 24 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 315374, + "thread": 28 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 364269, + "thread": 0 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 578425, + "thread": 9 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 806815, + "thread": 12 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 936533, + "thread": 12 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1110732, + "thread": 20 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1188895, + "thread": 3 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1345676, + "thread": 25 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1541788, + "thread": 0 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1659615, + "thread": 1 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 1874636, + "thread": 20 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2054684, + "thread": 31 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2267202, + "thread": 20 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2317262, + "thread": 4 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2483011, + "thread": 11 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2715295, + "thread": 6 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2904567, + "thread": 18 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 2969987, + "thread": 25 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 3218343, + "thread": 23 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 3340561, + "thread": 22 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 3511651, + "thread": 24 + } + }, + { + "amount": "323.519139019", + "slot": { + "period": 3620478, + "thread": 24 + } + }, + { + "amount": "323.519139018", + "slot": { + "period": 3915316, + "thread": 1 + } + } + ], + "AU12pNH2mpNRXQMPZ66qRiZbTEop468gC475b7cqZbcVkGQVuWSHc": [ + { + "amount": "369.307259307", + "slot": { + "period": 161508, + "thread": 1 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 308465, + "thread": 8 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 344947, + "thread": 16 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 594828, + "thread": 23 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 693719, + "thread": 3 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 972976, + "thread": 2 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 990732, + "thread": 21 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 1289904, + "thread": 2 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 1422397, + "thread": 6 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 1535931, + "thread": 21 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 1732051, + "thread": 24 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 1912784, + "thread": 6 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2030060, + "thread": 2 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2257232, + "thread": 1 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2373738, + "thread": 1 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2490418, + "thread": 12 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2786400, + "thread": 7 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 2883152, + "thread": 31 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 3023112, + "thread": 14 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 3221480, + "thread": 7 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 3408609, + "thread": 12 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 3471692, + "thread": 25 + } + }, + { + "amount": "369.307259307", + "slot": { + "period": 3695714, + "thread": 8 + } + }, + { + "amount": "369.307259306", + "slot": { + "period": 3845583, + "thread": 5 + } + } + ], + "AU12pPoB59JJ8eMmvTQRE3GaCrDvbtK5SDCThHzYu5CY1wsmqqtou": [ + { + "amount": "158.019978898", + "slot": { + "period": 95265, + "thread": 8 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 172441, + "thread": 3 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 407228, + "thread": 30 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 602735, + "thread": 5 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 734726, + "thread": 1 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 856328, + "thread": 12 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1069049, + "thread": 31 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1305941, + "thread": 24 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1457473, + "thread": 14 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1576590, + "thread": 6 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1698905, + "thread": 0 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 1957672, + "thread": 5 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2001009, + "thread": 27 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2164712, + "thread": 20 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2305877, + "thread": 11 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2587204, + "thread": 6 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2677288, + "thread": 0 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 2914967, + "thread": 18 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 3074234, + "thread": 21 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 3268459, + "thread": 20 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 3413405, + "thread": 28 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 3535324, + "thread": 9 + } + }, + { + "amount": "158.019978898", + "slot": { + "period": 3637464, + "thread": 6 + } + }, + { + "amount": "158.019978893", + "slot": { + "period": 3815228, + "thread": 27 + } + } + ], + "AU12pQpeYSftVoypy4uYgBkkrSMgn3XxrMM2vsv1fr9m47d2k9och": [ + { + "amount": "157.610712779", + "slot": { + "period": 43914, + "thread": 8 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 253386, + "thread": 13 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 451476, + "thread": 30 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 529082, + "thread": 11 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 799647, + "thread": 14 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 917407, + "thread": 5 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 996293, + "thread": 5 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 1243192, + "thread": 23 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 1414961, + "thread": 0 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 1527873, + "thread": 5 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 1752410, + "thread": 7 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 1971861, + "thread": 26 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2117868, + "thread": 12 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2149810, + "thread": 18 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2388957, + "thread": 14 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2541634, + "thread": 2 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2771106, + "thread": 26 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 2809515, + "thread": 26 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 3085851, + "thread": 11 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 3169188, + "thread": 24 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 3426436, + "thread": 12 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 3513005, + "thread": 23 + } + }, + { + "amount": "157.610712779", + "slot": { + "period": 3720835, + "thread": 17 + } + }, + { + "amount": "157.610712790", + "slot": { + "period": 3895927, + "thread": 14 + } + } + ], + "AU12pSvW9vZHQKEfzhFu4da6JqxUdckMdLitppSwuV969hvkeaNgt": [ + { + "amount": "119.923547597", + "slot": { + "period": 27450, + "thread": 18 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 309923, + "thread": 18 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 385792, + "thread": 31 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 497284, + "thread": 7 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 721548, + "thread": 31 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 821627, + "thread": 17 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1088420, + "thread": 11 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1300785, + "thread": 8 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1365767, + "thread": 31 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1601028, + "thread": 20 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1692192, + "thread": 8 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 1907376, + "thread": 22 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2011743, + "thread": 5 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2177982, + "thread": 24 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2369277, + "thread": 11 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2551234, + "thread": 21 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2746975, + "thread": 31 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 2945779, + "thread": 1 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 3116745, + "thread": 14 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 3221352, + "thread": 22 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 3294434, + "thread": 24 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 3553144, + "thread": 31 + } + }, + { + "amount": "119.923547597", + "slot": { + "period": 3675260, + "thread": 30 + } + }, + { + "amount": "119.923547588", + "slot": { + "period": 3872669, + "thread": 26 + } + } + ], + "AU12pTG5D6qtLtCUZ59623bzBcb2gzaCpontv3GxbnGXMXW2UfstV": [ + { + "amount": "178.771675335", + "slot": { + "period": 160048, + "thread": 26 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 277663, + "thread": 16 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 450319, + "thread": 25 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 533010, + "thread": 3 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 758529, + "thread": 29 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 938246, + "thread": 24 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1065908, + "thread": 20 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1306943, + "thread": 14 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1373964, + "thread": 24 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1536634, + "thread": 22 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1714007, + "thread": 30 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 1831671, + "thread": 15 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2077016, + "thread": 21 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2223074, + "thread": 0 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2298987, + "thread": 30 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2600030, + "thread": 20 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2777856, + "thread": 21 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2897768, + "thread": 23 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 2991905, + "thread": 11 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 3155048, + "thread": 11 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 3387418, + "thread": 13 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 3507212, + "thread": 13 + } + }, + { + "amount": "178.771675335", + "slot": { + "period": 3697077, + "thread": 11 + } + }, + { + "amount": "178.771675326", + "slot": { + "period": 3865931, + "thread": 15 + } + } + ], + "AU12pTWyTri3ab2jkhBREmkZg9Kzsi3xMNK8z9mthcnT8Njd4qugz": [ + { + "amount": "178.366602095", + "slot": { + "period": 11184, + "thread": 19 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 172267, + "thread": 11 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 399334, + "thread": 6 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 602908, + "thread": 9 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 666461, + "thread": 6 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 950636, + "thread": 26 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1139478, + "thread": 17 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1215907, + "thread": 8 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1406134, + "thread": 24 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1548500, + "thread": 12 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1726535, + "thread": 9 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 1972309, + "thread": 17 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2117923, + "thread": 28 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2196191, + "thread": 29 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2347217, + "thread": 19 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2469349, + "thread": 27 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2726197, + "thread": 29 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 2933397, + "thread": 31 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 3079982, + "thread": 31 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 3167542, + "thread": 1 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 3327240, + "thread": 12 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 3579101, + "thread": 27 + } + }, + { + "amount": "178.366602095", + "slot": { + "period": 3770334, + "thread": 2 + } + }, + { + "amount": "178.366602101", + "slot": { + "period": 3904108, + "thread": 22 + } + } + ], + "AU12pUEFSLMuS99Trt2h7D94gTpfHi1nM6He2EJ7e7auMCwMvo5iV": [ + { + "amount": "122.363774065", + "slot": { + "period": 12877, + "thread": 27 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 288701, + "thread": 6 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 488717, + "thread": 10 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 602743, + "thread": 13 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 738692, + "thread": 20 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 910721, + "thread": 6 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1076734, + "thread": 1 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1231267, + "thread": 17 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1441391, + "thread": 27 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1527863, + "thread": 13 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1795956, + "thread": 24 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 1960285, + "thread": 26 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2127566, + "thread": 27 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2236149, + "thread": 25 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2363774, + "thread": 31 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2540792, + "thread": 30 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2648351, + "thread": 13 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 2928553, + "thread": 8 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 3098469, + "thread": 19 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 3263874, + "thread": 11 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 3386362, + "thread": 21 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 3516685, + "thread": 19 + } + }, + { + "amount": "122.363774065", + "slot": { + "period": 3716701, + "thread": 1 + } + }, + { + "amount": "122.363774061", + "slot": { + "period": 3890214, + "thread": 28 + } + } + ], + "AU12pVM83Csj4yCag5fj6mXyLycNHgQcZgAWU8vAGrf52CsN4ZSKd": [ + { + "amount": "192.338286135", + "slot": { + "period": 25785, + "thread": 5 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 248135, + "thread": 6 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 340815, + "thread": 22 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 636853, + "thread": 12 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 769500, + "thread": 18 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 840037, + "thread": 11 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 992229, + "thread": 27 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 1271720, + "thread": 11 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 1412128, + "thread": 19 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 1639439, + "thread": 1 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 1726044, + "thread": 15 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 1954639, + "thread": 25 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2051137, + "thread": 1 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2222542, + "thread": 24 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2412806, + "thread": 0 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2578046, + "thread": 13 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2632165, + "thread": 11 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 2874155, + "thread": 22 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3087398, + "thread": 15 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3163932, + "thread": 6 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3325630, + "thread": 27 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3455325, + "thread": 5 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3778468, + "thread": 4 + } + }, + { + "amount": "192.338286135", + "slot": { + "period": 3888464, + "thread": 12 + } + } + ], + "AU12pWFKmigZk1U32ZiptpQx3xCEdbXwnsCgN8jS4YCdfyGBMqjLT": [ + { + "amount": "78.607758890", + "slot": { + "period": 31770, + "thread": 29 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 233531, + "thread": 4 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 371200, + "thread": 13 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 615492, + "thread": 13 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 663945, + "thread": 4 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 877906, + "thread": 2 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 993903, + "thread": 22 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 1151194, + "thread": 5 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 1342650, + "thread": 29 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 1506078, + "thread": 30 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 1700966, + "thread": 14 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 1905633, + "thread": 5 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2102540, + "thread": 20 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2248486, + "thread": 0 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2421169, + "thread": 29 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2563519, + "thread": 14 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2662911, + "thread": 27 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2933502, + "thread": 0 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 2986843, + "thread": 27 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 3263672, + "thread": 11 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 3377183, + "thread": 21 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 3562652, + "thread": 30 + } + }, + { + "amount": "78.607758890", + "slot": { + "period": 3760665, + "thread": 10 + } + }, + { + "amount": "78.607758898", + "slot": { + "period": 3791401, + "thread": 31 + } + } + ], + "AU12pWL9JTxkw1WZeuVtAzucLwDR8fNqz3gjHL8gKzFheoJyzWbh5": [ + { + "amount": "428.998303139", + "slot": { + "period": 102212, + "thread": 1 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 207916, + "thread": 31 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 338304, + "thread": 18 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 568123, + "thread": 17 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 698235, + "thread": 7 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 859333, + "thread": 21 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1148654, + "thread": 12 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1228417, + "thread": 29 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1471714, + "thread": 21 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1596061, + "thread": 8 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1726358, + "thread": 13 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 1904287, + "thread": 26 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2034545, + "thread": 19 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2208771, + "thread": 15 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2451225, + "thread": 4 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2574854, + "thread": 14 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2704215, + "thread": 31 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 2890693, + "thread": 23 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 3101649, + "thread": 3 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 3133586, + "thread": 24 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 3346011, + "thread": 22 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 3587670, + "thread": 11 + } + }, + { + "amount": "428.998303139", + "slot": { + "period": 3746821, + "thread": 1 + } + }, + { + "amount": "428.998303135", + "slot": { + "period": 3786591, + "thread": 12 + } + } + ], + "AU12pWanz2MiTiY1fMTyMcQ71Vsu3h3L6fdA3vYicwCnxibDogXiG": [ + { + "amount": "134.863607448", + "slot": { + "period": 140914, + "thread": 28 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 220608, + "thread": 13 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 407636, + "thread": 7 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 502124, + "thread": 14 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 711594, + "thread": 10 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 977822, + "thread": 30 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1042924, + "thread": 18 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1260051, + "thread": 23 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1476769, + "thread": 4 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1598833, + "thread": 28 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1805079, + "thread": 1 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 1948543, + "thread": 16 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2008953, + "thread": 30 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2271204, + "thread": 17 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2339408, + "thread": 25 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2570418, + "thread": 14 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2762312, + "thread": 25 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 2866621, + "thread": 10 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 3095864, + "thread": 18 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 3187927, + "thread": 26 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 3411177, + "thread": 24 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 3519781, + "thread": 18 + } + }, + { + "amount": "134.863607448", + "slot": { + "period": 3745552, + "thread": 17 + } + }, + { + "amount": "134.863607457", + "slot": { + "period": 3816026, + "thread": 0 + } + } + ], + "AU12pXFfmg33V7LKGaFCksFenZjaQrwNYVNAqWy5jadmnkYcjdbbC": [ + { + "amount": "76.260553435", + "slot": { + "period": 66053, + "thread": 18 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 271179, + "thread": 0 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 475356, + "thread": 0 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 592063, + "thread": 4 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 719786, + "thread": 12 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 925485, + "thread": 30 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1077744, + "thread": 10 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1317129, + "thread": 16 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1408921, + "thread": 13 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1527101, + "thread": 10 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1700349, + "thread": 14 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 1939852, + "thread": 5 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2039129, + "thread": 1 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2276507, + "thread": 12 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2428084, + "thread": 4 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2495084, + "thread": 4 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2753429, + "thread": 26 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 2947007, + "thread": 15 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 3098582, + "thread": 14 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 3266917, + "thread": 11 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 3381956, + "thread": 31 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 3491173, + "thread": 20 + } + }, + { + "amount": "76.260553435", + "slot": { + "period": 3618272, + "thread": 28 + } + }, + { + "amount": "76.260553441", + "slot": { + "period": 3947021, + "thread": 28 + } + } + ], + "AU12pXprbSmoMbfgFG7UJmKQV5boAmQZj7cw1FUS8uPxpkethgkdr": [ + { + "amount": "467.423381014", + "slot": { + "period": 69931, + "thread": 13 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 217489, + "thread": 5 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 450015, + "thread": 9 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 533008, + "thread": 16 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 758679, + "thread": 13 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 975454, + "thread": 24 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1100508, + "thread": 16 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1244707, + "thread": 14 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1362198, + "thread": 3 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1622468, + "thread": 19 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1744192, + "thread": 1 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 1852897, + "thread": 18 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2085306, + "thread": 26 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2223488, + "thread": 10 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2377430, + "thread": 10 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2560163, + "thread": 8 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2653808, + "thread": 24 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 2939079, + "thread": 15 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 3103923, + "thread": 8 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 3274465, + "thread": 27 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 3323854, + "thread": 17 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 3582912, + "thread": 27 + } + }, + { + "amount": "467.423381014", + "slot": { + "period": 3716064, + "thread": 9 + } + }, + { + "amount": "467.423381020", + "slot": { + "period": 3834476, + "thread": 17 + } + } + ], + "AU12pXtx8FSuySrsA6WG51ZHkfet8soz2HFT2dNzFKHrquUmnRnnf": [ + { + "amount": "623.593440895", + "slot": { + "period": 80923, + "thread": 27 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 210620, + "thread": 8 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 361422, + "thread": 0 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 641199, + "thread": 28 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 767233, + "thread": 0 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 871323, + "thread": 15 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1110328, + "thread": 28 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1254729, + "thread": 23 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1391081, + "thread": 31 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1520905, + "thread": 16 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1670338, + "thread": 16 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 1949750, + "thread": 19 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2018493, + "thread": 25 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2251261, + "thread": 16 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2450340, + "thread": 4 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2611256, + "thread": 12 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2749293, + "thread": 9 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 2943157, + "thread": 20 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 3036381, + "thread": 7 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 3204430, + "thread": 26 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 3328181, + "thread": 15 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 3545532, + "thread": 7 + } + }, + { + "amount": "623.593440895", + "slot": { + "period": 3744420, + "thread": 5 + } + }, + { + "amount": "623.593440885", + "slot": { + "period": 3872026, + "thread": 23 + } + } + ], + "AU12pYHbYKVdZye9PSUB16d6y8jY2SvZFSzujqPNtAGY3KbHMb82p": [ + { + "amount": "72.676619336", + "slot": { + "period": 155357, + "thread": 5 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 188376, + "thread": 26 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 385773, + "thread": 7 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 600111, + "thread": 26 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 752408, + "thread": 15 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 831814, + "thread": 13 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1089699, + "thread": 29 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1273139, + "thread": 5 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1404454, + "thread": 25 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1506659, + "thread": 26 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1680356, + "thread": 13 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 1929354, + "thread": 22 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2098657, + "thread": 7 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2186360, + "thread": 31 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2309906, + "thread": 7 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2464665, + "thread": 19 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2784264, + "thread": 5 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 2820981, + "thread": 13 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3088954, + "thread": 22 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3210597, + "thread": 15 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3337037, + "thread": 1 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3582177, + "thread": 11 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3767643, + "thread": 14 + } + }, + { + "amount": "72.676619336", + "slot": { + "period": 3874359, + "thread": 6 + } + } + ], + "AU12pYKpXrvyD6cus1YgVVJ4XJjrNreBdv1B7XLvY6SjqonXphzVC": [ + { + "amount": "53.907325391", + "slot": { + "period": 87087, + "thread": 15 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 274946, + "thread": 2 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 345571, + "thread": 0 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 538590, + "thread": 16 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 781980, + "thread": 7 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 937468, + "thread": 26 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1067505, + "thread": 26 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1225368, + "thread": 3 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1464974, + "thread": 29 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1569384, + "thread": 2 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1757985, + "thread": 4 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 1835420, + "thread": 0 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2051226, + "thread": 12 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2167202, + "thread": 2 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2457861, + "thread": 4 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2504564, + "thread": 17 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2706084, + "thread": 21 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 2901293, + "thread": 13 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 3069658, + "thread": 31 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 3168507, + "thread": 30 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 3363949, + "thread": 27 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 3490841, + "thread": 10 + } + }, + { + "amount": "53.907325391", + "slot": { + "period": 3629737, + "thread": 21 + } + }, + { + "amount": "53.907325387", + "slot": { + "period": 3845218, + "thread": 14 + } + } + ], + "AU12pYt9Jfe3sUqv8Uoph798Ptp1oXVoWDdJoHesfMUY1RNknp4Py": [ + { + "amount": "69.976555117", + "slot": { + "period": 166094, + "thread": 6 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 297561, + "thread": 27 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 393185, + "thread": 26 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 501212, + "thread": 28 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 729871, + "thread": 29 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 946165, + "thread": 24 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1118471, + "thread": 4 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1300337, + "thread": 10 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1464206, + "thread": 6 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1504445, + "thread": 22 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1655753, + "thread": 20 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 1929837, + "thread": 13 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2047265, + "thread": 11 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2202276, + "thread": 19 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2341369, + "thread": 15 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2466903, + "thread": 26 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2784175, + "thread": 20 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2914676, + "thread": 28 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 2973250, + "thread": 22 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 3156230, + "thread": 23 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 3332835, + "thread": 14 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 3582109, + "thread": 16 + } + }, + { + "amount": "69.976555117", + "slot": { + "period": 3758294, + "thread": 8 + } + }, + { + "amount": "69.976555108", + "slot": { + "period": 3798448, + "thread": 1 + } + } + ], + "AU12pZBxYKfrnw69tMZBzs4bHC42RmGGdDDuq4fHdeu446fQr38Fw": [ + { + "amount": "123.164811476", + "slot": { + "period": 18781, + "thread": 7 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 244446, + "thread": 15 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 356275, + "thread": 31 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 610679, + "thread": 6 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 766934, + "thread": 17 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 950474, + "thread": 16 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1144754, + "thread": 29 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1298046, + "thread": 11 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1377571, + "thread": 7 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1483848, + "thread": 18 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1651526, + "thread": 6 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 1911980, + "thread": 30 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2105888, + "thread": 7 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2159174, + "thread": 14 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2425209, + "thread": 3 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2495116, + "thread": 12 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2625416, + "thread": 12 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 2840385, + "thread": 25 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 3089498, + "thread": 10 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 3249022, + "thread": 8 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 3435368, + "thread": 19 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 3597866, + "thread": 28 + } + }, + { + "amount": "123.164811476", + "slot": { + "period": 3673936, + "thread": 3 + } + }, + { + "amount": "123.164811479", + "slot": { + "period": 3811956, + "thread": 13 + } + } + ], + "AU12paLoC8EqARM5qvzsJLEZkaSbFvE9DfAst1sTr3UBehj3GHyeL": [ + { + "amount": "256.758753879", + "slot": { + "period": 133087, + "thread": 22 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 285007, + "thread": 2 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 490286, + "thread": 31 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 623700, + "thread": 30 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 725815, + "thread": 9 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 920387, + "thread": 26 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1139574, + "thread": 19 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1307025, + "thread": 2 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1356821, + "thread": 31 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1550317, + "thread": 7 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1728778, + "thread": 8 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 1915011, + "thread": 9 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2141565, + "thread": 25 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2162112, + "thread": 11 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2460636, + "thread": 15 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2502375, + "thread": 7 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2643929, + "thread": 14 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2873391, + "thread": 19 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 2975173, + "thread": 29 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 3177298, + "thread": 31 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 3319881, + "thread": 17 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 3522625, + "thread": 21 + } + }, + { + "amount": "256.758753879", + "slot": { + "period": 3668763, + "thread": 18 + } + }, + { + "amount": "256.758753890", + "slot": { + "period": 3918471, + "thread": 21 + } + } + ], + "AU12paUF8ScA98AjTWeGq9DdemgTviXDRMEhzuQfsqg6ZdTbhJHmw": [ + { + "amount": "283.113545203", + "slot": { + "period": 79941, + "thread": 13 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 169598, + "thread": 30 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 389513, + "thread": 16 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 603187, + "thread": 18 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 682618, + "thread": 1 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 884861, + "thread": 2 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1107143, + "thread": 17 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1180799, + "thread": 31 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1351691, + "thread": 3 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1620584, + "thread": 11 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1736339, + "thread": 18 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 1901707, + "thread": 16 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2034482, + "thread": 8 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2253690, + "thread": 5 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2429235, + "thread": 31 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2480688, + "thread": 13 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2648926, + "thread": 8 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 2895836, + "thread": 1 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 3120124, + "thread": 26 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 3264190, + "thread": 19 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 3407646, + "thread": 11 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 3512493, + "thread": 10 + } + }, + { + "amount": "283.113545203", + "slot": { + "period": 3778637, + "thread": 14 + } + }, + { + "amount": "283.113545201", + "slot": { + "period": 3855009, + "thread": 30 + } + } + ], + "AU12pbALgZmqNtWSVfd19dxKvnVEDbcMiJzH2bdy7xfUsWLKyz2b1": [ + { + "amount": "68.190418986", + "slot": { + "period": 27851, + "thread": 18 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 184870, + "thread": 6 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 405345, + "thread": 7 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 576143, + "thread": 3 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 654755, + "thread": 14 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 879537, + "thread": 25 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1089795, + "thread": 10 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1275683, + "thread": 31 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1442048, + "thread": 24 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1576563, + "thread": 29 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1703038, + "thread": 27 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 1856071, + "thread": 3 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2044155, + "thread": 4 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2231443, + "thread": 22 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2425597, + "thread": 11 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2552842, + "thread": 22 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2633796, + "thread": 17 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 2914648, + "thread": 16 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 3019115, + "thread": 10 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 3206879, + "thread": 0 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 3430813, + "thread": 20 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 3529391, + "thread": 21 + } + }, + { + "amount": "68.190418986", + "slot": { + "period": 3619705, + "thread": 25 + } + }, + { + "amount": "68.190418998", + "slot": { + "period": 3855330, + "thread": 13 + } + } + ], + "AU12pbAPnrxqV9Q8PEcRXrraEFHnDUwLuVVu1rVSjeSG4CC95nPrg": [ + { + "amount": "52.630163221", + "slot": { + "period": 137022, + "thread": 10 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 268332, + "thread": 2 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 349557, + "thread": 8 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 593689, + "thread": 30 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 729291, + "thread": 15 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 904700, + "thread": 3 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1066480, + "thread": 6 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1215601, + "thread": 24 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1334911, + "thread": 30 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1611683, + "thread": 25 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1716292, + "thread": 30 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 1903669, + "thread": 29 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2103650, + "thread": 0 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2202452, + "thread": 9 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2311693, + "thread": 14 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2518268, + "thread": 27 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2758600, + "thread": 16 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 2842121, + "thread": 12 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 3109077, + "thread": 4 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 3125120, + "thread": 2 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 3426675, + "thread": 13 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 3500564, + "thread": 6 + } + }, + { + "amount": "52.630163221", + "slot": { + "period": 3653521, + "thread": 10 + } + }, + { + "amount": "52.630163228", + "slot": { + "period": 3936561, + "thread": 28 + } + } + ], + "AU12pbhqnLkfZJHZyuGaKXW8JNXRL6tuY9DPNMG9Zjbt73unPnCVt": [ + { + "amount": "79.542656249", + "slot": { + "period": 113435, + "thread": 23 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 261900, + "thread": 6 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 333849, + "thread": 28 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 503766, + "thread": 24 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 669020, + "thread": 18 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 843280, + "thread": 11 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 997989, + "thread": 25 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 1202452, + "thread": 15 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 1386344, + "thread": 7 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 1514441, + "thread": 14 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 1747976, + "thread": 26 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 1932024, + "thread": 22 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2003930, + "thread": 10 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2288862, + "thread": 25 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2320766, + "thread": 26 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2561109, + "thread": 3 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2766748, + "thread": 19 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 2872136, + "thread": 27 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 3068453, + "thread": 6 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 3265119, + "thread": 26 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 3333288, + "thread": 25 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 3494165, + "thread": 9 + } + }, + { + "amount": "79.542656249", + "slot": { + "period": 3627233, + "thread": 29 + } + }, + { + "amount": "79.542656241", + "slot": { + "period": 3796384, + "thread": 30 + } + } + ], + "AU12pbnRRkbdU7TXFGjNVU7oU4J8nnKJFgJZPxhr81VZYBLVpAPij": [ + { + "amount": "208.992491904", + "slot": { + "period": 117890, + "thread": 6 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 307263, + "thread": 30 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 424762, + "thread": 25 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 609893, + "thread": 5 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 664619, + "thread": 27 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 892543, + "thread": 15 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1002055, + "thread": 18 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1272525, + "thread": 24 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1366834, + "thread": 15 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1489320, + "thread": 18 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1734033, + "thread": 27 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 1849968, + "thread": 5 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2018794, + "thread": 23 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2160961, + "thread": 6 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2355937, + "thread": 2 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2557491, + "thread": 5 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2726628, + "thread": 17 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 2826421, + "thread": 31 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 3021021, + "thread": 22 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 3150510, + "thread": 8 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 3297465, + "thread": 9 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 3607689, + "thread": 18 + } + }, + { + "amount": "208.992491904", + "slot": { + "period": 3737107, + "thread": 9 + } + }, + { + "amount": "208.992491900", + "slot": { + "period": 3859591, + "thread": 23 + } + } + ], + "AU12pbvCL7B2hg2poqZkWdRuz5XeqtMqQyoyK4aziHgMxdq4H5Sxx": [ + { + "amount": "140.574429552", + "slot": { + "period": 139186, + "thread": 25 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 296394, + "thread": 30 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 336308, + "thread": 6 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 597649, + "thread": 22 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 688119, + "thread": 14 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 860343, + "thread": 15 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1114063, + "thread": 31 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1289330, + "thread": 28 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1430486, + "thread": 4 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1536927, + "thread": 16 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1650119, + "thread": 2 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1922371, + "thread": 0 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 1981856, + "thread": 29 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 2205699, + "thread": 22 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 2456613, + "thread": 27 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 2556316, + "thread": 5 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 2778073, + "thread": 31 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 2949487, + "thread": 0 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3086387, + "thread": 20 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3203672, + "thread": 29 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3411361, + "thread": 0 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3550120, + "thread": 7 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3675967, + "thread": 19 + } + }, + { + "amount": "140.574429552", + "slot": { + "period": 3804266, + "thread": 16 + } + } + ], + "AU12pbzU2TuyPnAxn8GPLRrrg1TZJqetg2Cs6AM7xXjzJP7cFgPLT": [ + { + "amount": "271.324499874", + "slot": { + "period": 82064, + "thread": 1 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 320132, + "thread": 17 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 415389, + "thread": 18 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 597109, + "thread": 23 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 795964, + "thread": 0 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 834180, + "thread": 10 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1089312, + "thread": 6 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1157162, + "thread": 25 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1350995, + "thread": 31 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1611894, + "thread": 12 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1662087, + "thread": 17 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 1910439, + "thread": 18 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2011669, + "thread": 4 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2155369, + "thread": 16 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2458208, + "thread": 29 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2551857, + "thread": 6 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2657368, + "thread": 22 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 2910489, + "thread": 30 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 3115163, + "thread": 2 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 3283460, + "thread": 8 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 3399475, + "thread": 26 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 3453206, + "thread": 2 + } + }, + { + "amount": "271.324499874", + "slot": { + "period": 3660185, + "thread": 1 + } + }, + { + "amount": "271.324499869", + "slot": { + "period": 3925641, + "thread": 27 + } + } + ], + "AU12pd2DzDMEYhhTHBd5Tpypq5mwebeH6cTJA2XSASEWNuJFBnvSX": [ + { + "amount": "82.590450615", + "slot": { + "period": 139802, + "thread": 7 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 289317, + "thread": 22 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 388866, + "thread": 22 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 582393, + "thread": 28 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 732843, + "thread": 22 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 841015, + "thread": 2 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1120162, + "thread": 23 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1224363, + "thread": 9 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1394304, + "thread": 4 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1592504, + "thread": 16 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1805771, + "thread": 9 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 1958131, + "thread": 28 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2070184, + "thread": 22 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2193179, + "thread": 14 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2416030, + "thread": 26 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2615129, + "thread": 29 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2740039, + "thread": 23 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 2894220, + "thread": 1 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 3063699, + "thread": 31 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 3206863, + "thread": 27 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 3363144, + "thread": 26 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 3551369, + "thread": 15 + } + }, + { + "amount": "82.590450615", + "slot": { + "period": 3680286, + "thread": 30 + } + }, + { + "amount": "82.590450614", + "slot": { + "period": 3904337, + "thread": 30 + } + } + ], + "AU12peBYhS2xnggEx6awBSzR3CU9GEYf1hbJ84WQCBXoA4FY3Ncfi": [ + { + "amount": "206.005369279", + "slot": { + "period": 50436, + "thread": 17 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 268745, + "thread": 30 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 448071, + "thread": 21 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 500955, + "thread": 25 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 656184, + "thread": 13 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 841266, + "thread": 19 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1012030, + "thread": 3 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1309807, + "thread": 28 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1396349, + "thread": 22 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1547146, + "thread": 5 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1667169, + "thread": 10 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 1870123, + "thread": 22 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2075702, + "thread": 31 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2234336, + "thread": 3 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2435589, + "thread": 21 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2511745, + "thread": 16 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2788889, + "thread": 16 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 2894939, + "thread": 20 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 3114391, + "thread": 21 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 3142566, + "thread": 17 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 3351475, + "thread": 10 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 3518143, + "thread": 18 + } + }, + { + "amount": "206.005369279", + "slot": { + "period": 3692275, + "thread": 6 + } + }, + { + "amount": "206.005369278", + "slot": { + "period": 3828612, + "thread": 3 + } + } + ], + "AU12peuP1nQ8aDqChRdxEqZj992KNkX3sW4RyAxYQCm4VG23mwaHE": [ + { + "amount": "94.317724905", + "slot": { + "period": 43615, + "thread": 13 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 181277, + "thread": 12 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 456908, + "thread": 5 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 546735, + "thread": 29 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 653580, + "thread": 24 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 841488, + "thread": 1 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1080962, + "thread": 14 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1292100, + "thread": 23 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1468702, + "thread": 17 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1627801, + "thread": 9 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1679149, + "thread": 21 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 1824792, + "thread": 28 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2100504, + "thread": 24 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2167693, + "thread": 21 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2374768, + "thread": 9 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2609075, + "thread": 27 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2785655, + "thread": 16 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 2924849, + "thread": 9 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 3057212, + "thread": 3 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 3206109, + "thread": 8 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 3289247, + "thread": 19 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 3544854, + "thread": 26 + } + }, + { + "amount": "94.317724905", + "slot": { + "period": 3746705, + "thread": 31 + } + }, + { + "amount": "94.317724897", + "slot": { + "period": 3869503, + "thread": 18 + } + } + ], + "AU12pgDfRPZSrB6iBuGtyS1FCHsXiypfND3fv654SrzVyY1qiMGeT": [ + { + "amount": "99.430643747", + "slot": { + "period": 89528, + "thread": 14 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 228707, + "thread": 6 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 366108, + "thread": 21 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 568068, + "thread": 1 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 691533, + "thread": 29 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 873241, + "thread": 0 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1067788, + "thread": 10 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1218614, + "thread": 30 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1451528, + "thread": 14 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1585024, + "thread": 15 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1678417, + "thread": 10 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 1935764, + "thread": 0 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2061989, + "thread": 19 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2204285, + "thread": 17 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2400860, + "thread": 5 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2589200, + "thread": 31 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2735433, + "thread": 25 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2817986, + "thread": 18 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 2987640, + "thread": 25 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 3232767, + "thread": 31 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 3398169, + "thread": 6 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 3505679, + "thread": 4 + } + }, + { + "amount": "99.430643747", + "slot": { + "period": 3707668, + "thread": 2 + } + }, + { + "amount": "99.430643757", + "slot": { + "period": 3812120, + "thread": 27 + } + } + ], + "AU12phqDhjAYXqoNKTpK81RcLXFgQqUzJ7TGo1BG93BVHmFkuksvn": [ + { + "amount": "342.690878514", + "slot": { + "period": 116271, + "thread": 30 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 190332, + "thread": 4 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 353706, + "thread": 23 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 509807, + "thread": 26 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 677023, + "thread": 0 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 907114, + "thread": 2 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1141732, + "thread": 22 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1200579, + "thread": 0 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1444273, + "thread": 4 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1490684, + "thread": 11 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1701456, + "thread": 1 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 1920975, + "thread": 13 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2046951, + "thread": 2 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2208323, + "thread": 9 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2447367, + "thread": 29 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2610975, + "thread": 30 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2745111, + "thread": 13 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2796315, + "thread": 26 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 2976093, + "thread": 3 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 3196837, + "thread": 6 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 3360457, + "thread": 14 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 3572729, + "thread": 29 + } + }, + { + "amount": "342.690878514", + "slot": { + "period": 3689017, + "thread": 21 + } + }, + { + "amount": "342.690878512", + "slot": { + "period": 3841761, + "thread": 11 + } + } + ], + "AU12phwxk7myZhYSRsgafeGPg5xM5FxHj4gKbBcfAaWniiwL9Qkax": [ + { + "amount": "293.641792220", + "slot": { + "period": 61487, + "thread": 7 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 183298, + "thread": 26 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 329508, + "thread": 1 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 649120, + "thread": 4 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 698224, + "thread": 5 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 954186, + "thread": 16 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 999986, + "thread": 21 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 1163366, + "thread": 9 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 1462019, + "thread": 15 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 1539008, + "thread": 15 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 1659810, + "thread": 0 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 1955593, + "thread": 22 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2061414, + "thread": 9 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2149455, + "thread": 1 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2424840, + "thread": 25 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2623065, + "thread": 31 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2707808, + "thread": 0 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 2916029, + "thread": 16 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 3105278, + "thread": 22 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 3137195, + "thread": 19 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 3425880, + "thread": 21 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 3545455, + "thread": 7 + } + }, + { + "amount": "293.641792220", + "slot": { + "period": 3757002, + "thread": 15 + } + }, + { + "amount": "293.641792227", + "slot": { + "period": 3868141, + "thread": 15 + } + } + ], + "AU12pi4sdo1gHaSNUPTzhPgNmSSXHLrPSBczDamCxHhrZaZX2RA9q": [ + { + "amount": "410.947137891", + "slot": { + "period": 60897, + "thread": 0 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 280412, + "thread": 21 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 413870, + "thread": 9 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 641781, + "thread": 19 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 749271, + "thread": 26 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 848321, + "thread": 13 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1104899, + "thread": 0 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1206376, + "thread": 10 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1359143, + "thread": 25 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1631233, + "thread": 0 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1719560, + "thread": 2 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 1896963, + "thread": 31 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2024888, + "thread": 12 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2285671, + "thread": 13 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2409330, + "thread": 15 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2600414, + "thread": 29 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2726074, + "thread": 8 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2857489, + "thread": 29 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 2956394, + "thread": 22 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 3176748, + "thread": 6 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 3348304, + "thread": 30 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 3464182, + "thread": 16 + } + }, + { + "amount": "410.947137891", + "slot": { + "period": 3723928, + "thread": 18 + } + }, + { + "amount": "410.947137889", + "slot": { + "period": 3847255, + "thread": 16 + } + } + ], + "AU12pj6PzZERLD7PzuwaEqMrrkNH1PkXLYcXXKaCWg64NPkLikXEB": [ + { + "amount": "142.216916745", + "slot": { + "period": 45071, + "thread": 0 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 318609, + "thread": 25 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 464043, + "thread": 28 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 551493, + "thread": 6 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 729135, + "thread": 1 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 979052, + "thread": 15 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1139951, + "thread": 16 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1221632, + "thread": 7 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1337851, + "thread": 1 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1599655, + "thread": 25 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1741869, + "thread": 4 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 1849049, + "thread": 21 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2084836, + "thread": 4 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2209755, + "thread": 18 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2383661, + "thread": 20 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2509234, + "thread": 21 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2676097, + "thread": 4 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 2881759, + "thread": 11 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 3026303, + "thread": 15 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 3161231, + "thread": 13 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 3292608, + "thread": 15 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 3490512, + "thread": 2 + } + }, + { + "amount": "142.216916745", + "slot": { + "period": 3738362, + "thread": 2 + } + }, + { + "amount": "142.216916740", + "slot": { + "period": 3911695, + "thread": 15 + } + } + ], + "AU12pjATDtc7dV7CofBAD3JLLsvwzvrzj3njvaiAp9KwtsdJLFuRf": [ + { + "amount": "447.161807061", + "slot": { + "period": 165539, + "thread": 2 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 169697, + "thread": 29 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 349982, + "thread": 26 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 622992, + "thread": 9 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 820237, + "thread": 18 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 865715, + "thread": 12 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1034324, + "thread": 9 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1199299, + "thread": 2 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1473500, + "thread": 11 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1580064, + "thread": 18 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1651764, + "thread": 5 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 1825208, + "thread": 23 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2097525, + "thread": 6 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2232614, + "thread": 18 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2325770, + "thread": 19 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2590424, + "thread": 26 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2673037, + "thread": 26 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 2920192, + "thread": 19 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 3075776, + "thread": 9 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 3216322, + "thread": 11 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 3388337, + "thread": 10 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 3614430, + "thread": 3 + } + }, + { + "amount": "447.161807061", + "slot": { + "period": 3758899, + "thread": 2 + } + }, + { + "amount": "447.161807053", + "slot": { + "period": 3897876, + "thread": 8 + } + } + ], + "AU12pjfnYy18jAgmE25eEiRkrkJu5HLPqMPeph9VNefq9Saup3GQP": [ + { + "amount": "80.981708633", + "slot": { + "period": 142309, + "thread": 27 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 233723, + "thread": 23 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 325171, + "thread": 24 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 531978, + "thread": 30 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 676599, + "thread": 5 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 829907, + "thread": 27 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1099789, + "thread": 4 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1315949, + "thread": 9 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1427837, + "thread": 29 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1522092, + "thread": 2 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1753668, + "thread": 20 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 1850086, + "thread": 2 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2013663, + "thread": 29 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2261626, + "thread": 22 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2451533, + "thread": 31 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2486210, + "thread": 26 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2686563, + "thread": 26 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 2815719, + "thread": 18 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 3095923, + "thread": 5 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 3199447, + "thread": 2 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 3450243, + "thread": 1 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 3583810, + "thread": 0 + } + }, + { + "amount": "80.981708633", + "slot": { + "period": 3703044, + "thread": 25 + } + }, + { + "amount": "80.981708641", + "slot": { + "period": 3790093, + "thread": 8 + } + } + ], + "AU12pnV3grZ5nqdHDqpYcy5bawMLx7Wz94rE2t5NmQZw5XUijmjy6": [ + { + "amount": "77.928372423", + "slot": { + "period": 126287, + "thread": 13 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 247521, + "thread": 3 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 414285, + "thread": 2 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 501519, + "thread": 16 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 806174, + "thread": 25 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 935125, + "thread": 22 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1009796, + "thread": 30 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1164678, + "thread": 1 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1466357, + "thread": 1 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1563539, + "thread": 8 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1796762, + "thread": 22 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1817122, + "thread": 30 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 1993439, + "thread": 18 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 2158534, + "thread": 3 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 2328254, + "thread": 5 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 2593640, + "thread": 12 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 2766264, + "thread": 1 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 2843307, + "thread": 13 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 3077922, + "thread": 8 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 3149849, + "thread": 17 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 3400076, + "thread": 17 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 3569258, + "thread": 5 + } + }, + { + "amount": "77.928372423", + "slot": { + "period": 3638954, + "thread": 3 + } + }, + { + "amount": "77.928372429", + "slot": { + "period": 3896643, + "thread": 4 + } + } + ], + "AU12pofa34ScmBS4z2MYAFsZeUBSY5AZ6PWfmF2ozR5Vipk8wUUbE": [ + { + "amount": "137.065053844", + "slot": { + "period": 52633, + "thread": 9 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 175549, + "thread": 28 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 394435, + "thread": 29 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 627251, + "thread": 21 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 726949, + "thread": 0 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 958741, + "thread": 22 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1064893, + "thread": 14 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1162978, + "thread": 11 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1337551, + "thread": 12 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1567710, + "thread": 0 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1699745, + "thread": 24 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 1896570, + "thread": 22 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2135953, + "thread": 15 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2163893, + "thread": 18 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2344727, + "thread": 11 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2493018, + "thread": 1 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2749935, + "thread": 9 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 2810752, + "thread": 4 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 3088902, + "thread": 26 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 3211466, + "thread": 30 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 3348918, + "thread": 3 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 3516987, + "thread": 25 + } + }, + { + "amount": "137.065053844", + "slot": { + "period": 3720988, + "thread": 15 + } + }, + { + "amount": "137.065053848", + "slot": { + "period": 3904028, + "thread": 14 + } + } + ], + "AU12ppHFxQ9k8WosyBmFtfyQVGQz3MF6mJ2cdxRUjgDsj1BN5h4i6": [ + { + "amount": "284.256707655", + "slot": { + "period": 39913, + "thread": 3 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 249006, + "thread": 23 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 341886, + "thread": 11 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 529901, + "thread": 5 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 783672, + "thread": 9 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 826302, + "thread": 31 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1063610, + "thread": 22 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1186454, + "thread": 20 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1378031, + "thread": 2 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1583492, + "thread": 31 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1778857, + "thread": 19 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 1839463, + "thread": 21 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2045750, + "thread": 18 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2248617, + "thread": 2 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2365589, + "thread": 4 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2488483, + "thread": 11 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2731104, + "thread": 10 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 2907899, + "thread": 10 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 3088902, + "thread": 26 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 3177754, + "thread": 31 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 3326822, + "thread": 29 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 3585417, + "thread": 13 + } + }, + { + "amount": "284.256707655", + "slot": { + "period": 3655394, + "thread": 13 + } + }, + { + "amount": "284.256707656", + "slot": { + "period": 3842228, + "thread": 11 + } + } + ], + "AU12ppb7NdLJFBPxQq3EmbJXTbXAKCcuZGD77DLBK4y9S9zroytLA": [ + { + "amount": "217.807457930", + "slot": { + "period": 94890, + "thread": 8 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 319047, + "thread": 23 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 436778, + "thread": 16 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 493662, + "thread": 31 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 795368, + "thread": 17 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 977635, + "thread": 12 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1026421, + "thread": 5 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1293489, + "thread": 18 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1334208, + "thread": 7 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1553746, + "thread": 26 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1694662, + "thread": 6 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 1952757, + "thread": 9 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2084653, + "thread": 6 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2245905, + "thread": 26 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2403245, + "thread": 24 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2620162, + "thread": 10 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2740700, + "thread": 31 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2823721, + "thread": 17 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 2982684, + "thread": 14 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 3244907, + "thread": 28 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 3344876, + "thread": 25 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 3579480, + "thread": 3 + } + }, + { + "amount": "217.807457930", + "slot": { + "period": 3640862, + "thread": 21 + } + }, + { + "amount": "217.807457940", + "slot": { + "period": 3882697, + "thread": 10 + } + } + ], + "AU12pppe8x7xeQpugmFQD1wvRH6Mv3d4QcsYLo7oKLKofbmz3SzK5": [ + { + "amount": "103.979481130", + "slot": { + "period": 137188, + "thread": 30 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 272721, + "thread": 21 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 444946, + "thread": 6 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 587293, + "thread": 26 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 670877, + "thread": 21 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 871580, + "thread": 22 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1022787, + "thread": 30 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1208104, + "thread": 3 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1366077, + "thread": 14 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1483952, + "thread": 19 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1774247, + "thread": 23 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 1929571, + "thread": 3 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2049466, + "thread": 7 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2252283, + "thread": 27 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2428151, + "thread": 3 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2568809, + "thread": 18 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2757342, + "thread": 16 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 2898094, + "thread": 8 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 3043645, + "thread": 20 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 3160462, + "thread": 26 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 3345634, + "thread": 17 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 3463503, + "thread": 26 + } + }, + { + "amount": "103.979481130", + "slot": { + "period": 3659654, + "thread": 8 + } + }, + { + "amount": "103.979481129", + "slot": { + "period": 3806604, + "thread": 30 + } + } + ], + "AU12ppqifoV5PMktHEB5RPVoyQUvZp8uH52ErqvwiT1FDiF1UXRuS": [ + { + "amount": "144.905022879", + "slot": { + "period": 130850, + "thread": 22 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 202301, + "thread": 16 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 439357, + "thread": 28 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 509985, + "thread": 7 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 665897, + "thread": 4 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 896747, + "thread": 12 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 992396, + "thread": 3 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 1228394, + "thread": 9 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 1423194, + "thread": 28 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 1643786, + "thread": 31 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 1655472, + "thread": 7 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 1974771, + "thread": 23 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2006872, + "thread": 7 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2264352, + "thread": 22 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2367990, + "thread": 15 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2560368, + "thread": 4 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2669898, + "thread": 21 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 2836567, + "thread": 25 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 3089733, + "thread": 5 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 3140166, + "thread": 10 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 3393942, + "thread": 29 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 3492764, + "thread": 13 + } + }, + { + "amount": "144.905022879", + "slot": { + "period": 3644586, + "thread": 10 + } + }, + { + "amount": "144.905022870", + "slot": { + "period": 3833977, + "thread": 5 + } + } + ], + "AU12prcezi1fwWXwhW8dDRdzz1S7jdnEFaZwHr5vyP4XtUbkDCAjR": [ + { + "amount": "213.037546591", + "slot": { + "period": 68855, + "thread": 29 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 181848, + "thread": 18 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 435771, + "thread": 6 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 605524, + "thread": 19 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 798366, + "thread": 27 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 955909, + "thread": 17 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1019341, + "thread": 5 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1269545, + "thread": 4 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1456812, + "thread": 30 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1641500, + "thread": 31 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1663870, + "thread": 20 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 1902549, + "thread": 15 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2140831, + "thread": 19 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2194576, + "thread": 14 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2351572, + "thread": 9 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2475215, + "thread": 17 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2784285, + "thread": 26 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2830466, + "thread": 30 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 2979180, + "thread": 13 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 3194414, + "thread": 20 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 3385496, + "thread": 10 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 3490118, + "thread": 20 + } + }, + { + "amount": "213.037546591", + "slot": { + "period": 3622895, + "thread": 23 + } + }, + { + "amount": "213.037546597", + "slot": { + "period": 3788534, + "thread": 19 + } + } + ], + "AU12prk7LVF482DwiVdZNoeJB7E7E1fPvBHsqAF3MSDGrLeDC32P4": [ + { + "amount": "266.002385329", + "slot": { + "period": 13647, + "thread": 10 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 239557, + "thread": 24 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 485565, + "thread": 28 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 524181, + "thread": 12 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 669489, + "thread": 21 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 933479, + "thread": 11 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1003366, + "thread": 23 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1283086, + "thread": 22 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1469487, + "thread": 27 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1592343, + "thread": 6 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1702472, + "thread": 30 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1833587, + "thread": 28 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 1984587, + "thread": 22 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 2276835, + "thread": 7 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 2338602, + "thread": 7 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 2585529, + "thread": 18 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 2643928, + "thread": 21 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 2945414, + "thread": 30 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 3101479, + "thread": 14 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 3253333, + "thread": 31 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 3382386, + "thread": 4 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 3613605, + "thread": 11 + } + }, + { + "amount": "266.002385329", + "slot": { + "period": 3620974, + "thread": 9 + } + }, + { + "amount": "266.002385338", + "slot": { + "period": 3861172, + "thread": 10 + } + } + ], + "AU12ptDmJSJbcqoFaqycpMdAq7R3wSvxGL58g1NVLSRzLK2HbLBo5": [ + { + "amount": "259.320807391", + "slot": { + "period": 111380, + "thread": 23 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 174408, + "thread": 29 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 447205, + "thread": 26 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 528508, + "thread": 26 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 671573, + "thread": 28 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 887054, + "thread": 19 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1028942, + "thread": 4 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1205870, + "thread": 23 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1392120, + "thread": 18 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1505504, + "thread": 5 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1658496, + "thread": 11 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 1838692, + "thread": 17 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2074180, + "thread": 3 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2248222, + "thread": 5 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2331931, + "thread": 11 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2509618, + "thread": 27 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2708597, + "thread": 11 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2837798, + "thread": 7 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 2989210, + "thread": 19 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 3137808, + "thread": 0 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 3329934, + "thread": 25 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 3517570, + "thread": 17 + } + }, + { + "amount": "259.320807391", + "slot": { + "period": 3712056, + "thread": 11 + } + }, + { + "amount": "259.320807382", + "slot": { + "period": 3893749, + "thread": 28 + } + } + ], + "AU12ptRgTf6geQaEEmTpVMSGQubc5L5Fp1JobggJsgrEeSNHrVQJk": [ + { + "amount": "77.883163503", + "slot": { + "period": 74255, + "thread": 15 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 272527, + "thread": 5 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 395069, + "thread": 19 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 524725, + "thread": 28 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 699703, + "thread": 15 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 909328, + "thread": 1 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1090830, + "thread": 8 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1205417, + "thread": 18 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1474520, + "thread": 0 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1632343, + "thread": 15 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1783935, + "thread": 11 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 1853491, + "thread": 13 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2010994, + "thread": 21 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2166285, + "thread": 5 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2343343, + "thread": 30 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2548253, + "thread": 26 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2684473, + "thread": 5 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2868621, + "thread": 24 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 2971006, + "thread": 24 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 3186419, + "thread": 4 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 3447241, + "thread": 29 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 3560697, + "thread": 14 + } + }, + { + "amount": "77.883163503", + "slot": { + "period": 3689129, + "thread": 23 + } + }, + { + "amount": "77.883163505", + "slot": { + "period": 3866091, + "thread": 2 + } + } + ], + "AU12pttAsVFqH3pqm4FmHYVSK5hLrqYAyxfWL8MidTTqGyCsydtba": [ + { + "amount": "317.764615802", + "slot": { + "period": 51907, + "thread": 20 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 292665, + "thread": 23 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 424175, + "thread": 9 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 514013, + "thread": 8 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 670214, + "thread": 14 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 968647, + "thread": 20 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 984886, + "thread": 23 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 1302045, + "thread": 27 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 1462465, + "thread": 16 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 1509576, + "thread": 23 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 1661064, + "thread": 24 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 1952508, + "thread": 22 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2038366, + "thread": 28 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2208263, + "thread": 14 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2301013, + "thread": 26 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2530137, + "thread": 7 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2646239, + "thread": 27 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 2890743, + "thread": 9 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 3096712, + "thread": 3 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 3175814, + "thread": 19 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 3407643, + "thread": 2 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 3528887, + "thread": 12 + } + }, + { + "amount": "317.764615802", + "slot": { + "period": 3753255, + "thread": 12 + } + }, + { + "amount": "317.764615794", + "slot": { + "period": 3784860, + "thread": 0 + } + } + ], + "AU12pttfzog75gnXpaYFmyXL2kCGm3qs91A5ZmX2YQPQi2MrsnPgr": [ + { + "amount": "369.880216914", + "slot": { + "period": 100308, + "thread": 7 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 205829, + "thread": 12 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 413342, + "thread": 0 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 539491, + "thread": 2 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 697825, + "thread": 24 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 971150, + "thread": 1 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1094725, + "thread": 9 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1164875, + "thread": 28 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1455022, + "thread": 0 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1520790, + "thread": 19 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1789727, + "thread": 0 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 1893474, + "thread": 5 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2127257, + "thread": 6 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2146401, + "thread": 0 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2456796, + "thread": 14 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2563209, + "thread": 22 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2787249, + "thread": 12 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2823981, + "thread": 7 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 2985227, + "thread": 27 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 3188523, + "thread": 0 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 3365442, + "thread": 28 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 3485909, + "thread": 9 + } + }, + { + "amount": "369.880216914", + "slot": { + "period": 3725596, + "thread": 10 + } + }, + { + "amount": "369.880216912", + "slot": { + "period": 3821556, + "thread": 3 + } + } + ], + "AU12pueKyudgYyeabbJa3jhFz9jczwdkEBQYUEYp4EbszJTpaHnQk": [ + { + "amount": "65.819524453", + "slot": { + "period": 50623, + "thread": 9 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 315279, + "thread": 31 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 472290, + "thread": 22 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 610209, + "thread": 18 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 751749, + "thread": 24 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 937803, + "thread": 9 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1083385, + "thread": 21 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1191168, + "thread": 11 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1448370, + "thread": 9 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1497241, + "thread": 16 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1709157, + "thread": 15 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 1872576, + "thread": 11 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2102465, + "thread": 5 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2172680, + "thread": 6 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2451019, + "thread": 12 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2580139, + "thread": 18 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2657535, + "thread": 2 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 2923960, + "thread": 14 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 3018569, + "thread": 17 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 3175283, + "thread": 24 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 3342573, + "thread": 30 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 3497309, + "thread": 20 + } + }, + { + "amount": "65.819524453", + "slot": { + "period": 3766093, + "thread": 11 + } + }, + { + "amount": "65.819524458", + "slot": { + "period": 3844088, + "thread": 20 + } + } + ], + "AU12pvVmrfqDAezMqsvmy79VJjvTPwir2Yr7NjyfxepgM9rEdKtxo": [ + { + "amount": "151.029312636", + "slot": { + "period": 65824, + "thread": 22 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 313720, + "thread": 23 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 383737, + "thread": 6 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 558760, + "thread": 11 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 739298, + "thread": 14 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 885647, + "thread": 21 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1023244, + "thread": 13 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1156175, + "thread": 1 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1366703, + "thread": 20 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1488283, + "thread": 16 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1760534, + "thread": 6 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 1895488, + "thread": 19 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2117646, + "thread": 28 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2163816, + "thread": 6 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2365430, + "thread": 20 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2481838, + "thread": 7 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2788585, + "thread": 8 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2876028, + "thread": 16 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 2993049, + "thread": 19 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 3190193, + "thread": 14 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 3374799, + "thread": 31 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 3560780, + "thread": 22 + } + }, + { + "amount": "151.029312636", + "slot": { + "period": 3667364, + "thread": 0 + } + }, + { + "amount": "151.029312627", + "slot": { + "period": 3835044, + "thread": 2 + } + } + ], + "AU12pvpyb4FNCkzbaHz9XEX9t9EANM5zr9UKJbgyMDgbfFugDbXvE": [ + { + "amount": "127.265468806", + "slot": { + "period": 48019, + "thread": 2 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 217183, + "thread": 17 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 340366, + "thread": 3 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 589770, + "thread": 30 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 744947, + "thread": 28 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 981189, + "thread": 19 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1112479, + "thread": 18 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1282278, + "thread": 30 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1326625, + "thread": 15 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1570074, + "thread": 25 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1786864, + "thread": 28 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 1939925, + "thread": 23 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2075480, + "thread": 11 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2261190, + "thread": 2 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2311320, + "thread": 12 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2536972, + "thread": 3 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2656478, + "thread": 4 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 2844691, + "thread": 20 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 3058750, + "thread": 30 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 3228259, + "thread": 11 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 3392999, + "thread": 3 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 3492450, + "thread": 2 + } + }, + { + "amount": "127.265468806", + "slot": { + "period": 3638421, + "thread": 5 + } + }, + { + "amount": "127.265468807", + "slot": { + "period": 3857779, + "thread": 19 + } + } + ], + "AU12pwFvzGZ2MQZp9oAEDaZVckBqEu8n2CQxQkjKuSAv34WQDJCQo": [ + { + "amount": "88.271973899", + "slot": { + "period": 63854, + "thread": 28 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 211364, + "thread": 1 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 368974, + "thread": 12 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 503857, + "thread": 29 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 744426, + "thread": 16 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 826324, + "thread": 8 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1045270, + "thread": 6 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1256096, + "thread": 18 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1419164, + "thread": 15 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1562942, + "thread": 16 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1804227, + "thread": 22 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 1831247, + "thread": 2 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2103719, + "thread": 5 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2202728, + "thread": 0 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2438119, + "thread": 1 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2589012, + "thread": 17 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2676735, + "thread": 20 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 2810999, + "thread": 12 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 3114084, + "thread": 12 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 3159902, + "thread": 4 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 3393649, + "thread": 16 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 3595295, + "thread": 9 + } + }, + { + "amount": "88.271973899", + "slot": { + "period": 3628111, + "thread": 30 + } + }, + { + "amount": "88.271973891", + "slot": { + "period": 3854814, + "thread": 24 + } + } + ], + "AU12pwJf6QPE2q2NJ2GvL45t73MZPRkh99BZGX1qhPnoiQ4aXJkpU": [ + { + "amount": "56.609452200", + "slot": { + "period": 139471, + "thread": 0 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 315777, + "thread": 5 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 433261, + "thread": 25 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 558439, + "thread": 12 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 772426, + "thread": 14 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 904853, + "thread": 19 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 988764, + "thread": 8 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 1288638, + "thread": 9 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 1370702, + "thread": 28 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 1629881, + "thread": 16 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 1770079, + "thread": 19 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 1815558, + "thread": 24 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2042668, + "thread": 6 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2188243, + "thread": 25 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2375367, + "thread": 31 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2549707, + "thread": 7 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2693314, + "thread": 6 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 2865000, + "thread": 14 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 3056841, + "thread": 15 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 3189409, + "thread": 5 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 3383174, + "thread": 13 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 3551820, + "thread": 29 + } + }, + { + "amount": "56.609452200", + "slot": { + "period": 3683508, + "thread": 1 + } + }, + { + "amount": "56.609452194", + "slot": { + "period": 3884600, + "thread": 23 + } + } + ], + "AU12pwgxmYzJDjHQGvSDAmcGEPMxDfQA7ZFCpQXgAc2XvJnefkgQn": [ + { + "amount": "120.075241999", + "slot": { + "period": 18945, + "thread": 19 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 242999, + "thread": 13 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 425085, + "thread": 27 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 536818, + "thread": 6 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 662137, + "thread": 19 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 931119, + "thread": 31 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1020229, + "thread": 9 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1164434, + "thread": 9 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1404012, + "thread": 26 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1585592, + "thread": 26 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1725334, + "thread": 1 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 1858436, + "thread": 25 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2076271, + "thread": 11 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2218054, + "thread": 2 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2447351, + "thread": 16 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2510277, + "thread": 15 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2639926, + "thread": 5 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 2838199, + "thread": 18 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 3025157, + "thread": 4 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 3260704, + "thread": 26 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 3344495, + "thread": 8 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 3583526, + "thread": 22 + } + }, + { + "amount": "120.075241999", + "slot": { + "period": 3772678, + "thread": 1 + } + }, + { + "amount": "120.075242010", + "slot": { + "period": 3853652, + "thread": 27 + } + } + ], + "AU12pxsYK5MBuF9GeoNwv9CQ1M9dc5ZgVXF7YZvq3KtPz9Bbg15Ao": [ + { + "amount": "88.376344920", + "slot": { + "period": 23826, + "thread": 3 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 204325, + "thread": 14 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 417367, + "thread": 9 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 504856, + "thread": 26 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 761615, + "thread": 14 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 918617, + "thread": 0 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1062098, + "thread": 18 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1217512, + "thread": 28 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1365171, + "thread": 18 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1626497, + "thread": 14 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1693381, + "thread": 13 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 1963030, + "thread": 15 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2114987, + "thread": 23 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2151174, + "thread": 18 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2328411, + "thread": 4 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2583991, + "thread": 18 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2686084, + "thread": 14 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 2893110, + "thread": 25 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 3090646, + "thread": 24 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 3177026, + "thread": 31 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 3361370, + "thread": 27 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 3576910, + "thread": 28 + } + }, + { + "amount": "88.376344920", + "slot": { + "period": 3635616, + "thread": 11 + } + }, + { + "amount": "88.376344923", + "slot": { + "period": 3804794, + "thread": 29 + } + } + ], + "AU12pyAbz3gWkCcHMqrgphMhuQTJnr9XFocTxZ6Xhk648chD73Uqa": [ + { + "amount": "71.573176115", + "slot": { + "period": 146588, + "thread": 20 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 251456, + "thread": 27 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 480237, + "thread": 28 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 576908, + "thread": 6 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 661034, + "thread": 7 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 935325, + "thread": 8 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1023242, + "thread": 19 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1157656, + "thread": 26 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1348001, + "thread": 24 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1589203, + "thread": 2 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1666097, + "thread": 18 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 1906182, + "thread": 1 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2029810, + "thread": 21 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2238025, + "thread": 6 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2402505, + "thread": 8 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2482458, + "thread": 23 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2674221, + "thread": 17 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 2839435, + "thread": 8 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 3080686, + "thread": 21 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 3193373, + "thread": 4 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 3329097, + "thread": 15 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 3595143, + "thread": 5 + } + }, + { + "amount": "71.573176115", + "slot": { + "period": 3713842, + "thread": 28 + } + }, + { + "amount": "71.573176119", + "slot": { + "period": 3852687, + "thread": 0 + } + } + ], + "AU12pyR3GtDCgFSwFEBwj1f2cBRyckgbTr2HkvgmVRQ9AczSiRiAE": [ + { + "amount": "83.544645308", + "slot": { + "period": 93898, + "thread": 17 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 313166, + "thread": 10 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 341481, + "thread": 4 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 610232, + "thread": 2 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 734914, + "thread": 0 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 922404, + "thread": 28 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 992106, + "thread": 10 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 1161597, + "thread": 6 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 1401146, + "thread": 24 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 1591993, + "thread": 6 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 1714296, + "thread": 22 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 1811887, + "thread": 30 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2105353, + "thread": 6 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2250778, + "thread": 22 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2446952, + "thread": 24 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2509412, + "thread": 5 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2772957, + "thread": 2 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 2915145, + "thread": 13 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 3005092, + "thread": 4 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 3273002, + "thread": 22 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 3430144, + "thread": 19 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 3574421, + "thread": 2 + } + }, + { + "amount": "83.544645308", + "slot": { + "period": 3737801, + "thread": 24 + } + }, + { + "amount": "83.544645299", + "slot": { + "period": 3823327, + "thread": 28 + } + } + ], + "AU12pyUm4d3dPr6jCJS1RtmtVx7W2r3S1HxGpfTTveHdKYJTkzW5a": [ + { + "amount": "61.654926725", + "slot": { + "period": 111789, + "thread": 22 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 194446, + "thread": 1 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 364159, + "thread": 11 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 525884, + "thread": 9 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 676998, + "thread": 15 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 887565, + "thread": 5 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1133810, + "thread": 4 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1209360, + "thread": 19 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1321344, + "thread": 18 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1634663, + "thread": 7 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1741129, + "thread": 21 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 1812586, + "thread": 13 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2000225, + "thread": 9 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2198716, + "thread": 4 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2414419, + "thread": 11 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2568369, + "thread": 31 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2767819, + "thread": 17 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2825122, + "thread": 10 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 2977942, + "thread": 1 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 3286043, + "thread": 27 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 3306041, + "thread": 15 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 3461693, + "thread": 22 + } + }, + { + "amount": "61.654926725", + "slot": { + "period": 3633610, + "thread": 21 + } + }, + { + "amount": "61.654926734", + "slot": { + "period": 3863178, + "thread": 11 + } + } + ], + "AU12pytxm9qW3VYetwmeBUbJ3U7FCDixNf9Dm2CjsJ7WsLT3rV4QG": [ + { + "amount": "702.319609231", + "slot": { + "period": 143585, + "thread": 14 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 314244, + "thread": 26 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 432701, + "thread": 8 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 601720, + "thread": 12 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 677726, + "thread": 29 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 939421, + "thread": 14 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 986799, + "thread": 22 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 1194036, + "thread": 10 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 1435065, + "thread": 21 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 1580505, + "thread": 25 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 1739215, + "thread": 10 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 1827288, + "thread": 0 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2041264, + "thread": 24 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2245733, + "thread": 21 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2324077, + "thread": 28 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2490995, + "thread": 7 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2634440, + "thread": 29 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 2887909, + "thread": 7 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 3020734, + "thread": 4 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 3140591, + "thread": 0 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 3420456, + "thread": 10 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 3515236, + "thread": 24 + } + }, + { + "amount": "702.319609231", + "slot": { + "period": 3722188, + "thread": 21 + } + }, + { + "amount": "702.319609236", + "slot": { + "period": 3882581, + "thread": 6 + } + } + ], + "AU12pzrNbFxJVpcWVGiMh498LVvcJXFWeQYivLQiRiYEtzmYyNzxc": [ + { + "amount": "127.634267746", + "slot": { + "period": 160079, + "thread": 28 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 209172, + "thread": 22 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 389964, + "thread": 20 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 612044, + "thread": 17 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 754126, + "thread": 9 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 946598, + "thread": 21 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1098221, + "thread": 0 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1242241, + "thread": 2 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1450818, + "thread": 6 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1620107, + "thread": 13 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1710996, + "thread": 16 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 1962123, + "thread": 0 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2036703, + "thread": 14 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2167366, + "thread": 11 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2302994, + "thread": 1 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2525736, + "thread": 23 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2631240, + "thread": 15 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 2903005, + "thread": 3 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 3039399, + "thread": 27 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 3142958, + "thread": 6 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 3312550, + "thread": 7 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 3611753, + "thread": 7 + } + }, + { + "amount": "127.634267746", + "slot": { + "period": 3698776, + "thread": 25 + } + }, + { + "amount": "127.634267739", + "slot": { + "period": 3901426, + "thread": 4 + } + } + ], + "AU12pzvACbN495Lp8Af5dM3oCf2Gp5eUaqYHJy3gmjUHdN57S7oNF": [ + { + "amount": "309.499418357", + "slot": { + "period": 39927, + "thread": 9 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 258400, + "thread": 24 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 409961, + "thread": 7 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 595141, + "thread": 4 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 707448, + "thread": 23 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 883872, + "thread": 15 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1120200, + "thread": 25 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1238765, + "thread": 12 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1430319, + "thread": 21 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1581934, + "thread": 6 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1660109, + "thread": 31 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 1954482, + "thread": 9 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2045890, + "thread": 14 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2186918, + "thread": 6 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2303951, + "thread": 26 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2553585, + "thread": 26 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2680161, + "thread": 3 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2813796, + "thread": 17 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 2991298, + "thread": 4 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 3204868, + "thread": 20 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 3435962, + "thread": 16 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 3587738, + "thread": 6 + } + }, + { + "amount": "309.499418357", + "slot": { + "period": 3644938, + "thread": 17 + } + }, + { + "amount": "309.499418362", + "slot": { + "period": 3879168, + "thread": 3 + } + } + ], + "AU12pzvo6JLSW4FG9E8qGAXuh7MFj98PkhwVyJ48R52XjJ7G8wGVL": [ + { + "amount": "82.160161368", + "slot": { + "period": 23484, + "thread": 13 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 273046, + "thread": 6 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 382938, + "thread": 3 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 629427, + "thread": 23 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 775294, + "thread": 27 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 978236, + "thread": 19 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1092156, + "thread": 30 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1252602, + "thread": 27 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1420916, + "thread": 27 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1589114, + "thread": 10 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1727229, + "thread": 10 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 1912252, + "thread": 22 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2077289, + "thread": 6 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2258570, + "thread": 30 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2444593, + "thread": 19 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2521742, + "thread": 22 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2726683, + "thread": 29 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2867154, + "thread": 19 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 2985106, + "thread": 1 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 3173585, + "thread": 27 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 3303714, + "thread": 4 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 3600352, + "thread": 21 + } + }, + { + "amount": "82.160161368", + "slot": { + "period": 3644434, + "thread": 13 + } + }, + { + "amount": "82.160161379", + "slot": { + "period": 3930702, + "thread": 1 + } + } + ], + "AU12q1CUZrCoCbCNHchFJUJRAGZT855rVQpr2ZprLgdG3W7fPDAZu": [ + { + "amount": "349.119709836", + "slot": { + "period": 42514, + "thread": 0 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 209589, + "thread": 23 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 487936, + "thread": 24 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 542349, + "thread": 5 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 700900, + "thread": 18 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 939631, + "thread": 31 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1093632, + "thread": 26 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1284809, + "thread": 6 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1408870, + "thread": 26 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1631405, + "thread": 5 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1668119, + "thread": 6 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1887635, + "thread": 11 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 1982971, + "thread": 26 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2154465, + "thread": 2 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2359411, + "thread": 6 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2566491, + "thread": 3 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2625253, + "thread": 29 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2928413, + "thread": 26 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 2995273, + "thread": 30 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 3242042, + "thread": 30 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 3364819, + "thread": 27 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 3609385, + "thread": 22 + } + }, + { + "amount": "349.119709836", + "slot": { + "period": 3618446, + "thread": 14 + } + }, + { + "amount": "349.119709843", + "slot": { + "period": 3781139, + "thread": 24 + } + } + ], + "AU12q2hD2FCnrEEy3oVPYwzSJpypp7N9K1isMSrLrXeqhtxf2f3aq": [ + { + "amount": "161.172358337", + "slot": { + "period": 137812, + "thread": 25 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 205775, + "thread": 11 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 399497, + "thread": 11 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 505141, + "thread": 2 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 787918, + "thread": 2 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 959292, + "thread": 17 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1096545, + "thread": 31 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1253725, + "thread": 28 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1420338, + "thread": 23 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1491083, + "thread": 18 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1790810, + "thread": 10 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 1902614, + "thread": 16 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2139679, + "thread": 30 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2181251, + "thread": 8 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2450020, + "thread": 27 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2505539, + "thread": 6 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2729617, + "thread": 28 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2861133, + "thread": 7 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 2969517, + "thread": 19 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 3240601, + "thread": 9 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 3314477, + "thread": 4 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 3543752, + "thread": 29 + } + }, + { + "amount": "161.172358337", + "slot": { + "period": 3649322, + "thread": 8 + } + }, + { + "amount": "161.172358339", + "slot": { + "period": 3850355, + "thread": 27 + } + } + ], + "AU12q2y6np65dDYjk3q9QmqjM2SM8UKmMCuEyHEVuwsqLBcvfNGQf": [ + { + "amount": "53.578963095", + "slot": { + "period": 31214, + "thread": 8 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 212713, + "thread": 31 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 411849, + "thread": 26 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 612528, + "thread": 19 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 809132, + "thread": 27 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 875894, + "thread": 8 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1087899, + "thread": 4 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1285652, + "thread": 1 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1391440, + "thread": 12 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1584380, + "thread": 12 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1765298, + "thread": 2 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 1964591, + "thread": 12 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2100922, + "thread": 18 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2234369, + "thread": 25 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2352241, + "thread": 13 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2468447, + "thread": 31 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2644384, + "thread": 0 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 2889260, + "thread": 3 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 3100403, + "thread": 29 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 3287285, + "thread": 31 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 3290440, + "thread": 0 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 3617814, + "thread": 2 + } + }, + { + "amount": "53.578963095", + "slot": { + "period": 3654121, + "thread": 16 + } + }, + { + "amount": "53.578963085", + "slot": { + "period": 3908994, + "thread": 8 + } + } + ], + "AU12q4xy8CFLVTezwgfbpE5Jc2La7kHZMhaXq4LBHWgCYoXM6RYui": [ + { + "amount": "59.489192491", + "slot": { + "period": 128009, + "thread": 1 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 178412, + "thread": 22 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 436121, + "thread": 22 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 622081, + "thread": 18 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 692717, + "thread": 6 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 886507, + "thread": 28 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1012117, + "thread": 4 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1170354, + "thread": 21 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1402754, + "thread": 11 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1559899, + "thread": 25 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1788082, + "thread": 20 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 1813916, + "thread": 6 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2104079, + "thread": 30 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2271803, + "thread": 15 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2398324, + "thread": 15 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2543027, + "thread": 29 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2778196, + "thread": 4 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 2854712, + "thread": 10 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 3066298, + "thread": 21 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 3136198, + "thread": 29 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 3297199, + "thread": 22 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 3522234, + "thread": 21 + } + }, + { + "amount": "59.489192491", + "slot": { + "period": 3627840, + "thread": 7 + } + }, + { + "amount": "59.489192492", + "slot": { + "period": 3820857, + "thread": 0 + } + } + ], + "AU12q6EVEvv1n6wHbaAcJwSNfWQXTrdHGFyMGhEdVFzLX1xES2ZA3": [ + { + "amount": "83.379992747", + "slot": { + "period": 32845, + "thread": 10 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 257673, + "thread": 12 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 379496, + "thread": 23 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 552481, + "thread": 18 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 759276, + "thread": 6 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 957290, + "thread": 1 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1038400, + "thread": 21 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1285315, + "thread": 29 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1352537, + "thread": 16 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1619446, + "thread": 11 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1665393, + "thread": 28 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 1814727, + "thread": 29 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2073940, + "thread": 8 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2182749, + "thread": 9 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2305673, + "thread": 2 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2471245, + "thread": 31 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2681847, + "thread": 2 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 2845860, + "thread": 26 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 3048733, + "thread": 6 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 3156488, + "thread": 22 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 3305192, + "thread": 27 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 3535554, + "thread": 31 + } + }, + { + "amount": "83.379992747", + "slot": { + "period": 3650094, + "thread": 22 + } + }, + { + "amount": "83.379992752", + "slot": { + "period": 3800006, + "thread": 14 + } + } + ], + "AU12q7eNHna965HvUjkTUh49fCmsx5EkfnP7Fbd85MMF88FEN8Kni": [ + { + "amount": "70.942315585", + "slot": { + "period": 82439, + "thread": 22 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 173372, + "thread": 3 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 367647, + "thread": 1 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 577815, + "thread": 26 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 780872, + "thread": 19 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 905615, + "thread": 17 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1079239, + "thread": 12 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1230858, + "thread": 26 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1457362, + "thread": 12 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1643638, + "thread": 16 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1746147, + "thread": 10 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 1929450, + "thread": 31 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2140508, + "thread": 29 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2264984, + "thread": 1 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2384591, + "thread": 26 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2557990, + "thread": 22 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2758294, + "thread": 17 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 2950099, + "thread": 27 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 3076616, + "thread": 30 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 3174703, + "thread": 11 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 3373844, + "thread": 22 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 3606992, + "thread": 31 + } + }, + { + "amount": "70.942315585", + "slot": { + "period": 3776584, + "thread": 30 + } + }, + { + "amount": "70.942315590", + "slot": { + "period": 3849761, + "thread": 5 + } + } + ], + "AU12q7hbACCfHLmdh9wo1oQuafnAb3wZvszy4JKLpmbgNb3CZpVwP": [ + { + "amount": "269.831248604", + "slot": { + "period": 83462, + "thread": 15 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 307346, + "thread": 8 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 436627, + "thread": 0 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 548589, + "thread": 20 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 750481, + "thread": 3 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 913568, + "thread": 8 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1141403, + "thread": 9 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1313699, + "thread": 1 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1394577, + "thread": 10 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1508398, + "thread": 3 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1736629, + "thread": 26 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 1947108, + "thread": 2 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2062249, + "thread": 13 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2251803, + "thread": 3 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2447557, + "thread": 2 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2622733, + "thread": 10 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2681366, + "thread": 26 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 2837262, + "thread": 21 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3118771, + "thread": 4 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3129268, + "thread": 21 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3305362, + "thread": 1 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3547738, + "thread": 27 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3760316, + "thread": 16 + } + }, + { + "amount": "269.831248604", + "slot": { + "period": 3931261, + "thread": 5 + } + } + ], + "AU12q8TLpbNTeoG2wgrv9a1Yz88SaVfXD7CzBQiJG9Hz4MibGxAK": [ + { + "amount": "79.265505504", + "slot": { + "period": 77369, + "thread": 13 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 264786, + "thread": 6 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 327738, + "thread": 29 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 515073, + "thread": 12 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 807009, + "thread": 22 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 965570, + "thread": 28 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 986086, + "thread": 1 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 1200553, + "thread": 12 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 1355248, + "thread": 18 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 1590766, + "thread": 10 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 1710501, + "thread": 11 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 1911090, + "thread": 25 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2126896, + "thread": 14 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2225764, + "thread": 27 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2459547, + "thread": 7 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2549542, + "thread": 22 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2770296, + "thread": 5 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 2801911, + "thread": 15 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 3114492, + "thread": 6 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 3288222, + "thread": 8 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 3293782, + "thread": 20 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 3469678, + "thread": 28 + } + }, + { + "amount": "79.265505504", + "slot": { + "period": 3697814, + "thread": 29 + } + }, + { + "amount": "79.265505508", + "slot": { + "period": 3937742, + "thread": 8 + } + } + ], + "AU12q8pui7nnvHiUzVLY4QmhaiToMBdjZbNpjXuFhjRsnVTRKwifT": [ + { + "amount": "185.220049955", + "slot": { + "period": 19704, + "thread": 29 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 257173, + "thread": 13 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 360982, + "thread": 7 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 636315, + "thread": 29 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 806651, + "thread": 14 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 977891, + "thread": 22 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1081487, + "thread": 15 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1306919, + "thread": 29 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1355045, + "thread": 2 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1492680, + "thread": 22 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1665308, + "thread": 11 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 1860553, + "thread": 15 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2127012, + "thread": 4 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2246075, + "thread": 14 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2410924, + "thread": 5 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2468264, + "thread": 19 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2776699, + "thread": 23 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 2933856, + "thread": 1 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3112080, + "thread": 12 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3271266, + "thread": 29 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3326956, + "thread": 9 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3508659, + "thread": 6 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3711956, + "thread": 7 + } + }, + { + "amount": "185.220049955", + "slot": { + "period": 3794345, + "thread": 8 + } + } + ], + "AU12q9TiYz29jtfJscr2tjqRZNTGzFjgVDRgnamdzr5A6sGN9QT2n": [ + { + "amount": "618.214863544", + "slot": { + "period": 11650, + "thread": 30 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 224614, + "thread": 6 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 462446, + "thread": 18 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 534280, + "thread": 10 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 745891, + "thread": 8 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 898542, + "thread": 24 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1063965, + "thread": 3 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1317296, + "thread": 18 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1420685, + "thread": 20 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1550050, + "thread": 7 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1659729, + "thread": 17 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 1959767, + "thread": 11 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2114995, + "thread": 5 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2149127, + "thread": 21 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2442314, + "thread": 14 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2556806, + "thread": 25 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2688112, + "thread": 8 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 2891968, + "thread": 29 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 3107462, + "thread": 17 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 3185700, + "thread": 10 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 3440747, + "thread": 6 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 3579063, + "thread": 26 + } + }, + { + "amount": "618.214863544", + "slot": { + "period": 3632955, + "thread": 21 + } + }, + { + "amount": "618.214863540", + "slot": { + "period": 3785837, + "thread": 3 + } + } + ], + "AU12q9cVFjS8D4vmNhR5DguA9bkGn8KzdYBNNC7NCavf4etS18zJd": [ + { + "amount": "349.174869659", + "slot": { + "period": 159575, + "thread": 11 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 253858, + "thread": 8 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 480756, + "thread": 10 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 622986, + "thread": 8 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 733089, + "thread": 5 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 826130, + "thread": 10 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1143986, + "thread": 28 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1299664, + "thread": 2 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1467461, + "thread": 21 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1629684, + "thread": 31 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1785677, + "thread": 24 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1942453, + "thread": 5 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 1985632, + "thread": 8 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 2228760, + "thread": 8 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 2409453, + "thread": 11 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 2501796, + "thread": 4 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 2648957, + "thread": 12 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 2953103, + "thread": 27 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 3113762, + "thread": 22 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 3242744, + "thread": 8 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 3322457, + "thread": 16 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 3599069, + "thread": 25 + } + }, + { + "amount": "349.174869659", + "slot": { + "period": 3778038, + "thread": 23 + } + }, + { + "amount": "349.174869656", + "slot": { + "period": 3815282, + "thread": 20 + } + } + ], + "AU12qAgwvHjuHSMDtFVaNfEV9ocZmdfnV3Nup4nkwVC2JtCm7g5NB": [ + { + "amount": "158.923861162", + "slot": { + "period": 74789, + "thread": 25 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 279572, + "thread": 30 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 333384, + "thread": 26 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 499492, + "thread": 17 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 789409, + "thread": 21 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 929405, + "thread": 19 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1022439, + "thread": 14 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1169848, + "thread": 28 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1380400, + "thread": 9 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1630374, + "thread": 16 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1650082, + "thread": 12 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 1960670, + "thread": 23 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2066559, + "thread": 13 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2237104, + "thread": 25 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2387571, + "thread": 25 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2593938, + "thread": 5 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2789023, + "thread": 21 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 2831855, + "thread": 29 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 3057298, + "thread": 24 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 3234742, + "thread": 2 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 3428428, + "thread": 20 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 3583463, + "thread": 26 + } + }, + { + "amount": "158.923861162", + "slot": { + "period": 3718734, + "thread": 24 + } + }, + { + "amount": "158.923861171", + "slot": { + "period": 3835321, + "thread": 0 + } + } + ], + "AU12qBYNFqntFVgiTF8SnpyC1B5y1iJvSUXDxvD3cZk8gG4V2YTav": [ + { + "amount": "503.328310340", + "slot": { + "period": 120046, + "thread": 21 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 240321, + "thread": 26 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 332121, + "thread": 1 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 508436, + "thread": 23 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 755151, + "thread": 3 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 976973, + "thread": 17 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1049108, + "thread": 23 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1281372, + "thread": 11 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1384117, + "thread": 8 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1615831, + "thread": 6 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1668391, + "thread": 3 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 1849302, + "thread": 13 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2142331, + "thread": 11 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2145738, + "thread": 0 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2301361, + "thread": 7 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2592756, + "thread": 20 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2790327, + "thread": 6 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 2899801, + "thread": 18 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 3097820, + "thread": 23 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 3252157, + "thread": 19 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 3375883, + "thread": 22 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 3539140, + "thread": 8 + } + }, + { + "amount": "503.328310340", + "slot": { + "period": 3676545, + "thread": 22 + } + }, + { + "amount": "503.328310344", + "slot": { + "period": 3889677, + "thread": 8 + } + } + ], + "AU12qCaZ8HoEToRbXiEjW4b8T5DBKVmimZuLr64CPxJMEhc7aqzRi": [ + { + "amount": "88.879856098", + "slot": { + "period": 143473, + "thread": 6 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 186563, + "thread": 23 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 332489, + "thread": 1 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 572824, + "thread": 9 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 665606, + "thread": 6 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 885613, + "thread": 27 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1109844, + "thread": 2 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1271981, + "thread": 26 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1367706, + "thread": 21 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1632455, + "thread": 2 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1706057, + "thread": 16 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 1861351, + "thread": 9 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2127441, + "thread": 7 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2249259, + "thread": 15 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2356340, + "thread": 26 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2580244, + "thread": 25 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2714464, + "thread": 1 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 2860325, + "thread": 17 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 3054767, + "thread": 6 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 3252059, + "thread": 2 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 3338409, + "thread": 5 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 3570242, + "thread": 29 + } + }, + { + "amount": "88.879856098", + "slot": { + "period": 3747987, + "thread": 3 + } + }, + { + "amount": "88.879856105", + "slot": { + "period": 3818870, + "thread": 17 + } + } + ], + "AU12qCehbPqjGbAbUCxW16NnxTGtWsWjBPdGLKM4c6wtbkcBuJ46W": [ + { + "amount": "174.283017262", + "slot": { + "period": 16501, + "thread": 29 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 201637, + "thread": 8 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 489779, + "thread": 21 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 594262, + "thread": 24 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 813180, + "thread": 10 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 874399, + "thread": 7 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 993702, + "thread": 2 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 1218101, + "thread": 5 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 1347429, + "thread": 22 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 1622270, + "thread": 30 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 1758927, + "thread": 30 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 1843790, + "thread": 3 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2131073, + "thread": 24 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2213908, + "thread": 31 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2422542, + "thread": 20 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2557234, + "thread": 28 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2725198, + "thread": 3 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 2906447, + "thread": 2 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 3046754, + "thread": 16 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 3147972, + "thread": 2 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 3307372, + "thread": 5 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 3486444, + "thread": 18 + } + }, + { + "amount": "174.283017262", + "slot": { + "period": 3669391, + "thread": 0 + } + }, + { + "amount": "174.283017264", + "slot": { + "period": 3798589, + "thread": 14 + } + } + ], + "AU12qCpUTVCujECawFXEcMqd4qus8L5XMZc7aHMs836SPWPnNksrz": [ + { + "amount": "133.537055108", + "slot": { + "period": 31263, + "thread": 29 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 276340, + "thread": 25 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 416161, + "thread": 0 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 581303, + "thread": 1 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 698263, + "thread": 15 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 942090, + "thread": 29 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1143289, + "thread": 12 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1177126, + "thread": 12 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1424235, + "thread": 0 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1574771, + "thread": 3 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1696134, + "thread": 23 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 1809864, + "thread": 24 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2039838, + "thread": 18 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2276217, + "thread": 15 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2377779, + "thread": 20 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2613080, + "thread": 16 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2730766, + "thread": 2 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 2829456, + "thread": 1 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 3082293, + "thread": 23 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 3177798, + "thread": 14 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 3310147, + "thread": 21 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 3614174, + "thread": 2 + } + }, + { + "amount": "133.537055108", + "slot": { + "period": 3689744, + "thread": 28 + } + }, + { + "amount": "133.537055110", + "slot": { + "period": 3881818, + "thread": 11 + } + } + ], + "AU12qDAWCKThkC3vb4Ve54J4wJF3wEthXV3cdpPMCDPVAibzBfGM9": [ + { + "amount": "131.063589205", + "slot": { + "period": 56017, + "thread": 2 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 320390, + "thread": 15 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 418998, + "thread": 2 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 562620, + "thread": 20 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 789696, + "thread": 11 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 946988, + "thread": 29 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1060372, + "thread": 13 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1303754, + "thread": 7 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1322432, + "thread": 21 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1614171, + "thread": 17 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1670544, + "thread": 21 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 1875207, + "thread": 14 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2132131, + "thread": 31 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2149391, + "thread": 19 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2437691, + "thread": 6 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2557802, + "thread": 5 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2628377, + "thread": 21 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 2829333, + "thread": 4 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 3015165, + "thread": 14 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 3190333, + "thread": 0 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 3303253, + "thread": 8 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 3484678, + "thread": 9 + } + }, + { + "amount": "131.063589205", + "slot": { + "period": 3644138, + "thread": 1 + } + }, + { + "amount": "131.063589207", + "slot": { + "period": 3783738, + "thread": 13 + } + } + ], + "AU12qDxpKiqBqdrmkCATwrFvKhnH5MyQTkRr5JfojTRdTqyzE5XqM": [ + { + "amount": "347.377838413", + "slot": { + "period": 19019, + "thread": 3 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 212947, + "thread": 22 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 352787, + "thread": 1 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 578175, + "thread": 18 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 810271, + "thread": 1 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 956213, + "thread": 11 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1137164, + "thread": 27 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1279969, + "thread": 2 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1447134, + "thread": 17 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1537261, + "thread": 31 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1694879, + "thread": 13 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 1815716, + "thread": 15 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2111614, + "thread": 14 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2217023, + "thread": 15 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2414507, + "thread": 28 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2501349, + "thread": 17 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2728619, + "thread": 9 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 2852014, + "thread": 5 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 3054299, + "thread": 21 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 3159290, + "thread": 6 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 3383917, + "thread": 16 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 3498817, + "thread": 14 + } + }, + { + "amount": "347.377838413", + "slot": { + "period": 3702135, + "thread": 25 + } + }, + { + "amount": "347.377838417", + "slot": { + "period": 3831211, + "thread": 30 + } + } + ], + "AU12qERMUKscrCtXHKR5MrGyhUCpB41HwyZrkrvpJpmB9cew3hBr4": [ + { + "amount": "526.121029810", + "slot": { + "period": 121687, + "thread": 12 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 303213, + "thread": 25 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 435188, + "thread": 30 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 493788, + "thread": 6 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 729563, + "thread": 26 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 956065, + "thread": 20 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1131804, + "thread": 30 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1165844, + "thread": 28 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1432846, + "thread": 0 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1480670, + "thread": 1 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1714698, + "thread": 22 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1961596, + "thread": 15 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 1980622, + "thread": 14 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 2285742, + "thread": 26 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 2305506, + "thread": 30 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 2468540, + "thread": 11 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 2664208, + "thread": 29 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 2929771, + "thread": 1 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 3051478, + "thread": 5 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 3138753, + "thread": 17 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 3408705, + "thread": 20 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 3517970, + "thread": 1 + } + }, + { + "amount": "526.121029810", + "slot": { + "period": 3644957, + "thread": 0 + } + }, + { + "amount": "526.121029801", + "slot": { + "period": 3864037, + "thread": 17 + } + } + ], + "AU12qEVrqH77bAYtk7F5HqqjJwX8uyVc9MMXNGiJopL1puNLFvgVw": [ + { + "amount": "185.950070710", + "slot": { + "period": 24058, + "thread": 24 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 179322, + "thread": 29 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 489990, + "thread": 17 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 599267, + "thread": 16 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 816313, + "thread": 26 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 850282, + "thread": 29 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1040659, + "thread": 4 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1158059, + "thread": 12 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1390364, + "thread": 23 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1544271, + "thread": 26 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1769400, + "thread": 5 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 1895651, + "thread": 0 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2139584, + "thread": 31 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2262169, + "thread": 20 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2425064, + "thread": 14 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2484273, + "thread": 4 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2691785, + "thread": 12 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 2900871, + "thread": 4 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 3069904, + "thread": 24 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 3217616, + "thread": 26 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 3328789, + "thread": 19 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 3584337, + "thread": 3 + } + }, + { + "amount": "185.950070710", + "slot": { + "period": 3635619, + "thread": 10 + } + }, + { + "amount": "185.950070705", + "slot": { + "period": 3925041, + "thread": 2 + } + } + ], + "AU12qEYBptyC8a6x7YFoekwkpzvCqkahrWpjF3S3TzdRLhERGf99j": [ + { + "amount": "151.241822986", + "slot": { + "period": 143125, + "thread": 3 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 267237, + "thread": 13 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 435510, + "thread": 28 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 538535, + "thread": 24 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 709430, + "thread": 19 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 936031, + "thread": 18 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1103075, + "thread": 31 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1294933, + "thread": 12 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1340296, + "thread": 9 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1564644, + "thread": 0 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1792593, + "thread": 8 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 1838955, + "thread": 26 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2055984, + "thread": 30 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2149507, + "thread": 4 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2448459, + "thread": 10 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2614380, + "thread": 31 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2716008, + "thread": 23 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 2818082, + "thread": 5 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 3072652, + "thread": 21 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 3198959, + "thread": 21 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 3320857, + "thread": 17 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 3498877, + "thread": 20 + } + }, + { + "amount": "151.241822986", + "slot": { + "period": 3638162, + "thread": 16 + } + }, + { + "amount": "151.241822981", + "slot": { + "period": 3908414, + "thread": 22 + } + } + ], + "AU12qEfufVN6rJtXsZFWa6RPqoFTbkhn9Nw8p2RvpXAQkPodZpB5D": [ + { + "amount": "140.588359395", + "slot": { + "period": 58678, + "thread": 15 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 248810, + "thread": 27 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 372856, + "thread": 31 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 554907, + "thread": 28 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 687969, + "thread": 21 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 859831, + "thread": 17 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1120775, + "thread": 29 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1220570, + "thread": 27 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1471448, + "thread": 1 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1505976, + "thread": 24 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1790954, + "thread": 21 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1839060, + "thread": 27 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 1983954, + "thread": 24 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 2255388, + "thread": 8 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 2372204, + "thread": 10 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 2593244, + "thread": 30 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 2754744, + "thread": 22 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 2809649, + "thread": 30 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 3116890, + "thread": 24 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 3137404, + "thread": 9 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 3405925, + "thread": 6 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 3576690, + "thread": 18 + } + }, + { + "amount": "140.588359395", + "slot": { + "period": 3719951, + "thread": 7 + } + }, + { + "amount": "140.588359384", + "slot": { + "period": 3874306, + "thread": 26 + } + } + ], + "AU12qEqaaFhyJVsHYLTjCXWzBmeBVp5pjgVYjzjePHhAdYK5GUryK": [ + { + "amount": "624.866398969", + "slot": { + "period": 13118, + "thread": 1 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 249718, + "thread": 14 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 486284, + "thread": 21 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 532769, + "thread": 10 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 660815, + "thread": 22 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 902175, + "thread": 5 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1139929, + "thread": 12 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1174958, + "thread": 18 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1408292, + "thread": 4 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1504622, + "thread": 17 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1756383, + "thread": 26 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 1966819, + "thread": 20 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2084412, + "thread": 30 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2149187, + "thread": 20 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2407014, + "thread": 5 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2506884, + "thread": 23 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2736162, + "thread": 17 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2927516, + "thread": 8 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 2964954, + "thread": 11 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 3175634, + "thread": 11 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 3398604, + "thread": 22 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 3591233, + "thread": 12 + } + }, + { + "amount": "624.866398969", + "slot": { + "period": 3691291, + "thread": 8 + } + }, + { + "amount": "624.866398977", + "slot": { + "period": 3787660, + "thread": 27 + } + } + ], + "AU12qF4Lewbz4eJsuN84DBLfhgSXpGHWmZfQRr4fe3iDgbWkwnekg": [ + { + "amount": "108.366665662", + "slot": { + "period": 27355, + "thread": 25 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 230323, + "thread": 17 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 346151, + "thread": 11 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 515152, + "thread": 17 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 708791, + "thread": 21 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 897003, + "thread": 13 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1126711, + "thread": 30 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1155258, + "thread": 31 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1340712, + "thread": 7 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1514190, + "thread": 11 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1731505, + "thread": 30 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 1821309, + "thread": 20 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2042212, + "thread": 25 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2294943, + "thread": 11 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2394190, + "thread": 0 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2597210, + "thread": 1 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2677517, + "thread": 10 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 2871417, + "thread": 5 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 3046894, + "thread": 2 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 3166177, + "thread": 14 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 3389701, + "thread": 31 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 3498858, + "thread": 6 + } + }, + { + "amount": "108.366665662", + "slot": { + "period": 3675914, + "thread": 28 + } + }, + { + "amount": "108.366665663", + "slot": { + "period": 3901751, + "thread": 4 + } + } + ], + "AU12qFUynyaoqUb9fhKhn21qKEdCKocqQ2ij2CkgMf7HUoTcnreMc": [ + { + "amount": "75.606901577", + "slot": { + "period": 67752, + "thread": 28 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 265789, + "thread": 30 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 457518, + "thread": 4 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 543992, + "thread": 2 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 743768, + "thread": 1 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 932540, + "thread": 30 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1107126, + "thread": 26 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1220495, + "thread": 23 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1375799, + "thread": 20 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1544830, + "thread": 21 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1648283, + "thread": 28 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 1938820, + "thread": 24 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2137216, + "thread": 17 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2161563, + "thread": 3 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2376832, + "thread": 4 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2537193, + "thread": 24 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2713070, + "thread": 0 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 2845113, + "thread": 1 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 3064358, + "thread": 28 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 3138582, + "thread": 22 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 3445748, + "thread": 30 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 3454749, + "thread": 3 + } + }, + { + "amount": "75.606901577", + "slot": { + "period": 3639901, + "thread": 14 + } + }, + { + "amount": "75.606901570", + "slot": { + "period": 3877511, + "thread": 19 + } + } + ], + "AU12qG4tmgm9G2r13ZMBpPjghLkgFpctigcEqhtZ3rQgHKDd6i5zo": [ + { + "amount": "408.689810694", + "slot": { + "period": 24742, + "thread": 6 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 312686, + "thread": 11 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 434187, + "thread": 20 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 565362, + "thread": 26 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 730425, + "thread": 4 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 922302, + "thread": 15 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1096540, + "thread": 23 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1186094, + "thread": 16 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1428725, + "thread": 2 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1486533, + "thread": 24 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1737349, + "thread": 14 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1890252, + "thread": 21 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 1980164, + "thread": 18 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 2215086, + "thread": 2 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 2449513, + "thread": 31 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 2564782, + "thread": 30 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 2634307, + "thread": 27 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 2943592, + "thread": 24 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 3042535, + "thread": 25 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 3155984, + "thread": 7 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 3297763, + "thread": 0 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 3462599, + "thread": 9 + } + }, + { + "amount": "408.689810694", + "slot": { + "period": 3714464, + "thread": 1 + } + }, + { + "amount": "408.689810691", + "slot": { + "period": 3913663, + "thread": 16 + } + } + ], + "AU12qGR5KAg4G6j6zpNjprtTKceyNTbhwy7aUdSM5SmMCkRp7RUND": [ + { + "amount": "187.441876001", + "slot": { + "period": 48563, + "thread": 23 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 292254, + "thread": 18 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 485750, + "thread": 20 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 630717, + "thread": 24 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 777698, + "thread": 9 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 900600, + "thread": 10 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1032496, + "thread": 29 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1168376, + "thread": 13 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1469863, + "thread": 1 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1618778, + "thread": 29 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1789290, + "thread": 18 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 1895528, + "thread": 19 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2030834, + "thread": 12 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2251405, + "thread": 5 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2317508, + "thread": 7 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2462875, + "thread": 8 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2700068, + "thread": 31 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 2921627, + "thread": 31 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 3062748, + "thread": 3 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 3150437, + "thread": 16 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 3340364, + "thread": 4 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 3600343, + "thread": 8 + } + }, + { + "amount": "187.441876001", + "slot": { + "period": 3718752, + "thread": 0 + } + }, + { + "amount": "187.441875994", + "slot": { + "period": 3894076, + "thread": 7 + } + } + ], + "AU12qH3hzsMNGBFkEzaU69hCEvLPUARW9py23Vth4StFgRjbxFAVv": [ + { + "amount": "241.566514100", + "slot": { + "period": 125454, + "thread": 13 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 268974, + "thread": 2 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 470456, + "thread": 22 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 534207, + "thread": 16 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 721676, + "thread": 16 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 960893, + "thread": 2 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1123422, + "thread": 17 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1302147, + "thread": 0 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1406320, + "thread": 0 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1622471, + "thread": 13 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1674514, + "thread": 23 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 1881636, + "thread": 25 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2111304, + "thread": 8 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2252303, + "thread": 4 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2443608, + "thread": 27 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2519542, + "thread": 0 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2757952, + "thread": 27 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 2887748, + "thread": 18 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 3067561, + "thread": 7 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 3204830, + "thread": 16 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 3344417, + "thread": 10 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 3614049, + "thread": 13 + } + }, + { + "amount": "241.566514100", + "slot": { + "period": 3701705, + "thread": 23 + } + }, + { + "amount": "241.566514095", + "slot": { + "period": 3889317, + "thread": 26 + } + } + ], + "AU12qHASDY6GZENzoKLSSY4jo12VSPQUrccVpM6KumwbzXyeD3ALj": [ + { + "amount": "91.009928745", + "slot": { + "period": 87524, + "thread": 2 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 233781, + "thread": 10 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 456398, + "thread": 8 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 636076, + "thread": 4 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 666538, + "thread": 21 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 931753, + "thread": 1 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1130296, + "thread": 24 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1210159, + "thread": 3 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1439502, + "thread": 16 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1573926, + "thread": 7 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1748168, + "thread": 0 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 1822874, + "thread": 15 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2029925, + "thread": 14 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2213318, + "thread": 6 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2337011, + "thread": 30 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2469201, + "thread": 27 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2678275, + "thread": 6 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 2833014, + "thread": 25 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 3086203, + "thread": 8 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 3136902, + "thread": 31 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 3402561, + "thread": 2 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 3573237, + "thread": 8 + } + }, + { + "amount": "91.009928745", + "slot": { + "period": 3709208, + "thread": 23 + } + }, + { + "amount": "91.009928744", + "slot": { + "period": 3932717, + "thread": 5 + } + } + ], + "AU12qJVM3BCTCu8tB7e4LBVgNFB7aEJs424DvKNp9qQ2Ycm3dRHwa": [ + { + "amount": "247.054464079", + "slot": { + "period": 11168, + "thread": 23 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 249762, + "thread": 4 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 443700, + "thread": 6 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 499152, + "thread": 17 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 778096, + "thread": 12 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 976495, + "thread": 4 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1039216, + "thread": 12 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1247955, + "thread": 7 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1374111, + "thread": 3 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1510784, + "thread": 30 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1798278, + "thread": 1 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 1956200, + "thread": 23 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2117934, + "thread": 18 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2153623, + "thread": 11 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2445731, + "thread": 21 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2608008, + "thread": 10 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2655931, + "thread": 7 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 2868353, + "thread": 31 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 3118202, + "thread": 16 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 3138958, + "thread": 16 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 3436231, + "thread": 11 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 3542143, + "thread": 14 + } + }, + { + "amount": "247.054464079", + "slot": { + "period": 3740775, + "thread": 7 + } + }, + { + "amount": "247.054464069", + "slot": { + "period": 3918459, + "thread": 31 + } + } + ], + "AU12qKKLYfPWJJn69PRcycJ9xdt296FtR2TGQvvJ9NGntvo9hbeQZ": [ + { + "amount": "204.039423909", + "slot": { + "period": 143553, + "thread": 25 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 177294, + "thread": 26 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 405203, + "thread": 16 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 591364, + "thread": 26 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 745321, + "thread": 27 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 902099, + "thread": 8 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 985996, + "thread": 24 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 1207278, + "thread": 3 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 1440160, + "thread": 4 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 1645276, + "thread": 31 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 1794843, + "thread": 18 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 1850174, + "thread": 17 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2058463, + "thread": 21 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2202991, + "thread": 17 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2417018, + "thread": 25 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2558317, + "thread": 20 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2665810, + "thread": 4 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 2922054, + "thread": 29 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 3027021, + "thread": 4 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 3142861, + "thread": 1 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 3424553, + "thread": 4 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 3462345, + "thread": 30 + } + }, + { + "amount": "204.039423909", + "slot": { + "period": 3777210, + "thread": 10 + } + }, + { + "amount": "204.039423914", + "slot": { + "period": 3890547, + "thread": 31 + } + } + ], + "AU12qKSeyPHFYegDHqKAJ9w7rGVvS49funPBAoXeGURfk5AVUxzAg": [ + { + "amount": "275.606555948", + "slot": { + "period": 103386, + "thread": 12 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 280878, + "thread": 14 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 444806, + "thread": 30 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 626611, + "thread": 12 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 771796, + "thread": 8 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 958126, + "thread": 17 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1066138, + "thread": 7 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1168916, + "thread": 20 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1320917, + "thread": 16 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1504707, + "thread": 3 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1790844, + "thread": 28 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 1937731, + "thread": 7 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2123538, + "thread": 11 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2152678, + "thread": 9 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2437537, + "thread": 23 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2468427, + "thread": 12 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2751005, + "thread": 14 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 2861158, + "thread": 15 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 3069752, + "thread": 31 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 3211840, + "thread": 30 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 3339931, + "thread": 18 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 3460928, + "thread": 17 + } + }, + { + "amount": "275.606555948", + "slot": { + "period": 3642527, + "thread": 28 + } + }, + { + "amount": "275.606555943", + "slot": { + "period": 3868299, + "thread": 12 + } + } + ], + "AU12qKkW5nFZUx1MocagWGRSJstm6Crukqip7U7nTEgAWNwZtXUWz": [ + { + "amount": "153.127429434", + "slot": { + "period": 167026, + "thread": 26 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 238876, + "thread": 0 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 446736, + "thread": 28 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 568837, + "thread": 0 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 725148, + "thread": 1 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 915064, + "thread": 3 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1124631, + "thread": 8 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1198215, + "thread": 19 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1347701, + "thread": 21 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1581207, + "thread": 22 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1686663, + "thread": 16 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 1878763, + "thread": 28 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2068444, + "thread": 25 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2147230, + "thread": 16 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2448663, + "thread": 26 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2495241, + "thread": 0 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2716744, + "thread": 15 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 2900365, + "thread": 1 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 3009962, + "thread": 16 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 3216597, + "thread": 5 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 3313527, + "thread": 4 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 3519581, + "thread": 3 + } + }, + { + "amount": "153.127429434", + "slot": { + "period": 3771400, + "thread": 9 + } + }, + { + "amount": "153.127429443", + "slot": { + "period": 3813809, + "thread": 4 + } + } + ], + "AU12qL5k9hHoF8arXb4AZE4hxeb63T9QzpzS8F2wS12wSPEDpn2zz": [ + { + "amount": "54.734517568", + "slot": { + "period": 159021, + "thread": 17 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 258157, + "thread": 15 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 439096, + "thread": 11 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 508284, + "thread": 21 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 705825, + "thread": 24 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 848305, + "thread": 30 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1011798, + "thread": 31 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1304842, + "thread": 20 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1373395, + "thread": 30 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1550358, + "thread": 5 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1724034, + "thread": 25 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 1819293, + "thread": 10 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2105353, + "thread": 29 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2151439, + "thread": 21 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2350231, + "thread": 25 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2488588, + "thread": 8 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2647282, + "thread": 17 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 2951689, + "thread": 9 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 3034578, + "thread": 28 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 3281668, + "thread": 19 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 3388942, + "thread": 22 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 3541058, + "thread": 5 + } + }, + { + "amount": "54.734517568", + "slot": { + "period": 3655623, + "thread": 29 + } + }, + { + "amount": "54.734517573", + "slot": { + "period": 3832796, + "thread": 17 + } + } + ], + "AU12qL7zi65YVZm5is7yhJ89nh6zeZim56CrvZdmAigYpEc83Xe6y": [ + { + "amount": "63.470190138", + "slot": { + "period": 166847, + "thread": 25 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 204084, + "thread": 30 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 386058, + "thread": 13 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 574112, + "thread": 14 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 762091, + "thread": 9 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 895344, + "thread": 4 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1035513, + "thread": 30 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1188805, + "thread": 27 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1460515, + "thread": 22 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1569130, + "thread": 19 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1683190, + "thread": 26 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 1859976, + "thread": 1 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2095649, + "thread": 0 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2152047, + "thread": 18 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2401921, + "thread": 23 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2559531, + "thread": 9 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2638469, + "thread": 8 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 2941585, + "thread": 6 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 3047977, + "thread": 4 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 3135184, + "thread": 1 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 3330370, + "thread": 0 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 3523527, + "thread": 11 + } + }, + { + "amount": "63.470190138", + "slot": { + "period": 3653542, + "thread": 9 + } + }, + { + "amount": "63.470190127", + "slot": { + "period": 3878155, + "thread": 8 + } + } + ], + "AU12qLapHJve67iR79dmzXu8UpVson6zog2eVeM8b5wd9cCmJd9Nn": [ + { + "amount": "133.831543306", + "slot": { + "period": 28479, + "thread": 30 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 202171, + "thread": 30 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 377979, + "thread": 22 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 537648, + "thread": 18 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 724690, + "thread": 17 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 891285, + "thread": 31 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1123215, + "thread": 28 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1308519, + "thread": 29 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1418087, + "thread": 20 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1604969, + "thread": 20 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1714645, + "thread": 3 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 1870761, + "thread": 7 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2068493, + "thread": 25 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2150951, + "thread": 6 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2412324, + "thread": 12 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2521650, + "thread": 22 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2761250, + "thread": 28 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 2893522, + "thread": 21 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 3115325, + "thread": 3 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 3135232, + "thread": 31 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 3345216, + "thread": 15 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 3453727, + "thread": 17 + } + }, + { + "amount": "133.831543306", + "slot": { + "period": 3643584, + "thread": 3 + } + }, + { + "amount": "133.831543294", + "slot": { + "period": 3890130, + "thread": 28 + } + } + ], + "AU12qMWLAoEWBAhwi3NvRsm5Fa9Pk6S67wXxoWXeifD7pvhpSkKzZ": [ + { + "amount": "226.023500688", + "slot": { + "period": 142737, + "thread": 24 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 264350, + "thread": 20 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 345578, + "thread": 17 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 538202, + "thread": 10 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 795820, + "thread": 25 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 876184, + "thread": 12 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1083584, + "thread": 7 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1273766, + "thread": 18 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1378314, + "thread": 27 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1562175, + "thread": 19 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1779646, + "thread": 11 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 1812286, + "thread": 10 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2133886, + "thread": 15 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2292558, + "thread": 30 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2311383, + "thread": 12 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2566329, + "thread": 20 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2774917, + "thread": 2 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 2893853, + "thread": 19 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 3060925, + "thread": 21 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 3218447, + "thread": 3 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 3348210, + "thread": 11 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 3572426, + "thread": 15 + } + }, + { + "amount": "226.023500688", + "slot": { + "period": 3622905, + "thread": 25 + } + }, + { + "amount": "226.023500685", + "slot": { + "period": 3828076, + "thread": 27 + } + } + ], + "AU12qMcxmHPcrAAyP62TGBECZoMMf8pgd88U2ziGnUbGdBXEjHKWz": [ + { + "amount": "144.557658579", + "slot": { + "period": 100690, + "thread": 12 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 288656, + "thread": 7 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 379478, + "thread": 22 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 594629, + "thread": 4 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 753192, + "thread": 18 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 961470, + "thread": 27 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1086928, + "thread": 0 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1310849, + "thread": 23 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1437860, + "thread": 15 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1528523, + "thread": 25 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1756480, + "thread": 26 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 1946950, + "thread": 6 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2026459, + "thread": 5 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2200971, + "thread": 3 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2393574, + "thread": 17 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2615783, + "thread": 30 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2698426, + "thread": 18 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 2829704, + "thread": 23 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 3076884, + "thread": 17 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 3184489, + "thread": 31 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 3304949, + "thread": 6 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 3561903, + "thread": 10 + } + }, + { + "amount": "144.557658579", + "slot": { + "period": 3715940, + "thread": 25 + } + }, + { + "amount": "144.557658573", + "slot": { + "period": 3945331, + "thread": 8 + } + } + ], + "AU12qN7jATaywiwk4kPYtExj7ozkZVzfvPHjiXXKZzCxKJCu3vza1": [ + { + "amount": "143.382111676", + "slot": { + "period": 21420, + "thread": 21 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 207359, + "thread": 19 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 400610, + "thread": 1 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 648974, + "thread": 19 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 684839, + "thread": 14 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 872050, + "thread": 14 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1017686, + "thread": 12 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1204087, + "thread": 16 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1375795, + "thread": 7 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1532992, + "thread": 25 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1662709, + "thread": 19 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1820371, + "thread": 5 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 1995709, + "thread": 29 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2249909, + "thread": 16 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2318049, + "thread": 15 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2560609, + "thread": 24 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2713552, + "thread": 18 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2923872, + "thread": 2 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 2963866, + "thread": 29 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 3200509, + "thread": 1 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 3355602, + "thread": 10 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 3508813, + "thread": 0 + } + }, + { + "amount": "143.382111676", + "slot": { + "period": 3684362, + "thread": 11 + } + }, + { + "amount": "143.382111668", + "slot": { + "period": 3873811, + "thread": 17 + } + } + ], + "AU12qNVAxwhzJqbtensKqBcYmtkyqF3zcEEqYAzvBAvdXf89XqmWg": [ + { + "amount": "412.379061162", + "slot": { + "period": 32112, + "thread": 10 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 194133, + "thread": 6 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 429218, + "thread": 11 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 570668, + "thread": 16 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 668426, + "thread": 21 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 942486, + "thread": 21 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1120230, + "thread": 23 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1267160, + "thread": 13 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1422733, + "thread": 7 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1527643, + "thread": 9 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1678236, + "thread": 17 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 1962364, + "thread": 1 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2087204, + "thread": 29 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2282573, + "thread": 10 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2361791, + "thread": 24 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2540539, + "thread": 2 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2683268, + "thread": 25 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2898250, + "thread": 11 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 2965965, + "thread": 13 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 3200552, + "thread": 21 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 3304988, + "thread": 11 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 3580794, + "thread": 31 + } + }, + { + "amount": "412.379061162", + "slot": { + "period": 3674529, + "thread": 30 + } + }, + { + "amount": "412.379061169", + "slot": { + "period": 3893974, + "thread": 27 + } + } + ], + "AU12qNiQh3WeBPpyMPikk23AKsbbKGdS9qv2juS92hqb8h6EZg5XT": [ + { + "amount": "250.199979231", + "slot": { + "period": 62942, + "thread": 16 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 291664, + "thread": 28 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 330043, + "thread": 17 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 609994, + "thread": 2 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 680681, + "thread": 31 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 932465, + "thread": 20 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1026874, + "thread": 22 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1233560, + "thread": 29 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1370014, + "thread": 25 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1510221, + "thread": 25 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1714303, + "thread": 0 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 1952686, + "thread": 7 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2134115, + "thread": 15 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2145747, + "thread": 24 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2395213, + "thread": 14 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2505070, + "thread": 22 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2670595, + "thread": 13 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 2827076, + "thread": 26 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 3074954, + "thread": 18 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 3248205, + "thread": 2 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 3398409, + "thread": 18 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 3595582, + "thread": 16 + } + }, + { + "amount": "250.199979231", + "slot": { + "period": 3650549, + "thread": 14 + } + }, + { + "amount": "250.199979241", + "slot": { + "period": 3876923, + "thread": 14 + } + } + ], + "AU12qPXFtc9ymBBcuHUN9WDnTuCNpjNBzuad9FfWQ4kw8BRqwVKC9": [ + { + "amount": "175.061982046", + "slot": { + "period": 106775, + "thread": 26 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 297632, + "thread": 22 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 491320, + "thread": 28 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 593298, + "thread": 5 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 723749, + "thread": 29 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 974041, + "thread": 25 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1111754, + "thread": 15 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1284188, + "thread": 5 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1367696, + "thread": 27 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1522864, + "thread": 29 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1721752, + "thread": 2 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 1959013, + "thread": 11 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2134172, + "thread": 15 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2243399, + "thread": 31 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2368773, + "thread": 27 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2603131, + "thread": 26 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2707862, + "thread": 11 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 2901059, + "thread": 16 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 3114990, + "thread": 24 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 3261661, + "thread": 27 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 3406618, + "thread": 12 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 3520559, + "thread": 23 + } + }, + { + "amount": "175.061982046", + "slot": { + "period": 3748416, + "thread": 30 + } + }, + { + "amount": "175.061982035", + "slot": { + "period": 3787516, + "thread": 1 + } + } + ], + "AU12qPcux3Q6mv5P6Uw8kNgcEjEzUaMfHoZrMqTuCCmeUpPa5Kakf": [ + { + "amount": "52.087908010", + "slot": { + "period": 63257, + "thread": 26 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 250754, + "thread": 16 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 338885, + "thread": 25 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 614368, + "thread": 29 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 734065, + "thread": 26 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 890706, + "thread": 23 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1099748, + "thread": 18 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1158968, + "thread": 14 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1368543, + "thread": 29 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1610693, + "thread": 3 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1703148, + "thread": 25 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1926755, + "thread": 19 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 1979615, + "thread": 8 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 2224910, + "thread": 19 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 2430998, + "thread": 9 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 2493053, + "thread": 24 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 2730181, + "thread": 31 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 2872931, + "thread": 17 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 3078485, + "thread": 22 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 3182236, + "thread": 29 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 3422912, + "thread": 3 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 3536574, + "thread": 7 + } + }, + { + "amount": "52.087908010", + "slot": { + "period": 3774063, + "thread": 13 + } + }, + { + "amount": "52.087908014", + "slot": { + "period": 3809135, + "thread": 4 + } + } + ], + "AU12qPv5p8MCNrtZTtHYQ5fYV8Xod7RSH27wXZitjvR4oB4JVcjZx": [ + { + "amount": "68.818360508", + "slot": { + "period": 62564, + "thread": 23 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 228780, + "thread": 26 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 427137, + "thread": 2 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 630906, + "thread": 13 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 720093, + "thread": 17 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 896862, + "thread": 8 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 999059, + "thread": 27 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 1249936, + "thread": 15 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 1453726, + "thread": 2 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 1632968, + "thread": 4 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 1722918, + "thread": 17 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 1885240, + "thread": 14 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2061474, + "thread": 2 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2190465, + "thread": 9 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2392492, + "thread": 31 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2505198, + "thread": 21 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2727793, + "thread": 9 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 2801693, + "thread": 9 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 3110927, + "thread": 20 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 3283307, + "thread": 17 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 3319367, + "thread": 4 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 3505900, + "thread": 24 + } + }, + { + "amount": "68.818360508", + "slot": { + "period": 3750236, + "thread": 27 + } + }, + { + "amount": "68.818360517", + "slot": { + "period": 3784805, + "thread": 21 + } + } + ], + "AU12qSfof6oybog1m8UPHCLYLhe7YbB4yYTGNPMfWM11b8422LTkh": [ + { + "amount": "366.302587698", + "slot": { + "period": 59885, + "thread": 24 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 236267, + "thread": 3 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 343152, + "thread": 22 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 529804, + "thread": 25 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 807824, + "thread": 4 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 972702, + "thread": 20 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1044553, + "thread": 22 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1168001, + "thread": 21 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1336583, + "thread": 29 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1491947, + "thread": 28 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1743641, + "thread": 8 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 1971691, + "thread": 9 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2014203, + "thread": 30 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2159620, + "thread": 2 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2361505, + "thread": 15 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2580299, + "thread": 16 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2740203, + "thread": 11 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 2873665, + "thread": 0 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 3042107, + "thread": 23 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 3174685, + "thread": 22 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 3420578, + "thread": 6 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 3477259, + "thread": 6 + } + }, + { + "amount": "366.302587698", + "slot": { + "period": 3735311, + "thread": 29 + } + }, + { + "amount": "366.302587710", + "slot": { + "period": 3879707, + "thread": 0 + } + } + ], + "AU12qT64f5mLaqQ8NZmkCEh8d7KaHdSQWNwmbeURRKTUPzwTVEuiF": [ + { + "amount": "321.982306182", + "slot": { + "period": 131431, + "thread": 20 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 309955, + "thread": 15 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 464713, + "thread": 6 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 493528, + "thread": 18 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 698252, + "thread": 19 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 964601, + "thread": 2 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1058735, + "thread": 22 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1305891, + "thread": 1 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1371096, + "thread": 16 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1561153, + "thread": 29 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1648046, + "thread": 18 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 1834800, + "thread": 22 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2078724, + "thread": 14 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2203827, + "thread": 0 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2431213, + "thread": 24 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2489148, + "thread": 8 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2753109, + "thread": 28 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 2891330, + "thread": 31 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 3023663, + "thread": 7 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 3141197, + "thread": 24 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 3346428, + "thread": 2 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 3604461, + "thread": 23 + } + }, + { + "amount": "321.982306182", + "slot": { + "period": 3673876, + "thread": 17 + } + }, + { + "amount": "321.982306177", + "slot": { + "period": 3937351, + "thread": 20 + } + } + ], + "AU12qT7UpNZ9DiDGufFPtjABcLGHou1ph3eeb6efWs8XyUZ1oUP3C": [ + { + "amount": "258.569084740", + "slot": { + "period": 87899, + "thread": 1 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 242397, + "thread": 9 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 481143, + "thread": 10 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 589897, + "thread": 4 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 730316, + "thread": 17 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 917117, + "thread": 23 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1117123, + "thread": 8 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1166445, + "thread": 3 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1384894, + "thread": 0 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1526698, + "thread": 19 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1715729, + "thread": 4 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1975439, + "thread": 29 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 1995014, + "thread": 16 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2154334, + "thread": 15 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2365833, + "thread": 21 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2591135, + "thread": 19 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2751853, + "thread": 4 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2897448, + "thread": 1 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 2957761, + "thread": 3 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 3261413, + "thread": 23 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 3381139, + "thread": 15 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 3590916, + "thread": 5 + } + }, + { + "amount": "258.569084740", + "slot": { + "period": 3632765, + "thread": 7 + } + }, + { + "amount": "258.569084745", + "slot": { + "period": 3838884, + "thread": 23 + } + } + ], + "AU12qTgU36qZEPoB6Zd5woef8J3yVQVXGFWoFbYSenF6yWfT13JEo": [ + { + "amount": "126.251514599", + "slot": { + "period": 110078, + "thread": 3 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 246732, + "thread": 2 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 357866, + "thread": 26 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 637052, + "thread": 14 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 733123, + "thread": 17 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 926045, + "thread": 10 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1031553, + "thread": 13 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1276555, + "thread": 13 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1339655, + "thread": 29 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1609747, + "thread": 23 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1700543, + "thread": 15 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 1917822, + "thread": 20 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2124789, + "thread": 13 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2220206, + "thread": 11 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2453440, + "thread": 29 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2510019, + "thread": 5 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2635369, + "thread": 24 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 2812084, + "thread": 15 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 3055055, + "thread": 29 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 3186037, + "thread": 5 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 3340490, + "thread": 15 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 3482828, + "thread": 6 + } + }, + { + "amount": "126.251514599", + "slot": { + "period": 3677971, + "thread": 5 + } + }, + { + "amount": "126.251514610", + "slot": { + "period": 3846534, + "thread": 29 + } + } + ], + "AU12qUcgJ5qzLkDFaxypzYKbWhACE53T1erJer7wivtCiCrXxwDMM": [ + { + "amount": "133.662966617", + "slot": { + "period": 114338, + "thread": 13 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 182614, + "thread": 31 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 365859, + "thread": 25 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 498231, + "thread": 30 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 693615, + "thread": 23 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 873028, + "thread": 15 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1030270, + "thread": 25 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1162697, + "thread": 23 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1408259, + "thread": 18 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1496913, + "thread": 3 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1653952, + "thread": 0 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 1904662, + "thread": 10 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2043425, + "thread": 22 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2234417, + "thread": 24 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2409033, + "thread": 13 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2601828, + "thread": 17 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2784163, + "thread": 10 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 2803187, + "thread": 0 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 3075041, + "thread": 0 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 3263645, + "thread": 27 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 3385411, + "thread": 25 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 3510607, + "thread": 15 + } + }, + { + "amount": "133.662966617", + "slot": { + "period": 3779180, + "thread": 9 + } + }, + { + "amount": "133.662966619", + "slot": { + "period": 3922752, + "thread": 28 + } + } + ], + "AU12qUczGThNSnJBimFb2Wxu6eHVgUQFnPi2p7knotqmvYbeKj8kC": [ + { + "amount": "201.005269348", + "slot": { + "period": 39777, + "thread": 13 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 223750, + "thread": 16 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 402202, + "thread": 16 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 563911, + "thread": 26 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 780590, + "thread": 14 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 879439, + "thread": 3 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1068609, + "thread": 23 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1303701, + "thread": 9 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1473301, + "thread": 2 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1520515, + "thread": 8 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1651446, + "thread": 7 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 1922058, + "thread": 21 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2052479, + "thread": 31 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2265186, + "thread": 11 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2333880, + "thread": 5 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2583652, + "thread": 21 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2685652, + "thread": 18 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 2892732, + "thread": 1 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 3068282, + "thread": 9 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 3250960, + "thread": 20 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 3416724, + "thread": 15 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 3590134, + "thread": 9 + } + }, + { + "amount": "201.005269348", + "slot": { + "period": 3748830, + "thread": 7 + } + }, + { + "amount": "201.005269344", + "slot": { + "period": 3924017, + "thread": 23 + } + } + ], + "AU12qUxNjsu7QKzK7V6G9KFZuTp5mdu5SvMT6bapPHFi2D9njsN1N": [ + { + "amount": "150.372479092", + "slot": { + "period": 24622, + "thread": 20 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 246446, + "thread": 0 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 471906, + "thread": 19 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 501910, + "thread": 22 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 738979, + "thread": 7 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 884125, + "thread": 21 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1045412, + "thread": 22 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1220785, + "thread": 27 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1354032, + "thread": 12 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1552865, + "thread": 15 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1766436, + "thread": 22 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 1844437, + "thread": 2 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2012899, + "thread": 11 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2259921, + "thread": 28 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2416827, + "thread": 14 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2566282, + "thread": 26 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2780812, + "thread": 28 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 2861004, + "thread": 22 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 3088076, + "thread": 7 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 3179429, + "thread": 8 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 3297654, + "thread": 12 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 3513071, + "thread": 29 + } + }, + { + "amount": "150.372479092", + "slot": { + "period": 3650572, + "thread": 21 + } + }, + { + "amount": "150.372479101", + "slot": { + "period": 3813461, + "thread": 13 + } + } + ], + "AU12qVwoKZDh5wafC7TNnzv2xSVgKNQ6myHsVw1SScXcnE7FND9Tu": [ + { + "amount": "72.658036296", + "slot": { + "period": 28142, + "thread": 15 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 293945, + "thread": 28 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 340290, + "thread": 31 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 630728, + "thread": 28 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 666282, + "thread": 25 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 873334, + "thread": 18 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 993446, + "thread": 27 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 1269860, + "thread": 25 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 1319030, + "thread": 27 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 1639698, + "thread": 13 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 1707362, + "thread": 12 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 1901899, + "thread": 20 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2024156, + "thread": 30 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2192729, + "thread": 8 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2298996, + "thread": 23 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2511958, + "thread": 25 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2750817, + "thread": 31 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 2865553, + "thread": 21 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 3095722, + "thread": 8 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 3276035, + "thread": 20 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 3346345, + "thread": 7 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 3511718, + "thread": 19 + } + }, + { + "amount": "72.658036296", + "slot": { + "period": 3689526, + "thread": 2 + } + }, + { + "amount": "72.658036290", + "slot": { + "period": 3820081, + "thread": 18 + } + } + ], + "AU12qW3xAbksWkHMJfF1LnEqLwqyvQCx2iY31mCwsnFQpwv5CeGMY": [ + { + "amount": "461.894307894", + "slot": { + "period": 42057, + "thread": 25 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 298076, + "thread": 2 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 429173, + "thread": 25 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 553334, + "thread": 9 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 683829, + "thread": 0 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 877776, + "thread": 26 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1072197, + "thread": 10 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1264141, + "thread": 2 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1453613, + "thread": 17 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1615787, + "thread": 28 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1709083, + "thread": 22 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 1975023, + "thread": 17 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2113909, + "thread": 17 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2148519, + "thread": 27 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2409736, + "thread": 7 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2550095, + "thread": 2 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2758708, + "thread": 24 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 2881588, + "thread": 29 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 3044364, + "thread": 18 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 3229472, + "thread": 13 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 3300330, + "thread": 30 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 3541382, + "thread": 2 + } + }, + { + "amount": "461.894307894", + "slot": { + "period": 3700535, + "thread": 11 + } + }, + { + "amount": "461.894307887", + "slot": { + "period": 3785007, + "thread": 9 + } + } + ], + "AU12qXai1bSenkTrcLmaGgVAMFJ7RzYgMrdYBe4fhkHXGTtyyvWHv": [ + { + "amount": "81.853614364", + "slot": { + "period": 74844, + "thread": 18 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 272258, + "thread": 8 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 357228, + "thread": 0 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 548155, + "thread": 23 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 803068, + "thread": 24 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 874866, + "thread": 10 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1069766, + "thread": 16 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1316667, + "thread": 13 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1386316, + "thread": 24 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1601319, + "thread": 21 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1690116, + "thread": 5 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1957249, + "thread": 10 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 1978784, + "thread": 29 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 2165334, + "thread": 11 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 2359569, + "thread": 31 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 2509875, + "thread": 6 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 2776902, + "thread": 15 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 2881243, + "thread": 30 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 3034814, + "thread": 8 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 3140383, + "thread": 17 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 3412776, + "thread": 3 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 3594251, + "thread": 22 + } + }, + { + "amount": "81.853614364", + "slot": { + "period": 3775692, + "thread": 30 + } + }, + { + "amount": "81.853614369", + "slot": { + "period": 3896828, + "thread": 14 + } + } + ], + "AU12qYQrdDjvQahzY92arunzCKdbD6cpezsrKUu98F2mhHLkUrHqp": [ + { + "amount": "90.312727029", + "slot": { + "period": 38051, + "thread": 13 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 197446, + "thread": 11 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 422716, + "thread": 20 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 548321, + "thread": 21 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 738051, + "thread": 2 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 840170, + "thread": 4 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1044947, + "thread": 4 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1290053, + "thread": 20 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1417826, + "thread": 6 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1521372, + "thread": 3 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1775397, + "thread": 25 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1920481, + "thread": 0 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 1998325, + "thread": 30 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 2262402, + "thread": 1 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 2324693, + "thread": 23 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 2476782, + "thread": 12 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 2779720, + "thread": 0 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 2928523, + "thread": 25 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 3094999, + "thread": 21 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 3275501, + "thread": 6 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 3400785, + "thread": 0 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 3466997, + "thread": 13 + } + }, + { + "amount": "90.312727029", + "slot": { + "period": 3710500, + "thread": 4 + } + }, + { + "amount": "90.312727026", + "slot": { + "period": 3845854, + "thread": 30 + } + } + ], + "AU12qYWqS9vciSUhjSdJ27odwqtpoYxMmxpPPZnbNQZCkrVkPix8V": [ + { + "amount": "63.824150908", + "slot": { + "period": 72755, + "thread": 8 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 283397, + "thread": 17 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 370844, + "thread": 22 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 564713, + "thread": 13 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 772520, + "thread": 14 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 897788, + "thread": 16 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1092048, + "thread": 17 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1180792, + "thread": 25 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1479128, + "thread": 6 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1568921, + "thread": 29 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1734062, + "thread": 14 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 1949129, + "thread": 12 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2085514, + "thread": 9 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2156318, + "thread": 11 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2295734, + "thread": 10 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2531119, + "thread": 20 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2783574, + "thread": 8 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 2873250, + "thread": 8 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 3106516, + "thread": 22 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 3250326, + "thread": 4 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 3432952, + "thread": 28 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 3589135, + "thread": 2 + } + }, + { + "amount": "63.824150908", + "slot": { + "period": 3756385, + "thread": 1 + } + }, + { + "amount": "63.824150918", + "slot": { + "period": 3836452, + "thread": 1 + } + } + ], + "AU12qZ6DTgZe4bMMGZ5vad9qRbbvnGb33H2R7p3CSdp3D4yvWSJF4": [ + { + "amount": "278.412701920", + "slot": { + "period": 23147, + "thread": 11 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 189104, + "thread": 9 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 385002, + "thread": 26 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 512747, + "thread": 10 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 779917, + "thread": 11 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 890952, + "thread": 29 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1002970, + "thread": 9 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1204794, + "thread": 29 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1355069, + "thread": 15 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1492464, + "thread": 31 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1799368, + "thread": 10 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1811169, + "thread": 26 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 1994131, + "thread": 7 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2182917, + "thread": 10 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2415495, + "thread": 0 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2493683, + "thread": 1 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2791105, + "thread": 13 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2850570, + "thread": 24 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 2956622, + "thread": 26 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 3137024, + "thread": 25 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 3328417, + "thread": 28 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 3536517, + "thread": 30 + } + }, + { + "amount": "278.412701920", + "slot": { + "period": 3732351, + "thread": 31 + } + }, + { + "amount": "278.412701914", + "slot": { + "period": 3881604, + "thread": 23 + } + } + ], + "AU12qbJxTKre1zQATtgNyhFY7pxb1m7EAyDEHfFzHXEo1p6AXKoR2": [ + { + "amount": "431.347646100", + "slot": { + "period": 145081, + "thread": 14 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 295634, + "thread": 6 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 324768, + "thread": 9 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 642194, + "thread": 6 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 724696, + "thread": 14 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 890485, + "thread": 4 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1023831, + "thread": 6 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1304940, + "thread": 2 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1352681, + "thread": 11 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1609848, + "thread": 7 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1678615, + "thread": 13 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 1922714, + "thread": 0 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2001437, + "thread": 12 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2187323, + "thread": 10 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2318956, + "thread": 5 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2605631, + "thread": 2 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2746536, + "thread": 10 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 2832842, + "thread": 27 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 3003179, + "thread": 2 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 3254860, + "thread": 9 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 3387811, + "thread": 4 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 3514029, + "thread": 14 + } + }, + { + "amount": "431.347646100", + "slot": { + "period": 3678422, + "thread": 4 + } + }, + { + "amount": "431.347646106", + "slot": { + "period": 3842295, + "thread": 21 + } + } + ], + "AU12qbQfvQUUgCbvqNzBMuu72zXJMCQCE8uHB1uDZMqPaQ3sN17Yh": [ + { + "amount": "169.637902181", + "slot": { + "period": 61542, + "thread": 28 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 291929, + "thread": 3 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 460341, + "thread": 9 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 643783, + "thread": 16 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 668729, + "thread": 12 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 935680, + "thread": 14 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1037043, + "thread": 17 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1226541, + "thread": 11 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1363833, + "thread": 16 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1538097, + "thread": 25 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1700152, + "thread": 28 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 1818953, + "thread": 5 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2104587, + "thread": 19 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2257200, + "thread": 8 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2417772, + "thread": 13 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2525388, + "thread": 17 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2687129, + "thread": 8 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 2813638, + "thread": 2 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 3119545, + "thread": 2 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 3124786, + "thread": 13 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 3349262, + "thread": 20 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 3563490, + "thread": 2 + } + }, + { + "amount": "169.637902181", + "slot": { + "period": 3731822, + "thread": 22 + } + }, + { + "amount": "169.637902188", + "slot": { + "period": 3790400, + "thread": 7 + } + } + ], + "AU12qc6bob2ygNoeCVSEs3vaieLFHenZwCu9RpzzGwqYMpJTm55zp": [ + { + "amount": "279.005439347", + "slot": { + "period": 118282, + "thread": 24 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 178021, + "thread": 23 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 337147, + "thread": 0 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 594122, + "thread": 18 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 691846, + "thread": 20 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 923138, + "thread": 0 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1141010, + "thread": 25 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1299913, + "thread": 26 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1383440, + "thread": 28 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1622551, + "thread": 18 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1677131, + "thread": 3 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 1862516, + "thread": 17 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2129787, + "thread": 25 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2224929, + "thread": 9 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2398309, + "thread": 13 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2493836, + "thread": 7 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2638115, + "thread": 15 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 2833151, + "thread": 3 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 3065063, + "thread": 6 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 3270277, + "thread": 23 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 3445238, + "thread": 17 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 3465525, + "thread": 10 + } + }, + { + "amount": "279.005439347", + "slot": { + "period": 3670761, + "thread": 28 + } + }, + { + "amount": "279.005439336", + "slot": { + "period": 3798267, + "thread": 14 + } + } + ], + "AU12qcALCtS4G6pYQwubzwuXcbTdhebateiaNfbUkdoy4ABTz4WQW": [ + { + "amount": "248.942907719", + "slot": { + "period": 35268, + "thread": 20 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 321841, + "thread": 12 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 415248, + "thread": 31 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 601524, + "thread": 20 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 682063, + "thread": 23 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 906410, + "thread": 6 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1009599, + "thread": 11 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1284218, + "thread": 20 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1364216, + "thread": 14 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1514914, + "thread": 30 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1670760, + "thread": 27 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 1855217, + "thread": 18 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2014661, + "thread": 2 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2273839, + "thread": 18 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2345458, + "thread": 7 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2562673, + "thread": 25 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2659191, + "thread": 9 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 2946651, + "thread": 15 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 3039929, + "thread": 30 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 3157544, + "thread": 23 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 3420725, + "thread": 15 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 3570192, + "thread": 7 + } + }, + { + "amount": "248.942907719", + "slot": { + "period": 3661582, + "thread": 11 + } + }, + { + "amount": "248.942907726", + "slot": { + "period": 3902244, + "thread": 12 + } + } + ], + "AU12qcEZeHDXkqYeB8KdT2nMwqzoDkXbDkBbYdaJCZ2jWgFt3kcRv": [ + { + "amount": "302.076567445", + "slot": { + "period": 104510, + "thread": 3 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 266785, + "thread": 15 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 324565, + "thread": 21 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 526206, + "thread": 24 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 799481, + "thread": 28 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 943832, + "thread": 5 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 984563, + "thread": 18 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 1256727, + "thread": 20 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 1382407, + "thread": 12 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 1517101, + "thread": 19 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 1801169, + "thread": 15 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 1945146, + "thread": 28 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2078578, + "thread": 7 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2262305, + "thread": 27 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2342104, + "thread": 11 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2545694, + "thread": 5 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2783632, + "thread": 4 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2901267, + "thread": 1 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 2962203, + "thread": 28 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 3194445, + "thread": 3 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 3343978, + "thread": 28 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 3570642, + "thread": 4 + } + }, + { + "amount": "302.076567445", + "slot": { + "period": 3754300, + "thread": 5 + } + }, + { + "amount": "302.076567449", + "slot": { + "period": 3892099, + "thread": 31 + } + } + ], + "AU12qdHTEjsFw41sbtxsq72hV8MXHDA9BpZJrF8JewQTayXpBPTE7": [ + { + "amount": "347.438734989", + "slot": { + "period": 63510, + "thread": 18 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 312535, + "thread": 13 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 357449, + "thread": 16 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 516545, + "thread": 0 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 799336, + "thread": 16 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 969502, + "thread": 14 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1056114, + "thread": 13 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1259029, + "thread": 4 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1446082, + "thread": 10 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1603311, + "thread": 27 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1712378, + "thread": 29 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 1894924, + "thread": 17 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2024929, + "thread": 28 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2241982, + "thread": 29 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2339496, + "thread": 12 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2494363, + "thread": 8 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2759074, + "thread": 20 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 2937237, + "thread": 24 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 3034362, + "thread": 26 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 3200543, + "thread": 9 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 3337410, + "thread": 14 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 3480675, + "thread": 30 + } + }, + { + "amount": "347.438734989", + "slot": { + "period": 3722924, + "thread": 28 + } + }, + { + "amount": "347.438734999", + "slot": { + "period": 3793109, + "thread": 9 + } + } + ], + "AU12qdRiYxe7MU5UfDCS2xX2FjN4ejuYUgrM1Pe4PrMC3VSwiHm9h": [ + { + "amount": "77.992224946", + "slot": { + "period": 54075, + "thread": 5 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 269191, + "thread": 29 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 394360, + "thread": 3 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 643862, + "thread": 3 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 742185, + "thread": 25 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 823207, + "thread": 17 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1075267, + "thread": 5 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1223292, + "thread": 19 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1470671, + "thread": 31 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1481693, + "thread": 6 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1706501, + "thread": 4 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1897170, + "thread": 21 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 1977281, + "thread": 30 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 2260433, + "thread": 18 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 2377130, + "thread": 30 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 2483791, + "thread": 12 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 2696772, + "thread": 16 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 2912568, + "thread": 2 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 3027806, + "thread": 26 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 3204021, + "thread": 11 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 3402820, + "thread": 3 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 3514282, + "thread": 6 + } + }, + { + "amount": "77.992224946", + "slot": { + "period": 3764561, + "thread": 6 + } + }, + { + "amount": "77.992224951", + "slot": { + "period": 3803665, + "thread": 3 + } + } + ], + "AU12qeTR5zPRSPc2n7y18F5NjefG5aF4YMQSebStt4nfbeWnvDe7m": [ + { + "amount": "57.357524647", + "slot": { + "period": 128154, + "thread": 8 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 297171, + "thread": 2 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 429994, + "thread": 7 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 618288, + "thread": 18 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 677868, + "thread": 31 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 830565, + "thread": 19 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1105404, + "thread": 18 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1180285, + "thread": 25 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1404572, + "thread": 6 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1495193, + "thread": 25 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1769232, + "thread": 16 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 1924392, + "thread": 3 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2119460, + "thread": 6 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2269052, + "thread": 26 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2429156, + "thread": 14 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2500537, + "thread": 28 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2640807, + "thread": 3 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 2824056, + "thread": 9 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 3102521, + "thread": 13 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 3214876, + "thread": 9 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 3385243, + "thread": 14 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 3558910, + "thread": 23 + } + }, + { + "amount": "57.357524647", + "slot": { + "period": 3731284, + "thread": 5 + } + }, + { + "amount": "57.357524643", + "slot": { + "period": 3886669, + "thread": 30 + } + } + ], + "AU12qeUBZA4mmtpTmvo8hNYkC6LP4dEN8T9ZJFaFFHqNypCKGnsRr": [ + { + "amount": "192.850494842", + "slot": { + "period": 156798, + "thread": 13 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 257493, + "thread": 2 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 463013, + "thread": 15 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 507431, + "thread": 3 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 724499, + "thread": 2 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 891903, + "thread": 6 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1125051, + "thread": 20 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1213815, + "thread": 26 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1339942, + "thread": 12 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1639529, + "thread": 5 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1756892, + "thread": 31 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 1830313, + "thread": 25 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2017636, + "thread": 18 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2162122, + "thread": 3 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2303845, + "thread": 22 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2497705, + "thread": 13 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2665115, + "thread": 26 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 2935448, + "thread": 4 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 3066279, + "thread": 16 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 3233262, + "thread": 20 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 3439957, + "thread": 23 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 3581154, + "thread": 10 + } + }, + { + "amount": "192.850494842", + "slot": { + "period": 3623636, + "thread": 5 + } + }, + { + "amount": "192.850494854", + "slot": { + "period": 3823705, + "thread": 1 + } + } + ], + "AU12qfGx7NKj59txfpAtFEi8akYec1qq8KCgEqnPL118ve4tkEiDz": [ + { + "amount": "407.954521923", + "slot": { + "period": 112029, + "thread": 19 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 190874, + "thread": 24 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 456746, + "thread": 4 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 554089, + "thread": 5 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 669833, + "thread": 11 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 921697, + "thread": 18 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1146799, + "thread": 3 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1159444, + "thread": 28 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1429679, + "thread": 7 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1525544, + "thread": 17 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1803253, + "thread": 0 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 1869153, + "thread": 28 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2017296, + "thread": 4 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2239225, + "thread": 29 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2409503, + "thread": 11 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2495127, + "thread": 0 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2678475, + "thread": 20 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2923127, + "thread": 16 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 2960849, + "thread": 11 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 3160985, + "thread": 5 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 3396274, + "thread": 24 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 3554895, + "thread": 20 + } + }, + { + "amount": "407.954521923", + "slot": { + "period": 3676989, + "thread": 4 + } + }, + { + "amount": "407.954521927", + "slot": { + "period": 3797505, + "thread": 4 + } + } + ], + "AU12qfiiTvjKuBQhdtsDu4TTmBD2f4aXu1JY9ge4sggtqYxJDv6B7": [ + { + "amount": "129.775383621", + "slot": { + "period": 53817, + "thread": 15 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 238824, + "thread": 24 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 344547, + "thread": 27 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 636910, + "thread": 17 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 662321, + "thread": 13 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 945991, + "thread": 11 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1076584, + "thread": 9 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1185469, + "thread": 23 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1428731, + "thread": 24 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1609945, + "thread": 24 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1747129, + "thread": 0 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1935905, + "thread": 19 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 1991888, + "thread": 31 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 2266784, + "thread": 17 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 2378319, + "thread": 10 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 2610832, + "thread": 27 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 2698306, + "thread": 29 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 2891800, + "thread": 29 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 3087335, + "thread": 8 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 3134899, + "thread": 6 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 3442879, + "thread": 17 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 3483656, + "thread": 12 + } + }, + { + "amount": "129.775383621", + "slot": { + "period": 3655575, + "thread": 4 + } + }, + { + "amount": "129.775383617", + "slot": { + "period": 3855374, + "thread": 7 + } + } + ], + "AU12qgBHg8urQAtjuAzhzr2ECDzAtJDFbMTTkJVbWAZuxGxpgjb7R": [ + { + "amount": "116.306005409", + "slot": { + "period": 59967, + "thread": 26 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 210252, + "thread": 28 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 477097, + "thread": 18 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 650077, + "thread": 7 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 778626, + "thread": 23 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 936385, + "thread": 6 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1064824, + "thread": 29 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1295124, + "thread": 19 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1348646, + "thread": 2 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1585921, + "thread": 31 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1804384, + "thread": 18 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 1829577, + "thread": 14 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2051982, + "thread": 14 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2203150, + "thread": 19 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2424706, + "thread": 16 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2583244, + "thread": 15 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2714788, + "thread": 6 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 2797416, + "thread": 6 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 3019796, + "thread": 31 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 3151659, + "thread": 21 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 3365066, + "thread": 2 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 3509600, + "thread": 13 + } + }, + { + "amount": "116.306005409", + "slot": { + "period": 3662212, + "thread": 11 + } + }, + { + "amount": "116.306005411", + "slot": { + "period": 3845556, + "thread": 25 + } + } + ], + "AU12qgVaNwk1WgtcJLGLpkw4g4FQA9jMzJPHmnXz4iChEuH7Kz8he": [ + { + "amount": "111.616381766", + "slot": { + "period": 158865, + "thread": 14 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 295374, + "thread": 30 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 460571, + "thread": 11 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 565794, + "thread": 19 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 705235, + "thread": 17 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 921836, + "thread": 31 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1045479, + "thread": 28 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1157074, + "thread": 31 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1358490, + "thread": 16 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1532367, + "thread": 12 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1747368, + "thread": 17 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1940235, + "thread": 11 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 1989876, + "thread": 9 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 2173393, + "thread": 2 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 2310496, + "thread": 7 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 2469357, + "thread": 10 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 2727592, + "thread": 1 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 2891817, + "thread": 5 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3083676, + "thread": 31 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3264735, + "thread": 24 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3431184, + "thread": 7 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3597479, + "thread": 12 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3663341, + "thread": 1 + } + }, + { + "amount": "111.616381766", + "slot": { + "period": 3804664, + "thread": 22 + } + } + ], + "AU12qgweCQ1b3JW2ZazpoT6soe2qXaNDY4t7iDuQaXzidbSZ4LnBV": [ + { + "amount": "109.102738767", + "slot": { + "period": 128637, + "thread": 14 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 217003, + "thread": 4 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 396975, + "thread": 7 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 595944, + "thread": 12 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 705963, + "thread": 0 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 952334, + "thread": 13 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1014475, + "thread": 24 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1220603, + "thread": 16 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1366444, + "thread": 8 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1493953, + "thread": 0 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1747627, + "thread": 24 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1910580, + "thread": 15 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 1987049, + "thread": 29 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 2282325, + "thread": 6 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 2295193, + "thread": 21 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 2578654, + "thread": 15 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 2641891, + "thread": 20 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 2935091, + "thread": 25 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 3053936, + "thread": 26 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 3189631, + "thread": 6 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 3422959, + "thread": 10 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 3468696, + "thread": 2 + } + }, + { + "amount": "109.102738767", + "slot": { + "period": 3675321, + "thread": 8 + } + }, + { + "amount": "109.102738760", + "slot": { + "period": 3849056, + "thread": 30 + } + } + ], + "AU12qh3GfeMmY3w42bwgfMrwErj7gh6vQBH8uYx84ZdBTvfrHcBMe": [ + { + "amount": "105.398430888", + "slot": { + "period": 105762, + "thread": 0 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 269670, + "thread": 1 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 359165, + "thread": 22 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 601178, + "thread": 12 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 665825, + "thread": 26 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 976293, + "thread": 20 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1131389, + "thread": 25 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1231237, + "thread": 24 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1345087, + "thread": 0 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1576118, + "thread": 18 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1716934, + "thread": 22 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 1924027, + "thread": 20 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2096339, + "thread": 23 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2222850, + "thread": 4 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2448975, + "thread": 16 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2574639, + "thread": 27 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2632375, + "thread": 11 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 2826390, + "thread": 13 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 3100810, + "thread": 20 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 3287930, + "thread": 10 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 3442890, + "thread": 12 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 3582460, + "thread": 10 + } + }, + { + "amount": "105.398430888", + "slot": { + "period": 3705630, + "thread": 20 + } + }, + { + "amount": "105.398430900", + "slot": { + "period": 3853464, + "thread": 4 + } + } + ], + "AU12qhX875kWHeiW8RTwGmwgTXMLFDKP6z431Kt8DkVzryhYB3HM5": [ + { + "amount": "88.651192118", + "slot": { + "period": 131000, + "thread": 5 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 243593, + "thread": 14 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 375480, + "thread": 5 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 652419, + "thread": 13 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 698539, + "thread": 20 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 856560, + "thread": 8 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1057324, + "thread": 15 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1228780, + "thread": 13 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1432166, + "thread": 27 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1500222, + "thread": 28 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1690873, + "thread": 22 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 1907066, + "thread": 9 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2124970, + "thread": 28 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2276848, + "thread": 2 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2361610, + "thread": 22 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2494688, + "thread": 14 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2718972, + "thread": 2 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 2881370, + "thread": 28 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 3111274, + "thread": 2 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 3281932, + "thread": 18 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 3417759, + "thread": 28 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 3615212, + "thread": 14 + } + }, + { + "amount": "88.651192118", + "slot": { + "period": 3739176, + "thread": 25 + } + }, + { + "amount": "88.651192117", + "slot": { + "period": 3830138, + "thread": 3 + } + } + ], + "AU12qhcR9TYbfAe5wrUHg3b9Reqk4VLMvHPBtoLUkVgPpf7szoFB4": [ + { + "amount": "244.891566391", + "slot": { + "period": 147020, + "thread": 8 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 250352, + "thread": 3 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 400952, + "thread": 27 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 648210, + "thread": 9 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 776246, + "thread": 23 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 851113, + "thread": 19 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 998050, + "thread": 22 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 1162905, + "thread": 5 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 1430226, + "thread": 5 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 1613741, + "thread": 1 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 1688741, + "thread": 29 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 1815577, + "thread": 16 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2022428, + "thread": 25 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2285406, + "thread": 16 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2322886, + "thread": 2 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2553710, + "thread": 10 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2674452, + "thread": 19 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2843985, + "thread": 17 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 2957501, + "thread": 2 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 3238446, + "thread": 21 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 3349050, + "thread": 19 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 3492400, + "thread": 20 + } + }, + { + "amount": "244.891566391", + "slot": { + "period": 3674878, + "thread": 27 + } + }, + { + "amount": "244.891566390", + "slot": { + "period": 3870853, + "thread": 3 + } + } + ], + "AU12qhuHzqJLbN9K5u3iwYCV3J83wbh1A3uNR1bHYugstGJgEbU1h": [ + { + "amount": "90.837138850", + "slot": { + "period": 106505, + "thread": 0 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 318175, + "thread": 7 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 421891, + "thread": 14 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 620875, + "thread": 21 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 653644, + "thread": 1 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 824505, + "thread": 24 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1042304, + "thread": 21 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1291977, + "thread": 14 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1410233, + "thread": 29 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1494079, + "thread": 12 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1654512, + "thread": 30 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 1861195, + "thread": 12 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2099991, + "thread": 6 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2178706, + "thread": 9 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2382646, + "thread": 26 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2507063, + "thread": 25 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2775738, + "thread": 11 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 2913238, + "thread": 29 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 3031614, + "thread": 30 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 3169935, + "thread": 31 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 3308168, + "thread": 14 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 3575412, + "thread": 7 + } + }, + { + "amount": "90.837138850", + "slot": { + "period": 3756716, + "thread": 2 + } + }, + { + "amount": "90.837138851", + "slot": { + "period": 3845831, + "thread": 30 + } + } + ], + "AU12qhwgyLKJd1tJWhiTLpdwFtiWyqEKejjXwXA6fd8xHFu22M2WV": [ + { + "amount": "89.582161704", + "slot": { + "period": 27410, + "thread": 7 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 296692, + "thread": 31 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 434245, + "thread": 1 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 531187, + "thread": 13 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 752930, + "thread": 29 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 908596, + "thread": 7 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1094325, + "thread": 11 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1287597, + "thread": 8 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1336197, + "thread": 2 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1495479, + "thread": 10 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1680174, + "thread": 5 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 1963516, + "thread": 6 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2096625, + "thread": 2 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2168513, + "thread": 19 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2455311, + "thread": 19 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2473466, + "thread": 5 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2746726, + "thread": 27 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 2834398, + "thread": 2 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 3072565, + "thread": 4 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 3129250, + "thread": 27 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 3301890, + "thread": 11 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 3461716, + "thread": 10 + } + }, + { + "amount": "89.582161704", + "slot": { + "period": 3775440, + "thread": 18 + } + }, + { + "amount": "89.582161713", + "slot": { + "period": 3914587, + "thread": 10 + } + } + ], + "AU12qikhPEh8Y15oLbt9xyX9DxHpSqzbNypnDJ2izLcX4TV2ToiJd": [ + { + "amount": "213.355881240", + "slot": { + "period": 61346, + "thread": 7 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 276277, + "thread": 22 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 423420, + "thread": 23 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 589165, + "thread": 23 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 791387, + "thread": 27 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 924584, + "thread": 3 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1007840, + "thread": 16 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1301840, + "thread": 3 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1426370, + "thread": 10 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1639305, + "thread": 7 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1787059, + "thread": 6 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 1947098, + "thread": 8 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2084783, + "thread": 23 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2234246, + "thread": 25 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2437305, + "thread": 27 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2544594, + "thread": 22 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2782015, + "thread": 18 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 2935614, + "thread": 8 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 3044335, + "thread": 24 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 3126455, + "thread": 14 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 3400881, + "thread": 20 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 3547558, + "thread": 29 + } + }, + { + "amount": "213.355881240", + "slot": { + "period": 3645797, + "thread": 2 + } + }, + { + "amount": "213.355881250", + "slot": { + "period": 3914645, + "thread": 25 + } + } + ], + "AU12qjPsyiZrVUaaxqADk8JQQHF16raALC3Zr6sbEve7moKVZsWiF": [ + { + "amount": "242.791493700", + "slot": { + "period": 140868, + "thread": 19 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 272669, + "thread": 3 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 405128, + "thread": 18 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 639699, + "thread": 4 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 766409, + "thread": 12 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 955323, + "thread": 11 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1127057, + "thread": 6 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1310642, + "thread": 15 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1395093, + "thread": 22 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1562887, + "thread": 13 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1728280, + "thread": 28 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 1913945, + "thread": 26 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2022533, + "thread": 0 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2258260, + "thread": 28 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2408105, + "thread": 18 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2562069, + "thread": 28 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2657234, + "thread": 22 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 2952264, + "thread": 0 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 3051244, + "thread": 6 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 3226058, + "thread": 9 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 3295276, + "thread": 26 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 3542861, + "thread": 11 + } + }, + { + "amount": "242.791493700", + "slot": { + "period": 3739197, + "thread": 27 + } + }, + { + "amount": "242.791493693", + "slot": { + "period": 3828343, + "thread": 6 + } + } + ], + "AU12qjcTVQ3nYwJjtL2cxQZfQm2S783GndEhNfLL11YYgVmrPTyfN": [ + { + "amount": "411.611238042", + "slot": { + "period": 18916, + "thread": 19 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 215012, + "thread": 9 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 419980, + "thread": 5 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 491658, + "thread": 18 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 783996, + "thread": 11 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 825491, + "thread": 28 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1103882, + "thread": 13 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1256628, + "thread": 20 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1435439, + "thread": 5 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1615280, + "thread": 9 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1687168, + "thread": 18 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 1857470, + "thread": 31 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2098359, + "thread": 14 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2280351, + "thread": 19 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2373441, + "thread": 3 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2484469, + "thread": 3 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2633319, + "thread": 1 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 2921434, + "thread": 23 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 3029242, + "thread": 2 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 3186108, + "thread": 19 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 3378145, + "thread": 30 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 3530579, + "thread": 31 + } + }, + { + "amount": "411.611238042", + "slot": { + "period": 3694291, + "thread": 3 + } + }, + { + "amount": "411.611238045", + "slot": { + "period": 3901960, + "thread": 2 + } + } + ], + "AU12qjqzSruTcJt6reRSvE6UphiSj9HNP9J2mJR3LdHbdfUhqBHGd": [ + { + "amount": "154.686609825", + "slot": { + "period": 58130, + "thread": 5 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 220631, + "thread": 15 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 455866, + "thread": 16 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 630048, + "thread": 7 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 791287, + "thread": 6 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 979707, + "thread": 28 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1037947, + "thread": 5 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1301598, + "thread": 13 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1329788, + "thread": 2 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1539863, + "thread": 28 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1750568, + "thread": 23 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 1812517, + "thread": 22 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2006097, + "thread": 26 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2235200, + "thread": 30 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2407083, + "thread": 2 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2479418, + "thread": 1 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2666674, + "thread": 22 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 2883914, + "thread": 10 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 3041583, + "thread": 10 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 3144586, + "thread": 1 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 3357276, + "thread": 9 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 3602326, + "thread": 19 + } + }, + { + "amount": "154.686609825", + "slot": { + "period": 3757692, + "thread": 13 + } + }, + { + "amount": "154.686609829", + "slot": { + "period": 3803512, + "thread": 11 + } + } + ], + "AU12qk4SZTgfQHvE2PWhEY6UdqpSJMYPhQDMZTqskR4dnr7NybKzh": [ + { + "amount": "824.207415744", + "slot": { + "period": 140832, + "thread": 13 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 176623, + "thread": 13 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 446731, + "thread": 25 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 618256, + "thread": 13 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 682900, + "thread": 1 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 845315, + "thread": 24 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1008135, + "thread": 10 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1190985, + "thread": 20 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1416276, + "thread": 24 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1563918, + "thread": 11 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1741976, + "thread": 25 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 1946273, + "thread": 0 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2019312, + "thread": 17 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2261504, + "thread": 28 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2433193, + "thread": 23 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2537308, + "thread": 30 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2668722, + "thread": 22 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 2927273, + "thread": 12 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 3119545, + "thread": 14 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 3261348, + "thread": 2 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 3334334, + "thread": 4 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 3495238, + "thread": 12 + } + }, + { + "amount": "824.207415744", + "slot": { + "period": 3652371, + "thread": 0 + } + }, + { + "amount": "824.207415743", + "slot": { + "period": 3885411, + "thread": 22 + } + } + ], + "AU12qkB31smMkaHw6YRShtwFGS26zN4B3gZEji1FEZtd6PssKQfvA": [ + { + "amount": "67.027131239", + "slot": { + "period": 146472, + "thread": 27 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 283222, + "thread": 2 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 472892, + "thread": 5 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 563470, + "thread": 1 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 743800, + "thread": 17 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 928038, + "thread": 24 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1139177, + "thread": 17 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1195242, + "thread": 29 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1380435, + "thread": 30 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1576925, + "thread": 6 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1804447, + "thread": 17 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1932972, + "thread": 25 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 1988027, + "thread": 12 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 2292230, + "thread": 2 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 2457238, + "thread": 12 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 2618191, + "thread": 15 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 2775259, + "thread": 5 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 2828356, + "thread": 10 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 3019299, + "thread": 10 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 3248277, + "thread": 20 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 3319100, + "thread": 16 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 3468521, + "thread": 24 + } + }, + { + "amount": "67.027131239", + "slot": { + "period": 3685983, + "thread": 15 + } + }, + { + "amount": "67.027131245", + "slot": { + "period": 3816382, + "thread": 7 + } + } + ], + "AU12qmeFcNXGZRr2WQbYPe78ttM9wQjWTWD3jmaqtK7AUiVdKwQg8": [ + { + "amount": "15502.666666667", + "slot": { + "period": 47060, + "thread": 7 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 314559, + "thread": 30 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 332455, + "thread": 0 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 537839, + "thread": 7 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 731392, + "thread": 13 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 871341, + "thread": 15 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1046751, + "thread": 4 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1150771, + "thread": 10 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1329610, + "thread": 29 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1584391, + "thread": 10 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1804523, + "thread": 15 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 1927791, + "thread": 24 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2074639, + "thread": 20 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2172392, + "thread": 3 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2319087, + "thread": 26 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2589926, + "thread": 28 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2751049, + "thread": 3 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 2830306, + "thread": 18 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 3039516, + "thread": 23 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 3240159, + "thread": 13 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 3349463, + "thread": 18 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 3525486, + "thread": 5 + } + }, + { + "amount": "15502.666666667", + "slot": { + "period": 3642491, + "thread": 17 + } + }, + { + "amount": "15502.666666659", + "slot": { + "period": 3784864, + "thread": 5 + } + } + ], + "AU12qo16gQvAM8gjcFiLLXZQCzyUswqdhpTDgDRybMeCjwCnGWZ9X": [ + { + "amount": "211.582114177", + "slot": { + "period": 59479, + "thread": 9 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 241483, + "thread": 3 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 438193, + "thread": 31 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 562679, + "thread": 20 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 753294, + "thread": 19 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 858343, + "thread": 14 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1054639, + "thread": 10 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1296177, + "thread": 20 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1338870, + "thread": 8 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1483715, + "thread": 31 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1758234, + "thread": 9 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 1860619, + "thread": 1 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2072955, + "thread": 1 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2145262, + "thread": 19 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2413674, + "thread": 12 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2542966, + "thread": 9 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2733347, + "thread": 23 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 2951101, + "thread": 31 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 3048195, + "thread": 14 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 3243111, + "thread": 6 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 3360707, + "thread": 4 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 3453742, + "thread": 31 + } + }, + { + "amount": "211.582114177", + "slot": { + "period": 3700450, + "thread": 28 + } + }, + { + "amount": "211.582114178", + "slot": { + "period": 3797700, + "thread": 6 + } + } + ], + "AU12qqUau4rxhCA4EA6XF6qw3EmeQZZCD7Q5uAE86AVS4vwE5QKQS": [ + { + "amount": "138.486070256", + "slot": { + "period": 101675, + "thread": 27 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 246698, + "thread": 4 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 360929, + "thread": 24 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 582440, + "thread": 3 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 798735, + "thread": 11 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 955016, + "thread": 13 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1124074, + "thread": 23 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1197106, + "thread": 0 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1347201, + "thread": 23 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1588233, + "thread": 23 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1729945, + "thread": 21 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1827592, + "thread": 22 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 1980793, + "thread": 10 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 2212622, + "thread": 17 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 2297384, + "thread": 18 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 2462975, + "thread": 17 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 2688197, + "thread": 14 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 2887770, + "thread": 16 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 3055326, + "thread": 16 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 3232730, + "thread": 0 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 3317611, + "thread": 24 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 3608737, + "thread": 3 + } + }, + { + "amount": "138.486070256", + "slot": { + "period": 3692798, + "thread": 0 + } + }, + { + "amount": "138.486070257", + "slot": { + "period": 3921515, + "thread": 27 + } + } + ], + "AU12qrXtG1qHmwyXX4dj5XTTBSeQK2MNttw2dF8QWUo1sSJuMXujS": [ + { + "amount": "336.373544619", + "slot": { + "period": 31608, + "thread": 3 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 323445, + "thread": 29 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 344390, + "thread": 3 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 533714, + "thread": 0 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 740550, + "thread": 10 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 886661, + "thread": 23 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1073974, + "thread": 20 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1307962, + "thread": 19 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1439224, + "thread": 10 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1493479, + "thread": 0 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1674209, + "thread": 18 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 1939192, + "thread": 16 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2103147, + "thread": 16 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2148778, + "thread": 4 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2363049, + "thread": 6 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2569122, + "thread": 13 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2759304, + "thread": 20 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 2831415, + "thread": 4 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 3038102, + "thread": 1 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 3219486, + "thread": 25 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 3449033, + "thread": 12 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 3614680, + "thread": 3 + } + }, + { + "amount": "336.373544619", + "slot": { + "period": 3695769, + "thread": 11 + } + }, + { + "amount": "336.373544623", + "slot": { + "period": 3861549, + "thread": 22 + } + } + ], + "AU12qrcLHHPakqTHqns47JTXMDbTyaSSweD6jtJcxShZwgaqY8MuY": [ + { + "amount": "91.473946075", + "slot": { + "period": 148428, + "thread": 15 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 184389, + "thread": 24 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 324717, + "thread": 31 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 616253, + "thread": 17 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 726306, + "thread": 2 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 926314, + "thread": 8 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1018545, + "thread": 17 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1193614, + "thread": 3 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1400520, + "thread": 29 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1509419, + "thread": 26 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1791695, + "thread": 11 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 1960105, + "thread": 19 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2002382, + "thread": 28 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2226000, + "thread": 6 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2295897, + "thread": 9 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2487442, + "thread": 18 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2735207, + "thread": 16 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2878495, + "thread": 11 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 2972960, + "thread": 25 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 3162053, + "thread": 18 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 3300390, + "thread": 0 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 3569392, + "thread": 15 + } + }, + { + "amount": "91.473946075", + "slot": { + "period": 3749788, + "thread": 8 + } + }, + { + "amount": "91.473946082", + "slot": { + "period": 3911804, + "thread": 18 + } + } + ], + "AU12qsg1sdEbQasceiEixfVrGSs35QawcpsbjRsAtiLfME4LCcufn": [ + { + "amount": "143.430512446", + "slot": { + "period": 96958, + "thread": 12 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 215757, + "thread": 19 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 489931, + "thread": 17 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 527842, + "thread": 15 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 727221, + "thread": 17 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 854948, + "thread": 15 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 999329, + "thread": 26 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 1186689, + "thread": 9 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 1427444, + "thread": 15 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 1584351, + "thread": 3 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 1648891, + "thread": 4 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 1866538, + "thread": 31 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2087653, + "thread": 9 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2190086, + "thread": 19 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2306317, + "thread": 11 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2595941, + "thread": 1 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2642452, + "thread": 7 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 2939571, + "thread": 9 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 3062883, + "thread": 20 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 3208119, + "thread": 11 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 3372794, + "thread": 17 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 3500440, + "thread": 0 + } + }, + { + "amount": "143.430512446", + "slot": { + "period": 3628720, + "thread": 31 + } + }, + { + "amount": "143.430512449", + "slot": { + "period": 3811315, + "thread": 13 + } + } + ], + "AU12qtT254QNbX4PjFUPFrNETkLgjc8AAjTtfXyek5vHwwHW7u3Eh": [ + { + "amount": "138.132863127", + "slot": { + "period": 113149, + "thread": 24 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 302909, + "thread": 14 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 430883, + "thread": 11 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 545403, + "thread": 2 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 688704, + "thread": 0 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 845030, + "thread": 24 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1052477, + "thread": 13 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1172305, + "thread": 20 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1437023, + "thread": 25 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1634911, + "thread": 17 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1805519, + "thread": 21 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 1880652, + "thread": 26 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2031600, + "thread": 9 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2253159, + "thread": 31 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2346702, + "thread": 4 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2480506, + "thread": 14 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2741100, + "thread": 7 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 2803834, + "thread": 4 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 3120758, + "thread": 9 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 3252163, + "thread": 13 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 3420592, + "thread": 7 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 3480863, + "thread": 9 + } + }, + { + "amount": "138.132863127", + "slot": { + "period": 3664387, + "thread": 17 + } + }, + { + "amount": "138.132863120", + "slot": { + "period": 3874556, + "thread": 27 + } + } + ], + "AU12qtYdtLCnJBSg6Q7n7CiJ4nAy1jr3Rwbj1ykoxBAYh58EBgN7U": [ + { + "amount": "283.328367764", + "slot": { + "period": 87734, + "thread": 3 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 287877, + "thread": 4 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 407374, + "thread": 8 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 533381, + "thread": 20 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 820538, + "thread": 2 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 956378, + "thread": 19 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1046872, + "thread": 29 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1259174, + "thread": 16 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1414877, + "thread": 31 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1514093, + "thread": 6 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1753875, + "thread": 18 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 1871286, + "thread": 20 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2076693, + "thread": 2 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2151297, + "thread": 9 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2364033, + "thread": 17 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2514576, + "thread": 11 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2752276, + "thread": 9 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 2926766, + "thread": 3 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 3049371, + "thread": 31 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 3232657, + "thread": 10 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 3415324, + "thread": 29 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 3482116, + "thread": 8 + } + }, + { + "amount": "283.328367764", + "slot": { + "period": 3632380, + "thread": 2 + } + }, + { + "amount": "283.328367765", + "slot": { + "period": 3780266, + "thread": 28 + } + } + ], + "AU12qtdmRjLqbu6UDzUY9rhLoyFVdf8tkFEJizZtZ2t68AXEvzqQS": [ + { + "amount": "240.263469872", + "slot": { + "period": 64377, + "thread": 3 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 185220, + "thread": 16 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 470263, + "thread": 15 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 636557, + "thread": 16 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 795023, + "thread": 26 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 866291, + "thread": 26 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 993286, + "thread": 23 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1248320, + "thread": 13 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1376064, + "thread": 17 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1567387, + "thread": 11 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1724120, + "thread": 16 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1837085, + "thread": 26 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 1989150, + "thread": 2 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 2278788, + "thread": 17 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 2342059, + "thread": 3 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 2553512, + "thread": 29 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 2730019, + "thread": 5 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 2932361, + "thread": 27 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 3057959, + "thread": 6 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 3210663, + "thread": 10 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 3371438, + "thread": 23 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 3566129, + "thread": 24 + } + }, + { + "amount": "240.263469872", + "slot": { + "period": 3621650, + "thread": 22 + } + }, + { + "amount": "240.263469880", + "slot": { + "period": 3920694, + "thread": 23 + } + } + ], + "AU12qu7eHjQ3RCnbWgmGvA4kqjtf5sQRxaCsKLgPV7zBgFWn8H92v": [ + { + "amount": "109.979349990", + "slot": { + "period": 121909, + "thread": 11 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 274561, + "thread": 30 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 400682, + "thread": 23 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 534420, + "thread": 21 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 714795, + "thread": 22 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 952624, + "thread": 17 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1118165, + "thread": 26 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1156186, + "thread": 17 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1437291, + "thread": 14 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1558002, + "thread": 27 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1690063, + "thread": 3 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 1938097, + "thread": 23 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2084782, + "thread": 18 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2294622, + "thread": 24 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2381295, + "thread": 5 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2518314, + "thread": 25 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2668545, + "thread": 27 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 2827496, + "thread": 0 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 3032001, + "thread": 30 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 3186986, + "thread": 14 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 3357192, + "thread": 0 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 3549126, + "thread": 8 + } + }, + { + "amount": "109.979349990", + "slot": { + "period": 3756678, + "thread": 10 + } + }, + { + "amount": "109.979349980", + "slot": { + "period": 3889040, + "thread": 28 + } + } + ], + "AU12quJSzZLsEnKvpZt4HfA2326x7bUBD5QAMVxCPztvfQCLPpmyE": [ + { + "amount": "135.676264504", + "slot": { + "period": 104727, + "thread": 30 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 322684, + "thread": 1 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 471126, + "thread": 23 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 611278, + "thread": 20 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 813112, + "thread": 2 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 916936, + "thread": 1 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1133679, + "thread": 16 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1196662, + "thread": 1 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1396404, + "thread": 21 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1505889, + "thread": 10 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1797253, + "thread": 7 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1842638, + "thread": 19 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 1988588, + "thread": 14 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2177403, + "thread": 13 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2337171, + "thread": 3 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2607457, + "thread": 0 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2707364, + "thread": 3 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2843953, + "thread": 19 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 2991370, + "thread": 17 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 3131790, + "thread": 29 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 3300496, + "thread": 31 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 3535062, + "thread": 27 + } + }, + { + "amount": "135.676264504", + "slot": { + "period": 3758255, + "thread": 22 + } + }, + { + "amount": "135.676264512", + "slot": { + "period": 3904794, + "thread": 12 + } + } + ], + "AU12quL5C5KRmMSUWSeS7ARq8w4VsveVa7NqXfFB9uwPZrU6Lt17z": [ + { + "amount": "319.046266217", + "slot": { + "period": 53286, + "thread": 18 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 203404, + "thread": 24 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 399731, + "thread": 14 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 504104, + "thread": 9 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 773752, + "thread": 7 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 845463, + "thread": 21 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1025653, + "thread": 22 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1264998, + "thread": 0 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1376167, + "thread": 18 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1587057, + "thread": 17 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1787316, + "thread": 23 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 1887734, + "thread": 13 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2113464, + "thread": 27 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2237903, + "thread": 30 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2385021, + "thread": 20 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2496597, + "thread": 27 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2781469, + "thread": 10 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 2905966, + "thread": 2 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 3045281, + "thread": 10 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 3159339, + "thread": 18 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 3399656, + "thread": 5 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 3545691, + "thread": 24 + } + }, + { + "amount": "319.046266217", + "slot": { + "period": 3646835, + "thread": 29 + } + }, + { + "amount": "319.046266207", + "slot": { + "period": 3890690, + "thread": 31 + } + } + ], + "AU12quhCMr9YCLk4E4EfJtKB4dCwgckkN4WBKtMGrTWtbovNBp8JY": [ + { + "amount": "136.588597007", + "slot": { + "period": 99398, + "thread": 18 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 248692, + "thread": 5 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 431274, + "thread": 16 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 502715, + "thread": 19 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 742831, + "thread": 11 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 980901, + "thread": 27 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1080349, + "thread": 8 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1271753, + "thread": 28 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1449885, + "thread": 18 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1522807, + "thread": 21 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1757463, + "thread": 7 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 1898185, + "thread": 27 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2085898, + "thread": 10 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2230381, + "thread": 9 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2337263, + "thread": 31 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2598768, + "thread": 2 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2733772, + "thread": 22 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 2850790, + "thread": 4 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 3114935, + "thread": 26 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 3279561, + "thread": 9 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 3353045, + "thread": 1 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 3505952, + "thread": 10 + } + }, + { + "amount": "136.588597007", + "slot": { + "period": 3741803, + "thread": 5 + } + }, + { + "amount": "136.588597002", + "slot": { + "period": 3875079, + "thread": 29 + } + } + ], + "AU12qv5JvTAwmbVjxqUYDnYq7G8ZQhjukzJufmZFe9EEqD8rDQdQq": [ + { + "amount": "289.695532322", + "slot": { + "period": 21879, + "thread": 5 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 323941, + "thread": 9 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 426265, + "thread": 22 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 531835, + "thread": 18 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 656202, + "thread": 29 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 961872, + "thread": 26 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1046188, + "thread": 25 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1276784, + "thread": 12 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1359669, + "thread": 5 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1492300, + "thread": 21 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1663108, + "thread": 22 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 1974186, + "thread": 23 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2083021, + "thread": 29 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2235870, + "thread": 13 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2431342, + "thread": 19 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2608698, + "thread": 4 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2631123, + "thread": 25 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2940723, + "thread": 20 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 2955850, + "thread": 20 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 3254234, + "thread": 6 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 3415734, + "thread": 19 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 3539263, + "thread": 24 + } + }, + { + "amount": "289.695532322", + "slot": { + "period": 3642661, + "thread": 24 + } + }, + { + "amount": "289.695532317", + "slot": { + "period": 3911535, + "thread": 17 + } + } + ], + "AU12qvFFDpHidAG9kUm3wHf1Mn4RMV83E3jmmooZF5Ys6Hc2uqAbn": [ + { + "amount": "173.447822889", + "slot": { + "period": 167156, + "thread": 11 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 185906, + "thread": 25 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 349889, + "thread": 3 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 573691, + "thread": 31 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 759686, + "thread": 24 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 870967, + "thread": 28 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 983708, + "thread": 29 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 1247405, + "thread": 27 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 1402285, + "thread": 8 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 1552740, + "thread": 15 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 1804724, + "thread": 5 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 1842595, + "thread": 14 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2050995, + "thread": 13 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2290565, + "thread": 16 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2326131, + "thread": 2 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2571924, + "thread": 29 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2646948, + "thread": 9 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 2949106, + "thread": 5 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 3025737, + "thread": 2 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 3148499, + "thread": 10 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 3392488, + "thread": 25 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 3540591, + "thread": 30 + } + }, + { + "amount": "173.447822889", + "slot": { + "period": 3637256, + "thread": 30 + } + }, + { + "amount": "173.447822880", + "slot": { + "period": 3817129, + "thread": 5 + } + } + ], + "AU12qvGbyC2X16Voyx4F4A6HzsVvRP2gtPPYMU9BUzmne1RBYJvS": [ + { + "amount": "136.354712515", + "slot": { + "period": 70328, + "thread": 19 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 265432, + "thread": 30 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 491067, + "thread": 30 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 617913, + "thread": 9 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 785368, + "thread": 19 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 910136, + "thread": 12 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1096355, + "thread": 24 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1289680, + "thread": 7 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1394866, + "thread": 5 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1496977, + "thread": 17 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1785982, + "thread": 8 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 1884403, + "thread": 3 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2133971, + "thread": 19 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2262450, + "thread": 9 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2385131, + "thread": 22 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2526071, + "thread": 7 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2747082, + "thread": 25 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2930445, + "thread": 14 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 2983543, + "thread": 31 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 3270612, + "thread": 9 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 3330836, + "thread": 14 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 3544334, + "thread": 29 + } + }, + { + "amount": "136.354712515", + "slot": { + "period": 3671127, + "thread": 28 + } + }, + { + "amount": "136.354712518", + "slot": { + "period": 3885755, + "thread": 8 + } + } + ], + "AU12qvUJo1PiLashDpZ97GYgbtcLcbZJJKDW1WP5eM1AGQuirkyWo": [ + { + "amount": "650.639352485", + "slot": { + "period": 18228, + "thread": 3 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 251095, + "thread": 4 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 349273, + "thread": 6 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 587951, + "thread": 25 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 788438, + "thread": 18 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 851907, + "thread": 1 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1000822, + "thread": 9 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1160336, + "thread": 8 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1393761, + "thread": 20 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1634032, + "thread": 19 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1802735, + "thread": 2 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1871355, + "thread": 23 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 1998119, + "thread": 5 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 2237368, + "thread": 25 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 2326068, + "thread": 8 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 2582131, + "thread": 11 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 2785071, + "thread": 0 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 2819679, + "thread": 3 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 3040165, + "thread": 24 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 3147250, + "thread": 20 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 3423936, + "thread": 10 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 3587975, + "thread": 8 + } + }, + { + "amount": "650.639352485", + "slot": { + "period": 3653608, + "thread": 5 + } + }, + { + "amount": "650.639352494", + "slot": { + "period": 3803540, + "thread": 29 + } + } + ], + "AU12qw3CPwPyhahYP3hajZx6ad1hzf9yhz3fUgbcSHrVGMeSQDGvg": [ + { + "amount": "231.062014210", + "slot": { + "period": 34002, + "thread": 8 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 189587, + "thread": 1 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 358675, + "thread": 14 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 640037, + "thread": 4 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 739817, + "thread": 11 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 910999, + "thread": 13 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1061373, + "thread": 1 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1180157, + "thread": 11 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1354914, + "thread": 22 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1504725, + "thread": 6 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1690360, + "thread": 29 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 1833249, + "thread": 17 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2101059, + "thread": 19 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2185874, + "thread": 9 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2377067, + "thread": 0 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2500069, + "thread": 22 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2784073, + "thread": 14 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2910354, + "thread": 19 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 2973456, + "thread": 29 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 3129086, + "thread": 1 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 3345111, + "thread": 12 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 3539579, + "thread": 24 + } + }, + { + "amount": "231.062014210", + "slot": { + "period": 3681746, + "thread": 9 + } + }, + { + "amount": "231.062014211", + "slot": { + "period": 3850457, + "thread": 3 + } + } + ], + "AU12qwNMc35NuGFo7A6E29TzsoSJZxSJUK7tFtaMP91dVJr52yDnN": [ + { + "amount": "141.618212139", + "slot": { + "period": 121188, + "thread": 21 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 192708, + "thread": 31 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 331554, + "thread": 20 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 613178, + "thread": 21 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 759879, + "thread": 1 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 883601, + "thread": 1 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1055060, + "thread": 12 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1233527, + "thread": 27 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1371712, + "thread": 4 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1487135, + "thread": 10 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1706703, + "thread": 15 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 1949996, + "thread": 28 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2064638, + "thread": 27 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2257531, + "thread": 5 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2310581, + "thread": 13 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2565027, + "thread": 17 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2643801, + "thread": 15 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 2800235, + "thread": 25 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3102974, + "thread": 27 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3161827, + "thread": 27 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3303267, + "thread": 28 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3521574, + "thread": 21 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3714517, + "thread": 20 + } + }, + { + "amount": "141.618212139", + "slot": { + "period": 3932994, + "thread": 11 + } + } + ], + "AU12qwh9TZQG55Lkftuc1FB32iLTBepxFAvCbxdfWoP2ieVpShG8E": [ + { + "amount": "165.212469485", + "slot": { + "period": 134494, + "thread": 21 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 270944, + "thread": 16 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 410219, + "thread": 23 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 630727, + "thread": 10 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 796528, + "thread": 5 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 883377, + "thread": 1 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 994478, + "thread": 16 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 1221577, + "thread": 23 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 1443179, + "thread": 22 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 1521060, + "thread": 27 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 1731744, + "thread": 16 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 1968664, + "thread": 12 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2092338, + "thread": 27 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2160069, + "thread": 28 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2412752, + "thread": 29 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2562397, + "thread": 28 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2730089, + "thread": 4 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2925622, + "thread": 20 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 2960551, + "thread": 8 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 3237175, + "thread": 18 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 3296547, + "thread": 29 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 3582137, + "thread": 8 + } + }, + { + "amount": "165.212469485", + "slot": { + "period": 3722631, + "thread": 26 + } + }, + { + "amount": "165.212469474", + "slot": { + "period": 3867439, + "thread": 18 + } + } + ], + "AU12qx7ooLEYJBgpscrBuNHzVGrphT7RU5q2WMwe9fZwgxtR7G4o3": [ + { + "amount": "151.566653128", + "slot": { + "period": 115259, + "thread": 23 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 323487, + "thread": 5 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 448319, + "thread": 12 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 492178, + "thread": 11 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 781229, + "thread": 29 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 962661, + "thread": 15 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1001910, + "thread": 11 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1244981, + "thread": 6 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1364088, + "thread": 27 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1505724, + "thread": 5 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1804475, + "thread": 4 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 1892291, + "thread": 15 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2112258, + "thread": 4 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2248738, + "thread": 9 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2380046, + "thread": 13 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2486213, + "thread": 13 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2635620, + "thread": 12 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2805445, + "thread": 9 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 2996517, + "thread": 0 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 3130443, + "thread": 16 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 3421283, + "thread": 19 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 3567463, + "thread": 16 + } + }, + { + "amount": "151.566653128", + "slot": { + "period": 3758360, + "thread": 13 + } + }, + { + "amount": "151.566653119", + "slot": { + "period": 3801314, + "thread": 15 + } + } + ], + "AU12qxBqcD4HV8KDxxP84Fb16iy7HHX3yET8xfVN15GRDEU7U9Aoo": [ + { + "amount": "451.121967490", + "slot": { + "period": 165989, + "thread": 17 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 246126, + "thread": 17 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 367472, + "thread": 19 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 579546, + "thread": 22 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 810800, + "thread": 11 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 911243, + "thread": 12 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1054443, + "thread": 12 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1275254, + "thread": 20 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1353426, + "thread": 16 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1554185, + "thread": 11 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1765066, + "thread": 12 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 1956732, + "thread": 2 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2029977, + "thread": 11 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2145657, + "thread": 9 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2333436, + "thread": 15 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2615622, + "thread": 1 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2724516, + "thread": 9 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 2880399, + "thread": 7 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 3045048, + "thread": 7 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 3243378, + "thread": 10 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 3361693, + "thread": 2 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 3497781, + "thread": 25 + } + }, + { + "amount": "451.121967490", + "slot": { + "period": 3658392, + "thread": 12 + } + }, + { + "amount": "451.121967485", + "slot": { + "period": 3828283, + "thread": 19 + } + } + ], + "AU12qxNbxzNZmWWPVn3UJpz85ckFHv6Q57QCR1cGuX1cnrm9AX9ZA": [ + { + "amount": "90.878732581", + "slot": { + "period": 102591, + "thread": 14 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 268577, + "thread": 18 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 427874, + "thread": 5 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 597395, + "thread": 24 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 667662, + "thread": 28 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 864295, + "thread": 23 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 998538, + "thread": 16 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 1231934, + "thread": 5 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 1465954, + "thread": 29 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 1625017, + "thread": 31 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 1734590, + "thread": 4 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 1840410, + "thread": 28 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2061051, + "thread": 8 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2228254, + "thread": 27 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2421947, + "thread": 13 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2566819, + "thread": 22 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2625567, + "thread": 12 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 2916651, + "thread": 24 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 3115074, + "thread": 25 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 3160899, + "thread": 6 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 3304188, + "thread": 23 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 3536054, + "thread": 28 + } + }, + { + "amount": "90.878732581", + "slot": { + "period": 3668588, + "thread": 30 + } + }, + { + "amount": "90.878732570", + "slot": { + "period": 3941225, + "thread": 25 + } + } + ], + "AU12qxaQ8vG6f6B8d6K6x7KWijw3cpJqRgZ3zBJYJ6VptqLtJSLQK": [ + { + "amount": "237.366901066", + "slot": { + "period": 111501, + "thread": 28 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 173751, + "thread": 5 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 413413, + "thread": 7 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 538022, + "thread": 26 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 707890, + "thread": 4 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 959947, + "thread": 12 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1042319, + "thread": 17 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1262677, + "thread": 21 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1463707, + "thread": 9 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1640075, + "thread": 23 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1690731, + "thread": 26 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1925788, + "thread": 5 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 1982733, + "thread": 1 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2220265, + "thread": 29 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2303454, + "thread": 15 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2596685, + "thread": 2 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2727307, + "thread": 31 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2832116, + "thread": 6 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 2990268, + "thread": 20 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 3180991, + "thread": 26 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 3420782, + "thread": 23 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 3555963, + "thread": 10 + } + }, + { + "amount": "237.366901066", + "slot": { + "period": 3698903, + "thread": 31 + } + }, + { + "amount": "237.366901062", + "slot": { + "period": 3912947, + "thread": 26 + } + } + ], + "AU12qxr8Px8m39abt3mCMKur526kXF25HAnXKd316FoyaUscqaPiv": [ + { + "amount": "99.880856865", + "slot": { + "period": 15698, + "thread": 29 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 306134, + "thread": 10 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 339588, + "thread": 16 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 596137, + "thread": 19 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 736042, + "thread": 17 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 823226, + "thread": 12 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1113956, + "thread": 18 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1311608, + "thread": 17 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1372688, + "thread": 14 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1551473, + "thread": 7 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1796101, + "thread": 4 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1926696, + "thread": 11 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 1986281, + "thread": 22 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 2181146, + "thread": 10 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 2339628, + "thread": 11 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 2619019, + "thread": 17 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 2783662, + "thread": 30 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 2843591, + "thread": 26 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 3024421, + "thread": 13 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 3234202, + "thread": 20 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 3393383, + "thread": 29 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 3494693, + "thread": 5 + } + }, + { + "amount": "99.880856865", + "slot": { + "period": 3711207, + "thread": 16 + } + }, + { + "amount": "99.880856862", + "slot": { + "period": 3937180, + "thread": 3 + } + } + ], + "AU12qyozUtP1CDDsjZwxAhtU3TBCMUbhM2oBYaDZujwWxkwLsEh4V": [ + { + "amount": "268.165104728", + "slot": { + "period": 56647, + "thread": 6 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 250960, + "thread": 24 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 338500, + "thread": 31 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 617077, + "thread": 11 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 689077, + "thread": 12 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 842044, + "thread": 29 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1129572, + "thread": 8 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1233335, + "thread": 30 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1392119, + "thread": 16 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1553482, + "thread": 2 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1808785, + "thread": 15 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 1940716, + "thread": 5 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2092151, + "thread": 30 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2201395, + "thread": 24 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2460237, + "thread": 17 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2480260, + "thread": 28 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2735673, + "thread": 9 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2925043, + "thread": 7 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 2961092, + "thread": 30 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 3157371, + "thread": 18 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 3391562, + "thread": 29 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 3491061, + "thread": 2 + } + }, + { + "amount": "268.165104728", + "slot": { + "period": 3749395, + "thread": 3 + } + }, + { + "amount": "268.165104722", + "slot": { + "period": 3893296, + "thread": 1 + } + } + ], + "AU12qys2PZCWcMguvNgSwmrxUv2S8D2E4W21U7m6YXAsEF98E7tFb": [ + { + "amount": "52.970260716", + "slot": { + "period": 27961, + "thread": 10 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 284789, + "thread": 16 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 409147, + "thread": 18 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 652406, + "thread": 29 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 783227, + "thread": 7 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 979620, + "thread": 28 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1130181, + "thread": 21 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1217188, + "thread": 18 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1441763, + "thread": 23 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1557000, + "thread": 9 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1689504, + "thread": 24 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 1881277, + "thread": 0 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2044058, + "thread": 3 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2253079, + "thread": 24 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2425666, + "thread": 18 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2554335, + "thread": 11 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2686336, + "thread": 27 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 2874800, + "thread": 25 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 3025821, + "thread": 17 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 3281218, + "thread": 5 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 3445462, + "thread": 19 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 3507916, + "thread": 2 + } + }, + { + "amount": "52.970260716", + "slot": { + "period": 3706582, + "thread": 8 + } + }, + { + "amount": "52.970260720", + "slot": { + "period": 3900635, + "thread": 16 + } + } + ], + "AU12qzDdsn3SSx41G3jXgLp15GGiZyZPJYsRGMnk48TMbnib6qrWk": [ + { + "amount": "91.132984062", + "slot": { + "period": 24149, + "thread": 16 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 263496, + "thread": 22 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 456402, + "thread": 13 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 597023, + "thread": 1 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 661535, + "thread": 27 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 823993, + "thread": 20 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1074272, + "thread": 1 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1299532, + "thread": 0 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1317603, + "thread": 17 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1516487, + "thread": 15 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1807285, + "thread": 31 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 1820826, + "thread": 31 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2012774, + "thread": 27 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2208442, + "thread": 5 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2310994, + "thread": 7 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2608331, + "thread": 1 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2653158, + "thread": 28 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 2903049, + "thread": 21 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 3058056, + "thread": 28 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 3213279, + "thread": 27 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 3307510, + "thread": 25 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 3452099, + "thread": 11 + } + }, + { + "amount": "91.132984062", + "slot": { + "period": 3706207, + "thread": 10 + } + }, + { + "amount": "91.132984059", + "slot": { + "period": 3846626, + "thread": 2 + } + } + ], + "AU12qzvPhqNbTLTzMNHY6JuvnoL8DfuNZ1E8H9RVHvs8NNxWoATmg": [ + { + "amount": "200.367385945", + "slot": { + "period": 69670, + "thread": 9 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 196952, + "thread": 2 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 404197, + "thread": 20 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 534346, + "thread": 2 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 752226, + "thread": 12 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 915270, + "thread": 19 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1030437, + "thread": 20 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1171713, + "thread": 1 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1372053, + "thread": 3 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1549354, + "thread": 16 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1798266, + "thread": 13 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1834284, + "thread": 7 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 1981869, + "thread": 5 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 2187735, + "thread": 27 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 2436157, + "thread": 10 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 2561163, + "thread": 6 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 2725655, + "thread": 12 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 2950534, + "thread": 18 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 3038492, + "thread": 28 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 3215560, + "thread": 23 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 3356710, + "thread": 28 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 3606402, + "thread": 15 + } + }, + { + "amount": "200.367385945", + "slot": { + "period": 3641790, + "thread": 17 + } + }, + { + "amount": "200.367385940", + "slot": { + "period": 3794962, + "thread": 3 + } + } + ], + "AU12qzwcx5S2LumfNTePTcpSQHdziCy396qbpPunap1pX7ZwDvKGX": [ + { + "amount": "119.038532825", + "slot": { + "period": 53395, + "thread": 25 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 189640, + "thread": 11 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 488693, + "thread": 3 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 603636, + "thread": 5 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 721109, + "thread": 6 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 917149, + "thread": 8 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1053581, + "thread": 12 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1285856, + "thread": 4 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1469230, + "thread": 25 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1537631, + "thread": 16 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1761037, + "thread": 16 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 1935938, + "thread": 11 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2038624, + "thread": 28 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2215873, + "thread": 4 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2358834, + "thread": 8 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2466995, + "thread": 3 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2776632, + "thread": 4 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 2834005, + "thread": 27 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 3012250, + "thread": 22 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 3215565, + "thread": 28 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 3290210, + "thread": 14 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 3519865, + "thread": 3 + } + }, + { + "amount": "119.038532825", + "slot": { + "period": 3760541, + "thread": 26 + } + }, + { + "amount": "119.038532816", + "slot": { + "period": 3827385, + "thread": 29 + } + } + ], + "AU12qzxs5msdAUGkziu9eneP5oPWUEtpWMN5X4NV82CmxgtgoDJQM": [ + { + "amount": "200.328322346", + "slot": { + "period": 151753, + "thread": 31 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 200004, + "thread": 14 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 467813, + "thread": 10 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 649944, + "thread": 18 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 666772, + "thread": 28 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 961930, + "thread": 12 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1107371, + "thread": 15 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1286526, + "thread": 25 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1411428, + "thread": 21 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1543640, + "thread": 30 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1772859, + "thread": 31 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 1937733, + "thread": 3 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2093373, + "thread": 29 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2293586, + "thread": 10 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2347003, + "thread": 20 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2577643, + "thread": 16 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2746944, + "thread": 12 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 2863390, + "thread": 27 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 3066274, + "thread": 26 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 3287347, + "thread": 25 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 3445226, + "thread": 27 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 3541202, + "thread": 16 + } + }, + { + "amount": "200.328322346", + "slot": { + "period": 3763479, + "thread": 21 + } + }, + { + "amount": "200.328322345", + "slot": { + "period": 3812689, + "thread": 0 + } + } + ], + "AU12r1fsaeSKQFFqgo7J2GvjyUHiTEByTP9qJfqbpadhiWNhzJFwx": [ + { + "amount": "176.751504041", + "slot": { + "period": 159369, + "thread": 22 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 205211, + "thread": 28 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 409069, + "thread": 27 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 583818, + "thread": 15 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 687162, + "thread": 6 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 823144, + "thread": 4 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1057672, + "thread": 18 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1200694, + "thread": 27 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1405774, + "thread": 16 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1627862, + "thread": 28 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1740903, + "thread": 25 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 1950741, + "thread": 16 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2018547, + "thread": 16 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2242982, + "thread": 13 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2344543, + "thread": 8 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2541235, + "thread": 3 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2784106, + "thread": 7 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2877508, + "thread": 26 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 2985282, + "thread": 3 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 3161316, + "thread": 6 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 3362333, + "thread": 18 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 3601864, + "thread": 13 + } + }, + { + "amount": "176.751504041", + "slot": { + "period": 3766321, + "thread": 16 + } + }, + { + "amount": "176.751504051", + "slot": { + "period": 3886817, + "thread": 5 + } + } + ], + "AU12r1usAzXEMFh1ZutEKTjrmT9JzZ2Qd5ypbWgaAEznkNbFHxnk5": [ + { + "amount": "52.716136656", + "slot": { + "period": 93951, + "thread": 27 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 256707, + "thread": 20 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 451138, + "thread": 20 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 646537, + "thread": 14 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 666230, + "thread": 7 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 940483, + "thread": 17 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1143931, + "thread": 12 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1258442, + "thread": 18 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1394668, + "thread": 29 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1598631, + "thread": 3 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1773444, + "thread": 18 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 1953413, + "thread": 22 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2096304, + "thread": 18 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2175610, + "thread": 28 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2335613, + "thread": 12 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2520028, + "thread": 9 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2637546, + "thread": 30 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 2888567, + "thread": 17 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 3076884, + "thread": 25 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 3172725, + "thread": 24 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 3305311, + "thread": 31 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 3486209, + "thread": 2 + } + }, + { + "amount": "52.716136656", + "slot": { + "period": 3738630, + "thread": 27 + } + }, + { + "amount": "52.716136667", + "slot": { + "period": 3882487, + "thread": 9 + } + } + ], + "AU12r2wBSbzvqbGtgULUZTHCgjrSFEZEFxrzhaCacHuxUtabRGTMj": [ + { + "amount": "119.219735392", + "slot": { + "period": 103233, + "thread": 0 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 179574, + "thread": 27 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 328100, + "thread": 2 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 574498, + "thread": 6 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 679523, + "thread": 13 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 842778, + "thread": 8 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1121335, + "thread": 11 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1159519, + "thread": 6 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1318123, + "thread": 18 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1594523, + "thread": 27 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1758209, + "thread": 31 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 1828888, + "thread": 28 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2042498, + "thread": 1 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2229279, + "thread": 18 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2461121, + "thread": 31 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2486541, + "thread": 20 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2636419, + "thread": 2 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 2943774, + "thread": 31 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 3104727, + "thread": 15 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 3187727, + "thread": 9 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 3400535, + "thread": 24 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 3558047, + "thread": 13 + } + }, + { + "amount": "119.219735392", + "slot": { + "period": 3757177, + "thread": 18 + } + }, + { + "amount": "119.219735397", + "slot": { + "period": 3801902, + "thread": 3 + } + } + ], + "AU12r3dKK25pufTiADMSnNRqjR6FFqy9e6fv3LnnPfEfeB1tFyBTe": [ + { + "amount": "172.876105224", + "slot": { + "period": 56877, + "thread": 7 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 285501, + "thread": 23 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 369152, + "thread": 24 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 534533, + "thread": 28 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 766506, + "thread": 14 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 898681, + "thread": 13 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1083201, + "thread": 22 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1274115, + "thread": 16 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1477606, + "thread": 28 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1564981, + "thread": 28 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1774461, + "thread": 21 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 1911992, + "thread": 28 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2032357, + "thread": 28 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2207531, + "thread": 27 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2385155, + "thread": 5 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2484015, + "thread": 30 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2775654, + "thread": 6 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 2895650, + "thread": 29 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 3000349, + "thread": 22 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 3253803, + "thread": 13 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 3407096, + "thread": 17 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 3482744, + "thread": 11 + } + }, + { + "amount": "172.876105224", + "slot": { + "period": 3715415, + "thread": 15 + } + }, + { + "amount": "172.876105228", + "slot": { + "period": 3857194, + "thread": 22 + } + } + ], + "AU12r4HfkN6jcuvwZSQTPSwyg6uqBBygpvmPEnTC3nhah1WjasdkX": [ + { + "amount": "220.965405099", + "slot": { + "period": 140605, + "thread": 25 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 292432, + "thread": 30 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 327462, + "thread": 27 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 529893, + "thread": 5 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 796739, + "thread": 19 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 963052, + "thread": 7 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1076018, + "thread": 2 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1173771, + "thread": 22 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1463554, + "thread": 17 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1569324, + "thread": 31 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1724673, + "thread": 0 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 1820490, + "thread": 16 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2054001, + "thread": 10 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2245933, + "thread": 2 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2367904, + "thread": 2 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2472866, + "thread": 26 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2736564, + "thread": 30 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 2893785, + "thread": 23 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 3053853, + "thread": 0 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 3181182, + "thread": 30 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 3408145, + "thread": 9 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 3535282, + "thread": 11 + } + }, + { + "amount": "220.965405099", + "slot": { + "period": 3618368, + "thread": 2 + } + }, + { + "amount": "220.965405108", + "slot": { + "period": 3895049, + "thread": 10 + } + } + ], + "AU12r5GE4F3CtPM6qsaJDoQgBWxyCrjtt7zhULp6MhwZxvHRY2VTV": [ + { + "amount": "93.732683838", + "slot": { + "period": 33991, + "thread": 0 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 238771, + "thread": 4 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 383922, + "thread": 9 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 574377, + "thread": 20 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 658224, + "thread": 16 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 949701, + "thread": 10 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1112301, + "thread": 31 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1247464, + "thread": 14 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1359298, + "thread": 28 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1532414, + "thread": 26 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1720558, + "thread": 24 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1892821, + "thread": 0 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 1981818, + "thread": 20 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2212136, + "thread": 12 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2305769, + "thread": 10 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2488136, + "thread": 14 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2726362, + "thread": 21 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2809516, + "thread": 15 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 2972210, + "thread": 28 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 3132888, + "thread": 22 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 3440787, + "thread": 2 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 3532285, + "thread": 3 + } + }, + { + "amount": "93.732683838", + "slot": { + "period": 3643073, + "thread": 12 + } + }, + { + "amount": "93.732683847", + "slot": { + "period": 3784866, + "thread": 20 + } + } + ], + "AU12r5hWDuCUKmF6D9aZjDXmrhzdtuLnQmRgbMvtBmS46XK5BCF9D": [ + { + "amount": "281.513259648", + "slot": { + "period": 89068, + "thread": 27 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 236720, + "thread": 29 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 414446, + "thread": 11 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 609187, + "thread": 1 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 754911, + "thread": 5 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 949532, + "thread": 6 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1111214, + "thread": 30 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1211295, + "thread": 15 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1367174, + "thread": 16 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1591123, + "thread": 23 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1689013, + "thread": 10 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 1827569, + "thread": 25 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2084531, + "thread": 26 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2184068, + "thread": 13 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2334530, + "thread": 29 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2553146, + "thread": 24 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2788043, + "thread": 12 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 2820803, + "thread": 30 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 3045552, + "thread": 23 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 3189170, + "thread": 7 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 3372244, + "thread": 11 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 3562791, + "thread": 29 + } + }, + { + "amount": "281.513259648", + "slot": { + "period": 3697722, + "thread": 23 + } + }, + { + "amount": "281.513259655", + "slot": { + "period": 3892275, + "thread": 10 + } + } + ], + "AU12r6Tv2mcET2G4dEjQsN3FaUdNwCTzLxJeEGjmKDvasmy9yr6aG": [ + { + "amount": "364.050197904", + "slot": { + "period": 162292, + "thread": 29 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 223005, + "thread": 27 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 440634, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 568969, + "thread": 0 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 706850, + "thread": 7 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 873381, + "thread": 10 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1111581, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1247989, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1458444, + "thread": 16 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1502007, + "thread": 17 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1672373, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 1892840, + "thread": 7 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2136377, + "thread": 28 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2291276, + "thread": 26 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2328563, + "thread": 8 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2574543, + "thread": 12 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2789889, + "thread": 18 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 2901471, + "thread": 29 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 3056211, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 3258764, + "thread": 16 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 3388408, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 3559679, + "thread": 1 + } + }, + { + "amount": "364.050197904", + "slot": { + "period": 3675168, + "thread": 30 + } + }, + { + "amount": "364.050197914", + "slot": { + "period": 3827090, + "thread": 31 + } + } + ], + "AU12r7PC57yfyNjefTiACAQ2i1CXEbRr19NJYrpFiAFLZTYSMY6gg": [ + { + "amount": "136.938696992", + "slot": { + "period": 119605, + "thread": 16 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 241216, + "thread": 5 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 434454, + "thread": 0 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 509108, + "thread": 24 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 771178, + "thread": 9 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 857866, + "thread": 24 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1075623, + "thread": 25 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1218124, + "thread": 23 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1374702, + "thread": 21 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1507629, + "thread": 25 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1679982, + "thread": 1 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 1897227, + "thread": 13 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2142332, + "thread": 6 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2272771, + "thread": 10 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2330969, + "thread": 13 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2549273, + "thread": 25 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2786862, + "thread": 6 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 2869651, + "thread": 6 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 3013083, + "thread": 16 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 3152989, + "thread": 9 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 3430143, + "thread": 5 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 3570231, + "thread": 4 + } + }, + { + "amount": "136.938696992", + "slot": { + "period": 3694496, + "thread": 29 + } + }, + { + "amount": "136.938696997", + "slot": { + "period": 3837920, + "thread": 23 + } + } + ], + "AU12r7uGGabDFWLMPUFX4cWvWk765aYbqWszbR35kKQwcXJ2mW9MC": [ + { + "amount": "248.530338934", + "slot": { + "period": 109636, + "thread": 28 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 171004, + "thread": 23 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 339019, + "thread": 30 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 584100, + "thread": 11 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 729203, + "thread": 2 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 924743, + "thread": 11 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1016810, + "thread": 17 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1232736, + "thread": 14 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1320681, + "thread": 3 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1518223, + "thread": 22 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1804019, + "thread": 7 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1902517, + "thread": 12 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 1982365, + "thread": 18 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 2223051, + "thread": 12 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 2333236, + "thread": 7 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 2510179, + "thread": 17 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 2699491, + "thread": 12 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 2893136, + "thread": 20 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 3091873, + "thread": 24 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 3282848, + "thread": 29 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 3410763, + "thread": 0 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 3531116, + "thread": 31 + } + }, + { + "amount": "248.530338934", + "slot": { + "period": 3690985, + "thread": 31 + } + }, + { + "amount": "248.530338924", + "slot": { + "period": 3908160, + "thread": 1 + } + } + ], + "AU12r8H5CPRqMe7GpJyWMJo65LyU1mVanyDGj7hpbVoKzGor12XqD": [ + { + "amount": "201.782219405", + "slot": { + "period": 156430, + "thread": 6 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 303541, + "thread": 31 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 482338, + "thread": 21 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 538710, + "thread": 14 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 789823, + "thread": 26 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 843496, + "thread": 5 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1088195, + "thread": 20 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1293751, + "thread": 27 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1398305, + "thread": 30 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1486798, + "thread": 4 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1801906, + "thread": 19 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1972792, + "thread": 17 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 1986317, + "thread": 13 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 2223763, + "thread": 10 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 2417479, + "thread": 21 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 2495010, + "thread": 5 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 2766459, + "thread": 3 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 2922561, + "thread": 21 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 3019541, + "thread": 16 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 3142441, + "thread": 27 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 3329330, + "thread": 22 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 3483254, + "thread": 10 + } + }, + { + "amount": "201.782219405", + "slot": { + "period": 3657042, + "thread": 16 + } + }, + { + "amount": "201.782219407", + "slot": { + "period": 3852889, + "thread": 11 + } + } + ], + "AU12r93zfHei6QhDgB3euf7Frqt1rgjksfm4zbsp8WGHLjA6BQmG5": [ + { + "amount": "456.490596661", + "slot": { + "period": 35830, + "thread": 27 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 319832, + "thread": 13 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 350236, + "thread": 6 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 607578, + "thread": 20 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 708244, + "thread": 3 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 858201, + "thread": 26 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 997300, + "thread": 1 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1214165, + "thread": 26 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1375859, + "thread": 29 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1530606, + "thread": 16 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1804509, + "thread": 8 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1849759, + "thread": 10 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 1991604, + "thread": 4 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 2180489, + "thread": 24 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 2370933, + "thread": 7 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 2538157, + "thread": 14 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 2713259, + "thread": 30 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 2897230, + "thread": 13 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 3002944, + "thread": 24 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 3184209, + "thread": 29 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 3298771, + "thread": 28 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 3493304, + "thread": 14 + } + }, + { + "amount": "456.490596661", + "slot": { + "period": 3673613, + "thread": 27 + } + }, + { + "amount": "456.490596660", + "slot": { + "period": 3784228, + "thread": 11 + } + } + ], + "AU12r9qX7EBd18iXxj5pLg8DRn159i68fQeLbfUKXmsSaxc9PeSLC": [ + { + "amount": "378.505822160", + "slot": { + "period": 128515, + "thread": 16 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 256451, + "thread": 12 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 441414, + "thread": 7 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 549734, + "thread": 22 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 658836, + "thread": 19 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 832328, + "thread": 28 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1079169, + "thread": 22 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1258878, + "thread": 25 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1472967, + "thread": 20 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1591752, + "thread": 11 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1755368, + "thread": 12 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 1911652, + "thread": 13 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2050088, + "thread": 18 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2150371, + "thread": 20 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2309985, + "thread": 1 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2618493, + "thread": 3 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2724479, + "thread": 10 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 2815193, + "thread": 30 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 3079902, + "thread": 23 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 3238042, + "thread": 29 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 3389136, + "thread": 30 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 3560194, + "thread": 29 + } + }, + { + "amount": "378.505822160", + "slot": { + "period": 3637229, + "thread": 2 + } + }, + { + "amount": "378.505822150", + "slot": { + "period": 3833568, + "thread": 4 + } + } + ], + "AU12rA2XTDbKieQDzonkXEhbxHiFbDberex6dtM6ofTWmLPimAZeQ": [ + { + "amount": "152.047318710", + "slot": { + "period": 131207, + "thread": 21 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 169783, + "thread": 19 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 485450, + "thread": 2 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 532922, + "thread": 31 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 718012, + "thread": 25 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 918241, + "thread": 12 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1089857, + "thread": 16 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1187435, + "thread": 10 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1372768, + "thread": 19 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1533881, + "thread": 2 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1775156, + "thread": 26 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 1812664, + "thread": 25 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2115061, + "thread": 21 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2240554, + "thread": 11 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2358667, + "thread": 0 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2468257, + "thread": 16 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2685041, + "thread": 2 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2805994, + "thread": 26 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 2993624, + "thread": 31 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 3129671, + "thread": 5 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 3367773, + "thread": 2 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 3610495, + "thread": 12 + } + }, + { + "amount": "152.047318710", + "slot": { + "period": 3714346, + "thread": 1 + } + }, + { + "amount": "152.047318716", + "slot": { + "period": 3859951, + "thread": 30 + } + } + ], + "AU12rAL8Aq32fzUEHU86ji3UPwezeXdup424jSqL5GvnSdcWLAGXB": [ + { + "amount": "194.127698640", + "slot": { + "period": 11236, + "thread": 28 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 314995, + "thread": 28 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 419976, + "thread": 15 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 551340, + "thread": 18 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 790750, + "thread": 27 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 948294, + "thread": 27 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1087564, + "thread": 14 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1190750, + "thread": 7 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1386665, + "thread": 6 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1591527, + "thread": 13 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1806753, + "thread": 24 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1820154, + "thread": 0 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 1982341, + "thread": 15 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2292022, + "thread": 21 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2389105, + "thread": 26 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2607063, + "thread": 4 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2683017, + "thread": 31 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2800525, + "thread": 10 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 2993154, + "thread": 18 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 3200144, + "thread": 31 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 3364659, + "thread": 18 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 3475976, + "thread": 26 + } + }, + { + "amount": "194.127698640", + "slot": { + "period": 3740410, + "thread": 9 + } + }, + { + "amount": "194.127698636", + "slot": { + "period": 3929135, + "thread": 13 + } + } + ], + "AU12rATmkQQxpDXXJJRYiJR2NLTc3zeuqtpo5tdzYqrwsarXkzwWY": [ + { + "amount": "140.560827641", + "slot": { + "period": 37564, + "thread": 31 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 260125, + "thread": 6 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 333791, + "thread": 10 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 636709, + "thread": 10 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 805439, + "thread": 0 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 860790, + "thread": 7 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1142510, + "thread": 6 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1236088, + "thread": 30 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1320370, + "thread": 4 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1511155, + "thread": 3 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1780134, + "thread": 27 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 1841685, + "thread": 3 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2100083, + "thread": 30 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2157094, + "thread": 22 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2345469, + "thread": 30 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2473936, + "thread": 26 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2753108, + "thread": 10 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2888605, + "thread": 4 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 2997932, + "thread": 8 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 3180324, + "thread": 26 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 3356677, + "thread": 5 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 3514750, + "thread": 18 + } + }, + { + "amount": "140.560827641", + "slot": { + "period": 3656091, + "thread": 22 + } + }, + { + "amount": "140.560827647", + "slot": { + "period": 3935729, + "thread": 3 + } + } + ], + "AU12rAi28hMdSPn6ccEXMgcrrW18znneMMHkuELBWyggSJpK6F5E7": [ + { + "amount": "524.677364260", + "slot": { + "period": 11828, + "thread": 13 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 244103, + "thread": 19 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 416658, + "thread": 5 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 625130, + "thread": 8 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 716239, + "thread": 7 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 944799, + "thread": 15 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1049708, + "thread": 2 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1233093, + "thread": 8 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1385779, + "thread": 7 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1645421, + "thread": 24 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1680596, + "thread": 9 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 1923298, + "thread": 19 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2084627, + "thread": 19 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2263556, + "thread": 6 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2382634, + "thread": 28 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2585566, + "thread": 30 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2762491, + "thread": 19 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 2811450, + "thread": 8 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 3068059, + "thread": 12 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 3256775, + "thread": 5 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 3435169, + "thread": 23 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 3602159, + "thread": 10 + } + }, + { + "amount": "524.677364260", + "slot": { + "period": 3630907, + "thread": 3 + } + }, + { + "amount": "524.677364252", + "slot": { + "period": 3831344, + "thread": 7 + } + } + ], + "AU12rBBfuHH7pvo1EiXnfcnkZ2i2t4X9ca9j3y29ipuR3Xhxmb5kj": [ + { + "amount": "97.062634463", + "slot": { + "period": 147470, + "thread": 5 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 196492, + "thread": 17 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 476072, + "thread": 6 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 607206, + "thread": 5 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 790741, + "thread": 18 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 949659, + "thread": 13 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1011724, + "thread": 29 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1198349, + "thread": 12 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1445995, + "thread": 29 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1606976, + "thread": 1 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1667506, + "thread": 19 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 1936715, + "thread": 28 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2127021, + "thread": 8 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2262376, + "thread": 23 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2380882, + "thread": 7 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2588126, + "thread": 2 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2721849, + "thread": 25 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 2854887, + "thread": 11 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 3065421, + "thread": 26 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 3200027, + "thread": 22 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 3383598, + "thread": 25 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 3534828, + "thread": 25 + } + }, + { + "amount": "97.062634463", + "slot": { + "period": 3736379, + "thread": 13 + } + }, + { + "amount": "97.062634457", + "slot": { + "period": 3854707, + "thread": 15 + } + } + ], + "AU12rBssY2hkTYiFtQg6bbRbfURibQrv6cmykEFeP1PhQAwpjnpan": [ + { + "amount": "98.168659791", + "slot": { + "period": 116619, + "thread": 0 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 174116, + "thread": 5 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 393166, + "thread": 20 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 548577, + "thread": 29 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 792321, + "thread": 2 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 944815, + "thread": 14 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 992579, + "thread": 10 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 1202591, + "thread": 0 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 1456665, + "thread": 18 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 1586561, + "thread": 23 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 1751720, + "thread": 23 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 1912598, + "thread": 8 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2025069, + "thread": 22 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2276717, + "thread": 28 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2431646, + "thread": 26 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2604671, + "thread": 9 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2649052, + "thread": 11 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2939180, + "thread": 3 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 2963970, + "thread": 25 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 3219173, + "thread": 2 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 3362537, + "thread": 31 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 3593514, + "thread": 11 + } + }, + { + "amount": "98.168659791", + "slot": { + "period": 3644836, + "thread": 2 + } + }, + { + "amount": "98.168659783", + "slot": { + "period": 3940217, + "thread": 29 + } + } + ], + "AU12rC1Xa1SiDM4r7NMDQtaQqxBQE96nRYxCA4y9WKo9YQ61UMMJo": [ + { + "amount": "512.038149383", + "slot": { + "period": 105229, + "thread": 24 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 266875, + "thread": 24 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 428816, + "thread": 6 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 598121, + "thread": 9 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 713166, + "thread": 19 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 918494, + "thread": 5 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1146564, + "thread": 10 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1274243, + "thread": 16 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1381283, + "thread": 15 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1497904, + "thread": 20 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1706610, + "thread": 11 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 1818661, + "thread": 10 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2088695, + "thread": 23 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2208578, + "thread": 13 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2337272, + "thread": 9 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2606142, + "thread": 26 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2661311, + "thread": 4 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 2871714, + "thread": 18 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 3042898, + "thread": 31 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 3231993, + "thread": 14 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 3330330, + "thread": 8 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 3541595, + "thread": 26 + } + }, + { + "amount": "512.038149383", + "slot": { + "period": 3692903, + "thread": 27 + } + }, + { + "amount": "512.038149389", + "slot": { + "period": 3890922, + "thread": 28 + } + } + ], + "AU12rC7Eq4CSUZcpPxeRn1cgkc3cCRkEJLFRN31rULvzyXSVQJoZP": [ + { + "amount": "68.262009601", + "slot": { + "period": 37571, + "thread": 23 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 266533, + "thread": 4 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 358188, + "thread": 5 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 521568, + "thread": 28 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 808599, + "thread": 18 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 831765, + "thread": 20 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1102425, + "thread": 5 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1186959, + "thread": 20 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1440050, + "thread": 24 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1638489, + "thread": 6 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1783701, + "thread": 23 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 1821199, + "thread": 31 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2098600, + "thread": 15 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2242142, + "thread": 10 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2305870, + "thread": 1 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2476216, + "thread": 18 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2628781, + "thread": 29 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 2841060, + "thread": 13 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3071855, + "thread": 17 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3140657, + "thread": 31 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3443561, + "thread": 30 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3548834, + "thread": 30 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3741729, + "thread": 4 + } + }, + { + "amount": "68.262009601", + "slot": { + "period": 3805805, + "thread": 1 + } + } + ], + "AU12rCqUTNR3a17SPSK59JiKatBhMN1oJSrHJEgPzKeNwFZN6acd2": [ + { + "amount": "238.249084941", + "slot": { + "period": 110959, + "thread": 0 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 180912, + "thread": 18 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 383194, + "thread": 13 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 536172, + "thread": 25 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 681410, + "thread": 12 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 971735, + "thread": 6 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1049999, + "thread": 29 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1195201, + "thread": 4 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1435459, + "thread": 24 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1585681, + "thread": 4 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1649621, + "thread": 30 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 1864178, + "thread": 23 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2079930, + "thread": 31 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2293090, + "thread": 15 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2406313, + "thread": 27 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2483023, + "thread": 22 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2720157, + "thread": 24 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2821993, + "thread": 23 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 2960813, + "thread": 12 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 3170437, + "thread": 13 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 3443513, + "thread": 2 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 3524364, + "thread": 13 + } + }, + { + "amount": "238.249084941", + "slot": { + "period": 3691187, + "thread": 7 + } + }, + { + "amount": "238.249084949", + "slot": { + "period": 3941328, + "thread": 28 + } + } + ], + "AU12rD8PRLCsmV6u9W6B6eU9qPFwsEPZVwEHNY2WjWrGJyoqLcnDw": [ + { + "amount": "140.109731826", + "slot": { + "period": 81424, + "thread": 21 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 205631, + "thread": 23 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 364670, + "thread": 17 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 491491, + "thread": 31 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 799859, + "thread": 24 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 855716, + "thread": 7 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1022462, + "thread": 7 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1252736, + "thread": 30 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1321391, + "thread": 2 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1605025, + "thread": 22 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1710606, + "thread": 1 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 1827316, + "thread": 27 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2037981, + "thread": 16 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2286725, + "thread": 27 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2327236, + "thread": 4 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2477944, + "thread": 20 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2683967, + "thread": 25 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 2895055, + "thread": 7 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 3072523, + "thread": 10 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 3240984, + "thread": 6 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 3350057, + "thread": 17 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 3584182, + "thread": 6 + } + }, + { + "amount": "140.109731826", + "slot": { + "period": 3687779, + "thread": 12 + } + }, + { + "amount": "140.109731817", + "slot": { + "period": 3825585, + "thread": 0 + } + } + ], + "AU12rDCHzmriQ8TmpAPGipevU2BhKCP8rN3AmjAeu1QixLrsnxCxS": [ + { + "amount": "432.892918065", + "slot": { + "period": 57226, + "thread": 11 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 277943, + "thread": 28 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 425915, + "thread": 7 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 635333, + "thread": 28 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 748933, + "thread": 4 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 981625, + "thread": 12 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1139774, + "thread": 21 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1205166, + "thread": 25 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1329788, + "thread": 20 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1564773, + "thread": 12 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1720599, + "thread": 24 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 1843786, + "thread": 0 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2046577, + "thread": 0 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2201117, + "thread": 27 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2311174, + "thread": 21 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2514996, + "thread": 25 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2777121, + "thread": 1 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 2836142, + "thread": 10 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 3031579, + "thread": 24 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 3131860, + "thread": 9 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 3418759, + "thread": 22 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 3527704, + "thread": 10 + } + }, + { + "amount": "432.892918065", + "slot": { + "period": 3751983, + "thread": 5 + } + }, + { + "amount": "432.892918074", + "slot": { + "period": 3891689, + "thread": 30 + } + } + ], + "AU12rE4Vyhz8SodpCiRz9Ni85nFcCFteQcTKgetoJzkbLqGpbLhbw": [ + { + "amount": "264.273220357", + "slot": { + "period": 141653, + "thread": 26 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 305953, + "thread": 5 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 415704, + "thread": 15 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 566991, + "thread": 0 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 683463, + "thread": 21 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 964363, + "thread": 3 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 996499, + "thread": 21 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 1306426, + "thread": 4 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 1343236, + "thread": 0 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 1629758, + "thread": 18 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 1727549, + "thread": 9 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 1818924, + "thread": 28 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2117222, + "thread": 13 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2196322, + "thread": 14 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2304079, + "thread": 10 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2580489, + "thread": 1 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2761047, + "thread": 9 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 2797753, + "thread": 14 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 3030940, + "thread": 11 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 3205712, + "thread": 3 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 3430875, + "thread": 0 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 3545534, + "thread": 17 + } + }, + { + "amount": "264.273220357", + "slot": { + "period": 3631035, + "thread": 2 + } + }, + { + "amount": "264.273220350", + "slot": { + "period": 3869955, + "thread": 23 + } + } + ], + "AU12rFLFXC5vaSEUxjVHZeLNYB21LAHtaP1mkL4GEKw9ZsBH6xM7t": [ + { + "amount": "131.414726228", + "slot": { + "period": 128246, + "thread": 27 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 320625, + "thread": 26 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 445814, + "thread": 11 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 507518, + "thread": 13 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 810808, + "thread": 25 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 841201, + "thread": 24 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 983439, + "thread": 29 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 1229628, + "thread": 0 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 1421894, + "thread": 3 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 1506009, + "thread": 25 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 1754453, + "thread": 23 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 1930478, + "thread": 28 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2113098, + "thread": 21 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2200930, + "thread": 22 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2413263, + "thread": 24 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2469652, + "thread": 30 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2733334, + "thread": 17 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 2875260, + "thread": 25 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 3062870, + "thread": 14 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 3177343, + "thread": 7 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 3440681, + "thread": 21 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 3547552, + "thread": 5 + } + }, + { + "amount": "131.414726228", + "slot": { + "period": 3747224, + "thread": 3 + } + }, + { + "amount": "131.414726235", + "slot": { + "period": 3939802, + "thread": 9 + } + } + ], + "AU12rG6DUzDo1duW16bYSsCMMaafxV7JtuWFqegUvHSFJX6hB8Q1R": [ + { + "amount": "88.116755510", + "slot": { + "period": 141874, + "thread": 4 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 231665, + "thread": 1 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 381314, + "thread": 4 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 602331, + "thread": 13 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 657808, + "thread": 14 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 920324, + "thread": 22 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1147163, + "thread": 8 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1254656, + "thread": 15 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1356311, + "thread": 9 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1524995, + "thread": 22 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1708889, + "thread": 17 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 1965675, + "thread": 28 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2079475, + "thread": 5 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2196882, + "thread": 7 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2296880, + "thread": 23 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2530577, + "thread": 21 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2680019, + "thread": 28 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 2882352, + "thread": 15 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 3103015, + "thread": 18 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 3200211, + "thread": 13 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 3370641, + "thread": 8 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 3561242, + "thread": 31 + } + }, + { + "amount": "88.116755510", + "slot": { + "period": 3733350, + "thread": 30 + } + }, + { + "amount": "88.116755502", + "slot": { + "period": 3827145, + "thread": 16 + } + } + ], + "AU12rGLLGPGsXQXrTuCC7HdGEUgk4YJ7MYdHArsN2fEqBkB6BFLDa": [ + { + "amount": "694.751493778", + "slot": { + "period": 49009, + "thread": 5 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 185072, + "thread": 11 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 438547, + "thread": 14 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 628344, + "thread": 1 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 781743, + "thread": 1 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 831066, + "thread": 3 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1069330, + "thread": 28 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1283830, + "thread": 25 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1405246, + "thread": 29 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1502134, + "thread": 23 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1649946, + "thread": 10 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 1825929, + "thread": 26 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2083908, + "thread": 26 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2215762, + "thread": 23 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2420596, + "thread": 26 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2510854, + "thread": 16 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2654171, + "thread": 0 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 2832420, + "thread": 8 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 3012849, + "thread": 8 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 3224199, + "thread": 21 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 3401352, + "thread": 4 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 3540339, + "thread": 19 + } + }, + { + "amount": "694.751493778", + "slot": { + "period": 3767930, + "thread": 24 + } + }, + { + "amount": "694.751493787", + "slot": { + "period": 3865433, + "thread": 29 + } + } + ], + "AU12rGUg9kUttbNW6GPD5StHfx6ErzVnc3YZZqoicb14NEzceo9Yf": [ + { + "amount": "229.157720255", + "slot": { + "period": 141497, + "thread": 15 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 210430, + "thread": 18 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 411562, + "thread": 4 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 586381, + "thread": 5 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 811738, + "thread": 22 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 839016, + "thread": 1 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1098061, + "thread": 23 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1194311, + "thread": 27 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1439078, + "thread": 5 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1519004, + "thread": 1 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1682757, + "thread": 3 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 1875882, + "thread": 27 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2059065, + "thread": 27 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2259931, + "thread": 22 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2444941, + "thread": 28 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2480003, + "thread": 12 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2681114, + "thread": 30 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 2941455, + "thread": 19 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 3072662, + "thread": 13 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 3210262, + "thread": 2 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 3432763, + "thread": 16 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 3501771, + "thread": 18 + } + }, + { + "amount": "229.157720255", + "slot": { + "period": 3722596, + "thread": 29 + } + }, + { + "amount": "229.157720254", + "slot": { + "period": 3938477, + "thread": 17 + } + } + ], + "AU12rGUrf4PVGYpBir1Ssm11vW8LiwxM5VcMS1HEpgwG2jMqkAHWx": [ + { + "amount": "154.120704635", + "slot": { + "period": 161018, + "thread": 7 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 296580, + "thread": 2 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 362203, + "thread": 30 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 544429, + "thread": 14 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 734108, + "thread": 5 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 916900, + "thread": 8 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1135159, + "thread": 1 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1241525, + "thread": 3 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1477070, + "thread": 5 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1558134, + "thread": 6 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1772887, + "thread": 1 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 1937350, + "thread": 6 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2042447, + "thread": 7 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2243397, + "thread": 23 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2439531, + "thread": 31 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2584982, + "thread": 16 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2732754, + "thread": 23 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 2936393, + "thread": 9 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 3067644, + "thread": 25 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 3225048, + "thread": 8 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 3414475, + "thread": 9 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 3466333, + "thread": 24 + } + }, + { + "amount": "154.120704635", + "slot": { + "period": 3717035, + "thread": 6 + } + }, + { + "amount": "154.120704626", + "slot": { + "period": 3843866, + "thread": 5 + } + } + ], + "AU12rGWnHGKTzaPv9x6vYW9zbxhtmihQ6TqJrF6VYDcM2xSDJuMVv": [ + { + "amount": "257.691663922", + "slot": { + "period": 152983, + "thread": 27 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 175361, + "thread": 6 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 386128, + "thread": 31 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 580607, + "thread": 2 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 740559, + "thread": 24 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 947731, + "thread": 22 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1050021, + "thread": 6 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1197807, + "thread": 14 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1416285, + "thread": 25 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1559726, + "thread": 31 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1653763, + "thread": 11 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 1834515, + "thread": 27 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2039034, + "thread": 2 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2241486, + "thread": 27 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2384098, + "thread": 13 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2517202, + "thread": 14 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2712937, + "thread": 27 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 2858487, + "thread": 11 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 3102526, + "thread": 8 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 3194410, + "thread": 1 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 3407687, + "thread": 9 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 3565489, + "thread": 17 + } + }, + { + "amount": "257.691663922", + "slot": { + "period": 3644757, + "thread": 30 + } + }, + { + "amount": "257.691663912", + "slot": { + "period": 3871469, + "thread": 22 + } + } + ], + "AU12rGoXqmKs9YvYA6c8uiapQNyECbrxbWTPgZu6oeXuDSNj3h9WP": [ + { + "amount": "329.630308026", + "slot": { + "period": 19439, + "thread": 12 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 169361, + "thread": 21 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 353456, + "thread": 18 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 576716, + "thread": 27 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 740247, + "thread": 9 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 828150, + "thread": 20 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1015392, + "thread": 7 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1212141, + "thread": 11 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1396061, + "thread": 28 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1646211, + "thread": 12 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1649524, + "thread": 0 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 1882617, + "thread": 17 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2042955, + "thread": 29 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2176654, + "thread": 12 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2312991, + "thread": 4 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2607393, + "thread": 29 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2691554, + "thread": 5 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 2945836, + "thread": 12 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 3075817, + "thread": 24 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 3262142, + "thread": 14 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 3307932, + "thread": 16 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 3461713, + "thread": 2 + } + }, + { + "amount": "329.630308026", + "slot": { + "period": 3652537, + "thread": 23 + } + }, + { + "amount": "329.630308036", + "slot": { + "period": 3848165, + "thread": 14 + } + } + ], + "AU12rGvAnuActQJT5ZUVNXMPE8FsFTMDyzyDUUCUfp9XVD5MknTJm": [ + { + "amount": "169.920132521", + "slot": { + "period": 96030, + "thread": 29 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 193644, + "thread": 3 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 400776, + "thread": 26 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 612639, + "thread": 17 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 739871, + "thread": 1 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 978959, + "thread": 5 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1077997, + "thread": 0 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1271867, + "thread": 7 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1362020, + "thread": 8 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1483456, + "thread": 22 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1657580, + "thread": 8 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 1819754, + "thread": 22 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2047603, + "thread": 17 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2194403, + "thread": 18 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2367980, + "thread": 7 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2521317, + "thread": 21 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2685327, + "thread": 25 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 2926120, + "thread": 7 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 3028502, + "thread": 17 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 3269002, + "thread": 0 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 3437815, + "thread": 23 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 3452528, + "thread": 23 + } + }, + { + "amount": "169.920132521", + "slot": { + "period": 3730614, + "thread": 27 + } + }, + { + "amount": "169.920132523", + "slot": { + "period": 3869733, + "thread": 10 + } + } + ], + "AU12rHcWbYEVy2VkroSHNt3cb5C97PdFkGMY1RmC6CzDUfbJYsSqd": [ + { + "amount": "280.910782992", + "slot": { + "period": 91622, + "thread": 30 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 279803, + "thread": 8 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 361180, + "thread": 9 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 523560, + "thread": 22 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 706326, + "thread": 15 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 907894, + "thread": 2 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1144462, + "thread": 29 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1227396, + "thread": 13 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1446531, + "thread": 17 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1586331, + "thread": 22 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1794822, + "thread": 10 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 1965832, + "thread": 12 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2117112, + "thread": 16 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2192510, + "thread": 10 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2395451, + "thread": 2 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2584177, + "thread": 26 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2632984, + "thread": 12 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2820890, + "thread": 29 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 2960340, + "thread": 4 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 3228112, + "thread": 13 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 3369519, + "thread": 31 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 3577550, + "thread": 30 + } + }, + { + "amount": "280.910782992", + "slot": { + "period": 3733372, + "thread": 27 + } + }, + { + "amount": "280.910782988", + "slot": { + "period": 3793926, + "thread": 20 + } + } + ], + "AU12rHjFRxeWNaAbj6JxkPGkeqBvDEL1u5Tzspjy9h3pR2tUsQQsT": [ + { + "amount": "140.739721007", + "slot": { + "period": 155425, + "thread": 10 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 172547, + "thread": 17 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 445357, + "thread": 5 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 503770, + "thread": 10 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 677308, + "thread": 19 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 822139, + "thread": 17 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1138091, + "thread": 31 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1195839, + "thread": 30 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1427898, + "thread": 23 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1598963, + "thread": 25 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1796669, + "thread": 30 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 1889290, + "thread": 15 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2086454, + "thread": 1 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2161275, + "thread": 13 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2367280, + "thread": 22 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2536267, + "thread": 7 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2740924, + "thread": 20 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 2816106, + "thread": 1 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 3056806, + "thread": 20 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 3123569, + "thread": 22 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 3432859, + "thread": 16 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 3611992, + "thread": 18 + } + }, + { + "amount": "140.739721007", + "slot": { + "period": 3639339, + "thread": 14 + } + }, + { + "amount": "140.739721003", + "slot": { + "period": 3803659, + "thread": 18 + } + } + ], + "AU12rHoDvjMuteRz9Kr9GHEgfM53PZZdsw3n9Q7CZLRMLmJaHDzQ2": [ + { + "amount": "99.995819010", + "slot": { + "period": 56188, + "thread": 2 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 244923, + "thread": 0 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 375307, + "thread": 24 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 648830, + "thread": 17 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 685848, + "thread": 0 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 862880, + "thread": 3 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1147836, + "thread": 31 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1151161, + "thread": 29 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1454613, + "thread": 4 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1640663, + "thread": 2 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1779059, + "thread": 1 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 1883020, + "thread": 26 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2087765, + "thread": 23 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2263958, + "thread": 14 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2328531, + "thread": 15 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2476305, + "thread": 6 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2684754, + "thread": 9 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 2878592, + "thread": 6 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 3081982, + "thread": 15 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 3256897, + "thread": 22 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 3334987, + "thread": 16 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 3617989, + "thread": 20 + } + }, + { + "amount": "99.995819010", + "slot": { + "period": 3753894, + "thread": 17 + } + }, + { + "amount": "99.995819019", + "slot": { + "period": 3867294, + "thread": 21 + } + } + ], + "AU12rJiQs8Qarcjtyc5QHSUm66rKTArf6m8bkuhQLEdyCdNnhxHyZ": [ + { + "amount": "151.616476547", + "slot": { + "period": 121148, + "thread": 5 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 300383, + "thread": 21 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 445367, + "thread": 16 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 616187, + "thread": 6 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 778687, + "thread": 30 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 909455, + "thread": 29 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1090928, + "thread": 1 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1239132, + "thread": 16 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1453870, + "thread": 0 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1619047, + "thread": 14 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1730081, + "thread": 6 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 1821746, + "thread": 28 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2076705, + "thread": 28 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2203214, + "thread": 13 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2351002, + "thread": 20 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2463270, + "thread": 29 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2705590, + "thread": 24 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2833307, + "thread": 13 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 2958622, + "thread": 25 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 3211055, + "thread": 3 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 3411285, + "thread": 25 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 3522586, + "thread": 14 + } + }, + { + "amount": "151.616476547", + "slot": { + "period": 3686091, + "thread": 1 + } + }, + { + "amount": "151.616476548", + "slot": { + "period": 3835189, + "thread": 18 + } + } + ], + "AU12rKo7wZkgEQje3EuNp2vyG2qDntQ72Tf44pFFPBsior5EBhenL": [ + { + "amount": "321.727819390", + "slot": { + "period": 163725, + "thread": 8 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 201285, + "thread": 30 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 474183, + "thread": 25 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 565501, + "thread": 27 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 747532, + "thread": 21 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 952739, + "thread": 0 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1002723, + "thread": 3 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1160997, + "thread": 29 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1364882, + "thread": 4 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1503561, + "thread": 13 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1682648, + "thread": 10 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 1906805, + "thread": 1 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2055551, + "thread": 16 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2272779, + "thread": 26 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2326135, + "thread": 31 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2527546, + "thread": 17 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2772474, + "thread": 19 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 2861829, + "thread": 28 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 3057928, + "thread": 22 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 3202452, + "thread": 31 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 3432019, + "thread": 24 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 3508911, + "thread": 30 + } + }, + { + "amount": "321.727819390", + "slot": { + "period": 3631121, + "thread": 26 + } + }, + { + "amount": "321.727819380", + "slot": { + "period": 3850299, + "thread": 4 + } + } + ], + "AU12rKtYQTjKqUFwribVTUJrohJcYN2woCijWc2iCrRH6PTLGQSak": [ + { + "amount": "63.821676682", + "slot": { + "period": 165412, + "thread": 24 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 271303, + "thread": 5 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 345150, + "thread": 5 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 541811, + "thread": 7 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 663963, + "thread": 7 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 967317, + "thread": 21 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1111238, + "thread": 0 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1156083, + "thread": 13 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1395802, + "thread": 26 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1537337, + "thread": 4 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1781765, + "thread": 1 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 1824892, + "thread": 3 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2037283, + "thread": 0 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2280909, + "thread": 25 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2348013, + "thread": 4 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2612945, + "thread": 7 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2787219, + "thread": 27 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2916518, + "thread": 19 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 2998822, + "thread": 4 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 3246339, + "thread": 1 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 3329159, + "thread": 14 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 3584445, + "thread": 29 + } + }, + { + "amount": "63.821676682", + "slot": { + "period": 3654199, + "thread": 21 + } + }, + { + "amount": "63.821676673", + "slot": { + "period": 3937040, + "thread": 29 + } + } + ], + "AU12rMVE4Xghbtuqc4fx1mVLFNZ6Hf7DDHGRk13Cf5g12bScb8GhE": [ + { + "amount": "197.410717620", + "slot": { + "period": 106973, + "thread": 16 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 291627, + "thread": 10 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 412487, + "thread": 13 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 617473, + "thread": 8 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 658683, + "thread": 14 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 853472, + "thread": 16 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1030780, + "thread": 28 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1280771, + "thread": 8 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1349506, + "thread": 26 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1540085, + "thread": 27 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1730015, + "thread": 10 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 1843712, + "thread": 17 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2126330, + "thread": 9 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2226982, + "thread": 9 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2398932, + "thread": 6 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2511892, + "thread": 1 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2754595, + "thread": 14 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 2857883, + "thread": 6 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 3040929, + "thread": 4 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 3201746, + "thread": 21 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 3344954, + "thread": 30 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 3513972, + "thread": 14 + } + }, + { + "amount": "197.410717620", + "slot": { + "period": 3752291, + "thread": 16 + } + }, + { + "amount": "197.410717615", + "slot": { + "period": 3848963, + "thread": 30 + } + } + ], + "AU12rMhirSJiFoQrtVdjQtMAAddbWs4KpQWbzotqdvd81kXfKqHjJ": [ + { + "amount": "509.286367610", + "slot": { + "period": 125836, + "thread": 9 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 218013, + "thread": 15 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 427362, + "thread": 29 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 515244, + "thread": 16 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 760345, + "thread": 29 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 831819, + "thread": 25 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 995675, + "thread": 13 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 1316502, + "thread": 31 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 1460734, + "thread": 13 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 1505920, + "thread": 15 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 1768518, + "thread": 6 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 1901151, + "thread": 16 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2020699, + "thread": 1 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2251669, + "thread": 11 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2394679, + "thread": 18 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2517937, + "thread": 15 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2680582, + "thread": 21 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 2909011, + "thread": 24 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 3077013, + "thread": 22 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 3205529, + "thread": 19 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 3294160, + "thread": 0 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 3561360, + "thread": 10 + } + }, + { + "amount": "509.286367610", + "slot": { + "period": 3678600, + "thread": 21 + } + }, + { + "amount": "509.286367611", + "slot": { + "period": 3885023, + "thread": 24 + } + } + ], + "AU12rMv88zCvuHwAx4kSinX6jLqva2ZuAVHFXedv3JQvnChDHT7JG": [ + { + "amount": "51.143977399", + "slot": { + "period": 112536, + "thread": 24 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 304539, + "thread": 1 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 484790, + "thread": 8 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 494951, + "thread": 5 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 678765, + "thread": 10 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 852706, + "thread": 10 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1134070, + "thread": 1 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1298946, + "thread": 17 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1413324, + "thread": 25 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1488351, + "thread": 18 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1723695, + "thread": 20 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 1900180, + "thread": 1 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2075138, + "thread": 20 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2225455, + "thread": 16 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2460151, + "thread": 30 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2514727, + "thread": 4 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2750202, + "thread": 25 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 2863071, + "thread": 1 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 3015037, + "thread": 29 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 3161932, + "thread": 25 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 3316209, + "thread": 26 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 3475245, + "thread": 10 + } + }, + { + "amount": "51.143977399", + "slot": { + "period": 3625075, + "thread": 28 + } + }, + { + "amount": "51.143977410", + "slot": { + "period": 3930801, + "thread": 11 + } + } + ], + "AU12rNS3urPYoLeX3byQutwgiQYxGTUEjZk2zfGkrgvfVjRLLjdKG": [ + { + "amount": "162.837995777", + "slot": { + "period": 108186, + "thread": 4 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 312139, + "thread": 27 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 429442, + "thread": 21 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 646044, + "thread": 13 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 819313, + "thread": 16 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 821619, + "thread": 17 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1038724, + "thread": 18 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1162741, + "thread": 7 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1330030, + "thread": 29 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1494101, + "thread": 3 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1668262, + "thread": 24 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 1944772, + "thread": 14 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2070622, + "thread": 21 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2144156, + "thread": 0 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2405033, + "thread": 19 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2521191, + "thread": 11 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2788540, + "thread": 1 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 2903937, + "thread": 6 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 3060694, + "thread": 9 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 3172817, + "thread": 8 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 3403064, + "thread": 16 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 3572144, + "thread": 17 + } + }, + { + "amount": "162.837995777", + "slot": { + "period": 3739869, + "thread": 31 + } + }, + { + "amount": "162.837995778", + "slot": { + "period": 3780695, + "thread": 24 + } + } + ], + "AU12rNaMoDjF1kVCxSS9DsemikEQ3NCwrEVHmuWqCiPRd6srn2sm6": [ + { + "amount": "255.335890523", + "slot": { + "period": 100774, + "thread": 23 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 266829, + "thread": 19 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 429466, + "thread": 5 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 621705, + "thread": 18 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 720768, + "thread": 23 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 896655, + "thread": 20 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1052458, + "thread": 24 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1253900, + "thread": 14 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1328034, + "thread": 30 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1558969, + "thread": 1 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1647477, + "thread": 12 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 1890107, + "thread": 7 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2020859, + "thread": 9 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2256590, + "thread": 3 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2361677, + "thread": 12 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2613536, + "thread": 6 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2769158, + "thread": 11 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 2816599, + "thread": 11 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 3016067, + "thread": 23 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 3190230, + "thread": 1 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 3428787, + "thread": 1 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 3499959, + "thread": 7 + } + }, + { + "amount": "255.335890523", + "slot": { + "period": 3718190, + "thread": 0 + } + }, + { + "amount": "255.335890522", + "slot": { + "period": 3870504, + "thread": 20 + } + } + ], + "AU12rPjmTWofdw9QoFWXfe7BuKrN4yp4isyoSNkipiKhxD5ijns98": [ + { + "amount": "108.774186757", + "slot": { + "period": 98329, + "thread": 30 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 184305, + "thread": 18 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 412936, + "thread": 12 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 598437, + "thread": 4 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 677481, + "thread": 27 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 923256, + "thread": 4 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 998349, + "thread": 27 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 1242547, + "thread": 5 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 1326830, + "thread": 6 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 1574388, + "thread": 31 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 1707551, + "thread": 18 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 1851354, + "thread": 6 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2062994, + "thread": 4 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2224665, + "thread": 2 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2313623, + "thread": 27 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2514782, + "thread": 30 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2715578, + "thread": 27 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 2803218, + "thread": 22 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 3070300, + "thread": 8 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 3180283, + "thread": 4 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 3445859, + "thread": 1 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 3561903, + "thread": 31 + } + }, + { + "amount": "108.774186757", + "slot": { + "period": 3628056, + "thread": 25 + } + }, + { + "amount": "108.774186748", + "slot": { + "period": 3912257, + "thread": 23 + } + } + ], + "AU12rPoiQBtwy991pGdKZ2PJLULQS46Khx9EUgsaiJAzEvwsuErNz": [ + { + "amount": "169.123343026", + "slot": { + "period": 45837, + "thread": 16 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 240821, + "thread": 1 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 382604, + "thread": 24 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 548999, + "thread": 0 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 704319, + "thread": 10 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 857294, + "thread": 9 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1014759, + "thread": 10 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1190678, + "thread": 20 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1337273, + "thread": 26 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1605978, + "thread": 22 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1658262, + "thread": 11 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 1865865, + "thread": 23 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2137221, + "thread": 31 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2167296, + "thread": 10 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2356362, + "thread": 24 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2619680, + "thread": 3 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2643191, + "thread": 10 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 2836389, + "thread": 5 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 3087329, + "thread": 26 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 3220737, + "thread": 9 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 3392209, + "thread": 18 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 3465263, + "thread": 1 + } + }, + { + "amount": "169.123343026", + "slot": { + "period": 3712395, + "thread": 28 + } + }, + { + "amount": "169.123343027", + "slot": { + "period": 3827440, + "thread": 26 + } + } + ], + "AU12rPqPoJuTLUQoCSVvmxdVK7YCyPPeVYLnkVtJMzM4vozVNWmVF": [ + { + "amount": "135.263729020", + "slot": { + "period": 10865, + "thread": 30 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 205590, + "thread": 21 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 410429, + "thread": 14 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 532806, + "thread": 11 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 702238, + "thread": 21 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 850630, + "thread": 31 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1032416, + "thread": 28 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1206533, + "thread": 21 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1324023, + "thread": 5 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1515358, + "thread": 3 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1727384, + "thread": 5 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 1865137, + "thread": 10 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2075755, + "thread": 13 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2264011, + "thread": 3 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2336930, + "thread": 25 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2623749, + "thread": 28 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2781894, + "thread": 0 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 2912372, + "thread": 14 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 3049036, + "thread": 18 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 3182031, + "thread": 26 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 3316659, + "thread": 4 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 3552221, + "thread": 4 + } + }, + { + "amount": "135.263729020", + "slot": { + "period": 3691596, + "thread": 22 + } + }, + { + "amount": "135.263729009", + "slot": { + "period": 3831920, + "thread": 13 + } + } + ], + "AU12rQ59Gd7kMdKvqSfod4eYkfN6Nfh4tivhTAdSQk2BSZXM4jgq9": [ + { + "amount": "138.061086903", + "slot": { + "period": 90447, + "thread": 10 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 291895, + "thread": 18 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 359183, + "thread": 6 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 495202, + "thread": 4 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 711184, + "thread": 29 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 867274, + "thread": 20 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1117668, + "thread": 0 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1206272, + "thread": 7 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1411622, + "thread": 14 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1561199, + "thread": 30 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1765448, + "thread": 13 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 1960541, + "thread": 23 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2101735, + "thread": 26 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2273152, + "thread": 14 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2325501, + "thread": 10 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2530571, + "thread": 25 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2648678, + "thread": 30 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 2836588, + "thread": 1 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 3038496, + "thread": 27 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 3250891, + "thread": 28 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 3357025, + "thread": 26 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 3550203, + "thread": 9 + } + }, + { + "amount": "138.061086903", + "slot": { + "period": 3689547, + "thread": 22 + } + }, + { + "amount": "138.061086896", + "slot": { + "period": 3899996, + "thread": 15 + } + } + ], + "AU12rQC5ULsjuaMe97UNKeh2uDNwXcVT74oYQEMfvw1PYVVmG5XNc": [ + { + "amount": "305.556891637", + "slot": { + "period": 72281, + "thread": 17 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 319290, + "thread": 13 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 446314, + "thread": 25 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 507052, + "thread": 27 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 796669, + "thread": 26 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 959822, + "thread": 25 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1086597, + "thread": 30 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1294599, + "thread": 19 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1433350, + "thread": 29 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1605742, + "thread": 20 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1744858, + "thread": 27 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 1947160, + "thread": 22 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2091825, + "thread": 23 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2259313, + "thread": 8 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2435238, + "thread": 14 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2570339, + "thread": 15 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2688811, + "thread": 25 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 2916486, + "thread": 16 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 3033016, + "thread": 16 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 3192229, + "thread": 15 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 3434913, + "thread": 11 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 3591579, + "thread": 22 + } + }, + { + "amount": "305.556891637", + "slot": { + "period": 3624170, + "thread": 5 + } + }, + { + "amount": "305.556891647", + "slot": { + "period": 3854938, + "thread": 10 + } + } + ], + "AU12rQS5XLTcpQBBfm4SbKaw6HtM2WuAnqDePE2vv82vNeRTiSjTU": [ + { + "amount": "363.078865937", + "slot": { + "period": 156798, + "thread": 11 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 183383, + "thread": 22 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 349003, + "thread": 7 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 537216, + "thread": 22 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 754018, + "thread": 13 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 902378, + "thread": 10 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1092643, + "thread": 4 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1177754, + "thread": 26 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1456578, + "thread": 25 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1575825, + "thread": 10 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1654429, + "thread": 13 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 1956846, + "thread": 26 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2105473, + "thread": 30 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2270879, + "thread": 1 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2416599, + "thread": 6 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2581714, + "thread": 30 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2775037, + "thread": 3 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2943101, + "thread": 23 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 2973457, + "thread": 28 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 3168028, + "thread": 1 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 3356006, + "thread": 17 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 3538662, + "thread": 24 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 3631312, + "thread": 20 + } + }, + { + "amount": "363.078865937", + "slot": { + "period": 3925826, + "thread": 13 + } + } + ], + "AU12rQnkQemyir5YD4enLUwQA6qbBhMfbgqF5i4CaWFrQ4rrRKdWE": [ + { + "amount": "193.394636643", + "slot": { + "period": 136951, + "thread": 24 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 196530, + "thread": 10 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 347880, + "thread": 23 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 505862, + "thread": 1 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 781669, + "thread": 19 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 950308, + "thread": 1 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 985667, + "thread": 12 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1304703, + "thread": 24 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1367849, + "thread": 3 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1543343, + "thread": 24 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1725813, + "thread": 25 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1829066, + "thread": 12 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 1995545, + "thread": 7 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 2204542, + "thread": 31 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 2364672, + "thread": 24 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 2617265, + "thread": 29 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 2752683, + "thread": 17 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 2879063, + "thread": 5 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 3010811, + "thread": 6 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 3166398, + "thread": 19 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 3399078, + "thread": 6 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 3561409, + "thread": 16 + } + }, + { + "amount": "193.394636643", + "slot": { + "period": 3740567, + "thread": 23 + } + }, + { + "amount": "193.394636646", + "slot": { + "period": 3910839, + "thread": 5 + } + } + ], + "AU12rRJXj3sc4p7LAxxgByhxNacYbhcrszbinRAAg9un81HTH9s6e": [ + { + "amount": "82.919746940", + "slot": { + "period": 91175, + "thread": 18 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 263267, + "thread": 21 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 461778, + "thread": 3 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 555967, + "thread": 17 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 710854, + "thread": 13 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 956704, + "thread": 16 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1071881, + "thread": 17 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1266900, + "thread": 7 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1442922, + "thread": 19 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1628721, + "thread": 6 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1784394, + "thread": 13 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 1838744, + "thread": 24 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2107926, + "thread": 3 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2288130, + "thread": 25 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2351632, + "thread": 9 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2569190, + "thread": 2 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2718902, + "thread": 1 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 2923758, + "thread": 16 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 3038087, + "thread": 21 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 3218561, + "thread": 1 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 3312706, + "thread": 14 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 3575799, + "thread": 12 + } + }, + { + "amount": "82.919746940", + "slot": { + "period": 3679964, + "thread": 12 + } + }, + { + "amount": "82.919746941", + "slot": { + "period": 3874117, + "thread": 18 + } + } + ], + "AU12rRRy5EUKSKEBRUxJXwxiM7T2AWmzQJo5BuChsJBNPGJnjWpMa": [ + { + "amount": "272.325676204", + "slot": { + "period": 87832, + "thread": 5 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 307002, + "thread": 12 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 486493, + "thread": 26 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 586613, + "thread": 4 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 711797, + "thread": 18 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 875857, + "thread": 2 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1106781, + "thread": 17 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1280880, + "thread": 19 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1472014, + "thread": 5 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1613748, + "thread": 4 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1789601, + "thread": 12 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 1915291, + "thread": 15 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2065018, + "thread": 31 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2220084, + "thread": 31 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2436532, + "thread": 2 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2619460, + "thread": 11 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2740321, + "thread": 1 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 2905649, + "thread": 29 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 3110987, + "thread": 1 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 3246847, + "thread": 30 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 3339468, + "thread": 11 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 3522585, + "thread": 15 + } + }, + { + "amount": "272.325676204", + "slot": { + "period": 3779448, + "thread": 23 + } + }, + { + "amount": "272.325676192", + "slot": { + "period": 3805781, + "thread": 0 + } + } + ], + "AU12rRtSyGjfQYCLg3ZCrxMLmh7nAf5HVLiMkkxNCZKsY8CVRJeL9": [ + { + "amount": "242.838449754", + "slot": { + "period": 18741, + "thread": 28 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 264630, + "thread": 23 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 482393, + "thread": 15 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 621685, + "thread": 29 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 808281, + "thread": 13 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 878613, + "thread": 12 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1126254, + "thread": 16 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1260177, + "thread": 1 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1425389, + "thread": 9 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1491937, + "thread": 12 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1706452, + "thread": 16 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 1873957, + "thread": 1 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2063089, + "thread": 31 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2145395, + "thread": 25 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2333784, + "thread": 7 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2527540, + "thread": 20 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2670271, + "thread": 9 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2906744, + "thread": 25 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 2998366, + "thread": 11 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 3214258, + "thread": 26 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 3397676, + "thread": 2 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 3531112, + "thread": 18 + } + }, + { + "amount": "242.838449754", + "slot": { + "period": 3664556, + "thread": 12 + } + }, + { + "amount": "242.838449763", + "slot": { + "period": 3786910, + "thread": 6 + } + } + ], + "AU12rSqtXj368p2WNwWmUkdCU6QSCNkEPeNLjtNdfDE58A4E19Twp": [ + { + "amount": "476.752286904", + "slot": { + "period": 38957, + "thread": 5 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 316024, + "thread": 29 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 326122, + "thread": 19 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 650544, + "thread": 22 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 769773, + "thread": 11 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 941140, + "thread": 21 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1022276, + "thread": 27 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1288260, + "thread": 22 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1417279, + "thread": 23 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1543268, + "thread": 27 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1668325, + "thread": 21 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 1899859, + "thread": 7 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2101396, + "thread": 14 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2232694, + "thread": 9 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2396438, + "thread": 12 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2513442, + "thread": 29 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2641602, + "thread": 10 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 2817806, + "thread": 29 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 3064959, + "thread": 7 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 3277756, + "thread": 7 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 3339220, + "thread": 31 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 3508185, + "thread": 17 + } + }, + { + "amount": "476.752286904", + "slot": { + "period": 3692607, + "thread": 27 + } + }, + { + "amount": "476.752286907", + "slot": { + "period": 3907135, + "thread": 21 + } + } + ], + "AU12rSzVBkcCPAGZTr6FzvJDm9htJ29FZssMCqURMtkLDwD2JF3CL": [ + { + "amount": "606.124794221", + "slot": { + "period": 33645, + "thread": 17 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 309645, + "thread": 31 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 422453, + "thread": 18 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 589953, + "thread": 15 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 741926, + "thread": 23 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 922201, + "thread": 8 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1123514, + "thread": 22 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1196818, + "thread": 16 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1403621, + "thread": 24 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1519236, + "thread": 9 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1753357, + "thread": 10 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 1887759, + "thread": 5 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2006471, + "thread": 24 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2235564, + "thread": 26 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2366540, + "thread": 7 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2594456, + "thread": 18 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2631565, + "thread": 29 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2890728, + "thread": 21 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 2985181, + "thread": 12 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 3215052, + "thread": 0 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 3360756, + "thread": 24 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 3566674, + "thread": 7 + } + }, + { + "amount": "606.124794221", + "slot": { + "period": 3652545, + "thread": 8 + } + }, + { + "amount": "606.124794229", + "slot": { + "period": 3824177, + "thread": 5 + } + } + ], + "AU12rTEL5XETAUyPL4fBL1horeE2Ue6gRkg861Aegvq14zrkxetQK": [ + { + "amount": "121.264394910", + "slot": { + "period": 27795, + "thread": 1 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 205236, + "thread": 3 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 421112, + "thread": 1 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 539380, + "thread": 15 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 665142, + "thread": 14 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 941918, + "thread": 13 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1004416, + "thread": 1 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1156882, + "thread": 7 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1444108, + "thread": 11 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1627598, + "thread": 28 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1794631, + "thread": 3 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 1814911, + "thread": 27 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2131178, + "thread": 11 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2209523, + "thread": 15 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2357348, + "thread": 24 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2514822, + "thread": 23 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2780833, + "thread": 11 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 2900699, + "thread": 29 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 3111663, + "thread": 11 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 3132115, + "thread": 20 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 3392750, + "thread": 3 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 3533285, + "thread": 6 + } + }, + { + "amount": "121.264394910", + "slot": { + "period": 3726262, + "thread": 0 + } + }, + { + "amount": "121.264394917", + "slot": { + "period": 3809286, + "thread": 18 + } + } + ], + "AU12rTNbZAvLrWj6t9Wm4mY339evoPnXgeJmfP33An4m85jsQRkRD": [ + { + "amount": "161.746559180", + "slot": { + "period": 75710, + "thread": 28 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 294607, + "thread": 27 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 429858, + "thread": 14 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 507447, + "thread": 10 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 679431, + "thread": 20 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 976410, + "thread": 16 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1136768, + "thread": 4 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1249732, + "thread": 11 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1370267, + "thread": 26 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1552958, + "thread": 5 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1736110, + "thread": 18 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 1951886, + "thread": 15 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2024987, + "thread": 17 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2165053, + "thread": 28 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2303138, + "thread": 14 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2573562, + "thread": 21 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2704056, + "thread": 14 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 2793491, + "thread": 22 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 3036224, + "thread": 29 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 3152602, + "thread": 23 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 3373525, + "thread": 7 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 3571902, + "thread": 17 + } + }, + { + "amount": "161.746559180", + "slot": { + "period": 3722195, + "thread": 17 + } + }, + { + "amount": "161.746559168", + "slot": { + "period": 3805513, + "thread": 4 + } + } + ], + "AU12rTXQ6DuQQDaC7qxnSNaPfvpBQB6xfPVEisyKFJS38DB7Z7Kmi": [ + { + "amount": "198.941804753", + "slot": { + "period": 18621, + "thread": 17 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 268799, + "thread": 14 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 426955, + "thread": 24 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 635862, + "thread": 11 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 706875, + "thread": 14 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 914762, + "thread": 13 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1055351, + "thread": 21 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1283017, + "thread": 20 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1335061, + "thread": 27 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1531307, + "thread": 7 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1728701, + "thread": 10 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 1817009, + "thread": 5 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2077261, + "thread": 7 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2178032, + "thread": 25 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2329830, + "thread": 22 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2481243, + "thread": 9 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2706969, + "thread": 25 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2882795, + "thread": 19 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 2975187, + "thread": 1 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 3199211, + "thread": 12 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 3370831, + "thread": 4 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 3552991, + "thread": 25 + } + }, + { + "amount": "198.941804753", + "slot": { + "period": 3731287, + "thread": 17 + } + }, + { + "amount": "198.941804748", + "slot": { + "period": 3812313, + "thread": 19 + } + } + ], + "AU12rU5e4N5pmjREqhaytfdMLEP8NusgirqSowcLqoVEewkxpJzA8": [ + { + "amount": "318.599394755", + "slot": { + "period": 79069, + "thread": 25 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 260834, + "thread": 10 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 366374, + "thread": 7 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 592777, + "thread": 26 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 783930, + "thread": 24 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 864450, + "thread": 26 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1142694, + "thread": 26 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1186877, + "thread": 24 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1462658, + "thread": 31 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1639813, + "thread": 3 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1710790, + "thread": 9 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 1831208, + "thread": 30 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2066679, + "thread": 26 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2249431, + "thread": 14 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2415311, + "thread": 20 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2535782, + "thread": 10 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2760919, + "thread": 4 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2931769, + "thread": 8 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 2971387, + "thread": 2 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 3245333, + "thread": 9 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 3361524, + "thread": 4 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 3501418, + "thread": 24 + } + }, + { + "amount": "318.599394755", + "slot": { + "period": 3640055, + "thread": 18 + } + }, + { + "amount": "318.599394745", + "slot": { + "period": 3895300, + "thread": 26 + } + } + ], + "AU12rXGdQvN2eBKeS3FqXTA7aWokHmMQrreSx93KNycwzMAinDFqh": [ + { + "amount": "178.001272968", + "slot": { + "period": 48571, + "thread": 15 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 306847, + "thread": 3 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 330943, + "thread": 23 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 638333, + "thread": 6 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 732094, + "thread": 6 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 851175, + "thread": 26 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1074962, + "thread": 30 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1174188, + "thread": 31 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1369636, + "thread": 20 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1506170, + "thread": 18 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1675710, + "thread": 29 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 1848440, + "thread": 29 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2014689, + "thread": 23 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2241301, + "thread": 29 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2346432, + "thread": 11 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2477557, + "thread": 9 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2643023, + "thread": 5 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 2897025, + "thread": 22 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 3040154, + "thread": 24 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 3146202, + "thread": 15 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 3314794, + "thread": 23 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 3558870, + "thread": 27 + } + }, + { + "amount": "178.001272968", + "slot": { + "period": 3742991, + "thread": 27 + } + }, + { + "amount": "178.001272980", + "slot": { + "period": 3827126, + "thread": 7 + } + } + ], + "AU12rXUqNYGr6EzprRukiUqECmUCBqqCBdqnFUx73DHZEHWyWs5h3": [ + { + "amount": "294.367167302", + "slot": { + "period": 137268, + "thread": 27 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 245862, + "thread": 15 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 441907, + "thread": 14 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 634191, + "thread": 12 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 658230, + "thread": 25 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 942070, + "thread": 14 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1068680, + "thread": 11 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1151263, + "thread": 17 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1426047, + "thread": 18 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1598280, + "thread": 29 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1674442, + "thread": 12 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 1889127, + "thread": 30 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2038242, + "thread": 19 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2196800, + "thread": 25 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2402289, + "thread": 11 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2464545, + "thread": 23 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2719811, + "thread": 18 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2868079, + "thread": 23 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 2960666, + "thread": 30 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 3151924, + "thread": 28 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 3385633, + "thread": 14 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 3528363, + "thread": 15 + } + }, + { + "amount": "294.367167302", + "slot": { + "period": 3636105, + "thread": 28 + } + }, + { + "amount": "294.367167307", + "slot": { + "period": 3929139, + "thread": 9 + } + } + ], + "AU12rZ4naU58VFGA6gDz5qtZguQM4M5EiCSpKS2qKAAAQniXLA2yV": [ + { + "amount": "178.761708418", + "slot": { + "period": 119584, + "thread": 20 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 257405, + "thread": 30 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 395422, + "thread": 11 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 560272, + "thread": 13 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 669836, + "thread": 27 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 980530, + "thread": 21 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1037219, + "thread": 13 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1199581, + "thread": 10 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1325403, + "thread": 30 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1594206, + "thread": 1 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1771395, + "thread": 4 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 1860312, + "thread": 10 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2084208, + "thread": 3 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2198158, + "thread": 15 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2386532, + "thread": 3 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2562173, + "thread": 20 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2677438, + "thread": 14 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 2845409, + "thread": 16 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 3121197, + "thread": 4 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 3166729, + "thread": 11 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 3342400, + "thread": 16 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 3596209, + "thread": 2 + } + }, + { + "amount": "178.761708418", + "slot": { + "period": 3743944, + "thread": 20 + } + }, + { + "amount": "178.761708417", + "slot": { + "period": 3925092, + "thread": 0 + } + } + ], + "AU12rcLV4vdEPKXJu1t9Pm1ppNF8uyGyfarsnKhSCSf66Qbq4qKro": [ + { + "amount": "361.780004505", + "slot": { + "period": 136912, + "thread": 25 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 232076, + "thread": 4 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 408327, + "thread": 27 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 647141, + "thread": 24 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 677137, + "thread": 8 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 955246, + "thread": 30 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1125977, + "thread": 13 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1258593, + "thread": 21 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1369809, + "thread": 0 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1508855, + "thread": 1 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1656969, + "thread": 28 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 1955219, + "thread": 10 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2135454, + "thread": 24 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2160024, + "thread": 29 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2380247, + "thread": 30 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2610706, + "thread": 27 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2661053, + "thread": 8 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2887082, + "thread": 13 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 2984200, + "thread": 7 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 3288101, + "thread": 0 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 3304574, + "thread": 30 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 3476502, + "thread": 20 + } + }, + { + "amount": "361.780004505", + "slot": { + "period": 3719181, + "thread": 26 + } + }, + { + "amount": "361.780004506", + "slot": { + "period": 3857633, + "thread": 2 + } + } + ], + "AU12rdEEC1yZGngaNEKqsFrFC8N3ctqkXJGdtbqWSUuTPKFDnV91o": [ + { + "amount": "148.794393822", + "slot": { + "period": 12169, + "thread": 25 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 298865, + "thread": 28 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 470996, + "thread": 16 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 587397, + "thread": 28 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 737304, + "thread": 27 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 867219, + "thread": 9 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1133909, + "thread": 0 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1271602, + "thread": 20 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1342243, + "thread": 6 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1616083, + "thread": 31 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1698839, + "thread": 12 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 1887255, + "thread": 13 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2126307, + "thread": 23 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2168332, + "thread": 13 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2455103, + "thread": 9 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2525475, + "thread": 3 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2774560, + "thread": 29 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 2914302, + "thread": 27 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 3015976, + "thread": 10 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 3170963, + "thread": 13 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 3441081, + "thread": 18 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 3517691, + "thread": 10 + } + }, + { + "amount": "148.794393822", + "slot": { + "period": 3622731, + "thread": 28 + } + }, + { + "amount": "148.794393818", + "slot": { + "period": 3888214, + "thread": 11 + } + } + ], + "AU12rg6yoVcF95tLKoJJwseEqHZ7TiARsVngyX7Bx9sY2X8Ub5umU": [ + { + "amount": "130.367464956", + "slot": { + "period": 131547, + "thread": 19 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 230242, + "thread": 11 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 414132, + "thread": 27 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 641525, + "thread": 9 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 818813, + "thread": 13 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 945146, + "thread": 5 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1085717, + "thread": 16 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1231074, + "thread": 28 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1357488, + "thread": 25 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1551813, + "thread": 23 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1659130, + "thread": 28 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1885922, + "thread": 1 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 1992905, + "thread": 6 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 2294039, + "thread": 18 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 2398344, + "thread": 15 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 2502343, + "thread": 11 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 2681471, + "thread": 9 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 2828359, + "thread": 12 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 3081257, + "thread": 8 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 3276875, + "thread": 2 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 3392524, + "thread": 19 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 3507020, + "thread": 23 + } + }, + { + "amount": "130.367464956", + "slot": { + "period": 3621117, + "thread": 0 + } + }, + { + "amount": "130.367464966", + "slot": { + "period": 3919244, + "thread": 18 + } + } + ], + "AU12rgJQZvYN8Vjnd4MTqp95F7dVrkDHf3RtcUZPE6rGaty2Fh6H6": [ + { + "amount": "110.249465964", + "slot": { + "period": 14372, + "thread": 6 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 316856, + "thread": 0 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 400110, + "thread": 31 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 628491, + "thread": 1 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 732911, + "thread": 9 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 849890, + "thread": 10 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1009186, + "thread": 24 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1187824, + "thread": 26 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1339548, + "thread": 26 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1482547, + "thread": 25 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1751020, + "thread": 7 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1959787, + "thread": 22 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 1988001, + "thread": 22 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 2274962, + "thread": 12 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 2458092, + "thread": 30 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 2561354, + "thread": 6 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 2751118, + "thread": 4 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 2951462, + "thread": 25 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 3104441, + "thread": 23 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 3236185, + "thread": 20 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 3312278, + "thread": 14 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 3613773, + "thread": 18 + } + }, + { + "amount": "110.249465964", + "slot": { + "period": 3753614, + "thread": 14 + } + }, + { + "amount": "110.249465960", + "slot": { + "period": 3945974, + "thread": 20 + } + } + ], + "AU12rgpgXRr3SUQs8ERbC36vB32xLRY9Qt7Q7VKowaHDGZQt3ybY3": [ + { + "amount": "331.527787916", + "slot": { + "period": 101762, + "thread": 15 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 243726, + "thread": 1 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 371616, + "thread": 1 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 568601, + "thread": 27 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 797115, + "thread": 21 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 867486, + "thread": 30 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1111118, + "thread": 6 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1258554, + "thread": 16 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1345414, + "thread": 29 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1489320, + "thread": 22 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1783586, + "thread": 15 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 1926463, + "thread": 21 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2025144, + "thread": 31 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2197774, + "thread": 17 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2318533, + "thread": 18 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2554005, + "thread": 1 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2754311, + "thread": 31 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 2929921, + "thread": 17 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 3034685, + "thread": 15 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 3164610, + "thread": 14 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 3381605, + "thread": 23 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 3482611, + "thread": 24 + } + }, + { + "amount": "331.527787916", + "slot": { + "period": 3711109, + "thread": 3 + } + }, + { + "amount": "331.527787919", + "slot": { + "period": 3825284, + "thread": 17 + } + } + ], + "AU12rh8FRyHMwto4mr5xKQUcGuxoqFjFyhcNKDturgXsAezA2xdBz": [ + { + "amount": "116.792765954", + "slot": { + "period": 162852, + "thread": 23 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 236446, + "thread": 14 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 415605, + "thread": 11 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 627759, + "thread": 9 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 661190, + "thread": 17 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 905529, + "thread": 9 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1033162, + "thread": 20 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1257974, + "thread": 8 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1470495, + "thread": 21 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1482717, + "thread": 18 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1788650, + "thread": 16 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 1913821, + "thread": 4 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2098948, + "thread": 14 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2278241, + "thread": 29 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2336416, + "thread": 25 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2490679, + "thread": 31 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2708036, + "thread": 19 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 2899577, + "thread": 21 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 3037425, + "thread": 18 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 3162395, + "thread": 5 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 3429236, + "thread": 7 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 3593552, + "thread": 9 + } + }, + { + "amount": "116.792765954", + "slot": { + "period": 3621146, + "thread": 20 + } + }, + { + "amount": "116.792765955", + "slot": { + "period": 3793543, + "thread": 5 + } + } + ], + "AU12ri36grkiRdK2ixssSB1HN3WB6SjM8GPQcAS9NUSaMmm977Da9": [ + { + "amount": "92.803350217", + "slot": { + "period": 140858, + "thread": 25 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 270771, + "thread": 26 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 378378, + "thread": 7 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 542227, + "thread": 26 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 702548, + "thread": 4 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 822920, + "thread": 20 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1025182, + "thread": 16 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1229901, + "thread": 5 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1354673, + "thread": 31 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1571540, + "thread": 12 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1720576, + "thread": 18 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 1940460, + "thread": 18 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2015652, + "thread": 17 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2146366, + "thread": 11 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2360606, + "thread": 16 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2536445, + "thread": 18 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2730307, + "thread": 11 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 2936116, + "thread": 8 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 3022597, + "thread": 23 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 3267006, + "thread": 1 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 3291423, + "thread": 29 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 3459488, + "thread": 8 + } + }, + { + "amount": "92.803350217", + "slot": { + "period": 3717975, + "thread": 31 + } + }, + { + "amount": "92.803350209", + "slot": { + "period": 3943200, + "thread": 24 + } + } + ], + "AU12riwcpXuKkYcPToZG61D85ji5sVBL4HdSzY393TTEiWpPYN85M": [ + { + "amount": "279.178383019", + "slot": { + "period": 153490, + "thread": 5 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 187342, + "thread": 8 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 348766, + "thread": 9 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 622938, + "thread": 23 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 706841, + "thread": 9 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 942970, + "thread": 23 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1057488, + "thread": 11 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1298882, + "thread": 29 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1394839, + "thread": 6 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1640313, + "thread": 15 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1776580, + "thread": 6 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 1819562, + "thread": 21 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2006009, + "thread": 30 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2239434, + "thread": 9 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2375251, + "thread": 18 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2492651, + "thread": 2 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2776093, + "thread": 17 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2935646, + "thread": 21 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 2955890, + "thread": 16 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 3279238, + "thread": 0 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 3439732, + "thread": 26 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 3611415, + "thread": 19 + } + }, + { + "amount": "279.178383019", + "slot": { + "period": 3766539, + "thread": 13 + } + }, + { + "amount": "279.178383010", + "slot": { + "period": 3796052, + "thread": 12 + } + } + ], + "AU12rjctJ3qqAVM9RgvnBiXwfuHfdp47owaPdgraqB6yggosywwRT": [ + { + "amount": "522.934622002", + "slot": { + "period": 106857, + "thread": 16 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 167678, + "thread": 25 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 405532, + "thread": 15 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 613696, + "thread": 22 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 781181, + "thread": 2 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 969605, + "thread": 14 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1120240, + "thread": 14 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1280916, + "thread": 0 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1430160, + "thread": 18 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1615648, + "thread": 6 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1751992, + "thread": 10 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 1892672, + "thread": 11 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2114960, + "thread": 25 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2252048, + "thread": 22 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2325907, + "thread": 15 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2498216, + "thread": 12 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2754678, + "thread": 12 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 2819346, + "thread": 17 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 3004161, + "thread": 15 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 3130711, + "thread": 14 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 3348875, + "thread": 11 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 3489772, + "thread": 6 + } + }, + { + "amount": "522.934622002", + "slot": { + "period": 3770587, + "thread": 1 + } + }, + { + "amount": "522.934622010", + "slot": { + "period": 3791516, + "thread": 6 + } + } + ], + "AU12rjngQe68wgsDdQc3LyF5kGkatgB8NrWJ5HnyZtwTQmDRStqgd": [ + { + "amount": "325.058988350", + "slot": { + "period": 127838, + "thread": 18 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 287555, + "thread": 11 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 361906, + "thread": 24 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 504464, + "thread": 1 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 661325, + "thread": 1 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 914064, + "thread": 2 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1057401, + "thread": 19 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1150256, + "thread": 16 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1393928, + "thread": 11 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1523158, + "thread": 4 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1702843, + "thread": 4 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 1908835, + "thread": 7 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2038814, + "thread": 6 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2274451, + "thread": 4 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2346858, + "thread": 8 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2487136, + "thread": 1 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2638832, + "thread": 30 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 2918181, + "thread": 12 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 3002080, + "thread": 10 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 3158074, + "thread": 17 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 3400183, + "thread": 24 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 3464920, + "thread": 6 + } + }, + { + "amount": "325.058988350", + "slot": { + "period": 3750137, + "thread": 23 + } + }, + { + "amount": "325.058988345", + "slot": { + "period": 3820080, + "thread": 8 + } + } + ], + "AU12rk7iLZwyPxJF6Bbz3iiw73wmQ1KjpE3yoZJyxQ9H48Xhw4rai": [ + { + "amount": "54.775809263", + "slot": { + "period": 80084, + "thread": 5 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 264367, + "thread": 11 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 414178, + "thread": 15 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 510027, + "thread": 8 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 782400, + "thread": 12 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 925760, + "thread": 1 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1135403, + "thread": 20 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1151631, + "thread": 24 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1458326, + "thread": 22 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1626625, + "thread": 24 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1773764, + "thread": 6 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 1889921, + "thread": 10 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2030974, + "thread": 3 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2293633, + "thread": 23 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2336718, + "thread": 20 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2533701, + "thread": 15 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2760776, + "thread": 25 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 2868432, + "thread": 4 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 3114100, + "thread": 11 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 3140308, + "thread": 6 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 3288740, + "thread": 1 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 3494373, + "thread": 27 + } + }, + { + "amount": "54.775809263", + "slot": { + "period": 3640618, + "thread": 26 + } + }, + { + "amount": "54.775809254", + "slot": { + "period": 3863438, + "thread": 11 + } + } + ], + "AU12rkkEtEAbvrhNve8LJH12Jj8fiQtoCz67Z27cnjjh65mF5Wefa": [ + { + "amount": "557.212081108", + "slot": { + "period": 102640, + "thread": 11 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 273149, + "thread": 0 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 438619, + "thread": 25 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 610419, + "thread": 12 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 742342, + "thread": 16 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 847544, + "thread": 5 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1038832, + "thread": 23 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1168022, + "thread": 0 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1346507, + "thread": 21 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1489790, + "thread": 20 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1733624, + "thread": 6 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 1823677, + "thread": 20 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2010296, + "thread": 9 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2168637, + "thread": 0 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2309211, + "thread": 28 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2541503, + "thread": 11 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2759149, + "thread": 30 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 2880528, + "thread": 0 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 3026096, + "thread": 13 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 3152152, + "thread": 12 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 3374570, + "thread": 25 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 3459731, + "thread": 3 + } + }, + { + "amount": "557.212081108", + "slot": { + "period": 3683271, + "thread": 15 + } + }, + { + "amount": "557.212081118", + "slot": { + "period": 3783365, + "thread": 28 + } + } + ], + "AU12rkqHbcNJoDjXscQnPY6gtmM5uqV8pYyRLGqqHKkwBHQy8xAqb": [ + { + "amount": "377.717006570", + "slot": { + "period": 41724, + "thread": 21 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 300104, + "thread": 19 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 356814, + "thread": 14 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 633575, + "thread": 4 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 711532, + "thread": 26 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 966225, + "thread": 23 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1144627, + "thread": 0 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1204786, + "thread": 10 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1381030, + "thread": 24 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1618123, + "thread": 26 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1774120, + "thread": 19 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1812175, + "thread": 7 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 1994787, + "thread": 12 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 2149519, + "thread": 10 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 2312978, + "thread": 31 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 2561535, + "thread": 4 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 2656172, + "thread": 17 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 2915386, + "thread": 24 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 3059508, + "thread": 24 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 3221583, + "thread": 10 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 3291551, + "thread": 2 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 3540520, + "thread": 21 + } + }, + { + "amount": "377.717006570", + "slot": { + "period": 3723511, + "thread": 15 + } + }, + { + "amount": "377.717006563", + "slot": { + "period": 3870681, + "thread": 18 + } + } + ], + "AU12rkzdcEBimtHtZtxKG7f5NFaY2tSGma4yGPLzDSQkExf3cJ6zy": [ + { + "amount": "146.316556954", + "slot": { + "period": 126927, + "thread": 21 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 225162, + "thread": 27 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 379500, + "thread": 9 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 611648, + "thread": 7 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 746140, + "thread": 18 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 949673, + "thread": 28 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1065342, + "thread": 14 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1298251, + "thread": 18 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1419093, + "thread": 17 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1612816, + "thread": 2 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1768044, + "thread": 17 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 1908907, + "thread": 7 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2049486, + "thread": 12 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2146074, + "thread": 14 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2371247, + "thread": 3 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2587012, + "thread": 16 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2750088, + "thread": 23 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 2864807, + "thread": 8 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 3022338, + "thread": 10 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 3235478, + "thread": 22 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 3318225, + "thread": 10 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 3472001, + "thread": 26 + } + }, + { + "amount": "146.316556954", + "slot": { + "period": 3632009, + "thread": 21 + } + }, + { + "amount": "146.316556965", + "slot": { + "period": 3913917, + "thread": 14 + } + } + ], + "AU12rmnvr5siN1RBsWjfguo1VcPPibhmj6pfTuc1EUSbFAaBX2gVJ": [ + { + "amount": "123.648981791", + "slot": { + "period": 34253, + "thread": 14 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 231339, + "thread": 30 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 490074, + "thread": 21 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 565338, + "thread": 3 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 781646, + "thread": 8 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 859827, + "thread": 21 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 986394, + "thread": 13 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 1242856, + "thread": 24 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 1409075, + "thread": 14 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 1616390, + "thread": 28 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 1799518, + "thread": 3 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 1902391, + "thread": 28 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2120789, + "thread": 11 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2190165, + "thread": 1 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2325697, + "thread": 7 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2506061, + "thread": 11 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2658252, + "thread": 28 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2878568, + "thread": 17 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 2979637, + "thread": 19 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 3152182, + "thread": 0 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 3439880, + "thread": 5 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 3602408, + "thread": 22 + } + }, + { + "amount": "123.648981791", + "slot": { + "period": 3621258, + "thread": 28 + } + }, + { + "amount": "123.648981795", + "slot": { + "period": 3786378, + "thread": 31 + } + } + ], + "AU12rnvsMHYJEZbNZyipcSc7bda17tFkDrufZPbcXzf9MgEPmbQYS": [ + { + "amount": "448.139956494", + "slot": { + "period": 89815, + "thread": 26 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 194059, + "thread": 30 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 363499, + "thread": 15 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 613865, + "thread": 9 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 792611, + "thread": 22 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 906930, + "thread": 14 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1110168, + "thread": 11 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1150769, + "thread": 20 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1399914, + "thread": 15 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1639414, + "thread": 30 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1772509, + "thread": 19 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 1902807, + "thread": 13 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2096225, + "thread": 6 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2276151, + "thread": 5 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2440239, + "thread": 10 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2559037, + "thread": 3 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2788111, + "thread": 6 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 2890251, + "thread": 1 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 3092750, + "thread": 11 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 3246212, + "thread": 19 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 3441696, + "thread": 23 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 3609765, + "thread": 15 + } + }, + { + "amount": "448.139956494", + "slot": { + "period": 3727176, + "thread": 0 + } + }, + { + "amount": "448.139956491", + "slot": { + "period": 3815356, + "thread": 1 + } + } + ], + "AU12rpwnNbUcjUvVNwH91soQvT1KhjNhwe5KK6DRqnScNqL3GmMZ8": [ + { + "amount": "168.971635072", + "slot": { + "period": 81639, + "thread": 9 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 281022, + "thread": 16 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 489259, + "thread": 25 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 606332, + "thread": 23 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 798094, + "thread": 22 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 868864, + "thread": 28 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1079552, + "thread": 13 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1212286, + "thread": 11 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1352694, + "thread": 8 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1575409, + "thread": 23 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1704930, + "thread": 20 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 1860006, + "thread": 24 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2013056, + "thread": 1 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2270774, + "thread": 5 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2401350, + "thread": 29 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2592089, + "thread": 16 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2642472, + "thread": 25 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 2813813, + "thread": 21 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 3087395, + "thread": 23 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 3217511, + "thread": 28 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 3290711, + "thread": 22 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 3558356, + "thread": 17 + } + }, + { + "amount": "168.971635072", + "slot": { + "period": 3730482, + "thread": 31 + } + }, + { + "amount": "168.971635080", + "slot": { + "period": 3878541, + "thread": 25 + } + } + ], + "AU12rrohNMAhwFRrMFqpce5XaJKHtqpJtZSxzYGBfzi5jUJjrgVWm": [ + { + "amount": "548.421518421", + "slot": { + "period": 104795, + "thread": 1 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 191801, + "thread": 9 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 413744, + "thread": 1 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 608038, + "thread": 24 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 773713, + "thread": 8 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 891380, + "thread": 11 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1033367, + "thread": 27 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1273605, + "thread": 15 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1392345, + "thread": 20 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1482018, + "thread": 28 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1808958, + "thread": 8 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 1892125, + "thread": 17 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2015714, + "thread": 10 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2279340, + "thread": 25 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2443764, + "thread": 11 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2480124, + "thread": 24 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2652839, + "thread": 4 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 2857582, + "thread": 9 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 3003090, + "thread": 4 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 3245532, + "thread": 12 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 3439947, + "thread": 11 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 3521218, + "thread": 14 + } + }, + { + "amount": "548.421518421", + "slot": { + "period": 3624385, + "thread": 22 + } + }, + { + "amount": "548.421518422", + "slot": { + "period": 3927427, + "thread": 6 + } + } + ], + "AU12rtYV6x42AQUfPUzKFDSfMUjy4GGk8K4qYDoCfXtg6Nyu4cbv": [ + { + "amount": "109.443209214", + "slot": { + "period": 118640, + "thread": 2 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 231810, + "thread": 26 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 449527, + "thread": 20 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 647397, + "thread": 21 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 730865, + "thread": 14 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 908831, + "thread": 19 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1136063, + "thread": 25 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1174022, + "thread": 21 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1393887, + "thread": 28 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1561739, + "thread": 31 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1779882, + "thread": 1 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 1929528, + "thread": 31 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2099296, + "thread": 9 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2266792, + "thread": 18 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2373510, + "thread": 11 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2477017, + "thread": 14 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2705734, + "thread": 14 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2830916, + "thread": 7 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 2964540, + "thread": 18 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 3219102, + "thread": 2 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 3424605, + "thread": 9 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 3497382, + "thread": 21 + } + }, + { + "amount": "109.443209214", + "slot": { + "period": 3699256, + "thread": 9 + } + }, + { + "amount": "109.443209203", + "slot": { + "period": 3858222, + "thread": 22 + } + } + ], + "AU12ru6ZuZQSJrSSb48A73FNJoSYKT2hnZBpYswKpmUeq7PnqapQZ": [ + { + "amount": "129.278821753", + "slot": { + "period": 37879, + "thread": 14 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 225893, + "thread": 22 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 391808, + "thread": 7 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 492880, + "thread": 18 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 811202, + "thread": 11 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 902984, + "thread": 29 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1140923, + "thread": 9 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1197073, + "thread": 16 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1463886, + "thread": 31 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1596061, + "thread": 26 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1665755, + "thread": 5 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 1969725, + "thread": 2 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2017126, + "thread": 9 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2281458, + "thread": 29 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2328694, + "thread": 20 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2505643, + "thread": 29 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2662515, + "thread": 27 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2951430, + "thread": 18 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 2997408, + "thread": 25 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 3242996, + "thread": 8 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 3395898, + "thread": 15 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 3458913, + "thread": 6 + } + }, + { + "amount": "129.278821753", + "slot": { + "period": 3720883, + "thread": 29 + } + }, + { + "amount": "129.278821742", + "slot": { + "period": 3919623, + "thread": 25 + } + } + ], + "AU12rusCULVcxTMTD4UFD6PxarcByPW1BqqaZVkx2oT3azedCj63j": [ + { + "amount": "316.044724964", + "slot": { + "period": 29993, + "thread": 17 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 272432, + "thread": 29 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 355913, + "thread": 25 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 608442, + "thread": 23 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 766235, + "thread": 15 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 872641, + "thread": 10 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1007078, + "thread": 1 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1263882, + "thread": 12 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1471760, + "thread": 29 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1605304, + "thread": 22 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1788191, + "thread": 16 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1922661, + "thread": 1 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 1999622, + "thread": 18 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 2172861, + "thread": 30 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 2314847, + "thread": 22 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 2609710, + "thread": 1 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 2703632, + "thread": 25 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 2893654, + "thread": 2 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 3063872, + "thread": 14 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 3148416, + "thread": 25 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 3290850, + "thread": 6 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 3527562, + "thread": 18 + } + }, + { + "amount": "316.044724964", + "slot": { + "period": 3708360, + "thread": 5 + } + }, + { + "amount": "316.044724974", + "slot": { + "period": 3852136, + "thread": 8 + } + } + ], + "AU12rv7yTb6vcYyBizaKX7LSD4kTixuJtsSt3pRmS75G3e6yDFTKs": [ + { + "amount": "444.395146832", + "slot": { + "period": 112054, + "thread": 10 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 280369, + "thread": 23 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 377119, + "thread": 0 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 552927, + "thread": 10 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 743987, + "thread": 11 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 841213, + "thread": 14 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1001198, + "thread": 10 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1246614, + "thread": 1 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1400891, + "thread": 17 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1529903, + "thread": 1 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1730761, + "thread": 16 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 1948362, + "thread": 17 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2100379, + "thread": 29 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2198213, + "thread": 9 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2401841, + "thread": 30 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2597662, + "thread": 2 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2728807, + "thread": 29 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 2907280, + "thread": 28 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 3086425, + "thread": 24 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 3249461, + "thread": 23 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 3443342, + "thread": 3 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 3460935, + "thread": 28 + } + }, + { + "amount": "444.395146832", + "slot": { + "period": 3721772, + "thread": 8 + } + }, + { + "amount": "444.395146827", + "slot": { + "period": 3886578, + "thread": 3 + } + } + ], + "AU12rvqKCuWRGt4piNV8EU1LwmTkAYQgjgzBHUZ5dsLVbDAPv4Jg6": [ + { + "amount": "241.022418377", + "slot": { + "period": 14025, + "thread": 16 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 256037, + "thread": 0 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 361149, + "thread": 0 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 566061, + "thread": 5 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 753754, + "thread": 28 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 838343, + "thread": 13 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 996696, + "thread": 9 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 1196938, + "thread": 10 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 1335402, + "thread": 1 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 1569567, + "thread": 0 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 1789308, + "thread": 22 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 1834181, + "thread": 30 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2018697, + "thread": 11 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2236069, + "thread": 8 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2436239, + "thread": 11 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2475288, + "thread": 1 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2638097, + "thread": 4 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 2804336, + "thread": 24 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 3004815, + "thread": 15 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 3285717, + "thread": 22 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 3348358, + "thread": 31 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 3527144, + "thread": 13 + } + }, + { + "amount": "241.022418377", + "slot": { + "period": 3620787, + "thread": 14 + } + }, + { + "amount": "241.022418376", + "slot": { + "period": 3801806, + "thread": 8 + } + } + ], + "AU12rvzKqhS7EMd3fBnJmxavYBwp3dTD8fBu1QRgtPH9BpdcG54UK": [ + { + "amount": "85.095992256", + "slot": { + "period": 68198, + "thread": 30 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 319470, + "thread": 8 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 442380, + "thread": 28 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 618850, + "thread": 24 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 759517, + "thread": 23 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 961989, + "thread": 11 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1014810, + "thread": 10 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1158395, + "thread": 19 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1438892, + "thread": 17 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1630636, + "thread": 0 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1691479, + "thread": 7 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 1831862, + "thread": 28 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2055164, + "thread": 30 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2185832, + "thread": 25 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2461093, + "thread": 10 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2505172, + "thread": 4 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2632076, + "thread": 18 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2812311, + "thread": 10 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 2961896, + "thread": 30 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 3193637, + "thread": 4 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 3384217, + "thread": 14 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 3497334, + "thread": 5 + } + }, + { + "amount": "85.095992256", + "slot": { + "period": 3687214, + "thread": 16 + } + }, + { + "amount": "85.095992267", + "slot": { + "period": 3943688, + "thread": 7 + } + } + ], + "AU12rwKYXPnFV7dc9eL93pf3WxPKP22FXjJArKmt6j4gmhpmJceZd": [ + { + "amount": "158.296866260", + "slot": { + "period": 76865, + "thread": 6 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 296027, + "thread": 15 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 370084, + "thread": 10 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 498408, + "thread": 28 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 734434, + "thread": 1 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 923515, + "thread": 13 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1117758, + "thread": 26 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1298826, + "thread": 29 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1374016, + "thread": 2 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1559679, + "thread": 7 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1752040, + "thread": 15 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 1861204, + "thread": 12 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2087746, + "thread": 28 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2238697, + "thread": 4 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2388328, + "thread": 24 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2516603, + "thread": 29 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2654903, + "thread": 31 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 2848443, + "thread": 21 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 3066134, + "thread": 2 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 3160518, + "thread": 10 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 3303699, + "thread": 8 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 3605407, + "thread": 1 + } + }, + { + "amount": "158.296866260", + "slot": { + "period": 3669170, + "thread": 18 + } + }, + { + "amount": "158.296866249", + "slot": { + "period": 3785384, + "thread": 0 + } + } + ], + "AU12rwZ89qizrPdy6gjZUyCocTrjvtQ5bRc3rLNRQqMc7EZEDaqsQ": [ + { + "amount": "70.863494365", + "slot": { + "period": 51627, + "thread": 22 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 284945, + "thread": 3 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 380674, + "thread": 13 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 608631, + "thread": 15 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 662885, + "thread": 15 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 979365, + "thread": 19 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1032916, + "thread": 28 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1190862, + "thread": 24 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1420824, + "thread": 31 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1585596, + "thread": 31 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1800348, + "thread": 20 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 1948256, + "thread": 13 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2140417, + "thread": 15 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2211974, + "thread": 31 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2386405, + "thread": 25 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2510847, + "thread": 9 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2775693, + "thread": 11 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2882747, + "thread": 4 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 2994561, + "thread": 19 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 3241362, + "thread": 19 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 3353949, + "thread": 1 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 3588359, + "thread": 14 + } + }, + { + "amount": "70.863494365", + "slot": { + "period": 3662145, + "thread": 22 + } + }, + { + "amount": "70.863494360", + "slot": { + "period": 3873167, + "thread": 13 + } + } + ], + "AU12rwunERGg8NLP2arQG9b2tAqC2nFqp4BJY2529BsJgRvD8i4z5": [ + { + "amount": "311.143343219", + "slot": { + "period": 116985, + "thread": 13 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 195609, + "thread": 28 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 348977, + "thread": 3 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 547961, + "thread": 31 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 676807, + "thread": 14 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 916266, + "thread": 14 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1040592, + "thread": 1 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1316177, + "thread": 19 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1352081, + "thread": 29 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1572629, + "thread": 25 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1717140, + "thread": 2 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1966140, + "thread": 27 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 1996853, + "thread": 0 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 2229603, + "thread": 8 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 2370313, + "thread": 17 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 2544717, + "thread": 30 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 2636596, + "thread": 5 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 2828163, + "thread": 2 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 3117373, + "thread": 4 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 3145486, + "thread": 27 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 3380518, + "thread": 12 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 3543798, + "thread": 29 + } + }, + { + "amount": "311.143343219", + "slot": { + "period": 3690785, + "thread": 12 + } + }, + { + "amount": "311.143343218", + "slot": { + "period": 3806183, + "thread": 16 + } + } + ], + "AU12rxFimuJznwDhGk4vsSLZrGM6yFdKaDkVGA2ifi8cRD14WW63H": [ + { + "amount": "156.780765058", + "slot": { + "period": 17300, + "thread": 10 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 239730, + "thread": 18 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 442768, + "thread": 13 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 541118, + "thread": 29 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 672512, + "thread": 15 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 972244, + "thread": 13 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1091388, + "thread": 2 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1170058, + "thread": 16 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1462579, + "thread": 30 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1593345, + "thread": 7 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1791797, + "thread": 14 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 1970252, + "thread": 30 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2115880, + "thread": 10 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2265280, + "thread": 20 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2334881, + "thread": 12 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2598316, + "thread": 20 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2750143, + "thread": 28 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2865988, + "thread": 28 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 2959934, + "thread": 0 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 3164489, + "thread": 10 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 3428058, + "thread": 31 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 3539344, + "thread": 27 + } + }, + { + "amount": "156.780765058", + "slot": { + "period": 3769030, + "thread": 30 + } + }, + { + "amount": "156.780765069", + "slot": { + "period": 3908574, + "thread": 1 + } + } + ], + "AU12rxY4o6PS3aLwhfxRmCknu1BJsM69cvACoFcbAujWosA67XyJZ": [ + { + "amount": "230.028263893", + "slot": { + "period": 104919, + "thread": 20 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 260408, + "thread": 31 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 461469, + "thread": 10 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 525266, + "thread": 0 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 667524, + "thread": 29 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 909775, + "thread": 21 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1005190, + "thread": 19 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1227684, + "thread": 20 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1385414, + "thread": 5 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1497050, + "thread": 18 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1659130, + "thread": 23 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 1857795, + "thread": 9 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2080409, + "thread": 0 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2224053, + "thread": 8 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2356855, + "thread": 30 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2550543, + "thread": 2 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2647273, + "thread": 12 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2874621, + "thread": 13 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 2958796, + "thread": 28 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 3137860, + "thread": 8 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 3391994, + "thread": 1 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 3529677, + "thread": 16 + } + }, + { + "amount": "230.028263893", + "slot": { + "period": 3755499, + "thread": 1 + } + }, + { + "amount": "230.028263901", + "slot": { + "period": 3845301, + "thread": 20 + } + } + ], + "AU12ryGpebkFKGnKvGvh18wwRwUL7AypKu1ZiuUyW3ZkZ6AdQ6Td": [ + { + "amount": "515.966127111", + "slot": { + "period": 138721, + "thread": 24 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 268359, + "thread": 9 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 360792, + "thread": 2 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 639917, + "thread": 2 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 720609, + "thread": 30 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 835331, + "thread": 6 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1126054, + "thread": 3 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1297916, + "thread": 30 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1381564, + "thread": 9 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1487480, + "thread": 12 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1715685, + "thread": 1 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 1878143, + "thread": 2 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2063197, + "thread": 25 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2198358, + "thread": 18 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2389397, + "thread": 15 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2489664, + "thread": 17 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2770795, + "thread": 16 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 2820208, + "thread": 0 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 3022519, + "thread": 24 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 3253741, + "thread": 28 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 3408834, + "thread": 27 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 3513244, + "thread": 5 + } + }, + { + "amount": "515.966127111", + "slot": { + "period": 3712506, + "thread": 15 + } + }, + { + "amount": "515.966127104", + "slot": { + "period": 3795567, + "thread": 28 + } + } + ], + "AU12ryVQ3h9LBTMpuahqfvZfBSe3oTGx5nZBAtEA7izN9pABzxffd": [ + { + "amount": "518.367613526", + "slot": { + "period": 33156, + "thread": 4 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 242182, + "thread": 9 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 460207, + "thread": 15 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 586785, + "thread": 14 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 684628, + "thread": 19 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 882541, + "thread": 26 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1083584, + "thread": 25 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1235586, + "thread": 27 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1379872, + "thread": 8 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1514134, + "thread": 1 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1757766, + "thread": 14 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 1920192, + "thread": 20 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2075701, + "thread": 24 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2243579, + "thread": 11 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2413959, + "thread": 10 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2555813, + "thread": 10 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2651439, + "thread": 11 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 2863765, + "thread": 29 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 3088602, + "thread": 15 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 3246733, + "thread": 29 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 3305698, + "thread": 1 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 3509861, + "thread": 21 + } + }, + { + "amount": "518.367613526", + "slot": { + "period": 3765415, + "thread": 21 + } + }, + { + "amount": "518.367613520", + "slot": { + "period": 3850906, + "thread": 5 + } + } + ], + "AU12ryW3B4TEmfPVhChob1i2GxAF7gttb3K25tSq7zykhUdNQb39Z": [ + { + "amount": "424.247710509", + "slot": { + "period": 59445, + "thread": 5 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 227122, + "thread": 7 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 423361, + "thread": 25 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 546181, + "thread": 28 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 690187, + "thread": 6 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 875234, + "thread": 19 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1064216, + "thread": 28 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1309332, + "thread": 16 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1382964, + "thread": 22 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1642514, + "thread": 21 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1748537, + "thread": 23 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 1889146, + "thread": 24 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2103311, + "thread": 14 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2215273, + "thread": 15 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2390364, + "thread": 0 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2539174, + "thread": 17 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2741602, + "thread": 17 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 2926904, + "thread": 11 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 3082269, + "thread": 23 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 3214039, + "thread": 2 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 3373692, + "thread": 27 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 3568132, + "thread": 8 + } + }, + { + "amount": "424.247710509", + "slot": { + "period": 3754940, + "thread": 22 + } + }, + { + "amount": "424.247710499", + "slot": { + "period": 3821690, + "thread": 29 + } + } + ], + "AU12ryZ7Hz4FKY821UJBZdjqYsbcgPbrK2vYAftFD2En88Xd2qsZK": [ + { + "amount": "144.129265869", + "slot": { + "period": 124095, + "thread": 16 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 261432, + "thread": 9 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 430547, + "thread": 14 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 567624, + "thread": 20 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 683625, + "thread": 14 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 981254, + "thread": 31 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1094350, + "thread": 19 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1165836, + "thread": 10 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1411381, + "thread": 29 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1530600, + "thread": 19 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1700847, + "thread": 26 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 1921121, + "thread": 6 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2005107, + "thread": 31 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2291943, + "thread": 25 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2426159, + "thread": 15 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2492413, + "thread": 9 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2780486, + "thread": 20 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2884846, + "thread": 8 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 2986773, + "thread": 30 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 3128583, + "thread": 22 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 3449391, + "thread": 14 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 3571785, + "thread": 12 + } + }, + { + "amount": "144.129265869", + "slot": { + "period": 3703856, + "thread": 0 + } + }, + { + "amount": "144.129265865", + "slot": { + "period": 3833814, + "thread": 30 + } + } + ], + "AU12rzEuezn8sLgcaYd8y2eRZrRZKnMDDEQe1F3dqgwxga11vLeLo": [ + { + "amount": "58.189985801", + "slot": { + "period": 94774, + "thread": 9 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 265329, + "thread": 4 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 426957, + "thread": 12 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 609402, + "thread": 12 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 727155, + "thread": 7 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 968359, + "thread": 23 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 989837, + "thread": 1 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 1239578, + "thread": 18 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 1397360, + "thread": 14 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 1572755, + "thread": 15 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 1696842, + "thread": 1 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 1962831, + "thread": 29 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2129335, + "thread": 4 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2176915, + "thread": 27 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2320287, + "thread": 11 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2564474, + "thread": 12 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2708084, + "thread": 18 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 2826521, + "thread": 19 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 3076272, + "thread": 3 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 3280062, + "thread": 6 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 3318213, + "thread": 0 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 3606682, + "thread": 26 + } + }, + { + "amount": "58.189985801", + "slot": { + "period": 3760135, + "thread": 3 + } + }, + { + "amount": "58.189985790", + "slot": { + "period": 3851980, + "thread": 6 + } + } + ], + "AU12rzTgXyw24LMPGZEvJnqVFDtADM1F7XQPGj7ZPojdsgwLKMob7": [ + { + "amount": "204.331379471", + "slot": { + "period": 145975, + "thread": 2 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 317842, + "thread": 21 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 414166, + "thread": 18 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 579369, + "thread": 8 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 685738, + "thread": 17 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 855650, + "thread": 31 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1011936, + "thread": 22 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1278454, + "thread": 16 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1423022, + "thread": 5 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1537003, + "thread": 0 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1782577, + "thread": 2 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 1814835, + "thread": 6 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2095555, + "thread": 29 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2265473, + "thread": 6 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2405703, + "thread": 30 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2597877, + "thread": 6 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2724934, + "thread": 8 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 2893580, + "thread": 1 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 3083000, + "thread": 31 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 3287817, + "thread": 5 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 3406175, + "thread": 15 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 3576065, + "thread": 30 + } + }, + { + "amount": "204.331379471", + "slot": { + "period": 3758613, + "thread": 2 + } + }, + { + "amount": "204.331379462", + "slot": { + "period": 3924594, + "thread": 20 + } + } + ], + "AU12s1TpMMStmZiWmuyJ6tbMLUx7Rr7HuGYwsxcAq1yVNXyvUL5fj": [ + { + "amount": "89.484375993", + "slot": { + "period": 18783, + "thread": 31 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 292379, + "thread": 21 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 335394, + "thread": 5 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 559261, + "thread": 15 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 788648, + "thread": 25 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 838259, + "thread": 31 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1109107, + "thread": 19 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1184344, + "thread": 9 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1458088, + "thread": 25 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1601218, + "thread": 14 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1769535, + "thread": 21 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 1864603, + "thread": 27 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2111261, + "thread": 1 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2161788, + "thread": 17 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2368882, + "thread": 8 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2524727, + "thread": 15 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2747243, + "thread": 29 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2819641, + "thread": 23 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 2967719, + "thread": 31 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 3240630, + "thread": 26 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 3329178, + "thread": 31 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 3482217, + "thread": 8 + } + }, + { + "amount": "89.484375993", + "slot": { + "period": 3770236, + "thread": 25 + } + }, + { + "amount": "89.484375995", + "slot": { + "period": 3946137, + "thread": 3 + } + } + ], + "AU12s2paSUMNKgQwHS8PMjUMUjWCmxFjfyugpUWrgrjP6V6CGAmLQ": [ + { + "amount": "52.676200081", + "slot": { + "period": 35136, + "thread": 14 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 200872, + "thread": 28 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 385098, + "thread": 26 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 525636, + "thread": 4 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 705576, + "thread": 0 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 883819, + "thread": 15 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1145979, + "thread": 17 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1262470, + "thread": 6 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1352189, + "thread": 19 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1580921, + "thread": 15 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1655596, + "thread": 26 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 1821753, + "thread": 23 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2050712, + "thread": 16 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2259029, + "thread": 12 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2311239, + "thread": 17 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2470341, + "thread": 0 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2716199, + "thread": 7 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2918743, + "thread": 20 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 2972142, + "thread": 7 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 3154826, + "thread": 16 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 3338516, + "thread": 16 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 3493035, + "thread": 27 + } + }, + { + "amount": "52.676200081", + "slot": { + "period": 3767180, + "thread": 6 + } + }, + { + "amount": "52.676200073", + "slot": { + "period": 3935447, + "thread": 5 + } + } + ], + "AU12s5RNVAZWN7ARQrUtv535zVspkiiYucccjeg7p9Cbfr5ShZz1P": [ + { + "amount": "153.317040032", + "slot": { + "period": 42924, + "thread": 31 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 254720, + "thread": 31 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 480539, + "thread": 11 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 637052, + "thread": 28 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 653633, + "thread": 22 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 878275, + "thread": 13 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1043757, + "thread": 31 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1303453, + "thread": 22 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1351819, + "thread": 1 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1531794, + "thread": 25 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1789094, + "thread": 6 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 1892115, + "thread": 30 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2080391, + "thread": 5 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2291500, + "thread": 2 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2383248, + "thread": 25 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2607026, + "thread": 22 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2753002, + "thread": 16 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 2801649, + "thread": 22 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 3120118, + "thread": 28 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 3275406, + "thread": 21 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 3424966, + "thread": 30 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 3597960, + "thread": 18 + } + }, + { + "amount": "153.317040032", + "slot": { + "period": 3645081, + "thread": 12 + } + }, + { + "amount": "153.317040043", + "slot": { + "period": 3840684, + "thread": 19 + } + } + ], + "AU12s5uJxZkhFuWvdgskFtYrQx3GkZkRDBqCdn26j6DCNzsjVHEEJ": [ + { + "amount": "334.828550120", + "slot": { + "period": 61302, + "thread": 28 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 322539, + "thread": 6 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 400435, + "thread": 3 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 573876, + "thread": 10 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 673617, + "thread": 9 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 864022, + "thread": 9 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1080953, + "thread": 9 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1286105, + "thread": 15 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1418417, + "thread": 13 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1625763, + "thread": 16 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1660779, + "thread": 6 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 1951696, + "thread": 26 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2049018, + "thread": 28 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2252718, + "thread": 16 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2447150, + "thread": 31 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2527732, + "thread": 13 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2671607, + "thread": 14 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 2900268, + "thread": 26 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 3087239, + "thread": 19 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 3234095, + "thread": 25 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 3408972, + "thread": 15 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 3587914, + "thread": 20 + } + }, + { + "amount": "334.828550120", + "slot": { + "period": 3697769, + "thread": 0 + } + }, + { + "amount": "334.828550115", + "slot": { + "period": 3907267, + "thread": 25 + } + } + ], + "AU12s63a8hRUKR3Lzw7f4Xy5P3zNjoTVLbwYcW7aFStyxB6E5ko17": [ + { + "amount": "107.338261985", + "slot": { + "period": 146273, + "thread": 2 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 230425, + "thread": 2 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 372288, + "thread": 3 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 518577, + "thread": 10 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 717842, + "thread": 6 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 914039, + "thread": 3 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1035944, + "thread": 18 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1181488, + "thread": 1 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1329188, + "thread": 18 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1502402, + "thread": 17 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1704176, + "thread": 7 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 1941290, + "thread": 26 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2078065, + "thread": 31 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2253822, + "thread": 25 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2438602, + "thread": 30 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2518802, + "thread": 2 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2690517, + "thread": 31 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 2859413, + "thread": 28 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 3072719, + "thread": 5 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 3226384, + "thread": 7 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 3390449, + "thread": 1 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 3559414, + "thread": 11 + } + }, + { + "amount": "107.338261985", + "slot": { + "period": 3701192, + "thread": 25 + } + }, + { + "amount": "107.338261975", + "slot": { + "period": 3852451, + "thread": 5 + } + } + ], + "AU12s722RAfv7e7DMoDLdjvjGGd5yZYMJnh8sAuaDsMHxEQfzyJ55": [ + { + "amount": "143.210811267", + "slot": { + "period": 60025, + "thread": 31 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 307162, + "thread": 11 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 401432, + "thread": 21 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 638902, + "thread": 8 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 699621, + "thread": 30 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 883587, + "thread": 23 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1138453, + "thread": 28 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1188823, + "thread": 14 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1450514, + "thread": 28 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1627965, + "thread": 17 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1808620, + "thread": 1 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 1865953, + "thread": 5 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2031895, + "thread": 24 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2236726, + "thread": 9 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2377218, + "thread": 23 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2611762, + "thread": 24 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2732465, + "thread": 16 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 2843285, + "thread": 6 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 3005219, + "thread": 8 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 3271092, + "thread": 1 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 3424193, + "thread": 9 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 3612002, + "thread": 6 + } + }, + { + "amount": "143.210811267", + "slot": { + "period": 3733585, + "thread": 3 + } + }, + { + "amount": "143.210811261", + "slot": { + "period": 3928897, + "thread": 12 + } + } + ], + "AU12s7xex56mc3Lh7JRfqoeBR9vgUy29J75iFRVasPhuwUahVu27U": [ + { + "amount": "214.347149946", + "slot": { + "period": 71779, + "thread": 28 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 170512, + "thread": 5 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 388346, + "thread": 7 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 495576, + "thread": 16 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 663402, + "thread": 18 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 961870, + "thread": 8 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1067139, + "thread": 13 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1162212, + "thread": 17 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1369970, + "thread": 0 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1499831, + "thread": 3 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1682059, + "thread": 17 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 1930987, + "thread": 7 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2055699, + "thread": 16 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2196455, + "thread": 26 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2326964, + "thread": 2 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2520720, + "thread": 25 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2756848, + "thread": 24 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 2921677, + "thread": 30 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 3062429, + "thread": 26 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 3126807, + "thread": 0 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 3428295, + "thread": 0 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 3574004, + "thread": 25 + } + }, + { + "amount": "214.347149946", + "slot": { + "period": 3672104, + "thread": 10 + } + }, + { + "amount": "214.347149943", + "slot": { + "period": 3798338, + "thread": 26 + } + } + ], + "AU12s84BU8ejmo8A6jerkTKM3g14Em4Xi9BeJUWw9c1WCMnsE6qKj": [ + { + "amount": "281.899385539", + "slot": { + "period": 23616, + "thread": 27 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 206874, + "thread": 23 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 481336, + "thread": 8 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 495640, + "thread": 10 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 727384, + "thread": 1 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 949755, + "thread": 25 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1007013, + "thread": 11 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1151294, + "thread": 4 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1360763, + "thread": 31 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1639077, + "thread": 31 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1703297, + "thread": 25 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 1967630, + "thread": 18 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2004377, + "thread": 27 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2291352, + "thread": 14 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2356608, + "thread": 24 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2541050, + "thread": 5 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2685249, + "thread": 31 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 2847671, + "thread": 13 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 3109776, + "thread": 3 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 3281112, + "thread": 23 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 3315450, + "thread": 4 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 3506580, + "thread": 3 + } + }, + { + "amount": "281.899385539", + "slot": { + "period": 3690862, + "thread": 16 + } + }, + { + "amount": "281.899385540", + "slot": { + "period": 3907890, + "thread": 16 + } + } + ], + "AU12s9FPzEKDsjFf5PKGMH9wBDddZhEbM1a8Gskfodnf5yUJBwUuk": [ + { + "amount": "78.258678481", + "slot": { + "period": 118700, + "thread": 29 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 231819, + "thread": 2 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 386925, + "thread": 4 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 649190, + "thread": 31 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 698429, + "thread": 2 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 977782, + "thread": 6 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1026118, + "thread": 4 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1245003, + "thread": 10 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1424842, + "thread": 31 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1591526, + "thread": 26 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1754423, + "thread": 27 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 1879584, + "thread": 31 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2130766, + "thread": 28 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2155240, + "thread": 29 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2312257, + "thread": 23 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2484222, + "thread": 31 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2735458, + "thread": 18 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 2912684, + "thread": 22 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 3019537, + "thread": 18 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 3238726, + "thread": 26 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 3441616, + "thread": 13 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 3546989, + "thread": 23 + } + }, + { + "amount": "78.258678481", + "slot": { + "period": 3690483, + "thread": 6 + } + }, + { + "amount": "78.258678473", + "slot": { + "period": 3832558, + "thread": 25 + } + } + ], + "AU12sC9oSqyq7KGuuaJDRRSv9JW2xnR8JbuxP6duuRK5QQL3wYC5C": [ + { + "amount": "71.294731947", + "slot": { + "period": 151518, + "thread": 20 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 210802, + "thread": 3 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 369331, + "thread": 12 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 623694, + "thread": 14 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 695475, + "thread": 25 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 959474, + "thread": 5 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1044077, + "thread": 26 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1162747, + "thread": 14 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1468484, + "thread": 18 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1641201, + "thread": 17 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1673392, + "thread": 19 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 1857069, + "thread": 22 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2034036, + "thread": 23 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2202292, + "thread": 31 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2373190, + "thread": 23 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2521077, + "thread": 31 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2651510, + "thread": 19 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 2809314, + "thread": 19 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 3003791, + "thread": 21 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 3156282, + "thread": 17 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 3298620, + "thread": 28 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 3487244, + "thread": 14 + } + }, + { + "amount": "71.294731947", + "slot": { + "period": 3624419, + "thread": 17 + } + }, + { + "amount": "71.294731942", + "slot": { + "period": 3866790, + "thread": 14 + } + } + ], + "AU12sCuQpwUZAaB3fruWf4LdyHDuWWxVYsf46mawZaxpdUBSfg3wq": [ + { + "amount": "155.829772104", + "slot": { + "period": 92522, + "thread": 27 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 244975, + "thread": 16 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 445547, + "thread": 15 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 584339, + "thread": 27 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 780316, + "thread": 19 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 872606, + "thread": 25 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1000111, + "thread": 27 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1159618, + "thread": 3 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1417361, + "thread": 7 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1585360, + "thread": 18 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1795443, + "thread": 16 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 1841604, + "thread": 6 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2109429, + "thread": 7 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2218782, + "thread": 20 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2348070, + "thread": 5 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2497598, + "thread": 9 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2760919, + "thread": 7 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2874244, + "thread": 16 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 2992761, + "thread": 30 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 3208196, + "thread": 13 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 3336580, + "thread": 4 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 3580038, + "thread": 4 + } + }, + { + "amount": "155.829772104", + "slot": { + "period": 3742162, + "thread": 21 + } + }, + { + "amount": "155.829772099", + "slot": { + "period": 3785088, + "thread": 29 + } + } + ], + "AU12sCuc32idYV3GjYzwgUB39iJSnnzLB9ktjFgV6JHccicCG9BCr": [ + { + "amount": "90.823476935", + "slot": { + "period": 76834, + "thread": 20 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 177497, + "thread": 24 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 399631, + "thread": 5 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 575481, + "thread": 23 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 808411, + "thread": 17 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 972618, + "thread": 28 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1038734, + "thread": 22 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1193637, + "thread": 31 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1329165, + "thread": 12 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1568202, + "thread": 29 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1660342, + "thread": 0 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 1814696, + "thread": 30 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2134785, + "thread": 3 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2237276, + "thread": 20 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2353445, + "thread": 11 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2543412, + "thread": 8 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2693212, + "thread": 24 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 2949996, + "thread": 22 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 3007407, + "thread": 10 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 3247113, + "thread": 4 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 3450156, + "thread": 15 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 3483177, + "thread": 3 + } + }, + { + "amount": "90.823476935", + "slot": { + "period": 3667416, + "thread": 19 + } + }, + { + "amount": "90.823476926", + "slot": { + "period": 3792468, + "thread": 17 + } + } + ], + "AU12sDVHfz5yDUEhi2JhZVdKHW7HsLKAhqUwqAAKcREPB89jFqZn4": [ + { + "amount": "362.156554980", + "slot": { + "period": 39805, + "thread": 8 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 262929, + "thread": 12 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 391266, + "thread": 29 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 493294, + "thread": 12 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 680129, + "thread": 20 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 931062, + "thread": 9 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1040891, + "thread": 26 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1160998, + "thread": 15 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1429853, + "thread": 19 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1615400, + "thread": 23 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1781501, + "thread": 0 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 1864914, + "thread": 26 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2077249, + "thread": 26 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2240678, + "thread": 16 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2306530, + "thread": 21 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2518339, + "thread": 17 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2713494, + "thread": 4 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 2859979, + "thread": 16 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 3067404, + "thread": 26 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 3205723, + "thread": 4 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 3314852, + "thread": 2 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 3603633, + "thread": 20 + } + }, + { + "amount": "362.156554980", + "slot": { + "period": 3648370, + "thread": 28 + } + }, + { + "amount": "362.156554991", + "slot": { + "period": 3857517, + "thread": 13 + } + } + ], + "AU12sE6ZaEzjNBpgxsXkzvk7u6eegDB3gHHgxT3sVebKDFJtXj4zi": [ + { + "amount": "197.516332519", + "slot": { + "period": 42261, + "thread": 11 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 251869, + "thread": 14 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 423735, + "thread": 12 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 550559, + "thread": 26 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 770238, + "thread": 22 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 893718, + "thread": 3 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1049380, + "thread": 16 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1307266, + "thread": 3 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1454898, + "thread": 5 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1581965, + "thread": 30 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1772312, + "thread": 10 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1870496, + "thread": 24 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 1981336, + "thread": 16 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 2149034, + "thread": 7 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 2425832, + "thread": 8 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 2484702, + "thread": 24 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 2751838, + "thread": 28 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 2835278, + "thread": 22 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 3074165, + "thread": 10 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 3127324, + "thread": 6 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 3442701, + "thread": 0 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 3485323, + "thread": 29 + } + }, + { + "amount": "197.516332519", + "slot": { + "period": 3733731, + "thread": 31 + } + }, + { + "amount": "197.516332529", + "slot": { + "period": 3786694, + "thread": 11 + } + } + ], + "AU12sERL8gpjF1wLZxnxAyu93sp5daeEUN9NjANvFb7KvG1qrhYSU": [ + { + "amount": "619.114996862", + "slot": { + "period": 69987, + "thread": 25 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 231733, + "thread": 30 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 342386, + "thread": 7 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 559052, + "thread": 11 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 671619, + "thread": 29 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 898916, + "thread": 6 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 985615, + "thread": 13 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 1317590, + "thread": 10 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 1439812, + "thread": 21 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 1574079, + "thread": 17 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 1763548, + "thread": 2 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 1818658, + "thread": 21 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2005149, + "thread": 28 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2159736, + "thread": 18 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2393699, + "thread": 20 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2553440, + "thread": 9 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2732970, + "thread": 24 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 2859896, + "thread": 26 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3049040, + "thread": 5 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3159831, + "thread": 26 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3345605, + "thread": 10 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3519798, + "thread": 1 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3686319, + "thread": 22 + } + }, + { + "amount": "619.114996862", + "slot": { + "period": 3845852, + "thread": 14 + } + } + ], + "AU12sEZp73nqt2b46BeLf7BjFyh9oFEA8VqJU5NaHmtUB4qZT5DZH": [ + { + "amount": "337.774164590", + "slot": { + "period": 129934, + "thread": 26 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 219454, + "thread": 11 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 387655, + "thread": 6 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 637825, + "thread": 27 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 657084, + "thread": 7 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 944539, + "thread": 23 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1112693, + "thread": 22 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1255329, + "thread": 5 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1350014, + "thread": 12 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1625098, + "thread": 23 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1718370, + "thread": 29 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 1870224, + "thread": 5 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2056464, + "thread": 27 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2270102, + "thread": 11 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2431058, + "thread": 27 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2520908, + "thread": 8 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2661729, + "thread": 29 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2906799, + "thread": 15 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 2964099, + "thread": 16 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 3206293, + "thread": 31 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 3414008, + "thread": 31 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 3551963, + "thread": 14 + } + }, + { + "amount": "337.774164590", + "slot": { + "period": 3686887, + "thread": 16 + } + }, + { + "amount": "337.774164600", + "slot": { + "period": 3852154, + "thread": 22 + } + } + ], + "AU12sEv36nKdQRvBggdvcEqS6tGi6Drbu8QfWY8ft49hH7L1xXYV": [ + { + "amount": "246.903080738", + "slot": { + "period": 134445, + "thread": 7 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 282133, + "thread": 30 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 393789, + "thread": 4 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 566696, + "thread": 13 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 724174, + "thread": 6 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 905118, + "thread": 10 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1149239, + "thread": 5 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1307854, + "thread": 3 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1376376, + "thread": 1 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1612860, + "thread": 5 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1667152, + "thread": 31 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 1828142, + "thread": 3 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2088680, + "thread": 1 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2155816, + "thread": 25 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2359927, + "thread": 4 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2579252, + "thread": 25 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2699153, + "thread": 20 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 2865238, + "thread": 21 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 3020189, + "thread": 22 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 3233159, + "thread": 7 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 3430851, + "thread": 19 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 3496540, + "thread": 14 + } + }, + { + "amount": "246.903080738", + "slot": { + "period": 3631194, + "thread": 8 + } + }, + { + "amount": "246.903080731", + "slot": { + "period": 3871026, + "thread": 13 + } + } + ], + "AU12sFyyocpKWz4h5sQzMhUESUkWJCMYvcNpmb2Jq55RKPV3Rs51R": [ + { + "amount": "368.286290827", + "slot": { + "period": 103524, + "thread": 25 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 261123, + "thread": 10 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 438069, + "thread": 1 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 551775, + "thread": 21 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 753221, + "thread": 29 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 881357, + "thread": 11 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1081267, + "thread": 6 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1158622, + "thread": 22 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1438023, + "thread": 21 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1535507, + "thread": 13 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1753696, + "thread": 8 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 1952715, + "thread": 13 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2106307, + "thread": 26 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2209218, + "thread": 28 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2299088, + "thread": 3 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2498393, + "thread": 12 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2731959, + "thread": 25 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 2818246, + "thread": 15 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 3035630, + "thread": 18 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 3284053, + "thread": 0 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 3419720, + "thread": 24 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 3582451, + "thread": 22 + } + }, + { + "amount": "368.286290827", + "slot": { + "period": 3708736, + "thread": 4 + } + }, + { + "amount": "368.286290821", + "slot": { + "period": 3879014, + "thread": 1 + } + } + ], + "AU12sG1DPHUfWFn9HaoeHnjHF8HD2kvB2piRjNK2DiBvRM4tSYRXx": [ + { + "amount": "208.708555860", + "slot": { + "period": 43491, + "thread": 15 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 266406, + "thread": 15 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 420558, + "thread": 24 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 493872, + "thread": 5 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 761448, + "thread": 2 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 922332, + "thread": 12 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1069066, + "thread": 25 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1168514, + "thread": 31 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1359088, + "thread": 23 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1492759, + "thread": 6 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1701357, + "thread": 23 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 1952597, + "thread": 11 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2067311, + "thread": 19 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2146639, + "thread": 12 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2403446, + "thread": 26 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2607635, + "thread": 30 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2777802, + "thread": 26 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 2945872, + "thread": 8 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 3075651, + "thread": 20 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 3186447, + "thread": 2 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 3300925, + "thread": 0 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 3535260, + "thread": 30 + } + }, + { + "amount": "208.708555860", + "slot": { + "period": 3649213, + "thread": 22 + } + }, + { + "amount": "208.708555849", + "slot": { + "period": 3935114, + "thread": 20 + } + } + ], + "AU12sG2LtaaNLjKCjrRRSvzGf53T7PPj57Z4mVrQzLKeV4JHCmi2M": [ + { + "amount": "624.566315913", + "slot": { + "period": 113291, + "thread": 18 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 253579, + "thread": 10 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 350246, + "thread": 20 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 549516, + "thread": 21 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 676309, + "thread": 22 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 927094, + "thread": 11 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1013251, + "thread": 2 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1243816, + "thread": 6 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1388013, + "thread": 1 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1578502, + "thread": 8 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1702224, + "thread": 13 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 1918504, + "thread": 27 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2004896, + "thread": 22 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2174601, + "thread": 25 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2411910, + "thread": 16 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2476416, + "thread": 13 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2778811, + "thread": 25 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2797499, + "thread": 15 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 2979280, + "thread": 18 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 3261599, + "thread": 8 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 3302237, + "thread": 13 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 3489049, + "thread": 1 + } + }, + { + "amount": "624.566315913", + "slot": { + "period": 3652728, + "thread": 10 + } + }, + { + "amount": "624.566315905", + "slot": { + "period": 3796428, + "thread": 24 + } + } + ], + "AU12sGBpgYb1W5BbrMb5YmCZPn7jSmAuT48NstMMEdvAq2DAzk4r5": [ + { + "amount": "257.111471510", + "slot": { + "period": 39055, + "thread": 13 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 237950, + "thread": 17 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 382602, + "thread": 25 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 581125, + "thread": 9 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 818357, + "thread": 15 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 832226, + "thread": 28 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1001966, + "thread": 0 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1227751, + "thread": 26 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1417322, + "thread": 12 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1621848, + "thread": 21 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1791550, + "thread": 22 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 1951778, + "thread": 9 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2039415, + "thread": 26 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2168044, + "thread": 5 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2371577, + "thread": 15 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2519799, + "thread": 0 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2753057, + "thread": 10 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2872210, + "thread": 27 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 2954813, + "thread": 15 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 3272530, + "thread": 11 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 3419304, + "thread": 30 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 3476910, + "thread": 26 + } + }, + { + "amount": "257.111471510", + "slot": { + "period": 3682862, + "thread": 1 + } + }, + { + "amount": "257.111471500", + "slot": { + "period": 3901783, + "thread": 26 + } + } + ], + "AU12sGmpbusXpv3wLyT7E8d2N9s5p4bDP9VoSWiDKS6Mn3dcs9NX4": [ + { + "amount": "98.267736623", + "slot": { + "period": 50000, + "thread": 26 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 257938, + "thread": 4 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 367575, + "thread": 21 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 585669, + "thread": 28 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 666579, + "thread": 7 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 979205, + "thread": 14 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1035979, + "thread": 11 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1289848, + "thread": 11 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1369265, + "thread": 21 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1536052, + "thread": 28 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1690259, + "thread": 3 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 1957678, + "thread": 21 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2006615, + "thread": 15 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2176285, + "thread": 18 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2373251, + "thread": 21 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2503728, + "thread": 16 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2759811, + "thread": 13 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 2854162, + "thread": 16 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 3026934, + "thread": 24 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 3168344, + "thread": 27 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 3343817, + "thread": 3 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 3502138, + "thread": 28 + } + }, + { + "amount": "98.267736623", + "slot": { + "period": 3766638, + "thread": 11 + } + }, + { + "amount": "98.267736612", + "slot": { + "period": 3803955, + "thread": 16 + } + } + ], + "AU12sGwqWozSz3WcoUGCRbDYJis5SE6UxbpJ9nDR1w8wzAX7J8dyi": [ + { + "amount": "273.099220188", + "slot": { + "period": 137516, + "thread": 13 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 185674, + "thread": 4 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 386839, + "thread": 9 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 629411, + "thread": 5 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 759263, + "thread": 7 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 873515, + "thread": 26 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1121007, + "thread": 19 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1303895, + "thread": 3 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1348914, + "thread": 2 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1561100, + "thread": 6 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1773231, + "thread": 19 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 1846108, + "thread": 28 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2116604, + "thread": 28 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2239503, + "thread": 1 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2342644, + "thread": 3 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2485536, + "thread": 29 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2771645, + "thread": 3 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 2811007, + "thread": 1 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 3072290, + "thread": 19 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 3194950, + "thread": 10 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 3373531, + "thread": 22 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 3474351, + "thread": 8 + } + }, + { + "amount": "273.099220188", + "slot": { + "period": 3720150, + "thread": 14 + } + }, + { + "amount": "273.099220181", + "slot": { + "period": 3798308, + "thread": 21 + } + } + ], + "AU12sHRkEQEmTR3BM2whE4Y7PTxVwAvpcVsUfoLSQLzt8SNvuJ17p": [ + { + "amount": "509.551799731", + "slot": { + "period": 64891, + "thread": 2 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 287924, + "thread": 21 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 340787, + "thread": 22 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 556302, + "thread": 24 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 707249, + "thread": 26 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 916284, + "thread": 16 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1048071, + "thread": 17 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1219685, + "thread": 30 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1364402, + "thread": 17 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1530153, + "thread": 10 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1746265, + "thread": 26 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 1884113, + "thread": 29 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2091126, + "thread": 16 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2221176, + "thread": 31 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2441265, + "thread": 20 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2539787, + "thread": 30 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2657873, + "thread": 12 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2800430, + "thread": 18 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 2959365, + "thread": 15 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 3272005, + "thread": 22 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 3369715, + "thread": 31 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 3479658, + "thread": 17 + } + }, + { + "amount": "509.551799731", + "slot": { + "period": 3651605, + "thread": 22 + } + }, + { + "amount": "509.551799727", + "slot": { + "period": 3924813, + "thread": 29 + } + } + ], + "AU12sHjKmSr77S57Tw33WjRYBjSiTRZpA1kyEvPSRpJ7uHAYG2YXS": [ + { + "amount": "283.415306503", + "slot": { + "period": 79178, + "thread": 31 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 211765, + "thread": 25 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 437484, + "thread": 26 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 634336, + "thread": 13 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 690943, + "thread": 5 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 976504, + "thread": 19 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1041906, + "thread": 9 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1264544, + "thread": 23 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1327390, + "thread": 21 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1564687, + "thread": 25 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1664321, + "thread": 19 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 1952754, + "thread": 13 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2059310, + "thread": 30 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2160838, + "thread": 25 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2316240, + "thread": 1 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2551549, + "thread": 21 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2667594, + "thread": 17 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2811550, + "thread": 0 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 2999819, + "thread": 10 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 3135786, + "thread": 8 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 3303810, + "thread": 11 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 3586197, + "thread": 19 + } + }, + { + "amount": "283.415306503", + "slot": { + "period": 3744389, + "thread": 19 + } + }, + { + "amount": "283.415306502", + "slot": { + "period": 3833812, + "thread": 7 + } + } + ], + "AU12sJmZD7SkTcuVxYme5BQ5oMkAKE1TgTfrFB7QJuW3SLBrGKof": [ + { + "amount": "94.477116822", + "slot": { + "period": 121032, + "thread": 18 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 241844, + "thread": 8 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 453132, + "thread": 16 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 521599, + "thread": 28 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 819493, + "thread": 30 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 869008, + "thread": 12 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1027988, + "thread": 9 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1176303, + "thread": 4 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1415428, + "thread": 25 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1569030, + "thread": 19 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1735242, + "thread": 26 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 1823136, + "thread": 0 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2105996, + "thread": 14 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2269820, + "thread": 11 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2312047, + "thread": 20 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2495892, + "thread": 30 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2700046, + "thread": 24 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 2860321, + "thread": 11 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 3100564, + "thread": 5 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 3158430, + "thread": 0 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 3407903, + "thread": 17 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 3481519, + "thread": 28 + } + }, + { + "amount": "94.477116822", + "slot": { + "period": 3693669, + "thread": 30 + } + }, + { + "amount": "94.477116824", + "slot": { + "period": 3882372, + "thread": 14 + } + } + ], + "AU12sJqh3iUMRQzuAFj2AqqynGbiF7etPZnXCpmvbJKSmSZRANz3p": [ + { + "amount": "101.876874071", + "slot": { + "period": 69150, + "thread": 19 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 268542, + "thread": 2 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 391588, + "thread": 1 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 574816, + "thread": 0 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 762249, + "thread": 16 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 982349, + "thread": 20 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1135784, + "thread": 7 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1171968, + "thread": 20 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1361830, + "thread": 24 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1535610, + "thread": 20 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1730073, + "thread": 1 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 1951165, + "thread": 1 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2031690, + "thread": 21 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2241247, + "thread": 21 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2321749, + "thread": 9 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2622416, + "thread": 18 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2695521, + "thread": 5 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 2851509, + "thread": 16 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 3053669, + "thread": 27 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 3177817, + "thread": 21 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 3336592, + "thread": 25 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 3519926, + "thread": 14 + } + }, + { + "amount": "101.876874071", + "slot": { + "period": 3756437, + "thread": 11 + } + }, + { + "amount": "101.876874060", + "slot": { + "period": 3946077, + "thread": 15 + } + } + ], + "AU12sKqDmwkcUiKsVztvDW8CcrYQKuyY8WW7ogKpWmpyRQfzVbNVb": [ + { + "amount": "127.331421005", + "slot": { + "period": 78016, + "thread": 14 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 269465, + "thread": 21 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 449752, + "thread": 19 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 496267, + "thread": 24 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 659925, + "thread": 26 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 950278, + "thread": 3 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1121379, + "thread": 28 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1257495, + "thread": 3 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1374690, + "thread": 29 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1562850, + "thread": 22 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1745513, + "thread": 17 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 1955198, + "thread": 1 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2116320, + "thread": 15 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2193890, + "thread": 7 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2329155, + "thread": 29 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2533042, + "thread": 28 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2631185, + "thread": 10 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 2800161, + "thread": 11 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 3005151, + "thread": 6 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 3163844, + "thread": 12 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 3433259, + "thread": 1 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 3466386, + "thread": 24 + } + }, + { + "amount": "127.331421005", + "slot": { + "period": 3694127, + "thread": 25 + } + }, + { + "amount": "127.331420994", + "slot": { + "period": 3803323, + "thread": 19 + } + } + ], + "AU12sLwVoAC6VVzBR1qKNzL582au8U1TCNRgAR1KFTSB9ZNvAFExc": [ + { + "amount": "374.113727425", + "slot": { + "period": 129376, + "thread": 17 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 281120, + "thread": 18 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 483549, + "thread": 7 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 500056, + "thread": 18 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 718776, + "thread": 12 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 955566, + "thread": 24 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1070746, + "thread": 1 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1231580, + "thread": 17 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1379167, + "thread": 5 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1610407, + "thread": 20 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1709569, + "thread": 5 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 1892643, + "thread": 13 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2028540, + "thread": 21 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2241174, + "thread": 27 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2366532, + "thread": 10 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2604961, + "thread": 8 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2643364, + "thread": 13 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 2907437, + "thread": 15 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 3066720, + "thread": 16 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 3255152, + "thread": 22 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 3412684, + "thread": 18 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 3479130, + "thread": 4 + } + }, + { + "amount": "374.113727425", + "slot": { + "period": 3723990, + "thread": 14 + } + }, + { + "amount": "374.113727427", + "slot": { + "period": 3888900, + "thread": 17 + } + } + ], + "AU12sMTmiTwWbDhbaXqvWjaUMkKzeBgmYbepyk47Y5NjeyqoPKLwN": [ + { + "amount": "337.140309546", + "slot": { + "period": 96322, + "thread": 17 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 186256, + "thread": 8 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 464376, + "thread": 9 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 587230, + "thread": 18 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 798362, + "thread": 2 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 975266, + "thread": 8 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1091579, + "thread": 14 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1242636, + "thread": 4 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1422379, + "thread": 11 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1627214, + "thread": 16 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1785836, + "thread": 30 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 1863039, + "thread": 21 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2109946, + "thread": 28 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2284887, + "thread": 4 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2355439, + "thread": 5 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2542265, + "thread": 31 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2633866, + "thread": 9 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 2828654, + "thread": 6 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 3025883, + "thread": 4 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 3149876, + "thread": 21 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 3377413, + "thread": 23 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 3525133, + "thread": 28 + } + }, + { + "amount": "337.140309546", + "slot": { + "period": 3655746, + "thread": 23 + } + }, + { + "amount": "337.140309534", + "slot": { + "period": 3924224, + "thread": 16 + } + } + ], + "AU12sMw9RWWW8P3KFGMyQPS3Nk9JuUyPqPYs1H4rR3KKwQC3QopuD": [ + { + "amount": "169.185441161", + "slot": { + "period": 45559, + "thread": 20 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 280286, + "thread": 19 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 335079, + "thread": 23 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 636345, + "thread": 12 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 729560, + "thread": 5 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 937588, + "thread": 24 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1103338, + "thread": 27 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1210777, + "thread": 8 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1382966, + "thread": 19 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1586202, + "thread": 23 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1745629, + "thread": 1 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 1900657, + "thread": 16 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2064452, + "thread": 27 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2223804, + "thread": 16 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2352740, + "thread": 14 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2592937, + "thread": 1 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2695635, + "thread": 13 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 2805436, + "thread": 8 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 3104680, + "thread": 17 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 3249434, + "thread": 27 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 3326800, + "thread": 16 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 3522322, + "thread": 13 + } + }, + { + "amount": "169.185441161", + "slot": { + "period": 3644602, + "thread": 9 + } + }, + { + "amount": "169.185441166", + "slot": { + "period": 3913357, + "thread": 21 + } + } + ], + "AU12sMzsPRci7YGb6vSZwUWZvxrZtKfjvXbnCaiBPpMrmwegQm2oQ": [ + { + "amount": "128.498547550", + "slot": { + "period": 86433, + "thread": 23 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 237121, + "thread": 17 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 471972, + "thread": 13 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 567291, + "thread": 8 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 784191, + "thread": 9 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 919393, + "thread": 21 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1032822, + "thread": 17 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1257606, + "thread": 19 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1441639, + "thread": 19 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1579787, + "thread": 5 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1647689, + "thread": 19 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1911155, + "thread": 18 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 1985615, + "thread": 25 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 2160279, + "thread": 25 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 2335976, + "thread": 18 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 2594489, + "thread": 20 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 2672554, + "thread": 25 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 2935336, + "thread": 29 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 3069762, + "thread": 23 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 3230182, + "thread": 17 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 3421525, + "thread": 0 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 3579237, + "thread": 14 + } + }, + { + "amount": "128.498547550", + "slot": { + "period": 3645624, + "thread": 22 + } + }, + { + "amount": "128.498547559", + "slot": { + "period": 3814547, + "thread": 23 + } + } + ], + "AU12sN7vxRfzJap8LbxhRiUSn2EqhZmXPcCFthDXwMa7RohkqTzF8": [ + { + "amount": "219.900684927", + "slot": { + "period": 92375, + "thread": 27 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 245802, + "thread": 15 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 391846, + "thread": 3 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 561750, + "thread": 3 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 748205, + "thread": 7 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 933385, + "thread": 24 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 985280, + "thread": 27 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 1284846, + "thread": 0 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 1449206, + "thread": 6 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 1517660, + "thread": 30 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 1790222, + "thread": 31 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 1959521, + "thread": 9 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2007115, + "thread": 9 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2292716, + "thread": 1 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2295495, + "thread": 15 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2510226, + "thread": 22 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2725273, + "thread": 3 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 2849028, + "thread": 1 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 3074932, + "thread": 20 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 3262773, + "thread": 17 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 3370020, + "thread": 9 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 3465039, + "thread": 7 + } + }, + { + "amount": "219.900684927", + "slot": { + "period": 3675966, + "thread": 19 + } + }, + { + "amount": "219.900684926", + "slot": { + "period": 3866726, + "thread": 17 + } + } + ], + "AU12sNYX7CRfN2dPfYgqLvjdGSQJunFBR6Lc4XjrXPVqwpjerv25s": [ + { + "amount": "81.346235311", + "slot": { + "period": 102834, + "thread": 6 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 172272, + "thread": 10 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 333219, + "thread": 6 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 512310, + "thread": 26 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 812907, + "thread": 12 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 901733, + "thread": 30 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1009545, + "thread": 25 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1220723, + "thread": 25 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1330711, + "thread": 2 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1542755, + "thread": 6 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1796680, + "thread": 5 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 1838858, + "thread": 17 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2088508, + "thread": 10 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2152936, + "thread": 7 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2379247, + "thread": 17 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2577659, + "thread": 23 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2679482, + "thread": 22 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 2836566, + "thread": 15 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 3067844, + "thread": 18 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 3231606, + "thread": 26 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 3400965, + "thread": 7 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 3566386, + "thread": 27 + } + }, + { + "amount": "81.346235311", + "slot": { + "period": 3686666, + "thread": 23 + } + }, + { + "amount": "81.346235302", + "slot": { + "period": 3853293, + "thread": 29 + } + } + ], + "AU12sQJcPqxQ1LSzoCPxdSR2HABqFMbp6BsAP8jm2trWH3WPERrB": [ + { + "amount": "264.886820802", + "slot": { + "period": 72731, + "thread": 29 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 250937, + "thread": 19 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 412884, + "thread": 7 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 544595, + "thread": 30 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 656263, + "thread": 9 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 944095, + "thread": 5 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1012582, + "thread": 15 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1164053, + "thread": 4 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1458674, + "thread": 16 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1585140, + "thread": 7 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1711747, + "thread": 22 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 1883843, + "thread": 14 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2084121, + "thread": 25 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2210300, + "thread": 5 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2390299, + "thread": 23 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2616158, + "thread": 27 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2718452, + "thread": 29 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 2857063, + "thread": 26 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 3095215, + "thread": 8 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 3230457, + "thread": 13 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 3389033, + "thread": 27 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 3591857, + "thread": 21 + } + }, + { + "amount": "264.886820802", + "slot": { + "period": 3715027, + "thread": 16 + } + }, + { + "amount": "264.886820801", + "slot": { + "period": 3930163, + "thread": 19 + } + } + ], + "AU12sRRnwo9Fs9hLeTTW6kdyZSGJxeBkBdJS4NC7UtmRAaFxqEWqn": [ + { + "amount": "529.110773001", + "slot": { + "period": 117552, + "thread": 28 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 320198, + "thread": 1 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 393628, + "thread": 23 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 640454, + "thread": 3 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 746711, + "thread": 10 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 887299, + "thread": 28 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1113301, + "thread": 7 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1292968, + "thread": 31 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1336521, + "thread": 16 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1586720, + "thread": 29 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1758379, + "thread": 3 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1866321, + "thread": 17 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 1980651, + "thread": 22 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 2232769, + "thread": 22 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 2323397, + "thread": 23 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 2584034, + "thread": 27 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 2645193, + "thread": 7 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 2945102, + "thread": 0 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 3007306, + "thread": 2 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 3247896, + "thread": 25 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 3314691, + "thread": 3 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 3504385, + "thread": 11 + } + }, + { + "amount": "529.110773001", + "slot": { + "period": 3736205, + "thread": 10 + } + }, + { + "amount": "529.110773012", + "slot": { + "period": 3930303, + "thread": 29 + } + } + ], + "AU12sS48KHPe4pPzMVXoVwyjKagwMp5SvSRyGTQCHdnacBDxZsfQc": [ + { + "amount": "268.474420886", + "slot": { + "period": 121291, + "thread": 17 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 201737, + "thread": 20 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 351021, + "thread": 10 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 529005, + "thread": 12 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 766943, + "thread": 18 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 978809, + "thread": 12 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1078944, + "thread": 1 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1238498, + "thread": 10 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1428977, + "thread": 18 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1557159, + "thread": 23 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1792517, + "thread": 7 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 1864485, + "thread": 20 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2119925, + "thread": 6 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2287750, + "thread": 23 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2298971, + "thread": 15 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2591285, + "thread": 26 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2682018, + "thread": 28 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2887918, + "thread": 0 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 2990495, + "thread": 31 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 3187726, + "thread": 16 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 3415741, + "thread": 26 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 3600867, + "thread": 17 + } + }, + { + "amount": "268.474420886", + "slot": { + "period": 3629349, + "thread": 5 + } + }, + { + "amount": "268.474420889", + "slot": { + "period": 3894046, + "thread": 10 + } + } + ], + "AU12sSV1wktGkHddvfV3iQV2qbaLcbLiC1ga4Z1mTsH2QYq1KwEsJ": [ + { + "amount": "98.593463827", + "slot": { + "period": 144121, + "thread": 4 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 255393, + "thread": 24 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 394493, + "thread": 17 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 573485, + "thread": 8 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 712112, + "thread": 6 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 896863, + "thread": 0 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1042622, + "thread": 21 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1166609, + "thread": 26 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1452007, + "thread": 14 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1584435, + "thread": 15 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1685822, + "thread": 7 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 1853696, + "thread": 13 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2031540, + "thread": 25 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2244619, + "thread": 16 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2326128, + "thread": 2 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2616702, + "thread": 6 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2770694, + "thread": 24 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 2806770, + "thread": 23 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 3005965, + "thread": 0 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 3187901, + "thread": 3 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 3387962, + "thread": 26 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 3572784, + "thread": 17 + } + }, + { + "amount": "98.593463827", + "slot": { + "period": 3754291, + "thread": 17 + } + }, + { + "amount": "98.593463824", + "slot": { + "period": 3942141, + "thread": 26 + } + } + ], + "AU12sT7cJLQ8piFeL441tLXUG27pJcGV3PkEKEbrQat6xPePXJS2m": [ + { + "amount": "149.000908047", + "slot": { + "period": 153670, + "thread": 13 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 277740, + "thread": 29 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 340937, + "thread": 22 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 633294, + "thread": 5 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 730046, + "thread": 30 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 981549, + "thread": 23 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1131995, + "thread": 23 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1217597, + "thread": 17 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1371372, + "thread": 17 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1616869, + "thread": 2 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1667720, + "thread": 9 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1876882, + "thread": 24 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 1987767, + "thread": 23 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2231874, + "thread": 3 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2338048, + "thread": 5 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2465475, + "thread": 11 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2674112, + "thread": 24 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2827915, + "thread": 7 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 2960466, + "thread": 2 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 3147847, + "thread": 6 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 3298748, + "thread": 5 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 3605948, + "thread": 8 + } + }, + { + "amount": "149.000908047", + "slot": { + "period": 3649914, + "thread": 25 + } + }, + { + "amount": "149.000908054", + "slot": { + "period": 3803122, + "thread": 26 + } + } + ], + "AU12sUsMRxRVExjpGgkrevuJpq71r9RWhXSXchCLuuwUn4Ye7rVKp": [ + { + "amount": "157.790921748", + "slot": { + "period": 133009, + "thread": 14 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 296661, + "thread": 30 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 485004, + "thread": 7 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 569938, + "thread": 3 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 817409, + "thread": 15 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 855196, + "thread": 27 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1142048, + "thread": 17 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1302826, + "thread": 25 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1425904, + "thread": 26 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1488337, + "thread": 15 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1716560, + "thread": 18 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 1883295, + "thread": 5 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2103587, + "thread": 13 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2198991, + "thread": 12 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2329805, + "thread": 11 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2497095, + "thread": 28 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2656575, + "thread": 0 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 2830282, + "thread": 4 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 3016479, + "thread": 5 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 3226394, + "thread": 10 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 3439036, + "thread": 0 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 3501199, + "thread": 18 + } + }, + { + "amount": "157.790921748", + "slot": { + "period": 3690365, + "thread": 5 + } + }, + { + "amount": "157.790921754", + "slot": { + "period": 3873715, + "thread": 16 + } + } + ], + "AU12sV7apgLnbqnaVZoFidwhT9TnMkgiKFhxX2HSGeeHxm6cUtkZX": [ + { + "amount": "342.141994381", + "slot": { + "period": 145425, + "thread": 2 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 281580, + "thread": 1 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 416883, + "thread": 20 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 592941, + "thread": 13 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 710677, + "thread": 11 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 860436, + "thread": 31 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1052167, + "thread": 19 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1285458, + "thread": 8 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1426199, + "thread": 15 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1616465, + "thread": 10 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1701403, + "thread": 31 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1967988, + "thread": 8 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 1986425, + "thread": 16 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2187297, + "thread": 21 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2338948, + "thread": 23 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2545658, + "thread": 28 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2666193, + "thread": 18 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2804719, + "thread": 18 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 2967253, + "thread": 0 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 3130191, + "thread": 16 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 3434197, + "thread": 26 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 3542143, + "thread": 6 + } + }, + { + "amount": "342.141994381", + "slot": { + "period": 3635759, + "thread": 13 + } + }, + { + "amount": "342.141994390", + "slot": { + "period": 3840955, + "thread": 17 + } + } + ], + "AU12sVTDLKPCd7U8ksjjeu6Ge2nA9DWzJtDhx3x3ztcRwziMbSKJH": [ + { + "amount": "339.002733711", + "slot": { + "period": 133720, + "thread": 10 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 254950, + "thread": 25 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 446709, + "thread": 20 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 547961, + "thread": 29 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 753883, + "thread": 1 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 957887, + "thread": 7 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 983199, + "thread": 25 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 1315391, + "thread": 25 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 1445420, + "thread": 1 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 1607379, + "thread": 11 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 1691263, + "thread": 28 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 1809259, + "thread": 14 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2108169, + "thread": 16 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2152298, + "thread": 24 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2356773, + "thread": 18 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2543979, + "thread": 28 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2787386, + "thread": 1 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 2859400, + "thread": 26 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 3025813, + "thread": 21 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 3170530, + "thread": 14 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 3407250, + "thread": 1 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 3521728, + "thread": 25 + } + }, + { + "amount": "339.002733711", + "slot": { + "period": 3733292, + "thread": 31 + } + }, + { + "amount": "339.002733713", + "slot": { + "period": 3941240, + "thread": 4 + } + } + ], + "AU12sVcfVfVqJhadBUEQaoMvszFWmhY1ztiopTQw4W7pV2siwr3eU": [ + { + "amount": "247.979674015", + "slot": { + "period": 75601, + "thread": 10 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 226556, + "thread": 11 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 332896, + "thread": 29 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 610517, + "thread": 0 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 773482, + "thread": 14 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 882314, + "thread": 17 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1141884, + "thread": 1 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1197106, + "thread": 26 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1362633, + "thread": 12 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1571029, + "thread": 19 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1701631, + "thread": 29 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 1911646, + "thread": 25 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2036238, + "thread": 0 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2156595, + "thread": 6 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2326759, + "thread": 18 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2522520, + "thread": 7 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2697049, + "thread": 17 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 2803045, + "thread": 12 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 3114422, + "thread": 25 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 3276581, + "thread": 27 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 3292285, + "thread": 7 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 3505030, + "thread": 28 + } + }, + { + "amount": "247.979674015", + "slot": { + "period": 3633829, + "thread": 5 + } + }, + { + "amount": "247.979674010", + "slot": { + "period": 3834375, + "thread": 27 + } + } + ], + "AU12sXspuTqpJdBnRu1mVnizx7KAJzXQvgVE7xKHzyeDTeZVmpLWQ": [ + { + "amount": "268.147611385", + "slot": { + "period": 67407, + "thread": 19 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 175146, + "thread": 27 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 347402, + "thread": 25 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 625134, + "thread": 17 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 668069, + "thread": 1 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 944658, + "thread": 17 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1146291, + "thread": 6 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1273211, + "thread": 9 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1351144, + "thread": 19 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1620488, + "thread": 10 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1768305, + "thread": 21 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 1946913, + "thread": 11 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2063491, + "thread": 12 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2146303, + "thread": 10 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2416630, + "thread": 30 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2479677, + "thread": 6 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2669230, + "thread": 10 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 2910102, + "thread": 16 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 3084531, + "thread": 31 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 3200669, + "thread": 5 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 3431148, + "thread": 21 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 3520934, + "thread": 9 + } + }, + { + "amount": "268.147611385", + "slot": { + "period": 3634861, + "thread": 24 + } + }, + { + "amount": "268.147611377", + "slot": { + "period": 3785136, + "thread": 10 + } + } + ], + "AU12sYGtAfuWvTi28MbEJoVtYpdP6vQ6mEnHtqsWNBZb4tJZ3EeUV": [ + { + "amount": "250.423922695", + "slot": { + "period": 161789, + "thread": 9 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 278001, + "thread": 22 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 464897, + "thread": 28 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 596242, + "thread": 3 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 749276, + "thread": 20 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 919147, + "thread": 13 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1138573, + "thread": 27 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1196039, + "thread": 31 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1424291, + "thread": 11 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1527906, + "thread": 3 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1663711, + "thread": 16 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1818243, + "thread": 6 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 1977583, + "thread": 19 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2272117, + "thread": 18 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2439649, + "thread": 15 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2603453, + "thread": 13 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2631088, + "thread": 5 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2936839, + "thread": 17 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 2965191, + "thread": 21 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 3155783, + "thread": 1 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 3348191, + "thread": 2 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 3575097, + "thread": 3 + } + }, + { + "amount": "250.423922695", + "slot": { + "period": 3642341, + "thread": 26 + } + }, + { + "amount": "250.423922687", + "slot": { + "period": 3928561, + "thread": 23 + } + } + ], + "AU12sZ8GnQHRmSXTo69vzP8oywZQX7tNJxsvViQSpyC7jqeD6SSrU": [ + { + "amount": "121.203172649", + "slot": { + "period": 88350, + "thread": 16 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 217487, + "thread": 21 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 457062, + "thread": 23 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 598910, + "thread": 31 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 785616, + "thread": 20 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 901242, + "thread": 13 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1105943, + "thread": 5 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1191812, + "thread": 11 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1413031, + "thread": 12 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1631578, + "thread": 18 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1678514, + "thread": 5 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 1873778, + "thread": 9 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2089975, + "thread": 2 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2233649, + "thread": 4 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2342530, + "thread": 22 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2499632, + "thread": 16 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2625579, + "thread": 18 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 2823620, + "thread": 17 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 3094389, + "thread": 26 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 3200415, + "thread": 31 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 3415852, + "thread": 20 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 3501473, + "thread": 8 + } + }, + { + "amount": "121.203172649", + "slot": { + "period": 3661218, + "thread": 8 + } + }, + { + "amount": "121.203172648", + "slot": { + "period": 3869463, + "thread": 3 + } + } + ], + "AU12sZYtSocWQwm5wprTe1FLQGSm3d3EDheH463iKVdptJiVw1nqQ": [ + { + "amount": "343.001305682", + "slot": { + "period": 36277, + "thread": 10 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 196954, + "thread": 5 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 434806, + "thread": 25 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 637950, + "thread": 19 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 812023, + "thread": 1 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 821569, + "thread": 24 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1104676, + "thread": 14 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1198281, + "thread": 2 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1476597, + "thread": 7 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1565870, + "thread": 6 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1767824, + "thread": 31 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 1837504, + "thread": 15 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2027207, + "thread": 0 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2238451, + "thread": 13 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2311891, + "thread": 1 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2591912, + "thread": 8 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2780634, + "thread": 11 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2929256, + "thread": 20 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 2984449, + "thread": 4 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 3188623, + "thread": 19 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 3322982, + "thread": 20 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 3517788, + "thread": 20 + } + }, + { + "amount": "343.001305682", + "slot": { + "period": 3773304, + "thread": 7 + } + }, + { + "amount": "343.001305681", + "slot": { + "period": 3946714, + "thread": 0 + } + } + ], + "AU12saffB2J96S6e5P9J3Q4Xo5hVhtz1cMJkNHP9S27KZoYYPepED": [ + { + "amount": "159.462477963", + "slot": { + "period": 46113, + "thread": 30 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 319435, + "thread": 16 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 369797, + "thread": 17 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 512705, + "thread": 30 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 763402, + "thread": 13 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 852755, + "thread": 0 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1086196, + "thread": 9 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1258155, + "thread": 12 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1365702, + "thread": 8 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1611987, + "thread": 6 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1803014, + "thread": 12 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 1971212, + "thread": 11 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2138147, + "thread": 14 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2279086, + "thread": 11 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2321584, + "thread": 19 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2472210, + "thread": 13 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2665267, + "thread": 10 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 2847203, + "thread": 29 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 3058346, + "thread": 19 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 3287354, + "thread": 24 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 3423444, + "thread": 8 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 3512789, + "thread": 24 + } + }, + { + "amount": "159.462477963", + "slot": { + "period": 3641541, + "thread": 8 + } + }, + { + "amount": "159.462477952", + "slot": { + "period": 3838349, + "thread": 18 + } + } + ], + "AU12sbFtZQeoStPWkfCoAft9YQoGw6oovJp3uwSdJ4RHTyAK3S6DA": [ + { + "amount": "236.599981652", + "slot": { + "period": 134258, + "thread": 12 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 218898, + "thread": 0 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 332840, + "thread": 9 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 555292, + "thread": 30 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 746386, + "thread": 23 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 902368, + "thread": 12 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1070178, + "thread": 26 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1299746, + "thread": 10 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1355849, + "thread": 11 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1631520, + "thread": 21 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1677705, + "thread": 1 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 1857289, + "thread": 3 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2088293, + "thread": 21 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2168135, + "thread": 4 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2431151, + "thread": 12 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2482432, + "thread": 3 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2729711, + "thread": 10 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2903921, + "thread": 1 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 2989695, + "thread": 17 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 3222572, + "thread": 14 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 3446203, + "thread": 11 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 3522375, + "thread": 21 + } + }, + { + "amount": "236.599981652", + "slot": { + "period": 3744793, + "thread": 18 + } + }, + { + "amount": "236.599981654", + "slot": { + "period": 3855018, + "thread": 10 + } + } + ], + "AU12sbvo15A8iHCrDxJG67LQmEz9yMpagEGtjDHj1Vkhkkki8soUd": [ + { + "amount": "75.382499157", + "slot": { + "period": 95311, + "thread": 3 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 261025, + "thread": 13 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 459911, + "thread": 28 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 552322, + "thread": 16 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 727537, + "thread": 17 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 874749, + "thread": 26 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1031940, + "thread": 30 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1296464, + "thread": 28 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1380158, + "thread": 14 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1632031, + "thread": 12 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1787760, + "thread": 20 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 1942106, + "thread": 13 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2138861, + "thread": 10 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2195555, + "thread": 30 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2444825, + "thread": 28 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2492890, + "thread": 19 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2769183, + "thread": 31 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 2939073, + "thread": 8 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 3055494, + "thread": 7 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 3233220, + "thread": 26 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 3360158, + "thread": 27 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 3474419, + "thread": 28 + } + }, + { + "amount": "75.382499157", + "slot": { + "period": 3743975, + "thread": 9 + } + }, + { + "amount": "75.382499161", + "slot": { + "period": 3813772, + "thread": 26 + } + } + ], + "AU12sdWcEGcveVHJoF9p99eKf9Ef2v6XgPoLssvdz459nxGQWEhBw": [ + { + "amount": "68.837226274", + "slot": { + "period": 110061, + "thread": 18 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 190502, + "thread": 4 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 366053, + "thread": 16 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 552998, + "thread": 17 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 688592, + "thread": 6 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 969903, + "thread": 31 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 989530, + "thread": 30 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 1284017, + "thread": 8 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 1381286, + "thread": 12 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 1551012, + "thread": 7 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 1670323, + "thread": 31 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 1895123, + "thread": 2 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2087788, + "thread": 30 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2146764, + "thread": 17 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2389555, + "thread": 16 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2549538, + "thread": 3 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2662996, + "thread": 20 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 2799246, + "thread": 20 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 3008935, + "thread": 14 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 3163255, + "thread": 6 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 3341495, + "thread": 27 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 3466329, + "thread": 18 + } + }, + { + "amount": "68.837226274", + "slot": { + "period": 3764267, + "thread": 29 + } + }, + { + "amount": "68.837226281", + "slot": { + "period": 3869831, + "thread": 4 + } + } + ], + "AU12se3h9G6xvjf6sdibzRtnU657hYLH2RQ9nhZNr3KADAL5jukvE": [ + { + "amount": "51.845485328", + "slot": { + "period": 121768, + "thread": 2 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 200050, + "thread": 7 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 437182, + "thread": 26 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 526408, + "thread": 8 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 792792, + "thread": 21 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 946688, + "thread": 30 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 994694, + "thread": 13 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 1216441, + "thread": 2 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 1423848, + "thread": 2 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 1485043, + "thread": 14 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 1789903, + "thread": 15 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 1833490, + "thread": 24 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2043560, + "thread": 4 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2159645, + "thread": 31 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2402119, + "thread": 31 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2614012, + "thread": 29 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2693486, + "thread": 14 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2928857, + "thread": 18 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 2992041, + "thread": 8 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 3226787, + "thread": 27 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 3346920, + "thread": 11 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 3501782, + "thread": 7 + } + }, + { + "amount": "51.845485328", + "slot": { + "period": 3624738, + "thread": 13 + } + }, + { + "amount": "51.845485326", + "slot": { + "period": 3903710, + "thread": 19 + } + } + ], + "AU12seayUf8kF2eW2uGngE1HeRUnztb1f5utKCecyE92W1MN21PcU": [ + { + "amount": "138.267886691", + "slot": { + "period": 61685, + "thread": 23 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 250914, + "thread": 31 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 485873, + "thread": 25 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 636788, + "thread": 31 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 735845, + "thread": 31 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 858363, + "thread": 25 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1014196, + "thread": 11 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1217643, + "thread": 20 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1391669, + "thread": 2 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1570401, + "thread": 6 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1764121, + "thread": 18 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1860504, + "thread": 8 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 1978043, + "thread": 31 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 2255990, + "thread": 21 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 2379805, + "thread": 12 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 2561597, + "thread": 30 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 2775850, + "thread": 18 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 2905691, + "thread": 29 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 3085914, + "thread": 14 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 3232686, + "thread": 30 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 3313792, + "thread": 8 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 3519454, + "thread": 17 + } + }, + { + "amount": "138.267886691", + "slot": { + "period": 3714123, + "thread": 25 + } + }, + { + "amount": "138.267886698", + "slot": { + "period": 3849805, + "thread": 0 + } + } + ], + "AU12sf2aKGbVo4Y8toLSUym2Ctsn396KFT8KPUdmSaYc1kMQ2MgGP": [ + { + "amount": "69.850730999", + "slot": { + "period": 28980, + "thread": 7 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 174036, + "thread": 0 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 367277, + "thread": 7 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 538525, + "thread": 19 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 765706, + "thread": 20 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 883923, + "thread": 20 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1019012, + "thread": 29 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1177935, + "thread": 19 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1371503, + "thread": 3 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1484229, + "thread": 4 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1743915, + "thread": 2 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 1833520, + "thread": 19 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2124046, + "thread": 20 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2261648, + "thread": 7 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2402258, + "thread": 28 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2622395, + "thread": 2 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2782341, + "thread": 26 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 2913578, + "thread": 10 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 3014499, + "thread": 4 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 3275612, + "thread": 2 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 3320797, + "thread": 14 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 3573376, + "thread": 22 + } + }, + { + "amount": "69.850730999", + "slot": { + "period": 3733162, + "thread": 8 + } + }, + { + "amount": "69.850730990", + "slot": { + "period": 3932129, + "thread": 14 + } + } + ], + "AU12sf8u7mHcJZwE43s64qaaQL51dD9j882HZ5ckELj2ijvtJ123y": [ + { + "amount": "368.853551144", + "slot": { + "period": 85118, + "thread": 17 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 264812, + "thread": 1 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 474685, + "thread": 26 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 598191, + "thread": 19 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 742325, + "thread": 18 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 878071, + "thread": 4 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1086089, + "thread": 17 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1305465, + "thread": 8 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1405105, + "thread": 0 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1608109, + "thread": 9 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1743724, + "thread": 0 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 1905901, + "thread": 25 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2073093, + "thread": 28 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2145003, + "thread": 16 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2365330, + "thread": 16 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2494264, + "thread": 6 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2708837, + "thread": 12 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 2857638, + "thread": 6 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 3097605, + "thread": 25 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 3245848, + "thread": 19 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 3401366, + "thread": 12 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 3506675, + "thread": 8 + } + }, + { + "amount": "368.853551144", + "slot": { + "period": 3726989, + "thread": 2 + } + }, + { + "amount": "368.853551151", + "slot": { + "period": 3888647, + "thread": 21 + } + } + ], + "AU12sfCC5o2S16tsMVcJiMhMgEdUQRdypWySjYyK7Pp534hgXxBcG": [ + { + "amount": "231.486097690", + "slot": { + "period": 98111, + "thread": 8 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 263749, + "thread": 23 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 332780, + "thread": 15 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 631797, + "thread": 9 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 660086, + "thread": 23 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 875637, + "thread": 7 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1012516, + "thread": 29 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1306239, + "thread": 5 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1325860, + "thread": 12 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1591999, + "thread": 20 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1806411, + "thread": 7 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 1826795, + "thread": 6 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2049975, + "thread": 5 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2173269, + "thread": 1 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2392946, + "thread": 0 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2527644, + "thread": 11 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2655759, + "thread": 19 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 2918444, + "thread": 12 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 3106877, + "thread": 4 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 3128653, + "thread": 14 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 3305697, + "thread": 1 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 3525143, + "thread": 27 + } + }, + { + "amount": "231.486097690", + "slot": { + "period": 3767937, + "thread": 21 + } + }, + { + "amount": "231.486097689", + "slot": { + "period": 3895965, + "thread": 16 + } + } + ], + "AU12sh5qjokDj3UCnCrKwLFnTHEavqVbhQdKdSL9LUnNYWsbvFtCQ": [ + { + "amount": "555.761918711", + "slot": { + "period": 66366, + "thread": 1 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 276350, + "thread": 12 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 333671, + "thread": 22 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 614429, + "thread": 7 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 816731, + "thread": 13 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 835650, + "thread": 22 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1147851, + "thread": 21 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1206931, + "thread": 13 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1381263, + "thread": 15 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1500811, + "thread": 28 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1760614, + "thread": 15 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 1866000, + "thread": 25 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2130965, + "thread": 18 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2161830, + "thread": 29 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2333009, + "thread": 0 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2537454, + "thread": 22 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2688147, + "thread": 27 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2799630, + "thread": 8 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 2984709, + "thread": 8 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 3184989, + "thread": 2 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 3436783, + "thread": 22 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 3492708, + "thread": 12 + } + }, + { + "amount": "555.761918711", + "slot": { + "period": 3647795, + "thread": 24 + } + }, + { + "amount": "555.761918708", + "slot": { + "period": 3833983, + "thread": 17 + } + } + ], + "AU12skPj41DUC6joQrEQ2eJryGBPH6J3KG2m9miWM6wmjiwTpyfW": [ + { + "amount": "133.186922937", + "slot": { + "period": 156793, + "thread": 7 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 204148, + "thread": 15 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 467941, + "thread": 10 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 566822, + "thread": 29 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 805151, + "thread": 18 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 881563, + "thread": 31 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1067328, + "thread": 5 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1256055, + "thread": 7 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1439304, + "thread": 6 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1641894, + "thread": 27 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1800216, + "thread": 23 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 1866838, + "thread": 17 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2078515, + "thread": 5 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2212047, + "thread": 16 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2381604, + "thread": 9 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2464275, + "thread": 15 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2785611, + "thread": 7 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2939652, + "thread": 22 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 2995190, + "thread": 20 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 3267195, + "thread": 4 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 3408665, + "thread": 0 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 3502315, + "thread": 2 + } + }, + { + "amount": "133.186922937", + "slot": { + "period": 3740279, + "thread": 3 + } + }, + { + "amount": "133.186922946", + "slot": { + "period": 3940965, + "thread": 24 + } + } + ], + "AU12smJYHx3rbvzpXxqeN3uZCuqViTbi7iNWa82oQwBhXGwcp1jZh": [ + { + "amount": "99831.083333333", + "slot": { + "period": 60609, + "thread": 3 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 316629, + "thread": 17 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 366429, + "thread": 3 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 633471, + "thread": 2 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 707032, + "thread": 14 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 957691, + "thread": 31 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1102625, + "thread": 2 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1307667, + "thread": 12 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1455694, + "thread": 13 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1568823, + "thread": 23 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1733561, + "thread": 19 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 1890726, + "thread": 1 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2063578, + "thread": 22 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2282071, + "thread": 13 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2300054, + "thread": 19 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2560114, + "thread": 5 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2707457, + "thread": 12 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 2901492, + "thread": 2 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 3061549, + "thread": 8 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 3208013, + "thread": 26 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 3382393, + "thread": 17 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 3498033, + "thread": 24 + } + }, + { + "amount": "99831.083333333", + "slot": { + "period": 3635448, + "thread": 12 + } + }, + { + "amount": "99831.083333341", + "slot": { + "period": 3838091, + "thread": 23 + } + } + ], + "AU12smPGArytafuoXKU5wj7zr4ToffBqhoY7Ne4swnRtUEnF5Zoqy": [ + { + "amount": "134.867264617", + "slot": { + "period": 132009, + "thread": 17 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 253000, + "thread": 2 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 334163, + "thread": 18 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 647184, + "thread": 11 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 768654, + "thread": 28 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 824170, + "thread": 7 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1091326, + "thread": 3 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1166295, + "thread": 8 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1437638, + "thread": 27 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1577927, + "thread": 27 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1753498, + "thread": 31 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 1942615, + "thread": 29 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2033269, + "thread": 7 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2148796, + "thread": 30 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2362890, + "thread": 28 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2521263, + "thread": 5 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2789510, + "thread": 26 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 2896772, + "thread": 4 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 3088586, + "thread": 23 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 3155949, + "thread": 29 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 3357526, + "thread": 11 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 3467713, + "thread": 1 + } + }, + { + "amount": "134.867264617", + "slot": { + "period": 3760635, + "thread": 4 + } + }, + { + "amount": "134.867264622", + "slot": { + "period": 3863143, + "thread": 3 + } + } + ], + "AU12smv2fJdvzjBmyPaHo23snu2ZWbrarKjSNHhiMMZgotX1nvXoF": [ + { + "amount": "82.699524184", + "slot": { + "period": 87692, + "thread": 14 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 302620, + "thread": 7 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 382256, + "thread": 1 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 630408, + "thread": 16 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 754963, + "thread": 6 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 849492, + "thread": 21 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1091328, + "thread": 14 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1194044, + "thread": 24 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1368903, + "thread": 18 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1644806, + "thread": 6 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1647614, + "thread": 12 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 1825499, + "thread": 19 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2090121, + "thread": 20 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2279428, + "thread": 31 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2300263, + "thread": 29 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2615005, + "thread": 13 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2783722, + "thread": 31 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 2931095, + "thread": 21 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 3096912, + "thread": 12 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 3184239, + "thread": 29 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 3365281, + "thread": 17 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 3585079, + "thread": 20 + } + }, + { + "amount": "82.699524184", + "slot": { + "period": 3750303, + "thread": 28 + } + }, + { + "amount": "82.699524195", + "slot": { + "period": 3879622, + "thread": 19 + } + } + ], + "AU12snrxXTvv8QtVrbPQvFXNvadsCv8LLV7cUBaPf74iRZt8QmTNm": [ + { + "amount": "251.779597163", + "slot": { + "period": 99666, + "thread": 6 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 302778, + "thread": 11 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 446785, + "thread": 30 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 647918, + "thread": 21 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 731917, + "thread": 30 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 913221, + "thread": 16 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1073540, + "thread": 14 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1226275, + "thread": 21 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1405847, + "thread": 12 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1573669, + "thread": 22 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1774005, + "thread": 8 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 1896261, + "thread": 15 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2087195, + "thread": 21 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2291641, + "thread": 11 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2461782, + "thread": 3 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2608040, + "thread": 0 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2687435, + "thread": 6 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 2831816, + "thread": 23 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 3055569, + "thread": 0 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 3231116, + "thread": 27 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 3450014, + "thread": 1 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 3575518, + "thread": 19 + } + }, + { + "amount": "251.779597163", + "slot": { + "period": 3669519, + "thread": 19 + } + }, + { + "amount": "251.779597167", + "slot": { + "period": 3946438, + "thread": 11 + } + } + ], + "AU12so1KbYWfxYP9f28DzYudt6oCjYi7U9BpRE8RgKW83yHUPnoaV": [ + { + "amount": "276.321615028", + "slot": { + "period": 128882, + "thread": 18 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 264931, + "thread": 18 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 432376, + "thread": 31 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 610513, + "thread": 28 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 740404, + "thread": 13 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 872514, + "thread": 23 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 988525, + "thread": 27 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 1196183, + "thread": 25 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 1475252, + "thread": 9 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 1614651, + "thread": 25 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 1691031, + "thread": 6 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 1959654, + "thread": 29 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2013965, + "thread": 6 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2293761, + "thread": 1 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2399753, + "thread": 9 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2494299, + "thread": 25 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2674582, + "thread": 26 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 2829461, + "thread": 2 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 3110298, + "thread": 20 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 3153750, + "thread": 26 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 3421252, + "thread": 24 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 3454700, + "thread": 23 + } + }, + { + "amount": "276.321615028", + "slot": { + "period": 3707721, + "thread": 17 + } + }, + { + "amount": "276.321615031", + "slot": { + "period": 3922802, + "thread": 2 + } + } + ], + "AU12soH7oR9XVh8nHw8r7jgdGiJsdR7Q9bpXZmFhPaWSfSmA8ehTR": [ + { + "amount": "307.742208846", + "slot": { + "period": 72594, + "thread": 18 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 287415, + "thread": 3 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 387728, + "thread": 8 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 646519, + "thread": 17 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 795460, + "thread": 10 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 949182, + "thread": 9 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1123926, + "thread": 12 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1157310, + "thread": 16 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1338020, + "thread": 20 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1620923, + "thread": 15 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1698907, + "thread": 5 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 1929577, + "thread": 13 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2051518, + "thread": 19 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2190144, + "thread": 17 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2363129, + "thread": 3 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2485574, + "thread": 5 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2748339, + "thread": 5 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2876648, + "thread": 19 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 2962969, + "thread": 26 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 3151114, + "thread": 29 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 3373760, + "thread": 1 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 3528116, + "thread": 24 + } + }, + { + "amount": "307.742208846", + "slot": { + "period": 3773645, + "thread": 24 + } + }, + { + "amount": "307.742208836", + "slot": { + "period": 3817882, + "thread": 1 + } + } + ], + "AU12sogLnjLfiTMNWXQ88QtCEboXn9E3yKMiQhDAWa7eXnwSFdcEh": [ + { + "amount": "146.368280243", + "slot": { + "period": 161923, + "thread": 22 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 308840, + "thread": 7 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 485141, + "thread": 18 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 549769, + "thread": 0 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 749900, + "thread": 25 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 830995, + "thread": 7 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1069378, + "thread": 9 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1151812, + "thread": 29 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1330690, + "thread": 18 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1501313, + "thread": 27 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1680274, + "thread": 0 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 1859671, + "thread": 22 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2037055, + "thread": 18 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2246773, + "thread": 3 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2423083, + "thread": 3 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2517906, + "thread": 5 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2752685, + "thread": 23 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 2904787, + "thread": 17 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 3023704, + "thread": 11 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 3219842, + "thread": 8 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 3376010, + "thread": 7 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 3508934, + "thread": 4 + } + }, + { + "amount": "146.368280243", + "slot": { + "period": 3752855, + "thread": 12 + } + }, + { + "amount": "146.368280234", + "slot": { + "period": 3849549, + "thread": 13 + } + } + ], + "AU12soks7pYV3X34HdAzpWXM6TgbQ8Pnwedu347amViZJHadkPgkR": [ + { + "amount": "110.825915270", + "slot": { + "period": 26274, + "thread": 23 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 251817, + "thread": 9 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 460903, + "thread": 10 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 617442, + "thread": 24 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 659460, + "thread": 5 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 873196, + "thread": 22 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 993274, + "thread": 11 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1202383, + "thread": 5 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1426653, + "thread": 9 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1550723, + "thread": 1 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1782832, + "thread": 12 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1835411, + "thread": 18 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 1993244, + "thread": 11 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2174275, + "thread": 22 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2397526, + "thread": 14 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2530050, + "thread": 3 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2695517, + "thread": 9 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2853456, + "thread": 28 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 2998231, + "thread": 8 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 3199499, + "thread": 25 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 3391769, + "thread": 25 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 3529542, + "thread": 8 + } + }, + { + "amount": "110.825915270", + "slot": { + "period": 3703000, + "thread": 20 + } + }, + { + "amount": "110.825915281", + "slot": { + "period": 3906374, + "thread": 12 + } + } + ], + "AU12soo6mWH8axTsHzKwg7mqH6Ae5YoY8AtxFnLfG2Vbsi8Z4byBA": [ + { + "amount": "518.881715058", + "slot": { + "period": 93881, + "thread": 13 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 176021, + "thread": 11 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 338155, + "thread": 27 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 509271, + "thread": 18 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 766084, + "thread": 1 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 971209, + "thread": 2 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1146105, + "thread": 19 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1274539, + "thread": 7 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1471130, + "thread": 30 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1625222, + "thread": 27 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1706636, + "thread": 3 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 1836519, + "thread": 18 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2058378, + "thread": 3 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2217782, + "thread": 15 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2397252, + "thread": 30 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2557237, + "thread": 9 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2672288, + "thread": 13 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2938983, + "thread": 27 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 2983630, + "thread": 15 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 3245255, + "thread": 25 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 3444269, + "thread": 23 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 3566059, + "thread": 11 + } + }, + { + "amount": "518.881715058", + "slot": { + "period": 3672487, + "thread": 23 + } + }, + { + "amount": "518.881715055", + "slot": { + "period": 3938306, + "thread": 17 + } + } + ], + "AU12spFNqbZns5AAze1Atb1cQNcEGEKdyjnJnwbYSZytpQKUwpkMR": [ + { + "amount": "137.003215797", + "slot": { + "period": 77363, + "thread": 19 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 303201, + "thread": 31 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 328754, + "thread": 28 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 504143, + "thread": 7 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 656310, + "thread": 25 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 935933, + "thread": 22 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1076313, + "thread": 19 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1254050, + "thread": 3 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1392521, + "thread": 3 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1625070, + "thread": 19 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1711587, + "thread": 10 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 1853579, + "thread": 19 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2060592, + "thread": 29 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2246460, + "thread": 4 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2436082, + "thread": 5 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2487701, + "thread": 26 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2643126, + "thread": 2 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 2886475, + "thread": 26 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3043924, + "thread": 15 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3217115, + "thread": 5 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3369117, + "thread": 23 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3519797, + "thread": 12 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3621616, + "thread": 3 + } + }, + { + "amount": "137.003215797", + "slot": { + "period": 3851561, + "thread": 18 + } + } + ], + "AU12spPruPv27bBVSy4f5U2tpzSxRVQS7eqUwYGEijbe3LRKFvR7L": [ + { + "amount": "173.947156350", + "slot": { + "period": 92665, + "thread": 29 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 314589, + "thread": 6 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 408285, + "thread": 2 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 635753, + "thread": 21 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 794413, + "thread": 28 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 856000, + "thread": 11 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1105775, + "thread": 9 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1186478, + "thread": 8 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1318376, + "thread": 4 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1495269, + "thread": 18 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1683782, + "thread": 1 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 1960164, + "thread": 26 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2126602, + "thread": 28 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2210626, + "thread": 28 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2355182, + "thread": 21 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2624268, + "thread": 27 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2685031, + "thread": 24 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2809937, + "thread": 29 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 2997769, + "thread": 25 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 3182685, + "thread": 26 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 3377004, + "thread": 22 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 3467783, + "thread": 8 + } + }, + { + "amount": "173.947156350", + "slot": { + "period": 3734694, + "thread": 18 + } + }, + { + "amount": "173.947156347", + "slot": { + "period": 3897968, + "thread": 26 + } + } + ], + "AU12spu4fGhjQWCTGmSDhnvkCGeXNxqHMh2HNsn52KLiGuDBBTupq": [ + { + "amount": "218.784744449", + "slot": { + "period": 161126, + "thread": 10 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 274622, + "thread": 24 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 457717, + "thread": 9 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 568889, + "thread": 2 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 694839, + "thread": 14 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 834520, + "thread": 4 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1083769, + "thread": 12 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1276630, + "thread": 10 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1478402, + "thread": 15 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1564783, + "thread": 29 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1796291, + "thread": 16 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 1912042, + "thread": 3 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2112061, + "thread": 13 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2163340, + "thread": 10 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2445394, + "thread": 30 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2562975, + "thread": 25 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2775851, + "thread": 4 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 2869760, + "thread": 29 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 3064360, + "thread": 23 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 3269785, + "thread": 2 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 3408481, + "thread": 26 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 3490472, + "thread": 8 + } + }, + { + "amount": "218.784744449", + "slot": { + "period": 3707016, + "thread": 28 + } + }, + { + "amount": "218.784744456", + "slot": { + "period": 3942301, + "thread": 30 + } + } + ], + "AU12srpQiJHgpeGL5gDPS5kCRtJiEEwreziX8KXsbjRYtJAP6E6i6": [ + { + "amount": "84.530988627", + "slot": { + "period": 108199, + "thread": 1 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 297156, + "thread": 16 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 326449, + "thread": 19 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 503113, + "thread": 0 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 698180, + "thread": 20 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 879236, + "thread": 10 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 991311, + "thread": 10 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 1306777, + "thread": 28 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 1322637, + "thread": 4 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 1590460, + "thread": 8 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 1807871, + "thread": 12 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 1850479, + "thread": 24 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2084798, + "thread": 22 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2222835, + "thread": 29 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2397470, + "thread": 28 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2611342, + "thread": 28 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2641770, + "thread": 10 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 2940017, + "thread": 26 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 3023307, + "thread": 11 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 3210832, + "thread": 1 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 3335543, + "thread": 29 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 3498767, + "thread": 23 + } + }, + { + "amount": "84.530988627", + "slot": { + "period": 3751387, + "thread": 4 + } + }, + { + "amount": "84.530988628", + "slot": { + "period": 3887724, + "thread": 23 + } + } + ], + "AU12sruCmxQjMuD2cGuSk8ZHPjxcTCRh4oiKFEAJGdDQmJeQ7warC": [ + { + "amount": "354.366507360", + "slot": { + "period": 79363, + "thread": 10 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 221180, + "thread": 28 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 391943, + "thread": 30 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 526616, + "thread": 21 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 679558, + "thread": 18 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 898511, + "thread": 26 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1123157, + "thread": 26 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1307013, + "thread": 12 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1426661, + "thread": 13 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1534880, + "thread": 5 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1717815, + "thread": 12 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1841779, + "thread": 23 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 1988881, + "thread": 27 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2256413, + "thread": 9 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2374644, + "thread": 1 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2564868, + "thread": 15 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2703510, + "thread": 18 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2852074, + "thread": 5 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 2981497, + "thread": 18 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 3177178, + "thread": 3 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 3323796, + "thread": 13 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 3531605, + "thread": 16 + } + }, + { + "amount": "354.366507360", + "slot": { + "period": 3637724, + "thread": 1 + } + }, + { + "amount": "354.366507368", + "slot": { + "period": 3938978, + "thread": 17 + } + } + ], + "AU12ssqLPwzUF5n9EkPHyrfQsHsPjeF5P4RSs1UxK1MqDhLTWLtyM": [ + { + "amount": "98.436350372", + "slot": { + "period": 145774, + "thread": 7 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 276688, + "thread": 29 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 466084, + "thread": 26 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 633479, + "thread": 23 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 726948, + "thread": 6 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 954206, + "thread": 11 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1059256, + "thread": 14 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1225694, + "thread": 7 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1468914, + "thread": 13 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1619484, + "thread": 17 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1665122, + "thread": 29 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1849418, + "thread": 24 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 1996639, + "thread": 25 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 2227510, + "thread": 27 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 2411630, + "thread": 27 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 2558933, + "thread": 4 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 2634871, + "thread": 23 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 2838156, + "thread": 31 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 3012724, + "thread": 4 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 3284108, + "thread": 5 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 3299869, + "thread": 17 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 3600128, + "thread": 12 + } + }, + { + "amount": "98.436350372", + "slot": { + "period": 3738197, + "thread": 30 + } + }, + { + "amount": "98.436350366", + "slot": { + "period": 3903841, + "thread": 19 + } + } + ], + "AU12stcQEjuXMjPSZ787oKSexxcpyXG9eYbBdDmXrh2tyjhJYxuto": [ + { + "amount": "110.189722706", + "slot": { + "period": 15618, + "thread": 1 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 283166, + "thread": 22 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 336690, + "thread": 6 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 614002, + "thread": 8 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 781142, + "thread": 1 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 877908, + "thread": 11 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1047856, + "thread": 27 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1316230, + "thread": 25 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1364160, + "thread": 26 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1642181, + "thread": 3 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1722803, + "thread": 1 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 1942586, + "thread": 27 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2138504, + "thread": 16 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2199571, + "thread": 17 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2454401, + "thread": 28 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2558821, + "thread": 28 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2666294, + "thread": 30 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 2893013, + "thread": 31 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 3086345, + "thread": 18 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 3194883, + "thread": 24 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 3407771, + "thread": 22 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 3580354, + "thread": 10 + } + }, + { + "amount": "110.189722706", + "slot": { + "period": 3758665, + "thread": 0 + } + }, + { + "amount": "110.189722705", + "slot": { + "period": 3917357, + "thread": 30 + } + } + ], + "AU12stjdcEx6eumgAFeXga6tFyT2vnmq43Xk5A7mbeqxBDvgwcP9w": [ + { + "amount": "241.292241473", + "slot": { + "period": 97730, + "thread": 11 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 268568, + "thread": 26 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 448076, + "thread": 7 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 564465, + "thread": 25 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 780194, + "thread": 25 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 914415, + "thread": 31 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1043766, + "thread": 21 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1176774, + "thread": 9 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1381030, + "thread": 19 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1511300, + "thread": 5 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1743056, + "thread": 7 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 1836073, + "thread": 10 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2093413, + "thread": 15 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2205905, + "thread": 6 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2393027, + "thread": 9 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2481839, + "thread": 4 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2635070, + "thread": 21 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 2808978, + "thread": 6 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 3044054, + "thread": 0 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 3259992, + "thread": 20 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 3384586, + "thread": 1 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 3483560, + "thread": 23 + } + }, + { + "amount": "241.292241473", + "slot": { + "period": 3660014, + "thread": 30 + } + }, + { + "amount": "241.292241463", + "slot": { + "period": 3810358, + "thread": 5 + } + } + ], + "AU12su7NURb8hqrwL2Jw86yCsHJyXruCVMWU8iqRXGHqVoo3u4keZ": [ + { + "amount": "257.992608483", + "slot": { + "period": 62052, + "thread": 20 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 298305, + "thread": 10 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 424558, + "thread": 28 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 651906, + "thread": 12 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 729028, + "thread": 0 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 969710, + "thread": 27 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1029214, + "thread": 22 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1231131, + "thread": 30 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1360489, + "thread": 26 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1607286, + "thread": 15 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1785628, + "thread": 1 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 1967891, + "thread": 25 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2122605, + "thread": 16 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2252799, + "thread": 0 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2448575, + "thread": 31 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2575332, + "thread": 4 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2751692, + "thread": 26 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 2946932, + "thread": 19 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 3066328, + "thread": 9 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 3254226, + "thread": 8 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 3308307, + "thread": 14 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 3515539, + "thread": 11 + } + }, + { + "amount": "257.992608483", + "slot": { + "period": 3749425, + "thread": 11 + } + }, + { + "amount": "257.992608486", + "slot": { + "period": 3843669, + "thread": 22 + } + } + ], + "AU12suTcw7B7L6mmLGW99jafqeaGcHzFThtqb3iSzvr3qVHbZiuv2": [ + { + "amount": "100.727426117", + "slot": { + "period": 68999, + "thread": 2 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 203381, + "thread": 24 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 401041, + "thread": 3 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 570701, + "thread": 5 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 765122, + "thread": 27 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 916238, + "thread": 19 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 988661, + "thread": 31 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1157182, + "thread": 2 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1447695, + "thread": 16 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1628415, + "thread": 12 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1789568, + "thread": 28 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1824428, + "thread": 13 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 1992306, + "thread": 24 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 2172059, + "thread": 11 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 2387232, + "thread": 9 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 2524979, + "thread": 15 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 2664873, + "thread": 24 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 2935141, + "thread": 13 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 3117538, + "thread": 28 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 3163784, + "thread": 3 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 3437126, + "thread": 31 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 3548412, + "thread": 11 + } + }, + { + "amount": "100.727426117", + "slot": { + "period": 3684002, + "thread": 25 + } + }, + { + "amount": "100.727426114", + "slot": { + "period": 3938298, + "thread": 15 + } + } + ], + "AU12svBKiX8GLactrU7fcNW8jAb7pmBFFfkzG6ELi63CpoRTKf1K6": [ + { + "amount": "80.546019583", + "slot": { + "period": 120548, + "thread": 30 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 219818, + "thread": 14 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 486892, + "thread": 14 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 640162, + "thread": 4 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 667802, + "thread": 16 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 882026, + "thread": 19 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1075573, + "thread": 24 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1284078, + "thread": 9 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1343234, + "thread": 10 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1631871, + "thread": 11 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1766257, + "thread": 27 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 1914543, + "thread": 15 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2105991, + "thread": 25 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2268350, + "thread": 9 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2457754, + "thread": 27 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2488604, + "thread": 20 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2773861, + "thread": 1 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2947671, + "thread": 23 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 2993233, + "thread": 5 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 3282408, + "thread": 14 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 3325341, + "thread": 10 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 3571883, + "thread": 1 + } + }, + { + "amount": "80.546019583", + "slot": { + "period": 3722346, + "thread": 9 + } + }, + { + "amount": "80.546019573", + "slot": { + "period": 3862745, + "thread": 5 + } + } + ], + "AU12svKbUZ2drVMPgZFV692AkzjVRL6CuweUCRhxW9GMFNvLi5w7G": [ + { + "amount": "138.843651845", + "slot": { + "period": 21290, + "thread": 13 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 178423, + "thread": 27 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 328345, + "thread": 26 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 498811, + "thread": 30 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 712137, + "thread": 20 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 839457, + "thread": 4 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1009740, + "thread": 2 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1210456, + "thread": 30 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1435857, + "thread": 11 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1569218, + "thread": 13 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1745142, + "thread": 1 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 1966599, + "thread": 0 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2018437, + "thread": 31 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2231375, + "thread": 28 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2450864, + "thread": 0 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2538564, + "thread": 3 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2780924, + "thread": 3 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2859813, + "thread": 5 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 2976246, + "thread": 13 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 3215215, + "thread": 19 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 3338715, + "thread": 26 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 3597373, + "thread": 18 + } + }, + { + "amount": "138.843651845", + "slot": { + "period": 3731751, + "thread": 13 + } + }, + { + "amount": "138.843651851", + "slot": { + "period": 3844954, + "thread": 1 + } + } + ], + "AU12sw3KQt5cs8gQrjHyRCqAYKKL2N47yhLFAZvQ9M5SvGfuPmV8s": [ + { + "amount": "76.394049002", + "slot": { + "period": 136531, + "thread": 24 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 230692, + "thread": 18 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 464249, + "thread": 6 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 534819, + "thread": 19 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 708154, + "thread": 26 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 903335, + "thread": 17 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1136232, + "thread": 5 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1220410, + "thread": 15 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1456428, + "thread": 29 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1514973, + "thread": 0 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1758869, + "thread": 0 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 1869167, + "thread": 9 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2089104, + "thread": 18 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2152132, + "thread": 29 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2386689, + "thread": 6 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2568316, + "thread": 8 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2675478, + "thread": 19 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 2837830, + "thread": 18 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 3001567, + "thread": 8 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 3268304, + "thread": 14 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 3291941, + "thread": 14 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 3507950, + "thread": 5 + } + }, + { + "amount": "76.394049002", + "slot": { + "period": 3756720, + "thread": 28 + } + }, + { + "amount": "76.394049003", + "slot": { + "period": 3901277, + "thread": 28 + } + } + ], + "AU12sxitWX1tN3eiBe7jcXFhbDGGCS6aJP6ufhVZeKMmzQ7fyJTgr": [ + { + "amount": "92.420488996", + "slot": { + "period": 135738, + "thread": 13 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 176069, + "thread": 22 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 435230, + "thread": 12 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 596134, + "thread": 5 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 738592, + "thread": 22 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 849941, + "thread": 20 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1101178, + "thread": 27 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1236308, + "thread": 1 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1388500, + "thread": 19 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1481880, + "thread": 15 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1744462, + "thread": 31 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 1914314, + "thread": 31 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2005440, + "thread": 22 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2234690, + "thread": 21 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2346206, + "thread": 25 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2496867, + "thread": 27 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2665647, + "thread": 25 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 2925525, + "thread": 14 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 3054259, + "thread": 30 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 3245711, + "thread": 22 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 3313743, + "thread": 3 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 3534767, + "thread": 20 + } + }, + { + "amount": "92.420488996", + "slot": { + "period": 3628138, + "thread": 13 + } + }, + { + "amount": "92.420488986", + "slot": { + "period": 3820609, + "thread": 3 + } + } + ], + "AU12t13CyTfvWjvcde4KJNJHBC4y1VnLfvCsvhPofhwx6HCYyqd46": [ + { + "amount": "317.602308862", + "slot": { + "period": 65266, + "thread": 8 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 168566, + "thread": 25 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 325973, + "thread": 23 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 600433, + "thread": 17 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 785918, + "thread": 26 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 929064, + "thread": 2 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1035667, + "thread": 6 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1234548, + "thread": 27 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1365348, + "thread": 30 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1546147, + "thread": 13 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1768716, + "thread": 27 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 1884715, + "thread": 7 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2118524, + "thread": 10 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2293248, + "thread": 8 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2348619, + "thread": 26 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2575500, + "thread": 24 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2698963, + "thread": 18 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 2944634, + "thread": 20 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 3032942, + "thread": 10 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 3286619, + "thread": 0 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 3368483, + "thread": 9 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 3536538, + "thread": 4 + } + }, + { + "amount": "317.602308862", + "slot": { + "period": 3762314, + "thread": 28 + } + }, + { + "amount": "317.602308860", + "slot": { + "period": 3922522, + "thread": 14 + } + } + ], + "AU12t1zf66oRm7aLkjfR5y2tQt8bnZsQMsdDWLd5wqjt2MECaQDnQ": [ + { + "amount": "62.066717855", + "slot": { + "period": 36096, + "thread": 19 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 293774, + "thread": 24 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 367199, + "thread": 10 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 565074, + "thread": 4 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 748852, + "thread": 14 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 930508, + "thread": 31 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1041202, + "thread": 3 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1224375, + "thread": 5 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1364108, + "thread": 31 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1548307, + "thread": 22 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1743591, + "thread": 6 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 1818540, + "thread": 22 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2056270, + "thread": 4 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2232841, + "thread": 10 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2436601, + "thread": 30 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2563702, + "thread": 12 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2763929, + "thread": 9 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 2888290, + "thread": 29 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 3088435, + "thread": 8 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 3197103, + "thread": 17 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 3353618, + "thread": 15 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 3572591, + "thread": 16 + } + }, + { + "amount": "62.066717855", + "slot": { + "period": 3727173, + "thread": 11 + } + }, + { + "amount": "62.066717848", + "slot": { + "period": 3794424, + "thread": 21 + } + } + ], + "AU12t2mnxAhq4cSNnCgSsWPpfmR4WmfRLXFV29umV1t5J575Rmtsx": [ + { + "amount": "77.802262093", + "slot": { + "period": 38530, + "thread": 21 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 266612, + "thread": 15 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 342851, + "thread": 27 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 616101, + "thread": 22 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 770686, + "thread": 5 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 846469, + "thread": 2 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1134980, + "thread": 16 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1164777, + "thread": 18 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1387016, + "thread": 22 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1590444, + "thread": 11 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1715346, + "thread": 11 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 1954961, + "thread": 3 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2127998, + "thread": 7 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2231282, + "thread": 2 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2404218, + "thread": 30 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2497578, + "thread": 25 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2663939, + "thread": 17 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 2825974, + "thread": 19 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 3042970, + "thread": 9 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 3281905, + "thread": 31 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 3424938, + "thread": 12 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 3498812, + "thread": 14 + } + }, + { + "amount": "77.802262093", + "slot": { + "period": 3618258, + "thread": 24 + } + }, + { + "amount": "77.802262094", + "slot": { + "period": 3944081, + "thread": 31 + } + } + ], + "AU12t3hgnLL8qNzVFaUH3RstiUQKWYQeSygy1VUsv4QPeTE4hs6iB": [ + { + "amount": "110.476522098", + "slot": { + "period": 92607, + "thread": 18 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 264256, + "thread": 24 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 452135, + "thread": 20 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 598302, + "thread": 22 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 723151, + "thread": 22 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 896265, + "thread": 16 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1098903, + "thread": 31 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1224286, + "thread": 20 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1452179, + "thread": 12 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1633627, + "thread": 5 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1651442, + "thread": 16 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 1818923, + "thread": 21 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2051256, + "thread": 17 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2293621, + "thread": 3 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2382138, + "thread": 10 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2565141, + "thread": 1 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2679926, + "thread": 5 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 2825220, + "thread": 20 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 3102113, + "thread": 1 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 3207669, + "thread": 0 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 3386348, + "thread": 6 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 3574218, + "thread": 2 + } + }, + { + "amount": "110.476522098", + "slot": { + "period": 3743170, + "thread": 22 + } + }, + { + "amount": "110.476522090", + "slot": { + "period": 3847291, + "thread": 22 + } + } + ], + "AU12t3qSbGqJuNpH5LPC6sY7cJngyPXNxuKC2LtsaBRyymfhCZ7YN": [ + { + "amount": "454.321103470", + "slot": { + "period": 147979, + "thread": 16 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 245154, + "thread": 15 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 369732, + "thread": 20 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 540176, + "thread": 15 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 786206, + "thread": 7 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 868069, + "thread": 2 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1102281, + "thread": 2 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1288854, + "thread": 25 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1370600, + "thread": 15 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1481529, + "thread": 5 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1779266, + "thread": 20 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 1965318, + "thread": 9 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2064664, + "thread": 1 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2279939, + "thread": 24 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2329520, + "thread": 6 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2553293, + "thread": 11 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2624609, + "thread": 11 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 2928706, + "thread": 7 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 3011173, + "thread": 26 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 3202038, + "thread": 19 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 3400113, + "thread": 12 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 3606348, + "thread": 11 + } + }, + { + "amount": "454.321103470", + "slot": { + "period": 3710157, + "thread": 5 + } + }, + { + "amount": "454.321103468", + "slot": { + "period": 3876508, + "thread": 13 + } + } + ], + "AU12t3s5Jrw95s8uVMLCDuWfbt9CW7mHSBhshwhLfYEYhbjJk5ukQ": [ + { + "amount": "266.498079054", + "slot": { + "period": 80599, + "thread": 17 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 280263, + "thread": 20 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 481192, + "thread": 0 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 650589, + "thread": 0 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 796576, + "thread": 4 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 846969, + "thread": 8 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1111043, + "thread": 23 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1252160, + "thread": 12 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1408431, + "thread": 20 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1565109, + "thread": 27 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1754696, + "thread": 22 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1850255, + "thread": 15 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 1991112, + "thread": 2 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 2236825, + "thread": 15 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 2359347, + "thread": 7 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 2544473, + "thread": 18 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 2700308, + "thread": 18 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 2931502, + "thread": 7 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 3112633, + "thread": 13 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 3245637, + "thread": 6 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 3354324, + "thread": 7 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 3452646, + "thread": 28 + } + }, + { + "amount": "266.498079054", + "slot": { + "period": 3624910, + "thread": 23 + } + }, + { + "amount": "266.498079043", + "slot": { + "period": 3897791, + "thread": 31 + } + } + ], + "AU12t4UY7HcELw7mM8gWkHQqaYVnjrc7DVBA14d3p3S4U5yk8VB79": [ + { + "amount": "210.154445442", + "slot": { + "period": 136310, + "thread": 29 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 261756, + "thread": 24 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 360665, + "thread": 20 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 550521, + "thread": 5 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 770819, + "thread": 11 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 831107, + "thread": 14 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1131518, + "thread": 7 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1279991, + "thread": 10 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1387145, + "thread": 19 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1619783, + "thread": 1 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1734972, + "thread": 13 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 1849674, + "thread": 27 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2003190, + "thread": 18 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2172360, + "thread": 0 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2400501, + "thread": 5 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2479303, + "thread": 24 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2625062, + "thread": 13 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2918773, + "thread": 11 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 2964877, + "thread": 29 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 3225900, + "thread": 21 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 3403601, + "thread": 10 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 3613096, + "thread": 20 + } + }, + { + "amount": "210.154445442", + "slot": { + "period": 3666733, + "thread": 16 + } + }, + { + "amount": "210.154445431", + "slot": { + "period": 3944643, + "thread": 25 + } + } + ], + "AU12t4fvi9stb1hW294EM7ZfCR6QqypTDeebJvWPZvMMNCgvykE16": [ + { + "amount": "321.023133376", + "slot": { + "period": 118137, + "thread": 25 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 244989, + "thread": 26 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 481162, + "thread": 28 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 580790, + "thread": 24 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 701760, + "thread": 25 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 967946, + "thread": 9 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1087984, + "thread": 15 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1304960, + "thread": 16 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1475070, + "thread": 28 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1635681, + "thread": 13 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1783376, + "thread": 5 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1904142, + "thread": 1 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 1991087, + "thread": 3 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2163695, + "thread": 26 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2305333, + "thread": 27 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2483329, + "thread": 18 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2755118, + "thread": 23 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2795472, + "thread": 14 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 2984786, + "thread": 17 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 3158794, + "thread": 18 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 3304650, + "thread": 28 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 3491786, + "thread": 0 + } + }, + { + "amount": "321.023133376", + "slot": { + "period": 3744388, + "thread": 30 + } + }, + { + "amount": "321.023133365", + "slot": { + "period": 3830404, + "thread": 14 + } + } + ], + "AU12t4txXJU5pAU8WuQNm8C2mb1DWbk56VxnnoTSnfxXnDQ6TR9A9": [ + { + "amount": "120.620561303", + "slot": { + "period": 64979, + "thread": 15 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 228720, + "thread": 23 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 412742, + "thread": 24 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 507731, + "thread": 21 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 705315, + "thread": 1 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 847886, + "thread": 0 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1034774, + "thread": 12 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1303683, + "thread": 18 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1372075, + "thread": 27 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1608195, + "thread": 11 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1796528, + "thread": 24 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1970320, + "thread": 19 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 1984778, + "thread": 7 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2189530, + "thread": 15 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2316469, + "thread": 13 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2492267, + "thread": 0 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2646691, + "thread": 15 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2918556, + "thread": 30 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 2996233, + "thread": 27 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 3150695, + "thread": 21 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 3290114, + "thread": 8 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 3490178, + "thread": 28 + } + }, + { + "amount": "120.620561303", + "slot": { + "period": 3727139, + "thread": 19 + } + }, + { + "amount": "120.620561300", + "slot": { + "period": 3792233, + "thread": 19 + } + } + ], + "AU12t6JMVq7nguTpf7KAk8bGriSEJ3BTarqyhKBz1pqBPVtj3atvg": [ + { + "amount": "392.144686527", + "slot": { + "period": 133297, + "thread": 5 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 314756, + "thread": 26 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 409514, + "thread": 27 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 562536, + "thread": 25 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 750207, + "thread": 15 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 921929, + "thread": 25 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1128377, + "thread": 21 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1207733, + "thread": 20 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1322565, + "thread": 23 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1596758, + "thread": 13 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1697737, + "thread": 5 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 1953265, + "thread": 20 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2041922, + "thread": 26 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2273886, + "thread": 10 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2334511, + "thread": 17 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2615643, + "thread": 26 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2691245, + "thread": 8 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 2937007, + "thread": 10 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 3041573, + "thread": 18 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 3199458, + "thread": 3 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 3327382, + "thread": 18 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 3452436, + "thread": 23 + } + }, + { + "amount": "392.144686527", + "slot": { + "period": 3723803, + "thread": 29 + } + }, + { + "amount": "392.144686517", + "slot": { + "period": 3876057, + "thread": 13 + } + } + ], + "AU12t713yyBAPd8Ks59PHamSvuiSRf3cZa9PASbx2K6LrfU8MAsxZ": [ + { + "amount": "123.198650007", + "slot": { + "period": 29340, + "thread": 26 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 284840, + "thread": 20 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 468778, + "thread": 16 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 565843, + "thread": 29 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 674977, + "thread": 17 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 957951, + "thread": 7 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1147484, + "thread": 2 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1165335, + "thread": 12 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1384746, + "thread": 23 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1635701, + "thread": 8 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1669947, + "thread": 25 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1898792, + "thread": 20 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 1979445, + "thread": 16 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2236065, + "thread": 25 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2330999, + "thread": 15 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2499191, + "thread": 0 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2729905, + "thread": 14 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2944213, + "thread": 31 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 2990638, + "thread": 7 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 3266653, + "thread": 21 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 3370507, + "thread": 21 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 3539538, + "thread": 26 + } + }, + { + "amount": "123.198650007", + "slot": { + "period": 3776615, + "thread": 22 + } + }, + { + "amount": "123.198650000", + "slot": { + "period": 3789330, + "thread": 31 + } + } + ], + "AU12t7792gbpzvm6ZXu4nZyZWy3hnmFJYpyUfQjnKyPXFKR3H2bbf": [ + { + "amount": "87.887363889", + "slot": { + "period": 113764, + "thread": 10 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 203754, + "thread": 31 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 324359, + "thread": 22 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 530651, + "thread": 21 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 673096, + "thread": 15 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 927621, + "thread": 16 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 992219, + "thread": 12 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 1189368, + "thread": 4 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 1425731, + "thread": 23 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 1520127, + "thread": 14 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 1751901, + "thread": 10 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 1883623, + "thread": 0 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2000086, + "thread": 14 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2199149, + "thread": 26 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2332206, + "thread": 28 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2591276, + "thread": 3 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2727588, + "thread": 12 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 2793383, + "thread": 24 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 3085178, + "thread": 0 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 3143276, + "thread": 20 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 3347731, + "thread": 11 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 3506855, + "thread": 12 + } + }, + { + "amount": "87.887363889", + "slot": { + "period": 3635193, + "thread": 6 + } + }, + { + "amount": "87.887363900", + "slot": { + "period": 3863685, + "thread": 14 + } + } + ], + "AU12t7yP71AaYL61sKmyv27TD7EWeMZQkGB5DRX48wwiFeoDzNMTN": [ + { + "amount": "266.651174441", + "slot": { + "period": 106609, + "thread": 3 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 185691, + "thread": 19 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 386566, + "thread": 5 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 549476, + "thread": 16 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 706192, + "thread": 29 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 919695, + "thread": 20 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1002459, + "thread": 19 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1309101, + "thread": 12 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1399125, + "thread": 7 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1582111, + "thread": 26 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1806518, + "thread": 9 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 1883507, + "thread": 30 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2026267, + "thread": 25 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2152430, + "thread": 2 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2444347, + "thread": 19 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2573372, + "thread": 12 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2692574, + "thread": 16 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 2937428, + "thread": 17 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 3078596, + "thread": 24 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 3208111, + "thread": 3 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 3306981, + "thread": 9 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 3508340, + "thread": 16 + } + }, + { + "amount": "266.651174441", + "slot": { + "period": 3634499, + "thread": 7 + } + }, + { + "amount": "266.651174446", + "slot": { + "period": 3893835, + "thread": 29 + } + } + ], + "AU12t9ZarxZfk61W1qLPXQMeUNGDpq2pX6UYiRivcGkaSLekX6qix": [ + { + "amount": "228.856278440", + "slot": { + "period": 118754, + "thread": 25 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 311097, + "thread": 17 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 335159, + "thread": 18 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 596665, + "thread": 25 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 762119, + "thread": 10 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 836220, + "thread": 16 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1138845, + "thread": 17 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1255192, + "thread": 22 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1417312, + "thread": 20 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1598890, + "thread": 12 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1699895, + "thread": 23 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 1909274, + "thread": 11 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2098081, + "thread": 19 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2204581, + "thread": 2 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2354480, + "thread": 6 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2482837, + "thread": 25 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2678986, + "thread": 8 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 2905781, + "thread": 25 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 3104490, + "thread": 18 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 3206726, + "thread": 27 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 3325087, + "thread": 10 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 3511816, + "thread": 1 + } + }, + { + "amount": "228.856278440", + "slot": { + "period": 3749234, + "thread": 30 + } + }, + { + "amount": "228.856278433", + "slot": { + "period": 3809044, + "thread": 2 + } + } + ], + "AU12tAH168kpEjg6BmDVuFBFSjqrVesXBKPJk9UstJP9q2wC7eP7P": [ + { + "amount": "292.655435238", + "slot": { + "period": 85919, + "thread": 1 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 250238, + "thread": 25 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 445174, + "thread": 21 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 498304, + "thread": 28 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 746841, + "thread": 21 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 824536, + "thread": 30 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1059751, + "thread": 10 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1285699, + "thread": 25 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1357886, + "thread": 9 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1540979, + "thread": 25 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1712597, + "thread": 20 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 1866724, + "thread": 1 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2034920, + "thread": 3 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2171314, + "thread": 26 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2341851, + "thread": 7 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2503156, + "thread": 5 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2644345, + "thread": 13 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 2854848, + "thread": 6 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 3103417, + "thread": 11 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 3201298, + "thread": 16 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 3420205, + "thread": 6 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 3613605, + "thread": 26 + } + }, + { + "amount": "292.655435238", + "slot": { + "period": 3619056, + "thread": 11 + } + }, + { + "amount": "292.655435250", + "slot": { + "period": 3844328, + "thread": 8 + } + } + ], + "AU12tB4f7AeqvUF4pPFfw5n1mLnc1eqbHjQjyzp8uw47wBwMwiBsh": [ + { + "amount": "173.762167286", + "slot": { + "period": 44366, + "thread": 24 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 191533, + "thread": 2 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 362427, + "thread": 29 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 622048, + "thread": 11 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 729744, + "thread": 5 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 915363, + "thread": 31 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1067057, + "thread": 20 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1222161, + "thread": 22 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1430228, + "thread": 1 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1527861, + "thread": 8 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1741670, + "thread": 20 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 1812665, + "thread": 16 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2002391, + "thread": 9 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2180914, + "thread": 4 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2322737, + "thread": 16 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2541076, + "thread": 16 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2789963, + "thread": 0 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 2873405, + "thread": 7 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 3069453, + "thread": 16 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 3203383, + "thread": 17 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 3414861, + "thread": 14 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 3572396, + "thread": 24 + } + }, + { + "amount": "173.762167286", + "slot": { + "period": 3695071, + "thread": 24 + } + }, + { + "amount": "173.762167279", + "slot": { + "period": 3932020, + "thread": 4 + } + } + ], + "AU12tBAyuXwBedbTvajVa1p8qGRpv4UBZBGUBKp4mU4xGCYx3M9cZ": [ + { + "amount": "190.191923229", + "slot": { + "period": 136101, + "thread": 7 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 252168, + "thread": 21 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 449365, + "thread": 29 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 635956, + "thread": 20 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 662132, + "thread": 12 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 851628, + "thread": 5 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1022716, + "thread": 24 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1259287, + "thread": 27 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1468449, + "thread": 3 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1607421, + "thread": 28 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1729186, + "thread": 28 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 1845268, + "thread": 21 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2121157, + "thread": 12 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2268837, + "thread": 3 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2315857, + "thread": 23 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2500815, + "thread": 19 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2785747, + "thread": 6 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 2871696, + "thread": 9 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 3002262, + "thread": 20 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 3186984, + "thread": 29 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 3420582, + "thread": 20 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 3548955, + "thread": 13 + } + }, + { + "amount": "190.191923229", + "slot": { + "period": 3691229, + "thread": 25 + } + }, + { + "amount": "190.191923233", + "slot": { + "period": 3845908, + "thread": 1 + } + } + ], + "AU12tBU1PZrPxvAjDoNM32MYuX1qZtBn5giLxXxiJdg6zu8jdqLeL": [ + { + "amount": "75.052458270", + "slot": { + "period": 151862, + "thread": 11 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 184330, + "thread": 25 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 427581, + "thread": 28 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 586447, + "thread": 22 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 800267, + "thread": 28 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 824501, + "thread": 0 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 996000, + "thread": 7 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 1213689, + "thread": 16 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 1398940, + "thread": 28 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 1515147, + "thread": 16 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 1716960, + "thread": 30 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 1925150, + "thread": 5 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2083965, + "thread": 28 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2293691, + "thread": 31 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2322464, + "thread": 23 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2599015, + "thread": 31 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2722501, + "thread": 15 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 2934141, + "thread": 2 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 3027226, + "thread": 19 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 3158088, + "thread": 9 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 3441361, + "thread": 0 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 3455574, + "thread": 25 + } + }, + { + "amount": "75.052458270", + "slot": { + "period": 3719512, + "thread": 20 + } + }, + { + "amount": "75.052458265", + "slot": { + "period": 3806996, + "thread": 17 + } + } + ], + "AU12tBX5yHvS4bihb7DykPUdpng3LB7hPBbYtDV4kxSAqamk3BYN1": [ + { + "amount": "172.771653134", + "slot": { + "period": 32690, + "thread": 24 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 183548, + "thread": 27 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 462212, + "thread": 3 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 622680, + "thread": 9 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 759752, + "thread": 26 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 864680, + "thread": 20 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1101876, + "thread": 9 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1244809, + "thread": 1 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1377116, + "thread": 0 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1568793, + "thread": 23 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1782433, + "thread": 21 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 1842921, + "thread": 24 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2070716, + "thread": 16 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2223532, + "thread": 28 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2443885, + "thread": 24 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2491189, + "thread": 24 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2714633, + "thread": 14 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 2915105, + "thread": 0 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3080270, + "thread": 13 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3191351, + "thread": 27 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3415538, + "thread": 21 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3615776, + "thread": 1 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3627958, + "thread": 6 + } + }, + { + "amount": "172.771653134", + "slot": { + "period": 3781438, + "thread": 26 + } + } + ], + "AU12tBvPYRqbur6GSqxiGiFVCkNibTSAryS9G9EvayHpJgHH9tCrD": [ + { + "amount": "142.696948688", + "slot": { + "period": 131725, + "thread": 22 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 274556, + "thread": 11 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 424002, + "thread": 19 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 584072, + "thread": 9 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 704613, + "thread": 15 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 915737, + "thread": 20 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 992771, + "thread": 0 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 1235263, + "thread": 22 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 1396595, + "thread": 27 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 1594268, + "thread": 11 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 1732194, + "thread": 31 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 1812178, + "thread": 12 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2074725, + "thread": 11 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2225728, + "thread": 28 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2302016, + "thread": 29 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2555416, + "thread": 30 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2655389, + "thread": 20 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 2858465, + "thread": 31 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 3001283, + "thread": 18 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 3229727, + "thread": 18 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 3439155, + "thread": 26 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 3494715, + "thread": 4 + } + }, + { + "amount": "142.696948688", + "slot": { + "period": 3625081, + "thread": 29 + } + }, + { + "amount": "142.696948678", + "slot": { + "period": 3836733, + "thread": 12 + } + } + ], + "AU12tCHZdNwueh5teSU9paqJF2HvcKAMVxeARVFZ5e6K87V7epTz5": [ + { + "amount": "263.908228325", + "slot": { + "period": 50328, + "thread": 10 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 287868, + "thread": 12 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 406821, + "thread": 23 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 500303, + "thread": 22 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 728748, + "thread": 11 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 878426, + "thread": 4 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1033312, + "thread": 26 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1235924, + "thread": 19 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1378546, + "thread": 25 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1635998, + "thread": 29 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1791376, + "thread": 9 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1907303, + "thread": 7 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 1983265, + "thread": 9 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 2266900, + "thread": 21 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 2377014, + "thread": 28 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 2608407, + "thread": 23 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 2701126, + "thread": 29 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 2872798, + "thread": 8 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 3026533, + "thread": 10 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 3239155, + "thread": 31 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 3291742, + "thread": 24 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 3491050, + "thread": 2 + } + }, + { + "amount": "263.908228325", + "slot": { + "period": 3650400, + "thread": 10 + } + }, + { + "amount": "263.908228324", + "slot": { + "period": 3900014, + "thread": 14 + } + } + ], + "AU12tChLtheqYgKvkLoKf3KarUybf6k5fR9rrKf4AJP2CKJ7dbag2": [ + { + "amount": "214.600176957", + "slot": { + "period": 158248, + "thread": 9 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 224568, + "thread": 9 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 444492, + "thread": 11 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 635868, + "thread": 28 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 809334, + "thread": 2 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 899492, + "thread": 9 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1001925, + "thread": 13 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1178495, + "thread": 21 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1402941, + "thread": 19 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1644222, + "thread": 24 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1748573, + "thread": 8 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1850258, + "thread": 28 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 1995544, + "thread": 24 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 2248427, + "thread": 16 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 2336992, + "thread": 15 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 2607981, + "thread": 0 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 2657222, + "thread": 26 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 2929895, + "thread": 29 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 3109087, + "thread": 25 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 3206994, + "thread": 20 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 3325102, + "thread": 7 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 3613650, + "thread": 0 + } + }, + { + "amount": "214.600176957", + "slot": { + "period": 3749450, + "thread": 6 + } + }, + { + "amount": "214.600176948", + "slot": { + "period": 3889836, + "thread": 2 + } + } + ], + "AU12tCtR84EiMhXAApzCcXyZjHj7tD3c7pjgjuxpRT2PFyhCu775X": [ + { + "amount": "93.677365835", + "slot": { + "period": 163765, + "thread": 23 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 204689, + "thread": 28 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 330133, + "thread": 12 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 631241, + "thread": 12 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 659507, + "thread": 21 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 845044, + "thread": 18 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1014813, + "thread": 16 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1181739, + "thread": 15 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1448231, + "thread": 19 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1553966, + "thread": 0 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1744577, + "thread": 14 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 1883990, + "thread": 15 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2037426, + "thread": 2 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2225023, + "thread": 16 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2307484, + "thread": 23 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2464964, + "thread": 30 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2745036, + "thread": 28 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 2837451, + "thread": 16 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 3056125, + "thread": 27 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 3159191, + "thread": 17 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 3351974, + "thread": 18 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 3503986, + "thread": 2 + } + }, + { + "amount": "93.677365835", + "slot": { + "period": 3736052, + "thread": 27 + } + }, + { + "amount": "93.677365833", + "slot": { + "period": 3919961, + "thread": 7 + } + } + ], + "AU12tEFmno6MTCX2AjagLL9rhmD1RjQaHjFD9b6agcFPLDY39ox4x": [ + { + "amount": "119.340023223", + "slot": { + "period": 117835, + "thread": 17 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 187358, + "thread": 28 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 393529, + "thread": 4 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 572375, + "thread": 13 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 671777, + "thread": 15 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 942766, + "thread": 4 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1041722, + "thread": 4 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1158861, + "thread": 18 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1370998, + "thread": 2 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1605498, + "thread": 3 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1662318, + "thread": 27 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 1815180, + "thread": 2 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2020992, + "thread": 17 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2252557, + "thread": 13 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2391226, + "thread": 23 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2551707, + "thread": 26 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2635617, + "thread": 25 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2823048, + "thread": 16 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 2998876, + "thread": 12 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 3243361, + "thread": 9 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 3441396, + "thread": 14 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 3563854, + "thread": 25 + } + }, + { + "amount": "119.340023223", + "slot": { + "period": 3661976, + "thread": 4 + } + }, + { + "amount": "119.340023221", + "slot": { + "period": 3910794, + "thread": 21 + } + } + ], + "AU12tEJQB1uVbXxK1Y5hXp6bGEEP7zXWv5LWnC84MpJJkyKJk7LFS": [ + { + "amount": "378.241505135", + "slot": { + "period": 122673, + "thread": 28 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 234043, + "thread": 16 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 354309, + "thread": 7 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 631647, + "thread": 19 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 694085, + "thread": 3 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 883603, + "thread": 3 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1085775, + "thread": 13 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1281020, + "thread": 28 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1467144, + "thread": 14 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1503538, + "thread": 30 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1652022, + "thread": 0 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 1954205, + "thread": 9 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2029823, + "thread": 25 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2217709, + "thread": 25 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2345078, + "thread": 3 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2589712, + "thread": 5 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2763250, + "thread": 4 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2904599, + "thread": 3 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 2981721, + "thread": 1 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 3227498, + "thread": 11 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 3289522, + "thread": 8 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 3560062, + "thread": 30 + } + }, + { + "amount": "378.241505135", + "slot": { + "period": 3742686, + "thread": 20 + } + }, + { + "amount": "378.241505139", + "slot": { + "period": 3869279, + "thread": 25 + } + } + ], + "AU12tEnhvvRQqGx54vn9sZRGYjBc9N88oBqwmWV1pUEXBgFJneDJ1": [ + { + "amount": "1400.680592474", + "slot": { + "period": 37533, + "thread": 8 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 299657, + "thread": 30 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 350961, + "thread": 12 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 614717, + "thread": 24 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 719715, + "thread": 5 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 874499, + "thread": 10 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1148168, + "thread": 26 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1244159, + "thread": 28 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1440289, + "thread": 21 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1551906, + "thread": 9 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1687334, + "thread": 25 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 1891005, + "thread": 14 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2136286, + "thread": 1 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2284724, + "thread": 31 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2410549, + "thread": 13 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2617725, + "thread": 7 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2702166, + "thread": 28 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 2806767, + "thread": 22 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 3077951, + "thread": 13 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 3151160, + "thread": 13 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 3405121, + "thread": 22 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 3555271, + "thread": 22 + } + }, + { + "amount": "1400.680592474", + "slot": { + "period": 3775216, + "thread": 1 + } + }, + { + "amount": "1400.680592463", + "slot": { + "period": 3886500, + "thread": 18 + } + } + ], + "AU12tGbVTQbr5QwWvvmPfjFUponqh2FM1A1yenp3jLJvtWDF82W2o": [ + { + "amount": "443.727638178", + "slot": { + "period": 107575, + "thread": 24 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 230674, + "thread": 13 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 418212, + "thread": 8 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 510136, + "thread": 6 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 736330, + "thread": 18 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 939592, + "thread": 21 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1140472, + "thread": 19 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1173740, + "thread": 19 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1377828, + "thread": 21 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1576577, + "thread": 6 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1722955, + "thread": 18 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 1905871, + "thread": 7 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2057914, + "thread": 4 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2229611, + "thread": 15 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2436195, + "thread": 18 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2607931, + "thread": 31 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2747896, + "thread": 18 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 2872194, + "thread": 31 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 3104336, + "thread": 21 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 3257530, + "thread": 22 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 3405317, + "thread": 23 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 3532415, + "thread": 6 + } + }, + { + "amount": "443.727638178", + "slot": { + "period": 3771522, + "thread": 23 + } + }, + { + "amount": "443.727638184", + "slot": { + "period": 3879633, + "thread": 1 + } + } + ], + "AU12tGu9H3Xk8BZU5rwXGkHYdxezstn4maQARdGLXTCBTkRCCiiiS": [ + { + "amount": "490.769277155", + "slot": { + "period": 54802, + "thread": 29 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 292652, + "thread": 14 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 334615, + "thread": 4 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 498235, + "thread": 24 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 676672, + "thread": 9 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 964513, + "thread": 31 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 996595, + "thread": 29 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 1235034, + "thread": 7 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 1323752, + "thread": 22 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 1643313, + "thread": 3 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 1660748, + "thread": 28 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 1876197, + "thread": 14 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2115785, + "thread": 7 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2189341, + "thread": 7 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2379424, + "thread": 27 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2574266, + "thread": 6 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2768487, + "thread": 11 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2898197, + "thread": 1 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 2994631, + "thread": 22 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 3160594, + "thread": 13 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 3343519, + "thread": 25 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 3551075, + "thread": 18 + } + }, + { + "amount": "490.769277155", + "slot": { + "period": 3701006, + "thread": 6 + } + }, + { + "amount": "490.769277161", + "slot": { + "period": 3834120, + "thread": 14 + } + } + ], + "AU12tHWbGbzed6QgPbzw7QjiF7UhgmqcMNjWGW8FuZCTV32iL8aNS": [ + { + "amount": "127.153704789", + "slot": { + "period": 66051, + "thread": 3 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 167831, + "thread": 28 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 471578, + "thread": 5 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 564773, + "thread": 5 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 804856, + "thread": 8 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 904295, + "thread": 28 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1096012, + "thread": 17 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1172959, + "thread": 26 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1429072, + "thread": 4 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1483783, + "thread": 4 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1744843, + "thread": 24 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1934837, + "thread": 31 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 1997818, + "thread": 6 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 2246607, + "thread": 2 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 2433501, + "thread": 24 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 2502069, + "thread": 23 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 2772456, + "thread": 9 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 2893333, + "thread": 21 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 3047221, + "thread": 7 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 3228583, + "thread": 21 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 3414581, + "thread": 21 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 3493603, + "thread": 7 + } + }, + { + "amount": "127.153704789", + "slot": { + "period": 3686817, + "thread": 19 + } + }, + { + "amount": "127.153704795", + "slot": { + "period": 3868433, + "thread": 5 + } + } + ], + "AU12tHvPCFH5gAGQDRyUfRadrCFuWRhAb9ihZRUzDPhdcYR4aviv4": [ + { + "amount": "361.837462129", + "slot": { + "period": 111499, + "thread": 21 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 250322, + "thread": 22 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 491331, + "thread": 31 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 492081, + "thread": 7 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 811734, + "thread": 8 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 925189, + "thread": 3 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1090080, + "thread": 8 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1261819, + "thread": 27 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1413148, + "thread": 30 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1526785, + "thread": 5 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1681932, + "thread": 22 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 1957996, + "thread": 11 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2088721, + "thread": 9 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2163830, + "thread": 25 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2400053, + "thread": 13 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2499272, + "thread": 12 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2771467, + "thread": 19 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2891508, + "thread": 2 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 2998699, + "thread": 21 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 3263266, + "thread": 13 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 3410416, + "thread": 20 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 3505659, + "thread": 26 + } + }, + { + "amount": "361.837462129", + "slot": { + "period": 3646517, + "thread": 17 + } + }, + { + "amount": "361.837462118", + "slot": { + "period": 3845643, + "thread": 30 + } + } + ], + "AU12tHyFXZTPAWVHtFtgXzf5f6pf6tevby7RFU1VtZfTHSTaaq5k4": [ + { + "amount": "545.929706504", + "slot": { + "period": 108546, + "thread": 20 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 212064, + "thread": 10 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 334121, + "thread": 13 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 586773, + "thread": 9 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 666493, + "thread": 9 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 823993, + "thread": 11 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1087692, + "thread": 24 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1290072, + "thread": 17 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1416962, + "thread": 26 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1535251, + "thread": 8 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1734305, + "thread": 25 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 1892142, + "thread": 4 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2090150, + "thread": 28 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2206358, + "thread": 28 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2394861, + "thread": 8 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2488415, + "thread": 31 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2730364, + "thread": 25 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 2804639, + "thread": 12 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 3097315, + "thread": 2 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 3258846, + "thread": 14 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 3327268, + "thread": 8 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 3543448, + "thread": 7 + } + }, + { + "amount": "545.929706504", + "slot": { + "period": 3748224, + "thread": 10 + } + }, + { + "amount": "545.929706501", + "slot": { + "period": 3929941, + "thread": 23 + } + } + ], + "AU12tJxpncoy2LmZcisNt2NBxTs7954vdL75LWACRSgaiuujrbvEo": [ + { + "amount": "438.224821640", + "slot": { + "period": 166394, + "thread": 19 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 242470, + "thread": 25 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 382021, + "thread": 22 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 589155, + "thread": 7 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 677452, + "thread": 20 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 830772, + "thread": 13 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1051491, + "thread": 9 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1219875, + "thread": 4 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1411443, + "thread": 17 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1519390, + "thread": 0 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1781545, + "thread": 13 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 1924112, + "thread": 17 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2071698, + "thread": 1 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2219379, + "thread": 16 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2340728, + "thread": 21 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2555568, + "thread": 16 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2626975, + "thread": 3 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2910890, + "thread": 16 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 2978796, + "thread": 21 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 3187398, + "thread": 19 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 3426629, + "thread": 7 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 3526259, + "thread": 21 + } + }, + { + "amount": "438.224821640", + "slot": { + "period": 3693451, + "thread": 24 + } + }, + { + "amount": "438.224821639", + "slot": { + "period": 3887814, + "thread": 10 + } + } + ], + "AU12tKXNi1YUGp16SY32KXnr3Saxzd7DRiSFNGYoxDfx4jkzkkq78": [ + { + "amount": "145.642803813", + "slot": { + "period": 83339, + "thread": 28 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 208675, + "thread": 16 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 408694, + "thread": 12 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 544476, + "thread": 8 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 739934, + "thread": 18 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 932497, + "thread": 7 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1082124, + "thread": 17 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1300180, + "thread": 16 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1347140, + "thread": 10 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1588072, + "thread": 1 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1720358, + "thread": 11 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 1972784, + "thread": 31 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2108825, + "thread": 20 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2245877, + "thread": 11 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2456620, + "thread": 6 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2465753, + "thread": 4 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2771627, + "thread": 9 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 2909879, + "thread": 0 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 3118189, + "thread": 5 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 3136858, + "thread": 10 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 3417525, + "thread": 10 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 3484762, + "thread": 2 + } + }, + { + "amount": "145.642803813", + "slot": { + "period": 3758317, + "thread": 15 + } + }, + { + "amount": "145.642803814", + "slot": { + "period": 3789515, + "thread": 31 + } + } + ], + "AU12tL5Af5pN5jvbp272eQe8JDnFGFvdhoejcqTKPN3CRtyhh1ort": [ + { + "amount": "144.110108869", + "slot": { + "period": 23862, + "thread": 20 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 294218, + "thread": 19 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 401952, + "thread": 0 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 625893, + "thread": 28 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 727911, + "thread": 1 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 887920, + "thread": 5 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1024196, + "thread": 26 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1285083, + "thread": 4 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1373882, + "thread": 10 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1514352, + "thread": 25 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1648734, + "thread": 6 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 1905532, + "thread": 28 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2048743, + "thread": 28 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2285578, + "thread": 20 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2433688, + "thread": 31 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2462561, + "thread": 20 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2664791, + "thread": 27 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2859542, + "thread": 9 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 2995395, + "thread": 28 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 3142168, + "thread": 3 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 3310458, + "thread": 15 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 3478911, + "thread": 5 + } + }, + { + "amount": "144.110108869", + "slot": { + "period": 3724230, + "thread": 2 + } + }, + { + "amount": "144.110108870", + "slot": { + "period": 3878231, + "thread": 4 + } + } + ], + "AU12tLfjME5rLz8gKDKnyH5uaws1VRioWA7dTpJByGPYnGhXsBrzs": [ + { + "amount": "158.226763755", + "slot": { + "period": 151101, + "thread": 22 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 174424, + "thread": 2 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 349075, + "thread": 23 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 583412, + "thread": 21 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 728260, + "thread": 11 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 892785, + "thread": 22 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1007068, + "thread": 11 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1309209, + "thread": 26 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1438862, + "thread": 4 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1573515, + "thread": 26 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1722214, + "thread": 8 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 1872516, + "thread": 27 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2131738, + "thread": 23 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2160950, + "thread": 18 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2333650, + "thread": 28 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2554682, + "thread": 15 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2651453, + "thread": 15 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 2882038, + "thread": 26 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 3025406, + "thread": 14 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 3267188, + "thread": 14 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 3360672, + "thread": 24 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 3465130, + "thread": 23 + } + }, + { + "amount": "158.226763755", + "slot": { + "period": 3655093, + "thread": 26 + } + }, + { + "amount": "158.226763750", + "slot": { + "period": 3918879, + "thread": 6 + } + } + ], + "AU12tMADUHtvsZhq2NiUQZ8HX5P2nW7Sk7cHGFUu2926Z5Sv6j9Ja": [ + { + "amount": "133.457267308", + "slot": { + "period": 150202, + "thread": 6 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 241673, + "thread": 23 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 444322, + "thread": 30 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 496098, + "thread": 1 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 675553, + "thread": 2 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 969064, + "thread": 11 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1028400, + "thread": 1 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1253853, + "thread": 1 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1431395, + "thread": 24 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1551586, + "thread": 19 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1664072, + "thread": 1 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 1901369, + "thread": 16 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2143159, + "thread": 18 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2168974, + "thread": 13 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2379167, + "thread": 3 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2614097, + "thread": 25 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2716236, + "thread": 5 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 2813367, + "thread": 26 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 3103697, + "thread": 19 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 3126432, + "thread": 7 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 3300425, + "thread": 17 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 3584116, + "thread": 30 + } + }, + { + "amount": "133.457267308", + "slot": { + "period": 3713460, + "thread": 18 + } + }, + { + "amount": "133.457267297", + "slot": { + "period": 3826055, + "thread": 19 + } + } + ], + "AU12tMJWnPGdpqoNFbZxX6usmmmCjWzjRiHgpJw2LyLrt8ShnftrG": [ + { + "amount": "235.333082355", + "slot": { + "period": 130365, + "thread": 3 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 176300, + "thread": 11 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 374801, + "thread": 16 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 604677, + "thread": 3 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 656034, + "thread": 15 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 824710, + "thread": 6 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1004832, + "thread": 1 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1192774, + "thread": 26 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1398773, + "thread": 26 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1591459, + "thread": 11 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1703343, + "thread": 20 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 1952505, + "thread": 8 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2080844, + "thread": 14 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2266436, + "thread": 23 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2390024, + "thread": 27 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2538070, + "thread": 7 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2643612, + "thread": 13 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 2932360, + "thread": 29 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 3115290, + "thread": 29 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 3174383, + "thread": 15 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 3364621, + "thread": 20 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 3561197, + "thread": 1 + } + }, + { + "amount": "235.333082355", + "slot": { + "period": 3768013, + "thread": 30 + } + }, + { + "amount": "235.333082354", + "slot": { + "period": 3847509, + "thread": 28 + } + } + ], + "AU12tMg4MLxHN7zn1wcEfho142Qtn45Jq7z7GScCWU9Xcauiqf3Tb": [ + { + "amount": "95.829511911", + "slot": { + "period": 123217, + "thread": 25 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 220029, + "thread": 12 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 424158, + "thread": 28 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 618040, + "thread": 9 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 653851, + "thread": 30 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 855527, + "thread": 10 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1078969, + "thread": 15 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1242517, + "thread": 15 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1462604, + "thread": 4 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1498769, + "thread": 11 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1719234, + "thread": 29 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 1898184, + "thread": 24 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2090608, + "thread": 22 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2149302, + "thread": 12 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2311032, + "thread": 0 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2609595, + "thread": 15 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2785015, + "thread": 16 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2845870, + "thread": 6 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 2978104, + "thread": 28 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 3130419, + "thread": 22 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 3301457, + "thread": 16 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 3576689, + "thread": 24 + } + }, + { + "amount": "95.829511911", + "slot": { + "period": 3705156, + "thread": 0 + } + }, + { + "amount": "95.829511904", + "slot": { + "period": 3841165, + "thread": 8 + } + } + ], + "AU12tNBV6sKr4JHXDsEpFkhW6tHkVPYbpSnJhTePgDAkUrdRsx7gX": [ + { + "amount": "112.524972050", + "slot": { + "period": 128036, + "thread": 13 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 173157, + "thread": 8 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 372617, + "thread": 17 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 504537, + "thread": 1 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 670337, + "thread": 9 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 863705, + "thread": 29 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1043751, + "thread": 20 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1197254, + "thread": 0 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1415148, + "thread": 26 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1645714, + "thread": 12 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1654537, + "thread": 29 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 1900629, + "thread": 3 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2026675, + "thread": 20 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2182478, + "thread": 25 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2355111, + "thread": 16 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2495854, + "thread": 5 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2700601, + "thread": 5 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 2804253, + "thread": 16 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 3022276, + "thread": 11 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 3133163, + "thread": 20 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 3440223, + "thread": 17 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 3503150, + "thread": 2 + } + }, + { + "amount": "112.524972050", + "slot": { + "period": 3626931, + "thread": 24 + } + }, + { + "amount": "112.524972051", + "slot": { + "period": 3791407, + "thread": 21 + } + } + ], + "AU12tNFsfJyCwxXWdrNAh191sqgzvxqrCG31UMUjiQwN88JXya3Dn": [ + { + "amount": "203.180364751", + "slot": { + "period": 109405, + "thread": 7 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 261571, + "thread": 2 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 392478, + "thread": 3 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 602351, + "thread": 1 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 705902, + "thread": 20 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 829458, + "thread": 12 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1078566, + "thread": 21 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1240565, + "thread": 7 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1435221, + "thread": 19 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1546246, + "thread": 31 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1674559, + "thread": 23 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 1935295, + "thread": 25 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2045836, + "thread": 13 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2283416, + "thread": 9 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2352961, + "thread": 14 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2502874, + "thread": 23 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2706183, + "thread": 8 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 2813474, + "thread": 23 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 3078056, + "thread": 6 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 3268696, + "thread": 3 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 3442754, + "thread": 18 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 3495583, + "thread": 30 + } + }, + { + "amount": "203.180364751", + "slot": { + "period": 3659531, + "thread": 5 + } + }, + { + "amount": "203.180364748", + "slot": { + "period": 3882105, + "thread": 31 + } + } + ], + "AU12tNTvcvQZBCSZBVQeJGnhD5Scyu8Tsziim3QBPXpS5b27HP52U": [ + { + "amount": "418.797083847", + "slot": { + "period": 123375, + "thread": 6 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 186803, + "thread": 19 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 464896, + "thread": 19 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 599650, + "thread": 25 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 707983, + "thread": 30 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 890073, + "thread": 25 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1097626, + "thread": 15 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1314494, + "thread": 22 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1435331, + "thread": 25 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1509696, + "thread": 1 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1734611, + "thread": 3 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1884794, + "thread": 28 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 1994536, + "thread": 23 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2230451, + "thread": 4 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2345272, + "thread": 28 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2593669, + "thread": 11 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2654534, + "thread": 26 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2853919, + "thread": 24 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 2964248, + "thread": 30 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 3257502, + "thread": 13 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 3364776, + "thread": 9 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 3586333, + "thread": 15 + } + }, + { + "amount": "418.797083847", + "slot": { + "period": 3635381, + "thread": 20 + } + }, + { + "amount": "418.797083846", + "slot": { + "period": 3867220, + "thread": 5 + } + } + ], + "AU12tNfys54bXAY6SGAsghNiUHZ8goNx5fcE5m4JP8ztiMJSeWJ4G": [ + { + "amount": "127.483977260", + "slot": { + "period": 95824, + "thread": 17 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 226152, + "thread": 13 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 370047, + "thread": 25 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 618397, + "thread": 9 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 763415, + "thread": 31 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 849145, + "thread": 27 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1042081, + "thread": 7 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1176190, + "thread": 4 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1411947, + "thread": 8 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1497817, + "thread": 4 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1735698, + "thread": 11 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 1828020, + "thread": 10 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2092083, + "thread": 24 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2187375, + "thread": 8 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2433234, + "thread": 3 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2484948, + "thread": 11 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2650934, + "thread": 4 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 2892454, + "thread": 19 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 3018164, + "thread": 27 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 3267372, + "thread": 26 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 3348246, + "thread": 11 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 3608892, + "thread": 26 + } + }, + { + "amount": "127.483977260", + "slot": { + "period": 3623952, + "thread": 29 + } + }, + { + "amount": "127.483977267", + "slot": { + "period": 3805324, + "thread": 0 + } + } + ], + "AU12tPh4jDhGq5NZdAAhbD8SLPJPJcfBc4S2uWyWw5NRcFW9Jrn29": [ + { + "amount": "391.422811805", + "slot": { + "period": 20102, + "thread": 9 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 189690, + "thread": 1 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 343104, + "thread": 7 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 599747, + "thread": 19 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 698550, + "thread": 13 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 838886, + "thread": 21 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1054583, + "thread": 6 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1287665, + "thread": 27 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1476834, + "thread": 4 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1576257, + "thread": 7 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1740085, + "thread": 24 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 1918388, + "thread": 23 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2063786, + "thread": 9 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2205176, + "thread": 10 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2422600, + "thread": 4 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2499905, + "thread": 16 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2654164, + "thread": 13 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 2841463, + "thread": 15 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 3042494, + "thread": 21 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 3284467, + "thread": 19 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 3426815, + "thread": 29 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 3558755, + "thread": 29 + } + }, + { + "amount": "391.422811805", + "slot": { + "period": 3625425, + "thread": 27 + } + }, + { + "amount": "391.422811816", + "slot": { + "period": 3819501, + "thread": 8 + } + } + ], + "AU12tPrQcKDw5XkhH12QbV2j6LdjZMPCk1vz3J35CE4xuUp1L1p5i": [ + { + "amount": "57.041426195", + "slot": { + "period": 160962, + "thread": 27 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 185516, + "thread": 10 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 337180, + "thread": 21 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 519205, + "thread": 10 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 801223, + "thread": 30 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 838536, + "thread": 15 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1135279, + "thread": 27 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1193081, + "thread": 31 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1319894, + "thread": 5 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1559859, + "thread": 12 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1799100, + "thread": 9 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 1899567, + "thread": 24 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2021565, + "thread": 30 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2157901, + "thread": 10 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2310659, + "thread": 12 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2599633, + "thread": 4 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2783083, + "thread": 28 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 2947160, + "thread": 6 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 3025861, + "thread": 20 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 3231959, + "thread": 17 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 3396740, + "thread": 16 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 3603522, + "thread": 2 + } + }, + { + "amount": "57.041426195", + "slot": { + "period": 3766670, + "thread": 26 + } + }, + { + "amount": "57.041426190", + "slot": { + "period": 3787278, + "thread": 26 + } + } + ], + "AU12tQ1pVTdcyTzUBQoXu7mj8ZdvGcn9fNrVoKvMVqrHTEFv3Qnm4": [ + { + "amount": "104.020874732", + "slot": { + "period": 75152, + "thread": 20 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 317509, + "thread": 13 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 362067, + "thread": 5 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 630719, + "thread": 22 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 696295, + "thread": 7 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 944444, + "thread": 0 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1127991, + "thread": 6 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1198964, + "thread": 21 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1373422, + "thread": 9 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1554004, + "thread": 18 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1709797, + "thread": 1 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1810511, + "thread": 17 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 1997158, + "thread": 24 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2163557, + "thread": 24 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2380880, + "thread": 7 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2506009, + "thread": 8 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2696693, + "thread": 5 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2815118, + "thread": 4 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 2963325, + "thread": 5 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 3210574, + "thread": 28 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 3391715, + "thread": 30 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 3456109, + "thread": 20 + } + }, + { + "amount": "104.020874732", + "slot": { + "period": 3769072, + "thread": 0 + } + }, + { + "amount": "104.020874725", + "slot": { + "period": 3786771, + "thread": 1 + } + } + ], + "AU12tQxdQgHY1VyXuwbU2bTWX66Znegvx7c1MQ6A4Epmeu151CffL": [ + { + "amount": "126.951204640", + "slot": { + "period": 82190, + "thread": 22 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 297259, + "thread": 22 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 403774, + "thread": 11 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 613972, + "thread": 2 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 723917, + "thread": 16 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 888659, + "thread": 12 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1065846, + "thread": 12 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1228236, + "thread": 7 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1444385, + "thread": 21 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1589466, + "thread": 1 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1734095, + "thread": 23 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 1930888, + "thread": 21 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2041167, + "thread": 14 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2180044, + "thread": 25 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2440256, + "thread": 19 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2476884, + "thread": 10 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2673624, + "thread": 21 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 2799155, + "thread": 0 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 3082306, + "thread": 1 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 3254756, + "thread": 23 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 3440780, + "thread": 21 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 3541092, + "thread": 29 + } + }, + { + "amount": "126.951204640", + "slot": { + "period": 3656996, + "thread": 26 + } + }, + { + "amount": "126.951204632", + "slot": { + "period": 3818635, + "thread": 24 + } + } + ], + "AU12tSRGZQfdYLsQUs5DkU6vLVbKaSSgaaTjrQDsUAH1xy4BReWFA": [ + { + "amount": "102.775771757", + "slot": { + "period": 137866, + "thread": 7 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 179056, + "thread": 5 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 483682, + "thread": 12 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 593033, + "thread": 9 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 773525, + "thread": 23 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 899084, + "thread": 8 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1028244, + "thread": 23 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1181341, + "thread": 19 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1432960, + "thread": 2 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1646865, + "thread": 25 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1789560, + "thread": 21 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1892521, + "thread": 3 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 1987134, + "thread": 30 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 2194023, + "thread": 8 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 2313092, + "thread": 8 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 2601677, + "thread": 26 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 2738617, + "thread": 3 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 2922207, + "thread": 6 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 3110215, + "thread": 5 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 3139637, + "thread": 0 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 3292030, + "thread": 1 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 3574574, + "thread": 5 + } + }, + { + "amount": "102.775771757", + "slot": { + "period": 3755466, + "thread": 23 + } + }, + { + "amount": "102.775771748", + "slot": { + "period": 3869498, + "thread": 28 + } + } + ], + "AU12tSvMW92zmTNQNcqggW52XY8iyudgWAc31ev6MhvDF1gXibTKE": [ + { + "amount": "480.924407335", + "slot": { + "period": 128624, + "thread": 16 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 236827, + "thread": 16 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 419463, + "thread": 19 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 620053, + "thread": 19 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 756982, + "thread": 13 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 827913, + "thread": 20 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1106676, + "thread": 7 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1236583, + "thread": 28 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1332002, + "thread": 21 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1563975, + "thread": 19 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1687130, + "thread": 28 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 1877637, + "thread": 26 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2038961, + "thread": 0 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2152578, + "thread": 15 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2351937, + "thread": 16 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2562756, + "thread": 13 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2652929, + "thread": 31 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 2880239, + "thread": 9 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 3119774, + "thread": 1 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 3188625, + "thread": 4 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 3410809, + "thread": 8 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 3469362, + "thread": 4 + } + }, + { + "amount": "480.924407335", + "slot": { + "period": 3640813, + "thread": 22 + } + }, + { + "amount": "480.924407336", + "slot": { + "period": 3837080, + "thread": 24 + } + } + ], + "AU12tUN8P4GehPhUdWhRH4JDeRA1jSC3sXbnffNGAEh3heSADJhSB": [ + { + "amount": "100.433043179", + "slot": { + "period": 143425, + "thread": 0 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 230727, + "thread": 4 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 352780, + "thread": 25 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 522563, + "thread": 22 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 782978, + "thread": 5 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 844478, + "thread": 14 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 985219, + "thread": 29 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 1306725, + "thread": 6 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 1450459, + "thread": 31 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 1506698, + "thread": 21 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 1685534, + "thread": 7 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 1892081, + "thread": 22 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2000550, + "thread": 1 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2215336, + "thread": 25 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2415798, + "thread": 1 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2485864, + "thread": 21 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2718892, + "thread": 3 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 2806792, + "thread": 21 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 3112331, + "thread": 31 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 3266903, + "thread": 18 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 3419930, + "thread": 13 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 3467088, + "thread": 5 + } + }, + { + "amount": "100.433043179", + "slot": { + "period": 3692690, + "thread": 28 + } + }, + { + "amount": "100.433043169", + "slot": { + "period": 3890360, + "thread": 23 + } + } + ], + "AU12tVkhP7KfcVGWm17qBbDs8MzkxVUsyhDBDUHz4wJviGkiNxU6G": [ + { + "amount": "66.777626038", + "slot": { + "period": 164413, + "thread": 18 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 231724, + "thread": 0 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 328999, + "thread": 23 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 515670, + "thread": 31 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 795336, + "thread": 12 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 927437, + "thread": 14 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1052874, + "thread": 14 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1267582, + "thread": 16 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1364604, + "thread": 10 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1616854, + "thread": 3 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1748597, + "thread": 9 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 1938459, + "thread": 20 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2048314, + "thread": 15 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2257116, + "thread": 13 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2404532, + "thread": 18 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2570979, + "thread": 27 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2688794, + "thread": 5 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 2948804, + "thread": 3 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 3006597, + "thread": 6 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 3286339, + "thread": 7 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 3405139, + "thread": 10 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 3598104, + "thread": 10 + } + }, + { + "amount": "66.777626038", + "slot": { + "period": 3769376, + "thread": 0 + } + }, + { + "amount": "66.777626036", + "slot": { + "period": 3801622, + "thread": 7 + } + } + ], + "AU12tVqbZU5EyK6UDeAd4B2VS2vbzADcHGDE7nWw225p3WDYY3Ep5": [ + { + "amount": "416.751837968", + "slot": { + "period": 86424, + "thread": 31 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 304062, + "thread": 8 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 363502, + "thread": 27 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 553722, + "thread": 5 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 733844, + "thread": 8 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 849201, + "thread": 0 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1061369, + "thread": 18 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1263034, + "thread": 0 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1345109, + "thread": 23 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1616773, + "thread": 10 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1781353, + "thread": 24 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 1867424, + "thread": 30 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2061199, + "thread": 21 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2241080, + "thread": 26 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2301431, + "thread": 5 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2589743, + "thread": 23 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2635147, + "thread": 31 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 2924240, + "thread": 22 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 3000998, + "thread": 3 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 3142098, + "thread": 7 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 3310194, + "thread": 5 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 3487596, + "thread": 1 + } + }, + { + "amount": "416.751837968", + "slot": { + "period": 3706021, + "thread": 6 + } + }, + { + "amount": "416.751837972", + "slot": { + "period": 3924347, + "thread": 7 + } + } + ], + "AU12tWq5QiSQbZAN7YzPeYgrq5oryshnWnALiU3HHu6TLgveF9gJp": [ + { + "amount": "52.218979043", + "slot": { + "period": 57917, + "thread": 16 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 222663, + "thread": 6 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 344051, + "thread": 5 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 614875, + "thread": 25 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 815341, + "thread": 20 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 971994, + "thread": 11 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1015197, + "thread": 2 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1176473, + "thread": 16 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1472164, + "thread": 2 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1555939, + "thread": 23 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1674217, + "thread": 16 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1867567, + "thread": 4 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 1992392, + "thread": 8 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 2175980, + "thread": 31 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 2431459, + "thread": 12 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 2570726, + "thread": 23 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 2715915, + "thread": 15 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 2818953, + "thread": 9 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 3070872, + "thread": 10 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 3215816, + "thread": 18 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 3331866, + "thread": 28 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 3534891, + "thread": 15 + } + }, + { + "amount": "52.218979043", + "slot": { + "period": 3700717, + "thread": 14 + } + }, + { + "amount": "52.218979039", + "slot": { + "period": 3842231, + "thread": 15 + } + } + ], + "AU12tX7iZPUi3YrHz9GyMfJsec79t1LpsVZ4iAyqE17uTKkq2uiGj": [ + { + "amount": "216.185006126", + "slot": { + "period": 21720, + "thread": 31 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 322296, + "thread": 4 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 395855, + "thread": 1 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 631889, + "thread": 5 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 716405, + "thread": 20 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 930321, + "thread": 31 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1021757, + "thread": 6 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1292867, + "thread": 0 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1344470, + "thread": 27 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1627515, + "thread": 1 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1687172, + "thread": 6 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 1841143, + "thread": 2 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2096038, + "thread": 22 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2220001, + "thread": 18 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2341907, + "thread": 0 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2478649, + "thread": 12 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2709634, + "thread": 25 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 2902357, + "thread": 17 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 3037618, + "thread": 2 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 3248441, + "thread": 17 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 3295834, + "thread": 10 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 3587149, + "thread": 5 + } + }, + { + "amount": "216.185006126", + "slot": { + "period": 3625311, + "thread": 11 + } + }, + { + "amount": "216.185006127", + "slot": { + "period": 3896208, + "thread": 26 + } + } + ], + "AU12tXa4aoTUH34uvkjUAt9YmrQVWrweCbvzaT25fSGf9jNepuUJA": [ + { + "amount": "168.905353274", + "slot": { + "period": 113758, + "thread": 13 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 179546, + "thread": 8 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 488097, + "thread": 19 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 528130, + "thread": 3 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 654590, + "thread": 26 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 862675, + "thread": 2 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1108706, + "thread": 10 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1248201, + "thread": 10 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1428491, + "thread": 22 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1561685, + "thread": 26 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1714962, + "thread": 14 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 1905173, + "thread": 14 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2134819, + "thread": 2 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2210194, + "thread": 12 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2371566, + "thread": 3 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2495343, + "thread": 7 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2763784, + "thread": 27 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 2909142, + "thread": 2 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 3050634, + "thread": 26 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 3284560, + "thread": 10 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 3374069, + "thread": 16 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 3510333, + "thread": 28 + } + }, + { + "amount": "168.905353274", + "slot": { + "period": 3654679, + "thread": 18 + } + }, + { + "amount": "168.905353279", + "slot": { + "period": 3893205, + "thread": 3 + } + } + ], + "AU12tXiyPfJKt4nyz6rkuQJqeQ6ReGer6Wm7iV75SXw7911zp6VrQ": [ + { + "amount": "68.427639658", + "slot": { + "period": 110378, + "thread": 1 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 282360, + "thread": 5 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 468860, + "thread": 9 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 627967, + "thread": 7 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 656681, + "thread": 31 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 821201, + "thread": 29 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1091495, + "thread": 10 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1249722, + "thread": 22 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1395299, + "thread": 18 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1487272, + "thread": 17 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1649964, + "thread": 22 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 1936289, + "thread": 14 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2051460, + "thread": 9 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2176082, + "thread": 5 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2432925, + "thread": 11 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2577855, + "thread": 25 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2644229, + "thread": 2 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 2916288, + "thread": 3 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 3024219, + "thread": 16 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 3127749, + "thread": 1 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 3390095, + "thread": 5 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 3538713, + "thread": 30 + } + }, + { + "amount": "68.427639658", + "slot": { + "period": 3730573, + "thread": 15 + } + }, + { + "amount": "68.427639653", + "slot": { + "period": 3832084, + "thread": 13 + } + } + ], + "AU12tYG4RhSr8wpL1HDDdWUrUDpWBWPPAaubjaQyU48iTEoSWDtrg": [ + { + "amount": "172.546286452", + "slot": { + "period": 28521, + "thread": 22 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 208108, + "thread": 10 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 466412, + "thread": 12 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 518767, + "thread": 14 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 702053, + "thread": 17 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 885434, + "thread": 19 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1031396, + "thread": 23 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1206534, + "thread": 10 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1439988, + "thread": 3 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1643346, + "thread": 22 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1667361, + "thread": 29 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 1828960, + "thread": 9 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2098529, + "thread": 2 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2279986, + "thread": 25 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2449112, + "thread": 10 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2577133, + "thread": 15 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2726043, + "thread": 20 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2934318, + "thread": 12 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 2953888, + "thread": 10 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 3199244, + "thread": 25 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 3352391, + "thread": 31 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 3474603, + "thread": 6 + } + }, + { + "amount": "172.546286452", + "slot": { + "period": 3642552, + "thread": 27 + } + }, + { + "amount": "172.546286461", + "slot": { + "period": 3887301, + "thread": 3 + } + } + ], + "AU12tYiDnLE9YBZcuDcMY9oT133jcCTRFA5ixw77vLF9TNHAkAQLv": [ + { + "amount": "333.178901355", + "slot": { + "period": 101384, + "thread": 6 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 249876, + "thread": 21 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 331332, + "thread": 3 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 578640, + "thread": 28 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 705471, + "thread": 0 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 854554, + "thread": 29 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1057149, + "thread": 15 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1283037, + "thread": 22 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1409704, + "thread": 25 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1626117, + "thread": 18 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1777183, + "thread": 23 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1814993, + "thread": 14 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 1986789, + "thread": 20 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2271124, + "thread": 3 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2343908, + "thread": 17 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2474286, + "thread": 28 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2690198, + "thread": 2 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2858698, + "thread": 23 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 2967686, + "thread": 12 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 3184479, + "thread": 24 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 3369863, + "thread": 0 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 3512867, + "thread": 23 + } + }, + { + "amount": "333.178901355", + "slot": { + "period": 3724142, + "thread": 21 + } + }, + { + "amount": "333.178901363", + "slot": { + "period": 3818570, + "thread": 0 + } + } + ], + "AU12tZCvmkhfDCp6DqSjgp7xyAKqpezLbMqfXRL5QH2JVFPbJQLBk": [ + { + "amount": "382.948520661", + "slot": { + "period": 80298, + "thread": 11 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 255447, + "thread": 0 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 487422, + "thread": 14 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 638004, + "thread": 20 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 681736, + "thread": 17 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 893749, + "thread": 22 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1056061, + "thread": 20 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1198762, + "thread": 0 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1413275, + "thread": 24 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1641867, + "thread": 31 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1738765, + "thread": 23 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 1855112, + "thread": 21 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2120354, + "thread": 16 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2270109, + "thread": 9 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2336322, + "thread": 29 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2498655, + "thread": 18 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2739312, + "thread": 24 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 2871999, + "thread": 6 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 3085998, + "thread": 14 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 3225535, + "thread": 25 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 3306743, + "thread": 3 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 3477438, + "thread": 1 + } + }, + { + "amount": "382.948520661", + "slot": { + "period": 3623220, + "thread": 26 + } + }, + { + "amount": "382.948520654", + "slot": { + "period": 3809754, + "thread": 1 + } + } + ], + "AU12tZKbA2isad2toik1nohiNhg4BdHxMzU1w6WduCwiC7BhstmZa": [ + { + "amount": "307.733099681", + "slot": { + "period": 149412, + "thread": 5 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 218090, + "thread": 11 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 349307, + "thread": 2 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 610761, + "thread": 16 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 739460, + "thread": 25 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 861472, + "thread": 14 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1105834, + "thread": 25 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1222459, + "thread": 18 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1334864, + "thread": 9 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1584710, + "thread": 23 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1695562, + "thread": 8 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 1814923, + "thread": 6 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2127557, + "thread": 7 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2217721, + "thread": 14 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2321308, + "thread": 11 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2511773, + "thread": 25 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2784158, + "thread": 15 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 2824409, + "thread": 12 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 3108018, + "thread": 12 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 3278945, + "thread": 6 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 3390670, + "thread": 16 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 3517247, + "thread": 29 + } + }, + { + "amount": "307.733099681", + "slot": { + "period": 3747012, + "thread": 18 + } + }, + { + "amount": "307.733099682", + "slot": { + "period": 3793242, + "thread": 15 + } + } + ], + "AU12ta2RnZ7GJk4c5g4jHbj2epL7XcjzU17vcKTuNkkS7BqH5WbwC": [ + { + "amount": "143.212649974", + "slot": { + "period": 123453, + "thread": 13 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 322891, + "thread": 22 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 375673, + "thread": 27 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 643793, + "thread": 19 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 780939, + "thread": 27 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 828814, + "thread": 9 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1059429, + "thread": 18 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1288035, + "thread": 24 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1421697, + "thread": 22 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1633095, + "thread": 14 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1759618, + "thread": 11 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 1922439, + "thread": 27 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2114298, + "thread": 14 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2256442, + "thread": 20 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2367598, + "thread": 5 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2583009, + "thread": 10 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2677623, + "thread": 7 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 2859288, + "thread": 8 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 3037939, + "thread": 23 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 3124243, + "thread": 27 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 3370866, + "thread": 28 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 3464561, + "thread": 24 + } + }, + { + "amount": "143.212649974", + "slot": { + "period": 3722776, + "thread": 14 + } + }, + { + "amount": "143.212649967", + "slot": { + "period": 3819518, + "thread": 23 + } + } + ], + "AU12taFffpEr3UMHt58UtEXq29kZ1e4WwiPodEa9AAkxTVsxSxyku": [ + { + "amount": "447.894589987", + "slot": { + "period": 144729, + "thread": 8 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 169834, + "thread": 26 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 358880, + "thread": 22 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 623889, + "thread": 31 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 659024, + "thread": 27 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 938983, + "thread": 0 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1144055, + "thread": 25 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1223991, + "thread": 5 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1372620, + "thread": 5 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1637151, + "thread": 16 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1677977, + "thread": 4 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 1919129, + "thread": 9 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2059593, + "thread": 21 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2272439, + "thread": 27 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2374679, + "thread": 23 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2480121, + "thread": 5 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2766475, + "thread": 26 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2913023, + "thread": 2 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 2958941, + "thread": 23 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 3196315, + "thread": 27 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 3378033, + "thread": 4 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 3475974, + "thread": 13 + } + }, + { + "amount": "447.894589987", + "slot": { + "period": 3728806, + "thread": 19 + } + }, + { + "amount": "447.894589993", + "slot": { + "period": 3923362, + "thread": 31 + } + } + ], + "AU12taa4dq8xAG3jf821gGyXgWhJybc224nidcZnegVsUfmd6t9bN": [ + { + "amount": "475.231128362", + "slot": { + "period": 127558, + "thread": 29 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 199471, + "thread": 7 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 383907, + "thread": 3 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 640606, + "thread": 12 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 723241, + "thread": 29 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 964760, + "thread": 21 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1100222, + "thread": 0 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1238935, + "thread": 19 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1341938, + "thread": 14 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1501771, + "thread": 19 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1724832, + "thread": 18 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 1930681, + "thread": 19 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2047530, + "thread": 2 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2279441, + "thread": 15 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2452478, + "thread": 2 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2476705, + "thread": 17 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2696795, + "thread": 29 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 2868466, + "thread": 25 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 3037489, + "thread": 20 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 3146631, + "thread": 11 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 3347575, + "thread": 0 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 3590315, + "thread": 6 + } + }, + { + "amount": "475.231128362", + "slot": { + "period": 3682872, + "thread": 4 + } + }, + { + "amount": "475.231128370", + "slot": { + "period": 3878348, + "thread": 20 + } + } + ], + "AU12tam1nte45ccXFJt6wP5pNhyHKfw9nCFv8oh4FfmXaQekGnte5": [ + { + "amount": "142.296943791", + "slot": { + "period": 64399, + "thread": 11 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 265892, + "thread": 2 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 362851, + "thread": 26 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 562402, + "thread": 9 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 760064, + "thread": 20 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 954749, + "thread": 3 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1098910, + "thread": 16 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1278502, + "thread": 19 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1369878, + "thread": 14 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1503043, + "thread": 27 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1664363, + "thread": 25 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 1922705, + "thread": 0 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2106255, + "thread": 15 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2223868, + "thread": 0 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2344001, + "thread": 26 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2560232, + "thread": 22 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2768819, + "thread": 22 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 2867231, + "thread": 0 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 3017106, + "thread": 25 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 3193522, + "thread": 4 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 3311747, + "thread": 27 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 3534414, + "thread": 20 + } + }, + { + "amount": "142.296943791", + "slot": { + "period": 3639389, + "thread": 29 + } + }, + { + "amount": "142.296943792", + "slot": { + "period": 3913629, + "thread": 15 + } + } + ], + "AU12tb94CxNcPADgjaBSRCgkomLndxZLMYZTZdZxxiLpUThoBW18v": [ + { + "amount": "160.685397323", + "slot": { + "period": 146551, + "thread": 11 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 291767, + "thread": 19 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 408935, + "thread": 14 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 602531, + "thread": 2 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 772404, + "thread": 3 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 943116, + "thread": 22 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1144243, + "thread": 26 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1176060, + "thread": 14 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1456458, + "thread": 30 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1640369, + "thread": 28 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1722782, + "thread": 14 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1871502, + "thread": 23 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 1989616, + "thread": 8 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 2220774, + "thread": 13 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 2356878, + "thread": 7 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 2597091, + "thread": 28 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 2679691, + "thread": 4 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 2872609, + "thread": 12 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 3000757, + "thread": 24 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 3282417, + "thread": 25 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 3390622, + "thread": 22 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 3539099, + "thread": 0 + } + }, + { + "amount": "160.685397323", + "slot": { + "period": 3715958, + "thread": 8 + } + }, + { + "amount": "160.685397312", + "slot": { + "period": 3782590, + "thread": 8 + } + } + ], + "AU12tcHZoewawoN171K4TdTR4NqN19AuQi1vw6oVgP8WT5vhQeiWf": [ + { + "amount": "355.628745984", + "slot": { + "period": 46174, + "thread": 27 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 198965, + "thread": 0 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 470291, + "thread": 20 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 632761, + "thread": 27 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 660078, + "thread": 26 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 934153, + "thread": 14 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1110905, + "thread": 11 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1223916, + "thread": 1 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1369309, + "thread": 14 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1484192, + "thread": 20 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1797309, + "thread": 29 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 1838933, + "thread": 10 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2134759, + "thread": 24 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2273407, + "thread": 6 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2361756, + "thread": 3 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2623073, + "thread": 14 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2781062, + "thread": 7 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2850141, + "thread": 31 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 2954550, + "thread": 29 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 3183022, + "thread": 20 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 3311925, + "thread": 3 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 3517961, + "thread": 12 + } + }, + { + "amount": "355.628745984", + "slot": { + "period": 3766590, + "thread": 4 + } + }, + { + "amount": "355.628745977", + "slot": { + "period": 3942065, + "thread": 26 + } + } + ], + "AU12te2kvij74zjLpBhtnv1LiHy5tmPbHq9decrdyx2yRqg2Kp74B": [ + { + "amount": "241.306952274", + "slot": { + "period": 155733, + "thread": 26 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 314341, + "thread": 17 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 338149, + "thread": 1 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 587049, + "thread": 26 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 728006, + "thread": 12 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 905603, + "thread": 14 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1075832, + "thread": 13 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1258885, + "thread": 20 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1469987, + "thread": 7 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1615625, + "thread": 14 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1659682, + "thread": 8 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 1889219, + "thread": 21 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2129674, + "thread": 19 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2278970, + "thread": 5 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2461439, + "thread": 6 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2490848, + "thread": 4 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2755808, + "thread": 9 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2922597, + "thread": 30 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 2996195, + "thread": 30 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 3225982, + "thread": 22 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 3401321, + "thread": 7 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 3608430, + "thread": 8 + } + }, + { + "amount": "241.306952274", + "slot": { + "period": 3722456, + "thread": 26 + } + }, + { + "amount": "241.306952276", + "slot": { + "period": 3866684, + "thread": 5 + } + } + ], + "AU12tfGeDKjzgGKs47Yhve8DFU5RuYgvdm1fuoq7D57j192wt4QmH": [ + { + "amount": "95.583409345", + "slot": { + "period": 12659, + "thread": 10 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 231894, + "thread": 12 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 479611, + "thread": 14 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 600465, + "thread": 26 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 654006, + "thread": 3 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 895071, + "thread": 30 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1046392, + "thread": 23 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1311472, + "thread": 13 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1318910, + "thread": 16 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1490992, + "thread": 16 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1740152, + "thread": 24 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 1972123, + "thread": 3 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2073664, + "thread": 18 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2239046, + "thread": 16 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2441728, + "thread": 24 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2582118, + "thread": 13 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2700205, + "thread": 5 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 2850783, + "thread": 30 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 3116102, + "thread": 14 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 3256525, + "thread": 2 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 3429756, + "thread": 26 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 3476398, + "thread": 20 + } + }, + { + "amount": "95.583409345", + "slot": { + "period": 3638364, + "thread": 31 + } + }, + { + "amount": "95.583409338", + "slot": { + "period": 3869332, + "thread": 14 + } + } + ], + "AU12tfTWQ3edURKaAE2fpfyFwwVXy8bvPcnkTcHSEgVxzMUcM1syj": [ + { + "amount": "341.804999516", + "slot": { + "period": 39287, + "thread": 12 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 240177, + "thread": 15 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 433174, + "thread": 9 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 541002, + "thread": 0 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 707181, + "thread": 16 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 850928, + "thread": 9 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1050735, + "thread": 20 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1178802, + "thread": 31 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1364947, + "thread": 19 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1534809, + "thread": 22 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1794715, + "thread": 5 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 1881740, + "thread": 26 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2005809, + "thread": 31 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2236573, + "thread": 9 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2419016, + "thread": 9 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2478530, + "thread": 25 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2786033, + "thread": 26 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 2825515, + "thread": 8 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 3088478, + "thread": 8 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 3183639, + "thread": 12 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 3419049, + "thread": 30 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 3572667, + "thread": 5 + } + }, + { + "amount": "341.804999516", + "slot": { + "period": 3642826, + "thread": 13 + } + }, + { + "amount": "341.804999507", + "slot": { + "period": 3924177, + "thread": 25 + } + } + ], + "AU12tfYoehpPf9hF9T9T5rtqecmxJd5BLBmSKLq1G6kr3kdtdCqED": [ + { + "amount": "86.330162633", + "slot": { + "period": 79034, + "thread": 5 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 314417, + "thread": 16 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 408000, + "thread": 28 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 577695, + "thread": 8 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 743574, + "thread": 3 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 920396, + "thread": 11 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1052792, + "thread": 27 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1231597, + "thread": 25 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1453528, + "thread": 28 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1599980, + "thread": 13 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1798845, + "thread": 10 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 1814877, + "thread": 23 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2080695, + "thread": 17 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2145966, + "thread": 24 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2406473, + "thread": 23 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2542557, + "thread": 12 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2631386, + "thread": 30 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 2953399, + "thread": 5 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 3008439, + "thread": 2 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 3123067, + "thread": 0 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 3350070, + "thread": 5 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 3594327, + "thread": 13 + } + }, + { + "amount": "86.330162633", + "slot": { + "period": 3629237, + "thread": 9 + } + }, + { + "amount": "86.330162630", + "slot": { + "period": 3789905, + "thread": 3 + } + } + ], + "AU12tgWGsLspoZYHRZXQ23c9YWEo63beWqQPkRWuVPiRDzsxNeK2M": [ + { + "amount": "55.268207704", + "slot": { + "period": 60396, + "thread": 30 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 215572, + "thread": 5 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 349630, + "thread": 25 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 503386, + "thread": 10 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 701662, + "thread": 14 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 875704, + "thread": 19 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1061924, + "thread": 18 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1302655, + "thread": 24 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1405055, + "thread": 21 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1555024, + "thread": 15 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1661331, + "thread": 15 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 1974062, + "thread": 6 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2129179, + "thread": 13 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2195768, + "thread": 25 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2318247, + "thread": 13 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2488404, + "thread": 2 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2698588, + "thread": 13 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 2816746, + "thread": 18 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 3097160, + "thread": 13 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 3285499, + "thread": 6 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 3313524, + "thread": 31 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 3550369, + "thread": 10 + } + }, + { + "amount": "55.268207704", + "slot": { + "period": 3635910, + "thread": 0 + } + }, + { + "amount": "55.268207693", + "slot": { + "period": 3881263, + "thread": 31 + } + } + ], + "AU12tgXBDYv8JJQLsGqUHV4oqNE5ioJpcQJvM26DAc1nE2EwxB3kZ": [ + { + "amount": "165.992439392", + "slot": { + "period": 155738, + "thread": 27 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 290760, + "thread": 0 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 461580, + "thread": 7 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 618459, + "thread": 0 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 817480, + "thread": 5 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 967052, + "thread": 0 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 995002, + "thread": 15 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 1279308, + "thread": 26 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 1352896, + "thread": 27 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 1578846, + "thread": 29 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 1748105, + "thread": 31 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 1893524, + "thread": 25 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2003503, + "thread": 20 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2240546, + "thread": 22 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2431256, + "thread": 16 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2494930, + "thread": 27 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2633883, + "thread": 8 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 2834910, + "thread": 17 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 3023038, + "thread": 4 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 3255794, + "thread": 19 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 3409543, + "thread": 9 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 3585334, + "thread": 5 + } + }, + { + "amount": "165.992439392", + "slot": { + "period": 3634132, + "thread": 22 + } + }, + { + "amount": "165.992439381", + "slot": { + "period": 3906661, + "thread": 25 + } + } + ], + "AU12tgfWGcfZoeiU2UvbrkepCy1k2W1t2NCEJ96VFgz2EQN1BrFvh": [ + { + "amount": "136.004026820", + "slot": { + "period": 148071, + "thread": 6 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 272751, + "thread": 2 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 398871, + "thread": 15 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 651358, + "thread": 12 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 743299, + "thread": 6 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 881586, + "thread": 31 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1010384, + "thread": 2 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1168345, + "thread": 2 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1343502, + "thread": 31 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1540597, + "thread": 11 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1728683, + "thread": 4 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 1858730, + "thread": 20 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2000420, + "thread": 15 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2187814, + "thread": 1 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2377524, + "thread": 7 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2475830, + "thread": 29 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2660361, + "thread": 12 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2811054, + "thread": 31 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 2956468, + "thread": 17 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 3260503, + "thread": 3 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 3399364, + "thread": 9 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 3573844, + "thread": 13 + } + }, + { + "amount": "136.004026820", + "slot": { + "period": 3768997, + "thread": 9 + } + }, + { + "amount": "136.004026817", + "slot": { + "period": 3843048, + "thread": 7 + } + } + ], + "AU12thBvKQB3pYn1fypsLD4jREkpQePdVWGHoLH9WLsK9Vztu8roM": [ + { + "amount": "57.201013960", + "slot": { + "period": 11844, + "thread": 1 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 314625, + "thread": 10 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 398094, + "thread": 6 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 514030, + "thread": 5 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 782713, + "thread": 27 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 866727, + "thread": 2 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 996238, + "thread": 31 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 1275058, + "thread": 29 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 1400617, + "thread": 11 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 1587885, + "thread": 21 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 1721335, + "thread": 30 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 1935967, + "thread": 23 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2049192, + "thread": 15 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2266218, + "thread": 5 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2411023, + "thread": 16 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2484854, + "thread": 25 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2722120, + "thread": 23 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2811054, + "thread": 4 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 2999684, + "thread": 9 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 3163522, + "thread": 27 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 3349146, + "thread": 28 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 3612479, + "thread": 5 + } + }, + { + "amount": "57.201013960", + "slot": { + "period": 3778240, + "thread": 14 + } + }, + { + "amount": "57.201013949", + "slot": { + "period": 3792639, + "thread": 30 + } + } + ], + "AU12tj2DsH7CXuxUhTEYnYpkqQW4mPxGScyKUaUogsYfp6yTryoMS": [ + { + "amount": "123.239511825", + "slot": { + "period": 127926, + "thread": 13 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 291446, + "thread": 14 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 335505, + "thread": 7 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 640823, + "thread": 10 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 798235, + "thread": 6 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 850005, + "thread": 14 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1038215, + "thread": 0 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1233473, + "thread": 23 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1443743, + "thread": 25 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1546453, + "thread": 6 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1793746, + "thread": 1 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 1950192, + "thread": 26 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2142938, + "thread": 8 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2289684, + "thread": 18 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2316218, + "thread": 1 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2529473, + "thread": 13 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2756122, + "thread": 6 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 2931793, + "thread": 1 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 3044924, + "thread": 4 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 3146263, + "thread": 15 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 3412482, + "thread": 13 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 3584482, + "thread": 7 + } + }, + { + "amount": "123.239511825", + "slot": { + "period": 3664891, + "thread": 12 + } + }, + { + "amount": "123.239511826", + "slot": { + "period": 3863499, + "thread": 17 + } + } + ], + "AU12tjEss5hyMhYx1KxqQtJDJKN6BpWSwBppekW2yD9sNMNcMoo15": [ + { + "amount": "61.588642699", + "slot": { + "period": 158534, + "thread": 13 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 188833, + "thread": 26 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 439602, + "thread": 7 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 579648, + "thread": 19 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 771438, + "thread": 19 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 913003, + "thread": 1 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1121575, + "thread": 5 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1232485, + "thread": 20 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1475235, + "thread": 5 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1589596, + "thread": 1 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1736868, + "thread": 29 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 1910754, + "thread": 31 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2004360, + "thread": 18 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2276960, + "thread": 31 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2393198, + "thread": 24 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2598898, + "thread": 27 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2690882, + "thread": 23 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 2812557, + "thread": 26 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 3018813, + "thread": 6 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 3174944, + "thread": 8 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 3395356, + "thread": 28 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 3565909, + "thread": 22 + } + }, + { + "amount": "61.588642699", + "slot": { + "period": 3776061, + "thread": 24 + } + }, + { + "amount": "61.588642693", + "slot": { + "period": 3885537, + "thread": 26 + } + } + ], + "AU12tjqifcoSKTQJHXuFxWHsPWnMZJMd6hNvhmNa2nVzv1n6se4ft": [ + { + "amount": "172.288533553", + "slot": { + "period": 45886, + "thread": 31 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 314165, + "thread": 20 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 383246, + "thread": 23 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 576137, + "thread": 7 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 671046, + "thread": 19 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 920374, + "thread": 5 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1031252, + "thread": 30 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1252663, + "thread": 2 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1398439, + "thread": 25 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1576616, + "thread": 9 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1742368, + "thread": 20 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 1811285, + "thread": 6 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2031123, + "thread": 21 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2231074, + "thread": 29 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2381596, + "thread": 3 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2494322, + "thread": 9 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2726197, + "thread": 20 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 2946617, + "thread": 5 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 3021985, + "thread": 5 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 3211047, + "thread": 29 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 3447399, + "thread": 2 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 3469808, + "thread": 19 + } + }, + { + "amount": "172.288533553", + "slot": { + "period": 3696821, + "thread": 0 + } + }, + { + "amount": "172.288533562", + "slot": { + "period": 3837933, + "thread": 29 + } + } + ], + "AU12tjrDC8Fk6JfNxDYhSEcyHi4knRLGvkCMkowpkezRqhe9WxJ8R": [ + { + "amount": "55.517796271", + "slot": { + "period": 152378, + "thread": 23 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 200636, + "thread": 8 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 441335, + "thread": 15 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 612732, + "thread": 30 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 656610, + "thread": 2 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 982001, + "thread": 27 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 998688, + "thread": 23 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 1178514, + "thread": 13 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 1361192, + "thread": 3 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 1495488, + "thread": 16 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 1747263, + "thread": 11 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 1953771, + "thread": 4 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2009302, + "thread": 4 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2274439, + "thread": 23 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2430807, + "thread": 4 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2571591, + "thread": 12 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2772595, + "thread": 26 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 2836519, + "thread": 6 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 3045395, + "thread": 7 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 3223543, + "thread": 22 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 3439813, + "thread": 10 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 3481788, + "thread": 28 + } + }, + { + "amount": "55.517796271", + "slot": { + "period": 3662906, + "thread": 16 + } + }, + { + "amount": "55.517796260", + "slot": { + "period": 3809999, + "thread": 6 + } + } + ], + "AU12tk8CFmq8S2JYZJaPpE2wpSpjpveUERHv23aFTrRVAAYQmTwzL": [ + { + "amount": "163.227743149", + "slot": { + "period": 97138, + "thread": 24 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 201470, + "thread": 18 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 398948, + "thread": 26 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 604414, + "thread": 17 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 793994, + "thread": 21 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 915680, + "thread": 9 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1121177, + "thread": 0 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1251118, + "thread": 0 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1339270, + "thread": 22 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1483040, + "thread": 12 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1707490, + "thread": 24 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 1898207, + "thread": 30 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2101211, + "thread": 12 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2236470, + "thread": 28 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2320386, + "thread": 8 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2466998, + "thread": 6 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2777896, + "thread": 20 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 2795153, + "thread": 22 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 3036348, + "thread": 28 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 3224038, + "thread": 20 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 3384210, + "thread": 19 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 3606687, + "thread": 21 + } + }, + { + "amount": "163.227743149", + "slot": { + "period": 3742772, + "thread": 13 + } + }, + { + "amount": "163.227743159", + "slot": { + "period": 3935064, + "thread": 25 + } + } + ], + "AU12tkVR91CKJNdPANsxT4jDy7VD8Vyy5GmxzfprRSWxGYfiLZDPS": [ + { + "amount": "148.573165774", + "slot": { + "period": 124579, + "thread": 8 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 182247, + "thread": 3 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 328944, + "thread": 7 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 624328, + "thread": 16 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 729998, + "thread": 20 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 933177, + "thread": 12 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1138884, + "thread": 13 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1260519, + "thread": 28 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1461949, + "thread": 16 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1639420, + "thread": 20 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1778162, + "thread": 25 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 1811539, + "thread": 11 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2064124, + "thread": 28 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2199321, + "thread": 11 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2428628, + "thread": 28 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2559771, + "thread": 10 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2737431, + "thread": 19 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2866864, + "thread": 5 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 2979735, + "thread": 5 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 3223438, + "thread": 8 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 3411789, + "thread": 13 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 3610225, + "thread": 17 + } + }, + { + "amount": "148.573165774", + "slot": { + "period": 3622219, + "thread": 19 + } + }, + { + "amount": "148.573165777", + "slot": { + "period": 3907136, + "thread": 10 + } + } + ], + "AU12tkgi23V6ezLx77Jry1sqNnvoVYbTboEYTFajGeHbxAs6qGMMv": [ + { + "amount": "493.056228346", + "slot": { + "period": 25659, + "thread": 22 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 185732, + "thread": 18 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 373210, + "thread": 31 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 601758, + "thread": 2 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 716698, + "thread": 0 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 858838, + "thread": 17 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1103050, + "thread": 14 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1163959, + "thread": 3 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1410506, + "thread": 11 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1550817, + "thread": 17 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1701993, + "thread": 21 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 1870764, + "thread": 8 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2089892, + "thread": 10 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2221289, + "thread": 19 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2334283, + "thread": 2 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2555818, + "thread": 2 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2699514, + "thread": 13 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2878446, + "thread": 7 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 2997726, + "thread": 4 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 3239765, + "thread": 18 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 3293598, + "thread": 31 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 3616024, + "thread": 21 + } + }, + { + "amount": "493.056228346", + "slot": { + "period": 3765415, + "thread": 22 + } + }, + { + "amount": "493.056228356", + "slot": { + "period": 3914879, + "thread": 22 + } + } + ], + "AU12tnBuxMXy1XUhKDT66BhhgSR9jgyfayY6EzdB1xUJ9kHJ3XbHA": [ + { + "amount": "131.549582310", + "slot": { + "period": 36218, + "thread": 27 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 224001, + "thread": 27 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 385742, + "thread": 15 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 628153, + "thread": 16 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 784163, + "thread": 8 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 879389, + "thread": 2 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1027449, + "thread": 10 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1291019, + "thread": 23 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1477496, + "thread": 9 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1499961, + "thread": 10 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1753322, + "thread": 8 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 1939281, + "thread": 14 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2078491, + "thread": 13 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2145126, + "thread": 24 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2408029, + "thread": 8 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2476886, + "thread": 20 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2779414, + "thread": 31 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 2950139, + "thread": 25 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 3041067, + "thread": 19 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 3144392, + "thread": 14 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 3386201, + "thread": 5 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 3485956, + "thread": 19 + } + }, + { + "amount": "131.549582310", + "slot": { + "period": 3738229, + "thread": 4 + } + }, + { + "amount": "131.549582308", + "slot": { + "period": 3872984, + "thread": 19 + } + } + ], + "AU12tnRpVWQjgC2mwSRgacCh2joKPu7hyxLMEL9sxr7e7otojrmaq": [ + { + "amount": "150.527410613", + "slot": { + "period": 152264, + "thread": 22 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 252409, + "thread": 27 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 489546, + "thread": 16 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 571672, + "thread": 3 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 704915, + "thread": 2 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 886191, + "thread": 23 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1045748, + "thread": 28 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1154920, + "thread": 18 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1343299, + "thread": 24 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1486792, + "thread": 20 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1676508, + "thread": 12 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 1935627, + "thread": 28 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2124689, + "thread": 17 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2256214, + "thread": 30 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2460157, + "thread": 11 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2608254, + "thread": 1 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2625302, + "thread": 10 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 2801867, + "thread": 6 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 3080806, + "thread": 4 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 3218506, + "thread": 31 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 3414830, + "thread": 6 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 3458135, + "thread": 19 + } + }, + { + "amount": "150.527410613", + "slot": { + "period": 3715953, + "thread": 21 + } + }, + { + "amount": "150.527410612", + "slot": { + "period": 3896592, + "thread": 9 + } + } + ], + "AU12tp98HL3zrCaqGGmkRyvgwMCJbMmzTSkmjbMJ74WJJvRVGavie": [ + { + "amount": "162.510209802", + "slot": { + "period": 72401, + "thread": 23 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 254506, + "thread": 2 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 451231, + "thread": 22 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 653254, + "thread": 25 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 783654, + "thread": 16 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 824114, + "thread": 16 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1037601, + "thread": 22 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1167157, + "thread": 5 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1473043, + "thread": 6 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1506780, + "thread": 4 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1716637, + "thread": 11 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 1935256, + "thread": 24 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2075044, + "thread": 10 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2257142, + "thread": 29 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2360746, + "thread": 29 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2601250, + "thread": 26 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2681708, + "thread": 26 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 2817472, + "thread": 14 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 3102920, + "thread": 28 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 3219611, + "thread": 1 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 3313418, + "thread": 16 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 3591327, + "thread": 25 + } + }, + { + "amount": "162.510209802", + "slot": { + "period": 3632471, + "thread": 12 + } + }, + { + "amount": "162.510209808", + "slot": { + "period": 3903452, + "thread": 5 + } + } + ], + "AU12tq9SFRp7nzPeKxFJowpDkDuPPv3zkKuh2Y7oWNhj99WvUSTpo": [ + { + "amount": "77.601729642", + "slot": { + "period": 155369, + "thread": 13 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 226771, + "thread": 3 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 332160, + "thread": 25 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 557249, + "thread": 5 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 669900, + "thread": 27 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 946800, + "thread": 27 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1131129, + "thread": 23 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1152941, + "thread": 25 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1426983, + "thread": 16 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1622285, + "thread": 17 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1655548, + "thread": 7 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1961102, + "thread": 19 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 1976541, + "thread": 16 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2243178, + "thread": 22 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2357241, + "thread": 24 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2499557, + "thread": 29 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2658925, + "thread": 28 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2825168, + "thread": 31 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 2998700, + "thread": 16 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 3145456, + "thread": 18 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 3414234, + "thread": 10 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 3580513, + "thread": 8 + } + }, + { + "amount": "77.601729642", + "slot": { + "period": 3772104, + "thread": 0 + } + }, + { + "amount": "77.601729635", + "slot": { + "period": 3832007, + "thread": 11 + } + } + ], + "AU12tqTXQCT3PZ4goKT9iztQMyMrzt3jrnwTzTy5gNeRGmXfztdux": [ + { + "amount": "90.809918307", + "slot": { + "period": 84917, + "thread": 21 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 265067, + "thread": 29 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 351007, + "thread": 4 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 507736, + "thread": 5 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 749765, + "thread": 12 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 903640, + "thread": 26 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1037103, + "thread": 21 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1245517, + "thread": 25 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1406865, + "thread": 21 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1570366, + "thread": 9 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1807211, + "thread": 10 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1912408, + "thread": 18 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 1991861, + "thread": 29 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 2238132, + "thread": 14 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 2421411, + "thread": 10 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 2498529, + "thread": 24 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 2749780, + "thread": 30 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 2827765, + "thread": 8 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 3016291, + "thread": 8 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 3124284, + "thread": 9 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 3420905, + "thread": 25 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 3457968, + "thread": 19 + } + }, + { + "amount": "90.809918307", + "slot": { + "period": 3763569, + "thread": 25 + } + }, + { + "amount": "90.809918317", + "slot": { + "period": 3917004, + "thread": 8 + } + } + ], + "AU12tqWQLxEnhCaBN6xT5VgBDvoiLAvutNBcQoP4BBBtWbNMgvz9K": [ + { + "amount": "76.699680409", + "slot": { + "period": 71989, + "thread": 4 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 295615, + "thread": 10 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 454054, + "thread": 31 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 612207, + "thread": 11 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 670698, + "thread": 15 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 926828, + "thread": 5 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 999707, + "thread": 31 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 1266259, + "thread": 28 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 1372186, + "thread": 16 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 1509699, + "thread": 23 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 1798136, + "thread": 10 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 1878401, + "thread": 19 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2008854, + "thread": 31 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2161116, + "thread": 26 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2426962, + "thread": 16 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2512387, + "thread": 22 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2770226, + "thread": 12 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2826303, + "thread": 30 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 2962356, + "thread": 29 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 3271106, + "thread": 7 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 3442826, + "thread": 28 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 3528730, + "thread": 2 + } + }, + { + "amount": "76.699680409", + "slot": { + "period": 3679575, + "thread": 4 + } + }, + { + "amount": "76.699680418", + "slot": { + "period": 3828848, + "thread": 12 + } + } + ], + "AU12tqxYHyysUVdP9ohcjC5BXgC9zzVN7f9eWUFFtPQEQELpxqbuj": [ + { + "amount": "108.613726307", + "slot": { + "period": 12789, + "thread": 23 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 315296, + "thread": 2 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 344781, + "thread": 22 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 588943, + "thread": 25 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 790427, + "thread": 29 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 949407, + "thread": 23 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1102990, + "thread": 20 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1313902, + "thread": 26 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1469366, + "thread": 20 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1589405, + "thread": 6 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1681546, + "thread": 6 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 1898666, + "thread": 15 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2125810, + "thread": 7 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2226513, + "thread": 17 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2306367, + "thread": 17 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2607197, + "thread": 13 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2753741, + "thread": 24 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 2938392, + "thread": 19 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 3077524, + "thread": 24 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 3272708, + "thread": 27 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 3381891, + "thread": 7 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 3541268, + "thread": 10 + } + }, + { + "amount": "108.613726307", + "slot": { + "period": 3679757, + "thread": 16 + } + }, + { + "amount": "108.613726314", + "slot": { + "period": 3862055, + "thread": 17 + } + } + ], + "AU12tqybuvjqy2c7cKPWxkHLHwHf7VDFzhSX6hduFyr9EQCTWrYRw": [ + { + "amount": "360.517436659", + "slot": { + "period": 79854, + "thread": 3 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 314835, + "thread": 3 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 342130, + "thread": 16 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 498298, + "thread": 19 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 815692, + "thread": 17 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 928128, + "thread": 26 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1059950, + "thread": 13 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1303217, + "thread": 4 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1352648, + "thread": 4 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1623971, + "thread": 29 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1756890, + "thread": 1 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1846226, + "thread": 14 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 1982417, + "thread": 1 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2177028, + "thread": 14 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2345664, + "thread": 18 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2603463, + "thread": 5 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2639630, + "thread": 17 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2864472, + "thread": 27 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 2987249, + "thread": 3 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 3240605, + "thread": 12 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 3442271, + "thread": 27 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 3558911, + "thread": 12 + } + }, + { + "amount": "360.517436659", + "slot": { + "period": 3633026, + "thread": 29 + } + }, + { + "amount": "360.517436655", + "slot": { + "period": 3801167, + "thread": 12 + } + } + ], + "AU12trwyRicVAMaDCck8yKxDYFCzcpHvj8Bn6mQ9fJiaxPwoQUTji": [ + { + "amount": "71.114880646", + "slot": { + "period": 145905, + "thread": 22 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 201851, + "thread": 29 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 445986, + "thread": 24 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 526673, + "thread": 26 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 768562, + "thread": 16 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 882541, + "thread": 16 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1047032, + "thread": 22 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1254166, + "thread": 12 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1323684, + "thread": 12 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1629541, + "thread": 29 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1656078, + "thread": 4 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 1837762, + "thread": 19 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2111798, + "thread": 29 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2265912, + "thread": 12 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2415385, + "thread": 1 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2500254, + "thread": 18 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2648356, + "thread": 18 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 2951970, + "thread": 26 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 3035853, + "thread": 14 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 3284925, + "thread": 25 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 3333868, + "thread": 25 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 3561501, + "thread": 3 + } + }, + { + "amount": "71.114880646", + "slot": { + "period": 3748105, + "thread": 5 + } + }, + { + "amount": "71.114880649", + "slot": { + "period": 3922346, + "thread": 19 + } + } + ], + "AU12tsPEmUsS1h7hjnWHKktoC5fXP1Zzf5Et8oeHLpxiQMpzmTGJN": [ + { + "amount": "64.447847288", + "slot": { + "period": 103145, + "thread": 8 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 215886, + "thread": 28 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 339064, + "thread": 8 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 511945, + "thread": 7 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 676035, + "thread": 2 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 894601, + "thread": 8 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1037932, + "thread": 14 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1194543, + "thread": 14 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1330025, + "thread": 15 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1536852, + "thread": 24 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1650988, + "thread": 27 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1848553, + "thread": 15 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 1993173, + "thread": 16 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 2188493, + "thread": 14 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 2383573, + "thread": 12 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 2575097, + "thread": 15 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 2751255, + "thread": 20 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 2805414, + "thread": 9 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 3095988, + "thread": 6 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 3209888, + "thread": 14 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 3340503, + "thread": 31 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 3474517, + "thread": 12 + } + }, + { + "amount": "64.447847288", + "slot": { + "period": 3744763, + "thread": 20 + } + }, + { + "amount": "64.447847299", + "slot": { + "period": 3780471, + "thread": 3 + } + } + ], + "AU12tsjoD5EyLNMiLF9xJAXUHghYTu7u5xDRytsz4ZEL33dT5Yapg": [ + { + "amount": "130.796825728", + "slot": { + "period": 119391, + "thread": 17 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 252346, + "thread": 9 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 326800, + "thread": 29 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 650633, + "thread": 10 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 802252, + "thread": 8 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 974272, + "thread": 23 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 994762, + "thread": 9 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 1311311, + "thread": 27 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 1384354, + "thread": 27 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 1627750, + "thread": 13 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 1705825, + "thread": 13 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 1869856, + "thread": 11 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2029910, + "thread": 21 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2217596, + "thread": 21 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2334796, + "thread": 27 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2582684, + "thread": 9 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2769442, + "thread": 13 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2792440, + "thread": 10 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 2980141, + "thread": 24 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 3282027, + "thread": 4 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 3400949, + "thread": 14 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 3519176, + "thread": 12 + } + }, + { + "amount": "130.796825728", + "slot": { + "period": 3636203, + "thread": 8 + } + }, + { + "amount": "130.796825724", + "slot": { + "period": 3862632, + "thread": 19 + } + } + ], + "AU12tt3btHzGDN4nPKFV11NhLix5hLqnDLgREpR3PdBSXpMifGrbV": [ + { + "amount": "117.980943691", + "slot": { + "period": 159418, + "thread": 21 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 268668, + "thread": 16 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 429005, + "thread": 26 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 513525, + "thread": 18 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 707361, + "thread": 19 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 897616, + "thread": 0 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1049714, + "thread": 26 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1288796, + "thread": 12 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1466586, + "thread": 12 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1488343, + "thread": 17 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1704594, + "thread": 20 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1920824, + "thread": 27 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 1999362, + "thread": 28 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 2259558, + "thread": 10 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 2382280, + "thread": 12 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 2521173, + "thread": 0 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 2665417, + "thread": 25 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 2909316, + "thread": 25 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 3071007, + "thread": 28 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 3187345, + "thread": 13 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 3379426, + "thread": 20 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 3568169, + "thread": 28 + } + }, + { + "amount": "117.980943691", + "slot": { + "period": 3673052, + "thread": 4 + } + }, + { + "amount": "117.980943689", + "slot": { + "period": 3836693, + "thread": 6 + } + } + ], + "AU12ttRkXBPR27MP1fRTiRjSFpCMHcQ73iZiN8auwxT4LjfN6Ufj6": [ + { + "amount": "55.619491053", + "slot": { + "period": 81772, + "thread": 12 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 226541, + "thread": 6 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 341807, + "thread": 17 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 620974, + "thread": 13 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 656011, + "thread": 1 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 857664, + "thread": 30 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1031526, + "thread": 20 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1274224, + "thread": 7 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1365498, + "thread": 18 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1621648, + "thread": 1 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1665943, + "thread": 26 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 1858378, + "thread": 17 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2052912, + "thread": 24 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2248018, + "thread": 9 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2372938, + "thread": 15 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2489475, + "thread": 6 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2710397, + "thread": 27 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 2844702, + "thread": 11 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 3004750, + "thread": 30 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 3164377, + "thread": 10 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 3430055, + "thread": 13 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 3488587, + "thread": 30 + } + }, + { + "amount": "55.619491053", + "slot": { + "period": 3690864, + "thread": 23 + } + }, + { + "amount": "55.619491063", + "slot": { + "period": 3799248, + "thread": 20 + } + } + ], + "AU12tteH5Gmbgv9LbuUrhgjSrBPNcERZZ9sNK9UmA2ntsZhbZoBgo": [ + { + "amount": "54.938879035", + "slot": { + "period": 154700, + "thread": 30 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 208840, + "thread": 6 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 433135, + "thread": 10 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 512053, + "thread": 1 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 766063, + "thread": 6 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 954939, + "thread": 27 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1031452, + "thread": 12 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1227392, + "thread": 8 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1411214, + "thread": 14 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1630279, + "thread": 25 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1726490, + "thread": 0 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 1954184, + "thread": 26 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2053385, + "thread": 17 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2159682, + "thread": 27 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2347800, + "thread": 9 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2589207, + "thread": 17 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2758791, + "thread": 4 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2864755, + "thread": 12 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 2974181, + "thread": 16 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 3239508, + "thread": 9 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 3397726, + "thread": 11 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 3547441, + "thread": 16 + } + }, + { + "amount": "54.938879035", + "slot": { + "period": 3753260, + "thread": 30 + } + }, + { + "amount": "54.938879038", + "slot": { + "period": 3897697, + "thread": 12 + } + } + ], + "AU12tuGFa3jQUam9R3uGArhia5EyqEs8TDD6sG7muwAroXibVCtj8": [ + { + "amount": "141.413358434", + "slot": { + "period": 61602, + "thread": 12 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 302848, + "thread": 30 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 377851, + "thread": 6 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 562231, + "thread": 6 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 732912, + "thread": 12 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 978332, + "thread": 4 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1010043, + "thread": 22 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1241973, + "thread": 0 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1440606, + "thread": 12 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1589003, + "thread": 5 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1806000, + "thread": 19 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 1957933, + "thread": 31 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2055784, + "thread": 15 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2263331, + "thread": 28 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2297285, + "thread": 23 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2562171, + "thread": 14 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2659941, + "thread": 8 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2815897, + "thread": 20 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 2957940, + "thread": 0 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 3243545, + "thread": 29 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 3312135, + "thread": 6 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 3464734, + "thread": 0 + } + }, + { + "amount": "141.413358434", + "slot": { + "period": 3703501, + "thread": 14 + } + }, + { + "amount": "141.413358446", + "slot": { + "period": 3856367, + "thread": 20 + } + } + ], + "AU12tuvparDHEb67bKbd8pdpkzH9uYmB7UXmkRSKzsCS3Gby4UTWC": [ + { + "amount": "177.613389654", + "slot": { + "period": 135659, + "thread": 18 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 314879, + "thread": 1 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 346839, + "thread": 31 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 627128, + "thread": 19 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 685163, + "thread": 11 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 849852, + "thread": 17 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1096293, + "thread": 26 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1209421, + "thread": 16 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1351799, + "thread": 2 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1604370, + "thread": 17 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1680898, + "thread": 20 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1827202, + "thread": 11 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 1977169, + "thread": 27 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 2252687, + "thread": 13 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 2348940, + "thread": 29 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 2602370, + "thread": 9 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 2669398, + "thread": 15 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 2849796, + "thread": 18 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 3003680, + "thread": 6 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 3268940, + "thread": 26 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 3357216, + "thread": 19 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 3612844, + "thread": 27 + } + }, + { + "amount": "177.613389654", + "slot": { + "period": 3667098, + "thread": 7 + } + }, + { + "amount": "177.613389643", + "slot": { + "period": 3852421, + "thread": 26 + } + } + ], + "AU12tvD8JY85NGbvLaF6e4aWx6GjqvuevbggEJ89y1PT5329Lxmgc": [ + { + "amount": "216.437461160", + "slot": { + "period": 12587, + "thread": 22 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 276494, + "thread": 11 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 426044, + "thread": 30 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 559427, + "thread": 15 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 686879, + "thread": 13 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 928578, + "thread": 28 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1025882, + "thread": 8 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1214292, + "thread": 19 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1375422, + "thread": 26 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1527187, + "thread": 8 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1766793, + "thread": 28 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1971499, + "thread": 17 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 1984287, + "thread": 8 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 2166677, + "thread": 21 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 2390758, + "thread": 28 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 2542162, + "thread": 21 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 2746184, + "thread": 21 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 2933617, + "thread": 1 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 3069009, + "thread": 6 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 3156332, + "thread": 21 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 3423197, + "thread": 19 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 3558361, + "thread": 17 + } + }, + { + "amount": "216.437461160", + "slot": { + "period": 3637412, + "thread": 21 + } + }, + { + "amount": "216.437461161", + "slot": { + "period": 3906795, + "thread": 17 + } + } + ], + "AU12twHidfsRQJMnaqsvV9Zfxjtv1vHkF3y6tsJiFThFd8BXk8DET": [ + { + "amount": "55.830333382", + "slot": { + "period": 59717, + "thread": 12 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 171397, + "thread": 4 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 352569, + "thread": 25 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 608035, + "thread": 22 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 725178, + "thread": 22 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 897142, + "thread": 20 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1036852, + "thread": 6 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1176425, + "thread": 20 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1340355, + "thread": 8 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1528755, + "thread": 6 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1761501, + "thread": 28 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 1961095, + "thread": 23 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2055586, + "thread": 26 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2239917, + "thread": 9 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2341763, + "thread": 24 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2623712, + "thread": 22 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2641514, + "thread": 28 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2839196, + "thread": 12 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 2989293, + "thread": 22 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 3262373, + "thread": 22 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 3323334, + "thread": 25 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 3531522, + "thread": 29 + } + }, + { + "amount": "55.830333382", + "slot": { + "period": 3635864, + "thread": 2 + } + }, + { + "amount": "55.830333394", + "slot": { + "period": 3874547, + "thread": 18 + } + } + ], + "AU12twUFs22be1uzWRhNaepZc56ZP9uEVDgJwnz92zbGoiji5z7FZ": [ + { + "amount": "65.586930930", + "slot": { + "period": 13608, + "thread": 15 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 194832, + "thread": 3 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 401609, + "thread": 1 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 505030, + "thread": 13 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 817304, + "thread": 3 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 921044, + "thread": 3 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1146433, + "thread": 26 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1272181, + "thread": 17 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1338435, + "thread": 21 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1524700, + "thread": 3 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1725106, + "thread": 24 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 1972775, + "thread": 29 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2002046, + "thread": 12 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2286360, + "thread": 15 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2319503, + "thread": 15 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2621655, + "thread": 18 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2760117, + "thread": 5 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 2821342, + "thread": 22 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 3035878, + "thread": 25 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 3184572, + "thread": 21 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 3301216, + "thread": 7 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 3577383, + "thread": 29 + } + }, + { + "amount": "65.586930930", + "slot": { + "period": 3764148, + "thread": 23 + } + }, + { + "amount": "65.586930923", + "slot": { + "period": 3916616, + "thread": 22 + } + } + ], + "AU12twYhhceAcKoqEyTsuwYnAKXWD1CRBDBemmGBvFkC5SXATZXic": [ + { + "amount": "203.122066601", + "slot": { + "period": 124422, + "thread": 12 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 305163, + "thread": 3 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 454290, + "thread": 4 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 567487, + "thread": 28 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 796907, + "thread": 12 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 951907, + "thread": 18 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1111472, + "thread": 1 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1197438, + "thread": 17 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1352715, + "thread": 20 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1635710, + "thread": 2 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1719267, + "thread": 21 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 1968867, + "thread": 16 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2044836, + "thread": 15 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2230850, + "thread": 11 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2340032, + "thread": 9 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2546734, + "thread": 28 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2784373, + "thread": 2 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 2872777, + "thread": 17 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 3039252, + "thread": 13 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 3228509, + "thread": 4 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 3369898, + "thread": 26 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 3569116, + "thread": 11 + } + }, + { + "amount": "203.122066601", + "slot": { + "period": 3642200, + "thread": 29 + } + }, + { + "amount": "203.122066598", + "slot": { + "period": 3841613, + "thread": 24 + } + } + ], + "AU12twuLRjKtFzZiTSLhDTJV65bPsRhKTLLjJ7KC2WApFDai8PAHc": [ + { + "amount": "218.196915262", + "slot": { + "period": 76120, + "thread": 22 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 294980, + "thread": 18 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 467419, + "thread": 7 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 599075, + "thread": 30 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 654522, + "thread": 5 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 853933, + "thread": 13 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1116630, + "thread": 19 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1252672, + "thread": 31 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1386826, + "thread": 5 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1641390, + "thread": 16 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1753863, + "thread": 8 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 1889394, + "thread": 1 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2015799, + "thread": 19 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2204083, + "thread": 22 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2368151, + "thread": 24 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2593893, + "thread": 11 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2721286, + "thread": 3 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 2951874, + "thread": 17 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 3121125, + "thread": 2 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 3183141, + "thread": 31 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 3346626, + "thread": 5 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 3586197, + "thread": 20 + } + }, + { + "amount": "218.196915262", + "slot": { + "period": 3631018, + "thread": 17 + } + }, + { + "amount": "218.196915261", + "slot": { + "period": 3943890, + "thread": 27 + } + } + ], + "AU12txTbdPWzv57CAgqEUvPCt4hQsjwyvTabpRhUPQUo85v967UVP": [ + { + "amount": "237.396231755", + "slot": { + "period": 76077, + "thread": 17 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 254267, + "thread": 7 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 373387, + "thread": 31 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 540798, + "thread": 18 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 682657, + "thread": 15 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 907294, + "thread": 1 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1034982, + "thread": 30 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1281713, + "thread": 8 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1430417, + "thread": 22 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1551974, + "thread": 1 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1670705, + "thread": 2 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 1814518, + "thread": 15 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2127345, + "thread": 22 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2179966, + "thread": 20 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2342078, + "thread": 25 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2516278, + "thread": 19 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2733652, + "thread": 3 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 2874328, + "thread": 18 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 3079200, + "thread": 25 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 3147117, + "thread": 15 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 3434832, + "thread": 20 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 3550607, + "thread": 25 + } + }, + { + "amount": "237.396231755", + "slot": { + "period": 3767591, + "thread": 10 + } + }, + { + "amount": "237.396231745", + "slot": { + "period": 3848900, + "thread": 28 + } + } + ], + "AU12tyVGD7VfEEcgfp8afLwBd1Nnx1GerxvKQNqRGWrXDhUtcQcR8": [ + { + "amount": "135.548204894", + "slot": { + "period": 102458, + "thread": 30 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 216816, + "thread": 3 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 396044, + "thread": 23 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 648174, + "thread": 9 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 731095, + "thread": 27 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 837350, + "thread": 25 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1039326, + "thread": 13 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1244709, + "thread": 13 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1413147, + "thread": 0 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1568832, + "thread": 25 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1682696, + "thread": 6 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 1857904, + "thread": 21 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2123630, + "thread": 24 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2288111, + "thread": 23 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2450554, + "thread": 16 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2485936, + "thread": 25 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2672327, + "thread": 10 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2840152, + "thread": 1 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 2991832, + "thread": 14 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 3271331, + "thread": 4 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 3412546, + "thread": 1 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 3611277, + "thread": 15 + } + }, + { + "amount": "135.548204894", + "slot": { + "period": 3713396, + "thread": 26 + } + }, + { + "amount": "135.548204899", + "slot": { + "period": 3848089, + "thread": 4 + } + } + ], + "AU12u1VGMTR4GNLe6AWFkqbsBLNSKc9Y3Kkwkf39vi9PnCT8N5mLN": [ + { + "amount": "294.714788987", + "slot": { + "period": 58341, + "thread": 31 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 225482, + "thread": 26 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 428762, + "thread": 2 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 498867, + "thread": 13 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 671766, + "thread": 14 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 890544, + "thread": 15 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1071220, + "thread": 8 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1232837, + "thread": 16 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1356068, + "thread": 21 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1495169, + "thread": 5 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1651520, + "thread": 13 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 1823648, + "thread": 13 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2117611, + "thread": 24 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2167529, + "thread": 15 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2413390, + "thread": 28 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2575263, + "thread": 21 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2731256, + "thread": 4 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 2843244, + "thread": 15 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 3013952, + "thread": 25 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 3145696, + "thread": 7 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 3445348, + "thread": 11 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 3465562, + "thread": 13 + } + }, + { + "amount": "294.714788987", + "slot": { + "period": 3620314, + "thread": 4 + } + }, + { + "amount": "294.714788982", + "slot": { + "period": 3934193, + "thread": 19 + } + } + ], + "AU12u1cRX7Kva55eSCERbBynog4gJm8D1bJmbQRkAi4JqwEyumYye": [ + { + "amount": "64.096573943", + "slot": { + "period": 131732, + "thread": 18 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 233406, + "thread": 6 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 326865, + "thread": 2 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 536604, + "thread": 4 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 816788, + "thread": 15 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 839865, + "thread": 21 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1020571, + "thread": 2 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1229760, + "thread": 28 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1372249, + "thread": 12 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1566107, + "thread": 7 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1739919, + "thread": 21 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 1839049, + "thread": 23 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2024287, + "thread": 22 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2161654, + "thread": 14 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2320822, + "thread": 4 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2472630, + "thread": 29 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2729979, + "thread": 6 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 2894422, + "thread": 20 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 3094451, + "thread": 8 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 3261606, + "thread": 31 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 3424741, + "thread": 17 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 3591681, + "thread": 15 + } + }, + { + "amount": "64.096573943", + "slot": { + "period": 3753523, + "thread": 14 + } + }, + { + "amount": "64.096573939", + "slot": { + "period": 3868507, + "thread": 13 + } + } + ], + "AU12u1jYgFwxkg4rf3pxUTKMrssbTPW45EiUWnvJ1ig2MKM8ei9Nd": [ + { + "amount": "472.688770227", + "slot": { + "period": 15111, + "thread": 6 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 321619, + "thread": 17 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 433232, + "thread": 15 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 599006, + "thread": 17 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 789803, + "thread": 25 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 922928, + "thread": 4 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1017898, + "thread": 18 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1170123, + "thread": 18 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1457488, + "thread": 11 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1559866, + "thread": 31 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1779163, + "thread": 2 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 1896289, + "thread": 8 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2032117, + "thread": 23 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2238094, + "thread": 29 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2357021, + "thread": 14 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2533169, + "thread": 6 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2683753, + "thread": 5 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 2943481, + "thread": 13 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 3097674, + "thread": 10 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 3256023, + "thread": 6 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 3433826, + "thread": 6 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 3466538, + "thread": 26 + } + }, + { + "amount": "472.688770227", + "slot": { + "period": 3713883, + "thread": 4 + } + }, + { + "amount": "472.688770224", + "slot": { + "period": 3894334, + "thread": 11 + } + } + ], + "AU12u25iut3i2n8r1G5q4K7HXRjQaRC3ESrpJ51Rhe7APUuyWWukj": [ + { + "amount": "228.897531916", + "slot": { + "period": 11635, + "thread": 24 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 225074, + "thread": 27 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 464002, + "thread": 11 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 510089, + "thread": 6 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 782367, + "thread": 0 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 828243, + "thread": 17 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1067379, + "thread": 13 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1173562, + "thread": 24 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1406257, + "thread": 2 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1485644, + "thread": 11 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1796475, + "thread": 12 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 1813045, + "thread": 25 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2078359, + "thread": 9 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2201314, + "thread": 27 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2416770, + "thread": 17 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2548317, + "thread": 22 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2658750, + "thread": 7 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2833064, + "thread": 16 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 2956127, + "thread": 8 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 3182013, + "thread": 11 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 3299069, + "thread": 9 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 3612150, + "thread": 0 + } + }, + { + "amount": "228.897531916", + "slot": { + "period": 3705721, + "thread": 17 + } + }, + { + "amount": "228.897531923", + "slot": { + "period": 3844613, + "thread": 28 + } + } + ], + "AU12u2E1UnJEvBQdm5fwFDgV31n6Sh4jD1HAfVrdFrpmXhkwvA3Lx": [ + { + "amount": "154.757202909", + "slot": { + "period": 48602, + "thread": 16 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 212715, + "thread": 17 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 366838, + "thread": 18 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 616907, + "thread": 5 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 711224, + "thread": 23 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 890144, + "thread": 17 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1069828, + "thread": 12 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1218968, + "thread": 5 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1463257, + "thread": 7 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1505446, + "thread": 23 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1736004, + "thread": 0 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 1877514, + "thread": 15 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2022857, + "thread": 16 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2283282, + "thread": 5 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2355736, + "thread": 30 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2568869, + "thread": 27 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2655655, + "thread": 12 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 2879373, + "thread": 27 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 3066299, + "thread": 21 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 3138953, + "thread": 10 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 3330146, + "thread": 1 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 3570986, + "thread": 29 + } + }, + { + "amount": "154.757202909", + "slot": { + "period": 3762955, + "thread": 23 + } + }, + { + "amount": "154.757202919", + "slot": { + "period": 3790388, + "thread": 28 + } + } + ], + "AU12u2F395MgbvjnjvKmqwAzKzD8XvG1oNTfoQo6kCBzGUtwjx95Y": [ + { + "amount": "121.136678618", + "slot": { + "period": 109305, + "thread": 29 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 288267, + "thread": 22 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 487442, + "thread": 2 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 605844, + "thread": 17 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 817352, + "thread": 1 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 904976, + "thread": 30 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1082631, + "thread": 20 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1206364, + "thread": 16 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1363354, + "thread": 18 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1541709, + "thread": 16 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1666491, + "thread": 24 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1911461, + "thread": 4 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 1983085, + "thread": 22 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2145191, + "thread": 24 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2398564, + "thread": 0 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2623983, + "thread": 22 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2710926, + "thread": 26 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2910126, + "thread": 20 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 2977147, + "thread": 8 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 3222318, + "thread": 4 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 3444100, + "thread": 24 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 3566200, + "thread": 21 + } + }, + { + "amount": "121.136678618", + "slot": { + "period": 3637130, + "thread": 23 + } + }, + { + "amount": "121.136678623", + "slot": { + "period": 3839853, + "thread": 10 + } + } + ], + "AU12u2wDr9CkZATRDKCqRq1akukL85uVjdAMFyPNphKzzBnYY5zQJ": [ + { + "amount": "216.738052899", + "slot": { + "period": 151399, + "thread": 25 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 240718, + "thread": 13 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 421263, + "thread": 19 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 637743, + "thread": 25 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 775537, + "thread": 11 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 872746, + "thread": 28 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1086523, + "thread": 18 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1310058, + "thread": 9 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1350188, + "thread": 25 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1612291, + "thread": 26 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1692011, + "thread": 1 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1949310, + "thread": 7 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 1980484, + "thread": 5 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2277035, + "thread": 10 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2353564, + "thread": 13 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2583347, + "thread": 4 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2697125, + "thread": 20 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2862734, + "thread": 7 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 2982989, + "thread": 21 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 3164996, + "thread": 3 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 3428581, + "thread": 21 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 3589489, + "thread": 14 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 3728248, + "thread": 26 + } + }, + { + "amount": "216.738052899", + "slot": { + "period": 3856706, + "thread": 13 + } + } + ], + "AU12u4jTimmiMpQvyM49BiCpGqNbvSeiyjVyYvXw74Tcc3dbGxhP2": [ + { + "amount": "408.271287039", + "slot": { + "period": 82739, + "thread": 4 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 311881, + "thread": 1 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 407226, + "thread": 30 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 573794, + "thread": 12 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 804830, + "thread": 6 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 849075, + "thread": 28 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1142705, + "thread": 19 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1258868, + "thread": 18 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1383878, + "thread": 0 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1604096, + "thread": 18 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1741809, + "thread": 23 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 1955625, + "thread": 31 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2094100, + "thread": 28 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2165847, + "thread": 6 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2406361, + "thread": 1 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2485870, + "thread": 12 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2710938, + "thread": 21 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 2803164, + "thread": 6 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 3048096, + "thread": 8 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 3155916, + "thread": 31 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 3377931, + "thread": 4 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 3550190, + "thread": 17 + } + }, + { + "amount": "408.271287039", + "slot": { + "period": 3693708, + "thread": 19 + } + }, + { + "amount": "408.271287040", + "slot": { + "period": 3893863, + "thread": 7 + } + } + ], + "AU12u5oPouFTFzHZvDXZpJqr1H3W9haBSkS8KWy8NcdsA8vUM3Kip": [ + { + "amount": "55.660497629", + "slot": { + "period": 89533, + "thread": 6 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 297321, + "thread": 5 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 353044, + "thread": 3 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 571085, + "thread": 20 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 782740, + "thread": 8 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 931669, + "thread": 28 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1018623, + "thread": 6 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1301010, + "thread": 20 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1388896, + "thread": 3 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1537397, + "thread": 29 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1667256, + "thread": 17 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 1892641, + "thread": 20 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2115050, + "thread": 28 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2198299, + "thread": 4 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2338990, + "thread": 21 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2561579, + "thread": 14 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2695689, + "thread": 11 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2937758, + "thread": 0 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 2985057, + "thread": 6 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 3128913, + "thread": 4 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 3360019, + "thread": 16 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 3547713, + "thread": 12 + } + }, + { + "amount": "55.660497629", + "slot": { + "period": 3700249, + "thread": 7 + } + }, + { + "amount": "55.660497623", + "slot": { + "period": 3827932, + "thread": 11 + } + } + ], + "AU12u6U2DuXVNqBFG1BZkZiANAtJgCVW41Es3L5DhERLHyMS9F4Up": [ + { + "amount": "304.840443542", + "slot": { + "period": 59507, + "thread": 17 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 204767, + "thread": 17 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 336279, + "thread": 17 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 555135, + "thread": 17 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 696211, + "thread": 23 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 875244, + "thread": 21 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 989092, + "thread": 16 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 1307946, + "thread": 29 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 1391927, + "thread": 9 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 1595136, + "thread": 10 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 1798999, + "thread": 5 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 1850083, + "thread": 14 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2121660, + "thread": 24 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2200126, + "thread": 29 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2331067, + "thread": 23 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2588493, + "thread": 21 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2669169, + "thread": 2 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2906784, + "thread": 0 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 2999936, + "thread": 6 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 3235317, + "thread": 5 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 3431871, + "thread": 20 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 3463236, + "thread": 3 + } + }, + { + "amount": "304.840443542", + "slot": { + "period": 3705593, + "thread": 16 + } + }, + { + "amount": "304.840443533", + "slot": { + "period": 3844478, + "thread": 31 + } + } + ], + "AU12u6p2meHCdwHoUz6b3Qo9H1bVmRrEHYBNt81YNGzac5egF51oN": [ + { + "amount": "335.279417331", + "slot": { + "period": 129643, + "thread": 12 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 300252, + "thread": 31 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 388643, + "thread": 9 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 556708, + "thread": 19 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 662968, + "thread": 7 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 902671, + "thread": 11 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 987441, + "thread": 26 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 1248686, + "thread": 31 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 1391451, + "thread": 15 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 1551720, + "thread": 8 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 1684326, + "thread": 0 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 1860849, + "thread": 18 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2010140, + "thread": 5 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2222390, + "thread": 1 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2338357, + "thread": 3 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2540484, + "thread": 31 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2707604, + "thread": 5 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2890601, + "thread": 26 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 2988671, + "thread": 18 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 3161550, + "thread": 1 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 3352356, + "thread": 24 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 3454609, + "thread": 3 + } + }, + { + "amount": "335.279417331", + "slot": { + "period": 3646355, + "thread": 3 + } + }, + { + "amount": "335.279417325", + "slot": { + "period": 3901103, + "thread": 2 + } + } + ], + "AU12u6wnBA6ry8sYrGPSdHjukaS1aAFUSetH65pKD5tvzJu7SQ8YT": [ + { + "amount": "56.504047657", + "slot": { + "period": 35977, + "thread": 1 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 274600, + "thread": 11 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 490312, + "thread": 19 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 495357, + "thread": 8 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 745104, + "thread": 25 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 854725, + "thread": 10 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1136309, + "thread": 12 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1177988, + "thread": 28 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1423611, + "thread": 26 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1598928, + "thread": 17 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1725148, + "thread": 22 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 1918536, + "thread": 15 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2072623, + "thread": 14 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2176718, + "thread": 22 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2350265, + "thread": 29 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2512237, + "thread": 26 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2694619, + "thread": 4 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 2795691, + "thread": 16 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 3024564, + "thread": 31 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 3122294, + "thread": 10 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 3290132, + "thread": 7 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 3579971, + "thread": 30 + } + }, + { + "amount": "56.504047657", + "slot": { + "period": 3673795, + "thread": 25 + } + }, + { + "amount": "56.504047650", + "slot": { + "period": 3918541, + "thread": 31 + } + } + ], + "AU12u71xxGuUB7nrrH5Mx1wCdHmnAYy9ocbVVf69FHy51CENidqV5": [ + { + "amount": "122.048500795", + "slot": { + "period": 57497, + "thread": 8 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 172684, + "thread": 28 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 413008, + "thread": 20 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 603329, + "thread": 7 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 748426, + "thread": 28 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 936061, + "thread": 21 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1068626, + "thread": 16 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1304937, + "thread": 14 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1421071, + "thread": 29 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1607041, + "thread": 5 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1720473, + "thread": 1 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 1822000, + "thread": 20 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2141271, + "thread": 22 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2219057, + "thread": 2 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2330327, + "thread": 23 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2475863, + "thread": 16 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2750898, + "thread": 31 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 2861238, + "thread": 29 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3118155, + "thread": 18 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3260294, + "thread": 1 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3389039, + "thread": 8 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3493519, + "thread": 22 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3683427, + "thread": 9 + } + }, + { + "amount": "122.048500795", + "slot": { + "period": 3857714, + "thread": 9 + } + } + ], + "AU12u7yPaAjqTT1Lbc7XVSdUexwAPqt7Wg7Q65MoHuSWNVNFBDaRi": [ + { + "amount": "284.741960107", + "slot": { + "period": 37236, + "thread": 28 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 189956, + "thread": 23 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 474551, + "thread": 4 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 521976, + "thread": 21 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 789310, + "thread": 4 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 922733, + "thread": 10 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1023220, + "thread": 9 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1260702, + "thread": 11 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1367930, + "thread": 18 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1520723, + "thread": 28 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1760050, + "thread": 31 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 1962114, + "thread": 1 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2033499, + "thread": 12 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2276891, + "thread": 13 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2354249, + "thread": 26 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2475207, + "thread": 0 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2684139, + "thread": 25 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 2901691, + "thread": 30 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 3000468, + "thread": 8 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 3222892, + "thread": 3 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 3360850, + "thread": 1 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 3597638, + "thread": 25 + } + }, + { + "amount": "284.741960107", + "slot": { + "period": 3676556, + "thread": 22 + } + }, + { + "amount": "284.741960099", + "slot": { + "period": 3885104, + "thread": 11 + } + } + ], + "AU12u86qsnFgEPUSSbxvz9ZpdM3Mep9yWVVE9uRh4dBroKS1aMzYk": [ + { + "amount": "141.063757739", + "slot": { + "period": 152324, + "thread": 30 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 262673, + "thread": 8 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 484381, + "thread": 1 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 626417, + "thread": 11 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 659675, + "thread": 19 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 863309, + "thread": 15 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1008967, + "thread": 26 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1284074, + "thread": 5 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1358952, + "thread": 29 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1596328, + "thread": 7 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1711898, + "thread": 30 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 1940330, + "thread": 25 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2020822, + "thread": 29 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2201536, + "thread": 5 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2334691, + "thread": 0 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2469360, + "thread": 7 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2750657, + "thread": 17 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2894434, + "thread": 8 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 2993893, + "thread": 22 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 3219466, + "thread": 8 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 3417869, + "thread": 17 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 3461271, + "thread": 31 + } + }, + { + "amount": "141.063757739", + "slot": { + "period": 3670508, + "thread": 28 + } + }, + { + "amount": "141.063757732", + "slot": { + "period": 3938136, + "thread": 7 + } + } + ], + "AU12u88KTbNLzC41L4aMPTTF5q946N99Hwhvq4em7aTDoLyo52G8x": [ + { + "amount": "194.624209973", + "slot": { + "period": 133605, + "thread": 14 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 187619, + "thread": 25 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 466920, + "thread": 29 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 630452, + "thread": 26 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 812290, + "thread": 17 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 929509, + "thread": 27 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1105973, + "thread": 24 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1183696, + "thread": 3 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1455563, + "thread": 11 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1578746, + "thread": 21 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1679751, + "thread": 10 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 1850738, + "thread": 31 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2034286, + "thread": 6 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2174951, + "thread": 6 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2368502, + "thread": 1 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2582220, + "thread": 28 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2682958, + "thread": 1 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 2871133, + "thread": 6 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 3107439, + "thread": 0 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 3137220, + "thread": 17 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 3313114, + "thread": 18 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 3506753, + "thread": 10 + } + }, + { + "amount": "194.624209973", + "slot": { + "period": 3669852, + "thread": 11 + } + }, + { + "amount": "194.624209970", + "slot": { + "period": 3872115, + "thread": 19 + } + } + ], + "AU12u8AUkUJ1guopaT8T6AWjbQqscPEAP2MqXdZerLTLVZuc5a3rR": [ + { + "amount": "60.649388470", + "slot": { + "period": 88194, + "thread": 29 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 219551, + "thread": 18 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 443050, + "thread": 8 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 562515, + "thread": 18 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 764813, + "thread": 12 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 864873, + "thread": 18 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1117031, + "thread": 2 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1300724, + "thread": 18 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1405622, + "thread": 31 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1574574, + "thread": 6 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1772507, + "thread": 23 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 1835574, + "thread": 31 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2024978, + "thread": 30 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2211694, + "thread": 28 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2369740, + "thread": 13 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2562488, + "thread": 20 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2716467, + "thread": 28 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 2820136, + "thread": 12 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 3059408, + "thread": 28 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 3202391, + "thread": 13 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 3445657, + "thread": 23 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 3467607, + "thread": 2 + } + }, + { + "amount": "60.649388470", + "slot": { + "period": 3630146, + "thread": 28 + } + }, + { + "amount": "60.649388471", + "slot": { + "period": 3855604, + "thread": 11 + } + } + ], + "AU12u8fpPxmKLMsXzfRExNyuAr6ztmZPt9v5PYUMy8pCQt7GtWum3": [ + { + "amount": "158.513477417", + "slot": { + "period": 66665, + "thread": 25 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 243571, + "thread": 4 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 489297, + "thread": 29 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 587159, + "thread": 10 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 675550, + "thread": 11 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 893770, + "thread": 14 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1011412, + "thread": 22 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1207441, + "thread": 29 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1437505, + "thread": 6 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1577342, + "thread": 11 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1808618, + "thread": 25 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1876571, + "thread": 23 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 1996909, + "thread": 27 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2166783, + "thread": 4 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2319310, + "thread": 17 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2536981, + "thread": 2 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2721375, + "thread": 27 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2833497, + "thread": 17 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 2987063, + "thread": 18 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 3201428, + "thread": 4 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 3418691, + "thread": 4 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 3495196, + "thread": 2 + } + }, + { + "amount": "158.513477417", + "slot": { + "period": 3724308, + "thread": 1 + } + }, + { + "amount": "158.513477425", + "slot": { + "period": 3871470, + "thread": 3 + } + } + ], + "AU12u8oDKqFyJBgf2KNSizh8JwWgBtzNYs1rQRHXoeftiAy11aisL": [ + { + "amount": "57.761745112", + "slot": { + "period": 150865, + "thread": 31 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 268432, + "thread": 31 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 419977, + "thread": 23 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 502987, + "thread": 14 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 743915, + "thread": 13 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 931508, + "thread": 24 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1125664, + "thread": 29 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1174981, + "thread": 5 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1427096, + "thread": 4 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1502805, + "thread": 17 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1802086, + "thread": 8 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1836229, + "thread": 0 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 1999010, + "thread": 10 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 2152837, + "thread": 22 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 2320426, + "thread": 18 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 2556191, + "thread": 25 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 2642132, + "thread": 13 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 2863635, + "thread": 10 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 3095882, + "thread": 13 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 3143200, + "thread": 17 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 3347637, + "thread": 22 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 3564269, + "thread": 20 + } + }, + { + "amount": "57.761745112", + "slot": { + "period": 3669346, + "thread": 10 + } + }, + { + "amount": "57.761745122", + "slot": { + "period": 3914961, + "thread": 30 + } + } + ], + "AU12u8yakC2vNzRESwwdFjx9Vh1Wm4XJFGquVSUe2TqLK6e2mHQuf": [ + { + "amount": "61.377567631", + "slot": { + "period": 36585, + "thread": 2 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 188860, + "thread": 12 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 476998, + "thread": 1 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 647599, + "thread": 8 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 741788, + "thread": 11 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 856863, + "thread": 3 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1148424, + "thread": 15 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1159606, + "thread": 8 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1363144, + "thread": 12 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1612771, + "thread": 16 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1696458, + "thread": 20 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 1970469, + "thread": 28 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2065347, + "thread": 15 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2217124, + "thread": 0 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2339740, + "thread": 7 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2615207, + "thread": 7 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2666754, + "thread": 28 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 2929104, + "thread": 29 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 3069817, + "thread": 1 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 3149706, + "thread": 21 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 3445080, + "thread": 3 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 3520830, + "thread": 15 + } + }, + { + "amount": "61.377567631", + "slot": { + "period": 3631117, + "thread": 11 + } + }, + { + "amount": "61.377567642", + "slot": { + "period": 3932440, + "thread": 18 + } + } + ], + "AU12u9KtJYDRxtc2ePVppHmUu5eYTeozdwv7v8ZCc9Tny8uMs7s4H": [ + { + "amount": "150.858906175", + "slot": { + "period": 14237, + "thread": 30 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 207128, + "thread": 9 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 445582, + "thread": 29 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 515712, + "thread": 16 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 693181, + "thread": 14 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 843165, + "thread": 10 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1148825, + "thread": 8 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1264573, + "thread": 7 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1417753, + "thread": 21 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1536416, + "thread": 2 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1708755, + "thread": 9 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 1847672, + "thread": 6 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2017115, + "thread": 17 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2291510, + "thread": 29 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2445649, + "thread": 27 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2476814, + "thread": 29 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2708340, + "thread": 26 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 2906915, + "thread": 18 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3013256, + "thread": 16 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3196046, + "thread": 29 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3436148, + "thread": 5 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3583198, + "thread": 6 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3632649, + "thread": 27 + } + }, + { + "amount": "150.858906175", + "slot": { + "period": 3882154, + "thread": 4 + } + } + ], + "AU12uALDACXMvas5Jtcd7WRSc4xgdXDeoaAzUAW4gZ6EdTn5ScM6T": [ + { + "amount": "98.636930619", + "slot": { + "period": 119957, + "thread": 11 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 263792, + "thread": 14 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 338622, + "thread": 9 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 642615, + "thread": 20 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 740495, + "thread": 1 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 966496, + "thread": 31 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1133861, + "thread": 25 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1216995, + "thread": 27 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1414615, + "thread": 24 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1529364, + "thread": 16 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1692501, + "thread": 9 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 1865104, + "thread": 27 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2112590, + "thread": 16 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2183590, + "thread": 13 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2440202, + "thread": 3 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2596098, + "thread": 21 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2722951, + "thread": 25 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 2793502, + "thread": 30 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3020075, + "thread": 5 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3220034, + "thread": 30 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3372422, + "thread": 6 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3459931, + "thread": 19 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3750836, + "thread": 22 + } + }, + { + "amount": "98.636930619", + "slot": { + "period": 3922998, + "thread": 25 + } + } + ], + "AU12uAnX3Kt6hHBm9SRP9LMhrz6Ep6D8Knh2raEcDrLnU7MMBRu8E": [ + { + "amount": "142.658083517", + "slot": { + "period": 26666, + "thread": 31 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 257098, + "thread": 30 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 393009, + "thread": 16 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 652278, + "thread": 20 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 663651, + "thread": 4 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 976551, + "thread": 3 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1121439, + "thread": 27 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1166461, + "thread": 11 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1348949, + "thread": 0 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1513399, + "thread": 22 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1772134, + "thread": 3 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 1823902, + "thread": 28 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2103415, + "thread": 20 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2278308, + "thread": 18 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2430943, + "thread": 28 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2487351, + "thread": 30 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2633376, + "thread": 31 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 2857167, + "thread": 5 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 3006330, + "thread": 14 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 3207803, + "thread": 12 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 3314310, + "thread": 8 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 3543350, + "thread": 11 + } + }, + { + "amount": "142.658083517", + "slot": { + "period": 3772344, + "thread": 8 + } + }, + { + "amount": "142.658083515", + "slot": { + "period": 3899368, + "thread": 26 + } + } + ], + "AU12uCEqVST45uHuAj1FNcVMBXr8GKZLnnSechbzoy6QW1uKVQtzp": [ + { + "amount": "596.223666843", + "slot": { + "period": 63802, + "thread": 10 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 261398, + "thread": 6 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 481015, + "thread": 18 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 535130, + "thread": 30 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 711005, + "thread": 11 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 824211, + "thread": 21 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1143404, + "thread": 16 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1249082, + "thread": 28 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1455545, + "thread": 16 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1560920, + "thread": 25 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1656180, + "thread": 6 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 1902836, + "thread": 2 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2109839, + "thread": 29 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2164396, + "thread": 0 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2425857, + "thread": 10 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2574059, + "thread": 6 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2629465, + "thread": 11 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2905877, + "thread": 7 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 2965388, + "thread": 16 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 3189826, + "thread": 8 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 3375714, + "thread": 30 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 3611165, + "thread": 0 + } + }, + { + "amount": "596.223666843", + "slot": { + "period": 3715454, + "thread": 11 + } + }, + { + "amount": "596.223666833", + "slot": { + "period": 3786899, + "thread": 15 + } + } + ], + "AU12uCxqN1frMsqvi6oqe8mLpWaun6YSzSy74fip4Lqm5Bfpbjfsv": [ + { + "amount": "180.470233525", + "slot": { + "period": 18711, + "thread": 23 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 226328, + "thread": 29 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 373765, + "thread": 21 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 548890, + "thread": 18 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 661141, + "thread": 21 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 848097, + "thread": 3 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1120286, + "thread": 2 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1195211, + "thread": 7 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1321949, + "thread": 15 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1568697, + "thread": 9 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1735133, + "thread": 3 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 1920388, + "thread": 20 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2047829, + "thread": 14 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2272448, + "thread": 17 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2318642, + "thread": 15 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2544551, + "thread": 6 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2687357, + "thread": 17 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 2936771, + "thread": 19 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 3017529, + "thread": 22 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 3156209, + "thread": 9 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 3431409, + "thread": 25 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 3528348, + "thread": 4 + } + }, + { + "amount": "180.470233525", + "slot": { + "period": 3736951, + "thread": 7 + } + }, + { + "amount": "180.470233516", + "slot": { + "period": 3803810, + "thread": 9 + } + } + ], + "AU12uEPammnCBrBThtLh6kJsWbHRc9JE8E8p46gsf3TAfJRXUUnFe": [ + { + "amount": "158.237330017", + "slot": { + "period": 120511, + "thread": 29 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 256700, + "thread": 17 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 479742, + "thread": 28 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 502047, + "thread": 25 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 740569, + "thread": 28 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 948548, + "thread": 5 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1031129, + "thread": 21 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1250399, + "thread": 24 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1388921, + "thread": 26 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1623117, + "thread": 17 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1693856, + "thread": 30 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1876994, + "thread": 24 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 1989080, + "thread": 5 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 2233767, + "thread": 3 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 2376184, + "thread": 24 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 2600419, + "thread": 31 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 2782082, + "thread": 28 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 2823860, + "thread": 5 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 3097449, + "thread": 26 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 3130740, + "thread": 21 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 3440740, + "thread": 28 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 3553577, + "thread": 8 + } + }, + { + "amount": "158.237330017", + "slot": { + "period": 3759158, + "thread": 16 + } + }, + { + "amount": "158.237330012", + "slot": { + "period": 3886211, + "thread": 3 + } + } + ], + "AU12uERCFuSbgfKtH9jjLXJJaWaXynde4xjb5zcFyr4Yuy8kKVWKr": [ + { + "amount": "201.092011966", + "slot": { + "period": 110432, + "thread": 11 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 280125, + "thread": 18 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 343230, + "thread": 27 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 651641, + "thread": 2 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 676753, + "thread": 18 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 967399, + "thread": 26 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1113773, + "thread": 16 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1275394, + "thread": 6 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1417620, + "thread": 5 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1529267, + "thread": 16 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1801559, + "thread": 14 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 1934442, + "thread": 1 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2092986, + "thread": 7 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2255172, + "thread": 14 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2403672, + "thread": 29 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2535946, + "thread": 12 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2683063, + "thread": 30 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 2857365, + "thread": 30 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 3017919, + "thread": 5 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 3228729, + "thread": 15 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 3419497, + "thread": 0 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 3563482, + "thread": 6 + } + }, + { + "amount": "201.092011966", + "slot": { + "period": 3686369, + "thread": 27 + } + }, + { + "amount": "201.092011971", + "slot": { + "period": 3908973, + "thread": 0 + } + } + ], + "AU12uG1sVdaJ4T8yDgLq7RvCg6XSrxEuUoMCZnLW4TGG1cpVFjVMg": [ + { + "amount": "171.149254921", + "slot": { + "period": 101336, + "thread": 0 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 220594, + "thread": 27 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 440037, + "thread": 5 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 631563, + "thread": 21 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 764823, + "thread": 4 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 975181, + "thread": 7 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1031134, + "thread": 5 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1280630, + "thread": 7 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1451518, + "thread": 17 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1526483, + "thread": 16 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1775880, + "thread": 0 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 1943675, + "thread": 27 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2037780, + "thread": 29 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2226295, + "thread": 16 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2297098, + "thread": 23 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2534784, + "thread": 1 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2664482, + "thread": 10 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2843284, + "thread": 18 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 2992167, + "thread": 0 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 3274738, + "thread": 0 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 3351033, + "thread": 3 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 3576101, + "thread": 12 + } + }, + { + "amount": "171.149254921", + "slot": { + "period": 3767763, + "thread": 27 + } + }, + { + "amount": "171.149254914", + "slot": { + "period": 3815997, + "thread": 12 + } + } + ], + "AU12uGk2nLDxZjPVw916oAhqg91mFAiWy3q14quqjJkX3wxaALPcu": [ + { + "amount": "338.364461105", + "slot": { + "period": 65940, + "thread": 28 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 226954, + "thread": 9 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 390129, + "thread": 5 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 606714, + "thread": 26 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 797821, + "thread": 25 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 940007, + "thread": 18 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1099844, + "thread": 15 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1198373, + "thread": 21 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1386792, + "thread": 26 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1514301, + "thread": 19 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1785038, + "thread": 15 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 1865318, + "thread": 3 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2054428, + "thread": 14 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2161299, + "thread": 28 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2393618, + "thread": 7 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2546914, + "thread": 27 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2662212, + "thread": 11 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 2919204, + "thread": 0 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 3119713, + "thread": 0 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 3232259, + "thread": 5 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 3359352, + "thread": 29 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 3492786, + "thread": 23 + } + }, + { + "amount": "338.364461105", + "slot": { + "period": 3759447, + "thread": 12 + } + }, + { + "amount": "338.364461106", + "slot": { + "period": 3852466, + "thread": 5 + } + } + ], + "AU12uGskqa8sCFb9cuWVjBFY13kBYtWUws64zJEB4vhwWCwSH2aYk": [ + { + "amount": "122.045068239", + "slot": { + "period": 80546, + "thread": 12 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 322128, + "thread": 14 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 408053, + "thread": 30 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 650451, + "thread": 28 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 721184, + "thread": 16 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 825478, + "thread": 14 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 996537, + "thread": 17 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 1220352, + "thread": 6 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 1406558, + "thread": 3 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 1572886, + "thread": 3 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 1672995, + "thread": 13 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 1895316, + "thread": 9 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2001403, + "thread": 20 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2187358, + "thread": 29 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2388294, + "thread": 12 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2592995, + "thread": 30 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2788555, + "thread": 9 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 2822694, + "thread": 9 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 3120355, + "thread": 30 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 3164830, + "thread": 14 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 3392878, + "thread": 13 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 3600892, + "thread": 15 + } + }, + { + "amount": "122.045068239", + "slot": { + "period": 3772162, + "thread": 15 + } + }, + { + "amount": "122.045068243", + "slot": { + "period": 3929848, + "thread": 18 + } + } + ], + "AU12uHHmvUQvVraY5wusuHaM7ggoqsQRaJY7ZfZx5wP1YaLsMkHN3": [ + { + "amount": "559.937312513", + "slot": { + "period": 42070, + "thread": 4 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 312928, + "thread": 22 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 487031, + "thread": 11 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 508858, + "thread": 31 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 664748, + "thread": 17 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 831934, + "thread": 8 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1019223, + "thread": 8 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1304489, + "thread": 13 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1333568, + "thread": 3 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1507632, + "thread": 11 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1741284, + "thread": 22 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 1963379, + "thread": 1 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2061751, + "thread": 20 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2163132, + "thread": 29 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2408235, + "thread": 5 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2538903, + "thread": 31 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2722315, + "thread": 19 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 2835134, + "thread": 4 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 3042169, + "thread": 8 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 3279102, + "thread": 24 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 3394334, + "thread": 1 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 3492344, + "thread": 26 + } + }, + { + "amount": "559.937312513", + "slot": { + "period": 3659530, + "thread": 30 + } + }, + { + "amount": "559.937312519", + "slot": { + "period": 3865868, + "thread": 30 + } + } + ], + "AU12uHcAjfKZWDazq5ycsb2uUZyiMHCFAUsFuMHCGpKFfTGbHFgjw": [ + { + "amount": "351.704564063", + "slot": { + "period": 19943, + "thread": 29 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 212691, + "thread": 30 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 443233, + "thread": 9 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 523808, + "thread": 14 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 742925, + "thread": 19 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 960838, + "thread": 20 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 986692, + "thread": 1 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 1306765, + "thread": 31 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 1318903, + "thread": 24 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 1622606, + "thread": 19 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 1665598, + "thread": 31 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 1820971, + "thread": 1 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2078687, + "thread": 8 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2271204, + "thread": 27 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2402120, + "thread": 1 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2592180, + "thread": 14 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2629245, + "thread": 29 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2934532, + "thread": 12 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 2992204, + "thread": 5 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 3220056, + "thread": 8 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 3428234, + "thread": 2 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 3614956, + "thread": 7 + } + }, + { + "amount": "351.704564063", + "slot": { + "period": 3776494, + "thread": 14 + } + }, + { + "amount": "351.704564058", + "slot": { + "period": 3789003, + "thread": 22 + } + } + ], + "AU12uJU1isGbzaeHCQmf61a8rDauzPXFThzGNr6Sm5YwQfe9SyV63": [ + { + "amount": "406.722534608", + "slot": { + "period": 79725, + "thread": 17 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 282761, + "thread": 13 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 489683, + "thread": 21 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 513986, + "thread": 4 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 789616, + "thread": 8 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 857703, + "thread": 20 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1051426, + "thread": 6 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1235885, + "thread": 25 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1473058, + "thread": 22 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1584900, + "thread": 4 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1670982, + "thread": 28 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 1915727, + "thread": 10 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2124529, + "thread": 2 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2269090, + "thread": 31 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2306366, + "thread": 6 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2582964, + "thread": 7 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2735958, + "thread": 10 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2942149, + "thread": 24 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 2998298, + "thread": 25 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 3201929, + "thread": 8 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 3358762, + "thread": 19 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 3465194, + "thread": 22 + } + }, + { + "amount": "406.722534608", + "slot": { + "period": 3641408, + "thread": 26 + } + }, + { + "amount": "406.722534604", + "slot": { + "period": 3848950, + "thread": 14 + } + } + ], + "AU12uKLWH3pgYbc3FMAhK1nt1mWv9HAgVgmGVipa1we9NTJ3WQs9N": [ + { + "amount": "256.035914178", + "slot": { + "period": 78513, + "thread": 20 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 250628, + "thread": 31 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 402960, + "thread": 6 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 638924, + "thread": 15 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 718460, + "thread": 21 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 832314, + "thread": 6 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1046563, + "thread": 29 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1209267, + "thread": 12 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1467276, + "thread": 22 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1618078, + "thread": 8 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1739153, + "thread": 16 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 1893307, + "thread": 11 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2045265, + "thread": 2 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2167563, + "thread": 20 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2373277, + "thread": 27 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2594995, + "thread": 0 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2634012, + "thread": 21 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 2810548, + "thread": 24 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 3009416, + "thread": 8 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 3150774, + "thread": 2 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 3422349, + "thread": 0 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 3615970, + "thread": 4 + } + }, + { + "amount": "256.035914178", + "slot": { + "period": 3628273, + "thread": 13 + } + }, + { + "amount": "256.035914173", + "slot": { + "period": 3840736, + "thread": 17 + } + } + ], + "AU12uKLf9rZipToGENHuKA9pHmYYWesmsV4QAQUxw9YunXPhZGEC5": [ + { + "amount": "215.770120087", + "slot": { + "period": 75156, + "thread": 25 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 287106, + "thread": 14 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 435359, + "thread": 22 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 570992, + "thread": 24 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 729732, + "thread": 11 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 936545, + "thread": 22 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1093495, + "thread": 10 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1283892, + "thread": 17 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1423861, + "thread": 15 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1526124, + "thread": 6 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1710883, + "thread": 8 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 1900564, + "thread": 17 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2044772, + "thread": 31 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2194655, + "thread": 22 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2393177, + "thread": 15 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2578241, + "thread": 14 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2642886, + "thread": 30 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 2819101, + "thread": 21 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 3096814, + "thread": 0 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 3219384, + "thread": 19 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 3294901, + "thread": 24 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 3545657, + "thread": 26 + } + }, + { + "amount": "215.770120087", + "slot": { + "period": 3735979, + "thread": 2 + } + }, + { + "amount": "215.770120092", + "slot": { + "period": 3935366, + "thread": 15 + } + } + ], + "AU12uN8ChCgkSu6jwTb42n1faM9r8ePDqQRRbxGqEJLj5ZSoY1Xrw": [ + { + "amount": "251.265628529", + "slot": { + "period": 69317, + "thread": 31 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 321395, + "thread": 9 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 475279, + "thread": 28 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 520365, + "thread": 25 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 701599, + "thread": 24 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 873574, + "thread": 5 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1077936, + "thread": 18 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1202520, + "thread": 0 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1476669, + "thread": 13 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1550174, + "thread": 31 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1674394, + "thread": 24 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 1867377, + "thread": 28 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2093058, + "thread": 30 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2223064, + "thread": 11 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2460258, + "thread": 30 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2515469, + "thread": 21 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2760184, + "thread": 21 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2936843, + "thread": 26 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 2959998, + "thread": 23 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 3138269, + "thread": 24 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 3304700, + "thread": 25 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 3585061, + "thread": 23 + } + }, + { + "amount": "251.265628529", + "slot": { + "period": 3632247, + "thread": 30 + } + }, + { + "amount": "251.265628531", + "slot": { + "period": 3802276, + "thread": 7 + } + } + ], + "AU12uNXwGr6HTnkSyitoZVFRiuB6QQB2ipoDDer9gaBtEUxPiygKz": [ + { + "amount": "530.946486873", + "slot": { + "period": 21360, + "thread": 21 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 301960, + "thread": 24 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 382706, + "thread": 30 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 637080, + "thread": 3 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 782959, + "thread": 16 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 941475, + "thread": 24 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1123169, + "thread": 20 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1189253, + "thread": 7 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1342470, + "thread": 6 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1579610, + "thread": 4 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1761480, + "thread": 29 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 1892443, + "thread": 9 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2140921, + "thread": 0 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2246583, + "thread": 4 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2369084, + "thread": 22 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2558616, + "thread": 24 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2768043, + "thread": 29 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 2872471, + "thread": 20 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 3095549, + "thread": 22 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 3125002, + "thread": 15 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 3392148, + "thread": 5 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 3599895, + "thread": 31 + } + }, + { + "amount": "530.946486873", + "slot": { + "period": 3631715, + "thread": 25 + } + }, + { + "amount": "530.946486876", + "slot": { + "period": 3844225, + "thread": 28 + } + } + ], + "AU12uNY36PrK5Nkua3RgLFZ5vd7qA2sUcDfWfq8vTpSUnHEmPZLdY": [ + { + "amount": "133.711936261", + "slot": { + "period": 83950, + "thread": 30 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 190235, + "thread": 10 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 343935, + "thread": 13 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 594625, + "thread": 18 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 672220, + "thread": 16 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 950154, + "thread": 6 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1109163, + "thread": 3 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1194414, + "thread": 23 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1474077, + "thread": 13 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1495693, + "thread": 17 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1689335, + "thread": 10 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 1862811, + "thread": 13 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2062515, + "thread": 3 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2200098, + "thread": 20 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2387079, + "thread": 24 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2605725, + "thread": 5 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2626657, + "thread": 1 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 2814049, + "thread": 23 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 3098292, + "thread": 8 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 3260884, + "thread": 30 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 3374575, + "thread": 22 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 3455813, + "thread": 7 + } + }, + { + "amount": "133.711936261", + "slot": { + "period": 3638017, + "thread": 26 + } + }, + { + "amount": "133.711936254", + "slot": { + "period": 3922597, + "thread": 12 + } + } + ], + "AU12uPJRaM3zZDiLnkuCXyNSLFWs9h4Zr7aMoFpjgLx6CAsgA8pZ6": [ + { + "amount": "121.082205233", + "slot": { + "period": 107081, + "thread": 25 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 239402, + "thread": 2 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 336249, + "thread": 4 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 633459, + "thread": 4 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 714424, + "thread": 24 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 934832, + "thread": 24 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 987510, + "thread": 30 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 1288122, + "thread": 19 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 1479197, + "thread": 28 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 1566319, + "thread": 25 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 1750261, + "thread": 23 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 1926331, + "thread": 7 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2111772, + "thread": 1 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2154855, + "thread": 15 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2430795, + "thread": 30 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2529049, + "thread": 17 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2748013, + "thread": 8 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 2884202, + "thread": 29 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 3083245, + "thread": 25 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 3128038, + "thread": 22 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 3363979, + "thread": 1 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 3475781, + "thread": 29 + } + }, + { + "amount": "121.082205233", + "slot": { + "period": 3653013, + "thread": 19 + } + }, + { + "amount": "121.082205229", + "slot": { + "period": 3841170, + "thread": 18 + } + } + ], + "AU12uQXiXDbNnM3ApAx1Z9nWdU4wTM7AeP3SuKWu83YF5vcNkDDXb": [ + { + "amount": "182.887470570", + "slot": { + "period": 57326, + "thread": 15 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 203064, + "thread": 30 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 356213, + "thread": 10 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 517130, + "thread": 23 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 663413, + "thread": 21 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 918440, + "thread": 7 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1121764, + "thread": 6 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1251577, + "thread": 0 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1342812, + "thread": 4 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1562819, + "thread": 10 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1709941, + "thread": 31 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 1930259, + "thread": 23 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2040598, + "thread": 17 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2262217, + "thread": 5 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2388962, + "thread": 21 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2563375, + "thread": 19 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2670217, + "thread": 22 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 2835106, + "thread": 14 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 3003292, + "thread": 11 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 3161049, + "thread": 17 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 3401984, + "thread": 31 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 3611450, + "thread": 1 + } + }, + { + "amount": "182.887470570", + "slot": { + "period": 3629618, + "thread": 29 + } + }, + { + "amount": "182.887470571", + "slot": { + "period": 3902253, + "thread": 23 + } + } + ], + "AU12uRChxn8dF3foA8YXWRhqMdSNMvz8C8PsWLkS3sTaJHL5rxo8G": [ + { + "amount": "113.537227456", + "slot": { + "period": 58366, + "thread": 12 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 298603, + "thread": 12 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 484043, + "thread": 5 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 575818, + "thread": 28 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 718973, + "thread": 12 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 846729, + "thread": 9 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1122957, + "thread": 23 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1209769, + "thread": 0 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1323199, + "thread": 15 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1589630, + "thread": 18 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1785176, + "thread": 2 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 1832337, + "thread": 21 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2048010, + "thread": 26 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2289235, + "thread": 10 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2438023, + "thread": 18 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2572981, + "thread": 26 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2764980, + "thread": 5 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 2897547, + "thread": 16 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 3114053, + "thread": 30 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 3230857, + "thread": 23 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 3308816, + "thread": 2 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 3491932, + "thread": 22 + } + }, + { + "amount": "113.537227456", + "slot": { + "period": 3719357, + "thread": 6 + } + }, + { + "amount": "113.537227453", + "slot": { + "period": 3869490, + "thread": 2 + } + } + ], + "AU12uRf2aBpYiRSUUYYbC6pEYnZYtccXmokRRcZqJUkMrLAu3kGxT": [ + { + "amount": "6939.916666667", + "slot": { + "period": 46195, + "thread": 23 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 313767, + "thread": 22 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 362925, + "thread": 27 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 564364, + "thread": 2 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 713210, + "thread": 30 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 844027, + "thread": 7 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 995349, + "thread": 10 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 1261564, + "thread": 4 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 1478892, + "thread": 3 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 1531458, + "thread": 25 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 1749022, + "thread": 19 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 1957726, + "thread": 14 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2030062, + "thread": 17 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2258715, + "thread": 28 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2321400, + "thread": 6 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2519865, + "thread": 17 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2712590, + "thread": 9 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 2912938, + "thread": 24 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 3028570, + "thread": 7 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 3246039, + "thread": 21 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 3302853, + "thread": 7 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 3458312, + "thread": 28 + } + }, + { + "amount": "6939.916666667", + "slot": { + "period": 3631758, + "thread": 10 + } + }, + { + "amount": "6939.916666659", + "slot": { + "period": 3917067, + "thread": 27 + } + } + ], + "AU12uRn2mHt2s8yjB2hd6f7h2zRUzvi2Dx3XzSHxJrQWymFxKyR8v": [ + { + "amount": "92.738907790", + "slot": { + "period": 106976, + "thread": 31 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 211675, + "thread": 17 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 389877, + "thread": 8 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 546996, + "thread": 25 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 802234, + "thread": 22 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 831126, + "thread": 24 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1114736, + "thread": 19 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1239017, + "thread": 21 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1441097, + "thread": 15 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1561729, + "thread": 14 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1771161, + "thread": 4 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1809887, + "thread": 3 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 1981705, + "thread": 1 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 2240189, + "thread": 3 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 2418795, + "thread": 29 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 2493071, + "thread": 9 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 2787918, + "thread": 30 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 2872953, + "thread": 27 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 3030427, + "thread": 18 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 3199429, + "thread": 22 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 3333526, + "thread": 5 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 3616007, + "thread": 28 + } + }, + { + "amount": "92.738907790", + "slot": { + "period": 3752768, + "thread": 21 + } + }, + { + "amount": "92.738907796", + "slot": { + "period": 3887300, + "thread": 28 + } + } + ], + "AU12uRomdfRenBfU8wJGYzXKEq7v7rmAzqHoepTa7PeNHvQEKNGKW": [ + { + "amount": "109.394122699", + "slot": { + "period": 36222, + "thread": 24 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 188328, + "thread": 19 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 333595, + "thread": 6 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 518152, + "thread": 0 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 796914, + "thread": 6 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 856403, + "thread": 18 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 987576, + "thread": 11 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 1254977, + "thread": 27 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 1342156, + "thread": 22 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 1578918, + "thread": 18 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 1714205, + "thread": 23 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 1861728, + "thread": 9 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2105027, + "thread": 18 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2197808, + "thread": 15 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2452016, + "thread": 11 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2479422, + "thread": 30 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2760582, + "thread": 15 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 2908866, + "thread": 15 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 3096935, + "thread": 11 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 3283952, + "thread": 6 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 3407769, + "thread": 2 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 3563038, + "thread": 4 + } + }, + { + "amount": "109.394122699", + "slot": { + "period": 3666990, + "thread": 22 + } + }, + { + "amount": "109.394122691", + "slot": { + "period": 3928924, + "thread": 5 + } + } + ], + "AU12uRszmYVjnYXbca8eA479pUooVxuvNhnCJU5pE18zV82czHb3z": [ + { + "amount": "72.412208693", + "slot": { + "period": 105733, + "thread": 14 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 271653, + "thread": 14 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 350528, + "thread": 15 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 610071, + "thread": 24 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 763000, + "thread": 14 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 929097, + "thread": 5 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1034601, + "thread": 10 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1163223, + "thread": 28 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1473806, + "thread": 26 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1604769, + "thread": 16 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1733833, + "thread": 29 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 1950986, + "thread": 16 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2093803, + "thread": 6 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2248471, + "thread": 29 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2458210, + "thread": 6 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2472920, + "thread": 19 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2731759, + "thread": 29 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 2917041, + "thread": 30 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 3077829, + "thread": 15 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 3147362, + "thread": 22 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 3329145, + "thread": 4 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 3568887, + "thread": 8 + } + }, + { + "amount": "72.412208693", + "slot": { + "period": 3624192, + "thread": 3 + } + }, + { + "amount": "72.412208700", + "slot": { + "period": 3929386, + "thread": 22 + } + } + ], + "AU12uSXcYoY9B1CnJvkyspK43dDrGTjMLUFfY2zLyGN8hbt2eDuDh": [ + { + "amount": "423.760154751", + "slot": { + "period": 133710, + "thread": 10 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 283351, + "thread": 19 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 450966, + "thread": 27 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 493790, + "thread": 12 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 687324, + "thread": 30 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 861953, + "thread": 2 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1079343, + "thread": 9 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1151173, + "thread": 29 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1427150, + "thread": 1 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1488892, + "thread": 27 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1740805, + "thread": 31 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 1962449, + "thread": 14 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2014114, + "thread": 3 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2282028, + "thread": 30 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2419667, + "thread": 9 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2474780, + "thread": 9 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2783631, + "thread": 1 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 2921088, + "thread": 12 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 3096513, + "thread": 21 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 3228852, + "thread": 16 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 3310766, + "thread": 3 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 3462642, + "thread": 18 + } + }, + { + "amount": "423.760154751", + "slot": { + "period": 3713951, + "thread": 9 + } + }, + { + "amount": "423.760154741", + "slot": { + "period": 3885494, + "thread": 25 + } + } + ], + "AU12uSe4NTYt6fKM8HTLscd11f9691g8VJdzPVtRXghagEM5RSV7z": [ + { + "amount": "344.849984994", + "slot": { + "period": 131744, + "thread": 12 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 192794, + "thread": 9 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 433708, + "thread": 26 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 544235, + "thread": 10 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 808064, + "thread": 25 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 916397, + "thread": 23 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1035705, + "thread": 26 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1190788, + "thread": 26 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1354752, + "thread": 9 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1491237, + "thread": 26 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1655789, + "thread": 25 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 1872167, + "thread": 6 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2086871, + "thread": 20 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2253080, + "thread": 20 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2401215, + "thread": 17 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2607327, + "thread": 24 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2716399, + "thread": 28 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 2873635, + "thread": 24 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 3057331, + "thread": 5 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 3192996, + "thread": 22 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 3357066, + "thread": 25 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 3515343, + "thread": 13 + } + }, + { + "amount": "344.849984994", + "slot": { + "period": 3730033, + "thread": 26 + } + }, + { + "amount": "344.849985002", + "slot": { + "period": 3937913, + "thread": 31 + } + } + ], + "AU12uTdh25qGaLMpSLeJyGdEcm5vuwLeJ4E2tcxW2oe2WHzunz8Lx": [ + { + "amount": "197.890895503", + "slot": { + "period": 30166, + "thread": 11 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 266890, + "thread": 4 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 371569, + "thread": 23 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 652372, + "thread": 21 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 655610, + "thread": 16 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 895638, + "thread": 9 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1021699, + "thread": 25 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1219093, + "thread": 23 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1365491, + "thread": 3 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1572869, + "thread": 28 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1789757, + "thread": 28 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 1914277, + "thread": 19 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2096410, + "thread": 5 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2275774, + "thread": 25 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2403756, + "thread": 11 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2558426, + "thread": 11 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2659372, + "thread": 8 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 2905135, + "thread": 4 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 3005529, + "thread": 22 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 3137308, + "thread": 29 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 3410378, + "thread": 8 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 3608525, + "thread": 10 + } + }, + { + "amount": "197.890895503", + "slot": { + "period": 3750253, + "thread": 3 + } + }, + { + "amount": "197.890895509", + "slot": { + "period": 3930629, + "thread": 24 + } + } + ], + "AU12uUhcZUF7BG47Jwxmo8RKUchTyrc7ckKntUAeDAbBMLmvBJrm2": [ + { + "amount": "110.766560764", + "slot": { + "period": 40724, + "thread": 27 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 167743, + "thread": 15 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 481366, + "thread": 3 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 611244, + "thread": 12 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 727680, + "thread": 8 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 827585, + "thread": 8 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1148184, + "thread": 7 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1294298, + "thread": 28 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1466456, + "thread": 16 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1490346, + "thread": 8 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1667228, + "thread": 24 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1853438, + "thread": 14 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 1993775, + "thread": 6 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 2247484, + "thread": 17 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 2419643, + "thread": 21 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 2495268, + "thread": 23 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 2656147, + "thread": 14 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 2890892, + "thread": 29 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 3014706, + "thread": 26 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 3136984, + "thread": 19 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 3334003, + "thread": 1 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 3605997, + "thread": 30 + } + }, + { + "amount": "110.766560764", + "slot": { + "period": 3679460, + "thread": 13 + } + }, + { + "amount": "110.766560752", + "slot": { + "period": 3828656, + "thread": 17 + } + } + ], + "AU12uWabjUpAZnksC4PBz7qXENXEtXuGSbQhgyNecR18yreCsdQFG": [ + { + "amount": "485.250402391", + "slot": { + "period": 119456, + "thread": 25 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 291757, + "thread": 9 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 411250, + "thread": 10 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 494464, + "thread": 11 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 735478, + "thread": 14 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 910628, + "thread": 0 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1087663, + "thread": 3 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1296958, + "thread": 7 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1477475, + "thread": 15 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1537111, + "thread": 13 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1743331, + "thread": 26 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 1843477, + "thread": 30 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2077915, + "thread": 1 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2205634, + "thread": 1 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2315581, + "thread": 27 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2615753, + "thread": 23 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2625285, + "thread": 7 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 2887987, + "thread": 5 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 3023596, + "thread": 6 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 3255484, + "thread": 1 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 3329956, + "thread": 27 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 3563759, + "thread": 31 + } + }, + { + "amount": "485.250402391", + "slot": { + "period": 3728794, + "thread": 21 + } + }, + { + "amount": "485.250402401", + "slot": { + "period": 3832562, + "thread": 26 + } + } + ], + "AU12uXZsyGuuWrWswwsiXUuinExDeD4BPVN1L8dTWyiYmdWhwbt8M": [ + { + "amount": "81.112387633", + "slot": { + "period": 146414, + "thread": 3 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 295123, + "thread": 14 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 372554, + "thread": 12 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 547794, + "thread": 1 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 793826, + "thread": 24 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 910549, + "thread": 11 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1136692, + "thread": 19 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1292541, + "thread": 31 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1411974, + "thread": 14 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1570072, + "thread": 16 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1659742, + "thread": 18 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 1849535, + "thread": 4 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2098980, + "thread": 7 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2187170, + "thread": 4 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2341762, + "thread": 12 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2569463, + "thread": 15 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2764349, + "thread": 30 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 2875205, + "thread": 26 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 3098178, + "thread": 2 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 3132437, + "thread": 24 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 3440452, + "thread": 13 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 3603742, + "thread": 7 + } + }, + { + "amount": "81.112387633", + "slot": { + "period": 3775484, + "thread": 14 + } + }, + { + "amount": "81.112387623", + "slot": { + "period": 3932756, + "thread": 6 + } + } + ], + "AU12uXqgZX55tWyCB8giVmp3Xh5hcGvK7pzPgasdpzCWp8qoUCKR3": [ + { + "amount": "327.558580736", + "slot": { + "period": 123997, + "thread": 22 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 266972, + "thread": 24 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 465464, + "thread": 25 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 640085, + "thread": 2 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 736388, + "thread": 6 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 868909, + "thread": 18 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1014796, + "thread": 24 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1221452, + "thread": 0 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1464879, + "thread": 31 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1510594, + "thread": 2 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1757545, + "thread": 16 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 1810472, + "thread": 30 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2007225, + "thread": 12 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2180059, + "thread": 28 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2409119, + "thread": 30 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2474143, + "thread": 5 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2674987, + "thread": 23 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 2936892, + "thread": 13 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 3051421, + "thread": 31 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 3216779, + "thread": 18 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 3311222, + "thread": 13 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 3552333, + "thread": 28 + } + }, + { + "amount": "327.558580736", + "slot": { + "period": 3768214, + "thread": 8 + } + }, + { + "amount": "327.558580732", + "slot": { + "period": 3895091, + "thread": 24 + } + } + ], + "AU12uYJY7MtwpTBiLNLnQm4PwKn2LQe1MV6CmznUXyN5rnrzTdvnN": [ + { + "amount": "81.699464340", + "slot": { + "period": 51729, + "thread": 22 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 231498, + "thread": 17 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 343012, + "thread": 25 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 496095, + "thread": 0 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 771293, + "thread": 12 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 884472, + "thread": 5 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1094500, + "thread": 24 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1275506, + "thread": 24 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1322523, + "thread": 19 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1497143, + "thread": 30 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1742933, + "thread": 9 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 1937312, + "thread": 28 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2013704, + "thread": 13 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2247324, + "thread": 7 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2328022, + "thread": 4 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2462739, + "thread": 3 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2766258, + "thread": 16 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2810493, + "thread": 6 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 2991061, + "thread": 28 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 3212470, + "thread": 17 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 3440549, + "thread": 16 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 3514076, + "thread": 18 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 3777229, + "thread": 11 + } + }, + { + "amount": "81.699464340", + "slot": { + "period": 3833382, + "thread": 30 + } + } + ], + "AU12uZwgKJFFiYnKR7XsNzmZtS9HihWUcNWEqUUYCiBeZy9TzwavF": [ + { + "amount": "118.461482152", + "slot": { + "period": 44069, + "thread": 11 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 285419, + "thread": 2 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 414909, + "thread": 9 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 554842, + "thread": 22 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 669867, + "thread": 17 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 867526, + "thread": 5 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1017508, + "thread": 30 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1164723, + "thread": 25 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1355635, + "thread": 29 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1561601, + "thread": 7 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1739322, + "thread": 21 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 1880938, + "thread": 0 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2090535, + "thread": 14 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2229370, + "thread": 29 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2322634, + "thread": 7 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2583627, + "thread": 19 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2663733, + "thread": 24 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 2852625, + "thread": 30 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3009667, + "thread": 26 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3221471, + "thread": 25 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3442448, + "thread": 31 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3530186, + "thread": 26 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3631656, + "thread": 22 + } + }, + { + "amount": "118.461482152", + "slot": { + "period": 3882954, + "thread": 6 + } + } + ], + "AU12uZxDg5Qp2shUe8CkpxnueyieuBL83TtJFXu88kg2DFdTzVXgV": [ + { + "amount": "173.715032129", + "slot": { + "period": 121194, + "thread": 9 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 318479, + "thread": 22 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 372223, + "thread": 14 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 644504, + "thread": 11 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 746436, + "thread": 0 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 840607, + "thread": 22 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1075913, + "thread": 18 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1280793, + "thread": 5 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1375295, + "thread": 7 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1635800, + "thread": 15 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1782684, + "thread": 7 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 1938364, + "thread": 12 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2102046, + "thread": 0 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2238312, + "thread": 11 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2389029, + "thread": 30 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2514452, + "thread": 13 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2767232, + "thread": 21 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 2907022, + "thread": 12 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3120203, + "thread": 10 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3248068, + "thread": 29 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3400342, + "thread": 9 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3463372, + "thread": 26 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3719095, + "thread": 7 + } + }, + { + "amount": "173.715032129", + "slot": { + "period": 3828910, + "thread": 5 + } + } + ], + "AU12ua8qDoVshKuCsCcWKJbq1EUd7uDsvbYMYMJ2vNrqnWG6xCkkM": [ + { + "amount": "173.647651792", + "slot": { + "period": 87763, + "thread": 20 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 303805, + "thread": 20 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 347127, + "thread": 5 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 553127, + "thread": 18 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 664253, + "thread": 14 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 969928, + "thread": 6 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1136849, + "thread": 15 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1248474, + "thread": 15 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1394574, + "thread": 30 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1636217, + "thread": 31 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1726346, + "thread": 27 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 1930375, + "thread": 10 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2138299, + "thread": 8 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2258315, + "thread": 30 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2388308, + "thread": 10 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2507564, + "thread": 31 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2688542, + "thread": 9 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 2824904, + "thread": 19 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 3035736, + "thread": 6 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 3191894, + "thread": 29 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 3443701, + "thread": 18 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 3554437, + "thread": 14 + } + }, + { + "amount": "173.647651792", + "slot": { + "period": 3662393, + "thread": 10 + } + }, + { + "amount": "173.647651801", + "slot": { + "period": 3827724, + "thread": 21 + } + } + ], + "AU12uanHcBbY49zohMXDXuRLQiqXLA1vhzUm9eG1bd2fkdoQBEDhC": [ + { + "amount": "147.421551284", + "slot": { + "period": 16870, + "thread": 30 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 263045, + "thread": 8 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 413366, + "thread": 15 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 571279, + "thread": 1 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 805363, + "thread": 0 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 959309, + "thread": 25 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 987513, + "thread": 14 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1209239, + "thread": 14 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1407714, + "thread": 17 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1616254, + "thread": 23 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1760861, + "thread": 19 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1847063, + "thread": 16 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 1988843, + "thread": 31 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2279873, + "thread": 3 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2406957, + "thread": 24 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2570118, + "thread": 3 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2712874, + "thread": 13 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2849830, + "thread": 0 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 2976717, + "thread": 0 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 3160181, + "thread": 6 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 3410837, + "thread": 13 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 3569502, + "thread": 5 + } + }, + { + "amount": "147.421551284", + "slot": { + "period": 3689677, + "thread": 4 + } + }, + { + "amount": "147.421551274", + "slot": { + "period": 3942422, + "thread": 27 + } + } + ], + "AU12ub89JCSHGuim6gJzPZ13gLk3HReZ9F5f5ZD1yiMwPgNMk3Pfo": [ + { + "amount": "173.056824927", + "slot": { + "period": 39593, + "thread": 5 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 317636, + "thread": 0 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 360797, + "thread": 8 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 557491, + "thread": 11 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 657341, + "thread": 19 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 863612, + "thread": 31 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1124540, + "thread": 19 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1217811, + "thread": 22 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1339785, + "thread": 21 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1638532, + "thread": 7 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1733318, + "thread": 16 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 1878855, + "thread": 22 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2094570, + "thread": 2 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2148625, + "thread": 19 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2297214, + "thread": 15 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2498136, + "thread": 8 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2790561, + "thread": 0 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 2905098, + "thread": 18 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 3056536, + "thread": 29 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 3141901, + "thread": 19 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 3313413, + "thread": 3 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 3487804, + "thread": 16 + } + }, + { + "amount": "173.056824927", + "slot": { + "period": 3619244, + "thread": 27 + } + }, + { + "amount": "173.056824916", + "slot": { + "period": 3921915, + "thread": 23 + } + } + ], + "AU12ubhKmSdaDky7HbeoTsfzZSWKvudEvbu9mETdSPQMAmvpPrwER": [ + { + "amount": "154.646736305", + "slot": { + "period": 63696, + "thread": 21 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 192150, + "thread": 3 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 396449, + "thread": 24 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 599418, + "thread": 2 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 702558, + "thread": 21 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 835485, + "thread": 30 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1103834, + "thread": 3 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1280220, + "thread": 28 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1405683, + "thread": 23 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1579354, + "thread": 31 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1673478, + "thread": 21 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 1937676, + "thread": 28 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2045698, + "thread": 1 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2262100, + "thread": 12 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2337006, + "thread": 23 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2547770, + "thread": 9 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2638334, + "thread": 1 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 2809384, + "thread": 5 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 3023631, + "thread": 28 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 3130022, + "thread": 1 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 3313205, + "thread": 11 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 3465690, + "thread": 14 + } + }, + { + "amount": "154.646736305", + "slot": { + "period": 3665783, + "thread": 22 + } + }, + { + "amount": "154.646736302", + "slot": { + "period": 3839381, + "thread": 8 + } + } + ], + "AU12udiF42CQQL5hCor7Vy1UZ6aS1GP4WD64RmzrMRg639VUM952m": [ + { + "amount": "381.552087572", + "slot": { + "period": 128199, + "thread": 2 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 200585, + "thread": 29 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 329911, + "thread": 9 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 522073, + "thread": 13 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 674905, + "thread": 29 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 856969, + "thread": 2 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1115503, + "thread": 11 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1276839, + "thread": 25 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1333668, + "thread": 19 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1486435, + "thread": 7 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1732156, + "thread": 16 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 1952632, + "thread": 2 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2027216, + "thread": 26 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2232800, + "thread": 26 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2329354, + "thread": 6 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2591387, + "thread": 30 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2645803, + "thread": 13 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2900484, + "thread": 29 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 2953831, + "thread": 30 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 3162193, + "thread": 19 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 3316774, + "thread": 25 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 3573629, + "thread": 12 + } + }, + { + "amount": "381.552087572", + "slot": { + "period": 3663634, + "thread": 23 + } + }, + { + "amount": "381.552087570", + "slot": { + "period": 3880070, + "thread": 6 + } + } + ], + "AU12ueXBXLCQ8vzsCEieosnQVrkAominAke64c7XeQXdsKThhbJou": [ + { + "amount": "242.436133129", + "slot": { + "period": 27702, + "thread": 24 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 296613, + "thread": 25 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 404134, + "thread": 29 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 492919, + "thread": 31 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 778516, + "thread": 31 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 863332, + "thread": 29 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1077873, + "thread": 31 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1182275, + "thread": 1 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1431048, + "thread": 31 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1619117, + "thread": 9 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1784881, + "thread": 31 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 1836532, + "thread": 10 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2075055, + "thread": 19 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2202156, + "thread": 2 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2416961, + "thread": 16 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2550409, + "thread": 10 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2783807, + "thread": 23 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2865401, + "thread": 29 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 2971927, + "thread": 12 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 3251872, + "thread": 21 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 3420033, + "thread": 24 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 3601174, + "thread": 1 + } + }, + { + "amount": "242.436133129", + "slot": { + "period": 3688600, + "thread": 2 + } + }, + { + "amount": "242.436133140", + "slot": { + "period": 3896236, + "thread": 6 + } + } + ], + "AU12ueqtsYA4Hz11PYjFcWnbC28j79qwFnN7Ye61vS6MNFXY7tnAa": [ + { + "amount": "157.331797875", + "slot": { + "period": 24920, + "thread": 23 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 300547, + "thread": 11 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 473451, + "thread": 13 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 560272, + "thread": 3 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 819978, + "thread": 29 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 953361, + "thread": 24 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1111368, + "thread": 21 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1290006, + "thread": 7 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1422273, + "thread": 25 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1512269, + "thread": 11 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1736431, + "thread": 17 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 1841806, + "thread": 28 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2006143, + "thread": 24 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2232404, + "thread": 28 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2316372, + "thread": 5 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2561914, + "thread": 26 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2668865, + "thread": 19 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 2922378, + "thread": 17 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 3094685, + "thread": 16 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 3224563, + "thread": 27 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 3357242, + "thread": 29 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 3599174, + "thread": 22 + } + }, + { + "amount": "157.331797875", + "slot": { + "period": 3726076, + "thread": 17 + } + }, + { + "amount": "157.331797869", + "slot": { + "period": 3858804, + "thread": 8 + } + } + ], + "AU12uevSxh2kKvz3duTxKdTXfCGmjTXLXaerd64cK5sH9Cxsq4cLM": [ + { + "amount": "214.493760014", + "slot": { + "period": 96609, + "thread": 22 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 243454, + "thread": 27 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 412317, + "thread": 22 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 646166, + "thread": 12 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 804683, + "thread": 16 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 858812, + "thread": 17 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1011692, + "thread": 2 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1227787, + "thread": 25 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1458475, + "thread": 15 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1602734, + "thread": 6 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1803267, + "thread": 9 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 1888588, + "thread": 4 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2071767, + "thread": 18 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2239091, + "thread": 17 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2319660, + "thread": 15 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2584117, + "thread": 28 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2668139, + "thread": 7 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2909873, + "thread": 2 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 2989356, + "thread": 21 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 3138670, + "thread": 26 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 3364331, + "thread": 25 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 3562526, + "thread": 9 + } + }, + { + "amount": "214.493760014", + "slot": { + "period": 3681960, + "thread": 21 + } + }, + { + "amount": "214.493760002", + "slot": { + "period": 3842178, + "thread": 2 + } + } + ], + "AU12ufRNsF3JVgQDrXLtWParbRkfmxuWp1cAuncnejFiukWwyPTm8": [ + { + "amount": "92.815899033", + "slot": { + "period": 125942, + "thread": 23 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 304724, + "thread": 10 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 430872, + "thread": 0 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 496778, + "thread": 9 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 715087, + "thread": 0 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 973203, + "thread": 25 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1131536, + "thread": 6 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1279228, + "thread": 24 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1326655, + "thread": 23 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1573467, + "thread": 12 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1732498, + "thread": 21 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 1902099, + "thread": 1 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2143415, + "thread": 16 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2221372, + "thread": 12 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2460417, + "thread": 25 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2608020, + "thread": 9 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2756210, + "thread": 13 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 2940129, + "thread": 23 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 3095584, + "thread": 6 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 3142415, + "thread": 5 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 3387033, + "thread": 20 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 3604919, + "thread": 18 + } + }, + { + "amount": "92.815899033", + "slot": { + "period": 3684800, + "thread": 2 + } + }, + { + "amount": "92.815899022", + "slot": { + "period": 3825587, + "thread": 20 + } + } + ], + "AU12ug2dHwcqbdGHD3rBikxwp3Yzj4q1dZf4vzZbKM8Xe4giJ9mnf": [ + { + "amount": "224.031385821", + "slot": { + "period": 119125, + "thread": 22 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 210533, + "thread": 16 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 448615, + "thread": 22 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 589679, + "thread": 26 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 684229, + "thread": 5 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 888944, + "thread": 31 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1086225, + "thread": 14 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1158789, + "thread": 18 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1459400, + "thread": 28 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1553094, + "thread": 19 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1794485, + "thread": 14 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 1882851, + "thread": 11 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2122270, + "thread": 13 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2256170, + "thread": 10 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2386418, + "thread": 18 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2462698, + "thread": 31 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2728099, + "thread": 9 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2912459, + "thread": 3 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 2986994, + "thread": 30 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 3157661, + "thread": 17 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 3413143, + "thread": 1 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 3565570, + "thread": 19 + } + }, + { + "amount": "224.031385821", + "slot": { + "period": 3743370, + "thread": 12 + } + }, + { + "amount": "224.031385824", + "slot": { + "period": 3902146, + "thread": 2 + } + } + ], + "AU12ug7LhvZ7Zm1j3oV3LV5V1nBuMBXCptStgZDSg18UKYpRPthdX": [ + { + "amount": "99.297635849", + "slot": { + "period": 142960, + "thread": 10 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 236282, + "thread": 6 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 338896, + "thread": 13 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 559912, + "thread": 5 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 796698, + "thread": 4 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 965442, + "thread": 15 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1092911, + "thread": 15 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1267158, + "thread": 16 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1379168, + "thread": 28 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1529695, + "thread": 10 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1769841, + "thread": 18 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 1865244, + "thread": 20 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2023748, + "thread": 24 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2253592, + "thread": 3 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2313145, + "thread": 9 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2568842, + "thread": 26 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2718562, + "thread": 14 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2854884, + "thread": 11 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 2970915, + "thread": 16 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 3127373, + "thread": 26 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 3288729, + "thread": 9 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 3537624, + "thread": 2 + } + }, + { + "amount": "99.297635849", + "slot": { + "period": 3655779, + "thread": 20 + } + }, + { + "amount": "99.297635857", + "slot": { + "period": 3899586, + "thread": 17 + } + } + ], + "AU12ug8NcXKxWwjF82KCBzvADVBw7oNCjdBvZ6REGj1ehhpJLR9gc": [ + { + "amount": "460.740946402", + "slot": { + "period": 96727, + "thread": 11 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 288137, + "thread": 20 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 343336, + "thread": 3 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 509910, + "thread": 16 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 817155, + "thread": 2 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 872298, + "thread": 2 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1013205, + "thread": 8 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1181037, + "thread": 17 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1473896, + "thread": 11 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1637098, + "thread": 13 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1664462, + "thread": 7 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 1813015, + "thread": 9 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2068718, + "thread": 20 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2244391, + "thread": 18 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2367528, + "thread": 1 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2466137, + "thread": 24 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2750143, + "thread": 24 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2890390, + "thread": 18 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 2961286, + "thread": 31 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 3170814, + "thread": 18 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 3364774, + "thread": 11 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 3563717, + "thread": 2 + } + }, + { + "amount": "460.740946402", + "slot": { + "period": 3738370, + "thread": 8 + } + }, + { + "amount": "460.740946411", + "slot": { + "period": 3798094, + "thread": 4 + } + } + ], + "AU12uhQAzsTF7dfADN9bKkJf1RUqhYLbpGhMriL7XW1jZn8FhP2dJ": [ + { + "amount": "282.315766104", + "slot": { + "period": 111316, + "thread": 10 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 242564, + "thread": 20 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 480266, + "thread": 24 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 637654, + "thread": 19 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 658013, + "thread": 16 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 895009, + "thread": 25 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1122829, + "thread": 21 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1234195, + "thread": 8 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1402043, + "thread": 17 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1569827, + "thread": 8 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1724800, + "thread": 31 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 1914136, + "thread": 21 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2141069, + "thread": 13 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2285283, + "thread": 11 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2441876, + "thread": 3 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2540677, + "thread": 23 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2740109, + "thread": 9 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 2915962, + "thread": 28 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 3062065, + "thread": 8 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 3187593, + "thread": 10 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 3304293, + "thread": 0 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 3550561, + "thread": 28 + } + }, + { + "amount": "282.315766104", + "slot": { + "period": 3689899, + "thread": 19 + } + }, + { + "amount": "282.315766111", + "slot": { + "period": 3824012, + "thread": 30 + } + } + ], + "AU12uhheVtCW15SnagvdfZgjEo7MuJfx5ViUD3pYMU1bdJq53N3qa": [ + { + "amount": "384.123967461", + "slot": { + "period": 55776, + "thread": 18 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 197510, + "thread": 16 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 361833, + "thread": 5 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 589441, + "thread": 30 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 720441, + "thread": 13 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 895857, + "thread": 1 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1129484, + "thread": 2 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1229128, + "thread": 3 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1461716, + "thread": 13 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1594195, + "thread": 18 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1727756, + "thread": 26 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 1823469, + "thread": 23 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2052646, + "thread": 1 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2169819, + "thread": 14 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2305020, + "thread": 3 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2591295, + "thread": 7 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2634481, + "thread": 2 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2936900, + "thread": 9 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 2981997, + "thread": 31 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 3265653, + "thread": 5 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 3371807, + "thread": 23 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 3606266, + "thread": 27 + } + }, + { + "amount": "384.123967461", + "slot": { + "period": 3709912, + "thread": 5 + } + }, + { + "amount": "384.123967468", + "slot": { + "period": 3932844, + "thread": 9 + } + } + ], + "AU12uhvQSd6xuiSf89fxKF1K9AeWNh5rvZcEQzBEazjqxwGtpbfWy": [ + { + "amount": "260.495111315", + "slot": { + "period": 153758, + "thread": 8 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 234964, + "thread": 31 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 376398, + "thread": 10 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 647511, + "thread": 21 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 699336, + "thread": 18 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 828933, + "thread": 7 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1062887, + "thread": 29 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1255913, + "thread": 10 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1330357, + "thread": 13 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1490744, + "thread": 26 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1789016, + "thread": 16 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 1847233, + "thread": 17 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2060861, + "thread": 4 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2219637, + "thread": 14 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2430526, + "thread": 20 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2493504, + "thread": 14 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2759280, + "thread": 13 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 2820894, + "thread": 30 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 3030633, + "thread": 28 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 3264368, + "thread": 30 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 3404042, + "thread": 26 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 3582041, + "thread": 30 + } + }, + { + "amount": "260.495111315", + "slot": { + "period": 3769948, + "thread": 24 + } + }, + { + "amount": "260.495111308", + "slot": { + "period": 3864464, + "thread": 31 + } + } + ], + "AU12uiV1yZyLtF8QnLB7yxW92KCg6VSNPhbaA11nDeAv3eGq9Pu4Q": [ + { + "amount": "57.482957841", + "slot": { + "period": 144518, + "thread": 27 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 171489, + "thread": 3 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 375993, + "thread": 19 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 493411, + "thread": 5 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 786061, + "thread": 14 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 846587, + "thread": 10 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1057263, + "thread": 4 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1212271, + "thread": 18 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1425510, + "thread": 2 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1539919, + "thread": 13 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1685954, + "thread": 6 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 1837389, + "thread": 26 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2069470, + "thread": 14 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2259862, + "thread": 1 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2317313, + "thread": 19 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2573570, + "thread": 16 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2665115, + "thread": 18 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 2880179, + "thread": 2 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 3040058, + "thread": 15 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 3223158, + "thread": 12 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 3425050, + "thread": 1 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 3575434, + "thread": 26 + } + }, + { + "amount": "57.482957841", + "slot": { + "period": 3652941, + "thread": 13 + } + }, + { + "amount": "57.482957851", + "slot": { + "period": 3941984, + "thread": 4 + } + } + ], + "AU12ukLhHLhfjHmu2BrBk1whzPqs7rXy8bKX1LmawH2TXgiNLkbMr": [ + { + "amount": "106.508958015", + "slot": { + "period": 76156, + "thread": 22 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 316878, + "thread": 2 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 460412, + "thread": 19 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 644402, + "thread": 6 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 817777, + "thread": 15 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 942180, + "thread": 2 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1069351, + "thread": 18 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1212693, + "thread": 27 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1440246, + "thread": 6 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1569573, + "thread": 22 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1771337, + "thread": 18 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 1963390, + "thread": 29 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2054656, + "thread": 10 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2144761, + "thread": 8 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2461267, + "thread": 18 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2541863, + "thread": 13 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2757785, + "thread": 25 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2838895, + "thread": 16 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 2993321, + "thread": 28 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 3159461, + "thread": 30 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 3310145, + "thread": 9 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 3458627, + "thread": 21 + } + }, + { + "amount": "106.508958015", + "slot": { + "period": 3714269, + "thread": 25 + } + }, + { + "amount": "106.508958005", + "slot": { + "period": 3798108, + "thread": 29 + } + } + ], + "AU12ukVweX3KrKmsiistH13YJCqLdKdyVHk6Do7FKLStckAWsp8HT": [ + { + "amount": "359.171220590", + "slot": { + "period": 147518, + "thread": 30 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 221760, + "thread": 0 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 441398, + "thread": 0 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 585185, + "thread": 26 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 762766, + "thread": 20 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 848865, + "thread": 18 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1109008, + "thread": 11 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1233568, + "thread": 2 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1469460, + "thread": 11 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1585327, + "thread": 21 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1725683, + "thread": 29 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 1836599, + "thread": 19 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2074193, + "thread": 30 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2242921, + "thread": 15 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2452990, + "thread": 24 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2584155, + "thread": 31 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2715890, + "thread": 23 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 2852207, + "thread": 8 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 3005031, + "thread": 25 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 3258163, + "thread": 18 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 3291200, + "thread": 15 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 3596714, + "thread": 11 + } + }, + { + "amount": "359.171220590", + "slot": { + "period": 3626351, + "thread": 3 + } + }, + { + "amount": "359.171220595", + "slot": { + "period": 3849675, + "thread": 11 + } + } + ], + "AU12ukkxsbFzQLzCqPASSs3o1i1k2wZQ7CiVDYzgQgrWQCVTHi1DM": [ + { + "amount": "363.911491033", + "slot": { + "period": 33188, + "thread": 22 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 174605, + "thread": 3 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 430800, + "thread": 19 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 501934, + "thread": 9 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 734630, + "thread": 27 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 941183, + "thread": 10 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 993692, + "thread": 16 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 1196114, + "thread": 10 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 1353486, + "thread": 29 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 1483064, + "thread": 21 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 1672608, + "thread": 14 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 1908196, + "thread": 7 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2140781, + "thread": 29 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2198319, + "thread": 23 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2413656, + "thread": 28 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2538112, + "thread": 1 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2786500, + "thread": 8 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 2906821, + "thread": 4 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 3007147, + "thread": 27 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 3138889, + "thread": 19 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 3328600, + "thread": 14 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 3512325, + "thread": 22 + } + }, + { + "amount": "363.911491033", + "slot": { + "period": 3640656, + "thread": 25 + } + }, + { + "amount": "363.911491028", + "slot": { + "period": 3922149, + "thread": 31 + } + } + ], + "AU12umYLebCbDBa6YjLRbBcGBpzVbxu6zmmqQMduU8H1pMGYZ2FhN": [ + { + "amount": "330.132748651", + "slot": { + "period": 56957, + "thread": 28 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 247340, + "thread": 25 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 343603, + "thread": 26 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 499854, + "thread": 3 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 792722, + "thread": 21 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 973001, + "thread": 17 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 987154, + "thread": 21 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 1199455, + "thread": 3 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 1382757, + "thread": 21 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 1499892, + "thread": 28 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 1804298, + "thread": 17 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 1907722, + "thread": 29 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2123970, + "thread": 30 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2168753, + "thread": 10 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2369828, + "thread": 6 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2573812, + "thread": 25 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2741326, + "thread": 9 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2924041, + "thread": 10 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 2954106, + "thread": 25 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 3185232, + "thread": 10 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 3385868, + "thread": 12 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 3470396, + "thread": 10 + } + }, + { + "amount": "330.132748651", + "slot": { + "period": 3668419, + "thread": 30 + } + }, + { + "amount": "330.132748646", + "slot": { + "period": 3819610, + "thread": 24 + } + } + ], + "AU12unB2sbUe8bnJG2eBthBtSd87p7v6Woh131BMpo1nYZKRhN1qU": [ + { + "amount": "280.057879506", + "slot": { + "period": 116434, + "thread": 18 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 249928, + "thread": 29 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 455377, + "thread": 14 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 652065, + "thread": 18 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 816908, + "thread": 6 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 937803, + "thread": 22 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1027258, + "thread": 21 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1157757, + "thread": 24 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1337231, + "thread": 21 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1578875, + "thread": 7 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1750750, + "thread": 28 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1897709, + "thread": 30 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 1980284, + "thread": 16 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2145852, + "thread": 31 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2322591, + "thread": 17 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2480591, + "thread": 10 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2719239, + "thread": 28 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2950532, + "thread": 31 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 2958103, + "thread": 7 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 3260856, + "thread": 6 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 3308583, + "thread": 28 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 3557477, + "thread": 22 + } + }, + { + "amount": "280.057879506", + "slot": { + "period": 3723122, + "thread": 15 + } + }, + { + "amount": "280.057879497", + "slot": { + "period": 3844908, + "thread": 9 + } + } + ], + "AU12uowbHKBvd8Fpf5eUceD2eoRvNmz89i5apmsSYuj7XfjXMPGcL": [ + { + "amount": "133.799763564", + "slot": { + "period": 159946, + "thread": 16 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 203277, + "thread": 3 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 479526, + "thread": 21 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 514165, + "thread": 1 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 687637, + "thread": 20 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 830626, + "thread": 14 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1049571, + "thread": 1 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1170526, + "thread": 1 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1343660, + "thread": 9 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1611266, + "thread": 5 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1675440, + "thread": 12 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1816619, + "thread": 7 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 1997610, + "thread": 5 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 2144981, + "thread": 22 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 2422177, + "thread": 6 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 2464674, + "thread": 16 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 2753413, + "thread": 26 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 2865882, + "thread": 16 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 3011825, + "thread": 28 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 3125052, + "thread": 5 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 3426193, + "thread": 21 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 3535241, + "thread": 27 + } + }, + { + "amount": "133.799763564", + "slot": { + "period": 3619598, + "thread": 10 + } + }, + { + "amount": "133.799763571", + "slot": { + "period": 3873967, + "thread": 16 + } + } + ], + "AU12uowdRck4Fk1zr1mY1dM4PHyZ9V3v4cKyWAUbksA1VY1YhmQDz": [ + { + "amount": "108.732092565", + "slot": { + "period": 112741, + "thread": 31 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 309687, + "thread": 23 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 455343, + "thread": 8 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 503078, + "thread": 29 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 667982, + "thread": 20 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 965691, + "thread": 23 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1011415, + "thread": 12 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1275890, + "thread": 8 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1470217, + "thread": 15 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1546710, + "thread": 13 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1682594, + "thread": 15 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 1963461, + "thread": 29 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2042323, + "thread": 18 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2259788, + "thread": 31 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2373620, + "thread": 23 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2589129, + "thread": 4 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2708946, + "thread": 30 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 2796154, + "thread": 5 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 3094711, + "thread": 16 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 3164081, + "thread": 19 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 3429105, + "thread": 21 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 3591946, + "thread": 11 + } + }, + { + "amount": "108.732092565", + "slot": { + "period": 3691859, + "thread": 0 + } + }, + { + "amount": "108.732092571", + "slot": { + "period": 3918567, + "thread": 4 + } + } + ], + "AU12uphsbhUw2ZM2bvuB7jF5XahVtbaQfAxhL1twLhDCsrjPz3xsx": [ + { + "amount": "158.838803255", + "slot": { + "period": 133890, + "thread": 7 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 187157, + "thread": 18 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 372424, + "thread": 11 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 561425, + "thread": 28 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 809812, + "thread": 11 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 928484, + "thread": 1 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 999571, + "thread": 17 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 1252666, + "thread": 23 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 1374249, + "thread": 19 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 1532355, + "thread": 26 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 1776232, + "thread": 24 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 1903992, + "thread": 6 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2023841, + "thread": 28 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2211749, + "thread": 4 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2366798, + "thread": 23 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2537336, + "thread": 26 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2631547, + "thread": 28 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 2911173, + "thread": 3 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 3077688, + "thread": 8 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 3122246, + "thread": 2 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 3320876, + "thread": 5 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 3529550, + "thread": 20 + } + }, + { + "amount": "158.838803255", + "slot": { + "period": 3666870, + "thread": 11 + } + }, + { + "amount": "158.838803257", + "slot": { + "period": 3881137, + "thread": 27 + } + } + ], + "AU12upoHsqGoRf5YBZJzXpVUDeUMaEia2pVy7UGpZhRLXNFBxi2tN": [ + { + "amount": "176.551768282", + "slot": { + "period": 19751, + "thread": 4 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 187332, + "thread": 2 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 487765, + "thread": 15 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 625514, + "thread": 12 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 742299, + "thread": 7 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 966443, + "thread": 16 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1096207, + "thread": 13 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1170810, + "thread": 1 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1439639, + "thread": 0 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1514987, + "thread": 19 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1724410, + "thread": 23 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 1871600, + "thread": 6 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2032741, + "thread": 8 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2175405, + "thread": 11 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2413404, + "thread": 28 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2494274, + "thread": 23 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2719737, + "thread": 22 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 2812892, + "thread": 6 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 3040281, + "thread": 5 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 3210906, + "thread": 19 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 3355954, + "thread": 3 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 3512870, + "thread": 11 + } + }, + { + "amount": "176.551768282", + "slot": { + "period": 3743827, + "thread": 16 + } + }, + { + "amount": "176.551768277", + "slot": { + "period": 3926811, + "thread": 16 + } + } + ], + "AU12uqZvpfKddFGXKzbrP2kPFBqnMPDpeHgaL5Pxfr7ekDJcLvfuy": [ + { + "amount": "126.921734065", + "slot": { + "period": 50058, + "thread": 7 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 223796, + "thread": 19 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 390086, + "thread": 21 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 547825, + "thread": 19 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 695328, + "thread": 0 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 955733, + "thread": 30 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1096785, + "thread": 5 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1315285, + "thread": 9 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1429761, + "thread": 23 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1613572, + "thread": 3 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1680902, + "thread": 11 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 1819646, + "thread": 2 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2077872, + "thread": 31 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2181283, + "thread": 10 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2447078, + "thread": 0 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2479817, + "thread": 22 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2787899, + "thread": 15 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 2802719, + "thread": 8 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 3099479, + "thread": 9 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 3179150, + "thread": 17 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 3390508, + "thread": 27 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 3489883, + "thread": 20 + } + }, + { + "amount": "126.921734065", + "slot": { + "period": 3686783, + "thread": 29 + } + }, + { + "amount": "126.921734057", + "slot": { + "period": 3887226, + "thread": 29 + } + } + ], + "AU12urRgbTu21Uio1vV52ZDw5rCsdZBt8VHBNB3r8EMcUy2C57gPo": [ + { + "amount": "70.495914957", + "slot": { + "period": 12179, + "thread": 16 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 175074, + "thread": 7 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 450320, + "thread": 19 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 614578, + "thread": 29 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 654005, + "thread": 30 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 926906, + "thread": 7 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1030301, + "thread": 25 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1151667, + "thread": 2 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1423781, + "thread": 1 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1640873, + "thread": 5 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1719552, + "thread": 12 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1830841, + "thread": 2 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 1990098, + "thread": 28 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2149713, + "thread": 0 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2303787, + "thread": 9 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2569186, + "thread": 8 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2624944, + "thread": 5 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2926554, + "thread": 3 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 2982927, + "thread": 26 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 3157774, + "thread": 1 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 3378521, + "thread": 3 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 3470660, + "thread": 14 + } + }, + { + "amount": "70.495914957", + "slot": { + "period": 3678168, + "thread": 2 + } + }, + { + "amount": "70.495914968", + "slot": { + "period": 3915682, + "thread": 19 + } + } + ], + "AU12urj5Pt8vuYYq9um9xwRDqiBf4tgV7pPh2L6AyMMgPtvfPButd": [ + { + "amount": "1458.333333333", + "slot": { + "period": 46981, + "thread": 6 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 259325, + "thread": 0 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 448418, + "thread": 24 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 652916, + "thread": 16 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 758008, + "thread": 15 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 863376, + "thread": 7 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 997503, + "thread": 24 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1274473, + "thread": 4 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1440024, + "thread": 2 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1497237, + "thread": 13 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1732655, + "thread": 14 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1873194, + "thread": 1 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2084696, + "thread": 17 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2174753, + "thread": 29 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2343177, + "thread": 29 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2496181, + "thread": 8 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2632654, + "thread": 16 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2917691, + "thread": 16 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3027102, + "thread": 17 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3213813, + "thread": 7 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3332308, + "thread": 26 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3513597, + "thread": 27 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3656204, + "thread": 19 + } + }, + { + "amount": "1458.333333341", + "slot": { + "period": 3924718, + "thread": 5 + } + } + ], + "AU12usZddBEWh1MmrPJn36Yg3tDgkwYjrfF7Loh9fkEhtBpwCXZds": [ + { + "amount": "337.067693280", + "slot": { + "period": 51472, + "thread": 18 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 251416, + "thread": 3 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 372418, + "thread": 19 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 565492, + "thread": 2 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 778749, + "thread": 28 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 830167, + "thread": 20 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1125634, + "thread": 1 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1198009, + "thread": 31 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1458977, + "thread": 6 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1633899, + "thread": 10 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1725732, + "thread": 15 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 1862912, + "thread": 0 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2052680, + "thread": 27 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2167642, + "thread": 8 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2422346, + "thread": 18 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2548594, + "thread": 22 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2758991, + "thread": 2 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 2854309, + "thread": 15 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 3073370, + "thread": 7 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 3198563, + "thread": 29 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 3346116, + "thread": 15 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 3573844, + "thread": 19 + } + }, + { + "amount": "337.067693280", + "slot": { + "period": 3717935, + "thread": 11 + } + }, + { + "amount": "337.067693271", + "slot": { + "period": 3842347, + "thread": 29 + } + } + ], + "AU12usb484FM3pU64rF8ASQUrQLQNzFN3JkVRS76p8JXPf5uthjKp": [ + { + "amount": "202.633203584", + "slot": { + "period": 142784, + "thread": 2 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 216099, + "thread": 15 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 382994, + "thread": 9 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 644889, + "thread": 29 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 680371, + "thread": 2 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 962176, + "thread": 8 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1023896, + "thread": 13 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1209173, + "thread": 27 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1446892, + "thread": 17 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1627561, + "thread": 17 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1695669, + "thread": 16 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 1866650, + "thread": 16 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2128953, + "thread": 13 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2200667, + "thread": 15 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2364776, + "thread": 29 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2500702, + "thread": 26 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2664221, + "thread": 12 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 2834328, + "thread": 14 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 3001184, + "thread": 29 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 3279806, + "thread": 8 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 3290007, + "thread": 24 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 3568401, + "thread": 30 + } + }, + { + "amount": "202.633203584", + "slot": { + "period": 3695583, + "thread": 20 + } + }, + { + "amount": "202.633203573", + "slot": { + "period": 3846725, + "thread": 29 + } + } + ], + "AU12utQKsUtF3WyvTxemaddav9B1mAXeENAVi2wXwe7mokCEKQZvq": [ + { + "amount": "141.573993499", + "slot": { + "period": 71050, + "thread": 26 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 272059, + "thread": 22 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 411317, + "thread": 3 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 587455, + "thread": 16 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 758109, + "thread": 15 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 962024, + "thread": 10 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1119173, + "thread": 7 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1229868, + "thread": 22 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1341390, + "thread": 31 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1519819, + "thread": 17 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1782069, + "thread": 11 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 1907374, + "thread": 22 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2061679, + "thread": 21 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2199693, + "thread": 27 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2354500, + "thread": 11 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2507773, + "thread": 22 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2670841, + "thread": 28 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 2855607, + "thread": 7 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 3032760, + "thread": 4 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 3206799, + "thread": 27 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 3418580, + "thread": 30 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 3566536, + "thread": 11 + } + }, + { + "amount": "141.573993499", + "slot": { + "period": 3669864, + "thread": 30 + } + }, + { + "amount": "141.573993498", + "slot": { + "period": 3817338, + "thread": 2 + } + } + ], + "AU12utTnjwqncjaq1MAH5z5ywyPeJXm5cfEKEFYAZvzFDLVTWAx33": [ + { + "amount": "535.818812232", + "slot": { + "period": 113463, + "thread": 15 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 202246, + "thread": 9 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 415634, + "thread": 10 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 611925, + "thread": 17 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 687402, + "thread": 23 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 947744, + "thread": 22 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1116868, + "thread": 1 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1216018, + "thread": 5 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1399806, + "thread": 17 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1556250, + "thread": 26 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1732924, + "thread": 1 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 1843754, + "thread": 28 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2021430, + "thread": 18 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2272931, + "thread": 6 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2383793, + "thread": 0 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2519531, + "thread": 15 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2759657, + "thread": 6 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 2828659, + "thread": 5 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 3104984, + "thread": 5 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 3153878, + "thread": 28 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 3336652, + "thread": 11 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 3542556, + "thread": 31 + } + }, + { + "amount": "535.818812232", + "slot": { + "period": 3753649, + "thread": 9 + } + }, + { + "amount": "535.818812243", + "slot": { + "period": 3912708, + "thread": 13 + } + } + ], + "AU12utXZsabKDJm763ci6fenz7CSBLX5ahkPKn2ZbBNsteascUHhp": [ + { + "amount": "106.884904357", + "slot": { + "period": 166154, + "thread": 21 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 197092, + "thread": 30 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 445526, + "thread": 24 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 513725, + "thread": 29 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 686394, + "thread": 10 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 958516, + "thread": 10 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1014401, + "thread": 17 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1201164, + "thread": 17 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1363534, + "thread": 7 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1507678, + "thread": 21 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1752006, + "thread": 18 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1964196, + "thread": 24 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 1981692, + "thread": 26 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 2257768, + "thread": 16 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 2420110, + "thread": 17 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 2574848, + "thread": 20 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 2732401, + "thread": 28 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 2924584, + "thread": 4 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 3113102, + "thread": 8 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 3257264, + "thread": 9 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 3396696, + "thread": 3 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 3612557, + "thread": 31 + } + }, + { + "amount": "106.884904357", + "slot": { + "period": 3737099, + "thread": 14 + } + }, + { + "amount": "106.884904346", + "slot": { + "period": 3813981, + "thread": 14 + } + } + ], + "AU12utam19wzyw2ca3jsRZ67Xe2jEyYhYhgHWAo54UEC5XGKtaZ3C": [ + { + "amount": "211.677213066", + "slot": { + "period": 12102, + "thread": 19 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 171479, + "thread": 26 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 458887, + "thread": 25 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 558941, + "thread": 30 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 754197, + "thread": 10 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 830103, + "thread": 12 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1131659, + "thread": 26 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1255390, + "thread": 20 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1369007, + "thread": 9 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1573475, + "thread": 2 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1793594, + "thread": 15 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1919722, + "thread": 0 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 1978875, + "thread": 29 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 2284442, + "thread": 25 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 2327701, + "thread": 13 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 2482563, + "thread": 28 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 2772423, + "thread": 13 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 2802066, + "thread": 23 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 3004790, + "thread": 22 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 3217453, + "thread": 15 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 3417047, + "thread": 0 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 3461506, + "thread": 15 + } + }, + { + "amount": "211.677213066", + "slot": { + "period": 3710936, + "thread": 16 + } + }, + { + "amount": "211.677213077", + "slot": { + "period": 3889263, + "thread": 25 + } + } + ], + "AU12uucmcfcndjsSxKutgwKLyhwRGu3fwoRbHJSmhtpWELx7112kV": [ + { + "amount": "690.715261941", + "slot": { + "period": 155685, + "thread": 4 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 303391, + "thread": 29 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 405915, + "thread": 11 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 629909, + "thread": 21 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 750264, + "thread": 18 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 895091, + "thread": 28 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1014194, + "thread": 23 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1167682, + "thread": 18 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1327468, + "thread": 25 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1480997, + "thread": 0 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1758793, + "thread": 11 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 1939883, + "thread": 14 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2088376, + "thread": 23 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2279968, + "thread": 13 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2332505, + "thread": 14 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2486159, + "thread": 14 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2771819, + "thread": 31 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 2801383, + "thread": 1 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 3049835, + "thread": 15 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 3145595, + "thread": 28 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 3423389, + "thread": 22 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 3613424, + "thread": 5 + } + }, + { + "amount": "690.715261941", + "slot": { + "period": 3620850, + "thread": 21 + } + }, + { + "amount": "690.715261943", + "slot": { + "period": 3802322, + "thread": 4 + } + } + ], + "AU12uwjSnFC9PangXr6QPUc4LJxPxvrqE8VddLY2SDGET82tHkSK8": [ + { + "amount": "303.279096132", + "slot": { + "period": 15017, + "thread": 21 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 216613, + "thread": 5 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 388128, + "thread": 31 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 573990, + "thread": 12 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 777364, + "thread": 31 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 915794, + "thread": 28 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1053850, + "thread": 0 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1215682, + "thread": 4 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1427162, + "thread": 0 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1571592, + "thread": 26 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1772562, + "thread": 11 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 1867194, + "thread": 28 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2123705, + "thread": 14 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2206545, + "thread": 4 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2400689, + "thread": 4 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2478819, + "thread": 19 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2637735, + "thread": 27 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 2847003, + "thread": 30 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 3012713, + "thread": 26 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 3220774, + "thread": 0 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 3293027, + "thread": 16 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 3539848, + "thread": 0 + } + }, + { + "amount": "303.279096132", + "slot": { + "period": 3730047, + "thread": 28 + } + }, + { + "amount": "303.279096135", + "slot": { + "period": 3823502, + "thread": 21 + } + } + ], + "AU12uyAtFwBuSqSAougghZtSc1xzsuwk4iazkm2DwnbnixPtxCYi4": [ + { + "amount": "72.476533597", + "slot": { + "period": 124429, + "thread": 25 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 222848, + "thread": 28 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 450156, + "thread": 8 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 524020, + "thread": 10 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 747580, + "thread": 2 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 894817, + "thread": 23 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1072464, + "thread": 1 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1261426, + "thread": 20 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1410376, + "thread": 2 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1491651, + "thread": 26 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1789604, + "thread": 0 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1810496, + "thread": 29 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 1982554, + "thread": 21 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 2164214, + "thread": 10 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 2307533, + "thread": 10 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 2560940, + "thread": 3 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 2663014, + "thread": 14 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 2795154, + "thread": 14 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3010742, + "thread": 20 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3274766, + "thread": 15 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3428754, + "thread": 31 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3522298, + "thread": 6 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3769408, + "thread": 17 + } + }, + { + "amount": "72.476533597", + "slot": { + "period": 3938098, + "thread": 6 + } + } + ], + "AU12uzoUqbNcyN13dxkRQg1F5jTvzUsVJmag5eGR2UUZikP2wXebo": [ + { + "amount": "290.863697337", + "slot": { + "period": 27797, + "thread": 5 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 178747, + "thread": 16 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 353073, + "thread": 0 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 525038, + "thread": 23 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 716394, + "thread": 5 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 973188, + "thread": 19 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1121162, + "thread": 27 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1154033, + "thread": 1 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1421389, + "thread": 30 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1509534, + "thread": 11 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1692379, + "thread": 8 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 1812227, + "thread": 23 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2134574, + "thread": 29 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2243492, + "thread": 0 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2454821, + "thread": 28 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2497131, + "thread": 31 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2643240, + "thread": 14 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 2798870, + "thread": 1 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 3023583, + "thread": 27 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 3203557, + "thread": 4 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 3399602, + "thread": 17 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 3470879, + "thread": 25 + } + }, + { + "amount": "290.863697337", + "slot": { + "period": 3634023, + "thread": 27 + } + }, + { + "amount": "290.863697340", + "slot": { + "period": 3883501, + "thread": 27 + } + } + ], + "AU12uzz2EaLFfY4dVnbKEZZTNzds5moZStfFJd5ncm5P7rN9vceFX": [ + { + "amount": "109.203666700", + "slot": { + "period": 154671, + "thread": 22 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 301405, + "thread": 11 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 327736, + "thread": 24 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 651318, + "thread": 17 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 792307, + "thread": 10 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 931203, + "thread": 29 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 988034, + "thread": 8 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 1174831, + "thread": 4 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 1391770, + "thread": 0 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 1502830, + "thread": 24 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 1684973, + "thread": 9 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 1897521, + "thread": 15 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2113272, + "thread": 0 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2161849, + "thread": 16 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2425807, + "thread": 19 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2489357, + "thread": 20 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2708765, + "thread": 8 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2835374, + "thread": 12 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 2982471, + "thread": 30 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 3232673, + "thread": 12 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 3416789, + "thread": 0 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 3486478, + "thread": 25 + } + }, + { + "amount": "109.203666700", + "slot": { + "period": 3706418, + "thread": 31 + } + }, + { + "amount": "109.203666702", + "slot": { + "period": 3799525, + "thread": 28 + } + } + ], + "AU12v1CTdMHHcwn8PBF1hAoiztMLZiqa1WC3W87jQd7RjdtBWnNYL": [ + { + "amount": "108.679855456", + "slot": { + "period": 84924, + "thread": 31 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 308189, + "thread": 22 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 489836, + "thread": 21 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 626168, + "thread": 26 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 795745, + "thread": 5 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 917771, + "thread": 10 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1095727, + "thread": 20 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1207588, + "thread": 18 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1346092, + "thread": 3 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1486033, + "thread": 24 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1670787, + "thread": 6 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 1843127, + "thread": 8 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2065924, + "thread": 15 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2144737, + "thread": 9 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2398179, + "thread": 16 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2574026, + "thread": 24 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2718765, + "thread": 16 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 2925779, + "thread": 29 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 3058055, + "thread": 15 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 3166201, + "thread": 3 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 3327533, + "thread": 14 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 3486604, + "thread": 19 + } + }, + { + "amount": "108.679855456", + "slot": { + "period": 3764618, + "thread": 21 + } + }, + { + "amount": "108.679855452", + "slot": { + "period": 3838131, + "thread": 1 + } + } + ], + "AU12v1dbNVPbuGfU6kn3K3RXptfF4kZ7ExqLnpAjddAXX8Qwq5YQa": [ + { + "amount": "202.148221314", + "slot": { + "period": 34789, + "thread": 12 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 185708, + "thread": 24 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 359367, + "thread": 6 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 516711, + "thread": 14 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 664979, + "thread": 3 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 965902, + "thread": 3 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1048892, + "thread": 1 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1205696, + "thread": 11 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1369056, + "thread": 13 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1565847, + "thread": 17 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1697973, + "thread": 19 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 1828856, + "thread": 21 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2069667, + "thread": 25 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2165399, + "thread": 4 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2318788, + "thread": 20 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2476670, + "thread": 19 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2641416, + "thread": 22 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 2884856, + "thread": 6 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 3113154, + "thread": 19 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 3122919, + "thread": 28 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 3365649, + "thread": 23 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 3523482, + "thread": 29 + } + }, + { + "amount": "202.148221314", + "slot": { + "period": 3677811, + "thread": 9 + } + }, + { + "amount": "202.148221306", + "slot": { + "period": 3856149, + "thread": 8 + } + } + ], + "AU12v2az3fJJYy5esvmLaFBt62y4QMeruMzT2K5sje1UYWDSnXF3A": [ + { + "amount": "132.222688924", + "slot": { + "period": 99098, + "thread": 24 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 286315, + "thread": 5 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 360633, + "thread": 3 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 508218, + "thread": 7 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 750590, + "thread": 18 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 841312, + "thread": 2 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1030194, + "thread": 10 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1159042, + "thread": 20 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1436142, + "thread": 24 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1631572, + "thread": 2 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1689184, + "thread": 9 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 1828460, + "thread": 5 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2025784, + "thread": 11 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2256874, + "thread": 19 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2402028, + "thread": 3 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2496344, + "thread": 8 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2705436, + "thread": 28 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 2933303, + "thread": 27 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 3078731, + "thread": 28 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 3249674, + "thread": 27 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 3389117, + "thread": 3 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 3455183, + "thread": 16 + } + }, + { + "amount": "132.222688924", + "slot": { + "period": 3637388, + "thread": 9 + } + }, + { + "amount": "132.222688917", + "slot": { + "period": 3780506, + "thread": 12 + } + } + ], + "AU12v3GU9SE8fiFp4gyHYRQG1Wx9Js4Au2ePLKU9cCya8bPV4C89c": [ + { + "amount": "114.525333857", + "slot": { + "period": 165862, + "thread": 2 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 209806, + "thread": 17 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 455873, + "thread": 30 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 496736, + "thread": 8 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 705080, + "thread": 6 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 870074, + "thread": 26 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1005677, + "thread": 4 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1172775, + "thread": 15 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1389193, + "thread": 14 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1572457, + "thread": 25 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1772560, + "thread": 22 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 1914350, + "thread": 12 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2114568, + "thread": 3 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2260116, + "thread": 31 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2315569, + "thread": 8 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2547473, + "thread": 24 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2679295, + "thread": 29 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 2937856, + "thread": 1 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 3052666, + "thread": 30 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 3242648, + "thread": 19 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 3372641, + "thread": 14 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 3494945, + "thread": 8 + } + }, + { + "amount": "114.525333857", + "slot": { + "period": 3678179, + "thread": 20 + } + }, + { + "amount": "114.525333848", + "slot": { + "period": 3911982, + "thread": 5 + } + } + ], + "AU12v3Nad9KM9yKPGAcigXXxbDoPJH5T2tW9eN2yNpKceC5aBXAgY": [ + { + "amount": "86.823764212", + "slot": { + "period": 129941, + "thread": 22 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 275183, + "thread": 24 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 483087, + "thread": 11 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 503526, + "thread": 24 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 654139, + "thread": 2 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 967173, + "thread": 24 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1132590, + "thread": 7 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1279352, + "thread": 17 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1351967, + "thread": 5 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1603715, + "thread": 18 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1708174, + "thread": 21 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 1870432, + "thread": 19 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2088068, + "thread": 13 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2147482, + "thread": 9 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2303918, + "thread": 23 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2507204, + "thread": 11 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2664928, + "thread": 28 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 2897196, + "thread": 15 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 3099217, + "thread": 9 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 3280869, + "thread": 29 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 3335688, + "thread": 28 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 3471850, + "thread": 12 + } + }, + { + "amount": "86.823764212", + "slot": { + "period": 3661081, + "thread": 24 + } + }, + { + "amount": "86.823764202", + "slot": { + "period": 3850592, + "thread": 23 + } + } + ], + "AU12v3afy3MxMNGG6Kmo1dfiNz4zAQATk1cdBPADv3iS11PbpgUoe": [ + { + "amount": "125.008159237", + "slot": { + "period": 151785, + "thread": 30 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 170717, + "thread": 5 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 400737, + "thread": 22 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 645326, + "thread": 2 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 808773, + "thread": 6 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 916540, + "thread": 19 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1024108, + "thread": 26 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1190523, + "thread": 14 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1348994, + "thread": 30 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1510778, + "thread": 27 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1794819, + "thread": 6 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 1830690, + "thread": 24 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2118316, + "thread": 26 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2193596, + "thread": 29 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2393557, + "thread": 1 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2527150, + "thread": 20 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2663821, + "thread": 15 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 2836596, + "thread": 17 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 3002193, + "thread": 3 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 3186451, + "thread": 28 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 3318291, + "thread": 1 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 3523765, + "thread": 15 + } + }, + { + "amount": "125.008159237", + "slot": { + "period": 3647812, + "thread": 24 + } + }, + { + "amount": "125.008159236", + "slot": { + "period": 3884805, + "thread": 22 + } + } + ], + "AU12v4eK8VmK8WcXHfsnvFLtU2B9EXQycv79FhPUgDxiTzgjavnEK": [ + { + "amount": "54.583604192", + "slot": { + "period": 62483, + "thread": 5 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 230140, + "thread": 29 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 479675, + "thread": 5 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 517932, + "thread": 15 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 692238, + "thread": 29 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 836687, + "thread": 6 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1047297, + "thread": 28 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1215351, + "thread": 11 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1402656, + "thread": 11 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1608268, + "thread": 19 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1666669, + "thread": 8 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 1926223, + "thread": 24 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2124592, + "thread": 13 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2232244, + "thread": 10 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2459347, + "thread": 0 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2517274, + "thread": 6 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2784230, + "thread": 27 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 2907987, + "thread": 19 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 3105898, + "thread": 8 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 3134419, + "thread": 7 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 3310347, + "thread": 11 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 3477307, + "thread": 11 + } + }, + { + "amount": "54.583604192", + "slot": { + "period": 3767940, + "thread": 31 + } + }, + { + "amount": "54.583604201", + "slot": { + "period": 3826636, + "thread": 15 + } + } + ], + "AU12v57haY1mT8P7FVum5Kg25P1ScwvKDcwfaqrh8yWjYBBzh5fAa": [ + { + "amount": "257.442752748", + "slot": { + "period": 101622, + "thread": 24 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 195162, + "thread": 3 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 461554, + "thread": 11 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 602749, + "thread": 16 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 691871, + "thread": 9 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 854513, + "thread": 22 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1119072, + "thread": 6 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1231809, + "thread": 25 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1448959, + "thread": 10 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1587499, + "thread": 18 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1752129, + "thread": 22 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 1840645, + "thread": 16 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2122779, + "thread": 14 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2178545, + "thread": 22 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2361512, + "thread": 25 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2597885, + "thread": 15 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2787137, + "thread": 7 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 2901245, + "thread": 17 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 3095028, + "thread": 20 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 3143062, + "thread": 16 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 3352734, + "thread": 13 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 3495505, + "thread": 13 + } + }, + { + "amount": "257.442752748", + "slot": { + "period": 3724756, + "thread": 0 + } + }, + { + "amount": "257.442752746", + "slot": { + "period": 3809009, + "thread": 11 + } + } + ], + "AU12v5Ek9cgTBGLo2E3FHGcueM2bLWM3kgHDThdshyfgWFXAu1Pwa": [ + { + "amount": "549.917064612", + "slot": { + "period": 44911, + "thread": 31 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 215192, + "thread": 25 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 415100, + "thread": 11 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 498770, + "thread": 20 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 700764, + "thread": 10 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 831485, + "thread": 5 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1121855, + "thread": 7 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1208121, + "thread": 16 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1337728, + "thread": 25 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1522700, + "thread": 3 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1795353, + "thread": 19 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 1925333, + "thread": 24 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2074696, + "thread": 0 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2172176, + "thread": 4 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2446598, + "thread": 13 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2599691, + "thread": 6 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2778449, + "thread": 17 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 2854527, + "thread": 20 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 3022428, + "thread": 25 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 3143628, + "thread": 15 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 3363952, + "thread": 2 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 3451243, + "thread": 22 + } + }, + { + "amount": "549.917064612", + "slot": { + "period": 3721012, + "thread": 5 + } + }, + { + "amount": "549.917064621", + "slot": { + "period": 3879150, + "thread": 0 + } + } + ], + "AU12v7a63TQFzMjVJUCMFAxqe9Fb4apaiqLxdJwb5gQLfuV3Kjqj3": [ + { + "amount": "126.827728033", + "slot": { + "period": 76239, + "thread": 23 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 291145, + "thread": 21 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 332586, + "thread": 3 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 592384, + "thread": 23 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 697531, + "thread": 10 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 887275, + "thread": 2 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1031867, + "thread": 27 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1297349, + "thread": 7 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1335141, + "thread": 27 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1483718, + "thread": 20 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1712563, + "thread": 20 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1854519, + "thread": 12 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 1978815, + "thread": 18 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 2289779, + "thread": 19 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 2310375, + "thread": 11 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 2592257, + "thread": 28 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 2762712, + "thread": 18 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 2948761, + "thread": 0 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 3054781, + "thread": 25 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 3281614, + "thread": 13 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 3395557, + "thread": 18 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 3602438, + "thread": 22 + } + }, + { + "amount": "126.827728033", + "slot": { + "period": 3734324, + "thread": 11 + } + }, + { + "amount": "126.827728043", + "slot": { + "period": 3819566, + "thread": 27 + } + } + ], + "AU12v8K3e5S5T5RER7oMTQPspEGCYe1DmB8STBdzEGBekNoNjEJ9k": [ + { + "amount": "260.300445378", + "slot": { + "period": 136362, + "thread": 14 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 172420, + "thread": 20 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 386793, + "thread": 26 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 533223, + "thread": 30 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 710078, + "thread": 0 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 967186, + "thread": 18 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1027020, + "thread": 24 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1282356, + "thread": 23 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1399143, + "thread": 7 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1621728, + "thread": 8 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1729703, + "thread": 27 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 1899164, + "thread": 30 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2128762, + "thread": 17 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2285220, + "thread": 15 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2396152, + "thread": 19 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2613842, + "thread": 24 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2656710, + "thread": 10 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 2923870, + "thread": 24 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 3106828, + "thread": 7 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 3190254, + "thread": 1 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 3433953, + "thread": 14 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 3610573, + "thread": 1 + } + }, + { + "amount": "260.300445378", + "slot": { + "period": 3652221, + "thread": 12 + } + }, + { + "amount": "260.300445377", + "slot": { + "period": 3883495, + "thread": 9 + } + } + ], + "AU12v8R6tCHSxeMxttRfbPng8bXhTmYqaMVzMACkEGaAfpbbnxs1T": [ + { + "amount": "115.267918173", + "slot": { + "period": 34577, + "thread": 31 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 301850, + "thread": 2 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 448987, + "thread": 23 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 536986, + "thread": 1 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 676409, + "thread": 23 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 828978, + "thread": 14 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1127256, + "thread": 18 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1298971, + "thread": 29 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1330259, + "thread": 14 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1603556, + "thread": 21 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1771473, + "thread": 29 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 1928740, + "thread": 19 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2112932, + "thread": 4 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2220537, + "thread": 19 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2434160, + "thread": 29 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2463846, + "thread": 21 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2723236, + "thread": 14 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 2913855, + "thread": 5 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 3056438, + "thread": 24 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 3215917, + "thread": 7 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 3330028, + "thread": 11 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 3469320, + "thread": 10 + } + }, + { + "amount": "115.267918173", + "slot": { + "period": 3754086, + "thread": 8 + } + }, + { + "amount": "115.267918184", + "slot": { + "period": 3896793, + "thread": 16 + } + } + ], + "AU12v8h9BfbB58amZEqr6d7AJuxh5qLrDgmwqZJAAvokq88zppwSx": [ + { + "amount": "100.114031631", + "slot": { + "period": 103368, + "thread": 15 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 267156, + "thread": 18 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 407346, + "thread": 25 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 513320, + "thread": 31 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 664541, + "thread": 15 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 939997, + "thread": 6 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1113790, + "thread": 19 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1270868, + "thread": 8 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1389197, + "thread": 22 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1597732, + "thread": 30 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1763443, + "thread": 12 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 1958739, + "thread": 5 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2013771, + "thread": 17 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2232925, + "thread": 12 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2378255, + "thread": 23 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2621038, + "thread": 28 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2675780, + "thread": 3 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 2953601, + "thread": 30 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 3072049, + "thread": 18 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 3185262, + "thread": 26 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 3326662, + "thread": 9 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 3565951, + "thread": 24 + } + }, + { + "amount": "100.114031631", + "slot": { + "period": 3663675, + "thread": 23 + } + }, + { + "amount": "100.114031638", + "slot": { + "period": 3782774, + "thread": 29 + } + } + ], + "AU12vBW3cc3oowJeMwUuBnvEbhj8k9mpgAFUMbsRSosgkZGWhTiQV": [ + { + "amount": "329.771932546", + "slot": { + "period": 147220, + "thread": 17 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 258185, + "thread": 18 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 485569, + "thread": 9 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 629123, + "thread": 10 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 711384, + "thread": 15 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 901262, + "thread": 19 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1131301, + "thread": 19 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1239748, + "thread": 1 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1343656, + "thread": 24 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1518242, + "thread": 5 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1712821, + "thread": 14 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 1870604, + "thread": 11 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2082676, + "thread": 28 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2178628, + "thread": 21 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2431917, + "thread": 23 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2539067, + "thread": 4 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2699794, + "thread": 12 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2839315, + "thread": 2 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 2977304, + "thread": 23 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 3166638, + "thread": 23 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 3386777, + "thread": 12 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 3452556, + "thread": 26 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 3750485, + "thread": 19 + } + }, + { + "amount": "329.771932546", + "slot": { + "period": 3801348, + "thread": 28 + } + } + ], + "AU12vBkQ7ZHzLiPFs6eQie1dm7CngfeRoPxqgeHFSBjmefmHYCmm": [ + { + "amount": "232.819056253", + "slot": { + "period": 19486, + "thread": 16 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 308866, + "thread": 8 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 338075, + "thread": 11 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 603508, + "thread": 9 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 701473, + "thread": 0 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 877823, + "thread": 21 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1119690, + "thread": 6 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1188437, + "thread": 11 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1415965, + "thread": 23 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1638409, + "thread": 23 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1692768, + "thread": 2 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 1863516, + "thread": 9 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2093838, + "thread": 12 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2245489, + "thread": 10 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2442855, + "thread": 21 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2505849, + "thread": 12 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2652994, + "thread": 15 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 2793093, + "thread": 28 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 3037041, + "thread": 11 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 3280251, + "thread": 9 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 3329357, + "thread": 25 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 3579121, + "thread": 16 + } + }, + { + "amount": "232.819056253", + "slot": { + "period": 3744046, + "thread": 19 + } + }, + { + "amount": "232.819056261", + "slot": { + "period": 3780625, + "thread": 18 + } + } + ], + "AU12vC1ooZE2KcpuuhskyN1cWYLfBd2p78GNxCWhKEpnn15XL8rr9": [ + { + "amount": "227.587021418", + "slot": { + "period": 65057, + "thread": 18 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 230295, + "thread": 20 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 430281, + "thread": 1 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 524326, + "thread": 10 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 798755, + "thread": 30 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 919651, + "thread": 30 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1065628, + "thread": 10 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1301522, + "thread": 20 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1396136, + "thread": 12 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1482877, + "thread": 31 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1720949, + "thread": 23 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 1896839, + "thread": 10 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2077144, + "thread": 18 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2250969, + "thread": 5 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2418720, + "thread": 6 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2536950, + "thread": 6 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2659113, + "thread": 29 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 2895794, + "thread": 19 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 3007151, + "thread": 22 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 3212638, + "thread": 15 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 3402466, + "thread": 12 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 3527941, + "thread": 13 + } + }, + { + "amount": "227.587021418", + "slot": { + "period": 3730592, + "thread": 27 + } + }, + { + "amount": "227.587021412", + "slot": { + "period": 3809738, + "thread": 11 + } + } + ], + "AU12vC2RpJLZ7r2Dz5VtKLrMBbbucsdG9sH7BSptuUqmZG8ihUxiT": [ + { + "amount": "575.691177643", + "slot": { + "period": 111583, + "thread": 19 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 214377, + "thread": 10 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 451625, + "thread": 20 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 560556, + "thread": 22 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 657087, + "thread": 23 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 944804, + "thread": 25 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1101288, + "thread": 24 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1215376, + "thread": 7 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1415630, + "thread": 24 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1645751, + "thread": 18 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1800087, + "thread": 0 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 1945813, + "thread": 14 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2048077, + "thread": 5 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2279559, + "thread": 10 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2316592, + "thread": 10 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2477455, + "thread": 14 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2699574, + "thread": 31 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 2902058, + "thread": 24 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 3013133, + "thread": 12 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 3163237, + "thread": 25 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 3368322, + "thread": 21 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 3562233, + "thread": 11 + } + }, + { + "amount": "575.691177643", + "slot": { + "period": 3654747, + "thread": 16 + } + }, + { + "amount": "575.691177650", + "slot": { + "period": 3815250, + "thread": 16 + } + } + ], + "AU12vC325jw6ZWcXGm5e1WH7EtGsc1JUadzjJrWSZYyGQdKXr9FNb": [ + { + "amount": "580.340175013", + "slot": { + "period": 69476, + "thread": 16 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 275171, + "thread": 1 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 325315, + "thread": 14 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 532415, + "thread": 30 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 677952, + "thread": 20 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 906617, + "thread": 9 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 994511, + "thread": 2 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 1188611, + "thread": 13 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 1371713, + "thread": 6 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 1487800, + "thread": 25 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 1787368, + "thread": 23 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 1905815, + "thread": 7 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2067106, + "thread": 0 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2204888, + "thread": 8 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2460254, + "thread": 4 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2610020, + "thread": 7 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2633670, + "thread": 12 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2835871, + "thread": 14 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 2985138, + "thread": 23 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 3191966, + "thread": 8 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 3366617, + "thread": 2 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 3534748, + "thread": 25 + } + }, + { + "amount": "580.340175013", + "slot": { + "period": 3776746, + "thread": 7 + } + }, + { + "amount": "580.340175008", + "slot": { + "period": 3900336, + "thread": 12 + } + } + ], + "AU12vCLy8t2eTsEdjNVsLcP1S3WUdEtqD9DCusqy38mt5mZHq1ENg": [ + { + "amount": "161.424284033", + "slot": { + "period": 157329, + "thread": 13 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 267784, + "thread": 12 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 490631, + "thread": 28 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 558176, + "thread": 11 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 727381, + "thread": 20 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 897739, + "thread": 20 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1035950, + "thread": 28 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1307497, + "thread": 5 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1409706, + "thread": 31 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1602053, + "thread": 4 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1801776, + "thread": 6 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 1844947, + "thread": 1 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2000035, + "thread": 5 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2200330, + "thread": 6 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2312797, + "thread": 14 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2536961, + "thread": 5 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2760724, + "thread": 31 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 2854844, + "thread": 10 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 3047088, + "thread": 6 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 3175022, + "thread": 21 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 3450180, + "thread": 12 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 3546079, + "thread": 24 + } + }, + { + "amount": "161.424284033", + "slot": { + "period": 3699282, + "thread": 31 + } + }, + { + "amount": "161.424284042", + "slot": { + "period": 3929914, + "thread": 30 + } + } + ], + "AU12vELwp3xkfDYa2PECpvw2X45VgSVDiehM4HRAqP3TPa6ZCQmtd": [ + { + "amount": "121.368962451", + "slot": { + "period": 91668, + "thread": 17 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 322705, + "thread": 27 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 341375, + "thread": 3 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 608951, + "thread": 6 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 778875, + "thread": 23 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 954021, + "thread": 14 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1098271, + "thread": 21 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1199950, + "thread": 11 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1355623, + "thread": 4 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1524687, + "thread": 29 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1794308, + "thread": 20 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 1954010, + "thread": 0 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2074498, + "thread": 7 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2236009, + "thread": 6 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2435875, + "thread": 8 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2585814, + "thread": 12 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2631790, + "thread": 31 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2822973, + "thread": 31 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 2998310, + "thread": 7 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 3276337, + "thread": 22 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 3331199, + "thread": 15 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 3514269, + "thread": 21 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 3720519, + "thread": 7 + } + }, + { + "amount": "121.368962451", + "slot": { + "period": 3811022, + "thread": 11 + } + } + ], + "AU12vFS7hupRWdizuHnT3n8ZxtUJz9AdUcWa4zi1uJPn7p6qHDsMc": [ + { + "amount": "153.975503582", + "slot": { + "period": 141814, + "thread": 31 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 180448, + "thread": 18 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 419498, + "thread": 21 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 608586, + "thread": 3 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 806975, + "thread": 17 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 944424, + "thread": 16 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1023113, + "thread": 6 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1255590, + "thread": 19 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1372977, + "thread": 18 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1606211, + "thread": 17 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1763296, + "thread": 17 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 1909516, + "thread": 0 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2102789, + "thread": 0 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2284580, + "thread": 29 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2397405, + "thread": 13 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2621570, + "thread": 4 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2754222, + "thread": 19 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 2822711, + "thread": 6 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 3009483, + "thread": 28 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 3212514, + "thread": 16 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 3311322, + "thread": 12 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 3502389, + "thread": 5 + } + }, + { + "amount": "153.975503582", + "slot": { + "period": 3685481, + "thread": 0 + } + }, + { + "amount": "153.975503580", + "slot": { + "period": 3837053, + "thread": 2 + } + } + ], + "AU12vG38hg9vMF4CNFkvZ88NbfywGwrSQzkVdiBJ9PBYZRzVon3Q5": [ + { + "amount": "57.791512615", + "slot": { + "period": 126170, + "thread": 28 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 305230, + "thread": 9 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 471666, + "thread": 2 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 550842, + "thread": 16 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 658841, + "thread": 3 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 977320, + "thread": 8 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1091168, + "thread": 7 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1299308, + "thread": 28 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1347806, + "thread": 12 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1616529, + "thread": 10 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1704240, + "thread": 22 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 1942040, + "thread": 26 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2088646, + "thread": 5 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2168165, + "thread": 2 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2409467, + "thread": 13 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2482838, + "thread": 29 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2643566, + "thread": 18 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 2867752, + "thread": 9 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 3046624, + "thread": 0 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 3264449, + "thread": 26 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 3298298, + "thread": 17 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 3607680, + "thread": 0 + } + }, + { + "amount": "57.791512615", + "slot": { + "period": 3721126, + "thread": 1 + } + }, + { + "amount": "57.791512614", + "slot": { + "period": 3882552, + "thread": 31 + } + } + ], + "AU12vG4dh7oiJGVjUCofqkagZuSoqK41eDwThFstRswFrygDZHwL4": [ + { + "amount": "197.730696151", + "slot": { + "period": 148083, + "thread": 8 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 197803, + "thread": 4 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 447488, + "thread": 0 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 631457, + "thread": 18 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 729447, + "thread": 6 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 973679, + "thread": 5 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1106747, + "thread": 11 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1287115, + "thread": 11 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1324778, + "thread": 18 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1534012, + "thread": 4 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1674093, + "thread": 6 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 1851317, + "thread": 19 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2111350, + "thread": 1 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2266409, + "thread": 6 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2347062, + "thread": 25 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2466830, + "thread": 16 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2726068, + "thread": 1 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 2866689, + "thread": 28 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 3009971, + "thread": 6 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 3285682, + "thread": 8 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 3320148, + "thread": 27 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 3615883, + "thread": 23 + } + }, + { + "amount": "197.730696151", + "slot": { + "period": 3629721, + "thread": 27 + } + }, + { + "amount": "197.730696148", + "slot": { + "period": 3906522, + "thread": 5 + } + } + ], + "AU12vGHbnWaYuhUvfUSiAaceWYx9GJYdCLE1xmTaMCGR7qFhHnLKY": [ + { + "amount": "164.370376306", + "slot": { + "period": 21184, + "thread": 30 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 206939, + "thread": 8 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 394438, + "thread": 22 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 533352, + "thread": 7 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 693292, + "thread": 17 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 953706, + "thread": 9 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1071878, + "thread": 21 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1276466, + "thread": 13 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1462169, + "thread": 1 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1587586, + "thread": 22 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1650977, + "thread": 17 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1891503, + "thread": 25 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 1990504, + "thread": 0 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 2237953, + "thread": 13 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 2395382, + "thread": 2 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 2474163, + "thread": 2 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 2783011, + "thread": 2 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 2853036, + "thread": 24 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 3075586, + "thread": 26 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 3238755, + "thread": 30 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 3389172, + "thread": 0 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 3553307, + "thread": 30 + } + }, + { + "amount": "164.370376306", + "slot": { + "period": 3664140, + "thread": 31 + } + }, + { + "amount": "164.370376301", + "slot": { + "period": 3831300, + "thread": 1 + } + } + ], + "AU12vGUfwG9oqCvPwnKAGVcHKvfH7ouijkspRVdtiNBVVCHEdf11u": [ + { + "amount": "548.101038412", + "slot": { + "period": 144865, + "thread": 28 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 238877, + "thread": 17 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 411803, + "thread": 11 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 525055, + "thread": 4 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 809833, + "thread": 5 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 966851, + "thread": 29 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1042934, + "thread": 1 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1217484, + "thread": 0 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1423481, + "thread": 31 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1589332, + "thread": 14 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1647468, + "thread": 27 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 1964049, + "thread": 18 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2046716, + "thread": 20 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2251360, + "thread": 13 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2394988, + "thread": 4 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2592447, + "thread": 17 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2771395, + "thread": 10 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 2860052, + "thread": 0 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 3106562, + "thread": 13 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 3275012, + "thread": 26 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 3438544, + "thread": 29 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 3594573, + "thread": 18 + } + }, + { + "amount": "548.101038412", + "slot": { + "period": 3637046, + "thread": 9 + } + }, + { + "amount": "548.101038418", + "slot": { + "period": 3845563, + "thread": 14 + } + } + ], + "AU12vGYHzeHJqSXjgGov9eHmxU4pQowWRKHwL4SehJttxecfR6ohG": [ + { + "amount": "414.269069293", + "slot": { + "period": 144194, + "thread": 24 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 258853, + "thread": 26 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 455286, + "thread": 25 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 585365, + "thread": 10 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 803264, + "thread": 8 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 916609, + "thread": 8 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 993620, + "thread": 9 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 1199187, + "thread": 5 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 1462538, + "thread": 9 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 1495351, + "thread": 3 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 1673773, + "thread": 28 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 1825872, + "thread": 6 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2002970, + "thread": 11 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2168533, + "thread": 29 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2437097, + "thread": 0 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2592694, + "thread": 0 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2703279, + "thread": 0 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 2843807, + "thread": 0 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 3035716, + "thread": 2 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 3180188, + "thread": 29 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 3415876, + "thread": 24 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 3598397, + "thread": 19 + } + }, + { + "amount": "414.269069293", + "slot": { + "period": 3764597, + "thread": 24 + } + }, + { + "amount": "414.269069294", + "slot": { + "period": 3928974, + "thread": 29 + } + } + ], + "AU12vHbJsJhupGe1EbEG7EKHraaffbHLLgYSvJeuprwssF8PpGGKW": [ + { + "amount": "362.065842090", + "slot": { + "period": 56053, + "thread": 4 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 242854, + "thread": 7 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 344277, + "thread": 8 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 643280, + "thread": 18 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 728074, + "thread": 5 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 928828, + "thread": 8 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1020017, + "thread": 31 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1279467, + "thread": 13 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1474663, + "thread": 10 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1610868, + "thread": 3 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1657656, + "thread": 14 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 1957299, + "thread": 27 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2004425, + "thread": 28 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2220115, + "thread": 18 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2436967, + "thread": 11 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2554843, + "thread": 31 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2673332, + "thread": 18 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2904572, + "thread": 18 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 2984748, + "thread": 6 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 3261665, + "thread": 25 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 3447863, + "thread": 12 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 3467588, + "thread": 4 + } + }, + { + "amount": "362.065842090", + "slot": { + "period": 3695680, + "thread": 2 + } + }, + { + "amount": "362.065842080", + "slot": { + "period": 3902853, + "thread": 22 + } + } + ], + "AU12vJUNgVZmDgKnuW8g5EmDVQ6pHtk9W9koQ2YTbgPiCNQbh5Rqj": [ + { + "amount": "142.023089942", + "slot": { + "period": 141454, + "thread": 24 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 171886, + "thread": 1 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 336386, + "thread": 15 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 576336, + "thread": 28 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 731945, + "thread": 3 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 857603, + "thread": 20 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1053610, + "thread": 27 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1160033, + "thread": 3 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1338112, + "thread": 30 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1557831, + "thread": 19 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1695349, + "thread": 14 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 1878757, + "thread": 12 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2031752, + "thread": 0 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2253309, + "thread": 4 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2420262, + "thread": 3 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2491429, + "thread": 18 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2735176, + "thread": 23 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 2813668, + "thread": 2 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 3050001, + "thread": 27 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 3200018, + "thread": 29 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 3356560, + "thread": 20 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 3463733, + "thread": 6 + } + }, + { + "amount": "142.023089942", + "slot": { + "period": 3699276, + "thread": 13 + } + }, + { + "amount": "142.023089949", + "slot": { + "period": 3785288, + "thread": 10 + } + } + ], + "AU12vK7nJYq5evk8LQHueqHQ7ifubanbTJGpSnBn5Vq891mRSusQF": [ + { + "amount": "171.826747131", + "slot": { + "period": 61113, + "thread": 11 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 220062, + "thread": 27 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 381071, + "thread": 5 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 507141, + "thread": 23 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 707211, + "thread": 28 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 945197, + "thread": 1 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1042001, + "thread": 18 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1259979, + "thread": 24 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1411768, + "thread": 24 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1507357, + "thread": 25 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1762529, + "thread": 21 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 1858022, + "thread": 13 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2068037, + "thread": 9 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2286055, + "thread": 29 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2384457, + "thread": 9 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2566751, + "thread": 21 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2673695, + "thread": 20 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2864377, + "thread": 1 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 2998727, + "thread": 28 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 3121762, + "thread": 11 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 3339491, + "thread": 16 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 3606112, + "thread": 25 + } + }, + { + "amount": "171.826747131", + "slot": { + "period": 3620102, + "thread": 12 + } + }, + { + "amount": "171.826747129", + "slot": { + "period": 3942777, + "thread": 28 + } + } + ], + "AU12vKD4BhDL3YDSQ9R8nDs9Gan27C7aoBjGM5WZJvQYPrm59hhxE": [ + { + "amount": "144.890454512", + "slot": { + "period": 97906, + "thread": 22 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 235736, + "thread": 8 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 491024, + "thread": 14 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 622071, + "thread": 29 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 755177, + "thread": 1 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 897869, + "thread": 31 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1113020, + "thread": 28 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1257529, + "thread": 26 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1375701, + "thread": 14 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1598967, + "thread": 13 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1651716, + "thread": 11 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 1893494, + "thread": 12 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2133665, + "thread": 3 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2268217, + "thread": 28 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2384400, + "thread": 15 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2531066, + "thread": 0 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2746514, + "thread": 0 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 2801584, + "thread": 21 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 3048439, + "thread": 10 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 3236709, + "thread": 14 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 3386688, + "thread": 17 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 3478214, + "thread": 19 + } + }, + { + "amount": "144.890454512", + "slot": { + "period": 3638098, + "thread": 8 + } + }, + { + "amount": "144.890454519", + "slot": { + "period": 3815061, + "thread": 1 + } + } + ], + "AU12vKreMHW3NQNKwa3eSGGxZcvJ4FRK55MsbSo8kPF6Ca3774NVC": [ + { + "amount": "78.103066470", + "slot": { + "period": 162539, + "thread": 24 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 231575, + "thread": 8 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 485813, + "thread": 13 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 558500, + "thread": 2 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 729147, + "thread": 12 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 865823, + "thread": 11 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1026614, + "thread": 9 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1212332, + "thread": 31 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1381780, + "thread": 8 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1552065, + "thread": 22 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1769498, + "thread": 24 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 1809964, + "thread": 17 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2125381, + "thread": 22 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2289612, + "thread": 23 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2388550, + "thread": 20 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2549327, + "thread": 12 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2721528, + "thread": 15 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 2883138, + "thread": 18 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 3080129, + "thread": 17 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 3242727, + "thread": 14 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 3426276, + "thread": 12 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 3508275, + "thread": 31 + } + }, + { + "amount": "78.103066470", + "slot": { + "period": 3747047, + "thread": 22 + } + }, + { + "amount": "78.103066464", + "slot": { + "period": 3932821, + "thread": 27 + } + } + ], + "AU12vLXoVS2H4Fnmxo12DS7Q9w1y1DCDFoJz4eqs3gVrd48r9fJKD": [ + { + "amount": "190.814045203", + "slot": { + "period": 143671, + "thread": 3 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 175448, + "thread": 4 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 395834, + "thread": 18 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 604145, + "thread": 7 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 768367, + "thread": 3 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 950264, + "thread": 18 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1032011, + "thread": 25 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1182558, + "thread": 20 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1459408, + "thread": 30 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1480051, + "thread": 3 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1704221, + "thread": 4 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 1931153, + "thread": 12 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2136920, + "thread": 9 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2172975, + "thread": 31 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2358214, + "thread": 19 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2488419, + "thread": 10 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2741068, + "thread": 20 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 2870799, + "thread": 7 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 3104978, + "thread": 21 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 3206772, + "thread": 13 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 3292342, + "thread": 29 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 3504839, + "thread": 28 + } + }, + { + "amount": "190.814045203", + "slot": { + "period": 3725619, + "thread": 6 + } + }, + { + "amount": "190.814045214", + "slot": { + "period": 3802375, + "thread": 22 + } + } + ], + "AU12vM4uBEAr5HhfwAYkTncVoHBtEfuReFFiEB8igx4kbFV5ZdmG8": [ + { + "amount": "204.125674698", + "slot": { + "period": 55932, + "thread": 12 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 204874, + "thread": 14 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 388843, + "thread": 16 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 580283, + "thread": 23 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 693103, + "thread": 1 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 963839, + "thread": 0 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1135520, + "thread": 13 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1153965, + "thread": 18 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1391478, + "thread": 16 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1485368, + "thread": 11 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1805717, + "thread": 2 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 1947457, + "thread": 20 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2132470, + "thread": 3 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2241045, + "thread": 29 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2376343, + "thread": 9 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2485337, + "thread": 3 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2777528, + "thread": 9 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 2937604, + "thread": 18 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 3037737, + "thread": 27 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 3193063, + "thread": 7 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 3391657, + "thread": 19 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 3596183, + "thread": 2 + } + }, + { + "amount": "204.125674698", + "slot": { + "period": 3675604, + "thread": 29 + } + }, + { + "amount": "204.125674694", + "slot": { + "period": 3908250, + "thread": 21 + } + } + ], + "AU12vMTVr4HEfeYi5YugdXWWN7Gygo27bP8DdZ2qtWspctrUREVAE": [ + { + "amount": "59.299486195", + "slot": { + "period": 55298, + "thread": 6 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 260275, + "thread": 15 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 330601, + "thread": 25 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 597206, + "thread": 7 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 703421, + "thread": 29 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 949008, + "thread": 6 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 984035, + "thread": 6 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 1197308, + "thread": 8 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 1341199, + "thread": 5 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 1524182, + "thread": 30 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 1737589, + "thread": 14 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 1823829, + "thread": 3 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2057833, + "thread": 24 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2198819, + "thread": 14 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2383299, + "thread": 14 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2523049, + "thread": 22 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2753641, + "thread": 2 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 2914941, + "thread": 0 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 3110973, + "thread": 19 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 3138391, + "thread": 4 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 3306210, + "thread": 9 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 3451045, + "thread": 14 + } + }, + { + "amount": "59.299486195", + "slot": { + "period": 3639073, + "thread": 22 + } + }, + { + "amount": "59.299486205", + "slot": { + "period": 3840401, + "thread": 4 + } + } + ], + "AU12vMoHgvzjL7wtY49LNC7bhXqxApbAzS8iHNEx717bW6TLcVgTD": [ + { + "amount": "324.038398465", + "slot": { + "period": 123229, + "thread": 19 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 178131, + "thread": 26 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 368613, + "thread": 6 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 498129, + "thread": 6 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 702595, + "thread": 30 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 894354, + "thread": 21 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1113771, + "thread": 1 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1280641, + "thread": 9 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1390782, + "thread": 26 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1529203, + "thread": 25 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1687632, + "thread": 8 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 1845346, + "thread": 21 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2129702, + "thread": 8 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2217468, + "thread": 2 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2378215, + "thread": 21 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2533258, + "thread": 17 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2729672, + "thread": 29 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2912453, + "thread": 15 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 2983076, + "thread": 7 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 3144039, + "thread": 18 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 3349240, + "thread": 27 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 3582619, + "thread": 26 + } + }, + { + "amount": "324.038398465", + "slot": { + "period": 3751101, + "thread": 22 + } + }, + { + "amount": "324.038398454", + "slot": { + "period": 3909586, + "thread": 16 + } + } + ], + "AU12vNSoq8PutcHHeXKJf54etBpebpKiKsJZEG9CyDJZauu1o1tYk": [ + { + "amount": "471.828108442", + "slot": { + "period": 98947, + "thread": 16 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 278151, + "thread": 8 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 381887, + "thread": 5 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 632935, + "thread": 2 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 783691, + "thread": 10 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 845969, + "thread": 11 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1072917, + "thread": 21 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1230941, + "thread": 14 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1335788, + "thread": 21 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1563984, + "thread": 2 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1789381, + "thread": 20 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 1925741, + "thread": 17 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2010967, + "thread": 17 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2222531, + "thread": 16 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2316515, + "thread": 5 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2586418, + "thread": 23 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2715153, + "thread": 5 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 2854663, + "thread": 15 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 3058085, + "thread": 17 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 3274937, + "thread": 26 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 3406479, + "thread": 28 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 3457464, + "thread": 11 + } + }, + { + "amount": "471.828108442", + "slot": { + "period": 3749318, + "thread": 29 + } + }, + { + "amount": "471.828108452", + "slot": { + "period": 3891094, + "thread": 19 + } + } + ], + "AU12vPgj6ZjKVfgjf5puxer3fr3j3CZ9wmsv5XL3ahSrn5xEArVag": [ + { + "amount": "240.002040404", + "slot": { + "period": 93971, + "thread": 25 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 229585, + "thread": 4 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 442203, + "thread": 31 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 503336, + "thread": 10 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 678609, + "thread": 21 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 827767, + "thread": 27 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1047482, + "thread": 11 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1267256, + "thread": 1 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1360020, + "thread": 10 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1524787, + "thread": 14 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1783842, + "thread": 18 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 1828187, + "thread": 15 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2006085, + "thread": 3 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2292005, + "thread": 10 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2359353, + "thread": 27 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2559252, + "thread": 6 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2749245, + "thread": 30 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 2846083, + "thread": 14 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 3002005, + "thread": 13 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 3262162, + "thread": 7 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 3330301, + "thread": 29 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 3512554, + "thread": 18 + } + }, + { + "amount": "240.002040404", + "slot": { + "period": 3735762, + "thread": 3 + } + }, + { + "amount": "240.002040409", + "slot": { + "period": 3897856, + "thread": 11 + } + } + ], + "AU12vPw4uUcdVQ35NLhPCVHGPKq7eWLnBFBovagFDjN9d4vWWRxcC": [ + { + "amount": "150.373771500", + "slot": { + "period": 13693, + "thread": 31 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 239054, + "thread": 13 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 470228, + "thread": 6 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 517875, + "thread": 13 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 792354, + "thread": 22 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 823007, + "thread": 21 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1141077, + "thread": 2 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1292269, + "thread": 10 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1399589, + "thread": 1 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1616362, + "thread": 4 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1657192, + "thread": 19 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1957792, + "thread": 27 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 1998741, + "thread": 12 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 2187760, + "thread": 24 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 2339886, + "thread": 4 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 2604408, + "thread": 20 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 2747217, + "thread": 22 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 2814295, + "thread": 18 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 3032869, + "thread": 4 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 3135897, + "thread": 1 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 3314394, + "thread": 0 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 3507798, + "thread": 24 + } + }, + { + "amount": "150.373771500", + "slot": { + "period": 3635637, + "thread": 31 + } + }, + { + "amount": "150.373771493", + "slot": { + "period": 3861592, + "thread": 29 + } + } + ], + "AU12vQSJ5bNEBZEaVGx5VJEJSQcSojYekLVTBWkJsxk5ECXJ5rXfC": [ + { + "amount": "145.534369538", + "slot": { + "period": 141000, + "thread": 1 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 250031, + "thread": 1 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 413027, + "thread": 3 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 601993, + "thread": 20 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 739646, + "thread": 3 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 880620, + "thread": 3 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1137323, + "thread": 9 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1256082, + "thread": 14 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1318631, + "thread": 18 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1489906, + "thread": 9 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1649314, + "thread": 6 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 1954296, + "thread": 29 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2023575, + "thread": 13 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2165058, + "thread": 6 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2427116, + "thread": 3 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2542308, + "thread": 25 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2775813, + "thread": 10 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 2820991, + "thread": 29 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 3083740, + "thread": 17 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 3149282, + "thread": 16 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 3323823, + "thread": 16 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 3475539, + "thread": 6 + } + }, + { + "amount": "145.534369538", + "slot": { + "period": 3773538, + "thread": 20 + } + }, + { + "amount": "145.534369545", + "slot": { + "period": 3887197, + "thread": 27 + } + } + ], + "AU12vRWG9tJyEx56Ltd8YbWjrk3xw47ZhSyrVRJoxUeE498BZYrjg": [ + { + "amount": "305.208693974", + "slot": { + "period": 80829, + "thread": 20 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 201448, + "thread": 30 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 474965, + "thread": 20 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 579070, + "thread": 14 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 655406, + "thread": 3 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 941020, + "thread": 11 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 990618, + "thread": 7 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 1172827, + "thread": 25 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 1395839, + "thread": 0 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 1548277, + "thread": 16 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 1777836, + "thread": 0 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 1939450, + "thread": 27 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2036369, + "thread": 24 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2226645, + "thread": 8 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2388490, + "thread": 15 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2503811, + "thread": 19 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2722925, + "thread": 8 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 2931389, + "thread": 11 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 3078557, + "thread": 30 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 3281949, + "thread": 8 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 3362933, + "thread": 11 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 3538133, + "thread": 28 + } + }, + { + "amount": "305.208693974", + "slot": { + "period": 3767905, + "thread": 20 + } + }, + { + "amount": "305.208693976", + "slot": { + "period": 3787675, + "thread": 3 + } + } + ], + "AU12vS9iZeBs9GAYYQDLxLs5DcV6kK7nSPxvY7had6EXE61WywPbz": [ + { + "amount": "139.300730661", + "slot": { + "period": 39006, + "thread": 3 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 314100, + "thread": 31 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 447571, + "thread": 8 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 633873, + "thread": 0 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 758749, + "thread": 8 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 915673, + "thread": 18 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1086649, + "thread": 11 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1177511, + "thread": 11 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1416277, + "thread": 1 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1537801, + "thread": 31 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1676592, + "thread": 13 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1895146, + "thread": 17 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 1984928, + "thread": 16 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 2187211, + "thread": 3 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 2405330, + "thread": 27 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 2539534, + "thread": 26 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 2656179, + "thread": 23 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 2880731, + "thread": 7 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 3027750, + "thread": 1 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 3136864, + "thread": 19 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 3373854, + "thread": 17 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 3557809, + "thread": 27 + } + }, + { + "amount": "139.300730661", + "slot": { + "period": 3768379, + "thread": 8 + } + }, + { + "amount": "139.300730662", + "slot": { + "period": 3832061, + "thread": 16 + } + } + ], + "AU12vT8HPtgroe1S5dSBgzLCk2NqCuWGMLbYd8Foti3ANrUyVeRcb": [ + { + "amount": "202.340543405", + "slot": { + "period": 141863, + "thread": 25 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 232356, + "thread": 21 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 405046, + "thread": 20 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 499226, + "thread": 29 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 776839, + "thread": 4 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 966445, + "thread": 1 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1052329, + "thread": 29 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1275836, + "thread": 14 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1444215, + "thread": 27 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1571236, + "thread": 7 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1773952, + "thread": 5 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 1974722, + "thread": 1 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2052372, + "thread": 2 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2189187, + "thread": 17 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2306330, + "thread": 10 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2579558, + "thread": 11 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2667975, + "thread": 26 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 2836991, + "thread": 29 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 3095631, + "thread": 6 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 3241716, + "thread": 6 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 3378037, + "thread": 17 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 3452678, + "thread": 7 + } + }, + { + "amount": "202.340543405", + "slot": { + "period": 3634543, + "thread": 24 + } + }, + { + "amount": "202.340543414", + "slot": { + "period": 3947046, + "thread": 26 + } + } + ], + "AU12vTpF1887WkZNLTMU258pzFFbf9odsVEasbRE5JcLP4hazmLhb": [ + { + "amount": "294.772536416", + "slot": { + "period": 111569, + "thread": 22 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 285404, + "thread": 18 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 486488, + "thread": 1 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 528097, + "thread": 31 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 767376, + "thread": 5 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 866648, + "thread": 14 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 997065, + "thread": 31 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 1203898, + "thread": 6 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 1432628, + "thread": 22 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 1501646, + "thread": 7 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 1770186, + "thread": 18 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 1924921, + "thread": 27 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2001102, + "thread": 30 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2276765, + "thread": 22 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2327667, + "thread": 26 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2512816, + "thread": 9 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2791383, + "thread": 1 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 2811135, + "thread": 31 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 3080074, + "thread": 2 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 3220416, + "thread": 20 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 3405141, + "thread": 28 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 3594252, + "thread": 22 + } + }, + { + "amount": "294.772536416", + "slot": { + "period": 3680640, + "thread": 9 + } + }, + { + "amount": "294.772536425", + "slot": { + "period": 3853955, + "thread": 27 + } + } + ], + "AU12vV5tvkhpVy2KRAEWur9EVZMJoSxvtNQ1k8LL8h4hT4ba63Zt2": [ + { + "amount": "3266.666666667", + "slot": { + "period": 62938, + "thread": 25 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 313731, + "thread": 7 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 441863, + "thread": 2 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 500119, + "thread": 12 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 668758, + "thread": 12 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 881282, + "thread": 13 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1088537, + "thread": 13 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1176952, + "thread": 19 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1466395, + "thread": 2 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1634946, + "thread": 23 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1647431, + "thread": 28 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 1828396, + "thread": 11 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2062330, + "thread": 16 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2288725, + "thread": 16 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2360861, + "thread": 4 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2535080, + "thread": 0 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2636751, + "thread": 22 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2822507, + "thread": 17 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 2976818, + "thread": 24 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 3250840, + "thread": 25 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 3432021, + "thread": 22 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 3460392, + "thread": 31 + } + }, + { + "amount": "3266.666666667", + "slot": { + "period": 3761327, + "thread": 24 + } + }, + { + "amount": "3266.666666659", + "slot": { + "period": 3910471, + "thread": 28 + } + } + ], + "AU12vVPRv4pyMNLDy1NgDojxxzrrLvE9xpSR1sjcZPirASrh59Vcw": [ + { + "amount": "1267.749616168", + "slot": { + "period": 32947, + "thread": 13 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 321379, + "thread": 24 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 434448, + "thread": 14 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 557488, + "thread": 26 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 734819, + "thread": 1 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 822018, + "thread": 6 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1148599, + "thread": 24 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1210327, + "thread": 3 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1391407, + "thread": 31 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1613560, + "thread": 9 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1712068, + "thread": 24 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 1817314, + "thread": 22 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2051483, + "thread": 14 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2175602, + "thread": 2 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2376199, + "thread": 30 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2591282, + "thread": 0 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2680573, + "thread": 16 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 2890471, + "thread": 3 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 3006911, + "thread": 3 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 3221076, + "thread": 14 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 3320058, + "thread": 14 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 3583677, + "thread": 3 + } + }, + { + "amount": "1267.749616168", + "slot": { + "period": 3718471, + "thread": 23 + } + }, + { + "amount": "1267.749616153", + "slot": { + "period": 3824047, + "thread": 29 + } + } + ], + "AU12vWX4tnj7tehssNZCd6igGekBfYZpH3mcy9ccgSpY1CAKEBhgX": [ + { + "amount": "107.340705132", + "slot": { + "period": 149099, + "thread": 19 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 268775, + "thread": 13 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 344123, + "thread": 12 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 573639, + "thread": 13 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 705418, + "thread": 18 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 969250, + "thread": 5 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 986977, + "thread": 11 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1298103, + "thread": 7 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1359358, + "thread": 22 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1602982, + "thread": 18 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1719487, + "thread": 17 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1849836, + "thread": 4 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 1996943, + "thread": 31 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 2180105, + "thread": 1 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 2356779, + "thread": 27 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 2526022, + "thread": 0 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 2639884, + "thread": 12 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 2911366, + "thread": 16 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 3116640, + "thread": 0 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 3154384, + "thread": 25 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 3445198, + "thread": 31 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 3513362, + "thread": 31 + } + }, + { + "amount": "107.340705132", + "slot": { + "period": 3712724, + "thread": 1 + } + }, + { + "amount": "107.340705124", + "slot": { + "period": 3782955, + "thread": 19 + } + } + ], + "AU12vWX7UDjcxmdVJmVBWckFV3PMhFw21G2XEzmdJt9oTCwHzmjzP": [ + { + "amount": "143.637433035", + "slot": { + "period": 21811, + "thread": 31 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 185207, + "thread": 29 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 460213, + "thread": 18 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 540069, + "thread": 11 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 713169, + "thread": 27 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 950909, + "thread": 12 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1129982, + "thread": 13 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1270245, + "thread": 12 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1462679, + "thread": 22 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1612696, + "thread": 21 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1713301, + "thread": 21 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 1956767, + "thread": 5 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2053432, + "thread": 27 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2202947, + "thread": 0 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2296429, + "thread": 31 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2570201, + "thread": 10 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2696640, + "thread": 4 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 2891246, + "thread": 3 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 3118475, + "thread": 21 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 3189921, + "thread": 1 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 3400633, + "thread": 7 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 3459714, + "thread": 3 + } + }, + { + "amount": "143.637433035", + "slot": { + "period": 3753672, + "thread": 5 + } + }, + { + "amount": "143.637433039", + "slot": { + "period": 3927623, + "thread": 27 + } + } + ], + "AU12vX5FxBczzvqMMYZwpXxFx9h4Uhtt1bZfywsj5qPJwRUqHEDaX": [ + { + "amount": "74.375954856", + "slot": { + "period": 40648, + "thread": 21 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 268855, + "thread": 10 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 345164, + "thread": 27 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 531806, + "thread": 7 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 745933, + "thread": 28 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 832070, + "thread": 30 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1068202, + "thread": 18 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1191575, + "thread": 21 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1457579, + "thread": 31 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1547080, + "thread": 9 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1680468, + "thread": 27 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 1902872, + "thread": 26 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2085952, + "thread": 7 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2147368, + "thread": 11 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2461675, + "thread": 6 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2513024, + "thread": 24 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2702244, + "thread": 5 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 2892170, + "thread": 29 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 3064766, + "thread": 12 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 3253021, + "thread": 0 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 3383687, + "thread": 6 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 3552622, + "thread": 9 + } + }, + { + "amount": "74.375954856", + "slot": { + "period": 3673627, + "thread": 28 + } + }, + { + "amount": "74.375954846", + "slot": { + "period": 3893243, + "thread": 29 + } + } + ], + "AU12vXAZR21pob5GRRpfWgX6BaLxmU97mGhJKes2z6SuWAeiQGazn": [ + { + "amount": "130.475827578", + "slot": { + "period": 155666, + "thread": 9 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 262798, + "thread": 18 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 376607, + "thread": 23 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 607864, + "thread": 19 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 679943, + "thread": 24 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 873401, + "thread": 9 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 999205, + "thread": 13 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 1222002, + "thread": 13 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 1349480, + "thread": 13 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 1617631, + "thread": 2 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 1690053, + "thread": 7 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 1852592, + "thread": 31 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2051403, + "thread": 15 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2212377, + "thread": 28 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2406581, + "thread": 6 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2538514, + "thread": 3 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2626915, + "thread": 0 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 2842522, + "thread": 2 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 3035001, + "thread": 2 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 3284466, + "thread": 8 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 3437869, + "thread": 27 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 3532441, + "thread": 15 + } + }, + { + "amount": "130.475827578", + "slot": { + "period": 3776686, + "thread": 8 + } + }, + { + "amount": "130.475827583", + "slot": { + "period": 3902435, + "thread": 22 + } + } + ], + "AU12vXxzdxDFRYHmfnsXaqVv35cJvWazvTkusMqYZkSqwzkanxJn": [ + { + "amount": "53.889397153", + "slot": { + "period": 33998, + "thread": 5 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 192209, + "thread": 17 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 485896, + "thread": 25 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 595326, + "thread": 7 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 799136, + "thread": 9 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 921818, + "thread": 7 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1012481, + "thread": 0 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1209045, + "thread": 2 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1404981, + "thread": 12 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1644868, + "thread": 10 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1725364, + "thread": 21 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1913543, + "thread": 5 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 1995037, + "thread": 14 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 2171547, + "thread": 12 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 2369731, + "thread": 3 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 2484878, + "thread": 2 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 2638527, + "thread": 16 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 2926105, + "thread": 15 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 3099838, + "thread": 10 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 3215262, + "thread": 8 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 3311427, + "thread": 28 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 3519216, + "thread": 28 + } + }, + { + "amount": "53.889397153", + "slot": { + "period": 3738629, + "thread": 24 + } + }, + { + "amount": "53.889397143", + "slot": { + "period": 3800403, + "thread": 4 + } + } + ], + "AU12vYEFLnBf5nfkFVwaGir8NRG43MygNXpXMNhSPZW69dHQgcKyV": [ + { + "amount": "193.063907505", + "slot": { + "period": 115185, + "thread": 17 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 210123, + "thread": 20 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 431894, + "thread": 20 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 521333, + "thread": 28 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 676167, + "thread": 4 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 966491, + "thread": 24 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1129596, + "thread": 2 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1183634, + "thread": 18 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1461601, + "thread": 1 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1618832, + "thread": 4 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1687187, + "thread": 25 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 1916075, + "thread": 6 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2104868, + "thread": 29 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2151757, + "thread": 18 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2307058, + "thread": 20 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2510438, + "thread": 28 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2735996, + "thread": 14 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 2949019, + "thread": 29 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 3025440, + "thread": 13 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 3201912, + "thread": 3 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 3379146, + "thread": 8 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 3482460, + "thread": 18 + } + }, + { + "amount": "193.063907505", + "slot": { + "period": 3691553, + "thread": 25 + } + }, + { + "amount": "193.063907509", + "slot": { + "period": 3864670, + "thread": 28 + } + } + ], + "AU12vYEZsxsgo9b4B6VXLNZjxJbxyMCxkePjAbz6DwmYiWVQcsXJq": [ + { + "amount": "73.703104877", + "slot": { + "period": 128523, + "thread": 24 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 283234, + "thread": 25 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 428987, + "thread": 1 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 633778, + "thread": 25 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 688131, + "thread": 14 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 855773, + "thread": 25 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1031963, + "thread": 20 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1220097, + "thread": 25 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1427636, + "thread": 10 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1633544, + "thread": 0 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1739320, + "thread": 16 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 1813980, + "thread": 15 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2064344, + "thread": 13 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2190013, + "thread": 5 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2380662, + "thread": 22 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2468104, + "thread": 25 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2713968, + "thread": 12 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 2918912, + "thread": 0 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 3085741, + "thread": 26 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 3226197, + "thread": 14 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 3334070, + "thread": 20 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 3463056, + "thread": 6 + } + }, + { + "amount": "73.703104877", + "slot": { + "period": 3720760, + "thread": 20 + } + }, + { + "amount": "73.703104882", + "slot": { + "period": 3939108, + "thread": 20 + } + } + ], + "AU12vZCusQFEfUqkBpbRTDwoH55rtZvY5NBHJ74NxkYiVBznEDXCw": [ + { + "amount": "194.967012949", + "slot": { + "period": 110086, + "thread": 2 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 280295, + "thread": 19 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 483950, + "thread": 9 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 524643, + "thread": 26 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 794950, + "thread": 4 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 941746, + "thread": 17 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1104723, + "thread": 9 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1217079, + "thread": 7 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1388237, + "thread": 2 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1534383, + "thread": 10 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1805611, + "thread": 13 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 1931361, + "thread": 5 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2063789, + "thread": 14 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2272091, + "thread": 4 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2395959, + "thread": 25 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2574660, + "thread": 29 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2772048, + "thread": 27 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2810836, + "thread": 12 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 2972507, + "thread": 9 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 3273969, + "thread": 24 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 3338560, + "thread": 1 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 3468224, + "thread": 24 + } + }, + { + "amount": "194.967012949", + "slot": { + "period": 3635895, + "thread": 8 + } + }, + { + "amount": "194.967012944", + "slot": { + "period": 3782996, + "thread": 12 + } + } + ], + "AU12vZPJvdD71Ycqci5unCQpcvVRCRMM8D7wVwW93tKdvRFMKpMes": [ + { + "amount": "354.214369227", + "slot": { + "period": 35296, + "thread": 26 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 192448, + "thread": 29 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 392220, + "thread": 11 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 500008, + "thread": 19 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 658026, + "thread": 2 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 932102, + "thread": 20 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1133409, + "thread": 21 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1187308, + "thread": 25 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1477741, + "thread": 13 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1596088, + "thread": 7 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1665650, + "thread": 6 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1972154, + "thread": 6 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 1977488, + "thread": 19 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 2277327, + "thread": 23 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 2382971, + "thread": 27 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 2529777, + "thread": 7 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 2752848, + "thread": 1 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 2804763, + "thread": 7 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 3020492, + "thread": 4 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 3147300, + "thread": 29 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 3322982, + "thread": 31 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 3509117, + "thread": 31 + } + }, + { + "amount": "354.214369227", + "slot": { + "period": 3686511, + "thread": 8 + } + }, + { + "amount": "354.214369234", + "slot": { + "period": 3870759, + "thread": 8 + } + } + ], + "AU12vaAVv2KYsKEdNJ2xnmPQRTXnbVghasAL1XehxUtQtQmtk36cn": [ + { + "amount": "163.778254714", + "slot": { + "period": 103106, + "thread": 9 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 213374, + "thread": 31 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 414845, + "thread": 1 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 557832, + "thread": 10 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 801178, + "thread": 18 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 881205, + "thread": 14 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1036835, + "thread": 29 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1154844, + "thread": 6 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1458542, + "thread": 27 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1579143, + "thread": 13 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1694825, + "thread": 23 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 1867027, + "thread": 2 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2024860, + "thread": 20 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2155922, + "thread": 14 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2380329, + "thread": 9 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2581403, + "thread": 13 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2634717, + "thread": 12 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 2912656, + "thread": 3 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 3049600, + "thread": 27 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 3210569, + "thread": 1 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 3306342, + "thread": 11 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 3516248, + "thread": 12 + } + }, + { + "amount": "163.778254714", + "slot": { + "period": 3770867, + "thread": 8 + } + }, + { + "amount": "163.778254721", + "slot": { + "period": 3885448, + "thread": 30 + } + } + ], + "AU12van3ZcRZ2e4sJ5XE8gbXDd7BSxPe8BjkTNg32SvkiqT5qVoc1": [ + { + "amount": "582.812711470", + "slot": { + "period": 91076, + "thread": 1 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 181411, + "thread": 23 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 334632, + "thread": 12 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 635636, + "thread": 26 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 757552, + "thread": 28 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 950682, + "thread": 29 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 987291, + "thread": 23 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 1177613, + "thread": 19 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 1378329, + "thread": 13 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 1642695, + "thread": 26 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 1791966, + "thread": 20 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 1927899, + "thread": 30 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2135217, + "thread": 13 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2169122, + "thread": 7 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2381303, + "thread": 6 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2507053, + "thread": 26 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2658415, + "thread": 16 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2822609, + "thread": 28 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 2959962, + "thread": 8 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 3257817, + "thread": 27 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 3426199, + "thread": 28 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 3569757, + "thread": 14 + } + }, + { + "amount": "582.812711470", + "slot": { + "period": 3709241, + "thread": 22 + } + }, + { + "amount": "582.812711474", + "slot": { + "period": 3821138, + "thread": 19 + } + } + ], + "AU12vbm8MV5THKF152kB9vYYwM1fmSPzcgXq1Nb1z1qqmscFip9Ki": [ + { + "amount": "290.819166869", + "slot": { + "period": 19753, + "thread": 14 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 293629, + "thread": 2 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 471016, + "thread": 3 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 591614, + "thread": 29 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 739481, + "thread": 31 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 912867, + "thread": 21 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 991245, + "thread": 10 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 1189908, + "thread": 11 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 1416814, + "thread": 10 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 1565331, + "thread": 8 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 1674602, + "thread": 11 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 1855135, + "thread": 31 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2051752, + "thread": 24 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2225230, + "thread": 19 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2320203, + "thread": 15 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2467659, + "thread": 1 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2627011, + "thread": 20 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 2839866, + "thread": 17 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 3064971, + "thread": 4 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 3157397, + "thread": 13 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 3423139, + "thread": 29 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 3566416, + "thread": 10 + } + }, + { + "amount": "290.819166869", + "slot": { + "period": 3716671, + "thread": 15 + } + }, + { + "amount": "290.819166877", + "slot": { + "period": 3900519, + "thread": 18 + } + } + ], + "AU12vcFrqhHdKSUB11EMFMyjqd4pcptZuvWuniF23qTqJ66MNQhsx": [ + { + "amount": "184.530382972", + "slot": { + "period": 158659, + "thread": 3 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 225194, + "thread": 27 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 329351, + "thread": 17 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 606938, + "thread": 9 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 661114, + "thread": 31 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 906376, + "thread": 17 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1017205, + "thread": 0 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1193747, + "thread": 29 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1334109, + "thread": 9 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1522485, + "thread": 27 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1757512, + "thread": 16 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 1826504, + "thread": 10 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2101800, + "thread": 19 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2266775, + "thread": 8 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2358360, + "thread": 17 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2534956, + "thread": 13 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2626302, + "thread": 11 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 2918777, + "thread": 14 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 3039603, + "thread": 24 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 3176779, + "thread": 17 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 3389064, + "thread": 22 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 3499118, + "thread": 2 + } + }, + { + "amount": "184.530382972", + "slot": { + "period": 3624460, + "thread": 30 + } + }, + { + "amount": "184.530382976", + "slot": { + "period": 3888470, + "thread": 21 + } + } + ], + "AU12vcRNNneN4b8PcGwFdwvFguWmHveddTWeVGnTvUZxZfpwj8avN": [ + { + "amount": "176.065890223", + "slot": { + "period": 53831, + "thread": 22 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 228369, + "thread": 20 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 407511, + "thread": 21 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 556121, + "thread": 5 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 730940, + "thread": 19 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 821942, + "thread": 19 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1145352, + "thread": 22 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1271137, + "thread": 7 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1391310, + "thread": 18 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1485536, + "thread": 12 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1781877, + "thread": 8 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 1873792, + "thread": 10 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2120263, + "thread": 25 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2199878, + "thread": 16 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2441080, + "thread": 8 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2557160, + "thread": 27 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2758713, + "thread": 4 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 2867152, + "thread": 4 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 3035300, + "thread": 13 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 3170645, + "thread": 15 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 3347776, + "thread": 27 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 3536847, + "thread": 7 + } + }, + { + "amount": "176.065890223", + "slot": { + "period": 3664625, + "thread": 21 + } + }, + { + "amount": "176.065890213", + "slot": { + "period": 3803839, + "thread": 25 + } + } + ], + "AU12vcxnM2vWUevPhYENDaX7iHiY314NdKijGHHjJ8EXqrJAVTBmw": [ + { + "amount": "191.510986101", + "slot": { + "period": 55944, + "thread": 31 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 203440, + "thread": 10 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 343812, + "thread": 30 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 594101, + "thread": 19 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 711470, + "thread": 24 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 960393, + "thread": 22 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 994851, + "thread": 6 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 1211669, + "thread": 29 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 1349142, + "thread": 26 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 1528169, + "thread": 27 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 1683776, + "thread": 26 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 1908760, + "thread": 8 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2004919, + "thread": 9 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2245909, + "thread": 19 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2432142, + "thread": 17 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2563276, + "thread": 16 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2717492, + "thread": 4 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 2937295, + "thread": 21 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 3008382, + "thread": 25 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 3281747, + "thread": 4 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 3402445, + "thread": 14 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 3546120, + "thread": 11 + } + }, + { + "amount": "191.510986101", + "slot": { + "period": 3732524, + "thread": 15 + } + }, + { + "amount": "191.510986106", + "slot": { + "period": 3934502, + "thread": 11 + } + } + ], + "AU12vdN3fS5V6tczyBDtX8HQNABD74QfcpsGsYw2sc7PLATJyGrAT": [ + { + "amount": "148.176868188", + "slot": { + "period": 55748, + "thread": 1 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 194149, + "thread": 9 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 480259, + "thread": 22 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 647947, + "thread": 1 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 712621, + "thread": 9 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 826243, + "thread": 21 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1094785, + "thread": 25 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1313453, + "thread": 14 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1434527, + "thread": 20 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1519498, + "thread": 16 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1719085, + "thread": 12 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 1836527, + "thread": 11 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2018559, + "thread": 18 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2255333, + "thread": 5 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2313337, + "thread": 16 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2584962, + "thread": 30 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2768697, + "thread": 2 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 2793265, + "thread": 10 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 3034833, + "thread": 9 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 3203515, + "thread": 8 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 3345274, + "thread": 4 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 3487156, + "thread": 7 + } + }, + { + "amount": "148.176868188", + "slot": { + "period": 3669803, + "thread": 0 + } + }, + { + "amount": "148.176868193", + "slot": { + "period": 3786984, + "thread": 5 + } + } + ], + "AU12ve5VvXBcEsUw4TaZgsu7fGQ5AqFH79YRwHv1zSPi5MWNiUdYX": [ + { + "amount": "81.484974673", + "slot": { + "period": 110435, + "thread": 5 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 229998, + "thread": 27 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 416936, + "thread": 29 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 564359, + "thread": 24 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 722257, + "thread": 17 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 960736, + "thread": 25 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1002642, + "thread": 27 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1181348, + "thread": 8 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1338402, + "thread": 24 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1507464, + "thread": 16 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1650751, + "thread": 8 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 1940784, + "thread": 20 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2013909, + "thread": 6 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2194387, + "thread": 11 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2304008, + "thread": 0 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2490078, + "thread": 9 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2737133, + "thread": 27 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 2836434, + "thread": 28 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 3051557, + "thread": 31 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 3257482, + "thread": 11 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 3420523, + "thread": 8 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 3573041, + "thread": 2 + } + }, + { + "amount": "81.484974673", + "slot": { + "period": 3666207, + "thread": 12 + } + }, + { + "amount": "81.484974674", + "slot": { + "period": 3787955, + "thread": 27 + } + } + ], + "AU12veyxFKAesm2fKXhgfUgUjjiij9G2GHyksZHmYnFz8ttNrffA4": [ + { + "amount": "458.426458599", + "slot": { + "period": 153348, + "thread": 19 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 302600, + "thread": 31 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 381173, + "thread": 2 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 644593, + "thread": 18 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 686269, + "thread": 1 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 927611, + "thread": 9 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1103498, + "thread": 26 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1175218, + "thread": 21 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1436790, + "thread": 31 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1582477, + "thread": 29 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1781043, + "thread": 9 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 1971930, + "thread": 20 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2087266, + "thread": 10 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2260447, + "thread": 19 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2300627, + "thread": 17 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2522290, + "thread": 20 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2659971, + "thread": 2 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 2897353, + "thread": 29 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 3069747, + "thread": 6 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 3153999, + "thread": 13 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 3398445, + "thread": 6 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 3504892, + "thread": 5 + } + }, + { + "amount": "458.426458599", + "slot": { + "period": 3625805, + "thread": 5 + } + }, + { + "amount": "458.426458607", + "slot": { + "period": 3844242, + "thread": 29 + } + } + ], + "AU12vfRv7QUGpPceiL4tWPzPeBSscB43uWb1ukohGAejNqSotCzr6": [ + { + "amount": "85.446143479", + "slot": { + "period": 89212, + "thread": 21 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 217173, + "thread": 28 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 463146, + "thread": 27 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 513244, + "thread": 25 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 708945, + "thread": 29 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 846784, + "thread": 17 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1017540, + "thread": 16 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1215019, + "thread": 24 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1406370, + "thread": 9 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1563075, + "thread": 28 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1749669, + "thread": 1 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 1838840, + "thread": 19 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2025445, + "thread": 11 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2173719, + "thread": 28 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2381431, + "thread": 14 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2584526, + "thread": 11 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2774415, + "thread": 13 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 2818981, + "thread": 8 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 3091683, + "thread": 7 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 3225903, + "thread": 18 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 3413486, + "thread": 25 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 3595788, + "thread": 23 + } + }, + { + "amount": "85.446143479", + "slot": { + "period": 3754504, + "thread": 0 + } + }, + { + "amount": "85.446143475", + "slot": { + "period": 3939418, + "thread": 4 + } + } + ], + "AU12vgHSmt8uZuLXEhefvb2Q325CtfiryE1oy5abjUFRQWb41epYb": [ + { + "amount": "136.231540064", + "slot": { + "period": 51933, + "thread": 28 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 242841, + "thread": 24 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 453127, + "thread": 10 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 573872, + "thread": 5 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 795371, + "thread": 29 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 831962, + "thread": 20 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1118058, + "thread": 10 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1267671, + "thread": 17 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1439213, + "thread": 1 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1573667, + "thread": 2 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1673227, + "thread": 27 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 1951553, + "thread": 4 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2021809, + "thread": 13 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2145061, + "thread": 6 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2363675, + "thread": 17 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2475896, + "thread": 25 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2633239, + "thread": 17 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 2916848, + "thread": 11 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 3114579, + "thread": 5 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 3181021, + "thread": 17 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 3301618, + "thread": 27 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 3524590, + "thread": 23 + } + }, + { + "amount": "136.231540064", + "slot": { + "period": 3677428, + "thread": 7 + } + }, + { + "amount": "136.231540059", + "slot": { + "period": 3945304, + "thread": 0 + } + } + ], + "AU12vh6Y9iS6AD7DJ1EBoUq1WVCrKBXNTEYbTzoNVt1uVuKuqGmfm": [ + { + "amount": "124.285398009", + "slot": { + "period": 59862, + "thread": 15 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 263059, + "thread": 12 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 454354, + "thread": 29 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 604167, + "thread": 3 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 760426, + "thread": 2 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 857843, + "thread": 22 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1133186, + "thread": 6 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1209847, + "thread": 19 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1395201, + "thread": 9 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1615951, + "thread": 7 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1800838, + "thread": 4 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 1840077, + "thread": 4 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2123570, + "thread": 3 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2171735, + "thread": 16 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2329303, + "thread": 17 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2488740, + "thread": 13 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2668846, + "thread": 9 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 2799320, + "thread": 7 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 3013773, + "thread": 29 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 3283032, + "thread": 3 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 3407146, + "thread": 25 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 3617159, + "thread": 19 + } + }, + { + "amount": "124.285398009", + "slot": { + "period": 3694655, + "thread": 21 + } + }, + { + "amount": "124.285398020", + "slot": { + "period": 3859100, + "thread": 9 + } + } + ], + "AU12viU4Q6CYaiqi3dUaCtTHasYa6pA6gNrqELVUazq4B3KetghmZ": [ + { + "amount": "303.949373093", + "slot": { + "period": 164965, + "thread": 19 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 307114, + "thread": 13 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 328802, + "thread": 14 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 522394, + "thread": 10 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 786068, + "thread": 13 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 830952, + "thread": 26 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1149034, + "thread": 27 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1237583, + "thread": 2 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1363592, + "thread": 7 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1487472, + "thread": 1 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1769365, + "thread": 12 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 1855897, + "thread": 6 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2034056, + "thread": 27 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2230629, + "thread": 13 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2435259, + "thread": 14 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2474565, + "thread": 14 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2707406, + "thread": 28 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 2892204, + "thread": 28 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 3085690, + "thread": 17 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 3183671, + "thread": 31 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 3382131, + "thread": 30 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 3537794, + "thread": 18 + } + }, + { + "amount": "303.949373093", + "slot": { + "period": 3669211, + "thread": 18 + } + }, + { + "amount": "303.949373082", + "slot": { + "period": 3806465, + "thread": 31 + } + } + ], + "AU12vidVRtwucaEc3Fhz6Fwx1kMviux7pCsCuauCfBgjBXZ78pFtV": [ + { + "amount": "92.277320334", + "slot": { + "period": 81271, + "thread": 19 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 268263, + "thread": 15 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 409069, + "thread": 21 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 634162, + "thread": 9 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 735088, + "thread": 13 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 823706, + "thread": 21 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1012366, + "thread": 31 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1213579, + "thread": 23 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1362462, + "thread": 10 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1625903, + "thread": 27 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1648064, + "thread": 3 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 1961573, + "thread": 8 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2141335, + "thread": 18 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2167121, + "thread": 16 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2384485, + "thread": 31 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2465176, + "thread": 7 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2667726, + "thread": 18 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2950081, + "thread": 27 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 2987213, + "thread": 20 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 3134087, + "thread": 24 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 3417312, + "thread": 31 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 3504306, + "thread": 9 + } + }, + { + "amount": "92.277320334", + "slot": { + "period": 3622366, + "thread": 22 + } + }, + { + "amount": "92.277320326", + "slot": { + "period": 3780476, + "thread": 26 + } + } + ], + "AU12vjcNG4yxZ8RUD9nFmeYbrLs9d2ajx8tARnZ3uhHkM5jqwrGq8": [ + { + "amount": "181.518746281", + "slot": { + "period": 42386, + "thread": 24 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 254602, + "thread": 10 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 375753, + "thread": 8 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 571492, + "thread": 10 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 760829, + "thread": 23 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 878774, + "thread": 23 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1091382, + "thread": 8 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1215950, + "thread": 23 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1399068, + "thread": 8 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1628404, + "thread": 23 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1693435, + "thread": 31 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 1941312, + "thread": 6 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2084365, + "thread": 4 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2258116, + "thread": 14 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2399300, + "thread": 2 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2479762, + "thread": 0 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2773971, + "thread": 22 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2805017, + "thread": 4 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 2988978, + "thread": 28 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 3217962, + "thread": 13 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 3305781, + "thread": 29 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 3455140, + "thread": 17 + } + }, + { + "amount": "181.518746281", + "slot": { + "period": 3696077, + "thread": 17 + } + }, + { + "amount": "181.518746287", + "slot": { + "period": 3893409, + "thread": 20 + } + } + ], + "AU12vkmGNsh2WBMdxVCLJXCgcti1g6aGud2KhtvCymDTurBUTwNbd": [ + { + "amount": "98.527675570", + "slot": { + "period": 127685, + "thread": 9 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 248971, + "thread": 27 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 357475, + "thread": 1 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 565588, + "thread": 11 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 783988, + "thread": 24 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 971691, + "thread": 17 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1080056, + "thread": 15 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1196183, + "thread": 5 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1418698, + "thread": 1 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1532462, + "thread": 3 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1748181, + "thread": 6 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1865012, + "thread": 5 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 1996962, + "thread": 8 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 2274488, + "thread": 13 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 2403817, + "thread": 19 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 2587072, + "thread": 20 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 2684606, + "thread": 19 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 2911059, + "thread": 12 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 3068239, + "thread": 20 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 3251783, + "thread": 26 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 3330034, + "thread": 3 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 3500031, + "thread": 17 + } + }, + { + "amount": "98.527675570", + "slot": { + "period": 3659284, + "thread": 20 + } + }, + { + "amount": "98.527675581", + "slot": { + "period": 3790647, + "thread": 0 + } + } + ], + "AU12vkvXgizL2eDF2nRhCGbhVTnefQDVCg5XL19F4H35X7Jzm4e1W": [ + { + "amount": "191.943444965", + "slot": { + "period": 142824, + "thread": 14 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 175292, + "thread": 0 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 467873, + "thread": 11 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 517015, + "thread": 22 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 781011, + "thread": 18 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 946129, + "thread": 14 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1004122, + "thread": 1 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1248494, + "thread": 0 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1431694, + "thread": 11 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1635717, + "thread": 20 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1662582, + "thread": 26 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 1949803, + "thread": 7 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2102068, + "thread": 16 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2255958, + "thread": 22 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2441246, + "thread": 10 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2506741, + "thread": 15 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2648628, + "thread": 5 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2931515, + "thread": 21 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 2980251, + "thread": 30 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 3189504, + "thread": 6 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 3402544, + "thread": 3 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 3510389, + "thread": 23 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 3689042, + "thread": 1 + } + }, + { + "amount": "191.943444965", + "slot": { + "period": 3910744, + "thread": 20 + } + } + ], + "AU12vm1KZck5e7hURj4MjrVJubnM6ihHYc5D9JfUvaLf5je64MXyT": [ + { + "amount": "178.001528142", + "slot": { + "period": 27928, + "thread": 26 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 258371, + "thread": 14 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 410612, + "thread": 22 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 623547, + "thread": 18 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 717926, + "thread": 2 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 833371, + "thread": 29 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1097700, + "thread": 10 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1313740, + "thread": 9 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1340787, + "thread": 13 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1631924, + "thread": 1 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1685034, + "thread": 2 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 1907700, + "thread": 3 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2110387, + "thread": 6 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2218169, + "thread": 22 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2407102, + "thread": 12 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2596961, + "thread": 2 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2776570, + "thread": 19 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 2830534, + "thread": 0 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 3059463, + "thread": 0 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 3249364, + "thread": 12 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 3417562, + "thread": 17 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 3521917, + "thread": 4 + } + }, + { + "amount": "178.001528142", + "slot": { + "period": 3680275, + "thread": 16 + } + }, + { + "amount": "178.001528147", + "slot": { + "period": 3849472, + "thread": 0 + } + } + ], + "AU12vnNk5nYVpBK6YPeGZgREuXMtUSZTo612SugKbdgNkSacfrBa3": [ + { + "amount": "147.932143998", + "slot": { + "period": 94027, + "thread": 31 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 176257, + "thread": 8 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 390712, + "thread": 0 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 594577, + "thread": 9 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 802612, + "thread": 8 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 824796, + "thread": 12 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1034704, + "thread": 15 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1178743, + "thread": 30 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1382846, + "thread": 10 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1524790, + "thread": 12 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1737612, + "thread": 10 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 1942762, + "thread": 16 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2055603, + "thread": 21 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2250632, + "thread": 31 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2402787, + "thread": 18 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2599269, + "thread": 27 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2732921, + "thread": 25 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 2889257, + "thread": 8 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 3068865, + "thread": 25 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 3127520, + "thread": 14 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 3301431, + "thread": 16 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 3456006, + "thread": 21 + } + }, + { + "amount": "147.932143998", + "slot": { + "period": 3703223, + "thread": 10 + } + }, + { + "amount": "147.932143993", + "slot": { + "period": 3781908, + "thread": 15 + } + } + ], + "AU12vnUAtvzW3cfYtCvUrXNNFbEPx8ZbAd3BHqr27QyxxjZfPyzao": [ + { + "amount": "57.365278482", + "slot": { + "period": 60419, + "thread": 26 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 282405, + "thread": 8 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 346309, + "thread": 28 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 577853, + "thread": 26 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 777464, + "thread": 20 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 873430, + "thread": 14 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1086553, + "thread": 5 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1173698, + "thread": 26 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1323226, + "thread": 10 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1493900, + "thread": 9 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1750877, + "thread": 2 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 1847519, + "thread": 23 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2022661, + "thread": 8 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2223702, + "thread": 17 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2461947, + "thread": 13 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2504593, + "thread": 28 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2760029, + "thread": 28 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 2897465, + "thread": 7 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 3063194, + "thread": 18 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 3189448, + "thread": 21 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 3404761, + "thread": 16 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 3450896, + "thread": 9 + } + }, + { + "amount": "57.365278482", + "slot": { + "period": 3773776, + "thread": 27 + } + }, + { + "amount": "57.365278494", + "slot": { + "period": 3819705, + "thread": 5 + } + } + ], + "AU12vnrtzcpuYdTqoVrPbNfhmTQTGVdHWCHbrdxdrNujpVG1V6QWz": [ + { + "amount": "157.961842330", + "slot": { + "period": 104328, + "thread": 16 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 218534, + "thread": 28 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 359979, + "thread": 23 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 556068, + "thread": 22 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 784789, + "thread": 14 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 831338, + "thread": 19 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 987783, + "thread": 21 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 1279914, + "thread": 7 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 1347717, + "thread": 13 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 1548451, + "thread": 14 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 1777102, + "thread": 16 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 1886804, + "thread": 13 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2027259, + "thread": 22 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2197549, + "thread": 18 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2448742, + "thread": 22 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2570401, + "thread": 25 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2756012, + "thread": 1 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 2927979, + "thread": 9 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 3105861, + "thread": 16 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 3214332, + "thread": 27 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 3398398, + "thread": 6 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 3451485, + "thread": 20 + } + }, + { + "amount": "157.961842330", + "slot": { + "period": 3758135, + "thread": 7 + } + }, + { + "amount": "157.961842337", + "slot": { + "period": 3796903, + "thread": 11 + } + } + ], + "AU12vnvMV6UrohDTFHDwtsyHEozw9JDZgEvkhVxbHVaKmiDGo3BfB": [ + { + "amount": "179.627501801", + "slot": { + "period": 56733, + "thread": 23 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 287365, + "thread": 9 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 395015, + "thread": 2 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 548225, + "thread": 8 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 708407, + "thread": 30 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 880650, + "thread": 14 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1020001, + "thread": 3 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1264636, + "thread": 0 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1364695, + "thread": 18 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1572394, + "thread": 20 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1712445, + "thread": 19 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 1826250, + "thread": 19 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2119292, + "thread": 20 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2181667, + "thread": 8 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2446466, + "thread": 4 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2597940, + "thread": 16 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2780375, + "thread": 19 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 2919414, + "thread": 14 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 3109590, + "thread": 6 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 3263711, + "thread": 25 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 3350914, + "thread": 18 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 3457492, + "thread": 11 + } + }, + { + "amount": "179.627501801", + "slot": { + "period": 3741997, + "thread": 25 + } + }, + { + "amount": "179.627501810", + "slot": { + "period": 3891687, + "thread": 9 + } + } + ], + "AU12vo6h9UYEKfoAwiQTvv3Aq6gwdD44yihqnoftGRynYGcegNngD": [ + { + "amount": "251.546602645", + "slot": { + "period": 92390, + "thread": 8 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 218728, + "thread": 16 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 458364, + "thread": 28 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 641854, + "thread": 28 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 742050, + "thread": 16 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 870317, + "thread": 5 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1134727, + "thread": 28 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1181064, + "thread": 3 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1378604, + "thread": 15 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1524190, + "thread": 12 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1732567, + "thread": 7 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 1877458, + "thread": 12 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2062807, + "thread": 5 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2167864, + "thread": 7 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2307796, + "thread": 16 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2484564, + "thread": 27 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2682751, + "thread": 2 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 2908767, + "thread": 18 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 3042155, + "thread": 28 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 3277181, + "thread": 6 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 3424417, + "thread": 7 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 3533317, + "thread": 2 + } + }, + { + "amount": "251.546602645", + "slot": { + "period": 3779349, + "thread": 2 + } + }, + { + "amount": "251.546602637", + "slot": { + "period": 3827201, + "thread": 0 + } + } + ], + "AU12voRZmBCsVrXnftjEpYio1N3r2KrnFMaN51x87LJtbHXpEQPRf": [ + { + "amount": "180.278172448", + "slot": { + "period": 162603, + "thread": 6 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 273250, + "thread": 1 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 436982, + "thread": 20 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 508271, + "thread": 11 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 760435, + "thread": 17 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 881953, + "thread": 11 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1100103, + "thread": 2 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1153323, + "thread": 30 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1450182, + "thread": 10 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1633415, + "thread": 28 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1758872, + "thread": 18 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 1825039, + "thread": 0 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2099331, + "thread": 7 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2155802, + "thread": 7 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2419996, + "thread": 30 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2463630, + "thread": 9 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2639415, + "thread": 26 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 2880036, + "thread": 24 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 3115485, + "thread": 29 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 3232677, + "thread": 21 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 3444621, + "thread": 14 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 3611727, + "thread": 2 + } + }, + { + "amount": "180.278172448", + "slot": { + "period": 3685036, + "thread": 21 + } + }, + { + "amount": "180.278172441", + "slot": { + "period": 3810354, + "thread": 18 + } + } + ], + "AU12voWE5m9TGji12mpah9m1X6cYBgiXcGe1XqWKD7PbDA6EJ78nS": [ + { + "amount": "292.271536687", + "slot": { + "period": 164663, + "thread": 13 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 232813, + "thread": 9 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 358353, + "thread": 6 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 565695, + "thread": 15 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 784092, + "thread": 9 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 866324, + "thread": 18 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1041475, + "thread": 21 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1262513, + "thread": 3 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1361402, + "thread": 19 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1638007, + "thread": 28 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1700669, + "thread": 9 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1942754, + "thread": 25 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 1986553, + "thread": 15 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2241930, + "thread": 31 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2390300, + "thread": 1 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2551201, + "thread": 7 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2626777, + "thread": 10 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2856348, + "thread": 13 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 2993832, + "thread": 29 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 3121329, + "thread": 3 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 3395157, + "thread": 24 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 3561768, + "thread": 18 + } + }, + { + "amount": "292.271536687", + "slot": { + "period": 3685437, + "thread": 7 + } + }, + { + "amount": "292.271536696", + "slot": { + "period": 3871822, + "thread": 14 + } + } + ], + "AU12vp9qwZCffsNw88cbcv14XpgEKUc8yNubt1NzabU6eQWYjRxno": [ + { + "amount": "88.115199149", + "slot": { + "period": 103938, + "thread": 18 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 236391, + "thread": 23 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 465658, + "thread": 14 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 557564, + "thread": 7 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 772604, + "thread": 2 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 902158, + "thread": 31 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1084762, + "thread": 5 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1289892, + "thread": 28 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1425700, + "thread": 1 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1523678, + "thread": 30 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1707010, + "thread": 4 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 1827685, + "thread": 26 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2095345, + "thread": 3 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2153994, + "thread": 31 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2377578, + "thread": 5 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2556652, + "thread": 29 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2675462, + "thread": 16 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 2829918, + "thread": 3 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 3067793, + "thread": 8 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 3175060, + "thread": 26 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 3375442, + "thread": 21 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 3615556, + "thread": 8 + } + }, + { + "amount": "88.115199149", + "slot": { + "period": 3746883, + "thread": 22 + } + }, + { + "amount": "88.115199148", + "slot": { + "period": 3780733, + "thread": 31 + } + } + ], + "AU12vpEsqf8JaxvCAEZgPwjteiZKFttda1iW6jH5zHzW1RXYSU7k3": [ + { + "amount": "235.656747394", + "slot": { + "period": 108200, + "thread": 27 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 216855, + "thread": 0 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 410812, + "thread": 6 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 541659, + "thread": 18 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 755547, + "thread": 3 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 889148, + "thread": 31 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 986468, + "thread": 2 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 1187206, + "thread": 12 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 1347926, + "thread": 12 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 1629132, + "thread": 9 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 1722245, + "thread": 17 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 1956378, + "thread": 17 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2007521, + "thread": 14 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2283715, + "thread": 24 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2379869, + "thread": 28 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2558195, + "thread": 21 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2639685, + "thread": 2 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2938771, + "thread": 17 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 2993550, + "thread": 11 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 3176638, + "thread": 26 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 3424183, + "thread": 17 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 3532805, + "thread": 7 + } + }, + { + "amount": "235.656747394", + "slot": { + "period": 3628030, + "thread": 17 + } + }, + { + "amount": "235.656747391", + "slot": { + "period": 3871722, + "thread": 13 + } + } + ], + "AU12vpcUvByK2TV5VWsJ2xQ2T5qM9GYUYMn7ojsJNZBQrekbZp4f": [ + { + "amount": "528.780632539", + "slot": { + "period": 51636, + "thread": 20 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 302198, + "thread": 4 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 331977, + "thread": 11 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 603739, + "thread": 30 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 696420, + "thread": 30 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 839107, + "thread": 24 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1107568, + "thread": 10 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1176247, + "thread": 31 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1401681, + "thread": 24 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1481984, + "thread": 23 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1739510, + "thread": 21 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 1882711, + "thread": 15 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2085071, + "thread": 18 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2272278, + "thread": 4 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2459324, + "thread": 4 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2595511, + "thread": 17 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2680466, + "thread": 17 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 2921529, + "thread": 13 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 3112275, + "thread": 29 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 3213715, + "thread": 12 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 3385430, + "thread": 12 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 3603601, + "thread": 16 + } + }, + { + "amount": "528.780632539", + "slot": { + "period": 3687156, + "thread": 25 + } + }, + { + "amount": "528.780632534", + "slot": { + "period": 3914762, + "thread": 9 + } + } + ], + "AU12vqf6jRGgZizHQKjTNNogttygfpRnab4qchFp2dWLExrqVHs3z": [ + { + "amount": "173.037464373", + "slot": { + "period": 66892, + "thread": 18 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 173371, + "thread": 17 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 324608, + "thread": 11 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 543161, + "thread": 31 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 786873, + "thread": 19 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 939807, + "thread": 15 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 985226, + "thread": 31 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 1204654, + "thread": 24 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 1441889, + "thread": 11 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 1628784, + "thread": 22 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 1650641, + "thread": 28 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 1840743, + "thread": 7 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2067705, + "thread": 10 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2222202, + "thread": 9 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2448079, + "thread": 22 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2528096, + "thread": 8 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2753547, + "thread": 26 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2942219, + "thread": 26 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 2961795, + "thread": 18 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 3176926, + "thread": 24 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 3337235, + "thread": 9 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 3579954, + "thread": 31 + } + }, + { + "amount": "173.037464373", + "slot": { + "period": 3672494, + "thread": 21 + } + }, + { + "amount": "173.037464372", + "slot": { + "period": 3804462, + "thread": 9 + } + } + ], + "AU12vqyanTN15eadajcLzbehC978f4tqFctE5pMMk9iEMUtq6jtMC": [ + { + "amount": "144.649695947", + "slot": { + "period": 36020, + "thread": 24 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 243298, + "thread": 12 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 328915, + "thread": 18 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 543818, + "thread": 5 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 733121, + "thread": 17 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 850292, + "thread": 7 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1138190, + "thread": 19 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1312771, + "thread": 26 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1358569, + "thread": 19 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1494227, + "thread": 25 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1686866, + "thread": 26 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1835401, + "thread": 8 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 1999945, + "thread": 29 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 2180007, + "thread": 12 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 2373443, + "thread": 16 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 2618994, + "thread": 31 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 2780183, + "thread": 0 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 2835792, + "thread": 6 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 3072933, + "thread": 10 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 3233541, + "thread": 0 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 3433247, + "thread": 28 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 3505673, + "thread": 7 + } + }, + { + "amount": "144.649695947", + "slot": { + "period": 3635853, + "thread": 26 + } + }, + { + "amount": "144.649695948", + "slot": { + "period": 3800316, + "thread": 30 + } + } + ], + "AU12vr4CEcRj175zGt34ynuuf9sTQvSnCWPgJbhvVapjtaaanvqaj": [ + { + "amount": "497.989863600", + "slot": { + "period": 24221, + "thread": 18 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 279616, + "thread": 28 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 366731, + "thread": 4 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 508537, + "thread": 9 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 731694, + "thread": 8 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 858680, + "thread": 5 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1080136, + "thread": 19 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1166958, + "thread": 15 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1416165, + "thread": 7 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1561106, + "thread": 9 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1806510, + "thread": 23 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 1855569, + "thread": 10 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2044619, + "thread": 3 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2260814, + "thread": 17 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2442812, + "thread": 21 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2480919, + "thread": 30 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2700055, + "thread": 18 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2951761, + "thread": 10 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 2964777, + "thread": 18 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 3189568, + "thread": 8 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 3378700, + "thread": 16 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 3464431, + "thread": 19 + } + }, + { + "amount": "497.989863600", + "slot": { + "period": 3622828, + "thread": 12 + } + }, + { + "amount": "497.989863590", + "slot": { + "period": 3934468, + "thread": 10 + } + } + ], + "AU12vrbbvKHqvSzHRTRNYGyVqZyavcggJddanTvyH1sASA4i7m2as": [ + { + "amount": "367.244242723", + "slot": { + "period": 91804, + "thread": 17 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 213831, + "thread": 10 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 352443, + "thread": 23 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 562564, + "thread": 0 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 696900, + "thread": 13 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 962173, + "thread": 3 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1106081, + "thread": 12 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1190247, + "thread": 7 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1350109, + "thread": 17 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1621593, + "thread": 24 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1714513, + "thread": 18 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 1925851, + "thread": 31 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2063547, + "thread": 16 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2217925, + "thread": 8 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2446914, + "thread": 16 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2560646, + "thread": 20 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2737262, + "thread": 8 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 2794174, + "thread": 6 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 3038980, + "thread": 21 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 3219942, + "thread": 28 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 3348812, + "thread": 18 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 3476267, + "thread": 11 + } + }, + { + "amount": "367.244242723", + "slot": { + "period": 3632571, + "thread": 14 + } + }, + { + "amount": "367.244242724", + "slot": { + "period": 3907099, + "thread": 23 + } + } + ], + "AU12vrt99f3DZKMk2UimpyTNz3Z2wd7oBobEC36vS41kJwjyanKk": [ + { + "amount": "86.027356586", + "slot": { + "period": 123690, + "thread": 14 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 227639, + "thread": 4 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 333097, + "thread": 13 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 570243, + "thread": 9 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 722635, + "thread": 11 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 946584, + "thread": 10 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1032040, + "thread": 29 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1175383, + "thread": 31 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1405945, + "thread": 15 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1627244, + "thread": 24 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1799707, + "thread": 22 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 1909283, + "thread": 19 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2125604, + "thread": 1 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2151156, + "thread": 4 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2451353, + "thread": 4 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2622437, + "thread": 17 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2635626, + "thread": 4 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 2845683, + "thread": 17 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 3118057, + "thread": 16 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 3270475, + "thread": 0 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 3289581, + "thread": 29 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 3511533, + "thread": 11 + } + }, + { + "amount": "86.027356586", + "slot": { + "period": 3768659, + "thread": 14 + } + }, + { + "amount": "86.027356597", + "slot": { + "period": 3818332, + "thread": 1 + } + } + ], + "AU12vs5zVLMg1oJJatG6im2VoYFqigt8cPA89GaR3oPDTEK7mHNmB": [ + { + "amount": "54.194054104", + "slot": { + "period": 11301, + "thread": 11 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 206643, + "thread": 25 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 470432, + "thread": 16 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 504384, + "thread": 9 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 717585, + "thread": 29 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 873210, + "thread": 15 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1008759, + "thread": 10 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1162315, + "thread": 11 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1476935, + "thread": 26 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1529996, + "thread": 0 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1674073, + "thread": 19 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1835579, + "thread": 2 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 1991912, + "thread": 0 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 2233480, + "thread": 7 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 2371621, + "thread": 23 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 2591329, + "thread": 20 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 2639826, + "thread": 15 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 2809962, + "thread": 14 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 3009644, + "thread": 29 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 3165941, + "thread": 7 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 3363107, + "thread": 26 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 3470717, + "thread": 8 + } + }, + { + "amount": "54.194054104", + "slot": { + "period": 3730270, + "thread": 15 + } + }, + { + "amount": "54.194054102", + "slot": { + "period": 3946355, + "thread": 31 + } + } + ], + "AU12vsMPRXnzE15gjTLPyz4EzpznokQizqBmTsZWBVag3L1Ay7WrX": [ + { + "amount": "562.588076847", + "slot": { + "period": 93158, + "thread": 10 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 266466, + "thread": 15 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 411339, + "thread": 23 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 564178, + "thread": 2 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 682424, + "thread": 30 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 848896, + "thread": 16 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1005522, + "thread": 24 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1195029, + "thread": 28 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1384185, + "thread": 3 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1617445, + "thread": 26 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1790092, + "thread": 27 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 1869130, + "thread": 9 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2104381, + "thread": 9 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2180169, + "thread": 14 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2346713, + "thread": 0 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2622202, + "thread": 2 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2704773, + "thread": 12 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 2809756, + "thread": 3 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 3050157, + "thread": 19 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 3257278, + "thread": 9 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 3444008, + "thread": 17 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 3466334, + "thread": 31 + } + }, + { + "amount": "562.588076847", + "slot": { + "period": 3767045, + "thread": 7 + } + }, + { + "amount": "562.588076840", + "slot": { + "period": 3802408, + "thread": 11 + } + } + ], + "AU12vts5fKLMr1vkc6kyJx1KnmNy4NA9Dv3Lsa9KSb3f4gk8pAiVF": [ + { + "amount": "221.937997572", + "slot": { + "period": 10818, + "thread": 1 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 178746, + "thread": 24 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 363238, + "thread": 20 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 567571, + "thread": 10 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 758070, + "thread": 12 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 919909, + "thread": 0 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1119439, + "thread": 27 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1233681, + "thread": 11 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1337095, + "thread": 22 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1630022, + "thread": 6 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1681554, + "thread": 23 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1935780, + "thread": 20 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 1979462, + "thread": 10 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2231913, + "thread": 23 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2330520, + "thread": 18 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2585315, + "thread": 8 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2695751, + "thread": 23 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2838975, + "thread": 22 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 2997610, + "thread": 23 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 3252099, + "thread": 22 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 3340963, + "thread": 9 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 3491798, + "thread": 7 + } + }, + { + "amount": "221.937997572", + "slot": { + "period": 3731976, + "thread": 20 + } + }, + { + "amount": "221.937997571", + "slot": { + "period": 3848103, + "thread": 16 + } + } + ], + "AU12vttAQ4ZDEUT6WsFBkm4ZrYtjrC1edTd9jXzS6wnw14fBFXK8Q": [ + { + "amount": "128.542556207", + "slot": { + "period": 78537, + "thread": 18 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 187523, + "thread": 25 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 485700, + "thread": 18 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 586483, + "thread": 18 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 733084, + "thread": 24 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 838588, + "thread": 0 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1122443, + "thread": 13 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1286813, + "thread": 11 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1397108, + "thread": 21 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1618180, + "thread": 3 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1753310, + "thread": 11 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 1854799, + "thread": 17 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2121768, + "thread": 24 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2257642, + "thread": 23 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2391747, + "thread": 3 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2603867, + "thread": 11 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2642829, + "thread": 29 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 2813461, + "thread": 13 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 3044200, + "thread": 4 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 3131403, + "thread": 1 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 3376087, + "thread": 0 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 3591650, + "thread": 20 + } + }, + { + "amount": "128.542556207", + "slot": { + "period": 3732407, + "thread": 0 + } + }, + { + "amount": "128.542556218", + "slot": { + "period": 3929615, + "thread": 11 + } + } + ], + "AU12vtvgX4gLHsV2EkaXY2FZA3FD6KrRFaRoTvgQtUQuupfxga8nJ": [ + { + "amount": "188.672550423", + "slot": { + "period": 128109, + "thread": 16 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 266343, + "thread": 20 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 381170, + "thread": 15 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 496781, + "thread": 19 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 727119, + "thread": 1 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 836307, + "thread": 4 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1032923, + "thread": 31 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1262401, + "thread": 5 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1337857, + "thread": 11 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1642426, + "thread": 20 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1655867, + "thread": 10 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 1831151, + "thread": 14 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2023207, + "thread": 30 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2186157, + "thread": 12 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2334736, + "thread": 4 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2498809, + "thread": 27 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2721939, + "thread": 12 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 2841958, + "thread": 7 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 3036898, + "thread": 0 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 3175266, + "thread": 15 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 3374155, + "thread": 31 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 3511068, + "thread": 7 + } + }, + { + "amount": "188.672550423", + "slot": { + "period": 3637990, + "thread": 4 + } + }, + { + "amount": "188.672550412", + "slot": { + "period": 3809741, + "thread": 21 + } + } + ], + "AU12vuGW56hr3eJa9qUa9uxwxuT5ZUdLWPJQ4sXdhtDwrfp5LZxmb": [ + { + "amount": "89.983050179", + "slot": { + "period": 101838, + "thread": 5 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 261426, + "thread": 3 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 485846, + "thread": 12 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 591830, + "thread": 19 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 707990, + "thread": 20 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 962589, + "thread": 22 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1060642, + "thread": 5 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1285606, + "thread": 30 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1436626, + "thread": 22 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1583011, + "thread": 26 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1664357, + "thread": 10 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 1975036, + "thread": 8 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2087100, + "thread": 16 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2262300, + "thread": 12 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2354250, + "thread": 9 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2578344, + "thread": 17 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2724037, + "thread": 4 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 2832368, + "thread": 12 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 3051757, + "thread": 23 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 3237556, + "thread": 1 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 3374583, + "thread": 29 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 3593492, + "thread": 2 + } + }, + { + "amount": "89.983050179", + "slot": { + "period": 3679737, + "thread": 1 + } + }, + { + "amount": "89.983050184", + "slot": { + "period": 3782593, + "thread": 12 + } + } + ], + "AU12vuknSRqT77z4gSoUreeqiz8zM6Zzg6VgmxqTVYhJTY7rtt9Mb": [ + { + "amount": "83.162489499", + "slot": { + "period": 76108, + "thread": 17 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 195537, + "thread": 31 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 414211, + "thread": 25 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 593688, + "thread": 16 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 757486, + "thread": 15 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 877429, + "thread": 21 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1117514, + "thread": 3 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1298848, + "thread": 23 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1448751, + "thread": 27 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1629660, + "thread": 2 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1741241, + "thread": 3 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 1823736, + "thread": 19 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2109870, + "thread": 8 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2276788, + "thread": 31 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2426179, + "thread": 7 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2484579, + "thread": 0 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2671230, + "thread": 20 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 2869724, + "thread": 13 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 3082187, + "thread": 30 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 3208595, + "thread": 29 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 3398185, + "thread": 1 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 3576847, + "thread": 10 + } + }, + { + "amount": "83.162489499", + "slot": { + "period": 3716899, + "thread": 0 + } + }, + { + "amount": "83.162489507", + "slot": { + "period": 3906476, + "thread": 0 + } + } + ], + "AU12vv8ykFsZo2QHaLvRAWuSDLt8DA8f2AsdzW3zC1v1DVk8wxkSe": [ + { + "amount": "242.132727523", + "slot": { + "period": 135781, + "thread": 3 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 290477, + "thread": 30 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 478161, + "thread": 10 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 632718, + "thread": 20 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 802723, + "thread": 18 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 915645, + "thread": 29 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 989465, + "thread": 24 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 1248557, + "thread": 4 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 1411829, + "thread": 5 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 1481541, + "thread": 17 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 1766684, + "thread": 30 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 1880745, + "thread": 19 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2029387, + "thread": 19 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2289250, + "thread": 21 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2304899, + "thread": 26 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2598212, + "thread": 30 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2646010, + "thread": 13 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2864152, + "thread": 9 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 2955648, + "thread": 14 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 3121884, + "thread": 3 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 3392546, + "thread": 3 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 3488820, + "thread": 4 + } + }, + { + "amount": "242.132727523", + "slot": { + "period": 3691756, + "thread": 20 + } + }, + { + "amount": "242.132727521", + "slot": { + "period": 3825251, + "thread": 15 + } + } + ], + "AU12vvsg6EL6RgH1GT7deMQYGmtUATq8STEHkYhTBTLMMGuBPeVt4": [ + { + "amount": "115.399968641", + "slot": { + "period": 16728, + "thread": 26 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 268569, + "thread": 24 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 460232, + "thread": 20 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 576729, + "thread": 3 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 720127, + "thread": 6 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 854299, + "thread": 8 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1053472, + "thread": 19 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1269586, + "thread": 13 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1407582, + "thread": 1 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1644463, + "thread": 25 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1808194, + "thread": 22 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 1865842, + "thread": 1 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2000037, + "thread": 28 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2230934, + "thread": 8 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2315289, + "thread": 4 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2563377, + "thread": 21 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2656081, + "thread": 27 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 2898673, + "thread": 29 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 3066756, + "thread": 21 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 3235935, + "thread": 15 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 3299802, + "thread": 21 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 3589465, + "thread": 14 + } + }, + { + "amount": "115.399968641", + "slot": { + "period": 3644909, + "thread": 4 + } + }, + { + "amount": "115.399968651", + "slot": { + "period": 3924505, + "thread": 30 + } + } + ], + "AU12vwJMv5qDfhD5PoLvz76uRUDLgSsGkV8j4cgT77uYFheDFwNXT": [ + { + "amount": "687.939738038", + "slot": { + "period": 114915, + "thread": 14 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 253744, + "thread": 2 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 440830, + "thread": 31 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 571698, + "thread": 1 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 768963, + "thread": 30 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 963413, + "thread": 12 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1091520, + "thread": 8 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1288815, + "thread": 1 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1477957, + "thread": 14 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1528298, + "thread": 15 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1670290, + "thread": 21 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 1880104, + "thread": 5 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2015554, + "thread": 25 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2226625, + "thread": 2 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2328469, + "thread": 11 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2603533, + "thread": 0 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2653681, + "thread": 8 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 2906735, + "thread": 30 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 3011875, + "thread": 17 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 3284536, + "thread": 20 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 3408217, + "thread": 31 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 3496614, + "thread": 27 + } + }, + { + "amount": "687.939738038", + "slot": { + "period": 3715236, + "thread": 29 + } + }, + { + "amount": "687.939738032", + "slot": { + "period": 3866590, + "thread": 19 + } + } + ], + "AU12vxRwsugJ5agXv5x8UBd9y2SQopmARZftJcdx81STcwsRuMSAE": [ + { + "amount": "120.211813479", + "slot": { + "period": 47932, + "thread": 4 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 252552, + "thread": 20 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 381409, + "thread": 0 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 603125, + "thread": 26 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 677705, + "thread": 9 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 901793, + "thread": 26 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1111185, + "thread": 7 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1283049, + "thread": 24 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1335363, + "thread": 15 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1547326, + "thread": 2 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1784622, + "thread": 23 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 1833562, + "thread": 20 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2100559, + "thread": 4 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2270360, + "thread": 29 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2390004, + "thread": 22 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2563057, + "thread": 17 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2784733, + "thread": 8 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2949441, + "thread": 14 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 2986439, + "thread": 29 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 3252755, + "thread": 20 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 3309623, + "thread": 28 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 3574455, + "thread": 31 + } + }, + { + "amount": "120.211813479", + "slot": { + "period": 3658809, + "thread": 1 + } + }, + { + "amount": "120.211813471", + "slot": { + "period": 3824890, + "thread": 31 + } + } + ], + "AU12vxSL8E5ePUb9KAY5g1zRLjQsBYF3Mt7EqRm6VbssfMvR2qMHP": [ + { + "amount": "189.365151843", + "slot": { + "period": 39091, + "thread": 18 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 256084, + "thread": 9 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 452269, + "thread": 7 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 567003, + "thread": 11 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 660134, + "thread": 3 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 982551, + "thread": 0 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1122549, + "thread": 24 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1280695, + "thread": 6 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1477003, + "thread": 21 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1639295, + "thread": 3 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1806512, + "thread": 23 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 1906298, + "thread": 19 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2134041, + "thread": 31 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2154878, + "thread": 8 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2309434, + "thread": 22 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2559490, + "thread": 19 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2696922, + "thread": 18 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 2823142, + "thread": 11 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 3036973, + "thread": 15 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 3238448, + "thread": 26 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 3431795, + "thread": 15 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 3536368, + "thread": 3 + } + }, + { + "amount": "189.365151843", + "slot": { + "period": 3689818, + "thread": 14 + } + }, + { + "amount": "189.365151834", + "slot": { + "period": 3880825, + "thread": 0 + } + } + ], + "AU12vxrbD4YAvuLhgk5fq7ovhkCk63SqvAvxjwqZtrFDzbzssBRA6": [ + { + "amount": "471.003409890", + "slot": { + "period": 141487, + "thread": 12 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 231998, + "thread": 3 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 374078, + "thread": 25 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 616053, + "thread": 10 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 719756, + "thread": 0 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 857052, + "thread": 28 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1034067, + "thread": 24 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1281609, + "thread": 29 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1422303, + "thread": 1 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1645807, + "thread": 11 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1715846, + "thread": 27 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 1859788, + "thread": 14 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2141748, + "thread": 20 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2294038, + "thread": 12 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2412881, + "thread": 17 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2467010, + "thread": 23 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2772611, + "thread": 21 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 2877488, + "thread": 16 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 3054349, + "thread": 20 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 3199673, + "thread": 4 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 3450352, + "thread": 8 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 3518097, + "thread": 11 + } + }, + { + "amount": "471.003409890", + "slot": { + "period": 3751506, + "thread": 23 + } + }, + { + "amount": "471.003409885", + "slot": { + "period": 3918348, + "thread": 7 + } + } + ], + "AU12vyL2dA8Z42W8rxHLHf6EpZyzDR3gPHyAk9adoRbXTnDTKTTqE": [ + { + "amount": "233.505866752", + "slot": { + "period": 86383, + "thread": 24 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 216352, + "thread": 14 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 429250, + "thread": 12 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 511582, + "thread": 5 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 670195, + "thread": 24 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 848886, + "thread": 2 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1056649, + "thread": 15 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1241551, + "thread": 13 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1342458, + "thread": 26 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1577465, + "thread": 29 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1722758, + "thread": 8 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 1894079, + "thread": 9 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2108785, + "thread": 29 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2150126, + "thread": 13 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2411471, + "thread": 3 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2509894, + "thread": 28 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2741700, + "thread": 13 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2919887, + "thread": 28 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 2971205, + "thread": 30 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 3252268, + "thread": 17 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 3344842, + "thread": 8 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 3591247, + "thread": 9 + } + }, + { + "amount": "233.505866752", + "slot": { + "period": 3710738, + "thread": 9 + } + }, + { + "amount": "233.505866759", + "slot": { + "period": 3826823, + "thread": 5 + } + } + ], + "AU12vyQEREYJc9iYK5rdC8rNNeC1pbGqyhxCGVwMvKg36Stx2YGiM": [ + { + "amount": "298.081778102", + "slot": { + "period": 23335, + "thread": 11 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 209872, + "thread": 5 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 414997, + "thread": 17 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 515468, + "thread": 18 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 676034, + "thread": 0 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 848999, + "thread": 27 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1144671, + "thread": 5 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1172774, + "thread": 16 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1378599, + "thread": 30 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1546516, + "thread": 30 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1743402, + "thread": 29 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 1958580, + "thread": 1 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2071160, + "thread": 25 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2225010, + "thread": 13 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2317721, + "thread": 10 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2560227, + "thread": 20 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2663016, + "thread": 28 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 2826311, + "thread": 20 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 3068009, + "thread": 20 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 3129889, + "thread": 25 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 3381002, + "thread": 20 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 3506532, + "thread": 29 + } + }, + { + "amount": "298.081778102", + "slot": { + "period": 3673004, + "thread": 23 + } + }, + { + "amount": "298.081778092", + "slot": { + "period": 3919722, + "thread": 5 + } + } + ], + "AU12vyXShm4k1ajDPDsh5EdKfbEeZA92ZU5L2bqGuzLqayiyJBV7U": [ + { + "amount": "261.938223971", + "slot": { + "period": 43471, + "thread": 30 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 169283, + "thread": 23 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 433052, + "thread": 7 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 573212, + "thread": 4 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 757766, + "thread": 2 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 922615, + "thread": 27 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1046731, + "thread": 5 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1248624, + "thread": 27 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1343304, + "thread": 16 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1526476, + "thread": 27 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1738635, + "thread": 15 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 1849265, + "thread": 7 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2139150, + "thread": 29 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2177901, + "thread": 12 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2416900, + "thread": 2 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2487988, + "thread": 15 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2667770, + "thread": 31 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2853940, + "thread": 5 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 2966092, + "thread": 27 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 3169750, + "thread": 20 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 3349690, + "thread": 20 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 3615179, + "thread": 30 + } + }, + { + "amount": "261.938223971", + "slot": { + "period": 3779727, + "thread": 23 + } + }, + { + "amount": "261.938223968", + "slot": { + "period": 3910019, + "thread": 25 + } + } + ], + "AU12vyYiVdtnQfpSTfWNsVRHBdsPut9eXC5sa7Edqh9v7cnNDg7an": [ + { + "amount": "485.488554494", + "slot": { + "period": 153634, + "thread": 4 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 189497, + "thread": 31 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 337245, + "thread": 1 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 510840, + "thread": 18 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 807323, + "thread": 9 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 852660, + "thread": 25 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1118181, + "thread": 0 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1219305, + "thread": 6 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1378800, + "thread": 1 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1523755, + "thread": 11 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1733003, + "thread": 17 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 1932960, + "thread": 19 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2098569, + "thread": 4 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2192643, + "thread": 22 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2373136, + "thread": 24 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2560496, + "thread": 7 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2756469, + "thread": 8 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 2805943, + "thread": 29 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 3108613, + "thread": 9 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 3125039, + "thread": 26 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 3343543, + "thread": 0 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 3503373, + "thread": 8 + } + }, + { + "amount": "485.488554494", + "slot": { + "period": 3654337, + "thread": 6 + } + }, + { + "amount": "485.488554499", + "slot": { + "period": 3903960, + "thread": 5 + } + } + ], + "AU12vyYwU1KDoAF2yXVAstb9mZeNui79uoxba9gvALPVqPvpLjKkZ": [ + { + "amount": "132.490920727", + "slot": { + "period": 116876, + "thread": 2 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 301864, + "thread": 11 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 435553, + "thread": 20 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 552292, + "thread": 12 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 682397, + "thread": 13 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 918400, + "thread": 21 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1034807, + "thread": 23 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1196938, + "thread": 10 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1359849, + "thread": 30 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1576356, + "thread": 3 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1701990, + "thread": 30 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 1886821, + "thread": 15 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2015602, + "thread": 7 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2224006, + "thread": 22 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2305058, + "thread": 28 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2471878, + "thread": 14 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2753459, + "thread": 0 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 2815348, + "thread": 14 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 3014252, + "thread": 23 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 3200069, + "thread": 12 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 3434019, + "thread": 2 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 3611716, + "thread": 0 + } + }, + { + "amount": "132.490920727", + "slot": { + "period": 3775934, + "thread": 14 + } + }, + { + "amount": "132.490920730", + "slot": { + "period": 3821454, + "thread": 2 + } + } + ], + "AU12vys8dQGE3BSr5jEUSUoEXXzbLPruxr7ngSfP75zDUTrwS6jEg": [ + { + "amount": "386.379684427", + "slot": { + "period": 40389, + "thread": 18 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 174575, + "thread": 15 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 426406, + "thread": 18 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 645447, + "thread": 9 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 790301, + "thread": 10 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 920342, + "thread": 15 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1016134, + "thread": 12 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1185835, + "thread": 10 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1353940, + "thread": 23 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1621018, + "thread": 19 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1762948, + "thread": 14 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 1860992, + "thread": 0 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2075470, + "thread": 25 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2185784, + "thread": 31 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2397694, + "thread": 9 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2568015, + "thread": 4 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2680369, + "thread": 6 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 2950661, + "thread": 8 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 3018004, + "thread": 10 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 3262746, + "thread": 30 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 3444240, + "thread": 9 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 3500372, + "thread": 4 + } + }, + { + "amount": "386.379684427", + "slot": { + "period": 3759451, + "thread": 7 + } + }, + { + "amount": "386.379684421", + "slot": { + "period": 3941961, + "thread": 28 + } + } + ], + "AU12w1L5bK3DD89JH2LMb1goqxP946SEgdF4aKtQVYaz9WBvxGT8E": [ + { + "amount": "179.363758240", + "slot": { + "period": 112610, + "thread": 10 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 206941, + "thread": 18 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 467855, + "thread": 19 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 584635, + "thread": 25 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 785386, + "thread": 15 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 969717, + "thread": 19 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1029375, + "thread": 10 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1305199, + "thread": 5 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1393179, + "thread": 28 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1530435, + "thread": 21 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1773724, + "thread": 9 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 1844355, + "thread": 12 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2028679, + "thread": 10 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2231869, + "thread": 26 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2422408, + "thread": 18 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2506876, + "thread": 5 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2735494, + "thread": 28 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 2879483, + "thread": 23 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 3033576, + "thread": 31 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 3277801, + "thread": 26 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 3328231, + "thread": 13 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 3525602, + "thread": 8 + } + }, + { + "amount": "179.363758240", + "slot": { + "period": 3751210, + "thread": 9 + } + }, + { + "amount": "179.363758252", + "slot": { + "period": 3845151, + "thread": 15 + } + } + ], + "AU12w27rpQU7N3X6BNvQcqEXpDCw6nxN9mauk291szpjCmUqbzP3L": [ + { + "amount": "56.766812319", + "slot": { + "period": 86205, + "thread": 11 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 237106, + "thread": 28 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 328252, + "thread": 30 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 576919, + "thread": 28 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 739380, + "thread": 28 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 978983, + "thread": 4 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1026391, + "thread": 7 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1301314, + "thread": 17 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1434828, + "thread": 2 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1571373, + "thread": 24 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1674436, + "thread": 2 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 1968547, + "thread": 12 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2081552, + "thread": 5 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2229734, + "thread": 4 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2375151, + "thread": 13 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2525354, + "thread": 15 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2695007, + "thread": 8 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 2855759, + "thread": 13 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 3012901, + "thread": 14 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 3192336, + "thread": 30 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 3417877, + "thread": 3 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 3480428, + "thread": 17 + } + }, + { + "amount": "56.766812319", + "slot": { + "period": 3691346, + "thread": 15 + } + }, + { + "amount": "56.766812318", + "slot": { + "period": 3921046, + "thread": 20 + } + } + ], + "AU12w2EmKbpg9uZExmkij592JzAAc3ysvaDMazg5Dfc25swNTHWAm": [ + { + "amount": "212.833303136", + "slot": { + "period": 71585, + "thread": 14 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 282972, + "thread": 7 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 468595, + "thread": 27 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 506182, + "thread": 19 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 700444, + "thread": 6 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 897428, + "thread": 21 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1097284, + "thread": 10 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1209079, + "thread": 19 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1346293, + "thread": 18 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1513131, + "thread": 31 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1763883, + "thread": 2 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 1877123, + "thread": 27 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2095730, + "thread": 28 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2192975, + "thread": 20 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2425381, + "thread": 7 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2619124, + "thread": 23 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2703122, + "thread": 11 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 2875955, + "thread": 3 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 3006740, + "thread": 16 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 3196968, + "thread": 31 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 3337880, + "thread": 9 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 3459232, + "thread": 12 + } + }, + { + "amount": "212.833303136", + "slot": { + "period": 3661452, + "thread": 29 + } + }, + { + "amount": "212.833303144", + "slot": { + "period": 3838033, + "thread": 5 + } + } + ], + "AU12w2ZoWebLgqtdcyhNZrsaRtDTFiYM5157kDvNgPCd6MQ9x6629": [ + { + "amount": "375.002175715", + "slot": { + "period": 108199, + "thread": 20 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 255038, + "thread": 10 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 362840, + "thread": 29 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 648508, + "thread": 16 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 812409, + "thread": 13 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 926827, + "thread": 26 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 994159, + "thread": 11 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 1254522, + "thread": 8 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 1338039, + "thread": 13 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 1488680, + "thread": 31 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 1760400, + "thread": 9 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 1815199, + "thread": 24 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2085446, + "thread": 28 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2271979, + "thread": 12 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2324084, + "thread": 0 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2472922, + "thread": 20 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2785284, + "thread": 25 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 2933983, + "thread": 26 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 3071827, + "thread": 1 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 3209471, + "thread": 13 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 3337312, + "thread": 30 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 3582459, + "thread": 1 + } + }, + { + "amount": "375.002175715", + "slot": { + "period": 3691287, + "thread": 0 + } + }, + { + "amount": "375.002175714", + "slot": { + "period": 3925305, + "thread": 24 + } + } + ], + "AU12w2uUGnbGavSyM28xYZh1U3YCXJHvcf7DhqbxJzMGT89HRq8Sn": [ + { + "amount": "162.998918539", + "slot": { + "period": 122960, + "thread": 13 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 209220, + "thread": 21 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 456663, + "thread": 2 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 601350, + "thread": 2 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 664825, + "thread": 18 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 976959, + "thread": 27 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1051616, + "thread": 16 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1226799, + "thread": 28 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1375539, + "thread": 1 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1617923, + "thread": 20 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1684469, + "thread": 17 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1966349, + "thread": 17 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 1992830, + "thread": 31 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2216182, + "thread": 3 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2444323, + "thread": 29 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2515205, + "thread": 15 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2700331, + "thread": 15 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2953772, + "thread": 24 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 2994080, + "thread": 31 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 3189072, + "thread": 7 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 3294602, + "thread": 25 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 3460008, + "thread": 28 + } + }, + { + "amount": "162.998918539", + "slot": { + "period": 3657239, + "thread": 16 + } + }, + { + "amount": "162.998918536", + "slot": { + "period": 3892338, + "thread": 28 + } + } + ], + "AU12w4LkSqFb3VV3PC9yeCfFznsP8WU71yqAF8kqCSaZxaKFjt165": [ + { + "amount": "83.363969439", + "slot": { + "period": 39636, + "thread": 2 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 185501, + "thread": 13 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 483704, + "thread": 30 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 531487, + "thread": 29 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 797751, + "thread": 6 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 904566, + "thread": 25 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1086100, + "thread": 6 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1286125, + "thread": 11 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1464028, + "thread": 18 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1587761, + "thread": 19 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1745198, + "thread": 15 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 1903057, + "thread": 29 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2075660, + "thread": 6 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2239664, + "thread": 13 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2455644, + "thread": 7 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2545326, + "thread": 27 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2769365, + "thread": 23 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 2816886, + "thread": 17 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 3033326, + "thread": 26 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 3133485, + "thread": 3 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 3339815, + "thread": 27 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 3521703, + "thread": 5 + } + }, + { + "amount": "83.363969439", + "slot": { + "period": 3767876, + "thread": 30 + } + }, + { + "amount": "83.363969450", + "slot": { + "period": 3834291, + "thread": 27 + } + } + ], + "AU12w5LnuqcLiR1gVec3hW1qohmwkjAEBPZTXq8rFLHwVrQtFsi82": [ + { + "amount": "57.892823815", + "slot": { + "period": 118597, + "thread": 19 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 222571, + "thread": 10 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 336981, + "thread": 26 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 508621, + "thread": 15 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 662940, + "thread": 25 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 929262, + "thread": 16 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1033494, + "thread": 16 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1311924, + "thread": 18 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1429101, + "thread": 25 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1599645, + "thread": 31 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1772266, + "thread": 5 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 1878665, + "thread": 23 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2110030, + "thread": 10 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2209358, + "thread": 11 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2364283, + "thread": 27 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2508124, + "thread": 11 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2626360, + "thread": 18 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 2840619, + "thread": 11 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 3112030, + "thread": 0 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 3252259, + "thread": 25 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 3368196, + "thread": 2 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 3586292, + "thread": 31 + } + }, + { + "amount": "57.892823815", + "slot": { + "period": 3662254, + "thread": 21 + } + }, + { + "amount": "57.892823807", + "slot": { + "period": 3942797, + "thread": 24 + } + } + ], + "AU12w5XoNMnDPik26eNAQmZC3azFuaetknTuvCwp6BzMYuoauWbFL": [ + { + "amount": "147.772119841", + "slot": { + "period": 134222, + "thread": 21 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 230661, + "thread": 15 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 375399, + "thread": 9 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 561922, + "thread": 24 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 698029, + "thread": 15 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 911090, + "thread": 22 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1063324, + "thread": 6 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1223097, + "thread": 2 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1408358, + "thread": 10 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1560699, + "thread": 12 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1690969, + "thread": 21 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 1874327, + "thread": 24 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2141757, + "thread": 6 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2294930, + "thread": 2 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2454422, + "thread": 29 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2467938, + "thread": 4 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2703864, + "thread": 20 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 2933136, + "thread": 20 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 3038384, + "thread": 17 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 3186171, + "thread": 23 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 3357563, + "thread": 21 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 3538887, + "thread": 2 + } + }, + { + "amount": "147.772119841", + "slot": { + "period": 3702335, + "thread": 18 + } + }, + { + "amount": "147.772119847", + "slot": { + "period": 3824853, + "thread": 9 + } + } + ], + "AU12w6SV2wNd5Ag5iK9hpbbnBoUwh4BWbdhAhp3wDhCH7tWg3c8Mp": [ + { + "amount": "89.444710393", + "slot": { + "period": 70991, + "thread": 20 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 304705, + "thread": 19 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 351088, + "thread": 28 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 544334, + "thread": 23 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 671140, + "thread": 26 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 909216, + "thread": 3 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1058290, + "thread": 13 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1240582, + "thread": 31 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1326833, + "thread": 16 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1610434, + "thread": 6 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1794386, + "thread": 12 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 1867523, + "thread": 16 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2129964, + "thread": 15 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2266524, + "thread": 23 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2395277, + "thread": 26 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2596569, + "thread": 0 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2679498, + "thread": 19 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 2854877, + "thread": 3 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3109390, + "thread": 8 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3208852, + "thread": 13 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3419678, + "thread": 6 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3506601, + "thread": 1 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3768053, + "thread": 11 + } + }, + { + "amount": "89.444710393", + "slot": { + "period": 3804780, + "thread": 27 + } + } + ], + "AU12w6TxPYj5x1mQzidkAEvaiTswKLthg5C65hXbRnJcWvto49XwM": [ + { + "amount": "53.271894689", + "slot": { + "period": 21981, + "thread": 12 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 264122, + "thread": 21 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 381522, + "thread": 15 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 599385, + "thread": 20 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 666448, + "thread": 30 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 884546, + "thread": 11 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1058929, + "thread": 0 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1314466, + "thread": 11 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1334574, + "thread": 27 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1509281, + "thread": 8 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1734089, + "thread": 31 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1835194, + "thread": 19 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 1994655, + "thread": 29 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2162889, + "thread": 21 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2442184, + "thread": 6 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2497468, + "thread": 10 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2716931, + "thread": 14 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2810519, + "thread": 9 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 2964295, + "thread": 16 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 3165715, + "thread": 22 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 3330117, + "thread": 31 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 3457100, + "thread": 31 + } + }, + { + "amount": "53.271894689", + "slot": { + "period": 3752275, + "thread": 1 + } + }, + { + "amount": "53.271894700", + "slot": { + "period": 3851086, + "thread": 6 + } + } + ], + "AU12w7jqU63DPqA8tDtbccdz7BUo7tgPY7QMbDZnHwcxoqadLE4yM": [ + { + "amount": "253.892463958", + "slot": { + "period": 154430, + "thread": 15 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 248261, + "thread": 29 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 472930, + "thread": 14 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 551179, + "thread": 18 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 685027, + "thread": 19 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 978220, + "thread": 26 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1078870, + "thread": 25 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1168959, + "thread": 13 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1403269, + "thread": 8 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1599164, + "thread": 26 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1718227, + "thread": 5 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 1922853, + "thread": 20 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2040429, + "thread": 9 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2254623, + "thread": 29 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2358739, + "thread": 29 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2582210, + "thread": 27 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2749004, + "thread": 29 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 2950004, + "thread": 20 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 3081485, + "thread": 0 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 3177370, + "thread": 2 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 3388547, + "thread": 17 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 3569784, + "thread": 2 + } + }, + { + "amount": "253.892463958", + "slot": { + "period": 3750725, + "thread": 27 + } + }, + { + "amount": "253.892463946", + "slot": { + "period": 3887167, + "thread": 1 + } + } + ], + "AU12w96GsogGHjAEd3JRbDMeJGFvtq9Z47sL19DVm1xmHRzaVvmSw": [ + { + "amount": "311.343711860", + "slot": { + "period": 14183, + "thread": 7 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 202570, + "thread": 9 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 446819, + "thread": 25 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 569138, + "thread": 24 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 708899, + "thread": 21 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 853831, + "thread": 0 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1109695, + "thread": 10 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1220153, + "thread": 17 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1321693, + "thread": 26 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1618566, + "thread": 14 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1744759, + "thread": 11 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 1884278, + "thread": 17 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2027602, + "thread": 23 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2195640, + "thread": 12 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2309849, + "thread": 1 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2622329, + "thread": 13 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2747627, + "thread": 22 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 2934662, + "thread": 0 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 3082443, + "thread": 2 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 3267239, + "thread": 21 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 3315035, + "thread": 3 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 3496714, + "thread": 21 + } + }, + { + "amount": "311.343711860", + "slot": { + "period": 3640854, + "thread": 16 + } + }, + { + "amount": "311.343711850", + "slot": { + "period": 3929168, + "thread": 1 + } + } + ], + "AU12wC5hMQghcy1touxb7XS1MvBSQuhoNb1GdxxEUu9mScijPR742": [ + { + "amount": "236.559591686", + "slot": { + "period": 82288, + "thread": 28 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 284610, + "thread": 14 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 401197, + "thread": 0 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 647505, + "thread": 21 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 731832, + "thread": 5 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 831847, + "thread": 2 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1015278, + "thread": 22 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1247592, + "thread": 0 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1461188, + "thread": 1 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1489296, + "thread": 20 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1758601, + "thread": 24 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1838042, + "thread": 6 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 1988911, + "thread": 21 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 2207228, + "thread": 6 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 2337986, + "thread": 17 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 2498518, + "thread": 30 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 2732433, + "thread": 4 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 2824642, + "thread": 24 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 3048635, + "thread": 26 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 3276658, + "thread": 25 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 3325710, + "thread": 27 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 3532973, + "thread": 7 + } + }, + { + "amount": "236.559591686", + "slot": { + "period": 3702872, + "thread": 4 + } + }, + { + "amount": "236.559591689", + "slot": { + "period": 3836986, + "thread": 5 + } + } + ], + "AU12wC7oA77cRS2XYmY4XPGbQx1EioBnEDJZwusfQBEHMxaRJzKRd": [ + { + "amount": "157.756546439", + "slot": { + "period": 79338, + "thread": 19 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 279118, + "thread": 7 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 357750, + "thread": 12 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 530108, + "thread": 20 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 689594, + "thread": 0 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 878635, + "thread": 16 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1077694, + "thread": 1 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1203697, + "thread": 15 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1361635, + "thread": 20 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1582014, + "thread": 6 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1708494, + "thread": 22 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1924582, + "thread": 11 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 1996520, + "thread": 24 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 2237733, + "thread": 19 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 2392348, + "thread": 12 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 2513360, + "thread": 21 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 2688201, + "thread": 2 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 2820729, + "thread": 22 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 3106805, + "thread": 28 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 3265976, + "thread": 1 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 3364620, + "thread": 16 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 3572426, + "thread": 30 + } + }, + { + "amount": "157.756546439", + "slot": { + "period": 3624936, + "thread": 17 + } + }, + { + "amount": "157.756546443", + "slot": { + "period": 3792984, + "thread": 31 + } + } + ], + "AU12wDwiq1JeEokg6oWtJ14fR8knHHN3AaJHLgdvQTbKzgJG9odE2": [ + { + "amount": "169.165725344", + "slot": { + "period": 149522, + "thread": 6 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 251724, + "thread": 0 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 331723, + "thread": 31 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 628135, + "thread": 20 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 789871, + "thread": 5 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 933383, + "thread": 11 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1138087, + "thread": 18 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1252215, + "thread": 23 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1329720, + "thread": 6 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1555109, + "thread": 27 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1782585, + "thread": 13 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 1941832, + "thread": 14 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2048721, + "thread": 29 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2199179, + "thread": 21 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2364650, + "thread": 13 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2611483, + "thread": 5 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2779430, + "thread": 16 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 2878797, + "thread": 21 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 3015745, + "thread": 3 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 3153811, + "thread": 22 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 3301854, + "thread": 17 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 3544699, + "thread": 12 + } + }, + { + "amount": "169.165725344", + "slot": { + "period": 3721867, + "thread": 11 + } + }, + { + "amount": "169.165725341", + "slot": { + "period": 3801450, + "thread": 31 + } + } + ], + "AU12wE4CAuV6Ww2155k8hLDRaGznMwsDLmWVfRYVZsxDozzNhUXQw": [ + { + "amount": "365.385259510", + "slot": { + "period": 16798, + "thread": 5 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 276836, + "thread": 0 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 389436, + "thread": 6 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 580018, + "thread": 8 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 748823, + "thread": 28 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 882337, + "thread": 0 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1012298, + "thread": 20 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1245653, + "thread": 18 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1445747, + "thread": 5 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1486683, + "thread": 9 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1693240, + "thread": 14 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 1931066, + "thread": 2 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2050246, + "thread": 1 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2263606, + "thread": 0 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2341673, + "thread": 19 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2587092, + "thread": 17 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2745724, + "thread": 30 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 2910859, + "thread": 1 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 3093469, + "thread": 10 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 3231064, + "thread": 24 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 3294791, + "thread": 19 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 3616831, + "thread": 13 + } + }, + { + "amount": "365.385259510", + "slot": { + "period": 3745186, + "thread": 7 + } + }, + { + "amount": "365.385259522", + "slot": { + "period": 3902056, + "thread": 7 + } + } + ], + "AU12wEhsHcpXGvDyd38A8rcYvSKHjUa2XJGi2KoUAB12Pfey2goKS": [ + { + "amount": "132.759137929", + "slot": { + "period": 33047, + "thread": 16 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 194507, + "thread": 10 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 401521, + "thread": 14 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 546976, + "thread": 11 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 674936, + "thread": 9 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 936199, + "thread": 4 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 997031, + "thread": 11 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 1282994, + "thread": 22 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 1385012, + "thread": 19 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 1557539, + "thread": 6 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 1648144, + "thread": 3 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 1818690, + "thread": 5 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2034280, + "thread": 22 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2221713, + "thread": 8 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2346270, + "thread": 19 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2617486, + "thread": 25 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2770168, + "thread": 25 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 2899817, + "thread": 7 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 3011496, + "thread": 12 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 3227278, + "thread": 17 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 3305889, + "thread": 13 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 3525261, + "thread": 12 + } + }, + { + "amount": "132.759137929", + "slot": { + "period": 3757446, + "thread": 19 + } + }, + { + "amount": "132.759137918", + "slot": { + "period": 3860525, + "thread": 5 + } + } + ], + "AU12wFBrq3oG6Jn51ibtqHepKCSypUvoXnWqdZ7PKrBB67Ka8CuDY": [ + { + "amount": "234.059556513", + "slot": { + "period": 40889, + "thread": 7 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 268038, + "thread": 0 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 432738, + "thread": 27 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 500682, + "thread": 5 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 678377, + "thread": 30 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 852613, + "thread": 10 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1033775, + "thread": 22 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1154129, + "thread": 21 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1426998, + "thread": 19 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1603854, + "thread": 30 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1696612, + "thread": 6 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 1867814, + "thread": 31 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2081753, + "thread": 10 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2204763, + "thread": 17 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2363498, + "thread": 4 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2518709, + "thread": 29 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2670006, + "thread": 21 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 2834216, + "thread": 19 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 3103216, + "thread": 2 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 3161099, + "thread": 5 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 3360094, + "thread": 1 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 3585976, + "thread": 9 + } + }, + { + "amount": "234.059556513", + "slot": { + "period": 3696838, + "thread": 28 + } + }, + { + "amount": "234.059556507", + "slot": { + "period": 3836531, + "thread": 1 + } + } + ], + "AU12wFWkifuQkn9MQnasoM2ZHuoPbBah6gfG2AWGnfKR4qaofhcwZ": [ + { + "amount": "577.182354326", + "slot": { + "period": 58526, + "thread": 13 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 319410, + "thread": 3 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 457088, + "thread": 2 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 534433, + "thread": 10 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 794871, + "thread": 23 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 853058, + "thread": 14 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1005196, + "thread": 18 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1238179, + "thread": 1 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1370814, + "thread": 9 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1626875, + "thread": 27 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1770874, + "thread": 16 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 1926086, + "thread": 5 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2094928, + "thread": 30 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2231472, + "thread": 25 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2366889, + "thread": 28 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2504074, + "thread": 14 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2626223, + "thread": 19 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2857055, + "thread": 20 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 2965315, + "thread": 2 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 3287969, + "thread": 7 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 3319645, + "thread": 21 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 3586105, + "thread": 5 + } + }, + { + "amount": "577.182354326", + "slot": { + "period": 3746514, + "thread": 31 + } + }, + { + "amount": "577.182354314", + "slot": { + "period": 3875681, + "thread": 17 + } + } + ], + "AU12wFk7yAvoVKtxF8fQ1Cy3hEwKWxCrbWUXMGMCEiPbRo2AXKAMi": [ + { + "amount": "511.969646895", + "slot": { + "period": 58344, + "thread": 9 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 241502, + "thread": 12 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 465475, + "thread": 24 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 622138, + "thread": 17 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 697432, + "thread": 21 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 970623, + "thread": 12 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1104668, + "thread": 17 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1251518, + "thread": 12 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1381366, + "thread": 20 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1558943, + "thread": 10 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1791160, + "thread": 1 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 1860703, + "thread": 8 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2074335, + "thread": 17 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2213548, + "thread": 21 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2321317, + "thread": 14 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2518624, + "thread": 29 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2648927, + "thread": 21 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 2932522, + "thread": 22 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 3075993, + "thread": 16 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 3226025, + "thread": 25 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 3418289, + "thread": 27 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 3544345, + "thread": 10 + } + }, + { + "amount": "511.969646895", + "slot": { + "period": 3654584, + "thread": 2 + } + }, + { + "amount": "511.969646893", + "slot": { + "period": 3797465, + "thread": 23 + } + } + ], + "AU12wGe6fcjLfLKaSPhtV3tdmdKCmmXZRhff3DHs5HyA1byAQLMpH": [ + { + "amount": "123.345651994", + "slot": { + "period": 108064, + "thread": 30 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 298139, + "thread": 22 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 483598, + "thread": 16 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 514523, + "thread": 17 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 744954, + "thread": 13 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 889557, + "thread": 20 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 999787, + "thread": 27 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1230355, + "thread": 20 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1470214, + "thread": 27 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1596438, + "thread": 27 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1671261, + "thread": 11 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1924058, + "thread": 3 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 1982180, + "thread": 6 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2163495, + "thread": 30 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2329435, + "thread": 31 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2484468, + "thread": 5 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2745694, + "thread": 24 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2930944, + "thread": 13 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 2953970, + "thread": 31 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 3169030, + "thread": 17 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 3356868, + "thread": 17 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 3553304, + "thread": 19 + } + }, + { + "amount": "123.345651994", + "slot": { + "period": 3677543, + "thread": 11 + } + }, + { + "amount": "123.345651997", + "slot": { + "period": 3838704, + "thread": 14 + } + } + ], + "AU12wKYXsoMgyMPixjVAzGt4beTshuXzcbEBSLqC8o77V6doDgALg": [ + { + "amount": "530.099984717", + "slot": { + "period": 138522, + "thread": 15 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 292718, + "thread": 23 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 356638, + "thread": 27 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 516988, + "thread": 10 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 708376, + "thread": 31 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 861775, + "thread": 19 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1135770, + "thread": 9 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1285276, + "thread": 4 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1369628, + "thread": 19 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1572234, + "thread": 12 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1733799, + "thread": 12 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 1925222, + "thread": 26 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2008775, + "thread": 23 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2172971, + "thread": 1 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2305810, + "thread": 21 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2487415, + "thread": 5 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2624653, + "thread": 25 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2793179, + "thread": 2 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 2959248, + "thread": 14 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 3286869, + "thread": 6 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 3412090, + "thread": 4 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 3510141, + "thread": 25 + } + }, + { + "amount": "530.099984717", + "slot": { + "period": 3676383, + "thread": 9 + } + }, + { + "amount": "530.099984712", + "slot": { + "period": 3811426, + "thread": 13 + } + } + ], + "AU12wLcnRPA8cxaFCJ8Tq5iYG33necDGe3sD72fa27yZUpnuW5f3x": [ + { + "amount": "251.353955074", + "slot": { + "period": 40732, + "thread": 3 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 258729, + "thread": 4 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 374704, + "thread": 24 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 524076, + "thread": 17 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 791889, + "thread": 12 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 930994, + "thread": 5 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1109418, + "thread": 17 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1171016, + "thread": 10 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1323041, + "thread": 19 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1489299, + "thread": 29 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1703076, + "thread": 25 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 1908777, + "thread": 24 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2098629, + "thread": 16 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2245318, + "thread": 16 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2457981, + "thread": 27 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2597326, + "thread": 30 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2708820, + "thread": 9 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 2828133, + "thread": 22 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 3046957, + "thread": 15 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 3136288, + "thread": 20 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 3387269, + "thread": 18 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 3502506, + "thread": 13 + } + }, + { + "amount": "251.353955074", + "slot": { + "period": 3712316, + "thread": 6 + } + }, + { + "amount": "251.353955067", + "slot": { + "period": 3916760, + "thread": 16 + } + } + ], + "AU12wM3L8Ww5hj1qsxGQBoUptZKTNYNDfNxYZvnHpy1GQBRH42KSU": [ + { + "amount": "75.305668758", + "slot": { + "period": 92567, + "thread": 29 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 275199, + "thread": 17 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 487349, + "thread": 0 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 516048, + "thread": 20 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 715742, + "thread": 17 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 976406, + "thread": 19 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1052675, + "thread": 11 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1262751, + "thread": 10 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1341727, + "thread": 15 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1538156, + "thread": 25 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1731883, + "thread": 2 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 1898669, + "thread": 14 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2024124, + "thread": 25 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2267017, + "thread": 14 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2412225, + "thread": 17 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2543208, + "thread": 27 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2739603, + "thread": 31 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2887319, + "thread": 11 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 2992051, + "thread": 11 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 3242427, + "thread": 5 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 3437246, + "thread": 12 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 3600552, + "thread": 12 + } + }, + { + "amount": "75.305668758", + "slot": { + "period": 3753825, + "thread": 5 + } + }, + { + "amount": "75.305668763", + "slot": { + "period": 3902387, + "thread": 6 + } + } + ], + "AU12wMZ1SPSXy7JonYKy5RdtteXpB5pLKkmzFU3ku5GArNrcbPbn3": [ + { + "amount": "243.652555223", + "slot": { + "period": 71509, + "thread": 16 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 242032, + "thread": 26 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 480042, + "thread": 29 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 616098, + "thread": 8 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 759668, + "thread": 24 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 929826, + "thread": 21 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1085082, + "thread": 25 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1281094, + "thread": 4 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1428758, + "thread": 14 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1520278, + "thread": 27 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1710825, + "thread": 2 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 1926703, + "thread": 12 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2135838, + "thread": 10 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2178404, + "thread": 21 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2445598, + "thread": 2 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2470818, + "thread": 19 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2723379, + "thread": 4 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 2836600, + "thread": 26 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 3019643, + "thread": 1 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 3266239, + "thread": 27 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 3335471, + "thread": 27 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 3554025, + "thread": 30 + } + }, + { + "amount": "243.652555223", + "slot": { + "period": 3761799, + "thread": 5 + } + }, + { + "amount": "243.652555228", + "slot": { + "period": 3896925, + "thread": 0 + } + } + ], + "AU12wMgVG3wmfbypxFXJbZUUrMDgEA4pjYgrg5wjUYFSnMQGrcqbb": [ + { + "amount": "205.471786863", + "slot": { + "period": 12806, + "thread": 17 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 301828, + "thread": 23 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 365389, + "thread": 26 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 542056, + "thread": 27 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 759206, + "thread": 18 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 848110, + "thread": 8 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1070608, + "thread": 29 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1211978, + "thread": 2 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1387733, + "thread": 13 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1520972, + "thread": 8 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1659473, + "thread": 10 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 1856773, + "thread": 22 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2087432, + "thread": 18 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2144632, + "thread": 9 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2329188, + "thread": 11 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2547899, + "thread": 22 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2647506, + "thread": 15 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2886239, + "thread": 13 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 2968662, + "thread": 18 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 3169213, + "thread": 12 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 3323291, + "thread": 30 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 3543190, + "thread": 1 + } + }, + { + "amount": "205.471786863", + "slot": { + "period": 3623841, + "thread": 21 + } + }, + { + "amount": "205.471786867", + "slot": { + "period": 3917761, + "thread": 4 + } + } + ], + "AU12wPXY3t8LHLFRbQ5nswcgNutgBzg1sn3d3hp1nAK2GtMGfvvBg": [ + { + "amount": "156.722961963", + "slot": { + "period": 38129, + "thread": 18 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 214745, + "thread": 31 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 420473, + "thread": 19 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 635108, + "thread": 15 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 784048, + "thread": 23 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 962342, + "thread": 7 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1116252, + "thread": 14 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1218873, + "thread": 4 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1464872, + "thread": 11 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1553093, + "thread": 24 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1674465, + "thread": 12 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 1840603, + "thread": 24 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2134046, + "thread": 1 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2154311, + "thread": 26 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2403320, + "thread": 13 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2554836, + "thread": 16 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2775894, + "thread": 24 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 2945207, + "thread": 18 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 3004579, + "thread": 24 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 3126686, + "thread": 26 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 3432738, + "thread": 2 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 3574576, + "thread": 16 + } + }, + { + "amount": "156.722961963", + "slot": { + "period": 3631055, + "thread": 12 + } + }, + { + "amount": "156.722961956", + "slot": { + "period": 3782445, + "thread": 0 + } + } + ], + "AU12wPzQw9Z9EZGoz9ncJFGJSfQmd7NZKGQh4MXjSpczMQmoByHd7": [ + { + "amount": "295.085453628", + "slot": { + "period": 63713, + "thread": 1 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 242773, + "thread": 5 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 460217, + "thread": 8 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 643559, + "thread": 9 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 709521, + "thread": 8 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 959366, + "thread": 18 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1001681, + "thread": 25 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1159461, + "thread": 30 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1378345, + "thread": 5 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1633359, + "thread": 22 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1674029, + "thread": 24 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 1961839, + "thread": 8 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2090628, + "thread": 2 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2266146, + "thread": 23 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2323838, + "thread": 31 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2582928, + "thread": 24 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2785993, + "thread": 30 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 2803577, + "thread": 27 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 3008305, + "thread": 7 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 3211445, + "thread": 0 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 3321587, + "thread": 13 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 3513921, + "thread": 3 + } + }, + { + "amount": "295.085453628", + "slot": { + "period": 3734679, + "thread": 25 + } + }, + { + "amount": "295.085453638", + "slot": { + "period": 3816721, + "thread": 29 + } + } + ], + "AU12wQ9CzbZuf6KwixdrUSXebg6v3kToEjdEoYM5eyAsQxVqPbWbv": [ + { + "amount": "156.480136299", + "slot": { + "period": 64457, + "thread": 18 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 269593, + "thread": 4 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 373507, + "thread": 28 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 542309, + "thread": 8 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 809950, + "thread": 5 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 981865, + "thread": 28 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1002991, + "thread": 23 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1268480, + "thread": 2 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1370181, + "thread": 19 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1581080, + "thread": 17 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1803191, + "thread": 14 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 1927409, + "thread": 13 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2010501, + "thread": 8 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2187837, + "thread": 15 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2357690, + "thread": 11 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2517819, + "thread": 7 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2769240, + "thread": 15 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2905162, + "thread": 2 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 2973925, + "thread": 3 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 3240749, + "thread": 17 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 3430621, + "thread": 12 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 3529280, + "thread": 0 + } + }, + { + "amount": "156.480136299", + "slot": { + "period": 3709381, + "thread": 14 + } + }, + { + "amount": "156.480136303", + "slot": { + "period": 3922566, + "thread": 15 + } + } + ], + "AU12wQH3KKCQwJKB7Yf1S2p6qpZYrQoChPBKVMNjiHnekU7UVfDHC": [ + { + "amount": "279.935995732", + "slot": { + "period": 110619, + "thread": 15 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 247105, + "thread": 21 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 384877, + "thread": 4 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 530311, + "thread": 13 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 763438, + "thread": 3 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 976507, + "thread": 28 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1137377, + "thread": 27 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1176604, + "thread": 26 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1426949, + "thread": 17 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1521180, + "thread": 9 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1767937, + "thread": 11 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 1872197, + "thread": 8 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2133267, + "thread": 24 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2290345, + "thread": 12 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2423933, + "thread": 19 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2519012, + "thread": 11 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2640336, + "thread": 14 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 2852608, + "thread": 30 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 3035689, + "thread": 0 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 3259483, + "thread": 24 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 3296947, + "thread": 29 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 3571370, + "thread": 25 + } + }, + { + "amount": "279.935995732", + "slot": { + "period": 3696084, + "thread": 9 + } + }, + { + "amount": "279.935995735", + "slot": { + "period": 3906173, + "thread": 13 + } + } + ], + "AU12wQmDST3gJVF4boNJDvtBccMurU161xsZkXx7kadCupBDkpXQq": [ + { + "amount": "131.566604431", + "slot": { + "period": 113531, + "thread": 14 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 314293, + "thread": 6 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 423651, + "thread": 6 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 517973, + "thread": 30 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 776907, + "thread": 14 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 882764, + "thread": 10 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1105593, + "thread": 5 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1192604, + "thread": 29 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1358735, + "thread": 27 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1553023, + "thread": 8 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1742865, + "thread": 29 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 1861547, + "thread": 29 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2057071, + "thread": 17 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2182665, + "thread": 29 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2430849, + "thread": 15 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2525027, + "thread": 20 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2789966, + "thread": 28 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 2814710, + "thread": 10 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 3015836, + "thread": 11 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 3183792, + "thread": 26 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 3363085, + "thread": 26 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 3476132, + "thread": 29 + } + }, + { + "amount": "131.566604431", + "slot": { + "period": 3653016, + "thread": 3 + } + }, + { + "amount": "131.566604423", + "slot": { + "period": 3927781, + "thread": 5 + } + } + ], + "AU12wReBMqyZfXAFPuUW1g5Np5GJSHpXTdosxXFAbu4Z85hQWKYPh": [ + { + "amount": "321.838813672", + "slot": { + "period": 132233, + "thread": 1 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 317386, + "thread": 10 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 332154, + "thread": 1 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 597904, + "thread": 25 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 681065, + "thread": 0 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 828230, + "thread": 8 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1037992, + "thread": 6 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1182168, + "thread": 2 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1428370, + "thread": 20 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1618888, + "thread": 7 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1768267, + "thread": 9 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1900887, + "thread": 22 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 1982594, + "thread": 7 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 2218781, + "thread": 6 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 2330793, + "thread": 10 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 2481880, + "thread": 31 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 2676641, + "thread": 12 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 2913429, + "thread": 10 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 3052749, + "thread": 7 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 3287166, + "thread": 18 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 3363279, + "thread": 16 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 3557394, + "thread": 19 + } + }, + { + "amount": "321.838813672", + "slot": { + "period": 3696936, + "thread": 19 + } + }, + { + "amount": "321.838813662", + "slot": { + "period": 3852587, + "thread": 8 + } + } + ], + "AU12wS1WV6mwP1oiK4thgyqxu1WHJ5VmDU16Wg5cUzBgo9CL4eQC1": [ + { + "amount": "61.394116347", + "slot": { + "period": 109300, + "thread": 9 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 251605, + "thread": 14 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 480118, + "thread": 4 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 568231, + "thread": 27 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 800701, + "thread": 26 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 873573, + "thread": 15 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 991839, + "thread": 31 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 1305770, + "thread": 27 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 1426051, + "thread": 28 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 1634630, + "thread": 17 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 1678205, + "thread": 26 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 1873715, + "thread": 8 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2105498, + "thread": 28 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2276638, + "thread": 25 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2374311, + "thread": 26 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2602450, + "thread": 24 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2717499, + "thread": 12 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 2861565, + "thread": 22 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 3070740, + "thread": 2 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 3175842, + "thread": 25 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 3409578, + "thread": 28 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 3609662, + "thread": 22 + } + }, + { + "amount": "61.394116347", + "slot": { + "period": 3686022, + "thread": 27 + } + }, + { + "amount": "61.394116352", + "slot": { + "period": 3912428, + "thread": 23 + } + } + ], + "AU12wSYw3i4f9xwBmDbYrtTXJ8nLZfmLMnhhJXUDBK2eku65wryLY": [ + { + "amount": "478.882820976", + "slot": { + "period": 158948, + "thread": 27 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 256120, + "thread": 26 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 372677, + "thread": 8 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 640464, + "thread": 20 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 738642, + "thread": 29 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 893080, + "thread": 29 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1141662, + "thread": 30 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1216169, + "thread": 3 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1340270, + "thread": 28 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1599031, + "thread": 3 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1758304, + "thread": 7 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 1816656, + "thread": 4 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2009569, + "thread": 12 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2176315, + "thread": 18 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2309756, + "thread": 29 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2576551, + "thread": 6 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2765146, + "thread": 15 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2862947, + "thread": 7 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 2955040, + "thread": 30 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 3154035, + "thread": 29 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 3369456, + "thread": 22 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 3514622, + "thread": 23 + } + }, + { + "amount": "478.882820976", + "slot": { + "period": 3739874, + "thread": 15 + } + }, + { + "amount": "478.882820968", + "slot": { + "period": 3890533, + "thread": 31 + } + } + ], + "AU12wSd5pRSyr6DTUoTmeCDUBfeVaYynkwdx8vpGd6Pxj9K41dzoj": [ + { + "amount": "54.630947268", + "slot": { + "period": 18610, + "thread": 23 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 184554, + "thread": 0 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 340078, + "thread": 6 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 494422, + "thread": 22 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 717306, + "thread": 14 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 832950, + "thread": 19 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1035763, + "thread": 22 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1189493, + "thread": 24 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1351213, + "thread": 29 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1626438, + "thread": 17 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1674990, + "thread": 29 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1865095, + "thread": 20 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 1984027, + "thread": 31 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 2148764, + "thread": 29 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 2439908, + "thread": 0 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 2492625, + "thread": 30 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 2791023, + "thread": 23 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 2822652, + "thread": 28 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3006043, + "thread": 20 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3187832, + "thread": 13 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3365586, + "thread": 0 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3599445, + "thread": 13 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3652570, + "thread": 30 + } + }, + { + "amount": "54.630947268", + "slot": { + "period": 3873254, + "thread": 22 + } + } + ], + "AU12wT1KFxwWJWpkmUXXiL5wJGT5oxqYihzoywBSFKDjwNcQeWUsC": [ + { + "amount": "428.620770273", + "slot": { + "period": 73207, + "thread": 6 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 272797, + "thread": 3 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 468230, + "thread": 14 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 603326, + "thread": 11 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 717106, + "thread": 12 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 975785, + "thread": 0 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1087669, + "thread": 7 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1303609, + "thread": 11 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1414221, + "thread": 16 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1523246, + "thread": 12 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1689658, + "thread": 17 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 1935941, + "thread": 17 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2101790, + "thread": 27 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2294491, + "thread": 22 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2337382, + "thread": 24 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2577264, + "thread": 21 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2663314, + "thread": 22 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 2863684, + "thread": 17 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 3008695, + "thread": 7 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 3202455, + "thread": 21 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 3436902, + "thread": 1 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 3557790, + "thread": 4 + } + }, + { + "amount": "428.620770273", + "slot": { + "period": 3729943, + "thread": 9 + } + }, + { + "amount": "428.620770274", + "slot": { + "period": 3917218, + "thread": 29 + } + } + ], + "AU12wTCCYbCWKdXBLKQdshzdygdgJdUZ21Xi77yBuyNj2LiBu7KCe": [ + { + "amount": "215.901305906", + "slot": { + "period": 133577, + "thread": 7 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 271074, + "thread": 11 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 489769, + "thread": 18 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 639396, + "thread": 6 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 810965, + "thread": 21 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 906961, + "thread": 14 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1071203, + "thread": 15 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1205126, + "thread": 24 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1357870, + "thread": 22 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1635238, + "thread": 16 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1659594, + "thread": 13 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 1968242, + "thread": 0 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2075521, + "thread": 23 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2202541, + "thread": 20 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2344921, + "thread": 24 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2492367, + "thread": 22 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2773780, + "thread": 4 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 2929648, + "thread": 14 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 3055666, + "thread": 11 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 3186316, + "thread": 27 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 3366358, + "thread": 6 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 3533142, + "thread": 18 + } + }, + { + "amount": "215.901305906", + "slot": { + "period": 3750196, + "thread": 10 + } + }, + { + "amount": "215.901305894", + "slot": { + "period": 3823826, + "thread": 5 + } + } + ], + "AU12wTGSuUGjniJuMUTyAuKNNiEcUoAJTpCTGfmojqaZseKaCW1vU": [ + { + "amount": "706.124303584", + "slot": { + "period": 31177, + "thread": 10 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 260649, + "thread": 11 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 423769, + "thread": 3 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 590871, + "thread": 29 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 813398, + "thread": 27 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 963569, + "thread": 8 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1059472, + "thread": 17 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1235057, + "thread": 14 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1374140, + "thread": 13 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1554619, + "thread": 5 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1762109, + "thread": 24 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 1926298, + "thread": 27 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2030678, + "thread": 27 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2237411, + "thread": 14 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2295738, + "thread": 1 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2558532, + "thread": 9 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2667988, + "thread": 12 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 2927790, + "thread": 30 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 3110723, + "thread": 7 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 3248510, + "thread": 2 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 3381037, + "thread": 18 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 3581701, + "thread": 10 + } + }, + { + "amount": "706.124303584", + "slot": { + "period": 3745442, + "thread": 21 + } + }, + { + "amount": "706.124303591", + "slot": { + "period": 3789589, + "thread": 16 + } + } + ], + "AU12wVozMMWfh7zipn53JU6CtvCtaLZP9w2JwVcruLmcLxohMpmbk": [ + { + "amount": "178.230942684", + "slot": { + "period": 21114, + "thread": 8 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 173895, + "thread": 12 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 483920, + "thread": 2 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 528243, + "thread": 21 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 682836, + "thread": 5 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 904915, + "thread": 8 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1147857, + "thread": 9 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1219181, + "thread": 1 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1339795, + "thread": 26 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1612898, + "thread": 0 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1691648, + "thread": 9 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 1826970, + "thread": 20 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2029292, + "thread": 9 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2183659, + "thread": 0 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2424318, + "thread": 28 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2594825, + "thread": 2 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2735105, + "thread": 10 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 2808880, + "thread": 8 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 3093790, + "thread": 0 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 3287845, + "thread": 8 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 3367683, + "thread": 4 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 3600888, + "thread": 19 + } + }, + { + "amount": "178.230942684", + "slot": { + "period": 3677271, + "thread": 4 + } + }, + { + "amount": "178.230942687", + "slot": { + "period": 3878925, + "thread": 16 + } + } + ], + "AU12wW22A3FAkR3KDowUGWLTUbYFwqRqbeHip1ZLgNrSqowaS1myg": [ + { + "amount": "140.750846051", + "slot": { + "period": 135577, + "thread": 30 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 268649, + "thread": 11 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 413753, + "thread": 25 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 494768, + "thread": 24 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 665556, + "thread": 24 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 955394, + "thread": 1 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1073213, + "thread": 31 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1312997, + "thread": 0 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1398137, + "thread": 2 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1624863, + "thread": 14 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1709046, + "thread": 27 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 1883183, + "thread": 1 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2018294, + "thread": 1 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2283398, + "thread": 16 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2452722, + "thread": 22 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2528048, + "thread": 23 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2790707, + "thread": 2 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 2919311, + "thread": 22 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 3086484, + "thread": 1 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 3170732, + "thread": 20 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 3337195, + "thread": 9 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 3465547, + "thread": 28 + } + }, + { + "amount": "140.750846051", + "slot": { + "period": 3754091, + "thread": 11 + } + }, + { + "amount": "140.750846044", + "slot": { + "period": 3876460, + "thread": 3 + } + } + ], + "AU12wXaJKkwYRU4rHFScwh24wxK9uLfAYMEq3mrKRY5pZrgyQrHTd": [ + { + "amount": "211.370636834", + "slot": { + "period": 85368, + "thread": 12 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 226950, + "thread": 18 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 353041, + "thread": 3 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 506460, + "thread": 25 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 795271, + "thread": 3 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 864660, + "thread": 5 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1133872, + "thread": 22 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1204398, + "thread": 10 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1337381, + "thread": 8 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1598249, + "thread": 21 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1770385, + "thread": 0 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 1833344, + "thread": 25 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2001379, + "thread": 20 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2199088, + "thread": 10 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2379370, + "thread": 14 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2495198, + "thread": 15 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2783786, + "thread": 23 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 2873575, + "thread": 26 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 3029184, + "thread": 4 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 3209248, + "thread": 24 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 3439333, + "thread": 28 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 3539064, + "thread": 9 + } + }, + { + "amount": "211.370636834", + "slot": { + "period": 3734563, + "thread": 27 + } + }, + { + "amount": "211.370636845", + "slot": { + "period": 3889569, + "thread": 13 + } + } + ], + "AU12wXerTjopU9EnJ3ikscpJ31rwR9XSpD87dSm9ezFEquK7mEFmp": [ + { + "amount": "70.902955341", + "slot": { + "period": 91518, + "thread": 15 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 211065, + "thread": 15 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 342423, + "thread": 19 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 538642, + "thread": 30 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 797839, + "thread": 2 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 863165, + "thread": 11 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1048745, + "thread": 20 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1301997, + "thread": 11 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1459186, + "thread": 0 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1509091, + "thread": 12 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1743343, + "thread": 2 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 1976092, + "thread": 17 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2122270, + "thread": 3 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2182730, + "thread": 10 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2360539, + "thread": 18 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2576659, + "thread": 23 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2684689, + "thread": 27 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2933785, + "thread": 2 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 2996360, + "thread": 12 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 3167604, + "thread": 19 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 3308039, + "thread": 10 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 3505174, + "thread": 16 + } + }, + { + "amount": "70.902955341", + "slot": { + "period": 3767526, + "thread": 22 + } + }, + { + "amount": "70.902955344", + "slot": { + "period": 3867029, + "thread": 11 + } + } + ], + "AU12wXokccseVzVoNjfVzNPrtQk6nWoCw3XgcXGA8co3r3BUA9YGb": [ + { + "amount": "312.457157515", + "slot": { + "period": 37582, + "thread": 12 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 317525, + "thread": 9 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 380786, + "thread": 30 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 588883, + "thread": 26 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 654891, + "thread": 31 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 862575, + "thread": 0 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1043656, + "thread": 5 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1160989, + "thread": 8 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1434026, + "thread": 26 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1501026, + "thread": 6 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1747249, + "thread": 20 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 1888399, + "thread": 11 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2056734, + "thread": 17 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2187394, + "thread": 12 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2435467, + "thread": 5 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2537307, + "thread": 10 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2694415, + "thread": 4 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 2940067, + "thread": 27 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 3096805, + "thread": 29 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 3157901, + "thread": 6 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 3424356, + "thread": 15 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 3549038, + "thread": 9 + } + }, + { + "amount": "312.457157515", + "slot": { + "period": 3701242, + "thread": 4 + } + }, + { + "amount": "312.457157518", + "slot": { + "period": 3817839, + "thread": 29 + } + } + ], + "AU12wYCLHcarHdm88fk8tzzTud1ejUbrxNcJk2kHF7yzrwA8VnGwc": [ + { + "amount": "302.559563458", + "slot": { + "period": 134637, + "thread": 19 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 263754, + "thread": 1 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 418125, + "thread": 16 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 538118, + "thread": 0 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 684023, + "thread": 20 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 945601, + "thread": 7 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1018548, + "thread": 4 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1236378, + "thread": 7 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1457884, + "thread": 10 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1543393, + "thread": 25 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1716303, + "thread": 4 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 1960509, + "thread": 23 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2111171, + "thread": 22 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2218955, + "thread": 13 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2403049, + "thread": 21 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2602918, + "thread": 5 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2748415, + "thread": 10 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2845714, + "thread": 14 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 2956164, + "thread": 25 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 3153612, + "thread": 12 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 3301268, + "thread": 3 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 3451239, + "thread": 10 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 3765523, + "thread": 23 + } + }, + { + "amount": "302.559563458", + "slot": { + "period": 3783389, + "thread": 30 + } + } + ], + "AU12wYs2UtR4XqviaQyP3kqu91VjYmuofSWasang6SnsvcD7sqPbd": [ + { + "amount": "480.599663947", + "slot": { + "period": 55280, + "thread": 8 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 203686, + "thread": 22 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 432571, + "thread": 7 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 653265, + "thread": 3 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 812126, + "thread": 0 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 974901, + "thread": 22 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1117468, + "thread": 17 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1190101, + "thread": 23 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1459094, + "thread": 13 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1642489, + "thread": 26 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1678069, + "thread": 4 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 1898550, + "thread": 26 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2073024, + "thread": 7 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2188580, + "thread": 12 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2384424, + "thread": 19 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2511355, + "thread": 16 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2635733, + "thread": 25 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 2932078, + "thread": 14 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 3077283, + "thread": 17 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 3176311, + "thread": 9 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 3338757, + "thread": 6 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 3451446, + "thread": 3 + } + }, + { + "amount": "480.599663947", + "slot": { + "period": 3672572, + "thread": 24 + } + }, + { + "amount": "480.599663944", + "slot": { + "period": 3901458, + "thread": 15 + } + } + ], + "AU12wZe1BCQtJC78xnBRJSu7yYmCaLW3ZxScKSR7ExYAffFfuQXGu": [ + { + "amount": "144.431465811", + "slot": { + "period": 19151, + "thread": 23 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 300007, + "thread": 4 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 481758, + "thread": 0 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 578201, + "thread": 20 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 790587, + "thread": 18 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 831714, + "thread": 21 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1138424, + "thread": 0 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1269761, + "thread": 18 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1420870, + "thread": 26 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1482572, + "thread": 3 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1766158, + "thread": 29 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 1934626, + "thread": 8 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2106323, + "thread": 8 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2204203, + "thread": 22 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2446422, + "thread": 9 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2619905, + "thread": 2 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2684390, + "thread": 6 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 2840435, + "thread": 10 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 3084481, + "thread": 18 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 3204049, + "thread": 3 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 3430772, + "thread": 29 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 3557684, + "thread": 19 + } + }, + { + "amount": "144.431465811", + "slot": { + "period": 3653274, + "thread": 11 + } + }, + { + "amount": "144.431465800", + "slot": { + "period": 3847106, + "thread": 1 + } + } + ], + "AU12wb6XcJabwoQGWC46HqFEnCVFsrv6LssZW4199uMTYUyWJtMYo": [ + { + "amount": "135.577713832", + "slot": { + "period": 28454, + "thread": 14 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 268645, + "thread": 2 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 489728, + "thread": 26 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 548721, + "thread": 12 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 778511, + "thread": 18 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 828777, + "thread": 7 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1106225, + "thread": 19 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1240837, + "thread": 4 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1318745, + "thread": 25 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1585360, + "thread": 19 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1790089, + "thread": 19 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 1831504, + "thread": 9 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2067239, + "thread": 31 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2166185, + "thread": 27 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2340806, + "thread": 19 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2557222, + "thread": 13 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2750239, + "thread": 7 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 2925893, + "thread": 3 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 3108830, + "thread": 16 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 3229081, + "thread": 4 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 3444346, + "thread": 16 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 3565851, + "thread": 5 + } + }, + { + "amount": "135.577713832", + "slot": { + "period": 3738712, + "thread": 11 + } + }, + { + "amount": "135.577713839", + "slot": { + "period": 3849119, + "thread": 3 + } + } + ], + "AU12wcg3u3v6obKtZeDGVNCpNSDrDMJe7Zj5X66NNnp5LEMNiAeNA": [ + { + "amount": "216.170803237", + "slot": { + "period": 108590, + "thread": 19 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 177043, + "thread": 20 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 477611, + "thread": 3 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 605651, + "thread": 18 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 669521, + "thread": 18 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 982658, + "thread": 29 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1049832, + "thread": 27 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1279098, + "thread": 5 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1417594, + "thread": 23 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1520278, + "thread": 29 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1792619, + "thread": 21 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 1929591, + "thread": 12 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2143211, + "thread": 31 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2252107, + "thread": 17 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2372163, + "thread": 4 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2544751, + "thread": 22 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2724697, + "thread": 0 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 2794034, + "thread": 19 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 3003454, + "thread": 28 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 3140573, + "thread": 19 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 3305592, + "thread": 9 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 3460875, + "thread": 23 + } + }, + { + "amount": "216.170803237", + "slot": { + "period": 3717843, + "thread": 1 + } + }, + { + "amount": "216.170803247", + "slot": { + "period": 3920469, + "thread": 22 + } + } + ], + "AU12wdUG7F4o2CmZ25pbm6B2T5FuVyKLsJQEpK73d7orGUuWpUyL7": [ + { + "amount": "463.279367215", + "slot": { + "period": 150657, + "thread": 0 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 192436, + "thread": 3 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 328980, + "thread": 19 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 505464, + "thread": 22 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 786520, + "thread": 14 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 905701, + "thread": 12 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1037524, + "thread": 25 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1258441, + "thread": 30 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1380630, + "thread": 2 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1563622, + "thread": 31 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1776684, + "thread": 19 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 1894184, + "thread": 16 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2026553, + "thread": 14 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2232866, + "thread": 25 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2369176, + "thread": 26 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2523108, + "thread": 6 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2691864, + "thread": 28 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2820094, + "thread": 17 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 2964344, + "thread": 25 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 3207648, + "thread": 15 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 3373974, + "thread": 25 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 3593320, + "thread": 17 + } + }, + { + "amount": "463.279367215", + "slot": { + "period": 3689554, + "thread": 30 + } + }, + { + "amount": "463.279367209", + "slot": { + "period": 3782149, + "thread": 27 + } + } + ], + "AU12wddMyJecBKVDu6xJpS2Zw5Kuxa7rSzhcUPpG89RV6H6wE3Ff1": [ + { + "amount": "260.098218048", + "slot": { + "period": 79052, + "thread": 14 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 313548, + "thread": 0 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 445419, + "thread": 12 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 556476, + "thread": 23 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 723590, + "thread": 3 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 972519, + "thread": 31 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1096729, + "thread": 26 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1256771, + "thread": 6 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1466360, + "thread": 16 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1616797, + "thread": 7 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1805877, + "thread": 3 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 1862262, + "thread": 25 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2136562, + "thread": 5 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2272168, + "thread": 11 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2333842, + "thread": 15 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2576936, + "thread": 30 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2763941, + "thread": 25 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 2939895, + "thread": 19 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 3055974, + "thread": 1 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 3201499, + "thread": 14 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 3368443, + "thread": 24 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 3499359, + "thread": 31 + } + }, + { + "amount": "260.098218048", + "slot": { + "period": 3775702, + "thread": 30 + } + }, + { + "amount": "260.098218054", + "slot": { + "period": 3907474, + "thread": 27 + } + } + ], + "AU12wdiduZCJMsGFCeKTcsPB3QKe3b3b23Ra2neVt3WSuJykc3f1F": [ + { + "amount": "315.700435315", + "slot": { + "period": 44732, + "thread": 14 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 256579, + "thread": 9 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 444308, + "thread": 2 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 511191, + "thread": 19 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 804732, + "thread": 30 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 961406, + "thread": 24 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1037862, + "thread": 21 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1271004, + "thread": 26 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1319305, + "thread": 3 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1520365, + "thread": 5 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1760669, + "thread": 20 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 1916075, + "thread": 17 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2019694, + "thread": 18 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2166500, + "thread": 21 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2410138, + "thread": 18 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2475413, + "thread": 26 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2658732, + "thread": 16 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 2806305, + "thread": 14 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 3050893, + "thread": 7 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 3208934, + "thread": 16 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 3312555, + "thread": 30 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 3484636, + "thread": 27 + } + }, + { + "amount": "315.700435315", + "slot": { + "period": 3702172, + "thread": 1 + } + }, + { + "amount": "315.700435308", + "slot": { + "period": 3838878, + "thread": 30 + } + } + ], + "AU12weH98gHE5uz8XzHqVgk49qjnwQfq1tL13ig1JLMJeWFgEHSg6": [ + { + "amount": "137.030544313", + "slot": { + "period": 157269, + "thread": 20 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 209445, + "thread": 2 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 440777, + "thread": 8 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 646699, + "thread": 28 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 667397, + "thread": 31 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 833309, + "thread": 30 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1134812, + "thread": 3 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1269754, + "thread": 21 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1365434, + "thread": 6 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1545753, + "thread": 17 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1678276, + "thread": 7 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 1840009, + "thread": 9 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2005759, + "thread": 13 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2251905, + "thread": 19 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2443163, + "thread": 25 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2617444, + "thread": 21 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2695066, + "thread": 21 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 2894170, + "thread": 26 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 3036312, + "thread": 14 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 3179747, + "thread": 24 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 3437832, + "thread": 22 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 3560466, + "thread": 3 + } + }, + { + "amount": "137.030544313", + "slot": { + "period": 3692635, + "thread": 24 + } + }, + { + "amount": "137.030544322", + "slot": { + "period": 3799768, + "thread": 29 + } + } + ], + "AU12weV4xJbaV7LmWvTk1KKKNLJ6o5eYbeUcs8U5Ph7zGcBV5D6uC": [ + { + "amount": "358.334907789", + "slot": { + "period": 38803, + "thread": 11 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 189931, + "thread": 23 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 405690, + "thread": 13 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 517145, + "thread": 11 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 747979, + "thread": 27 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 946741, + "thread": 26 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1081455, + "thread": 15 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1293727, + "thread": 31 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1352314, + "thread": 21 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1583395, + "thread": 28 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1650677, + "thread": 16 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 1934517, + "thread": 8 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2128367, + "thread": 13 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2218672, + "thread": 11 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2321374, + "thread": 19 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2551772, + "thread": 22 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2780010, + "thread": 0 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2832670, + "thread": 21 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 2974344, + "thread": 19 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 3242507, + "thread": 19 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 3301552, + "thread": 11 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 3470574, + "thread": 29 + } + }, + { + "amount": "358.334907789", + "slot": { + "period": 3692827, + "thread": 10 + } + }, + { + "amount": "358.334907797", + "slot": { + "period": 3923511, + "thread": 5 + } + } + ], + "AU12wepAJAmQ6gRjizVaVxqifg1N9MRoN2vLVjFuCTdMs9oXX6dW8": [ + { + "amount": "156.061737451", + "slot": { + "period": 126946, + "thread": 1 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 193337, + "thread": 6 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 340351, + "thread": 23 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 590138, + "thread": 23 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 656004, + "thread": 17 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 958769, + "thread": 31 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1074621, + "thread": 26 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1280705, + "thread": 18 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1377730, + "thread": 23 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1642743, + "thread": 5 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1782042, + "thread": 30 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 1912034, + "thread": 8 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2126906, + "thread": 11 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2237690, + "thread": 4 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2413209, + "thread": 12 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2612476, + "thread": 27 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2714039, + "thread": 31 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 2831943, + "thread": 14 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 3005240, + "thread": 17 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 3191718, + "thread": 1 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 3346258, + "thread": 31 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 3460055, + "thread": 16 + } + }, + { + "amount": "156.061737451", + "slot": { + "period": 3657963, + "thread": 11 + } + }, + { + "amount": "156.061737456", + "slot": { + "period": 3854853, + "thread": 24 + } + } + ], + "AU12wfFEsFUWK8YNwdnti3HTowhMMXCet6dxDe7GCpKQJA3eeFScN": [ + { + "amount": "141.639853946", + "slot": { + "period": 155571, + "thread": 14 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 319350, + "thread": 20 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 329616, + "thread": 14 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 567724, + "thread": 6 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 789754, + "thread": 0 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 873359, + "thread": 3 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 995749, + "thread": 6 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 1239361, + "thread": 12 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 1325733, + "thread": 27 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 1488098, + "thread": 16 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 1721212, + "thread": 9 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 1898340, + "thread": 2 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2044518, + "thread": 11 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2147936, + "thread": 4 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2451236, + "thread": 25 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2512358, + "thread": 16 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2657846, + "thread": 23 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 2935591, + "thread": 19 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 3067844, + "thread": 14 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 3245712, + "thread": 13 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 3338028, + "thread": 24 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 3497199, + "thread": 13 + } + }, + { + "amount": "141.639853946", + "slot": { + "period": 3766882, + "thread": 29 + } + }, + { + "amount": "141.639853951", + "slot": { + "period": 3899496, + "thread": 0 + } + } + ], + "AU12wgPsBjHBGeu6SnvE9q3P7XrgYU5ApnCzyfv7vFe6MLUAnrc7k": [ + { + "amount": "202.332916888", + "slot": { + "period": 162646, + "thread": 6 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 264429, + "thread": 1 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 353927, + "thread": 27 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 606140, + "thread": 3 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 797427, + "thread": 27 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 965716, + "thread": 24 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1026854, + "thread": 1 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1242810, + "thread": 24 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1416988, + "thread": 22 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1592423, + "thread": 13 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1722531, + "thread": 9 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1934375, + "thread": 18 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 1991739, + "thread": 19 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 2151816, + "thread": 5 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 2394974, + "thread": 12 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 2479386, + "thread": 27 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 2718766, + "thread": 23 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 2883220, + "thread": 13 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 3036506, + "thread": 23 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 3156983, + "thread": 4 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 3309550, + "thread": 18 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 3457979, + "thread": 21 + } + }, + { + "amount": "202.332916888", + "slot": { + "period": 3670315, + "thread": 22 + } + }, + { + "amount": "202.332916899", + "slot": { + "period": 3910194, + "thread": 13 + } + } + ], + "AU12whGny7jkJCGNFWwnharM3bWYCd3cKzns3L5jA9HnYvVjE1k4": [ + { + "amount": "138.534405772", + "slot": { + "period": 31523, + "thread": 4 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 193831, + "thread": 19 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 388029, + "thread": 15 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 538069, + "thread": 25 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 665330, + "thread": 1 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 881309, + "thread": 6 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1002997, + "thread": 15 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1228367, + "thread": 21 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1384233, + "thread": 15 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1507100, + "thread": 30 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1800860, + "thread": 3 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 1933335, + "thread": 20 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2002777, + "thread": 13 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2176962, + "thread": 28 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2298973, + "thread": 17 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2511185, + "thread": 8 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2695130, + "thread": 5 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 2876902, + "thread": 4 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 3031059, + "thread": 10 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 3202653, + "thread": 14 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 3428552, + "thread": 15 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 3540400, + "thread": 7 + } + }, + { + "amount": "138.534405772", + "slot": { + "period": 3723782, + "thread": 25 + } + }, + { + "amount": "138.534405768", + "slot": { + "period": 3839562, + "thread": 5 + } + } + ], + "AU12wst8dnKLftHNAKKhzjHvhvXaeYtHQk4RdtAttFty3MLW7oz9": [ + { + "amount": "153.026941417", + "slot": { + "period": 70022, + "thread": 6 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 207226, + "thread": 3 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 476060, + "thread": 16 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 561503, + "thread": 25 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 756218, + "thread": 11 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 913162, + "thread": 22 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 988534, + "thread": 10 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1171913, + "thread": 5 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1367577, + "thread": 29 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1531048, + "thread": 30 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1723182, + "thread": 19 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1918968, + "thread": 29 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 1982299, + "thread": 12 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 2262235, + "thread": 11 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 2409841, + "thread": 16 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 2548181, + "thread": 4 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 2650270, + "thread": 22 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 2819762, + "thread": 1 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 3080365, + "thread": 30 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 3170223, + "thread": 14 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 3363517, + "thread": 9 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 3467434, + "thread": 16 + } + }, + { + "amount": "153.026941417", + "slot": { + "period": 3645274, + "thread": 0 + } + }, + { + "amount": "153.026941423", + "slot": { + "period": 3884331, + "thread": 8 + } + } + ], + "AU12x2M6eAXXFDgYTBECwqyavcwGyZz3rGnMzcw3VVZrThrq1jXv": [ + { + "amount": "467.015125866", + "slot": { + "period": 162247, + "thread": 23 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 311002, + "thread": 18 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 442825, + "thread": 4 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 538430, + "thread": 4 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 782041, + "thread": 12 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 881119, + "thread": 21 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1008351, + "thread": 17 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1296392, + "thread": 7 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1335514, + "thread": 23 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1591946, + "thread": 27 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1712732, + "thread": 3 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 1913735, + "thread": 0 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2044015, + "thread": 27 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2179487, + "thread": 2 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2301479, + "thread": 13 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2522098, + "thread": 20 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2768227, + "thread": 9 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2894853, + "thread": 31 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 2970720, + "thread": 7 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 3266884, + "thread": 21 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 3395626, + "thread": 27 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 3513933, + "thread": 19 + } + }, + { + "amount": "467.015125866", + "slot": { + "period": 3700879, + "thread": 15 + } + }, + { + "amount": "467.015125877", + "slot": { + "period": 3908224, + "thread": 27 + } + } + ], + "AU12xDe7T2y4HNMwJt1RYnXpDwBbf9kRjQU9N8GwMzmbjgBzesXs": [ + { + "amount": "121.182395140", + "slot": { + "period": 29957, + "thread": 27 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 211109, + "thread": 23 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 386939, + "thread": 10 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 579408, + "thread": 21 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 820070, + "thread": 11 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 951275, + "thread": 24 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1117059, + "thread": 29 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1198330, + "thread": 9 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1339872, + "thread": 31 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1485263, + "thread": 13 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1762334, + "thread": 15 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 1898875, + "thread": 29 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2028366, + "thread": 15 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2232461, + "thread": 11 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2462176, + "thread": 27 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2601916, + "thread": 13 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2671523, + "thread": 17 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 2881774, + "thread": 10 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 3090736, + "thread": 5 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 3182216, + "thread": 12 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 3334460, + "thread": 8 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 3601715, + "thread": 6 + } + }, + { + "amount": "121.182395140", + "slot": { + "period": 3732932, + "thread": 9 + } + }, + { + "amount": "121.182395128", + "slot": { + "period": 3874240, + "thread": 14 + } + } + ], + "AU12xn3XoZkCyPYJmFG21rwdqBnoC3hB3RTuegyXgRjr8z1f8Tvu": [ + { + "amount": "127.245002759", + "slot": { + "period": 16803, + "thread": 30 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 183021, + "thread": 29 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 377469, + "thread": 14 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 571589, + "thread": 28 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 769369, + "thread": 30 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 887327, + "thread": 7 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1051796, + "thread": 24 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1315883, + "thread": 23 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1435910, + "thread": 3 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1624732, + "thread": 9 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1718352, + "thread": 30 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1814656, + "thread": 30 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 1979747, + "thread": 18 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2272131, + "thread": 11 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2352111, + "thread": 10 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2538823, + "thread": 19 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2782269, + "thread": 23 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2872627, + "thread": 5 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 2996422, + "thread": 29 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 3269487, + "thread": 26 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 3339101, + "thread": 4 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 3509835, + "thread": 0 + } + }, + { + "amount": "127.245002759", + "slot": { + "period": 3706081, + "thread": 18 + } + }, + { + "amount": "127.245002762", + "slot": { + "period": 3788080, + "thread": 26 + } + } + ], + "AU12z5F41vHrtEAigWV5aVRM2anW8HDzBp8fesydSEqmUce3gro2": [ + { + "amount": "181.221977717", + "slot": { + "period": 35168, + "thread": 28 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 183922, + "thread": 22 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 393926, + "thread": 0 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 601909, + "thread": 29 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 781339, + "thread": 4 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 914560, + "thread": 9 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1088718, + "thread": 24 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1153328, + "thread": 10 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1344373, + "thread": 26 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1608713, + "thread": 2 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1695966, + "thread": 22 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1967671, + "thread": 2 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 1997126, + "thread": 12 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2189803, + "thread": 10 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2396025, + "thread": 27 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2584946, + "thread": 2 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2735759, + "thread": 11 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2909283, + "thread": 31 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 2999765, + "thread": 17 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 3136589, + "thread": 2 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 3299341, + "thread": 0 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 3523930, + "thread": 25 + } + }, + { + "amount": "181.221977717", + "slot": { + "period": 3721440, + "thread": 28 + } + }, + { + "amount": "181.221977708", + "slot": { + "period": 3787797, + "thread": 31 + } + } + ], + "AU12zeC4yDak8b52NVZv1K2Wx3NmZ8uWZDvZzrZZpzRyU7BsitHY": [ + { + "amount": "1305.001836958", + "slot": { + "period": 66208, + "thread": 4 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 211345, + "thread": 20 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 355019, + "thread": 23 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 600896, + "thread": 0 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 792710, + "thread": 24 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 970684, + "thread": 19 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1046367, + "thread": 3 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1229563, + "thread": 6 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1344036, + "thread": 4 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1607835, + "thread": 29 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1693898, + "thread": 17 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 1854516, + "thread": 13 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2114289, + "thread": 23 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2244960, + "thread": 6 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2377045, + "thread": 1 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2493681, + "thread": 1 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2676579, + "thread": 28 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2867024, + "thread": 6 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 2996999, + "thread": 15 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 3149794, + "thread": 25 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 3371156, + "thread": 12 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 3475244, + "thread": 27 + } + }, + { + "amount": "1305.001836958", + "slot": { + "period": 3621510, + "thread": 9 + } + }, + { + "amount": "1305.001836957", + "slot": { + "period": 3782582, + "thread": 12 + } + } + ], + "AU12zqvcvnNPqC8savVBP8arvYL2HVUPnVU1nk3nZbSUzNQ7xkbk": [ + { + "amount": "169.898304600", + "slot": { + "period": 93513, + "thread": 31 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 272068, + "thread": 11 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 477240, + "thread": 16 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 507522, + "thread": 8 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 724608, + "thread": 15 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 950661, + "thread": 10 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1143761, + "thread": 21 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1260661, + "thread": 20 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1341916, + "thread": 15 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1515831, + "thread": 13 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1689528, + "thread": 4 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 1918225, + "thread": 18 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2100773, + "thread": 4 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2211901, + "thread": 19 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2318139, + "thread": 21 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2553107, + "thread": 16 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2649169, + "thread": 28 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 2879251, + "thread": 10 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 3107821, + "thread": 21 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 3181057, + "thread": 12 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 3293986, + "thread": 25 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 3493603, + "thread": 4 + } + }, + { + "amount": "169.898304600", + "slot": { + "period": 3671363, + "thread": 25 + } + }, + { + "amount": "169.898304603", + "slot": { + "period": 3787356, + "thread": 1 + } + } + ], + "AU133hPRipqcmXmJPr7g489Q5r1RBrTtTQcaSaWKtanWgsJF3Eqv": [ + { + "amount": "628.426012708", + "slot": { + "period": 37900, + "thread": 20 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 286498, + "thread": 4 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 369000, + "thread": 26 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 602355, + "thread": 15 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 708801, + "thread": 11 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 928736, + "thread": 10 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1040002, + "thread": 26 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1195376, + "thread": 13 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1375758, + "thread": 18 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1580001, + "thread": 29 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1680841, + "thread": 29 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 1938635, + "thread": 13 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2059272, + "thread": 7 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2192896, + "thread": 31 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2434097, + "thread": 9 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2499252, + "thread": 0 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2697949, + "thread": 2 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 2888621, + "thread": 29 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 3086199, + "thread": 29 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 3206925, + "thread": 0 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 3327652, + "thread": 14 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 3527052, + "thread": 17 + } + }, + { + "amount": "628.426012708", + "slot": { + "period": 3633058, + "thread": 15 + } + }, + { + "amount": "628.426012719", + "slot": { + "period": 3795475, + "thread": 19 + } + } + ], + "AU135Lv8KBFN7CcjxZ7VMVvS9ZC8UrXUPAs6rgLimLHtofLqTC6s": [ + { + "amount": "352.611618038", + "slot": { + "period": 119931, + "thread": 20 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 182948, + "thread": 30 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 489992, + "thread": 19 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 499183, + "thread": 22 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 794353, + "thread": 12 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 980023, + "thread": 7 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1083981, + "thread": 31 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1281085, + "thread": 27 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1341917, + "thread": 3 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1555629, + "thread": 23 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1753957, + "thread": 26 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1849374, + "thread": 15 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 1986037, + "thread": 8 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2236467, + "thread": 0 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2409421, + "thread": 20 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2470831, + "thread": 1 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2764765, + "thread": 16 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2872047, + "thread": 8 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 2996804, + "thread": 13 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 3192003, + "thread": 30 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 3333809, + "thread": 16 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 3557637, + "thread": 25 + } + }, + { + "amount": "352.611618038", + "slot": { + "period": 3777048, + "thread": 24 + } + }, + { + "amount": "352.611618034", + "slot": { + "period": 3924026, + "thread": 2 + } + } + ], + "AU135V2aFwaRkcgLVaHFD5QLNnJZ31ffMuk6Wp2Pma4Z97qHB9U7": [ + { + "amount": "331.176980554", + "slot": { + "period": 68343, + "thread": 22 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 216636, + "thread": 8 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 415877, + "thread": 0 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 555578, + "thread": 20 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 672083, + "thread": 28 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 939680, + "thread": 31 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1080477, + "thread": 29 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1295946, + "thread": 12 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1438927, + "thread": 5 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1491568, + "thread": 26 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1777417, + "thread": 31 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 1881801, + "thread": 23 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2077221, + "thread": 25 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2145428, + "thread": 2 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2360319, + "thread": 7 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2505176, + "thread": 1 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2658714, + "thread": 24 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2890309, + "thread": 2 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 2972284, + "thread": 18 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 3193028, + "thread": 18 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 3341880, + "thread": 11 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 3560340, + "thread": 21 + } + }, + { + "amount": "331.176980554", + "slot": { + "period": 3709261, + "thread": 15 + } + }, + { + "amount": "331.176980555", + "slot": { + "period": 3920393, + "thread": 26 + } + } + ], + "AU136ySscLzGE6n2vfJu4SATkSvG5giSPHpi8FisHCw4qBSPUdxJ": [ + { + "amount": "72.231240021", + "slot": { + "period": 73483, + "thread": 4 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 188270, + "thread": 2 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 443436, + "thread": 18 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 601448, + "thread": 19 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 670951, + "thread": 15 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 847638, + "thread": 1 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1144928, + "thread": 19 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1221073, + "thread": 23 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1354680, + "thread": 17 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1534346, + "thread": 11 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1652068, + "thread": 23 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 1880593, + "thread": 0 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2005526, + "thread": 19 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2216946, + "thread": 16 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2313797, + "thread": 24 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2499894, + "thread": 3 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2670816, + "thread": 12 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 2923270, + "thread": 17 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 3110581, + "thread": 22 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 3123028, + "thread": 20 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 3361693, + "thread": 9 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 3483577, + "thread": 16 + } + }, + { + "amount": "72.231240021", + "slot": { + "period": 3777777, + "thread": 8 + } + }, + { + "amount": "72.231240027", + "slot": { + "period": 3900883, + "thread": 24 + } + } + ], + "AU136zpX6UhVZ633MCacRTW8oUEvS1tQLWVpQZTPpAro5DXBJsG6": [ + { + "amount": "127.404486973", + "slot": { + "period": 41003, + "thread": 2 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 215471, + "thread": 23 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 374151, + "thread": 17 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 652217, + "thread": 19 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 794988, + "thread": 7 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 954624, + "thread": 4 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1015315, + "thread": 29 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1265427, + "thread": 12 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1427745, + "thread": 18 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1635387, + "thread": 29 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1732344, + "thread": 26 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 1935527, + "thread": 7 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2114417, + "thread": 30 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2188495, + "thread": 1 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2432905, + "thread": 26 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2522837, + "thread": 30 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2716510, + "thread": 0 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 2938443, + "thread": 16 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 3115111, + "thread": 29 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 3257394, + "thread": 24 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 3346319, + "thread": 29 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 3473775, + "thread": 27 + } + }, + { + "amount": "127.404486973", + "slot": { + "period": 3732103, + "thread": 13 + } + }, + { + "amount": "127.404486976", + "slot": { + "period": 3786633, + "thread": 16 + } + } + ], + "AU137EwGGixwQdjKvEBXj5UCNNtyMHcrw4x7h6ek2KWmThR474es": [ + { + "amount": "115.233056592", + "slot": { + "period": 97137, + "thread": 27 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 226653, + "thread": 31 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 327384, + "thread": 16 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 636555, + "thread": 7 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 801469, + "thread": 14 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 853729, + "thread": 16 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1057164, + "thread": 2 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1316469, + "thread": 7 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1345387, + "thread": 6 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1577299, + "thread": 5 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1693170, + "thread": 16 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 1923832, + "thread": 2 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2085806, + "thread": 10 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2153250, + "thread": 1 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2434991, + "thread": 20 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2492020, + "thread": 31 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2709812, + "thread": 18 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 2816264, + "thread": 1 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 3077113, + "thread": 2 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 3268602, + "thread": 5 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 3305238, + "thread": 11 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 3584682, + "thread": 25 + } + }, + { + "amount": "115.233056592", + "slot": { + "period": 3658031, + "thread": 26 + } + }, + { + "amount": "115.233056596", + "slot": { + "period": 3878999, + "thread": 22 + } + } + ], + "AU137bYvNXsvxaF8kb6xCS2dmYGggH5fqJt1q35gtecPWSR2uHXk": [ + { + "amount": "126.737254114", + "slot": { + "period": 127053, + "thread": 9 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 172839, + "thread": 16 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 479784, + "thread": 23 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 629756, + "thread": 27 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 661290, + "thread": 30 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 938680, + "thread": 0 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1044450, + "thread": 6 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1228680, + "thread": 17 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1424895, + "thread": 11 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1637935, + "thread": 27 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1758306, + "thread": 2 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 1824440, + "thread": 30 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2021137, + "thread": 25 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2198225, + "thread": 19 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2392246, + "thread": 5 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2492563, + "thread": 23 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2701621, + "thread": 0 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 2841625, + "thread": 26 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3090270, + "thread": 6 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3276891, + "thread": 11 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3421996, + "thread": 10 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3589710, + "thread": 21 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3693286, + "thread": 15 + } + }, + { + "amount": "126.737254114", + "slot": { + "period": 3823695, + "thread": 5 + } + } + ], + "AU138cvoTxsskcosSmgV6ppobgvcgADUdAmSGg7gbh88mqrvz48s": [ + { + "amount": "57.369037010", + "slot": { + "period": 146233, + "thread": 12 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 222924, + "thread": 16 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 446887, + "thread": 7 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 574097, + "thread": 14 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 820129, + "thread": 16 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 956454, + "thread": 31 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 985129, + "thread": 20 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 1219387, + "thread": 3 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 1336355, + "thread": 30 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 1573251, + "thread": 7 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 1670750, + "thread": 18 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 1961777, + "thread": 8 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2091878, + "thread": 1 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2278715, + "thread": 26 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2303701, + "thread": 0 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2604566, + "thread": 12 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2647671, + "thread": 18 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 2890916, + "thread": 17 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 3091586, + "thread": 9 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 3271165, + "thread": 19 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 3417950, + "thread": 21 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 3577515, + "thread": 24 + } + }, + { + "amount": "57.369037010", + "slot": { + "period": 3714783, + "thread": 12 + } + }, + { + "amount": "57.369036999", + "slot": { + "period": 3820324, + "thread": 2 + } + } + ], + "AU139CULvgUC9MVaNFi1aSy2iKupHrGn6Ai7Fr7S6PXdqMEY78Kp": [ + { + "amount": "122.864740199", + "slot": { + "period": 98120, + "thread": 12 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 198904, + "thread": 24 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 439023, + "thread": 8 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 572310, + "thread": 9 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 771133, + "thread": 26 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 881325, + "thread": 5 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1144690, + "thread": 4 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1292042, + "thread": 15 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1328282, + "thread": 1 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1635462, + "thread": 19 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1662829, + "thread": 7 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 1868812, + "thread": 29 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2095034, + "thread": 0 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2145185, + "thread": 25 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2329649, + "thread": 28 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2540835, + "thread": 0 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2690245, + "thread": 20 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 2826727, + "thread": 18 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 3098879, + "thread": 26 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 3226104, + "thread": 6 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 3401750, + "thread": 20 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 3476220, + "thread": 22 + } + }, + { + "amount": "122.864740199", + "slot": { + "period": 3754964, + "thread": 11 + } + }, + { + "amount": "122.864740193", + "slot": { + "period": 3897471, + "thread": 20 + } + } + ], + "AU139rBNZPWk2AyCorJUAspvuJKYs8bn5CYNeahhwJz6j1Rtgs5R": [ + { + "amount": "185.828416832", + "slot": { + "period": 43949, + "thread": 31 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 193123, + "thread": 30 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 464047, + "thread": 1 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 582514, + "thread": 1 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 718711, + "thread": 9 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 904223, + "thread": 24 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1018427, + "thread": 28 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1278663, + "thread": 11 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1328895, + "thread": 8 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1485287, + "thread": 0 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1757142, + "thread": 21 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 1917250, + "thread": 20 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2048403, + "thread": 5 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2228080, + "thread": 2 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2368142, + "thread": 26 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2503417, + "thread": 27 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2773292, + "thread": 29 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 2854065, + "thread": 18 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 3041480, + "thread": 18 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 3259749, + "thread": 11 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 3327630, + "thread": 18 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 3507626, + "thread": 24 + } + }, + { + "amount": "185.828416832", + "slot": { + "period": 3708807, + "thread": 5 + } + }, + { + "amount": "185.828416823", + "slot": { + "period": 3927617, + "thread": 27 + } + } + ], + "AU13B7b4dZmwxpwHCCyYfe7cJgiEyeEcpixZpii1XbQTnMSnJkJg": [ + { + "amount": "90.780895302", + "slot": { + "period": 17259, + "thread": 4 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 237649, + "thread": 16 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 420976, + "thread": 22 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 617760, + "thread": 0 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 742439, + "thread": 28 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 917020, + "thread": 29 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1032976, + "thread": 20 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1203799, + "thread": 7 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1344644, + "thread": 12 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1574431, + "thread": 21 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1731061, + "thread": 14 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 1855261, + "thread": 22 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2026547, + "thread": 3 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2158872, + "thread": 29 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2427465, + "thread": 22 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2539879, + "thread": 10 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2784927, + "thread": 21 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 2935418, + "thread": 7 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 3073015, + "thread": 29 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 3267460, + "thread": 0 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 3311996, + "thread": 6 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 3522871, + "thread": 2 + } + }, + { + "amount": "90.780895302", + "slot": { + "period": 3715395, + "thread": 25 + } + }, + { + "amount": "90.780895306", + "slot": { + "period": 3864494, + "thread": 18 + } + } + ], + "AU13Bcgjbh7j7G68jF1BMzjtjRJB7A4FMJrijQuaAJ9NirN3whm5": [ + { + "amount": "52.020303162", + "slot": { + "period": 87428, + "thread": 12 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 281564, + "thread": 21 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 329318, + "thread": 12 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 494576, + "thread": 19 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 714329, + "thread": 18 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 824374, + "thread": 25 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1005145, + "thread": 6 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1259121, + "thread": 21 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1420429, + "thread": 7 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1642919, + "thread": 28 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1748043, + "thread": 10 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 1920218, + "thread": 25 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2033367, + "thread": 29 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2275078, + "thread": 14 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2330949, + "thread": 16 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2530851, + "thread": 31 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2774073, + "thread": 11 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2806233, + "thread": 23 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 2987158, + "thread": 12 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 3256412, + "thread": 23 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 3320560, + "thread": 26 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 3581684, + "thread": 25 + } + }, + { + "amount": "52.020303162", + "slot": { + "period": 3708825, + "thread": 3 + } + }, + { + "amount": "52.020303169", + "slot": { + "period": 3847289, + "thread": 24 + } + } + ], + "AU13BpUcrrk6Rs5J9pbtPMa8xN43Z26j3CsEaARu8XKAzNrmVLYL": [ + { + "amount": "199.589874920", + "slot": { + "period": 63430, + "thread": 8 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 178062, + "thread": 12 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 354584, + "thread": 8 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 552614, + "thread": 10 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 716442, + "thread": 30 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 910084, + "thread": 19 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1042298, + "thread": 11 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1273472, + "thread": 2 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1373763, + "thread": 11 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1601390, + "thread": 12 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1755553, + "thread": 9 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 1941816, + "thread": 6 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2128652, + "thread": 26 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2191409, + "thread": 11 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2325529, + "thread": 28 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2559900, + "thread": 7 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2766419, + "thread": 27 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 2854812, + "thread": 28 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 3062617, + "thread": 30 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 3134188, + "thread": 19 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 3386816, + "thread": 11 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 3487659, + "thread": 24 + } + }, + { + "amount": "199.589874920", + "slot": { + "period": 3682710, + "thread": 30 + } + }, + { + "amount": "199.589874919", + "slot": { + "period": 3897361, + "thread": 14 + } + } + ], + "AU13CbWDpffXCyAFHUYzfdrJxCzhE1yf7fDQDrAqJLR8T3CakDqP": [ + { + "amount": "55.182936881", + "slot": { + "period": 94422, + "thread": 16 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 299667, + "thread": 31 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 370720, + "thread": 15 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 517107, + "thread": 22 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 800192, + "thread": 9 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 870110, + "thread": 4 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 996289, + "thread": 11 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 1201260, + "thread": 6 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 1400308, + "thread": 15 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 1537259, + "thread": 10 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 1666374, + "thread": 30 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 1874818, + "thread": 22 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2119169, + "thread": 9 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2275059, + "thread": 23 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2385256, + "thread": 14 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2575960, + "thread": 26 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2682192, + "thread": 23 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2797123, + "thread": 11 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 2970578, + "thread": 8 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 3183918, + "thread": 12 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 3445510, + "thread": 2 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 3520911, + "thread": 5 + } + }, + { + "amount": "55.182936881", + "slot": { + "period": 3744605, + "thread": 11 + } + }, + { + "amount": "55.182936874", + "slot": { + "period": 3908947, + "thread": 29 + } + } + ], + "AU13DeKv3sYfFBfAmh9dQxVevUSQsuyRXu75h17kxoLXij73no6s": [ + { + "amount": "275.297919605", + "slot": { + "period": 151801, + "thread": 14 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 320437, + "thread": 23 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 417666, + "thread": 28 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 645422, + "thread": 31 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 723323, + "thread": 7 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 933441, + "thread": 6 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1025486, + "thread": 6 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1151454, + "thread": 9 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1461417, + "thread": 2 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1523346, + "thread": 26 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1704580, + "thread": 0 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 1844820, + "thread": 7 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2002105, + "thread": 3 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2263356, + "thread": 28 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2394733, + "thread": 7 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2493299, + "thread": 18 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2640264, + "thread": 13 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 2803900, + "thread": 30 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 3078045, + "thread": 2 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 3254415, + "thread": 19 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 3405059, + "thread": 22 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 3515395, + "thread": 21 + } + }, + { + "amount": "275.297919605", + "slot": { + "period": 3736119, + "thread": 23 + } + }, + { + "amount": "275.297919595", + "slot": { + "period": 3821744, + "thread": 3 + } + } + ], + "AU13DoJTd4R6BM1cxwwqvMxfRNRbv9yPKchD1PzYZLGg7xmp2fwZ": [ + { + "amount": "195.502589339", + "slot": { + "period": 104755, + "thread": 19 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 179111, + "thread": 23 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 381292, + "thread": 14 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 540216, + "thread": 16 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 802344, + "thread": 26 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 947339, + "thread": 22 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1083643, + "thread": 20 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1238792, + "thread": 2 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1332195, + "thread": 3 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1624168, + "thread": 25 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1704040, + "thread": 26 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 1886349, + "thread": 7 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2047810, + "thread": 0 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2206377, + "thread": 23 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2323485, + "thread": 7 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2597327, + "thread": 6 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2765966, + "thread": 18 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 2898112, + "thread": 16 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 3084113, + "thread": 17 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 3144611, + "thread": 21 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 3374808, + "thread": 13 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 3579197, + "thread": 24 + } + }, + { + "amount": "195.502589339", + "slot": { + "period": 3696890, + "thread": 6 + } + }, + { + "amount": "195.502589332", + "slot": { + "period": 3787140, + "thread": 27 + } + } + ], + "AU13E8NvPfSphXa6iLwMemBUERkKyGxSCc5iLoVKqhyW5uJaqjbL": [ + { + "amount": "244.523814127", + "slot": { + "period": 110681, + "thread": 24 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 225160, + "thread": 0 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 360582, + "thread": 19 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 618986, + "thread": 27 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 668686, + "thread": 12 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 833168, + "thread": 14 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1044460, + "thread": 26 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1279397, + "thread": 13 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1413788, + "thread": 1 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1594607, + "thread": 5 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1709630, + "thread": 7 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 1948746, + "thread": 1 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2040427, + "thread": 29 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2267555, + "thread": 22 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2315132, + "thread": 12 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2544940, + "thread": 0 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2713979, + "thread": 3 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 2856697, + "thread": 14 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 3074018, + "thread": 27 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 3202980, + "thread": 22 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 3377275, + "thread": 19 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 3465849, + "thread": 20 + } + }, + { + "amount": "244.523814127", + "slot": { + "period": 3683073, + "thread": 25 + } + }, + { + "amount": "244.523814125", + "slot": { + "period": 3919320, + "thread": 6 + } + } + ], + "AU13FEKJLShWAM4ADWJVUPfKuFLhpfj2E2fV1zK32r2CBzkGcg1L": [ + { + "amount": "51.894226924", + "slot": { + "period": 30788, + "thread": 24 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 311087, + "thread": 15 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 437148, + "thread": 2 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 610976, + "thread": 9 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 723381, + "thread": 14 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 850722, + "thread": 4 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1110526, + "thread": 24 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1154571, + "thread": 14 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1329353, + "thread": 12 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1517094, + "thread": 6 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1679231, + "thread": 15 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 1892511, + "thread": 6 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2009600, + "thread": 23 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2233460, + "thread": 31 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2330493, + "thread": 21 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2555445, + "thread": 12 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2666347, + "thread": 27 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2910766, + "thread": 7 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 2960837, + "thread": 22 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 3152055, + "thread": 5 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 3426493, + "thread": 18 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 3529221, + "thread": 15 + } + }, + { + "amount": "51.894226924", + "slot": { + "period": 3756868, + "thread": 25 + } + }, + { + "amount": "51.894226913", + "slot": { + "period": 3879120, + "thread": 18 + } + } + ], + "AU13GCq18LUMoDXpHAErrXi6JFGpzT3zhWS8C4FRaKrtwbgtPEVr": [ + { + "amount": "76.395389450", + "slot": { + "period": 135590, + "thread": 8 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 188654, + "thread": 15 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 460113, + "thread": 24 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 501544, + "thread": 0 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 683253, + "thread": 7 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 871582, + "thread": 22 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1095488, + "thread": 21 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1178146, + "thread": 27 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1363964, + "thread": 27 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1511080, + "thread": 27 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1743858, + "thread": 29 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1841866, + "thread": 0 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 1982315, + "thread": 14 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 2159956, + "thread": 17 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 2338466, + "thread": 17 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 2541952, + "thread": 30 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 2709349, + "thread": 3 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 2834409, + "thread": 1 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 3087654, + "thread": 13 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 3249095, + "thread": 0 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 3373429, + "thread": 3 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 3515555, + "thread": 23 + } + }, + { + "amount": "76.395389450", + "slot": { + "period": 3711591, + "thread": 25 + } + }, + { + "amount": "76.395389449", + "slot": { + "period": 3796738, + "thread": 27 + } + } + ], + "AU13GrT1xwjnkjxgLzZC99bMEaaNno4SFMJp7rKdfcqSRuDh6XfK": [ + { + "amount": "251.935153530", + "slot": { + "period": 27795, + "thread": 13 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 269214, + "thread": 22 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 424580, + "thread": 18 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 576483, + "thread": 7 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 792889, + "thread": 9 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 958001, + "thread": 22 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1002853, + "thread": 19 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1301982, + "thread": 0 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1421486, + "thread": 11 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1597893, + "thread": 5 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1717073, + "thread": 7 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1865756, + "thread": 7 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 1989560, + "thread": 4 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 2155389, + "thread": 20 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 2408346, + "thread": 20 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 2487546, + "thread": 31 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 2738034, + "thread": 22 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 2896346, + "thread": 0 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 3063886, + "thread": 8 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 3208569, + "thread": 17 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 3339180, + "thread": 3 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 3556963, + "thread": 10 + } + }, + { + "amount": "251.935153530", + "slot": { + "period": 3673204, + "thread": 7 + } + }, + { + "amount": "251.935153535", + "slot": { + "period": 3932361, + "thread": 26 + } + } + ], + "AU13GxC7kZomXKtMmW6ygcWN2LyejWdh87FcMayiX9SyKXud1gHb": [ + { + "amount": "286.337478439", + "slot": { + "period": 47662, + "thread": 20 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 239225, + "thread": 26 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 481202, + "thread": 9 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 528537, + "thread": 7 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 688056, + "thread": 5 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 853500, + "thread": 2 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 997708, + "thread": 25 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 1240500, + "thread": 20 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 1463756, + "thread": 19 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 1536301, + "thread": 27 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 1659470, + "thread": 7 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 1818663, + "thread": 7 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2051537, + "thread": 22 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2282423, + "thread": 19 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2303022, + "thread": 11 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2545749, + "thread": 5 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2768277, + "thread": 10 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2802844, + "thread": 16 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 2957488, + "thread": 7 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 3252050, + "thread": 27 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 3307497, + "thread": 29 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 3570396, + "thread": 28 + } + }, + { + "amount": "286.337478439", + "slot": { + "period": 3628331, + "thread": 17 + } + }, + { + "amount": "286.337478430", + "slot": { + "period": 3821101, + "thread": 9 + } + } + ], + "AU13GyJrVmET4fefVTzWoYX4FsCaGLqUhGigxZ5cZsswgkKjXPW1": [ + { + "amount": "348.054399179", + "slot": { + "period": 48780, + "thread": 5 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 266352, + "thread": 25 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 448740, + "thread": 23 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 587835, + "thread": 27 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 720255, + "thread": 27 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 934005, + "thread": 16 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1005873, + "thread": 22 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1183064, + "thread": 8 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1388467, + "thread": 31 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1554661, + "thread": 24 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1709597, + "thread": 0 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 1956189, + "thread": 1 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2085707, + "thread": 29 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2238463, + "thread": 25 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2380465, + "thread": 14 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2610633, + "thread": 18 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2760873, + "thread": 21 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 2834470, + "thread": 25 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 3009992, + "thread": 19 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 3224040, + "thread": 21 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 3398933, + "thread": 15 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 3485424, + "thread": 27 + } + }, + { + "amount": "348.054399179", + "slot": { + "period": 3642351, + "thread": 28 + } + }, + { + "amount": "348.054399175", + "slot": { + "period": 3897173, + "thread": 1 + } + } + ], + "AU13H7Z2VdkLHmJPTK2adah7uva6FzkPPuwV4pAjgYB7XWBpWC9W": [ + { + "amount": "90.923896840", + "slot": { + "period": 106265, + "thread": 1 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 191524, + "thread": 27 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 347898, + "thread": 24 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 551761, + "thread": 2 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 719336, + "thread": 5 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 874740, + "thread": 6 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1015064, + "thread": 19 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1201896, + "thread": 5 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1372435, + "thread": 11 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1582488, + "thread": 0 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1712390, + "thread": 9 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 1936975, + "thread": 26 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2137750, + "thread": 31 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2162713, + "thread": 27 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2442306, + "thread": 8 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2575999, + "thread": 14 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2711731, + "thread": 6 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 2851184, + "thread": 11 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 3106130, + "thread": 3 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 3242320, + "thread": 2 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 3300250, + "thread": 18 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 3516047, + "thread": 17 + } + }, + { + "amount": "90.923896840", + "slot": { + "period": 3636316, + "thread": 2 + } + }, + { + "amount": "90.923896844", + "slot": { + "period": 3812859, + "thread": 8 + } + } + ], + "AU13HPwF1JtBS43pBYzzQofE2kartoJBNaAZMksH6TXa63MuPjwp": [ + { + "amount": "437.500000000", + "slot": { + "period": 26399, + "thread": 13 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 182447, + "thread": 29 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 435164, + "thread": 31 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 517605, + "thread": 13 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 816911, + "thread": 1 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 838163, + "thread": 29 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1100543, + "thread": 11 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1204282, + "thread": 15 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1401357, + "thread": 15 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1633926, + "thread": 18 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1725825, + "thread": 15 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 1878634, + "thread": 24 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2094973, + "thread": 8 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2236874, + "thread": 6 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2309411, + "thread": 23 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2483659, + "thread": 1 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2774535, + "thread": 22 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 2791931, + "thread": 23 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3090512, + "thread": 20 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3204223, + "thread": 9 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3412605, + "thread": 9 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3500077, + "thread": 25 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3638878, + "thread": 26 + } + }, + { + "amount": "437.500000000", + "slot": { + "period": 3876312, + "thread": 10 + } + } + ], + "AU13JXi8XZDy365FU3stdir82NcK1SHNsXHWpdJmVwJSBpV56jqH": [ + { + "amount": "191.225799174", + "slot": { + "period": 96363, + "thread": 4 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 299503, + "thread": 18 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 378742, + "thread": 19 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 628751, + "thread": 31 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 691509, + "thread": 2 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 841798, + "thread": 8 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1092843, + "thread": 5 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1255720, + "thread": 24 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1465307, + "thread": 29 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1513707, + "thread": 28 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1794677, + "thread": 18 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 1941927, + "thread": 10 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2044143, + "thread": 5 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2159590, + "thread": 7 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2340524, + "thread": 10 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2570903, + "thread": 25 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2781920, + "thread": 19 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 2898870, + "thread": 10 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 3069387, + "thread": 20 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 3271558, + "thread": 3 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 3330258, + "thread": 18 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 3545889, + "thread": 27 + } + }, + { + "amount": "191.225799174", + "slot": { + "period": 3735416, + "thread": 24 + } + }, + { + "amount": "191.225799182", + "slot": { + "period": 3816293, + "thread": 23 + } + } + ], + "AU13JwktiH7vTp2dtYNrbptz8DZ5VXdZywHeWcau3wLndNbASFM1": [ + { + "amount": "169.406162938", + "slot": { + "period": 84626, + "thread": 20 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 225717, + "thread": 19 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 460504, + "thread": 0 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 494972, + "thread": 25 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 677651, + "thread": 8 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 835151, + "thread": 22 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 986308, + "thread": 15 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 1196417, + "thread": 9 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 1458522, + "thread": 14 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 1641948, + "thread": 3 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 1776873, + "thread": 19 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 1970492, + "thread": 13 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2001147, + "thread": 7 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2248691, + "thread": 3 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2311808, + "thread": 28 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2485737, + "thread": 8 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2632576, + "thread": 16 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 2858911, + "thread": 18 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 3098911, + "thread": 24 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 3121588, + "thread": 10 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 3324370, + "thread": 24 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 3494432, + "thread": 8 + } + }, + { + "amount": "169.406162938", + "slot": { + "period": 3675666, + "thread": 22 + } + }, + { + "amount": "169.406162930", + "slot": { + "period": 3795306, + "thread": 0 + } + } + ], + "AU13KeWdjRqPs31cAuqG3mAb5DWaj6X1U2Dbfase1eYMFrkyEGkN": [ + { + "amount": "88.544173324", + "slot": { + "period": 22615, + "thread": 0 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 175353, + "thread": 22 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 350932, + "thread": 18 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 650984, + "thread": 12 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 722967, + "thread": 6 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 914263, + "thread": 29 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1120164, + "thread": 18 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1220755, + "thread": 24 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1443175, + "thread": 26 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1602393, + "thread": 21 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1763205, + "thread": 27 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 1882808, + "thread": 15 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2000557, + "thread": 0 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2165793, + "thread": 5 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2383029, + "thread": 2 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2584583, + "thread": 16 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2749551, + "thread": 29 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2944483, + "thread": 21 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 2970065, + "thread": 0 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 3162777, + "thread": 11 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 3374576, + "thread": 12 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 3467404, + "thread": 7 + } + }, + { + "amount": "88.544173324", + "slot": { + "period": 3647318, + "thread": 17 + } + }, + { + "amount": "88.544173331", + "slot": { + "period": 3879528, + "thread": 25 + } + } + ], + "AU13LEYmE3X5vrocnVEehLS6kL13Y3DQUCQCmxT9v3ba1zVWFHwx": [ + { + "amount": "134.573022537", + "slot": { + "period": 108964, + "thread": 4 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 209212, + "thread": 15 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 433416, + "thread": 19 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 644143, + "thread": 21 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 755725, + "thread": 29 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 922642, + "thread": 29 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1062599, + "thread": 1 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1286786, + "thread": 11 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1321826, + "thread": 12 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1623787, + "thread": 2 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1682301, + "thread": 20 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 1835604, + "thread": 0 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2031538, + "thread": 20 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2226771, + "thread": 28 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2383357, + "thread": 23 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2606571, + "thread": 28 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2701567, + "thread": 1 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 2929265, + "thread": 29 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 3096490, + "thread": 0 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 3205359, + "thread": 24 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 3346192, + "thread": 25 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 3512315, + "thread": 13 + } + }, + { + "amount": "134.573022537", + "slot": { + "period": 3735287, + "thread": 27 + } + }, + { + "amount": "134.573022543", + "slot": { + "period": 3898087, + "thread": 4 + } + } + ], + "AU13MM8x4MNATHZuBEqKw3Sr2qgrG1KewSQZs6qHU4uDGrJmmivH": [ + { + "amount": "283.748139212", + "slot": { + "period": 37072, + "thread": 0 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 288393, + "thread": 26 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 336431, + "thread": 13 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 556801, + "thread": 19 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 734052, + "thread": 10 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 827830, + "thread": 12 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1045295, + "thread": 27 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1298873, + "thread": 4 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1403387, + "thread": 8 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1620187, + "thread": 24 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1672727, + "thread": 24 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 1820481, + "thread": 18 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2130458, + "thread": 15 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2159856, + "thread": 3 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2400133, + "thread": 16 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2528982, + "thread": 24 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2700050, + "thread": 16 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 2931871, + "thread": 17 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 3012697, + "thread": 17 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 3153331, + "thread": 29 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 3315275, + "thread": 31 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 3543135, + "thread": 26 + } + }, + { + "amount": "283.748139212", + "slot": { + "period": 3741089, + "thread": 15 + } + }, + { + "amount": "283.748139208", + "slot": { + "period": 3864935, + "thread": 31 + } + } + ], + "AU13MV5seUE5nNkx35dJD9CEYa37hJdCvnFbWmna7hYkAsFKuj6q": [ + { + "amount": "198.142749867", + "slot": { + "period": 40942, + "thread": 30 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 323449, + "thread": 20 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 343552, + "thread": 25 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 546792, + "thread": 6 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 783035, + "thread": 21 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 928730, + "thread": 17 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1014258, + "thread": 26 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1263933, + "thread": 24 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1464232, + "thread": 4 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1485120, + "thread": 14 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1708670, + "thread": 16 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 1826669, + "thread": 21 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2122598, + "thread": 7 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2249673, + "thread": 17 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2413155, + "thread": 24 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2605335, + "thread": 9 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2665660, + "thread": 11 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 2804020, + "thread": 3 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 3117773, + "thread": 30 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 3123952, + "thread": 9 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 3372989, + "thread": 11 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 3607843, + "thread": 4 + } + }, + { + "amount": "198.142749867", + "slot": { + "period": 3632557, + "thread": 25 + } + }, + { + "amount": "198.142749864", + "slot": { + "period": 3868180, + "thread": 24 + } + } + ], + "AU13Nr1YvKNZ5CeRyTJZvNzksRwvNyM5s8X5e6MZzWVGTjJjckHD": [ + { + "amount": "83.800417623", + "slot": { + "period": 45407, + "thread": 10 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 308094, + "thread": 12 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 356006, + "thread": 2 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 537659, + "thread": 6 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 810970, + "thread": 13 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 907370, + "thread": 31 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1131421, + "thread": 24 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1220079, + "thread": 9 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1448349, + "thread": 3 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1577381, + "thread": 6 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1708471, + "thread": 24 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 1880212, + "thread": 30 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2058838, + "thread": 27 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2199301, + "thread": 19 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2370996, + "thread": 0 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2504647, + "thread": 14 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2625339, + "thread": 10 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2949404, + "thread": 27 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 2984854, + "thread": 9 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 3204858, + "thread": 2 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 3324959, + "thread": 16 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 3466613, + "thread": 11 + } + }, + { + "amount": "83.800417623", + "slot": { + "period": 3708005, + "thread": 8 + } + }, + { + "amount": "83.800417620", + "slot": { + "period": 3830499, + "thread": 28 + } + } + ], + "AU13PeEQfFossdMtVvYUdQaaqA9UBzAS6BQBLvE3uJeANrXLHVzo": [ + { + "amount": "385.192424054", + "slot": { + "period": 162762, + "thread": 19 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 316921, + "thread": 7 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 489775, + "thread": 15 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 621627, + "thread": 7 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 747881, + "thread": 30 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 886911, + "thread": 18 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1084555, + "thread": 9 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1293740, + "thread": 3 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1471628, + "thread": 26 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1542276, + "thread": 31 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1654873, + "thread": 5 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 1896482, + "thread": 19 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2143031, + "thread": 10 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2189825, + "thread": 28 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2403025, + "thread": 30 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2522399, + "thread": 18 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2687340, + "thread": 26 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 2817105, + "thread": 31 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 3050119, + "thread": 2 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 3208278, + "thread": 17 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 3355127, + "thread": 18 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 3597975, + "thread": 19 + } + }, + { + "amount": "385.192424054", + "slot": { + "period": 3721316, + "thread": 11 + } + }, + { + "amount": "385.192424064", + "slot": { + "period": 3849719, + "thread": 4 + } + } + ], + "AU13PmWJaBfZxAdSK6a8naDjww6Y1STz8LqUrKwssYLoaD8cQgYF": [ + { + "amount": "221.042392995", + "slot": { + "period": 19209, + "thread": 28 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 206132, + "thread": 24 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 342241, + "thread": 29 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 629594, + "thread": 24 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 656836, + "thread": 21 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 872769, + "thread": 4 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1086090, + "thread": 29 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1283070, + "thread": 12 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1448938, + "thread": 23 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1545061, + "thread": 5 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1724569, + "thread": 7 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 1885871, + "thread": 5 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2069782, + "thread": 23 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2246929, + "thread": 26 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2421610, + "thread": 7 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2582745, + "thread": 15 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2626808, + "thread": 31 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2807491, + "thread": 20 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 2957060, + "thread": 26 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 3209192, + "thread": 12 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 3331981, + "thread": 2 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 3590767, + "thread": 22 + } + }, + { + "amount": "221.042392995", + "slot": { + "period": 3766522, + "thread": 28 + } + }, + { + "amount": "221.042392998", + "slot": { + "period": 3916374, + "thread": 24 + } + } + ], + "AU13QMHdKeq3jFAqC6SnRWPrqcmFqDqBmBqLD4YLKvArm7FmPWrf": [ + { + "amount": "360.585719016", + "slot": { + "period": 141117, + "thread": 29 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 190145, + "thread": 17 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 463276, + "thread": 7 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 530452, + "thread": 1 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 675277, + "thread": 20 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 967834, + "thread": 17 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1110599, + "thread": 31 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1195689, + "thread": 29 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1337805, + "thread": 14 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1519619, + "thread": 26 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1648622, + "thread": 12 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 1902848, + "thread": 14 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2067283, + "thread": 28 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2285077, + "thread": 26 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2392177, + "thread": 4 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2605778, + "thread": 0 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2688739, + "thread": 12 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2839203, + "thread": 30 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 2962309, + "thread": 5 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 3279846, + "thread": 14 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 3395449, + "thread": 5 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 3467118, + "thread": 8 + } + }, + { + "amount": "360.585719016", + "slot": { + "period": 3664960, + "thread": 12 + } + }, + { + "amount": "360.585719025", + "slot": { + "period": 3783266, + "thread": 28 + } + } + ], + "AU13Qa5LuCGMufdDiPvaD3m1KYD8YnR6NmxUDKdw1jDvvRR6t3x4": [ + { + "amount": "504.540718158", + "slot": { + "period": 15244, + "thread": 5 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 234328, + "thread": 29 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 339936, + "thread": 10 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 544429, + "thread": 2 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 808164, + "thread": 30 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 915450, + "thread": 23 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1129163, + "thread": 20 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1276364, + "thread": 0 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1370881, + "thread": 22 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1535395, + "thread": 27 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1784671, + "thread": 14 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 1910262, + "thread": 21 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2014134, + "thread": 30 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2205171, + "thread": 1 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2317547, + "thread": 11 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2488337, + "thread": 13 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2769241, + "thread": 3 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 2878106, + "thread": 31 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 3112245, + "thread": 9 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 3250864, + "thread": 24 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 3384826, + "thread": 13 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 3545807, + "thread": 0 + } + }, + { + "amount": "504.540718158", + "slot": { + "period": 3686060, + "thread": 26 + } + }, + { + "amount": "504.540718159", + "slot": { + "period": 3796217, + "thread": 11 + } + } + ], + "AU13R4AQ4Jpa7js9DX6EzUg8SUTJuQ1PnG4Q3Mu46LjxLf6ud4WB": [ + { + "amount": "314.761262582", + "slot": { + "period": 125242, + "thread": 1 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 262199, + "thread": 23 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 375358, + "thread": 23 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 538231, + "thread": 18 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 739368, + "thread": 22 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 886815, + "thread": 5 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1143444, + "thread": 0 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1248230, + "thread": 10 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1408233, + "thread": 13 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1610730, + "thread": 27 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1705681, + "thread": 30 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 1891197, + "thread": 26 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2061994, + "thread": 13 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2189206, + "thread": 22 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2316292, + "thread": 2 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2544811, + "thread": 11 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2704349, + "thread": 0 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 2923915, + "thread": 1 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 3076136, + "thread": 23 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 3125172, + "thread": 8 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 3417653, + "thread": 28 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 3535490, + "thread": 12 + } + }, + { + "amount": "314.761262582", + "slot": { + "period": 3647275, + "thread": 23 + } + }, + { + "amount": "314.761262585", + "slot": { + "period": 3912945, + "thread": 0 + } + } + ], + "AU13RUWHt2uWNc3uohFu4iTJhAHbSYbTiKSrELEZNiFSwCXuV2uD": [ + { + "amount": "165.212255899", + "slot": { + "period": 127192, + "thread": 18 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 185991, + "thread": 8 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 347669, + "thread": 10 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 622977, + "thread": 11 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 735673, + "thread": 29 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 972180, + "thread": 29 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1031954, + "thread": 28 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1302739, + "thread": 3 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1380210, + "thread": 27 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1546743, + "thread": 1 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1680703, + "thread": 13 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 1823469, + "thread": 23 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2085939, + "thread": 19 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2154413, + "thread": 22 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2379819, + "thread": 29 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2525125, + "thread": 31 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2738907, + "thread": 17 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 2929750, + "thread": 12 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 3100052, + "thread": 5 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 3170964, + "thread": 4 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 3431094, + "thread": 18 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 3606187, + "thread": 16 + } + }, + { + "amount": "165.212255899", + "slot": { + "period": 3655577, + "thread": 10 + } + }, + { + "amount": "165.212255895", + "slot": { + "period": 3837605, + "thread": 25 + } + } + ], + "AU13Rybh5aES3DkX6aPEKLnbP4op6e7M9AtYBsY6icikgLcELuJZ": [ + { + "amount": "91.381089397", + "slot": { + "period": 47413, + "thread": 17 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 294455, + "thread": 30 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 345783, + "thread": 13 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 568988, + "thread": 24 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 741437, + "thread": 2 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 946326, + "thread": 23 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1012700, + "thread": 12 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1238308, + "thread": 31 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1413609, + "thread": 2 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1531225, + "thread": 21 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1772432, + "thread": 12 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 1891263, + "thread": 18 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2127487, + "thread": 28 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2221921, + "thread": 13 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2379050, + "thread": 28 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2477986, + "thread": 15 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2782477, + "thread": 13 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 2952109, + "thread": 5 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 3099490, + "thread": 29 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 3205371, + "thread": 1 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 3349647, + "thread": 23 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 3496158, + "thread": 12 + } + }, + { + "amount": "91.381089397", + "slot": { + "period": 3755767, + "thread": 27 + } + }, + { + "amount": "91.381089398", + "slot": { + "period": 3800436, + "thread": 5 + } + } + ], + "AU13S13tzRx7NFestW95P3C4FQBp3Um5sqUBQyZzde8ZF9hBCBWi": [ + { + "amount": "142.665611327", + "slot": { + "period": 110667, + "thread": 21 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 213369, + "thread": 9 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 448942, + "thread": 16 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 532127, + "thread": 13 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 804062, + "thread": 24 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 880341, + "thread": 18 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 983443, + "thread": 8 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 1295576, + "thread": 5 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 1371146, + "thread": 21 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 1621922, + "thread": 5 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 1767729, + "thread": 23 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 1942590, + "thread": 14 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2008528, + "thread": 9 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2200040, + "thread": 10 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2410413, + "thread": 29 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2611910, + "thread": 30 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2626417, + "thread": 1 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 2798282, + "thread": 13 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 3063775, + "thread": 18 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 3246145, + "thread": 8 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 3304642, + "thread": 5 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 3529185, + "thread": 4 + } + }, + { + "amount": "142.665611327", + "slot": { + "period": 3685491, + "thread": 17 + } + }, + { + "amount": "142.665611330", + "slot": { + "period": 3853899, + "thread": 30 + } + } + ], + "AU13TyHRndULDEtr9AtGogbZAADCzURarrpXhNu2wQQkoY8vH5cK": [ + { + "amount": "187.301658636", + "slot": { + "period": 82287, + "thread": 17 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 291449, + "thread": 7 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 373430, + "thread": 17 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 508477, + "thread": 23 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 724760, + "thread": 6 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 933495, + "thread": 5 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1029357, + "thread": 0 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1155643, + "thread": 11 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1386781, + "thread": 8 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1597267, + "thread": 14 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1731847, + "thread": 26 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 1870574, + "thread": 18 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2054834, + "thread": 13 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2147580, + "thread": 9 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2334849, + "thread": 6 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2578554, + "thread": 14 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2745461, + "thread": 20 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 2903627, + "thread": 3 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 3084074, + "thread": 30 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 3208370, + "thread": 25 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 3443106, + "thread": 29 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 3464458, + "thread": 19 + } + }, + { + "amount": "187.301658636", + "slot": { + "period": 3701496, + "thread": 26 + } + }, + { + "amount": "187.301658628", + "slot": { + "period": 3821365, + "thread": 11 + } + } + ], + "AU13UciaUVjeVZzYdGRDvECi8pziqNgLsE1ZDU4wtqs9QDtEt5RM": [ + { + "amount": "348.195699561", + "slot": { + "period": 88516, + "thread": 20 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 200712, + "thread": 22 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 362655, + "thread": 20 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 588572, + "thread": 2 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 716003, + "thread": 16 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 925235, + "thread": 24 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 992701, + "thread": 2 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 1272418, + "thread": 9 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 1360826, + "thread": 29 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 1571366, + "thread": 28 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 1732764, + "thread": 16 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 1840054, + "thread": 23 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2112083, + "thread": 21 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2218315, + "thread": 2 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2321438, + "thread": 3 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2602952, + "thread": 29 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2688794, + "thread": 4 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 2934516, + "thread": 4 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 3040587, + "thread": 31 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 3122168, + "thread": 12 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 3410534, + "thread": 16 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 3468546, + "thread": 13 + } + }, + { + "amount": "348.195699561", + "slot": { + "period": 3669439, + "thread": 13 + } + }, + { + "amount": "348.195699565", + "slot": { + "period": 3803750, + "thread": 9 + } + } + ], + "AU13Uf2gtSmWt4M1axmL88EYGY4dokSBK6tcmjkdg9sTXEayd5Ry": [ + { + "amount": "294.692253354", + "slot": { + "period": 35414, + "thread": 13 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 295044, + "thread": 28 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 393542, + "thread": 8 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 615671, + "thread": 23 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 663057, + "thread": 18 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 847095, + "thread": 29 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1091060, + "thread": 13 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1286135, + "thread": 22 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1473160, + "thread": 15 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1518112, + "thread": 1 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1664874, + "thread": 20 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 1859405, + "thread": 18 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2052304, + "thread": 4 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2199963, + "thread": 20 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2313335, + "thread": 1 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2579042, + "thread": 25 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2751799, + "thread": 23 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 2798484, + "thread": 1 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 3087976, + "thread": 9 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 3138223, + "thread": 5 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 3385526, + "thread": 11 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 3587684, + "thread": 2 + } + }, + { + "amount": "294.692253354", + "slot": { + "period": 3717220, + "thread": 11 + } + }, + { + "amount": "294.692253355", + "slot": { + "period": 3807326, + "thread": 27 + } + } + ], + "AU13XoD3AhNCJuZcZ7VvMksbWL15L3655jMrzcHSnLRquGasRsYX": [ + { + "amount": "430.979691751", + "slot": { + "period": 107880, + "thread": 13 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 257923, + "thread": 25 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 366094, + "thread": 2 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 604918, + "thread": 7 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 780433, + "thread": 21 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 856394, + "thread": 14 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1072103, + "thread": 2 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1280243, + "thread": 25 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1406886, + "thread": 16 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1519510, + "thread": 13 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1685834, + "thread": 6 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 1843968, + "thread": 17 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2002529, + "thread": 15 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2153978, + "thread": 16 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2441688, + "thread": 14 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2613212, + "thread": 31 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2777003, + "thread": 19 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 2912849, + "thread": 24 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 3032795, + "thread": 13 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 3222309, + "thread": 15 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 3413788, + "thread": 10 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 3470137, + "thread": 10 + } + }, + { + "amount": "430.979691751", + "slot": { + "period": 3765519, + "thread": 19 + } + }, + { + "amount": "430.979691743", + "slot": { + "period": 3918431, + "thread": 1 + } + } + ], + "AU13YBbPKmgQCz5gEPJ2BMD7UtBTpNAFNaUyadxFSGxNYGQsS2Ak": [ + { + "amount": "202.578133178", + "slot": { + "period": 89257, + "thread": 22 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 267437, + "thread": 3 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 423415, + "thread": 2 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 607100, + "thread": 28 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 811899, + "thread": 17 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 971781, + "thread": 13 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1028159, + "thread": 4 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1260498, + "thread": 26 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1376804, + "thread": 29 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1633145, + "thread": 24 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1770517, + "thread": 11 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 1814688, + "thread": 29 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2114468, + "thread": 29 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2275075, + "thread": 19 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2397574, + "thread": 12 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2555635, + "thread": 31 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2655752, + "thread": 14 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2868352, + "thread": 11 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 2980498, + "thread": 20 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 3154035, + "thread": 10 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 3317674, + "thread": 3 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 3468891, + "thread": 23 + } + }, + { + "amount": "202.578133178", + "slot": { + "period": 3754837, + "thread": 18 + } + }, + { + "amount": "202.578133173", + "slot": { + "period": 3796663, + "thread": 23 + } + } + ], + "AU13YsscHerox1YWZzbrUshaWdziBex5Tbcnbr44VzGQzRDMuQEn": [ + { + "amount": "331.511435009", + "slot": { + "period": 152881, + "thread": 4 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 211085, + "thread": 3 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 336552, + "thread": 27 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 491670, + "thread": 27 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 694944, + "thread": 9 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 928377, + "thread": 29 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1119758, + "thread": 2 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1182365, + "thread": 30 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1379075, + "thread": 17 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1487053, + "thread": 21 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1684267, + "thread": 0 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 1830012, + "thread": 14 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2089087, + "thread": 17 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2190490, + "thread": 20 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2436649, + "thread": 26 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2618602, + "thread": 3 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2789263, + "thread": 11 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 2889698, + "thread": 12 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 3099512, + "thread": 27 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 3135255, + "thread": 3 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 3336617, + "thread": 30 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 3562533, + "thread": 9 + } + }, + { + "amount": "331.511435009", + "slot": { + "period": 3684539, + "thread": 6 + } + }, + { + "amount": "331.511435013", + "slot": { + "period": 3810277, + "thread": 30 + } + } + ], + "AU13Zf44GTezMTsdS9JszQ9TbBBQhNefi8GBcgLpYMTvHGqnmKqt": [ + { + "amount": "2159.471851480", + "slot": { + "period": 95861, + "thread": 9 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 186687, + "thread": 26 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 485471, + "thread": 3 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 651659, + "thread": 5 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 752004, + "thread": 3 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 853663, + "thread": 1 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1066373, + "thread": 4 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1281253, + "thread": 0 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1446980, + "thread": 15 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1638382, + "thread": 28 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1666528, + "thread": 22 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 1849658, + "thread": 26 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2098313, + "thread": 9 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2224869, + "thread": 17 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2409472, + "thread": 27 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2526912, + "thread": 16 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2630459, + "thread": 25 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2825957, + "thread": 30 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 2993517, + "thread": 22 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 3191736, + "thread": 7 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 3309566, + "thread": 28 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 3558715, + "thread": 13 + } + }, + { + "amount": "2159.471851480", + "slot": { + "period": 3770868, + "thread": 29 + } + }, + { + "amount": "2159.471851495", + "slot": { + "period": 3798730, + "thread": 30 + } + } + ], + "AU13ZkurXpnzkHATQY9JPQoY28LJGoZUwvfFggGUjpGTh3FRhaQf": [ + { + "amount": "294.182673365", + "slot": { + "period": 21909, + "thread": 6 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 217429, + "thread": 3 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 390396, + "thread": 4 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 615125, + "thread": 5 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 793245, + "thread": 14 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 934344, + "thread": 10 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1126463, + "thread": 1 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1160115, + "thread": 13 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1397834, + "thread": 10 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1597244, + "thread": 9 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1788865, + "thread": 18 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 1923420, + "thread": 2 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2106239, + "thread": 22 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2256327, + "thread": 5 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2316511, + "thread": 6 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2490921, + "thread": 21 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2742524, + "thread": 11 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 2838081, + "thread": 2 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 3108681, + "thread": 15 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 3161994, + "thread": 0 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 3333087, + "thread": 5 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 3518529, + "thread": 27 + } + }, + { + "amount": "294.182673365", + "slot": { + "period": 3672747, + "thread": 12 + } + }, + { + "amount": "294.182673360", + "slot": { + "period": 3859838, + "thread": 14 + } + } + ], + "AU13aEa72BmE6MedD1KKSkFDPT6yT8RdHvHxhckiq4XTKCGzxNpU": [ + { + "amount": "261.149470401", + "slot": { + "period": 136491, + "thread": 1 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 264027, + "thread": 3 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 460129, + "thread": 0 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 588086, + "thread": 10 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 733918, + "thread": 3 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 937912, + "thread": 25 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1018180, + "thread": 23 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1253661, + "thread": 24 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1354746, + "thread": 25 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1492654, + "thread": 14 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1678256, + "thread": 15 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 1831883, + "thread": 1 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2138717, + "thread": 18 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2223811, + "thread": 3 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2305526, + "thread": 20 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2502569, + "thread": 18 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2658647, + "thread": 11 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 2833769, + "thread": 2 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 3025181, + "thread": 30 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 3250284, + "thread": 21 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 3343362, + "thread": 29 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 3451418, + "thread": 9 + } + }, + { + "amount": "261.149470401", + "slot": { + "period": 3762204, + "thread": 11 + } + }, + { + "amount": "261.149470410", + "slot": { + "period": 3847727, + "thread": 7 + } + } + ], + "AU13aGxgty82SzSm5zFoRJE2Ty9Nmg2aR5YvSP1XTkJ6k3bVSJsB": [ + { + "amount": "127.386558331", + "slot": { + "period": 133485, + "thread": 22 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 285866, + "thread": 13 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 486414, + "thread": 5 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 624733, + "thread": 0 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 732495, + "thread": 30 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 952133, + "thread": 22 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1018648, + "thread": 21 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1172804, + "thread": 6 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1328501, + "thread": 0 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1547713, + "thread": 6 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1718937, + "thread": 3 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 1947649, + "thread": 16 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2005808, + "thread": 0 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2214778, + "thread": 10 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2446013, + "thread": 15 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2571871, + "thread": 6 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2668340, + "thread": 26 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 2932694, + "thread": 3 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 3104629, + "thread": 18 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 3256861, + "thread": 17 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 3356217, + "thread": 19 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 3537684, + "thread": 21 + } + }, + { + "amount": "127.386558331", + "slot": { + "period": 3634619, + "thread": 15 + } + }, + { + "amount": "127.386558320", + "slot": { + "period": 3827329, + "thread": 16 + } + } + ], + "AU13aVaGUiAX9NgV2DsJWizYxznmQbD9AvNbeRGgKWVFYnejxjSG": [ + { + "amount": "145.273028554", + "slot": { + "period": 116579, + "thread": 21 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 222659, + "thread": 11 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 339327, + "thread": 16 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 493329, + "thread": 29 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 716436, + "thread": 12 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 965031, + "thread": 3 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1130238, + "thread": 5 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1198167, + "thread": 21 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1472674, + "thread": 15 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1520164, + "thread": 10 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1696950, + "thread": 19 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 1881862, + "thread": 26 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2129611, + "thread": 14 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2157805, + "thread": 26 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2299834, + "thread": 18 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2463033, + "thread": 6 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2750534, + "thread": 11 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 2947285, + "thread": 31 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 3118050, + "thread": 27 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 3182658, + "thread": 24 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 3437658, + "thread": 8 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 3494994, + "thread": 3 + } + }, + { + "amount": "145.273028554", + "slot": { + "period": 3631887, + "thread": 1 + } + }, + { + "amount": "145.273028547", + "slot": { + "period": 3809595, + "thread": 12 + } + } + ], + "AU13b5hyn8SEb2KqfZPv7xynGqAeXaGrwwp2zw95gsxKzHEZAK17": [ + { + "amount": "488.507688118", + "slot": { + "period": 69078, + "thread": 23 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 246640, + "thread": 16 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 448859, + "thread": 8 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 503132, + "thread": 17 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 662335, + "thread": 24 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 952337, + "thread": 5 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1067751, + "thread": 24 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1188876, + "thread": 13 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1396377, + "thread": 22 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1619680, + "thread": 30 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1789773, + "thread": 13 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 1831992, + "thread": 1 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2039593, + "thread": 1 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2278085, + "thread": 10 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2372879, + "thread": 21 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2521597, + "thread": 2 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2788997, + "thread": 22 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 2935219, + "thread": 17 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 3005820, + "thread": 25 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 3139673, + "thread": 16 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 3375434, + "thread": 18 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 3453493, + "thread": 2 + } + }, + { + "amount": "488.507688118", + "slot": { + "period": 3707705, + "thread": 4 + } + }, + { + "amount": "488.507688119", + "slot": { + "period": 3878072, + "thread": 4 + } + } + ], + "AU13bjRTEPAJGx8MUJAfMECjDV2R8uqSWe8yU44Q42zmTaZj9WEc": [ + { + "amount": "110.164652024", + "slot": { + "period": 100015, + "thread": 26 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 272029, + "thread": 25 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 448639, + "thread": 20 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 591040, + "thread": 29 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 816595, + "thread": 11 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 850914, + "thread": 25 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1059615, + "thread": 26 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1207145, + "thread": 13 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1394116, + "thread": 11 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1636474, + "thread": 22 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1675866, + "thread": 23 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1969807, + "thread": 10 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 1990036, + "thread": 14 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 2279249, + "thread": 5 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 2394956, + "thread": 24 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 2581646, + "thread": 24 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 2704229, + "thread": 14 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 2920351, + "thread": 1 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 3039858, + "thread": 14 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 3198924, + "thread": 19 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 3436062, + "thread": 30 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 3574647, + "thread": 22 + } + }, + { + "amount": "110.164652024", + "slot": { + "period": 3631273, + "thread": 0 + } + }, + { + "amount": "110.164652029", + "slot": { + "period": 3797317, + "thread": 28 + } + } + ], + "AU13coyYgFGFbViPkoZiNerJWEBDJcXxsEXdSK7BJsCmxDVZkwfA": [ + { + "amount": "118.696689094", + "slot": { + "period": 163806, + "thread": 10 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 258033, + "thread": 21 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 456810, + "thread": 12 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 501421, + "thread": 3 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 819837, + "thread": 21 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 941461, + "thread": 7 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1120082, + "thread": 13 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1196967, + "thread": 20 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1468979, + "thread": 26 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1484274, + "thread": 5 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1786632, + "thread": 14 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1872989, + "thread": 6 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 1978764, + "thread": 5 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 2177502, + "thread": 30 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 2296692, + "thread": 29 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 2536663, + "thread": 13 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 2721997, + "thread": 0 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 2906795, + "thread": 22 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 3108988, + "thread": 7 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 3125452, + "thread": 9 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 3291757, + "thread": 11 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 3451217, + "thread": 9 + } + }, + { + "amount": "118.696689094", + "slot": { + "period": 3625568, + "thread": 4 + } + }, + { + "amount": "118.696689099", + "slot": { + "period": 3836734, + "thread": 3 + } + } + ], + "AU13dHoh8dNTTMoH6AKYNsjPEmPoxZhLqkixtiFbhbGgWgv9wZv8": [ + { + "amount": "114.479717103", + "slot": { + "period": 155060, + "thread": 25 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 215416, + "thread": 5 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 491330, + "thread": 20 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 629533, + "thread": 7 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 735797, + "thread": 9 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 856224, + "thread": 4 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1020805, + "thread": 26 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1258270, + "thread": 6 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1344225, + "thread": 3 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1607939, + "thread": 26 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1652207, + "thread": 21 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 1893735, + "thread": 24 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2112347, + "thread": 20 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2285297, + "thread": 9 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2348277, + "thread": 11 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2600129, + "thread": 29 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2675219, + "thread": 22 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 2854865, + "thread": 17 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 3084081, + "thread": 3 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 3202202, + "thread": 1 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 3363145, + "thread": 28 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 3547589, + "thread": 19 + } + }, + { + "amount": "114.479717103", + "slot": { + "period": 3747927, + "thread": 26 + } + }, + { + "amount": "114.479717104", + "slot": { + "period": 3943033, + "thread": 28 + } + } + ], + "AU13dmK3mwuDRsDaQLDFVFys4RbWh6kwvtYLogMAJHpXKyfr3Z8u": [ + { + "amount": "269.303377962", + "slot": { + "period": 102680, + "thread": 6 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 221957, + "thread": 6 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 396458, + "thread": 30 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 501853, + "thread": 31 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 785612, + "thread": 19 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 946635, + "thread": 29 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1111236, + "thread": 10 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1291965, + "thread": 14 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1351657, + "thread": 2 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1541847, + "thread": 13 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1734147, + "thread": 12 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 1975554, + "thread": 2 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2114864, + "thread": 5 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2225867, + "thread": 10 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2304978, + "thread": 12 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2528596, + "thread": 8 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2724989, + "thread": 18 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 2868880, + "thread": 1 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 3074886, + "thread": 30 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 3258778, + "thread": 10 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 3329032, + "thread": 31 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 3569605, + "thread": 15 + } + }, + { + "amount": "269.303377962", + "slot": { + "period": 3688983, + "thread": 1 + } + }, + { + "amount": "269.303377956", + "slot": { + "period": 3819759, + "thread": 17 + } + } + ], + "AU13dpg7f2AMDtGcy5aDJakdtRwfrA8QgVxyJQtE51aiXai5ErwY": [ + { + "amount": "334.106601398", + "slot": { + "period": 91164, + "thread": 23 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 232860, + "thread": 24 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 341825, + "thread": 23 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 586813, + "thread": 9 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 676232, + "thread": 9 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 938818, + "thread": 10 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1051838, + "thread": 29 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1249286, + "thread": 24 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1471486, + "thread": 29 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1617998, + "thread": 13 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1733162, + "thread": 0 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 1826846, + "thread": 3 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2021597, + "thread": 31 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2254868, + "thread": 2 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2424109, + "thread": 28 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2533862, + "thread": 9 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2779504, + "thread": 16 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 2827906, + "thread": 29 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 3015428, + "thread": 13 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 3264806, + "thread": 13 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 3351841, + "thread": 20 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 3535111, + "thread": 11 + } + }, + { + "amount": "334.106601398", + "slot": { + "period": 3777417, + "thread": 12 + } + }, + { + "amount": "334.106601409", + "slot": { + "period": 3889673, + "thread": 20 + } + } + ], + "AU13eKg8jEhoAz6Bddw2kMdT15hHFgiguyh9FTzp7Gjm5VNqFbiw": [ + { + "amount": "705.033383490", + "slot": { + "period": 41552, + "thread": 27 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 218993, + "thread": 30 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 331186, + "thread": 9 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 523699, + "thread": 14 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 809651, + "thread": 28 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 906754, + "thread": 26 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1042166, + "thread": 13 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1210215, + "thread": 31 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1397996, + "thread": 4 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1600723, + "thread": 24 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1707113, + "thread": 22 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 1919499, + "thread": 23 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2070052, + "thread": 15 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2189751, + "thread": 25 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2460583, + "thread": 18 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2534779, + "thread": 13 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2736560, + "thread": 20 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 2861011, + "thread": 2 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 3009675, + "thread": 18 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 3173932, + "thread": 14 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 3353750, + "thread": 22 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 3500710, + "thread": 2 + } + }, + { + "amount": "705.033383490", + "slot": { + "period": 3779577, + "thread": 11 + } + }, + { + "amount": "705.033383494", + "slot": { + "period": 3826289, + "thread": 31 + } + } + ], + "AU13eMo3td5zZRrdm3BBkJwQFsuqiMU6rhZRsSb9NkXaTD6oJZwB": [ + { + "amount": "80.444216017", + "slot": { + "period": 60400, + "thread": 7 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 251289, + "thread": 17 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 373295, + "thread": 7 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 562793, + "thread": 1 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 818031, + "thread": 2 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 857875, + "thread": 22 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1132413, + "thread": 30 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1232025, + "thread": 16 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1454795, + "thread": 8 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1597973, + "thread": 3 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1704409, + "thread": 25 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1952191, + "thread": 27 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 1978391, + "thread": 16 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 2187969, + "thread": 21 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 2391977, + "thread": 7 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 2620593, + "thread": 8 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 2643413, + "thread": 14 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 2889481, + "thread": 25 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 3063596, + "thread": 1 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 3185572, + "thread": 4 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 3358465, + "thread": 11 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 3566203, + "thread": 24 + } + }, + { + "amount": "80.444216017", + "slot": { + "period": 3736034, + "thread": 7 + } + }, + { + "amount": "80.444216018", + "slot": { + "period": 3878827, + "thread": 16 + } + } + ], + "AU13eRNg8siWP8UqpkpuQ4PHvouqD38e8Sgfaqu2SDgnwd9RX1vC": [ + { + "amount": "65.091170370", + "slot": { + "period": 11674, + "thread": 6 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 260051, + "thread": 27 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 396332, + "thread": 7 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 612071, + "thread": 21 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 756616, + "thread": 28 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 827575, + "thread": 31 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1098147, + "thread": 13 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1300870, + "thread": 14 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1464214, + "thread": 10 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1573067, + "thread": 23 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1666354, + "thread": 2 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 1872777, + "thread": 17 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2010157, + "thread": 30 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2273311, + "thread": 24 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2298267, + "thread": 10 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2495586, + "thread": 5 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2719467, + "thread": 29 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 2819603, + "thread": 26 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 3090007, + "thread": 28 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 3199091, + "thread": 7 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 3356228, + "thread": 12 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 3548271, + "thread": 2 + } + }, + { + "amount": "65.091170370", + "slot": { + "period": 3774325, + "thread": 30 + } + }, + { + "amount": "65.091170360", + "slot": { + "period": 3795320, + "thread": 27 + } + } + ], + "AU13eqnRqiPssE2iVqjQFN1Fb8BxnS7nQin3ZPFqiMuuSJ1xdZn6": [ + { + "amount": "113.164009906", + "slot": { + "period": 18197, + "thread": 11 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 202780, + "thread": 14 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 344733, + "thread": 12 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 596528, + "thread": 2 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 663365, + "thread": 4 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 974217, + "thread": 5 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1066846, + "thread": 22 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1157168, + "thread": 11 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1422651, + "thread": 25 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1483180, + "thread": 16 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1744260, + "thread": 24 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 1812067, + "thread": 11 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2090937, + "thread": 4 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2247101, + "thread": 23 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2430350, + "thread": 19 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2614837, + "thread": 28 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2728700, + "thread": 3 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 2947175, + "thread": 28 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 3050483, + "thread": 25 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 3199311, + "thread": 11 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 3362211, + "thread": 6 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 3483170, + "thread": 4 + } + }, + { + "amount": "113.164009906", + "slot": { + "period": 3743308, + "thread": 17 + } + }, + { + "amount": "113.164009902", + "slot": { + "period": 3859979, + "thread": 21 + } + } + ], + "AU13fuDphuikWP2Uz7Q6CMJ67DccJyRZ2DqqhB4bvfRghuco62pT": [ + { + "amount": "243.959222799", + "slot": { + "period": 81794, + "thread": 23 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 274414, + "thread": 0 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 422517, + "thread": 31 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 511648, + "thread": 12 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 689117, + "thread": 14 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 967552, + "thread": 8 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1129619, + "thread": 18 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1312443, + "thread": 24 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1353985, + "thread": 17 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1534819, + "thread": 7 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1725010, + "thread": 31 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 1828537, + "thread": 31 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2060146, + "thread": 23 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2284595, + "thread": 23 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2437194, + "thread": 30 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2533226, + "thread": 19 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2762601, + "thread": 28 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 2887573, + "thread": 19 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 3008504, + "thread": 27 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 3224665, + "thread": 14 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 3372551, + "thread": 24 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 3609892, + "thread": 18 + } + }, + { + "amount": "243.959222799", + "slot": { + "period": 3653308, + "thread": 6 + } + }, + { + "amount": "243.959222803", + "slot": { + "period": 3935638, + "thread": 31 + } + } + ], + "AU13fxwJUyDpW61PHx1ZmeC2yH2dH87V4chwE18KReLf9Qc3ky2N": [ + { + "amount": "227.032818274", + "slot": { + "period": 124189, + "thread": 27 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 181244, + "thread": 1 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 325539, + "thread": 29 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 584450, + "thread": 29 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 759826, + "thread": 10 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 900510, + "thread": 6 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1098754, + "thread": 13 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1263840, + "thread": 9 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1466133, + "thread": 17 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1621615, + "thread": 3 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1710588, + "thread": 23 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 1942131, + "thread": 18 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2133895, + "thread": 13 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2157260, + "thread": 16 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2327515, + "thread": 7 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2470039, + "thread": 7 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2714772, + "thread": 6 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 2841844, + "thread": 25 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 3097913, + "thread": 23 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 3164965, + "thread": 31 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 3334953, + "thread": 0 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 3461092, + "thread": 23 + } + }, + { + "amount": "227.032818274", + "slot": { + "period": 3648878, + "thread": 10 + } + }, + { + "amount": "227.032818286", + "slot": { + "period": 3816519, + "thread": 13 + } + } + ], + "AU13gLc8NA9zBMiddy2oj8fWtnDTSG6WBmVpJCR72ueAE68eH98x": [ + { + "amount": "542.219762251", + "slot": { + "period": 81161, + "thread": 19 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 225783, + "thread": 2 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 387903, + "thread": 22 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 536492, + "thread": 31 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 697108, + "thread": 1 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 902762, + "thread": 25 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1146457, + "thread": 20 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1195205, + "thread": 8 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1462480, + "thread": 22 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1503239, + "thread": 19 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1728836, + "thread": 11 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 1853558, + "thread": 21 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2012053, + "thread": 0 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2276914, + "thread": 20 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2445468, + "thread": 8 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2615662, + "thread": 26 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2744651, + "thread": 15 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 2792489, + "thread": 12 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 3058815, + "thread": 28 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 3133764, + "thread": 24 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 3436171, + "thread": 2 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 3568806, + "thread": 1 + } + }, + { + "amount": "542.219762251", + "slot": { + "period": 3644320, + "thread": 15 + } + }, + { + "amount": "542.219762259", + "slot": { + "period": 3890706, + "thread": 6 + } + } + ], + "AU13gWcFKCgHEcfnU69SF9fyxrydbKmP6Aa8nkZMFGsf6i4fkt4c": [ + { + "amount": "413.514645903", + "slot": { + "period": 73438, + "thread": 31 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 306672, + "thread": 1 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 468964, + "thread": 15 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 591414, + "thread": 8 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 769634, + "thread": 14 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 963298, + "thread": 13 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1148048, + "thread": 0 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1315026, + "thread": 7 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1334414, + "thread": 23 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1596126, + "thread": 18 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1737067, + "thread": 14 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1922405, + "thread": 17 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 1986723, + "thread": 1 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 2164769, + "thread": 24 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 2461028, + "thread": 29 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 2491864, + "thread": 31 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 2710545, + "thread": 21 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 2855027, + "thread": 23 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 3099211, + "thread": 17 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 3176363, + "thread": 25 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 3314215, + "thread": 29 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 3492174, + "thread": 2 + } + }, + { + "amount": "413.514645903", + "slot": { + "period": 3777662, + "thread": 8 + } + }, + { + "amount": "413.514645899", + "slot": { + "period": 3885776, + "thread": 27 + } + } + ], + "AU13iEAykiNuUqQ285apTnRSVgfP2kM3ijEJqNWbHziEFUYYWNt4": [ + { + "amount": "258.222518174", + "slot": { + "period": 84946, + "thread": 0 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 320640, + "thread": 17 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 336178, + "thread": 15 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 522003, + "thread": 13 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 748293, + "thread": 18 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 947641, + "thread": 22 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1146125, + "thread": 22 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1184076, + "thread": 13 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1465182, + "thread": 10 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1555486, + "thread": 27 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1740445, + "thread": 20 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 1857843, + "thread": 5 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2063185, + "thread": 1 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2270085, + "thread": 19 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2433229, + "thread": 4 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2570464, + "thread": 7 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2783431, + "thread": 24 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2823575, + "thread": 4 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 2994259, + "thread": 11 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 3153723, + "thread": 29 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 3373685, + "thread": 10 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 3526584, + "thread": 0 + } + }, + { + "amount": "258.222518174", + "slot": { + "period": 3710530, + "thread": 5 + } + }, + { + "amount": "258.222518165", + "slot": { + "period": 3781296, + "thread": 30 + } + } + ], + "AU13jRB3GwgLSWiVabQGUz7gAbN8gaQbqyQSKE5g9gzb9sCVp5gk": [ + { + "amount": "192.567390632", + "slot": { + "period": 116452, + "thread": 24 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 173477, + "thread": 22 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 348399, + "thread": 14 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 630024, + "thread": 28 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 694053, + "thread": 14 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 860264, + "thread": 23 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1000105, + "thread": 12 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1183150, + "thread": 31 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1476520, + "thread": 21 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1631438, + "thread": 5 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1803070, + "thread": 17 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 1865419, + "thread": 23 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2077271, + "thread": 28 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2213226, + "thread": 28 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2339632, + "thread": 2 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2503198, + "thread": 25 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2743179, + "thread": 18 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2850030, + "thread": 21 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 2997028, + "thread": 6 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 3122264, + "thread": 3 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 3393112, + "thread": 11 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 3585575, + "thread": 23 + } + }, + { + "amount": "192.567390632", + "slot": { + "period": 3666063, + "thread": 7 + } + }, + { + "amount": "192.567390642", + "slot": { + "period": 3880115, + "thread": 31 + } + } + ], + "AU13jzQ6vibNsRk4bbh69xr38qDMgiEQeTt4Fd33Cv2T1vXieGGW": [ + { + "amount": "390.834572989", + "slot": { + "period": 41088, + "thread": 8 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 168423, + "thread": 3 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 477165, + "thread": 5 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 617996, + "thread": 26 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 709349, + "thread": 13 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 904973, + "thread": 28 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1135623, + "thread": 18 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1179277, + "thread": 4 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1411329, + "thread": 30 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1614982, + "thread": 1 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1773513, + "thread": 19 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 1863030, + "thread": 31 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2061079, + "thread": 15 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2267705, + "thread": 4 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2374303, + "thread": 15 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2607025, + "thread": 21 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2625663, + "thread": 1 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 2864223, + "thread": 5 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 3026819, + "thread": 26 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 3243426, + "thread": 26 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 3438836, + "thread": 9 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 3605840, + "thread": 13 + } + }, + { + "amount": "390.834572989", + "slot": { + "period": 3767539, + "thread": 9 + } + }, + { + "amount": "390.834572980", + "slot": { + "period": 3915096, + "thread": 29 + } + } + ], + "AU13kZYSm9qGXHGf9Uk7ixmLPNwZVuuYV5TzpxsyR3fH8PBdmT3P": [ + { + "amount": "57.055636071", + "slot": { + "period": 11907, + "thread": 16 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 277129, + "thread": 14 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 430679, + "thread": 6 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 638064, + "thread": 29 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 713903, + "thread": 23 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 914511, + "thread": 14 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1076860, + "thread": 0 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1165935, + "thread": 10 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1342828, + "thread": 7 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1521956, + "thread": 6 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1808007, + "thread": 1 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 1902984, + "thread": 11 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2081282, + "thread": 17 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2164291, + "thread": 15 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2361767, + "thread": 30 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2528429, + "thread": 28 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2764303, + "thread": 23 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 2819822, + "thread": 14 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 3012862, + "thread": 4 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 3197726, + "thread": 2 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 3324361, + "thread": 23 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 3520765, + "thread": 31 + } + }, + { + "amount": "57.055636071", + "slot": { + "period": 3770893, + "thread": 2 + } + }, + { + "amount": "57.055636070", + "slot": { + "period": 3802799, + "thread": 1 + } + } + ], + "AU13kzv1XipXRceSADyChoKrukWa3kgAsFSz9Nb6SWxwX1rumkZb": [ + { + "amount": "154.818404989", + "slot": { + "period": 161965, + "thread": 23 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 238286, + "thread": 2 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 459013, + "thread": 23 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 587247, + "thread": 3 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 668547, + "thread": 31 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 824518, + "thread": 11 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1031396, + "thread": 15 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1181131, + "thread": 20 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1384613, + "thread": 8 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1613024, + "thread": 17 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1703820, + "thread": 19 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 1956402, + "thread": 3 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2119706, + "thread": 4 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2244643, + "thread": 11 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2413251, + "thread": 7 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2519090, + "thread": 3 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2685702, + "thread": 5 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 2838901, + "thread": 5 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 3036902, + "thread": 23 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 3124457, + "thread": 7 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 3406736, + "thread": 13 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 3597594, + "thread": 30 + } + }, + { + "amount": "154.818404989", + "slot": { + "period": 3620284, + "thread": 8 + } + }, + { + "amount": "154.818404996", + "slot": { + "period": 3832406, + "thread": 20 + } + } + ], + "AU13mv7YBb6SWnWwtsis9thKdUXyp37rDgdPkwqNrKsrm1HvGLQR": [ + { + "amount": "577.276724052", + "slot": { + "period": 34636, + "thread": 16 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 227145, + "thread": 13 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 476923, + "thread": 22 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 645939, + "thread": 25 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 729609, + "thread": 4 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 902797, + "thread": 24 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1135125, + "thread": 21 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1295088, + "thread": 10 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1365829, + "thread": 20 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1621928, + "thread": 24 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1732673, + "thread": 28 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 1895101, + "thread": 17 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2097569, + "thread": 20 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2253693, + "thread": 5 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2363035, + "thread": 22 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2547444, + "thread": 18 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2773864, + "thread": 21 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2925498, + "thread": 24 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 2979235, + "thread": 29 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 3161499, + "thread": 17 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 3440032, + "thread": 17 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 3480410, + "thread": 1 + } + }, + { + "amount": "577.276724052", + "slot": { + "period": 3775501, + "thread": 24 + } + }, + { + "amount": "577.276724040", + "slot": { + "period": 3827693, + "thread": 11 + } + } + ], + "AU13myEXFD6HpSt11A3YDe69w5KDHJmwQptmFC6odn4chnfJPpPK": [ + { + "amount": "442.477546212", + "slot": { + "period": 132801, + "thread": 27 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 311231, + "thread": 26 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 389785, + "thread": 9 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 493057, + "thread": 2 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 753001, + "thread": 20 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 922870, + "thread": 3 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1003554, + "thread": 20 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1156510, + "thread": 1 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1374492, + "thread": 10 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1611167, + "thread": 19 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1738556, + "thread": 2 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 1941095, + "thread": 16 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2102615, + "thread": 17 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2175050, + "thread": 12 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2325489, + "thread": 9 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2535620, + "thread": 13 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2659168, + "thread": 27 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 2830743, + "thread": 14 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 3058532, + "thread": 2 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 3243424, + "thread": 5 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 3412247, + "thread": 17 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 3570672, + "thread": 22 + } + }, + { + "amount": "442.477546212", + "slot": { + "period": 3626888, + "thread": 20 + } + }, + { + "amount": "442.477546224", + "slot": { + "period": 3811721, + "thread": 18 + } + } + ], + "AU13n59wtrLoYKePDHYmwmn7b4Ah3AwwuPGAcXWV12Yj6smJWwK8": [ + { + "amount": "120.260693010", + "slot": { + "period": 108029, + "thread": 18 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 212432, + "thread": 8 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 483439, + "thread": 4 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 641170, + "thread": 3 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 741447, + "thread": 11 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 942892, + "thread": 19 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1101119, + "thread": 17 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1165452, + "thread": 11 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1470557, + "thread": 0 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1594177, + "thread": 15 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1690536, + "thread": 13 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 1876792, + "thread": 25 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2137639, + "thread": 24 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2151904, + "thread": 7 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2419706, + "thread": 24 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2492143, + "thread": 2 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2683283, + "thread": 10 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 2835742, + "thread": 26 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 3080267, + "thread": 12 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 3135845, + "thread": 29 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 3308218, + "thread": 3 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 3569780, + "thread": 26 + } + }, + { + "amount": "120.260693010", + "slot": { + "period": 3663554, + "thread": 16 + } + }, + { + "amount": "120.260693008", + "slot": { + "period": 3944525, + "thread": 5 + } + } + ], + "AU13nwc25tiWdgpoe3HvxEtd3qcAF2E42YJYoKDQjegaLseaFwAi": [ + { + "amount": "168.408021145", + "slot": { + "period": 45718, + "thread": 16 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 198538, + "thread": 30 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 399953, + "thread": 9 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 530726, + "thread": 2 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 753118, + "thread": 23 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 942110, + "thread": 10 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 983707, + "thread": 16 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 1271373, + "thread": 25 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 1418783, + "thread": 24 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 1532140, + "thread": 0 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 1807683, + "thread": 28 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 1893379, + "thread": 17 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2107986, + "thread": 27 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2292329, + "thread": 23 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2430881, + "thread": 19 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2561634, + "thread": 25 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2734591, + "thread": 10 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 2834157, + "thread": 21 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 3022012, + "thread": 2 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 3229335, + "thread": 2 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 3359715, + "thread": 29 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 3614875, + "thread": 21 + } + }, + { + "amount": "168.408021145", + "slot": { + "period": 3738120, + "thread": 2 + } + }, + { + "amount": "168.408021156", + "slot": { + "period": 3789231, + "thread": 4 + } + } + ], + "AU13o2zph7zTYYBz1Nkm5Pi7GAoiETdBwEDQ8xfV72FFUP4HWFCn": [ + { + "amount": "278.893903664", + "slot": { + "period": 126703, + "thread": 1 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 191481, + "thread": 14 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 460504, + "thread": 1 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 547342, + "thread": 13 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 783721, + "thread": 26 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 975954, + "thread": 8 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1106818, + "thread": 15 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1201307, + "thread": 12 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1435923, + "thread": 31 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1616697, + "thread": 22 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1679338, + "thread": 26 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1844351, + "thread": 2 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 1985150, + "thread": 13 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2204332, + "thread": 20 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2361160, + "thread": 24 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2508123, + "thread": 26 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2664462, + "thread": 7 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2800811, + "thread": 13 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 2961654, + "thread": 5 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 3152029, + "thread": 21 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 3346522, + "thread": 23 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 3516123, + "thread": 11 + } + }, + { + "amount": "278.893903664", + "slot": { + "period": 3643950, + "thread": 6 + } + }, + { + "amount": "278.893903673", + "slot": { + "period": 3904755, + "thread": 4 + } + } + ], + "AU13p1P17FozT6smToW1MUKcrALUVG7EPLniRYhBD5kTM3d2DDK2": [ + { + "amount": "445.376268233", + "slot": { + "period": 110841, + "thread": 5 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 220716, + "thread": 23 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 407448, + "thread": 1 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 539019, + "thread": 10 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 789407, + "thread": 29 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 916599, + "thread": 25 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1130797, + "thread": 2 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1249419, + "thread": 26 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1406447, + "thread": 12 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1619572, + "thread": 3 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1735548, + "thread": 29 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 1876703, + "thread": 27 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2058475, + "thread": 31 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2212624, + "thread": 0 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2453819, + "thread": 14 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2537455, + "thread": 20 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2678496, + "thread": 17 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 2914533, + "thread": 2 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 3098128, + "thread": 19 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 3138679, + "thread": 29 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 3326883, + "thread": 9 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 3585797, + "thread": 17 + } + }, + { + "amount": "445.376268233", + "slot": { + "period": 3643219, + "thread": 9 + } + }, + { + "amount": "445.376268229", + "slot": { + "period": 3795633, + "thread": 13 + } + } + ], + "AU13pfH2VVgPvue2TM2GXskvkv9iWs5u5SzKUxUrdpQ4MqS2jqE5": [ + { + "amount": "83.829407978", + "slot": { + "period": 24994, + "thread": 3 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 192025, + "thread": 4 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 362588, + "thread": 16 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 576320, + "thread": 6 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 724557, + "thread": 12 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 840993, + "thread": 15 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 982861, + "thread": 0 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 1242945, + "thread": 2 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 1468845, + "thread": 6 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 1561491, + "thread": 3 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 1771205, + "thread": 11 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 1864415, + "thread": 8 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2068817, + "thread": 8 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2204203, + "thread": 23 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2322337, + "thread": 9 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2588639, + "thread": 31 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2665024, + "thread": 18 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 2871771, + "thread": 3 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 3051658, + "thread": 9 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 3231050, + "thread": 25 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 3434947, + "thread": 12 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 3544284, + "thread": 28 + } + }, + { + "amount": "83.829407978", + "slot": { + "period": 3685673, + "thread": 22 + } + }, + { + "amount": "83.829407980", + "slot": { + "period": 3827306, + "thread": 18 + } + } + ], + "AU13q2z3GGkAHUp3c11Le8Cnvz4QmAmivEbz61k89JQGzp5jUz5i": [ + { + "amount": "121.789700541", + "slot": { + "period": 139547, + "thread": 25 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 284228, + "thread": 0 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 454705, + "thread": 16 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 501913, + "thread": 16 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 774188, + "thread": 22 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 872263, + "thread": 19 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 989734, + "thread": 14 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 1161742, + "thread": 14 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 1371084, + "thread": 27 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 1495966, + "thread": 11 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 1730501, + "thread": 27 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 1876839, + "thread": 18 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2086488, + "thread": 18 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2274329, + "thread": 5 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2372123, + "thread": 18 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2619326, + "thread": 0 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2699336, + "thread": 20 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 2937789, + "thread": 3 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 3072248, + "thread": 16 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 3123364, + "thread": 23 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 3325504, + "thread": 12 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 3567192, + "thread": 17 + } + }, + { + "amount": "121.789700541", + "slot": { + "period": 3774219, + "thread": 29 + } + }, + { + "amount": "121.789700534", + "slot": { + "period": 3810349, + "thread": 15 + } + } + ], + "AU13qcd24c9RBkXgq4Hy1koQDXYZQeG3kzQoV8r5gAp6Q8w9zRPm": [ + { + "amount": "163.323242138", + "slot": { + "period": 153768, + "thread": 21 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 290288, + "thread": 29 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 369080, + "thread": 9 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 644016, + "thread": 1 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 738260, + "thread": 24 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 859332, + "thread": 17 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1004240, + "thread": 27 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1171920, + "thread": 29 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1365237, + "thread": 21 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1510506, + "thread": 11 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1719951, + "thread": 9 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 1937840, + "thread": 26 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2055379, + "thread": 7 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2232064, + "thread": 1 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2369150, + "thread": 15 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2530915, + "thread": 31 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2767860, + "thread": 24 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 2796154, + "thread": 26 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 3100615, + "thread": 11 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 3224168, + "thread": 31 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 3365897, + "thread": 1 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 3581904, + "thread": 26 + } + }, + { + "amount": "163.323242138", + "slot": { + "period": 3715580, + "thread": 9 + } + }, + { + "amount": "163.323242132", + "slot": { + "period": 3791872, + "thread": 0 + } + } + ], + "AU13qn9rGNoKhyutbijEyb7mvpef3mLPEbn3pCt74344puyQUY6v": [ + { + "amount": "203.550199786", + "slot": { + "period": 35380, + "thread": 4 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 243513, + "thread": 12 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 478285, + "thread": 13 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 520925, + "thread": 7 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 766829, + "thread": 1 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 850647, + "thread": 12 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1043139, + "thread": 10 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1189533, + "thread": 8 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1421551, + "thread": 20 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1556058, + "thread": 9 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1692857, + "thread": 9 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 1901536, + "thread": 26 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2125652, + "thread": 28 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2156943, + "thread": 7 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2324950, + "thread": 16 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2506230, + "thread": 21 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2660333, + "thread": 28 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 2853004, + "thread": 27 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 3022478, + "thread": 1 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 3175408, + "thread": 27 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 3438793, + "thread": 18 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 3503412, + "thread": 30 + } + }, + { + "amount": "203.550199786", + "slot": { + "period": 3729043, + "thread": 19 + } + }, + { + "amount": "203.550199778", + "slot": { + "period": 3926124, + "thread": 28 + } + } + ], + "AU13rDXCsQt2N42JAgkW3XTQ49pbr2WX2TxvrYs8sJ6qDFGUfXr9": [ + { + "amount": "220.439313430", + "slot": { + "period": 18053, + "thread": 10 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 307073, + "thread": 26 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 361530, + "thread": 10 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 651442, + "thread": 22 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 737645, + "thread": 1 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 891072, + "thread": 15 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1055737, + "thread": 8 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1240478, + "thread": 28 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1424473, + "thread": 5 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1579246, + "thread": 3 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1657247, + "thread": 20 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 1865503, + "thread": 8 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2008479, + "thread": 30 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2193845, + "thread": 25 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2415658, + "thread": 4 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2507517, + "thread": 26 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2711292, + "thread": 11 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 2906965, + "thread": 19 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 3105866, + "thread": 28 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 3135501, + "thread": 31 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 3304665, + "thread": 0 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 3461163, + "thread": 9 + } + }, + { + "amount": "220.439313430", + "slot": { + "period": 3676670, + "thread": 31 + } + }, + { + "amount": "220.439313442", + "slot": { + "period": 3795986, + "thread": 17 + } + } + ], + "AU13s56Ucw2ZPMNtKfuZjPsSRcPgFRcHsG5bzUhnHmgLyHhZhfbc": [ + { + "amount": "119.975680638", + "slot": { + "period": 32605, + "thread": 26 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 234482, + "thread": 0 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 461596, + "thread": 10 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 511043, + "thread": 6 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 814504, + "thread": 5 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 874629, + "thread": 29 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1076119, + "thread": 27 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1303330, + "thread": 28 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1365880, + "thread": 0 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1479773, + "thread": 18 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1661368, + "thread": 17 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 1934415, + "thread": 1 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2064639, + "thread": 30 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2219713, + "thread": 19 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2302332, + "thread": 17 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2539773, + "thread": 8 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2676000, + "thread": 8 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2871627, + "thread": 28 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 2961918, + "thread": 13 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 3257072, + "thread": 2 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 3420371, + "thread": 13 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 3574829, + "thread": 1 + } + }, + { + "amount": "119.975680638", + "slot": { + "period": 3769798, + "thread": 12 + } + }, + { + "amount": "119.975680647", + "slot": { + "period": 3858914, + "thread": 26 + } + } + ], + "AU13sT4RRSvM5CSPHg7ofMqKrB7i7nWXHJUZVisNmj3wtFfgdi2E": [ + { + "amount": "1813.600555199", + "slot": { + "period": 38558, + "thread": 21 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 287878, + "thread": 6 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 408783, + "thread": 15 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 604501, + "thread": 27 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 719031, + "thread": 19 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 859044, + "thread": 4 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1016063, + "thread": 14 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1295090, + "thread": 29 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1439387, + "thread": 25 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1640358, + "thread": 3 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1720473, + "thread": 4 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 1860503, + "thread": 4 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2059885, + "thread": 4 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2233673, + "thread": 9 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2328766, + "thread": 6 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2616956, + "thread": 20 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2704913, + "thread": 10 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 2848192, + "thread": 1 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 3115766, + "thread": 14 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 3236431, + "thread": 6 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 3431986, + "thread": 6 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 3596695, + "thread": 3 + } + }, + { + "amount": "1813.600555199", + "slot": { + "period": 3618765, + "thread": 13 + } + }, + { + "amount": "1813.600555201", + "slot": { + "period": 3879877, + "thread": 31 + } + } + ], + "AU13sdyvbpPDKJeKge6DWmP6oZDE5egAJQb1vinVFrWrobx7w4KN": [ + { + "amount": "218.441524877", + "slot": { + "period": 59860, + "thread": 12 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 296603, + "thread": 8 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 461844, + "thread": 10 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 598753, + "thread": 12 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 706855, + "thread": 14 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 940604, + "thread": 30 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1120712, + "thread": 22 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1308427, + "thread": 0 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1388769, + "thread": 4 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1520744, + "thread": 5 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1658337, + "thread": 18 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 1854456, + "thread": 22 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2123087, + "thread": 31 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2191176, + "thread": 12 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2408742, + "thread": 1 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2512260, + "thread": 13 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2725803, + "thread": 6 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 2810100, + "thread": 15 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 3034788, + "thread": 15 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 3181381, + "thread": 14 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 3375754, + "thread": 27 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 3565556, + "thread": 27 + } + }, + { + "amount": "218.441524877", + "slot": { + "period": 3691994, + "thread": 23 + } + }, + { + "amount": "218.441524888", + "slot": { + "period": 3895866, + "thread": 26 + } + } + ], + "AU13t4zQ8KmL8VCfFrhhh58DsRoucwT71FntLXjayFf5Uz4YDiPg": [ + { + "amount": "99.176749825", + "slot": { + "period": 105702, + "thread": 3 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 253073, + "thread": 18 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 345556, + "thread": 1 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 511053, + "thread": 4 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 723534, + "thread": 24 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 976303, + "thread": 13 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1007194, + "thread": 6 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1176046, + "thread": 28 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1322060, + "thread": 30 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1581341, + "thread": 6 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1761420, + "thread": 17 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1960112, + "thread": 3 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 1984532, + "thread": 26 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2235223, + "thread": 16 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2308719, + "thread": 30 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2489943, + "thread": 22 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2746625, + "thread": 1 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2951119, + "thread": 30 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 2961020, + "thread": 23 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 3281673, + "thread": 7 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 3289388, + "thread": 22 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 3523398, + "thread": 23 + } + }, + { + "amount": "99.176749825", + "slot": { + "period": 3740584, + "thread": 26 + } + }, + { + "amount": "99.176749834", + "slot": { + "period": 3874523, + "thread": 27 + } + } + ], + "AU13tC1WwtadtYtP4JUCNqybuonPbCEXf9ecTFYLTt5DKwzqE83q": [ + { + "amount": "78.082047425", + "slot": { + "period": 75574, + "thread": 4 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 212601, + "thread": 10 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 386908, + "thread": 24 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 529858, + "thread": 20 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 701708, + "thread": 11 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 898095, + "thread": 3 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1095546, + "thread": 30 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1185329, + "thread": 6 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1388257, + "thread": 26 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1624314, + "thread": 29 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1688426, + "thread": 2 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 1878994, + "thread": 22 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2064025, + "thread": 30 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2215140, + "thread": 6 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2326833, + "thread": 30 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2511054, + "thread": 18 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2772230, + "thread": 28 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 2808034, + "thread": 21 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 3027651, + "thread": 8 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 3240701, + "thread": 17 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 3420832, + "thread": 1 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 3503187, + "thread": 1 + } + }, + { + "amount": "78.082047425", + "slot": { + "period": 3738820, + "thread": 3 + } + }, + { + "amount": "78.082047416", + "slot": { + "period": 3807328, + "thread": 27 + } + } + ], + "AU13tTwiyfYNc5UZUPjXWb28thmzyzuM1PCWZW2TukECT7AkAbLS": [ + { + "amount": "418.403837120", + "slot": { + "period": 112783, + "thread": 25 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 304482, + "thread": 8 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 324631, + "thread": 10 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 643678, + "thread": 17 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 725957, + "thread": 31 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 928311, + "thread": 26 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1046156, + "thread": 18 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1263353, + "thread": 24 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1471515, + "thread": 28 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1611515, + "thread": 26 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1749084, + "thread": 8 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 1811586, + "thread": 30 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2126640, + "thread": 3 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2231505, + "thread": 13 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2395279, + "thread": 22 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2563349, + "thread": 29 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2668825, + "thread": 24 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 2816186, + "thread": 18 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 3115925, + "thread": 18 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 3277650, + "thread": 25 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 3320463, + "thread": 27 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 3514490, + "thread": 1 + } + }, + { + "amount": "418.403837120", + "slot": { + "period": 3716911, + "thread": 24 + } + }, + { + "amount": "418.403837117", + "slot": { + "period": 3793392, + "thread": 16 + } + } + ], + "AU13uXzbHYLiUmCY5He3Ru2vQcdKQt4eDGjQc2NwRxRq2XBAVvVJ": [ + { + "amount": "92.920745034", + "slot": { + "period": 97896, + "thread": 20 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 319132, + "thread": 13 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 424016, + "thread": 11 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 493744, + "thread": 13 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 777680, + "thread": 25 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 877063, + "thread": 6 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1069873, + "thread": 31 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1153811, + "thread": 25 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1381909, + "thread": 28 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1541539, + "thread": 16 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1746614, + "thread": 6 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 1821139, + "thread": 28 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2086103, + "thread": 21 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2157808, + "thread": 4 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2361237, + "thread": 23 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2575186, + "thread": 17 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2663620, + "thread": 3 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2890285, + "thread": 22 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 2994219, + "thread": 8 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 3202118, + "thread": 4 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 3386166, + "thread": 12 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 3545598, + "thread": 22 + } + }, + { + "amount": "92.920745034", + "slot": { + "period": 3706824, + "thread": 15 + } + }, + { + "amount": "92.920745035", + "slot": { + "period": 3808788, + "thread": 21 + } + } + ], + "AU13uzMtNLuWnRd9SM1HWuMkS7XQ19YhSECjUBNUEAmiJH3cAnMm": [ + { + "amount": "54.046343042", + "slot": { + "period": 52571, + "thread": 2 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 248057, + "thread": 9 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 469141, + "thread": 7 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 605578, + "thread": 4 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 689795, + "thread": 23 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 844457, + "thread": 2 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1116230, + "thread": 6 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1175172, + "thread": 9 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1344781, + "thread": 5 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1493612, + "thread": 15 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1788877, + "thread": 20 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1920211, + "thread": 10 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 1996690, + "thread": 2 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2255338, + "thread": 20 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2307934, + "thread": 20 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2553046, + "thread": 12 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2780832, + "thread": 0 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2922025, + "thread": 16 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 2970140, + "thread": 23 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 3191429, + "thread": 9 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 3292305, + "thread": 13 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 3602365, + "thread": 15 + } + }, + { + "amount": "54.046343042", + "slot": { + "period": 3715589, + "thread": 28 + } + }, + { + "amount": "54.046343033", + "slot": { + "period": 3934919, + "thread": 31 + } + } + ], + "AU13vFCa6sSAWrFQgBNZdVxkFX7sZD5K285xF4MLPxg84cqAeULL": [ + { + "amount": "139.363206472", + "slot": { + "period": 100521, + "thread": 30 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 266787, + "thread": 12 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 453098, + "thread": 0 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 625364, + "thread": 23 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 815696, + "thread": 26 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 823450, + "thread": 15 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1144746, + "thread": 24 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1268174, + "thread": 19 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1330855, + "thread": 12 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1562488, + "thread": 27 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1678586, + "thread": 9 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 1809164, + "thread": 26 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2121661, + "thread": 24 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2240935, + "thread": 3 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2310391, + "thread": 21 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2584863, + "thread": 11 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2652827, + "thread": 8 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 2826706, + "thread": 13 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 3023652, + "thread": 22 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 3193384, + "thread": 30 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 3449666, + "thread": 6 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 3601859, + "thread": 30 + } + }, + { + "amount": "139.363206472", + "slot": { + "period": 3627681, + "thread": 26 + } + }, + { + "amount": "139.363206471", + "slot": { + "period": 3912433, + "thread": 20 + } + } + ], + "AU13werS9phSGvxcL9emG1JQZ8RM24GBXtuBzHGrvStGV9kkLNux": [ + { + "amount": "420.256882474", + "slot": { + "period": 35868, + "thread": 25 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 182600, + "thread": 9 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 380297, + "thread": 28 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 647075, + "thread": 11 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 707590, + "thread": 13 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 883382, + "thread": 15 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1008192, + "thread": 25 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1316326, + "thread": 27 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1367454, + "thread": 11 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1539031, + "thread": 11 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1805412, + "thread": 18 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 1833716, + "thread": 4 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2057626, + "thread": 31 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2170159, + "thread": 25 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2301108, + "thread": 18 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2583411, + "thread": 7 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2733358, + "thread": 8 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 2866388, + "thread": 1 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 3053501, + "thread": 14 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 3239415, + "thread": 13 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 3362497, + "thread": 4 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 3542667, + "thread": 26 + } + }, + { + "amount": "420.256882474", + "slot": { + "period": 3779387, + "thread": 11 + } + }, + { + "amount": "420.256882478", + "slot": { + "period": 3918220, + "thread": 6 + } + } + ], + "AU13xJP5brewpUV1jFXhYg6J3Lchsjw5nKUNBhSd42fBcbtDz5wp": [ + { + "amount": "195.023977234", + "slot": { + "period": 147822, + "thread": 1 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 182632, + "thread": 15 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 385447, + "thread": 27 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 613360, + "thread": 9 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 804046, + "thread": 19 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 953173, + "thread": 31 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1148166, + "thread": 11 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1256795, + "thread": 18 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1458649, + "thread": 19 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1505909, + "thread": 11 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1689036, + "thread": 11 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 1839099, + "thread": 20 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2106919, + "thread": 0 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2212209, + "thread": 10 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2334977, + "thread": 4 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2579353, + "thread": 7 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2636409, + "thread": 15 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 2920731, + "thread": 17 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 3025535, + "thread": 22 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 3164002, + "thread": 14 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 3301788, + "thread": 23 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 3467008, + "thread": 2 + } + }, + { + "amount": "195.023977234", + "slot": { + "period": 3714452, + "thread": 5 + } + }, + { + "amount": "195.023977243", + "slot": { + "period": 3794087, + "thread": 20 + } + } + ], + "AU13yAWqkNLfV68BSur1UtT3jJGqXTHFMZjyWD3beuHBD1jU7aNm": [ + { + "amount": "166.381182233", + "slot": { + "period": 35870, + "thread": 20 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 191276, + "thread": 21 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 475569, + "thread": 6 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 545387, + "thread": 24 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 768053, + "thread": 29 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 891247, + "thread": 27 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1084697, + "thread": 11 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1180727, + "thread": 18 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1399270, + "thread": 21 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1588123, + "thread": 4 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1726796, + "thread": 17 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 1956842, + "thread": 29 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2071364, + "thread": 5 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2252012, + "thread": 7 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2438933, + "thread": 18 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2595448, + "thread": 27 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2639213, + "thread": 6 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2809088, + "thread": 28 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 2976473, + "thread": 19 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 3137472, + "thread": 15 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 3437381, + "thread": 0 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 3595728, + "thread": 28 + } + }, + { + "amount": "166.381182233", + "slot": { + "period": 3712321, + "thread": 20 + } + }, + { + "amount": "166.381182243", + "slot": { + "period": 3860969, + "thread": 4 + } + } + ], + "AU13zpZzNRjgJVZc4W7aPekAfNiuot8kJKWBnvyYYHbZyLsLyLo4": [ + { + "amount": "411.809476012", + "slot": { + "period": 127842, + "thread": 23 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 190482, + "thread": 9 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 340715, + "thread": 15 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 568772, + "thread": 1 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 685196, + "thread": 23 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 840371, + "thread": 15 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1138047, + "thread": 25 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1193004, + "thread": 26 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1364067, + "thread": 23 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1496063, + "thread": 16 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1776054, + "thread": 21 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 1813202, + "thread": 31 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2016894, + "thread": 26 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2239078, + "thread": 27 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2353013, + "thread": 4 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2568451, + "thread": 13 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2754860, + "thread": 4 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 2921941, + "thread": 27 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 3017811, + "thread": 26 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 3203057, + "thread": 7 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 3324559, + "thread": 15 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 3472159, + "thread": 7 + } + }, + { + "amount": "411.809476012", + "slot": { + "period": 3708748, + "thread": 31 + } + }, + { + "amount": "411.809476006", + "slot": { + "period": 3872301, + "thread": 29 + } + } + ], + "AU142Nh6eiTg94S4SKAe8MjQJ7tiYHQSNCN4kiXRuCVbzrQUgwRy": [ + { + "amount": "129.787746265", + "slot": { + "period": 38600, + "thread": 14 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 255955, + "thread": 20 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 450499, + "thread": 23 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 523229, + "thread": 16 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 701529, + "thread": 19 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 970294, + "thread": 15 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1040850, + "thread": 28 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1200085, + "thread": 23 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1361125, + "thread": 30 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1636065, + "thread": 16 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1798960, + "thread": 13 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 1884844, + "thread": 26 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2019772, + "thread": 22 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2276052, + "thread": 18 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2397154, + "thread": 15 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2501385, + "thread": 8 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2669055, + "thread": 30 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 2886694, + "thread": 14 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 3092408, + "thread": 8 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 3235868, + "thread": 9 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 3340016, + "thread": 3 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 3472100, + "thread": 5 + } + }, + { + "amount": "129.787746265", + "slot": { + "period": 3685118, + "thread": 29 + } + }, + { + "amount": "129.787746264", + "slot": { + "period": 3881162, + "thread": 30 + } + } + ], + "AU142zkbDiC2pU6S5KgmTSz95xfuzgKFsYHiUpcpS8j9p4DS61dm": [ + { + "amount": "233.333859457", + "slot": { + "period": 121302, + "thread": 15 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 305548, + "thread": 12 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 479213, + "thread": 28 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 507291, + "thread": 26 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 660722, + "thread": 31 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 825678, + "thread": 24 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1127639, + "thread": 24 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1303894, + "thread": 0 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1371287, + "thread": 13 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1592235, + "thread": 10 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1728438, + "thread": 24 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1865736, + "thread": 11 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 1997399, + "thread": 6 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 2173443, + "thread": 4 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 2448367, + "thread": 6 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 2550055, + "thread": 14 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 2650007, + "thread": 23 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 2936744, + "thread": 7 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 3041067, + "thread": 14 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 3198180, + "thread": 24 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 3361351, + "thread": 27 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 3455875, + "thread": 28 + } + }, + { + "amount": "233.333859457", + "slot": { + "period": 3642402, + "thread": 24 + } + }, + { + "amount": "233.333859463", + "slot": { + "period": 3782155, + "thread": 4 + } + } + ], + "AU143MuUSbmhzRkMWZcX6sgfDd8CNAhWfk2ZAC3bjoHsTmGYPrwe": [ + { + "amount": "2916.666666667", + "slot": { + "period": 32568, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 224461, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 353135, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 560196, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 671248, + "thread": 3 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 909068, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1005596, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1253500, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1405103, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1548513, + "thread": 5 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1706680, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1944446, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2010349, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2183007, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2435411, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2509299, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2749697, + "thread": 27 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2803334, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3060240, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3192010, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3383172, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3615397, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3718309, + "thread": 5 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3785899, + "thread": 31 + } + } + ], + "AU143NrJYZ5sHb7zdRK1E2ADbta2cmAFGjSugoSaFLpVoaWyJfPh": [ + { + "amount": "212.888259806", + "slot": { + "period": 91807, + "thread": 21 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 214196, + "thread": 20 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 395890, + "thread": 12 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 562499, + "thread": 13 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 769088, + "thread": 1 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 838955, + "thread": 1 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1128163, + "thread": 25 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1163900, + "thread": 24 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1473715, + "thread": 10 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1597911, + "thread": 4 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1672392, + "thread": 15 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 1904901, + "thread": 19 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2045457, + "thread": 16 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2149435, + "thread": 10 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2393359, + "thread": 14 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2464940, + "thread": 12 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2785065, + "thread": 27 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 2909090, + "thread": 5 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3118391, + "thread": 14 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3180207, + "thread": 7 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3309753, + "thread": 22 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3616161, + "thread": 16 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3755858, + "thread": 23 + } + }, + { + "amount": "212.888259806", + "slot": { + "period": 3840143, + "thread": 27 + } + } + ], + "AU143abzDTsg7EyXuZLDjuKyWYm1mJ4nGPU6ENbjEqdehJQfpivx": [ + { + "amount": "504.596024036", + "slot": { + "period": 64413, + "thread": 0 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 302029, + "thread": 13 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 415235, + "thread": 3 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 524685, + "thread": 28 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 784605, + "thread": 0 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 870675, + "thread": 30 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1091063, + "thread": 27 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1315549, + "thread": 10 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1386127, + "thread": 26 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1594653, + "thread": 9 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1778696, + "thread": 6 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 1859881, + "thread": 14 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2073143, + "thread": 22 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2204558, + "thread": 23 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2353219, + "thread": 21 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2520637, + "thread": 31 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2706901, + "thread": 31 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 2905252, + "thread": 15 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 3092097, + "thread": 28 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 3236517, + "thread": 25 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 3425820, + "thread": 19 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 3465645, + "thread": 3 + } + }, + { + "amount": "504.596024036", + "slot": { + "period": 3702919, + "thread": 6 + } + }, + { + "amount": "504.596024045", + "slot": { + "period": 3783253, + "thread": 20 + } + } + ], + "AU144FQ28GauXEcfFRTeAooGAsyJyXVQwCzuFKRNfzDC6NFsbctv": [ + { + "amount": "54.334654955", + "slot": { + "period": 114484, + "thread": 23 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 227401, + "thread": 5 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 381035, + "thread": 3 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 619004, + "thread": 9 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 706259, + "thread": 8 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 884529, + "thread": 1 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1048903, + "thread": 3 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1314474, + "thread": 23 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1350404, + "thread": 0 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1639208, + "thread": 6 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1660666, + "thread": 13 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 1903654, + "thread": 31 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2138402, + "thread": 2 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2175472, + "thread": 19 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2347383, + "thread": 28 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2618915, + "thread": 23 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2637899, + "thread": 8 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 2919940, + "thread": 31 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 3043780, + "thread": 12 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 3136517, + "thread": 31 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 3327196, + "thread": 6 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 3464519, + "thread": 8 + } + }, + { + "amount": "54.334654955", + "slot": { + "period": 3746398, + "thread": 2 + } + }, + { + "amount": "54.334654952", + "slot": { + "period": 3927015, + "thread": 7 + } + } + ], + "AU144T4HDQYivSPmHVseyLdnn9HFhNXuWDSFFc5yYLDtzZS8mN2z": [ + { + "amount": "148.466642806", + "slot": { + "period": 102925, + "thread": 29 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 219162, + "thread": 14 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 427514, + "thread": 8 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 547330, + "thread": 9 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 681143, + "thread": 30 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 920745, + "thread": 5 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1120275, + "thread": 13 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1226495, + "thread": 26 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1460927, + "thread": 5 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1561077, + "thread": 10 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1796988, + "thread": 3 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 1821837, + "thread": 6 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2043337, + "thread": 14 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2258160, + "thread": 29 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2358520, + "thread": 6 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2612413, + "thread": 18 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2648862, + "thread": 20 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 2833892, + "thread": 16 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 3088641, + "thread": 13 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 3130911, + "thread": 1 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 3393466, + "thread": 24 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 3487877, + "thread": 12 + } + }, + { + "amount": "148.466642806", + "slot": { + "period": 3661337, + "thread": 28 + } + }, + { + "amount": "148.466642796", + "slot": { + "period": 3801036, + "thread": 22 + } + } + ], + "AU1458yUEEh4AENNJw9vkJZSgjXGVQGq8kxMtXaiAWnegLuyWwGc": [ + { + "amount": "105.287766276", + "slot": { + "period": 79052, + "thread": 14 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 309692, + "thread": 12 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 438722, + "thread": 20 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 549569, + "thread": 15 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 806743, + "thread": 29 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 886937, + "thread": 24 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1089416, + "thread": 23 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1175755, + "thread": 23 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1384969, + "thread": 5 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1558689, + "thread": 27 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1648056, + "thread": 31 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 1913923, + "thread": 15 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2037151, + "thread": 28 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2198534, + "thread": 1 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2460264, + "thread": 2 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2584209, + "thread": 28 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2737766, + "thread": 5 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 2849545, + "thread": 22 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 3056120, + "thread": 13 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 3135456, + "thread": 20 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 3397011, + "thread": 9 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 3565446, + "thread": 11 + } + }, + { + "amount": "105.287766276", + "slot": { + "period": 3633923, + "thread": 5 + } + }, + { + "amount": "105.287766279", + "slot": { + "period": 3911446, + "thread": 11 + } + } + ], + "AU145tLRxytrH8YujtXhsBH7DgKEEuUX77AMndASgEEmn8xz6Zas": [ + { + "amount": "407.663203647", + "slot": { + "period": 103748, + "thread": 23 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 321286, + "thread": 24 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 393929, + "thread": 27 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 514347, + "thread": 7 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 771733, + "thread": 16 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 837592, + "thread": 3 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1031450, + "thread": 5 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1248814, + "thread": 1 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1324825, + "thread": 9 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1622715, + "thread": 9 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1743422, + "thread": 10 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 1936058, + "thread": 31 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2118435, + "thread": 4 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2291531, + "thread": 26 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2338628, + "thread": 0 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2467828, + "thread": 27 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2686578, + "thread": 18 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 2950695, + "thread": 24 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 3036380, + "thread": 30 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 3191872, + "thread": 6 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 3440487, + "thread": 31 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 3600395, + "thread": 5 + } + }, + { + "amount": "407.663203647", + "slot": { + "period": 3679095, + "thread": 0 + } + }, + { + "amount": "407.663203656", + "slot": { + "period": 3941691, + "thread": 14 + } + } + ], + "AU146KmGvSodnApUKqEAsE6iuC17CfEjdQTkwc5bn5zjeXJGHGwX": [ + { + "amount": "102.021514452", + "slot": { + "period": 42080, + "thread": 13 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 229337, + "thread": 30 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 440333, + "thread": 24 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 571713, + "thread": 0 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 682133, + "thread": 11 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 878011, + "thread": 0 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 986658, + "thread": 23 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 1210118, + "thread": 13 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 1450506, + "thread": 21 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 1523899, + "thread": 19 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 1764008, + "thread": 12 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 1836972, + "thread": 8 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2074200, + "thread": 23 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2222249, + "thread": 8 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2437886, + "thread": 4 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2588016, + "thread": 16 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2717313, + "thread": 24 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 2800590, + "thread": 21 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 3035985, + "thread": 3 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 3249966, + "thread": 27 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 3336849, + "thread": 24 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 3461949, + "thread": 5 + } + }, + { + "amount": "102.021514452", + "slot": { + "period": 3622544, + "thread": 12 + } + }, + { + "amount": "102.021514461", + "slot": { + "period": 3933015, + "thread": 10 + } + } + ], + "AU147TYZJLh296ssnHa2tnmYo3vvqNP3w4GhCieVXQGunxebZVmK": [ + { + "amount": "135.385282913", + "slot": { + "period": 45811, + "thread": 27 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 168751, + "thread": 0 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 437689, + "thread": 27 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 543157, + "thread": 4 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 700964, + "thread": 11 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 830229, + "thread": 13 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1137514, + "thread": 13 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1193394, + "thread": 24 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1319565, + "thread": 8 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1607799, + "thread": 20 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1727989, + "thread": 30 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 1957728, + "thread": 6 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2019344, + "thread": 10 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2232872, + "thread": 28 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2398675, + "thread": 23 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2602491, + "thread": 16 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2650193, + "thread": 4 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 2849631, + "thread": 0 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 3118489, + "thread": 19 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 3183953, + "thread": 29 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 3391590, + "thread": 19 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 3455881, + "thread": 9 + } + }, + { + "amount": "135.385282913", + "slot": { + "period": 3744504, + "thread": 28 + } + }, + { + "amount": "135.385282920", + "slot": { + "period": 3935455, + "thread": 10 + } + } + ], + "AU148YTd7KQJhr7ZgxSGBQCBknpxVnTVfacVhhR4Hifxzo3EouQs": [ + { + "amount": "151.173214782", + "slot": { + "period": 108001, + "thread": 1 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 188952, + "thread": 30 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 362005, + "thread": 19 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 586481, + "thread": 9 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 718194, + "thread": 3 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 867384, + "thread": 21 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1122920, + "thread": 31 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1174162, + "thread": 11 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1410008, + "thread": 1 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1521793, + "thread": 18 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1781151, + "thread": 0 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 1813283, + "thread": 16 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2139389, + "thread": 15 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2224732, + "thread": 12 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2392262, + "thread": 31 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2623702, + "thread": 23 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2726435, + "thread": 31 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2801921, + "thread": 30 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 2956806, + "thread": 11 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 3178574, + "thread": 0 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 3424508, + "thread": 1 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 3574106, + "thread": 22 + } + }, + { + "amount": "151.173214782", + "slot": { + "period": 3624060, + "thread": 21 + } + }, + { + "amount": "151.173214790", + "slot": { + "period": 3798204, + "thread": 1 + } + } + ], + "AU148tDAg1fvByeoQ9DUs1v1s5ga33ZDfqHGKUKiRtdGqkVaq5j7": [ + { + "amount": "313.640644470", + "slot": { + "period": 17169, + "thread": 22 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 207970, + "thread": 22 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 430916, + "thread": 14 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 602468, + "thread": 7 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 665713, + "thread": 27 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 971884, + "thread": 16 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1003677, + "thread": 31 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1238616, + "thread": 6 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1344257, + "thread": 17 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1597093, + "thread": 23 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1715860, + "thread": 31 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 1974943, + "thread": 27 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2031679, + "thread": 20 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2155032, + "thread": 15 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2316826, + "thread": 3 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2600880, + "thread": 15 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2664352, + "thread": 1 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 2918508, + "thread": 7 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 3100057, + "thread": 4 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 3156928, + "thread": 9 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 3306451, + "thread": 2 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 3490916, + "thread": 5 + } + }, + { + "amount": "313.640644470", + "slot": { + "period": 3693192, + "thread": 27 + } + }, + { + "amount": "313.640644474", + "slot": { + "period": 3873906, + "thread": 24 + } + } + ], + "AU14ABEAcaD6MPxu2eXH3KK7iQKkVB3nbsNK8LCt6HagNDX88JQE": [ + { + "amount": "305.889777819", + "slot": { + "period": 137050, + "thread": 14 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 221927, + "thread": 19 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 363900, + "thread": 2 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 546658, + "thread": 11 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 719145, + "thread": 13 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 887135, + "thread": 20 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1110876, + "thread": 31 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1154289, + "thread": 22 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1446283, + "thread": 12 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1636036, + "thread": 2 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1773642, + "thread": 9 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 1845492, + "thread": 15 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2074457, + "thread": 15 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2265505, + "thread": 11 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2462189, + "thread": 14 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2621335, + "thread": 15 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2629459, + "thread": 27 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2839795, + "thread": 12 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 2977275, + "thread": 27 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 3199011, + "thread": 9 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 3346975, + "thread": 28 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 3579117, + "thread": 25 + } + }, + { + "amount": "305.889777819", + "slot": { + "period": 3768226, + "thread": 11 + } + }, + { + "amount": "305.889777811", + "slot": { + "period": 3878825, + "thread": 20 + } + } + ], + "AU14AwfFqGscUjz6mvjZCC2gv9Q4nKHX4DJUN9ZSmGkti8FCGxkb": [ + { + "amount": "423.865267651", + "slot": { + "period": 121971, + "thread": 19 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 276241, + "thread": 4 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 404582, + "thread": 27 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 507820, + "thread": 9 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 799494, + "thread": 5 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 955325, + "thread": 18 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1097336, + "thread": 30 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1304651, + "thread": 23 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1433990, + "thread": 28 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1531779, + "thread": 27 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1686887, + "thread": 25 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 1900356, + "thread": 0 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2143770, + "thread": 27 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2226158, + "thread": 15 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2308121, + "thread": 13 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2553401, + "thread": 21 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2655506, + "thread": 0 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 2852876, + "thread": 29 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 3069328, + "thread": 19 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 3166607, + "thread": 19 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 3353017, + "thread": 18 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 3613160, + "thread": 18 + } + }, + { + "amount": "423.865267651", + "slot": { + "period": 3749662, + "thread": 24 + } + }, + { + "amount": "423.865267658", + "slot": { + "period": 3893129, + "thread": 18 + } + } + ], + "AU14Br6oBqqTWpWDnX74SHVoBpEtQqcAYftwkF2wdnhcxd8UtWSq": [ + { + "amount": "145.876883730", + "slot": { + "period": 112162, + "thread": 17 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 314716, + "thread": 25 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 340618, + "thread": 6 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 628629, + "thread": 8 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 746855, + "thread": 31 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 836838, + "thread": 20 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1038600, + "thread": 28 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1286154, + "thread": 28 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1451239, + "thread": 21 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1495702, + "thread": 17 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1726832, + "thread": 21 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 1837379, + "thread": 28 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2139055, + "thread": 6 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2191273, + "thread": 14 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2329244, + "thread": 2 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2553753, + "thread": 24 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2769072, + "thread": 11 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 2952496, + "thread": 16 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 3027724, + "thread": 22 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 3254398, + "thread": 5 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 3330075, + "thread": 27 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 3495697, + "thread": 15 + } + }, + { + "amount": "145.876883730", + "slot": { + "period": 3761058, + "thread": 30 + } + }, + { + "amount": "145.876883737", + "slot": { + "period": 3860988, + "thread": 6 + } + } + ], + "AU14CXyuHWD4rbAaZBkbdywsWg9GdKEeAaJ1wmtxjuJ82yPoSXBw": [ + { + "amount": "501.487378729", + "slot": { + "period": 154310, + "thread": 30 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 229354, + "thread": 9 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 396008, + "thread": 16 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 555159, + "thread": 23 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 798973, + "thread": 17 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 962018, + "thread": 20 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1070559, + "thread": 31 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1155769, + "thread": 0 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1374954, + "thread": 14 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1492553, + "thread": 6 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1717326, + "thread": 21 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1893533, + "thread": 4 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 1979859, + "thread": 22 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2289581, + "thread": 21 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2369601, + "thread": 30 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2598896, + "thread": 0 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2624812, + "thread": 20 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2944387, + "thread": 9 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 2964122, + "thread": 20 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 3214596, + "thread": 6 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 3375404, + "thread": 22 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 3595897, + "thread": 22 + } + }, + { + "amount": "501.487378729", + "slot": { + "period": 3670406, + "thread": 5 + } + }, + { + "amount": "501.487378737", + "slot": { + "period": 3855853, + "thread": 2 + } + } + ], + "AU14Fs9k9vM1y4HnE4S41ogAxMSJ6qvbRXC3vPqowfh53Q8YKVYw": [ + { + "amount": "115.274756674", + "slot": { + "period": 58066, + "thread": 17 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 297012, + "thread": 15 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 351665, + "thread": 7 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 635411, + "thread": 10 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 674775, + "thread": 6 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 952516, + "thread": 24 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1116702, + "thread": 27 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1221424, + "thread": 31 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1464856, + "thread": 16 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1613308, + "thread": 17 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1740860, + "thread": 10 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 1875751, + "thread": 2 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2034308, + "thread": 19 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2168787, + "thread": 5 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2308472, + "thread": 0 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2490529, + "thread": 4 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2629308, + "thread": 12 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 2931580, + "thread": 9 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 3112285, + "thread": 20 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 3187625, + "thread": 26 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 3341616, + "thread": 10 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 3467062, + "thread": 11 + } + }, + { + "amount": "115.274756674", + "slot": { + "period": 3740236, + "thread": 2 + } + }, + { + "amount": "115.274756672", + "slot": { + "period": 3894668, + "thread": 10 + } + } + ], + "AU14GGgB1jK8VGdqFEu5xYvwaNHN7foh78wHDSCRDD5XJ6HNVbGN": [ + { + "amount": "151.407866164", + "slot": { + "period": 79817, + "thread": 31 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 315242, + "thread": 8 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 459375, + "thread": 24 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 494360, + "thread": 15 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 670230, + "thread": 5 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 888078, + "thread": 13 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1145113, + "thread": 20 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1316950, + "thread": 20 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1349692, + "thread": 24 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1608008, + "thread": 17 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1680409, + "thread": 17 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1877052, + "thread": 14 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 1991304, + "thread": 1 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 2210103, + "thread": 31 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 2377205, + "thread": 10 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 2527558, + "thread": 11 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 2777028, + "thread": 22 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 2820053, + "thread": 23 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 3084547, + "thread": 3 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 3141355, + "thread": 5 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 3403902, + "thread": 0 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 3580276, + "thread": 5 + } + }, + { + "amount": "151.407866164", + "slot": { + "period": 3748090, + "thread": 17 + } + }, + { + "amount": "151.407866152", + "slot": { + "period": 3899671, + "thread": 1 + } + } + ], + "AU14GZ57TXeTddbB1z6aKSdaDhnm8EFweCnM1YFMEpyJT6VD4EhY": [ + { + "amount": "167.141401842", + "slot": { + "period": 16157, + "thread": 23 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 271093, + "thread": 1 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 477606, + "thread": 26 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 642433, + "thread": 30 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 709483, + "thread": 12 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 833379, + "thread": 29 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1113558, + "thread": 3 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1209042, + "thread": 23 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1342717, + "thread": 19 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1512321, + "thread": 19 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1672213, + "thread": 21 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 1826169, + "thread": 16 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2051340, + "thread": 30 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2233702, + "thread": 24 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2411178, + "thread": 24 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2509083, + "thread": 13 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2745192, + "thread": 5 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 2821060, + "thread": 14 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 3052114, + "thread": 22 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 3224585, + "thread": 6 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 3346383, + "thread": 4 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 3563287, + "thread": 3 + } + }, + { + "amount": "167.141401842", + "slot": { + "period": 3744762, + "thread": 4 + } + }, + { + "amount": "167.141401837", + "slot": { + "period": 3894015, + "thread": 1 + } + } + ], + "AU14LJvSyPeCitaQYZuUwRFSzXVTTzZ8XXxCkeCVvBNUSrUnf1kt": [ + { + "amount": "197.024779706", + "slot": { + "period": 95016, + "thread": 28 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 318975, + "thread": 19 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 373466, + "thread": 5 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 617185, + "thread": 1 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 758723, + "thread": 19 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 823808, + "thread": 5 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1141764, + "thread": 6 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1261708, + "thread": 16 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1444034, + "thread": 26 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1548026, + "thread": 10 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1720904, + "thread": 14 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 1919387, + "thread": 22 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2029268, + "thread": 27 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2292039, + "thread": 4 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2416305, + "thread": 11 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2537267, + "thread": 12 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2633376, + "thread": 18 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2949445, + "thread": 28 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 2982350, + "thread": 16 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 3200915, + "thread": 18 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 3312734, + "thread": 0 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 3513694, + "thread": 21 + } + }, + { + "amount": "197.024779706", + "slot": { + "period": 3640168, + "thread": 11 + } + }, + { + "amount": "197.024779718", + "slot": { + "period": 3822772, + "thread": 20 + } + } + ], + "AU14Lbo3BrNAwsbZ1B1ATEPKta2A5jAned9RHSFcr2NQhiEPmdRA": [ + { + "amount": "65.415924881", + "slot": { + "period": 132192, + "thread": 12 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 303343, + "thread": 0 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 435501, + "thread": 12 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 548860, + "thread": 28 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 817746, + "thread": 21 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 963347, + "thread": 16 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1128198, + "thread": 28 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1280305, + "thread": 20 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1463954, + "thread": 22 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1633646, + "thread": 31 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1724859, + "thread": 8 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1885328, + "thread": 2 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 1997842, + "thread": 12 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 2187020, + "thread": 13 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 2340176, + "thread": 18 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 2565437, + "thread": 4 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 2705103, + "thread": 20 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 2868949, + "thread": 13 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 3113771, + "thread": 4 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 3202194, + "thread": 5 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 3438415, + "thread": 9 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 3552078, + "thread": 17 + } + }, + { + "amount": "65.415924881", + "slot": { + "period": 3776434, + "thread": 17 + } + }, + { + "amount": "65.415924874", + "slot": { + "period": 3933494, + "thread": 20 + } + } + ], + "AU14LoPK7dav1ddm8DWojUpmHkbKtn6aD56jjNoM7mVHMkLvmt45": [ + { + "amount": "66.852864248", + "slot": { + "period": 38797, + "thread": 31 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 171091, + "thread": 22 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 333826, + "thread": 25 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 527704, + "thread": 9 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 756129, + "thread": 19 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 887053, + "thread": 4 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1007888, + "thread": 8 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1224445, + "thread": 12 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1367610, + "thread": 16 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1485439, + "thread": 15 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1729042, + "thread": 8 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 1915997, + "thread": 15 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2123135, + "thread": 1 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2262226, + "thread": 6 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2439716, + "thread": 15 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2485324, + "thread": 13 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2710873, + "thread": 10 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 2945996, + "thread": 20 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3024796, + "thread": 9 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3262998, + "thread": 10 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3329762, + "thread": 7 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3609619, + "thread": 25 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3628461, + "thread": 23 + } + }, + { + "amount": "66.852864248", + "slot": { + "period": 3832773, + "thread": 14 + } + } + ], + "AU14MXXJhUzaxxefpQVMTQgsLgvx6P6e6VXgr4RfwcwtVH94G8Ka": [ + { + "amount": "67.019006023", + "slot": { + "period": 108221, + "thread": 4 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 245376, + "thread": 17 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 417153, + "thread": 24 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 567446, + "thread": 1 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 777513, + "thread": 12 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 927218, + "thread": 11 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1029147, + "thread": 24 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1208747, + "thread": 0 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1440672, + "thread": 3 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1511032, + "thread": 4 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1768384, + "thread": 1 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 1929017, + "thread": 25 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2072629, + "thread": 6 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2202337, + "thread": 31 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2428256, + "thread": 26 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2479809, + "thread": 27 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2719502, + "thread": 12 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 2909291, + "thread": 24 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 3091883, + "thread": 31 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 3140524, + "thread": 19 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 3429926, + "thread": 21 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 3575556, + "thread": 28 + } + }, + { + "amount": "67.019006023", + "slot": { + "period": 3627306, + "thread": 21 + } + }, + { + "amount": "67.019006033", + "slot": { + "period": 3887984, + "thread": 15 + } + } + ], + "AU14MerkgBZU1WWJUXN1Mi9N4oXbQbS8jRPRGipoFvXR4hGMjMur": [ + { + "amount": "97.104374811", + "slot": { + "period": 20718, + "thread": 8 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 273930, + "thread": 6 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 353080, + "thread": 16 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 648269, + "thread": 13 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 686610, + "thread": 8 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 976331, + "thread": 28 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1075457, + "thread": 14 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1177804, + "thread": 10 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1447649, + "thread": 1 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1485429, + "thread": 6 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1757348, + "thread": 0 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 1892240, + "thread": 2 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2031702, + "thread": 18 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2251001, + "thread": 27 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2445515, + "thread": 20 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2579244, + "thread": 30 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2696784, + "thread": 2 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 2950804, + "thread": 30 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 3100570, + "thread": 16 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 3248629, + "thread": 4 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 3394187, + "thread": 11 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 3457370, + "thread": 26 + } + }, + { + "amount": "97.104374811", + "slot": { + "period": 3673224, + "thread": 6 + } + }, + { + "amount": "97.104374808", + "slot": { + "period": 3878286, + "thread": 0 + } + } + ], + "AU14NPcaLs3byPbBPLfNkLEyRJwepmMh8ZvEXehRfq9dawKSWdnf": [ + { + "amount": "125.457827174", + "slot": { + "period": 35480, + "thread": 28 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 224966, + "thread": 9 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 345438, + "thread": 20 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 492276, + "thread": 12 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 707968, + "thread": 10 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 913736, + "thread": 22 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1030018, + "thread": 25 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1216581, + "thread": 10 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1422504, + "thread": 31 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1620995, + "thread": 25 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1793561, + "thread": 19 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1889445, + "thread": 2 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 1987979, + "thread": 18 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2234026, + "thread": 12 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2392104, + "thread": 28 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2590770, + "thread": 13 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2771352, + "thread": 27 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2952835, + "thread": 9 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 2991650, + "thread": 13 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 3211846, + "thread": 3 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 3337122, + "thread": 8 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 3472186, + "thread": 24 + } + }, + { + "amount": "125.457827174", + "slot": { + "period": 3660756, + "thread": 18 + } + }, + { + "amount": "125.457827163", + "slot": { + "period": 3802562, + "thread": 27 + } + } + ], + "AU14NaT4V8jNtjb18WpcfVB8WiRt8XSeZsJCRJ7sL127eDowYbLk": [ + { + "amount": "529.716433899", + "slot": { + "period": 16258, + "thread": 6 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 172091, + "thread": 1 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 387313, + "thread": 23 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 642963, + "thread": 11 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 668158, + "thread": 4 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 837310, + "thread": 4 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1084233, + "thread": 7 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1315950, + "thread": 22 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1438675, + "thread": 16 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1567117, + "thread": 23 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1798448, + "thread": 14 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 1837781, + "thread": 1 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2092688, + "thread": 2 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2170190, + "thread": 4 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2459131, + "thread": 5 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2583962, + "thread": 7 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2631576, + "thread": 4 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 2829137, + "thread": 6 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 3065539, + "thread": 3 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 3235115, + "thread": 14 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 3421565, + "thread": 30 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 3602970, + "thread": 19 + } + }, + { + "amount": "529.716433899", + "slot": { + "period": 3650174, + "thread": 16 + } + }, + { + "amount": "529.716433897", + "slot": { + "period": 3832081, + "thread": 20 + } + } + ], + "AU14PwSi5NHEj1XhkwLJfX6vG1WWdhzCFdGDGPDbAVRTAxsxZg4k": [ + { + "amount": "341.251493508", + "slot": { + "period": 54635, + "thread": 29 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 249682, + "thread": 29 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 374897, + "thread": 24 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 491920, + "thread": 20 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 673685, + "thread": 9 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 973732, + "thread": 20 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1035817, + "thread": 7 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1253793, + "thread": 23 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1327539, + "thread": 28 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1489691, + "thread": 12 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1674758, + "thread": 18 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 1815215, + "thread": 5 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2059390, + "thread": 24 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2231842, + "thread": 30 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2359917, + "thread": 11 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2474514, + "thread": 11 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2648824, + "thread": 11 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 2952180, + "thread": 22 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 3050635, + "thread": 23 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 3224044, + "thread": 25 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 3406629, + "thread": 30 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 3612434, + "thread": 22 + } + }, + { + "amount": "341.251493508", + "slot": { + "period": 3666780, + "thread": 4 + } + }, + { + "amount": "341.251493496", + "slot": { + "period": 3943836, + "thread": 16 + } + } + ], + "AU14SB7m9GzzDMQTUDxihxs8vPU5Mib2Lc4hoiWc3u9kCkzgi782": [ + { + "amount": "164.183060068", + "slot": { + "period": 68687, + "thread": 17 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 317420, + "thread": 1 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 375414, + "thread": 16 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 612391, + "thread": 23 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 733638, + "thread": 1 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 966280, + "thread": 16 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 991011, + "thread": 19 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1316148, + "thread": 6 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1371145, + "thread": 28 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1637914, + "thread": 7 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1730948, + "thread": 3 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1879407, + "thread": 12 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 1986845, + "thread": 28 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 2266765, + "thread": 12 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 2415058, + "thread": 10 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 2606493, + "thread": 27 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 2659159, + "thread": 16 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 2894392, + "thread": 31 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 3097793, + "thread": 18 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 3269692, + "thread": 7 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 3341123, + "thread": 6 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 3579296, + "thread": 15 + } + }, + { + "amount": "164.183060068", + "slot": { + "period": 3773139, + "thread": 10 + } + }, + { + "amount": "164.183060071", + "slot": { + "period": 3827586, + "thread": 31 + } + } + ], + "AU14SpBPhYCZjBcPr3ctDjuveDPsg5M7M8fGCfUCoND5PEJATuqB": [ + { + "amount": "143.838729822", + "slot": { + "period": 140330, + "thread": 21 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 243895, + "thread": 28 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 469406, + "thread": 0 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 506961, + "thread": 31 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 754177, + "thread": 12 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 966471, + "thread": 23 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1143679, + "thread": 28 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1280035, + "thread": 10 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1434732, + "thread": 8 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1533150, + "thread": 19 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1747950, + "thread": 27 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 1961283, + "thread": 31 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2087462, + "thread": 12 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2214940, + "thread": 17 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2400903, + "thread": 7 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2570946, + "thread": 23 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2759391, + "thread": 0 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2904120, + "thread": 16 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 2971862, + "thread": 10 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 3140545, + "thread": 29 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 3442307, + "thread": 0 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 3603852, + "thread": 2 + } + }, + { + "amount": "143.838729822", + "slot": { + "period": 3740193, + "thread": 19 + } + }, + { + "amount": "143.838729825", + "slot": { + "period": 3930261, + "thread": 4 + } + } + ], + "AU14SyZgamYCLWWH5J6JXyAZHSRqm54m33VaNPBnG7gHAeC7w5SU": [ + { + "amount": "60.170203019", + "slot": { + "period": 100351, + "thread": 0 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 240889, + "thread": 0 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 341276, + "thread": 7 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 522577, + "thread": 1 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 758226, + "thread": 22 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 869795, + "thread": 28 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1146337, + "thread": 0 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1160662, + "thread": 1 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1415312, + "thread": 4 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1515979, + "thread": 16 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1755949, + "thread": 0 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 1918178, + "thread": 7 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2037493, + "thread": 10 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2210347, + "thread": 2 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2380903, + "thread": 8 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2611729, + "thread": 12 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2636668, + "thread": 8 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 2850317, + "thread": 14 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 3063279, + "thread": 14 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 3212238, + "thread": 8 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 3404385, + "thread": 30 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 3559655, + "thread": 14 + } + }, + { + "amount": "60.170203019", + "slot": { + "period": 3692048, + "thread": 7 + } + }, + { + "amount": "60.170203021", + "slot": { + "period": 3861887, + "thread": 23 + } + } + ], + "AU14TGQ4dDLXWufRHMDipnMQAMEgYHdhqWJQmSMaXmLG7ZV7YvWf": [ + { + "amount": "130.360691082", + "slot": { + "period": 65829, + "thread": 4 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 306348, + "thread": 11 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 385500, + "thread": 5 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 497664, + "thread": 0 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 746088, + "thread": 1 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 930691, + "thread": 1 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1080877, + "thread": 3 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1244529, + "thread": 22 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1449164, + "thread": 3 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1504751, + "thread": 21 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1791137, + "thread": 29 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 1953021, + "thread": 31 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2084150, + "thread": 31 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2285495, + "thread": 1 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2398186, + "thread": 29 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2508643, + "thread": 24 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2784671, + "thread": 17 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 2875375, + "thread": 16 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 3008283, + "thread": 12 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 3284389, + "thread": 3 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 3398008, + "thread": 10 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 3555060, + "thread": 5 + } + }, + { + "amount": "130.360691082", + "slot": { + "period": 3676036, + "thread": 22 + } + }, + { + "amount": "130.360691070", + "slot": { + "period": 3918998, + "thread": 12 + } + } + ], + "AU14TKjgoXxMF5qidEPTLmeuRULBFXkiwE1LXW6si3o5V79t6NeA": [ + { + "amount": "417.532954754", + "slot": { + "period": 144212, + "thread": 20 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 306061, + "thread": 8 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 432552, + "thread": 11 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 646599, + "thread": 25 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 764183, + "thread": 3 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 865810, + "thread": 11 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1055474, + "thread": 16 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1302164, + "thread": 10 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1357010, + "thread": 13 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1582975, + "thread": 21 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1741460, + "thread": 27 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 1851694, + "thread": 0 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2101400, + "thread": 16 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2158091, + "thread": 12 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2440468, + "thread": 17 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2595068, + "thread": 8 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2730866, + "thread": 0 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 2892049, + "thread": 17 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 3035541, + "thread": 9 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 3276457, + "thread": 11 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 3407536, + "thread": 31 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 3540829, + "thread": 13 + } + }, + { + "amount": "417.532954754", + "slot": { + "period": 3748393, + "thread": 27 + } + }, + { + "amount": "417.532954744", + "slot": { + "period": 3896483, + "thread": 12 + } + } + ], + "AU14Tqp9LrDNKW613572m7tXt6BjwLswL7Qa2qpbwZcWPvsy5dj1": [ + { + "amount": "98.602399314", + "slot": { + "period": 116527, + "thread": 8 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 279541, + "thread": 14 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 457951, + "thread": 12 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 600301, + "thread": 1 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 741227, + "thread": 29 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 900096, + "thread": 25 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1000462, + "thread": 17 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1163878, + "thread": 21 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1327083, + "thread": 24 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1537912, + "thread": 6 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1694501, + "thread": 22 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 1829066, + "thread": 6 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2011950, + "thread": 28 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2253627, + "thread": 21 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2384351, + "thread": 28 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2477827, + "thread": 3 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2643341, + "thread": 26 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 2899809, + "thread": 10 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 3064374, + "thread": 15 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 3130130, + "thread": 20 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 3415598, + "thread": 0 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 3577223, + "thread": 0 + } + }, + { + "amount": "98.602399314", + "slot": { + "period": 3762917, + "thread": 8 + } + }, + { + "amount": "98.602399325", + "slot": { + "period": 3791537, + "thread": 13 + } + } + ], + "AU14TwTDm9HK4vYn1cPdJ32PghMboWuqaGGepHXfERb386kmmyz6": [ + { + "amount": "161.806350314", + "slot": { + "period": 152424, + "thread": 24 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 167987, + "thread": 13 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 330435, + "thread": 23 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 634086, + "thread": 18 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 764762, + "thread": 2 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 893316, + "thread": 8 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1124867, + "thread": 13 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1202300, + "thread": 20 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1408319, + "thread": 5 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1638987, + "thread": 1 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1673069, + "thread": 3 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 1826341, + "thread": 4 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2083363, + "thread": 16 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2281483, + "thread": 25 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2324672, + "thread": 22 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2530981, + "thread": 20 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2732795, + "thread": 27 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 2917913, + "thread": 7 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 3053411, + "thread": 5 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 3207785, + "thread": 1 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 3421243, + "thread": 5 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 3555105, + "thread": 26 + } + }, + { + "amount": "161.806350314", + "slot": { + "period": 3773755, + "thread": 21 + } + }, + { + "amount": "161.806350306", + "slot": { + "period": 3838090, + "thread": 27 + } + } + ], + "AU14UFmWpGhNjFanbszaEFFykPv2B1MEVHq2yop3WCFPJYd4VDEt": [ + { + "amount": "126.753776402", + "slot": { + "period": 53052, + "thread": 15 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 247313, + "thread": 11 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 406350, + "thread": 25 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 633610, + "thread": 15 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 792516, + "thread": 25 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 866941, + "thread": 1 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1125575, + "thread": 16 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1187948, + "thread": 26 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1475036, + "thread": 11 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1593244, + "thread": 11 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1807005, + "thread": 11 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 1848746, + "thread": 7 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2068551, + "thread": 7 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2290075, + "thread": 12 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2348693, + "thread": 25 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2470014, + "thread": 27 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2684171, + "thread": 2 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 2825076, + "thread": 15 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3106459, + "thread": 30 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3244182, + "thread": 24 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3362625, + "thread": 8 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3581597, + "thread": 25 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3668363, + "thread": 6 + } + }, + { + "amount": "126.753776402", + "slot": { + "period": 3831138, + "thread": 22 + } + } + ], + "AU14UesyCAs1LaCQvm7en8nMNfvHBBmqQsQPz21VgPrsUpYKXSZg": [ + { + "amount": "318.027060656", + "slot": { + "period": 80384, + "thread": 12 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 176246, + "thread": 3 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 376556, + "thread": 23 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 566501, + "thread": 12 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 703177, + "thread": 14 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 943710, + "thread": 3 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1113442, + "thread": 29 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1169396, + "thread": 25 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1371480, + "thread": 24 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1609144, + "thread": 24 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1730667, + "thread": 17 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 1860014, + "thread": 3 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2009377, + "thread": 8 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2180440, + "thread": 31 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2401160, + "thread": 25 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2580727, + "thread": 29 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2702707, + "thread": 23 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2915544, + "thread": 2 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 2995290, + "thread": 14 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 3143243, + "thread": 14 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 3355314, + "thread": 16 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 3452732, + "thread": 14 + } + }, + { + "amount": "318.027060656", + "slot": { + "period": 3669683, + "thread": 3 + } + }, + { + "amount": "318.027060645", + "slot": { + "period": 3871990, + "thread": 24 + } + } + ], + "AU14V7ACtd3hkRwhD4V75F36e4UiVAxfYnwfJWjb3QgXMmv3rYPy": [ + { + "amount": "160.320430106", + "slot": { + "period": 156283, + "thread": 2 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 172883, + "thread": 18 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 466101, + "thread": 31 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 548784, + "thread": 12 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 777803, + "thread": 31 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 959385, + "thread": 9 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 995527, + "thread": 5 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 1199396, + "thread": 4 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 1357931, + "thread": 14 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 1613915, + "thread": 3 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 1647221, + "thread": 1 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 1811846, + "thread": 6 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2065776, + "thread": 20 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2257296, + "thread": 9 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2350727, + "thread": 0 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2539184, + "thread": 22 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2785292, + "thread": 21 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 2930754, + "thread": 15 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 3031158, + "thread": 22 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 3288391, + "thread": 30 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 3449084, + "thread": 18 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 3459084, + "thread": 1 + } + }, + { + "amount": "160.320430106", + "slot": { + "period": 3750752, + "thread": 9 + } + }, + { + "amount": "160.320430095", + "slot": { + "period": 3937414, + "thread": 5 + } + } + ], + "AU14VBAmk3P99Sv8Fpt2ZhsFvhL4hzgHdQc41cCni2cHvd4eKa4e": [ + { + "amount": "127.091224804", + "slot": { + "period": 121938, + "thread": 1 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 269329, + "thread": 11 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 425635, + "thread": 3 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 510073, + "thread": 13 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 796079, + "thread": 0 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 848282, + "thread": 14 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1150156, + "thread": 23 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1187807, + "thread": 28 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1319270, + "thread": 19 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1548829, + "thread": 13 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1803756, + "thread": 15 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 1868026, + "thread": 7 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2084800, + "thread": 22 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2218133, + "thread": 24 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2447834, + "thread": 8 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2558459, + "thread": 19 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2782192, + "thread": 20 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2835597, + "thread": 30 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 2986200, + "thread": 29 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 3256748, + "thread": 22 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 3416912, + "thread": 7 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 3462434, + "thread": 23 + } + }, + { + "amount": "127.091224804", + "slot": { + "period": 3643289, + "thread": 7 + } + }, + { + "amount": "127.091224807", + "slot": { + "period": 3783339, + "thread": 24 + } + } + ], + "AU14VMb2L7YGVmACiocFQNp2rMRMgFgfG7EWobNWcSRn6HH3chEm": [ + { + "amount": "139.778228452", + "slot": { + "period": 159379, + "thread": 21 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 226773, + "thread": 29 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 394375, + "thread": 8 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 600392, + "thread": 31 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 707727, + "thread": 20 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 886075, + "thread": 12 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1111739, + "thread": 30 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1202153, + "thread": 30 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1380155, + "thread": 15 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1638578, + "thread": 7 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1710531, + "thread": 19 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 1950724, + "thread": 2 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2092658, + "thread": 29 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2177710, + "thread": 0 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2295701, + "thread": 23 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2559544, + "thread": 17 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2756849, + "thread": 6 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 2949926, + "thread": 15 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 3120014, + "thread": 9 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 3149496, + "thread": 9 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 3440683, + "thread": 31 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 3507445, + "thread": 15 + } + }, + { + "amount": "139.778228452", + "slot": { + "period": 3662496, + "thread": 15 + } + }, + { + "amount": "139.778228456", + "slot": { + "period": 3850178, + "thread": 3 + } + } + ], + "AU14VgpiWrABZuuoKThdqrPyscMqsgocttKcrYo5VNwTq8bvB7kK": [ + { + "amount": "242.639895842", + "slot": { + "period": 31682, + "thread": 5 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 254118, + "thread": 15 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 433830, + "thread": 31 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 617461, + "thread": 10 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 797171, + "thread": 6 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 864649, + "thread": 30 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1113820, + "thread": 7 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1236453, + "thread": 1 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1375376, + "thread": 8 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1549783, + "thread": 18 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1689888, + "thread": 24 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 1944290, + "thread": 10 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2039007, + "thread": 2 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2143802, + "thread": 25 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2437317, + "thread": 31 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2582365, + "thread": 0 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2668986, + "thread": 18 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2861930, + "thread": 31 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 2996754, + "thread": 28 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 3202741, + "thread": 16 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 3414181, + "thread": 10 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 3522224, + "thread": 5 + } + }, + { + "amount": "242.639895842", + "slot": { + "period": 3744062, + "thread": 17 + } + }, + { + "amount": "242.639895837", + "slot": { + "period": 3784882, + "thread": 13 + } + } + ], + "AU14W72njVVrcKfK3DbYe9Stpobbzu5LqkrhfuPuksrq7Hcm4UPL": [ + { + "amount": "81.078423333", + "slot": { + "period": 71779, + "thread": 26 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 310645, + "thread": 19 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 354179, + "thread": 2 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 554197, + "thread": 18 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 698688, + "thread": 23 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 890374, + "thread": 8 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 999900, + "thread": 15 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 1287833, + "thread": 25 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 1376375, + "thread": 30 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 1560440, + "thread": 1 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 1649251, + "thread": 30 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 1810324, + "thread": 13 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2075013, + "thread": 27 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2154293, + "thread": 11 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2376332, + "thread": 27 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2529269, + "thread": 11 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2639325, + "thread": 10 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 2839373, + "thread": 20 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 3089057, + "thread": 30 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 3193209, + "thread": 1 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 3307355, + "thread": 28 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 3530031, + "thread": 1 + } + }, + { + "amount": "81.078423333", + "slot": { + "period": 3779343, + "thread": 17 + } + }, + { + "amount": "81.078423343", + "slot": { + "period": 3919514, + "thread": 17 + } + } + ], + "AU14WKYHY6xkS9wqQZiBgMQnBaHZ35rUDZSAGyJobuNFuV5n3qwh": [ + { + "amount": "308.356606461", + "slot": { + "period": 63447, + "thread": 9 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 264421, + "thread": 0 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 340287, + "thread": 14 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 595228, + "thread": 2 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 787004, + "thread": 20 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 882641, + "thread": 6 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1118429, + "thread": 22 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1248094, + "thread": 13 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1343545, + "thread": 8 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1579359, + "thread": 26 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1752761, + "thread": 10 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 1939821, + "thread": 14 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2014902, + "thread": 22 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2162906, + "thread": 23 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2414804, + "thread": 0 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2468583, + "thread": 13 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2687836, + "thread": 29 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 2879731, + "thread": 3 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 3068545, + "thread": 23 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 3245993, + "thread": 22 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 3322554, + "thread": 8 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 3592273, + "thread": 3 + } + }, + { + "amount": "308.356606461", + "slot": { + "period": 3640793, + "thread": 9 + } + }, + { + "amount": "308.356606450", + "slot": { + "period": 3885436, + "thread": 24 + } + } + ], + "AU14Y34K1knNy8S6cQsaN4MpcgHVX2unrTVGdge8niRM35g2VzZn": [ + { + "amount": "173.374632752", + "slot": { + "period": 91470, + "thread": 16 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 237779, + "thread": 4 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 367712, + "thread": 4 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 602044, + "thread": 17 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 676961, + "thread": 28 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 896448, + "thread": 9 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1068096, + "thread": 11 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1254543, + "thread": 12 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1369963, + "thread": 14 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1481518, + "thread": 18 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1793501, + "thread": 7 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 1850649, + "thread": 13 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2119950, + "thread": 30 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2151270, + "thread": 8 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2433140, + "thread": 28 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2612598, + "thread": 11 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2767067, + "thread": 12 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 2875052, + "thread": 29 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 3037783, + "thread": 23 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 3200614, + "thread": 8 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 3359941, + "thread": 22 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 3524434, + "thread": 21 + } + }, + { + "amount": "173.374632752", + "slot": { + "period": 3664174, + "thread": 26 + } + }, + { + "amount": "173.374632760", + "slot": { + "period": 3884063, + "thread": 0 + } + } + ], + "AU14YapBczwK3dk1xQ7CAVAvjAQjVyvEd9caBajRvjJcm2mYnEV4": [ + { + "amount": "191.233452187", + "slot": { + "period": 73699, + "thread": 28 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 296619, + "thread": 22 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 386411, + "thread": 7 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 493085, + "thread": 7 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 796724, + "thread": 30 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 913677, + "thread": 8 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1029772, + "thread": 18 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1306514, + "thread": 16 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1339937, + "thread": 27 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1531168, + "thread": 15 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1652837, + "thread": 20 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 1862922, + "thread": 29 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2125173, + "thread": 29 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2218871, + "thread": 15 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2321637, + "thread": 3 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2534686, + "thread": 19 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2735148, + "thread": 16 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 2928121, + "thread": 24 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 3080457, + "thread": 29 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 3277094, + "thread": 20 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 3294374, + "thread": 29 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 3464889, + "thread": 11 + } + }, + { + "amount": "191.233452187", + "slot": { + "period": 3758343, + "thread": 10 + } + }, + { + "amount": "191.233452197", + "slot": { + "period": 3785723, + "thread": 2 + } + } + ], + "AU14Ys5oR9MkWhQomhr1tsXpgevWwUrKZB1WUK6vyYL4WhjNKzgJ": [ + { + "amount": "128.436698944", + "slot": { + "period": 79624, + "thread": 10 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 256449, + "thread": 5 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 413009, + "thread": 4 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 565044, + "thread": 12 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 785573, + "thread": 18 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 838417, + "thread": 11 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 988014, + "thread": 25 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 1244419, + "thread": 6 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 1355015, + "thread": 5 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 1502893, + "thread": 3 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 1765268, + "thread": 5 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 1973367, + "thread": 27 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2094371, + "thread": 3 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2171303, + "thread": 3 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2313423, + "thread": 9 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2558752, + "thread": 26 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2635623, + "thread": 16 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 2860879, + "thread": 21 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 3048298, + "thread": 11 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 3154625, + "thread": 1 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 3448445, + "thread": 26 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 3585380, + "thread": 7 + } + }, + { + "amount": "128.436698944", + "slot": { + "period": 3691922, + "thread": 9 + } + }, + { + "amount": "128.436698937", + "slot": { + "period": 3925621, + "thread": 23 + } + } + ], + "AU14ZdNqfwcDqgQjURZHJethkDqDi5ytwGLL3mr3PPKCiECh1JTK": [ + { + "amount": "79.643801325", + "slot": { + "period": 167014, + "thread": 20 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 266762, + "thread": 24 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 448365, + "thread": 18 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 596333, + "thread": 22 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 718886, + "thread": 11 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 923341, + "thread": 16 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1144733, + "thread": 24 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1254945, + "thread": 22 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1472934, + "thread": 8 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1535590, + "thread": 27 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1710076, + "thread": 7 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 1906762, + "thread": 13 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2046668, + "thread": 12 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2151019, + "thread": 9 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2381222, + "thread": 28 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2477014, + "thread": 21 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2672454, + "thread": 30 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2833628, + "thread": 23 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 2996336, + "thread": 13 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 3165268, + "thread": 15 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 3434417, + "thread": 17 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 3532886, + "thread": 19 + } + }, + { + "amount": "79.643801325", + "slot": { + "period": 3752881, + "thread": 4 + } + }, + { + "amount": "79.643801317", + "slot": { + "period": 3803481, + "thread": 27 + } + } + ], + "AU14ZpQ7D3kGD8F8gYXsdsRXcs218tkfsShmMqPxE9XnTGA9PHqb": [ + { + "amount": "7476.000000000", + "slot": { + "period": 142667, + "thread": 4 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 316992, + "thread": 27 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 444584, + "thread": 30 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 516610, + "thread": 13 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 724471, + "thread": 0 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 890410, + "thread": 24 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1063636, + "thread": 17 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1259267, + "thread": 30 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1349732, + "thread": 29 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1519957, + "thread": 13 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1661156, + "thread": 12 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1953737, + "thread": 1 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2054307, + "thread": 9 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2181426, + "thread": 6 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2367322, + "thread": 19 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2482514, + "thread": 24 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2779130, + "thread": 13 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2877780, + "thread": 16 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3042155, + "thread": 4 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3172839, + "thread": 20 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3441289, + "thread": 9 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3562675, + "thread": 9 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3755798, + "thread": 28 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3809417, + "thread": 9 + } + } + ], + "AU14aXxW6tN5xBTFDPrphqtX2oBbqWC7nSpeys4VdenzsJrck5cG": [ + { + "amount": "203.009980289", + "slot": { + "period": 126088, + "thread": 27 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 215970, + "thread": 23 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 429327, + "thread": 24 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 503500, + "thread": 10 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 778010, + "thread": 10 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 825849, + "thread": 10 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1014164, + "thread": 11 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1210197, + "thread": 13 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1345240, + "thread": 27 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1559420, + "thread": 7 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1666347, + "thread": 4 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 1826998, + "thread": 23 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2093469, + "thread": 22 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2235403, + "thread": 1 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2407066, + "thread": 3 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2488984, + "thread": 20 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2698596, + "thread": 21 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 2886945, + "thread": 9 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 3091069, + "thread": 26 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 3122417, + "thread": 11 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 3339284, + "thread": 5 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 3505436, + "thread": 2 + } + }, + { + "amount": "203.009980289", + "slot": { + "period": 3623454, + "thread": 22 + } + }, + { + "amount": "203.009980282", + "slot": { + "period": 3791526, + "thread": 30 + } + } + ], + "AU14apQqoMtZtpe6ToKGxh4keZPhHLzRN8pVGe3xk8hWKC7GLKWi": [ + { + "amount": "237.365533849", + "slot": { + "period": 32799, + "thread": 9 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 171122, + "thread": 12 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 487325, + "thread": 12 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 531134, + "thread": 10 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 781552, + "thread": 27 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 952277, + "thread": 30 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1037070, + "thread": 1 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1286338, + "thread": 11 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1387012, + "thread": 6 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1586054, + "thread": 2 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1802147, + "thread": 16 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 1848869, + "thread": 19 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2086178, + "thread": 9 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2208929, + "thread": 9 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2315123, + "thread": 20 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2463962, + "thread": 30 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2789306, + "thread": 15 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 2924243, + "thread": 3 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 3079035, + "thread": 8 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 3148434, + "thread": 5 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 3303893, + "thread": 20 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 3478819, + "thread": 13 + } + }, + { + "amount": "237.365533849", + "slot": { + "period": 3693981, + "thread": 5 + } + }, + { + "amount": "237.365533839", + "slot": { + "period": 3815668, + "thread": 6 + } + } + ], + "AU14asQoHo5WbCGdHyv3NrnoGQu6owY7n2znxSZNE5ZmPJnYPHQh": [ + { + "amount": "363.768192868", + "slot": { + "period": 153158, + "thread": 15 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 188760, + "thread": 5 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 428984, + "thread": 17 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 550614, + "thread": 29 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 697329, + "thread": 10 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 910654, + "thread": 21 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1094971, + "thread": 16 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1312103, + "thread": 27 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1372820, + "thread": 27 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1622991, + "thread": 23 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1681260, + "thread": 19 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 1874867, + "thread": 21 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2078687, + "thread": 31 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2167459, + "thread": 17 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2451834, + "thread": 16 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2568126, + "thread": 27 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2762549, + "thread": 31 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2927982, + "thread": 23 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 2957764, + "thread": 9 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 3266299, + "thread": 13 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 3402395, + "thread": 2 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 3504710, + "thread": 27 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 3641161, + "thread": 21 + } + }, + { + "amount": "363.768192868", + "slot": { + "period": 3928301, + "thread": 30 + } + } + ], + "AU14bQBuVRaCaJY8JvaxF96iHyD8Qtt1579sxKDgDL37hCjQ7pqv": [ + { + "amount": "122.158759485", + "slot": { + "period": 29316, + "thread": 4 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 267097, + "thread": 21 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 380047, + "thread": 9 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 604069, + "thread": 13 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 788988, + "thread": 12 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 926943, + "thread": 8 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1058213, + "thread": 31 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1256318, + "thread": 6 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1428409, + "thread": 10 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1630716, + "thread": 11 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1752048, + "thread": 22 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 1965453, + "thread": 2 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2030786, + "thread": 30 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2170094, + "thread": 13 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2416386, + "thread": 2 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2522330, + "thread": 13 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2783585, + "thread": 18 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2815761, + "thread": 17 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 2963605, + "thread": 9 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 3169113, + "thread": 13 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 3294711, + "thread": 30 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 3557252, + "thread": 10 + } + }, + { + "amount": "122.158759485", + "slot": { + "period": 3684717, + "thread": 27 + } + }, + { + "amount": "122.158759475", + "slot": { + "period": 3780041, + "thread": 17 + } + } + ], + "AU14biucdG4Ry4PHrufWNQDJBh7B4PYrYumHUnYRUn4XAgbA8B1R": [ + { + "amount": "144.453330647", + "slot": { + "period": 67826, + "thread": 30 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 300315, + "thread": 20 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 443557, + "thread": 3 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 493756, + "thread": 12 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 702028, + "thread": 14 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 896252, + "thread": 31 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1072060, + "thread": 1 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1249113, + "thread": 2 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1390422, + "thread": 10 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1625222, + "thread": 26 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1683859, + "thread": 12 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 1943086, + "thread": 10 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2136109, + "thread": 18 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2182021, + "thread": 29 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2428830, + "thread": 13 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2589399, + "thread": 6 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2647619, + "thread": 12 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2938418, + "thread": 16 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 2989004, + "thread": 2 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 3141291, + "thread": 5 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 3412607, + "thread": 14 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 3555577, + "thread": 3 + } + }, + { + "amount": "144.453330647", + "slot": { + "period": 3642716, + "thread": 20 + } + }, + { + "amount": "144.453330646", + "slot": { + "period": 3839604, + "thread": 29 + } + } + ], + "AU14chFMNBEQU83CeK3y2gHsGcQE7vG8bMqYrBupS4E3BWngBAWL": [ + { + "amount": "319.386692323", + "slot": { + "period": 147746, + "thread": 30 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 218814, + "thread": 17 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 418264, + "thread": 15 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 604037, + "thread": 27 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 722220, + "thread": 3 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 837639, + "thread": 0 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1020841, + "thread": 13 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1193430, + "thread": 0 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1443701, + "thread": 0 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1490571, + "thread": 21 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1701242, + "thread": 28 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 1877318, + "thread": 13 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2098827, + "thread": 31 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2155780, + "thread": 23 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2397008, + "thread": 17 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2586524, + "thread": 29 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2630510, + "thread": 10 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2935594, + "thread": 8 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 2960007, + "thread": 25 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 3136578, + "thread": 3 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 3399206, + "thread": 25 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 3485383, + "thread": 30 + } + }, + { + "amount": "319.386692323", + "slot": { + "period": 3740548, + "thread": 28 + } + }, + { + "amount": "319.386692321", + "slot": { + "period": 3876580, + "thread": 10 + } + } + ], + "AU14ejTWvWtuP6SrYCLxWVxdQD64DpYoa9yJVNr49q7JHVZD3Q47": [ + { + "amount": "325.347344014", + "slot": { + "period": 129066, + "thread": 30 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 173965, + "thread": 11 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 470411, + "thread": 1 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 635298, + "thread": 16 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 735876, + "thread": 20 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 964875, + "thread": 26 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1016923, + "thread": 8 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1186413, + "thread": 6 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1326670, + "thread": 29 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1480032, + "thread": 5 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1803870, + "thread": 30 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 1906118, + "thread": 4 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2014704, + "thread": 22 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2195244, + "thread": 22 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2430091, + "thread": 25 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2556795, + "thread": 26 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2753494, + "thread": 11 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 2929359, + "thread": 27 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 3100679, + "thread": 26 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 3135945, + "thread": 28 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 3362120, + "thread": 31 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 3516657, + "thread": 21 + } + }, + { + "amount": "325.347344014", + "slot": { + "period": 3756465, + "thread": 8 + } + }, + { + "amount": "325.347344026", + "slot": { + "period": 3782991, + "thread": 16 + } + } + ], + "AU14fd6nZBivJceNeSRXbuCwRtuEiCApimQMduoBBiyumqPPgwhc": [ + { + "amount": "64.382479546", + "slot": { + "period": 150709, + "thread": 17 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 209840, + "thread": 30 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 326849, + "thread": 27 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 653072, + "thread": 6 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 758822, + "thread": 21 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 899313, + "thread": 10 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1068663, + "thread": 6 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1154152, + "thread": 6 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1336193, + "thread": 24 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1585100, + "thread": 27 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1685156, + "thread": 10 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 1829094, + "thread": 24 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2105011, + "thread": 19 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2244549, + "thread": 25 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2418790, + "thread": 13 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2501598, + "thread": 27 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2626060, + "thread": 20 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 2858674, + "thread": 13 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 3068285, + "thread": 23 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 3141606, + "thread": 30 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 3437339, + "thread": 26 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 3549703, + "thread": 24 + } + }, + { + "amount": "64.382479546", + "slot": { + "period": 3631281, + "thread": 6 + } + }, + { + "amount": "64.382479554", + "slot": { + "period": 3860582, + "thread": 8 + } + } + ], + "AU14fjhCp4zXgXos5X6kGQXYkpBs1AXDxNwCGHDzfZfSbbLw97UK": [ + { + "amount": "254.867273380", + "slot": { + "period": 147110, + "thread": 17 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 230022, + "thread": 10 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 444150, + "thread": 11 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 630613, + "thread": 4 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 705925, + "thread": 7 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 912307, + "thread": 20 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1119842, + "thread": 4 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1280057, + "thread": 25 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1340311, + "thread": 19 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1571878, + "thread": 19 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1761373, + "thread": 9 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 1810012, + "thread": 19 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2050778, + "thread": 1 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2271461, + "thread": 6 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2311811, + "thread": 1 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2595705, + "thread": 8 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2779420, + "thread": 25 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 2872097, + "thread": 3 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 3007504, + "thread": 2 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 3254232, + "thread": 25 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 3323067, + "thread": 19 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 3453127, + "thread": 16 + } + }, + { + "amount": "254.867273380", + "slot": { + "period": 3657824, + "thread": 23 + } + }, + { + "amount": "254.867273373", + "slot": { + "period": 3934773, + "thread": 7 + } + } + ], + "AU14fmcZMdP8bDdhyTMQ45NhG7EErqmsFKcqgQLoZDYqmg6ddbvy": [ + { + "amount": "418.040853286", + "slot": { + "period": 41326, + "thread": 15 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 245695, + "thread": 25 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 348716, + "thread": 12 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 648824, + "thread": 13 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 793236, + "thread": 8 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 951460, + "thread": 5 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1117008, + "thread": 11 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1240392, + "thread": 3 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1358130, + "thread": 29 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1528958, + "thread": 21 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1660637, + "thread": 30 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 1828392, + "thread": 15 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2137015, + "thread": 24 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2190545, + "thread": 31 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2301217, + "thread": 7 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2535779, + "thread": 20 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2749774, + "thread": 31 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 2908833, + "thread": 19 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 3056352, + "thread": 14 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 3144398, + "thread": 13 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 3293236, + "thread": 23 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 3467225, + "thread": 30 + } + }, + { + "amount": "418.040853286", + "slot": { + "period": 3749140, + "thread": 27 + } + }, + { + "amount": "418.040853296", + "slot": { + "period": 3860432, + "thread": 5 + } + } + ], + "AU14fmhrr1EJxxP4AT9h1pnhvciYMmjV7C1Y5kdjxDemuWC22wTo": [ + { + "amount": "146.297614703", + "slot": { + "period": 78987, + "thread": 28 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 317257, + "thread": 19 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 347717, + "thread": 31 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 547701, + "thread": 24 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 686331, + "thread": 6 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 938621, + "thread": 5 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 992472, + "thread": 6 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 1295913, + "thread": 22 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 1461725, + "thread": 30 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 1506615, + "thread": 8 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 1702537, + "thread": 11 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 1936490, + "thread": 2 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2080229, + "thread": 5 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2241046, + "thread": 27 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2316331, + "thread": 6 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2464439, + "thread": 5 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2671730, + "thread": 3 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 2833482, + "thread": 12 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 3074949, + "thread": 16 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 3183531, + "thread": 20 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 3410904, + "thread": 24 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 3524950, + "thread": 31 + } + }, + { + "amount": "146.297614703", + "slot": { + "period": 3668610, + "thread": 23 + } + }, + { + "amount": "146.297614711", + "slot": { + "period": 3924792, + "thread": 31 + } + } + ], + "AU14gWGnhd4BKEdHp7bnF8xtuvQq4wu65bDwRqVqf6jtkVodtNiB": [ + { + "amount": "185.027049232", + "slot": { + "period": 36394, + "thread": 11 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 254465, + "thread": 4 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 374270, + "thread": 12 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 598218, + "thread": 2 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 802215, + "thread": 15 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 871760, + "thread": 6 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1104305, + "thread": 0 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1312128, + "thread": 29 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1422912, + "thread": 17 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1632423, + "thread": 21 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1678619, + "thread": 19 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1919429, + "thread": 9 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 1984701, + "thread": 27 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 2195747, + "thread": 27 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 2415333, + "thread": 26 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 2505520, + "thread": 10 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 2722755, + "thread": 12 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 2872933, + "thread": 3 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 3003491, + "thread": 21 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 3275829, + "thread": 9 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 3306590, + "thread": 19 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 3514577, + "thread": 5 + } + }, + { + "amount": "185.027049232", + "slot": { + "period": 3694891, + "thread": 8 + } + }, + { + "amount": "185.027049242", + "slot": { + "period": 3941258, + "thread": 23 + } + } + ], + "AU14ga31sLGTeBMypAr5Th7WqFz89yxNBsoY3AWh2atGGf5riQWf": [ + { + "amount": "106.423466839", + "slot": { + "period": 80770, + "thread": 9 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 189775, + "thread": 12 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 478092, + "thread": 19 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 609071, + "thread": 11 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 802001, + "thread": 28 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 918401, + "thread": 3 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1009510, + "thread": 25 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1277083, + "thread": 23 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1325472, + "thread": 30 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1486415, + "thread": 1 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1758948, + "thread": 23 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 1824091, + "thread": 4 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2087772, + "thread": 13 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2224873, + "thread": 27 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2398853, + "thread": 15 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2475980, + "thread": 31 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2637073, + "thread": 14 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2851546, + "thread": 8 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 2977431, + "thread": 3 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 3153755, + "thread": 25 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 3293865, + "thread": 16 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 3566054, + "thread": 16 + } + }, + { + "amount": "106.423466839", + "slot": { + "period": 3731719, + "thread": 23 + } + }, + { + "amount": "106.423466835", + "slot": { + "period": 3876656, + "thread": 18 + } + } + ], + "AU14gbztUXqoskbkg2yzaFdrG9xdm5osn7bcev47R2rJhaLEuuCs": [ + { + "amount": "426.859867648", + "slot": { + "period": 53300, + "thread": 8 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 235649, + "thread": 21 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 339574, + "thread": 4 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 540714, + "thread": 21 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 671970, + "thread": 26 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 881776, + "thread": 5 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1105790, + "thread": 19 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1169413, + "thread": 18 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1424466, + "thread": 5 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1641099, + "thread": 19 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1799735, + "thread": 24 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1964471, + "thread": 29 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 1985639, + "thread": 20 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 2167491, + "thread": 10 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 2400364, + "thread": 1 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 2561508, + "thread": 28 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 2691315, + "thread": 30 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 2937445, + "thread": 16 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 3072635, + "thread": 16 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 3193228, + "thread": 7 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 3337487, + "thread": 27 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 3491073, + "thread": 23 + } + }, + { + "amount": "426.859867648", + "slot": { + "period": 3658608, + "thread": 10 + } + }, + { + "amount": "426.859867658", + "slot": { + "period": 3932672, + "thread": 30 + } + } + ], + "AU14hJZi8Gn7LTw55goU5KBUkDitBEwCixfDPVVcAzp2CoJZexxf": [ + { + "amount": "86.302947807", + "slot": { + "period": 155129, + "thread": 23 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 234718, + "thread": 29 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 485734, + "thread": 2 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 530608, + "thread": 10 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 718435, + "thread": 11 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 852481, + "thread": 13 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1103149, + "thread": 29 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1282620, + "thread": 11 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1325540, + "thread": 17 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1573690, + "thread": 11 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1722356, + "thread": 26 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 1967647, + "thread": 22 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2037302, + "thread": 12 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2255123, + "thread": 9 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2347458, + "thread": 1 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2485761, + "thread": 17 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2672257, + "thread": 3 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 2910650, + "thread": 19 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 3033869, + "thread": 20 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 3284837, + "thread": 7 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 3433469, + "thread": 17 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 3491646, + "thread": 30 + } + }, + { + "amount": "86.302947807", + "slot": { + "period": 3710210, + "thread": 3 + } + }, + { + "amount": "86.302947810", + "slot": { + "period": 3848402, + "thread": 29 + } + } + ], + "AU14jSHxygWBp9VQK8un8kJhM1T3oUeKcmTkS4x4WQ1FboZYEUnR": [ + { + "amount": "459.645955957", + "slot": { + "period": 11218, + "thread": 3 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 245264, + "thread": 18 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 423548, + "thread": 11 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 631132, + "thread": 22 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 664680, + "thread": 23 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 913009, + "thread": 28 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1059327, + "thread": 16 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1202162, + "thread": 19 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1373220, + "thread": 23 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1590315, + "thread": 10 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1654172, + "thread": 2 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 1943704, + "thread": 0 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2104297, + "thread": 27 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2186112, + "thread": 10 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2310079, + "thread": 18 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2580331, + "thread": 25 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2764672, + "thread": 16 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 2843525, + "thread": 12 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 3028506, + "thread": 2 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 3187593, + "thread": 2 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 3289164, + "thread": 15 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 3502369, + "thread": 28 + } + }, + { + "amount": "459.645955957", + "slot": { + "period": 3736810, + "thread": 6 + } + }, + { + "amount": "459.645955952", + "slot": { + "period": 3868030, + "thread": 6 + } + } + ], + "AU14k8Yq7FbEpxgXPXREASzJx9kExMtZ3FqeDftwcvebA4spu1sh": [ + { + "amount": "95.977499455", + "slot": { + "period": 103919, + "thread": 23 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 168125, + "thread": 10 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 418092, + "thread": 30 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 491985, + "thread": 30 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 760655, + "thread": 17 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 908940, + "thread": 30 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1036758, + "thread": 26 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1312443, + "thread": 22 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1403046, + "thread": 31 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1580536, + "thread": 8 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1785422, + "thread": 29 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 1917665, + "thread": 29 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2066854, + "thread": 9 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2287150, + "thread": 1 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2377158, + "thread": 2 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2558365, + "thread": 27 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2631668, + "thread": 0 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 2891039, + "thread": 15 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 3058368, + "thread": 11 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 3127928, + "thread": 9 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 3409450, + "thread": 26 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 3559997, + "thread": 24 + } + }, + { + "amount": "95.977499455", + "slot": { + "period": 3730273, + "thread": 24 + } + }, + { + "amount": "95.977499462", + "slot": { + "period": 3859409, + "thread": 22 + } + } + ], + "AU14kGcvfBCd6nk5BiTrX6gX52vH5DXA9CUnMtLFDYSAXtim8LtH": [ + { + "amount": "559.476055444", + "slot": { + "period": 40635, + "thread": 3 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 203363, + "thread": 15 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 345018, + "thread": 21 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 502760, + "thread": 22 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 707045, + "thread": 21 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 969743, + "thread": 13 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1136534, + "thread": 13 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1256240, + "thread": 0 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1338796, + "thread": 10 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1611778, + "thread": 0 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1808102, + "thread": 20 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1964513, + "thread": 26 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 1987503, + "thread": 19 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2199965, + "thread": 28 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2383202, + "thread": 22 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2515931, + "thread": 17 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2702726, + "thread": 29 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2864799, + "thread": 29 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 2972216, + "thread": 15 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 3198517, + "thread": 30 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 3437214, + "thread": 14 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 3575801, + "thread": 13 + } + }, + { + "amount": "559.476055444", + "slot": { + "period": 3779134, + "thread": 7 + } + }, + { + "amount": "559.476055433", + "slot": { + "period": 3885257, + "thread": 8 + } + } + ], + "AU14kRqRGGvjPPmyVK6tNPoyXytPSxmfkFhUZr3oAuPEh1VtFtLC": [ + { + "amount": "155.026470293", + "slot": { + "period": 74751, + "thread": 2 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 228598, + "thread": 11 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 483872, + "thread": 15 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 519945, + "thread": 6 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 657138, + "thread": 4 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 825602, + "thread": 28 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1120238, + "thread": 17 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1308469, + "thread": 23 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1412774, + "thread": 6 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1551998, + "thread": 13 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1653980, + "thread": 31 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 1812425, + "thread": 26 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2000481, + "thread": 28 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2255431, + "thread": 12 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2327380, + "thread": 16 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2602673, + "thread": 17 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2684897, + "thread": 21 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 2796560, + "thread": 6 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 3002943, + "thread": 0 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 3187946, + "thread": 21 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 3356166, + "thread": 0 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 3493728, + "thread": 25 + } + }, + { + "amount": "155.026470293", + "slot": { + "period": 3760833, + "thread": 14 + } + }, + { + "amount": "155.026470292", + "slot": { + "period": 3784090, + "thread": 8 + } + } + ], + "AU14kw71QUe2ZXNUEADSBQihMPZKQ4vozc9iRGhPFiDCfRYMiaR7": [ + { + "amount": "120.910843697", + "slot": { + "period": 77427, + "thread": 4 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 234437, + "thread": 1 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 420678, + "thread": 7 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 565278, + "thread": 27 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 780149, + "thread": 29 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 914669, + "thread": 19 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1146427, + "thread": 20 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1289805, + "thread": 15 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1382532, + "thread": 17 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1562203, + "thread": 14 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1710402, + "thread": 9 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 1928522, + "thread": 2 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2000667, + "thread": 25 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2169858, + "thread": 27 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2308610, + "thread": 10 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2524063, + "thread": 27 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2768176, + "thread": 2 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 2848553, + "thread": 21 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 3005303, + "thread": 27 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 3250318, + "thread": 13 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 3298856, + "thread": 13 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 3511627, + "thread": 2 + } + }, + { + "amount": "120.910843697", + "slot": { + "period": 3680802, + "thread": 18 + } + }, + { + "amount": "120.910843707", + "slot": { + "period": 3883847, + "thread": 22 + } + } + ], + "AU14mLJKX6VjVnuTFQcep1W6vK5a68g27YQZEbMU62JS7gVSGMVy": [ + { + "amount": "156.623603240", + "slot": { + "period": 84101, + "thread": 23 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 221293, + "thread": 22 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 342228, + "thread": 28 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 557201, + "thread": 7 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 654492, + "thread": 15 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 972401, + "thread": 27 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1018212, + "thread": 2 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1214343, + "thread": 13 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1444925, + "thread": 14 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1483983, + "thread": 3 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1803045, + "thread": 30 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 1964437, + "thread": 25 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2068400, + "thread": 3 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2271740, + "thread": 8 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2314036, + "thread": 29 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2486155, + "thread": 2 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2670345, + "thread": 26 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 2914181, + "thread": 3 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 3039993, + "thread": 17 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 3137466, + "thread": 5 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 3406683, + "thread": 3 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 3473316, + "thread": 27 + } + }, + { + "amount": "156.623603240", + "slot": { + "period": 3720413, + "thread": 16 + } + }, + { + "amount": "156.623603237", + "slot": { + "period": 3805734, + "thread": 9 + } + } + ], + "AU14mMMmU95rsCAbUZkufuq3jcScGKtwW72oK2FSEpqi96xEYRgX": [ + { + "amount": "164.207229867", + "slot": { + "period": 26078, + "thread": 21 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 180836, + "thread": 15 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 369737, + "thread": 4 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 532654, + "thread": 9 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 688333, + "thread": 24 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 859509, + "thread": 12 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1128741, + "thread": 29 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1267126, + "thread": 15 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1472783, + "thread": 22 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1566911, + "thread": 13 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1679732, + "thread": 19 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 1903543, + "thread": 28 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2053122, + "thread": 17 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2283644, + "thread": 20 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2443446, + "thread": 30 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2479861, + "thread": 23 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2673473, + "thread": 22 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2945146, + "thread": 9 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 2970914, + "thread": 6 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 3157735, + "thread": 5 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 3438794, + "thread": 6 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 3594777, + "thread": 21 + } + }, + { + "amount": "164.207229867", + "slot": { + "period": 3725449, + "thread": 17 + } + }, + { + "amount": "164.207229869", + "slot": { + "period": 3830373, + "thread": 8 + } + } + ], + "AU14mqzybrXPBF9GibebVL5tiQWJk7FoPo2CmNeRosSYc8BDabXm": [ + { + "amount": "134.511893086", + "slot": { + "period": 155598, + "thread": 19 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 171035, + "thread": 13 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 391847, + "thread": 23 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 545695, + "thread": 30 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 749922, + "thread": 13 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 936786, + "thread": 22 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1082862, + "thread": 0 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1313353, + "thread": 11 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1457448, + "thread": 22 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1604343, + "thread": 21 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1803372, + "thread": 4 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 1932105, + "thread": 18 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2011850, + "thread": 7 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2164213, + "thread": 21 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2415785, + "thread": 8 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2538898, + "thread": 8 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2757137, + "thread": 2 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 2917439, + "thread": 1 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 3094969, + "thread": 21 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 3230455, + "thread": 30 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 3399546, + "thread": 23 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 3477484, + "thread": 12 + } + }, + { + "amount": "134.511893086", + "slot": { + "period": 3687440, + "thread": 8 + } + }, + { + "amount": "134.511893089", + "slot": { + "period": 3934929, + "thread": 13 + } + } + ], + "AU14mujdjZZuDQntpUSYA6UdEH9tiNjTDjNkjqWcJERkqBMebsk8": [ + { + "amount": "252.944408405", + "slot": { + "period": 77796, + "thread": 6 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 202138, + "thread": 26 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 453238, + "thread": 14 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 513321, + "thread": 24 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 708128, + "thread": 3 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 906237, + "thread": 20 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1018327, + "thread": 30 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1292936, + "thread": 19 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1471185, + "thread": 24 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1559221, + "thread": 5 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1781867, + "thread": 23 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 1869212, + "thread": 9 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2050684, + "thread": 1 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2267671, + "thread": 22 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2436212, + "thread": 23 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2523197, + "thread": 23 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2769348, + "thread": 27 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2874109, + "thread": 20 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 2986769, + "thread": 29 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 3261009, + "thread": 26 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 3323915, + "thread": 23 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 3496616, + "thread": 12 + } + }, + { + "amount": "252.944408405", + "slot": { + "period": 3665491, + "thread": 13 + } + }, + { + "amount": "252.944408402", + "slot": { + "period": 3811933, + "thread": 22 + } + } + ], + "AU14nAn1Kjkf8WfeC7zgtDGwvfiMZY9SsE8axBf2ZbXVE8u5h9W6": [ + { + "amount": "207.203951052", + "slot": { + "period": 127358, + "thread": 26 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 247790, + "thread": 7 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 333691, + "thread": 30 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 637308, + "thread": 30 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 681512, + "thread": 19 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 941478, + "thread": 6 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1001430, + "thread": 26 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1205614, + "thread": 20 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1323268, + "thread": 2 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1632585, + "thread": 27 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1689877, + "thread": 19 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 1916376, + "thread": 25 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2114350, + "thread": 29 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2262181, + "thread": 27 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2321646, + "thread": 2 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2549035, + "thread": 8 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2628413, + "thread": 8 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2805421, + "thread": 25 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 2960603, + "thread": 8 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 3266824, + "thread": 29 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 3358732, + "thread": 31 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 3611336, + "thread": 16 + } + }, + { + "amount": "207.203951052", + "slot": { + "period": 3656975, + "thread": 14 + } + }, + { + "amount": "207.203951062", + "slot": { + "period": 3800516, + "thread": 21 + } + } + ], + "AU14orWyFV7k2zMU475X3MfZFy59GAnXeht4RGnCHjz29iCv8DHa": [ + { + "amount": "130.645602664", + "slot": { + "period": 78827, + "thread": 3 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 263380, + "thread": 20 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 360504, + "thread": 20 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 505417, + "thread": 21 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 703397, + "thread": 23 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 867920, + "thread": 4 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1035532, + "thread": 17 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1313535, + "thread": 15 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1438944, + "thread": 19 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1635430, + "thread": 31 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1677132, + "thread": 4 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 1931770, + "thread": 9 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2141306, + "thread": 3 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2224454, + "thread": 6 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2382836, + "thread": 13 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2501873, + "thread": 2 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2789733, + "thread": 21 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 2852223, + "thread": 27 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 3109552, + "thread": 1 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 3124330, + "thread": 30 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 3415099, + "thread": 7 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 3525499, + "thread": 26 + } + }, + { + "amount": "130.645602664", + "slot": { + "period": 3657592, + "thread": 15 + } + }, + { + "amount": "130.645602654", + "slot": { + "period": 3864766, + "thread": 4 + } + } + ], + "AU14p8HyxfsYVXnHEv6YyG4zVET7Tfv6z1DbzmQSrFuLxR5e7YUA": [ + { + "amount": "82.502452412", + "slot": { + "period": 111053, + "thread": 10 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 274137, + "thread": 13 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 390756, + "thread": 28 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 553951, + "thread": 8 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 722593, + "thread": 28 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 947806, + "thread": 4 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1061978, + "thread": 13 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1293545, + "thread": 6 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1370741, + "thread": 26 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1486159, + "thread": 21 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1759665, + "thread": 16 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 1857262, + "thread": 15 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2000711, + "thread": 9 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2269924, + "thread": 26 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2355485, + "thread": 22 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2550080, + "thread": 19 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2667071, + "thread": 20 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2918895, + "thread": 25 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 2972508, + "thread": 5 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 3230224, + "thread": 7 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 3387463, + "thread": 31 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 3477608, + "thread": 26 + } + }, + { + "amount": "82.502452412", + "slot": { + "period": 3618773, + "thread": 30 + } + }, + { + "amount": "82.502452403", + "slot": { + "period": 3924753, + "thread": 17 + } + } + ], + "AU14pW3mmEETfUqJaJ1BdYHjzCxWuSjbZPHNn7uFhWdYcuQ46Y87": [ + { + "amount": "51.374617211", + "slot": { + "period": 125217, + "thread": 29 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 221899, + "thread": 4 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 373970, + "thread": 5 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 629042, + "thread": 1 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 736757, + "thread": 27 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 975287, + "thread": 3 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1098282, + "thread": 24 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1175988, + "thread": 13 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1466047, + "thread": 17 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1550650, + "thread": 25 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1807972, + "thread": 5 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 1925884, + "thread": 22 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2055453, + "thread": 13 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2225042, + "thread": 2 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2433075, + "thread": 31 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2557273, + "thread": 14 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2639422, + "thread": 4 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2917539, + "thread": 16 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 2968928, + "thread": 3 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 3258514, + "thread": 5 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 3311323, + "thread": 22 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 3532901, + "thread": 27 + } + }, + { + "amount": "51.374617211", + "slot": { + "period": 3654456, + "thread": 28 + } + }, + { + "amount": "51.374617214", + "slot": { + "period": 3878055, + "thread": 20 + } + } + ], + "AU14psnhu3GAVpcV3sJxJQhWvGGRnPDGFHKmfnxSma9gn1Gz43ud": [ + { + "amount": "210.741037017", + "slot": { + "period": 156764, + "thread": 13 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 218299, + "thread": 13 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 392474, + "thread": 14 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 512897, + "thread": 26 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 819470, + "thread": 21 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 822406, + "thread": 1 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1011897, + "thread": 28 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1306289, + "thread": 20 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1446665, + "thread": 24 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1494435, + "thread": 17 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1783400, + "thread": 11 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 1858194, + "thread": 7 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2044961, + "thread": 26 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2269488, + "thread": 9 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2355529, + "thread": 5 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2618834, + "thread": 15 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2710497, + "thread": 28 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 2931815, + "thread": 28 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 3077361, + "thread": 0 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 3141610, + "thread": 4 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 3383042, + "thread": 19 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 3527353, + "thread": 5 + } + }, + { + "amount": "210.741037017", + "slot": { + "period": 3779879, + "thread": 24 + } + }, + { + "amount": "210.741037016", + "slot": { + "period": 3928100, + "thread": 25 + } + } + ], + "AU14qDurdUWtW1qfbMjqjASgyaXqVrsF5uubntqQwZHYeXtGPhp2": [ + { + "amount": "243.514479951", + "slot": { + "period": 28071, + "thread": 8 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 222125, + "thread": 6 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 326336, + "thread": 13 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 600120, + "thread": 14 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 778337, + "thread": 5 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 871727, + "thread": 28 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1006146, + "thread": 23 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1186974, + "thread": 28 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1331677, + "thread": 22 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1548789, + "thread": 12 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1685008, + "thread": 31 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 1823443, + "thread": 17 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2118860, + "thread": 16 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2193854, + "thread": 27 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2365514, + "thread": 25 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2582195, + "thread": 27 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2633701, + "thread": 22 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2807103, + "thread": 21 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 2975408, + "thread": 7 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 3129114, + "thread": 28 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 3402446, + "thread": 16 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 3548989, + "thread": 13 + } + }, + { + "amount": "243.514479951", + "slot": { + "period": 3714074, + "thread": 31 + } + }, + { + "amount": "243.514479957", + "slot": { + "period": 3799348, + "thread": 15 + } + } + ], + "AU14rJC6EbG4cWnqFwXYMMc54gEjywEUYLbXDgEZYgpPkzMmqyg1": [ + { + "amount": "56.141794252", + "slot": { + "period": 104348, + "thread": 17 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 240611, + "thread": 4 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 420715, + "thread": 6 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 514660, + "thread": 10 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 783979, + "thread": 26 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 830589, + "thread": 1 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1052091, + "thread": 14 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1273925, + "thread": 30 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1427222, + "thread": 8 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1558715, + "thread": 29 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1795126, + "thread": 25 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 1888554, + "thread": 24 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2128214, + "thread": 8 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2180259, + "thread": 30 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2453995, + "thread": 13 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2524443, + "thread": 20 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2669432, + "thread": 21 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 2872128, + "thread": 1 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 3012245, + "thread": 18 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 3166292, + "thread": 18 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 3419830, + "thread": 31 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 3459578, + "thread": 17 + } + }, + { + "amount": "56.141794252", + "slot": { + "period": 3651020, + "thread": 25 + } + }, + { + "amount": "56.141794240", + "slot": { + "period": 3824690, + "thread": 19 + } + } + ], + "AU14rqKyH4W1qhwmGpuFjF4QuPvUdumfe5WjawUB7pVh7ut8BKH5": [ + { + "amount": "217.046206707", + "slot": { + "period": 79936, + "thread": 1 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 178271, + "thread": 15 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 355763, + "thread": 26 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 504793, + "thread": 2 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 683140, + "thread": 13 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 976238, + "thread": 28 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1053035, + "thread": 26 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1208188, + "thread": 24 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1407238, + "thread": 5 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1520207, + "thread": 19 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1664789, + "thread": 29 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1844973, + "thread": 12 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 1981302, + "thread": 22 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 2289325, + "thread": 20 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 2423656, + "thread": 25 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 2531994, + "thread": 27 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 2789595, + "thread": 22 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 2858832, + "thread": 10 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 3103910, + "thread": 24 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 3144037, + "thread": 29 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 3339410, + "thread": 7 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 3533564, + "thread": 30 + } + }, + { + "amount": "217.046206707", + "slot": { + "period": 3777932, + "thread": 18 + } + }, + { + "amount": "217.046206710", + "slot": { + "period": 3905763, + "thread": 0 + } + } + ], + "AU14tgPMKYC7GnQ4y7ngAiYdW4AHobAeeprQ3KtfhqtP3saTDgBP": [ + { + "amount": "68.058119694", + "slot": { + "period": 54044, + "thread": 8 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 296383, + "thread": 10 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 386466, + "thread": 25 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 554170, + "thread": 3 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 726199, + "thread": 12 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 853337, + "thread": 16 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1102030, + "thread": 28 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1241653, + "thread": 28 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1477357, + "thread": 13 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1613999, + "thread": 16 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1779492, + "thread": 22 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1850074, + "thread": 19 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 1980230, + "thread": 20 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 2242305, + "thread": 17 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 2309019, + "thread": 13 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 2548129, + "thread": 12 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 2702127, + "thread": 18 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 2874354, + "thread": 16 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3009025, + "thread": 1 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3224445, + "thread": 19 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3448810, + "thread": 7 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3615755, + "thread": 10 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3637667, + "thread": 26 + } + }, + { + "amount": "68.058119694", + "slot": { + "period": 3929411, + "thread": 6 + } + } + ], + "AU14twJ7adNy5W5CH2icfsSjDzjCQT3ymhne3Zmaah8uVXs74KqN": [ + { + "amount": "111.733444602", + "slot": { + "period": 53077, + "thread": 5 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 304837, + "thread": 0 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 477706, + "thread": 7 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 503325, + "thread": 17 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 763776, + "thread": 5 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 931787, + "thread": 31 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1022439, + "thread": 14 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1160425, + "thread": 28 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1448438, + "thread": 7 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1610710, + "thread": 26 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1734526, + "thread": 17 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 1868554, + "thread": 27 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2005652, + "thread": 3 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2280072, + "thread": 10 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2345949, + "thread": 2 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2593165, + "thread": 15 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2686097, + "thread": 9 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 2808590, + "thread": 18 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 3075832, + "thread": 9 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 3190248, + "thread": 28 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 3350333, + "thread": 8 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 3535882, + "thread": 26 + } + }, + { + "amount": "111.733444602", + "slot": { + "period": 3686833, + "thread": 2 + } + }, + { + "amount": "111.733444590", + "slot": { + "period": 3866669, + "thread": 2 + } + } + ], + "AU14txVthDxd7Mj87zrWvxDa9arTQX2hnzufJMu5Xa3yBmNUAai2": [ + { + "amount": "217.924449639", + "slot": { + "period": 132659, + "thread": 31 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 273330, + "thread": 10 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 421477, + "thread": 6 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 549345, + "thread": 12 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 698112, + "thread": 1 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 936450, + "thread": 17 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1054770, + "thread": 12 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1312610, + "thread": 15 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1376662, + "thread": 9 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1546439, + "thread": 16 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1746348, + "thread": 18 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 1925759, + "thread": 0 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2059549, + "thread": 8 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2149578, + "thread": 8 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2350192, + "thread": 3 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2599132, + "thread": 24 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2766578, + "thread": 13 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2945816, + "thread": 9 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 2971594, + "thread": 9 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 3198880, + "thread": 5 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 3304519, + "thread": 17 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 3614278, + "thread": 16 + } + }, + { + "amount": "217.924449639", + "slot": { + "period": 3661562, + "thread": 11 + } + }, + { + "amount": "217.924449628", + "slot": { + "period": 3912436, + "thread": 1 + } + } + ], + "AU14unfsEyJMvYrjCsaCBo52RhLyxk7thdRUkd9mr4HeftFo9Rte": [ + { + "amount": "448.846965316", + "slot": { + "period": 164221, + "thread": 1 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 240988, + "thread": 11 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 436384, + "thread": 30 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 569321, + "thread": 20 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 707427, + "thread": 12 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 951641, + "thread": 2 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1139369, + "thread": 26 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1246599, + "thread": 8 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1453367, + "thread": 15 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1595216, + "thread": 5 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1808563, + "thread": 25 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 1855197, + "thread": 9 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2041219, + "thread": 2 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2254849, + "thread": 18 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2323244, + "thread": 15 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2594021, + "thread": 11 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2705292, + "thread": 8 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 2945534, + "thread": 4 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 3019074, + "thread": 2 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 3127841, + "thread": 22 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 3431404, + "thread": 5 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 3452258, + "thread": 5 + } + }, + { + "amount": "448.846965316", + "slot": { + "period": 3630326, + "thread": 10 + } + }, + { + "amount": "448.846965307", + "slot": { + "period": 3850198, + "thread": 14 + } + } + ], + "AU14uwM1wQaPLYMNVUuwT1y5XqgvcmPHqvRfNT1rFWEs9eeUpY7t": [ + { + "amount": "132.561974773", + "slot": { + "period": 28820, + "thread": 27 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 171741, + "thread": 10 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 350908, + "thread": 28 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 559225, + "thread": 11 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 784222, + "thread": 15 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 839279, + "thread": 9 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1070930, + "thread": 31 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1311917, + "thread": 10 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1427997, + "thread": 12 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1585873, + "thread": 25 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1739935, + "thread": 6 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1928643, + "thread": 19 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 1990016, + "thread": 9 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 2262460, + "thread": 9 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 2388810, + "thread": 15 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 2551771, + "thread": 5 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 2745381, + "thread": 9 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 2902979, + "thread": 19 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 3048392, + "thread": 28 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 3215191, + "thread": 5 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 3377704, + "thread": 26 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 3484896, + "thread": 20 + } + }, + { + "amount": "132.561974773", + "slot": { + "period": 3680552, + "thread": 31 + } + }, + { + "amount": "132.561974779", + "slot": { + "period": 3841254, + "thread": 6 + } + } + ], + "AU14vDduwGoZ92gUvijdADWWEPiCtwRj3SK7trDz358zCiN7ZUZC": [ + { + "amount": "91.538789300", + "slot": { + "period": 47353, + "thread": 6 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 231519, + "thread": 10 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 429252, + "thread": 27 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 522503, + "thread": 20 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 720940, + "thread": 15 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 869431, + "thread": 13 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1034985, + "thread": 6 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1297616, + "thread": 22 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1376853, + "thread": 27 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1501487, + "thread": 27 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1727432, + "thread": 19 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1960772, + "thread": 0 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 1985948, + "thread": 0 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 2195818, + "thread": 29 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 2442084, + "thread": 23 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 2472697, + "thread": 11 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 2720519, + "thread": 8 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 2926099, + "thread": 25 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 3095211, + "thread": 20 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 3161129, + "thread": 15 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 3372053, + "thread": 9 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 3611112, + "thread": 6 + } + }, + { + "amount": "91.538789300", + "slot": { + "period": 3763996, + "thread": 31 + } + }, + { + "amount": "91.538789305", + "slot": { + "period": 3879093, + "thread": 27 + } + } + ], + "AU14vJszKrdmXpu4hHirfPU1PkVwH8dreQPTLkKoVAGCJctUT7An": [ + { + "amount": "414.703155743", + "slot": { + "period": 48733, + "thread": 0 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 200275, + "thread": 23 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 414347, + "thread": 31 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 524343, + "thread": 8 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 733769, + "thread": 7 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 960771, + "thread": 7 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1091946, + "thread": 20 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1211789, + "thread": 2 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1355347, + "thread": 23 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1619102, + "thread": 4 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1681842, + "thread": 19 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 1810919, + "thread": 21 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2022673, + "thread": 30 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2149378, + "thread": 25 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2322406, + "thread": 15 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2482714, + "thread": 28 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2661435, + "thread": 17 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 2874861, + "thread": 18 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 3011243, + "thread": 28 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 3212946, + "thread": 16 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 3440255, + "thread": 28 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 3558031, + "thread": 31 + } + }, + { + "amount": "414.703155743", + "slot": { + "period": 3654895, + "thread": 25 + } + }, + { + "amount": "414.703155744", + "slot": { + "period": 3914156, + "thread": 18 + } + } + ], + "AU14wDNrfo6d3fQjm3A1wUQ8BTbWThs2TC3tyMtTpuPatKhMCBVm": [ + { + "amount": "171.661294566", + "slot": { + "period": 157522, + "thread": 17 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 252579, + "thread": 8 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 489308, + "thread": 10 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 530615, + "thread": 12 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 790463, + "thread": 0 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 938210, + "thread": 25 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1105757, + "thread": 7 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1212647, + "thread": 3 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1356749, + "thread": 16 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1499620, + "thread": 14 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1781306, + "thread": 23 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 1864654, + "thread": 2 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2052481, + "thread": 26 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2213517, + "thread": 29 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2437989, + "thread": 28 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2485931, + "thread": 13 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2768668, + "thread": 25 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 2842924, + "thread": 15 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 3000938, + "thread": 12 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 3127699, + "thread": 0 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 3316315, + "thread": 21 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 3591416, + "thread": 13 + } + }, + { + "amount": "171.661294566", + "slot": { + "period": 3756203, + "thread": 11 + } + }, + { + "amount": "171.661294577", + "slot": { + "period": 3864979, + "thread": 11 + } + } + ], + "AU14wZwXoJdpFWpkRkLtWf9C6foaLaZL39o6hh6tDstvmzquxZBq": [ + { + "amount": "449.619372237", + "slot": { + "period": 31667, + "thread": 12 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 223874, + "thread": 3 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 458136, + "thread": 4 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 550789, + "thread": 6 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 734745, + "thread": 15 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 935239, + "thread": 24 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1064616, + "thread": 26 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1190456, + "thread": 16 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1431248, + "thread": 8 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1646056, + "thread": 23 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1679837, + "thread": 1 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 1901982, + "thread": 20 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2027690, + "thread": 0 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2274067, + "thread": 13 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2368157, + "thread": 27 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2578473, + "thread": 17 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2728497, + "thread": 27 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 2791832, + "thread": 7 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 3031666, + "thread": 4 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 3191032, + "thread": 6 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 3374642, + "thread": 2 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 3560909, + "thread": 2 + } + }, + { + "amount": "449.619372237", + "slot": { + "period": 3765465, + "thread": 5 + } + }, + { + "amount": "449.619372238", + "slot": { + "period": 3794058, + "thread": 23 + } + } + ], + "AU14x41HQr7thMzh7gN1CNXZdLoHjsWTi6jcra9qGkUQ31Y6XTer": [ + { + "amount": "382.968688170", + "slot": { + "period": 41612, + "thread": 11 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 292708, + "thread": 27 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 489663, + "thread": 2 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 588941, + "thread": 25 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 707489, + "thread": 0 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 871495, + "thread": 10 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1085912, + "thread": 13 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1271274, + "thread": 3 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1324768, + "thread": 19 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1626764, + "thread": 2 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1770895, + "thread": 19 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 1905713, + "thread": 27 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2107654, + "thread": 20 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2224512, + "thread": 21 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2400895, + "thread": 28 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2524342, + "thread": 19 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2732029, + "thread": 17 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2864257, + "thread": 27 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 2978982, + "thread": 2 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 3224806, + "thread": 17 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 3327103, + "thread": 0 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 3491786, + "thread": 27 + } + }, + { + "amount": "382.968688170", + "slot": { + "period": 3757853, + "thread": 11 + } + }, + { + "amount": "382.968688165", + "slot": { + "period": 3835423, + "thread": 27 + } + } + ], + "AU14xEZQSeMToGjheF9pXubLLFCJb8CyKuVEgcUCD7U9X3zSGP5e": [ + { + "amount": "131.218284591", + "slot": { + "period": 133194, + "thread": 20 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 303394, + "thread": 25 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 412377, + "thread": 6 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 534263, + "thread": 11 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 810598, + "thread": 4 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 838242, + "thread": 3 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1018807, + "thread": 5 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1246862, + "thread": 25 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1397854, + "thread": 16 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1538759, + "thread": 17 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1783818, + "thread": 17 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 1905299, + "thread": 31 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2037473, + "thread": 25 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2184384, + "thread": 17 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2461633, + "thread": 29 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2472123, + "thread": 5 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2752643, + "thread": 16 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 2792860, + "thread": 13 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 3083942, + "thread": 26 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 3208974, + "thread": 4 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 3358893, + "thread": 19 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 3463695, + "thread": 0 + } + }, + { + "amount": "131.218284591", + "slot": { + "period": 3689936, + "thread": 22 + } + }, + { + "amount": "131.218284595", + "slot": { + "period": 3785907, + "thread": 8 + } + } + ], + "AU14yW4nCaaoEBKeum9bioXtr9xfdkHngTeyxX7TcT81qERx8zk3": [ + { + "amount": "172.174196975", + "slot": { + "period": 148098, + "thread": 29 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 223029, + "thread": 17 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 396174, + "thread": 1 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 608848, + "thread": 2 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 721511, + "thread": 20 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 954765, + "thread": 30 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 995454, + "thread": 10 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 1303302, + "thread": 16 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 1435103, + "thread": 0 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 1542831, + "thread": 11 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 1777893, + "thread": 28 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 1928261, + "thread": 13 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2114325, + "thread": 20 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2238800, + "thread": 22 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2321342, + "thread": 13 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2595402, + "thread": 8 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2730454, + "thread": 23 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 2917713, + "thread": 14 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 3063224, + "thread": 26 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 3133759, + "thread": 4 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 3343144, + "thread": 7 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 3541115, + "thread": 21 + } + }, + { + "amount": "172.174196975", + "slot": { + "period": 3700858, + "thread": 8 + } + }, + { + "amount": "172.174196974", + "slot": { + "period": 3908224, + "thread": 3 + } + } + ], + "AU14yjpzgB2XmHvnRdHbw3SHXudsDpPuQknpvDa8qxNmtKVs5jfG": [ + { + "amount": "98.581483629", + "slot": { + "period": 15814, + "thread": 2 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 190443, + "thread": 10 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 465189, + "thread": 13 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 639641, + "thread": 6 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 724677, + "thread": 30 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 940988, + "thread": 3 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 988134, + "thread": 18 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 1210044, + "thread": 24 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 1334508, + "thread": 22 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 1541524, + "thread": 0 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 1681676, + "thread": 22 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 1967551, + "thread": 1 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2035846, + "thread": 17 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2186284, + "thread": 11 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2450111, + "thread": 18 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2541893, + "thread": 20 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2674182, + "thread": 6 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2911374, + "thread": 5 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 2964690, + "thread": 25 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 3282985, + "thread": 17 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 3378766, + "thread": 22 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 3599136, + "thread": 26 + } + }, + { + "amount": "98.581483629", + "slot": { + "period": 3655910, + "thread": 6 + } + }, + { + "amount": "98.581483624", + "slot": { + "period": 3903094, + "thread": 24 + } + } + ], + "AU14z5x9P8mR5ATSKsnHnTQdToZfsFxuLpW919ZZVz2EFHj9yP2Y": [ + { + "amount": "450.015765642", + "slot": { + "period": 144763, + "thread": 18 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 317134, + "thread": 14 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 347962, + "thread": 8 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 578465, + "thread": 19 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 743778, + "thread": 13 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 833709, + "thread": 12 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1129024, + "thread": 20 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1299525, + "thread": 20 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1426937, + "thread": 16 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1620597, + "thread": 10 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1679058, + "thread": 11 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 1884215, + "thread": 18 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2137772, + "thread": 23 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2244739, + "thread": 6 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2364788, + "thread": 4 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2580389, + "thread": 23 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2692937, + "thread": 11 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2944172, + "thread": 21 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 2968794, + "thread": 7 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 3150818, + "thread": 19 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 3292545, + "thread": 26 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 3522537, + "thread": 25 + } + }, + { + "amount": "450.015765642", + "slot": { + "period": 3647336, + "thread": 18 + } + }, + { + "amount": "450.015765644", + "slot": { + "period": 3900969, + "thread": 18 + } + } + ], + "AU14zeo4C2JGHoAHXWHWDbJ2ZZ1rYTGEvXDJxkRq4wPGZzTu5L9R": [ + { + "amount": "126.567236800", + "slot": { + "period": 150086, + "thread": 29 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 219442, + "thread": 6 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 393754, + "thread": 8 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 513292, + "thread": 1 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 675220, + "thread": 31 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 906487, + "thread": 5 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1147490, + "thread": 10 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1221096, + "thread": 13 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1424175, + "thread": 0 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1641634, + "thread": 23 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1737723, + "thread": 28 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 1913708, + "thread": 24 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2137573, + "thread": 21 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2194763, + "thread": 16 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2342063, + "thread": 20 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2501557, + "thread": 13 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2748154, + "thread": 12 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 2806162, + "thread": 25 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 3105058, + "thread": 3 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 3198855, + "thread": 0 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 3316232, + "thread": 4 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 3603624, + "thread": 9 + } + }, + { + "amount": "126.567236800", + "slot": { + "period": 3682315, + "thread": 7 + } + }, + { + "amount": "126.567236810", + "slot": { + "period": 3943737, + "thread": 22 + } + } + ], + "AU152mdbUZmp18z5yAUiuxbECX7qg21Gu1AYLQexVjfZiMUYAVzJ": [ + { + "amount": "64.946913566", + "slot": { + "period": 71653, + "thread": 8 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 167764, + "thread": 25 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 380820, + "thread": 7 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 571267, + "thread": 23 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 720412, + "thread": 11 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 972438, + "thread": 8 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1134917, + "thread": 24 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1252099, + "thread": 6 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1360384, + "thread": 8 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1634229, + "thread": 1 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1761917, + "thread": 11 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 1924431, + "thread": 11 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2021187, + "thread": 0 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2203275, + "thread": 7 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2322809, + "thread": 21 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2603096, + "thread": 21 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2690022, + "thread": 21 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 2864466, + "thread": 17 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 3053371, + "thread": 11 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 3281770, + "thread": 12 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 3449269, + "thread": 12 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 3517277, + "thread": 27 + } + }, + { + "amount": "64.946913566", + "slot": { + "period": 3657048, + "thread": 14 + } + }, + { + "amount": "64.946913556", + "slot": { + "period": 3805129, + "thread": 25 + } + } + ], + "AU152vaRruTyv6fH3Kmz6YjHfEi86yzoezuThypUdjnDQmQGjUXV": [ + { + "amount": "89.380399227", + "slot": { + "period": 107313, + "thread": 5 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 276097, + "thread": 22 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 482388, + "thread": 5 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 575007, + "thread": 8 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 753116, + "thread": 14 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 939544, + "thread": 21 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1112163, + "thread": 29 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1267930, + "thread": 20 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1369366, + "thread": 25 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1579312, + "thread": 2 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1742414, + "thread": 31 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 1815548, + "thread": 12 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2124802, + "thread": 10 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2192141, + "thread": 30 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2448624, + "thread": 6 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2604617, + "thread": 30 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2652438, + "thread": 4 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 2839569, + "thread": 11 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 3029215, + "thread": 0 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 3126661, + "thread": 12 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 3346632, + "thread": 17 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 3472912, + "thread": 25 + } + }, + { + "amount": "89.380399227", + "slot": { + "period": 3690645, + "thread": 19 + } + }, + { + "amount": "89.380399224", + "slot": { + "period": 3908910, + "thread": 7 + } + } + ], + "AU1538oQYqrTQ6YeAuBCN3cidWPWZiZRzaqCnq5ZPQW9NE8C9Jpq": [ + { + "amount": "161.000661755", + "slot": { + "period": 42933, + "thread": 2 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 214326, + "thread": 30 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 364573, + "thread": 1 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 626961, + "thread": 25 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 743513, + "thread": 14 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 886445, + "thread": 12 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1106728, + "thread": 22 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1178913, + "thread": 19 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1455762, + "thread": 19 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1633894, + "thread": 0 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1757383, + "thread": 30 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 1937988, + "thread": 26 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2137753, + "thread": 5 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2245414, + "thread": 7 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2387451, + "thread": 4 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2533433, + "thread": 18 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2783916, + "thread": 18 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 2885178, + "thread": 6 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 3006930, + "thread": 17 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 3225160, + "thread": 25 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 3395565, + "thread": 7 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 3511025, + "thread": 25 + } + }, + { + "amount": "161.000661755", + "slot": { + "period": 3625258, + "thread": 30 + } + }, + { + "amount": "161.000661745", + "slot": { + "period": 3868861, + "thread": 24 + } + } + ], + "AU153yWscwPTSwYcXnHiMuoawoS8J626y9uE2t6Q84Wa3nW1Syp3": [ + { + "amount": "147.098723122", + "slot": { + "period": 16549, + "thread": 28 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 268498, + "thread": 19 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 436700, + "thread": 14 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 514056, + "thread": 29 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 815246, + "thread": 5 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 927368, + "thread": 16 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1140796, + "thread": 4 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1208413, + "thread": 23 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1461932, + "thread": 16 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1565333, + "thread": 27 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1739704, + "thread": 0 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1961269, + "thread": 14 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 1980101, + "thread": 13 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 2173587, + "thread": 19 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 2346226, + "thread": 11 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 2579141, + "thread": 26 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 2783330, + "thread": 13 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 2905450, + "thread": 22 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 3047259, + "thread": 12 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 3189683, + "thread": 16 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 3449103, + "thread": 4 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 3490533, + "thread": 14 + } + }, + { + "amount": "147.098723122", + "slot": { + "period": 3677039, + "thread": 11 + } + }, + { + "amount": "147.098723132", + "slot": { + "period": 3849867, + "thread": 1 + } + } + ], + "AU156tFMzbqEevoYXRLn6rMdMJNg7f7Mi7P1vXXvemndNsdLwSe3": [ + { + "amount": "128.909086475", + "slot": { + "period": 66624, + "thread": 21 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 236922, + "thread": 12 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 448444, + "thread": 20 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 649188, + "thread": 15 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 755383, + "thread": 1 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 863094, + "thread": 30 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1108835, + "thread": 12 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1240300, + "thread": 18 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1430960, + "thread": 27 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1596247, + "thread": 30 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1692076, + "thread": 20 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 1885049, + "thread": 28 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2055525, + "thread": 3 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2222013, + "thread": 16 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2447462, + "thread": 29 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2601055, + "thread": 5 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2689746, + "thread": 7 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2808477, + "thread": 19 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 2994657, + "thread": 3 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 3224426, + "thread": 31 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 3386716, + "thread": 25 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 3508247, + "thread": 26 + } + }, + { + "amount": "128.909086475", + "slot": { + "period": 3758894, + "thread": 21 + } + }, + { + "amount": "128.909086466", + "slot": { + "period": 3879265, + "thread": 22 + } + } + ], + "AU157UsA3qTxJjhahx7zJyPm5y4B1wr4dNV9CYaynebmqWdHpjU3": [ + { + "amount": "250.939386691", + "slot": { + "period": 78978, + "thread": 30 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 243333, + "thread": 5 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 416834, + "thread": 28 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 529029, + "thread": 18 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 714668, + "thread": 0 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 894577, + "thread": 10 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1068195, + "thread": 28 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1250335, + "thread": 2 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1332062, + "thread": 14 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1620916, + "thread": 5 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1755615, + "thread": 26 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 1908622, + "thread": 31 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2129557, + "thread": 20 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2259415, + "thread": 29 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2306043, + "thread": 18 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2538081, + "thread": 14 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2691065, + "thread": 6 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 2939097, + "thread": 30 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 3115914, + "thread": 10 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 3149343, + "thread": 24 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 3444485, + "thread": 22 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 3603586, + "thread": 18 + } + }, + { + "amount": "250.939386691", + "slot": { + "period": 3623987, + "thread": 24 + } + }, + { + "amount": "250.939386692", + "slot": { + "period": 3882060, + "thread": 21 + } + } + ], + "AU157Y2PLSV5fJM4VQTHYdEzSoBKTDCXCppaGPdm8E8mp9WnMxAe": [ + { + "amount": "79.584776886", + "slot": { + "period": 82798, + "thread": 9 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 261946, + "thread": 7 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 444030, + "thread": 31 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 589931, + "thread": 7 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 791091, + "thread": 28 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 841795, + "thread": 29 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1066517, + "thread": 25 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1279841, + "thread": 17 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1322865, + "thread": 1 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1489694, + "thread": 14 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1786789, + "thread": 31 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 1826827, + "thread": 31 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2018434, + "thread": 8 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2236154, + "thread": 6 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2438986, + "thread": 0 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2615525, + "thread": 31 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2764580, + "thread": 5 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 2814070, + "thread": 8 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 3108356, + "thread": 18 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 3158064, + "thread": 1 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 3382044, + "thread": 4 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 3525826, + "thread": 0 + } + }, + { + "amount": "79.584776886", + "slot": { + "period": 3735830, + "thread": 31 + } + }, + { + "amount": "79.584776892", + "slot": { + "period": 3795971, + "thread": 17 + } + } + ], + "AU158scs9byPz4DS2HGMdZvkMeuR2zcZKuUPnfVWWi5VCdLyhJCJ": [ + { + "amount": "145.519315586", + "slot": { + "period": 136004, + "thread": 6 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 207113, + "thread": 29 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 478732, + "thread": 15 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 546041, + "thread": 24 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 693347, + "thread": 13 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 966594, + "thread": 16 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1103695, + "thread": 1 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1268758, + "thread": 16 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1360486, + "thread": 23 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1484555, + "thread": 23 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1666969, + "thread": 29 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 1953075, + "thread": 9 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2077843, + "thread": 23 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2218438, + "thread": 7 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2331241, + "thread": 10 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2467546, + "thread": 8 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2670851, + "thread": 24 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 2934997, + "thread": 9 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 3024659, + "thread": 4 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 3225511, + "thread": 3 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 3320495, + "thread": 22 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 3490022, + "thread": 18 + } + }, + { + "amount": "145.519315586", + "slot": { + "period": 3714004, + "thread": 31 + } + }, + { + "amount": "145.519315582", + "slot": { + "period": 3837942, + "thread": 16 + } + } + ], + "AU158z4TucKUFzzmuWjhf7cVdauFZCkDaTi4N3SBCsHU2nVeLTro": [ + { + "amount": "522.712457418", + "slot": { + "period": 51391, + "thread": 21 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 204667, + "thread": 18 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 393436, + "thread": 10 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 538953, + "thread": 21 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 811179, + "thread": 2 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 903768, + "thread": 7 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1027334, + "thread": 9 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1208082, + "thread": 0 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1397387, + "thread": 30 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1569714, + "thread": 26 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1756187, + "thread": 20 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 1875395, + "thread": 7 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2064584, + "thread": 31 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2245410, + "thread": 19 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2357740, + "thread": 23 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2584679, + "thread": 12 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2639685, + "thread": 7 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 2842517, + "thread": 10 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 3026917, + "thread": 26 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 3236000, + "thread": 25 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 3355582, + "thread": 29 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 3476782, + "thread": 26 + } + }, + { + "amount": "522.712457418", + "slot": { + "period": 3663359, + "thread": 19 + } + }, + { + "amount": "522.712457409", + "slot": { + "period": 3844379, + "thread": 24 + } + } + ], + "AU159UFyKNFkQFcyZt4SkAFHCMeipkoxXEjFj2Df5UjMJzHeZCq6": [ + { + "amount": "124.061382266", + "slot": { + "period": 50844, + "thread": 23 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 300725, + "thread": 20 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 407376, + "thread": 28 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 540573, + "thread": 18 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 664374, + "thread": 22 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 838607, + "thread": 2 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1131206, + "thread": 25 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1229244, + "thread": 22 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1449231, + "thread": 27 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1538362, + "thread": 0 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1766701, + "thread": 6 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 1959663, + "thread": 6 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2046884, + "thread": 3 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2294948, + "thread": 16 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2432699, + "thread": 16 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2492971, + "thread": 2 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2713789, + "thread": 3 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 2870339, + "thread": 23 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 3040368, + "thread": 7 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 3124238, + "thread": 9 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 3383864, + "thread": 8 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 3477869, + "thread": 31 + } + }, + { + "amount": "124.061382266", + "slot": { + "period": 3726642, + "thread": 0 + } + }, + { + "amount": "124.061382261", + "slot": { + "period": 3828867, + "thread": 3 + } + } + ], + "AU159ewRbksYVWyAnZhpHMpRwHNjK83wFAFaRfrT1N2UoaB5ip2U": [ + { + "amount": "134.473879661", + "slot": { + "period": 47258, + "thread": 0 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 256032, + "thread": 27 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 340222, + "thread": 3 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 643112, + "thread": 31 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 676804, + "thread": 25 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 868123, + "thread": 7 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1146694, + "thread": 28 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1217317, + "thread": 24 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1357169, + "thread": 11 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1484480, + "thread": 15 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1793301, + "thread": 3 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 1965653, + "thread": 12 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2135525, + "thread": 2 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2170750, + "thread": 14 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2460566, + "thread": 16 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2574555, + "thread": 30 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2736007, + "thread": 8 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2821011, + "thread": 9 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 2971714, + "thread": 26 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 3178309, + "thread": 1 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 3331048, + "thread": 15 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 3458302, + "thread": 31 + } + }, + { + "amount": "134.473879661", + "slot": { + "period": 3667016, + "thread": 7 + } + }, + { + "amount": "134.473879653", + "slot": { + "period": 3784538, + "thread": 29 + } + } + ], + "AU15A4BwSRNUAKtVjAbvy2khumnKK5xdVjn1LeY7YQ7bec1vohSy": [ + { + "amount": "192.587664692", + "slot": { + "period": 97481, + "thread": 10 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 238471, + "thread": 19 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 339524, + "thread": 19 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 530410, + "thread": 8 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 724307, + "thread": 2 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 936166, + "thread": 1 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1116269, + "thread": 31 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1177713, + "thread": 16 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1432225, + "thread": 9 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1521408, + "thread": 12 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1788544, + "thread": 19 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 1851427, + "thread": 1 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2046953, + "thread": 15 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2268307, + "thread": 23 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2421538, + "thread": 6 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2485717, + "thread": 19 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2760351, + "thread": 24 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 2896478, + "thread": 0 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 3048739, + "thread": 12 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 3260713, + "thread": 28 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 3350583, + "thread": 17 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 3603792, + "thread": 7 + } + }, + { + "amount": "192.587664692", + "slot": { + "period": 3765293, + "thread": 30 + } + }, + { + "amount": "192.587664687", + "slot": { + "period": 3893669, + "thread": 26 + } + } + ], + "AU15AALn1qFxXAycxPTJV8YRDSdrycMEdBbhJEutrvK7N6gkbpwB": [ + { + "amount": "339.383782410", + "slot": { + "period": 151343, + "thread": 10 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 243053, + "thread": 14 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 344895, + "thread": 29 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 494546, + "thread": 1 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 732885, + "thread": 8 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 890612, + "thread": 15 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1058403, + "thread": 22 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1186249, + "thread": 2 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1370218, + "thread": 19 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1628871, + "thread": 27 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1796533, + "thread": 2 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 1916508, + "thread": 7 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2099847, + "thread": 11 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2283863, + "thread": 17 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2357918, + "thread": 31 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2475699, + "thread": 1 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2738444, + "thread": 3 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 2800814, + "thread": 15 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 3113996, + "thread": 1 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 3141587, + "thread": 25 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 3351474, + "thread": 15 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 3558650, + "thread": 14 + } + }, + { + "amount": "339.383782410", + "slot": { + "period": 3684072, + "thread": 16 + } + }, + { + "amount": "339.383782407", + "slot": { + "period": 3922889, + "thread": 17 + } + } + ], + "AU15ADV48XJEQbPyGgwsyee8zo6kiNcKLV22mnBdJtccteGNK6LZ": [ + { + "amount": "105.982106706", + "slot": { + "period": 90326, + "thread": 10 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 264644, + "thread": 28 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 466409, + "thread": 13 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 625200, + "thread": 15 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 714789, + "thread": 4 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 848377, + "thread": 9 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1108087, + "thread": 15 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1176659, + "thread": 1 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1322411, + "thread": 8 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1544937, + "thread": 24 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1739064, + "thread": 6 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 1949179, + "thread": 26 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2007837, + "thread": 27 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2280612, + "thread": 8 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2427946, + "thread": 16 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2468678, + "thread": 1 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2679388, + "thread": 27 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 2911930, + "thread": 5 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 3067530, + "thread": 22 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 3203752, + "thread": 16 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 3347457, + "thread": 17 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 3561013, + "thread": 5 + } + }, + { + "amount": "105.982106706", + "slot": { + "period": 3673393, + "thread": 8 + } + }, + { + "amount": "105.982106717", + "slot": { + "period": 3937476, + "thread": 25 + } + } + ], + "AU15ALXDfG8WLVvJ8M5N9TBEReB8YQ2wPVyeG9tHjq6faqhVp3sG": [ + { + "amount": "68.869890067", + "slot": { + "period": 14122, + "thread": 3 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 185364, + "thread": 22 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 471232, + "thread": 3 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 557823, + "thread": 7 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 771455, + "thread": 31 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 902598, + "thread": 6 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1124827, + "thread": 22 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1151248, + "thread": 29 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1324514, + "thread": 23 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1570850, + "thread": 11 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1732055, + "thread": 15 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 1902553, + "thread": 13 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2032911, + "thread": 25 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2212199, + "thread": 8 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2398349, + "thread": 11 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2535145, + "thread": 31 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2649881, + "thread": 17 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 2825514, + "thread": 18 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 3000815, + "thread": 7 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 3127097, + "thread": 9 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 3310660, + "thread": 3 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 3586346, + "thread": 7 + } + }, + { + "amount": "68.869890067", + "slot": { + "period": 3763711, + "thread": 16 + } + }, + { + "amount": "68.869890062", + "slot": { + "period": 3886600, + "thread": 0 + } + } + ], + "AU15ASd6SYyaWbtui2qJLh3k9zX6ZRNg28c9YQui6EyadEBVHXUs": [ + { + "amount": "197.597462267", + "slot": { + "period": 129921, + "thread": 2 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 302426, + "thread": 11 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 419349, + "thread": 21 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 521336, + "thread": 9 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 679525, + "thread": 18 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 888024, + "thread": 29 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 994649, + "thread": 27 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 1299773, + "thread": 8 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 1477822, + "thread": 30 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 1617173, + "thread": 25 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 1736772, + "thread": 20 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 1816116, + "thread": 23 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2003430, + "thread": 23 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2200311, + "thread": 11 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2441874, + "thread": 22 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2504077, + "thread": 9 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2656482, + "thread": 15 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2859221, + "thread": 0 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 2981269, + "thread": 24 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 3280388, + "thread": 3 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 3315336, + "thread": 21 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 3471795, + "thread": 27 + } + }, + { + "amount": "197.597462267", + "slot": { + "period": 3672471, + "thread": 14 + } + }, + { + "amount": "197.597462274", + "slot": { + "period": 3881071, + "thread": 7 + } + } + ], + "AU15BCY5DfxTDzSmPNX9DAVhqzPit5p4Q3pep8PeN2qziZCuRXbX": [ + { + "amount": "99.895472167", + "slot": { + "period": 132263, + "thread": 1 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 308667, + "thread": 11 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 445071, + "thread": 12 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 547839, + "thread": 21 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 663511, + "thread": 21 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 881040, + "thread": 22 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1098393, + "thread": 14 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1205683, + "thread": 28 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1350754, + "thread": 24 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1504677, + "thread": 13 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1685224, + "thread": 7 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 1866165, + "thread": 22 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2034841, + "thread": 22 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2277144, + "thread": 25 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2443769, + "thread": 21 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2483497, + "thread": 20 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2636935, + "thread": 16 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 2914004, + "thread": 20 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 3084509, + "thread": 9 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 3186623, + "thread": 25 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 3383814, + "thread": 19 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 3473157, + "thread": 24 + } + }, + { + "amount": "99.895472167", + "slot": { + "period": 3695125, + "thread": 11 + } + }, + { + "amount": "99.895472158", + "slot": { + "period": 3794108, + "thread": 20 + } + } + ], + "AU15BUWYkqnytrNLejrEiZtE4RVouKRcayQCzrhocAxchP6ss5Lp": [ + { + "amount": "212.883512056", + "slot": { + "period": 75313, + "thread": 25 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 272978, + "thread": 22 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 483730, + "thread": 13 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 583881, + "thread": 12 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 745769, + "thread": 14 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 933346, + "thread": 25 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1009719, + "thread": 2 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1247927, + "thread": 15 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1374803, + "thread": 9 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1580666, + "thread": 15 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1782860, + "thread": 26 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 1837193, + "thread": 0 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2136184, + "thread": 6 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2225235, + "thread": 24 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2431649, + "thread": 26 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2543628, + "thread": 28 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2634354, + "thread": 16 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 2940407, + "thread": 6 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 3076213, + "thread": 16 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 3192649, + "thread": 22 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 3421371, + "thread": 9 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 3540964, + "thread": 4 + } + }, + { + "amount": "212.883512056", + "slot": { + "period": 3729388, + "thread": 10 + } + }, + { + "amount": "212.883512044", + "slot": { + "period": 3846695, + "thread": 6 + } + } + ], + "AU15BvcP98vsuvgqWVKzfa8ChCX9x5wtpNbo7EhptLDdC8nqedyZ": [ + { + "amount": "2916.666666667", + "slot": { + "period": 128607, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 195406, + "thread": 28 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 442020, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 544137, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 794595, + "thread": 12 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 868103, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1099115, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1189187, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1434420, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1638658, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1744281, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1865650, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2122857, + "thread": 10 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2174216, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2350489, + "thread": 18 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2585821, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2637460, + "thread": 10 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2867394, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3039361, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3214134, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3343089, + "thread": 26 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3601389, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3708973, + "thread": 19 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3785233, + "thread": 6 + } + } + ], + "AU15CTf244mkTmmKMuN9bBjmVzzfnztXx8B8YXgkzcrPZyPXuWEB": [ + { + "amount": "322.751390602", + "slot": { + "period": 47198, + "thread": 31 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 305877, + "thread": 13 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 408330, + "thread": 12 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 491780, + "thread": 21 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 691368, + "thread": 26 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 846703, + "thread": 12 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1056660, + "thread": 17 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1154747, + "thread": 7 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1453367, + "thread": 3 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1550023, + "thread": 15 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1670302, + "thread": 24 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 1884112, + "thread": 29 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2019505, + "thread": 28 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2290925, + "thread": 16 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2428052, + "thread": 10 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2581030, + "thread": 19 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2781897, + "thread": 23 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2868052, + "thread": 3 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 2994729, + "thread": 11 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 3234660, + "thread": 28 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 3418888, + "thread": 8 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 3532235, + "thread": 17 + } + }, + { + "amount": "322.751390602", + "slot": { + "period": 3764661, + "thread": 23 + } + }, + { + "amount": "322.751390601", + "slot": { + "period": 3789202, + "thread": 21 + } + } + ], + "AU15DCFYKWzkwVTcHtAgf9K2zFcrBqrsB9EXExfSzv7mY37ZbPoc": [ + { + "amount": "54.579891962", + "slot": { + "period": 51713, + "thread": 13 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 295528, + "thread": 28 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 473364, + "thread": 28 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 629728, + "thread": 8 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 762024, + "thread": 12 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 899480, + "thread": 12 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1105710, + "thread": 26 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1201878, + "thread": 16 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1347017, + "thread": 14 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1570943, + "thread": 22 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1754254, + "thread": 9 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 1860129, + "thread": 19 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2079744, + "thread": 2 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2253310, + "thread": 31 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2388641, + "thread": 5 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2527872, + "thread": 30 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2698090, + "thread": 16 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 2797802, + "thread": 0 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 3060100, + "thread": 22 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 3159138, + "thread": 15 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 3423760, + "thread": 10 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 3508816, + "thread": 7 + } + }, + { + "amount": "54.579891962", + "slot": { + "period": 3634070, + "thread": 1 + } + }, + { + "amount": "54.579891951", + "slot": { + "period": 3789803, + "thread": 17 + } + } + ], + "AU15E3MmxqFJHnhtYjaLywCgVJPfDhczyAfefJoKsPRQUdYyfY1i": [ + { + "amount": "407.283074720", + "slot": { + "period": 112113, + "thread": 11 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 280063, + "thread": 25 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 408837, + "thread": 29 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 606667, + "thread": 26 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 779115, + "thread": 26 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 946780, + "thread": 19 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1131746, + "thread": 11 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1271600, + "thread": 5 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1476418, + "thread": 10 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1480463, + "thread": 22 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1679392, + "thread": 4 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 1846083, + "thread": 2 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2082804, + "thread": 6 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2183351, + "thread": 3 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2396460, + "thread": 6 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2473725, + "thread": 28 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2757500, + "thread": 21 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 2795965, + "thread": 6 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 3038489, + "thread": 5 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 3283578, + "thread": 19 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 3440261, + "thread": 28 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 3496798, + "thread": 15 + } + }, + { + "amount": "407.283074720", + "slot": { + "period": 3733109, + "thread": 27 + } + }, + { + "amount": "407.283074713", + "slot": { + "period": 3835663, + "thread": 0 + } + } + ], + "AU15EM6X9XS8tdqsNPTJYE9xwyzLSzS5ZrRXunTBZWjZwv76qMj5": [ + { + "amount": "420.126583988", + "slot": { + "period": 34298, + "thread": 5 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 306353, + "thread": 7 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 338354, + "thread": 1 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 539661, + "thread": 16 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 745520, + "thread": 28 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 928648, + "thread": 18 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1036044, + "thread": 26 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1224106, + "thread": 5 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1355758, + "thread": 23 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1580368, + "thread": 2 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1723669, + "thread": 23 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1916626, + "thread": 12 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 1992142, + "thread": 31 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2218962, + "thread": 24 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2388977, + "thread": 11 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2614548, + "thread": 25 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2670214, + "thread": 0 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2947432, + "thread": 10 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 2995142, + "thread": 8 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 3283017, + "thread": 21 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 3426873, + "thread": 7 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 3575200, + "thread": 30 + } + }, + { + "amount": "420.126583988", + "slot": { + "period": 3620578, + "thread": 23 + } + }, + { + "amount": "420.126583996", + "slot": { + "period": 3844831, + "thread": 10 + } + } + ], + "AU15FAtaqBaZQkU1b6Hh4jGtvqoqL25GSnhyZWeJo2qDP4dVSCRp": [ + { + "amount": "99.453676192", + "slot": { + "period": 164359, + "thread": 16 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 316543, + "thread": 22 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 438499, + "thread": 12 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 632614, + "thread": 21 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 698698, + "thread": 14 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 902744, + "thread": 21 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1085497, + "thread": 28 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1269191, + "thread": 10 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1321827, + "thread": 23 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1578757, + "thread": 15 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1803036, + "thread": 5 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 1964710, + "thread": 27 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2010726, + "thread": 26 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2178143, + "thread": 12 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2350078, + "thread": 5 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2487712, + "thread": 20 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2691903, + "thread": 17 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 2802707, + "thread": 9 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 3109969, + "thread": 18 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 3186150, + "thread": 23 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 3357892, + "thread": 2 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 3477972, + "thread": 1 + } + }, + { + "amount": "99.453676192", + "slot": { + "period": 3696949, + "thread": 14 + } + }, + { + "amount": "99.453676198", + "slot": { + "period": 3818540, + "thread": 15 + } + } + ], + "AU15FHNUsohGMxoDQFCz2a1QkxNCgJCCVDtfZ9MmqAsv9Y4menHA": [ + { + "amount": "179.270307989", + "slot": { + "period": 106751, + "thread": 17 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 181481, + "thread": 23 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 351371, + "thread": 0 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 650266, + "thread": 3 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 808452, + "thread": 17 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 959657, + "thread": 22 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1135135, + "thread": 29 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1263730, + "thread": 4 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1376903, + "thread": 29 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1571133, + "thread": 31 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1771810, + "thread": 1 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 1892414, + "thread": 25 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2001297, + "thread": 13 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2275606, + "thread": 8 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2382002, + "thread": 4 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2550623, + "thread": 13 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2777824, + "thread": 5 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 2896499, + "thread": 20 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 3105715, + "thread": 24 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 3167500, + "thread": 4 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 3433857, + "thread": 9 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 3520246, + "thread": 23 + } + }, + { + "amount": "179.270307989", + "slot": { + "period": 3734007, + "thread": 29 + } + }, + { + "amount": "179.270307990", + "slot": { + "period": 3930383, + "thread": 0 + } + } + ], + "AU15FLJe3cvXcaTi8XDToxzJ43ccDd7rpMAXT9Gvdr7XmpkjfY6o": [ + { + "amount": "113.121332341", + "slot": { + "period": 20630, + "thread": 23 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 306184, + "thread": 2 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 327848, + "thread": 15 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 632048, + "thread": 20 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 729745, + "thread": 24 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 854592, + "thread": 3 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1101315, + "thread": 17 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1280446, + "thread": 11 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1340446, + "thread": 17 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1645181, + "thread": 4 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1655688, + "thread": 31 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 1892281, + "thread": 1 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2082905, + "thread": 2 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2178953, + "thread": 29 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2416046, + "thread": 20 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2492083, + "thread": 0 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2777224, + "thread": 16 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2906223, + "thread": 1 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 2991687, + "thread": 17 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 3285502, + "thread": 4 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 3345389, + "thread": 13 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 3472043, + "thread": 1 + } + }, + { + "amount": "113.121332341", + "slot": { + "period": 3624222, + "thread": 11 + } + }, + { + "amount": "113.121332334", + "slot": { + "period": 3813290, + "thread": 0 + } + } + ], + "AU15FezcXY9Uc1vQF3YyMVb3sxCbaMSY582Rj4SuNBZPvQQfS2ox": [ + { + "amount": "78.355337974", + "slot": { + "period": 81333, + "thread": 2 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 216773, + "thread": 28 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 481598, + "thread": 28 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 535085, + "thread": 20 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 723420, + "thread": 22 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 927589, + "thread": 24 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1082096, + "thread": 10 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1244611, + "thread": 20 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1325359, + "thread": 17 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1588803, + "thread": 15 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1705343, + "thread": 9 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 1936518, + "thread": 19 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2105122, + "thread": 22 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2287333, + "thread": 25 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2352011, + "thread": 6 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2481702, + "thread": 26 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2690588, + "thread": 13 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 2940784, + "thread": 1 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 3024666, + "thread": 28 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 3156390, + "thread": 11 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 3387464, + "thread": 25 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 3576825, + "thread": 17 + } + }, + { + "amount": "78.355337974", + "slot": { + "period": 3627929, + "thread": 26 + } + }, + { + "amount": "78.355337979", + "slot": { + "period": 3901471, + "thread": 28 + } + } + ], + "AU15GFnoCsmTS6J4nPijasqNq9qouJdEZx9Efep6CesVg6fbmwx6": [ + { + "amount": "100.308911500", + "slot": { + "period": 96376, + "thread": 4 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 220117, + "thread": 30 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 337568, + "thread": 16 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 523621, + "thread": 20 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 729166, + "thread": 3 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 823363, + "thread": 15 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1035336, + "thread": 12 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1217024, + "thread": 5 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1363834, + "thread": 5 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1558916, + "thread": 16 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1792412, + "thread": 9 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1892331, + "thread": 18 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 1982592, + "thread": 28 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 2161620, + "thread": 7 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 2384980, + "thread": 12 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 2550870, + "thread": 22 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 2761746, + "thread": 8 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 2917922, + "thread": 10 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 3050467, + "thread": 16 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 3236462, + "thread": 9 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 3336387, + "thread": 24 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 3503384, + "thread": 15 + } + }, + { + "amount": "100.308911500", + "slot": { + "period": 3709602, + "thread": 5 + } + }, + { + "amount": "100.308911494", + "slot": { + "period": 3881191, + "thread": 15 + } + } + ], + "AU15GQ63Awea4YHhrnZxSVUUdzfagSeCuPsbz2oB7GMArdULkv4b": [ + { + "amount": "163.927260060", + "slot": { + "period": 36711, + "thread": 4 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 308645, + "thread": 11 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 468671, + "thread": 12 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 534489, + "thread": 3 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 746191, + "thread": 3 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 860757, + "thread": 12 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1116706, + "thread": 5 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1246289, + "thread": 10 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1427599, + "thread": 14 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1510743, + "thread": 10 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1672589, + "thread": 25 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 1901106, + "thread": 5 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2100456, + "thread": 30 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2210498, + "thread": 21 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2347141, + "thread": 31 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2623171, + "thread": 2 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2773998, + "thread": 3 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 2868278, + "thread": 13 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 3074594, + "thread": 1 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 3196706, + "thread": 14 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 3308378, + "thread": 21 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 3483438, + "thread": 20 + } + }, + { + "amount": "163.927260060", + "slot": { + "period": 3712978, + "thread": 3 + } + }, + { + "amount": "163.927260067", + "slot": { + "period": 3916212, + "thread": 20 + } + } + ], + "AU15GgG4udBNteZxCLwJRD1RoR8TSuxzPEP1A5wcZy7gPsTNtMKM": [ + { + "amount": "143.133557660", + "slot": { + "period": 85667, + "thread": 25 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 201953, + "thread": 3 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 339639, + "thread": 8 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 520561, + "thread": 2 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 789965, + "thread": 23 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 882805, + "thread": 7 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1104107, + "thread": 19 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1277099, + "thread": 14 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1448651, + "thread": 31 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1544797, + "thread": 4 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1765296, + "thread": 27 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 1944599, + "thread": 2 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2026047, + "thread": 24 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2251444, + "thread": 11 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2365634, + "thread": 10 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2578192, + "thread": 6 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2641178, + "thread": 4 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2824884, + "thread": 6 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 2970643, + "thread": 25 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 3223161, + "thread": 14 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 3333882, + "thread": 16 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 3503602, + "thread": 22 + } + }, + { + "amount": "143.133557660", + "slot": { + "period": 3736321, + "thread": 12 + } + }, + { + "amount": "143.133557671", + "slot": { + "period": 3902016, + "thread": 21 + } + } + ], + "AU15HHscvQiuZWqrWhT6LafXit2x6k2KBQmNs8U98FVVBSh4Vknv": [ + { + "amount": "69.423611899", + "slot": { + "period": 141399, + "thread": 28 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 225941, + "thread": 17 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 368689, + "thread": 10 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 568736, + "thread": 6 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 667194, + "thread": 24 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 829768, + "thread": 7 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1075509, + "thread": 29 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1251074, + "thread": 26 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1343017, + "thread": 4 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1645933, + "thread": 1 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1700416, + "thread": 2 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 1902064, + "thread": 7 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2134478, + "thread": 30 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2186306, + "thread": 0 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2322449, + "thread": 3 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2557406, + "thread": 9 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2790163, + "thread": 5 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 2952800, + "thread": 5 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 3040520, + "thread": 8 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 3261291, + "thread": 13 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 3450422, + "thread": 7 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 3590737, + "thread": 18 + } + }, + { + "amount": "69.423611899", + "slot": { + "period": 3644209, + "thread": 15 + } + }, + { + "amount": "69.423611904", + "slot": { + "period": 3916051, + "thread": 14 + } + } + ], + "AU15K4W4Q2B6LdHVNGPEfq95panABFNdd2juwynU8LBhReu9ea51": [ + { + "amount": "75.050807100", + "slot": { + "period": 82116, + "thread": 2 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 256974, + "thread": 22 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 445553, + "thread": 23 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 552731, + "thread": 4 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 742337, + "thread": 5 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 914104, + "thread": 6 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1054186, + "thread": 2 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1242124, + "thread": 5 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1417225, + "thread": 3 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1559952, + "thread": 3 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1671140, + "thread": 24 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 1916502, + "thread": 7 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2125218, + "thread": 1 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2255348, + "thread": 29 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2426183, + "thread": 13 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2556735, + "thread": 16 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2680068, + "thread": 4 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 2850436, + "thread": 13 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 3100793, + "thread": 26 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 3128301, + "thread": 14 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 3409937, + "thread": 21 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 3466192, + "thread": 17 + } + }, + { + "amount": "75.050807100", + "slot": { + "period": 3678765, + "thread": 24 + } + }, + { + "amount": "75.050807112", + "slot": { + "period": 3852028, + "thread": 6 + } + } + ], + "AU15NA38xr8xYtGUrV2joK5XFimKYVefhAU58b54QtxRwHJRfCEa": [ + { + "amount": "563.767922731", + "slot": { + "period": 52092, + "thread": 1 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 235455, + "thread": 24 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 481601, + "thread": 30 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 632681, + "thread": 13 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 765450, + "thread": 27 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 884940, + "thread": 2 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1136628, + "thread": 1 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1186868, + "thread": 22 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1467257, + "thread": 19 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1641209, + "thread": 0 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1690582, + "thread": 17 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 1958425, + "thread": 12 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2014755, + "thread": 31 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2267283, + "thread": 10 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2358895, + "thread": 23 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2499329, + "thread": 22 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2724620, + "thread": 9 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 2811358, + "thread": 1 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 3117177, + "thread": 23 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 3180822, + "thread": 28 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 3367449, + "thread": 10 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 3577503, + "thread": 16 + } + }, + { + "amount": "563.767922731", + "slot": { + "period": 3705073, + "thread": 17 + } + }, + { + "amount": "563.767922730", + "slot": { + "period": 3919949, + "thread": 14 + } + } + ], + "AU15NBcp3zkK8UnzL92BDK6ih31pVTPk1S5Y6hnyNntwoN3UhTcp": [ + { + "amount": "247.666492574", + "slot": { + "period": 46864, + "thread": 9 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 276017, + "thread": 28 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 444362, + "thread": 17 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 519269, + "thread": 28 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 776638, + "thread": 19 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 874949, + "thread": 4 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1126450, + "thread": 24 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1280569, + "thread": 25 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1400677, + "thread": 6 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1492263, + "thread": 12 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1738780, + "thread": 15 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 1844894, + "thread": 31 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2102218, + "thread": 20 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2281327, + "thread": 16 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2337857, + "thread": 20 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2576154, + "thread": 17 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2692266, + "thread": 6 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 2794743, + "thread": 0 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 3053509, + "thread": 9 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 3125603, + "thread": 26 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 3349316, + "thread": 5 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 3491818, + "thread": 3 + } + }, + { + "amount": "247.666492574", + "slot": { + "period": 3744970, + "thread": 6 + } + }, + { + "amount": "247.666492575", + "slot": { + "period": 3801940, + "thread": 26 + } + } + ], + "AU15NGy7Z2tgucsYmR7Hb4pgAuDh5BX9sHHEYsZtN3oYZKVjCwAf": [ + { + "amount": "147.811429814", + "slot": { + "period": 100395, + "thread": 28 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 304677, + "thread": 10 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 446188, + "thread": 0 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 504697, + "thread": 24 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 698795, + "thread": 3 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 873834, + "thread": 11 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1065506, + "thread": 31 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1196743, + "thread": 24 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1421823, + "thread": 7 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1557040, + "thread": 14 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1691002, + "thread": 29 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1899035, + "thread": 6 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 1997927, + "thread": 18 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 2270172, + "thread": 14 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 2334350, + "thread": 2 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 2506567, + "thread": 2 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 2638126, + "thread": 17 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 2809585, + "thread": 20 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 3011207, + "thread": 2 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 3260604, + "thread": 9 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 3302262, + "thread": 3 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 3549482, + "thread": 28 + } + }, + { + "amount": "147.811429814", + "slot": { + "period": 3754971, + "thread": 31 + } + }, + { + "amount": "147.811429817", + "slot": { + "period": 3930272, + "thread": 26 + } + } + ], + "AU15NdhsmjnMU8DhLiJhXDGh57RFvxhFHuekp3jBXYqkrQ7jPS8z": [ + { + "amount": "14844.083333333", + "slot": { + "period": 43982, + "thread": 3 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 269996, + "thread": 19 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 340346, + "thread": 8 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 542500, + "thread": 18 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 777181, + "thread": 3 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 962887, + "thread": 8 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1124826, + "thread": 19 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1261828, + "thread": 9 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1362125, + "thread": 3 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1609790, + "thread": 31 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1771868, + "thread": 9 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 1948532, + "thread": 17 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2087353, + "thread": 4 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2242800, + "thread": 7 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2416274, + "thread": 3 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2557476, + "thread": 14 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2645350, + "thread": 14 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 2903142, + "thread": 14 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 3049289, + "thread": 14 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 3218895, + "thread": 30 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 3316942, + "thread": 24 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 3557283, + "thread": 21 + } + }, + { + "amount": "14844.083333333", + "slot": { + "period": 3684492, + "thread": 18 + } + }, + { + "amount": "14844.083333341", + "slot": { + "period": 3936297, + "thread": 1 + } + } + ], + "AU15PnrTFE6xZuxbQYeNHu5pbmsW1fkYJbakHm45ssPxrqXPTbzf": [ + { + "amount": "146.623026246", + "slot": { + "period": 118577, + "thread": 17 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 212321, + "thread": 0 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 346781, + "thread": 27 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 547652, + "thread": 30 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 673136, + "thread": 17 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 828176, + "thread": 26 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1137735, + "thread": 30 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1233725, + "thread": 16 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1385362, + "thread": 20 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1613192, + "thread": 14 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1661132, + "thread": 18 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 1936535, + "thread": 11 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2069797, + "thread": 13 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2215283, + "thread": 12 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2295507, + "thread": 21 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2602065, + "thread": 1 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2708268, + "thread": 1 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 2793933, + "thread": 10 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 3071941, + "thread": 29 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 3214330, + "thread": 14 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 3440453, + "thread": 24 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 3564840, + "thread": 6 + } + }, + { + "amount": "146.623026246", + "slot": { + "period": 3658720, + "thread": 2 + } + }, + { + "amount": "146.623026250", + "slot": { + "period": 3801227, + "thread": 11 + } + } + ], + "AU15QcZAiXtQHhbQtzs4D3x7BrQb6QppQqyD6MmsD6mgpVFNBJ1x": [ + { + "amount": "220.965406694", + "slot": { + "period": 116533, + "thread": 16 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 273841, + "thread": 0 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 439984, + "thread": 13 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 610837, + "thread": 2 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 730334, + "thread": 20 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 876425, + "thread": 28 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1043684, + "thread": 24 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1268582, + "thread": 9 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1438257, + "thread": 13 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1636000, + "thread": 30 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1676915, + "thread": 14 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 1956708, + "thread": 7 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2051003, + "thread": 22 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2162995, + "thread": 30 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2346395, + "thread": 11 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2583109, + "thread": 13 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2638953, + "thread": 15 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 2842076, + "thread": 14 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 3012758, + "thread": 19 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 3196158, + "thread": 3 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 3292901, + "thread": 6 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 3596072, + "thread": 25 + } + }, + { + "amount": "220.965406694", + "slot": { + "period": 3673133, + "thread": 10 + } + }, + { + "amount": "220.965406704", + "slot": { + "period": 3828156, + "thread": 29 + } + } + ], + "AU15Qry9QUxRFBYfDtpec4EmGvjcQqiPRKcV3ozeqXXxuxV3qn33": [ + { + "amount": "5833.333333333", + "slot": { + "period": 46634, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 191341, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 399063, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 516370, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 673385, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 920467, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1035189, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1285296, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1356408, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1617643, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1804801, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1876144, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2033347, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2276692, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2319768, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2593290, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2757285, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2940177, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3114706, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3224260, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3367411, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3498950, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3692363, + "thread": 25 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3854747, + "thread": 1 + } + } + ], + "AU15R7S36oNtngaNTRQfkfD2PQwqEoY3Pha5DGbAhLEDW5bpeCjG": [ + { + "amount": "549.078714628", + "slot": { + "period": 108865, + "thread": 30 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 240335, + "thread": 5 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 332828, + "thread": 9 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 607967, + "thread": 16 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 667987, + "thread": 21 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 978808, + "thread": 21 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1108103, + "thread": 31 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1304106, + "thread": 29 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1449512, + "thread": 22 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1484443, + "thread": 26 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1708386, + "thread": 24 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 1821292, + "thread": 30 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2113394, + "thread": 24 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2174103, + "thread": 0 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2421966, + "thread": 21 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2531943, + "thread": 29 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2738607, + "thread": 21 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 2917159, + "thread": 8 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 3064301, + "thread": 10 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 3267205, + "thread": 26 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 3426888, + "thread": 1 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 3577034, + "thread": 30 + } + }, + { + "amount": "549.078714628", + "slot": { + "period": 3656728, + "thread": 2 + } + }, + { + "amount": "549.078714632", + "slot": { + "period": 3851218, + "thread": 10 + } + } + ], + "AU15RF8oQtUDpDPFTtE8XkZtpEcXhLRCYBrEWfej4xPKmTuktJmN": [ + { + "amount": "122.374344176", + "slot": { + "period": 145837, + "thread": 18 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 239527, + "thread": 19 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 419805, + "thread": 21 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 615121, + "thread": 0 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 667369, + "thread": 8 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 947977, + "thread": 1 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1110960, + "thread": 16 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1281806, + "thread": 25 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1359138, + "thread": 8 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1620756, + "thread": 17 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1689215, + "thread": 21 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 1920074, + "thread": 18 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2018071, + "thread": 30 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2252747, + "thread": 29 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2360379, + "thread": 10 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2464651, + "thread": 10 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2663461, + "thread": 8 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 2801850, + "thread": 26 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 3024675, + "thread": 1 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 3126074, + "thread": 13 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 3342408, + "thread": 12 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 3535059, + "thread": 24 + } + }, + { + "amount": "122.374344176", + "slot": { + "period": 3666348, + "thread": 12 + } + }, + { + "amount": "122.374344175", + "slot": { + "period": 3891550, + "thread": 6 + } + } + ], + "AU15RanxfLKnMEHdfV2SvYTpUtrCJz9vEdKNCYEgeJBcZfZC9KnF": [ + { + "amount": "226.839640404", + "slot": { + "period": 67808, + "thread": 22 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 185504, + "thread": 19 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 412815, + "thread": 14 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 532689, + "thread": 14 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 772025, + "thread": 6 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 884620, + "thread": 29 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1123866, + "thread": 15 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1280078, + "thread": 16 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1420377, + "thread": 27 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1495421, + "thread": 6 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1659345, + "thread": 27 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 1842830, + "thread": 15 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2037776, + "thread": 2 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2212770, + "thread": 16 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2367913, + "thread": 18 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2603178, + "thread": 7 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2773071, + "thread": 25 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 2893588, + "thread": 23 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 3058831, + "thread": 27 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 3228523, + "thread": 7 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 3387440, + "thread": 12 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 3551560, + "thread": 1 + } + }, + { + "amount": "226.839640404", + "slot": { + "period": 3742483, + "thread": 30 + } + }, + { + "amount": "226.839640411", + "slot": { + "period": 3939025, + "thread": 9 + } + } + ], + "AU15RkVo9U3xyYWj1YkZzWUQ12DmFkmRcRz72kxbyR3uJqcsW669": [ + { + "amount": "437.987504323", + "slot": { + "period": 50253, + "thread": 5 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 252640, + "thread": 14 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 487179, + "thread": 20 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 605499, + "thread": 22 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 737226, + "thread": 11 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 871525, + "thread": 22 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1028985, + "thread": 4 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1191577, + "thread": 9 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1443508, + "thread": 15 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1596594, + "thread": 14 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1678548, + "thread": 2 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 1958201, + "thread": 22 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2098148, + "thread": 1 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2160111, + "thread": 27 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2384425, + "thread": 15 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2597858, + "thread": 25 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2711571, + "thread": 0 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 2881726, + "thread": 11 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 3106162, + "thread": 31 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 3153343, + "thread": 14 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 3318043, + "thread": 17 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 3568625, + "thread": 27 + } + }, + { + "amount": "437.987504323", + "slot": { + "period": 3714515, + "thread": 19 + } + }, + { + "amount": "437.987504327", + "slot": { + "period": 3854596, + "thread": 14 + } + } + ], + "AU15TKbkBf6kj8HePTor9QLrJkDkCV2LCUppa37AbHfgPtJcNcJR": [ + { + "amount": "161.748178712", + "slot": { + "period": 119984, + "thread": 15 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 237749, + "thread": 21 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 367623, + "thread": 25 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 613218, + "thread": 28 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 743347, + "thread": 14 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 842760, + "thread": 1 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1015432, + "thread": 15 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1169180, + "thread": 12 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1407507, + "thread": 17 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1608076, + "thread": 14 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1771311, + "thread": 24 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 1967711, + "thread": 15 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2058746, + "thread": 14 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2233971, + "thread": 26 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2396603, + "thread": 1 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2584140, + "thread": 0 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2725130, + "thread": 3 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 2841256, + "thread": 10 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 3003605, + "thread": 27 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 3266734, + "thread": 27 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 3344682, + "thread": 22 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 3551238, + "thread": 23 + } + }, + { + "amount": "161.748178712", + "slot": { + "period": 3734251, + "thread": 20 + } + }, + { + "amount": "161.748178704", + "slot": { + "period": 3918557, + "thread": 5 + } + } + ], + "AU15U43cRzABHJojgaqsdqoVe1s8YpmromX2TTkj49HYUK4ihkuk": [ + { + "amount": "97.918812522", + "slot": { + "period": 83554, + "thread": 23 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 200486, + "thread": 24 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 410132, + "thread": 30 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 522688, + "thread": 13 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 760591, + "thread": 31 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 976664, + "thread": 1 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1037084, + "thread": 22 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1299591, + "thread": 25 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1439382, + "thread": 9 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1533037, + "thread": 5 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1787778, + "thread": 19 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 1903878, + "thread": 1 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2073196, + "thread": 3 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2155965, + "thread": 28 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2313421, + "thread": 29 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2592201, + "thread": 16 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2765160, + "thread": 21 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 2847033, + "thread": 27 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 3051025, + "thread": 17 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 3141665, + "thread": 13 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 3363433, + "thread": 13 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 3565501, + "thread": 10 + } + }, + { + "amount": "97.918812522", + "slot": { + "period": 3741982, + "thread": 7 + } + }, + { + "amount": "97.918812523", + "slot": { + "period": 3805341, + "thread": 21 + } + } + ], + "AU15UKTKi7htA5p89pAnBzY1ydy4JxWQDQ68vryFbn3AKuq1UaFW": [ + { + "amount": "81.477531712", + "slot": { + "period": 11621, + "thread": 13 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 289072, + "thread": 16 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 461379, + "thread": 25 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 611183, + "thread": 17 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 762253, + "thread": 18 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 845024, + "thread": 31 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1022455, + "thread": 20 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1257669, + "thread": 2 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1384542, + "thread": 1 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1640466, + "thread": 20 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1648768, + "thread": 22 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 1894038, + "thread": 4 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2092798, + "thread": 21 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2184471, + "thread": 30 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2410014, + "thread": 29 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2564042, + "thread": 19 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2640415, + "thread": 5 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 2792150, + "thread": 17 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 3010633, + "thread": 27 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 3144390, + "thread": 2 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 3375596, + "thread": 6 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 3532984, + "thread": 11 + } + }, + { + "amount": "81.477531712", + "slot": { + "period": 3669679, + "thread": 24 + } + }, + { + "amount": "81.477531713", + "slot": { + "period": 3872280, + "thread": 15 + } + } + ], + "AU15UTnmxeQFowVzsifjXMvXjX86YTXb7qwKg5CHGB3Sn4T63qPg": [ + { + "amount": "123.464671992", + "slot": { + "period": 136681, + "thread": 0 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 211082, + "thread": 11 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 347796, + "thread": 10 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 652909, + "thread": 7 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 696534, + "thread": 21 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 973164, + "thread": 12 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1105627, + "thread": 30 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1302447, + "thread": 8 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1326995, + "thread": 30 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1558322, + "thread": 6 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1669867, + "thread": 19 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 1924216, + "thread": 16 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2103254, + "thread": 15 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2243450, + "thread": 13 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2384587, + "thread": 5 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2514342, + "thread": 3 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2763808, + "thread": 15 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2792122, + "thread": 17 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 2956344, + "thread": 29 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 3169503, + "thread": 2 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 3374256, + "thread": 27 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 3466435, + "thread": 5 + } + }, + { + "amount": "123.464671992", + "slot": { + "period": 3724383, + "thread": 28 + } + }, + { + "amount": "123.464671982", + "slot": { + "period": 3820187, + "thread": 18 + } + } + ], + "AU15VNHjgbWDV6ZMA9YTFQpftPqecVRfbjFsKcRP3N5uQxq5HDKg": [ + { + "amount": "140.938284862", + "slot": { + "period": 141406, + "thread": 5 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 291423, + "thread": 20 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 325663, + "thread": 28 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 527024, + "thread": 18 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 788540, + "thread": 24 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 852752, + "thread": 5 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1024677, + "thread": 17 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1154268, + "thread": 5 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1328005, + "thread": 23 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1513435, + "thread": 16 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1705228, + "thread": 26 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 1852854, + "thread": 2 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2041109, + "thread": 6 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2153794, + "thread": 0 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2411264, + "thread": 29 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2491309, + "thread": 14 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2693424, + "thread": 14 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 2791860, + "thread": 22 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 3098263, + "thread": 16 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 3278553, + "thread": 6 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 3436170, + "thread": 31 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 3552684, + "thread": 17 + } + }, + { + "amount": "140.938284862", + "slot": { + "period": 3702687, + "thread": 6 + } + }, + { + "amount": "140.938284870", + "slot": { + "period": 3798023, + "thread": 30 + } + } + ], + "AU15Vjmx8PcoZ5He1wtTDEWN2iQgnyZc1Qnt1fCg6LQBLDU5AhwE": [ + { + "amount": "116.965371886", + "slot": { + "period": 116063, + "thread": 14 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 257961, + "thread": 4 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 393028, + "thread": 11 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 574085, + "thread": 20 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 737038, + "thread": 12 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 923456, + "thread": 1 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1122080, + "thread": 21 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1175700, + "thread": 6 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1378392, + "thread": 29 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1486190, + "thread": 26 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1755471, + "thread": 24 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 1871608, + "thread": 5 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2031341, + "thread": 4 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2169635, + "thread": 4 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2383042, + "thread": 29 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2567466, + "thread": 28 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2702328, + "thread": 1 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 2861684, + "thread": 31 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 3098582, + "thread": 26 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 3193305, + "thread": 14 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 3349097, + "thread": 15 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 3537552, + "thread": 27 + } + }, + { + "amount": "116.965371886", + "slot": { + "period": 3673079, + "thread": 22 + } + }, + { + "amount": "116.965371881", + "slot": { + "period": 3878344, + "thread": 28 + } + } + ], + "AU15WMJVMEV6WUggsmoQTuu2mzicTZeRHDB8wqGPkHkKDHkasXdq": [ + { + "amount": "231.994122037", + "slot": { + "period": 97728, + "thread": 30 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 217284, + "thread": 9 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 345598, + "thread": 12 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 566703, + "thread": 23 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 711219, + "thread": 31 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 868955, + "thread": 1 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1062833, + "thread": 13 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1267347, + "thread": 0 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1473619, + "thread": 16 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1525765, + "thread": 0 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1715110, + "thread": 6 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 1855996, + "thread": 26 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2070756, + "thread": 21 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2273547, + "thread": 15 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2423179, + "thread": 25 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2488873, + "thread": 27 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2727612, + "thread": 28 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 2794744, + "thread": 14 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 3080485, + "thread": 1 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 3186039, + "thread": 14 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 3375190, + "thread": 16 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 3510580, + "thread": 0 + } + }, + { + "amount": "231.994122037", + "slot": { + "period": 3765429, + "thread": 14 + } + }, + { + "amount": "231.994122027", + "slot": { + "period": 3823954, + "thread": 2 + } + } + ], + "AU15WsagmUTGwXVWAFNQUUfN7pdxtj8X1VNhK6j5fBvm7pAYAi5t": [ + { + "amount": "162.014353822", + "slot": { + "period": 135513, + "thread": 3 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 263158, + "thread": 0 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 483011, + "thread": 12 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 649934, + "thread": 29 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 715779, + "thread": 18 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 886702, + "thread": 20 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1058372, + "thread": 10 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1199048, + "thread": 16 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1409451, + "thread": 17 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1543218, + "thread": 18 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1690273, + "thread": 22 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 1923157, + "thread": 31 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2003300, + "thread": 1 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2284994, + "thread": 10 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2352923, + "thread": 0 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2472186, + "thread": 28 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2763268, + "thread": 25 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 2915385, + "thread": 5 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 3076835, + "thread": 22 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 3233009, + "thread": 20 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 3327793, + "thread": 13 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 3563165, + "thread": 12 + } + }, + { + "amount": "162.014353822", + "slot": { + "period": 3702623, + "thread": 15 + } + }, + { + "amount": "162.014353819", + "slot": { + "period": 3945371, + "thread": 27 + } + } + ], + "AU15Xdh2eCeBYMUVjizDwfTbFWJ8aPBL7HgvuNCPcLoG4ChtwWYt": [ + { + "amount": "128.415180387", + "slot": { + "period": 13725, + "thread": 10 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 262035, + "thread": 9 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 406920, + "thread": 8 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 626818, + "thread": 29 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 767778, + "thread": 29 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 887368, + "thread": 30 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1091763, + "thread": 15 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1216026, + "thread": 24 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1445299, + "thread": 28 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1595828, + "thread": 27 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1722792, + "thread": 29 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 1869996, + "thread": 0 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2083968, + "thread": 8 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2236264, + "thread": 8 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2296900, + "thread": 18 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2526449, + "thread": 27 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2698050, + "thread": 17 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2825287, + "thread": 0 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 2958836, + "thread": 16 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 3179162, + "thread": 30 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 3402014, + "thread": 18 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 3463238, + "thread": 0 + } + }, + { + "amount": "128.415180387", + "slot": { + "period": 3717304, + "thread": 6 + } + }, + { + "amount": "128.415180381", + "slot": { + "period": 3880358, + "thread": 16 + } + } + ], + "AU15Xsp5tgAjL5Q7QF3P7BRoAaRpFseSJJbxPMZS9DhkEPZaPtqH": [ + { + "amount": "141.291030436", + "slot": { + "period": 84901, + "thread": 22 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 291644, + "thread": 14 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 422583, + "thread": 27 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 631667, + "thread": 29 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 722936, + "thread": 13 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 919634, + "thread": 29 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1133776, + "thread": 29 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1287819, + "thread": 30 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1476682, + "thread": 0 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1577487, + "thread": 5 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1728123, + "thread": 22 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 1941533, + "thread": 30 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2049504, + "thread": 14 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2279256, + "thread": 9 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2298784, + "thread": 4 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2602832, + "thread": 14 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2625431, + "thread": 13 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 2885016, + "thread": 20 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 3107454, + "thread": 26 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 3283365, + "thread": 29 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 3290052, + "thread": 30 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 3495070, + "thread": 17 + } + }, + { + "amount": "141.291030436", + "slot": { + "period": 3619038, + "thread": 22 + } + }, + { + "amount": "141.291030440", + "slot": { + "period": 3875333, + "thread": 10 + } + } + ], + "AU15XvC1fEM8po4mjVmEc7SJtBw7JkdETfDZnvKDKimcgC5i1EwF": [ + { + "amount": "105.053103916", + "slot": { + "period": 112812, + "thread": 2 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 201765, + "thread": 25 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 334493, + "thread": 0 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 525327, + "thread": 20 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 740258, + "thread": 29 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 904829, + "thread": 1 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1071859, + "thread": 21 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1286772, + "thread": 7 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1424542, + "thread": 7 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1628062, + "thread": 0 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1720106, + "thread": 2 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 1917058, + "thread": 22 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2124715, + "thread": 26 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2252702, + "thread": 29 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2325328, + "thread": 31 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2598138, + "thread": 10 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2744224, + "thread": 3 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 2797049, + "thread": 4 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 3106558, + "thread": 1 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 3242212, + "thread": 9 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 3382514, + "thread": 12 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 3530044, + "thread": 13 + } + }, + { + "amount": "105.053103916", + "slot": { + "period": 3768174, + "thread": 13 + } + }, + { + "amount": "105.053103921", + "slot": { + "period": 3899365, + "thread": 7 + } + } + ], + "AU15YRcm7c8nmACrMUXupdxvbWSZN4rfHQLwWjpRnRe95epgVpWF": [ + { + "amount": "498.148581280", + "slot": { + "period": 164963, + "thread": 11 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 288411, + "thread": 11 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 417958, + "thread": 22 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 634347, + "thread": 22 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 756127, + "thread": 18 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 904562, + "thread": 23 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1042950, + "thread": 5 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1232096, + "thread": 7 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1457506, + "thread": 7 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1524791, + "thread": 1 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1763194, + "thread": 28 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 1949018, + "thread": 29 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2142658, + "thread": 23 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2230571, + "thread": 7 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2302743, + "thread": 4 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2504913, + "thread": 29 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2647649, + "thread": 23 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2945053, + "thread": 20 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 2977182, + "thread": 1 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 3184565, + "thread": 8 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 3296377, + "thread": 1 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 3570606, + "thread": 24 + } + }, + { + "amount": "498.148581280", + "slot": { + "period": 3699650, + "thread": 3 + } + }, + { + "amount": "498.148581276", + "slot": { + "period": 3924813, + "thread": 21 + } + } + ], + "AU15ZNzeCfnmMfVShnrZrEQNz2YFQ1DZrnz7MTugcM8u1d3JHXCs": [ + { + "amount": "138.307403115", + "slot": { + "period": 34408, + "thread": 10 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 256407, + "thread": 8 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 489453, + "thread": 4 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 492848, + "thread": 29 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 700479, + "thread": 1 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 882789, + "thread": 31 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1043592, + "thread": 26 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1203749, + "thread": 4 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1426361, + "thread": 14 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1628634, + "thread": 13 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1690537, + "thread": 0 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 1818232, + "thread": 4 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2046178, + "thread": 25 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2207814, + "thread": 13 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2429004, + "thread": 12 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2589233, + "thread": 15 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2783822, + "thread": 30 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 2872018, + "thread": 10 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 3086526, + "thread": 20 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 3258485, + "thread": 11 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 3402590, + "thread": 19 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 3504059, + "thread": 3 + } + }, + { + "amount": "138.307403115", + "slot": { + "period": 3660769, + "thread": 3 + } + }, + { + "amount": "138.307403120", + "slot": { + "period": 3785495, + "thread": 9 + } + } + ], + "AU15ZSWR1BLCRpfEXScxBnnu1oH39g9emVk1zj25ptPVFVZDMg3Y": [ + { + "amount": "169.238955869", + "slot": { + "period": 107244, + "thread": 20 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 253763, + "thread": 24 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 385105, + "thread": 1 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 520419, + "thread": 21 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 786145, + "thread": 26 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 968440, + "thread": 12 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1062217, + "thread": 19 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1194524, + "thread": 26 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1456536, + "thread": 4 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1494585, + "thread": 1 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1743031, + "thread": 28 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 1964313, + "thread": 27 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2087283, + "thread": 9 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2261974, + "thread": 20 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2460262, + "thread": 7 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2597111, + "thread": 3 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2709807, + "thread": 3 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 2802705, + "thread": 17 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 3048520, + "thread": 25 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 3281627, + "thread": 2 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 3425536, + "thread": 3 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 3483578, + "thread": 28 + } + }, + { + "amount": "169.238955869", + "slot": { + "period": 3661182, + "thread": 23 + } + }, + { + "amount": "169.238955864", + "slot": { + "period": 3789943, + "thread": 14 + } + } + ], + "AU15ZWbvNKQ4iwQrNCPDhAfzGvnTVuxVhn1nBs8moQ3MPswwpsLF": [ + { + "amount": "66.365344550", + "slot": { + "period": 161280, + "thread": 10 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 271739, + "thread": 4 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 330274, + "thread": 14 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 553761, + "thread": 25 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 708350, + "thread": 22 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 948518, + "thread": 11 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1097253, + "thread": 18 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1253020, + "thread": 16 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1417807, + "thread": 9 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1487491, + "thread": 5 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1745213, + "thread": 9 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 1904584, + "thread": 29 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2031975, + "thread": 21 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2144695, + "thread": 27 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2295705, + "thread": 18 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2589977, + "thread": 14 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2707668, + "thread": 2 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 2839113, + "thread": 23 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 3014158, + "thread": 25 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 3200193, + "thread": 0 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 3361000, + "thread": 11 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 3476156, + "thread": 30 + } + }, + { + "amount": "66.365344550", + "slot": { + "period": 3707277, + "thread": 2 + } + }, + { + "amount": "66.365344540", + "slot": { + "period": 3903130, + "thread": 4 + } + } + ], + "AU15ZxiUPjqcyMFk1YV4ooKCyiHLBi5YvEhHUFoJUZn9Ag8EH23d": [ + { + "amount": "245.252421325", + "slot": { + "period": 136004, + "thread": 23 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 255758, + "thread": 17 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 325506, + "thread": 23 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 638263, + "thread": 5 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 685408, + "thread": 12 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 838864, + "thread": 23 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1043810, + "thread": 1 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1291867, + "thread": 15 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1479098, + "thread": 29 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1497752, + "thread": 10 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1758663, + "thread": 28 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 1841523, + "thread": 23 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2066267, + "thread": 10 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2229308, + "thread": 30 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2368281, + "thread": 29 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2583271, + "thread": 20 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2781302, + "thread": 3 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 2913017, + "thread": 22 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 3114140, + "thread": 7 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 3151335, + "thread": 9 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 3385255, + "thread": 1 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 3519493, + "thread": 5 + } + }, + { + "amount": "245.252421325", + "slot": { + "period": 3739150, + "thread": 11 + } + }, + { + "amount": "245.252421332", + "slot": { + "period": 3847260, + "thread": 2 + } + } + ], + "AU15azFyiJWhrAJtL7dgRKcHaZCv2PqUievmxYcbvFZYhnNrUa2f": [ + { + "amount": "486.810607281", + "slot": { + "period": 61897, + "thread": 14 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 272128, + "thread": 31 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 400543, + "thread": 17 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 506136, + "thread": 16 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 808957, + "thread": 3 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 907382, + "thread": 29 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1139543, + "thread": 29 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1222057, + "thread": 15 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1469382, + "thread": 29 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1565983, + "thread": 15 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1755882, + "thread": 11 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1965505, + "thread": 12 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 1988006, + "thread": 2 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 2175908, + "thread": 21 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 2352754, + "thread": 31 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 2569813, + "thread": 12 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 2651651, + "thread": 2 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 2821992, + "thread": 4 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 3073527, + "thread": 21 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 3250957, + "thread": 3 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 3412766, + "thread": 4 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 3556795, + "thread": 19 + } + }, + { + "amount": "486.810607281", + "slot": { + "period": 3719934, + "thread": 25 + } + }, + { + "amount": "486.810607292", + "slot": { + "period": 3811161, + "thread": 8 + } + } + ], + "AU15cTLngVH2rKxSqmAPufKAuwryMUAAJckrtDgSiQCBHmNaNuJv": [ + { + "amount": "170.927096952", + "slot": { + "period": 149345, + "thread": 28 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 257442, + "thread": 8 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 459881, + "thread": 10 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 520326, + "thread": 3 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 738902, + "thread": 2 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 897268, + "thread": 14 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1082821, + "thread": 11 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1255511, + "thread": 27 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1434098, + "thread": 20 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1620135, + "thread": 13 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1789481, + "thread": 30 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 1836925, + "thread": 18 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2062573, + "thread": 16 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2151933, + "thread": 17 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2358073, + "thread": 2 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2590148, + "thread": 0 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2734270, + "thread": 5 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 2886105, + "thread": 12 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 3083563, + "thread": 29 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 3134802, + "thread": 25 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 3318571, + "thread": 22 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 3542122, + "thread": 28 + } + }, + { + "amount": "170.927096952", + "slot": { + "period": 3775759, + "thread": 19 + } + }, + { + "amount": "170.927096947", + "slot": { + "period": 3828593, + "thread": 14 + } + } + ], + "AU15cZX2A4bGWpfLxWHC3hTAJpFmEGbKFVhJV6oG9y9ybpzUFwYv": [ + { + "amount": "431.882320615", + "slot": { + "period": 44899, + "thread": 19 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 249885, + "thread": 4 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 363966, + "thread": 9 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 641417, + "thread": 11 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 659780, + "thread": 14 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 901897, + "thread": 10 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1053967, + "thread": 26 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1163914, + "thread": 3 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1467017, + "thread": 18 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1536946, + "thread": 12 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1700662, + "thread": 29 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 1933502, + "thread": 17 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2080144, + "thread": 1 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2264782, + "thread": 3 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2447475, + "thread": 10 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2485773, + "thread": 30 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2625263, + "thread": 23 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 2796253, + "thread": 17 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 3075940, + "thread": 16 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 3149917, + "thread": 22 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 3404285, + "thread": 25 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 3591093, + "thread": 15 + } + }, + { + "amount": "431.882320615", + "slot": { + "period": 3669556, + "thread": 3 + } + }, + { + "amount": "431.882320609", + "slot": { + "period": 3796733, + "thread": 19 + } + } + ], + "AU15cjoHvN3Huu4LXiUC9QFkcrUHnSfdATCEN23GMc2hC2SjSxuL": [ + { + "amount": "434.807123890", + "slot": { + "period": 64050, + "thread": 2 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 211064, + "thread": 3 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 425050, + "thread": 25 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 531388, + "thread": 1 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 765378, + "thread": 23 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 931605, + "thread": 1 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 991877, + "thread": 20 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 1280901, + "thread": 2 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 1411625, + "thread": 30 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 1629160, + "thread": 25 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 1780240, + "thread": 27 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 1820237, + "thread": 8 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2011026, + "thread": 0 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2264867, + "thread": 17 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2374135, + "thread": 22 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2540095, + "thread": 7 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2634413, + "thread": 31 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2899895, + "thread": 21 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 2985019, + "thread": 18 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 3121744, + "thread": 19 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 3361182, + "thread": 7 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 3554572, + "thread": 14 + } + }, + { + "amount": "434.807123890", + "slot": { + "period": 3685529, + "thread": 19 + } + }, + { + "amount": "434.807123901", + "slot": { + "period": 3792953, + "thread": 23 + } + } + ], + "AU15dcZsZESBn1RjUR8BXj2ymwaeH33bpXFR43RCVrU7ugBd2YqX": [ + { + "amount": "493.635652674", + "slot": { + "period": 21081, + "thread": 14 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 298432, + "thread": 14 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 389075, + "thread": 9 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 608708, + "thread": 30 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 816393, + "thread": 4 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 981486, + "thread": 8 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1015959, + "thread": 1 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1213165, + "thread": 23 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1462730, + "thread": 24 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1526915, + "thread": 28 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1708611, + "thread": 27 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 1839131, + "thread": 23 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2107499, + "thread": 6 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2209651, + "thread": 26 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2418707, + "thread": 2 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2515210, + "thread": 16 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2628674, + "thread": 26 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 2817305, + "thread": 23 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 3106121, + "thread": 26 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 3235238, + "thread": 0 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 3302100, + "thread": 18 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 3507062, + "thread": 3 + } + }, + { + "amount": "493.635652674", + "slot": { + "period": 3688136, + "thread": 9 + } + }, + { + "amount": "493.635652675", + "slot": { + "period": 3885257, + "thread": 0 + } + } + ], + "AU15e5XgbMd7EpkKeBJ4XcURJbjG6tBZi62My3R1Ed5X1m5VckWW": [ + { + "amount": "140.419722008", + "slot": { + "period": 84600, + "thread": 19 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 170981, + "thread": 23 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 485517, + "thread": 24 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 610344, + "thread": 7 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 663411, + "thread": 0 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 898192, + "thread": 11 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1144855, + "thread": 10 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1188526, + "thread": 31 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1323625, + "thread": 7 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1590936, + "thread": 17 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1731616, + "thread": 26 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 1812889, + "thread": 27 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2019311, + "thread": 26 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2201088, + "thread": 27 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2448647, + "thread": 26 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2475730, + "thread": 10 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2758964, + "thread": 0 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 2940273, + "thread": 18 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 3067155, + "thread": 21 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 3211645, + "thread": 14 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 3394405, + "thread": 10 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 3549461, + "thread": 29 + } + }, + { + "amount": "140.419722008", + "slot": { + "period": 3688762, + "thread": 24 + } + }, + { + "amount": "140.419722019", + "slot": { + "period": 3862180, + "thread": 2 + } + } + ], + "AU15eAdymyKJWqKK1NCCgbQhKDwbj7tRRZ7PvPubkQ27fd3uE5RA": [ + { + "amount": "220.349110307", + "slot": { + "period": 43610, + "thread": 15 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 173361, + "thread": 17 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 479245, + "thread": 15 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 628477, + "thread": 16 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 728449, + "thread": 16 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 860120, + "thread": 11 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1105861, + "thread": 5 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1238510, + "thread": 10 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1407727, + "thread": 11 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1482852, + "thread": 13 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1792769, + "thread": 0 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 1864861, + "thread": 3 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2068359, + "thread": 24 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2286110, + "thread": 26 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2435676, + "thread": 14 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2604532, + "thread": 22 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2746873, + "thread": 4 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 2938906, + "thread": 4 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 3110687, + "thread": 11 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 3173083, + "thread": 25 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 3418195, + "thread": 14 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 3567891, + "thread": 7 + } + }, + { + "amount": "220.349110307", + "slot": { + "period": 3641665, + "thread": 3 + } + }, + { + "amount": "220.349110308", + "slot": { + "period": 3840686, + "thread": 9 + } + } + ], + "AU15frZvtDYVHSpopFKANXbsUprUEBTu6cZskqnGinrdKWeSdvH9": [ + { + "amount": "346.374366246", + "slot": { + "period": 86190, + "thread": 20 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 264558, + "thread": 19 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 379146, + "thread": 30 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 593964, + "thread": 29 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 765365, + "thread": 0 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 899272, + "thread": 20 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1010540, + "thread": 11 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1262616, + "thread": 21 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1400210, + "thread": 8 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1509814, + "thread": 10 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1733901, + "thread": 8 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 1824790, + "thread": 26 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2038318, + "thread": 28 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2287139, + "thread": 20 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2401928, + "thread": 30 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2502611, + "thread": 24 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2640813, + "thread": 3 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 2837961, + "thread": 11 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 3071502, + "thread": 26 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 3213146, + "thread": 0 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 3307945, + "thread": 13 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 3563540, + "thread": 25 + } + }, + { + "amount": "346.374366246", + "slot": { + "period": 3683827, + "thread": 22 + } + }, + { + "amount": "346.374366239", + "slot": { + "period": 3917449, + "thread": 16 + } + } + ], + "AU15g2jLUuxGkEv9ycZoDof5YzTz3hZ5sXG9dPWd52iCAdEeZkjG": [ + { + "amount": "64.567890300", + "slot": { + "period": 160784, + "thread": 1 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 301565, + "thread": 25 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 472043, + "thread": 9 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 565416, + "thread": 5 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 784972, + "thread": 1 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 934707, + "thread": 11 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1074575, + "thread": 9 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1190556, + "thread": 30 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1468029, + "thread": 11 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1645342, + "thread": 29 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1677542, + "thread": 15 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 1941667, + "thread": 11 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2047762, + "thread": 0 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2229816, + "thread": 4 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2338032, + "thread": 14 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2580345, + "thread": 0 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2751368, + "thread": 12 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2864361, + "thread": 11 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 2980876, + "thread": 6 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 3186171, + "thread": 4 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 3442415, + "thread": 21 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 3512342, + "thread": 29 + } + }, + { + "amount": "64.567890300", + "slot": { + "period": 3721989, + "thread": 9 + } + }, + { + "amount": "64.567890291", + "slot": { + "period": 3850318, + "thread": 10 + } + } + ], + "AU15hfuDYfwU32u9dwx2osucv6J2psTYhhgw9DQiapcqtZXJC3E1": [ + { + "amount": "381.235042114", + "slot": { + "period": 62897, + "thread": 8 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 307631, + "thread": 7 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 354584, + "thread": 16 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 551038, + "thread": 30 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 762625, + "thread": 8 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 827512, + "thread": 2 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1008101, + "thread": 12 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1216177, + "thread": 30 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1429825, + "thread": 31 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1493226, + "thread": 23 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1727084, + "thread": 21 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 1905661, + "thread": 10 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2075943, + "thread": 17 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2274363, + "thread": 10 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2319817, + "thread": 15 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2501684, + "thread": 3 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2723972, + "thread": 0 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 2887893, + "thread": 12 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 3061604, + "thread": 8 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 3164878, + "thread": 30 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 3358621, + "thread": 18 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 3516376, + "thread": 19 + } + }, + { + "amount": "381.235042114", + "slot": { + "period": 3756277, + "thread": 9 + } + }, + { + "amount": "381.235042120", + "slot": { + "period": 3914301, + "thread": 26 + } + } + ], + "AU15j7Rd5opqdGEHZCUhRV8qTQWeoC4GyBpvXZ7SAarsetJ8539y": [ + { + "amount": "259.003937453", + "slot": { + "period": 27170, + "thread": 12 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 315750, + "thread": 15 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 433561, + "thread": 12 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 530549, + "thread": 20 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 717939, + "thread": 31 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 827343, + "thread": 28 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1147298, + "thread": 23 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1191805, + "thread": 16 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1411062, + "thread": 21 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1620069, + "thread": 6 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1788380, + "thread": 24 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 1813958, + "thread": 6 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2121612, + "thread": 10 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2242045, + "thread": 15 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2446370, + "thread": 0 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2538763, + "thread": 30 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2784113, + "thread": 31 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2939521, + "thread": 26 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 2967597, + "thread": 1 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 3200985, + "thread": 22 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 3389388, + "thread": 11 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 3601690, + "thread": 16 + } + }, + { + "amount": "259.003937453", + "slot": { + "period": 3619490, + "thread": 13 + } + }, + { + "amount": "259.003937458", + "slot": { + "period": 3839275, + "thread": 30 + } + } + ], + "AU15jMTyFN2J5zvwTJ76sJnJPphchSxZE57bJrQMoGRTsnjB9CDK": [ + { + "amount": "393.474420088", + "slot": { + "period": 107789, + "thread": 13 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 196296, + "thread": 4 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 442200, + "thread": 25 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 631363, + "thread": 7 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 792846, + "thread": 12 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 971961, + "thread": 4 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1012512, + "thread": 24 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1270314, + "thread": 6 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1408710, + "thread": 4 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1480535, + "thread": 30 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1791430, + "thread": 29 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 1838096, + "thread": 2 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2024878, + "thread": 7 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2209627, + "thread": 13 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2395092, + "thread": 6 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2537983, + "thread": 26 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2751006, + "thread": 13 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2906313, + "thread": 21 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 2980365, + "thread": 21 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 3264709, + "thread": 5 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 3421306, + "thread": 7 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 3589214, + "thread": 29 + } + }, + { + "amount": "393.474420088", + "slot": { + "period": 3676363, + "thread": 13 + } + }, + { + "amount": "393.474420098", + "slot": { + "period": 3802052, + "thread": 27 + } + } + ], + "AU15jdKpw8LZiGsUZUYhaV2Tzw7v23NG8wrJmprhqpjEMqeG428t": [ + { + "amount": "235.741856450", + "slot": { + "period": 114110, + "thread": 1 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 265042, + "thread": 5 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 369330, + "thread": 21 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 583513, + "thread": 13 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 708050, + "thread": 13 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 873636, + "thread": 6 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1066021, + "thread": 26 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1261224, + "thread": 4 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1421275, + "thread": 14 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1629131, + "thread": 19 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1680828, + "thread": 6 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 1818143, + "thread": 20 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2052125, + "thread": 13 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2181840, + "thread": 3 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2445950, + "thread": 9 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2556508, + "thread": 11 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2674598, + "thread": 0 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 2872030, + "thread": 23 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 3060688, + "thread": 5 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 3173930, + "thread": 6 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 3333045, + "thread": 15 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 3605987, + "thread": 17 + } + }, + { + "amount": "235.741856450", + "slot": { + "period": 3738660, + "thread": 27 + } + }, + { + "amount": "235.741856461", + "slot": { + "period": 3829521, + "thread": 13 + } + } + ], + "AU15jtDQRN5F1L1jnTUN5TY3mDuLwNAqgjgKAvb3waGy5VP58T6K": [ + { + "amount": "302.086119928", + "slot": { + "period": 78815, + "thread": 21 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 287387, + "thread": 21 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 340877, + "thread": 16 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 602197, + "thread": 24 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 704168, + "thread": 0 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 834409, + "thread": 13 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1113251, + "thread": 4 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1168343, + "thread": 18 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1367469, + "thread": 9 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1483030, + "thread": 24 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1748837, + "thread": 8 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1969802, + "thread": 10 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 1999559, + "thread": 25 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 2163325, + "thread": 29 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 2316737, + "thread": 26 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 2524146, + "thread": 6 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 2776350, + "thread": 16 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 2851950, + "thread": 8 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 3053994, + "thread": 1 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 3256120, + "thread": 6 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 3350652, + "thread": 19 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 3610352, + "thread": 3 + } + }, + { + "amount": "302.086119928", + "slot": { + "period": 3643430, + "thread": 11 + } + }, + { + "amount": "302.086119931", + "slot": { + "period": 3913668, + "thread": 25 + } + } + ], + "AU15kgAi5CiT9zpzd1bqzMkd78P4a4HtxpbGsLLnPr4odg47ZJQw": [ + { + "amount": "87.476337882", + "slot": { + "period": 44683, + "thread": 16 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 214493, + "thread": 26 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 360374, + "thread": 5 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 594125, + "thread": 19 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 706332, + "thread": 7 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 832144, + "thread": 12 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1122720, + "thread": 3 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1243156, + "thread": 20 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1388521, + "thread": 15 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1589660, + "thread": 30 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1717123, + "thread": 20 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 1863223, + "thread": 25 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2135806, + "thread": 12 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2183280, + "thread": 19 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2332125, + "thread": 19 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2519395, + "thread": 2 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2683105, + "thread": 4 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 2814532, + "thread": 21 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 3090750, + "thread": 1 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 3177143, + "thread": 21 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 3296663, + "thread": 4 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 3478463, + "thread": 18 + } + }, + { + "amount": "87.476337882", + "slot": { + "period": 3650200, + "thread": 20 + } + }, + { + "amount": "87.476337888", + "slot": { + "period": 3785643, + "thread": 8 + } + } + ], + "AU15m4H5HpmbxzseEhNaUW1cTt2tFVT76XZyRg7eUn59WJ376DdA": [ + { + "amount": "143.542638979", + "slot": { + "period": 43685, + "thread": 0 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 217438, + "thread": 24 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 488272, + "thread": 10 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 597455, + "thread": 23 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 745555, + "thread": 25 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 868842, + "thread": 18 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1017023, + "thread": 14 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1214543, + "thread": 1 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1368000, + "thread": 2 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1500473, + "thread": 26 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1715807, + "thread": 7 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1913786, + "thread": 28 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 1986556, + "thread": 31 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 2187738, + "thread": 28 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 2452239, + "thread": 13 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 2587568, + "thread": 13 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 2656989, + "thread": 12 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 2947335, + "thread": 21 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 3013395, + "thread": 20 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 3184466, + "thread": 21 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 3433752, + "thread": 25 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 3577728, + "thread": 18 + } + }, + { + "amount": "143.542638979", + "slot": { + "period": 3772431, + "thread": 17 + } + }, + { + "amount": "143.542638969", + "slot": { + "period": 3917222, + "thread": 7 + } + } + ], + "AU15mDe9NZFczcHifSwXQsBnaSH7RGxyqyCaE69WAE8TwLoiTiyC": [ + { + "amount": "490.786390166", + "slot": { + "period": 68880, + "thread": 28 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 212205, + "thread": 1 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 365464, + "thread": 20 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 603229, + "thread": 15 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 745356, + "thread": 27 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 874204, + "thread": 26 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1008859, + "thread": 25 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1196886, + "thread": 15 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1357320, + "thread": 15 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1574673, + "thread": 11 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1752636, + "thread": 1 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 1904387, + "thread": 5 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2081167, + "thread": 31 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2211905, + "thread": 7 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2366175, + "thread": 15 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2549705, + "thread": 11 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2661529, + "thread": 12 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 2824399, + "thread": 0 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 3005171, + "thread": 5 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 3131467, + "thread": 17 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 3395103, + "thread": 7 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 3615822, + "thread": 24 + } + }, + { + "amount": "490.786390166", + "slot": { + "period": 3762852, + "thread": 2 + } + }, + { + "amount": "490.786390163", + "slot": { + "period": 3867374, + "thread": 27 + } + } + ], + "AU15maxjTZwj2R9tXnSufoY8JczgFbkXmxjjzTJ6XJY54MPJkGRD": [ + { + "amount": "700.739272472", + "slot": { + "period": 63797, + "thread": 2 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 202839, + "thread": 26 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 444837, + "thread": 16 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 504572, + "thread": 18 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 808485, + "thread": 1 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 825349, + "thread": 1 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1083703, + "thread": 8 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1169059, + "thread": 4 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1408608, + "thread": 2 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1602899, + "thread": 9 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1808701, + "thread": 0 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1868473, + "thread": 12 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 1989592, + "thread": 18 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 2194615, + "thread": 6 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 2355965, + "thread": 30 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 2465361, + "thread": 9 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 2766090, + "thread": 28 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 2867623, + "thread": 14 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 3022421, + "thread": 3 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 3193512, + "thread": 15 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 3312380, + "thread": 3 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 3568385, + "thread": 18 + } + }, + { + "amount": "700.739272472", + "slot": { + "period": 3703724, + "thread": 2 + } + }, + { + "amount": "700.739272476", + "slot": { + "period": 3840484, + "thread": 23 + } + } + ], + "AU15nPcB3rQNSqG9i6fyoMaFt2AQLQwGsMUY2TTN9rBBEqC9RKWJ": [ + { + "amount": "109.373687713", + "slot": { + "period": 34512, + "thread": 1 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 245430, + "thread": 13 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 334759, + "thread": 21 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 631832, + "thread": 30 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 813753, + "thread": 29 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 900303, + "thread": 2 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1148938, + "thread": 26 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1164166, + "thread": 13 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1402540, + "thread": 29 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1497905, + "thread": 20 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1682372, + "thread": 14 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 1946847, + "thread": 19 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2030859, + "thread": 18 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2205760, + "thread": 1 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2462333, + "thread": 1 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2565006, + "thread": 22 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2716449, + "thread": 5 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 2793423, + "thread": 5 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 3056215, + "thread": 2 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 3258946, + "thread": 7 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 3433725, + "thread": 8 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 3551825, + "thread": 8 + } + }, + { + "amount": "109.373687713", + "slot": { + "period": 3707573, + "thread": 3 + } + }, + { + "amount": "109.373687703", + "slot": { + "period": 3904721, + "thread": 14 + } + } + ], + "AU15osjmsyjY3KoE3kVJMNya2NrqYfN1N1agQJ9mQAdZ8ocmZuQu": [ + { + "amount": "136.713995378", + "slot": { + "period": 30653, + "thread": 11 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 221698, + "thread": 29 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 355987, + "thread": 11 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 505371, + "thread": 14 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 813407, + "thread": 27 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 938704, + "thread": 17 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1083681, + "thread": 29 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1301173, + "thread": 0 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1406083, + "thread": 24 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1481332, + "thread": 0 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1798625, + "thread": 26 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 1929695, + "thread": 0 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2024060, + "thread": 19 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2256496, + "thread": 5 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2299858, + "thread": 20 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2469759, + "thread": 8 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2696678, + "thread": 14 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 2805880, + "thread": 17 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 3065614, + "thread": 13 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 3234468, + "thread": 9 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 3428100, + "thread": 14 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 3478390, + "thread": 29 + } + }, + { + "amount": "136.713995378", + "slot": { + "period": 3757243, + "thread": 30 + } + }, + { + "amount": "136.713995389", + "slot": { + "period": 3910643, + "thread": 2 + } + } + ], + "AU15qBGyQUd5zviGyvMsdF5i3EcM5YgxBpdpdupYJW1AfPpH73R5": [ + { + "amount": "695.736902694", + "slot": { + "period": 94007, + "thread": 28 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 204786, + "thread": 29 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 464643, + "thread": 15 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 627437, + "thread": 0 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 675678, + "thread": 3 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 969425, + "thread": 27 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1113960, + "thread": 9 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1175479, + "thread": 30 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1443015, + "thread": 0 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1487172, + "thread": 3 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1776505, + "thread": 22 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 1950774, + "thread": 11 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2062237, + "thread": 15 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2213851, + "thread": 10 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2411980, + "thread": 3 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2491245, + "thread": 7 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2685861, + "thread": 3 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 2834729, + "thread": 1 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 3053005, + "thread": 13 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 3254168, + "thread": 2 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 3365641, + "thread": 5 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 3453811, + "thread": 23 + } + }, + { + "amount": "695.736902694", + "slot": { + "period": 3716067, + "thread": 3 + } + }, + { + "amount": "695.736902703", + "slot": { + "period": 3902176, + "thread": 0 + } + } + ], + "AU15qGWaLXAcfCzaN3RnbgE5BfZ4bnT9sDxP5bxLBiDFs4V8nFoS": [ + { + "amount": "322.359155945", + "slot": { + "period": 163019, + "thread": 9 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 292328, + "thread": 4 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 440547, + "thread": 6 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 579768, + "thread": 20 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 784526, + "thread": 15 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 919206, + "thread": 18 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1022573, + "thread": 0 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1193871, + "thread": 2 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1477230, + "thread": 5 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1600982, + "thread": 1 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1785806, + "thread": 0 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 1837373, + "thread": 16 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2078225, + "thread": 9 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2227940, + "thread": 13 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2450827, + "thread": 22 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2491954, + "thread": 30 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2777575, + "thread": 17 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2896116, + "thread": 0 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 2958050, + "thread": 9 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 3188907, + "thread": 4 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 3416372, + "thread": 4 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 3602998, + "thread": 3 + } + }, + { + "amount": "322.359155945", + "slot": { + "period": 3659012, + "thread": 4 + } + }, + { + "amount": "322.359155943", + "slot": { + "period": 3935343, + "thread": 13 + } + } + ], + "AU15rNfUzmP43g4yrsHDvgwyxHs8gPAuXvXVJjLgmaP5m5yENh3B": [ + { + "amount": "219.770178574", + "slot": { + "period": 75678, + "thread": 12 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 180578, + "thread": 11 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 459603, + "thread": 28 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 637383, + "thread": 13 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 666515, + "thread": 13 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 968692, + "thread": 4 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1018129, + "thread": 20 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1191622, + "thread": 13 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1414391, + "thread": 5 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1621556, + "thread": 21 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1750621, + "thread": 0 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 1869268, + "thread": 31 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2094507, + "thread": 10 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2239596, + "thread": 24 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2423506, + "thread": 9 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2611306, + "thread": 29 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2753355, + "thread": 7 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 2926065, + "thread": 15 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 3062342, + "thread": 31 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 3218716, + "thread": 26 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 3382370, + "thread": 25 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 3581289, + "thread": 16 + } + }, + { + "amount": "219.770178574", + "slot": { + "period": 3773077, + "thread": 17 + } + }, + { + "amount": "219.770178570", + "slot": { + "period": 3886729, + "thread": 11 + } + } + ], + "AU15s2isUF4HQDdyADGdR3j7LAtw16TW6ZirsnRPP2Tcrrk9Aejd": [ + { + "amount": "53.527088288", + "slot": { + "period": 27993, + "thread": 6 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 199370, + "thread": 26 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 471520, + "thread": 10 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 552304, + "thread": 13 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 795693, + "thread": 29 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 898427, + "thread": 6 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1006082, + "thread": 30 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1282220, + "thread": 15 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1396632, + "thread": 29 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1519972, + "thread": 27 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1721717, + "thread": 2 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 1810269, + "thread": 10 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2138258, + "thread": 17 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2290946, + "thread": 16 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2415543, + "thread": 1 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2497776, + "thread": 9 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2669347, + "thread": 14 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 2949520, + "thread": 10 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 3024928, + "thread": 25 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 3270035, + "thread": 28 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 3300076, + "thread": 22 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 3598040, + "thread": 16 + } + }, + { + "amount": "53.527088288", + "slot": { + "period": 3687095, + "thread": 8 + } + }, + { + "amount": "53.527088282", + "slot": { + "period": 3929714, + "thread": 11 + } + } + ], + "AU15sGCXfWXcrpPNEB9uhQp3K8KETK4maokQWVLqziwieCneWHRa": [ + { + "amount": "125.355718826", + "slot": { + "period": 12585, + "thread": 28 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 212311, + "thread": 27 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 421161, + "thread": 2 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 616530, + "thread": 29 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 654485, + "thread": 21 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 874428, + "thread": 28 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1098378, + "thread": 6 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1248035, + "thread": 18 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1334022, + "thread": 17 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1612290, + "thread": 27 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1737166, + "thread": 27 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 1864129, + "thread": 6 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2026630, + "thread": 17 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2203246, + "thread": 30 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2431548, + "thread": 3 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2491155, + "thread": 18 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2733244, + "thread": 31 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2866963, + "thread": 6 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 2960897, + "thread": 4 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 3122429, + "thread": 19 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 3392953, + "thread": 22 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 3540006, + "thread": 5 + } + }, + { + "amount": "125.355718826", + "slot": { + "period": 3735949, + "thread": 18 + } + }, + { + "amount": "125.355718825", + "slot": { + "period": 3903149, + "thread": 30 + } + } + ], + "AU15tRMNfFWDvtNuSioimvtkfZLn2BULCT99iKoQZZ7PKi4YpRiV": [ + { + "amount": "261.557326593", + "slot": { + "period": 115142, + "thread": 22 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 277018, + "thread": 6 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 374659, + "thread": 5 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 508772, + "thread": 3 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 705222, + "thread": 18 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 913136, + "thread": 18 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1015606, + "thread": 19 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1157823, + "thread": 14 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1436408, + "thread": 7 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1566446, + "thread": 29 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1733090, + "thread": 28 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 1830780, + "thread": 6 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2107347, + "thread": 3 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2254216, + "thread": 16 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2351248, + "thread": 29 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2515392, + "thread": 31 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2688494, + "thread": 19 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2880682, + "thread": 9 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 2997908, + "thread": 5 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 3280032, + "thread": 23 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 3350294, + "thread": 24 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 3469241, + "thread": 3 + } + }, + { + "amount": "261.557326593", + "slot": { + "period": 3756220, + "thread": 25 + } + }, + { + "amount": "261.557326588", + "slot": { + "period": 3809685, + "thread": 22 + } + } + ], + "AU15uvytvHzWY684zGMFyA8MP1dsJ4RrNSNCXUQ4f1RboqRw5yiA": [ + { + "amount": "108.792649983", + "slot": { + "period": 100294, + "thread": 20 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 225864, + "thread": 5 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 467341, + "thread": 2 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 623799, + "thread": 5 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 665397, + "thread": 12 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 918685, + "thread": 3 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1004189, + "thread": 11 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1277801, + "thread": 18 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1364825, + "thread": 6 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1492921, + "thread": 26 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1796744, + "thread": 22 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 1959975, + "thread": 2 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2042487, + "thread": 31 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2186640, + "thread": 24 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2344675, + "thread": 11 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2467702, + "thread": 24 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2642412, + "thread": 31 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 2799864, + "thread": 0 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 3065273, + "thread": 13 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 3173902, + "thread": 16 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 3359109, + "thread": 26 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 3587159, + "thread": 18 + } + }, + { + "amount": "108.792649983", + "slot": { + "period": 3624349, + "thread": 23 + } + }, + { + "amount": "108.792649985", + "slot": { + "period": 3805860, + "thread": 9 + } + } + ], + "AU15uxM3JrpNyh655pphjRPZ5yy9H3KMVyvsJUWt61a4NqKgFp19": [ + { + "amount": "565.717485797", + "slot": { + "period": 12847, + "thread": 31 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 262415, + "thread": 12 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 388688, + "thread": 7 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 540924, + "thread": 11 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 811910, + "thread": 20 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 972228, + "thread": 19 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 988322, + "thread": 23 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 1173839, + "thread": 4 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 1354457, + "thread": 6 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 1603269, + "thread": 30 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 1735488, + "thread": 24 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 1975285, + "thread": 5 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2139351, + "thread": 3 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2232807, + "thread": 20 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2311604, + "thread": 2 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2570676, + "thread": 14 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2758363, + "thread": 25 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 2869874, + "thread": 15 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 3084717, + "thread": 4 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 3148508, + "thread": 0 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 3370434, + "thread": 10 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 3492354, + "thread": 16 + } + }, + { + "amount": "565.717485797", + "slot": { + "period": 3665181, + "thread": 31 + } + }, + { + "amount": "565.717485802", + "slot": { + "period": 3908878, + "thread": 18 + } + } + ], + "AU15v8R656JU3pbLVUEuRXTjUW5dgDsK9U7Vc4AU4NfYayz855cT": [ + { + "amount": "134.598709220", + "slot": { + "period": 41059, + "thread": 18 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 301560, + "thread": 26 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 340416, + "thread": 7 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 537699, + "thread": 1 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 792029, + "thread": 8 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 903179, + "thread": 12 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1067639, + "thread": 31 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1292969, + "thread": 1 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1366426, + "thread": 1 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1591273, + "thread": 24 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1655663, + "thread": 22 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 1896328, + "thread": 21 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2007812, + "thread": 20 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2273175, + "thread": 11 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2359138, + "thread": 29 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2473971, + "thread": 2 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2697479, + "thread": 4 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 2810847, + "thread": 4 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 3077037, + "thread": 10 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 3273412, + "thread": 6 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 3429901, + "thread": 23 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 3519989, + "thread": 24 + } + }, + { + "amount": "134.598709220", + "slot": { + "period": 3651443, + "thread": 17 + } + }, + { + "amount": "134.598709231", + "slot": { + "period": 3901542, + "thread": 26 + } + } + ], + "AU15vprjffjHwxUQMyncj1BPxbWRJbAVhoEgRXb6urfkBhbeLbKh": [ + { + "amount": "483.237761902", + "slot": { + "period": 50144, + "thread": 12 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 320058, + "thread": 22 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 449636, + "thread": 9 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 603212, + "thread": 29 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 765179, + "thread": 23 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 910068, + "thread": 30 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1018712, + "thread": 1 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1201497, + "thread": 0 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1333477, + "thread": 17 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1567365, + "thread": 9 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1761386, + "thread": 17 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 1949289, + "thread": 2 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2079917, + "thread": 3 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2279636, + "thread": 3 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2311764, + "thread": 18 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2547010, + "thread": 26 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2676797, + "thread": 17 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2843672, + "thread": 13 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 2972646, + "thread": 22 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 3201917, + "thread": 30 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 3340446, + "thread": 24 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 3601693, + "thread": 2 + } + }, + { + "amount": "483.237761902", + "slot": { + "period": 3762620, + "thread": 3 + } + }, + { + "amount": "483.237761897", + "slot": { + "period": 3880159, + "thread": 15 + } + } + ], + "AU15wrBBQ2DRy1Kiatbnb6JtEChmP1YsFoa4AMj8dLNWwUSyUbiN": [ + { + "amount": "382.558542894", + "slot": { + "period": 115199, + "thread": 27 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 241829, + "thread": 27 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 452707, + "thread": 8 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 564765, + "thread": 16 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 809899, + "thread": 17 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 874081, + "thread": 2 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1060329, + "thread": 15 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1296063, + "thread": 18 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1391811, + "thread": 2 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1504353, + "thread": 10 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1701543, + "thread": 28 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1876434, + "thread": 22 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 1981185, + "thread": 1 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 2252455, + "thread": 15 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 2357840, + "thread": 4 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 2468484, + "thread": 0 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 2754552, + "thread": 25 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 2812389, + "thread": 0 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 3042316, + "thread": 10 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 3165499, + "thread": 26 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 3447545, + "thread": 18 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 3529323, + "thread": 16 + } + }, + { + "amount": "382.558542894", + "slot": { + "period": 3735077, + "thread": 19 + } + }, + { + "amount": "382.558542896", + "slot": { + "period": 3820537, + "thread": 2 + } + } + ], + "AU15wwBRNW8UHvuoq7Sk2j8pnGok2JpWnDjT3Cu6XfnNwGdBhEJb": [ + { + "amount": "80.245082042", + "slot": { + "period": 127293, + "thread": 6 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 271463, + "thread": 8 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 405142, + "thread": 29 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 549631, + "thread": 0 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 776499, + "thread": 2 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 916625, + "thread": 16 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1076116, + "thread": 21 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1198350, + "thread": 12 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1381758, + "thread": 21 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1583007, + "thread": 6 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1771576, + "thread": 29 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 1951277, + "thread": 2 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2012963, + "thread": 7 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2199593, + "thread": 3 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2318107, + "thread": 7 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2522508, + "thread": 25 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2700612, + "thread": 4 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2846639, + "thread": 14 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 2971191, + "thread": 16 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 3198419, + "thread": 0 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 3298890, + "thread": 20 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 3468620, + "thread": 9 + } + }, + { + "amount": "80.245082042", + "slot": { + "period": 3672697, + "thread": 5 + } + }, + { + "amount": "80.245082037", + "slot": { + "period": 3932688, + "thread": 15 + } + } + ], + "AU15xKtBq6m5gyoG4uoEGpFLJEu3c9gfwKt3G6UDyen8SUxwsFZ3": [ + { + "amount": "325.533533485", + "slot": { + "period": 117749, + "thread": 15 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 279039, + "thread": 19 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 419535, + "thread": 29 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 605662, + "thread": 19 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 789320, + "thread": 0 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 963204, + "thread": 17 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1052250, + "thread": 7 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1292720, + "thread": 30 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1438224, + "thread": 31 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1549051, + "thread": 7 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1800573, + "thread": 21 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 1911932, + "thread": 14 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2116862, + "thread": 2 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2203204, + "thread": 6 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2331760, + "thread": 10 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2466465, + "thread": 23 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2662153, + "thread": 30 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 2881397, + "thread": 29 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 3085847, + "thread": 22 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 3268388, + "thread": 31 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 3350660, + "thread": 28 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 3564905, + "thread": 14 + } + }, + { + "amount": "325.533533485", + "slot": { + "period": 3622781, + "thread": 15 + } + }, + { + "amount": "325.533533492", + "slot": { + "period": 3828938, + "thread": 27 + } + } + ], + "AU15xZBfNGBRe1iPsLK15Vq7QmWMPkSj6hgneRnVDtNxPK1tJMXu": [ + { + "amount": "392.382154171", + "slot": { + "period": 88789, + "thread": 10 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 245609, + "thread": 3 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 340710, + "thread": 18 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 552397, + "thread": 30 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 803945, + "thread": 5 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 979071, + "thread": 17 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1067648, + "thread": 22 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1239334, + "thread": 28 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1378866, + "thread": 0 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1592210, + "thread": 28 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1792076, + "thread": 29 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 1832353, + "thread": 0 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2101067, + "thread": 9 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2279171, + "thread": 20 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2403547, + "thread": 11 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2607493, + "thread": 5 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2682350, + "thread": 27 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2902234, + "thread": 26 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 2996913, + "thread": 12 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 3245659, + "thread": 30 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 3418953, + "thread": 6 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 3546820, + "thread": 16 + } + }, + { + "amount": "392.382154171", + "slot": { + "period": 3675514, + "thread": 2 + } + }, + { + "amount": "392.382154165", + "slot": { + "period": 3904919, + "thread": 10 + } + } + ], + "AU15xnQnRLQQn7krXxagfZ5K2ywGXcGtrXaPf6Sv4uQhHfysAT74": [ + { + "amount": "135.566356559", + "slot": { + "period": 145782, + "thread": 1 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 226166, + "thread": 26 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 394313, + "thread": 22 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 550788, + "thread": 22 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 739595, + "thread": 24 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 825928, + "thread": 29 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1075102, + "thread": 6 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1218947, + "thread": 31 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1426940, + "thread": 4 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1559516, + "thread": 24 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1765107, + "thread": 22 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 1972041, + "thread": 30 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2007882, + "thread": 15 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2263034, + "thread": 4 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2431046, + "thread": 12 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2609269, + "thread": 10 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2628547, + "thread": 15 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2872072, + "thread": 21 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 2965233, + "thread": 30 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 3136935, + "thread": 24 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 3351009, + "thread": 12 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 3460043, + "thread": 23 + } + }, + { + "amount": "135.566356559", + "slot": { + "period": 3775748, + "thread": 6 + } + }, + { + "amount": "135.566356562", + "slot": { + "period": 3840226, + "thread": 25 + } + } + ], + "AU15yjYnQog31Tc2nGA3VnmNRYogEPCVmnXcntKf9em1pVipqa45": [ + { + "amount": "516.133570302", + "slot": { + "period": 146632, + "thread": 8 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 269495, + "thread": 12 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 464710, + "thread": 0 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 581512, + "thread": 19 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 733929, + "thread": 16 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 888458, + "thread": 21 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1119636, + "thread": 24 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1161481, + "thread": 0 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1464502, + "thread": 31 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1632597, + "thread": 30 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1653772, + "thread": 17 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 1812334, + "thread": 16 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2056839, + "thread": 5 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2219063, + "thread": 16 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2455872, + "thread": 24 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2521925, + "thread": 9 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2713201, + "thread": 5 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 2795747, + "thread": 19 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 3041108, + "thread": 16 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 3270862, + "thread": 20 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 3311620, + "thread": 31 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 3615394, + "thread": 23 + } + }, + { + "amount": "516.133570302", + "slot": { + "period": 3656335, + "thread": 15 + } + }, + { + "amount": "516.133570303", + "slot": { + "period": 3928494, + "thread": 13 + } + } + ], + "AU15yuVR1gh3MdSzp3KqR98FCVfaP6PkfvweBuCey7RFbwifV4PF": [ + { + "amount": "283.119006567", + "slot": { + "period": 156959, + "thread": 7 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 268881, + "thread": 15 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 458052, + "thread": 20 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 649430, + "thread": 5 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 672629, + "thread": 9 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 905199, + "thread": 22 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1069619, + "thread": 14 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1262557, + "thread": 6 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1431548, + "thread": 25 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1493630, + "thread": 24 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1731457, + "thread": 11 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 1814774, + "thread": 14 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2143787, + "thread": 31 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2246665, + "thread": 22 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2418087, + "thread": 0 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2538778, + "thread": 29 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2638027, + "thread": 22 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 2810997, + "thread": 31 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 3016434, + "thread": 2 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 3232329, + "thread": 22 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 3365561, + "thread": 2 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 3464516, + "thread": 5 + } + }, + { + "amount": "283.119006567", + "slot": { + "period": 3759316, + "thread": 26 + } + }, + { + "amount": "283.119006560", + "slot": { + "period": 3849799, + "thread": 19 + } + } + ], + "AU15yzHUaze6orBgwRefGyhPEqVJjiGo7jgiCYGgATAcCsvXpud6": [ + { + "amount": "516.223289127", + "slot": { + "period": 18853, + "thread": 26 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 283867, + "thread": 27 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 429425, + "thread": 2 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 569404, + "thread": 25 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 726038, + "thread": 26 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 972631, + "thread": 11 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1137377, + "thread": 2 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1312646, + "thread": 16 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1472677, + "thread": 23 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1593712, + "thread": 27 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1714676, + "thread": 30 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 1957791, + "thread": 31 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2113013, + "thread": 13 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2226202, + "thread": 14 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2341209, + "thread": 30 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2577034, + "thread": 24 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2769603, + "thread": 22 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2875214, + "thread": 24 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 2984735, + "thread": 13 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 3245570, + "thread": 22 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 3320577, + "thread": 17 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 3465239, + "thread": 6 + } + }, + { + "amount": "516.223289127", + "slot": { + "period": 3768575, + "thread": 29 + } + }, + { + "amount": "516.223289117", + "slot": { + "period": 3859650, + "thread": 20 + } + } + ], + "AU1623PkyF783rouYtxhNkbbQ4GQJJUdLgM99nsHuyzckipGcmR9": [ + { + "amount": "116.783189600", + "slot": { + "period": 45045, + "thread": 6 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 200936, + "thread": 24 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 375784, + "thread": 2 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 646000, + "thread": 9 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 724448, + "thread": 16 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 849734, + "thread": 31 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1020254, + "thread": 17 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1261488, + "thread": 30 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1395129, + "thread": 26 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1485329, + "thread": 11 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1649988, + "thread": 12 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 1892781, + "thread": 26 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2127938, + "thread": 28 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2182889, + "thread": 28 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2364768, + "thread": 25 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2542148, + "thread": 1 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2643370, + "thread": 31 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 2803993, + "thread": 20 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 3009604, + "thread": 20 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 3156716, + "thread": 27 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 3335668, + "thread": 12 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 3478291, + "thread": 7 + } + }, + { + "amount": "116.783189600", + "slot": { + "period": 3759368, + "thread": 25 + } + }, + { + "amount": "116.783189599", + "slot": { + "period": 3894935, + "thread": 3 + } + } + ], + "AU162AqYV4ZCkWAyoqAu7UX7wZFiFSB6KUAGf6ReSzyBdXGckyQQ": [ + { + "amount": "53.263399480", + "slot": { + "period": 31245, + "thread": 18 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 297584, + "thread": 1 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 415789, + "thread": 5 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 604171, + "thread": 19 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 764317, + "thread": 6 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 968151, + "thread": 19 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1053058, + "thread": 17 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1294431, + "thread": 5 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1321807, + "thread": 0 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1498749, + "thread": 16 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1805781, + "thread": 7 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 1836781, + "thread": 22 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2019561, + "thread": 18 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2268207, + "thread": 24 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2305604, + "thread": 23 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2509596, + "thread": 1 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2710778, + "thread": 3 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 2810305, + "thread": 13 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 3118128, + "thread": 9 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 3239760, + "thread": 6 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 3316869, + "thread": 15 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 3452829, + "thread": 0 + } + }, + { + "amount": "53.263399480", + "slot": { + "period": 3714409, + "thread": 19 + } + }, + { + "amount": "53.263399472", + "slot": { + "period": 3792952, + "thread": 5 + } + } + ], + "AU163LpD9HDNKbx4gMtdPgaFJxgtRiNumaDnWJd3JeaMWS4Vz3Xg": [ + { + "amount": "109.246816068", + "slot": { + "period": 34685, + "thread": 25 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 218991, + "thread": 31 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 468908, + "thread": 12 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 534444, + "thread": 3 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 730498, + "thread": 11 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 917191, + "thread": 9 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1024460, + "thread": 17 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1311270, + "thread": 12 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1432295, + "thread": 21 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1597915, + "thread": 18 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1673993, + "thread": 12 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1917163, + "thread": 25 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 1996036, + "thread": 6 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 2211043, + "thread": 8 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 2310009, + "thread": 8 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 2547348, + "thread": 0 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 2694836, + "thread": 28 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 2924706, + "thread": 10 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 3020518, + "thread": 28 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 3132951, + "thread": 25 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 3325231, + "thread": 5 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 3595537, + "thread": 13 + } + }, + { + "amount": "109.246816068", + "slot": { + "period": 3698343, + "thread": 26 + } + }, + { + "amount": "109.246816058", + "slot": { + "period": 3915324, + "thread": 17 + } + } + ], + "AU163edBnwp9yzUXoZZjLMiZSuCbDt3CUp1GPo4QH4w2zhfE7PJf": [ + { + "amount": "373.936732323", + "slot": { + "period": 31393, + "thread": 22 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 201874, + "thread": 12 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 424128, + "thread": 26 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 555726, + "thread": 29 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 711523, + "thread": 29 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 863584, + "thread": 19 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1081866, + "thread": 24 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1279602, + "thread": 29 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1433049, + "thread": 11 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1634303, + "thread": 4 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1802276, + "thread": 12 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 1822010, + "thread": 18 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2064763, + "thread": 5 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2258846, + "thread": 25 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2301308, + "thread": 31 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2530399, + "thread": 12 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2741252, + "thread": 19 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 2802663, + "thread": 8 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 3056034, + "thread": 23 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 3148884, + "thread": 23 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 3426171, + "thread": 30 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 3510608, + "thread": 23 + } + }, + { + "amount": "373.936732323", + "slot": { + "period": 3768929, + "thread": 29 + } + }, + { + "amount": "373.936732326", + "slot": { + "period": 3782969, + "thread": 8 + } + } + ], + "AU16494UZZWg5MVzTSa7B7Qvg6pp4DEEfpaJxFz7zNanTjm1NyeF": [ + { + "amount": "80.409192038", + "slot": { + "period": 109125, + "thread": 17 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 318659, + "thread": 6 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 373366, + "thread": 7 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 542964, + "thread": 30 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 792700, + "thread": 13 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 936794, + "thread": 23 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1067164, + "thread": 27 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1204662, + "thread": 28 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1317880, + "thread": 25 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1594548, + "thread": 21 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1732338, + "thread": 9 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 1815047, + "thread": 13 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2041049, + "thread": 21 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2196221, + "thread": 24 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2335747, + "thread": 15 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2523797, + "thread": 23 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2781808, + "thread": 14 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2816152, + "thread": 30 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 2988310, + "thread": 26 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 3240498, + "thread": 20 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 3360740, + "thread": 3 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 3534894, + "thread": 29 + } + }, + { + "amount": "80.409192038", + "slot": { + "period": 3669035, + "thread": 7 + } + }, + { + "amount": "80.409192031", + "slot": { + "period": 3800831, + "thread": 28 + } + } + ], + "AU164UVcwfg5yDZzQhZ3cR5Yw7XW38Rszv19JyyACVgxC5X1HzBt": [ + { + "amount": "282.009599467", + "slot": { + "period": 118544, + "thread": 21 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 169495, + "thread": 26 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 423394, + "thread": 3 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 553593, + "thread": 9 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 704399, + "thread": 9 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 833267, + "thread": 27 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1091451, + "thread": 12 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1280310, + "thread": 30 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1319758, + "thread": 1 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1646244, + "thread": 10 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1697840, + "thread": 23 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 1962327, + "thread": 29 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2060812, + "thread": 13 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2250694, + "thread": 6 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2333712, + "thread": 13 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2550239, + "thread": 10 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2720246, + "thread": 21 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 2952266, + "thread": 5 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 3050804, + "thread": 0 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 3237617, + "thread": 19 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 3338558, + "thread": 12 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 3599626, + "thread": 2 + } + }, + { + "amount": "282.009599467", + "slot": { + "period": 3737230, + "thread": 31 + } + }, + { + "amount": "282.009599461", + "slot": { + "period": 3817795, + "thread": 19 + } + } + ], + "AU164ijPS248ToCUNeno89u3gjttuUpvSNJDBYrWn51dPrd5u6gS": [ + { + "amount": "321.277248174", + "slot": { + "period": 148622, + "thread": 10 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 233092, + "thread": 31 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 377874, + "thread": 5 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 544836, + "thread": 14 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 743344, + "thread": 26 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 903180, + "thread": 15 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1102456, + "thread": 15 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1308721, + "thread": 9 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1476631, + "thread": 23 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1545138, + "thread": 17 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1686729, + "thread": 27 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 1904879, + "thread": 29 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2107000, + "thread": 6 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2247987, + "thread": 27 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2438824, + "thread": 21 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2537112, + "thread": 17 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2787087, + "thread": 20 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 2877302, + "thread": 21 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 3110165, + "thread": 12 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 3257499, + "thread": 31 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 3298336, + "thread": 15 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 3564653, + "thread": 31 + } + }, + { + "amount": "321.277248174", + "slot": { + "period": 3711791, + "thread": 23 + } + }, + { + "amount": "321.277248173", + "slot": { + "period": 3782098, + "thread": 13 + } + } + ], + "AU164tk8P8icn2kv7sutNQ42ui7cDm279zC9jpdZFrYtrLZQJctM": [ + { + "amount": "133.208431765", + "slot": { + "period": 15320, + "thread": 7 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 275339, + "thread": 30 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 371460, + "thread": 24 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 613571, + "thread": 13 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 732431, + "thread": 24 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 822715, + "thread": 1 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1002665, + "thread": 31 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1173282, + "thread": 1 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1383270, + "thread": 30 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1580302, + "thread": 8 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1692151, + "thread": 14 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 1888334, + "thread": 2 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2095548, + "thread": 4 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2206404, + "thread": 21 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2414136, + "thread": 7 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2526207, + "thread": 3 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2653834, + "thread": 23 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 2863181, + "thread": 0 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 3029331, + "thread": 30 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 3167259, + "thread": 24 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 3425185, + "thread": 3 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 3557583, + "thread": 26 + } + }, + { + "amount": "133.208431765", + "slot": { + "period": 3721119, + "thread": 18 + } + }, + { + "amount": "133.208431755", + "slot": { + "period": 3816960, + "thread": 23 + } + } + ], + "AU165ik1tA6BJmZjWcKPGk8UmjV5Bm71CFyVvzAq2X2qXqKhDumH": [ + { + "amount": "5833.333333333", + "slot": { + "period": 37302, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 213411, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 426636, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 597605, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 786833, + "thread": 26 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 934841, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1062387, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1305514, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1476365, + "thread": 14 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1578994, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1709374, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1859569, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1990855, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2186895, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2424489, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2562421, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2773728, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2823213, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3086741, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3245743, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3419682, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3567016, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3687475, + "thread": 30 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3889438, + "thread": 25 + } + } + ], + "AU165rW5K7BwnZKu1ATQLh7NVzhyZkZgB4rmA6JyskGVXWWKboyW": [ + { + "amount": "562.805047341", + "slot": { + "period": 118897, + "thread": 19 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 227801, + "thread": 30 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 489118, + "thread": 9 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 600186, + "thread": 3 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 665280, + "thread": 25 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 883237, + "thread": 0 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1139681, + "thread": 22 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1165070, + "thread": 5 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1347087, + "thread": 15 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1523399, + "thread": 27 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1783472, + "thread": 7 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 1889856, + "thread": 31 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2065557, + "thread": 26 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2170007, + "thread": 6 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2324522, + "thread": 26 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2587429, + "thread": 20 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2781256, + "thread": 22 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 2926262, + "thread": 10 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 3042424, + "thread": 26 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 3140591, + "thread": 19 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 3425868, + "thread": 10 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 3458818, + "thread": 14 + } + }, + { + "amount": "562.805047341", + "slot": { + "period": 3650676, + "thread": 20 + } + }, + { + "amount": "562.805047331", + "slot": { + "period": 3844130, + "thread": 13 + } + } + ], + "AU166QUzEmeTzX7N5ujeCF8pa2DQVKs2khHPt7BJn29adFRXg5H5": [ + { + "amount": "234.192602484", + "slot": { + "period": 79276, + "thread": 19 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 245032, + "thread": 15 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 365445, + "thread": 9 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 644361, + "thread": 7 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 774786, + "thread": 30 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 979896, + "thread": 0 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1098287, + "thread": 0 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1227411, + "thread": 12 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1339894, + "thread": 3 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1641251, + "thread": 9 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1771623, + "thread": 18 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 1819456, + "thread": 20 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2113324, + "thread": 16 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2164406, + "thread": 17 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2433666, + "thread": 26 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2491249, + "thread": 18 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2657910, + "thread": 28 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 2843811, + "thread": 0 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 3010313, + "thread": 10 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 3151587, + "thread": 14 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 3365642, + "thread": 21 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 3532060, + "thread": 7 + } + }, + { + "amount": "234.192602484", + "slot": { + "period": 3630733, + "thread": 28 + } + }, + { + "amount": "234.192602496", + "slot": { + "period": 3863239, + "thread": 16 + } + } + ], + "AU167HnVjUwJCEkW5ZX27NHjBTLf8jMbqS77f5UxgCrwJ77MQ1bY": [ + { + "amount": "452.108866438", + "slot": { + "period": 67862, + "thread": 28 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 180697, + "thread": 5 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 353723, + "thread": 16 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 517130, + "thread": 28 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 784587, + "thread": 3 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 916910, + "thread": 4 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1076055, + "thread": 20 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1283997, + "thread": 18 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1394933, + "thread": 25 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1619731, + "thread": 9 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1696384, + "thread": 2 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 1925944, + "thread": 21 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2131300, + "thread": 13 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2236192, + "thread": 16 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2389302, + "thread": 20 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2579751, + "thread": 27 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2730137, + "thread": 18 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2940346, + "thread": 29 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 2982975, + "thread": 15 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 3200632, + "thread": 1 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 3423853, + "thread": 5 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 3557059, + "thread": 15 + } + }, + { + "amount": "452.108866438", + "slot": { + "period": 3669201, + "thread": 10 + } + }, + { + "amount": "452.108866430", + "slot": { + "period": 3855671, + "thread": 1 + } + } + ], + "AU167n4jAQmzsgc7jsSWaRyrSAffYi6zUv4Dvf2rmZUZRaQ7BhTk": [ + { + "amount": "511.682454530", + "slot": { + "period": 142233, + "thread": 10 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 248997, + "thread": 11 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 405286, + "thread": 19 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 587169, + "thread": 24 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 699544, + "thread": 7 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 896816, + "thread": 4 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1075966, + "thread": 20 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1262502, + "thread": 5 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1344232, + "thread": 21 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1536015, + "thread": 10 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1772797, + "thread": 7 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 1836717, + "thread": 31 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2100535, + "thread": 16 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2177534, + "thread": 19 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2406725, + "thread": 11 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2507580, + "thread": 30 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2641419, + "thread": 0 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 2873375, + "thread": 15 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 3020676, + "thread": 3 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 3212542, + "thread": 30 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 3414285, + "thread": 5 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 3543360, + "thread": 10 + } + }, + { + "amount": "511.682454530", + "slot": { + "period": 3714517, + "thread": 7 + } + }, + { + "amount": "511.682454535", + "slot": { + "period": 3898580, + "thread": 1 + } + } + ], + "AU167voU1yYRvWq7Pn19Te2qPmp1gsxRCiYHgZ3xRBYNutTERtCn": [ + { + "amount": "140.106208208", + "slot": { + "period": 32884, + "thread": 7 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 195979, + "thread": 15 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 324967, + "thread": 3 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 612185, + "thread": 5 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 711839, + "thread": 10 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 922230, + "thread": 12 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1142170, + "thread": 18 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1172195, + "thread": 9 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1403308, + "thread": 29 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1528730, + "thread": 11 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1777625, + "thread": 14 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 1818312, + "thread": 8 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2140169, + "thread": 25 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2209912, + "thread": 8 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2451344, + "thread": 3 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2561160, + "thread": 18 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2673397, + "thread": 18 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 2804759, + "thread": 7 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 3071189, + "thread": 19 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 3282081, + "thread": 23 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 3448947, + "thread": 16 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 3540985, + "thread": 9 + } + }, + { + "amount": "140.106208208", + "slot": { + "period": 3707841, + "thread": 19 + } + }, + { + "amount": "140.106208197", + "slot": { + "period": 3827360, + "thread": 9 + } + } + ], + "AU168ZpDJueVH2ozp65nM4CzkRvJJwV7J2isf6NsXotYkxpykd7L": [ + { + "amount": "277.436214876", + "slot": { + "period": 118517, + "thread": 7 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 289156, + "thread": 7 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 451232, + "thread": 27 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 567425, + "thread": 15 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 785065, + "thread": 5 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 882631, + "thread": 27 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1059972, + "thread": 4 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1272349, + "thread": 12 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1363395, + "thread": 15 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1524243, + "thread": 14 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1721001, + "thread": 22 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 1848871, + "thread": 5 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2009574, + "thread": 12 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2150981, + "thread": 26 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2449039, + "thread": 26 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2556784, + "thread": 11 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2763740, + "thread": 4 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2801398, + "thread": 13 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 2982326, + "thread": 14 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 3259825, + "thread": 15 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 3383038, + "thread": 23 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 3471573, + "thread": 25 + } + }, + { + "amount": "277.436214876", + "slot": { + "period": 3642741, + "thread": 24 + } + }, + { + "amount": "277.436214873", + "slot": { + "period": 3944650, + "thread": 24 + } + } + ], + "AU169BG8dwuicskw4D97CzPGGzHyPEWq9YAJqxUQPajE93rgZX5x": [ + { + "amount": "369.762929496", + "slot": { + "period": 47388, + "thread": 18 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 197632, + "thread": 7 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 486697, + "thread": 25 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 645970, + "thread": 4 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 777504, + "thread": 21 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 940717, + "thread": 25 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1057732, + "thread": 26 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1229915, + "thread": 16 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1465016, + "thread": 12 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1522542, + "thread": 29 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1655080, + "thread": 19 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 1878923, + "thread": 0 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2131245, + "thread": 1 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2251413, + "thread": 16 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2452222, + "thread": 11 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2573720, + "thread": 9 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2692142, + "thread": 19 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 2862489, + "thread": 2 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 3055266, + "thread": 15 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 3145201, + "thread": 19 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 3415888, + "thread": 11 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 3598225, + "thread": 19 + } + }, + { + "amount": "369.762929496", + "slot": { + "period": 3769725, + "thread": 9 + } + }, + { + "amount": "369.762929487", + "slot": { + "period": 3809511, + "thread": 26 + } + } + ], + "AU169E1WjeJq6kFkopwcyGfB6zjCWAJX35EnerWgrBhJprP7qMQ4": [ + { + "amount": "339.140755976", + "slot": { + "period": 102770, + "thread": 10 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 218386, + "thread": 29 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 387167, + "thread": 14 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 637388, + "thread": 10 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 819899, + "thread": 18 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 935658, + "thread": 9 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 997145, + "thread": 21 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 1235433, + "thread": 5 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 1447005, + "thread": 27 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 1518234, + "thread": 4 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 1664060, + "thread": 4 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 1870439, + "thread": 18 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2088856, + "thread": 19 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2209722, + "thread": 4 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2348518, + "thread": 0 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2600134, + "thread": 18 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2716251, + "thread": 17 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2804012, + "thread": 18 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 2965805, + "thread": 14 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 3206931, + "thread": 17 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 3301801, + "thread": 18 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 3586991, + "thread": 0 + } + }, + { + "amount": "339.140755976", + "slot": { + "period": 3638813, + "thread": 30 + } + }, + { + "amount": "339.140755977", + "slot": { + "period": 3874859, + "thread": 16 + } + } + ], + "AU169NSZVXn7RcJoZ2c93A6MC87LPtW4GYsVernXK3MUFXWagBgp": [ + { + "amount": "258.844997781", + "slot": { + "period": 86299, + "thread": 22 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 254159, + "thread": 2 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 400769, + "thread": 9 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 619932, + "thread": 23 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 688145, + "thread": 9 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 893258, + "thread": 22 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1011863, + "thread": 10 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1222492, + "thread": 24 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1371252, + "thread": 20 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1632421, + "thread": 26 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1659739, + "thread": 10 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1936073, + "thread": 19 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 1984076, + "thread": 3 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 2282747, + "thread": 10 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 2337111, + "thread": 25 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 2515063, + "thread": 6 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 2711121, + "thread": 2 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 2814166, + "thread": 0 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 3065102, + "thread": 10 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 3141435, + "thread": 14 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 3358272, + "thread": 28 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 3544252, + "thread": 31 + } + }, + { + "amount": "258.844997781", + "slot": { + "period": 3682057, + "thread": 3 + } + }, + { + "amount": "258.844997788", + "slot": { + "period": 3945266, + "thread": 2 + } + } + ], + "AU169kupJR2MaRTmLJT48rseRLWzm4vf7mL9hg39LZYCmNvQL4hM": [ + { + "amount": "84.647445854", + "slot": { + "period": 94935, + "thread": 17 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 195385, + "thread": 17 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 446391, + "thread": 4 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 590473, + "thread": 18 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 753321, + "thread": 28 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 946170, + "thread": 27 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1012991, + "thread": 28 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1305029, + "thread": 28 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1436890, + "thread": 29 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1582241, + "thread": 31 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1772512, + "thread": 8 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 1841978, + "thread": 23 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2007191, + "thread": 7 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2226863, + "thread": 3 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2437348, + "thread": 7 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2486309, + "thread": 19 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2683542, + "thread": 22 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2808976, + "thread": 14 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 2989280, + "thread": 14 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 3262540, + "thread": 7 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 3307990, + "thread": 23 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 3543875, + "thread": 29 + } + }, + { + "amount": "84.647445854", + "slot": { + "period": 3649577, + "thread": 12 + } + }, + { + "amount": "84.647445850", + "slot": { + "period": 3945757, + "thread": 30 + } + } + ], + "AU16BiPPdR7w8U5XSaCXCiACKW2U1ZzqBhJY5iWBbdQf5jiETfSM": [ + { + "amount": "76.990897552", + "slot": { + "period": 63388, + "thread": 3 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 280345, + "thread": 19 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 371911, + "thread": 27 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 619340, + "thread": 24 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 718612, + "thread": 21 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 838433, + "thread": 19 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1054085, + "thread": 7 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1309017, + "thread": 1 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1338419, + "thread": 15 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1484399, + "thread": 16 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1757372, + "thread": 1 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 1937960, + "thread": 9 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2005603, + "thread": 23 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2255783, + "thread": 20 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2318997, + "thread": 24 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2618136, + "thread": 9 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2721148, + "thread": 21 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 2863837, + "thread": 9 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 3022030, + "thread": 28 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 3158310, + "thread": 22 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 3383062, + "thread": 14 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 3470207, + "thread": 28 + } + }, + { + "amount": "76.990897552", + "slot": { + "period": 3743027, + "thread": 18 + } + }, + { + "amount": "76.990897560", + "slot": { + "period": 3797372, + "thread": 1 + } + } + ], + "AU16Byb5P18z8Rq5ookDAK487QduT1YZhWqvrRJJBbZRji6exhdA": [ + { + "amount": "184.479568360", + "slot": { + "period": 135170, + "thread": 29 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 236482, + "thread": 4 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 402859, + "thread": 5 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 589094, + "thread": 24 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 806119, + "thread": 9 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 875947, + "thread": 19 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1130182, + "thread": 4 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1232280, + "thread": 14 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1382838, + "thread": 15 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1504707, + "thread": 29 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1781105, + "thread": 29 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 1813005, + "thread": 7 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2089274, + "thread": 26 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2248589, + "thread": 12 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2423291, + "thread": 9 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2509255, + "thread": 17 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2757536, + "thread": 8 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2826007, + "thread": 30 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 2997515, + "thread": 3 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 3172316, + "thread": 17 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 3420846, + "thread": 30 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 3587206, + "thread": 28 + } + }, + { + "amount": "184.479568360", + "slot": { + "period": 3641279, + "thread": 17 + } + }, + { + "amount": "184.479568367", + "slot": { + "period": 3808380, + "thread": 31 + } + } + ], + "AU16C6zVoBZLB9fpWWHP3AyPLDrpd95js81Z1CqCTVeHKxST8UrP": [ + { + "amount": "102.080931663", + "slot": { + "period": 148781, + "thread": 9 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 248064, + "thread": 6 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 455730, + "thread": 22 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 516230, + "thread": 11 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 745617, + "thread": 30 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 844508, + "thread": 16 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 991692, + "thread": 11 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1289939, + "thread": 1 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1408237, + "thread": 8 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1598666, + "thread": 3 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1683981, + "thread": 30 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1833957, + "thread": 18 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 1980733, + "thread": 22 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 2197991, + "thread": 0 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 2364207, + "thread": 26 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 2510189, + "thread": 8 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 2731503, + "thread": 12 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 2931916, + "thread": 14 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 3053442, + "thread": 0 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 3248863, + "thread": 30 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 3357995, + "thread": 16 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 3582180, + "thread": 24 + } + }, + { + "amount": "102.080931663", + "slot": { + "period": 3748099, + "thread": 15 + } + }, + { + "amount": "102.080931656", + "slot": { + "period": 3891048, + "thread": 26 + } + } + ], + "AU16CG7ZMCziJ1c4rY6tWT1t4tdJ3WrsmXpRJiEKpbcqJvb3LK1V": [ + { + "amount": "135.480115942", + "slot": { + "period": 98411, + "thread": 10 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 261297, + "thread": 3 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 361511, + "thread": 11 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 593535, + "thread": 7 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 668189, + "thread": 0 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 836257, + "thread": 22 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1050477, + "thread": 12 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1235878, + "thread": 23 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1387991, + "thread": 0 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1603846, + "thread": 28 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1793570, + "thread": 11 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 1955055, + "thread": 19 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2126515, + "thread": 18 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2231512, + "thread": 29 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2450610, + "thread": 20 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2496019, + "thread": 0 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2632019, + "thread": 24 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2866688, + "thread": 26 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 2998513, + "thread": 10 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 3279427, + "thread": 20 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 3371277, + "thread": 26 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 3530003, + "thread": 27 + } + }, + { + "amount": "135.480115942", + "slot": { + "period": 3753269, + "thread": 0 + } + }, + { + "amount": "135.480115937", + "slot": { + "period": 3847861, + "thread": 28 + } + } + ], + "AU16CyhxekETFtWDCPaGfhQ9jPqi1kJPqUtrJRfNVzR9Ec8KuXbd": [ + { + "amount": "112.077822039", + "slot": { + "period": 75967, + "thread": 28 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 294587, + "thread": 29 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 374012, + "thread": 0 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 506877, + "thread": 31 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 747246, + "thread": 3 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 870116, + "thread": 28 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 998200, + "thread": 31 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 1275342, + "thread": 10 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 1424859, + "thread": 21 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 1577295, + "thread": 1 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 1750806, + "thread": 18 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 1971753, + "thread": 2 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2008782, + "thread": 22 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2247115, + "thread": 19 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2372828, + "thread": 26 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2575972, + "thread": 26 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2757838, + "thread": 5 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 2891431, + "thread": 4 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 3055427, + "thread": 25 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 3133397, + "thread": 22 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 3411266, + "thread": 10 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 3482476, + "thread": 5 + } + }, + { + "amount": "112.077822039", + "slot": { + "period": 3645420, + "thread": 7 + } + }, + { + "amount": "112.077822030", + "slot": { + "period": 3868641, + "thread": 24 + } + } + ], + "AU16DjbzVQjznjewyyikge8k3249LA8HcY72qqQuHZ2yx89LA1fB": [ + { + "amount": "495.208084064", + "slot": { + "period": 121487, + "thread": 27 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 274327, + "thread": 19 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 458180, + "thread": 20 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 516172, + "thread": 23 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 795827, + "thread": 16 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 973396, + "thread": 29 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1103389, + "thread": 23 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1244284, + "thread": 18 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1380424, + "thread": 12 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1505729, + "thread": 13 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1788532, + "thread": 4 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 1960544, + "thread": 20 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2045767, + "thread": 6 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2240415, + "thread": 27 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2301814, + "thread": 20 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2527275, + "thread": 16 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2657539, + "thread": 25 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 2821522, + "thread": 28 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 3120531, + "thread": 4 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 3247930, + "thread": 9 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 3307733, + "thread": 18 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 3487680, + "thread": 8 + } + }, + { + "amount": "495.208084064", + "slot": { + "period": 3618129, + "thread": 12 + } + }, + { + "amount": "495.208084070", + "slot": { + "period": 3895192, + "thread": 13 + } + } + ], + "AU16HJndDv2LaU2YFRmfxst3Z8VoaXaBSXKXLnxjMbu9sQpgAkbx": [ + { + "amount": "159.718338104", + "slot": { + "period": 143863, + "thread": 8 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 201043, + "thread": 4 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 477090, + "thread": 22 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 609472, + "thread": 25 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 687928, + "thread": 27 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 924848, + "thread": 21 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1055760, + "thread": 19 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1199066, + "thread": 26 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1435439, + "thread": 8 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1612017, + "thread": 31 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1739619, + "thread": 25 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 1946536, + "thread": 14 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2097089, + "thread": 23 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2242590, + "thread": 7 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2318713, + "thread": 16 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2534868, + "thread": 1 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2768936, + "thread": 1 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 2899530, + "thread": 27 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 3031736, + "thread": 19 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 3187773, + "thread": 15 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 3395745, + "thread": 14 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 3594851, + "thread": 3 + } + }, + { + "amount": "159.718338104", + "slot": { + "period": 3708192, + "thread": 12 + } + }, + { + "amount": "159.718338094", + "slot": { + "period": 3804422, + "thread": 30 + } + } + ], + "AU16HkoiC9GgDa4VugSaP8hccQdfHTAaAomEf1mTgQJQkvn5WDyD": [ + { + "amount": "104.260092058", + "slot": { + "period": 127351, + "thread": 4 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 276155, + "thread": 24 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 335023, + "thread": 28 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 586516, + "thread": 13 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 742325, + "thread": 18 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 893193, + "thread": 4 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1101057, + "thread": 27 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1230844, + "thread": 26 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1340172, + "thread": 30 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1592439, + "thread": 9 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1655838, + "thread": 5 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 1843151, + "thread": 16 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2136297, + "thread": 17 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2272624, + "thread": 4 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2410677, + "thread": 1 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2513713, + "thread": 26 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2709529, + "thread": 28 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 2798747, + "thread": 15 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3093103, + "thread": 0 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3251447, + "thread": 0 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3395031, + "thread": 5 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3573252, + "thread": 31 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3658945, + "thread": 2 + } + }, + { + "amount": "104.260092058", + "slot": { + "period": 3894422, + "thread": 24 + } + } + ], + "AU16JBj64EJccGzVz4qsE59cMCzEubZb4wDR4S1XthuGE4QmDgc3": [ + { + "amount": "162.734208568", + "slot": { + "period": 109068, + "thread": 0 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 280506, + "thread": 8 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 374183, + "thread": 25 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 600242, + "thread": 12 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 757244, + "thread": 11 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 921862, + "thread": 27 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 983831, + "thread": 31 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 1167476, + "thread": 9 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 1376320, + "thread": 27 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 1565741, + "thread": 9 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 1689315, + "thread": 12 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 1857727, + "thread": 27 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2123492, + "thread": 11 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2264555, + "thread": 9 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2303943, + "thread": 13 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2579279, + "thread": 21 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2786204, + "thread": 11 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 2866899, + "thread": 12 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 3078728, + "thread": 10 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 3179388, + "thread": 5 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 3390354, + "thread": 28 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 3593437, + "thread": 25 + } + }, + { + "amount": "162.734208568", + "slot": { + "period": 3770223, + "thread": 10 + } + }, + { + "amount": "162.734208571", + "slot": { + "period": 3822941, + "thread": 21 + } + } + ], + "AU16JCKtx9hjLYG9jVPiQmwRJMsbrd4akXFiRcB2oxJGMRA2dqKd": [ + { + "amount": "274.383599004", + "slot": { + "period": 76360, + "thread": 6 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 291872, + "thread": 7 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 434859, + "thread": 31 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 584204, + "thread": 8 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 700978, + "thread": 16 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 974743, + "thread": 16 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1072540, + "thread": 8 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1173933, + "thread": 11 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1351312, + "thread": 14 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1518792, + "thread": 31 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1668781, + "thread": 19 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 1846143, + "thread": 14 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2126380, + "thread": 16 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2253637, + "thread": 18 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2451296, + "thread": 26 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2623925, + "thread": 25 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2783256, + "thread": 17 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 2884733, + "thread": 0 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 3052291, + "thread": 24 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 3276060, + "thread": 5 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 3420792, + "thread": 4 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 3576305, + "thread": 14 + } + }, + { + "amount": "274.383599004", + "slot": { + "period": 3622275, + "thread": 31 + } + }, + { + "amount": "274.383599015", + "slot": { + "period": 3842130, + "thread": 17 + } + } + ], + "AU16JExFs3xNpJonkpEY9bD12HWaZU43YXF2Keh6RtNeBjFXKyyL": [ + { + "amount": "373.883741213", + "slot": { + "period": 17236, + "thread": 1 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 278039, + "thread": 21 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 407286, + "thread": 14 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 504408, + "thread": 10 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 748636, + "thread": 21 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 971821, + "thread": 13 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1063363, + "thread": 12 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1152328, + "thread": 4 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1363615, + "thread": 27 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1578356, + "thread": 12 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1806231, + "thread": 14 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 1879147, + "thread": 7 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2108036, + "thread": 7 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2190215, + "thread": 30 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2428637, + "thread": 10 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2477775, + "thread": 11 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2778600, + "thread": 15 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 2932318, + "thread": 28 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 3108897, + "thread": 15 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 3195725, + "thread": 7 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 3329080, + "thread": 6 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 3569351, + "thread": 17 + } + }, + { + "amount": "373.883741213", + "slot": { + "period": 3725538, + "thread": 21 + } + }, + { + "amount": "373.883741214", + "slot": { + "period": 3802298, + "thread": 0 + } + } + ], + "AU16JHQZ7A4FAVrWtFLBw8mRi3MacDxEYTcKRF7VbHK8EJmPkVmv": [ + { + "amount": "489.126656306", + "slot": { + "period": 73989, + "thread": 21 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 208928, + "thread": 7 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 475666, + "thread": 21 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 493244, + "thread": 31 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 661122, + "thread": 30 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 883293, + "thread": 31 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1114480, + "thread": 6 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1300864, + "thread": 22 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1351045, + "thread": 3 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1502157, + "thread": 18 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1793768, + "thread": 11 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 1819454, + "thread": 22 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2074580, + "thread": 4 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2163972, + "thread": 14 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2379969, + "thread": 0 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2480315, + "thread": 0 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2754133, + "thread": 17 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2793895, + "thread": 18 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 2983717, + "thread": 24 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 3246534, + "thread": 24 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 3373364, + "thread": 9 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 3585667, + "thread": 4 + } + }, + { + "amount": "489.126656306", + "slot": { + "period": 3753799, + "thread": 15 + } + }, + { + "amount": "489.126656311", + "slot": { + "period": 3788317, + "thread": 23 + } + } + ], + "AU16JSTcXJvEwpEihhpeGneWbsCUC2XSeNmhn6N6BMxpzzQ5Mn9c": [ + { + "amount": "553.863414958", + "slot": { + "period": 141864, + "thread": 26 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 178623, + "thread": 22 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 421363, + "thread": 1 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 511424, + "thread": 20 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 819817, + "thread": 15 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 896147, + "thread": 29 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1069893, + "thread": 25 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1285101, + "thread": 30 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1354024, + "thread": 14 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1557991, + "thread": 5 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1677990, + "thread": 6 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 1919184, + "thread": 9 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2011377, + "thread": 18 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2231790, + "thread": 30 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2347753, + "thread": 17 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2464461, + "thread": 20 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2741761, + "thread": 19 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 2886818, + "thread": 4 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 3105866, + "thread": 16 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 3207538, + "thread": 0 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 3290683, + "thread": 18 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 3522469, + "thread": 29 + } + }, + { + "amount": "553.863414958", + "slot": { + "period": 3662894, + "thread": 14 + } + }, + { + "amount": "553.863414969", + "slot": { + "period": 3882812, + "thread": 15 + } + } + ], + "AU16JhadPo1nv5Cej4UeSP3PjL1ghaTydHku3bLPhMst8zEGmeCy": [ + { + "amount": "97.978555115", + "slot": { + "period": 79126, + "thread": 14 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 250325, + "thread": 13 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 439443, + "thread": 11 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 566187, + "thread": 18 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 760252, + "thread": 22 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 933362, + "thread": 2 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1073963, + "thread": 21 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1262318, + "thread": 29 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1456618, + "thread": 14 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1605408, + "thread": 17 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1670383, + "thread": 0 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 1930890, + "thread": 12 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2080932, + "thread": 24 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2273991, + "thread": 28 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2365359, + "thread": 28 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2557190, + "thread": 18 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2663589, + "thread": 31 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 2916746, + "thread": 12 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 3064709, + "thread": 25 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 3183206, + "thread": 18 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 3445142, + "thread": 16 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 3479515, + "thread": 30 + } + }, + { + "amount": "97.978555115", + "slot": { + "period": 3711240, + "thread": 2 + } + }, + { + "amount": "97.978555123", + "slot": { + "period": 3803933, + "thread": 3 + } + } + ], + "AU16KqZohEAN6F9snPRx3236tE7Af3LCtZ5fnfYFDK2EQzCPR6i7": [ + { + "amount": "384.112561516", + "slot": { + "period": 95892, + "thread": 0 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 200510, + "thread": 26 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 399516, + "thread": 5 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 640011, + "thread": 21 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 800865, + "thread": 31 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 914837, + "thread": 16 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1016182, + "thread": 11 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1280321, + "thread": 7 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1394868, + "thread": 12 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1549634, + "thread": 5 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1700036, + "thread": 15 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 1913093, + "thread": 3 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2142906, + "thread": 28 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2195962, + "thread": 23 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2335583, + "thread": 3 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2600495, + "thread": 18 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2717359, + "thread": 11 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 2847914, + "thread": 18 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 3046134, + "thread": 2 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 3148926, + "thread": 10 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 3310831, + "thread": 29 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 3526417, + "thread": 15 + } + }, + { + "amount": "384.112561516", + "slot": { + "period": 3751939, + "thread": 31 + } + }, + { + "amount": "384.112561518", + "slot": { + "period": 3834940, + "thread": 25 + } + } + ], + "AU16LGt44ESCDxwyLccDTTG8NcNFozACH3dhfKhv6rqdEBqW3uvn": [ + { + "amount": "537.204560786", + "slot": { + "period": 28766, + "thread": 27 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 273308, + "thread": 10 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 422798, + "thread": 5 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 633968, + "thread": 20 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 688699, + "thread": 28 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 924895, + "thread": 2 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1102869, + "thread": 22 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1294071, + "thread": 14 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1363740, + "thread": 16 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1553720, + "thread": 28 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1656371, + "thread": 26 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 1853608, + "thread": 28 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2033958, + "thread": 12 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2247398, + "thread": 28 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2391038, + "thread": 11 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2524264, + "thread": 14 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2719016, + "thread": 13 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 2943107, + "thread": 17 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3047001, + "thread": 8 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3249304, + "thread": 15 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3338409, + "thread": 13 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3482465, + "thread": 30 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3772783, + "thread": 18 + } + }, + { + "amount": "537.204560786", + "slot": { + "period": 3784782, + "thread": 3 + } + } + ], + "AU16LgtinKc5dhJpU7p481CMaesPwRjxMXryGyv8uhnoEZDH1mPY": [ + { + "amount": "232.740084474", + "slot": { + "period": 104845, + "thread": 2 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 206519, + "thread": 30 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 433246, + "thread": 6 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 495208, + "thread": 14 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 754770, + "thread": 3 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 973918, + "thread": 9 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1107574, + "thread": 22 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1192536, + "thread": 24 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1465029, + "thread": 2 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1642215, + "thread": 23 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1647836, + "thread": 14 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 1813329, + "thread": 30 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2068965, + "thread": 18 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2243318, + "thread": 29 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2332978, + "thread": 2 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2490930, + "thread": 10 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2679262, + "thread": 30 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 2945630, + "thread": 30 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 3000976, + "thread": 21 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 3267340, + "thread": 11 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 3399896, + "thread": 9 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 3571849, + "thread": 3 + } + }, + { + "amount": "232.740084474", + "slot": { + "period": 3728908, + "thread": 13 + } + }, + { + "amount": "232.740084485", + "slot": { + "period": 3812899, + "thread": 8 + } + } + ], + "AU16LjX3MjxGXV1BkDQix6KrdmyUdVAwAesNmfobbvxyKPniRfzz": [ + { + "amount": "251.237799366", + "slot": { + "period": 50527, + "thread": 27 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 221827, + "thread": 4 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 345539, + "thread": 11 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 572281, + "thread": 1 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 737394, + "thread": 1 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 901432, + "thread": 7 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1119493, + "thread": 1 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1174131, + "thread": 11 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1465890, + "thread": 18 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1488079, + "thread": 3 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1781065, + "thread": 21 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 1829124, + "thread": 1 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2001138, + "thread": 29 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2236423, + "thread": 20 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2372005, + "thread": 31 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2479110, + "thread": 27 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2704592, + "thread": 20 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 2878509, + "thread": 4 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 3022080, + "thread": 22 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 3179684, + "thread": 2 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 3422641, + "thread": 23 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 3599335, + "thread": 21 + } + }, + { + "amount": "251.237799366", + "slot": { + "period": 3708700, + "thread": 14 + } + }, + { + "amount": "251.237799373", + "slot": { + "period": 3938199, + "thread": 25 + } + } + ], + "AU16M4hP2bt1Ln6X7DSRG465givrqq8BJsY263aHkPMbx7pQcxXB": [ + { + "amount": "341.043910627", + "slot": { + "period": 103608, + "thread": 17 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 266758, + "thread": 16 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 429807, + "thread": 23 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 593575, + "thread": 6 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 787562, + "thread": 17 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 978964, + "thread": 24 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1030796, + "thread": 3 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1153025, + "thread": 31 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1326163, + "thread": 20 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1550841, + "thread": 17 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1782682, + "thread": 0 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 1812006, + "thread": 14 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2044877, + "thread": 28 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2149096, + "thread": 18 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2330950, + "thread": 4 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2546529, + "thread": 3 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2708741, + "thread": 3 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 2924431, + "thread": 15 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 3103940, + "thread": 1 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 3221788, + "thread": 27 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 3366958, + "thread": 31 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 3567728, + "thread": 7 + } + }, + { + "amount": "341.043910627", + "slot": { + "period": 3722786, + "thread": 29 + } + }, + { + "amount": "341.043910636", + "slot": { + "period": 3854725, + "thread": 19 + } + } + ], + "AU16NZp5TCzktS3djsZov6BnwixQfSjyfTktkKxAa5jd7tscMpv2": [ + { + "amount": "131.765532603", + "slot": { + "period": 103713, + "thread": 21 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 271554, + "thread": 29 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 438589, + "thread": 10 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 521731, + "thread": 30 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 702973, + "thread": 1 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 929164, + "thread": 24 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1045911, + "thread": 21 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1314244, + "thread": 14 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1408228, + "thread": 25 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1626246, + "thread": 19 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1672749, + "thread": 11 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 1826235, + "thread": 21 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2114808, + "thread": 14 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2191912, + "thread": 24 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2335024, + "thread": 3 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2608038, + "thread": 30 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2708890, + "thread": 14 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 2873064, + "thread": 31 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 3114267, + "thread": 8 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 3217056, + "thread": 4 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 3395363, + "thread": 8 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 3611567, + "thread": 6 + } + }, + { + "amount": "131.765532603", + "slot": { + "period": 3657884, + "thread": 28 + } + }, + { + "amount": "131.765532593", + "slot": { + "period": 3857942, + "thread": 16 + } + } + ], + "AU16NeAJDM94cRLRrFrY22TnDqDCZAYMtcdd5boWV1DHH2R1czXQ": [ + { + "amount": "386.309078778", + "slot": { + "period": 45783, + "thread": 19 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 319549, + "thread": 30 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 445469, + "thread": 21 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 558289, + "thread": 27 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 777462, + "thread": 9 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 874843, + "thread": 20 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1118066, + "thread": 11 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1161962, + "thread": 14 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1473445, + "thread": 14 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1612080, + "thread": 24 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1800631, + "thread": 12 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1839934, + "thread": 6 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 1979852, + "thread": 4 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 2253682, + "thread": 19 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 2347902, + "thread": 30 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 2516728, + "thread": 19 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 2654394, + "thread": 2 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 2927597, + "thread": 2 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 3069827, + "thread": 29 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 3229011, + "thread": 2 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 3364923, + "thread": 25 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 3487745, + "thread": 17 + } + }, + { + "amount": "386.309078778", + "slot": { + "period": 3622811, + "thread": 3 + } + }, + { + "amount": "386.309078781", + "slot": { + "period": 3796753, + "thread": 13 + } + } + ], + "AU16PTe7js1MiDftcL3m9m4xepDgV8o9Pnx4AcYj25cQLtY5bsDZ": [ + { + "amount": "217.471239539", + "slot": { + "period": 90173, + "thread": 16 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 303423, + "thread": 6 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 399067, + "thread": 6 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 590500, + "thread": 7 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 723810, + "thread": 17 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 942402, + "thread": 29 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1070878, + "thread": 5 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1189937, + "thread": 17 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1337495, + "thread": 4 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1576155, + "thread": 4 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1770078, + "thread": 1 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 1903626, + "thread": 15 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2114994, + "thread": 24 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2263354, + "thread": 18 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2361361, + "thread": 11 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2541719, + "thread": 25 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2695628, + "thread": 2 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 2938668, + "thread": 13 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 3104672, + "thread": 31 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 3165094, + "thread": 2 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 3446638, + "thread": 22 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 3587640, + "thread": 23 + } + }, + { + "amount": "217.471239539", + "slot": { + "period": 3668833, + "thread": 5 + } + }, + { + "amount": "217.471239530", + "slot": { + "period": 3789507, + "thread": 27 + } + } + ], + "AU16PW3Pj3jQRN1NLt4NR7URBa8srX5jo4kV3hrW1hvDrjcAHrpw": [ + { + "amount": "210.580717126", + "slot": { + "period": 44866, + "thread": 22 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 178093, + "thread": 15 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 488192, + "thread": 17 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 511098, + "thread": 8 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 803647, + "thread": 15 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 924775, + "thread": 15 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1115192, + "thread": 1 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1158020, + "thread": 26 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1330621, + "thread": 13 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1519398, + "thread": 9 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1681892, + "thread": 25 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 1889448, + "thread": 1 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2058342, + "thread": 17 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2184024, + "thread": 9 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2339667, + "thread": 5 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2587794, + "thread": 17 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2700620, + "thread": 6 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 2903583, + "thread": 13 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 3104917, + "thread": 23 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 3172850, + "thread": 24 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 3413512, + "thread": 0 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 3597180, + "thread": 14 + } + }, + { + "amount": "210.580717126", + "slot": { + "period": 3715928, + "thread": 0 + } + }, + { + "amount": "210.580717125", + "slot": { + "period": 3909967, + "thread": 14 + } + } + ], + "AU16PWzkuyn2hK5AgsavDeq1NakJQLFsqM1QucowUGA9nztBZ6ic": [ + { + "amount": "178.763221101", + "slot": { + "period": 119220, + "thread": 15 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 319397, + "thread": 24 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 422100, + "thread": 25 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 523504, + "thread": 5 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 692064, + "thread": 29 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 857146, + "thread": 11 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1117821, + "thread": 12 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1168817, + "thread": 25 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1415483, + "thread": 16 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1530816, + "thread": 22 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1790068, + "thread": 14 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 1925781, + "thread": 27 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2097905, + "thread": 30 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2147576, + "thread": 16 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2446213, + "thread": 3 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2518793, + "thread": 12 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2736617, + "thread": 28 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 2797218, + "thread": 1 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 3092211, + "thread": 13 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 3227088, + "thread": 17 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 3376639, + "thread": 30 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 3551816, + "thread": 31 + } + }, + { + "amount": "178.763221101", + "slot": { + "period": 3766951, + "thread": 25 + } + }, + { + "amount": "178.763221108", + "slot": { + "period": 3840450, + "thread": 24 + } + } + ], + "AU16PbiYMFt1paLKX15jRSvSdME5Q21fWmvqB3bRbTkmMvn8hrts": [ + { + "amount": "293.452565304", + "slot": { + "period": 108977, + "thread": 24 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 260521, + "thread": 5 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 331617, + "thread": 14 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 542544, + "thread": 16 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 692036, + "thread": 14 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 827619, + "thread": 22 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1136855, + "thread": 29 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1169905, + "thread": 12 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1455282, + "thread": 15 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1553921, + "thread": 27 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1696443, + "thread": 22 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 1830172, + "thread": 23 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2083652, + "thread": 15 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2257447, + "thread": 10 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2436254, + "thread": 17 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2564580, + "thread": 0 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2728520, + "thread": 30 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 2822581, + "thread": 2 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 3113000, + "thread": 3 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 3156724, + "thread": 31 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 3310606, + "thread": 23 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 3603289, + "thread": 16 + } + }, + { + "amount": "293.452565304", + "slot": { + "period": 3741982, + "thread": 17 + } + }, + { + "amount": "293.452565292", + "slot": { + "period": 3916934, + "thread": 13 + } + } + ], + "AU16PgfCCnGvUomKCA4Ed6DuxshQDBNPPWLxdDm6WbdDnLsmekVH": [ + { + "amount": "5994.916666667", + "slot": { + "period": 85876, + "thread": 10 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 202671, + "thread": 27 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 442894, + "thread": 25 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 648712, + "thread": 25 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 750583, + "thread": 8 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 970082, + "thread": 22 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1089316, + "thread": 30 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1297250, + "thread": 23 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1444228, + "thread": 0 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1495797, + "thread": 11 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1688655, + "thread": 6 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 1864362, + "thread": 28 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2050015, + "thread": 25 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2244642, + "thread": 12 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2388816, + "thread": 9 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2475629, + "thread": 12 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2700239, + "thread": 2 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 2826629, + "thread": 1 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 3068409, + "thread": 20 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 3238924, + "thread": 24 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 3309241, + "thread": 17 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 3461801, + "thread": 21 + } + }, + { + "amount": "5994.916666667", + "slot": { + "period": 3766358, + "thread": 14 + } + }, + { + "amount": "5994.916666659", + "slot": { + "period": 3901050, + "thread": 12 + } + } + ], + "AU16Q41B2o1yYnwQJ6F8tK4J2A1NfX6pSC68H9JaniZoGnWCLwC3": [ + { + "amount": "95.019940771", + "slot": { + "period": 133876, + "thread": 11 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 181222, + "thread": 29 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 349740, + "thread": 31 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 602606, + "thread": 13 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 687648, + "thread": 5 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 951179, + "thread": 7 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1029059, + "thread": 31 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1272878, + "thread": 20 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1458714, + "thread": 31 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1638419, + "thread": 16 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1790290, + "thread": 10 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 1842125, + "thread": 18 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2063948, + "thread": 9 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2273923, + "thread": 30 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2411849, + "thread": 17 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2565333, + "thread": 29 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2674340, + "thread": 28 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2853083, + "thread": 25 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 2974132, + "thread": 3 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 3283879, + "thread": 3 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 3407411, + "thread": 19 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 3451909, + "thread": 7 + } + }, + { + "amount": "95.019940771", + "slot": { + "period": 3630034, + "thread": 1 + } + }, + { + "amount": "95.019940770", + "slot": { + "period": 3866216, + "thread": 5 + } + } + ], + "AU16QV8xMWVP6zsYwrL3NZ6qSF89T5hvWjJR6ewgJeyY3QbaSQX1": [ + { + "amount": "125.219669008", + "slot": { + "period": 154113, + "thread": 23 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 287629, + "thread": 9 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 336951, + "thread": 8 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 492243, + "thread": 25 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 759923, + "thread": 10 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 859351, + "thread": 22 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1109340, + "thread": 20 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1295585, + "thread": 10 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1367424, + "thread": 6 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1622379, + "thread": 15 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1761887, + "thread": 31 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 1884453, + "thread": 26 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2135615, + "thread": 13 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2171264, + "thread": 27 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2383767, + "thread": 9 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2558276, + "thread": 14 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2740829, + "thread": 1 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 2828399, + "thread": 23 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 3108571, + "thread": 21 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 3169313, + "thread": 29 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 3426800, + "thread": 29 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 3565168, + "thread": 17 + } + }, + { + "amount": "125.219669008", + "slot": { + "period": 3752387, + "thread": 6 + } + }, + { + "amount": "125.219669011", + "slot": { + "period": 3901745, + "thread": 12 + } + } + ], + "AU16Qd5QRi7BokxBq6GN8W6uyM8injsnf6BQFbrGBbmxnxfMpkk6": [ + { + "amount": "438.054985616", + "slot": { + "period": 53545, + "thread": 13 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 236411, + "thread": 25 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 467183, + "thread": 10 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 639137, + "thread": 1 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 759826, + "thread": 19 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 946040, + "thread": 4 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1137104, + "thread": 2 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1210075, + "thread": 11 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1430117, + "thread": 3 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1638902, + "thread": 20 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1764149, + "thread": 20 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 1927499, + "thread": 31 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2053511, + "thread": 17 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2200211, + "thread": 19 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2354220, + "thread": 12 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2523766, + "thread": 26 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2677639, + "thread": 0 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 2938768, + "thread": 2 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 3027844, + "thread": 23 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 3148550, + "thread": 15 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 3331543, + "thread": 16 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 3511203, + "thread": 3 + } + }, + { + "amount": "438.054985616", + "slot": { + "period": 3687660, + "thread": 18 + } + }, + { + "amount": "438.054985627", + "slot": { + "period": 3807305, + "thread": 8 + } + } + ], + "AU16RCMd7cr1QWRgcz7duK3jJeXu7qfv1Pjqnfz7q1SQbZHjZ4MT": [ + { + "amount": "70.861105882", + "slot": { + "period": 95870, + "thread": 18 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 305546, + "thread": 19 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 348399, + "thread": 22 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 504360, + "thread": 14 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 762623, + "thread": 19 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 951275, + "thread": 15 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 995778, + "thread": 23 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 1199997, + "thread": 1 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 1415025, + "thread": 16 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 1641539, + "thread": 5 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 1782797, + "thread": 31 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 1865639, + "thread": 28 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2120559, + "thread": 1 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2293440, + "thread": 20 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2425133, + "thread": 18 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2555733, + "thread": 2 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2624601, + "thread": 17 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2926916, + "thread": 22 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 2966266, + "thread": 31 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 3284217, + "thread": 12 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 3330336, + "thread": 8 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 3495399, + "thread": 11 + } + }, + { + "amount": "70.861105882", + "slot": { + "period": 3774855, + "thread": 10 + } + }, + { + "amount": "70.861105893", + "slot": { + "period": 3944623, + "thread": 14 + } + } + ], + "AU16RPopE7T1nMwutyV4zhLuSp1onfMDhArvQvmTQi4q9J4kaTgP": [ + { + "amount": "98.232588830", + "slot": { + "period": 13688, + "thread": 15 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 258518, + "thread": 19 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 487882, + "thread": 29 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 593322, + "thread": 15 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 805079, + "thread": 18 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 821788, + "thread": 31 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1074558, + "thread": 30 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1157067, + "thread": 26 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1350316, + "thread": 22 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1526382, + "thread": 5 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1694312, + "thread": 31 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 1836324, + "thread": 6 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2101733, + "thread": 11 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2265039, + "thread": 4 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2318326, + "thread": 28 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2605229, + "thread": 31 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2710785, + "thread": 10 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2803163, + "thread": 29 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 2999748, + "thread": 27 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 3143866, + "thread": 13 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 3444407, + "thread": 18 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 3478702, + "thread": 20 + } + }, + { + "amount": "98.232588830", + "slot": { + "period": 3771531, + "thread": 18 + } + }, + { + "amount": "98.232588819", + "slot": { + "period": 3861117, + "thread": 28 + } + } + ], + "AU16Ra8JyLvhjMHdtgMVKPc8gjKQNBv8KeQGbMxN4rwLEqE2NK5t": [ + { + "amount": "114.037063156", + "slot": { + "period": 95266, + "thread": 6 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 294313, + "thread": 24 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 366343, + "thread": 0 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 546001, + "thread": 11 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 709647, + "thread": 16 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 838816, + "thread": 13 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1076862, + "thread": 30 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1175721, + "thread": 15 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1383661, + "thread": 22 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1563713, + "thread": 26 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1758181, + "thread": 12 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 1825555, + "thread": 31 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2002792, + "thread": 14 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2239687, + "thread": 15 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2327184, + "thread": 22 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2605814, + "thread": 12 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2696590, + "thread": 24 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 2942242, + "thread": 2 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 3102579, + "thread": 10 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 3160827, + "thread": 11 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 3318894, + "thread": 12 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 3568249, + "thread": 20 + } + }, + { + "amount": "114.037063156", + "slot": { + "period": 3699122, + "thread": 25 + } + }, + { + "amount": "114.037063147", + "slot": { + "period": 3846430, + "thread": 13 + } + } + ], + "AU16Rsrn1ga5zxDod2dsn6c5u9k3V8PyjViHhFY8NurGQCtaVU6D": [ + { + "amount": "479.056744424", + "slot": { + "period": 139915, + "thread": 24 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 210812, + "thread": 17 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 352510, + "thread": 16 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 535970, + "thread": 27 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 751832, + "thread": 0 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 967229, + "thread": 27 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1107342, + "thread": 29 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1161495, + "thread": 24 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1435855, + "thread": 23 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1517200, + "thread": 2 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1670819, + "thread": 16 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 1895824, + "thread": 14 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2075909, + "thread": 23 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2182348, + "thread": 0 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2331168, + "thread": 15 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2519629, + "thread": 11 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2636205, + "thread": 22 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 2947094, + "thread": 30 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 3007790, + "thread": 17 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 3152188, + "thread": 21 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 3308951, + "thread": 3 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 3537916, + "thread": 26 + } + }, + { + "amount": "479.056744424", + "slot": { + "period": 3659864, + "thread": 4 + } + }, + { + "amount": "479.056744414", + "slot": { + "period": 3796837, + "thread": 12 + } + } + ], + "AU16S2WfSi4UsRhA3jEYP3esSaMSaadMfxpvyywdQHxtgyV3kaNH": [ + { + "amount": "636.908533323", + "slot": { + "period": 84103, + "thread": 14 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 287690, + "thread": 6 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 366673, + "thread": 28 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 621188, + "thread": 10 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 724083, + "thread": 12 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 909209, + "thread": 8 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1024879, + "thread": 0 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1283727, + "thread": 10 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1466557, + "thread": 24 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1486631, + "thread": 24 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1757256, + "thread": 17 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 1842518, + "thread": 4 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2110033, + "thread": 14 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2203176, + "thread": 30 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2457792, + "thread": 11 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2602868, + "thread": 11 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2786397, + "thread": 18 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 2824231, + "thread": 9 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3098009, + "thread": 19 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3263452, + "thread": 13 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3332126, + "thread": 20 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3578021, + "thread": 4 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3725663, + "thread": 23 + } + }, + { + "amount": "636.908533323", + "slot": { + "period": 3811324, + "thread": 21 + } + } + ], + "AU16S4EZDEwa4CkXVR2Vhq5s1ixT8wHztwwtepjXWdRotsjsBFj2": [ + { + "amount": "60.855907210", + "slot": { + "period": 143347, + "thread": 22 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 264301, + "thread": 30 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 379198, + "thread": 31 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 613815, + "thread": 7 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 730898, + "thread": 1 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 925847, + "thread": 0 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1119465, + "thread": 22 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1279707, + "thread": 10 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1414254, + "thread": 25 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1587448, + "thread": 0 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1798466, + "thread": 29 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1961263, + "thread": 9 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 1999404, + "thread": 1 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2170000, + "thread": 30 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2404540, + "thread": 1 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2472495, + "thread": 1 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2753666, + "thread": 22 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2846755, + "thread": 23 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 2993632, + "thread": 22 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 3202433, + "thread": 1 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 3326432, + "thread": 3 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 3463506, + "thread": 31 + } + }, + { + "amount": "60.855907210", + "slot": { + "period": 3656550, + "thread": 26 + } + }, + { + "amount": "60.855907221", + "slot": { + "period": 3875359, + "thread": 27 + } + } + ], + "AU16SC7WbjKn3Qz6Gm3fhbYYiqdjnySxyz3V3MFFqVkAHJL1wpnR": [ + { + "amount": "201.542017437", + "slot": { + "period": 116515, + "thread": 4 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 212289, + "thread": 23 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 469839, + "thread": 5 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 532685, + "thread": 0 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 805053, + "thread": 14 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 898883, + "thread": 11 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 995626, + "thread": 5 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 1215059, + "thread": 23 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 1445454, + "thread": 20 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 1596533, + "thread": 21 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 1796747, + "thread": 28 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 1889956, + "thread": 5 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2141691, + "thread": 29 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2187431, + "thread": 24 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2299706, + "thread": 13 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2619689, + "thread": 30 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2761320, + "thread": 15 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 2866008, + "thread": 13 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 3030748, + "thread": 28 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 3160869, + "thread": 31 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 3313095, + "thread": 17 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 3476181, + "thread": 18 + } + }, + { + "amount": "201.542017437", + "slot": { + "period": 3675386, + "thread": 19 + } + }, + { + "amount": "201.542017440", + "slot": { + "period": 3844046, + "thread": 13 + } + } + ], + "AU16T7BSZrdCZ9GfhHFjqryCR3qkx5c89BQ4dhudTCByfWoanfCw": [ + { + "amount": "329.213302254", + "slot": { + "period": 101549, + "thread": 2 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 195808, + "thread": 20 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 457793, + "thread": 3 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 575101, + "thread": 14 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 710170, + "thread": 3 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 950022, + "thread": 4 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1116230, + "thread": 14 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1266393, + "thread": 31 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1455295, + "thread": 12 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1544351, + "thread": 18 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1750479, + "thread": 13 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1952936, + "thread": 16 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 1992857, + "thread": 30 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 2260001, + "thread": 20 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 2429071, + "thread": 23 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 2547012, + "thread": 3 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 2756658, + "thread": 16 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 2911521, + "thread": 22 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 3072464, + "thread": 16 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 3202822, + "thread": 8 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 3354846, + "thread": 27 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 3461159, + "thread": 8 + } + }, + { + "amount": "329.213302254", + "slot": { + "period": 3702629, + "thread": 9 + } + }, + { + "amount": "329.213302258", + "slot": { + "period": 3926400, + "thread": 26 + } + } + ], + "AU16UDMXZ9svDcwjhz3k87SxdyEwWXhN61Lw6YwyaFbfKGeEEd9A": [ + { + "amount": "160.238343865", + "slot": { + "period": 131191, + "thread": 28 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 257483, + "thread": 27 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 437536, + "thread": 18 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 527199, + "thread": 30 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 797421, + "thread": 1 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 867662, + "thread": 19 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1147351, + "thread": 2 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1248051, + "thread": 0 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1325747, + "thread": 6 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1498794, + "thread": 29 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1659055, + "thread": 17 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 1951142, + "thread": 25 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2033357, + "thread": 31 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2281440, + "thread": 17 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2371865, + "thread": 2 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2478714, + "thread": 25 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2723393, + "thread": 18 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 2847585, + "thread": 22 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 3088752, + "thread": 22 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 3257388, + "thread": 19 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 3442138, + "thread": 13 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 3472618, + "thread": 21 + } + }, + { + "amount": "160.238343865", + "slot": { + "period": 3754885, + "thread": 13 + } + }, + { + "amount": "160.238343860", + "slot": { + "period": 3904730, + "thread": 3 + } + } + ], + "AU16VyBL36uh9fPysZsU34a4uS8uWTVScUjMGJX4BSNjst9jYzaX": [ + { + "amount": "144.996708746", + "slot": { + "period": 144870, + "thread": 27 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 170694, + "thread": 0 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 373754, + "thread": 18 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 546196, + "thread": 21 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 818059, + "thread": 15 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 938767, + "thread": 24 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1129190, + "thread": 4 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1186207, + "thread": 8 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1320352, + "thread": 1 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1510447, + "thread": 14 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1763711, + "thread": 29 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 1817167, + "thread": 12 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2045710, + "thread": 12 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2212193, + "thread": 30 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2436941, + "thread": 21 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2578548, + "thread": 20 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2634080, + "thread": 21 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 2867540, + "thread": 10 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 3098220, + "thread": 10 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 3182747, + "thread": 21 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 3388747, + "thread": 17 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 3465414, + "thread": 14 + } + }, + { + "amount": "144.996708746", + "slot": { + "period": 3660021, + "thread": 19 + } + }, + { + "amount": "144.996708742", + "slot": { + "period": 3796767, + "thread": 6 + } + } + ], + "AU16WfkgU6FtF7AFRnMrkCvaz4dhCuK263d91xNRJbZWDMVQz7H8": [ + { + "amount": "264.497393285", + "slot": { + "period": 40945, + "thread": 19 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 291150, + "thread": 4 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 485548, + "thread": 31 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 592620, + "thread": 23 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 809068, + "thread": 19 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 966766, + "thread": 5 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1094833, + "thread": 22 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1268461, + "thread": 27 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1320818, + "thread": 17 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1550032, + "thread": 31 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1743585, + "thread": 27 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 1962814, + "thread": 28 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2088055, + "thread": 5 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2262989, + "thread": 0 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2383447, + "thread": 11 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2552730, + "thread": 18 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2757908, + "thread": 31 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 2871070, + "thread": 22 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 3107611, + "thread": 4 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 3137921, + "thread": 17 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 3300183, + "thread": 20 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 3577277, + "thread": 15 + } + }, + { + "amount": "264.497393285", + "slot": { + "period": 3723189, + "thread": 26 + } + }, + { + "amount": "264.497393276", + "slot": { + "period": 3822484, + "thread": 21 + } + } + ], + "AU16WsP7qSTNeekvLjjd6kWK1B4wRo92YpcLzMf5cEaN2xRcuJFo": [ + { + "amount": "168.703303477", + "slot": { + "period": 46839, + "thread": 8 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 239591, + "thread": 28 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 432250, + "thread": 17 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 500412, + "thread": 11 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 728981, + "thread": 21 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 957996, + "thread": 24 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1113476, + "thread": 17 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1293350, + "thread": 7 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1392433, + "thread": 12 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1555438, + "thread": 23 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1792184, + "thread": 15 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1824865, + "thread": 25 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 1993998, + "thread": 5 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 2191257, + "thread": 18 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 2353251, + "thread": 4 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 2614638, + "thread": 18 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 2659766, + "thread": 18 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 2804902, + "thread": 14 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 3048561, + "thread": 16 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 3248202, + "thread": 31 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 3342479, + "thread": 19 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 3596433, + "thread": 8 + } + }, + { + "amount": "168.703303477", + "slot": { + "period": 3663502, + "thread": 28 + } + }, + { + "amount": "168.703303482", + "slot": { + "period": 3804950, + "thread": 20 + } + } + ], + "AU16WyqxZfrN8KUv98kLvJ8yVCAxhAycyV9j83wARmSxgrb3q5X9": [ + { + "amount": "319.274566257", + "slot": { + "period": 64978, + "thread": 8 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 257975, + "thread": 10 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 475922, + "thread": 14 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 647608, + "thread": 25 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 672893, + "thread": 26 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 909337, + "thread": 9 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1058898, + "thread": 6 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1267416, + "thread": 29 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1474809, + "thread": 31 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1528848, + "thread": 11 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1660381, + "thread": 26 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 1902966, + "thread": 7 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2077967, + "thread": 20 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2166534, + "thread": 3 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2371399, + "thread": 6 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2603674, + "thread": 21 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2781076, + "thread": 28 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 2797669, + "thread": 6 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 3017383, + "thread": 12 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 3215931, + "thread": 17 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 3398448, + "thread": 3 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 3488349, + "thread": 17 + } + }, + { + "amount": "319.274566257", + "slot": { + "period": 3657495, + "thread": 28 + } + }, + { + "amount": "319.274566267", + "slot": { + "period": 3840009, + "thread": 15 + } + } + ], + "AU16WzVN3aVYk7QBzvjjyxdt1WbjwBw7jRwKbcEmFb5Daaq7JbMv": [ + { + "amount": "271.607499020", + "slot": { + "period": 30196, + "thread": 25 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 309698, + "thread": 20 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 377023, + "thread": 17 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 606147, + "thread": 21 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 725794, + "thread": 14 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 884615, + "thread": 11 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 984030, + "thread": 16 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 1228495, + "thread": 11 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 1433641, + "thread": 28 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 1575793, + "thread": 23 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 1751808, + "thread": 3 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 1810374, + "thread": 11 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2108040, + "thread": 13 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2168229, + "thread": 15 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2454159, + "thread": 24 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2522828, + "thread": 13 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2732801, + "thread": 1 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 2883787, + "thread": 8 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 3052323, + "thread": 12 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 3141144, + "thread": 27 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 3354314, + "thread": 6 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 3519149, + "thread": 0 + } + }, + { + "amount": "271.607499020", + "slot": { + "period": 3726110, + "thread": 12 + } + }, + { + "amount": "271.607499017", + "slot": { + "period": 3903324, + "thread": 9 + } + } + ], + "AU16XAytmHfjGdcRFSA2JWF51gX5s6NYHNbdEAYkH7fciEBsiMhy": [ + { + "amount": "563.423192546", + "slot": { + "period": 128686, + "thread": 31 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 241456, + "thread": 10 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 477656, + "thread": 17 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 585462, + "thread": 1 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 726331, + "thread": 3 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 958767, + "thread": 8 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1146131, + "thread": 21 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1194064, + "thread": 27 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1407251, + "thread": 30 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1570703, + "thread": 17 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1687547, + "thread": 10 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 1954349, + "thread": 1 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2099121, + "thread": 22 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2157459, + "thread": 9 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2317791, + "thread": 31 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2505868, + "thread": 27 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2766356, + "thread": 13 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 2898900, + "thread": 29 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 3052186, + "thread": 20 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 3237634, + "thread": 23 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 3333093, + "thread": 31 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 3512171, + "thread": 22 + } + }, + { + "amount": "563.423192546", + "slot": { + "period": 3738731, + "thread": 5 + } + }, + { + "amount": "563.423192540", + "slot": { + "period": 3785410, + "thread": 10 + } + } + ], + "AU16XT3ef7x7gvDSjB9uD79dSDRrYGottfTXNfWycJyT9dAaSmCN": [ + { + "amount": "91.149656577", + "slot": { + "period": 99912, + "thread": 17 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 295583, + "thread": 3 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 413661, + "thread": 21 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 577790, + "thread": 10 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 688932, + "thread": 30 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 947555, + "thread": 21 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1112722, + "thread": 28 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1167930, + "thread": 1 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1414399, + "thread": 20 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1496783, + "thread": 19 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1675319, + "thread": 16 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 1962099, + "thread": 18 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2087169, + "thread": 8 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2282643, + "thread": 24 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2380759, + "thread": 10 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2498995, + "thread": 11 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2718735, + "thread": 30 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 2929260, + "thread": 23 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 3002662, + "thread": 30 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 3145844, + "thread": 9 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 3414914, + "thread": 0 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 3532979, + "thread": 25 + } + }, + { + "amount": "91.149656577", + "slot": { + "period": 3736178, + "thread": 25 + } + }, + { + "amount": "91.149656569", + "slot": { + "period": 3815514, + "thread": 9 + } + } + ], + "AU16XvKoTzAxCmeR1Vd5nPQq4EbhuubZ1TgHu6mWNENaZh1H3Uaz": [ + { + "amount": "426.501948269", + "slot": { + "period": 43783, + "thread": 7 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 183765, + "thread": 25 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 397834, + "thread": 25 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 497478, + "thread": 11 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 737501, + "thread": 26 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 966216, + "thread": 16 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1082589, + "thread": 14 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1170564, + "thread": 4 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1362493, + "thread": 27 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1589329, + "thread": 1 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1755072, + "thread": 27 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1870318, + "thread": 31 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 1997649, + "thread": 7 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 2176275, + "thread": 30 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 2407172, + "thread": 3 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 2608719, + "thread": 20 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 2776514, + "thread": 1 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 2911540, + "thread": 19 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 3009514, + "thread": 28 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 3236684, + "thread": 10 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 3404787, + "thread": 28 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 3539835, + "thread": 20 + } + }, + { + "amount": "426.501948269", + "slot": { + "period": 3750587, + "thread": 15 + } + }, + { + "amount": "426.501948272", + "slot": { + "period": 3865239, + "thread": 23 + } + } + ], + "AU16ZeqRjuCm4j4eudFEDo2h8yDyVgc8gdXcAjhVPWVdCGSiYoJN": [ + { + "amount": "521.974175465", + "slot": { + "period": 113601, + "thread": 29 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 217782, + "thread": 15 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 405630, + "thread": 9 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 518881, + "thread": 16 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 736687, + "thread": 22 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 935747, + "thread": 12 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1016372, + "thread": 4 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1228949, + "thread": 31 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1381641, + "thread": 31 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1514679, + "thread": 9 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1724737, + "thread": 15 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1875485, + "thread": 31 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 1986697, + "thread": 30 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 2195348, + "thread": 2 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 2382296, + "thread": 8 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 2527996, + "thread": 8 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 2714712, + "thread": 10 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 2858986, + "thread": 2 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 3035703, + "thread": 21 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 3285521, + "thread": 20 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 3337766, + "thread": 26 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 3510543, + "thread": 21 + } + }, + { + "amount": "521.974175465", + "slot": { + "period": 3741448, + "thread": 21 + } + }, + { + "amount": "521.974175466", + "slot": { + "period": 3827858, + "thread": 17 + } + } + ], + "AU16cq45cyGbE7eoBypSG6RN3S5zVbzA5B2qJ5YozFozvPN2phjZ": [ + { + "amount": "66.501873012", + "slot": { + "period": 55608, + "thread": 14 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 248022, + "thread": 21 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 453229, + "thread": 5 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 505824, + "thread": 26 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 799010, + "thread": 26 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 836940, + "thread": 10 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1102405, + "thread": 21 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1293362, + "thread": 27 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1395037, + "thread": 13 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1581414, + "thread": 2 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1778317, + "thread": 27 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 1966219, + "thread": 1 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2017833, + "thread": 16 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2223597, + "thread": 4 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2438034, + "thread": 10 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2495471, + "thread": 8 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2722093, + "thread": 25 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 2829168, + "thread": 20 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 3100800, + "thread": 7 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 3231474, + "thread": 13 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 3378962, + "thread": 19 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 3491251, + "thread": 22 + } + }, + { + "amount": "66.501873012", + "slot": { + "period": 3698320, + "thread": 12 + } + }, + { + "amount": "66.501873015", + "slot": { + "period": 3786142, + "thread": 8 + } + } + ], + "AU16dRFAAUk9nxPZWdjhoRbMVK3WvHLMGBVuAgDr2pW4LQzqoDS1": [ + { + "amount": "136.074909967", + "slot": { + "period": 152796, + "thread": 7 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 305010, + "thread": 3 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 324054, + "thread": 16 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 561625, + "thread": 6 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 665282, + "thread": 13 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 935296, + "thread": 15 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 991925, + "thread": 1 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 1191326, + "thread": 11 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 1400141, + "thread": 29 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 1551925, + "thread": 1 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 1708517, + "thread": 21 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 1900801, + "thread": 24 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2061366, + "thread": 6 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2157495, + "thread": 24 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2362555, + "thread": 16 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2482441, + "thread": 9 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2742459, + "thread": 20 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 2848103, + "thread": 13 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 3058674, + "thread": 22 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 3248251, + "thread": 6 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 3421945, + "thread": 20 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 3489634, + "thread": 3 + } + }, + { + "amount": "136.074909967", + "slot": { + "period": 3643196, + "thread": 4 + } + }, + { + "amount": "136.074909968", + "slot": { + "period": 3875122, + "thread": 25 + } + } + ], + "AU16dZkFvpw3Tyzo2nmuCrL5U7T39jCZYjw6YphaYa8m6Vwu1YX7": [ + { + "amount": "466.953965426", + "slot": { + "period": 138393, + "thread": 21 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 209893, + "thread": 24 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 340916, + "thread": 30 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 612791, + "thread": 23 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 762164, + "thread": 24 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 883729, + "thread": 1 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1089083, + "thread": 14 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1207253, + "thread": 4 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1388621, + "thread": 12 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1502951, + "thread": 4 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1753503, + "thread": 28 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 1824781, + "thread": 0 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2031533, + "thread": 1 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2227775, + "thread": 27 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2295401, + "thread": 14 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2567700, + "thread": 24 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2784771, + "thread": 7 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 2851618, + "thread": 3 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 3101616, + "thread": 25 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 3158975, + "thread": 10 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 3295650, + "thread": 25 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 3571811, + "thread": 0 + } + }, + { + "amount": "466.953965426", + "slot": { + "period": 3763306, + "thread": 15 + } + }, + { + "amount": "466.953965424", + "slot": { + "period": 3832801, + "thread": 8 + } + } + ], + "AU16eDpBAswNPC6eSEiKLnrNARqxV4qrQ8QWor6wfC1SLagH6Mke": [ + { + "amount": "289.256319291", + "slot": { + "period": 102956, + "thread": 16 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 220073, + "thread": 24 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 350205, + "thread": 12 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 564585, + "thread": 28 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 714628, + "thread": 17 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 904623, + "thread": 11 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1084672, + "thread": 12 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1275819, + "thread": 11 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1408232, + "thread": 18 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1546313, + "thread": 28 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1745256, + "thread": 20 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 1891087, + "thread": 23 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2136426, + "thread": 18 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2203409, + "thread": 25 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2441969, + "thread": 0 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2482002, + "thread": 15 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2695127, + "thread": 21 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 2909427, + "thread": 4 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 3106526, + "thread": 1 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 3136501, + "thread": 24 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 3419526, + "thread": 25 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 3501667, + "thread": 7 + } + }, + { + "amount": "289.256319291", + "slot": { + "period": 3777251, + "thread": 9 + } + }, + { + "amount": "289.256319282", + "slot": { + "period": 3802937, + "thread": 27 + } + } + ], + "AU16eUBzdm63ib4JnaEDHuSVTZruPMLf7m51KHNtxWbZdRCCBsgv": [ + { + "amount": "83.868711861", + "slot": { + "period": 85168, + "thread": 29 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 188343, + "thread": 27 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 450843, + "thread": 14 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 515830, + "thread": 21 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 778344, + "thread": 4 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 871262, + "thread": 11 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1035731, + "thread": 6 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1151628, + "thread": 21 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1428840, + "thread": 25 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1502530, + "thread": 7 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1708902, + "thread": 6 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 1837605, + "thread": 25 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2104191, + "thread": 13 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2255009, + "thread": 7 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2424711, + "thread": 21 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2614739, + "thread": 14 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2702863, + "thread": 18 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2943568, + "thread": 24 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 2958489, + "thread": 7 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 3197994, + "thread": 8 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 3400145, + "thread": 8 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 3587696, + "thread": 21 + } + }, + { + "amount": "83.868711861", + "slot": { + "period": 3752507, + "thread": 9 + } + }, + { + "amount": "83.868711864", + "slot": { + "period": 3882344, + "thread": 22 + } + } + ], + "AU16f1xtPwLuAqfQuCNTonjxanCWrs4gionRS69bVha9n6DxiCEb": [ + { + "amount": "388.471973122", + "slot": { + "period": 144594, + "thread": 28 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 303317, + "thread": 10 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 442801, + "thread": 11 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 596334, + "thread": 1 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 655256, + "thread": 29 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 894179, + "thread": 21 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1107874, + "thread": 16 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1253860, + "thread": 4 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1388360, + "thread": 29 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1645828, + "thread": 11 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1657522, + "thread": 9 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 1845393, + "thread": 0 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2033006, + "thread": 11 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2228729, + "thread": 14 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2303934, + "thread": 28 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2562408, + "thread": 17 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2686609, + "thread": 23 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 2807140, + "thread": 12 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 3068797, + "thread": 3 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 3146293, + "thread": 8 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 3299344, + "thread": 27 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 3476542, + "thread": 22 + } + }, + { + "amount": "388.471973122", + "slot": { + "period": 3632163, + "thread": 3 + } + }, + { + "amount": "388.471973116", + "slot": { + "period": 3833105, + "thread": 29 + } + } + ], + "AU16h8FLw7UvKhiEYuXtpKUr3aKEQWU2J5GT4CBQDTa1K7zpNKnG": [ + { + "amount": "230.797723082", + "slot": { + "period": 63642, + "thread": 11 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 172555, + "thread": 22 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 462249, + "thread": 27 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 503807, + "thread": 14 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 784650, + "thread": 31 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 979536, + "thread": 26 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1044483, + "thread": 22 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1269636, + "thread": 4 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1344122, + "thread": 18 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1637081, + "thread": 7 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1651011, + "thread": 3 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 1881380, + "thread": 4 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2088231, + "thread": 3 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2151549, + "thread": 17 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2390521, + "thread": 18 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2528811, + "thread": 29 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2730984, + "thread": 12 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 2875331, + "thread": 31 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 3052723, + "thread": 19 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 3141154, + "thread": 27 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 3311895, + "thread": 1 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 3535360, + "thread": 29 + } + }, + { + "amount": "230.797723082", + "slot": { + "period": 3649272, + "thread": 10 + } + }, + { + "amount": "230.797723089", + "slot": { + "period": 3883602, + "thread": 18 + } + } + ], + "AU16hX41q13xb1DADx3kh535vqBCbifNmok3b5gesPZmuvDkthev": [ + { + "amount": "534.987446227", + "slot": { + "period": 36911, + "thread": 15 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 304074, + "thread": 11 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 438668, + "thread": 27 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 526879, + "thread": 31 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 746293, + "thread": 4 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 843753, + "thread": 29 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1083989, + "thread": 26 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1251160, + "thread": 20 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1346180, + "thread": 9 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1623372, + "thread": 6 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1693726, + "thread": 18 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 1952205, + "thread": 5 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2091222, + "thread": 17 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2198454, + "thread": 3 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2439464, + "thread": 6 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2505717, + "thread": 12 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2753114, + "thread": 12 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2806629, + "thread": 30 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 2954712, + "thread": 20 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 3248826, + "thread": 6 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 3435340, + "thread": 22 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 3538761, + "thread": 24 + } + }, + { + "amount": "534.987446227", + "slot": { + "period": 3626438, + "thread": 28 + } + }, + { + "amount": "534.987446224", + "slot": { + "period": 3944238, + "thread": 30 + } + } + ], + "AU16jHWKPmzVoUK2m7t5QEu2oYScnSM3mtFsPFEaLrLz8R4U1atW": [ + { + "amount": "251.253973145", + "slot": { + "period": 86827, + "thread": 25 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 222411, + "thread": 1 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 394498, + "thread": 22 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 634088, + "thread": 24 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 700338, + "thread": 6 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 964418, + "thread": 30 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1082935, + "thread": 13 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1310940, + "thread": 9 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1405128, + "thread": 12 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1494540, + "thread": 19 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1749465, + "thread": 5 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 1945045, + "thread": 1 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2142761, + "thread": 12 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2281600, + "thread": 17 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2430760, + "thread": 19 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2550760, + "thread": 9 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2702689, + "thread": 12 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 2903513, + "thread": 8 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 3091919, + "thread": 2 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 3200648, + "thread": 31 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 3368993, + "thread": 21 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 3451603, + "thread": 24 + } + }, + { + "amount": "251.253973145", + "slot": { + "period": 3723574, + "thread": 29 + } + }, + { + "amount": "251.253973153", + "slot": { + "period": 3837909, + "thread": 22 + } + } + ], + "AU16jK1wrBQV4af6m9W2pbgMYaVERT2qpHZfpNZFV9oxijxMSwu8": [ + { + "amount": "205.807634942", + "slot": { + "period": 74886, + "thread": 30 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 290178, + "thread": 2 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 462051, + "thread": 24 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 618790, + "thread": 14 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 716794, + "thread": 31 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 949757, + "thread": 26 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1019351, + "thread": 6 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1288631, + "thread": 13 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1400687, + "thread": 28 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1618101, + "thread": 17 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1788533, + "thread": 0 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 1960021, + "thread": 24 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2021885, + "thread": 11 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2250319, + "thread": 1 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2339738, + "thread": 23 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2618935, + "thread": 26 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2791607, + "thread": 1 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 2876930, + "thread": 10 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3072642, + "thread": 24 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3140806, + "thread": 16 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3414877, + "thread": 23 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3487277, + "thread": 13 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3753418, + "thread": 26 + } + }, + { + "amount": "205.807634942", + "slot": { + "period": 3900699, + "thread": 10 + } + } + ], + "AU16jkJdhCKtxTrNL9YNup1LXobRhxiTsRu3nGYqaoQe4MNyazot": [ + { + "amount": "368.188565790", + "slot": { + "period": 143660, + "thread": 28 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 275745, + "thread": 13 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 354877, + "thread": 12 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 579306, + "thread": 21 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 694374, + "thread": 12 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 866690, + "thread": 28 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1064705, + "thread": 28 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1168764, + "thread": 31 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1320358, + "thread": 26 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1532801, + "thread": 3 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1679227, + "thread": 19 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 1929192, + "thread": 13 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2005854, + "thread": 28 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2233605, + "thread": 28 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2367857, + "thread": 5 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2508747, + "thread": 16 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2628071, + "thread": 12 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 2895425, + "thread": 25 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 3040556, + "thread": 11 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 3238890, + "thread": 2 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 3435458, + "thread": 3 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 3591645, + "thread": 21 + } + }, + { + "amount": "368.188565790", + "slot": { + "period": 3663412, + "thread": 26 + } + }, + { + "amount": "368.188565794", + "slot": { + "period": 3916772, + "thread": 12 + } + } + ], + "AU16kwXkWDps8PPP1rCgcjwj6od9WP2fq6u8UEWo58drKvvr7HCd": [ + { + "amount": "113.420639272", + "slot": { + "period": 41423, + "thread": 5 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 292089, + "thread": 29 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 458312, + "thread": 13 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 647970, + "thread": 17 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 799044, + "thread": 26 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 888074, + "thread": 0 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1081701, + "thread": 25 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1199475, + "thread": 9 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1412216, + "thread": 26 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1508750, + "thread": 17 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1716983, + "thread": 28 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 1900177, + "thread": 4 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2053485, + "thread": 14 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2262546, + "thread": 18 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2421432, + "thread": 9 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2530832, + "thread": 10 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2789011, + "thread": 27 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 2915074, + "thread": 30 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 3058796, + "thread": 0 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 3230753, + "thread": 4 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 3403041, + "thread": 0 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 3491919, + "thread": 13 + } + }, + { + "amount": "113.420639272", + "slot": { + "period": 3640905, + "thread": 29 + } + }, + { + "amount": "113.420639276", + "slot": { + "period": 3876801, + "thread": 9 + } + } + ], + "AU16mJN95V3Gi52zycFahrExzN9Y6STqTbNZNB3mZ2zNaVQD3XHd": [ + { + "amount": "139.490727900", + "slot": { + "period": 123562, + "thread": 2 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 207742, + "thread": 24 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 431163, + "thread": 14 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 615941, + "thread": 21 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 794214, + "thread": 22 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 918756, + "thread": 2 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1103871, + "thread": 9 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1152123, + "thread": 19 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1418719, + "thread": 18 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1501652, + "thread": 22 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1651289, + "thread": 29 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 1946654, + "thread": 3 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2023640, + "thread": 2 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2161070, + "thread": 29 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2347850, + "thread": 24 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2609480, + "thread": 24 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2678414, + "thread": 13 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 2792114, + "thread": 17 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 3031566, + "thread": 14 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 3216759, + "thread": 11 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 3381290, + "thread": 14 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 3531795, + "thread": 7 + } + }, + { + "amount": "139.490727900", + "slot": { + "period": 3740836, + "thread": 15 + } + }, + { + "amount": "139.490727911", + "slot": { + "period": 3795108, + "thread": 13 + } + } + ], + "AU16mX6Q9DSfwbAmVh5oDpgw4mXv8U6T4Ggcw865NYj7NxAn4CjC": [ + { + "amount": "89.583168093", + "slot": { + "period": 163111, + "thread": 23 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 227906, + "thread": 1 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 482005, + "thread": 31 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 621622, + "thread": 19 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 775007, + "thread": 5 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 839498, + "thread": 28 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1119128, + "thread": 31 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1245299, + "thread": 10 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1328175, + "thread": 21 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1532863, + "thread": 15 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1775692, + "thread": 22 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 1976355, + "thread": 1 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2125477, + "thread": 11 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2207321, + "thread": 2 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2359470, + "thread": 21 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2485317, + "thread": 19 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2667729, + "thread": 12 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2819163, + "thread": 16 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 2985274, + "thread": 30 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 3228418, + "thread": 15 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 3434860, + "thread": 13 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 3533351, + "thread": 12 + } + }, + { + "amount": "89.583168093", + "slot": { + "period": 3677279, + "thread": 3 + } + }, + { + "amount": "89.583168084", + "slot": { + "period": 3807158, + "thread": 20 + } + } + ], + "AU16nRxgnTBKJ2j8wBw4aNn8QvCpzgc3B1BiJ84SBGEuxm9c3qbC": [ + { + "amount": "276.921041273", + "slot": { + "period": 103353, + "thread": 28 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 252394, + "thread": 12 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 357211, + "thread": 0 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 494559, + "thread": 25 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 698098, + "thread": 12 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 933966, + "thread": 20 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 987955, + "thread": 8 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 1171061, + "thread": 30 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 1448065, + "thread": 23 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 1489168, + "thread": 13 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 1756209, + "thread": 30 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 1899891, + "thread": 31 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2014926, + "thread": 19 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2150239, + "thread": 16 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2341186, + "thread": 18 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2498614, + "thread": 29 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2789898, + "thread": 24 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 2904596, + "thread": 12 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 3024886, + "thread": 15 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 3253102, + "thread": 20 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 3324500, + "thread": 5 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 3588057, + "thread": 20 + } + }, + { + "amount": "276.921041273", + "slot": { + "period": 3677644, + "thread": 23 + } + }, + { + "amount": "276.921041278", + "slot": { + "period": 3861013, + "thread": 8 + } + } + ], + "AU16ntVyss1Ae7zDEjWHa1RWEYHSXvfYGcY9dfb8DYPuPjTN6kKL": [ + { + "amount": "57.737872912", + "slot": { + "period": 121397, + "thread": 14 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 279289, + "thread": 13 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 419221, + "thread": 3 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 531287, + "thread": 3 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 656313, + "thread": 8 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 922686, + "thread": 30 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1128908, + "thread": 13 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1205999, + "thread": 23 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1324140, + "thread": 11 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1510532, + "thread": 12 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1653904, + "thread": 31 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 1929413, + "thread": 31 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2088572, + "thread": 15 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2157311, + "thread": 13 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2298885, + "thread": 7 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2484712, + "thread": 21 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2784494, + "thread": 3 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2822801, + "thread": 19 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 2990855, + "thread": 7 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 3216078, + "thread": 2 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 3403538, + "thread": 8 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 3537153, + "thread": 0 + } + }, + { + "amount": "57.737872912", + "slot": { + "period": 3671363, + "thread": 24 + } + }, + { + "amount": "57.737872911", + "slot": { + "period": 3801383, + "thread": 28 + } + } + ], + "AU16oQXVCxB2wjVarmbMizffYXanMQWrrcybCQ9V8s9xvfqKc6kc": [ + { + "amount": "197.552730376", + "slot": { + "period": 84824, + "thread": 11 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 197245, + "thread": 27 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 391619, + "thread": 27 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 525649, + "thread": 25 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 742665, + "thread": 30 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 909691, + "thread": 16 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1007692, + "thread": 29 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1252719, + "thread": 20 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1361054, + "thread": 15 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1616569, + "thread": 29 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1778730, + "thread": 22 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 1897467, + "thread": 22 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2053253, + "thread": 24 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2293966, + "thread": 16 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2346486, + "thread": 6 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2531118, + "thread": 18 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2644286, + "thread": 4 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 2932032, + "thread": 16 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 3077475, + "thread": 11 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 3193011, + "thread": 23 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 3412001, + "thread": 22 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 3532127, + "thread": 3 + } + }, + { + "amount": "197.552730376", + "slot": { + "period": 3673553, + "thread": 25 + } + }, + { + "amount": "197.552730386", + "slot": { + "period": 3878262, + "thread": 29 + } + } + ], + "AU16osFqaYjgoVuEuMapoajS6HoXcny1t2R6TTh5SatHSsK3cbRn": [ + { + "amount": "351.886911846", + "slot": { + "period": 131848, + "thread": 9 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 221794, + "thread": 20 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 376789, + "thread": 21 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 638873, + "thread": 3 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 698009, + "thread": 24 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 895866, + "thread": 26 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1049612, + "thread": 3 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1211407, + "thread": 19 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1410272, + "thread": 5 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1573169, + "thread": 26 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1685745, + "thread": 16 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 1967275, + "thread": 9 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2098401, + "thread": 21 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2252813, + "thread": 28 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2347117, + "thread": 28 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2463157, + "thread": 31 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2761780, + "thread": 2 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 2797322, + "thread": 30 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 3012156, + "thread": 26 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 3244428, + "thread": 16 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 3417732, + "thread": 26 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 3532904, + "thread": 17 + } + }, + { + "amount": "351.886911846", + "slot": { + "period": 3766124, + "thread": 9 + } + }, + { + "amount": "351.886911853", + "slot": { + "period": 3895046, + "thread": 7 + } + } + ], + "AU16oxdkv9VupsAsUXq8FD8DKBi7NPQnDkMtwTSe3bGzHwEvox7V": [ + { + "amount": "273.442879754", + "slot": { + "period": 158794, + "thread": 19 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 322753, + "thread": 1 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 464492, + "thread": 1 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 538816, + "thread": 31 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 660452, + "thread": 5 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 915835, + "thread": 17 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1082078, + "thread": 25 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1246118, + "thread": 6 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1383067, + "thread": 26 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1495222, + "thread": 30 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1753951, + "thread": 23 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 1927018, + "thread": 12 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2063898, + "thread": 7 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2223884, + "thread": 10 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2389470, + "thread": 17 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2568489, + "thread": 10 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2790500, + "thread": 5 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2888301, + "thread": 18 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 2982175, + "thread": 28 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 3173541, + "thread": 27 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 3383044, + "thread": 29 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 3563101, + "thread": 6 + } + }, + { + "amount": "273.442879754", + "slot": { + "period": 3681074, + "thread": 25 + } + }, + { + "amount": "273.442879766", + "slot": { + "period": 3932859, + "thread": 25 + } + } + ], + "AU16pWva3NRPR97HUcKdBTUDUj6ZsMDnQWuPd6P88YGAUgps8NnG": [ + { + "amount": "94.786121789", + "slot": { + "period": 19921, + "thread": 4 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 322265, + "thread": 21 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 368934, + "thread": 15 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 603760, + "thread": 26 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 806504, + "thread": 1 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 945632, + "thread": 26 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1101722, + "thread": 31 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1219499, + "thread": 27 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1333434, + "thread": 29 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1520852, + "thread": 21 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1668006, + "thread": 16 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 1861947, + "thread": 18 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2002490, + "thread": 29 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2191660, + "thread": 1 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2363730, + "thread": 24 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2583121, + "thread": 5 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2782884, + "thread": 5 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2899875, + "thread": 30 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 2990352, + "thread": 25 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 3242014, + "thread": 0 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 3316593, + "thread": 31 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 3591070, + "thread": 16 + } + }, + { + "amount": "94.786121789", + "slot": { + "period": 3722209, + "thread": 24 + } + }, + { + "amount": "94.786121790", + "slot": { + "period": 3926930, + "thread": 3 + } + } + ], + "AU16pjantEfRQtQa1CwTQv9uupBDbwrYGJjtHQorwzJ4hbiFMs8i": [ + { + "amount": "151.359409211", + "slot": { + "period": 83385, + "thread": 24 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 246247, + "thread": 3 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 368308, + "thread": 7 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 578964, + "thread": 8 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 754679, + "thread": 17 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 929807, + "thread": 0 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1063538, + "thread": 29 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1215082, + "thread": 30 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1442632, + "thread": 29 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1617603, + "thread": 0 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1677291, + "thread": 0 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 1976072, + "thread": 28 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2022816, + "thread": 21 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2183983, + "thread": 31 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2395691, + "thread": 30 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2525625, + "thread": 2 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2659639, + "thread": 20 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 2885591, + "thread": 14 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 3019208, + "thread": 31 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 3232095, + "thread": 15 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 3443392, + "thread": 20 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 3526368, + "thread": 28 + } + }, + { + "amount": "151.359409211", + "slot": { + "period": 3618606, + "thread": 12 + } + }, + { + "amount": "151.359409201", + "slot": { + "period": 3826953, + "thread": 28 + } + } + ], + "AU16pqF7MPHf7zicEiZokVVCGC6zxcndqUNFCp1HS39RzWDcHX89": [ + { + "amount": "92.545191519", + "slot": { + "period": 102106, + "thread": 9 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 226153, + "thread": 17 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 380828, + "thread": 31 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 542833, + "thread": 15 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 734221, + "thread": 10 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 915374, + "thread": 24 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1118333, + "thread": 0 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1210719, + "thread": 11 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1324678, + "thread": 18 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1497769, + "thread": 14 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1745708, + "thread": 3 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 1871278, + "thread": 3 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2133012, + "thread": 23 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2167708, + "thread": 26 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2379955, + "thread": 15 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2536449, + "thread": 8 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2742641, + "thread": 13 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2797399, + "thread": 24 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 2985804, + "thread": 28 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 3184042, + "thread": 15 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 3405600, + "thread": 0 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 3612941, + "thread": 14 + } + }, + { + "amount": "92.545191519", + "slot": { + "period": 3707926, + "thread": 28 + } + }, + { + "amount": "92.545191522", + "slot": { + "period": 3785687, + "thread": 8 + } + } + ], + "AU16q4dgs8ffFPTLvkRWbFuuby3XyamhHW9f83qW9jTn8K7zUZww": [ + { + "amount": "160.123957346", + "slot": { + "period": 155272, + "thread": 19 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 194065, + "thread": 23 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 361664, + "thread": 9 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 505518, + "thread": 11 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 744281, + "thread": 21 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 915742, + "thread": 24 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1037079, + "thread": 28 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1290544, + "thread": 19 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1408617, + "thread": 2 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1597630, + "thread": 29 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1728470, + "thread": 14 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 1934412, + "thread": 17 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2090890, + "thread": 16 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2161564, + "thread": 27 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2385819, + "thread": 22 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2557784, + "thread": 9 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2649246, + "thread": 31 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2848527, + "thread": 15 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 2957661, + "thread": 22 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 3264867, + "thread": 9 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 3298454, + "thread": 24 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 3605927, + "thread": 22 + } + }, + { + "amount": "160.123957346", + "slot": { + "period": 3707785, + "thread": 16 + } + }, + { + "amount": "160.123957354", + "slot": { + "period": 3813811, + "thread": 6 + } + } + ], + "AU16qm6QDrmbkomrB84Luyfp7wZWKKGbDLQFyxkro6nyFSZd3uJh": [ + { + "amount": "82.012854125", + "slot": { + "period": 76094, + "thread": 20 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 307607, + "thread": 6 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 381973, + "thread": 9 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 547977, + "thread": 21 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 820208, + "thread": 28 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 908380, + "thread": 26 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 989965, + "thread": 2 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1213091, + "thread": 23 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1476084, + "thread": 20 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1512830, + "thread": 16 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1727514, + "thread": 3 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1933915, + "thread": 15 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 1989396, + "thread": 4 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 2283660, + "thread": 1 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 2443467, + "thread": 12 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 2477051, + "thread": 28 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 2744096, + "thread": 3 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 2911670, + "thread": 15 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 3017014, + "thread": 24 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 3228834, + "thread": 5 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 3387488, + "thread": 24 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 3568164, + "thread": 5 + } + }, + { + "amount": "82.012854125", + "slot": { + "period": 3735153, + "thread": 17 + } + }, + { + "amount": "82.012854128", + "slot": { + "period": 3876258, + "thread": 30 + } + } + ], + "AU16rab1S1mMfkooLU89fgNQjV3bWhhkZM9s5GzPLEJhuo6Bcn2X": [ + { + "amount": "104.757781200", + "slot": { + "period": 166995, + "thread": 19 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 303497, + "thread": 20 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 340646, + "thread": 17 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 527612, + "thread": 11 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 764010, + "thread": 9 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 978274, + "thread": 25 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1050567, + "thread": 13 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1184894, + "thread": 10 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1368062, + "thread": 12 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1587508, + "thread": 27 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1684050, + "thread": 4 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 1854411, + "thread": 9 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2060987, + "thread": 14 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2155262, + "thread": 3 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2307406, + "thread": 27 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2495191, + "thread": 3 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2719199, + "thread": 15 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 2836814, + "thread": 6 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 3105294, + "thread": 12 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 3123225, + "thread": 21 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 3448564, + "thread": 3 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 3465780, + "thread": 0 + } + }, + { + "amount": "104.757781200", + "slot": { + "period": 3628753, + "thread": 22 + } + }, + { + "amount": "104.757781195", + "slot": { + "period": 3854416, + "thread": 13 + } + } + ], + "AU16rdqRHvgUXLyNuc85dnayXTeTc73d3hpwAXqdxssc8nNrXhEK": [ + { + "amount": "558.844001011", + "slot": { + "period": 37524, + "thread": 22 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 317611, + "thread": 14 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 434340, + "thread": 15 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 648779, + "thread": 21 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 777652, + "thread": 0 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 868224, + "thread": 23 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1023414, + "thread": 27 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1295923, + "thread": 18 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1421817, + "thread": 27 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1520899, + "thread": 9 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1806709, + "thread": 11 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 1946515, + "thread": 25 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2079370, + "thread": 16 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2191751, + "thread": 27 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2439291, + "thread": 5 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2497450, + "thread": 31 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2667494, + "thread": 21 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 2825375, + "thread": 28 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 3094572, + "thread": 31 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 3260240, + "thread": 11 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 3313158, + "thread": 6 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 3613744, + "thread": 20 + } + }, + { + "amount": "558.844001011", + "slot": { + "period": 3730804, + "thread": 13 + } + }, + { + "amount": "558.844001002", + "slot": { + "period": 3943268, + "thread": 14 + } + } + ], + "AU16rygnyMn2KK2BeL3QCUULWeQ833o5E81cBWTmTjJ34HBPdsvD": [ + { + "amount": "184.657861207", + "slot": { + "period": 58936, + "thread": 1 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 319234, + "thread": 24 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 404442, + "thread": 10 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 498476, + "thread": 18 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 669305, + "thread": 26 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 881507, + "thread": 20 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1032108, + "thread": 23 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1183850, + "thread": 21 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1362980, + "thread": 10 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1566376, + "thread": 26 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1701632, + "thread": 17 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 1915194, + "thread": 26 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2055011, + "thread": 25 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2222871, + "thread": 31 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2397614, + "thread": 15 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2538173, + "thread": 12 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2718477, + "thread": 31 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2944158, + "thread": 21 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 2999699, + "thread": 14 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 3240282, + "thread": 1 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 3336574, + "thread": 24 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 3608649, + "thread": 16 + } + }, + { + "amount": "184.657861207", + "slot": { + "period": 3771458, + "thread": 10 + } + }, + { + "amount": "184.657861215", + "slot": { + "period": 3905972, + "thread": 4 + } + } + ], + "AU16snYh98Yjk52VWL1NADiMzhhkkcg9t9ES8Yg63e2M1BFv5Q83": [ + { + "amount": "401.143228036", + "slot": { + "period": 157407, + "thread": 13 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 229037, + "thread": 13 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 362824, + "thread": 24 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 518030, + "thread": 9 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 791649, + "thread": 29 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 867308, + "thread": 14 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1022817, + "thread": 8 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1248372, + "thread": 9 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1450905, + "thread": 28 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1612816, + "thread": 7 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1715202, + "thread": 14 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 1867195, + "thread": 22 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2116399, + "thread": 11 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2255102, + "thread": 7 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2379651, + "thread": 9 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2473440, + "thread": 22 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2674514, + "thread": 3 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 2819645, + "thread": 11 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 3016114, + "thread": 23 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 3267354, + "thread": 23 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 3392913, + "thread": 19 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 3524985, + "thread": 0 + } + }, + { + "amount": "401.143228036", + "slot": { + "period": 3751389, + "thread": 7 + } + }, + { + "amount": "401.143228026", + "slot": { + "period": 3884856, + "thread": 29 + } + } + ], + "AU16sqaahpm5fjLAg6mgD9zAzLQK9hL2SLWx3C9eHDzU8XNbTS8Y": [ + { + "amount": "86.343138325", + "slot": { + "period": 37600, + "thread": 12 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 308364, + "thread": 3 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 483747, + "thread": 22 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 498393, + "thread": 2 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 680598, + "thread": 8 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 861938, + "thread": 21 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 998184, + "thread": 15 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 1157046, + "thread": 26 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 1465082, + "thread": 7 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 1619340, + "thread": 16 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 1773153, + "thread": 12 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 1935079, + "thread": 16 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2075974, + "thread": 29 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2264578, + "thread": 30 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2362406, + "thread": 13 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2610121, + "thread": 12 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2754909, + "thread": 18 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 2918204, + "thread": 28 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 3109701, + "thread": 13 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 3203396, + "thread": 2 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 3394912, + "thread": 27 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 3562604, + "thread": 22 + } + }, + { + "amount": "86.343138325", + "slot": { + "period": 3637939, + "thread": 2 + } + }, + { + "amount": "86.343138332", + "slot": { + "period": 3825891, + "thread": 3 + } + } + ], + "AU16tVh527HeNP9jfMNzHvWspjfzF6S84E5ybagiWkgpE5BCbzkz": [ + { + "amount": "55.216533676", + "slot": { + "period": 55312, + "thread": 3 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 210150, + "thread": 6 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 335671, + "thread": 26 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 519122, + "thread": 2 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 676824, + "thread": 14 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 975057, + "thread": 31 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1077356, + "thread": 13 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1308256, + "thread": 4 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1421075, + "thread": 9 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1528004, + "thread": 30 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1675498, + "thread": 15 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 1950186, + "thread": 31 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2021702, + "thread": 29 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2205345, + "thread": 22 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2403069, + "thread": 27 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2619751, + "thread": 24 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2789552, + "thread": 21 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2886580, + "thread": 30 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 2982215, + "thread": 19 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 3168017, + "thread": 5 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 3344527, + "thread": 1 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 3574415, + "thread": 3 + } + }, + { + "amount": "55.216533676", + "slot": { + "period": 3774739, + "thread": 29 + } + }, + { + "amount": "55.216533668", + "slot": { + "period": 3835812, + "thread": 2 + } + } + ], + "AU16tdNZKzeV7hK8exPGGJWj3ngwmdye7QsvnFaFfodyxAYndLkt": [ + { + "amount": "533.746028095", + "slot": { + "period": 18651, + "thread": 15 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 179261, + "thread": 19 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 391519, + "thread": 12 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 587308, + "thread": 0 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 805039, + "thread": 7 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 822699, + "thread": 27 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1024287, + "thread": 2 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1180133, + "thread": 12 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1346328, + "thread": 31 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1505727, + "thread": 26 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1673868, + "thread": 6 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 1833478, + "thread": 22 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2017299, + "thread": 2 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2283872, + "thread": 26 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2299181, + "thread": 18 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2565381, + "thread": 26 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2735722, + "thread": 9 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 2920514, + "thread": 14 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 3051427, + "thread": 22 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 3152423, + "thread": 19 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 3333910, + "thread": 17 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 3505113, + "thread": 17 + } + }, + { + "amount": "533.746028095", + "slot": { + "period": 3760277, + "thread": 3 + } + }, + { + "amount": "533.746028084", + "slot": { + "period": 3846453, + "thread": 25 + } + } + ], + "AU16uA2rpTCvbyMUTUC4MDTWMBPRQZUebbGhBT7tDMV8bYE6kjEg": [ + { + "amount": "134.646563738", + "slot": { + "period": 30606, + "thread": 25 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 307270, + "thread": 10 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 444779, + "thread": 5 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 539069, + "thread": 24 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 787282, + "thread": 11 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 965905, + "thread": 5 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1096932, + "thread": 12 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1235766, + "thread": 25 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1472831, + "thread": 20 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1561973, + "thread": 31 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1708147, + "thread": 17 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 1845508, + "thread": 21 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2040259, + "thread": 9 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2234345, + "thread": 20 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2424768, + "thread": 17 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2521561, + "thread": 2 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2789768, + "thread": 13 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 2822160, + "thread": 17 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 3053198, + "thread": 3 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 3254277, + "thread": 9 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 3336104, + "thread": 10 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 3519660, + "thread": 30 + } + }, + { + "amount": "134.646563738", + "slot": { + "period": 3736256, + "thread": 5 + } + }, + { + "amount": "134.646563741", + "slot": { + "period": 3928602, + "thread": 18 + } + } + ], + "AU16uiaC1mJik5oWgf6WwAKEAsLCvo7scbffBz333v6mTGHhQYFP": [ + { + "amount": "361.431548090", + "slot": { + "period": 160914, + "thread": 0 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 177932, + "thread": 1 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 444293, + "thread": 23 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 633675, + "thread": 31 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 777311, + "thread": 17 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 980289, + "thread": 20 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1119714, + "thread": 31 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1162338, + "thread": 10 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1349073, + "thread": 3 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1544132, + "thread": 10 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1761146, + "thread": 27 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1952274, + "thread": 7 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 1989745, + "thread": 24 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 2204509, + "thread": 2 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 2337128, + "thread": 2 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 2496933, + "thread": 20 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 2642489, + "thread": 6 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 2793491, + "thread": 8 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 3072342, + "thread": 0 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 3181648, + "thread": 20 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 3300685, + "thread": 15 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 3520560, + "thread": 19 + } + }, + { + "amount": "361.431548090", + "slot": { + "period": 3656994, + "thread": 31 + } + }, + { + "amount": "361.431548092", + "slot": { + "period": 3838959, + "thread": 4 + } + } + ], + "AU16vZo8jqGz3VweSUYaai1VU8LMhTMc9FkQSR7QBGrxkKmt1AE1": [ + { + "amount": "67.806399728", + "slot": { + "period": 67897, + "thread": 11 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 170546, + "thread": 29 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 378959, + "thread": 25 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 499543, + "thread": 8 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 662222, + "thread": 31 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 958109, + "thread": 28 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1055275, + "thread": 14 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1182749, + "thread": 30 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1442998, + "thread": 17 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1629738, + "thread": 20 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1731864, + "thread": 2 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 1813687, + "thread": 1 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2128051, + "thread": 22 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2146503, + "thread": 15 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2410988, + "thread": 20 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2493091, + "thread": 21 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2645974, + "thread": 27 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 2861159, + "thread": 6 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 3039005, + "thread": 19 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 3179926, + "thread": 17 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 3411208, + "thread": 7 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 3491876, + "thread": 13 + } + }, + { + "amount": "67.806399728", + "slot": { + "period": 3775805, + "thread": 6 + } + }, + { + "amount": "67.806399722", + "slot": { + "period": 3875260, + "thread": 29 + } + } + ], + "AU16w1ZwEuQojUadekJDXtwwQfpPkdXHeEy4dAgg74hvCDhynCAo": [ + { + "amount": "86.338742558", + "slot": { + "period": 107272, + "thread": 12 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 252125, + "thread": 20 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 464507, + "thread": 25 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 517127, + "thread": 18 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 734247, + "thread": 18 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 891105, + "thread": 8 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1106291, + "thread": 10 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1163760, + "thread": 9 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1466958, + "thread": 4 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1615515, + "thread": 3 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1750172, + "thread": 31 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 1950654, + "thread": 9 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2008694, + "thread": 3 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2155876, + "thread": 10 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2427572, + "thread": 19 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2477501, + "thread": 2 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2750845, + "thread": 14 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 2912704, + "thread": 30 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 3050676, + "thread": 31 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 3232415, + "thread": 28 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 3381099, + "thread": 25 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 3530780, + "thread": 12 + } + }, + { + "amount": "86.338742558", + "slot": { + "period": 3697060, + "thread": 21 + } + }, + { + "amount": "86.338742559", + "slot": { + "period": 3870180, + "thread": 31 + } + } + ], + "AU16wCnQpootptZYMsL3WPUg18bHhUbpW8nLJuAMEhM9Dzj4f5Qd": [ + { + "amount": "167.652010669", + "slot": { + "period": 93808, + "thread": 14 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 239767, + "thread": 9 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 337939, + "thread": 18 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 624644, + "thread": 2 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 767798, + "thread": 9 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 910924, + "thread": 0 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1126323, + "thread": 29 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1167541, + "thread": 16 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1413440, + "thread": 26 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1629148, + "thread": 0 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1670071, + "thread": 19 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 1924544, + "thread": 0 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2143346, + "thread": 0 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2250020, + "thread": 19 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2323626, + "thread": 12 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2577253, + "thread": 12 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2756412, + "thread": 22 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 2909020, + "thread": 4 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 3041315, + "thread": 12 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 3276169, + "thread": 8 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 3405387, + "thread": 7 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 3502763, + "thread": 12 + } + }, + { + "amount": "167.652010669", + "slot": { + "period": 3626177, + "thread": 2 + } + }, + { + "amount": "167.652010659", + "slot": { + "period": 3794503, + "thread": 2 + } + } + ], + "AU16xqwdYE5435hzaq4kzjnGtxsZhQFk4Ds4ozaKnZrk3Nzz1Zpd": [ + { + "amount": "336.048523672", + "slot": { + "period": 152045, + "thread": 29 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 177684, + "thread": 31 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 376605, + "thread": 9 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 617983, + "thread": 21 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 805999, + "thread": 1 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 857346, + "thread": 12 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1105420, + "thread": 21 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1248874, + "thread": 1 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1353145, + "thread": 26 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1586328, + "thread": 10 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1793329, + "thread": 17 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 1888821, + "thread": 9 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2020486, + "thread": 16 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2146218, + "thread": 17 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2341524, + "thread": 19 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2489745, + "thread": 14 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2750484, + "thread": 28 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 2819532, + "thread": 26 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 3055379, + "thread": 14 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 3190844, + "thread": 28 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 3382312, + "thread": 3 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 3473255, + "thread": 5 + } + }, + { + "amount": "336.048523672", + "slot": { + "period": 3681179, + "thread": 30 + } + }, + { + "amount": "336.048523670", + "slot": { + "period": 3817706, + "thread": 23 + } + } + ], + "AU16zFEE7bfodZkGCqkGRPTu4riWsFYG82ZMbwjCBCLmBnTt6hj5": [ + { + "amount": "210.077575121", + "slot": { + "period": 66767, + "thread": 27 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 305152, + "thread": 14 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 484985, + "thread": 29 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 583162, + "thread": 30 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 661519, + "thread": 13 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 892750, + "thread": 2 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1085885, + "thread": 11 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1207821, + "thread": 23 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1428465, + "thread": 26 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1589735, + "thread": 0 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1802678, + "thread": 0 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 1915715, + "thread": 23 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2074239, + "thread": 21 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2163740, + "thread": 30 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2433899, + "thread": 30 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2493031, + "thread": 3 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2780773, + "thread": 22 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 2850539, + "thread": 15 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 3001300, + "thread": 2 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 3245342, + "thread": 31 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 3415140, + "thread": 17 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 3521946, + "thread": 12 + } + }, + { + "amount": "210.077575121", + "slot": { + "period": 3620116, + "thread": 24 + } + }, + { + "amount": "210.077575129", + "slot": { + "period": 3797521, + "thread": 26 + } + } + ], + "AU16zQnkujuC5scwqzCpqfJJ5gbQC3p2uYMhWX6QQzgaWiRmRmvc": [ + { + "amount": "152.356293310", + "slot": { + "period": 98140, + "thread": 27 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 177206, + "thread": 1 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 441714, + "thread": 0 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 501634, + "thread": 29 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 749109, + "thread": 16 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 907767, + "thread": 9 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1010478, + "thread": 27 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1162607, + "thread": 16 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1427941, + "thread": 26 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1628058, + "thread": 29 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1728533, + "thread": 13 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 1961617, + "thread": 23 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2080186, + "thread": 27 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2208980, + "thread": 29 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2331581, + "thread": 5 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2593968, + "thread": 22 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2786086, + "thread": 1 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2876092, + "thread": 13 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 2980099, + "thread": 31 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 3148833, + "thread": 22 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 3392700, + "thread": 4 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 3572539, + "thread": 21 + } + }, + { + "amount": "152.356293310", + "slot": { + "period": 3632978, + "thread": 8 + } + }, + { + "amount": "152.356293317", + "slot": { + "period": 3797584, + "thread": 16 + } + } + ], + "AU16zzXcPqjaZSaWcvStftK6zxPtUdTqYvDVxUf2TuQQZv6cj6vM": [ + { + "amount": "102.277021039", + "slot": { + "period": 144580, + "thread": 17 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 308437, + "thread": 21 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 429438, + "thread": 26 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 530323, + "thread": 28 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 658924, + "thread": 6 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 939850, + "thread": 19 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1018299, + "thread": 3 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1289506, + "thread": 26 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1426017, + "thread": 4 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1638069, + "thread": 16 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1687179, + "thread": 30 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 1869780, + "thread": 30 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2023254, + "thread": 9 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2218091, + "thread": 19 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2397648, + "thread": 10 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2580526, + "thread": 21 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2690535, + "thread": 20 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 2823531, + "thread": 22 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 3020535, + "thread": 30 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 3161586, + "thread": 27 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 3335757, + "thread": 10 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 3466426, + "thread": 7 + } + }, + { + "amount": "102.277021039", + "slot": { + "period": 3693474, + "thread": 20 + } + }, + { + "amount": "102.277021049", + "slot": { + "period": 3913050, + "thread": 15 + } + } + ], + "AU171H9dfTghKVCP4RFQo2LKgd4VrHWuQeTSa6756XfYgUVFFMV6": [ + { + "amount": "114.932363273", + "slot": { + "period": 66655, + "thread": 12 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 210662, + "thread": 26 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 397250, + "thread": 14 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 626264, + "thread": 18 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 677373, + "thread": 19 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 841936, + "thread": 22 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1108929, + "thread": 5 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1201254, + "thread": 27 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1367123, + "thread": 16 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1503964, + "thread": 19 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1785172, + "thread": 27 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 1967913, + "thread": 22 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2066169, + "thread": 31 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2293362, + "thread": 11 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2373371, + "thread": 13 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2476295, + "thread": 8 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2646034, + "thread": 4 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 2804206, + "thread": 9 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 3064387, + "thread": 15 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 3127763, + "thread": 4 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 3321189, + "thread": 6 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 3461109, + "thread": 6 + } + }, + { + "amount": "114.932363273", + "slot": { + "period": 3686674, + "thread": 3 + } + }, + { + "amount": "114.932363279", + "slot": { + "period": 3847355, + "thread": 25 + } + } + ], + "AU171yjCgy9xwRePVwCqbCxDFHBNqBVbisVJLwkqKiPjM9ShFm4V": [ + { + "amount": "111.187186044", + "slot": { + "period": 108622, + "thread": 17 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 286589, + "thread": 26 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 369928, + "thread": 26 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 509521, + "thread": 26 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 677361, + "thread": 10 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 944681, + "thread": 12 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1071780, + "thread": 0 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1242600, + "thread": 31 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1358664, + "thread": 2 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1578609, + "thread": 15 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1768490, + "thread": 14 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 1914853, + "thread": 16 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2041566, + "thread": 4 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2202491, + "thread": 13 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2307516, + "thread": 9 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2510632, + "thread": 18 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2708857, + "thread": 6 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2937784, + "thread": 23 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 2954388, + "thread": 23 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 3264010, + "thread": 8 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 3353082, + "thread": 10 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 3579404, + "thread": 8 + } + }, + { + "amount": "111.187186044", + "slot": { + "period": 3760070, + "thread": 2 + } + }, + { + "amount": "111.187186053", + "slot": { + "period": 3787248, + "thread": 25 + } + } + ], + "AU173DjVs8aKwLtLPLqQzrqxZEhMd5UcJPBbjBcSjcsAoPvJkZK7": [ + { + "amount": "127.722947761", + "slot": { + "period": 63461, + "thread": 8 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 239847, + "thread": 27 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 342027, + "thread": 10 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 559482, + "thread": 20 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 699203, + "thread": 2 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 958551, + "thread": 13 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1006374, + "thread": 20 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1231974, + "thread": 2 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1332659, + "thread": 23 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1573902, + "thread": 10 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1707287, + "thread": 17 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 1901801, + "thread": 26 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2099581, + "thread": 9 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2161548, + "thread": 28 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2376988, + "thread": 17 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2504068, + "thread": 11 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2748152, + "thread": 17 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 2924560, + "thread": 20 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 3049509, + "thread": 0 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 3269463, + "thread": 13 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 3297474, + "thread": 25 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 3571524, + "thread": 11 + } + }, + { + "amount": "127.722947761", + "slot": { + "period": 3685693, + "thread": 13 + } + }, + { + "amount": "127.722947756", + "slot": { + "period": 3853585, + "thread": 23 + } + } + ], + "AU173KKZudqfb9WDRBBRdWoztQnxjbrjLpuxjLdmjbABiucxRqsq": [ + { + "amount": "121.607159883", + "slot": { + "period": 77315, + "thread": 1 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 262850, + "thread": 6 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 358154, + "thread": 24 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 513061, + "thread": 14 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 805187, + "thread": 2 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 881803, + "thread": 19 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1026852, + "thread": 21 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1255826, + "thread": 23 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1469503, + "thread": 5 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1497526, + "thread": 5 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1681674, + "thread": 31 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 1934248, + "thread": 21 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2050910, + "thread": 3 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2266253, + "thread": 8 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2363433, + "thread": 21 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2516624, + "thread": 0 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2635931, + "thread": 20 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 2925737, + "thread": 7 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 3065485, + "thread": 31 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 3278700, + "thread": 26 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 3302148, + "thread": 26 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 3616864, + "thread": 9 + } + }, + { + "amount": "121.607159883", + "slot": { + "period": 3619196, + "thread": 31 + } + }, + { + "amount": "121.607159888", + "slot": { + "period": 3793963, + "thread": 1 + } + } + ], + "AU1756TbQqzSJWF1SL7f1WdJAh9vxGG4JxEthjkV4tEH8ZkGMDXi": [ + { + "amount": "205.298414784", + "slot": { + "period": 141578, + "thread": 22 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 187283, + "thread": 25 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 393515, + "thread": 28 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 527814, + "thread": 3 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 745627, + "thread": 30 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 970710, + "thread": 0 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1116407, + "thread": 22 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1252629, + "thread": 1 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1401370, + "thread": 30 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1596813, + "thread": 16 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1691517, + "thread": 19 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 1850761, + "thread": 16 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2002146, + "thread": 11 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2211515, + "thread": 30 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2370221, + "thread": 10 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2606705, + "thread": 19 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2683873, + "thread": 12 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2928824, + "thread": 21 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 2982212, + "thread": 12 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 3257062, + "thread": 2 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 3313454, + "thread": 26 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 3452189, + "thread": 5 + } + }, + { + "amount": "205.298414784", + "slot": { + "period": 3757130, + "thread": 3 + } + }, + { + "amount": "205.298414786", + "slot": { + "period": 3931487, + "thread": 24 + } + } + ], + "AU175pGPqgGhX58Q65UqZmr6yAroYnQN2rZLuXBQWfDUXLtb9fDa": [ + { + "amount": "146.547094719", + "slot": { + "period": 141561, + "thread": 1 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 278378, + "thread": 25 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 396684, + "thread": 0 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 578156, + "thread": 5 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 756578, + "thread": 3 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 959144, + "thread": 15 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1007943, + "thread": 31 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1226435, + "thread": 23 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1389586, + "thread": 20 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1535659, + "thread": 23 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1727260, + "thread": 24 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 1853004, + "thread": 23 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2115110, + "thread": 1 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2247566, + "thread": 24 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2442814, + "thread": 6 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2491478, + "thread": 4 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2681916, + "thread": 2 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2922309, + "thread": 30 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 2978194, + "thread": 31 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 3189476, + "thread": 27 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 3328114, + "thread": 31 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 3467494, + "thread": 8 + } + }, + { + "amount": "146.547094719", + "slot": { + "period": 3668306, + "thread": 3 + } + }, + { + "amount": "146.547094723", + "slot": { + "period": 3890023, + "thread": 23 + } + } + ], + "AU1761Nq2DQhj36qteSu2ztGSMZZVGcMhiBusShNbg3nG43SgLg3": [ + { + "amount": "55.711145618", + "slot": { + "period": 85917, + "thread": 28 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 236804, + "thread": 11 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 466741, + "thread": 29 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 605311, + "thread": 16 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 701662, + "thread": 25 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 898623, + "thread": 4 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1132885, + "thread": 6 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1232155, + "thread": 25 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1333962, + "thread": 0 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1643439, + "thread": 12 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1667999, + "thread": 27 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 1857905, + "thread": 13 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2124860, + "thread": 20 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2164123, + "thread": 13 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2409359, + "thread": 10 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2587309, + "thread": 17 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2699407, + "thread": 20 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 2894347, + "thread": 16 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 3106948, + "thread": 7 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 3278558, + "thread": 21 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 3301641, + "thread": 0 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 3550713, + "thread": 0 + } + }, + { + "amount": "55.711145618", + "slot": { + "period": 3673794, + "thread": 20 + } + }, + { + "amount": "55.711145621", + "slot": { + "period": 3931683, + "thread": 7 + } + } + ], + "AU1767hfZ5Lcjou7ChkRrFFDEpBX82WyByhFPfDp1GYryXYnsxMv": [ + { + "amount": "259.514782105", + "slot": { + "period": 116723, + "thread": 15 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 232000, + "thread": 7 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 447079, + "thread": 28 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 622732, + "thread": 26 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 705127, + "thread": 9 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 927774, + "thread": 12 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1060254, + "thread": 26 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1315140, + "thread": 13 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1379912, + "thread": 17 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1493521, + "thread": 0 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1730274, + "thread": 18 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 1878992, + "thread": 25 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2114317, + "thread": 12 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2244260, + "thread": 1 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2455550, + "thread": 25 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2537648, + "thread": 31 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2651281, + "thread": 7 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 2824240, + "thread": 13 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 3090419, + "thread": 2 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 3241668, + "thread": 4 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 3376919, + "thread": 2 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 3521824, + "thread": 30 + } + }, + { + "amount": "259.514782105", + "slot": { + "period": 3718296, + "thread": 0 + } + }, + { + "amount": "259.514782112", + "slot": { + "period": 3923725, + "thread": 20 + } + } + ], + "AU176P8WZbFJXLBU5YaWLF7csKyFtVLqWpoEAGMowx4hY5XSpxe5": [ + { + "amount": "136.690771644", + "slot": { + "period": 23019, + "thread": 16 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 219381, + "thread": 13 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 455645, + "thread": 20 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 593051, + "thread": 30 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 693201, + "thread": 10 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 934974, + "thread": 15 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 991865, + "thread": 22 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 1228912, + "thread": 3 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 1355973, + "thread": 11 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 1635360, + "thread": 24 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 1785411, + "thread": 31 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 1921563, + "thread": 15 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2136318, + "thread": 8 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2207775, + "thread": 4 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2445309, + "thread": 27 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2579418, + "thread": 1 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2681326, + "thread": 16 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 2873465, + "thread": 5 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 3065391, + "thread": 17 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 3201764, + "thread": 8 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 3323775, + "thread": 3 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 3597936, + "thread": 11 + } + }, + { + "amount": "136.690771644", + "slot": { + "period": 3764009, + "thread": 12 + } + }, + { + "amount": "136.690771655", + "slot": { + "period": 3816380, + "thread": 31 + } + } + ], + "AU1777hJtBSL7K65kuVGxEKhtpJEYXUfD2qi7DYmps2S4X1HQVaf": [ + { + "amount": "84.035073809", + "slot": { + "period": 125441, + "thread": 1 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 167973, + "thread": 21 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 330423, + "thread": 1 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 551486, + "thread": 8 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 693786, + "thread": 17 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 902809, + "thread": 3 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1057160, + "thread": 23 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1239590, + "thread": 1 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1381859, + "thread": 2 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1513096, + "thread": 25 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1663929, + "thread": 6 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 1901728, + "thread": 5 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2133331, + "thread": 27 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2244392, + "thread": 9 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2378940, + "thread": 27 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2586249, + "thread": 31 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2671383, + "thread": 2 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 2915162, + "thread": 19 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 3079175, + "thread": 12 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 3129557, + "thread": 23 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 3342590, + "thread": 5 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 3568357, + "thread": 6 + } + }, + { + "amount": "84.035073809", + "slot": { + "period": 3764369, + "thread": 8 + } + }, + { + "amount": "84.035073807", + "slot": { + "period": 3905111, + "thread": 4 + } + } + ], + "AU178cWrL8Ym5VtH5bJiSvw1pUG3M9vDVyyZWuYgjBx6fvWtgFTX": [ + { + "amount": "135.976283756", + "slot": { + "period": 109086, + "thread": 9 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 204464, + "thread": 4 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 485281, + "thread": 30 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 621772, + "thread": 20 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 781959, + "thread": 18 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 893898, + "thread": 19 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1106817, + "thread": 19 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1202098, + "thread": 15 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1465018, + "thread": 5 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1614330, + "thread": 11 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1658914, + "thread": 12 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 1910878, + "thread": 4 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2124587, + "thread": 15 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2174264, + "thread": 19 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2386597, + "thread": 29 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2486243, + "thread": 20 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2772369, + "thread": 5 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 2908730, + "thread": 26 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 3106397, + "thread": 9 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 3131953, + "thread": 23 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 3400776, + "thread": 26 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 3458715, + "thread": 15 + } + }, + { + "amount": "135.976283756", + "slot": { + "period": 3627525, + "thread": 2 + } + }, + { + "amount": "135.976283755", + "slot": { + "period": 3901475, + "thread": 1 + } + } + ], + "AU178j8Qas9njSmP9S1TmrdndS9owoeRbSgNCFgN5sjL9HWbt5SK": [ + { + "amount": "176.116297352", + "slot": { + "period": 161497, + "thread": 3 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 292920, + "thread": 27 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 467965, + "thread": 26 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 537783, + "thread": 4 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 777199, + "thread": 24 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 871723, + "thread": 26 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1149938, + "thread": 19 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1161982, + "thread": 24 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1395037, + "thread": 18 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1587166, + "thread": 23 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1678718, + "thread": 2 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 1866948, + "thread": 24 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2017032, + "thread": 20 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2192200, + "thread": 25 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2431978, + "thread": 13 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2530688, + "thread": 3 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2781471, + "thread": 11 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2864874, + "thread": 10 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 2966779, + "thread": 19 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 3235426, + "thread": 13 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 3376269, + "thread": 7 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 3522464, + "thread": 7 + } + }, + { + "amount": "176.116297352", + "slot": { + "period": 3713933, + "thread": 14 + } + }, + { + "amount": "176.116297348", + "slot": { + "period": 3930670, + "thread": 7 + } + } + ], + "AU178nWWnNpVCcUza9pQBUM4zM2zWbHvL4VmsK37PcZ4Uhc8z1Ah": [ + { + "amount": "326.559567347", + "slot": { + "period": 42802, + "thread": 23 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 243319, + "thread": 2 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 424295, + "thread": 31 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 525376, + "thread": 8 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 723794, + "thread": 17 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 970581, + "thread": 23 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 989201, + "thread": 27 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 1238521, + "thread": 5 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 1386460, + "thread": 13 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 1553323, + "thread": 14 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 1666740, + "thread": 3 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 1928505, + "thread": 11 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2033637, + "thread": 17 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2239687, + "thread": 30 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2297310, + "thread": 8 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2516826, + "thread": 28 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2710177, + "thread": 20 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2939322, + "thread": 28 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 2955719, + "thread": 24 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 3261447, + "thread": 6 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 3431015, + "thread": 7 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 3502710, + "thread": 10 + } + }, + { + "amount": "326.559567347", + "slot": { + "period": 3630417, + "thread": 7 + } + }, + { + "amount": "326.559567352", + "slot": { + "period": 3825095, + "thread": 25 + } + } + ], + "AU17AFWazJxoGtQYdWSUrX1ZrfuXoUJaZ6vfBJHaAfXj2cr4vr5z": [ + { + "amount": "214.539263349", + "slot": { + "period": 101866, + "thread": 25 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 212524, + "thread": 31 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 406136, + "thread": 11 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 494284, + "thread": 1 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 784869, + "thread": 26 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 833509, + "thread": 2 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1105688, + "thread": 9 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1305186, + "thread": 19 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1327773, + "thread": 22 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1571735, + "thread": 17 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1709806, + "thread": 31 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 1817650, + "thread": 2 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2077486, + "thread": 9 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2210062, + "thread": 31 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2307939, + "thread": 3 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2463190, + "thread": 14 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2781083, + "thread": 27 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 2914458, + "thread": 2 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 3080674, + "thread": 1 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 3124619, + "thread": 31 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 3328542, + "thread": 12 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 3507560, + "thread": 31 + } + }, + { + "amount": "214.539263349", + "slot": { + "period": 3637575, + "thread": 13 + } + }, + { + "amount": "214.539263355", + "slot": { + "period": 3819510, + "thread": 29 + } + } + ], + "AU17AQH7Vah9GQRXMWtkxX7mYt3kyWF5womQiP5pFCQrH5Z9VkLU": [ + { + "amount": "134.113109483", + "slot": { + "period": 56238, + "thread": 30 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 245228, + "thread": 7 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 472230, + "thread": 20 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 509023, + "thread": 25 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 739670, + "thread": 16 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 917017, + "thread": 21 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1008126, + "thread": 15 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1228695, + "thread": 30 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1343708, + "thread": 26 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1569122, + "thread": 24 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1699269, + "thread": 15 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 1912959, + "thread": 9 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2139100, + "thread": 24 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2207436, + "thread": 11 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2423162, + "thread": 28 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2508083, + "thread": 1 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2723762, + "thread": 6 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2792337, + "thread": 31 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 2988361, + "thread": 0 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 3258536, + "thread": 11 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 3431514, + "thread": 21 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 3533720, + "thread": 24 + } + }, + { + "amount": "134.113109483", + "slot": { + "period": 3703980, + "thread": 25 + } + }, + { + "amount": "134.113109478", + "slot": { + "period": 3849373, + "thread": 12 + } + } + ], + "AU17BBLtadTiBT6j691G3ueaPeUqYSnXj6MWQZHsx3mrDKwquvLB": [ + { + "amount": "131.959892372", + "slot": { + "period": 37378, + "thread": 28 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 322657, + "thread": 16 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 383439, + "thread": 20 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 566691, + "thread": 10 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 736685, + "thread": 13 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 952841, + "thread": 4 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1069760, + "thread": 16 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1185995, + "thread": 0 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1327354, + "thread": 0 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1538821, + "thread": 24 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1732891, + "thread": 24 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1974373, + "thread": 9 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 1980939, + "thread": 29 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 2230977, + "thread": 1 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 2302241, + "thread": 3 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 2538120, + "thread": 24 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 2767986, + "thread": 19 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 2838640, + "thread": 4 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 3051935, + "thread": 12 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 3244447, + "thread": 27 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 3391684, + "thread": 26 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 3547048, + "thread": 30 + } + }, + { + "amount": "131.959892372", + "slot": { + "period": 3738200, + "thread": 11 + } + }, + { + "amount": "131.959892377", + "slot": { + "period": 3793950, + "thread": 22 + } + } + ], + "AU17BT1jzm6QYHs15Ahu3m1DUFHjdCVMcrLdX8GEnrWSdCkDZJ5x": [ + { + "amount": "129.180078539", + "slot": { + "period": 96626, + "thread": 18 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 238933, + "thread": 23 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 417933, + "thread": 14 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 585922, + "thread": 17 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 704197, + "thread": 13 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 824546, + "thread": 6 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1048114, + "thread": 4 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1300648, + "thread": 13 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1380301, + "thread": 7 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1497284, + "thread": 20 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1666063, + "thread": 26 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1884133, + "thread": 16 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 1982211, + "thread": 29 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 2288995, + "thread": 13 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 2366614, + "thread": 25 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 2569429, + "thread": 22 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 2677669, + "thread": 8 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 2935240, + "thread": 6 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 3060163, + "thread": 12 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 3265987, + "thread": 27 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 3321536, + "thread": 27 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 3562109, + "thread": 18 + } + }, + { + "amount": "129.180078539", + "slot": { + "period": 3697110, + "thread": 6 + } + }, + { + "amount": "129.180078545", + "slot": { + "period": 3868070, + "thread": 14 + } + } + ], + "AU17D75FgmGokX22SCJb2j9aNwge56YASMT8MWYejm6GMoFHk4fe": [ + { + "amount": "231.107384135", + "slot": { + "period": 134166, + "thread": 10 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 300344, + "thread": 7 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 428029, + "thread": 31 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 580943, + "thread": 31 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 794339, + "thread": 8 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 877027, + "thread": 17 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1029031, + "thread": 8 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1201405, + "thread": 0 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1458192, + "thread": 0 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1604648, + "thread": 12 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1736199, + "thread": 15 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 1833590, + "thread": 9 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2030636, + "thread": 11 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2245613, + "thread": 21 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2403444, + "thread": 8 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2505703, + "thread": 10 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2781153, + "thread": 25 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 2812186, + "thread": 26 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 3111157, + "thread": 14 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 3140673, + "thread": 16 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 3372960, + "thread": 13 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 3476558, + "thread": 9 + } + }, + { + "amount": "231.107384135", + "slot": { + "period": 3681523, + "thread": 3 + } + }, + { + "amount": "231.107384132", + "slot": { + "period": 3885052, + "thread": 21 + } + } + ], + "AU17DmGe4kTPFF7sHn2TbwgDidZk7TvMAKg3k4F1FnpTMrn2bRw9": [ + { + "amount": "129.685030271", + "slot": { + "period": 97273, + "thread": 5 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 220666, + "thread": 2 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 337148, + "thread": 18 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 635665, + "thread": 26 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 712179, + "thread": 15 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 969789, + "thread": 11 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1048558, + "thread": 9 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1308347, + "thread": 3 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1399984, + "thread": 29 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1572156, + "thread": 24 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1727276, + "thread": 26 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 1937388, + "thread": 21 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2059906, + "thread": 3 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2225417, + "thread": 18 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2307074, + "thread": 16 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2589123, + "thread": 31 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2718857, + "thread": 9 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 2805356, + "thread": 25 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 3038963, + "thread": 28 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 3248180, + "thread": 10 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 3398827, + "thread": 29 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 3522154, + "thread": 20 + } + }, + { + "amount": "129.685030271", + "slot": { + "period": 3743471, + "thread": 23 + } + }, + { + "amount": "129.685030264", + "slot": { + "period": 3888789, + "thread": 7 + } + } + ], + "AU17F1sRXraaywg874RDUArveAJhAReXCVVDKQCRzwRdhKE3UhgM": [ + { + "amount": "697.955748996", + "slot": { + "period": 89865, + "thread": 19 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 304223, + "thread": 16 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 471919, + "thread": 12 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 503964, + "thread": 19 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 710372, + "thread": 14 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 918804, + "thread": 0 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1011086, + "thread": 19 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1241130, + "thread": 17 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1430442, + "thread": 17 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1496704, + "thread": 6 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1793101, + "thread": 3 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 1863537, + "thread": 25 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2001428, + "thread": 26 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2272934, + "thread": 8 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2398772, + "thread": 30 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2608788, + "thread": 0 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2748521, + "thread": 15 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 2834660, + "thread": 30 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 3027940, + "thread": 6 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 3210788, + "thread": 8 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 3436861, + "thread": 11 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 3552475, + "thread": 17 + } + }, + { + "amount": "697.955748996", + "slot": { + "period": 3640049, + "thread": 20 + } + }, + { + "amount": "697.955749002", + "slot": { + "period": 3782029, + "thread": 8 + } + } + ], + "AU17F6CmULAk522Ci7Ek6MSQ6WjYfZe6HjDmCTEoXajoG2Nusawi": [ + { + "amount": "227.779481837", + "slot": { + "period": 161322, + "thread": 12 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 236025, + "thread": 21 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 421121, + "thread": 4 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 587631, + "thread": 0 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 778456, + "thread": 23 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 882529, + "thread": 27 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1129802, + "thread": 31 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1294299, + "thread": 0 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1445901, + "thread": 7 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1517114, + "thread": 9 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1750434, + "thread": 30 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 1833294, + "thread": 31 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2073769, + "thread": 29 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2249460, + "thread": 27 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2452000, + "thread": 27 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2616802, + "thread": 11 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2698758, + "thread": 31 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 2872876, + "thread": 17 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 3051718, + "thread": 30 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 3205185, + "thread": 13 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 3359783, + "thread": 23 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 3581607, + "thread": 27 + } + }, + { + "amount": "227.779481837", + "slot": { + "period": 3738125, + "thread": 29 + } + }, + { + "amount": "227.779481847", + "slot": { + "period": 3871507, + "thread": 10 + } + } + ], + "AU17FBjUmxxjukxhCjGzNpvr4y69ERjoejVpjHMtkuwqeWdhXVEP": [ + { + "amount": "86.508222278", + "slot": { + "period": 136936, + "thread": 24 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 319345, + "thread": 23 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 452196, + "thread": 24 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 577327, + "thread": 28 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 663544, + "thread": 23 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 925209, + "thread": 9 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1008106, + "thread": 2 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1202880, + "thread": 25 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1342652, + "thread": 15 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1593012, + "thread": 9 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1679704, + "thread": 20 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 1813950, + "thread": 30 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2089958, + "thread": 12 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2274078, + "thread": 15 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2417947, + "thread": 6 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2602726, + "thread": 27 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2766616, + "thread": 31 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 2854340, + "thread": 12 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 3014130, + "thread": 25 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 3183589, + "thread": 6 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 3408007, + "thread": 21 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 3473705, + "thread": 2 + } + }, + { + "amount": "86.508222278", + "slot": { + "period": 3686552, + "thread": 20 + } + }, + { + "amount": "86.508222268", + "slot": { + "period": 3806285, + "thread": 15 + } + } + ], + "AU17Feb7Dnsp5BqRpnUQfezPTkT4mj5D6AjR2mQXGvFPjmuvkz3K": [ + { + "amount": "105.979346096", + "slot": { + "period": 98550, + "thread": 5 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 194182, + "thread": 11 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 334913, + "thread": 17 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 619417, + "thread": 8 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 711083, + "thread": 2 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 909270, + "thread": 27 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1105263, + "thread": 10 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1280283, + "thread": 9 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1465758, + "thread": 15 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1483627, + "thread": 27 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1707507, + "thread": 31 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 1864460, + "thread": 26 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2050242, + "thread": 7 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2292236, + "thread": 10 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2461096, + "thread": 5 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2553980, + "thread": 20 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2761938, + "thread": 28 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2868342, + "thread": 26 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 2970349, + "thread": 17 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 3178458, + "thread": 20 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 3289174, + "thread": 18 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 3528741, + "thread": 30 + } + }, + { + "amount": "105.979346096", + "slot": { + "period": 3770073, + "thread": 7 + } + }, + { + "amount": "105.979346087", + "slot": { + "period": 3853537, + "thread": 0 + } + } + ], + "AU17FiENRuDcANP6EMWaEU2eEvv8j2ACDi7vJbu367p5RRfPKmrs": [ + { + "amount": "268.295791044", + "slot": { + "period": 151092, + "thread": 22 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 282790, + "thread": 4 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 474037, + "thread": 30 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 626552, + "thread": 5 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 679303, + "thread": 10 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 869521, + "thread": 6 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1139069, + "thread": 18 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1289335, + "thread": 21 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1412617, + "thread": 20 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1624805, + "thread": 4 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1647785, + "thread": 22 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 1888075, + "thread": 5 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2140387, + "thread": 31 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2221884, + "thread": 5 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2434526, + "thread": 16 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2470353, + "thread": 22 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2774810, + "thread": 6 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 2894880, + "thread": 7 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 3039366, + "thread": 26 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 3186625, + "thread": 1 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 3438512, + "thread": 1 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 3462238, + "thread": 0 + } + }, + { + "amount": "268.295791044", + "slot": { + "period": 3762624, + "thread": 4 + } + }, + { + "amount": "268.295791045", + "slot": { + "period": 3848996, + "thread": 22 + } + } + ], + "AU17GDkBB8wChq4k2AeTAT34wSWj8gY5CA1mHJB558gX8a9gmAZ7": [ + { + "amount": "177.473924119", + "slot": { + "period": 52973, + "thread": 7 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 205299, + "thread": 4 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 452296, + "thread": 30 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 594330, + "thread": 3 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 789021, + "thread": 29 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 959061, + "thread": 28 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1023195, + "thread": 27 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1266270, + "thread": 4 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1325149, + "thread": 28 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1523473, + "thread": 30 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1700628, + "thread": 21 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 1962669, + "thread": 19 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2059542, + "thread": 17 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2204447, + "thread": 20 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2407564, + "thread": 25 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2485565, + "thread": 29 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2633043, + "thread": 10 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2907888, + "thread": 6 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 2960005, + "thread": 12 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 3219582, + "thread": 17 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 3306158, + "thread": 12 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 3554049, + "thread": 30 + } + }, + { + "amount": "177.473924119", + "slot": { + "period": 3636968, + "thread": 28 + } + }, + { + "amount": "177.473924126", + "slot": { + "period": 3782332, + "thread": 9 + } + } + ], + "AU17HKq7JS1UQvK9fN9fcK7EtE75wEii3xQW2z1yS3uHJiNvHTKT": [ + { + "amount": "105.158514733", + "slot": { + "period": 132903, + "thread": 18 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 176843, + "thread": 17 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 426622, + "thread": 4 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 637860, + "thread": 26 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 761517, + "thread": 16 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 864753, + "thread": 30 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 994151, + "thread": 21 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 1252259, + "thread": 24 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 1466591, + "thread": 21 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 1610291, + "thread": 3 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 1743524, + "thread": 5 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 1928964, + "thread": 24 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2045502, + "thread": 27 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2250336, + "thread": 11 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2457560, + "thread": 6 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2488389, + "thread": 25 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2744827, + "thread": 24 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 2927811, + "thread": 27 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 3075934, + "thread": 14 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 3221199, + "thread": 2 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 3420252, + "thread": 30 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 3602648, + "thread": 17 + } + }, + { + "amount": "105.158514733", + "slot": { + "period": 3702460, + "thread": 12 + } + }, + { + "amount": "105.158514732", + "slot": { + "period": 3845913, + "thread": 3 + } + } + ], + "AU17HgMawnx6YkK7g2fm8GYe6ZQXRCAFKwQvMaAbPDrPDBrCkmxK": [ + { + "amount": "162.755787332", + "slot": { + "period": 145814, + "thread": 3 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 230837, + "thread": 4 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 356179, + "thread": 25 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 636318, + "thread": 8 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 725854, + "thread": 29 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 900179, + "thread": 0 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1022044, + "thread": 31 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1176681, + "thread": 19 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1474843, + "thread": 15 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1516206, + "thread": 22 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1697313, + "thread": 12 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 1879465, + "thread": 6 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2022619, + "thread": 0 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2283646, + "thread": 23 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2383894, + "thread": 1 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2512263, + "thread": 9 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2728511, + "thread": 27 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 2836634, + "thread": 6 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 3104099, + "thread": 22 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 3235215, + "thread": 10 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 3438990, + "thread": 12 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 3520027, + "thread": 12 + } + }, + { + "amount": "162.755787332", + "slot": { + "period": 3653977, + "thread": 22 + } + }, + { + "amount": "162.755787325", + "slot": { + "period": 3892707, + "thread": 15 + } + } + ], + "AU17HxQkMADtBGStx9hzMmDktx3gh3Evj53Eeo2RBQXoyTootKRt": [ + { + "amount": "140.968293208", + "slot": { + "period": 143593, + "thread": 12 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 236422, + "thread": 26 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 372148, + "thread": 12 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 541802, + "thread": 7 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 735811, + "thread": 9 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 946983, + "thread": 18 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 983462, + "thread": 12 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 1317462, + "thread": 15 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 1392985, + "thread": 7 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 1588035, + "thread": 1 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 1671473, + "thread": 12 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 1884821, + "thread": 21 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2142370, + "thread": 23 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2182206, + "thread": 17 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2342559, + "thread": 20 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2554712, + "thread": 26 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2785528, + "thread": 8 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 2835936, + "thread": 5 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 3096379, + "thread": 15 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 3266305, + "thread": 21 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 3304389, + "thread": 19 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 3548865, + "thread": 11 + } + }, + { + "amount": "140.968293208", + "slot": { + "period": 3743503, + "thread": 20 + } + }, + { + "amount": "140.968293207", + "slot": { + "period": 3780290, + "thread": 30 + } + } + ], + "AU17KRsMHcY2Mce7PWyYWhjJxDyAE3tp6oMqwMCWaqxePBNaHLAt": [ + { + "amount": "147.300269246", + "slot": { + "period": 166639, + "thread": 31 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 248730, + "thread": 9 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 358752, + "thread": 13 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 594486, + "thread": 15 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 679702, + "thread": 10 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 859592, + "thread": 13 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 999908, + "thread": 30 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1301853, + "thread": 1 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1405512, + "thread": 13 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1607897, + "thread": 18 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1672300, + "thread": 27 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1840540, + "thread": 9 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 1977630, + "thread": 3 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2151228, + "thread": 19 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2386427, + "thread": 23 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2600820, + "thread": 21 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2655042, + "thread": 14 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2843677, + "thread": 9 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 2970433, + "thread": 8 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 3153732, + "thread": 15 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 3376611, + "thread": 28 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 3461202, + "thread": 5 + } + }, + { + "amount": "147.300269246", + "slot": { + "period": 3773351, + "thread": 26 + } + }, + { + "amount": "147.300269251", + "slot": { + "period": 3858211, + "thread": 24 + } + } + ], + "AU17L1kwwZKNKy9bHwHHycbLTMEag3WhSzpgm8K7F28yvk5YtoG3": [ + { + "amount": "188.797875910", + "slot": { + "period": 95029, + "thread": 25 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 321342, + "thread": 22 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 488551, + "thread": 21 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 630686, + "thread": 15 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 803082, + "thread": 30 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 982381, + "thread": 22 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1145073, + "thread": 13 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1307586, + "thread": 9 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1416489, + "thread": 10 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1646817, + "thread": 26 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1719011, + "thread": 26 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 1935858, + "thread": 7 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2007270, + "thread": 5 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2218013, + "thread": 29 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2295357, + "thread": 28 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2508493, + "thread": 4 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2766657, + "thread": 1 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 2830971, + "thread": 4 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 3007795, + "thread": 20 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 3204040, + "thread": 5 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 3438586, + "thread": 14 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 3578684, + "thread": 13 + } + }, + { + "amount": "188.797875910", + "slot": { + "period": 3653219, + "thread": 14 + } + }, + { + "amount": "188.797875913", + "slot": { + "period": 3791693, + "thread": 12 + } + } + ], + "AU17LMjbswzSdtnceKduRBqC6xrQXrwU3yTHjBdePRyy6FBa6x1M": [ + { + "amount": "99.611028500", + "slot": { + "period": 60002, + "thread": 2 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 280250, + "thread": 9 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 332528, + "thread": 28 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 571591, + "thread": 24 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 716456, + "thread": 2 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 865705, + "thread": 12 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1015497, + "thread": 12 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1217691, + "thread": 15 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1346859, + "thread": 5 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1552550, + "thread": 19 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1669771, + "thread": 13 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 1894899, + "thread": 22 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2074968, + "thread": 20 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2158342, + "thread": 3 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2439963, + "thread": 19 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2510006, + "thread": 9 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2791064, + "thread": 29 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 2794462, + "thread": 1 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 3013824, + "thread": 30 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 3142000, + "thread": 16 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 3402712, + "thread": 4 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 3517772, + "thread": 9 + } + }, + { + "amount": "99.611028500", + "slot": { + "period": 3774963, + "thread": 5 + } + }, + { + "amount": "99.611028494", + "slot": { + "period": 3943420, + "thread": 21 + } + } + ], + "AU17LsuqcDXMKGp83Rm1WvzcxsSBdRQj5JxAsK13CndssfYimm83": [ + { + "amount": "133.395129580", + "slot": { + "period": 15006, + "thread": 21 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 310446, + "thread": 23 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 473930, + "thread": 14 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 609867, + "thread": 12 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 699802, + "thread": 9 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 981694, + "thread": 3 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1027836, + "thread": 12 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1181631, + "thread": 22 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1387608, + "thread": 16 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1641336, + "thread": 19 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1654129, + "thread": 25 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 1875744, + "thread": 17 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2003949, + "thread": 3 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2229966, + "thread": 16 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2410850, + "thread": 22 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2481511, + "thread": 25 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2775954, + "thread": 1 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2924195, + "thread": 16 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 2973272, + "thread": 1 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 3221040, + "thread": 5 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 3307611, + "thread": 19 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 3465361, + "thread": 20 + } + }, + { + "amount": "133.395129580", + "slot": { + "period": 3723128, + "thread": 10 + } + }, + { + "amount": "133.395129569", + "slot": { + "period": 3934856, + "thread": 7 + } + } + ], + "AU17MKvb5gNopRkfB5SNGSNbwaPaZMXYCB5iBt2J2LHJkCsGsz6Y": [ + { + "amount": "373.767116808", + "slot": { + "period": 60235, + "thread": 15 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 262663, + "thread": 15 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 326692, + "thread": 4 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 640341, + "thread": 6 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 758408, + "thread": 27 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 931368, + "thread": 3 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1085875, + "thread": 15 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1194249, + "thread": 22 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1417592, + "thread": 31 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1581324, + "thread": 27 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1771008, + "thread": 24 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 1950485, + "thread": 10 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2079305, + "thread": 3 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2189620, + "thread": 29 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2342493, + "thread": 7 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2614025, + "thread": 9 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2710098, + "thread": 23 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2853105, + "thread": 6 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 2966142, + "thread": 3 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 3135580, + "thread": 11 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 3432348, + "thread": 11 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 3500354, + "thread": 11 + } + }, + { + "amount": "373.767116808", + "slot": { + "period": 3720921, + "thread": 13 + } + }, + { + "amount": "373.767116818", + "slot": { + "period": 3908730, + "thread": 29 + } + } + ], + "AU17MPcS4tEcvWcAmJyYnFMKNpHiU6bvkecmrC3dNep8Q4gB5UoD": [ + { + "amount": "552.371891918", + "slot": { + "period": 112513, + "thread": 26 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 311469, + "thread": 23 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 355686, + "thread": 7 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 513641, + "thread": 19 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 709171, + "thread": 2 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 948881, + "thread": 6 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1064556, + "thread": 21 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1157704, + "thread": 17 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1452914, + "thread": 0 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1617720, + "thread": 23 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1664625, + "thread": 21 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 1903403, + "thread": 19 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2112356, + "thread": 11 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2240612, + "thread": 25 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2310871, + "thread": 11 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2605303, + "thread": 0 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2712153, + "thread": 8 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 2801788, + "thread": 26 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 3098623, + "thread": 28 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 3195108, + "thread": 4 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 3305632, + "thread": 2 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 3559177, + "thread": 16 + } + }, + { + "amount": "552.371891918", + "slot": { + "period": 3776576, + "thread": 22 + } + }, + { + "amount": "552.371891925", + "slot": { + "period": 3918143, + "thread": 23 + } + } + ], + "AU17PgknKZuWqVZuw3peAoKkosvaJBTGfrBVU72PRApV87bh31kY": [ + { + "amount": "259.785441118", + "slot": { + "period": 81002, + "thread": 29 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 199736, + "thread": 15 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 365110, + "thread": 2 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 507017, + "thread": 19 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 708126, + "thread": 7 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 905464, + "thread": 15 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1064143, + "thread": 21 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1159903, + "thread": 4 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1336567, + "thread": 21 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1628221, + "thread": 25 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1668258, + "thread": 27 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1938289, + "thread": 31 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 1989954, + "thread": 26 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 2224369, + "thread": 19 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 2310127, + "thread": 8 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 2550114, + "thread": 7 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 2790503, + "thread": 2 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 2827749, + "thread": 24 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 3012133, + "thread": 22 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 3201997, + "thread": 15 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 3336647, + "thread": 30 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 3570453, + "thread": 25 + } + }, + { + "amount": "259.785441118", + "slot": { + "period": 3768060, + "thread": 17 + } + }, + { + "amount": "259.785441129", + "slot": { + "period": 3844204, + "thread": 10 + } + } + ], + "AU17QDb4gaLEBuTGM4ypbZse3eEfzDaWB4d4xwDd712EUHJieN8b": [ + { + "amount": "161.871680918", + "slot": { + "period": 105045, + "thread": 28 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 182859, + "thread": 13 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 345398, + "thread": 4 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 633562, + "thread": 17 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 813557, + "thread": 17 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 884927, + "thread": 8 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1122767, + "thread": 11 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1194841, + "thread": 2 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1344451, + "thread": 6 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1583287, + "thread": 8 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1754740, + "thread": 11 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 1965091, + "thread": 4 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2083109, + "thread": 19 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2202620, + "thread": 16 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2456860, + "thread": 6 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2602591, + "thread": 18 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2749346, + "thread": 23 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 2806175, + "thread": 8 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 3015533, + "thread": 7 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 3225130, + "thread": 3 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 3341413, + "thread": 7 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 3523219, + "thread": 25 + } + }, + { + "amount": "161.871680918", + "slot": { + "period": 3669194, + "thread": 31 + } + }, + { + "amount": "161.871680916", + "slot": { + "period": 3845816, + "thread": 7 + } + } + ], + "AU17RTZLYkLpfctcWXo92EZu67qq22XG3Wdv7nqKjzKBRr7TjtQi": [ + { + "amount": "90.937032880", + "slot": { + "period": 57803, + "thread": 12 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 222412, + "thread": 26 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 345496, + "thread": 28 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 609170, + "thread": 18 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 739115, + "thread": 29 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 981374, + "thread": 22 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1039264, + "thread": 10 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1179503, + "thread": 26 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1432928, + "thread": 30 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1606079, + "thread": 9 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1769064, + "thread": 19 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 1878822, + "thread": 14 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2014795, + "thread": 29 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2159544, + "thread": 5 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2309090, + "thread": 24 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2536186, + "thread": 28 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2688798, + "thread": 21 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 2863567, + "thread": 7 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 3083521, + "thread": 25 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 3246058, + "thread": 4 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 3407352, + "thread": 29 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 3476491, + "thread": 2 + } + }, + { + "amount": "90.937032880", + "slot": { + "period": 3677289, + "thread": 27 + } + }, + { + "amount": "90.937032884", + "slot": { + "period": 3896911, + "thread": 21 + } + } + ], + "AU17TABmRZ7CNaw4moVDwSjPnPpHJzCqNihoQStFEyQVr5dkNbeJ": [ + { + "amount": "244.149306266", + "slot": { + "period": 113702, + "thread": 5 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 209928, + "thread": 4 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 442282, + "thread": 15 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 502153, + "thread": 1 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 751738, + "thread": 2 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 861215, + "thread": 19 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1145250, + "thread": 20 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1266693, + "thread": 21 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1418918, + "thread": 25 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1626914, + "thread": 21 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1709958, + "thread": 15 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 1912569, + "thread": 23 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2119966, + "thread": 8 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2164560, + "thread": 29 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2404368, + "thread": 4 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2605220, + "thread": 19 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2717699, + "thread": 15 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2913605, + "thread": 28 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 2961346, + "thread": 16 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 3182434, + "thread": 8 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 3373971, + "thread": 3 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 3557569, + "thread": 0 + } + }, + { + "amount": "244.149306266", + "slot": { + "period": 3709629, + "thread": 2 + } + }, + { + "amount": "244.149306271", + "slot": { + "period": 3883456, + "thread": 20 + } + } + ], + "AU17TBoWiQTQd33ZsYzSerAtqKoLukZtidQ7tDbnJW2zjLh2N73W": [ + { + "amount": "330.539683717", + "slot": { + "period": 52331, + "thread": 11 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 227323, + "thread": 30 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 425055, + "thread": 23 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 589877, + "thread": 3 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 783462, + "thread": 0 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 963280, + "thread": 12 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1034833, + "thread": 4 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1254139, + "thread": 21 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1327172, + "thread": 12 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1589725, + "thread": 9 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1720871, + "thread": 24 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 1918992, + "thread": 2 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2129236, + "thread": 14 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2237423, + "thread": 3 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2341909, + "thread": 6 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2603598, + "thread": 8 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2660587, + "thread": 7 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 2877591, + "thread": 12 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 3008749, + "thread": 2 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 3248097, + "thread": 6 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 3372668, + "thread": 27 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 3463150, + "thread": 11 + } + }, + { + "amount": "330.539683717", + "slot": { + "period": 3745984, + "thread": 16 + } + }, + { + "amount": "330.539683718", + "slot": { + "period": 3830216, + "thread": 25 + } + } + ], + "AU17TdupX6joXAizN3JA92NTi4zrUvQ87Wm56EVpBXWLgPpRMGPR": [ + { + "amount": "263.937309204", + "slot": { + "period": 156140, + "thread": 2 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 224447, + "thread": 9 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 459516, + "thread": 12 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 545540, + "thread": 19 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 669355, + "thread": 11 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 837046, + "thread": 24 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1139933, + "thread": 3 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1191745, + "thread": 25 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1327252, + "thread": 27 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1543263, + "thread": 23 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1664991, + "thread": 3 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1836068, + "thread": 10 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 1979931, + "thread": 29 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2152724, + "thread": 10 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2402999, + "thread": 26 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2594875, + "thread": 23 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2675218, + "thread": 24 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2829621, + "thread": 9 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 2981033, + "thread": 16 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 3124211, + "thread": 2 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 3324808, + "thread": 21 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 3614232, + "thread": 10 + } + }, + { + "amount": "263.937309204", + "slot": { + "period": 3687007, + "thread": 20 + } + }, + { + "amount": "263.937309203", + "slot": { + "period": 3881541, + "thread": 27 + } + } + ], + "AU17Vv41SrHwFGgBpPvdS8gmyzPXLKwQ7MmZMdgkekUfGcsxTGV2": [ + { + "amount": "81.843148973", + "slot": { + "period": 62468, + "thread": 19 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 290070, + "thread": 23 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 450712, + "thread": 27 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 539999, + "thread": 31 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 815389, + "thread": 0 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 971511, + "thread": 29 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1142928, + "thread": 27 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1286283, + "thread": 2 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1341500, + "thread": 24 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1586257, + "thread": 18 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1693703, + "thread": 9 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1886919, + "thread": 9 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 1992307, + "thread": 18 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 2152808, + "thread": 2 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 2422741, + "thread": 29 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 2509388, + "thread": 23 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 2626214, + "thread": 4 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 2892942, + "thread": 29 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 3061442, + "thread": 3 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 3267903, + "thread": 11 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 3400815, + "thread": 24 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 3483485, + "thread": 8 + } + }, + { + "amount": "81.843148973", + "slot": { + "period": 3775999, + "thread": 18 + } + }, + { + "amount": "81.843148968", + "slot": { + "period": 3878994, + "thread": 10 + } + } + ], + "AU17Vwc3j2cn1eWjnNUj6ySsqWKcwwXGHsBHZWWAQpj8kWHyVsrs": [ + { + "amount": "212.475756999", + "slot": { + "period": 67025, + "thread": 26 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 304655, + "thread": 20 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 470300, + "thread": 3 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 518450, + "thread": 17 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 725381, + "thread": 16 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 907985, + "thread": 13 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 985506, + "thread": 26 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1252307, + "thread": 26 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1430480, + "thread": 30 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1559590, + "thread": 16 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1661652, + "thread": 14 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1895775, + "thread": 27 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 1988291, + "thread": 17 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 2210061, + "thread": 14 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 2331577, + "thread": 24 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 2535780, + "thread": 16 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 2674941, + "thread": 8 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 2936980, + "thread": 20 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 3000130, + "thread": 12 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 3133472, + "thread": 0 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 3436132, + "thread": 26 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 3607357, + "thread": 31 + } + }, + { + "amount": "212.475756999", + "slot": { + "period": 3714386, + "thread": 17 + } + }, + { + "amount": "212.475757006", + "slot": { + "period": 3849094, + "thread": 22 + } + } + ], + "AU17WhfdKhyWr5byHJvQPe1jryREVAT26wDT2TGjGC753F4g86tG": [ + { + "amount": "399.453419452", + "slot": { + "period": 88290, + "thread": 11 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 194812, + "thread": 18 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 343089, + "thread": 6 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 521737, + "thread": 21 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 683221, + "thread": 18 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 965414, + "thread": 11 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1037711, + "thread": 12 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1305011, + "thread": 6 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1408286, + "thread": 11 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1590675, + "thread": 2 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1753304, + "thread": 8 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 1823636, + "thread": 19 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2065433, + "thread": 22 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2200989, + "thread": 17 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2311315, + "thread": 18 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2485283, + "thread": 0 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2772406, + "thread": 11 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 2950978, + "thread": 28 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 3022940, + "thread": 30 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 3198736, + "thread": 4 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 3414200, + "thread": 28 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 3536073, + "thread": 11 + } + }, + { + "amount": "399.453419452", + "slot": { + "period": 3746360, + "thread": 7 + } + }, + { + "amount": "399.453419443", + "slot": { + "period": 3933967, + "thread": 8 + } + } + ], + "AU17XyptxQUc8CnrdGfy9FwVudqME5zsqKPpashUw3de6x6xb8Wh": [ + { + "amount": "230.025340477", + "slot": { + "period": 30736, + "thread": 21 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 176867, + "thread": 6 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 423867, + "thread": 31 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 554199, + "thread": 19 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 725547, + "thread": 7 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 968996, + "thread": 19 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1068810, + "thread": 31 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1284413, + "thread": 7 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1321372, + "thread": 15 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1496094, + "thread": 30 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1750829, + "thread": 22 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 1866394, + "thread": 20 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2102979, + "thread": 4 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2276038, + "thread": 15 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2326665, + "thread": 30 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2602039, + "thread": 30 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2721572, + "thread": 21 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 2855091, + "thread": 1 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 3081228, + "thread": 29 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 3243396, + "thread": 21 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 3370449, + "thread": 20 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 3547185, + "thread": 27 + } + }, + { + "amount": "230.025340477", + "slot": { + "period": 3694101, + "thread": 21 + } + }, + { + "amount": "230.025340476", + "slot": { + "period": 3944729, + "thread": 22 + } + } + ], + "AU17YLYKbWCxn2KSNgHcn9pm5Pc43DHGQG54QFF74ok9CgAtrCY1": [ + { + "amount": "433.036897972", + "slot": { + "period": 101793, + "thread": 11 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 319222, + "thread": 14 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 324771, + "thread": 28 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 624221, + "thread": 13 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 670599, + "thread": 14 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 904001, + "thread": 16 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1099276, + "thread": 26 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1164101, + "thread": 21 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1408375, + "thread": 22 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1622637, + "thread": 8 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1768200, + "thread": 28 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 1882732, + "thread": 12 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2022864, + "thread": 23 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2182791, + "thread": 15 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2418694, + "thread": 16 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2536715, + "thread": 0 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2693384, + "thread": 16 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 2921267, + "thread": 18 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 3083859, + "thread": 16 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 3224753, + "thread": 21 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 3432194, + "thread": 8 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 3596721, + "thread": 23 + } + }, + { + "amount": "433.036897972", + "slot": { + "period": 3755383, + "thread": 5 + } + }, + { + "amount": "433.036897977", + "slot": { + "period": 3837947, + "thread": 9 + } + } + ], + "AU17YRFBDeLQD9pzHxqqBRXEZ15N8f7V3SMxwzNkrXCrrv8oomHP": [ + { + "amount": "239.187008450", + "slot": { + "period": 151887, + "thread": 0 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 195120, + "thread": 21 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 433670, + "thread": 5 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 643665, + "thread": 17 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 719430, + "thread": 3 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 822833, + "thread": 25 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1088067, + "thread": 26 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1176595, + "thread": 21 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1410097, + "thread": 14 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1510053, + "thread": 11 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1654762, + "thread": 9 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 1900815, + "thread": 16 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2092188, + "thread": 29 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2187277, + "thread": 12 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2404371, + "thread": 0 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2488756, + "thread": 15 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2759182, + "thread": 17 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 2812258, + "thread": 7 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 3011087, + "thread": 20 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 3227064, + "thread": 21 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 3374973, + "thread": 28 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 3511776, + "thread": 24 + } + }, + { + "amount": "239.187008450", + "slot": { + "period": 3621468, + "thread": 2 + } + }, + { + "amount": "239.187008452", + "slot": { + "period": 3930560, + "thread": 18 + } + } + ], + "AU17Yos3WdELiJXkDufiKAZXEmgTyaKpz2GfUb1RckmdJwe5kNSe": [ + { + "amount": "87.416944233", + "slot": { + "period": 153343, + "thread": 31 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 278773, + "thread": 30 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 335443, + "thread": 15 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 641235, + "thread": 31 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 750726, + "thread": 7 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 867149, + "thread": 26 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1075561, + "thread": 27 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1264695, + "thread": 9 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1323115, + "thread": 11 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1553292, + "thread": 24 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1655141, + "thread": 29 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 1826753, + "thread": 0 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2053018, + "thread": 20 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2250743, + "thread": 23 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2411203, + "thread": 0 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2506078, + "thread": 27 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2714080, + "thread": 22 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 2898576, + "thread": 0 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 3029900, + "thread": 20 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 3245803, + "thread": 0 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 3406818, + "thread": 5 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 3498553, + "thread": 30 + } + }, + { + "amount": "87.416944233", + "slot": { + "period": 3708064, + "thread": 22 + } + }, + { + "amount": "87.416944235", + "slot": { + "period": 3911113, + "thread": 1 + } + } + ], + "AU17YxPu2hf3yNj7JjEcBJcHowQEXpLQGu8KyRGai4DbQHLzLXZP": [ + { + "amount": "109.817193807", + "slot": { + "period": 124031, + "thread": 9 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 191669, + "thread": 26 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 437111, + "thread": 18 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 649372, + "thread": 7 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 687164, + "thread": 27 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 896444, + "thread": 22 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1072159, + "thread": 11 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1301841, + "thread": 19 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1323240, + "thread": 1 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1505566, + "thread": 27 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1807936, + "thread": 1 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1920513, + "thread": 16 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 1984061, + "thread": 18 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 2275516, + "thread": 24 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 2395182, + "thread": 29 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 2550047, + "thread": 26 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 2637979, + "thread": 24 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 2872297, + "thread": 5 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 3104013, + "thread": 27 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 3265115, + "thread": 16 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 3386413, + "thread": 9 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 3531643, + "thread": 3 + } + }, + { + "amount": "109.817193807", + "slot": { + "period": 3641993, + "thread": 15 + } + }, + { + "amount": "109.817193802", + "slot": { + "period": 3789403, + "thread": 30 + } + } + ], + "AU17ZoCs82bNPYjUvK77QtLecJB6TXNNKa8VEi5wMGKoR8tbwCtF": [ + { + "amount": "431.528267854", + "slot": { + "period": 145966, + "thread": 28 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 253484, + "thread": 12 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 355292, + "thread": 22 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 543462, + "thread": 12 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 693202, + "thread": 13 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 981808, + "thread": 6 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1003953, + "thread": 2 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1296223, + "thread": 9 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1450146, + "thread": 22 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1548964, + "thread": 6 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1725118, + "thread": 24 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 1939618, + "thread": 27 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2040002, + "thread": 1 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2219449, + "thread": 25 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2387410, + "thread": 31 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2609694, + "thread": 28 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2648213, + "thread": 28 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 2793523, + "thread": 13 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 3107177, + "thread": 13 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 3269447, + "thread": 11 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 3403511, + "thread": 9 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 3573453, + "thread": 9 + } + }, + { + "amount": "431.528267854", + "slot": { + "period": 3644558, + "thread": 2 + } + }, + { + "amount": "431.528267857", + "slot": { + "period": 3846391, + "thread": 27 + } + } + ], + "AU17a4gKXzAQiuorHKDtD22AX1xNUKnRtimsXtVbnZwaqaGqFmuk": [ + { + "amount": "729.166666667", + "slot": { + "period": 66132, + "thread": 6 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 204264, + "thread": 4 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 325416, + "thread": 26 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 602102, + "thread": 5 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 686697, + "thread": 7 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 827317, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1075033, + "thread": 4 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1271110, + "thread": 20 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1466219, + "thread": 16 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1637101, + "thread": 18 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1654471, + "thread": 10 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1828773, + "thread": 26 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2141286, + "thread": 0 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2179458, + "thread": 2 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2405591, + "thread": 21 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2538164, + "thread": 26 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2630130, + "thread": 12 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2853404, + "thread": 30 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2967100, + "thread": 6 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3204390, + "thread": 14 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3379868, + "thread": 7 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3450989, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3748192, + "thread": 12 + } + }, + { + "amount": "729.166666659", + "slot": { + "period": 3838746, + "thread": 4 + } + } + ], + "AU17bFtKVuZ2qzdkpSbZzCLv1w3A4oQfJVdme2Yvx26YVR9njP1y": [ + { + "amount": "148.429378981", + "slot": { + "period": 131556, + "thread": 0 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 210833, + "thread": 10 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 478017, + "thread": 25 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 630237, + "thread": 8 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 685114, + "thread": 9 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 860692, + "thread": 13 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1129003, + "thread": 30 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1195217, + "thread": 26 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1427596, + "thread": 1 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1559012, + "thread": 6 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1652776, + "thread": 11 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 1887467, + "thread": 7 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2056508, + "thread": 15 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2152812, + "thread": 19 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2329474, + "thread": 6 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2565225, + "thread": 7 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2713635, + "thread": 19 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 2861271, + "thread": 28 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 3099095, + "thread": 15 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 3240498, + "thread": 8 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 3446350, + "thread": 28 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 3497837, + "thread": 5 + } + }, + { + "amount": "148.429378981", + "slot": { + "period": 3636931, + "thread": 25 + } + }, + { + "amount": "148.429378977", + "slot": { + "period": 3820148, + "thread": 3 + } + } + ], + "AU17bf8Pb9NnwbxSvrhGe6FMLt6tFk5Em5RqfBCvrKYNwgfy2Hox": [ + { + "amount": "115.897107764", + "slot": { + "period": 19873, + "thread": 28 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 186805, + "thread": 27 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 454191, + "thread": 10 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 547549, + "thread": 31 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 730681, + "thread": 26 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 964164, + "thread": 17 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1065535, + "thread": 8 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1267587, + "thread": 14 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1352575, + "thread": 23 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1541165, + "thread": 24 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1748589, + "thread": 3 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1920385, + "thread": 22 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 1989091, + "thread": 26 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 2249413, + "thread": 19 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 2345680, + "thread": 14 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 2542443, + "thread": 17 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 2781260, + "thread": 13 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 2912530, + "thread": 30 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 3002675, + "thread": 16 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 3247113, + "thread": 28 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 3371144, + "thread": 21 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 3479729, + "thread": 4 + } + }, + { + "amount": "115.897107764", + "slot": { + "period": 3729403, + "thread": 8 + } + }, + { + "amount": "115.897107753", + "slot": { + "period": 3832194, + "thread": 19 + } + } + ], + "AU17bgMdH57kgMMQSQS3L9rufSyT3VRDe2DNQudxkvjrnvfUCria": [ + { + "amount": "440.297883799", + "slot": { + "period": 49855, + "thread": 21 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 216400, + "thread": 30 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 481344, + "thread": 2 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 643454, + "thread": 6 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 728199, + "thread": 10 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 920640, + "thread": 23 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1006044, + "thread": 17 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1235361, + "thread": 28 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1340326, + "thread": 11 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1614797, + "thread": 16 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1712201, + "thread": 4 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 1971975, + "thread": 11 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2131381, + "thread": 6 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2219972, + "thread": 29 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2396895, + "thread": 2 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2486845, + "thread": 16 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2789455, + "thread": 22 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 2870827, + "thread": 20 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3118105, + "thread": 30 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3172267, + "thread": 30 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3367987, + "thread": 13 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3572278, + "thread": 1 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3644398, + "thread": 30 + } + }, + { + "amount": "440.297883799", + "slot": { + "period": 3843718, + "thread": 0 + } + } + ], + "AU17c6CMsec3gUyj871wH9pTEHUkEyCPnJeh14e3tE1iizqnXC3i": [ + { + "amount": "134.473476972", + "slot": { + "period": 29541, + "thread": 12 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 311766, + "thread": 13 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 466111, + "thread": 3 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 546908, + "thread": 2 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 668004, + "thread": 25 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 913031, + "thread": 0 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1126924, + "thread": 23 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1169581, + "thread": 14 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1361109, + "thread": 25 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1617442, + "thread": 1 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1661658, + "thread": 9 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1886779, + "thread": 28 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 1995518, + "thread": 1 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 2208037, + "thread": 12 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 2452845, + "thread": 10 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 2495257, + "thread": 4 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 2713018, + "thread": 8 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 2825478, + "thread": 28 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 3030949, + "thread": 7 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 3208265, + "thread": 18 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 3438737, + "thread": 31 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 3528087, + "thread": 30 + } + }, + { + "amount": "134.473476972", + "slot": { + "period": 3728440, + "thread": 22 + } + }, + { + "amount": "134.473476964", + "slot": { + "period": 3931205, + "thread": 7 + } + } + ], + "AU17dTsBeS1K3qrbqRXHmMoECpfWTv5XziTr3UCYxMjykRNDoufZ": [ + { + "amount": "127.258885293", + "slot": { + "period": 45871, + "thread": 17 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 238888, + "thread": 13 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 405146, + "thread": 30 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 508057, + "thread": 10 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 685359, + "thread": 0 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 916974, + "thread": 9 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1098900, + "thread": 6 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1177840, + "thread": 29 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1334953, + "thread": 19 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1585078, + "thread": 0 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1745668, + "thread": 18 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 1821224, + "thread": 31 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2127845, + "thread": 9 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2233414, + "thread": 28 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2417502, + "thread": 19 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2486392, + "thread": 7 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2781271, + "thread": 28 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2865035, + "thread": 3 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 2962006, + "thread": 20 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 3188727, + "thread": 28 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 3306592, + "thread": 14 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 3515747, + "thread": 9 + } + }, + { + "amount": "127.258885293", + "slot": { + "period": 3742069, + "thread": 14 + } + }, + { + "amount": "127.258885302", + "slot": { + "period": 3808654, + "thread": 5 + } + } + ], + "AU17dxJJk6VXJ1jWiERCMZbV7ofQ8pxq5Hfbtw6nJ1q9D8xYvdEM": [ + { + "amount": "74.044056077", + "slot": { + "period": 53294, + "thread": 26 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 225572, + "thread": 30 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 425977, + "thread": 2 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 531353, + "thread": 12 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 776037, + "thread": 2 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 964676, + "thread": 17 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1117846, + "thread": 14 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1260163, + "thread": 12 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1462376, + "thread": 13 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1609934, + "thread": 6 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1702905, + "thread": 24 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 1932305, + "thread": 9 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2062284, + "thread": 26 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2206461, + "thread": 6 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2400158, + "thread": 13 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2619430, + "thread": 31 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2774903, + "thread": 19 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 2915290, + "thread": 21 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 3118492, + "thread": 10 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 3249441, + "thread": 1 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 3355879, + "thread": 10 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 3465084, + "thread": 29 + } + }, + { + "amount": "74.044056077", + "slot": { + "period": 3679757, + "thread": 23 + } + }, + { + "amount": "74.044056085", + "slot": { + "period": 3882215, + "thread": 20 + } + } + ], + "AU17eEyQyGxdkj5pWDe2qxFhkWFWkqhsFaXr6Ek4FKagcDDjHg3r": [ + { + "amount": "222.986812640", + "slot": { + "period": 102735, + "thread": 9 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 186425, + "thread": 7 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 414196, + "thread": 2 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 528549, + "thread": 19 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 658118, + "thread": 28 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 946164, + "thread": 3 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1023165, + "thread": 12 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1202157, + "thread": 23 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1330049, + "thread": 2 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1570196, + "thread": 13 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1704732, + "thread": 12 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 1875126, + "thread": 4 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2107315, + "thread": 3 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2183771, + "thread": 13 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2435294, + "thread": 2 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2532032, + "thread": 14 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2780322, + "thread": 30 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 2842813, + "thread": 26 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 3011448, + "thread": 9 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 3206821, + "thread": 16 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 3327630, + "thread": 26 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 3564885, + "thread": 4 + } + }, + { + "amount": "222.986812640", + "slot": { + "period": 3642605, + "thread": 18 + } + }, + { + "amount": "222.986812642", + "slot": { + "period": 3944727, + "thread": 9 + } + } + ], + "AU17eZj8wGdxfW58ZCY2XsdMRQMLVHzcf88eywKDfWUgmcHX4jRd": [ + { + "amount": "145.223554862", + "slot": { + "period": 28915, + "thread": 30 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 283466, + "thread": 0 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 348409, + "thread": 24 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 539358, + "thread": 15 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 660308, + "thread": 15 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 868486, + "thread": 6 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1133702, + "thread": 26 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1184423, + "thread": 19 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1378438, + "thread": 5 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1632395, + "thread": 4 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1708107, + "thread": 25 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 1970340, + "thread": 13 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2084285, + "thread": 22 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2235881, + "thread": 9 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2383810, + "thread": 24 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2469382, + "thread": 17 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2777356, + "thread": 19 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 2942183, + "thread": 7 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 3103803, + "thread": 12 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 3126414, + "thread": 5 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 3367064, + "thread": 16 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 3525772, + "thread": 22 + } + }, + { + "amount": "145.223554862", + "slot": { + "period": 3764164, + "thread": 29 + } + }, + { + "amount": "145.223554855", + "slot": { + "period": 3940224, + "thread": 26 + } + } + ], + "AU17fFuFSfAQrz7JSguDaWobz6icYqZ5mpLu66fY8HQQj4o17LXs": [ + { + "amount": "220.509428382", + "slot": { + "period": 12423, + "thread": 6 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 270159, + "thread": 9 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 407363, + "thread": 20 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 544007, + "thread": 28 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 814851, + "thread": 1 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 904726, + "thread": 9 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1120616, + "thread": 27 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1264214, + "thread": 23 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1398167, + "thread": 9 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1567777, + "thread": 28 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1685656, + "thread": 30 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 1857208, + "thread": 31 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2114729, + "thread": 17 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2244295, + "thread": 31 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2428041, + "thread": 11 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2578574, + "thread": 19 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2681155, + "thread": 9 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 2939743, + "thread": 0 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 3059348, + "thread": 5 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 3138953, + "thread": 27 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 3388566, + "thread": 16 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 3489056, + "thread": 17 + } + }, + { + "amount": "220.509428382", + "slot": { + "period": 3703781, + "thread": 10 + } + }, + { + "amount": "220.509428390", + "slot": { + "period": 3923762, + "thread": 20 + } + } + ], + "AU17fJTEnEbWais7wTiPaGzx5amTq6bzuCBuNhh5t9AJKQPbtLDC": [ + { + "amount": "100.853647790", + "slot": { + "period": 23946, + "thread": 2 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 305694, + "thread": 23 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 408380, + "thread": 25 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 592594, + "thread": 9 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 671711, + "thread": 15 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 850191, + "thread": 21 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1072072, + "thread": 26 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1285400, + "thread": 27 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1341307, + "thread": 18 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1544795, + "thread": 20 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1654033, + "thread": 27 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 1961236, + "thread": 16 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2083282, + "thread": 2 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2177332, + "thread": 7 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2323956, + "thread": 10 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2502684, + "thread": 30 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2629142, + "thread": 26 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 2904360, + "thread": 8 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 3062136, + "thread": 20 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 3225311, + "thread": 25 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 3379539, + "thread": 21 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 3560384, + "thread": 19 + } + }, + { + "amount": "100.853647790", + "slot": { + "period": 3740884, + "thread": 31 + } + }, + { + "amount": "100.853647778", + "slot": { + "period": 3828599, + "thread": 1 + } + } + ], + "AU17fK8s1VoJoQRBbExaF5vdhY7kb56Y7QZDfmhYvw9Te65KkEUy": [ + { + "amount": "439.226310170", + "slot": { + "period": 88829, + "thread": 7 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 278473, + "thread": 11 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 400152, + "thread": 14 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 570302, + "thread": 0 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 711465, + "thread": 6 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 880875, + "thread": 16 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1146877, + "thread": 18 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1197219, + "thread": 21 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1432602, + "thread": 23 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1636294, + "thread": 20 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1763112, + "thread": 17 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 1859042, + "thread": 5 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2106917, + "thread": 17 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2193954, + "thread": 3 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2362250, + "thread": 2 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2542431, + "thread": 17 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2644581, + "thread": 20 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 2804526, + "thread": 6 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 3117327, + "thread": 5 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 3271874, + "thread": 7 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 3449772, + "thread": 8 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 3482314, + "thread": 26 + } + }, + { + "amount": "439.226310170", + "slot": { + "period": 3625399, + "thread": 0 + } + }, + { + "amount": "439.226310175", + "slot": { + "period": 3815957, + "thread": 17 + } + } + ], + "AU17fstEJXUrQ15ghpzAmPTvprVjQ3Baew5hwMnK7RTc8QoGSzCD": [ + { + "amount": "122.359889497", + "slot": { + "period": 78881, + "thread": 21 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 180520, + "thread": 1 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 453809, + "thread": 20 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 562603, + "thread": 27 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 756718, + "thread": 20 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 952704, + "thread": 21 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1072285, + "thread": 2 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1302969, + "thread": 22 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1477737, + "thread": 3 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1515225, + "thread": 1 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1712149, + "thread": 21 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 1971165, + "thread": 4 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2128587, + "thread": 26 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2186310, + "thread": 17 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2379330, + "thread": 31 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2566023, + "thread": 19 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2727566, + "thread": 28 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2852941, + "thread": 0 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 2978804, + "thread": 21 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 3282571, + "thread": 22 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 3297828, + "thread": 19 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 3532956, + "thread": 30 + } + }, + { + "amount": "122.359889497", + "slot": { + "period": 3629433, + "thread": 24 + } + }, + { + "amount": "122.359889498", + "slot": { + "period": 3846796, + "thread": 22 + } + } + ], + "AU17fuSjL2e2VL8Cjvm9do8SLUjMnCPcLbz6gtF3fu5u5BRVqiU6": [ + { + "amount": "624.955731571", + "slot": { + "period": 26842, + "thread": 28 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 232603, + "thread": 7 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 443878, + "thread": 20 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 514577, + "thread": 29 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 685445, + "thread": 5 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 975662, + "thread": 11 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1083983, + "thread": 12 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1177864, + "thread": 21 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1382609, + "thread": 6 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1482246, + "thread": 12 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1710472, + "thread": 22 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 1831440, + "thread": 11 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2004957, + "thread": 9 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2220239, + "thread": 31 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2310315, + "thread": 29 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2508557, + "thread": 10 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2685910, + "thread": 12 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 2803838, + "thread": 4 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 3103752, + "thread": 18 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 3212203, + "thread": 10 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 3294566, + "thread": 18 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 3517651, + "thread": 27 + } + }, + { + "amount": "624.955731571", + "slot": { + "period": 3721948, + "thread": 15 + } + }, + { + "amount": "624.955731560", + "slot": { + "period": 3796128, + "thread": 28 + } + } + ], + "AU17g98rCErvnWku7U6n7kBPTa9pEtTB1V1K2V1yWoKrDFFxX2d4": [ + { + "amount": "64.759925580", + "slot": { + "period": 121252, + "thread": 0 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 243273, + "thread": 20 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 386433, + "thread": 5 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 609434, + "thread": 16 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 744623, + "thread": 31 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 894201, + "thread": 29 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1124410, + "thread": 4 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1240357, + "thread": 9 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1406097, + "thread": 27 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1505051, + "thread": 6 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1670512, + "thread": 2 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 1810640, + "thread": 19 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2140895, + "thread": 15 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2163911, + "thread": 24 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2362013, + "thread": 26 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2495762, + "thread": 28 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2687330, + "thread": 6 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 2895510, + "thread": 1 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 3073112, + "thread": 14 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 3216351, + "thread": 3 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 3320597, + "thread": 16 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 3588794, + "thread": 9 + } + }, + { + "amount": "64.759925580", + "slot": { + "period": 3672830, + "thread": 16 + } + }, + { + "amount": "64.759925591", + "slot": { + "period": 3876935, + "thread": 16 + } + } + ], + "AU17gLq1YvpWasZrhCHVFdVd2pWLjMXvXZRpNDSEAWL8bjoYD7vf": [ + { + "amount": "200.366091044", + "slot": { + "period": 87756, + "thread": 22 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 196723, + "thread": 4 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 384566, + "thread": 30 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 545045, + "thread": 2 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 690799, + "thread": 31 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 886997, + "thread": 26 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1143042, + "thread": 20 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1193201, + "thread": 26 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1372700, + "thread": 21 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1604880, + "thread": 2 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1703577, + "thread": 8 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 1942904, + "thread": 29 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2067939, + "thread": 19 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2149792, + "thread": 17 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2359314, + "thread": 5 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2529009, + "thread": 25 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2745318, + "thread": 26 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2881450, + "thread": 23 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 2963735, + "thread": 1 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 3150101, + "thread": 20 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 3418874, + "thread": 9 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 3550283, + "thread": 11 + } + }, + { + "amount": "200.366091044", + "slot": { + "period": 3775664, + "thread": 21 + } + }, + { + "amount": "200.366091046", + "slot": { + "period": 3809169, + "thread": 27 + } + } + ], + "AU17gcnDv2Sjkz9uJYaJoYctEbgyE5yNr2hTPUaCuz1Xq2RXa8JQ": [ + { + "amount": "66.767337145", + "slot": { + "period": 145553, + "thread": 2 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 280194, + "thread": 1 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 344519, + "thread": 9 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 509034, + "thread": 19 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 697673, + "thread": 17 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 873953, + "thread": 6 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1132935, + "thread": 28 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1222347, + "thread": 9 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1452217, + "thread": 6 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1502244, + "thread": 25 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1766536, + "thread": 0 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 1912798, + "thread": 14 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2118930, + "thread": 18 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2285827, + "thread": 19 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2352842, + "thread": 28 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2488175, + "thread": 16 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2727237, + "thread": 31 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2886218, + "thread": 7 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 2955163, + "thread": 27 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 3259450, + "thread": 3 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 3337531, + "thread": 23 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 3535539, + "thread": 13 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 3635168, + "thread": 10 + } + }, + { + "amount": "66.767337145", + "slot": { + "period": 3825027, + "thread": 26 + } + } + ], + "AU17h5sGShhaKy9PdyxshZsxeBUTiryrfbkMsequ2L5j86QAHPo9": [ + { + "amount": "143.626495565", + "slot": { + "period": 106024, + "thread": 27 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 314140, + "thread": 12 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 466008, + "thread": 19 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 512883, + "thread": 26 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 787899, + "thread": 31 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 969532, + "thread": 18 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1122721, + "thread": 7 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1259458, + "thread": 0 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1365863, + "thread": 9 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1637227, + "thread": 28 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1727578, + "thread": 22 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 1819641, + "thread": 28 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2011590, + "thread": 8 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2222396, + "thread": 15 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2364203, + "thread": 24 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2621491, + "thread": 14 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2676610, + "thread": 27 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 2810625, + "thread": 7 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 3066751, + "thread": 11 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 3277796, + "thread": 11 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 3324635, + "thread": 30 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 3525982, + "thread": 6 + } + }, + { + "amount": "143.626495565", + "slot": { + "period": 3635927, + "thread": 7 + } + }, + { + "amount": "143.626495570", + "slot": { + "period": 3786766, + "thread": 6 + } + } + ], + "AU17hSEiA9w2zimoaAqMUpLzMChJSv6EeNFKh3Q754vb79qtsd4s": [ + { + "amount": "121.552990708", + "slot": { + "period": 116539, + "thread": 6 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 200182, + "thread": 29 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 450910, + "thread": 21 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 633954, + "thread": 11 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 718697, + "thread": 1 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 959832, + "thread": 30 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1133533, + "thread": 9 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1250621, + "thread": 0 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1428515, + "thread": 13 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1483856, + "thread": 11 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1758109, + "thread": 16 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 1809260, + "thread": 16 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2075100, + "thread": 14 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2249426, + "thread": 28 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2453110, + "thread": 0 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2588661, + "thread": 6 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2739267, + "thread": 19 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 2940370, + "thread": 25 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 3003594, + "thread": 19 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 3181372, + "thread": 31 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 3389788, + "thread": 18 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 3529040, + "thread": 19 + } + }, + { + "amount": "121.552990708", + "slot": { + "period": 3774565, + "thread": 11 + } + }, + { + "amount": "121.552990699", + "slot": { + "period": 3869596, + "thread": 18 + } + } + ], + "AU17jbcBCq6pN65utSWcmTnqxEJCg5pmqMdE32aFUgdU2bxdQT8S": [ + { + "amount": "100.940408984", + "slot": { + "period": 26038, + "thread": 11 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 252255, + "thread": 30 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 347638, + "thread": 14 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 642785, + "thread": 10 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 786604, + "thread": 0 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 931426, + "thread": 0 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 996662, + "thread": 5 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 1251399, + "thread": 14 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 1423290, + "thread": 4 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 1513966, + "thread": 7 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 1801673, + "thread": 3 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 1972885, + "thread": 26 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2018947, + "thread": 27 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2252299, + "thread": 23 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2363945, + "thread": 17 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2544375, + "thread": 0 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2661536, + "thread": 22 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 2949099, + "thread": 18 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 3000934, + "thread": 0 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 3135536, + "thread": 20 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 3391203, + "thread": 2 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 3561450, + "thread": 29 + } + }, + { + "amount": "100.940408984", + "slot": { + "period": 3653492, + "thread": 1 + } + }, + { + "amount": "100.940408989", + "slot": { + "period": 3887241, + "thread": 14 + } + } + ], + "AU17k3Xiv7wkn5mEKuXPfpoAsJMkndXoYBdAhvV4hLxLBBAJsYzB": [ + { + "amount": "86.789970353", + "slot": { + "period": 44581, + "thread": 18 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 279314, + "thread": 1 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 343433, + "thread": 30 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 623022, + "thread": 30 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 795131, + "thread": 31 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 873545, + "thread": 9 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1064900, + "thread": 13 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1232196, + "thread": 20 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1459386, + "thread": 0 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1566477, + "thread": 10 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1744920, + "thread": 19 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 1850886, + "thread": 0 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2096969, + "thread": 24 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2257808, + "thread": 13 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2461476, + "thread": 26 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2619076, + "thread": 0 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2666295, + "thread": 6 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2821995, + "thread": 15 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 2964994, + "thread": 5 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 3249985, + "thread": 10 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 3410448, + "thread": 18 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 3617810, + "thread": 25 + } + }, + { + "amount": "86.789970353", + "slot": { + "period": 3712647, + "thread": 10 + } + }, + { + "amount": "86.789970342", + "slot": { + "period": 3800413, + "thread": 2 + } + } + ], + "AU17kcmwLL7Yv3XwA5b1EkfHfimTMV21q37QC1w46cVsdYi2BBJf": [ + { + "amount": "289.790109620", + "slot": { + "period": 146386, + "thread": 0 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 217660, + "thread": 26 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 392506, + "thread": 12 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 564009, + "thread": 28 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 788856, + "thread": 21 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 836373, + "thread": 16 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1009007, + "thread": 14 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1244556, + "thread": 26 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1467911, + "thread": 21 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1517278, + "thread": 1 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1775441, + "thread": 31 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 1817474, + "thread": 22 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2032301, + "thread": 24 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2165612, + "thread": 25 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2388754, + "thread": 1 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2591423, + "thread": 5 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2627852, + "thread": 7 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2936244, + "thread": 27 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 2998678, + "thread": 12 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 3264820, + "thread": 25 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 3341836, + "thread": 7 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 3512151, + "thread": 9 + } + }, + { + "amount": "289.790109620", + "slot": { + "period": 3747052, + "thread": 7 + } + }, + { + "amount": "289.790109631", + "slot": { + "period": 3786936, + "thread": 14 + } + } + ], + "AU17maHN2K435qt4vgJDSNC69yTAkfA6PTBt98TWAzXo3bUAWZvC": [ + { + "amount": "104.054168072", + "slot": { + "period": 117678, + "thread": 25 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 287006, + "thread": 24 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 419628, + "thread": 13 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 565554, + "thread": 14 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 777120, + "thread": 15 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 904296, + "thread": 26 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1060406, + "thread": 29 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1208560, + "thread": 13 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1392666, + "thread": 15 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1516781, + "thread": 24 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1745881, + "thread": 7 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 1898086, + "thread": 10 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2057423, + "thread": 11 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2288179, + "thread": 4 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2347651, + "thread": 10 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2509902, + "thread": 18 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2755516, + "thread": 0 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 2869741, + "thread": 18 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 3060824, + "thread": 11 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 3223846, + "thread": 1 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 3339274, + "thread": 17 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 3476237, + "thread": 20 + } + }, + { + "amount": "104.054168072", + "slot": { + "period": 3711749, + "thread": 23 + } + }, + { + "amount": "104.054168082", + "slot": { + "period": 3880401, + "thread": 3 + } + } + ], + "AU17msYdmrobKGpK5Pc6yirV1K1Zjd5jF35nSAK7zyM9C8wCAUMP": [ + { + "amount": "525.655115232", + "slot": { + "period": 84656, + "thread": 0 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 172098, + "thread": 13 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 420981, + "thread": 1 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 491438, + "thread": 26 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 815934, + "thread": 27 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 959493, + "thread": 9 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 997616, + "thread": 19 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 1289824, + "thread": 12 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 1369792, + "thread": 8 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 1525110, + "thread": 9 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 1688206, + "thread": 11 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 1821719, + "thread": 19 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2140763, + "thread": 19 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2290705, + "thread": 22 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2384531, + "thread": 17 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2592280, + "thread": 3 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2739777, + "thread": 29 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2932347, + "thread": 4 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 2960742, + "thread": 30 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 3277106, + "thread": 0 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 3341632, + "thread": 9 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 3451587, + "thread": 6 + } + }, + { + "amount": "525.655115232", + "slot": { + "period": 3677575, + "thread": 9 + } + }, + { + "amount": "525.655115220", + "slot": { + "period": 3915555, + "thread": 5 + } + } + ], + "AU17oC6aRZjKcXqd3fukhgcSxVpKnPgMKPw47T2gTnvswBp2zkYd": [ + { + "amount": "415.775478845", + "slot": { + "period": 151041, + "thread": 29 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 203706, + "thread": 28 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 477822, + "thread": 19 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 617807, + "thread": 11 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 743112, + "thread": 11 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 851783, + "thread": 24 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1132101, + "thread": 28 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1222818, + "thread": 1 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1346853, + "thread": 19 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1573321, + "thread": 4 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1773859, + "thread": 12 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 1831513, + "thread": 23 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2109876, + "thread": 18 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2162658, + "thread": 2 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2371432, + "thread": 17 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2507945, + "thread": 24 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2628584, + "thread": 7 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2853975, + "thread": 7 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 2968161, + "thread": 31 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 3174124, + "thread": 10 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 3311743, + "thread": 9 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 3461670, + "thread": 12 + } + }, + { + "amount": "415.775478845", + "slot": { + "period": 3758761, + "thread": 1 + } + }, + { + "amount": "415.775478847", + "slot": { + "period": 3917125, + "thread": 25 + } + } + ], + "AU17p2VoyiuxbW4xU7MQusozLj8mjNZ8KPn1pVcuwKES2Txyf1JJ": [ + { + "amount": "63.351244032", + "slot": { + "period": 153367, + "thread": 29 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 243583, + "thread": 9 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 350422, + "thread": 16 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 621088, + "thread": 3 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 782062, + "thread": 29 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 903095, + "thread": 26 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1143412, + "thread": 8 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1195568, + "thread": 11 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1337957, + "thread": 12 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1597670, + "thread": 11 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1758977, + "thread": 16 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 1922702, + "thread": 7 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2008571, + "thread": 17 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2221441, + "thread": 2 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2415761, + "thread": 30 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2575644, + "thread": 6 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2705499, + "thread": 23 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2918572, + "thread": 10 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 2956055, + "thread": 20 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 3272199, + "thread": 22 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 3423463, + "thread": 27 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 3492516, + "thread": 20 + } + }, + { + "amount": "63.351244032", + "slot": { + "period": 3635289, + "thread": 0 + } + }, + { + "amount": "63.351244041", + "slot": { + "period": 3808785, + "thread": 22 + } + } + ], + "AU17p89mLQ9ysPbgavVqCVTkL6n7RjYrjHw4uwTtad4joQAyF4cU": [ + { + "amount": "295.172256324", + "slot": { + "period": 163318, + "thread": 21 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 256926, + "thread": 12 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 442066, + "thread": 8 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 500370, + "thread": 8 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 660310, + "thread": 12 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 874750, + "thread": 19 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 994748, + "thread": 11 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1252597, + "thread": 24 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1363902, + "thread": 12 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1600943, + "thread": 1 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1766397, + "thread": 15 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1936401, + "thread": 13 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 1979603, + "thread": 4 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 2179810, + "thread": 23 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 2340130, + "thread": 30 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 2530144, + "thread": 13 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 2675687, + "thread": 31 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 2909279, + "thread": 3 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 3020068, + "thread": 30 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 3151508, + "thread": 12 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 3415155, + "thread": 4 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 3617431, + "thread": 30 + } + }, + { + "amount": "295.172256324", + "slot": { + "period": 3738163, + "thread": 5 + } + }, + { + "amount": "295.172256334", + "slot": { + "period": 3819999, + "thread": 6 + } + } + ], + "AU17pDfKjw84UN5AGvoTQBCeDEDNZJ6hoehhLp9HSVW4o8LZJz19": [ + { + "amount": "208.618230924", + "slot": { + "period": 59873, + "thread": 5 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 298588, + "thread": 8 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 412051, + "thread": 3 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 528416, + "thread": 22 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 759375, + "thread": 6 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 919754, + "thread": 6 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1064495, + "thread": 27 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1259769, + "thread": 0 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1463719, + "thread": 30 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1608095, + "thread": 9 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1774093, + "thread": 3 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 1920708, + "thread": 13 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2139484, + "thread": 21 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2240155, + "thread": 18 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2386974, + "thread": 5 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2488124, + "thread": 8 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2650529, + "thread": 22 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2854920, + "thread": 22 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 2962307, + "thread": 0 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 3167409, + "thread": 0 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 3432034, + "thread": 27 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 3557081, + "thread": 13 + } + }, + { + "amount": "208.618230924", + "slot": { + "period": 3669061, + "thread": 8 + } + }, + { + "amount": "208.618230913", + "slot": { + "period": 3818148, + "thread": 5 + } + } + ], + "AU17rMAgKCoSzaR2uYWwMY4KAbm3uwk9GSJfW6WzkR4arsmBntSQ": [ + { + "amount": "188.199178522", + "slot": { + "period": 14915, + "thread": 15 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 176360, + "thread": 13 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 359012, + "thread": 4 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 529550, + "thread": 1 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 711363, + "thread": 12 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 970269, + "thread": 22 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1110130, + "thread": 0 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1186210, + "thread": 10 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1327382, + "thread": 29 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1559553, + "thread": 23 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1665308, + "thread": 13 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 1863747, + "thread": 11 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2081221, + "thread": 17 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2277701, + "thread": 5 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2408620, + "thread": 29 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2495665, + "thread": 7 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2642852, + "thread": 21 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2874760, + "thread": 14 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 2985234, + "thread": 27 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 3158117, + "thread": 5 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 3360768, + "thread": 13 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 3519981, + "thread": 27 + } + }, + { + "amount": "188.199178522", + "slot": { + "period": 3725475, + "thread": 17 + } + }, + { + "amount": "188.199178532", + "slot": { + "period": 3913403, + "thread": 2 + } + } + ], + "AU17rfKj3RFit4MmC3iWcESBavyBXj2W4THVyFqriBGz3BB9LnAH": [ + { + "amount": "314.903623129", + "slot": { + "period": 159722, + "thread": 12 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 194651, + "thread": 3 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 412985, + "thread": 20 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 633354, + "thread": 10 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 674003, + "thread": 5 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 841702, + "thread": 19 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1038978, + "thread": 21 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1183041, + "thread": 14 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1378566, + "thread": 23 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1638644, + "thread": 18 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1748454, + "thread": 17 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 1828305, + "thread": 31 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2096818, + "thread": 20 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2238635, + "thread": 16 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2296284, + "thread": 8 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2584727, + "thread": 0 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2763083, + "thread": 11 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2895466, + "thread": 27 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 2993052, + "thread": 30 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 3241224, + "thread": 26 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 3446456, + "thread": 16 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 3488229, + "thread": 0 + } + }, + { + "amount": "314.903623129", + "slot": { + "period": 3674158, + "thread": 13 + } + }, + { + "amount": "314.903623120", + "slot": { + "period": 3915229, + "thread": 28 + } + } + ], + "AU17rhWjfUCxoJ6YFv7YhjS3MWMP3SSkeptL68TCt32c2tzonHuk": [ + { + "amount": "146.980125917", + "slot": { + "period": 57987, + "thread": 31 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 183386, + "thread": 0 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 482755, + "thread": 12 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 578353, + "thread": 31 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 734336, + "thread": 23 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 917123, + "thread": 16 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1135838, + "thread": 30 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1228295, + "thread": 22 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1373089, + "thread": 27 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1573323, + "thread": 7 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1669103, + "thread": 14 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 1960670, + "thread": 18 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2073022, + "thread": 8 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2163729, + "thread": 8 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2434604, + "thread": 27 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2487823, + "thread": 14 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2731292, + "thread": 26 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 2859260, + "thread": 5 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 3086933, + "thread": 6 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 3271126, + "thread": 11 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 3409462, + "thread": 8 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 3532829, + "thread": 10 + } + }, + { + "amount": "146.980125917", + "slot": { + "period": 3690332, + "thread": 4 + } + }, + { + "amount": "146.980125925", + "slot": { + "period": 3893085, + "thread": 0 + } + } + ], + "AU17sW1MHbqXcbu438rPGiwFaTa1CDE4JRN9w3y8rXSKYAemk82P": [ + { + "amount": "54.481716826", + "slot": { + "period": 149479, + "thread": 8 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 176190, + "thread": 28 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 489137, + "thread": 24 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 544668, + "thread": 12 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 738572, + "thread": 28 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 973222, + "thread": 18 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 982993, + "thread": 5 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 1192633, + "thread": 5 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 1367264, + "thread": 30 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 1609719, + "thread": 21 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 1771390, + "thread": 11 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 1959107, + "thread": 16 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2131599, + "thread": 28 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2173499, + "thread": 25 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2428539, + "thread": 1 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2580716, + "thread": 26 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2646984, + "thread": 11 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 2861550, + "thread": 10 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 3026466, + "thread": 5 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 3199398, + "thread": 0 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 3419187, + "thread": 22 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 3547788, + "thread": 13 + } + }, + { + "amount": "54.481716826", + "slot": { + "period": 3638090, + "thread": 10 + } + }, + { + "amount": "54.481716829", + "slot": { + "period": 3794323, + "thread": 28 + } + } + ], + "AU17tErv7JgsCgN3CZADLCLa26ckYpR1zzg77A5x5Y7WQoRWBtw8": [ + { + "amount": "158.910746429", + "slot": { + "period": 144990, + "thread": 30 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 274371, + "thread": 2 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 400131, + "thread": 12 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 607049, + "thread": 19 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 763870, + "thread": 14 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 844727, + "thread": 24 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1010994, + "thread": 5 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1193955, + "thread": 31 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1335316, + "thread": 14 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1547276, + "thread": 20 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1769481, + "thread": 25 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 1908948, + "thread": 9 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2050054, + "thread": 6 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2201773, + "thread": 17 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2334492, + "thread": 7 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2516379, + "thread": 13 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2769841, + "thread": 25 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 2792590, + "thread": 11 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 3103929, + "thread": 19 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 3263122, + "thread": 21 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 3378211, + "thread": 30 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 3550458, + "thread": 25 + } + }, + { + "amount": "158.910746429", + "slot": { + "period": 3763520, + "thread": 19 + } + }, + { + "amount": "158.910746427", + "slot": { + "period": 3883629, + "thread": 9 + } + } + ], + "AU17tX8kSU73AfDJDL7K3v1kkPhvXxeFbGfP32BDUGhAxTEytk5e": [ + { + "amount": "140.608558953", + "slot": { + "period": 99588, + "thread": 23 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 218474, + "thread": 12 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 410613, + "thread": 14 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 569974, + "thread": 18 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 706698, + "thread": 0 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 946248, + "thread": 18 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1135913, + "thread": 4 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1202748, + "thread": 10 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1376769, + "thread": 28 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1517251, + "thread": 20 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1791251, + "thread": 24 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 1851653, + "thread": 11 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2107883, + "thread": 16 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2183903, + "thread": 2 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2427490, + "thread": 28 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2601002, + "thread": 1 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2709793, + "thread": 12 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 2883898, + "thread": 31 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 3033877, + "thread": 4 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 3235743, + "thread": 7 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 3354702, + "thread": 9 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 3470678, + "thread": 5 + } + }, + { + "amount": "140.608558953", + "slot": { + "period": 3703485, + "thread": 6 + } + }, + { + "amount": "140.608558948", + "slot": { + "period": 3905462, + "thread": 31 + } + } + ], + "AU17uro5hMLzMYRunb18Gbv8AajZwU6DFrEuqUjJVSYzk11co23M": [ + { + "amount": "346.897586442", + "slot": { + "period": 48570, + "thread": 20 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 211246, + "thread": 31 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 356557, + "thread": 2 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 592447, + "thread": 27 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 712635, + "thread": 28 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 947415, + "thread": 2 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1127443, + "thread": 7 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1257638, + "thread": 30 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1439220, + "thread": 5 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1490001, + "thread": 30 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1769248, + "thread": 22 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1862428, + "thread": 30 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 1995889, + "thread": 15 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 2259229, + "thread": 0 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 2352934, + "thread": 6 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 2553918, + "thread": 10 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 2734674, + "thread": 12 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 2903226, + "thread": 2 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 3100861, + "thread": 12 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 3219380, + "thread": 27 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 3376658, + "thread": 17 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 3608893, + "thread": 10 + } + }, + { + "amount": "346.897586442", + "slot": { + "period": 3656590, + "thread": 12 + } + }, + { + "amount": "346.897586443", + "slot": { + "period": 3817843, + "thread": 28 + } + } + ], + "AU17v3zaC7HitqrhcspPxZT6EkphuhHAQ59tTisAqQEMr9d51zuA": [ + { + "amount": "130.798640194", + "slot": { + "period": 87215, + "thread": 16 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 308275, + "thread": 2 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 479737, + "thread": 24 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 640084, + "thread": 26 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 705085, + "thread": 28 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 914217, + "thread": 16 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1111539, + "thread": 14 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1307288, + "thread": 4 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1340309, + "thread": 2 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1593689, + "thread": 7 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1764341, + "thread": 9 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 1957787, + "thread": 29 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2005406, + "thread": 5 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2166895, + "thread": 3 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2382020, + "thread": 5 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2499910, + "thread": 2 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2662082, + "thread": 4 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 2867006, + "thread": 24 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 3100813, + "thread": 23 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 3201417, + "thread": 3 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 3323244, + "thread": 14 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 3575762, + "thread": 6 + } + }, + { + "amount": "130.798640194", + "slot": { + "period": 3765348, + "thread": 22 + } + }, + { + "amount": "130.798640192", + "slot": { + "period": 3829972, + "thread": 19 + } + } + ], + "AU17x6rGKCogaPAmai5B7rhaDPaxYtfFMnwWmoCS4X4pJmD9QsVn": [ + { + "amount": "105.118919727", + "slot": { + "period": 48098, + "thread": 5 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 196972, + "thread": 6 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 405416, + "thread": 19 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 577979, + "thread": 8 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 809382, + "thread": 14 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 917372, + "thread": 9 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1104113, + "thread": 7 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1293812, + "thread": 3 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1403234, + "thread": 20 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1582484, + "thread": 23 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1744562, + "thread": 28 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 1857580, + "thread": 6 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2103160, + "thread": 19 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2244302, + "thread": 10 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2357600, + "thread": 23 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2481758, + "thread": 26 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2626221, + "thread": 0 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2812794, + "thread": 22 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 2981029, + "thread": 11 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 3131892, + "thread": 13 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 3359688, + "thread": 2 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 3509151, + "thread": 2 + } + }, + { + "amount": "105.118919727", + "slot": { + "period": 3693259, + "thread": 11 + } + }, + { + "amount": "105.118919717", + "slot": { + "period": 3828115, + "thread": 26 + } + } + ], + "AU17xYyk1mwd9Nk9WcxgAdyR4jQz54FPWDRsoT5fYLBF8PRSc4y7": [ + { + "amount": "251.814544416", + "slot": { + "period": 162762, + "thread": 8 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 319141, + "thread": 7 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 335128, + "thread": 25 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 601797, + "thread": 11 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 777043, + "thread": 12 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 871553, + "thread": 29 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1097657, + "thread": 3 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1236439, + "thread": 15 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1415097, + "thread": 24 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1499446, + "thread": 14 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1657629, + "thread": 12 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 1891907, + "thread": 25 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2120884, + "thread": 13 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2191549, + "thread": 18 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2434004, + "thread": 15 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2474571, + "thread": 25 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2744131, + "thread": 27 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 2798091, + "thread": 29 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 3108006, + "thread": 22 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 3159927, + "thread": 24 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 3345675, + "thread": 7 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 3487893, + "thread": 18 + } + }, + { + "amount": "251.814544416", + "slot": { + "period": 3774435, + "thread": 16 + } + }, + { + "amount": "251.814544412", + "slot": { + "period": 3787804, + "thread": 17 + } + } + ], + "AU181EevShfu8t4VEQnXmHRy78B688pHgF4NdK3wEzuBre8s3TzH": [ + { + "amount": "173.490000409", + "slot": { + "period": 136595, + "thread": 21 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 196348, + "thread": 19 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 365940, + "thread": 5 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 535520, + "thread": 25 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 785589, + "thread": 29 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 840163, + "thread": 24 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 991775, + "thread": 22 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1151281, + "thread": 5 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1320983, + "thread": 21 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1570780, + "thread": 9 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1699010, + "thread": 31 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1970296, + "thread": 31 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 1987033, + "thread": 24 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 2291225, + "thread": 5 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 2381832, + "thread": 30 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 2622016, + "thread": 17 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 2751946, + "thread": 31 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 2871599, + "thread": 29 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 3027992, + "thread": 11 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 3153518, + "thread": 24 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 3416979, + "thread": 15 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 3540872, + "thread": 20 + } + }, + { + "amount": "173.490000409", + "slot": { + "period": 3755549, + "thread": 24 + } + }, + { + "amount": "173.490000418", + "slot": { + "period": 3880465, + "thread": 15 + } + } + ], + "AU181PTj6tRs4mcvdNQupPewJgfZEvYqpDp2yd6b2NoBa9prSBGU": [ + { + "amount": "138.955718490", + "slot": { + "period": 15938, + "thread": 8 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 220918, + "thread": 5 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 393028, + "thread": 1 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 518101, + "thread": 20 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 750305, + "thread": 12 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 902252, + "thread": 12 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1018917, + "thread": 31 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1254361, + "thread": 1 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1428012, + "thread": 28 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1619004, + "thread": 21 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1691572, + "thread": 8 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 1853880, + "thread": 24 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2112318, + "thread": 29 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2242825, + "thread": 4 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2400078, + "thread": 4 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2513928, + "thread": 26 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2626209, + "thread": 21 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2940433, + "thread": 15 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 2999212, + "thread": 20 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 3257062, + "thread": 25 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 3396394, + "thread": 15 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 3563220, + "thread": 8 + } + }, + { + "amount": "138.955718490", + "slot": { + "period": 3680474, + "thread": 6 + } + }, + { + "amount": "138.955718502", + "slot": { + "period": 3873898, + "thread": 3 + } + } + ], + "AU181vYo1B2nUd6KECLYPSL25DG9M7PUHVNRrVTy1XtDL5Kd74Vo": [ + { + "amount": "313.679464941", + "slot": { + "period": 73925, + "thread": 1 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 224503, + "thread": 28 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 343258, + "thread": 29 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 530691, + "thread": 10 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 724466, + "thread": 9 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 909713, + "thread": 14 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1087867, + "thread": 18 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1182377, + "thread": 1 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1389549, + "thread": 10 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1506135, + "thread": 23 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1794533, + "thread": 30 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 1966510, + "thread": 11 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2043656, + "thread": 22 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2189020, + "thread": 5 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2394849, + "thread": 29 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2464961, + "thread": 13 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2790602, + "thread": 23 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 2883670, + "thread": 3 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 3118063, + "thread": 19 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 3265699, + "thread": 9 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 3290667, + "thread": 3 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 3528371, + "thread": 24 + } + }, + { + "amount": "313.679464941", + "slot": { + "period": 3664133, + "thread": 26 + } + }, + { + "amount": "313.679464947", + "slot": { + "period": 3908082, + "thread": 28 + } + } + ], + "AU183jv4Yb5yLRYWXWEHwxqRDNn8L6h4oLKpr8e1CnQmQzkBs6oN": [ + { + "amount": "425.984032531", + "slot": { + "period": 73695, + "thread": 2 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 192032, + "thread": 26 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 410850, + "thread": 31 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 565326, + "thread": 22 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 795945, + "thread": 25 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 907673, + "thread": 29 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1042779, + "thread": 0 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1244341, + "thread": 13 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1327377, + "thread": 27 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1481298, + "thread": 11 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1767077, + "thread": 12 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 1926862, + "thread": 14 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2027048, + "thread": 27 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2256892, + "thread": 11 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2448929, + "thread": 27 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2488496, + "thread": 3 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2665784, + "thread": 4 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 2804961, + "thread": 16 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 3009342, + "thread": 31 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 3281581, + "thread": 20 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 3447603, + "thread": 6 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 3511568, + "thread": 5 + } + }, + { + "amount": "425.984032531", + "slot": { + "period": 3745049, + "thread": 24 + } + }, + { + "amount": "425.984032524", + "slot": { + "period": 3885565, + "thread": 13 + } + } + ], + "AU184M3bvGPQzd53PP1JppsSbN4iKGfwEb4nd4Js7tQZKJgYj39s": [ + { + "amount": "175.622988397", + "slot": { + "period": 142511, + "thread": 9 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 222922, + "thread": 26 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 329546, + "thread": 24 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 579769, + "thread": 11 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 717209, + "thread": 4 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 969687, + "thread": 28 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1055622, + "thread": 8 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1279960, + "thread": 10 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1352411, + "thread": 2 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1516087, + "thread": 15 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1776747, + "thread": 26 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1967040, + "thread": 7 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 1983050, + "thread": 14 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 2145974, + "thread": 25 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 2313479, + "thread": 30 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 2523329, + "thread": 13 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 2749631, + "thread": 15 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 2910162, + "thread": 23 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 3065639, + "thread": 30 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 3244372, + "thread": 21 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 3429919, + "thread": 8 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 3544452, + "thread": 5 + } + }, + { + "amount": "175.622988397", + "slot": { + "period": 3761296, + "thread": 25 + } + }, + { + "amount": "175.622988394", + "slot": { + "period": 3940173, + "thread": 17 + } + } + ], + "AU184gPPQAopscaUuEaGh3XnFzek8TL4PkGcEcQruQvx9aeA1tmJ": [ + { + "amount": "136.224309772", + "slot": { + "period": 164257, + "thread": 28 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 256905, + "thread": 12 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 453116, + "thread": 3 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 541195, + "thread": 1 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 818814, + "thread": 8 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 962026, + "thread": 6 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1134586, + "thread": 6 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1167892, + "thread": 25 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1470566, + "thread": 6 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1619048, + "thread": 26 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1727701, + "thread": 6 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 1909301, + "thread": 22 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2009383, + "thread": 22 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2182695, + "thread": 31 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2406800, + "thread": 9 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2571210, + "thread": 17 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2673044, + "thread": 5 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 2804227, + "thread": 4 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 3071958, + "thread": 19 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 3128457, + "thread": 25 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 3343154, + "thread": 3 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 3533385, + "thread": 18 + } + }, + { + "amount": "136.224309772", + "slot": { + "period": 3641986, + "thread": 2 + } + }, + { + "amount": "136.224309779", + "slot": { + "period": 3876647, + "thread": 31 + } + } + ], + "AU185um8oCysfZwAf5MiGWmiunS2w7kfyJ5GCzC8EYswpresH3ap": [ + { + "amount": "419.294678168", + "slot": { + "period": 20866, + "thread": 0 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 196750, + "thread": 4 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 331177, + "thread": 29 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 604772, + "thread": 12 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 710440, + "thread": 7 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 943857, + "thread": 26 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1074622, + "thread": 18 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1206847, + "thread": 21 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1446304, + "thread": 27 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1493370, + "thread": 24 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1727652, + "thread": 16 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 1872414, + "thread": 12 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2076498, + "thread": 15 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2157231, + "thread": 5 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2325435, + "thread": 7 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2492867, + "thread": 15 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2690123, + "thread": 5 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2869366, + "thread": 24 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 2976125, + "thread": 18 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 3149665, + "thread": 31 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 3435009, + "thread": 27 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 3546540, + "thread": 0 + } + }, + { + "amount": "419.294678168", + "slot": { + "period": 3624014, + "thread": 13 + } + }, + { + "amount": "419.294678172", + "slot": { + "period": 3938719, + "thread": 5 + } + } + ], + "AU185yDQJwyKHykZ3S7EKfRGT9VmCTsPoYQVj8979G26DQ313ycq": [ + { + "amount": "222.513145890", + "slot": { + "period": 12055, + "thread": 9 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 252974, + "thread": 8 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 360585, + "thread": 11 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 534408, + "thread": 2 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 671509, + "thread": 30 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 926266, + "thread": 19 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1017059, + "thread": 2 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1220272, + "thread": 18 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1351085, + "thread": 2 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1498567, + "thread": 31 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1698084, + "thread": 21 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 1963928, + "thread": 21 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2042253, + "thread": 4 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2262948, + "thread": 13 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2316492, + "thread": 31 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2523752, + "thread": 9 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2727393, + "thread": 9 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 2907771, + "thread": 14 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 3094422, + "thread": 1 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 3132717, + "thread": 0 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 3433280, + "thread": 16 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 3572104, + "thread": 4 + } + }, + { + "amount": "222.513145890", + "slot": { + "period": 3712115, + "thread": 21 + } + }, + { + "amount": "222.513145901", + "slot": { + "period": 3938891, + "thread": 5 + } + } + ], + "AU18681Fkuz1GjXDDTK4g8p5GtCjdDvqSM5kBhD32vvAWFAEvaeT": [ + { + "amount": "221.368335680", + "slot": { + "period": 125467, + "thread": 19 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 195608, + "thread": 16 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 433948, + "thread": 14 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 589518, + "thread": 2 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 795144, + "thread": 20 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 835350, + "thread": 8 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1148589, + "thread": 2 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1198189, + "thread": 15 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1332861, + "thread": 12 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1487194, + "thread": 9 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1735465, + "thread": 1 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1898469, + "thread": 4 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 1989150, + "thread": 24 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 2208780, + "thread": 26 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 2395184, + "thread": 15 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 2515341, + "thread": 2 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 2635883, + "thread": 29 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 2821977, + "thread": 18 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 3077894, + "thread": 19 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 3192705, + "thread": 30 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 3381720, + "thread": 11 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 3561536, + "thread": 12 + } + }, + { + "amount": "221.368335680", + "slot": { + "period": 3666024, + "thread": 5 + } + }, + { + "amount": "221.368335674", + "slot": { + "period": 3924663, + "thread": 31 + } + } + ], + "AU186sYgBD187vo2URxzjzvTWVcLT3uAKLdA76NpWzoSbrhJXQ7j": [ + { + "amount": "233.328019603", + "slot": { + "period": 143488, + "thread": 8 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 315997, + "thread": 9 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 439189, + "thread": 19 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 616367, + "thread": 30 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 794510, + "thread": 27 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 883035, + "thread": 18 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1090712, + "thread": 7 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1316745, + "thread": 5 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1388220, + "thread": 27 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1579592, + "thread": 21 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1689520, + "thread": 24 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 1958777, + "thread": 13 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2028706, + "thread": 20 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2173599, + "thread": 21 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2346174, + "thread": 24 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2537419, + "thread": 30 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2659552, + "thread": 22 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 2895415, + "thread": 13 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3099840, + "thread": 14 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3276858, + "thread": 28 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3295488, + "thread": 18 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3612912, + "thread": 21 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3752605, + "thread": 16 + } + }, + { + "amount": "233.328019603", + "slot": { + "period": 3897718, + "thread": 1 + } + } + ], + "AU187c1svyrL96rZ7c3jsgXZmoCoYrhSxRbQUzB2ikZowV1HG1Rg": [ + { + "amount": "57.542976766", + "slot": { + "period": 106375, + "thread": 23 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 221814, + "thread": 2 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 470849, + "thread": 20 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 540753, + "thread": 11 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 749401, + "thread": 21 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 822620, + "thread": 7 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1026988, + "thread": 8 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1189756, + "thread": 24 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1319665, + "thread": 9 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1515447, + "thread": 7 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1747903, + "thread": 0 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 1931763, + "thread": 17 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2094536, + "thread": 13 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2221235, + "thread": 2 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2324579, + "thread": 30 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2573958, + "thread": 9 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2704113, + "thread": 1 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 2876573, + "thread": 18 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 3060067, + "thread": 22 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 3280119, + "thread": 1 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 3372745, + "thread": 2 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 3497108, + "thread": 12 + } + }, + { + "amount": "57.542976766", + "slot": { + "period": 3738400, + "thread": 18 + } + }, + { + "amount": "57.542976760", + "slot": { + "period": 3783884, + "thread": 1 + } + } + ], + "AU187zJ54ZtSjEqLkw6RnkSkikJPPNRGBDAhFGmh71gsN7X4fQSx": [ + { + "amount": "185.321406748", + "slot": { + "period": 21397, + "thread": 20 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 312867, + "thread": 21 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 442346, + "thread": 10 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 507131, + "thread": 22 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 729283, + "thread": 19 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 835263, + "thread": 3 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1048568, + "thread": 31 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1310508, + "thread": 31 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1478934, + "thread": 9 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1561265, + "thread": 8 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1770461, + "thread": 31 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 1954054, + "thread": 11 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2091585, + "thread": 15 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2254462, + "thread": 31 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2341964, + "thread": 16 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2619383, + "thread": 22 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2708763, + "thread": 23 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 2939906, + "thread": 0 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 3061780, + "thread": 21 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 3243094, + "thread": 29 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 3312337, + "thread": 12 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 3543704, + "thread": 25 + } + }, + { + "amount": "185.321406748", + "slot": { + "period": 3719490, + "thread": 22 + } + }, + { + "amount": "185.321406743", + "slot": { + "period": 3878545, + "thread": 7 + } + } + ], + "AU188N75tKW1yyZJowFHmiLaeH2Yuong6zTqo6P43WvuM8KoWxx1": [ + { + "amount": "166.373765183", + "slot": { + "period": 18733, + "thread": 23 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 259627, + "thread": 1 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 373882, + "thread": 20 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 544623, + "thread": 1 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 805559, + "thread": 26 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 883077, + "thread": 8 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1086318, + "thread": 28 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1217359, + "thread": 28 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1445961, + "thread": 27 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1590968, + "thread": 7 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1755760, + "thread": 4 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 1926067, + "thread": 0 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2010835, + "thread": 18 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2231554, + "thread": 26 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2315811, + "thread": 14 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2583413, + "thread": 20 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2626880, + "thread": 10 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2881313, + "thread": 23 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 2956204, + "thread": 7 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 3201192, + "thread": 21 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 3393776, + "thread": 19 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 3505696, + "thread": 29 + } + }, + { + "amount": "166.373765183", + "slot": { + "period": 3747709, + "thread": 27 + } + }, + { + "amount": "166.373765189", + "slot": { + "period": 3931528, + "thread": 3 + } + } + ], + "AU188eaeCcV8wFMk68mtbU3fhspeRuUSiCEYka6GjXtAuKsoxbhj": [ + { + "amount": "207.712508436", + "slot": { + "period": 93999, + "thread": 15 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 241356, + "thread": 7 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 399517, + "thread": 0 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 624906, + "thread": 5 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 808861, + "thread": 21 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 926302, + "thread": 18 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1088648, + "thread": 6 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1288394, + "thread": 3 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1430076, + "thread": 26 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1546917, + "thread": 8 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1752580, + "thread": 24 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 1944475, + "thread": 12 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2132833, + "thread": 13 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2148770, + "thread": 26 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2345168, + "thread": 17 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2510932, + "thread": 4 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2632231, + "thread": 8 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 2889410, + "thread": 14 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 3052385, + "thread": 4 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 3268721, + "thread": 22 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 3349640, + "thread": 21 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 3491589, + "thread": 18 + } + }, + { + "amount": "207.712508436", + "slot": { + "period": 3682748, + "thread": 12 + } + }, + { + "amount": "207.712508431", + "slot": { + "period": 3914361, + "thread": 2 + } + } + ], + "AU1891CFrQwHQ1H4n4XXc5BjLNTDDaBCiVwhZax1srAHnELCxdbp": [ + { + "amount": "146.894821537", + "slot": { + "period": 112278, + "thread": 15 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 172169, + "thread": 0 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 368270, + "thread": 6 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 652213, + "thread": 31 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 658274, + "thread": 10 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 866117, + "thread": 3 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1132407, + "thread": 16 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1222907, + "thread": 21 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1396093, + "thread": 9 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1494090, + "thread": 29 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1769162, + "thread": 26 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 1942674, + "thread": 3 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2047462, + "thread": 8 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2278050, + "thread": 16 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2393015, + "thread": 15 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2618595, + "thread": 2 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2626820, + "thread": 5 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 2944483, + "thread": 11 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 3051328, + "thread": 28 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 3225709, + "thread": 21 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 3303875, + "thread": 15 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 3501813, + "thread": 14 + } + }, + { + "amount": "146.894821537", + "slot": { + "period": 3652530, + "thread": 13 + } + }, + { + "amount": "146.894821532", + "slot": { + "period": 3784758, + "thread": 4 + } + } + ], + "AU189PFxJAmpULcCv8TWBk3za9TTVMU9jRTCFkTiWxAHsR5oSojc": [ + { + "amount": "116.491159086", + "slot": { + "period": 161578, + "thread": 16 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 175091, + "thread": 25 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 469244, + "thread": 5 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 632526, + "thread": 11 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 722474, + "thread": 30 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 976749, + "thread": 18 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 992182, + "thread": 14 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 1237346, + "thread": 21 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 1452531, + "thread": 8 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 1523747, + "thread": 27 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 1801338, + "thread": 25 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 1888151, + "thread": 18 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2108664, + "thread": 3 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2185520, + "thread": 1 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2437702, + "thread": 30 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2515462, + "thread": 30 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2746947, + "thread": 15 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 2797216, + "thread": 21 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 3018645, + "thread": 23 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 3147275, + "thread": 16 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 3334474, + "thread": 13 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 3549582, + "thread": 29 + } + }, + { + "amount": "116.491159086", + "slot": { + "period": 3657428, + "thread": 20 + } + }, + { + "amount": "116.491159092", + "slot": { + "period": 3853208, + "thread": 29 + } + } + ], + "AU189bFLYhRpgjRKQr45ugwqogXAa9mGBiDSVYTHgh5he4to7GQ5": [ + { + "amount": "99.572375264", + "slot": { + "period": 149635, + "thread": 30 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 323680, + "thread": 14 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 480807, + "thread": 5 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 537121, + "thread": 31 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 749423, + "thread": 14 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 957209, + "thread": 18 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1071321, + "thread": 0 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1250756, + "thread": 25 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1344803, + "thread": 26 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1561701, + "thread": 29 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1767588, + "thread": 20 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 1892203, + "thread": 31 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2097210, + "thread": 20 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2144629, + "thread": 22 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2324420, + "thread": 15 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2603468, + "thread": 17 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2687649, + "thread": 17 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 2932978, + "thread": 21 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 3038175, + "thread": 14 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 3218597, + "thread": 21 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 3372624, + "thread": 0 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 3479907, + "thread": 20 + } + }, + { + "amount": "99.572375264", + "slot": { + "period": 3742472, + "thread": 22 + } + }, + { + "amount": "99.572375262", + "slot": { + "period": 3841134, + "thread": 11 + } + } + ], + "AU18CG9YbLcVAXbmV4YiL3gsmXJWaLXs4MT6T5T5f5hDjtj468CW": [ + { + "amount": "51.511372088", + "slot": { + "period": 147168, + "thread": 21 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 314695, + "thread": 31 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 460787, + "thread": 23 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 531951, + "thread": 29 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 783246, + "thread": 4 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 867578, + "thread": 13 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1019620, + "thread": 20 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1262395, + "thread": 9 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1408582, + "thread": 8 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1522026, + "thread": 6 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1711203, + "thread": 4 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 1963009, + "thread": 13 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2089534, + "thread": 13 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2177308, + "thread": 12 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2295686, + "thread": 11 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2604964, + "thread": 24 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2775172, + "thread": 7 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 2855517, + "thread": 0 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 3093740, + "thread": 7 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 3148091, + "thread": 19 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 3437941, + "thread": 16 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 3616324, + "thread": 21 + } + }, + { + "amount": "51.511372088", + "slot": { + "period": 3648257, + "thread": 30 + } + }, + { + "amount": "51.511372077", + "slot": { + "period": 3891499, + "thread": 1 + } + } + ], + "AU18Dir2cQC9izMpgqc6rFGjGrwyHrRZ1rywT6CGciraeKgGnYHT": [ + { + "amount": "56.012906223", + "slot": { + "period": 119964, + "thread": 8 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 205249, + "thread": 17 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 378548, + "thread": 22 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 652433, + "thread": 14 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 742966, + "thread": 25 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 889108, + "thread": 24 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1073152, + "thread": 20 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1180442, + "thread": 19 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1460616, + "thread": 29 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1562180, + "thread": 3 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1789086, + "thread": 3 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 1848238, + "thread": 14 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2041076, + "thread": 18 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2276362, + "thread": 6 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2331887, + "thread": 14 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2508410, + "thread": 29 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2737935, + "thread": 3 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 2813797, + "thread": 3 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 3099502, + "thread": 10 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 3277532, + "thread": 1 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 3327435, + "thread": 3 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 3459568, + "thread": 18 + } + }, + { + "amount": "56.012906223", + "slot": { + "period": 3623986, + "thread": 11 + } + }, + { + "amount": "56.012906218", + "slot": { + "period": 3847267, + "thread": 10 + } + } + ], + "AU18Dx9oeKqji6yy8kWF2V4SWpoViaDWTGWHhL7a2roDGR6G1BCY": [ + { + "amount": "113.792357481", + "slot": { + "period": 37620, + "thread": 23 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 265300, + "thread": 16 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 434791, + "thread": 14 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 591060, + "thread": 16 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 765982, + "thread": 26 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 966436, + "thread": 25 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1010512, + "thread": 24 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1180700, + "thread": 1 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1471729, + "thread": 3 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1511347, + "thread": 20 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1805052, + "thread": 16 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 1932228, + "thread": 30 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2099229, + "thread": 1 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2211434, + "thread": 20 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2339969, + "thread": 5 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2484878, + "thread": 11 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2644407, + "thread": 12 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 2814750, + "thread": 17 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 3051487, + "thread": 6 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 3144686, + "thread": 20 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 3323852, + "thread": 29 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 3458201, + "thread": 19 + } + }, + { + "amount": "113.792357481", + "slot": { + "period": 3663450, + "thread": 21 + } + }, + { + "amount": "113.792357479", + "slot": { + "period": 3904405, + "thread": 22 + } + } + ], + "AU18EfFf4mgNMPo5tGKpgyr5qvhH5NHf2ovCuymEUgc4479XynBh": [ + { + "amount": "79.588917571", + "slot": { + "period": 91901, + "thread": 25 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 210578, + "thread": 8 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 432334, + "thread": 5 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 559917, + "thread": 27 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 665803, + "thread": 18 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 906973, + "thread": 22 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1081913, + "thread": 14 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1189170, + "thread": 3 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1363941, + "thread": 29 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1630447, + "thread": 28 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1697614, + "thread": 10 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 1898752, + "thread": 27 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2005184, + "thread": 0 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2222202, + "thread": 7 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2454813, + "thread": 7 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2565861, + "thread": 6 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2705675, + "thread": 12 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 2949061, + "thread": 19 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 3107326, + "thread": 3 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 3200299, + "thread": 29 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 3372506, + "thread": 22 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 3608403, + "thread": 1 + } + }, + { + "amount": "79.588917571", + "slot": { + "period": 3716672, + "thread": 2 + } + }, + { + "amount": "79.588917570", + "slot": { + "period": 3917725, + "thread": 9 + } + } + ], + "AU18FTzrTREQXjhuZr8RxqgUFEoYu1c9P3D5kaYN7estkRg9Brk9": [ + { + "amount": "155.154469146", + "slot": { + "period": 112534, + "thread": 28 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 200234, + "thread": 14 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 396482, + "thread": 29 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 587660, + "thread": 12 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 684708, + "thread": 5 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 920041, + "thread": 3 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 996090, + "thread": 5 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 1264616, + "thread": 1 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 1418557, + "thread": 22 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 1514611, + "thread": 30 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 1713950, + "thread": 3 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 1817240, + "thread": 18 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2104369, + "thread": 2 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2150621, + "thread": 24 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2406763, + "thread": 29 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2474794, + "thread": 5 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2714441, + "thread": 17 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2931485, + "thread": 1 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 2973005, + "thread": 29 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 3260888, + "thread": 0 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 3391782, + "thread": 28 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 3560787, + "thread": 9 + } + }, + { + "amount": "155.154469146", + "slot": { + "period": 3651629, + "thread": 26 + } + }, + { + "amount": "155.154469144", + "slot": { + "period": 3925706, + "thread": 29 + } + } + ], + "AU18H4cKBU9dy2koCesH6ipnYYF1njBDfj5vnft8C18eyWHSLjQm": [ + { + "amount": "118.436983854", + "slot": { + "period": 144331, + "thread": 5 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 264347, + "thread": 22 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 357201, + "thread": 28 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 556761, + "thread": 30 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 663390, + "thread": 31 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 857894, + "thread": 0 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1041611, + "thread": 19 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1207690, + "thread": 30 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1462347, + "thread": 4 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1578142, + "thread": 28 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1676329, + "thread": 27 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 1881330, + "thread": 19 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2106045, + "thread": 21 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2251857, + "thread": 23 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2395167, + "thread": 28 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2544938, + "thread": 25 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2648723, + "thread": 13 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 2852765, + "thread": 4 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 3120315, + "thread": 25 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 3140344, + "thread": 22 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 3438659, + "thread": 7 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 3469234, + "thread": 21 + } + }, + { + "amount": "118.436983854", + "slot": { + "period": 3653039, + "thread": 17 + } + }, + { + "amount": "118.436983848", + "slot": { + "period": 3795464, + "thread": 3 + } + } + ], + "AU18H8BNYXeKwxFiCWQUqTgYKM2Va4mbTyEBZrg5Z35XvwPrUt8X": [ + { + "amount": "77.437141610", + "slot": { + "period": 39326, + "thread": 30 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 292104, + "thread": 11 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 369786, + "thread": 8 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 500434, + "thread": 16 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 733716, + "thread": 25 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 975785, + "thread": 13 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1053987, + "thread": 20 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1165767, + "thread": 16 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1447669, + "thread": 14 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1519794, + "thread": 26 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1693637, + "thread": 22 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 1970787, + "thread": 21 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2121733, + "thread": 30 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2175734, + "thread": 10 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2324292, + "thread": 2 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2560888, + "thread": 8 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2731580, + "thread": 30 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 2857883, + "thread": 9 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 3057829, + "thread": 5 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 3267939, + "thread": 21 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 3441587, + "thread": 31 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 3580243, + "thread": 29 + } + }, + { + "amount": "77.437141610", + "slot": { + "period": 3687625, + "thread": 4 + } + }, + { + "amount": "77.437141602", + "slot": { + "period": 3836977, + "thread": 4 + } + } + ], + "AU18HxQU9pMUhzwzvLHhfVHzYBKadacSDkqXzt9ngitdNqrKu4sd": [ + { + "amount": "89.550494833", + "slot": { + "period": 165201, + "thread": 24 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 232009, + "thread": 27 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 487009, + "thread": 3 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 631512, + "thread": 25 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 775486, + "thread": 30 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 938676, + "thread": 17 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1063602, + "thread": 20 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1228428, + "thread": 7 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1333546, + "thread": 1 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1643237, + "thread": 18 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1669140, + "thread": 30 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1875317, + "thread": 7 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 1980766, + "thread": 1 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2175865, + "thread": 3 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2453648, + "thread": 11 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2464982, + "thread": 14 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2737515, + "thread": 16 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2803276, + "thread": 19 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 2987455, + "thread": 5 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 3208746, + "thread": 13 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 3312737, + "thread": 19 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 3544585, + "thread": 15 + } + }, + { + "amount": "89.550494833", + "slot": { + "period": 3665285, + "thread": 10 + } + }, + { + "amount": "89.550494844", + "slot": { + "period": 3833556, + "thread": 20 + } + } + ], + "AU18J9xuN1PMox97GGtiab5j5HP2N7W65vpSMYos8Wq7i5ZFcS7z": [ + { + "amount": "313.086211690", + "slot": { + "period": 113789, + "thread": 24 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 185553, + "thread": 18 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 350301, + "thread": 3 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 553301, + "thread": 24 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 757322, + "thread": 1 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 859214, + "thread": 8 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 986187, + "thread": 20 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1300933, + "thread": 10 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1359291, + "thread": 22 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1554090, + "thread": 10 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1658881, + "thread": 9 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1964316, + "thread": 17 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 1991132, + "thread": 20 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 2194588, + "thread": 24 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 2451724, + "thread": 27 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 2613164, + "thread": 30 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 2735056, + "thread": 21 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 2914731, + "thread": 1 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 3109843, + "thread": 25 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 3162727, + "thread": 15 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 3364779, + "thread": 18 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 3538762, + "thread": 15 + } + }, + { + "amount": "313.086211690", + "slot": { + "period": 3736147, + "thread": 14 + } + }, + { + "amount": "313.086211680", + "slot": { + "period": 3890856, + "thread": 26 + } + } + ], + "AU18K4Q1jTbu5ZMsxTccmRQZuY8ddYbBzyUrLnGKpGjCLyN8eDvo": [ + { + "amount": "340.548397205", + "slot": { + "period": 24126, + "thread": 29 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 212003, + "thread": 19 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 488725, + "thread": 26 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 510765, + "thread": 4 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 700701, + "thread": 7 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 844711, + "thread": 23 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1016911, + "thread": 27 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1304778, + "thread": 3 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1430552, + "thread": 16 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1622596, + "thread": 5 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1660802, + "thread": 5 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 1950272, + "thread": 29 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2019708, + "thread": 28 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2189152, + "thread": 26 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2372985, + "thread": 28 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2499371, + "thread": 2 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2765768, + "thread": 26 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 2953707, + "thread": 4 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 3040698, + "thread": 2 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 3143897, + "thread": 13 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 3405066, + "thread": 25 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 3458509, + "thread": 1 + } + }, + { + "amount": "340.548397205", + "slot": { + "period": 3760460, + "thread": 30 + } + }, + { + "amount": "340.548397204", + "slot": { + "period": 3805570, + "thread": 20 + } + } + ], + "AU18KEDNphWUYXcMXqmyQRNYpEsnbTXUMZ8kKo9cLDS4Xxco5s4i": [ + { + "amount": "174.086258453", + "slot": { + "period": 65835, + "thread": 14 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 208945, + "thread": 9 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 407567, + "thread": 1 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 555390, + "thread": 17 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 811981, + "thread": 23 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 846088, + "thread": 16 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1057324, + "thread": 19 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1253996, + "thread": 8 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1433264, + "thread": 2 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1608839, + "thread": 22 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1744724, + "thread": 22 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 1822673, + "thread": 0 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2002924, + "thread": 23 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2240862, + "thread": 22 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2461423, + "thread": 21 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2497477, + "thread": 27 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2782358, + "thread": 24 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 2853667, + "thread": 5 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 3062504, + "thread": 29 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 3191885, + "thread": 28 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 3362256, + "thread": 27 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 3577272, + "thread": 10 + } + }, + { + "amount": "174.086258453", + "slot": { + "period": 3743490, + "thread": 3 + } + }, + { + "amount": "174.086258462", + "slot": { + "period": 3793110, + "thread": 4 + } + } + ], + "AU18Ka932TGnWWghS9trjngwR3P9XdWoDhG7uchDAGgAvvVTxttp": [ + { + "amount": "151.335391931", + "slot": { + "period": 40060, + "thread": 25 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 196645, + "thread": 7 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 441536, + "thread": 12 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 491914, + "thread": 5 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 786381, + "thread": 3 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 870698, + "thread": 12 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1116386, + "thread": 0 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1177651, + "thread": 27 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1388816, + "thread": 6 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1570801, + "thread": 8 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1720649, + "thread": 5 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 1958261, + "thread": 23 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2111577, + "thread": 18 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2175005, + "thread": 5 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2410574, + "thread": 7 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2552767, + "thread": 13 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2658460, + "thread": 9 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 2802036, + "thread": 4 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3087066, + "thread": 19 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3191552, + "thread": 10 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3337016, + "thread": 15 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3473824, + "thread": 10 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3638972, + "thread": 25 + } + }, + { + "amount": "151.335391931", + "slot": { + "period": 3844869, + "thread": 26 + } + } + ], + "AU18LDwS9J9HcgWzy7fALwkR4GdH4avUNKgQDxB9ZSTgGHUEhWeb": [ + { + "amount": "93.175264527", + "slot": { + "period": 112180, + "thread": 21 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 283758, + "thread": 19 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 326387, + "thread": 29 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 498669, + "thread": 23 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 742760, + "thread": 0 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 832142, + "thread": 7 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1081167, + "thread": 3 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1255920, + "thread": 22 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1326735, + "thread": 26 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1496246, + "thread": 19 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1692332, + "thread": 21 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 1832741, + "thread": 8 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2139399, + "thread": 28 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2245410, + "thread": 24 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2313733, + "thread": 28 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2507657, + "thread": 0 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2699972, + "thread": 24 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 2831559, + "thread": 30 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 3075610, + "thread": 20 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 3132236, + "thread": 2 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 3345389, + "thread": 27 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 3587689, + "thread": 22 + } + }, + { + "amount": "93.175264527", + "slot": { + "period": 3646796, + "thread": 20 + } + }, + { + "amount": "93.175264532", + "slot": { + "period": 3900607, + "thread": 8 + } + } + ], + "AU18LPiUiFpgYw26GiMVo3X3q6W4UaB9TNRndoAzAgWuAJhvHMLG": [ + { + "amount": "200.273037476", + "slot": { + "period": 159264, + "thread": 14 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 231405, + "thread": 29 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 455956, + "thread": 15 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 494786, + "thread": 9 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 768518, + "thread": 1 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 927134, + "thread": 12 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1041479, + "thread": 26 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1229837, + "thread": 26 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1331341, + "thread": 19 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1630493, + "thread": 19 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1705044, + "thread": 15 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 1822116, + "thread": 28 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2046083, + "thread": 3 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2241639, + "thread": 9 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2325478, + "thread": 14 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2508709, + "thread": 1 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2716850, + "thread": 6 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 2837679, + "thread": 26 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 3067301, + "thread": 17 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 3135359, + "thread": 13 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 3431412, + "thread": 10 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 3519836, + "thread": 12 + } + }, + { + "amount": "200.273037476", + "slot": { + "period": 3776712, + "thread": 4 + } + }, + { + "amount": "200.273037477", + "slot": { + "period": 3882737, + "thread": 9 + } + } + ], + "AU18LRveAz6GntTHgq9bVxzr7SwpRBgB9S4TJY9EC8LNxPgtEBuQ": [ + { + "amount": "423.080590557", + "slot": { + "period": 91566, + "thread": 15 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 268445, + "thread": 23 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 385109, + "thread": 19 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 610504, + "thread": 23 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 737554, + "thread": 9 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 828542, + "thread": 3 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1037312, + "thread": 8 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1180823, + "thread": 2 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1331027, + "thread": 18 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1518938, + "thread": 5 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1753390, + "thread": 10 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 1814448, + "thread": 18 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2064241, + "thread": 23 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2192987, + "thread": 31 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2426309, + "thread": 28 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2514987, + "thread": 11 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2677144, + "thread": 29 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 2851398, + "thread": 13 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 3111655, + "thread": 3 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 3195996, + "thread": 12 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 3401782, + "thread": 8 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 3570982, + "thread": 26 + } + }, + { + "amount": "423.080590557", + "slot": { + "period": 3653501, + "thread": 9 + } + }, + { + "amount": "423.080590550", + "slot": { + "period": 3941454, + "thread": 27 + } + } + ], + "AU18MXT5EzRyACK57ABgyTotHoqcR6WWkmbctHiEwJQU39ErpNeH": [ + { + "amount": "257.199941373", + "slot": { + "period": 11427, + "thread": 25 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 184433, + "thread": 16 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 458663, + "thread": 14 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 621645, + "thread": 20 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 666043, + "thread": 18 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 932175, + "thread": 6 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1089816, + "thread": 20 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1243226, + "thread": 15 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1449776, + "thread": 2 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1518411, + "thread": 10 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1758193, + "thread": 6 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 1920967, + "thread": 29 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2114179, + "thread": 16 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2248803, + "thread": 30 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2354330, + "thread": 25 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2594866, + "thread": 2 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2638336, + "thread": 3 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2905907, + "thread": 16 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 2960819, + "thread": 8 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 3280827, + "thread": 14 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 3312756, + "thread": 25 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 3475036, + "thread": 9 + } + }, + { + "amount": "257.199941373", + "slot": { + "period": 3737958, + "thread": 29 + } + }, + { + "amount": "257.199941374", + "slot": { + "period": 3910748, + "thread": 28 + } + } + ], + "AU18P3SBDuKR3DXmWwzm5KQxsE1nFVCeDxBecQ5EdHgWNL219uPQ": [ + { + "amount": "132.331872408", + "slot": { + "period": 99522, + "thread": 7 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 213644, + "thread": 18 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 475408, + "thread": 30 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 502357, + "thread": 27 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 667802, + "thread": 26 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 931739, + "thread": 13 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 995284, + "thread": 19 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 1164279, + "thread": 14 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 1464434, + "thread": 31 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 1523862, + "thread": 25 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 1754061, + "thread": 24 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 1874553, + "thread": 30 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2076239, + "thread": 29 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2144835, + "thread": 19 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2454489, + "thread": 5 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2610974, + "thread": 1 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2783633, + "thread": 26 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2844943, + "thread": 0 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 2995164, + "thread": 26 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 3254078, + "thread": 31 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 3403127, + "thread": 31 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 3523984, + "thread": 19 + } + }, + { + "amount": "132.331872408", + "slot": { + "period": 3777232, + "thread": 10 + } + }, + { + "amount": "132.331872418", + "slot": { + "period": 3811763, + "thread": 27 + } + } + ], + "AU18PCrjuMoAiPb8LRashd4zUBwrcu3ueFxvuSCsoV8wCLKTg5RN": [ + { + "amount": "194.497833838", + "slot": { + "period": 115476, + "thread": 28 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 199991, + "thread": 7 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 440050, + "thread": 9 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 611354, + "thread": 19 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 691111, + "thread": 28 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 956727, + "thread": 7 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1091273, + "thread": 27 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1176593, + "thread": 24 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1438030, + "thread": 16 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1592859, + "thread": 26 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1765688, + "thread": 16 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 1917066, + "thread": 2 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2055355, + "thread": 18 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2201418, + "thread": 1 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2367842, + "thread": 17 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2474958, + "thread": 4 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2756447, + "thread": 14 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2948960, + "thread": 24 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 2955477, + "thread": 21 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 3252308, + "thread": 12 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 3370941, + "thread": 25 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 3594121, + "thread": 16 + } + }, + { + "amount": "194.497833838", + "slot": { + "period": 3677383, + "thread": 30 + } + }, + { + "amount": "194.497833832", + "slot": { + "period": 3931584, + "thread": 25 + } + } + ], + "AU18PqkQSDt7mfvL6WjNSuYeaPq1RWSPeKWGyKxWnEFnxfXqP6SX": [ + { + "amount": "267.880122810", + "slot": { + "period": 89130, + "thread": 0 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 275192, + "thread": 25 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 429712, + "thread": 29 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 545332, + "thread": 15 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 658900, + "thread": 14 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 937932, + "thread": 23 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1076539, + "thread": 22 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1234655, + "thread": 24 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1362309, + "thread": 17 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1610552, + "thread": 29 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1667481, + "thread": 27 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1858340, + "thread": 4 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 1977960, + "thread": 31 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 2262367, + "thread": 22 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 2362952, + "thread": 21 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 2590777, + "thread": 4 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 2709713, + "thread": 13 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 2814013, + "thread": 29 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 3043136, + "thread": 5 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 3146647, + "thread": 20 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 3422154, + "thread": 0 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 3481861, + "thread": 23 + } + }, + { + "amount": "267.880122810", + "slot": { + "period": 3704554, + "thread": 14 + } + }, + { + "amount": "267.880122817", + "slot": { + "period": 3791898, + "thread": 31 + } + } + ], + "AU18QPanghZmWnjrqQRso9WzFfrwj2TeJ2YiqJYPrFEaPmaef68f": [ + { + "amount": "84.602213786", + "slot": { + "period": 148550, + "thread": 14 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 258383, + "thread": 9 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 394976, + "thread": 27 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 547172, + "thread": 28 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 808905, + "thread": 23 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 960043, + "thread": 6 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1107432, + "thread": 21 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1191891, + "thread": 12 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1444677, + "thread": 18 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1547732, + "thread": 1 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1690761, + "thread": 30 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 1848948, + "thread": 9 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2135093, + "thread": 14 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2219584, + "thread": 8 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2458515, + "thread": 14 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2559331, + "thread": 20 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2720939, + "thread": 24 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 2894138, + "thread": 2 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 3046835, + "thread": 8 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 3175842, + "thread": 13 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 3322126, + "thread": 9 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 3605498, + "thread": 6 + } + }, + { + "amount": "84.602213786", + "slot": { + "period": 3746621, + "thread": 15 + } + }, + { + "amount": "84.602213794", + "slot": { + "period": 3823597, + "thread": 27 + } + } + ], + "AU18QtGzGAncC2jmrXzHBCJatyJm7f3itczY5qS2RfGD3N7xT4Dv": [ + { + "amount": "174.229986127", + "slot": { + "period": 54955, + "thread": 10 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 306704, + "thread": 16 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 448565, + "thread": 11 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 631253, + "thread": 1 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 818925, + "thread": 28 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 972225, + "thread": 21 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1004257, + "thread": 15 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1257465, + "thread": 1 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1353930, + "thread": 15 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1625224, + "thread": 20 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1771672, + "thread": 0 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 1931757, + "thread": 10 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2096994, + "thread": 15 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2164537, + "thread": 26 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2435034, + "thread": 27 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2591356, + "thread": 18 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2698981, + "thread": 14 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2832708, + "thread": 1 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 2986045, + "thread": 24 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 3152736, + "thread": 3 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 3362458, + "thread": 19 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 3487528, + "thread": 21 + } + }, + { + "amount": "174.229986127", + "slot": { + "period": 3736269, + "thread": 8 + } + }, + { + "amount": "174.229986118", + "slot": { + "period": 3820570, + "thread": 10 + } + } + ], + "AU18RAbLZwpxZAdEJyDJvTXB1yYL7HBotbD1zazSwmhiLCidAX9t": [ + { + "amount": "488.947951251", + "slot": { + "period": 118907, + "thread": 12 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 317586, + "thread": 0 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 410785, + "thread": 12 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 524625, + "thread": 24 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 786426, + "thread": 14 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 895349, + "thread": 15 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1117704, + "thread": 20 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1303635, + "thread": 30 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1391377, + "thread": 17 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1499678, + "thread": 13 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1703220, + "thread": 31 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1841461, + "thread": 23 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 1997249, + "thread": 22 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2243905, + "thread": 4 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2444678, + "thread": 30 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2466393, + "thread": 20 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2718987, + "thread": 18 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2903912, + "thread": 11 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 2984972, + "thread": 22 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 3198633, + "thread": 27 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 3443421, + "thread": 26 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 3511571, + "thread": 17 + } + }, + { + "amount": "488.947951251", + "slot": { + "period": 3711812, + "thread": 30 + } + }, + { + "amount": "488.947951250", + "slot": { + "period": 3817508, + "thread": 30 + } + } + ], + "AU18Rnf7mETQ1u9mwo8gVV9n1LhFzT7UxzxW9N5ei4yaaHkbWtis": [ + { + "amount": "56.846754096", + "slot": { + "period": 129755, + "thread": 18 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 269054, + "thread": 20 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 374171, + "thread": 2 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 497559, + "thread": 22 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 761428, + "thread": 7 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 880582, + "thread": 4 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1104580, + "thread": 4 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1195129, + "thread": 30 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1367392, + "thread": 15 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1498968, + "thread": 7 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1699118, + "thread": 12 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 1874155, + "thread": 0 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2048964, + "thread": 19 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2210807, + "thread": 23 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2379184, + "thread": 15 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2536835, + "thread": 2 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2736613, + "thread": 6 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 2876669, + "thread": 26 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 3075877, + "thread": 21 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 3168344, + "thread": 23 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 3298413, + "thread": 25 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 3493008, + "thread": 5 + } + }, + { + "amount": "56.846754096", + "slot": { + "period": 3757581, + "thread": 22 + } + }, + { + "amount": "56.846754084", + "slot": { + "period": 3861317, + "thread": 15 + } + } + ], + "AU18Rr2Vptd2BshGCZhVa4USMoMUzDSPkUb1G7wjZh9XmhapHPNa": [ + { + "amount": "602.115497290", + "slot": { + "period": 37171, + "thread": 10 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 260002, + "thread": 26 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 440768, + "thread": 6 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 622736, + "thread": 4 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 679453, + "thread": 14 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 870909, + "thread": 15 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1061741, + "thread": 27 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1312534, + "thread": 20 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1428734, + "thread": 20 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1543648, + "thread": 24 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1648392, + "thread": 10 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1961494, + "thread": 7 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 1995368, + "thread": 29 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 2239636, + "thread": 17 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 2414854, + "thread": 5 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 2564083, + "thread": 7 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 2728880, + "thread": 30 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 2951271, + "thread": 23 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3011618, + "thread": 31 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3235919, + "thread": 0 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3428210, + "thread": 18 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3548139, + "thread": 22 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3618827, + "thread": 29 + } + }, + { + "amount": "602.115497290", + "slot": { + "period": 3899987, + "thread": 19 + } + } + ], + "AU18S24AfhiB5pRoQUDKaFxxBTnkHZJYFzSwj7Nv6ww85aqABPmE": [ + { + "amount": "63.933990876", + "slot": { + "period": 26746, + "thread": 28 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 244244, + "thread": 4 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 394315, + "thread": 3 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 550203, + "thread": 5 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 682247, + "thread": 9 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 965233, + "thread": 4 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 992832, + "thread": 3 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 1241183, + "thread": 12 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 1442693, + "thread": 5 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 1602429, + "thread": 11 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 1677106, + "thread": 0 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 1884021, + "thread": 24 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2139279, + "thread": 24 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2289511, + "thread": 4 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2304955, + "thread": 24 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2539311, + "thread": 16 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2788209, + "thread": 24 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 2808244, + "thread": 18 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 3045394, + "thread": 31 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 3264139, + "thread": 11 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 3304701, + "thread": 1 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 3493029, + "thread": 3 + } + }, + { + "amount": "63.933990876", + "slot": { + "period": 3743046, + "thread": 22 + } + }, + { + "amount": "63.933990866", + "slot": { + "period": 3826980, + "thread": 20 + } + } + ], + "AU18SPUE7pg5gJAX3Ck1mJqqmgaCfWqjc5hPtCLJpqvStoRfT7eG": [ + { + "amount": "327.989292978", + "slot": { + "period": 45467, + "thread": 4 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 219689, + "thread": 3 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 324069, + "thread": 19 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 609717, + "thread": 17 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 759130, + "thread": 17 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 850334, + "thread": 11 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1021972, + "thread": 19 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1208852, + "thread": 24 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1392675, + "thread": 1 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1602910, + "thread": 23 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1648283, + "thread": 1 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 1938085, + "thread": 7 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2117017, + "thread": 22 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2225819, + "thread": 17 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2438340, + "thread": 12 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2531422, + "thread": 10 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2685043, + "thread": 2 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 2835423, + "thread": 12 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 3019227, + "thread": 25 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 3196949, + "thread": 1 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 3349200, + "thread": 2 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 3508885, + "thread": 19 + } + }, + { + "amount": "327.989292978", + "slot": { + "period": 3618283, + "thread": 29 + } + }, + { + "amount": "327.989292973", + "slot": { + "period": 3783061, + "thread": 4 + } + } + ], + "AU18ShcM9DDqescXNBWwB2qatjx5t5CvgbDTBp7VAXQgFUvND31z": [ + { + "amount": "338.979062412", + "slot": { + "period": 143846, + "thread": 20 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 214426, + "thread": 24 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 456314, + "thread": 4 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 494294, + "thread": 19 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 709789, + "thread": 25 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 850360, + "thread": 4 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1057406, + "thread": 7 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1254771, + "thread": 29 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1419889, + "thread": 8 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1503301, + "thread": 16 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1755796, + "thread": 29 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 1946178, + "thread": 19 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2072648, + "thread": 22 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2230205, + "thread": 15 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2296307, + "thread": 13 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2602995, + "thread": 7 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2711851, + "thread": 25 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 2825820, + "thread": 0 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 3121005, + "thread": 2 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 3262454, + "thread": 5 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 3397599, + "thread": 22 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 3501472, + "thread": 27 + } + }, + { + "amount": "338.979062412", + "slot": { + "period": 3658024, + "thread": 15 + } + }, + { + "amount": "338.979062408", + "slot": { + "period": 3925408, + "thread": 30 + } + } + ], + "AU18Sm5zVaGczF3aiQyrKubFRhDFGXxcJ1gnjSaQ4XgcGktJhksT": [ + { + "amount": "207.582044056", + "slot": { + "period": 85652, + "thread": 14 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 188858, + "thread": 5 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 437935, + "thread": 16 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 514514, + "thread": 8 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 813707, + "thread": 22 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 864784, + "thread": 29 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1026517, + "thread": 25 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1202483, + "thread": 28 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1348356, + "thread": 18 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1644547, + "thread": 26 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1694532, + "thread": 8 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 1823692, + "thread": 10 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2109050, + "thread": 0 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2174285, + "thread": 3 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2418503, + "thread": 20 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2581996, + "thread": 1 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2790163, + "thread": 23 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 2943729, + "thread": 25 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 3105190, + "thread": 5 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 3152810, + "thread": 5 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 3384531, + "thread": 23 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 3489018, + "thread": 8 + } + }, + { + "amount": "207.582044056", + "slot": { + "period": 3717928, + "thread": 16 + } + }, + { + "amount": "207.582044047", + "slot": { + "period": 3805772, + "thread": 11 + } + } + ], + "AU18SxYEy9zvgM3vtGwRg4TFacT6V1jAxY3nZ9SxQDGehVzRQfuG": [ + { + "amount": "114.394429934", + "slot": { + "period": 97247, + "thread": 1 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 287087, + "thread": 24 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 403976, + "thread": 10 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 559229, + "thread": 19 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 686847, + "thread": 17 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 863897, + "thread": 19 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1019958, + "thread": 29 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1199273, + "thread": 12 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1429371, + "thread": 13 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1523811, + "thread": 26 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1727795, + "thread": 24 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1935656, + "thread": 23 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 1977261, + "thread": 27 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 2290201, + "thread": 28 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 2445796, + "thread": 23 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 2540094, + "thread": 25 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 2721534, + "thread": 31 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 2892039, + "thread": 17 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 3010610, + "thread": 12 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 3247941, + "thread": 1 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 3298770, + "thread": 14 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 3471590, + "thread": 30 + } + }, + { + "amount": "114.394429934", + "slot": { + "period": 3648445, + "thread": 3 + } + }, + { + "amount": "114.394429923", + "slot": { + "period": 3792290, + "thread": 23 + } + } + ], + "AU18TAmch15BQPpRMVoztzynhAf5m6BgGcGYKBteSdNqs3D38nss": [ + { + "amount": "199.573115973", + "slot": { + "period": 17998, + "thread": 27 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 271555, + "thread": 25 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 408558, + "thread": 23 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 522524, + "thread": 23 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 692432, + "thread": 25 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 879194, + "thread": 28 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1144354, + "thread": 29 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1171050, + "thread": 13 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1394632, + "thread": 9 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1584040, + "thread": 3 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1677495, + "thread": 5 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 1903831, + "thread": 8 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2069404, + "thread": 29 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2155650, + "thread": 29 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2314111, + "thread": 0 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2481272, + "thread": 16 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2634675, + "thread": 9 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 2797140, + "thread": 6 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 3075030, + "thread": 30 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 3246292, + "thread": 11 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 3369367, + "thread": 7 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 3615463, + "thread": 5 + } + }, + { + "amount": "199.573115973", + "slot": { + "period": 3699304, + "thread": 28 + } + }, + { + "amount": "199.573115976", + "slot": { + "period": 3925180, + "thread": 11 + } + } + ], + "AU18TwbRV5V5VYCc4aJMYE8P5iErs5qrnHCJxFQBUMnXjvfaQXLS": [ + { + "amount": "125.330311358", + "slot": { + "period": 23905, + "thread": 31 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 183969, + "thread": 24 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 442103, + "thread": 12 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 607028, + "thread": 11 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 820755, + "thread": 11 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 885446, + "thread": 13 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1034459, + "thread": 31 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1277796, + "thread": 24 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1453098, + "thread": 6 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1590453, + "thread": 18 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1766979, + "thread": 20 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1875277, + "thread": 6 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 1992242, + "thread": 8 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 2201649, + "thread": 21 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 2389732, + "thread": 3 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 2561133, + "thread": 19 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 2668691, + "thread": 4 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 2805806, + "thread": 0 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3041383, + "thread": 0 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3225502, + "thread": 5 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3365116, + "thread": 29 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3495265, + "thread": 5 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3753297, + "thread": 16 + } + }, + { + "amount": "125.330311358", + "slot": { + "period": 3787210, + "thread": 28 + } + } + ], + "AU18UKgSS8Gs5ea6V1SuM2Exb6BsSjiss3bdWVaEnb7kEdyebR1w": [ + { + "amount": "325.119546237", + "slot": { + "period": 71138, + "thread": 11 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 319942, + "thread": 24 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 482316, + "thread": 2 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 510774, + "thread": 24 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 712634, + "thread": 18 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 957543, + "thread": 15 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1055709, + "thread": 6 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1275462, + "thread": 3 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1323690, + "thread": 7 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1518646, + "thread": 0 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1678570, + "thread": 19 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 1921615, + "thread": 11 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2050420, + "thread": 2 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2252895, + "thread": 25 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2443933, + "thread": 20 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2620391, + "thread": 8 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2732506, + "thread": 22 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 2813411, + "thread": 21 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 3047711, + "thread": 22 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 3268170, + "thread": 3 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 3428320, + "thread": 11 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 3586690, + "thread": 3 + } + }, + { + "amount": "325.119546237", + "slot": { + "period": 3775691, + "thread": 14 + } + }, + { + "amount": "325.119546236", + "slot": { + "period": 3830661, + "thread": 11 + } + } + ], + "AU18UnFZQrpoCErFFhNCzhyD2waKpuyDvz6MrpRCYboBAfJFURSo": [ + { + "amount": "193.916868574", + "slot": { + "period": 40910, + "thread": 5 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 265134, + "thread": 3 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 340730, + "thread": 31 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 545296, + "thread": 17 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 814164, + "thread": 0 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 855036, + "thread": 9 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 996377, + "thread": 24 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 1204434, + "thread": 27 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 1334243, + "thread": 5 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 1484588, + "thread": 30 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 1704197, + "thread": 2 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 1928785, + "thread": 9 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2130934, + "thread": 13 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2188528, + "thread": 0 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2413370, + "thread": 23 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2477817, + "thread": 27 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2699696, + "thread": 16 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 2887754, + "thread": 27 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 3056171, + "thread": 16 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 3211468, + "thread": 5 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 3342277, + "thread": 14 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 3506539, + "thread": 3 + } + }, + { + "amount": "193.916868574", + "slot": { + "period": 3660593, + "thread": 0 + } + }, + { + "amount": "193.916868586", + "slot": { + "period": 3801110, + "thread": 26 + } + } + ], + "AU18VkdoRUsArwXYbRoDPg26YyxXZJBVRGRcLyt4oWBF58Rc83pV": [ + { + "amount": "177.326681801", + "slot": { + "period": 64971, + "thread": 21 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 246536, + "thread": 30 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 489585, + "thread": 19 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 633743, + "thread": 26 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 700356, + "thread": 3 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 848118, + "thread": 23 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1004166, + "thread": 22 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1228332, + "thread": 19 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1400104, + "thread": 14 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1567967, + "thread": 8 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1737337, + "thread": 23 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1936915, + "thread": 8 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 1978418, + "thread": 23 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2259074, + "thread": 18 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2318996, + "thread": 8 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2577569, + "thread": 20 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2675100, + "thread": 3 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2952357, + "thread": 25 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 2988372, + "thread": 30 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 3155587, + "thread": 1 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 3375596, + "thread": 15 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 3467438, + "thread": 29 + } + }, + { + "amount": "177.326681801", + "slot": { + "period": 3736467, + "thread": 8 + } + }, + { + "amount": "177.326681802", + "slot": { + "period": 3885841, + "thread": 14 + } + } + ], + "AU18X8VkgxfECJcHJN8YJ1ktEpgPdbZv94XC5nBCmWqMcUoqtfrK": [ + { + "amount": "247.321437804", + "slot": { + "period": 55030, + "thread": 5 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 267139, + "thread": 29 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 418418, + "thread": 0 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 590367, + "thread": 30 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 716055, + "thread": 1 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 900866, + "thread": 30 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1102737, + "thread": 5 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1168307, + "thread": 2 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1338555, + "thread": 10 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1586644, + "thread": 0 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1693830, + "thread": 11 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 1921190, + "thread": 21 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2129002, + "thread": 0 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2187787, + "thread": 5 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2443937, + "thread": 6 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2570925, + "thread": 22 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2785124, + "thread": 7 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 2828738, + "thread": 22 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 3064086, + "thread": 14 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 3189920, + "thread": 9 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 3325257, + "thread": 1 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 3605712, + "thread": 4 + } + }, + { + "amount": "247.321437804", + "slot": { + "period": 3691433, + "thread": 21 + } + }, + { + "amount": "247.321437812", + "slot": { + "period": 3796171, + "thread": 15 + } + } + ], + "AU18aMfXCXEo6RJzYX4pK2jCKGn1t4Q2SEPDTiBye6nUBmeZpGH6": [ + { + "amount": "404.251418742", + "slot": { + "period": 154940, + "thread": 16 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 205704, + "thread": 22 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 388018, + "thread": 2 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 554136, + "thread": 29 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 695176, + "thread": 13 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 883175, + "thread": 3 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1112877, + "thread": 13 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1210874, + "thread": 1 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1348602, + "thread": 19 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1630433, + "thread": 17 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1689150, + "thread": 6 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1894327, + "thread": 13 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 1991398, + "thread": 24 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2283815, + "thread": 6 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2358554, + "thread": 8 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2610286, + "thread": 28 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2723620, + "thread": 26 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2919563, + "thread": 26 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 2962503, + "thread": 5 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 3155588, + "thread": 21 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 3359288, + "thread": 12 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 3498962, + "thread": 24 + } + }, + { + "amount": "404.251418742", + "slot": { + "period": 3654561, + "thread": 14 + } + }, + { + "amount": "404.251418753", + "slot": { + "period": 3893285, + "thread": 8 + } + } + ], + "AU18bN6FR7NSWbFEvqCpESuHHVWq2AxCNnxjh76km8R5vhy2qFkx": [ + { + "amount": "267.197222193", + "slot": { + "period": 58393, + "thread": 14 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 305925, + "thread": 29 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 373649, + "thread": 19 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 570425, + "thread": 4 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 655160, + "thread": 12 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 862771, + "thread": 30 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1142457, + "thread": 18 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1279741, + "thread": 0 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1338898, + "thread": 10 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1532772, + "thread": 22 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1780924, + "thread": 22 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 1851812, + "thread": 17 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2123028, + "thread": 1 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2259336, + "thread": 3 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2420834, + "thread": 12 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2603785, + "thread": 11 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2758485, + "thread": 28 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2943963, + "thread": 2 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 2964382, + "thread": 14 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 3141493, + "thread": 13 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 3325688, + "thread": 13 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 3528814, + "thread": 22 + } + }, + { + "amount": "267.197222193", + "slot": { + "period": 3733864, + "thread": 30 + } + }, + { + "amount": "267.197222188", + "slot": { + "period": 3834718, + "thread": 29 + } + } + ], + "AU18bgA1FMVtEtJzkxEYzoZb7pGfcjxzydwWZjBuaRvpGV9k4yH4": [ + { + "amount": "110.085650635", + "slot": { + "period": 24372, + "thread": 5 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 219881, + "thread": 5 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 372840, + "thread": 24 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 575793, + "thread": 15 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 719234, + "thread": 6 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 957657, + "thread": 2 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1018146, + "thread": 16 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1164925, + "thread": 9 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1321793, + "thread": 18 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1540054, + "thread": 13 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1686207, + "thread": 24 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 1944108, + "thread": 19 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2142161, + "thread": 16 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2149422, + "thread": 8 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2434524, + "thread": 31 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2603918, + "thread": 2 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2638220, + "thread": 7 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 2836770, + "thread": 4 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 3046661, + "thread": 26 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 3192406, + "thread": 26 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 3308444, + "thread": 24 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 3603915, + "thread": 13 + } + }, + { + "amount": "110.085650635", + "slot": { + "period": 3699091, + "thread": 23 + } + }, + { + "amount": "110.085650644", + "slot": { + "period": 3789790, + "thread": 5 + } + } + ], + "AU18c9drMxJpm5cMTH4PJAjQo7VgnhCAoYPBDo5ScHTPQqmfru58": [ + { + "amount": "241.484251006", + "slot": { + "period": 141716, + "thread": 2 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 183986, + "thread": 17 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 453476, + "thread": 13 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 552846, + "thread": 16 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 774855, + "thread": 11 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 964263, + "thread": 10 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 996424, + "thread": 30 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 1150790, + "thread": 9 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 1441476, + "thread": 30 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 1617846, + "thread": 26 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 1724304, + "thread": 9 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 1811490, + "thread": 17 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2070953, + "thread": 12 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2279090, + "thread": 27 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2442624, + "thread": 18 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2500847, + "thread": 4 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2685487, + "thread": 31 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 2914601, + "thread": 0 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 3027014, + "thread": 20 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 3271982, + "thread": 7 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 3388158, + "thread": 4 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 3476192, + "thread": 30 + } + }, + { + "amount": "241.484251006", + "slot": { + "period": 3760574, + "thread": 5 + } + }, + { + "amount": "241.484251001", + "slot": { + "period": 3833799, + "thread": 29 + } + } + ], + "AU18cdxuq4XQEHPkDK6JrCPs7fUBhxujjQdrvxivRG5qXvmZ5Xa8": [ + { + "amount": "334.914796880", + "slot": { + "period": 14686, + "thread": 12 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 305520, + "thread": 21 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 374867, + "thread": 23 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 543632, + "thread": 20 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 670778, + "thread": 19 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 929666, + "thread": 8 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1088063, + "thread": 20 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1245062, + "thread": 22 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1335167, + "thread": 27 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1536235, + "thread": 16 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1759200, + "thread": 2 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 1838368, + "thread": 23 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2056789, + "thread": 18 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2182664, + "thread": 14 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2304758, + "thread": 8 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2595817, + "thread": 28 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2746290, + "thread": 21 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2876950, + "thread": 17 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 2987127, + "thread": 4 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 3175060, + "thread": 8 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 3373600, + "thread": 24 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 3510570, + "thread": 20 + } + }, + { + "amount": "334.914796880", + "slot": { + "period": 3622280, + "thread": 23 + } + }, + { + "amount": "334.914796878", + "slot": { + "period": 3941114, + "thread": 23 + } + } + ], + "AU18ckHHsPb36kP5Yz8ctA3LeTxBgjgv5E9pYDRwoTiJfND1K62e": [ + { + "amount": "136.824218412", + "slot": { + "period": 144012, + "thread": 27 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 205047, + "thread": 25 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 414420, + "thread": 30 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 578821, + "thread": 8 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 813671, + "thread": 2 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 854649, + "thread": 9 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1007381, + "thread": 28 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1166069, + "thread": 28 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1470044, + "thread": 25 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1516458, + "thread": 14 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1734968, + "thread": 13 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 1834176, + "thread": 29 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2093628, + "thread": 17 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2219903, + "thread": 15 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2355005, + "thread": 5 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2565352, + "thread": 16 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2664824, + "thread": 16 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 2859237, + "thread": 10 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 3055266, + "thread": 26 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 3226001, + "thread": 0 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 3336754, + "thread": 1 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 3543995, + "thread": 7 + } + }, + { + "amount": "136.824218412", + "slot": { + "period": 3653309, + "thread": 23 + } + }, + { + "amount": "136.824218418", + "slot": { + "period": 3895020, + "thread": 23 + } + } + ], + "AU18d2jiMnCPHN1ZcXCGh2JLMGChrkcTK7eKkGfrhaPxjnjqToW8": [ + { + "amount": "511.801546692", + "slot": { + "period": 66692, + "thread": 28 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 312160, + "thread": 2 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 371600, + "thread": 4 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 573133, + "thread": 3 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 807174, + "thread": 2 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 905928, + "thread": 18 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 990500, + "thread": 14 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 1295959, + "thread": 7 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 1368824, + "thread": 16 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 1645079, + "thread": 27 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 1709185, + "thread": 13 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 1943726, + "thread": 0 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2112086, + "thread": 29 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2226450, + "thread": 31 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2461608, + "thread": 13 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2507692, + "thread": 12 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2637769, + "thread": 14 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 2924081, + "thread": 18 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 3106560, + "thread": 30 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 3230811, + "thread": 21 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 3425980, + "thread": 1 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 3587043, + "thread": 14 + } + }, + { + "amount": "511.801546692", + "slot": { + "period": 3679796, + "thread": 9 + } + }, + { + "amount": "511.801546695", + "slot": { + "period": 3872216, + "thread": 19 + } + } + ], + "AU18dU6hNdJahmH6rdyV2rJJjVQA1QC8M6LR6eoa5U7eb8igVeub": [ + { + "amount": "52.415956744", + "slot": { + "period": 141659, + "thread": 13 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 270349, + "thread": 23 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 453342, + "thread": 31 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 614515, + "thread": 6 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 801788, + "thread": 28 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 937562, + "thread": 28 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1117883, + "thread": 30 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1267059, + "thread": 8 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1465078, + "thread": 23 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1566637, + "thread": 29 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1735038, + "thread": 8 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 1875341, + "thread": 1 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2018313, + "thread": 10 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2233998, + "thread": 5 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2423393, + "thread": 16 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2508679, + "thread": 31 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2649583, + "thread": 8 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 2797719, + "thread": 24 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 3059228, + "thread": 29 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 3214131, + "thread": 28 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 3328894, + "thread": 2 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 3552671, + "thread": 9 + } + }, + { + "amount": "52.415956744", + "slot": { + "period": 3642050, + "thread": 19 + } + }, + { + "amount": "52.415956747", + "slot": { + "period": 3784590, + "thread": 0 + } + } + ], + "AU18dxFDFM5o195LXS9v5Ei4FG6dcwbWicshHY4DMXb9kYPNBPqJ": [ + { + "amount": "147.877749899", + "slot": { + "period": 25274, + "thread": 15 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 204868, + "thread": 2 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 363761, + "thread": 22 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 496522, + "thread": 19 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 805424, + "thread": 30 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 929866, + "thread": 8 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1146426, + "thread": 4 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1226498, + "thread": 12 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1477131, + "thread": 1 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1583134, + "thread": 31 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1746364, + "thread": 7 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 1877560, + "thread": 12 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2065243, + "thread": 9 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2222394, + "thread": 28 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2295019, + "thread": 11 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2542044, + "thread": 0 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2644914, + "thread": 25 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 2801759, + "thread": 25 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 3067405, + "thread": 5 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 3198013, + "thread": 27 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 3411123, + "thread": 6 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 3512126, + "thread": 10 + } + }, + { + "amount": "147.877749899", + "slot": { + "period": 3734869, + "thread": 30 + } + }, + { + "amount": "147.877749897", + "slot": { + "period": 3913307, + "thread": 22 + } + } + ], + "AU18e3XwywtZRJSFtyTAQrKg5g7pAvyVSrCJWyCsp6zqjsNWKBhy": [ + { + "amount": "517.412751549", + "slot": { + "period": 45384, + "thread": 24 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 216160, + "thread": 12 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 409282, + "thread": 10 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 494148, + "thread": 20 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 742323, + "thread": 28 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 923962, + "thread": 17 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1039465, + "thread": 14 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1217380, + "thread": 4 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1369118, + "thread": 0 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1536825, + "thread": 25 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1694422, + "thread": 9 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 1836289, + "thread": 23 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2047301, + "thread": 2 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2205269, + "thread": 0 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2304544, + "thread": 7 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2508907, + "thread": 17 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2747626, + "thread": 25 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 2920900, + "thread": 21 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 3025374, + "thread": 28 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 3148547, + "thread": 30 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 3417522, + "thread": 10 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 3484393, + "thread": 23 + } + }, + { + "amount": "517.412751549", + "slot": { + "period": 3719001, + "thread": 24 + } + }, + { + "amount": "517.412751556", + "slot": { + "period": 3869775, + "thread": 31 + } + } + ], + "AU18eFPgNbbceJARxojiryGiDNP1d6PPJpELEnKR1qujcvhBFkax": [ + { + "amount": "108.378211248", + "slot": { + "period": 23297, + "thread": 29 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 314468, + "thread": 6 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 426339, + "thread": 28 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 589085, + "thread": 31 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 746383, + "thread": 16 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 885312, + "thread": 3 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1013931, + "thread": 0 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1172484, + "thread": 7 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1348701, + "thread": 27 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1534091, + "thread": 24 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1658475, + "thread": 31 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1857653, + "thread": 15 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 1989816, + "thread": 29 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 2186044, + "thread": 5 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 2315638, + "thread": 22 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 2503862, + "thread": 1 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 2765493, + "thread": 15 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 2947533, + "thread": 2 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 3100473, + "thread": 23 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 3193091, + "thread": 12 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 3390825, + "thread": 10 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 3465165, + "thread": 22 + } + }, + { + "amount": "108.378211248", + "slot": { + "period": 3704372, + "thread": 25 + } + }, + { + "amount": "108.378211247", + "slot": { + "period": 3854652, + "thread": 1 + } + } + ], + "AU18eVct6KnUe9NWsXYaEmv5XY2C92ptrxWwJWMXtJ5UMBWpYLRE": [ + { + "amount": "57.435699231", + "slot": { + "period": 159675, + "thread": 5 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 245897, + "thread": 17 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 432217, + "thread": 31 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 643081, + "thread": 1 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 730452, + "thread": 1 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 974108, + "thread": 19 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1084624, + "thread": 9 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1241083, + "thread": 5 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1406474, + "thread": 4 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1572223, + "thread": 6 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1698464, + "thread": 12 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 1884136, + "thread": 1 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2113155, + "thread": 5 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2242860, + "thread": 9 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2419876, + "thread": 29 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2495331, + "thread": 20 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2714309, + "thread": 17 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 2823706, + "thread": 0 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 3079600, + "thread": 27 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 3245256, + "thread": 30 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 3329810, + "thread": 19 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 3499052, + "thread": 22 + } + }, + { + "amount": "57.435699231", + "slot": { + "period": 3739838, + "thread": 7 + } + }, + { + "amount": "57.435699241", + "slot": { + "period": 3820133, + "thread": 20 + } + } + ], + "AU18eimD1C52vDwyeXvKy1n74s2QUz5rbkKkVVMK7s7FQUvRDmVL": [ + { + "amount": "250.304716658", + "slot": { + "period": 134103, + "thread": 9 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 242487, + "thread": 9 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 457274, + "thread": 20 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 502214, + "thread": 19 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 768381, + "thread": 15 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 904102, + "thread": 9 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1077714, + "thread": 21 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1261208, + "thread": 6 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1474043, + "thread": 6 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1603883, + "thread": 1 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1786717, + "thread": 15 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 1818420, + "thread": 21 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2060307, + "thread": 10 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2237011, + "thread": 29 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2381447, + "thread": 18 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2493264, + "thread": 11 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2790839, + "thread": 2 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 2892079, + "thread": 22 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 3097359, + "thread": 5 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 3211427, + "thread": 4 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 3410041, + "thread": 4 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 3606769, + "thread": 2 + } + }, + { + "amount": "250.304716658", + "slot": { + "period": 3670036, + "thread": 14 + } + }, + { + "amount": "250.304716651", + "slot": { + "period": 3842129, + "thread": 13 + } + } + ], + "AU18fV66Nj3dqCUBqPziHvAp66RfsJpUzytPXKNAXKTvk4RxTSsd": [ + { + "amount": "192.127565678", + "slot": { + "period": 14997, + "thread": 0 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 276625, + "thread": 5 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 414535, + "thread": 4 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 494790, + "thread": 1 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 765053, + "thread": 26 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 920540, + "thread": 20 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1094499, + "thread": 30 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1276824, + "thread": 11 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1386494, + "thread": 24 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1596123, + "thread": 23 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1760350, + "thread": 11 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1817249, + "thread": 15 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 1987299, + "thread": 10 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 2152819, + "thread": 15 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 2447079, + "thread": 10 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 2580222, + "thread": 10 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 2753781, + "thread": 31 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 2885487, + "thread": 6 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 3090348, + "thread": 9 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 3143723, + "thread": 25 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 3425540, + "thread": 5 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 3523750, + "thread": 29 + } + }, + { + "amount": "192.127565678", + "slot": { + "period": 3695279, + "thread": 24 + } + }, + { + "amount": "192.127565683", + "slot": { + "period": 3905258, + "thread": 30 + } + } + ], + "AU18fe825GJCNwTuKV81Bp56jeX6qMbPL7HFdC1ArXwtxy1Ytu5r": [ + { + "amount": "575.325162551", + "slot": { + "period": 140916, + "thread": 1 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 274224, + "thread": 20 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 446898, + "thread": 13 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 646862, + "thread": 15 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 783384, + "thread": 10 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 869092, + "thread": 11 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 999035, + "thread": 2 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 1301108, + "thread": 24 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 1360360, + "thread": 28 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 1484188, + "thread": 11 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 1776137, + "thread": 19 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 1816990, + "thread": 30 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2104816, + "thread": 27 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2146679, + "thread": 21 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2314702, + "thread": 8 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2549068, + "thread": 31 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2645912, + "thread": 19 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 2882006, + "thread": 0 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 3084785, + "thread": 31 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 3174076, + "thread": 7 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 3362032, + "thread": 23 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 3566919, + "thread": 3 + } + }, + { + "amount": "575.325162551", + "slot": { + "period": 3767153, + "thread": 3 + } + }, + { + "amount": "575.325162561", + "slot": { + "period": 3863678, + "thread": 29 + } + } + ], + "AU18hkozXnFKELUB5JwdzRa2cUZQA5YhDnTiLXgnrxaE3vkFjccD": [ + { + "amount": "181.691399380", + "slot": { + "period": 41802, + "thread": 13 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 187693, + "thread": 7 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 404589, + "thread": 5 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 539737, + "thread": 30 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 686225, + "thread": 27 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 927044, + "thread": 14 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1028347, + "thread": 28 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1288825, + "thread": 19 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1399812, + "thread": 27 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1567374, + "thread": 20 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1754243, + "thread": 9 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 1909657, + "thread": 9 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2050128, + "thread": 28 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2289154, + "thread": 10 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2412172, + "thread": 10 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2466472, + "thread": 5 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2745197, + "thread": 7 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 2835427, + "thread": 14 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 3036327, + "thread": 12 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 3127230, + "thread": 17 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 3363101, + "thread": 0 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 3453225, + "thread": 8 + } + }, + { + "amount": "181.691399380", + "slot": { + "period": 3730945, + "thread": 29 + } + }, + { + "amount": "181.691399370", + "slot": { + "period": 3904489, + "thread": 10 + } + } + ], + "AU18i1He3dYKHPmBfPHK4QukcPGBdxYWfDhGQvRRcMPZjkSqQu8v": [ + { + "amount": "260.535234446", + "slot": { + "period": 35306, + "thread": 22 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 220704, + "thread": 15 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 353355, + "thread": 30 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 560520, + "thread": 8 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 730236, + "thread": 24 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 873735, + "thread": 16 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1129550, + "thread": 18 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1161645, + "thread": 17 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1424742, + "thread": 0 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1561149, + "thread": 12 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1669828, + "thread": 25 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 1956118, + "thread": 15 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2066657, + "thread": 30 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2246526, + "thread": 24 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2391649, + "thread": 5 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2526628, + "thread": 23 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2744517, + "thread": 2 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2837008, + "thread": 18 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 2963980, + "thread": 8 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 3180968, + "thread": 31 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 3378912, + "thread": 30 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 3497732, + "thread": 19 + } + }, + { + "amount": "260.535234446", + "slot": { + "period": 3632987, + "thread": 27 + } + }, + { + "amount": "260.535234448", + "slot": { + "period": 3799117, + "thread": 8 + } + } + ], + "AU18iYPF49WgBG7vgmsHgzH4wdxX3xAUUAmnW4wgCDuxKv87gfLV": [ + { + "amount": "126.506356648", + "slot": { + "period": 156405, + "thread": 10 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 263716, + "thread": 27 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 327945, + "thread": 26 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 634420, + "thread": 9 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 662707, + "thread": 8 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 824120, + "thread": 20 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1143782, + "thread": 17 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1284112, + "thread": 16 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1368867, + "thread": 29 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1503593, + "thread": 26 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1651856, + "thread": 20 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 1927095, + "thread": 27 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2001811, + "thread": 14 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2162490, + "thread": 22 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2349744, + "thread": 19 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2534476, + "thread": 0 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2645529, + "thread": 21 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 2834861, + "thread": 9 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 3013763, + "thread": 13 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 3238312, + "thread": 12 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 3348694, + "thread": 12 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 3574097, + "thread": 26 + } + }, + { + "amount": "126.506356648", + "slot": { + "period": 3624840, + "thread": 9 + } + }, + { + "amount": "126.506356641", + "slot": { + "period": 3942656, + "thread": 10 + } + } + ], + "AU18iiad2GqzCLK1paAFgM2cMq5Afs1a1g4vVrHRDMvZMjS746Hw": [ + { + "amount": "248.998404644", + "slot": { + "period": 38105, + "thread": 8 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 183582, + "thread": 28 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 457807, + "thread": 22 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 508428, + "thread": 14 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 682363, + "thread": 27 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 974848, + "thread": 24 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1107456, + "thread": 26 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1303281, + "thread": 11 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1425295, + "thread": 5 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1576452, + "thread": 29 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1701644, + "thread": 18 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 1970643, + "thread": 22 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2030869, + "thread": 8 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2197874, + "thread": 28 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2353599, + "thread": 6 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2474334, + "thread": 10 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2680053, + "thread": 23 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 2890570, + "thread": 0 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 3095820, + "thread": 11 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 3224930, + "thread": 12 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 3351072, + "thread": 15 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 3536954, + "thread": 31 + } + }, + { + "amount": "248.998404644", + "slot": { + "period": 3752491, + "thread": 4 + } + }, + { + "amount": "248.998404651", + "slot": { + "period": 3939989, + "thread": 16 + } + } + ], + "AU18imsRes8SGw9TGcqeJRCqBHXoS5D3S3SAQtgdufh7emCqdwgU": [ + { + "amount": "569.602894008", + "slot": { + "period": 157889, + "thread": 3 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 175476, + "thread": 30 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 388474, + "thread": 21 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 519210, + "thread": 6 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 683861, + "thread": 29 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 981192, + "thread": 15 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1042398, + "thread": 26 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1175288, + "thread": 29 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1324614, + "thread": 31 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1504754, + "thread": 25 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1786979, + "thread": 30 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 1949310, + "thread": 3 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2130500, + "thread": 25 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2237870, + "thread": 26 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2429956, + "thread": 5 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2598008, + "thread": 4 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2714344, + "thread": 2 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2929709, + "thread": 2 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 2959793, + "thread": 21 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 3142718, + "thread": 22 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 3425556, + "thread": 9 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 3474002, + "thread": 30 + } + }, + { + "amount": "569.602894008", + "slot": { + "period": 3757406, + "thread": 12 + } + }, + { + "amount": "569.602893999", + "slot": { + "period": 3900346, + "thread": 14 + } + } + ], + "AU18jqiTuk9Xs3rKXabZwHKdcH528qBvZsAfPtk7UW5oUKauwrXh": [ + { + "amount": "160.057022934", + "slot": { + "period": 99478, + "thread": 30 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 193197, + "thread": 30 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 363835, + "thread": 12 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 583047, + "thread": 16 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 706771, + "thread": 0 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 911441, + "thread": 2 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1048646, + "thread": 27 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1290292, + "thread": 30 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1459598, + "thread": 3 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1557755, + "thread": 3 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1764490, + "thread": 19 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 1854191, + "thread": 2 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2077867, + "thread": 26 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2177708, + "thread": 28 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2410068, + "thread": 22 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2580636, + "thread": 17 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2732540, + "thread": 11 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 2919438, + "thread": 1 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 3012483, + "thread": 27 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 3167150, + "thread": 0 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 3423404, + "thread": 18 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 3496897, + "thread": 7 + } + }, + { + "amount": "160.057022934", + "slot": { + "period": 3746430, + "thread": 22 + } + }, + { + "amount": "160.057022933", + "slot": { + "period": 3892898, + "thread": 18 + } + } + ], + "AU18k3tB6gasR54Lc6zNmYu65iF8wVyv2DhV1tFzyQjeK5JoCvbH": [ + { + "amount": "128.624624306", + "slot": { + "period": 36031, + "thread": 30 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 291458, + "thread": 24 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 360759, + "thread": 2 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 563008, + "thread": 11 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 743603, + "thread": 22 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 837659, + "thread": 2 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1020784, + "thread": 2 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1273383, + "thread": 23 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1387391, + "thread": 28 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1566672, + "thread": 0 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1793047, + "thread": 27 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 1918415, + "thread": 20 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2050966, + "thread": 26 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2280257, + "thread": 4 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2366007, + "thread": 0 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2510669, + "thread": 17 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2724302, + "thread": 12 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 2864838, + "thread": 8 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 3087243, + "thread": 8 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 3139957, + "thread": 21 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 3320710, + "thread": 24 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 3593750, + "thread": 2 + } + }, + { + "amount": "128.624624306", + "slot": { + "period": 3694735, + "thread": 12 + } + }, + { + "amount": "128.624624307", + "slot": { + "period": 3813197, + "thread": 1 + } + } + ], + "AU18kJUn8rR5mez2ob8bxyhU1gWcEKun5EyfEnB5W5ToTAwvm7yR": [ + { + "amount": "116.744264497", + "slot": { + "period": 51058, + "thread": 6 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 244169, + "thread": 18 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 408500, + "thread": 18 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 634871, + "thread": 4 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 727107, + "thread": 19 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 866532, + "thread": 1 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1116117, + "thread": 30 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1179202, + "thread": 28 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1363555, + "thread": 30 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1646075, + "thread": 19 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1723864, + "thread": 4 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 1935484, + "thread": 10 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2104232, + "thread": 30 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2223068, + "thread": 12 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2346965, + "thread": 27 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2492041, + "thread": 25 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2683627, + "thread": 19 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2804501, + "thread": 23 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 2971523, + "thread": 22 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 3268320, + "thread": 19 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 3308445, + "thread": 5 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 3486349, + "thread": 7 + } + }, + { + "amount": "116.744264497", + "slot": { + "period": 3640499, + "thread": 7 + } + }, + { + "amount": "116.744264493", + "slot": { + "period": 3933222, + "thread": 27 + } + } + ], + "AU18mLPxrsKJ78U1BU96EC3Tc4GEVNfqRAZEagPbbzKhpJPt7XwW": [ + { + "amount": "89.675062559", + "slot": { + "period": 68845, + "thread": 17 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 260122, + "thread": 18 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 398644, + "thread": 29 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 629761, + "thread": 29 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 796194, + "thread": 23 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 847499, + "thread": 24 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1023811, + "thread": 11 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1259798, + "thread": 26 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1414834, + "thread": 23 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1548837, + "thread": 7 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1732644, + "thread": 9 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 1872407, + "thread": 7 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2068744, + "thread": 14 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2190230, + "thread": 18 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2425160, + "thread": 13 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2589221, + "thread": 19 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2757931, + "thread": 1 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 2857928, + "thread": 29 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 3080752, + "thread": 11 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 3272496, + "thread": 20 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 3409101, + "thread": 0 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 3481609, + "thread": 9 + } + }, + { + "amount": "89.675062559", + "slot": { + "period": 3753508, + "thread": 2 + } + }, + { + "amount": "89.675062550", + "slot": { + "period": 3838015, + "thread": 25 + } + } + ], + "AU18nVRUMzaSNYDiQfvWfaFpXwnNR9U6pXk6qt7fEPrc9BxRj9Wb": [ + { + "amount": "453.730476305", + "slot": { + "period": 79269, + "thread": 1 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 174215, + "thread": 5 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 413924, + "thread": 14 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 568561, + "thread": 30 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 805740, + "thread": 30 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 922576, + "thread": 5 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1073277, + "thread": 12 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1307495, + "thread": 25 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1421834, + "thread": 15 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1489615, + "thread": 21 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1729911, + "thread": 17 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 1816203, + "thread": 28 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2117782, + "thread": 10 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2192100, + "thread": 7 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2344041, + "thread": 27 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2622288, + "thread": 24 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2769209, + "thread": 17 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 2912568, + "thread": 10 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 3065035, + "thread": 30 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 3274155, + "thread": 4 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 3404312, + "thread": 31 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 3498643, + "thread": 31 + } + }, + { + "amount": "453.730476305", + "slot": { + "period": 3760336, + "thread": 13 + } + }, + { + "amount": "453.730476301", + "slot": { + "period": 3801049, + "thread": 24 + } + } + ], + "AU18oLbk1XgmgEvTxSKG9hzaAfjixGW1t87DURNART4iqXYukC45": [ + { + "amount": "226.105963486", + "slot": { + "period": 25329, + "thread": 24 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 224721, + "thread": 19 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 379624, + "thread": 2 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 579964, + "thread": 27 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 655098, + "thread": 3 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 875200, + "thread": 10 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1027501, + "thread": 4 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1283416, + "thread": 20 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1396811, + "thread": 1 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1550811, + "thread": 10 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1674622, + "thread": 0 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 1945414, + "thread": 6 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2074857, + "thread": 27 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2198131, + "thread": 30 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2347695, + "thread": 18 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2586159, + "thread": 26 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2764922, + "thread": 27 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 2876232, + "thread": 29 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 3078923, + "thread": 24 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 3192291, + "thread": 25 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 3398442, + "thread": 1 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 3499515, + "thread": 22 + } + }, + { + "amount": "226.105963486", + "slot": { + "period": 3779718, + "thread": 15 + } + }, + { + "amount": "226.105963487", + "slot": { + "period": 3780376, + "thread": 26 + } + } + ], + "AU18ofm2DuYCyv3PMidrFpAqADTYyqKd8tVHWnS7YPV58GfwHBQU": [ + { + "amount": "181.031978640", + "slot": { + "period": 21063, + "thread": 15 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 171609, + "thread": 9 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 458104, + "thread": 25 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 605102, + "thread": 13 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 741732, + "thread": 28 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 881372, + "thread": 23 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1080267, + "thread": 30 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1313068, + "thread": 2 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1468557, + "thread": 1 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1586927, + "thread": 25 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1729517, + "thread": 22 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1842465, + "thread": 13 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 1994768, + "thread": 29 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 2216002, + "thread": 28 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 2301542, + "thread": 31 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 2472547, + "thread": 31 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 2639708, + "thread": 18 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 2899422, + "thread": 8 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 3073684, + "thread": 28 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 3242263, + "thread": 24 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 3328776, + "thread": 27 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 3494458, + "thread": 13 + } + }, + { + "amount": "181.031978640", + "slot": { + "period": 3689955, + "thread": 11 + } + }, + { + "amount": "181.031978645", + "slot": { + "period": 3811478, + "thread": 27 + } + } + ], + "AU18p2fvmFsVfszMdSFd35My3kuMQyaRg12rigoT5hsPC6aMCXtC": [ + { + "amount": "52.246542852", + "slot": { + "period": 20045, + "thread": 29 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 222004, + "thread": 3 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 443015, + "thread": 19 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 496689, + "thread": 7 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 783763, + "thread": 17 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 931865, + "thread": 0 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1081773, + "thread": 23 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1292779, + "thread": 28 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1423569, + "thread": 2 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1525380, + "thread": 18 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1719243, + "thread": 3 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1932233, + "thread": 25 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 1990302, + "thread": 13 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 2189820, + "thread": 7 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 2323428, + "thread": 1 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 2566573, + "thread": 21 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 2708843, + "thread": 29 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 2859111, + "thread": 4 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 3033655, + "thread": 10 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 3248635, + "thread": 8 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 3378256, + "thread": 7 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 3537663, + "thread": 21 + } + }, + { + "amount": "52.246542852", + "slot": { + "period": 3777766, + "thread": 24 + } + }, + { + "amount": "52.246542847", + "slot": { + "period": 3843469, + "thread": 4 + } + } + ], + "AU18pGUr69mdTxuBgaYg1i8awdXUiftJEsmvaUuFNUdxY9NksUFS": [ + { + "amount": "148.946471233", + "slot": { + "period": 85287, + "thread": 10 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 270330, + "thread": 1 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 423598, + "thread": 25 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 541289, + "thread": 6 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 714991, + "thread": 31 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 878518, + "thread": 16 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1076394, + "thread": 2 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1242675, + "thread": 26 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1428755, + "thread": 17 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1529342, + "thread": 25 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1670343, + "thread": 30 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 1925073, + "thread": 12 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2089861, + "thread": 29 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2271545, + "thread": 17 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2356988, + "thread": 20 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2487528, + "thread": 11 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2727243, + "thread": 27 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 2873338, + "thread": 17 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 3069071, + "thread": 21 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 3203653, + "thread": 3 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 3391114, + "thread": 14 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 3588396, + "thread": 26 + } + }, + { + "amount": "148.946471233", + "slot": { + "period": 3771696, + "thread": 17 + } + }, + { + "amount": "148.946471226", + "slot": { + "period": 3909898, + "thread": 24 + } + } + ], + "AU18pbtLpEvCnLQsfccZ4wSkbuMfi5ftfxwJzHyVy8BwsU89kUz2": [ + { + "amount": "107.091021119", + "slot": { + "period": 65779, + "thread": 13 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 242427, + "thread": 25 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 366806, + "thread": 22 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 537225, + "thread": 4 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 789518, + "thread": 25 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 975305, + "thread": 5 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1049862, + "thread": 10 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1294769, + "thread": 18 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1464200, + "thread": 18 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1587592, + "thread": 20 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1759125, + "thread": 10 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 1939636, + "thread": 27 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2014170, + "thread": 7 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2203322, + "thread": 21 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2434958, + "thread": 5 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2546161, + "thread": 25 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2646914, + "thread": 18 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2828017, + "thread": 2 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 2979541, + "thread": 27 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 3184164, + "thread": 8 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 3428253, + "thread": 16 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 3539076, + "thread": 15 + } + }, + { + "amount": "107.091021119", + "slot": { + "period": 3651656, + "thread": 31 + } + }, + { + "amount": "107.091021114", + "slot": { + "period": 3841292, + "thread": 27 + } + } + ], + "AU18phjCfaQGToYWvnpHDJuK8Z2cuwRUFgjZpBKHhXwUaG7p9v9T": [ + { + "amount": "64.587769807", + "slot": { + "period": 129131, + "thread": 11 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 295817, + "thread": 31 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 457404, + "thread": 8 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 543301, + "thread": 1 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 668795, + "thread": 15 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 925341, + "thread": 8 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1145000, + "thread": 13 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1308930, + "thread": 12 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1427570, + "thread": 4 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1528650, + "thread": 9 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1666835, + "thread": 7 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 1944190, + "thread": 26 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2035739, + "thread": 23 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2255073, + "thread": 3 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2317679, + "thread": 10 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2617484, + "thread": 29 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2696962, + "thread": 25 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 2936756, + "thread": 10 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3060533, + "thread": 27 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3218737, + "thread": 21 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3420911, + "thread": 8 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3492756, + "thread": 31 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3669602, + "thread": 27 + } + }, + { + "amount": "64.587769807", + "slot": { + "period": 3822490, + "thread": 0 + } + } + ], + "AU18q9Q3i3HkgvasinqWfBzS5GrJt18r5W97KMQD3CNNqwzFDHae": [ + { + "amount": "275.679836325", + "slot": { + "period": 38952, + "thread": 7 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 260309, + "thread": 20 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 414923, + "thread": 16 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 584312, + "thread": 23 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 680043, + "thread": 12 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 884519, + "thread": 9 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1053898, + "thread": 31 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1255487, + "thread": 16 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1349632, + "thread": 22 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1557613, + "thread": 9 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1757741, + "thread": 31 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1951798, + "thread": 0 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 1995477, + "thread": 1 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 2242283, + "thread": 15 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 2372073, + "thread": 12 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 2613489, + "thread": 17 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 2666075, + "thread": 2 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 2853523, + "thread": 22 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 3094274, + "thread": 2 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 3212286, + "thread": 17 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 3409968, + "thread": 24 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 3608598, + "thread": 5 + } + }, + { + "amount": "275.679836325", + "slot": { + "period": 3627395, + "thread": 4 + } + }, + { + "amount": "275.679836323", + "slot": { + "period": 3836664, + "thread": 5 + } + } + ], + "AU18qNLEPBYBYD3LExegjoDjUi26SgCntBXBWbF5yn7whMPVFS9C": [ + { + "amount": "343.606148078", + "slot": { + "period": 161879, + "thread": 30 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 273150, + "thread": 28 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 374980, + "thread": 28 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 575663, + "thread": 30 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 713267, + "thread": 22 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 954641, + "thread": 23 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 998181, + "thread": 29 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 1314099, + "thread": 13 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 1474767, + "thread": 23 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 1641166, + "thread": 10 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 1779122, + "thread": 18 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 1932344, + "thread": 9 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2064169, + "thread": 1 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2274972, + "thread": 17 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2402033, + "thread": 13 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2545493, + "thread": 13 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2787577, + "thread": 24 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 2924113, + "thread": 9 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 3111613, + "thread": 18 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 3142793, + "thread": 9 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 3313771, + "thread": 27 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 3598899, + "thread": 3 + } + }, + { + "amount": "343.606148078", + "slot": { + "period": 3695750, + "thread": 21 + } + }, + { + "amount": "343.606148081", + "slot": { + "period": 3844459, + "thread": 17 + } + } + ], + "AU18rAGkmmMZDSVNUaYcpzTEBt6sgvT2j99gAjEw7HwXHSfCodHH": [ + { + "amount": "162.200030078", + "slot": { + "period": 53739, + "thread": 4 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 313512, + "thread": 3 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 457923, + "thread": 6 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 553261, + "thread": 24 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 684640, + "thread": 0 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 857970, + "thread": 26 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1119294, + "thread": 3 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1273871, + "thread": 4 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1371084, + "thread": 30 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1554869, + "thread": 19 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1713745, + "thread": 25 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 1952517, + "thread": 16 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2048473, + "thread": 26 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2265890, + "thread": 27 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2397024, + "thread": 30 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2478398, + "thread": 25 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2744609, + "thread": 17 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 2820446, + "thread": 29 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 3001255, + "thread": 14 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 3136575, + "thread": 14 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 3331662, + "thread": 9 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 3539009, + "thread": 24 + } + }, + { + "amount": "162.200030078", + "slot": { + "period": 3618534, + "thread": 11 + } + }, + { + "amount": "162.200030089", + "slot": { + "period": 3845173, + "thread": 20 + } + } + ], + "AU18rGesr96MLFS9gTKW7ePeA6WNXdV4M1QjD1T6uHSEEBsVr59C": [ + { + "amount": "92.799223315", + "slot": { + "period": 133062, + "thread": 20 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 223424, + "thread": 28 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 478669, + "thread": 21 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 595610, + "thread": 13 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 817720, + "thread": 31 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 861447, + "thread": 9 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1007061, + "thread": 20 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1316715, + "thread": 29 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1364596, + "thread": 30 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1518211, + "thread": 15 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1671048, + "thread": 0 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 1907996, + "thread": 20 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2113915, + "thread": 0 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2190430, + "thread": 7 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2368024, + "thread": 13 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2599724, + "thread": 6 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2662165, + "thread": 10 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2820013, + "thread": 4 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 2988824, + "thread": 3 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 3159750, + "thread": 27 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 3301756, + "thread": 27 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 3524086, + "thread": 12 + } + }, + { + "amount": "92.799223315", + "slot": { + "period": 3666038, + "thread": 30 + } + }, + { + "amount": "92.799223308", + "slot": { + "period": 3892314, + "thread": 29 + } + } + ], + "AU18razszC2ET9KzGF2oPRguABpDmLs29A65RkjTgjF1noTkGcro": [ + { + "amount": "328.660429652", + "slot": { + "period": 77280, + "thread": 8 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 314530, + "thread": 10 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 419126, + "thread": 8 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 637863, + "thread": 16 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 722904, + "thread": 13 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 905199, + "thread": 14 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1133554, + "thread": 28 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1230621, + "thread": 8 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1410287, + "thread": 18 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1481084, + "thread": 30 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1730764, + "thread": 3 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 1964396, + "thread": 6 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2090391, + "thread": 6 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2200704, + "thread": 22 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2344546, + "thread": 9 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2587936, + "thread": 21 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2770258, + "thread": 0 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 2853390, + "thread": 5 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 3024841, + "thread": 30 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 3177848, + "thread": 1 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 3366722, + "thread": 10 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 3595968, + "thread": 2 + } + }, + { + "amount": "328.660429652", + "slot": { + "period": 3629078, + "thread": 15 + } + }, + { + "amount": "328.660429662", + "slot": { + "period": 3851959, + "thread": 11 + } + } + ], + "AU18st1NxnSVLCTBNt8bqHPEMnWzdiUAzisXYvAC2ToeuBeYYPsH": [ + { + "amount": "281.215103938", + "slot": { + "period": 39022, + "thread": 23 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 303258, + "thread": 7 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 472880, + "thread": 22 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 574218, + "thread": 6 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 674134, + "thread": 24 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 908762, + "thread": 4 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1034669, + "thread": 13 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1163116, + "thread": 4 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1438368, + "thread": 3 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1567415, + "thread": 4 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1703430, + "thread": 1 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 1959262, + "thread": 13 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2054836, + "thread": 11 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2201820, + "thread": 16 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2322738, + "thread": 3 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2513564, + "thread": 13 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2750223, + "thread": 24 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 2897581, + "thread": 27 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 3001366, + "thread": 14 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 3147536, + "thread": 10 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 3298284, + "thread": 12 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 3552317, + "thread": 27 + } + }, + { + "amount": "281.215103938", + "slot": { + "period": 3665135, + "thread": 27 + } + }, + { + "amount": "281.215103935", + "slot": { + "period": 3793232, + "thread": 10 + } + } + ], + "AU18t4EbjXSjpxoo6Hb2YHy4VKx3Lf1ykKhpQXRacMFieT2mnnc7": [ + { + "amount": "187.329883073", + "slot": { + "period": 125151, + "thread": 21 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 257903, + "thread": 29 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 395961, + "thread": 10 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 647822, + "thread": 12 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 688954, + "thread": 9 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 933860, + "thread": 30 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1040243, + "thread": 2 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1186594, + "thread": 8 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1399793, + "thread": 27 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1618785, + "thread": 20 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1649716, + "thread": 7 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 1918073, + "thread": 27 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2010627, + "thread": 8 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2158809, + "thread": 13 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2303960, + "thread": 20 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2598608, + "thread": 0 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2702779, + "thread": 24 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 2881704, + "thread": 23 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 3036559, + "thread": 21 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 3227698, + "thread": 9 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 3303534, + "thread": 6 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 3534063, + "thread": 1 + } + }, + { + "amount": "187.329883073", + "slot": { + "period": 3694742, + "thread": 4 + } + }, + { + "amount": "187.329883063", + "slot": { + "period": 3933943, + "thread": 2 + } + } + ], + "AU18t4SMtaRm8YCwP5AEod2XM2eX5K3qcww8wSLjNAAU1KnMA22C": [ + { + "amount": "368.282069092", + "slot": { + "period": 99648, + "thread": 8 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 286254, + "thread": 24 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 344070, + "thread": 25 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 564658, + "thread": 23 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 805951, + "thread": 8 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 963048, + "thread": 23 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1013590, + "thread": 1 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1210151, + "thread": 23 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1350595, + "thread": 6 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1556839, + "thread": 31 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1713922, + "thread": 4 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 1937905, + "thread": 19 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2062784, + "thread": 1 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2271396, + "thread": 22 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2431378, + "thread": 11 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2605396, + "thread": 8 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2669003, + "thread": 21 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2806400, + "thread": 15 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 2976471, + "thread": 12 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 3140113, + "thread": 10 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 3296259, + "thread": 30 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 3532298, + "thread": 28 + } + }, + { + "amount": "368.282069092", + "slot": { + "period": 3740933, + "thread": 26 + } + }, + { + "amount": "368.282069103", + "slot": { + "period": 3780073, + "thread": 18 + } + } + ], + "AU18tXvm7vwW95H1F8AxANHhAgGFBVyxKtjgm9ZstT245wDaKXqd": [ + { + "amount": "192.814672208", + "slot": { + "period": 128269, + "thread": 0 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 173679, + "thread": 31 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 383479, + "thread": 27 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 493616, + "thread": 2 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 756608, + "thread": 10 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 979529, + "thread": 7 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1068591, + "thread": 10 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1232186, + "thread": 4 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1351207, + "thread": 0 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1585718, + "thread": 28 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1747372, + "thread": 29 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 1948537, + "thread": 24 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2060484, + "thread": 28 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2290928, + "thread": 18 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2361904, + "thread": 5 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2554281, + "thread": 27 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2669350, + "thread": 2 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 2899626, + "thread": 29 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 3051760, + "thread": 26 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 3131692, + "thread": 6 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 3293032, + "thread": 2 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 3494371, + "thread": 25 + } + }, + { + "amount": "192.814672208", + "slot": { + "period": 3713842, + "thread": 24 + } + }, + { + "amount": "192.814672216", + "slot": { + "period": 3846744, + "thread": 23 + } + } + ], + "AU18uSjcv786A5jz2RwRwUdKhFqwkpeHZG656FZCpBJ87vCszRsn": [ + { + "amount": "241.338858192", + "slot": { + "period": 153230, + "thread": 2 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 305487, + "thread": 16 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 331455, + "thread": 23 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 517386, + "thread": 8 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 751311, + "thread": 28 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 825164, + "thread": 22 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1113301, + "thread": 17 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1291827, + "thread": 20 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1446152, + "thread": 29 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1587381, + "thread": 9 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1804310, + "thread": 21 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 1823341, + "thread": 25 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2054216, + "thread": 8 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2199722, + "thread": 16 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2326346, + "thread": 17 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2527085, + "thread": 7 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2670744, + "thread": 22 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2904377, + "thread": 20 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 2958149, + "thread": 4 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 3175547, + "thread": 6 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 3358929, + "thread": 1 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 3555504, + "thread": 6 + } + }, + { + "amount": "241.338858192", + "slot": { + "period": 3637378, + "thread": 3 + } + }, + { + "amount": "241.338858188", + "slot": { + "period": 3886641, + "thread": 26 + } + } + ], + "AU18uVWrBMLjgVb8WjkzyssFXFN78Mszrii3ujyyjPZnJz5sFzR5": [ + { + "amount": "145.199958153", + "slot": { + "period": 145824, + "thread": 18 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 172971, + "thread": 28 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 406907, + "thread": 8 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 581383, + "thread": 2 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 727591, + "thread": 6 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 859218, + "thread": 23 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1071842, + "thread": 13 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1197548, + "thread": 15 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1441908, + "thread": 17 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1599029, + "thread": 31 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1791862, + "thread": 4 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 1891615, + "thread": 30 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2045187, + "thread": 13 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2270457, + "thread": 23 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2414154, + "thread": 26 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2578051, + "thread": 6 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2757454, + "thread": 21 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 2897593, + "thread": 24 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 3110043, + "thread": 0 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 3139486, + "thread": 20 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 3375748, + "thread": 31 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 3579343, + "thread": 9 + } + }, + { + "amount": "145.199958153", + "slot": { + "period": 3640072, + "thread": 26 + } + }, + { + "amount": "145.199958152", + "slot": { + "period": 3908840, + "thread": 19 + } + } + ], + "AU18vLmr2K7FVhADJ7YAnMW2Zha4c8mpyAPdPVqu3LygZ9F9Gyt7": [ + { + "amount": "510.850653683", + "slot": { + "period": 121175, + "thread": 16 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 242613, + "thread": 26 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 342031, + "thread": 2 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 521098, + "thread": 27 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 718688, + "thread": 16 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 832535, + "thread": 6 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1072574, + "thread": 2 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1245893, + "thread": 2 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1416848, + "thread": 8 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1569747, + "thread": 4 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1670389, + "thread": 4 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 1901312, + "thread": 8 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2094592, + "thread": 20 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2253513, + "thread": 7 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2391000, + "thread": 30 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2496055, + "thread": 2 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2689240, + "thread": 19 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2810008, + "thread": 14 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 2991953, + "thread": 20 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 3284415, + "thread": 12 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 3395474, + "thread": 0 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 3593400, + "thread": 14 + } + }, + { + "amount": "510.850653683", + "slot": { + "period": 3761480, + "thread": 18 + } + }, + { + "amount": "510.850653679", + "slot": { + "period": 3841614, + "thread": 5 + } + } + ], + "AU18xnCPDS5kshrSRrpKtnWvvovqwLand7vEbiEPTDJUYF2KHQw1": [ + { + "amount": "263.457165525", + "slot": { + "period": 137646, + "thread": 14 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 196625, + "thread": 29 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 365586, + "thread": 2 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 576959, + "thread": 27 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 738127, + "thread": 17 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 889378, + "thread": 8 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1093258, + "thread": 3 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1168932, + "thread": 23 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1443182, + "thread": 5 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1629091, + "thread": 12 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1748902, + "thread": 8 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1928789, + "thread": 22 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 1994030, + "thread": 30 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2279070, + "thread": 20 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2299564, + "thread": 8 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2599328, + "thread": 11 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2658724, + "thread": 26 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2914796, + "thread": 19 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 2989812, + "thread": 26 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 3144332, + "thread": 4 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 3338490, + "thread": 12 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 3549688, + "thread": 9 + } + }, + { + "amount": "263.457165525", + "slot": { + "period": 3660629, + "thread": 15 + } + }, + { + "amount": "263.457165527", + "slot": { + "period": 3870926, + "thread": 13 + } + } + ], + "AU18zyXWkhoE6g8FyLUppGU9FM2qfARwBuAT4oqxgbS4Re8R4jBC": [ + { + "amount": "211.750569149", + "slot": { + "period": 50670, + "thread": 11 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 180924, + "thread": 28 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 401468, + "thread": 30 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 535978, + "thread": 19 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 671218, + "thread": 2 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 969347, + "thread": 3 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 995790, + "thread": 8 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 1272456, + "thread": 27 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 1473214, + "thread": 15 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 1584400, + "thread": 19 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 1750756, + "thread": 7 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 1818130, + "thread": 0 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2125451, + "thread": 3 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2200146, + "thread": 2 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2315171, + "thread": 22 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2491323, + "thread": 19 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2634013, + "thread": 24 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2854357, + "thread": 10 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 2956386, + "thread": 26 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 3222355, + "thread": 8 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 3391150, + "thread": 20 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 3602766, + "thread": 12 + } + }, + { + "amount": "211.750569149", + "slot": { + "period": 3639819, + "thread": 0 + } + }, + { + "amount": "211.750569138", + "slot": { + "period": 3947253, + "thread": 31 + } + } + ], + "AU191rue7ZMF13ZQmYHFJmXJhYJmwsWu4cocBDsbsBu9UnW3vUHG": [ + { + "amount": "150.468502315", + "slot": { + "period": 74817, + "thread": 7 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 292861, + "thread": 3 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 397466, + "thread": 21 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 575230, + "thread": 7 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 748726, + "thread": 10 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 890716, + "thread": 23 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1060975, + "thread": 0 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1207789, + "thread": 16 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1348152, + "thread": 5 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1614586, + "thread": 8 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1773483, + "thread": 27 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 1844225, + "thread": 18 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2043465, + "thread": 20 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2199859, + "thread": 13 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2423010, + "thread": 17 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2511185, + "thread": 19 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2748991, + "thread": 21 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 2800889, + "thread": 18 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 3060400, + "thread": 28 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 3273485, + "thread": 8 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 3308557, + "thread": 12 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 3487154, + "thread": 13 + } + }, + { + "amount": "150.468502315", + "slot": { + "period": 3665833, + "thread": 15 + } + }, + { + "amount": "150.468502307", + "slot": { + "period": 3816006, + "thread": 0 + } + } + ], + "AU192K3uasdZCFDqaRrng94HWcuaQNbKdPSpneGLbVH2uDmvCzsD": [ + { + "amount": "76.189065257", + "slot": { + "period": 35255, + "thread": 17 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 317120, + "thread": 19 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 346091, + "thread": 25 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 614006, + "thread": 17 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 744437, + "thread": 4 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 902341, + "thread": 29 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 988926, + "thread": 10 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1195314, + "thread": 2 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1470797, + "thread": 28 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1550076, + "thread": 7 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1649161, + "thread": 22 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1821924, + "thread": 30 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 1982336, + "thread": 22 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 2164474, + "thread": 23 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 2310866, + "thread": 29 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 2525641, + "thread": 0 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 2790756, + "thread": 10 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 2799074, + "thread": 29 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 3060820, + "thread": 0 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 3247266, + "thread": 12 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 3364715, + "thread": 29 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 3520400, + "thread": 31 + } + }, + { + "amount": "76.189065257", + "slot": { + "period": 3678568, + "thread": 21 + } + }, + { + "amount": "76.189065256", + "slot": { + "period": 3818711, + "thread": 16 + } + } + ], + "AU192RdF182uHHEuvMWVexpzq1pTWXZWVZvovu2DbtK9YmdB1GGP": [ + { + "amount": "303.207034522", + "slot": { + "period": 153020, + "thread": 6 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 208461, + "thread": 26 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 344784, + "thread": 3 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 631898, + "thread": 7 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 726582, + "thread": 21 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 904093, + "thread": 5 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1031047, + "thread": 25 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1240638, + "thread": 3 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1468399, + "thread": 16 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1609572, + "thread": 27 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1655030, + "thread": 15 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 1863303, + "thread": 9 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2003042, + "thread": 10 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2189680, + "thread": 14 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2338601, + "thread": 28 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2489681, + "thread": 8 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2675219, + "thread": 14 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 2920327, + "thread": 25 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 3049076, + "thread": 18 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 3153045, + "thread": 7 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 3378148, + "thread": 31 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 3532335, + "thread": 29 + } + }, + { + "amount": "303.207034522", + "slot": { + "period": 3705070, + "thread": 1 + } + }, + { + "amount": "303.207034532", + "slot": { + "period": 3863029, + "thread": 28 + } + } + ], + "AU192eWm8mVvJWr57esvveZisJdFu958UTqc8RPBcq8JY16negmP": [ + { + "amount": "128.451581264", + "slot": { + "period": 92573, + "thread": 7 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 319819, + "thread": 1 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 365999, + "thread": 10 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 560793, + "thread": 27 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 702512, + "thread": 26 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 941260, + "thread": 1 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1030443, + "thread": 14 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1252097, + "thread": 16 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1445354, + "thread": 10 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1488074, + "thread": 11 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1768873, + "thread": 19 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 1901918, + "thread": 17 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2134485, + "thread": 3 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2191908, + "thread": 23 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2418481, + "thread": 18 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2607817, + "thread": 15 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2716157, + "thread": 5 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 2918505, + "thread": 0 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 3098478, + "thread": 0 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 3245975, + "thread": 11 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 3347249, + "thread": 27 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 3598347, + "thread": 20 + } + }, + { + "amount": "128.451581264", + "slot": { + "period": 3726934, + "thread": 26 + } + }, + { + "amount": "128.451581265", + "slot": { + "period": 3783096, + "thread": 17 + } + } + ], + "AU196LZYBM4ub7g7wgeqKEcj9sbWPtNhEjRe2GhpqohGpu3bKzPE": [ + { + "amount": "56.926859976", + "slot": { + "period": 63969, + "thread": 0 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 288002, + "thread": 2 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 348137, + "thread": 26 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 543147, + "thread": 10 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 799938, + "thread": 22 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 950497, + "thread": 26 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1092078, + "thread": 29 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1255773, + "thread": 24 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1432890, + "thread": 22 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1497350, + "thread": 5 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1691774, + "thread": 27 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 1913510, + "thread": 31 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2080348, + "thread": 22 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2150171, + "thread": 23 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2438118, + "thread": 7 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2539999, + "thread": 14 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2649674, + "thread": 11 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2842482, + "thread": 2 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 2972127, + "thread": 12 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 3187003, + "thread": 19 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 3441891, + "thread": 6 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 3571881, + "thread": 26 + } + }, + { + "amount": "56.926859976", + "slot": { + "period": 3734660, + "thread": 16 + } + }, + { + "amount": "56.926859980", + "slot": { + "period": 3850125, + "thread": 10 + } + } + ], + "AU197TSjpbWpfkDAnjpidisTvApcDe6nS4H1M4ghisnK5aEdSCc3": [ + { + "amount": "176.425380214", + "slot": { + "period": 115744, + "thread": 29 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 303063, + "thread": 27 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 353752, + "thread": 2 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 522819, + "thread": 5 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 770661, + "thread": 7 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 976268, + "thread": 11 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1046098, + "thread": 18 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1278133, + "thread": 2 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1467103, + "thread": 23 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1529062, + "thread": 2 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1804411, + "thread": 21 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 1887080, + "thread": 19 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2042419, + "thread": 15 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2233166, + "thread": 16 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2319035, + "thread": 16 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2613950, + "thread": 4 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2675371, + "thread": 9 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2900928, + "thread": 28 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 2997986, + "thread": 29 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 3214153, + "thread": 0 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 3418631, + "thread": 7 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 3542415, + "thread": 12 + } + }, + { + "amount": "176.425380214", + "slot": { + "period": 3681143, + "thread": 22 + } + }, + { + "amount": "176.425380213", + "slot": { + "period": 3824017, + "thread": 1 + } + } + ], + "AU197nSvLJ8MvTPctRYJJHvQ6KawUKFaxXRg5dDaK2pwtHamPX1k": [ + { + "amount": "92.513652887", + "slot": { + "period": 115875, + "thread": 21 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 189281, + "thread": 28 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 444235, + "thread": 14 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 586763, + "thread": 15 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 705280, + "thread": 23 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 830209, + "thread": 21 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1061150, + "thread": 20 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1288174, + "thread": 19 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1377018, + "thread": 19 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1553196, + "thread": 10 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1699677, + "thread": 16 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1902357, + "thread": 7 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 1989985, + "thread": 8 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 2168921, + "thread": 28 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 2345339, + "thread": 8 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 2543739, + "thread": 10 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 2690931, + "thread": 18 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 2930059, + "thread": 16 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 3002557, + "thread": 15 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 3282440, + "thread": 25 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 3355953, + "thread": 21 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 3510407, + "thread": 12 + } + }, + { + "amount": "92.513652887", + "slot": { + "period": 3661585, + "thread": 8 + } + }, + { + "amount": "92.513652897", + "slot": { + "period": 3831201, + "thread": 8 + } + } + ], + "AU197pi2umqwE4G8u1VCJJgiAGhc4AtVBcYZ4ykBHTX2SZUoB8eY": [ + { + "amount": "364.038726849", + "slot": { + "period": 147820, + "thread": 27 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 205945, + "thread": 29 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 389159, + "thread": 23 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 524093, + "thread": 22 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 693097, + "thread": 22 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 919245, + "thread": 8 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1090595, + "thread": 16 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1224973, + "thread": 10 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1438495, + "thread": 11 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1482934, + "thread": 0 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1648651, + "thread": 4 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 1897623, + "thread": 26 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2107006, + "thread": 27 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2173854, + "thread": 28 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2366399, + "thread": 10 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2471172, + "thread": 28 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2712208, + "thread": 23 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 2810586, + "thread": 7 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 3002756, + "thread": 12 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 3230393, + "thread": 25 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 3351659, + "thread": 8 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 3607841, + "thread": 30 + } + }, + { + "amount": "364.038726849", + "slot": { + "period": 3733200, + "thread": 2 + } + }, + { + "amount": "364.038726847", + "slot": { + "period": 3876945, + "thread": 10 + } + } + ], + "AU197v3avjsB7Fm2EWvz515UBNRGCafp3nBC5b5ZByckxqRw23Mz": [ + { + "amount": "65.486307009", + "slot": { + "period": 65642, + "thread": 8 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 272374, + "thread": 5 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 330594, + "thread": 27 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 526993, + "thread": 30 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 745613, + "thread": 2 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 898674, + "thread": 11 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1013897, + "thread": 2 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1210436, + "thread": 24 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1400589, + "thread": 27 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1635524, + "thread": 26 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1798129, + "thread": 19 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 1959181, + "thread": 6 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2016974, + "thread": 4 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2237928, + "thread": 1 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2453343, + "thread": 9 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2604661, + "thread": 25 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2662701, + "thread": 22 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 2882776, + "thread": 1 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3077995, + "thread": 13 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3232251, + "thread": 18 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3295706, + "thread": 26 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3610784, + "thread": 8 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3714437, + "thread": 15 + } + }, + { + "amount": "65.486307009", + "slot": { + "period": 3842413, + "thread": 11 + } + } + ], + "AU19828DMNRwHaST4utKGCotidBpg9xoQLFnaxeBLwg8MHwWo3kN": [ + { + "amount": "596.776295743", + "slot": { + "period": 20743, + "thread": 18 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 250570, + "thread": 6 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 329180, + "thread": 31 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 554673, + "thread": 7 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 712522, + "thread": 12 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 823489, + "thread": 2 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 985438, + "thread": 1 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 1244841, + "thread": 3 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 1327477, + "thread": 30 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 1512458, + "thread": 4 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 1705764, + "thread": 5 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 1868723, + "thread": 4 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2117140, + "thread": 31 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2170470, + "thread": 23 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2322551, + "thread": 22 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2557319, + "thread": 25 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2766528, + "thread": 30 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 2852138, + "thread": 5 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 3075808, + "thread": 19 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 3224352, + "thread": 6 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 3427750, + "thread": 9 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 3454343, + "thread": 20 + } + }, + { + "amount": "596.776295743", + "slot": { + "period": 3630362, + "thread": 3 + } + }, + { + "amount": "596.776295739", + "slot": { + "period": 3834708, + "thread": 23 + } + } + ], + "AU198Kq1BvXi37gaFKhMonXxSu8fYQgpJ45jrrrMzZZcwdiTSV2n": [ + { + "amount": "84.653812617", + "slot": { + "period": 57435, + "thread": 20 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 239766, + "thread": 17 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 438570, + "thread": 28 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 594548, + "thread": 2 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 741839, + "thread": 6 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 964317, + "thread": 21 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1069716, + "thread": 1 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1189613, + "thread": 28 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1450577, + "thread": 22 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1549802, + "thread": 3 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1768482, + "thread": 13 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 1863380, + "thread": 4 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2110828, + "thread": 3 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2174280, + "thread": 16 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2325445, + "thread": 10 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2541921, + "thread": 13 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2631545, + "thread": 19 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2880323, + "thread": 27 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 2963063, + "thread": 13 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 3139684, + "thread": 26 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 3351749, + "thread": 10 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 3577972, + "thread": 17 + } + }, + { + "amount": "84.653812617", + "slot": { + "period": 3666582, + "thread": 17 + } + }, + { + "amount": "84.653812612", + "slot": { + "period": 3787722, + "thread": 0 + } + } + ], + "AU198SRdNXsdyAEDumgNe7rTTwd9n6tEotpEkBJrmnQ7eVaZZxna": [ + { + "amount": "163.523578614", + "slot": { + "period": 147081, + "thread": 4 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 273087, + "thread": 24 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 455926, + "thread": 9 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 549537, + "thread": 22 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 672586, + "thread": 26 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 860673, + "thread": 4 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1132273, + "thread": 12 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1201968, + "thread": 29 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1353479, + "thread": 31 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1603966, + "thread": 4 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1740034, + "thread": 31 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 1882350, + "thread": 15 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2020991, + "thread": 17 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2160502, + "thread": 7 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2457096, + "thread": 8 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2480765, + "thread": 4 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2753283, + "thread": 22 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 2872749, + "thread": 19 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 3048761, + "thread": 8 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 3244311, + "thread": 15 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 3446243, + "thread": 3 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 3480055, + "thread": 21 + } + }, + { + "amount": "163.523578614", + "slot": { + "period": 3627365, + "thread": 20 + } + }, + { + "amount": "163.523578622", + "slot": { + "period": 3864938, + "thread": 21 + } + } + ], + "AU198aqiFLWjZTwwxybfGKAc61FaBw5dqkYve4Y6gJw19Bq8aMwB": [ + { + "amount": "56.354369335", + "slot": { + "period": 146606, + "thread": 7 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 247135, + "thread": 30 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 402413, + "thread": 18 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 593730, + "thread": 21 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 712443, + "thread": 18 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 942890, + "thread": 29 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1127555, + "thread": 2 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1308402, + "thread": 10 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1327323, + "thread": 19 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1569369, + "thread": 12 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1697694, + "thread": 28 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 1969723, + "thread": 7 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2115590, + "thread": 31 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2222998, + "thread": 29 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2444764, + "thread": 23 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2598106, + "thread": 10 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2733465, + "thread": 7 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2937218, + "thread": 21 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 2981354, + "thread": 12 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 3205862, + "thread": 31 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 3400842, + "thread": 9 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 3571809, + "thread": 11 + } + }, + { + "amount": "56.354369335", + "slot": { + "period": 3627167, + "thread": 8 + } + }, + { + "amount": "56.354369324", + "slot": { + "period": 3827440, + "thread": 30 + } + } + ], + "AU199eGqqoDfsSH4sExKbxrpRZykEtzXf2hkk3JHVPyVjZcXNicZ": [ + { + "amount": "140.810548417", + "slot": { + "period": 105523, + "thread": 14 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 317444, + "thread": 4 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 477641, + "thread": 2 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 561437, + "thread": 29 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 721315, + "thread": 31 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 848738, + "thread": 5 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1021936, + "thread": 11 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1236417, + "thread": 17 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1365697, + "thread": 31 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1581124, + "thread": 19 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1696098, + "thread": 31 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 1941976, + "thread": 29 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2103946, + "thread": 3 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2205160, + "thread": 27 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2433048, + "thread": 31 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2554478, + "thread": 5 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2768448, + "thread": 20 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 2942960, + "thread": 10 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 3074773, + "thread": 20 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 3287844, + "thread": 31 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 3358839, + "thread": 27 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 3550998, + "thread": 6 + } + }, + { + "amount": "140.810548417", + "slot": { + "period": 3646055, + "thread": 22 + } + }, + { + "amount": "140.810548414", + "slot": { + "period": 3875994, + "thread": 12 + } + } + ], + "AU199mkrX5NwoZNzTGAods4XifRfd6BzCjxrb5fGzHgrU4sSiZVF": [ + { + "amount": "516.229381025", + "slot": { + "period": 40374, + "thread": 17 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 267916, + "thread": 19 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 395843, + "thread": 26 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 549932, + "thread": 28 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 667323, + "thread": 10 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 851503, + "thread": 1 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1029989, + "thread": 22 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1180449, + "thread": 12 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1353695, + "thread": 5 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1550344, + "thread": 23 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1649666, + "thread": 6 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 1890013, + "thread": 6 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2002217, + "thread": 16 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2248858, + "thread": 15 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2327956, + "thread": 13 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2523037, + "thread": 18 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2646508, + "thread": 18 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2932184, + "thread": 2 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 2955256, + "thread": 1 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 3272091, + "thread": 15 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 3356945, + "thread": 9 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 3540759, + "thread": 1 + } + }, + { + "amount": "516.229381025", + "slot": { + "period": 3637200, + "thread": 28 + } + }, + { + "amount": "516.229381018", + "slot": { + "period": 3794214, + "thread": 14 + } + } + ], + "AU19AM2QSwnYgYFkiQh9pmk62DszJhQ9AVgHvGTJwe5MyqB4dC5J": [ + { + "amount": "109.408899343", + "slot": { + "period": 62752, + "thread": 14 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 297821, + "thread": 13 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 420274, + "thread": 23 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 577985, + "thread": 16 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 711397, + "thread": 14 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 859885, + "thread": 6 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1038615, + "thread": 0 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1177234, + "thread": 4 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1477139, + "thread": 4 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1490496, + "thread": 2 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1790977, + "thread": 28 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 1897060, + "thread": 28 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2108304, + "thread": 26 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2289150, + "thread": 23 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2459366, + "thread": 2 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2609155, + "thread": 16 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2661299, + "thread": 22 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2910206, + "thread": 18 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 2960573, + "thread": 7 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 3187161, + "thread": 26 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 3384487, + "thread": 26 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 3515790, + "thread": 1 + } + }, + { + "amount": "109.408899343", + "slot": { + "period": 3624535, + "thread": 11 + } + }, + { + "amount": "109.408899347", + "slot": { + "period": 3785340, + "thread": 16 + } + } + ], + "AU19AV9LqdftosnUKpMbraVcFscnxVMGGAEAqLzhrQkKoqYKrcXe": [ + { + "amount": "203.899880410", + "slot": { + "period": 163004, + "thread": 11 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 218539, + "thread": 6 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 374793, + "thread": 17 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 562522, + "thread": 15 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 741748, + "thread": 12 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 850565, + "thread": 3 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1043125, + "thread": 21 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1287723, + "thread": 2 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1358610, + "thread": 8 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1583530, + "thread": 20 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1778366, + "thread": 16 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 1972507, + "thread": 20 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2100483, + "thread": 30 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2163989, + "thread": 6 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2378402, + "thread": 14 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2553747, + "thread": 17 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2691814, + "thread": 11 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 2896528, + "thread": 31 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 3042110, + "thread": 2 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 3226999, + "thread": 15 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 3345112, + "thread": 6 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 3497346, + "thread": 31 + } + }, + { + "amount": "203.899880410", + "slot": { + "period": 3765236, + "thread": 13 + } + }, + { + "amount": "203.899880412", + "slot": { + "period": 3923647, + "thread": 3 + } + } + ], + "AU19AqyXXMQH9ZiD1Qf5frTfztFPW3X1GAb5ggXNugp4i5S4j1Zr": [ + { + "amount": "61.859074630", + "slot": { + "period": 75585, + "thread": 23 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 274257, + "thread": 21 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 396011, + "thread": 18 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 542000, + "thread": 18 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 734599, + "thread": 14 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 947181, + "thread": 22 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1128301, + "thread": 20 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1187344, + "thread": 5 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1434276, + "thread": 18 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1646022, + "thread": 16 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1703460, + "thread": 27 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1813759, + "thread": 0 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 1980098, + "thread": 13 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 2171431, + "thread": 22 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 2312954, + "thread": 3 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 2588385, + "thread": 20 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 2787034, + "thread": 2 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 2870653, + "thread": 24 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 3027185, + "thread": 14 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 3126859, + "thread": 1 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 3337323, + "thread": 3 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 3478077, + "thread": 12 + } + }, + { + "amount": "61.859074630", + "slot": { + "period": 3663062, + "thread": 20 + } + }, + { + "amount": "61.859074625", + "slot": { + "period": 3854293, + "thread": 29 + } + } + ], + "AU19BpDcJWcwXm15WBrCpS8usv1WPmXRjyNSwJzUsuPscckSGZx3": [ + { + "amount": "130.858476332", + "slot": { + "period": 68541, + "thread": 6 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 242948, + "thread": 26 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 332117, + "thread": 12 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 626370, + "thread": 10 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 753851, + "thread": 13 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 935845, + "thread": 6 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1027468, + "thread": 23 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1161670, + "thread": 1 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1475826, + "thread": 3 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1547977, + "thread": 20 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1721487, + "thread": 23 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1846626, + "thread": 6 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 1992794, + "thread": 20 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 2231165, + "thread": 17 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 2357919, + "thread": 29 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 2597293, + "thread": 20 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 2764372, + "thread": 20 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 2952361, + "thread": 6 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 3080633, + "thread": 5 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 3221220, + "thread": 11 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 3381031, + "thread": 27 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 3498450, + "thread": 28 + } + }, + { + "amount": "130.858476332", + "slot": { + "period": 3642949, + "thread": 9 + } + }, + { + "amount": "130.858476335", + "slot": { + "period": 3829214, + "thread": 26 + } + } + ], + "AU19CYwCm24aKASgiaNV26pKTxTdy83Aa13VdU96azbrN9RfWz5V": [ + { + "amount": "185.088195098", + "slot": { + "period": 75871, + "thread": 19 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 292048, + "thread": 0 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 368508, + "thread": 19 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 650247, + "thread": 16 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 717514, + "thread": 27 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 953144, + "thread": 12 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1000057, + "thread": 8 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1200205, + "thread": 25 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1426479, + "thread": 16 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1483203, + "thread": 19 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1664856, + "thread": 27 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 1945790, + "thread": 22 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2012687, + "thread": 20 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2261144, + "thread": 7 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2311011, + "thread": 30 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2515795, + "thread": 26 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2679121, + "thread": 22 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2948045, + "thread": 3 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 2967621, + "thread": 8 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 3134170, + "thread": 28 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 3322185, + "thread": 0 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 3488205, + "thread": 25 + } + }, + { + "amount": "185.088195098", + "slot": { + "period": 3642175, + "thread": 13 + } + }, + { + "amount": "185.088195102", + "slot": { + "period": 3864769, + "thread": 16 + } + } + ], + "AU19DpKEL9DGtUYTpWnTmhSFjMdSEDY79FxTUK5haj6LmCFd8aiD": [ + { + "amount": "69.339934170", + "slot": { + "period": 91234, + "thread": 16 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 212473, + "thread": 8 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 433258, + "thread": 5 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 552467, + "thread": 19 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 811755, + "thread": 31 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 905946, + "thread": 11 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1002635, + "thread": 1 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1299492, + "thread": 24 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1456397, + "thread": 28 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1497741, + "thread": 8 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1804467, + "thread": 15 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 1885293, + "thread": 10 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2028674, + "thread": 29 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2219178, + "thread": 18 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2460173, + "thread": 30 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2550650, + "thread": 8 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2686048, + "thread": 16 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 2914004, + "thread": 28 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 3046023, + "thread": 30 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 3217552, + "thread": 11 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 3381491, + "thread": 21 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 3581961, + "thread": 31 + } + }, + { + "amount": "69.339934170", + "slot": { + "period": 3761549, + "thread": 24 + } + }, + { + "amount": "69.339934163", + "slot": { + "period": 3892614, + "thread": 12 + } + } + ], + "AU19Ekht69A2x9Y755cztcGXV1Yu2Ma9JFkagj1jZgHv32z2xSse": [ + { + "amount": "241.476769546", + "slot": { + "period": 50806, + "thread": 1 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 215914, + "thread": 3 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 382054, + "thread": 19 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 538420, + "thread": 25 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 686650, + "thread": 15 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 963889, + "thread": 10 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1108080, + "thread": 23 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1222186, + "thread": 4 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1371532, + "thread": 26 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1619459, + "thread": 16 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1729947, + "thread": 14 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 1873605, + "thread": 0 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2109104, + "thread": 26 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2205864, + "thread": 14 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2392650, + "thread": 31 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2566883, + "thread": 7 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2647524, + "thread": 29 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 2910506, + "thread": 3 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 3110637, + "thread": 5 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 3205603, + "thread": 9 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 3292328, + "thread": 19 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 3612080, + "thread": 26 + } + }, + { + "amount": "241.476769546", + "slot": { + "period": 3678779, + "thread": 29 + } + }, + { + "amount": "241.476769539", + "slot": { + "period": 3932189, + "thread": 15 + } + } + ], + "AU19Eq35ZVYhLNjtuCmJMBuf5jM9cRY6d1HrPE2uJxxzdP5KT8kZ": [ + { + "amount": "473.540346515", + "slot": { + "period": 106535, + "thread": 0 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 181853, + "thread": 29 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 383334, + "thread": 13 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 627565, + "thread": 23 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 801722, + "thread": 29 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 897947, + "thread": 8 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1125428, + "thread": 24 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1283514, + "thread": 12 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1405299, + "thread": 18 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1600447, + "thread": 31 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1692146, + "thread": 18 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 1932356, + "thread": 23 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2067948, + "thread": 17 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2184417, + "thread": 27 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2303884, + "thread": 24 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2508292, + "thread": 15 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2759657, + "thread": 18 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 2832444, + "thread": 25 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 3117605, + "thread": 7 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 3276429, + "thread": 30 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 3339708, + "thread": 15 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 3535309, + "thread": 6 + } + }, + { + "amount": "473.540346515", + "slot": { + "period": 3726041, + "thread": 17 + } + }, + { + "amount": "473.540346508", + "slot": { + "period": 3884782, + "thread": 25 + } + } + ], + "AU19EzVywfPPzkmZ7LRWMppmao2jdhquqs8iyCN7Y26bX4bESMeJ": [ + { + "amount": "52.547082142", + "slot": { + "period": 111205, + "thread": 7 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 259804, + "thread": 17 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 393628, + "thread": 8 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 511342, + "thread": 22 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 661375, + "thread": 29 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 961830, + "thread": 29 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1104463, + "thread": 9 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1166637, + "thread": 14 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1349932, + "thread": 16 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1568608, + "thread": 30 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1690783, + "thread": 5 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 1953487, + "thread": 1 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2120183, + "thread": 0 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2238389, + "thread": 7 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2317692, + "thread": 5 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2557527, + "thread": 1 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2763552, + "thread": 5 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 2924639, + "thread": 27 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 3050836, + "thread": 12 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 3123672, + "thread": 8 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 3389195, + "thread": 11 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 3568047, + "thread": 2 + } + }, + { + "amount": "52.547082142", + "slot": { + "period": 3704187, + "thread": 27 + } + }, + { + "amount": "52.547082151", + "slot": { + "period": 3796990, + "thread": 17 + } + } + ], + "AU19FSpuM8AWztsSZ7LiBixpdpXUJuWRzn9pBRrc2PPNuVdhqxwf": [ + { + "amount": "77.229803235", + "slot": { + "period": 95026, + "thread": 12 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 283620, + "thread": 12 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 388619, + "thread": 0 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 644586, + "thread": 18 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 739414, + "thread": 2 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 975967, + "thread": 9 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1091015, + "thread": 30 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1315847, + "thread": 5 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1319075, + "thread": 7 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1491235, + "thread": 27 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1709875, + "thread": 31 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 1886451, + "thread": 31 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2042771, + "thread": 16 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2251190, + "thread": 21 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2392428, + "thread": 15 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2481161, + "thread": 13 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2656569, + "thread": 31 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 2839929, + "thread": 17 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 3086811, + "thread": 22 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 3173568, + "thread": 15 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 3418233, + "thread": 16 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 3615571, + "thread": 4 + } + }, + { + "amount": "77.229803235", + "slot": { + "period": 3627643, + "thread": 2 + } + }, + { + "amount": "77.229803245", + "slot": { + "period": 3935524, + "thread": 15 + } + } + ], + "AU19GMh9qajw4Vwodm6vRZFhbe211LNtVedo2LZKKYCcgS9GXEyQ": [ + { + "amount": "72.182331795", + "slot": { + "period": 35964, + "thread": 6 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 272223, + "thread": 20 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 476583, + "thread": 19 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 548819, + "thread": 3 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 727365, + "thread": 9 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 976804, + "thread": 11 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1124153, + "thread": 14 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1193246, + "thread": 27 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1413177, + "thread": 10 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1642528, + "thread": 19 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1712211, + "thread": 9 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 1945250, + "thread": 13 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2036834, + "thread": 8 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2294674, + "thread": 6 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2391114, + "thread": 8 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2556641, + "thread": 21 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2698179, + "thread": 30 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2908652, + "thread": 2 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 2989128, + "thread": 23 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 3196440, + "thread": 22 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 3385488, + "thread": 10 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 3531233, + "thread": 18 + } + }, + { + "amount": "72.182331795", + "slot": { + "period": 3625462, + "thread": 13 + } + }, + { + "amount": "72.182331790", + "slot": { + "period": 3864503, + "thread": 1 + } + } + ], + "AU19GWEWDQu2knSCSsiVpbu8c4m3BmnwNXnXJhaNFzqzw7q6tnoH": [ + { + "amount": "151.130929748", + "slot": { + "period": 54345, + "thread": 27 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 226812, + "thread": 0 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 491063, + "thread": 8 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 598125, + "thread": 18 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 707511, + "thread": 19 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 846641, + "thread": 30 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1069069, + "thread": 9 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1170361, + "thread": 18 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1349874, + "thread": 15 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1560092, + "thread": 8 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1697971, + "thread": 16 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 1882477, + "thread": 0 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2079167, + "thread": 22 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2195061, + "thread": 30 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2388922, + "thread": 18 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2492142, + "thread": 10 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2631062, + "thread": 1 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2953073, + "thread": 29 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 2967599, + "thread": 1 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 3149120, + "thread": 30 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 3300259, + "thread": 3 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 3467610, + "thread": 3 + } + }, + { + "amount": "151.130929748", + "slot": { + "period": 3626927, + "thread": 12 + } + }, + { + "amount": "151.130929755", + "slot": { + "period": 3923398, + "thread": 18 + } + } + ], + "AU19HT6ux5SrFtmNoA5u8GdChmiv6P7yMuAbwEkMXtHjQakhJhMP": [ + { + "amount": "227.927784521", + "slot": { + "period": 121585, + "thread": 29 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 230916, + "thread": 23 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 406179, + "thread": 27 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 559994, + "thread": 13 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 671774, + "thread": 19 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 920362, + "thread": 2 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 999143, + "thread": 3 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 1301507, + "thread": 1 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 1325192, + "thread": 23 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 1517281, + "thread": 10 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 1762241, + "thread": 7 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 1852526, + "thread": 14 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2063437, + "thread": 8 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2242156, + "thread": 19 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2442320, + "thread": 26 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2515000, + "thread": 28 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2636565, + "thread": 31 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2926025, + "thread": 21 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 2977754, + "thread": 15 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 3253862, + "thread": 16 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 3308974, + "thread": 1 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 3513373, + "thread": 2 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 3711830, + "thread": 5 + } + }, + { + "amount": "227.927784521", + "slot": { + "period": 3873343, + "thread": 22 + } + } + ], + "AU19HYwo1axwrbNFaoCcgW6bNK5yhk5DTnz4WzTyoA9r2X6WV1Kn": [ + { + "amount": "130.201738793", + "slot": { + "period": 114893, + "thread": 11 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 229959, + "thread": 11 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 393758, + "thread": 15 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 617239, + "thread": 0 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 668653, + "thread": 21 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 919505, + "thread": 9 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1031774, + "thread": 28 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1207004, + "thread": 13 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1420202, + "thread": 18 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1625809, + "thread": 24 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1801674, + "thread": 31 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 1859154, + "thread": 28 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2049965, + "thread": 18 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2259540, + "thread": 0 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2331987, + "thread": 18 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2500019, + "thread": 6 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2746543, + "thread": 2 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 2874103, + "thread": 16 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 3004117, + "thread": 14 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 3227231, + "thread": 6 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 3410936, + "thread": 13 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 3453439, + "thread": 17 + } + }, + { + "amount": "130.201738793", + "slot": { + "period": 3675119, + "thread": 0 + } + }, + { + "amount": "130.201738784", + "slot": { + "period": 3931315, + "thread": 20 + } + } + ], + "AU19HZSbCo2pVdQ46BRFXKFR3T7SxWFVsYFxytLqZxtcKA8rGzYo": [ + { + "amount": "92.906248095", + "slot": { + "period": 143184, + "thread": 16 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 299753, + "thread": 4 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 345424, + "thread": 14 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 505180, + "thread": 8 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 807309, + "thread": 28 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 840283, + "thread": 1 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1125343, + "thread": 8 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1220713, + "thread": 25 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1452623, + "thread": 2 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1499529, + "thread": 26 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1773865, + "thread": 24 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 1903232, + "thread": 12 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2093672, + "thread": 4 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2251142, + "thread": 3 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2339719, + "thread": 22 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2583962, + "thread": 24 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2674252, + "thread": 4 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 2872993, + "thread": 10 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 3079079, + "thread": 1 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 3278291, + "thread": 27 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 3304217, + "thread": 17 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 3485801, + "thread": 16 + } + }, + { + "amount": "92.906248095", + "slot": { + "period": 3650375, + "thread": 6 + } + }, + { + "amount": "92.906248099", + "slot": { + "period": 3931336, + "thread": 19 + } + } + ], + "AU19J7rfk5pYcXcopxFZfb8EXfuUXGdraK8MPUByxhQfKy3BtA5u": [ + { + "amount": "202.263743455", + "slot": { + "period": 16958, + "thread": 17 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 308327, + "thread": 13 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 364647, + "thread": 25 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 558416, + "thread": 18 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 730515, + "thread": 5 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 973250, + "thread": 0 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1000939, + "thread": 4 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1303324, + "thread": 27 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1433145, + "thread": 15 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1599929, + "thread": 10 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1803320, + "thread": 17 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 1976285, + "thread": 30 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2053698, + "thread": 0 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2272317, + "thread": 20 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2336092, + "thread": 4 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2562749, + "thread": 7 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2776562, + "thread": 3 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2854810, + "thread": 1 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 2977337, + "thread": 20 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 3153834, + "thread": 27 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 3383948, + "thread": 1 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 3563892, + "thread": 28 + } + }, + { + "amount": "202.263743455", + "slot": { + "period": 3726292, + "thread": 23 + } + }, + { + "amount": "202.263743458", + "slot": { + "period": 3888462, + "thread": 21 + } + } + ], + "AU19LSYW3iLbr2VYcjgT6F4itoYbDPYDfbj7CRM8akB5dCnUgizJ": [ + { + "amount": "150.868823826", + "slot": { + "period": 18068, + "thread": 10 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 248963, + "thread": 11 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 404042, + "thread": 13 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 613017, + "thread": 2 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 778779, + "thread": 28 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 820855, + "thread": 24 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1010393, + "thread": 31 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1228049, + "thread": 12 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1366929, + "thread": 13 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1589435, + "thread": 28 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1661145, + "thread": 31 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 1867343, + "thread": 15 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2071124, + "thread": 0 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2262722, + "thread": 25 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2305396, + "thread": 21 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2487441, + "thread": 8 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2686080, + "thread": 16 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 2845410, + "thread": 18 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 3117612, + "thread": 30 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 3161604, + "thread": 10 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 3320106, + "thread": 6 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 3453116, + "thread": 18 + } + }, + { + "amount": "150.868823826", + "slot": { + "period": 3775603, + "thread": 30 + } + }, + { + "amount": "150.868823832", + "slot": { + "period": 3807765, + "thread": 29 + } + } + ], + "AU19N7ssXzfGQ8w9w7La1UhbaCBmZi8whiDkyWoigSpJUFXAKdm7": [ + { + "amount": "495.210815977", + "slot": { + "period": 94484, + "thread": 27 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 182081, + "thread": 18 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 427327, + "thread": 27 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 640934, + "thread": 10 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 717714, + "thread": 31 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 927711, + "thread": 9 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1033717, + "thread": 18 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1189841, + "thread": 23 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1417912, + "thread": 25 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1524044, + "thread": 29 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1784907, + "thread": 22 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 1898111, + "thread": 24 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2053561, + "thread": 19 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2203524, + "thread": 3 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2296737, + "thread": 27 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2489026, + "thread": 15 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2704908, + "thread": 11 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 2942464, + "thread": 21 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 3061349, + "thread": 15 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 3282507, + "thread": 17 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 3410749, + "thread": 27 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 3511261, + "thread": 31 + } + }, + { + "amount": "495.210815977", + "slot": { + "period": 3761007, + "thread": 16 + } + }, + { + "amount": "495.210815988", + "slot": { + "period": 3807485, + "thread": 25 + } + } + ], + "AU19NW2MRpz2FRBzCEyHmq29Snii8uGoP3Qu6FK8M5ogU3BvnyhL": [ + { + "amount": "676.551374457", + "slot": { + "period": 152381, + "thread": 2 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 247861, + "thread": 24 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 466999, + "thread": 16 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 627257, + "thread": 12 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 664945, + "thread": 29 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 899193, + "thread": 15 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1067397, + "thread": 29 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1207639, + "thread": 15 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1321014, + "thread": 25 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1617886, + "thread": 9 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1733091, + "thread": 2 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 1912112, + "thread": 10 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2126443, + "thread": 24 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2255423, + "thread": 19 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2432148, + "thread": 24 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2475999, + "thread": 27 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2704159, + "thread": 19 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 2922083, + "thread": 13 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 3002676, + "thread": 7 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 3258482, + "thread": 22 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 3428395, + "thread": 14 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 3591856, + "thread": 7 + } + }, + { + "amount": "676.551374457", + "slot": { + "period": 3769049, + "thread": 2 + } + }, + { + "amount": "676.551374460", + "slot": { + "period": 3920565, + "thread": 17 + } + } + ], + "AU19PwtjS25wdr957tAP84GaPkgjQfbq5SzbsqqstF4aovp9WNi3": [ + { + "amount": "74.612473117", + "slot": { + "period": 156712, + "thread": 10 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 231539, + "thread": 2 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 426495, + "thread": 27 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 565958, + "thread": 13 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 771755, + "thread": 15 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 926130, + "thread": 21 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1030814, + "thread": 19 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1156526, + "thread": 23 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1386560, + "thread": 25 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1542409, + "thread": 5 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1697292, + "thread": 20 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 1902195, + "thread": 1 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2011940, + "thread": 24 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2149504, + "thread": 6 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2393069, + "thread": 17 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2515316, + "thread": 12 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2635226, + "thread": 17 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 2950375, + "thread": 19 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 3041691, + "thread": 21 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 3130197, + "thread": 15 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 3443697, + "thread": 30 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 3502123, + "thread": 24 + } + }, + { + "amount": "74.612473117", + "slot": { + "period": 3700351, + "thread": 22 + } + }, + { + "amount": "74.612473120", + "slot": { + "period": 3890069, + "thread": 5 + } + } + ], + "AU19QHFRthp2CE5Sj3jpVhimgjU8zZhymCzTbQate8W9btH9fyZN": [ + { + "amount": "184.353315815", + "slot": { + "period": 135470, + "thread": 2 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 259363, + "thread": 27 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 479421, + "thread": 19 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 553480, + "thread": 22 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 701770, + "thread": 6 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 970952, + "thread": 31 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1024770, + "thread": 10 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1223672, + "thread": 10 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1478443, + "thread": 5 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1578656, + "thread": 8 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1759968, + "thread": 29 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1890273, + "thread": 15 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 1984007, + "thread": 17 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2216581, + "thread": 4 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2350552, + "thread": 12 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2479757, + "thread": 26 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2781805, + "thread": 28 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2845892, + "thread": 30 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 2995041, + "thread": 14 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 3210928, + "thread": 3 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 3434195, + "thread": 9 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 3550596, + "thread": 7 + } + }, + { + "amount": "184.353315815", + "slot": { + "period": 3637105, + "thread": 17 + } + }, + { + "amount": "184.353315804", + "slot": { + "period": 3877830, + "thread": 5 + } + } + ], + "AU19QR5mwGgUZrZRi1ENTkfdEuagfnxRx8DLw915fVccNj9dc4M8": [ + { + "amount": "175.381456143", + "slot": { + "period": 14243, + "thread": 5 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 221842, + "thread": 21 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 425098, + "thread": 20 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 563030, + "thread": 15 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 772513, + "thread": 15 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 962592, + "thread": 12 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1028312, + "thread": 23 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1206086, + "thread": 20 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1475259, + "thread": 20 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1552622, + "thread": 11 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1797569, + "thread": 20 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 1966670, + "thread": 0 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2115865, + "thread": 16 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2268393, + "thread": 24 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2321254, + "thread": 31 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2566419, + "thread": 28 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2737606, + "thread": 4 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 2822206, + "thread": 18 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 3097622, + "thread": 29 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 3265839, + "thread": 16 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 3357199, + "thread": 25 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 3479258, + "thread": 15 + } + }, + { + "amount": "175.381456143", + "slot": { + "period": 3683370, + "thread": 11 + } + }, + { + "amount": "175.381456139", + "slot": { + "period": 3850349, + "thread": 1 + } + } + ], + "AU19QqJuUND7XeP4QBCq4jocgBpFZKSZNk8HtrSLToZvv6GRQ6e8": [ + { + "amount": "116.411607925", + "slot": { + "period": 142024, + "thread": 29 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 312485, + "thread": 14 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 480338, + "thread": 12 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 495860, + "thread": 6 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 765072, + "thread": 0 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 890456, + "thread": 27 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1081138, + "thread": 17 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1284619, + "thread": 20 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1402394, + "thread": 28 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1599690, + "thread": 24 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1744849, + "thread": 17 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 1946252, + "thread": 24 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2032376, + "thread": 12 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2154062, + "thread": 12 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2450091, + "thread": 5 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2612893, + "thread": 13 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2644264, + "thread": 7 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 2904132, + "thread": 4 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 3098668, + "thread": 30 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 3199527, + "thread": 4 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 3409977, + "thread": 16 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 3472339, + "thread": 18 + } + }, + { + "amount": "116.411607925", + "slot": { + "period": 3618676, + "thread": 11 + } + }, + { + "amount": "116.411607914", + "slot": { + "period": 3785421, + "thread": 22 + } + } + ], + "AU19R3J9vtgB6kuZwTagUfZi5f61JNe7vX5t8g36gGA7TdGCXw5S": [ + { + "amount": "106.435215891", + "slot": { + "period": 134413, + "thread": 17 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 321923, + "thread": 26 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 403292, + "thread": 0 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 566796, + "thread": 20 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 799381, + "thread": 3 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 963625, + "thread": 16 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 996662, + "thread": 15 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 1227552, + "thread": 31 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 1429573, + "thread": 23 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 1540206, + "thread": 24 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 1763944, + "thread": 8 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 1862739, + "thread": 8 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2043787, + "thread": 22 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2169433, + "thread": 15 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2317327, + "thread": 16 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2552990, + "thread": 20 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2661376, + "thread": 28 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 2884731, + "thread": 27 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 3017297, + "thread": 3 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 3231490, + "thread": 14 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 3303846, + "thread": 9 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 3506783, + "thread": 22 + } + }, + { + "amount": "106.435215891", + "slot": { + "period": 3621567, + "thread": 18 + } + }, + { + "amount": "106.435215895", + "slot": { + "period": 3928383, + "thread": 1 + } + } + ], + "AU19RPBnhZRy2i3LeoK5oNKkNb4QAinLzB2sbtm6mRTcSkaYZnHg": [ + { + "amount": "185.488465791", + "slot": { + "period": 122036, + "thread": 8 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 306590, + "thread": 3 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 349343, + "thread": 2 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 539676, + "thread": 23 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 675556, + "thread": 8 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 881122, + "thread": 7 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1130622, + "thread": 26 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1170774, + "thread": 31 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1373328, + "thread": 1 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1591268, + "thread": 29 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1801023, + "thread": 24 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 1833554, + "thread": 12 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2058486, + "thread": 3 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2226219, + "thread": 4 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2305441, + "thread": 26 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2521394, + "thread": 28 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2678712, + "thread": 31 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2939654, + "thread": 3 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 2970880, + "thread": 25 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 3284570, + "thread": 0 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 3330807, + "thread": 7 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 3520401, + "thread": 28 + } + }, + { + "amount": "185.488465791", + "slot": { + "period": 3763408, + "thread": 28 + } + }, + { + "amount": "185.488465795", + "slot": { + "period": 3884984, + "thread": 9 + } + } + ], + "AU19RaQ6no5mwCNNw2C454DWmtMKAKiGWzzrD8ySKq3Q2Xzb5U4w": [ + { + "amount": "244.398816235", + "slot": { + "period": 107968, + "thread": 19 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 262364, + "thread": 11 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 427548, + "thread": 18 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 620441, + "thread": 30 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 660402, + "thread": 15 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 975939, + "thread": 13 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1138091, + "thread": 18 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1242432, + "thread": 1 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1427349, + "thread": 25 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1628266, + "thread": 19 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1729350, + "thread": 9 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 1869668, + "thread": 10 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2002617, + "thread": 4 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2279998, + "thread": 0 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2370275, + "thread": 30 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2499807, + "thread": 30 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2731552, + "thread": 22 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2871416, + "thread": 16 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 2992128, + "thread": 11 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 3287681, + "thread": 29 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 3345969, + "thread": 13 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 3486129, + "thread": 11 + } + }, + { + "amount": "244.398816235", + "slot": { + "period": 3652097, + "thread": 28 + } + }, + { + "amount": "244.398816245", + "slot": { + "period": 3814132, + "thread": 17 + } + } + ], + "AU19SWBkzG7nrcJAvtrz1tF52UegipQhHs7B3qzsRRdRYGNX8pD3": [ + { + "amount": "136.869999800", + "slot": { + "period": 43512, + "thread": 22 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 215668, + "thread": 17 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 445268, + "thread": 26 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 574163, + "thread": 30 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 748412, + "thread": 19 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 924374, + "thread": 30 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1069915, + "thread": 5 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1254748, + "thread": 2 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1407004, + "thread": 18 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1645967, + "thread": 22 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1734109, + "thread": 5 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 1970841, + "thread": 7 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2125897, + "thread": 0 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2178599, + "thread": 3 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2332326, + "thread": 1 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2520649, + "thread": 0 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2635915, + "thread": 9 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 2855040, + "thread": 17 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 3047271, + "thread": 7 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 3145317, + "thread": 20 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 3307089, + "thread": 21 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 3537184, + "thread": 24 + } + }, + { + "amount": "136.869999800", + "slot": { + "period": 3618385, + "thread": 10 + } + }, + { + "amount": "136.869999788", + "slot": { + "period": 3832743, + "thread": 25 + } + } + ], + "AU19SWLgmjyyvmE9hvQnCiNSJr1G22RiK2XbZa4nXmg7928mEk85": [ + { + "amount": "98.531319038", + "slot": { + "period": 80114, + "thread": 13 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 223924, + "thread": 9 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 463572, + "thread": 11 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 620077, + "thread": 14 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 812188, + "thread": 17 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 904551, + "thread": 2 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1063151, + "thread": 17 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1235333, + "thread": 7 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1423298, + "thread": 7 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1593067, + "thread": 13 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1664400, + "thread": 24 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 1956664, + "thread": 4 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2120432, + "thread": 5 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2183867, + "thread": 30 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2381108, + "thread": 6 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2482534, + "thread": 4 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2685457, + "thread": 19 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 2915593, + "thread": 21 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 3049898, + "thread": 28 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 3276116, + "thread": 21 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 3290125, + "thread": 20 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 3521501, + "thread": 2 + } + }, + { + "amount": "98.531319038", + "slot": { + "period": 3757162, + "thread": 10 + } + }, + { + "amount": "98.531319043", + "slot": { + "period": 3873792, + "thread": 5 + } + } + ], + "AU19Sbr5DA9URvFHSgSTxV3WYaDBUK2ePvFLeJYc89cesATS8LZr": [ + { + "amount": "509.631598163", + "slot": { + "period": 24665, + "thread": 10 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 261223, + "thread": 18 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 434917, + "thread": 4 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 531707, + "thread": 1 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 661432, + "thread": 26 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 956541, + "thread": 25 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 995162, + "thread": 28 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 1153218, + "thread": 31 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 1365798, + "thread": 10 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 1500906, + "thread": 25 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 1782809, + "thread": 2 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 1815511, + "thread": 0 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2084105, + "thread": 25 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2259165, + "thread": 5 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2453669, + "thread": 29 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2513107, + "thread": 1 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2657215, + "thread": 29 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 2827380, + "thread": 16 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 3084906, + "thread": 27 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 3200436, + "thread": 0 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 3301481, + "thread": 10 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 3604734, + "thread": 23 + } + }, + { + "amount": "509.631598163", + "slot": { + "period": 3769581, + "thread": 16 + } + }, + { + "amount": "509.631598160", + "slot": { + "period": 3787678, + "thread": 15 + } + } + ], + "AU19Scf6pzbD9ApU7zNoFUY27oi9goa4YJ7Sx5vhh3hcZM9msUSW": [ + { + "amount": "280.445816778", + "slot": { + "period": 11796, + "thread": 21 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 266574, + "thread": 23 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 354632, + "thread": 9 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 650222, + "thread": 9 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 733176, + "thread": 30 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 822765, + "thread": 1 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1082123, + "thread": 17 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1250209, + "thread": 31 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1393222, + "thread": 27 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1634813, + "thread": 14 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1737481, + "thread": 28 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 1951834, + "thread": 22 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2016408, + "thread": 3 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2155967, + "thread": 1 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2456431, + "thread": 29 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2581977, + "thread": 16 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2671414, + "thread": 1 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 2865084, + "thread": 7 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 3058559, + "thread": 3 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 3161467, + "thread": 31 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 3296014, + "thread": 6 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 3534926, + "thread": 15 + } + }, + { + "amount": "280.445816778", + "slot": { + "period": 3717789, + "thread": 31 + } + }, + { + "amount": "280.445816773", + "slot": { + "period": 3885389, + "thread": 9 + } + } + ], + "AU19Shg4yemaYCnRLXoeBZ6oGohSTtbf63LDjfWUDzEpDpE1UY9W": [ + { + "amount": "507.258183609", + "slot": { + "period": 13552, + "thread": 11 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 186849, + "thread": 5 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 354754, + "thread": 4 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 535159, + "thread": 5 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 681603, + "thread": 1 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 843925, + "thread": 4 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1119521, + "thread": 16 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1244040, + "thread": 19 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1478828, + "thread": 16 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1493019, + "thread": 12 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1666784, + "thread": 25 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 1927994, + "thread": 10 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2046011, + "thread": 23 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2262564, + "thread": 4 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2344440, + "thread": 7 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2603870, + "thread": 23 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2719673, + "thread": 5 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 2819768, + "thread": 25 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 3019827, + "thread": 1 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 3284425, + "thread": 18 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 3349060, + "thread": 24 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 3594593, + "thread": 5 + } + }, + { + "amount": "507.258183609", + "slot": { + "period": 3726144, + "thread": 13 + } + }, + { + "amount": "507.258183617", + "slot": { + "period": 3885440, + "thread": 31 + } + } + ], + "AU19SpgfoG46XVRYDbz4GbVYKWrEJZa7dnwfguHuNEfEraKFwZey": [ + { + "amount": "168.790913218", + "slot": { + "period": 112155, + "thread": 24 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 269534, + "thread": 3 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 485005, + "thread": 19 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 611544, + "thread": 24 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 737556, + "thread": 15 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 839534, + "thread": 4 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1040167, + "thread": 14 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1267479, + "thread": 22 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1363449, + "thread": 16 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1601287, + "thread": 20 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1778228, + "thread": 20 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 1939769, + "thread": 1 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2076182, + "thread": 14 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2210655, + "thread": 12 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2319560, + "thread": 26 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2496747, + "thread": 2 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2638302, + "thread": 2 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 2821557, + "thread": 7 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 3102975, + "thread": 26 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 3148974, + "thread": 23 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 3384584, + "thread": 26 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 3482848, + "thread": 0 + } + }, + { + "amount": "168.790913218", + "slot": { + "period": 3635598, + "thread": 14 + } + }, + { + "amount": "168.790913219", + "slot": { + "period": 3845646, + "thread": 27 + } + } + ], + "AU19Ssu8pQxgYKGWFdqg3GP85U7y9ajcmMvv5oQnBoSFU79Y1d2J": [ + { + "amount": "184.107875754", + "slot": { + "period": 44248, + "thread": 13 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 259412, + "thread": 8 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 420797, + "thread": 6 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 639946, + "thread": 17 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 792770, + "thread": 24 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 902251, + "thread": 6 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1124921, + "thread": 20 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1157196, + "thread": 0 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1473879, + "thread": 2 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1479606, + "thread": 4 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1654139, + "thread": 24 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 1945142, + "thread": 29 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2116992, + "thread": 31 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2160961, + "thread": 7 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2402815, + "thread": 8 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2591165, + "thread": 15 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2729066, + "thread": 23 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 2874138, + "thread": 3 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 3094327, + "thread": 23 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 3258206, + "thread": 19 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 3310068, + "thread": 14 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 3545741, + "thread": 22 + } + }, + { + "amount": "184.107875754", + "slot": { + "period": 3621724, + "thread": 18 + } + }, + { + "amount": "184.107875757", + "slot": { + "period": 3938019, + "thread": 22 + } + } + ], + "AU19TkKePnXEhB1Q1cpXRAetfEJcYbGfvbdQzSSJQJMkb8PALFrW": [ + { + "amount": "400.309832575", + "slot": { + "period": 152854, + "thread": 23 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 206975, + "thread": 26 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 440413, + "thread": 28 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 570131, + "thread": 28 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 760957, + "thread": 2 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 843087, + "thread": 25 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1037606, + "thread": 26 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1270753, + "thread": 14 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1448692, + "thread": 30 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1632934, + "thread": 17 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1687194, + "thread": 11 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 1870275, + "thread": 7 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2075810, + "thread": 12 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2210482, + "thread": 12 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2424940, + "thread": 22 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2549835, + "thread": 6 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2675703, + "thread": 6 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 2823201, + "thread": 18 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 3082105, + "thread": 25 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 3219085, + "thread": 25 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 3429592, + "thread": 26 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 3527204, + "thread": 5 + } + }, + { + "amount": "400.309832575", + "slot": { + "period": 3719803, + "thread": 27 + } + }, + { + "amount": "400.309832574", + "slot": { + "period": 3797904, + "thread": 28 + } + } + ], + "AU19UG4pVam9oPkKgGDa1DYxn9EDfQ3bhCNMkrb6GUsUtmXrkuHc": [ + { + "amount": "483.623652062", + "slot": { + "period": 32281, + "thread": 6 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 291072, + "thread": 28 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 395621, + "thread": 16 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 610079, + "thread": 8 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 658546, + "thread": 23 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 880878, + "thread": 23 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 986710, + "thread": 0 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 1263894, + "thread": 3 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 1335202, + "thread": 2 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 1646687, + "thread": 23 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 1759904, + "thread": 5 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 1809810, + "thread": 30 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2020425, + "thread": 9 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2288884, + "thread": 1 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2373045, + "thread": 8 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2567884, + "thread": 0 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2630494, + "thread": 26 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 2858196, + "thread": 12 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 3073749, + "thread": 24 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 3145103, + "thread": 24 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 3313817, + "thread": 15 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 3562810, + "thread": 28 + } + }, + { + "amount": "483.623652062", + "slot": { + "period": 3751045, + "thread": 10 + } + }, + { + "amount": "483.623652065", + "slot": { + "period": 3909129, + "thread": 24 + } + } + ], + "AU19UXXewk7CesN6ydYBoW5HNH4K3sYrJAU5T5ij9gXiEpzc1Day": [ + { + "amount": "141.882141836", + "slot": { + "period": 133757, + "thread": 13 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 255589, + "thread": 31 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 470900, + "thread": 24 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 573874, + "thread": 30 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 668295, + "thread": 6 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 915609, + "thread": 2 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1092682, + "thread": 30 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1289810, + "thread": 12 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1388320, + "thread": 9 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1494850, + "thread": 21 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1703476, + "thread": 0 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 1940438, + "thread": 13 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2124510, + "thread": 15 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2175091, + "thread": 22 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2417997, + "thread": 0 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2520108, + "thread": 14 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2756871, + "thread": 31 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 2930134, + "thread": 19 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 3096550, + "thread": 13 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 3150566, + "thread": 29 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 3364246, + "thread": 30 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 3558640, + "thread": 31 + } + }, + { + "amount": "141.882141836", + "slot": { + "period": 3628114, + "thread": 22 + } + }, + { + "amount": "141.882141846", + "slot": { + "period": 3935812, + "thread": 27 + } + } + ], + "AU19UvNtLaqA23M2YKgpEfxhGqBwqZhN57iWeGDhKpYVHCK2xvXs": [ + { + "amount": "61.412162812", + "slot": { + "period": 152528, + "thread": 19 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 215461, + "thread": 19 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 384912, + "thread": 15 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 627416, + "thread": 18 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 689454, + "thread": 16 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 889196, + "thread": 16 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1128371, + "thread": 7 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1225831, + "thread": 9 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1465018, + "thread": 18 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1591368, + "thread": 5 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1672478, + "thread": 9 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 1950990, + "thread": 2 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2002938, + "thread": 26 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2167956, + "thread": 0 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2408133, + "thread": 4 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2600979, + "thread": 9 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2668843, + "thread": 28 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 2839203, + "thread": 23 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 3103266, + "thread": 17 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 3180330, + "thread": 26 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 3428696, + "thread": 16 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 3493091, + "thread": 14 + } + }, + { + "amount": "61.412162812", + "slot": { + "period": 3636550, + "thread": 11 + } + }, + { + "amount": "61.412162818", + "slot": { + "period": 3849950, + "thread": 14 + } + } + ], + "AU19Uw1s1mY7PCWm737RGRVNPRkpBGnV61u2QTMx1V9Ma55Pwa7H": [ + { + "amount": "270.306460089", + "slot": { + "period": 71914, + "thread": 24 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 270400, + "thread": 2 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 332338, + "thread": 27 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 616425, + "thread": 1 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 746714, + "thread": 7 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 832302, + "thread": 29 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1009837, + "thread": 14 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1198969, + "thread": 17 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1400677, + "thread": 17 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1588561, + "thread": 14 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1660637, + "thread": 6 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 1922801, + "thread": 7 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2001291, + "thread": 13 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2253064, + "thread": 21 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2312338, + "thread": 2 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2514889, + "thread": 2 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2636952, + "thread": 0 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 2939068, + "thread": 2 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 3050707, + "thread": 6 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 3184131, + "thread": 4 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 3291797, + "thread": 20 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 3468153, + "thread": 20 + } + }, + { + "amount": "270.306460089", + "slot": { + "period": 3707550, + "thread": 14 + } + }, + { + "amount": "270.306460078", + "slot": { + "period": 3787403, + "thread": 4 + } + } + ], + "AU19V8Cumqk1Kk5gn92V61ymN86PjEKTYt12Xa6Tag5dFVeX91HS": [ + { + "amount": "210.468552213", + "slot": { + "period": 104519, + "thread": 1 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 283124, + "thread": 13 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 454809, + "thread": 17 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 652187, + "thread": 8 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 762981, + "thread": 11 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 927193, + "thread": 21 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1111127, + "thread": 26 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1195512, + "thread": 20 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1422012, + "thread": 16 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1550113, + "thread": 1 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1661495, + "thread": 22 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 1971377, + "thread": 30 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2011992, + "thread": 19 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2203675, + "thread": 22 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2297146, + "thread": 1 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2567068, + "thread": 1 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2740297, + "thread": 2 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2907922, + "thread": 16 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 2959484, + "thread": 26 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 3131448, + "thread": 1 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 3420418, + "thread": 29 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 3554974, + "thread": 18 + } + }, + { + "amount": "210.468552213", + "slot": { + "period": 3648946, + "thread": 31 + } + }, + { + "amount": "210.468552205", + "slot": { + "period": 3838926, + "thread": 11 + } + } + ], + "AU19WuaneKazNrDM4wrCMhe7HuezuoP9ZkqcAcLEqowANz9aD9rK": [ + { + "amount": "147.568614151", + "slot": { + "period": 165173, + "thread": 25 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 216634, + "thread": 14 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 387785, + "thread": 9 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 555950, + "thread": 27 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 678121, + "thread": 30 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 847919, + "thread": 3 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1125427, + "thread": 3 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1251533, + "thread": 19 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1401355, + "thread": 4 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1595763, + "thread": 27 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1799673, + "thread": 24 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1877647, + "thread": 3 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 1990668, + "thread": 26 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2216896, + "thread": 3 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2454478, + "thread": 30 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2609408, + "thread": 17 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2666091, + "thread": 13 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2833716, + "thread": 17 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 2998405, + "thread": 20 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 3159442, + "thread": 22 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 3394492, + "thread": 3 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 3496900, + "thread": 17 + } + }, + { + "amount": "147.568614151", + "slot": { + "period": 3675265, + "thread": 0 + } + }, + { + "amount": "147.568614148", + "slot": { + "period": 3813283, + "thread": 28 + } + } + ], + "AU19XfvkfP2BuPVEofVrYwmrd4z4deX4iDWiZSz3TJnME49e9Cce": [ + { + "amount": "56.012217629", + "slot": { + "period": 133331, + "thread": 14 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 321739, + "thread": 10 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 390777, + "thread": 2 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 527912, + "thread": 29 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 781201, + "thread": 19 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 962138, + "thread": 6 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1124278, + "thread": 13 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1251470, + "thread": 25 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1407924, + "thread": 0 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1600052, + "thread": 29 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1680591, + "thread": 23 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 1939576, + "thread": 4 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2113086, + "thread": 10 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2221579, + "thread": 5 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2434222, + "thread": 11 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2503081, + "thread": 7 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2756233, + "thread": 26 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2934759, + "thread": 16 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 2986226, + "thread": 24 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 3174822, + "thread": 18 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 3302940, + "thread": 29 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 3495666, + "thread": 17 + } + }, + { + "amount": "56.012217629", + "slot": { + "period": 3642847, + "thread": 1 + } + }, + { + "amount": "56.012217639", + "slot": { + "period": 3825026, + "thread": 17 + } + } + ], + "AU19XvQrUpb697yPekTb1eS2XAyEcEp8a2kP6LP3bd3Wtvdj8ERa": [ + { + "amount": "134.989914080", + "slot": { + "period": 87254, + "thread": 23 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 187039, + "thread": 6 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 488513, + "thread": 23 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 593667, + "thread": 7 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 744656, + "thread": 7 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 855063, + "thread": 19 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1143122, + "thread": 9 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1218591, + "thread": 7 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1352683, + "thread": 20 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1639632, + "thread": 3 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1654269, + "thread": 4 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 1938689, + "thread": 19 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2053367, + "thread": 23 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2229887, + "thread": 18 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2307389, + "thread": 28 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2480024, + "thread": 5 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2728661, + "thread": 31 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 2823950, + "thread": 13 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 3059268, + "thread": 20 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 3200808, + "thread": 16 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 3391628, + "thread": 16 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 3602511, + "thread": 26 + } + }, + { + "amount": "134.989914080", + "slot": { + "period": 3723627, + "thread": 28 + } + }, + { + "amount": "134.989914082", + "slot": { + "period": 3854303, + "thread": 14 + } + } + ], + "AU19ZqUVXjDa7zLFk5BQh49VZJ2AaE3poABJghuqJ3fmaheoJJmW": [ + { + "amount": "189.510517995", + "slot": { + "period": 131035, + "thread": 29 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 181035, + "thread": 29 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 476842, + "thread": 21 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 605968, + "thread": 15 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 717373, + "thread": 3 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 880758, + "thread": 2 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1034619, + "thread": 4 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1276059, + "thread": 4 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1376656, + "thread": 5 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1534592, + "thread": 10 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1780309, + "thread": 30 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 1922256, + "thread": 20 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2031566, + "thread": 19 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2169645, + "thread": 7 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2340779, + "thread": 18 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2486955, + "thread": 14 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2691012, + "thread": 8 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 2816634, + "thread": 19 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 3020857, + "thread": 25 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 3204466, + "thread": 29 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 3344201, + "thread": 12 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 3550321, + "thread": 9 + } + }, + { + "amount": "189.510517995", + "slot": { + "period": 3719057, + "thread": 19 + } + }, + { + "amount": "189.510517986", + "slot": { + "period": 3879128, + "thread": 2 + } + } + ], + "AU19aSSitWLqVwsQSj7egRWEVXjmQsTErnDocLwsfGgFgSx6SnSN": [ + { + "amount": "80.214879893", + "slot": { + "period": 79008, + "thread": 6 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 214472, + "thread": 26 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 397563, + "thread": 15 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 577838, + "thread": 1 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 742440, + "thread": 4 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 906172, + "thread": 10 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1017137, + "thread": 13 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1219716, + "thread": 17 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1465774, + "thread": 28 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1617749, + "thread": 0 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1787629, + "thread": 17 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 1809643, + "thread": 13 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2138256, + "thread": 9 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2235718, + "thread": 23 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2394777, + "thread": 6 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2568490, + "thread": 4 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2713465, + "thread": 27 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2910207, + "thread": 6 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 2978134, + "thread": 26 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 3189896, + "thread": 24 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 3391162, + "thread": 27 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 3602054, + "thread": 7 + } + }, + { + "amount": "80.214879893", + "slot": { + "period": 3678553, + "thread": 27 + } + }, + { + "amount": "80.214879900", + "slot": { + "period": 3933618, + "thread": 0 + } + } + ], + "AU19bc4ngvEBj7bXDzrnAuG5NfdqgUbsoR6k7JQWoGJjAstpy6x2": [ + { + "amount": "167.154351197", + "slot": { + "period": 132813, + "thread": 31 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 288988, + "thread": 0 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 452124, + "thread": 4 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 620540, + "thread": 18 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 736988, + "thread": 1 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 939549, + "thread": 7 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1098498, + "thread": 21 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1292687, + "thread": 18 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1445933, + "thread": 27 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1564993, + "thread": 7 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1695611, + "thread": 7 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 1938468, + "thread": 28 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2101092, + "thread": 16 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2249786, + "thread": 9 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2359923, + "thread": 27 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2482467, + "thread": 14 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2784961, + "thread": 2 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2813950, + "thread": 20 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 2979672, + "thread": 21 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 3153422, + "thread": 2 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 3441733, + "thread": 5 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 3594449, + "thread": 8 + } + }, + { + "amount": "167.154351197", + "slot": { + "period": 3651934, + "thread": 12 + } + }, + { + "amount": "167.154351186", + "slot": { + "period": 3847781, + "thread": 15 + } + } + ], + "AU19bras9GmEgSrvc8D1H34gXKTGqXfAj3MPbT5DbF4aG2mQYn67": [ + { + "amount": "78.720329980", + "slot": { + "period": 160245, + "thread": 9 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 203161, + "thread": 13 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 396681, + "thread": 19 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 578526, + "thread": 22 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 734817, + "thread": 23 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 969380, + "thread": 28 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1019950, + "thread": 17 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1281925, + "thread": 26 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1407722, + "thread": 26 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1620404, + "thread": 14 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1653476, + "thread": 9 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 1865342, + "thread": 23 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2130283, + "thread": 26 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2161815, + "thread": 29 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2437721, + "thread": 1 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2502710, + "thread": 18 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2787122, + "thread": 2 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2885658, + "thread": 28 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 2987852, + "thread": 15 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 3180802, + "thread": 31 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 3439950, + "thread": 15 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 3465936, + "thread": 27 + } + }, + { + "amount": "78.720329980", + "slot": { + "period": 3755788, + "thread": 18 + } + }, + { + "amount": "78.720329970", + "slot": { + "period": 3860572, + "thread": 30 + } + } + ], + "AU19c5FCtZARD9F62WScYp1VxxUrCB3GvhmGw8eCKwJwnNGFjDvB": [ + { + "amount": "97.807464931", + "slot": { + "period": 117313, + "thread": 15 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 203352, + "thread": 31 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 398291, + "thread": 26 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 549666, + "thread": 5 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 663767, + "thread": 21 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 829490, + "thread": 16 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1062494, + "thread": 24 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1299345, + "thread": 1 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1475863, + "thread": 6 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1575184, + "thread": 11 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1744266, + "thread": 8 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 1855920, + "thread": 3 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2098250, + "thread": 11 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2275804, + "thread": 20 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2390898, + "thread": 2 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2513016, + "thread": 6 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2733635, + "thread": 26 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 2913834, + "thread": 28 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 3044187, + "thread": 0 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 3153628, + "thread": 10 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 3344619, + "thread": 16 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 3491178, + "thread": 26 + } + }, + { + "amount": "97.807464931", + "slot": { + "period": 3754069, + "thread": 24 + } + }, + { + "amount": "97.807464936", + "slot": { + "period": 3789829, + "thread": 19 + } + } + ], + "AU19cMiZ7iTbmFUTuv2kNyqkN4qRBJrPEpXmSYc1wjXBPPhWF8SC": [ + { + "amount": "189.716328091", + "slot": { + "period": 151342, + "thread": 16 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 245928, + "thread": 25 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 393320, + "thread": 26 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 636304, + "thread": 1 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 815112, + "thread": 28 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 861214, + "thread": 9 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1087451, + "thread": 30 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1158772, + "thread": 1 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1409973, + "thread": 10 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1492733, + "thread": 20 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1782825, + "thread": 20 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1914323, + "thread": 7 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 1987872, + "thread": 18 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 2223038, + "thread": 17 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 2436781, + "thread": 15 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 2479970, + "thread": 9 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 2726037, + "thread": 17 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 2880370, + "thread": 25 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 3044157, + "thread": 6 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 3171071, + "thread": 23 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 3360529, + "thread": 14 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 3471539, + "thread": 4 + } + }, + { + "amount": "189.716328091", + "slot": { + "period": 3625320, + "thread": 23 + } + }, + { + "amount": "189.716328092", + "slot": { + "period": 3814389, + "thread": 4 + } + } + ], + "AU19dCyYhyF7rP6wRwSFeg2kUfLKqJjrfchB3EdkaFpeVhy8XDpv": [ + { + "amount": "536.084128287", + "slot": { + "period": 132881, + "thread": 15 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 197477, + "thread": 4 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 382791, + "thread": 29 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 511590, + "thread": 25 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 804082, + "thread": 30 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 844714, + "thread": 9 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1013846, + "thread": 6 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1184327, + "thread": 5 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1455079, + "thread": 24 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1510967, + "thread": 16 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1755125, + "thread": 7 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 1948417, + "thread": 19 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2079241, + "thread": 24 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2177791, + "thread": 31 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2308448, + "thread": 6 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2463699, + "thread": 18 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2781042, + "thread": 9 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2886585, + "thread": 13 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 2984832, + "thread": 19 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 3204016, + "thread": 20 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 3420863, + "thread": 13 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 3521246, + "thread": 30 + } + }, + { + "amount": "536.084128287", + "slot": { + "period": 3744010, + "thread": 8 + } + }, + { + "amount": "536.084128283", + "slot": { + "period": 3782187, + "thread": 15 + } + } + ], + "AU19dg2GXcVcEGHf4hTGnyYDQJTtWNZ6Kr6ryqfa9mVnr7DwD4Et": [ + { + "amount": "78.623230030", + "slot": { + "period": 119255, + "thread": 29 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 190845, + "thread": 3 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 394139, + "thread": 13 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 614978, + "thread": 4 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 725013, + "thread": 22 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 871333, + "thread": 7 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1011061, + "thread": 4 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1310118, + "thread": 15 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1322530, + "thread": 28 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1539055, + "thread": 16 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1683576, + "thread": 12 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 1890921, + "thread": 5 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2060404, + "thread": 24 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2163894, + "thread": 30 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2456443, + "thread": 18 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2537541, + "thread": 15 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2773079, + "thread": 5 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 2914364, + "thread": 28 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 3108290, + "thread": 9 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 3151959, + "thread": 11 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 3357344, + "thread": 24 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 3547148, + "thread": 10 + } + }, + { + "amount": "78.623230030", + "slot": { + "period": 3672000, + "thread": 23 + } + }, + { + "amount": "78.623230021", + "slot": { + "period": 3834409, + "thread": 12 + } + } + ], + "AU19fztrXFh6dHjmqM7xuE9RvVzMGoWbD4V7wAisfpMQSSSMaEyX": [ + { + "amount": "238.652981203", + "slot": { + "period": 99881, + "thread": 14 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 297552, + "thread": 5 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 480880, + "thread": 23 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 642368, + "thread": 30 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 781581, + "thread": 2 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 820888, + "thread": 7 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1090368, + "thread": 23 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1275314, + "thread": 2 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1382569, + "thread": 3 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1595042, + "thread": 10 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1704524, + "thread": 1 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 1865960, + "thread": 28 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2075126, + "thread": 29 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2263320, + "thread": 2 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2356617, + "thread": 15 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2478831, + "thread": 12 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2670052, + "thread": 24 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2900391, + "thread": 22 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 2975329, + "thread": 16 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 3168589, + "thread": 6 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 3385016, + "thread": 25 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 3532195, + "thread": 26 + } + }, + { + "amount": "238.652981203", + "slot": { + "period": 3640268, + "thread": 3 + } + }, + { + "amount": "238.652981211", + "slot": { + "period": 3801724, + "thread": 6 + } + } + ], + "AU19gATfLAUCBCGBqgvy9Nfo8iEfrAyuoqXxJuPP98LjTAuPRJp5": [ + { + "amount": "156.406835377", + "slot": { + "period": 150878, + "thread": 18 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 175224, + "thread": 30 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 459907, + "thread": 5 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 607632, + "thread": 5 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 662893, + "thread": 3 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 965076, + "thread": 17 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1081199, + "thread": 24 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1156591, + "thread": 15 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1403139, + "thread": 5 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1494758, + "thread": 10 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1679414, + "thread": 3 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 1917345, + "thread": 22 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2079288, + "thread": 4 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2251601, + "thread": 19 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2298110, + "thread": 23 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2573729, + "thread": 23 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2687653, + "thread": 9 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 2940253, + "thread": 6 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 3046915, + "thread": 9 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 3268461, + "thread": 13 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 3355677, + "thread": 19 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 3603878, + "thread": 3 + } + }, + { + "amount": "156.406835377", + "slot": { + "period": 3697733, + "thread": 24 + } + }, + { + "amount": "156.406835387", + "slot": { + "period": 3864929, + "thread": 23 + } + } + ], + "AU19geZbk5XgcQzHLGDspMwHysqcWSoFLLCtK45VqYm8sY78CXGB": [ + { + "amount": "63.314387371", + "slot": { + "period": 114534, + "thread": 26 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 266981, + "thread": 21 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 338455, + "thread": 21 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 564673, + "thread": 11 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 785048, + "thread": 12 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 879574, + "thread": 16 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1111511, + "thread": 5 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1247172, + "thread": 19 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1384499, + "thread": 4 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1576555, + "thread": 1 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1698382, + "thread": 3 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 1846377, + "thread": 26 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2083993, + "thread": 2 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2262234, + "thread": 15 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2300490, + "thread": 25 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2480351, + "thread": 29 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2788930, + "thread": 26 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 2875512, + "thread": 25 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 3049576, + "thread": 19 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 3254605, + "thread": 12 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 3335044, + "thread": 15 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 3552206, + "thread": 21 + } + }, + { + "amount": "63.314387371", + "slot": { + "period": 3657412, + "thread": 27 + } + }, + { + "amount": "63.314387379", + "slot": { + "period": 3798515, + "thread": 6 + } + } + ], + "AU19hRvfi3qMraV4Qy2K2F2fX7CjTbWaoANAwLKkNJiYxVrbFZFa": [ + { + "amount": "512.551720910", + "slot": { + "period": 133215, + "thread": 19 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 227245, + "thread": 29 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 480930, + "thread": 14 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 526242, + "thread": 9 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 715839, + "thread": 14 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 876739, + "thread": 16 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1017897, + "thread": 11 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1292030, + "thread": 26 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1339127, + "thread": 19 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1516161, + "thread": 14 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1737644, + "thread": 21 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 1926029, + "thread": 22 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2102662, + "thread": 0 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2182004, + "thread": 20 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2397543, + "thread": 27 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2528880, + "thread": 9 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2782597, + "thread": 4 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 2949959, + "thread": 11 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 3050152, + "thread": 15 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 3180903, + "thread": 7 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 3309128, + "thread": 19 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 3469039, + "thread": 29 + } + }, + { + "amount": "512.551720910", + "slot": { + "period": 3772985, + "thread": 31 + } + }, + { + "amount": "512.551720899", + "slot": { + "period": 3886902, + "thread": 17 + } + } + ], + "AU19jDWx3PKjJRfFqNACgLPNYr2JLtrW2fgP2UoehizE2YpSJBsk": [ + { + "amount": "98.262563784", + "slot": { + "period": 137596, + "thread": 17 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 172962, + "thread": 12 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 483441, + "thread": 22 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 522609, + "thread": 19 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 718799, + "thread": 24 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 880477, + "thread": 25 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1127553, + "thread": 7 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1174485, + "thread": 20 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1458464, + "thread": 26 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1545387, + "thread": 29 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1693265, + "thread": 29 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 1811132, + "thread": 24 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2047099, + "thread": 31 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2213356, + "thread": 16 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2442295, + "thread": 16 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2480469, + "thread": 26 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2689035, + "thread": 30 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 2876927, + "thread": 24 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 3095816, + "thread": 6 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 3272989, + "thread": 20 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 3408550, + "thread": 6 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 3579807, + "thread": 17 + } + }, + { + "amount": "98.262563784", + "slot": { + "period": 3663907, + "thread": 14 + } + }, + { + "amount": "98.262563778", + "slot": { + "period": 3876742, + "thread": 22 + } + } + ], + "AU19jNyRgfChLZk7yeEdHYjDswz48USEUfg3EVaySNYrbhLzFKje": [ + { + "amount": "54.826987839", + "slot": { + "period": 57775, + "thread": 25 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 220207, + "thread": 28 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 327747, + "thread": 1 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 614298, + "thread": 4 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 714942, + "thread": 18 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 982681, + "thread": 17 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1080281, + "thread": 30 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1153311, + "thread": 9 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1412806, + "thread": 30 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1632572, + "thread": 4 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1725601, + "thread": 16 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 1967336, + "thread": 11 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2025581, + "thread": 15 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2242743, + "thread": 6 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2354324, + "thread": 20 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2540192, + "thread": 16 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2756982, + "thread": 28 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 2876176, + "thread": 26 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 3115207, + "thread": 12 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 3156797, + "thread": 4 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 3356561, + "thread": 15 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 3492751, + "thread": 27 + } + }, + { + "amount": "54.826987839", + "slot": { + "period": 3736991, + "thread": 17 + } + }, + { + "amount": "54.826987836", + "slot": { + "period": 3904617, + "thread": 7 + } + } + ], + "AU19jgLpmm8qEs3cfnzzpzvaeyEQUjx2KZHBkUJKuvwrdbdZXxWs": [ + { + "amount": "320.228393605", + "slot": { + "period": 36550, + "thread": 6 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 301474, + "thread": 31 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 345483, + "thread": 5 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 502423, + "thread": 22 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 677404, + "thread": 18 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 833719, + "thread": 31 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 987835, + "thread": 17 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 1244969, + "thread": 15 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 1478208, + "thread": 22 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 1596487, + "thread": 5 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 1786467, + "thread": 8 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 1872690, + "thread": 7 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2138448, + "thread": 31 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2252440, + "thread": 8 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2295074, + "thread": 27 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2575177, + "thread": 23 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2714275, + "thread": 4 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 2921438, + "thread": 15 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 3049045, + "thread": 30 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 3170713, + "thread": 31 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 3408293, + "thread": 11 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 3493869, + "thread": 14 + } + }, + { + "amount": "320.228393605", + "slot": { + "period": 3691607, + "thread": 16 + } + }, + { + "amount": "320.228393596", + "slot": { + "period": 3878437, + "thread": 20 + } + } + ], + "AU19kVvYv1NGUxzMF93LZEf8C4TN8rUrCJwMaJnedScZp8s9ksTy": [ + { + "amount": "229.581775548", + "slot": { + "period": 134189, + "thread": 31 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 282236, + "thread": 22 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 351872, + "thread": 19 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 646414, + "thread": 25 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 687847, + "thread": 27 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 854659, + "thread": 29 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1135091, + "thread": 7 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1274550, + "thread": 5 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1416945, + "thread": 25 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1643403, + "thread": 3 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1741982, + "thread": 11 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 1968190, + "thread": 27 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2122770, + "thread": 20 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2213440, + "thread": 10 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2358387, + "thread": 27 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2520216, + "thread": 31 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2721924, + "thread": 22 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 2903111, + "thread": 12 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 3063271, + "thread": 15 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 3229624, + "thread": 26 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 3321564, + "thread": 15 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 3606231, + "thread": 13 + } + }, + { + "amount": "229.581775548", + "slot": { + "period": 3647417, + "thread": 17 + } + }, + { + "amount": "229.581775552", + "slot": { + "period": 3855097, + "thread": 22 + } + } + ], + "AU19mNjr5DAT7a6JxDHpUVNMw2Jj1nUuiAeeTxrv4HaTmWCAhiFr": [ + { + "amount": "194.655418628", + "slot": { + "period": 111157, + "thread": 10 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 248458, + "thread": 15 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 418391, + "thread": 23 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 598909, + "thread": 0 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 685212, + "thread": 17 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 968841, + "thread": 16 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1145076, + "thread": 21 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1204951, + "thread": 9 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1325023, + "thread": 27 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1636582, + "thread": 23 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1807665, + "thread": 25 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1828927, + "thread": 29 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 1989954, + "thread": 7 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2211866, + "thread": 24 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2331825, + "thread": 13 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2505758, + "thread": 3 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2712176, + "thread": 29 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2851765, + "thread": 4 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 2983092, + "thread": 31 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 3162582, + "thread": 0 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 3355004, + "thread": 23 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 3611077, + "thread": 11 + } + }, + { + "amount": "194.655418628", + "slot": { + "period": 3667257, + "thread": 8 + } + }, + { + "amount": "194.655418637", + "slot": { + "period": 3811935, + "thread": 1 + } + } + ], + "AU19me8VNbH9nyjTf8koXFbGsUb6b7VE7JnkRZEawsAofu46J3pd": [ + { + "amount": "284.753105934", + "slot": { + "period": 42878, + "thread": 29 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 313197, + "thread": 2 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 359199, + "thread": 12 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 540067, + "thread": 19 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 806159, + "thread": 1 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 976204, + "thread": 8 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1148452, + "thread": 11 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1151078, + "thread": 20 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1381442, + "thread": 25 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1485835, + "thread": 14 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1730248, + "thread": 28 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 1893617, + "thread": 28 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2053255, + "thread": 31 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2203384, + "thread": 17 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2374443, + "thread": 13 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2493888, + "thread": 23 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2681521, + "thread": 23 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 2907792, + "thread": 11 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 3110228, + "thread": 12 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 3228816, + "thread": 18 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 3349224, + "thread": 2 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 3535213, + "thread": 15 + } + }, + { + "amount": "284.753105934", + "slot": { + "period": 3635513, + "thread": 13 + } + }, + { + "amount": "284.753105930", + "slot": { + "period": 3823012, + "thread": 22 + } + } + ], + "AU19nJUchijbWQkybhVM43MquyXCXamc9KTtoRmtHA3KWS2eeqgV": [ + { + "amount": "49219.916666667", + "slot": { + "period": 35274, + "thread": 15 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 293041, + "thread": 15 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 390654, + "thread": 21 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 593824, + "thread": 7 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 664733, + "thread": 23 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 892093, + "thread": 25 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1029540, + "thread": 28 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1228718, + "thread": 3 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1414037, + "thread": 26 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1542404, + "thread": 26 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1662098, + "thread": 11 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 1955129, + "thread": 21 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2025452, + "thread": 20 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2192733, + "thread": 5 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2437811, + "thread": 12 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2539073, + "thread": 22 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2727444, + "thread": 20 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 2835432, + "thread": 31 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 3073870, + "thread": 9 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 3268956, + "thread": 5 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 3341753, + "thread": 1 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 3587052, + "thread": 16 + } + }, + { + "amount": "49219.916666667", + "slot": { + "period": 3770768, + "thread": 16 + } + }, + { + "amount": "49219.916666659", + "slot": { + "period": 3907727, + "thread": 28 + } + } + ], + "AU19nuvouCDkb4SdrzSZB8STw1qJpLKYMHfzrHgifVnvSyEBXZ3u": [ + { + "amount": "149.337726840", + "slot": { + "period": 31585, + "thread": 21 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 287808, + "thread": 26 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 352015, + "thread": 21 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 630665, + "thread": 22 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 728589, + "thread": 15 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 945041, + "thread": 18 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1024105, + "thread": 2 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1190364, + "thread": 4 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1319179, + "thread": 21 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1614932, + "thread": 15 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1665298, + "thread": 27 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1928846, + "thread": 28 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 1985907, + "thread": 9 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2186975, + "thread": 17 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2316176, + "thread": 4 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2584028, + "thread": 5 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2685306, + "thread": 20 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2800207, + "thread": 8 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 2979885, + "thread": 10 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 3243912, + "thread": 31 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 3436529, + "thread": 3 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 3579985, + "thread": 12 + } + }, + { + "amount": "149.337726840", + "slot": { + "period": 3772011, + "thread": 26 + } + }, + { + "amount": "149.337726833", + "slot": { + "period": 3940298, + "thread": 29 + } + } + ], + "AU19q2fGC6vbP8VP2FqkmmbAC9d1GKyWcLVdcSDFs7MxJ97Uc6yg": [ + { + "amount": "140.655664150", + "slot": { + "period": 83600, + "thread": 7 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 315139, + "thread": 8 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 468013, + "thread": 7 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 607552, + "thread": 8 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 780219, + "thread": 27 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 824167, + "thread": 23 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1004187, + "thread": 22 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1199839, + "thread": 31 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1361527, + "thread": 9 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1534996, + "thread": 23 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1726516, + "thread": 25 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 1952664, + "thread": 0 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2063601, + "thread": 11 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2229183, + "thread": 24 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2360785, + "thread": 17 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2511693, + "thread": 26 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2782663, + "thread": 0 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 2918233, + "thread": 6 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 3088610, + "thread": 19 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 3202180, + "thread": 5 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 3397815, + "thread": 31 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 3574681, + "thread": 9 + } + }, + { + "amount": "140.655664150", + "slot": { + "period": 3702528, + "thread": 20 + } + }, + { + "amount": "140.655664143", + "slot": { + "period": 3900041, + "thread": 30 + } + } + ], + "AU19qvBqh8Msgmn7PD6otju1wQZhkWHVKEWK98D3XfhSjXo4qtzo": [ + { + "amount": "80.272584279", + "slot": { + "period": 24392, + "thread": 21 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 197432, + "thread": 20 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 377256, + "thread": 30 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 579036, + "thread": 17 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 770775, + "thread": 5 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 905604, + "thread": 30 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1148324, + "thread": 19 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1286588, + "thread": 13 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1464865, + "thread": 3 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1587429, + "thread": 27 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1753207, + "thread": 14 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1873779, + "thread": 20 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 1977140, + "thread": 7 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2198981, + "thread": 6 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2355162, + "thread": 16 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2471969, + "thread": 0 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2714584, + "thread": 2 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2952494, + "thread": 17 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 2999717, + "thread": 3 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 3127309, + "thread": 7 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 3298966, + "thread": 4 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 3493553, + "thread": 15 + } + }, + { + "amount": "80.272584279", + "slot": { + "period": 3665820, + "thread": 20 + } + }, + { + "amount": "80.272584276", + "slot": { + "period": 3822793, + "thread": 26 + } + } + ], + "AU19rDdhiXWSty3tRveeLbDcLhXKoQ3AHqxew4WFdBZw2ZkfNz45": [ + { + "amount": "132.863122713", + "slot": { + "period": 32202, + "thread": 26 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 184193, + "thread": 27 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 389169, + "thread": 17 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 641370, + "thread": 22 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 796858, + "thread": 23 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 932609, + "thread": 19 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1068969, + "thread": 9 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1268794, + "thread": 8 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1418545, + "thread": 3 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1639462, + "thread": 3 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1754682, + "thread": 12 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1851863, + "thread": 8 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 1994059, + "thread": 27 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 2251897, + "thread": 23 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 2377038, + "thread": 27 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 2599933, + "thread": 14 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 2681529, + "thread": 11 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 2859414, + "thread": 29 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 3107847, + "thread": 22 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 3218701, + "thread": 3 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 3375952, + "thread": 21 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 3538359, + "thread": 16 + } + }, + { + "amount": "132.863122713", + "slot": { + "period": 3752321, + "thread": 9 + } + }, + { + "amount": "132.863122714", + "slot": { + "period": 3903548, + "thread": 12 + } + } + ], + "AU19sSch67RNvgEhoobUGg5ro2D3J9WbAL4taYGLmD7trRVSGSi2": [ + { + "amount": "175.093947658", + "slot": { + "period": 70265, + "thread": 24 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 197771, + "thread": 18 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 420465, + "thread": 21 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 608741, + "thread": 31 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 779222, + "thread": 13 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 945577, + "thread": 12 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1018678, + "thread": 17 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1311150, + "thread": 2 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1469293, + "thread": 26 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1501887, + "thread": 7 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1649010, + "thread": 5 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 1829158, + "thread": 7 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2006343, + "thread": 14 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2163628, + "thread": 13 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2427850, + "thread": 25 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2617358, + "thread": 27 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2654004, + "thread": 25 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 2952264, + "thread": 28 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 3078176, + "thread": 12 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 3199564, + "thread": 12 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 3336940, + "thread": 4 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 3607419, + "thread": 28 + } + }, + { + "amount": "175.093947658", + "slot": { + "period": 3620250, + "thread": 9 + } + }, + { + "amount": "175.093947666", + "slot": { + "period": 3857870, + "thread": 17 + } + } + ], + "AU19shh9xM73b4EVyk445vDg5gZnbt7vrcHxkxiKspEot9AvNv9N": [ + { + "amount": "220.524543139", + "slot": { + "period": 94060, + "thread": 3 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 296695, + "thread": 31 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 374065, + "thread": 11 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 522055, + "thread": 1 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 710590, + "thread": 25 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 951890, + "thread": 0 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1099744, + "thread": 2 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1309547, + "thread": 17 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1388897, + "thread": 13 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1524862, + "thread": 8 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1663372, + "thread": 6 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1958659, + "thread": 26 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 1990946, + "thread": 9 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 2285152, + "thread": 20 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 2356478, + "thread": 0 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 2526390, + "thread": 9 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 2638252, + "thread": 16 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 2889016, + "thread": 21 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 3043671, + "thread": 14 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 3267605, + "thread": 22 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 3298238, + "thread": 13 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 3594549, + "thread": 30 + } + }, + { + "amount": "220.524543139", + "slot": { + "period": 3697384, + "thread": 7 + } + }, + { + "amount": "220.524543133", + "slot": { + "period": 3912264, + "thread": 13 + } + } + ], + "AU19ssuay5HPymoLE7fc1y6GCjEwf56Cc5cbUuYTTFhWHXTQnURo": [ + { + "amount": "194.390483180", + "slot": { + "period": 71421, + "thread": 30 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 229968, + "thread": 23 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 361312, + "thread": 25 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 523587, + "thread": 24 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 754135, + "thread": 31 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 933709, + "thread": 14 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1003553, + "thread": 17 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1226681, + "thread": 30 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1418550, + "thread": 1 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1509914, + "thread": 27 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1765831, + "thread": 7 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 1920701, + "thread": 0 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2111991, + "thread": 7 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2261033, + "thread": 16 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2315214, + "thread": 26 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2579457, + "thread": 24 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2787217, + "thread": 6 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 2913488, + "thread": 14 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 3053160, + "thread": 10 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 3159948, + "thread": 19 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 3289010, + "thread": 17 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 3534310, + "thread": 8 + } + }, + { + "amount": "194.390483180", + "slot": { + "period": 3626372, + "thread": 3 + } + }, + { + "amount": "194.390483188", + "slot": { + "period": 3817791, + "thread": 23 + } + } + ], + "AU19swvwXLkzsBUr6Dsb5cBDCQWdo2HoBh4UkLxySVe1fcYPdaNj": [ + { + "amount": "60.185557329", + "slot": { + "period": 90940, + "thread": 20 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 169825, + "thread": 13 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 372692, + "thread": 17 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 509536, + "thread": 15 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 734489, + "thread": 2 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 821692, + "thread": 20 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1047859, + "thread": 10 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1282801, + "thread": 4 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1377364, + "thread": 28 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1610074, + "thread": 6 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1790519, + "thread": 25 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1974995, + "thread": 23 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 1991846, + "thread": 8 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 2285936, + "thread": 20 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 2355335, + "thread": 29 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 2546148, + "thread": 3 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 2747881, + "thread": 14 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 2869309, + "thread": 22 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 3070528, + "thread": 20 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 3148802, + "thread": 14 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 3384902, + "thread": 7 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 3482122, + "thread": 23 + } + }, + { + "amount": "60.185557329", + "slot": { + "period": 3692266, + "thread": 21 + } + }, + { + "amount": "60.185557324", + "slot": { + "period": 3866281, + "thread": 8 + } + } + ], + "AU19sz2evLpkwk2A6bqvJXbG6mx7tysXbcvACC9DtFtaN3ird7uS": [ + { + "amount": "307.693867504", + "slot": { + "period": 131261, + "thread": 22 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 285240, + "thread": 7 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 325990, + "thread": 29 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 565982, + "thread": 23 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 803747, + "thread": 17 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 885443, + "thread": 0 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1049604, + "thread": 1 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1218689, + "thread": 22 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1420672, + "thread": 31 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1509040, + "thread": 30 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1716674, + "thread": 22 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 1900038, + "thread": 29 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2037468, + "thread": 18 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2242229, + "thread": 20 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2419598, + "thread": 31 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2531586, + "thread": 26 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2733983, + "thread": 8 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 2801000, + "thread": 14 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 3043844, + "thread": 26 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 3157772, + "thread": 8 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 3367810, + "thread": 12 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 3521776, + "thread": 28 + } + }, + { + "amount": "307.693867504", + "slot": { + "period": 3717415, + "thread": 17 + } + }, + { + "amount": "307.693867513", + "slot": { + "period": 3820819, + "thread": 20 + } + } + ], + "AU19tYqAXgXUkDGfofFfvEF7XQqVnfRqCQm5FncYDAPE9ZcjTW3F": [ + { + "amount": "200.858376994", + "slot": { + "period": 152068, + "thread": 11 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 251577, + "thread": 15 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 375614, + "thread": 21 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 587097, + "thread": 26 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 717401, + "thread": 26 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 956511, + "thread": 28 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1105117, + "thread": 20 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1294989, + "thread": 5 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1421210, + "thread": 1 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1578691, + "thread": 14 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1671500, + "thread": 16 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 1909698, + "thread": 9 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2100095, + "thread": 9 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2215802, + "thread": 6 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2454295, + "thread": 24 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2558469, + "thread": 27 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2781714, + "thread": 19 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 2806211, + "thread": 5 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 3028583, + "thread": 10 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 3130416, + "thread": 23 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 3350775, + "thread": 11 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 3496079, + "thread": 5 + } + }, + { + "amount": "200.858376994", + "slot": { + "period": 3712391, + "thread": 14 + } + }, + { + "amount": "200.858376982", + "slot": { + "period": 3784093, + "thread": 6 + } + } + ], + "AU19u85GH4LAya68ANiioRTgQAzNsWADwnFGaemNB3Vc6Lr93uAb": [ + { + "amount": "127.646044090", + "slot": { + "period": 110811, + "thread": 10 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 314451, + "thread": 29 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 411219, + "thread": 22 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 500909, + "thread": 1 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 717577, + "thread": 28 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 858160, + "thread": 1 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1031298, + "thread": 13 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1285538, + "thread": 25 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1475718, + "thread": 7 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1508514, + "thread": 0 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1791614, + "thread": 14 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 1810416, + "thread": 8 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2051214, + "thread": 26 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2278113, + "thread": 24 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2449663, + "thread": 29 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2622294, + "thread": 15 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2687343, + "thread": 26 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2914350, + "thread": 2 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 2965261, + "thread": 5 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 3171664, + "thread": 28 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 3422165, + "thread": 13 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 3588705, + "thread": 8 + } + }, + { + "amount": "127.646044090", + "slot": { + "period": 3719949, + "thread": 7 + } + }, + { + "amount": "127.646044102", + "slot": { + "period": 3820251, + "thread": 4 + } + } + ], + "AU19vLqkrAHndkAXyeWzHi8NVfABGbXHeHakEfnV2oq6mZ36W6h3": [ + { + "amount": "72.642214412", + "slot": { + "period": 58796, + "thread": 23 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 219794, + "thread": 6 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 344807, + "thread": 29 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 644271, + "thread": 27 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 716270, + "thread": 29 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 881042, + "thread": 29 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1051999, + "thread": 7 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1193151, + "thread": 23 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1377613, + "thread": 9 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1491330, + "thread": 13 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1654803, + "thread": 16 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1841005, + "thread": 22 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 1998826, + "thread": 4 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2264048, + "thread": 19 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2422210, + "thread": 29 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2588536, + "thread": 20 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2700933, + "thread": 3 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2891073, + "thread": 16 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 2977050, + "thread": 5 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 3241734, + "thread": 20 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 3402634, + "thread": 23 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 3480986, + "thread": 2 + } + }, + { + "amount": "72.642214412", + "slot": { + "period": 3717740, + "thread": 31 + } + }, + { + "amount": "72.642214401", + "slot": { + "period": 3898796, + "thread": 11 + } + } + ], + "AU19vkGbha5EpGSvwFfMpsMhep6agzGK8sC9tPXbJd8XFQ2kDZHf": [ + { + "amount": "156.949475482", + "slot": { + "period": 12833, + "thread": 22 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 299354, + "thread": 29 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 344944, + "thread": 0 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 547784, + "thread": 10 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 752980, + "thread": 27 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 855110, + "thread": 9 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1132333, + "thread": 24 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1159364, + "thread": 8 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1413110, + "thread": 12 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1552117, + "thread": 17 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1721136, + "thread": 13 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 1934092, + "thread": 20 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2038269, + "thread": 26 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2177013, + "thread": 9 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2309419, + "thread": 4 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2599423, + "thread": 0 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2758234, + "thread": 22 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2828322, + "thread": 10 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 2989375, + "thread": 26 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 3210739, + "thread": 7 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 3357735, + "thread": 25 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 3584339, + "thread": 2 + } + }, + { + "amount": "156.949475482", + "slot": { + "period": 3675527, + "thread": 13 + } + }, + { + "amount": "156.949475476", + "slot": { + "period": 3902412, + "thread": 31 + } + } + ], + "AU19wL3qs7ouEEaUCRWbcHrDkAT4pdacLcZLUFuxXABfjPCHKi72": [ + { + "amount": "117.274414329", + "slot": { + "period": 59265, + "thread": 26 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 217356, + "thread": 0 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 391178, + "thread": 6 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 499338, + "thread": 2 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 658694, + "thread": 15 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 863083, + "thread": 3 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1076315, + "thread": 13 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1282751, + "thread": 13 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1410572, + "thread": 5 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1573413, + "thread": 11 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1712917, + "thread": 7 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 1917360, + "thread": 18 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2113846, + "thread": 21 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2174682, + "thread": 10 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2402763, + "thread": 7 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2608498, + "thread": 9 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2627551, + "thread": 3 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 2823358, + "thread": 12 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 3077200, + "thread": 11 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 3189988, + "thread": 14 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 3379215, + "thread": 13 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 3567102, + "thread": 11 + } + }, + { + "amount": "117.274414329", + "slot": { + "period": 3763468, + "thread": 6 + } + }, + { + "amount": "117.274414327", + "slot": { + "period": 3795630, + "thread": 4 + } + } + ], + "AU19x16A7nQmTbgzLfgFCDVYtao8rxsnCjCgSE4cH4j8hkZf6ViN": [ + { + "amount": "311.889424062", + "slot": { + "period": 59655, + "thread": 20 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 297144, + "thread": 28 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 327872, + "thread": 25 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 524793, + "thread": 4 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 767264, + "thread": 5 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 946374, + "thread": 18 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1127437, + "thread": 15 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1219546, + "thread": 17 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1329971, + "thread": 18 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1580096, + "thread": 15 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1710990, + "thread": 11 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 1961060, + "thread": 19 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2010465, + "thread": 8 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2288170, + "thread": 14 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2442273, + "thread": 0 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2549637, + "thread": 6 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2656012, + "thread": 26 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 2799883, + "thread": 19 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 3061180, + "thread": 28 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 3191161, + "thread": 1 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 3330066, + "thread": 28 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 3589084, + "thread": 3 + } + }, + { + "amount": "311.889424062", + "slot": { + "period": 3703614, + "thread": 18 + } + }, + { + "amount": "311.889424067", + "slot": { + "period": 3936281, + "thread": 16 + } + } + ], + "AU19xRwih1ARL3uFfhYDr1yxkVFRonBqBSdcFjNpzsNQrUw3T6Zq": [ + { + "amount": "459.019465831", + "slot": { + "period": 117339, + "thread": 3 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 264150, + "thread": 14 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 359204, + "thread": 25 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 530806, + "thread": 17 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 696937, + "thread": 10 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 879063, + "thread": 25 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1073984, + "thread": 14 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1210354, + "thread": 15 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1367630, + "thread": 23 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1586766, + "thread": 25 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1778938, + "thread": 19 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 1947646, + "thread": 22 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2022226, + "thread": 3 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2224352, + "thread": 21 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2367836, + "thread": 14 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2621645, + "thread": 28 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2656372, + "thread": 14 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 2857122, + "thread": 9 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 3105685, + "thread": 24 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 3262232, + "thread": 19 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 3361729, + "thread": 8 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 3527890, + "thread": 29 + } + }, + { + "amount": "459.019465831", + "slot": { + "period": 3675652, + "thread": 10 + } + }, + { + "amount": "459.019465826", + "slot": { + "period": 3833135, + "thread": 19 + } + } + ], + "AU19xUQTSWPVxrAo5HiaVzZ3xkQQxQJCF5mANo4j3DDxhdrwECvS": [ + { + "amount": "345.580738928", + "slot": { + "period": 141528, + "thread": 9 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 201843, + "thread": 19 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 410944, + "thread": 19 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 651919, + "thread": 23 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 803665, + "thread": 29 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 874822, + "thread": 5 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1028788, + "thread": 30 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1181988, + "thread": 23 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1405321, + "thread": 19 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1555668, + "thread": 31 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1686538, + "thread": 6 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1839503, + "thread": 3 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 1999067, + "thread": 8 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2196798, + "thread": 15 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2413321, + "thread": 9 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2502449, + "thread": 24 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2703510, + "thread": 8 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2907880, + "thread": 8 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 2991067, + "thread": 8 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 3278709, + "thread": 8 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 3416046, + "thread": 13 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 3480299, + "thread": 0 + } + }, + { + "amount": "345.580738928", + "slot": { + "period": 3748393, + "thread": 3 + } + }, + { + "amount": "345.580738931", + "slot": { + "period": 3852618, + "thread": 6 + } + } + ], + "AU19xiiX6MDuNcd9XqoLpzefpRq3icEwJWGMGkgKyjLgWeFdtjSr": [ + { + "amount": "194.408902005", + "slot": { + "period": 106349, + "thread": 16 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 178267, + "thread": 0 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 417126, + "thread": 11 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 633915, + "thread": 18 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 809161, + "thread": 30 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 869397, + "thread": 0 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1054249, + "thread": 15 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1268494, + "thread": 2 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1363012, + "thread": 8 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1642226, + "thread": 11 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1779806, + "thread": 19 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 1895662, + "thread": 6 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2091542, + "thread": 9 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2284189, + "thread": 7 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2427731, + "thread": 30 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2544457, + "thread": 12 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2752073, + "thread": 27 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 2857580, + "thread": 10 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 3105345, + "thread": 23 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 3188611, + "thread": 4 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 3401497, + "thread": 15 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 3515847, + "thread": 18 + } + }, + { + "amount": "194.408902005", + "slot": { + "period": 3727445, + "thread": 20 + } + }, + { + "amount": "194.408901997", + "slot": { + "period": 3854507, + "thread": 29 + } + } + ], + "AU19yA9aMZp6UwqmcCZ3W9Y4iDih9F69fw1CY7VxcRG424m8MXyk": [ + { + "amount": "253.896579718", + "slot": { + "period": 72367, + "thread": 1 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 316951, + "thread": 21 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 401119, + "thread": 4 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 608053, + "thread": 12 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 676708, + "thread": 17 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 940599, + "thread": 20 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1123002, + "thread": 19 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1184560, + "thread": 28 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1361829, + "thread": 30 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1530825, + "thread": 13 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1664861, + "thread": 5 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 1891415, + "thread": 20 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2088691, + "thread": 26 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2203672, + "thread": 7 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2372607, + "thread": 27 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2605447, + "thread": 12 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2788152, + "thread": 12 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 2866911, + "thread": 9 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 3100667, + "thread": 14 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 3138863, + "thread": 28 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 3318281, + "thread": 20 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 3501066, + "thread": 31 + } + }, + { + "amount": "253.896579718", + "slot": { + "period": 3777114, + "thread": 11 + } + }, + { + "amount": "253.896579710", + "slot": { + "period": 3862381, + "thread": 21 + } + } + ], + "AU19yRBSyzfAHSkpmC3bSZfTLjKYdG3NxizS6cLZ9Y8fJM2sDdw1": [ + { + "amount": "276.650706896", + "slot": { + "period": 150733, + "thread": 27 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 274798, + "thread": 6 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 381902, + "thread": 1 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 606572, + "thread": 4 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 733602, + "thread": 25 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 943909, + "thread": 2 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1032859, + "thread": 9 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1299285, + "thread": 8 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1397548, + "thread": 1 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1637048, + "thread": 12 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1753500, + "thread": 29 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 1898573, + "thread": 20 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2000117, + "thread": 25 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2289730, + "thread": 3 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2311282, + "thread": 14 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2546178, + "thread": 6 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2725870, + "thread": 11 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2817141, + "thread": 15 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 2978634, + "thread": 28 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 3269119, + "thread": 24 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 3415813, + "thread": 7 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 3491761, + "thread": 3 + } + }, + { + "amount": "276.650706896", + "slot": { + "period": 3648380, + "thread": 7 + } + }, + { + "amount": "276.650706900", + "slot": { + "period": 3930772, + "thread": 12 + } + } + ], + "AU19yUvHs6dX8snbbd1TuhfCZMu138zyNXgBYLyT6AKgU2h2Kt4C": [ + { + "amount": "56.868295105", + "slot": { + "period": 11314, + "thread": 1 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 263118, + "thread": 12 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 435669, + "thread": 12 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 649507, + "thread": 9 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 779753, + "thread": 14 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 882162, + "thread": 3 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1020150, + "thread": 4 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1297521, + "thread": 6 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1442055, + "thread": 3 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1489158, + "thread": 13 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1652941, + "thread": 29 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 1871302, + "thread": 8 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2077889, + "thread": 17 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2269394, + "thread": 18 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2317687, + "thread": 1 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2500419, + "thread": 18 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2688576, + "thread": 26 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 2827506, + "thread": 25 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 3022515, + "thread": 17 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 3192257, + "thread": 16 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 3308909, + "thread": 1 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 3514421, + "thread": 28 + } + }, + { + "amount": "56.868295105", + "slot": { + "period": 3757217, + "thread": 19 + } + }, + { + "amount": "56.868295113", + "slot": { + "period": 3923086, + "thread": 14 + } + } + ], + "AU19ypbYh6dCho7BBk1Am5Ztnw1AVVH7ApRRoFuvKnwnA2s3bwpS": [ + { + "amount": "218.916738402", + "slot": { + "period": 66444, + "thread": 31 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 241202, + "thread": 16 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 479573, + "thread": 10 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 583845, + "thread": 11 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 795381, + "thread": 9 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 903674, + "thread": 18 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1034375, + "thread": 15 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1188584, + "thread": 18 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1368966, + "thread": 17 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1559619, + "thread": 9 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1756224, + "thread": 6 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 1954605, + "thread": 22 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2111599, + "thread": 5 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2259168, + "thread": 31 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2387682, + "thread": 14 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2549622, + "thread": 9 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2706192, + "thread": 4 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 2914630, + "thread": 5 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 3026600, + "thread": 13 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 3268654, + "thread": 6 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 3304990, + "thread": 1 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 3465314, + "thread": 26 + } + }, + { + "amount": "218.916738402", + "slot": { + "period": 3660545, + "thread": 16 + } + }, + { + "amount": "218.916738405", + "slot": { + "period": 3890445, + "thread": 14 + } + } + ], + "AU19zyeXy2AwiG5XvU87AAjAVvrBDdAQyuEsJhftU1ZXYinv2NiY": [ + { + "amount": "142.511347014", + "slot": { + "period": 18998, + "thread": 2 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 261402, + "thread": 3 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 357521, + "thread": 5 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 650990, + "thread": 1 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 813969, + "thread": 28 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 974923, + "thread": 13 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1061223, + "thread": 4 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1187519, + "thread": 15 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1423771, + "thread": 30 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1530278, + "thread": 7 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1690313, + "thread": 23 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 1942606, + "thread": 13 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2116504, + "thread": 7 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2197877, + "thread": 7 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2389798, + "thread": 30 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2534994, + "thread": 4 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2773915, + "thread": 26 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 2863925, + "thread": 15 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 3083675, + "thread": 6 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 3132704, + "thread": 7 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 3389517, + "thread": 20 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 3456491, + "thread": 8 + } + }, + { + "amount": "142.511347014", + "slot": { + "period": 3658960, + "thread": 25 + } + }, + { + "amount": "142.511347018", + "slot": { + "period": 3874267, + "thread": 1 + } + } + ], + "AU1A17TgwdjDKtKqxggiBzYrFHJyKov63AjeBtmzzyC9ZFqoy9GS": [ + { + "amount": "608.116608879", + "slot": { + "period": 77285, + "thread": 3 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 200602, + "thread": 12 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 346056, + "thread": 29 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 512494, + "thread": 24 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 732507, + "thread": 22 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 972888, + "thread": 0 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1002203, + "thread": 7 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1175589, + "thread": 30 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1457436, + "thread": 3 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1622666, + "thread": 18 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1676166, + "thread": 1 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 1836178, + "thread": 24 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2021369, + "thread": 20 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2153963, + "thread": 3 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2348126, + "thread": 18 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2484437, + "thread": 19 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2791407, + "thread": 25 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 2864816, + "thread": 19 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 3018001, + "thread": 9 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 3144036, + "thread": 29 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 3436096, + "thread": 18 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 3595715, + "thread": 2 + } + }, + { + "amount": "608.116608879", + "slot": { + "period": 3713535, + "thread": 16 + } + }, + { + "amount": "608.116608876", + "slot": { + "period": 3922728, + "thread": 9 + } + } + ], + "AU1A1UYSkRFiRkPAnEmjASGFMXFt8F3BLHqd3UrJsKui7ZfWnDXs": [ + { + "amount": "200.319154673", + "slot": { + "period": 136323, + "thread": 12 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 253256, + "thread": 27 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 384452, + "thread": 1 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 609913, + "thread": 10 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 741960, + "thread": 26 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 911568, + "thread": 1 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1037551, + "thread": 5 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1268828, + "thread": 22 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1335867, + "thread": 27 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1612631, + "thread": 1 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1699917, + "thread": 16 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1963942, + "thread": 29 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 1996953, + "thread": 13 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 2164423, + "thread": 6 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 2359011, + "thread": 6 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 2589763, + "thread": 30 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 2697284, + "thread": 14 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 2931962, + "thread": 16 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 3038772, + "thread": 31 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 3215617, + "thread": 30 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 3396101, + "thread": 16 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 3592487, + "thread": 17 + } + }, + { + "amount": "200.319154673", + "slot": { + "period": 3668959, + "thread": 29 + } + }, + { + "amount": "200.319154670", + "slot": { + "period": 3780662, + "thread": 29 + } + } + ], + "AU1A1aCr4Ffqo5118ihfTa2mZjiMaxeFHxbHq3evezM3B5PdHtxo": [ + { + "amount": "217.901278963", + "slot": { + "period": 158844, + "thread": 3 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 195964, + "thread": 19 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 364987, + "thread": 11 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 523303, + "thread": 23 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 672212, + "thread": 3 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 957587, + "thread": 28 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1114050, + "thread": 26 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1155611, + "thread": 22 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1477656, + "thread": 10 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1502465, + "thread": 3 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1716860, + "thread": 12 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 1847707, + "thread": 5 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2017184, + "thread": 9 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2184778, + "thread": 19 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2353493, + "thread": 30 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2486772, + "thread": 12 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2735083, + "thread": 18 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 2949643, + "thread": 4 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 3044913, + "thread": 19 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 3129234, + "thread": 6 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 3335496, + "thread": 31 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 3559990, + "thread": 16 + } + }, + { + "amount": "217.901278963", + "slot": { + "period": 3683092, + "thread": 18 + } + }, + { + "amount": "217.901278954", + "slot": { + "period": 3899030, + "thread": 10 + } + } + ], + "AU1A1sbLTxQqAkqta83UFwxb4cbYSHCq3wxhGpXHgPfFnpaKWvFK": [ + { + "amount": "352.574652583", + "slot": { + "period": 49196, + "thread": 27 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 320691, + "thread": 23 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 360616, + "thread": 26 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 515390, + "thread": 9 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 697515, + "thread": 2 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 880113, + "thread": 11 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1088651, + "thread": 22 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1224150, + "thread": 28 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1369115, + "thread": 4 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1515296, + "thread": 29 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1782422, + "thread": 11 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1829911, + "thread": 0 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 1996042, + "thread": 11 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 2237059, + "thread": 24 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 2339198, + "thread": 7 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 2604219, + "thread": 27 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 2674270, + "thread": 0 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 2945248, + "thread": 28 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 3103619, + "thread": 9 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 3243725, + "thread": 10 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 3380315, + "thread": 10 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 3536694, + "thread": 30 + } + }, + { + "amount": "352.574652583", + "slot": { + "period": 3678480, + "thread": 13 + } + }, + { + "amount": "352.574652592", + "slot": { + "period": 3909531, + "thread": 22 + } + } + ], + "AU1A2UqsH5uEPccTNBnnQdeKQudpwKD5S5PNeCWXa7Ld5NP7bwDG": [ + { + "amount": "489.116782402", + "slot": { + "period": 69266, + "thread": 13 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 236835, + "thread": 3 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 395227, + "thread": 6 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 574278, + "thread": 25 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 734531, + "thread": 27 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 947917, + "thread": 10 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1065896, + "thread": 25 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1301784, + "thread": 18 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1398162, + "thread": 31 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1639765, + "thread": 19 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1656754, + "thread": 8 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 1922019, + "thread": 1 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2088540, + "thread": 8 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2265758, + "thread": 16 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2440763, + "thread": 0 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2584006, + "thread": 30 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2717280, + "thread": 18 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 2940639, + "thread": 13 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 3006273, + "thread": 25 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 3249446, + "thread": 2 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 3394286, + "thread": 6 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 3563011, + "thread": 20 + } + }, + { + "amount": "489.116782402", + "slot": { + "period": 3767041, + "thread": 16 + } + }, + { + "amount": "489.116782401", + "slot": { + "period": 3852004, + "thread": 12 + } + } + ], + "AU1A3T2MTAiPokERa4DTJr472UiGeuPJawvkjyGPHP9nFn3csdDD": [ + { + "amount": "269.682403471", + "slot": { + "period": 47346, + "thread": 16 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 295255, + "thread": 0 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 366811, + "thread": 14 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 530859, + "thread": 13 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 819875, + "thread": 12 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 855491, + "thread": 4 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 989740, + "thread": 10 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1202542, + "thread": 28 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1359845, + "thread": 14 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1634814, + "thread": 1 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1688577, + "thread": 27 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1811867, + "thread": 9 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 1984111, + "thread": 31 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 2257529, + "thread": 22 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 2300101, + "thread": 12 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 2533000, + "thread": 22 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 2746353, + "thread": 1 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 2799675, + "thread": 16 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 3042199, + "thread": 21 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 3271793, + "thread": 0 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 3353244, + "thread": 9 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 3486014, + "thread": 26 + } + }, + { + "amount": "269.682403471", + "slot": { + "period": 3749829, + "thread": 9 + } + }, + { + "amount": "269.682403467", + "slot": { + "period": 3911673, + "thread": 31 + } + } + ], + "AU1A3brxXszrmyAydMMMe992dVxAa9LmPDFgJsfvjheMXb7WiRaJ": [ + { + "amount": "57.187548238", + "slot": { + "period": 72497, + "thread": 21 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 288950, + "thread": 3 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 475242, + "thread": 22 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 597191, + "thread": 19 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 772663, + "thread": 4 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 928304, + "thread": 2 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1105668, + "thread": 25 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1156823, + "thread": 22 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1450248, + "thread": 17 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1644648, + "thread": 2 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1783497, + "thread": 25 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1828805, + "thread": 12 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 1983528, + "thread": 19 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 2208975, + "thread": 21 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 2313046, + "thread": 2 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 2536753, + "thread": 0 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 2630077, + "thread": 9 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 2793960, + "thread": 20 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 3112107, + "thread": 17 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 3161204, + "thread": 30 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 3388958, + "thread": 6 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 3613050, + "thread": 12 + } + }, + { + "amount": "57.187548238", + "slot": { + "period": 3652843, + "thread": 22 + } + }, + { + "amount": "57.187548230", + "slot": { + "period": 3841908, + "thread": 13 + } + } + ], + "AU1A4RhQwWM7Tead6KVnxUJ9Zryhp4U9JKTyFxAdxgBZ6BjrMAiC": [ + { + "amount": "244.663203587", + "slot": { + "period": 89808, + "thread": 1 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 292815, + "thread": 2 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 368238, + "thread": 26 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 624722, + "thread": 4 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 703948, + "thread": 7 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 832627, + "thread": 12 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1014742, + "thread": 0 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1310305, + "thread": 18 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1475657, + "thread": 31 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1624755, + "thread": 0 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1779442, + "thread": 3 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 1900703, + "thread": 31 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2026084, + "thread": 10 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2261010, + "thread": 12 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2410066, + "thread": 16 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2609087, + "thread": 15 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2778080, + "thread": 20 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 2857305, + "thread": 3 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 3072872, + "thread": 24 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 3206387, + "thread": 13 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 3327708, + "thread": 15 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 3592082, + "thread": 8 + } + }, + { + "amount": "244.663203587", + "slot": { + "period": 3755391, + "thread": 29 + } + }, + { + "amount": "244.663203585", + "slot": { + "period": 3843093, + "thread": 31 + } + } + ], + "AU1A58QMaZNVwLh8JGUJVyLkwczzZVkHqfQdHqMVfxSMvstuaWnx": [ + { + "amount": "161.956685126", + "slot": { + "period": 91604, + "thread": 23 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 281655, + "thread": 9 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 473977, + "thread": 10 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 635338, + "thread": 15 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 794918, + "thread": 14 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 885227, + "thread": 2 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1074271, + "thread": 10 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1286185, + "thread": 22 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1438543, + "thread": 14 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1508937, + "thread": 12 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1763634, + "thread": 25 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 1884467, + "thread": 5 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2074442, + "thread": 9 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2210440, + "thread": 20 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2417147, + "thread": 20 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2506839, + "thread": 5 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2747069, + "thread": 26 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2863981, + "thread": 26 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 2971091, + "thread": 7 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 3222353, + "thread": 27 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 3316215, + "thread": 31 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 3512642, + "thread": 19 + } + }, + { + "amount": "161.956685126", + "slot": { + "period": 3774046, + "thread": 15 + } + }, + { + "amount": "161.956685116", + "slot": { + "period": 3947235, + "thread": 22 + } + } + ], + "AU1A6KzKUkGVpMLHDp39s4UDrxXqMV3r77gBJmEagYk27zxP1bHd": [ + { + "amount": "144.237910703", + "slot": { + "period": 147562, + "thread": 0 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 266081, + "thread": 13 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 446717, + "thread": 27 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 576491, + "thread": 2 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 686296, + "thread": 17 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 893698, + "thread": 3 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 997025, + "thread": 10 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1180066, + "thread": 5 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1413243, + "thread": 13 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1599235, + "thread": 18 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1720753, + "thread": 21 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1971335, + "thread": 20 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 1978581, + "thread": 6 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2267193, + "thread": 30 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2392633, + "thread": 8 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2549637, + "thread": 25 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2690126, + "thread": 14 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2915595, + "thread": 9 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 2979662, + "thread": 14 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 3275558, + "thread": 24 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 3350054, + "thread": 17 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 3582034, + "thread": 20 + } + }, + { + "amount": "144.237910703", + "slot": { + "period": 3694009, + "thread": 6 + } + }, + { + "amount": "144.237910702", + "slot": { + "period": 3881325, + "thread": 29 + } + } + ], + "AU1A6xJ8CJaiyPj7XXMUUtHoDFaae2gupMnJaAMbNXXCkkaDe8NN": [ + { + "amount": "55.621083921", + "slot": { + "period": 18349, + "thread": 17 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 306983, + "thread": 23 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 407131, + "thread": 10 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 636871, + "thread": 21 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 814651, + "thread": 5 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 921292, + "thread": 12 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1097729, + "thread": 30 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1313300, + "thread": 20 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1385022, + "thread": 25 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1488779, + "thread": 8 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1732751, + "thread": 17 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1948378, + "thread": 22 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 1976526, + "thread": 7 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2284988, + "thread": 30 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2460477, + "thread": 1 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2487206, + "thread": 14 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2705364, + "thread": 31 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2792077, + "thread": 6 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 2980435, + "thread": 22 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 3136623, + "thread": 19 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 3329951, + "thread": 25 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 3586044, + "thread": 14 + } + }, + { + "amount": "55.621083921", + "slot": { + "period": 3634234, + "thread": 20 + } + }, + { + "amount": "55.621083917", + "slot": { + "period": 3893881, + "thread": 9 + } + } + ], + "AU1A7DhFk6m2on1RitgpxL2Af97D2hnueH2Vm82aN98D9yecL8X7": [ + { + "amount": "165.480815034", + "slot": { + "period": 167311, + "thread": 10 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 175535, + "thread": 15 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 477734, + "thread": 9 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 621047, + "thread": 28 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 725658, + "thread": 14 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 971655, + "thread": 11 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1054798, + "thread": 30 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1294990, + "thread": 19 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1368765, + "thread": 18 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1598685, + "thread": 14 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1802762, + "thread": 17 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1953095, + "thread": 19 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 1987599, + "thread": 24 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 2266326, + "thread": 31 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 2368786, + "thread": 17 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 2530839, + "thread": 28 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 2712498, + "thread": 0 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 2946740, + "thread": 13 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 3073513, + "thread": 2 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 3217419, + "thread": 5 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 3441527, + "thread": 11 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 3577044, + "thread": 28 + } + }, + { + "amount": "165.480815034", + "slot": { + "period": 3742023, + "thread": 17 + } + }, + { + "amount": "165.480815042", + "slot": { + "period": 3826440, + "thread": 14 + } + } + ], + "AU1A7SFnCbTgrsf7vEgXrLgDDQUMRV27hMnvnWvyvbuDZcbfePE9": [ + { + "amount": "144.323318722", + "slot": { + "period": 49426, + "thread": 25 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 235729, + "thread": 27 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 400146, + "thread": 22 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 597983, + "thread": 7 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 717367, + "thread": 5 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 822698, + "thread": 2 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1074351, + "thread": 14 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1215945, + "thread": 6 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1410199, + "thread": 14 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1582259, + "thread": 0 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1770084, + "thread": 9 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 1869127, + "thread": 25 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2138141, + "thread": 4 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2209653, + "thread": 25 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2306152, + "thread": 16 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2505526, + "thread": 2 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2772792, + "thread": 16 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 2865471, + "thread": 23 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 3092052, + "thread": 15 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 3202114, + "thread": 12 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 3435276, + "thread": 16 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 3523034, + "thread": 2 + } + }, + { + "amount": "144.323318722", + "slot": { + "period": 3650183, + "thread": 11 + } + }, + { + "amount": "144.323318729", + "slot": { + "period": 3925992, + "thread": 20 + } + } + ], + "AU1A8E1DC2o5yoBz4cKQid6p2ZUAbBSvDg41qhxX99LzpVW3LxBa": [ + { + "amount": "267.272358224", + "slot": { + "period": 121403, + "thread": 18 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 238432, + "thread": 24 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 380578, + "thread": 25 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 540563, + "thread": 2 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 745993, + "thread": 29 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 868972, + "thread": 16 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1019258, + "thread": 11 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1301576, + "thread": 27 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1474078, + "thread": 19 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1588643, + "thread": 21 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1757255, + "thread": 9 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1861864, + "thread": 22 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 1993610, + "thread": 20 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 2241998, + "thread": 16 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 2300237, + "thread": 31 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 2607839, + "thread": 8 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 2635510, + "thread": 31 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 2852805, + "thread": 4 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 3032145, + "thread": 1 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 3132230, + "thread": 15 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 3408727, + "thread": 2 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 3469170, + "thread": 31 + } + }, + { + "amount": "267.272358224", + "slot": { + "period": 3766087, + "thread": 28 + } + }, + { + "amount": "267.272358229", + "slot": { + "period": 3810217, + "thread": 14 + } + } + ], + "AU1A8cuYHCVhCEMbD5YrrvfZ9hvvV5rBd9qv8jXjwVq6nj5N4wdj": [ + { + "amount": "73.587702276", + "slot": { + "period": 74490, + "thread": 30 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 221804, + "thread": 4 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 449120, + "thread": 12 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 513548, + "thread": 18 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 667107, + "thread": 21 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 954532, + "thread": 5 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1029289, + "thread": 13 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1316630, + "thread": 6 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1415885, + "thread": 8 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1602285, + "thread": 5 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1712089, + "thread": 11 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 1880798, + "thread": 10 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2064733, + "thread": 18 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2203181, + "thread": 10 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2402547, + "thread": 1 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2475426, + "thread": 26 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2628007, + "thread": 31 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2803420, + "thread": 12 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 2965283, + "thread": 23 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 3230325, + "thread": 31 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 3374071, + "thread": 29 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 3485033, + "thread": 9 + } + }, + { + "amount": "73.587702276", + "slot": { + "period": 3636417, + "thread": 3 + } + }, + { + "amount": "73.587702265", + "slot": { + "period": 3917602, + "thread": 4 + } + } + ], + "AU1A8cw9UCFCHuYVwkTjSHAGsWYvxfA6kEAN9SEwTC48pE9jwRhD": [ + { + "amount": "52.521256470", + "slot": { + "period": 124139, + "thread": 1 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 318776, + "thread": 0 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 387148, + "thread": 18 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 637473, + "thread": 7 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 764278, + "thread": 21 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 924323, + "thread": 31 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1016178, + "thread": 11 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1211934, + "thread": 13 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1322574, + "thread": 26 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1517583, + "thread": 6 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1698171, + "thread": 4 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 1960956, + "thread": 11 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2052742, + "thread": 12 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2189533, + "thread": 4 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2302516, + "thread": 19 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2606528, + "thread": 14 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2668267, + "thread": 3 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2927238, + "thread": 25 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 2996836, + "thread": 17 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 3274053, + "thread": 16 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 3335934, + "thread": 18 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 3490162, + "thread": 9 + } + }, + { + "amount": "52.521256470", + "slot": { + "period": 3755843, + "thread": 8 + } + }, + { + "amount": "52.521256475", + "slot": { + "period": 3814174, + "thread": 12 + } + } + ], + "AU1A9D8oCcmpy8y5jEJN2NFgrvbdN3FZa3tg31hBT6Z4kGhqQnbt": [ + { + "amount": "140.092844539", + "slot": { + "period": 165908, + "thread": 12 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 240023, + "thread": 7 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 487462, + "thread": 7 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 640698, + "thread": 6 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 665281, + "thread": 24 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 940500, + "thread": 23 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 997809, + "thread": 6 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 1174361, + "thread": 25 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 1436633, + "thread": 18 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 1523926, + "thread": 11 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 1688949, + "thread": 6 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 1922613, + "thread": 26 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2123744, + "thread": 3 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2181595, + "thread": 7 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2435470, + "thread": 22 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2489868, + "thread": 16 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2648856, + "thread": 2 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 2921142, + "thread": 7 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 3096940, + "thread": 13 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 3264925, + "thread": 26 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 3435229, + "thread": 13 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 3558999, + "thread": 19 + } + }, + { + "amount": "140.092844539", + "slot": { + "period": 3636054, + "thread": 26 + } + }, + { + "amount": "140.092844546", + "slot": { + "period": 3817838, + "thread": 3 + } + } + ], + "AU1A9bmtihgGuP3RdJY9KotfXyDpVFLFkLMJCL4Q1p2AjY2UKn6c": [ + { + "amount": "143.035837632", + "slot": { + "period": 27226, + "thread": 27 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 233609, + "thread": 17 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 327426, + "thread": 22 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 541321, + "thread": 26 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 661189, + "thread": 0 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 903046, + "thread": 24 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1062839, + "thread": 22 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1152125, + "thread": 23 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1371220, + "thread": 0 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1645251, + "thread": 18 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1803382, + "thread": 9 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1915997, + "thread": 31 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 1982762, + "thread": 14 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 2245660, + "thread": 15 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 2372928, + "thread": 3 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 2540470, + "thread": 24 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 2758834, + "thread": 11 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 2847475, + "thread": 4 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 3079506, + "thread": 10 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 3169942, + "thread": 4 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 3295658, + "thread": 16 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 3575374, + "thread": 28 + } + }, + { + "amount": "143.035837632", + "slot": { + "period": 3694142, + "thread": 25 + } + }, + { + "amount": "143.035837625", + "slot": { + "period": 3811936, + "thread": 21 + } + } + ], + "AU1AAF2FiYMpj9YduioTT64NCHG2ptRgfFnNsUkMk2xgjrkmkD7t": [ + { + "amount": "126.515131549", + "slot": { + "period": 70870, + "thread": 13 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 284788, + "thread": 21 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 440752, + "thread": 3 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 560201, + "thread": 24 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 711043, + "thread": 24 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 884823, + "thread": 2 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1122338, + "thread": 16 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1202365, + "thread": 11 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1384872, + "thread": 27 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1533275, + "thread": 31 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1800931, + "thread": 21 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 1828374, + "thread": 26 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2052532, + "thread": 21 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2189227, + "thread": 12 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2296595, + "thread": 23 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2622413, + "thread": 25 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2777720, + "thread": 27 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 2863206, + "thread": 10 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 3025539, + "thread": 3 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 3192342, + "thread": 19 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 3381396, + "thread": 12 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 3615017, + "thread": 27 + } + }, + { + "amount": "126.515131549", + "slot": { + "period": 3627803, + "thread": 28 + } + }, + { + "amount": "126.515131560", + "slot": { + "period": 3921335, + "thread": 2 + } + } + ], + "AU1AC98CgDbB3LGq2odp5dJ35WBxvzd1q5dxmTiyM4gth4yj5NNP": [ + { + "amount": "72.574957257", + "slot": { + "period": 102615, + "thread": 31 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 297389, + "thread": 21 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 432310, + "thread": 17 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 584697, + "thread": 8 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 762046, + "thread": 24 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 959641, + "thread": 29 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1041703, + "thread": 18 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1313447, + "thread": 31 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1388996, + "thread": 14 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1604805, + "thread": 5 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1715784, + "thread": 0 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 1895179, + "thread": 13 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2060662, + "thread": 18 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2174111, + "thread": 13 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2410942, + "thread": 0 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2566904, + "thread": 12 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2690726, + "thread": 18 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 2889853, + "thread": 10 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 3085175, + "thread": 2 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 3287871, + "thread": 19 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 3378639, + "thread": 4 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 3585309, + "thread": 22 + } + }, + { + "amount": "72.574957257", + "slot": { + "period": 3763518, + "thread": 2 + } + }, + { + "amount": "72.574957262", + "slot": { + "period": 3874471, + "thread": 8 + } + } + ], + "AU1ACDvx1zzawwikWyz7Nt58xepMFTNyL4vmXQ2m48WdEjpRkxfG": [ + { + "amount": "395.682431861", + "slot": { + "period": 36112, + "thread": 12 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 260315, + "thread": 31 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 370124, + "thread": 22 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 594540, + "thread": 18 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 806310, + "thread": 23 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 896842, + "thread": 11 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1112549, + "thread": 23 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1172873, + "thread": 0 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1341134, + "thread": 25 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1604916, + "thread": 13 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1698274, + "thread": 30 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 1854811, + "thread": 9 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2092551, + "thread": 5 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2170805, + "thread": 31 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2412802, + "thread": 19 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2600730, + "thread": 3 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2691054, + "thread": 28 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 2840521, + "thread": 5 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 3061675, + "thread": 22 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 3181003, + "thread": 28 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 3447700, + "thread": 31 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 3612965, + "thread": 19 + } + }, + { + "amount": "395.682431861", + "slot": { + "period": 3644311, + "thread": 1 + } + }, + { + "amount": "395.682431860", + "slot": { + "period": 3869219, + "thread": 14 + } + } + ], + "AU1AE6FMo5DCMAZPzhhsTAEnYHLNSih4WhzfFoEAA4vKDqBkjfVZ": [ + { + "amount": "59.318634174", + "slot": { + "period": 101650, + "thread": 20 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 187780, + "thread": 5 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 334460, + "thread": 20 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 616718, + "thread": 1 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 694767, + "thread": 12 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 916799, + "thread": 22 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1100100, + "thread": 6 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1165135, + "thread": 8 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1457770, + "thread": 19 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1582493, + "thread": 14 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1702350, + "thread": 25 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 1901018, + "thread": 28 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2099260, + "thread": 10 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2178323, + "thread": 7 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2301434, + "thread": 11 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2545205, + "thread": 18 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2779387, + "thread": 0 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 2927808, + "thread": 2 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 3014584, + "thread": 12 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 3245314, + "thread": 31 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 3408651, + "thread": 20 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 3526736, + "thread": 9 + } + }, + { + "amount": "59.318634174", + "slot": { + "period": 3739293, + "thread": 25 + } + }, + { + "amount": "59.318634178", + "slot": { + "period": 3901478, + "thread": 11 + } + } + ], + "AU1AFgbfNZLUKX8SRDxz18UDA98K1vciCrpMFp6rFHCPqPAPq6U9": [ + { + "amount": "653.721440761", + "slot": { + "period": 52055, + "thread": 23 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 316530, + "thread": 30 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 423820, + "thread": 9 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 594068, + "thread": 10 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 806074, + "thread": 26 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 978177, + "thread": 2 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1142614, + "thread": 4 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1271447, + "thread": 17 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1457459, + "thread": 2 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1496934, + "thread": 12 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1729740, + "thread": 12 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 1892961, + "thread": 31 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2013824, + "thread": 27 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2178717, + "thread": 21 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2366563, + "thread": 29 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2614713, + "thread": 20 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2787961, + "thread": 27 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 2909825, + "thread": 0 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 3052220, + "thread": 13 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 3216942, + "thread": 11 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 3406898, + "thread": 4 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 3609024, + "thread": 8 + } + }, + { + "amount": "653.721440761", + "slot": { + "period": 3749284, + "thread": 5 + } + }, + { + "amount": "653.721440758", + "slot": { + "period": 3792263, + "thread": 21 + } + } + ], + "AU1AFpmcp18ZtvZp3FLYtDbmNXq37iRoCzonCkfponHKDTux6KxL": [ + { + "amount": "438.268497931", + "slot": { + "period": 49461, + "thread": 22 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 298228, + "thread": 6 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 459659, + "thread": 21 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 504266, + "thread": 2 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 665385, + "thread": 26 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 928257, + "thread": 3 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1021649, + "thread": 17 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1228109, + "thread": 6 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1378238, + "thread": 3 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1620179, + "thread": 1 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1727925, + "thread": 22 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 1844021, + "thread": 10 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2130430, + "thread": 4 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2189741, + "thread": 4 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2389005, + "thread": 29 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2530476, + "thread": 26 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2752993, + "thread": 8 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 2927478, + "thread": 29 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 3021942, + "thread": 8 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 3137054, + "thread": 22 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 3384830, + "thread": 8 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 3475286, + "thread": 1 + } + }, + { + "amount": "438.268497931", + "slot": { + "period": 3734041, + "thread": 18 + } + }, + { + "amount": "438.268497938", + "slot": { + "period": 3807998, + "thread": 18 + } + } + ], + "AU1AGXCLxpewVezX65qVpnHocUixsqzopRT62p4Rp1CaetrJmzDs": [ + { + "amount": "584.853748275", + "slot": { + "period": 79441, + "thread": 23 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 192232, + "thread": 29 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 374546, + "thread": 3 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 581767, + "thread": 31 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 763940, + "thread": 1 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 828518, + "thread": 22 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1106657, + "thread": 19 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1237102, + "thread": 30 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1364209, + "thread": 2 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1618665, + "thread": 27 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1787295, + "thread": 4 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 1830011, + "thread": 4 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2112602, + "thread": 13 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2257204, + "thread": 4 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2356146, + "thread": 29 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2491731, + "thread": 14 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2756898, + "thread": 12 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 2792913, + "thread": 4 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 3106044, + "thread": 11 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 3210308, + "thread": 25 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 3330934, + "thread": 28 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 3515936, + "thread": 5 + } + }, + { + "amount": "584.853748275", + "slot": { + "period": 3664012, + "thread": 26 + } + }, + { + "amount": "584.853748276", + "slot": { + "period": 3870398, + "thread": 0 + } + } + ], + "AU1AGqkC4oVUuRBuzbhHMUwLXLbdKuCnxnyvqR4TVaSpRXfWUKDR": [ + { + "amount": "613.254174095", + "slot": { + "period": 15897, + "thread": 20 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 190671, + "thread": 26 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 464654, + "thread": 0 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 558648, + "thread": 14 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 745715, + "thread": 28 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 943761, + "thread": 7 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1021654, + "thread": 6 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1244809, + "thread": 1 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1403559, + "thread": 10 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1598714, + "thread": 27 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1762367, + "thread": 24 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 1832895, + "thread": 16 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2023655, + "thread": 0 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2160456, + "thread": 4 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2453236, + "thread": 27 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2505651, + "thread": 2 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2739117, + "thread": 19 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 2864094, + "thread": 11 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 3052896, + "thread": 16 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 3206265, + "thread": 7 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 3415445, + "thread": 31 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 3584289, + "thread": 10 + } + }, + { + "amount": "613.254174095", + "slot": { + "period": 3621027, + "thread": 13 + } + }, + { + "amount": "613.254174104", + "slot": { + "period": 3855297, + "thread": 1 + } + } + ], + "AU1AJ8rrkNN7Xd4G7wy6iLNYrYEqhP3v1owhj2Arxn5uL5GrLtmF": [ + { + "amount": "108.083856267", + "slot": { + "period": 85462, + "thread": 5 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 167512, + "thread": 3 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 325247, + "thread": 2 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 612859, + "thread": 27 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 676686, + "thread": 0 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 867257, + "thread": 0 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1064825, + "thread": 23 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1227436, + "thread": 0 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1322468, + "thread": 17 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1619001, + "thread": 17 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1665496, + "thread": 2 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 1970342, + "thread": 31 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2122125, + "thread": 10 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2273261, + "thread": 4 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2385263, + "thread": 29 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2584880, + "thread": 20 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2786093, + "thread": 25 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2813940, + "thread": 26 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 2961087, + "thread": 15 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 3129332, + "thread": 1 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 3428689, + "thread": 5 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 3482618, + "thread": 24 + } + }, + { + "amount": "108.083856267", + "slot": { + "period": 3771821, + "thread": 21 + } + }, + { + "amount": "108.083856261", + "slot": { + "period": 3908921, + "thread": 1 + } + } + ], + "AU1AJnCkJxYs7JQQW6V9dC1ps8pdxCxbUmNGBtPWuzixAumcZpXd": [ + { + "amount": "175.285340205", + "slot": { + "period": 23607, + "thread": 12 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 302937, + "thread": 11 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 342809, + "thread": 22 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 569198, + "thread": 6 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 798162, + "thread": 5 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 966888, + "thread": 27 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1133074, + "thread": 25 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1237655, + "thread": 22 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1388078, + "thread": 26 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1623411, + "thread": 28 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1704396, + "thread": 11 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 1933460, + "thread": 18 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2115285, + "thread": 2 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2144811, + "thread": 23 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2459936, + "thread": 7 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2613651, + "thread": 18 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2729636, + "thread": 12 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 2930728, + "thread": 16 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 3089626, + "thread": 19 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 3193828, + "thread": 29 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 3393125, + "thread": 0 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 3566659, + "thread": 28 + } + }, + { + "amount": "175.285340205", + "slot": { + "period": 3675677, + "thread": 4 + } + }, + { + "amount": "175.285340215", + "slot": { + "period": 3869533, + "thread": 30 + } + } + ], + "AU1AMQ2s7UKDk9GXphkfQr7yEMF3RggeL4jKBo4Y8N4PtuRdnXNx": [ + { + "amount": "108.204212358", + "slot": { + "period": 112855, + "thread": 5 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 299824, + "thread": 21 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 481680, + "thread": 30 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 591652, + "thread": 5 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 753301, + "thread": 11 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 853220, + "thread": 20 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1102774, + "thread": 3 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1221488, + "thread": 23 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1366683, + "thread": 1 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1543687, + "thread": 0 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1702391, + "thread": 19 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 1919550, + "thread": 14 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2122008, + "thread": 23 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2159799, + "thread": 28 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2309256, + "thread": 0 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2565706, + "thread": 31 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2655243, + "thread": 8 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2803683, + "thread": 17 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 2966043, + "thread": 10 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 3124940, + "thread": 26 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 3424872, + "thread": 19 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 3555662, + "thread": 15 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 3658636, + "thread": 3 + } + }, + { + "amount": "108.204212358", + "slot": { + "period": 3921154, + "thread": 28 + } + } + ], + "AU1AMrBWW6KS1hKMsNWGrFWM3R7kEtCdNsXsSPDLfT4u6xpMpPPz": [ + { + "amount": "234.897363903", + "slot": { + "period": 68293, + "thread": 19 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 318609, + "thread": 2 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 356194, + "thread": 5 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 564372, + "thread": 30 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 745387, + "thread": 30 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 864013, + "thread": 11 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1001946, + "thread": 4 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1253424, + "thread": 11 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1375382, + "thread": 13 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1632387, + "thread": 15 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1709897, + "thread": 15 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 1888720, + "thread": 18 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2112922, + "thread": 21 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2260120, + "thread": 26 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2380783, + "thread": 28 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2516095, + "thread": 7 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2718051, + "thread": 16 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2887816, + "thread": 0 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 2967415, + "thread": 18 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 3160633, + "thread": 6 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 3331943, + "thread": 21 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 3505850, + "thread": 4 + } + }, + { + "amount": "234.897363903", + "slot": { + "period": 3668167, + "thread": 21 + } + }, + { + "amount": "234.897363893", + "slot": { + "period": 3808555, + "thread": 21 + } + } + ], + "AU1AMuSxik3F9Fukr3aW68bRBnpsN9FJSmsDDLaw9qZcmNC4qHL4": [ + { + "amount": "60.497088205", + "slot": { + "period": 111862, + "thread": 4 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 266424, + "thread": 29 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 449860, + "thread": 13 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 501757, + "thread": 14 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 685372, + "thread": 2 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 890147, + "thread": 0 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1049302, + "thread": 21 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1247695, + "thread": 18 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1404877, + "thread": 24 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1548842, + "thread": 17 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1804391, + "thread": 25 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 1900256, + "thread": 15 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2054374, + "thread": 26 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2175940, + "thread": 26 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2377046, + "thread": 3 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2595536, + "thread": 27 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2750116, + "thread": 24 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2854406, + "thread": 27 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 2956741, + "thread": 10 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 3177320, + "thread": 7 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 3444140, + "thread": 15 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 3570070, + "thread": 14 + } + }, + { + "amount": "60.497088205", + "slot": { + "period": 3753975, + "thread": 19 + } + }, + { + "amount": "60.497088214", + "slot": { + "period": 3825371, + "thread": 8 + } + } + ], + "AU1AN3eVz1PMFm3xGvgUdNKDKBCufnwAuPC6Bk5PpYvzaQCsizjN": [ + { + "amount": "259.730519201", + "slot": { + "period": 26144, + "thread": 31 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 238360, + "thread": 30 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 366272, + "thread": 4 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 625451, + "thread": 25 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 749618, + "thread": 12 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 845859, + "thread": 19 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1127116, + "thread": 10 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1222389, + "thread": 2 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1458951, + "thread": 17 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1637251, + "thread": 5 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1776158, + "thread": 16 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 1812005, + "thread": 18 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2085054, + "thread": 23 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2221879, + "thread": 1 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2348235, + "thread": 7 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2576626, + "thread": 21 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2789176, + "thread": 24 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 2824724, + "thread": 19 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 3002144, + "thread": 17 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 3244636, + "thread": 12 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 3344351, + "thread": 25 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 3593980, + "thread": 9 + } + }, + { + "amount": "259.730519201", + "slot": { + "period": 3647766, + "thread": 14 + } + }, + { + "amount": "259.730519203", + "slot": { + "period": 3929810, + "thread": 30 + } + } + ], + "AU1ANLxkU98eUNM4yiF9DW2BW1oTBy5szBr8LdWVVLbtYJ4xTeSz": [ + { + "amount": "307.502066545", + "slot": { + "period": 32147, + "thread": 3 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 181833, + "thread": 10 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 469435, + "thread": 20 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 507375, + "thread": 3 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 801011, + "thread": 19 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 949012, + "thread": 20 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 990484, + "thread": 19 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 1280069, + "thread": 21 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 1436012, + "thread": 16 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 1516648, + "thread": 18 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 1657310, + "thread": 28 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 1927366, + "thread": 0 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2039011, + "thread": 14 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2180904, + "thread": 4 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2364071, + "thread": 2 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2600332, + "thread": 26 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2643474, + "thread": 1 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 2837572, + "thread": 29 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 3011979, + "thread": 0 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 3144064, + "thread": 20 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 3335057, + "thread": 6 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 3488753, + "thread": 7 + } + }, + { + "amount": "307.502066545", + "slot": { + "period": 3710498, + "thread": 2 + } + }, + { + "amount": "307.502066550", + "slot": { + "period": 3892448, + "thread": 29 + } + } + ], + "AU1ANeUepyBuwpLeXfV6Cd5SyodfbMWdKpve7QTrnAU1qqVSRUg7": [ + { + "amount": "357.990820142", + "slot": { + "period": 66209, + "thread": 6 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 227950, + "thread": 19 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 438624, + "thread": 23 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 512716, + "thread": 28 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 718511, + "thread": 23 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 846899, + "thread": 0 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1007674, + "thread": 15 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1316869, + "thread": 5 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1444927, + "thread": 20 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1551077, + "thread": 1 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1762862, + "thread": 13 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 1878768, + "thread": 8 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2074742, + "thread": 5 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2160571, + "thread": 21 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2423801, + "thread": 20 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2479854, + "thread": 28 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2773613, + "thread": 22 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 2826333, + "thread": 22 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 3041774, + "thread": 30 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 3191805, + "thread": 4 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 3401471, + "thread": 23 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 3502865, + "thread": 11 + } + }, + { + "amount": "357.990820142", + "slot": { + "period": 3760956, + "thread": 5 + } + }, + { + "amount": "357.990820130", + "slot": { + "period": 3783704, + "thread": 23 + } + } + ], + "AU1ANewtP2FgdP4KKhWLJqdCvQwe6KYMRm4np6xLJzS69364BxYa": [ + { + "amount": "129.095791523", + "slot": { + "period": 15560, + "thread": 4 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 244767, + "thread": 30 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 330899, + "thread": 2 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 578525, + "thread": 21 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 674536, + "thread": 12 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 943353, + "thread": 28 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1040847, + "thread": 9 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1151110, + "thread": 25 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1320797, + "thread": 17 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1554908, + "thread": 14 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1703738, + "thread": 28 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 1923748, + "thread": 21 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2058173, + "thread": 16 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2179960, + "thread": 9 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2345608, + "thread": 8 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2516556, + "thread": 22 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2704169, + "thread": 26 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 2821148, + "thread": 26 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 3031923, + "thread": 14 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 3167224, + "thread": 24 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 3327714, + "thread": 28 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 3495682, + "thread": 25 + } + }, + { + "amount": "129.095791523", + "slot": { + "period": 3627582, + "thread": 15 + } + }, + { + "amount": "129.095791516", + "slot": { + "period": 3820247, + "thread": 17 + } + } + ], + "AU1ANt7cWyfJJrepuZuwMBKYx56jxPp4xa4NJKvFaXJPk4eqnCJt": [ + { + "amount": "357.977246446", + "slot": { + "period": 17255, + "thread": 28 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 258384, + "thread": 25 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 463137, + "thread": 26 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 509822, + "thread": 0 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 789788, + "thread": 22 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 877884, + "thread": 25 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1143454, + "thread": 11 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1226000, + "thread": 17 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1403473, + "thread": 20 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1571310, + "thread": 13 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1661430, + "thread": 5 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 1972867, + "thread": 11 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2060885, + "thread": 16 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2188748, + "thread": 14 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2311404, + "thread": 8 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2488348, + "thread": 21 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2717328, + "thread": 24 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 2952088, + "thread": 24 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 3070793, + "thread": 15 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 3172542, + "thread": 7 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 3354545, + "thread": 13 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 3595352, + "thread": 18 + } + }, + { + "amount": "357.977246446", + "slot": { + "period": 3643071, + "thread": 22 + } + }, + { + "amount": "357.977246451", + "slot": { + "period": 3897369, + "thread": 31 + } + } + ], + "AU1ANt97UtWVmVw4wLAx1gsMi71duPVfWx7ZLFWGGKjB911Swfnw": [ + { + "amount": "108.201714035", + "slot": { + "period": 105483, + "thread": 16 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 311277, + "thread": 22 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 386554, + "thread": 9 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 508149, + "thread": 25 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 663000, + "thread": 29 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 924751, + "thread": 25 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1145197, + "thread": 11 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1314159, + "thread": 7 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1477282, + "thread": 12 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1523268, + "thread": 15 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1747263, + "thread": 24 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 1956339, + "thread": 20 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2036009, + "thread": 27 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2184667, + "thread": 6 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2397076, + "thread": 0 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2572756, + "thread": 7 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2628433, + "thread": 12 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2886638, + "thread": 21 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 2956353, + "thread": 6 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 3131552, + "thread": 8 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 3387080, + "thread": 31 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 3613615, + "thread": 17 + } + }, + { + "amount": "108.201714035", + "slot": { + "period": 3618931, + "thread": 26 + } + }, + { + "amount": "108.201714045", + "slot": { + "period": 3875409, + "thread": 8 + } + } + ], + "AU1APGwJb9jHtVgiaoeuritgchggZghyzQ3682YaZE82zLAPeXzD": [ + { + "amount": "152.791542072", + "slot": { + "period": 60303, + "thread": 4 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 289503, + "thread": 29 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 397322, + "thread": 26 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 529072, + "thread": 24 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 680685, + "thread": 21 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 878340, + "thread": 17 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 998260, + "thread": 29 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 1164180, + "thread": 14 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 1404353, + "thread": 20 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 1556022, + "thread": 0 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 1749233, + "thread": 6 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 1913928, + "thread": 26 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2014804, + "thread": 6 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2149861, + "thread": 11 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2336524, + "thread": 30 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2583802, + "thread": 9 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2735118, + "thread": 16 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 2847776, + "thread": 8 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 3087910, + "thread": 20 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 3268628, + "thread": 15 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 3441290, + "thread": 4 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 3550972, + "thread": 27 + } + }, + { + "amount": "152.791542072", + "slot": { + "period": 3673627, + "thread": 3 + } + }, + { + "amount": "152.791542082", + "slot": { + "period": 3819004, + "thread": 14 + } + } + ], + "AU1APPqHi1YjCtZCTjWvzTVWLy5jqjc9g2BqCy3NvNw7kA7gTMZD": [ + { + "amount": "547.880579463", + "slot": { + "period": 136257, + "thread": 19 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 211612, + "thread": 11 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 333909, + "thread": 23 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 584374, + "thread": 8 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 719129, + "thread": 19 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 958903, + "thread": 31 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1058526, + "thread": 11 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1153888, + "thread": 25 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1454518, + "thread": 12 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1548885, + "thread": 17 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1714510, + "thread": 10 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 1846850, + "thread": 11 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2012779, + "thread": 18 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2258217, + "thread": 27 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2373340, + "thread": 19 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2541210, + "thread": 1 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2641473, + "thread": 8 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2800009, + "thread": 12 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 2955007, + "thread": 13 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 3174494, + "thread": 8 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 3449803, + "thread": 5 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 3451175, + "thread": 14 + } + }, + { + "amount": "547.880579463", + "slot": { + "period": 3664160, + "thread": 27 + } + }, + { + "amount": "547.880579462", + "slot": { + "period": 3785026, + "thread": 22 + } + } + ], + "AU1APwzNhb5UY9BhLA2Ue8fW7jCkcbCLr5v8gB1aGBB5BFcWfPjr": [ + { + "amount": "142.452620248", + "slot": { + "period": 136591, + "thread": 9 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 279367, + "thread": 26 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 468365, + "thread": 28 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 595633, + "thread": 20 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 746474, + "thread": 30 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 969522, + "thread": 23 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1137807, + "thread": 9 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1225094, + "thread": 7 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1411439, + "thread": 21 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1619972, + "thread": 8 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1777185, + "thread": 2 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 1954888, + "thread": 21 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2143129, + "thread": 13 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2192254, + "thread": 5 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2302929, + "thread": 24 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2506697, + "thread": 20 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2780278, + "thread": 27 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 2848322, + "thread": 8 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 3041148, + "thread": 7 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 3238019, + "thread": 30 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 3394762, + "thread": 5 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 3549700, + "thread": 21 + } + }, + { + "amount": "142.452620248", + "slot": { + "period": 3744632, + "thread": 15 + } + }, + { + "amount": "142.452620258", + "slot": { + "period": 3883319, + "thread": 24 + } + } + ], + "AU1AQBkatSfhoDYSQRZJtKbNtTJUDFofoffsJbWSVdcNod6rzfdj": [ + { + "amount": "261.774056519", + "slot": { + "period": 124842, + "thread": 6 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 216937, + "thread": 16 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 349623, + "thread": 26 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 564744, + "thread": 22 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 749090, + "thread": 27 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 894273, + "thread": 2 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1072630, + "thread": 22 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1251120, + "thread": 23 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1449573, + "thread": 2 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1534626, + "thread": 16 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1805290, + "thread": 26 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1972594, + "thread": 13 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 1986701, + "thread": 19 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 2291507, + "thread": 16 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 2396760, + "thread": 20 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 2591104, + "thread": 25 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 2724541, + "thread": 0 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 2846172, + "thread": 9 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 3094899, + "thread": 3 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 3186483, + "thread": 1 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 3436827, + "thread": 29 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 3522629, + "thread": 10 + } + }, + { + "amount": "261.774056519", + "slot": { + "period": 3716844, + "thread": 10 + } + }, + { + "amount": "261.774056525", + "slot": { + "period": 3837907, + "thread": 15 + } + } + ], + "AU1AQKBXyVEtGmaNMkCkE3gqBun1shxVGKQBPQwpR7QGWbnpDtu8": [ + { + "amount": "142.826564356", + "slot": { + "period": 103783, + "thread": 31 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 180531, + "thread": 18 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 400351, + "thread": 14 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 500960, + "thread": 14 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 703714, + "thread": 19 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 920049, + "thread": 1 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1007898, + "thread": 25 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1275162, + "thread": 8 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1461188, + "thread": 24 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1593221, + "thread": 6 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1766999, + "thread": 18 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 1868502, + "thread": 3 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2122305, + "thread": 8 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2288459, + "thread": 14 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2338710, + "thread": 29 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2504598, + "thread": 23 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2696451, + "thread": 11 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 2884169, + "thread": 20 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 3096964, + "thread": 21 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 3141038, + "thread": 24 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 3374644, + "thread": 20 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 3612553, + "thread": 29 + } + }, + { + "amount": "142.826564356", + "slot": { + "period": 3704045, + "thread": 13 + } + }, + { + "amount": "142.826564361", + "slot": { + "period": 3941700, + "thread": 9 + } + } + ], + "AU1ARsVwfuhMeL3m7WWn99f8Ta3qM4GyQVNMvUpiBAFptWkg5VJw": [ + { + "amount": "191.570213638", + "slot": { + "period": 30416, + "thread": 18 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 170193, + "thread": 8 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 476898, + "thread": 16 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 520087, + "thread": 18 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 788447, + "thread": 11 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 900164, + "thread": 23 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1120423, + "thread": 2 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1213791, + "thread": 2 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1323558, + "thread": 28 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1616185, + "thread": 18 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1735828, + "thread": 16 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 1814074, + "thread": 30 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2034186, + "thread": 18 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2231302, + "thread": 9 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2326013, + "thread": 25 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2540235, + "thread": 15 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2787133, + "thread": 26 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 2860989, + "thread": 23 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 3016811, + "thread": 12 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 3240893, + "thread": 1 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 3290466, + "thread": 6 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 3463611, + "thread": 18 + } + }, + { + "amount": "191.570213638", + "slot": { + "period": 3695808, + "thread": 15 + } + }, + { + "amount": "191.570213650", + "slot": { + "period": 3891635, + "thread": 28 + } + } + ], + "AU1ASV7nJXfZXe6n9vggyDW4Sjaq67REAuKGnYNnVuy1W5HKpsq1": [ + { + "amount": "62.805001342", + "slot": { + "period": 63152, + "thread": 31 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 283591, + "thread": 8 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 346910, + "thread": 27 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 561114, + "thread": 8 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 764226, + "thread": 31 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 965942, + "thread": 21 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1122582, + "thread": 15 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1317390, + "thread": 31 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1438248, + "thread": 29 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1592912, + "thread": 9 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1649186, + "thread": 18 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1877008, + "thread": 13 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 1984709, + "thread": 22 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 2204763, + "thread": 28 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 2438869, + "thread": 16 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 2521947, + "thread": 14 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 2665978, + "thread": 25 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 2895625, + "thread": 0 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 3022717, + "thread": 15 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 3123301, + "thread": 2 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 3309909, + "thread": 20 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 3523622, + "thread": 20 + } + }, + { + "amount": "62.805001342", + "slot": { + "period": 3719372, + "thread": 3 + } + }, + { + "amount": "62.805001343", + "slot": { + "period": 3887968, + "thread": 26 + } + } + ], + "AU1ASi1rV3GRXHSNMhYunUx2zh18ATuutGfdNVDdH6kufyboZ3g3": [ + { + "amount": "145.060803902", + "slot": { + "period": 21971, + "thread": 10 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 314453, + "thread": 14 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 344286, + "thread": 0 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 593550, + "thread": 15 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 702747, + "thread": 4 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 949972, + "thread": 27 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 985610, + "thread": 19 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 1243249, + "thread": 28 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 1419353, + "thread": 10 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 1503903, + "thread": 19 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 1656810, + "thread": 7 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 1842390, + "thread": 0 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2015826, + "thread": 22 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2167861, + "thread": 4 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2444089, + "thread": 14 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2620778, + "thread": 3 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2714571, + "thread": 31 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 2924221, + "thread": 24 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 3074390, + "thread": 7 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 3187809, + "thread": 17 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 3320004, + "thread": 11 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 3502724, + "thread": 2 + } + }, + { + "amount": "145.060803902", + "slot": { + "period": 3633598, + "thread": 1 + } + }, + { + "amount": "145.060803910", + "slot": { + "period": 3915989, + "thread": 13 + } + } + ], + "AU1AT8yVoVJ9Y7c1iu3iQHkdVZQqjmVwdomt7rEF4AUghxgqaTCW": [ + { + "amount": "254.502331847", + "slot": { + "period": 77723, + "thread": 10 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 303967, + "thread": 14 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 336729, + "thread": 9 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 563565, + "thread": 16 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 766770, + "thread": 25 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 834660, + "thread": 22 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1075790, + "thread": 30 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1161923, + "thread": 2 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1398387, + "thread": 11 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1546734, + "thread": 25 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1686073, + "thread": 4 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1878480, + "thread": 12 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 1998142, + "thread": 13 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 2222716, + "thread": 24 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 2329216, + "thread": 19 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 2484837, + "thread": 30 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 2652613, + "thread": 27 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 2793625, + "thread": 7 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 3088784, + "thread": 1 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 3200097, + "thread": 9 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 3352547, + "thread": 10 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 3535751, + "thread": 19 + } + }, + { + "amount": "254.502331847", + "slot": { + "period": 3738218, + "thread": 22 + } + }, + { + "amount": "254.502331837", + "slot": { + "period": 3803685, + "thread": 17 + } + } + ], + "AU1ATTERwM5rrv2RJdFzDbw4r8NM1ddEmc98ZD31VKC5WCgYUiPL": [ + { + "amount": "56.881895725", + "slot": { + "period": 54735, + "thread": 1 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 275999, + "thread": 31 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 459333, + "thread": 15 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 499263, + "thread": 26 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 777452, + "thread": 13 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 870093, + "thread": 24 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1047267, + "thread": 18 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1286934, + "thread": 0 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1351920, + "thread": 21 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1564850, + "thread": 6 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1758632, + "thread": 31 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 1901542, + "thread": 15 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2057369, + "thread": 14 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2272037, + "thread": 4 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2417513, + "thread": 25 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2612126, + "thread": 19 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2689002, + "thread": 19 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 2852873, + "thread": 21 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 3082959, + "thread": 17 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 3263258, + "thread": 23 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 3289108, + "thread": 1 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 3606045, + "thread": 6 + } + }, + { + "amount": "56.881895725", + "slot": { + "period": 3618909, + "thread": 28 + } + }, + { + "amount": "56.881895714", + "slot": { + "period": 3848125, + "thread": 9 + } + } + ], + "AU1AUX7apREFQD75cYJo2DsKA8wTkFpg3uU499LoB3XecU3XWcDK": [ + { + "amount": "78.594964497", + "slot": { + "period": 158443, + "thread": 23 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 272130, + "thread": 21 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 485879, + "thread": 28 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 535315, + "thread": 14 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 752775, + "thread": 11 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 834412, + "thread": 9 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1094288, + "thread": 24 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1293470, + "thread": 0 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1373564, + "thread": 12 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1523514, + "thread": 0 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1801460, + "thread": 17 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 1945561, + "thread": 26 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2070279, + "thread": 14 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2217887, + "thread": 23 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2428359, + "thread": 21 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2504470, + "thread": 6 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2736715, + "thread": 19 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2825420, + "thread": 27 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 2987213, + "thread": 20 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 3146413, + "thread": 29 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 3439545, + "thread": 11 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 3592720, + "thread": 24 + } + }, + { + "amount": "78.594964497", + "slot": { + "period": 3685453, + "thread": 24 + } + }, + { + "amount": "78.594964487", + "slot": { + "period": 3848750, + "thread": 18 + } + } + ], + "AU1AUoe4uVM1aP4gjAb333xN56oVzbW5UQsbiL7pbCqr3xP8KGkq": [ + { + "amount": "54.487001059", + "slot": { + "period": 129903, + "thread": 6 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 183015, + "thread": 28 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 373102, + "thread": 17 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 574058, + "thread": 5 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 794728, + "thread": 3 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 952798, + "thread": 13 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1021669, + "thread": 30 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1315076, + "thread": 30 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1364950, + "thread": 16 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1523416, + "thread": 4 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1702088, + "thread": 16 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 1870228, + "thread": 1 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2088323, + "thread": 17 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2277761, + "thread": 15 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2438387, + "thread": 13 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2566968, + "thread": 8 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2784118, + "thread": 5 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 2937629, + "thread": 28 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 3048423, + "thread": 3 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 3167319, + "thread": 23 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 3367601, + "thread": 5 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 3583028, + "thread": 1 + } + }, + { + "amount": "54.487001059", + "slot": { + "period": 3767137, + "thread": 22 + } + }, + { + "amount": "54.487001064", + "slot": { + "period": 3924722, + "thread": 19 + } + } + ], + "AU1AV3K4v4i682vusuo8TPMK9N4kQEtor18EXShtX6U8r1DvqAtJ": [ + { + "amount": "135.721813018", + "slot": { + "period": 126687, + "thread": 12 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 257092, + "thread": 24 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 327754, + "thread": 14 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 551476, + "thread": 21 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 657943, + "thread": 14 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 935409, + "thread": 24 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1070923, + "thread": 17 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1233075, + "thread": 2 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1387797, + "thread": 29 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1563040, + "thread": 23 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1745324, + "thread": 2 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 1857829, + "thread": 16 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2142959, + "thread": 4 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2222709, + "thread": 30 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2335773, + "thread": 5 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2548483, + "thread": 23 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2703290, + "thread": 19 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 2831420, + "thread": 26 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 3047316, + "thread": 3 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 3158758, + "thread": 27 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 3346241, + "thread": 20 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 3609253, + "thread": 19 + } + }, + { + "amount": "135.721813018", + "slot": { + "period": 3730564, + "thread": 7 + } + }, + { + "amount": "135.721813009", + "slot": { + "period": 3849869, + "thread": 1 + } + } + ], + "AU1AV44wZm3Svo1QLM7nP1BTnxNc8M8oo3NqSeJDVRTJNhXuh7qu": [ + { + "amount": "133.695763290", + "slot": { + "period": 132430, + "thread": 17 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 278315, + "thread": 12 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 345552, + "thread": 19 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 604698, + "thread": 20 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 764483, + "thread": 13 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 844808, + "thread": 22 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1076766, + "thread": 14 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1199239, + "thread": 21 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1420936, + "thread": 28 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1515379, + "thread": 9 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1710519, + "thread": 3 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 1925794, + "thread": 2 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2093820, + "thread": 0 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2146504, + "thread": 17 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2295239, + "thread": 7 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2506112, + "thread": 14 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2627731, + "thread": 1 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 2911353, + "thread": 10 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 3057935, + "thread": 18 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 3210347, + "thread": 2 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 3357802, + "thread": 3 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 3468860, + "thread": 15 + } + }, + { + "amount": "133.695763290", + "slot": { + "period": 3692931, + "thread": 18 + } + }, + { + "amount": "133.695763293", + "slot": { + "period": 3780880, + "thread": 13 + } + } + ], + "AU1AVFfA6BjRwvgxyHqPYN58WCiUDUP7p9FTwcEvHYMjNGzGJrmz": [ + { + "amount": "232.526153685", + "slot": { + "period": 121723, + "thread": 8 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 249725, + "thread": 31 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 453150, + "thread": 28 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 512846, + "thread": 27 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 803246, + "thread": 9 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 834861, + "thread": 0 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1045791, + "thread": 21 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1285051, + "thread": 18 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1369880, + "thread": 25 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1576219, + "thread": 8 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1653294, + "thread": 18 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 1864441, + "thread": 29 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2090804, + "thread": 25 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2184734, + "thread": 9 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2392512, + "thread": 10 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2478683, + "thread": 1 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2687894, + "thread": 0 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2881646, + "thread": 2 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 2961811, + "thread": 4 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 3142744, + "thread": 6 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 3402863, + "thread": 0 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 3453419, + "thread": 28 + } + }, + { + "amount": "232.526153685", + "slot": { + "period": 3703690, + "thread": 11 + } + }, + { + "amount": "232.526153688", + "slot": { + "period": 3780324, + "thread": 10 + } + } + ], + "AU1AXENegKHbYjeoKyhqPFFLjG4bC2EU6bTv6xETw14vxygavJsJ": [ + { + "amount": "192.611083503", + "slot": { + "period": 40594, + "thread": 26 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 276069, + "thread": 12 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 403027, + "thread": 13 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 649395, + "thread": 17 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 687389, + "thread": 5 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 918417, + "thread": 20 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1144145, + "thread": 31 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1203020, + "thread": 8 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1345597, + "thread": 0 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1535810, + "thread": 27 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1773237, + "thread": 7 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 1899301, + "thread": 28 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2024423, + "thread": 5 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2251389, + "thread": 4 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2334033, + "thread": 26 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2463149, + "thread": 7 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2673010, + "thread": 31 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 2885265, + "thread": 4 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 3041682, + "thread": 16 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 3218807, + "thread": 1 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 3368373, + "thread": 1 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 3517125, + "thread": 3 + } + }, + { + "amount": "192.611083503", + "slot": { + "period": 3779872, + "thread": 25 + } + }, + { + "amount": "192.611083501", + "slot": { + "period": 3824944, + "thread": 19 + } + } + ], + "AU1AXkkk8K14tiPSPZuSh4drDGbNBAVypbEAyF1KBwiaPxv5JsPP": [ + { + "amount": "78.920389840", + "slot": { + "period": 13435, + "thread": 26 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 210191, + "thread": 16 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 414815, + "thread": 11 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 568923, + "thread": 4 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 801649, + "thread": 16 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 870889, + "thread": 19 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1052586, + "thread": 24 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1289616, + "thread": 31 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1416166, + "thread": 25 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1507063, + "thread": 12 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1768881, + "thread": 18 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 1934097, + "thread": 15 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2008834, + "thread": 21 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2148777, + "thread": 16 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2449955, + "thread": 1 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2492844, + "thread": 3 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2694985, + "thread": 11 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 2874521, + "thread": 7 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 3082972, + "thread": 16 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 3243533, + "thread": 20 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 3400644, + "thread": 18 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 3564666, + "thread": 10 + } + }, + { + "amount": "78.920389840", + "slot": { + "period": 3656381, + "thread": 30 + } + }, + { + "amount": "78.920389834", + "slot": { + "period": 3902470, + "thread": 0 + } + } + ], + "AU1AYPPKZNm3CrUPZ1mvwDCVCh7m7MQGSfFvraVm4PzPgWaqCKmm": [ + { + "amount": "323.946073946", + "slot": { + "period": 13725, + "thread": 3 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 298109, + "thread": 3 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 370808, + "thread": 20 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 626481, + "thread": 11 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 712949, + "thread": 5 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 862364, + "thread": 2 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1141627, + "thread": 31 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1193388, + "thread": 28 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1472000, + "thread": 26 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1515693, + "thread": 0 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1655264, + "thread": 23 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 1828037, + "thread": 29 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2101616, + "thread": 5 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2284983, + "thread": 23 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2417475, + "thread": 11 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2514702, + "thread": 10 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2760014, + "thread": 10 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 2807723, + "thread": 19 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 3033601, + "thread": 29 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 3233299, + "thread": 13 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 3315323, + "thread": 0 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 3581853, + "thread": 24 + } + }, + { + "amount": "323.946073946", + "slot": { + "period": 3750569, + "thread": 29 + } + }, + { + "amount": "323.946073953", + "slot": { + "period": 3928025, + "thread": 29 + } + } + ], + "AU1AZWKBQpWZrHGWavmW2Wf6sxDTbojYwrNqaWnLauUc56iXy31E": [ + { + "amount": "196.926913609", + "slot": { + "period": 99628, + "thread": 8 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 230224, + "thread": 30 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 353022, + "thread": 19 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 505956, + "thread": 11 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 675834, + "thread": 14 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 977901, + "thread": 28 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1082236, + "thread": 8 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1253953, + "thread": 21 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1446659, + "thread": 25 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1607192, + "thread": 18 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1712498, + "thread": 3 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 1862930, + "thread": 16 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2032894, + "thread": 12 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2179728, + "thread": 13 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2426677, + "thread": 23 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2488021, + "thread": 1 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2717831, + "thread": 19 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 2869042, + "thread": 19 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 3021595, + "thread": 27 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 3281655, + "thread": 13 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 3341859, + "thread": 24 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 3534888, + "thread": 25 + } + }, + { + "amount": "196.926913609", + "slot": { + "period": 3677168, + "thread": 8 + } + }, + { + "amount": "196.926913617", + "slot": { + "period": 3817412, + "thread": 6 + } + } + ], + "AU1AbR7zhttb3ESUH656xje1cVxU5ZSM8qGroQEiZcVvctRxbYc3": [ + { + "amount": "198.168385005", + "slot": { + "period": 39703, + "thread": 28 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 249628, + "thread": 28 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 373272, + "thread": 19 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 602084, + "thread": 0 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 696008, + "thread": 8 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 925057, + "thread": 20 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1094329, + "thread": 4 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1173845, + "thread": 23 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1472487, + "thread": 1 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1612934, + "thread": 24 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1706193, + "thread": 20 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 1881809, + "thread": 23 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2140968, + "thread": 19 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2201462, + "thread": 20 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2449367, + "thread": 27 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2506030, + "thread": 6 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2755848, + "thread": 29 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 2870755, + "thread": 1 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 3046617, + "thread": 1 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 3177456, + "thread": 24 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 3357588, + "thread": 26 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 3547089, + "thread": 3 + } + }, + { + "amount": "198.168385005", + "slot": { + "period": 3658761, + "thread": 31 + } + }, + { + "amount": "198.168385009", + "slot": { + "period": 3843712, + "thread": 9 + } + } + ], + "AU1Ac5whqTCTX91ufoJdJ5J2k2Rp168hDouEJQnTTorgaNPw6urk": [ + { + "amount": "74.190648464", + "slot": { + "period": 73411, + "thread": 30 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 253526, + "thread": 19 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 372413, + "thread": 9 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 513044, + "thread": 25 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 683305, + "thread": 14 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 959999, + "thread": 7 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1046059, + "thread": 20 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1156306, + "thread": 30 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1371719, + "thread": 14 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1484429, + "thread": 20 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1765850, + "thread": 15 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 1842905, + "thread": 27 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2035695, + "thread": 20 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2203005, + "thread": 13 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2359124, + "thread": 0 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2523927, + "thread": 17 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2783169, + "thread": 7 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 2876210, + "thread": 3 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 3033100, + "thread": 16 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 3164240, + "thread": 21 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 3298840, + "thread": 8 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 3478439, + "thread": 28 + } + }, + { + "amount": "74.190648464", + "slot": { + "period": 3633407, + "thread": 7 + } + }, + { + "amount": "74.190648475", + "slot": { + "period": 3833592, + "thread": 25 + } + } + ], + "AU1AcoA9fvBKp4py6vT1Gi6KKfd88S7AUnXtgYxB4fas2UP2YsS8": [ + { + "amount": "129.601541046", + "slot": { + "period": 43240, + "thread": 8 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 214616, + "thread": 30 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 418139, + "thread": 15 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 596656, + "thread": 13 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 746772, + "thread": 1 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 905668, + "thread": 12 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1007025, + "thread": 12 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1165034, + "thread": 2 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1448816, + "thread": 13 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1624622, + "thread": 9 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1772557, + "thread": 31 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 1850238, + "thread": 28 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2000305, + "thread": 29 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2245336, + "thread": 11 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2460386, + "thread": 4 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2549699, + "thread": 4 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2676824, + "thread": 14 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 2892167, + "thread": 27 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 3040287, + "thread": 27 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 3234121, + "thread": 4 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 3347921, + "thread": 9 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 3600527, + "thread": 0 + } + }, + { + "amount": "129.601541046", + "slot": { + "period": 3628760, + "thread": 22 + } + }, + { + "amount": "129.601541039", + "slot": { + "period": 3892812, + "thread": 19 + } + } + ], + "AU1AdDyczzwRyv3r9D5Gd9Kyztag6kuXnYgaPmCM9FNjiQEzC2SY": [ + { + "amount": "88.971783850", + "slot": { + "period": 78417, + "thread": 7 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 175775, + "thread": 14 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 337556, + "thread": 4 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 614017, + "thread": 25 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 746586, + "thread": 14 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 895575, + "thread": 10 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1023693, + "thread": 12 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1203039, + "thread": 7 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1372802, + "thread": 8 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1503099, + "thread": 13 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1666332, + "thread": 15 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 1898470, + "thread": 16 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2109921, + "thread": 10 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2291086, + "thread": 23 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2376492, + "thread": 11 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2591881, + "thread": 16 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2678786, + "thread": 25 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 2827331, + "thread": 19 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 3077616, + "thread": 21 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 3266263, + "thread": 20 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 3422743, + "thread": 2 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 3587837, + "thread": 17 + } + }, + { + "amount": "88.971783850", + "slot": { + "period": 3621067, + "thread": 23 + } + }, + { + "amount": "88.971783845", + "slot": { + "period": 3838439, + "thread": 1 + } + } + ], + "AU1AgC95pQDv2z3n1HCTKuAnRapCx7myiyZDfXoihhuSosCpmpDs": [ + { + "amount": "266.850613942", + "slot": { + "period": 18875, + "thread": 27 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 321250, + "thread": 23 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 385896, + "thread": 19 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 519872, + "thread": 8 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 761826, + "thread": 5 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 908632, + "thread": 15 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1125359, + "thread": 26 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1269048, + "thread": 15 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1362724, + "thread": 25 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1494667, + "thread": 2 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1783278, + "thread": 7 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 1846619, + "thread": 4 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2136331, + "thread": 10 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2152810, + "thread": 2 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2397922, + "thread": 2 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2535506, + "thread": 18 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2761033, + "thread": 23 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 2838599, + "thread": 23 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 3073397, + "thread": 11 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 3257077, + "thread": 30 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 3422142, + "thread": 10 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 3550626, + "thread": 10 + } + }, + { + "amount": "266.850613942", + "slot": { + "period": 3770366, + "thread": 5 + } + }, + { + "amount": "266.850613931", + "slot": { + "period": 3893902, + "thread": 2 + } + } + ], + "AU1AhMvUGF28ZtJbPywCANdPz1KoK1QDFKsQmXXNs9g5r6eMSqB6": [ + { + "amount": "100.170881613", + "slot": { + "period": 122828, + "thread": 12 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 231849, + "thread": 3 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 410028, + "thread": 2 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 608806, + "thread": 30 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 801217, + "thread": 19 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 865501, + "thread": 18 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1141148, + "thread": 6 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1228497, + "thread": 6 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1424272, + "thread": 2 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1543509, + "thread": 20 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1680443, + "thread": 2 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 1871913, + "thread": 13 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2019169, + "thread": 8 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2192620, + "thread": 28 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2378570, + "thread": 18 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2466393, + "thread": 12 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2677797, + "thread": 1 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 2835900, + "thread": 13 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 3064315, + "thread": 26 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 3244982, + "thread": 10 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 3294532, + "thread": 4 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 3610048, + "thread": 3 + } + }, + { + "amount": "100.170881613", + "slot": { + "period": 3651514, + "thread": 9 + } + }, + { + "amount": "100.170881615", + "slot": { + "period": 3932449, + "thread": 17 + } + } + ], + "AU1Ahi77PGdV6WAYMyM5pcLNrQ8G7fHxZhVFsmNG8DdiF6m6A1Qz": [ + { + "amount": "88.848951929", + "slot": { + "period": 98727, + "thread": 10 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 218726, + "thread": 19 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 422551, + "thread": 18 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 650809, + "thread": 0 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 671332, + "thread": 22 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 906171, + "thread": 0 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1052103, + "thread": 27 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1228308, + "thread": 31 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1349282, + "thread": 14 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1567649, + "thread": 9 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1798107, + "thread": 7 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1961837, + "thread": 16 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 1981911, + "thread": 15 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2292845, + "thread": 26 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2412192, + "thread": 11 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2564856, + "thread": 23 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2782797, + "thread": 2 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2835285, + "thread": 30 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 2954465, + "thread": 4 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 3214153, + "thread": 27 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 3445264, + "thread": 5 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 3607725, + "thread": 0 + } + }, + { + "amount": "88.848951929", + "slot": { + "period": 3637809, + "thread": 7 + } + }, + { + "amount": "88.848951939", + "slot": { + "period": 3910800, + "thread": 23 + } + } + ], + "AU1AiNZULxg8Z5AaFWc6itYGKCkibkjpSd3YChq357tLhkUmbZMt": [ + { + "amount": "102.913071471", + "slot": { + "period": 41407, + "thread": 1 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 271037, + "thread": 16 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 420538, + "thread": 31 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 637898, + "thread": 23 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 763302, + "thread": 9 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 951060, + "thread": 24 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1026998, + "thread": 7 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1186256, + "thread": 25 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1460739, + "thread": 2 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1625432, + "thread": 3 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1795605, + "thread": 24 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 1959458, + "thread": 3 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2093269, + "thread": 18 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2223075, + "thread": 5 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2330436, + "thread": 29 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2551671, + "thread": 4 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2646202, + "thread": 5 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 2819664, + "thread": 31 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 3117446, + "thread": 19 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 3150665, + "thread": 7 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 3339364, + "thread": 24 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 3459786, + "thread": 23 + } + }, + { + "amount": "102.913071471", + "slot": { + "period": 3648943, + "thread": 18 + } + }, + { + "amount": "102.913071481", + "slot": { + "period": 3830711, + "thread": 16 + } + } + ], + "AU1AiirGSxLqMJboFkBgnVvB88h4zrnzbUqsWouTHwuveAw3hTWU": [ + { + "amount": "131.486842793", + "slot": { + "period": 90030, + "thread": 11 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 321903, + "thread": 18 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 350885, + "thread": 8 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 628588, + "thread": 6 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 806958, + "thread": 4 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 897529, + "thread": 9 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1031559, + "thread": 14 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1164339, + "thread": 6 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1475755, + "thread": 6 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1527047, + "thread": 19 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1750727, + "thread": 31 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 1893468, + "thread": 8 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2045073, + "thread": 31 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2171472, + "thread": 16 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2384408, + "thread": 24 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2596662, + "thread": 9 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2746930, + "thread": 1 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 2953225, + "thread": 25 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 3055566, + "thread": 26 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 3230279, + "thread": 13 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 3375264, + "thread": 23 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 3589212, + "thread": 26 + } + }, + { + "amount": "131.486842793", + "slot": { + "period": 3639165, + "thread": 24 + } + }, + { + "amount": "131.486842804", + "slot": { + "period": 3820485, + "thread": 1 + } + } + ], + "AU1AjL6ZBxU8ZndHD7pUuzvHrG8C3ZEwK3PdxP4QATQNitPnEK9P": [ + { + "amount": "76.312706825", + "slot": { + "period": 91859, + "thread": 10 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 235870, + "thread": 30 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 325147, + "thread": 27 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 537864, + "thread": 28 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 716374, + "thread": 13 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 934225, + "thread": 25 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1123462, + "thread": 12 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1267291, + "thread": 21 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1404404, + "thread": 21 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1603686, + "thread": 20 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1681254, + "thread": 4 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 1959726, + "thread": 20 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2049448, + "thread": 28 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2156948, + "thread": 3 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2415831, + "thread": 22 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2590867, + "thread": 31 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2674617, + "thread": 0 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 2900364, + "thread": 31 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 3069446, + "thread": 2 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 3178112, + "thread": 31 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 3427014, + "thread": 11 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 3501762, + "thread": 1 + } + }, + { + "amount": "76.312706825", + "slot": { + "period": 3624812, + "thread": 9 + } + }, + { + "amount": "76.312706830", + "slot": { + "period": 3782230, + "thread": 29 + } + } + ], + "AU1AkHgwmPTgvFwHHvQFjksfFXbfGFMWryv4iFRiZVke5xLCe1Wk": [ + { + "amount": "151.255932073", + "slot": { + "period": 31577, + "thread": 0 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 244093, + "thread": 3 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 359213, + "thread": 16 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 571326, + "thread": 11 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 681389, + "thread": 22 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 881211, + "thread": 28 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1110168, + "thread": 27 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1191270, + "thread": 25 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1382693, + "thread": 6 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1543955, + "thread": 8 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1744590, + "thread": 30 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 1904728, + "thread": 1 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2093602, + "thread": 22 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2238743, + "thread": 19 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2436529, + "thread": 1 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2550917, + "thread": 2 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2754918, + "thread": 19 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2831127, + "thread": 29 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 2966853, + "thread": 30 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 3146388, + "thread": 22 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 3397464, + "thread": 3 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 3491079, + "thread": 22 + } + }, + { + "amount": "151.255932073", + "slot": { + "period": 3757577, + "thread": 20 + } + }, + { + "amount": "151.255932081", + "slot": { + "period": 3789946, + "thread": 15 + } + } + ], + "AU1AkNyT5dLUEYMTJE3dCveZ1qrfCJkPujeWZHghAjkQmkVannh4": [ + { + "amount": "149.833851442", + "slot": { + "period": 68280, + "thread": 8 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 305202, + "thread": 25 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 334695, + "thread": 25 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 501218, + "thread": 21 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 818604, + "thread": 19 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 839264, + "thread": 18 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1073337, + "thread": 31 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1237322, + "thread": 8 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1422597, + "thread": 14 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1613214, + "thread": 15 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1708896, + "thread": 10 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 1893445, + "thread": 3 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2000361, + "thread": 3 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2181108, + "thread": 9 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2346720, + "thread": 3 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2533079, + "thread": 25 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2771951, + "thread": 24 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2929710, + "thread": 4 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 2989454, + "thread": 0 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 3265522, + "thread": 14 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 3289735, + "thread": 30 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 3593935, + "thread": 26 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 3740746, + "thread": 0 + } + }, + { + "amount": "149.833851442", + "slot": { + "period": 3913243, + "thread": 4 + } + } + ], + "AU1Akakp1H3M5CPABfLGvefRmgUqZCpjQYFstA4jySqP4pA73Ymz": [ + { + "amount": "182.841623455", + "slot": { + "period": 74952, + "thread": 17 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 181715, + "thread": 23 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 378514, + "thread": 19 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 569771, + "thread": 25 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 748412, + "thread": 19 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 950044, + "thread": 15 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1123443, + "thread": 15 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1297587, + "thread": 2 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1440260, + "thread": 8 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1534210, + "thread": 8 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1796904, + "thread": 26 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 1849576, + "thread": 15 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2138105, + "thread": 0 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2283500, + "thread": 14 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2326442, + "thread": 14 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2593563, + "thread": 9 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2755093, + "thread": 29 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 2809388, + "thread": 18 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 3059417, + "thread": 5 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 3125199, + "thread": 24 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 3439300, + "thread": 6 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 3455598, + "thread": 7 + } + }, + { + "amount": "182.841623455", + "slot": { + "period": 3688421, + "thread": 12 + } + }, + { + "amount": "182.841623463", + "slot": { + "period": 3813845, + "thread": 6 + } + } + ], + "AU1AkvsuJTJKZs3BuCWNUKjS7YwARKQPWwUuUkynU5NRGsxvvB3v": [ + { + "amount": "345.532105120", + "slot": { + "period": 160329, + "thread": 2 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 179405, + "thread": 8 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 406413, + "thread": 3 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 601844, + "thread": 9 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 721084, + "thread": 27 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 940985, + "thread": 14 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1000807, + "thread": 18 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1166516, + "thread": 7 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1418819, + "thread": 1 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1600972, + "thread": 3 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1651892, + "thread": 14 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1853577, + "thread": 30 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 1984725, + "thread": 11 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2291337, + "thread": 13 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2298210, + "thread": 7 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2536473, + "thread": 12 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2628905, + "thread": 5 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2895437, + "thread": 0 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 2996304, + "thread": 1 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 3184373, + "thread": 19 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 3327596, + "thread": 7 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 3515700, + "thread": 16 + } + }, + { + "amount": "345.532105120", + "slot": { + "period": 3648729, + "thread": 26 + } + }, + { + "amount": "345.532105113", + "slot": { + "period": 3813345, + "thread": 30 + } + } + ], + "AU1Am8Wq285TemFZPXBYjbGJoaWDPeJfTdCuX16gzqYj1jTsttun": [ + { + "amount": "238.589822003", + "slot": { + "period": 90188, + "thread": 7 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 294160, + "thread": 27 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 398977, + "thread": 27 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 494912, + "thread": 10 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 755309, + "thread": 28 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 905897, + "thread": 16 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1145224, + "thread": 31 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1304534, + "thread": 22 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1384943, + "thread": 26 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1622169, + "thread": 3 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1760225, + "thread": 22 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1873795, + "thread": 26 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 1989186, + "thread": 31 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 2187751, + "thread": 13 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 2388374, + "thread": 6 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 2528868, + "thread": 28 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 2710880, + "thread": 14 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 2878677, + "thread": 21 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 3076658, + "thread": 17 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 3280395, + "thread": 12 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 3354028, + "thread": 18 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 3510005, + "thread": 14 + } + }, + { + "amount": "238.589822003", + "slot": { + "period": 3697432, + "thread": 24 + } + }, + { + "amount": "238.589822004", + "slot": { + "period": 3827289, + "thread": 11 + } + } + ], + "AU1AnDfA5kK2LKS9ZZoqxpm44RddEJ1eErksigyXaLabKmC7qHQF": [ + { + "amount": "111.356947966", + "slot": { + "period": 108673, + "thread": 26 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 276959, + "thread": 27 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 453311, + "thread": 23 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 582287, + "thread": 26 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 786715, + "thread": 11 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 914131, + "thread": 28 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1118645, + "thread": 27 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1279632, + "thread": 17 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1477262, + "thread": 22 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1494229, + "thread": 18 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1654412, + "thread": 12 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 1914467, + "thread": 20 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2001159, + "thread": 28 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2148055, + "thread": 8 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2419303, + "thread": 10 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2533174, + "thread": 4 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2701764, + "thread": 24 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 2868988, + "thread": 23 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 3073669, + "thread": 24 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 3209589, + "thread": 29 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 3356424, + "thread": 20 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 3457132, + "thread": 25 + } + }, + { + "amount": "111.356947966", + "slot": { + "period": 3626012, + "thread": 27 + } + }, + { + "amount": "111.356947978", + "slot": { + "period": 3893138, + "thread": 0 + } + } + ], + "AU1AnF6v42snf9VPrecMvoLZBX1nZa2TmxwYFvjHnZhCi8Q7Fntu": [ + { + "amount": "194.780237053", + "slot": { + "period": 84342, + "thread": 24 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 219875, + "thread": 13 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 400616, + "thread": 26 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 605019, + "thread": 17 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 701849, + "thread": 8 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 853879, + "thread": 12 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1050614, + "thread": 17 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1161198, + "thread": 26 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1451414, + "thread": 10 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1554305, + "thread": 8 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1677734, + "thread": 8 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 1897739, + "thread": 23 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2109761, + "thread": 10 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2272243, + "thread": 2 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2311099, + "thread": 7 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2548516, + "thread": 7 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2676514, + "thread": 17 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 2844830, + "thread": 29 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 3011221, + "thread": 27 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 3268331, + "thread": 11 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 3319703, + "thread": 18 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 3452958, + "thread": 23 + } + }, + { + "amount": "194.780237053", + "slot": { + "period": 3676789, + "thread": 6 + } + }, + { + "amount": "194.780237062", + "slot": { + "period": 3783195, + "thread": 22 + } + } + ], + "AU1AnVh5diah6LLqjhdmnfFvcnuaLrRxMogCCLZ3KR2KeHmeAsZt": [ + { + "amount": "166.112216982", + "slot": { + "period": 142363, + "thread": 17 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 311166, + "thread": 31 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 479998, + "thread": 15 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 644892, + "thread": 13 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 675692, + "thread": 21 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 920499, + "thread": 21 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1085831, + "thread": 28 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1274573, + "thread": 23 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1430766, + "thread": 20 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1494108, + "thread": 17 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1725813, + "thread": 25 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 1906399, + "thread": 4 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2064269, + "thread": 23 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2145403, + "thread": 6 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2333805, + "thread": 27 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2478739, + "thread": 9 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2758133, + "thread": 26 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2950436, + "thread": 23 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 2972697, + "thread": 20 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 3177320, + "thread": 10 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 3444437, + "thread": 22 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 3497300, + "thread": 25 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 3634906, + "thread": 17 + } + }, + { + "amount": "166.112216982", + "slot": { + "period": 3838218, + "thread": 13 + } + } + ], + "AU1AnuLfrAZCepS7XpEZovkdj5njvUNTGjoNUrf4vA5tw2vQvHwR": [ + { + "amount": "504.639865716", + "slot": { + "period": 93715, + "thread": 1 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 201146, + "thread": 22 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 341686, + "thread": 26 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 632463, + "thread": 7 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 738712, + "thread": 4 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 884852, + "thread": 10 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1078406, + "thread": 28 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1205289, + "thread": 7 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1369757, + "thread": 5 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1598848, + "thread": 5 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1662738, + "thread": 16 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 1894862, + "thread": 12 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2000958, + "thread": 16 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2216851, + "thread": 28 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2409955, + "thread": 16 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2597147, + "thread": 26 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2777462, + "thread": 24 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2934987, + "thread": 19 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 2956404, + "thread": 8 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 3203901, + "thread": 9 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 3435754, + "thread": 13 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 3532479, + "thread": 16 + } + }, + { + "amount": "504.639865716", + "slot": { + "period": 3745913, + "thread": 24 + } + }, + { + "amount": "504.639865711", + "slot": { + "period": 3918272, + "thread": 31 + } + } + ], + "AU1AoP9aqH6SCbWGueuHVvVVebVcS3zEiVEZQq4w3LfkSQgsXMHc": [ + { + "amount": "86.733721034", + "slot": { + "period": 90492, + "thread": 31 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 240211, + "thread": 12 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 400313, + "thread": 14 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 584382, + "thread": 18 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 790220, + "thread": 10 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 948202, + "thread": 6 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1131049, + "thread": 11 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1158214, + "thread": 30 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1334317, + "thread": 7 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1523361, + "thread": 29 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1756889, + "thread": 8 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 1975950, + "thread": 23 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2135418, + "thread": 17 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2293004, + "thread": 4 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2443101, + "thread": 26 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2601705, + "thread": 7 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2751835, + "thread": 17 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 2866885, + "thread": 9 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 3074835, + "thread": 21 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 3268418, + "thread": 26 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 3336965, + "thread": 23 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 3490951, + "thread": 26 + } + }, + { + "amount": "86.733721034", + "slot": { + "period": 3680269, + "thread": 26 + } + }, + { + "amount": "86.733721027", + "slot": { + "period": 3882102, + "thread": 29 + } + } + ], + "AU1Ap323iDwadzQR2DWFFE3JyukcuUZfBATJoW5yw7RGc5911gea": [ + { + "amount": "274.073814936", + "slot": { + "period": 129979, + "thread": 28 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 239160, + "thread": 22 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 448953, + "thread": 20 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 539554, + "thread": 21 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 764769, + "thread": 18 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 940527, + "thread": 12 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1080243, + "thread": 16 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1289154, + "thread": 7 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1329126, + "thread": 13 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1519051, + "thread": 15 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1706048, + "thread": 27 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 1810113, + "thread": 23 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2040440, + "thread": 0 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2173265, + "thread": 12 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2323958, + "thread": 24 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2522465, + "thread": 4 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2687619, + "thread": 22 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 2853381, + "thread": 27 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 3055957, + "thread": 23 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 3211683, + "thread": 26 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 3313545, + "thread": 29 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 3594235, + "thread": 26 + } + }, + { + "amount": "274.073814936", + "slot": { + "period": 3696020, + "thread": 6 + } + }, + { + "amount": "274.073814941", + "slot": { + "period": 3930392, + "thread": 14 + } + } + ], + "AU1ApiZabfRy5NXHpySQwtBQ1xbCEk1Tu1WVvMdYionaRQSRaHDg": [ + { + "amount": "196.530377099", + "slot": { + "period": 25851, + "thread": 28 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 216661, + "thread": 2 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 460868, + "thread": 15 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 553629, + "thread": 18 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 730098, + "thread": 1 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 882654, + "thread": 23 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1091374, + "thread": 22 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1260668, + "thread": 29 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1436901, + "thread": 11 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1581741, + "thread": 1 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1696105, + "thread": 14 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 1959275, + "thread": 25 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2037045, + "thread": 22 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2169356, + "thread": 31 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2369626, + "thread": 14 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2563209, + "thread": 21 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2676837, + "thread": 17 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 2832222, + "thread": 4 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 3100415, + "thread": 4 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 3204158, + "thread": 7 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 3422287, + "thread": 10 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 3544373, + "thread": 3 + } + }, + { + "amount": "196.530377099", + "slot": { + "period": 3742695, + "thread": 8 + } + }, + { + "amount": "196.530377107", + "slot": { + "period": 3832928, + "thread": 26 + } + } + ], + "AU1Apir9QB4cRphbzjxcCJqyBwaT7tw4ZmzcR1nGB845PBv5Wt2U": [ + { + "amount": "478.792579766", + "slot": { + "period": 79011, + "thread": 4 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 293981, + "thread": 4 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 396939, + "thread": 21 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 561606, + "thread": 1 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 726832, + "thread": 25 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 898582, + "thread": 12 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1100521, + "thread": 29 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1218489, + "thread": 20 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1318305, + "thread": 21 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1519313, + "thread": 12 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1808925, + "thread": 9 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 1957359, + "thread": 19 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2074251, + "thread": 20 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2271993, + "thread": 10 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2372917, + "thread": 15 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2489676, + "thread": 27 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2786585, + "thread": 23 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 2843453, + "thread": 26 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 3050942, + "thread": 30 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 3158697, + "thread": 8 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 3398448, + "thread": 5 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 3492988, + "thread": 21 + } + }, + { + "amount": "478.792579766", + "slot": { + "period": 3730205, + "thread": 11 + } + }, + { + "amount": "478.792579774", + "slot": { + "period": 3884302, + "thread": 17 + } + } + ], + "AU1AptSLfgFTwFt1saXP3o2QwhoKFGmFgQbKArMNNLKH9xXgA2gM": [ + { + "amount": "217.046013308", + "slot": { + "period": 77939, + "thread": 9 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 262086, + "thread": 24 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 463677, + "thread": 0 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 566894, + "thread": 18 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 688221, + "thread": 10 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 826091, + "thread": 3 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1052479, + "thread": 26 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1270969, + "thread": 13 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1331963, + "thread": 19 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1603205, + "thread": 24 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1684509, + "thread": 15 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 1902843, + "thread": 22 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2129456, + "thread": 9 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2198086, + "thread": 22 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2415337, + "thread": 10 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2499069, + "thread": 23 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2749319, + "thread": 13 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 2930804, + "thread": 10 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 3012902, + "thread": 22 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 3160106, + "thread": 29 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 3412006, + "thread": 28 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 3558634, + "thread": 21 + } + }, + { + "amount": "217.046013308", + "slot": { + "period": 3749801, + "thread": 29 + } + }, + { + "amount": "217.046013296", + "slot": { + "period": 3783990, + "thread": 20 + } + } + ], + "AU1ArEebxc6cbEiPCFcZjqHdi3iqaz8ptu93NkKwYqPGWZMLCvzw": [ + { + "amount": "419.484903429", + "slot": { + "period": 68013, + "thread": 9 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 303131, + "thread": 14 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 455351, + "thread": 13 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 624947, + "thread": 14 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 709468, + "thread": 3 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 839817, + "thread": 7 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1139109, + "thread": 22 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1214823, + "thread": 17 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1414817, + "thread": 20 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1541576, + "thread": 2 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1652553, + "thread": 12 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 1914159, + "thread": 12 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2019777, + "thread": 14 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2283133, + "thread": 22 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2299059, + "thread": 13 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2577583, + "thread": 14 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2684386, + "thread": 21 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 2881226, + "thread": 3 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 3052439, + "thread": 15 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 3267153, + "thread": 25 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 3317384, + "thread": 7 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 3495248, + "thread": 0 + } + }, + { + "amount": "419.484903429", + "slot": { + "period": 3676927, + "thread": 27 + } + }, + { + "amount": "419.484903428", + "slot": { + "period": 3828616, + "thread": 20 + } + } + ], + "AU1ArLZijGtZfiwJWC8eBriyRNnPRpGqprfqvksv2McvVfuyrsPA": [ + { + "amount": "438.738470956", + "slot": { + "period": 71473, + "thread": 14 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 298905, + "thread": 0 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 354578, + "thread": 24 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 646094, + "thread": 17 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 687327, + "thread": 21 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 950094, + "thread": 0 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1106983, + "thread": 7 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1156469, + "thread": 30 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1322324, + "thread": 25 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1621883, + "thread": 8 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1700294, + "thread": 20 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 1858741, + "thread": 24 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2137151, + "thread": 8 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2285019, + "thread": 30 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2358210, + "thread": 31 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2501659, + "thread": 15 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2664410, + "thread": 28 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 2816272, + "thread": 28 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 3102683, + "thread": 26 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 3157408, + "thread": 3 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 3356772, + "thread": 20 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 3459199, + "thread": 7 + } + }, + { + "amount": "438.738470956", + "slot": { + "period": 3727184, + "thread": 7 + } + }, + { + "amount": "438.738470967", + "slot": { + "period": 3812893, + "thread": 5 + } + } + ], + "AU1ArVhxqKr1CUV85RNs3KgBQbJS1XFMVTMdzVrLJEFSPSY8t6ku": [ + { + "amount": "264.817668693", + "slot": { + "period": 102885, + "thread": 19 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 245856, + "thread": 16 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 363273, + "thread": 7 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 565565, + "thread": 9 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 809653, + "thread": 20 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 965533, + "thread": 11 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1015311, + "thread": 12 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1152945, + "thread": 31 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1390725, + "thread": 23 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1501563, + "thread": 8 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1744167, + "thread": 18 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 1833854, + "thread": 20 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2081199, + "thread": 15 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2193374, + "thread": 10 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2441807, + "thread": 15 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2591195, + "thread": 14 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2641092, + "thread": 1 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 2805759, + "thread": 7 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 3063969, + "thread": 30 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 3170770, + "thread": 31 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 3444942, + "thread": 19 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 3599136, + "thread": 4 + } + }, + { + "amount": "264.817668693", + "slot": { + "period": 3678921, + "thread": 14 + } + }, + { + "amount": "264.817668698", + "slot": { + "period": 3871064, + "thread": 6 + } + } + ], + "AU1ArbJ47pnwofyHd1su3hM5rLCX4ed5LmB9hQyr6i4ix3u76uFR": [ + { + "amount": "314.189733970", + "slot": { + "period": 77634, + "thread": 22 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 297962, + "thread": 25 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 373000, + "thread": 25 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 613835, + "thread": 17 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 793976, + "thread": 23 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 980780, + "thread": 27 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 983468, + "thread": 25 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 1264483, + "thread": 9 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 1344162, + "thread": 9 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 1619024, + "thread": 14 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 1734880, + "thread": 5 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 1947619, + "thread": 11 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2007484, + "thread": 25 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2159292, + "thread": 3 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2438079, + "thread": 21 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2530866, + "thread": 16 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2786629, + "thread": 15 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 2896471, + "thread": 12 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 3039327, + "thread": 2 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 3208483, + "thread": 22 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 3352768, + "thread": 3 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 3510408, + "thread": 1 + } + }, + { + "amount": "314.189733970", + "slot": { + "period": 3635884, + "thread": 1 + } + }, + { + "amount": "314.189733972", + "slot": { + "period": 3784927, + "thread": 29 + } + } + ], + "AU1AsBMTo58vfQxy4ifuxyonRfnshpiSzhm5m6yFLhLwFKuCd77W": [ + { + "amount": "197.329809245", + "slot": { + "period": 25305, + "thread": 13 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 224478, + "thread": 3 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 441147, + "thread": 28 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 499834, + "thread": 17 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 725828, + "thread": 27 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 883963, + "thread": 1 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1144181, + "thread": 4 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1247268, + "thread": 16 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1368963, + "thread": 25 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1481244, + "thread": 5 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1648779, + "thread": 7 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 1827923, + "thread": 27 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2119627, + "thread": 11 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2184343, + "thread": 4 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2388559, + "thread": 30 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2534192, + "thread": 1 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2674060, + "thread": 6 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 2883880, + "thread": 12 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 3083642, + "thread": 12 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 3247126, + "thread": 26 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 3434731, + "thread": 11 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 3502013, + "thread": 3 + } + }, + { + "amount": "197.329809245", + "slot": { + "period": 3757519, + "thread": 22 + } + }, + { + "amount": "197.329809253", + "slot": { + "period": 3879077, + "thread": 19 + } + } + ], + "AU1AsprLaZ2D1S7B5x6mvqtqzBEnmrMaaDY63M6D3KDgnTpvaken": [ + { + "amount": "149.184353296", + "slot": { + "period": 135533, + "thread": 2 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 288561, + "thread": 9 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 419872, + "thread": 6 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 569060, + "thread": 17 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 685248, + "thread": 29 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 865335, + "thread": 31 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1012509, + "thread": 30 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1312865, + "thread": 24 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1443347, + "thread": 30 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1516626, + "thread": 27 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1678709, + "thread": 0 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 1872124, + "thread": 1 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2002311, + "thread": 24 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2172382, + "thread": 19 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2362545, + "thread": 6 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2618254, + "thread": 20 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2743105, + "thread": 9 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2948718, + "thread": 9 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 2977649, + "thread": 27 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 3213742, + "thread": 26 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 3320526, + "thread": 18 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 3482855, + "thread": 0 + } + }, + { + "amount": "149.184353296", + "slot": { + "period": 3636312, + "thread": 20 + } + }, + { + "amount": "149.184353299", + "slot": { + "period": 3841581, + "thread": 27 + } + } + ], + "AU1At34TwfhuJpMm1U37zX3wdoA6CXgC3zyBzQJ8bHzeUc9dykzF": [ + { + "amount": "104.865710231", + "slot": { + "period": 25042, + "thread": 5 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 217373, + "thread": 17 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 355061, + "thread": 25 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 588177, + "thread": 24 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 724860, + "thread": 23 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 977145, + "thread": 25 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1100323, + "thread": 21 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1170429, + "thread": 14 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1338842, + "thread": 7 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1646946, + "thread": 20 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1727109, + "thread": 6 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 1971831, + "thread": 24 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2086226, + "thread": 2 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2210225, + "thread": 9 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2448856, + "thread": 12 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2613423, + "thread": 1 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2699512, + "thread": 21 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 2798798, + "thread": 7 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 3013479, + "thread": 0 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 3173631, + "thread": 1 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 3408019, + "thread": 20 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 3615877, + "thread": 20 + } + }, + { + "amount": "104.865710231", + "slot": { + "period": 3736679, + "thread": 10 + } + }, + { + "amount": "104.865710229", + "slot": { + "period": 3924207, + "thread": 15 + } + } + ], + "AU1AtJahD2YTyAnw9WDSShC8S5hpkWg2snX9DHobLg8VLnpGpqVx": [ + { + "amount": "432.247718413", + "slot": { + "period": 86232, + "thread": 19 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 178681, + "thread": 8 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 360357, + "thread": 27 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 622125, + "thread": 9 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 781574, + "thread": 15 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 847580, + "thread": 27 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1025095, + "thread": 14 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1299570, + "thread": 17 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1353874, + "thread": 2 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1577656, + "thread": 26 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1759637, + "thread": 29 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 1873269, + "thread": 12 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2113268, + "thread": 29 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2156058, + "thread": 5 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2342238, + "thread": 3 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2615315, + "thread": 14 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2634977, + "thread": 0 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2864712, + "thread": 24 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 2980575, + "thread": 30 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 3271955, + "thread": 24 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 3414004, + "thread": 5 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 3576367, + "thread": 2 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 3767643, + "thread": 15 + } + }, + { + "amount": "432.247718413", + "slot": { + "period": 3837531, + "thread": 1 + } + } + ], + "AU1AufYTR5q6cMAU4yTBnFzEqR8jxsLKgrRsVBZ9pDYPnaX3XF4G": [ + { + "amount": "446.996940966", + "slot": { + "period": 164334, + "thread": 26 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 310700, + "thread": 11 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 381387, + "thread": 16 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 521441, + "thread": 19 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 795714, + "thread": 13 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 897954, + "thread": 17 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1109947, + "thread": 27 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1251770, + "thread": 9 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1416127, + "thread": 12 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1532355, + "thread": 19 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1732900, + "thread": 0 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 1816320, + "thread": 24 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2021767, + "thread": 11 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2238223, + "thread": 0 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2455627, + "thread": 26 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2599919, + "thread": 27 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2785322, + "thread": 13 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2905208, + "thread": 26 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 2997867, + "thread": 8 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 3133001, + "thread": 4 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 3294947, + "thread": 10 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 3599017, + "thread": 26 + } + }, + { + "amount": "446.996940966", + "slot": { + "period": 3749151, + "thread": 23 + } + }, + { + "amount": "446.996940969", + "slot": { + "period": 3835567, + "thread": 2 + } + } + ], + "AU1AuuKtBcZ7RQa3b19FAtHY67WshJBJDhVBN7HqCLyk41AXduEw": [ + { + "amount": "93.338463403", + "slot": { + "period": 72566, + "thread": 20 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 308648, + "thread": 5 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 406376, + "thread": 3 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 505401, + "thread": 7 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 791099, + "thread": 23 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 928835, + "thread": 12 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1053494, + "thread": 3 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1288528, + "thread": 3 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1467496, + "thread": 22 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1548748, + "thread": 15 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1715278, + "thread": 14 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1839487, + "thread": 15 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 1982095, + "thread": 17 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 2249199, + "thread": 20 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 2298978, + "thread": 5 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 2493321, + "thread": 25 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 2774378, + "thread": 11 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 2816879, + "thread": 27 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 3112361, + "thread": 27 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 3213727, + "thread": 7 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 3371872, + "thread": 0 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 3487798, + "thread": 31 + } + }, + { + "amount": "93.338463403", + "slot": { + "period": 3736913, + "thread": 27 + } + }, + { + "amount": "93.338463398", + "slot": { + "period": 3860251, + "thread": 25 + } + } + ], + "AU1Av7dbZwB3g5cJHBkLUdhh9xQJGRhqmxbKyuL6J8SzLCXPLbxL": [ + { + "amount": "140.171178881", + "slot": { + "period": 74041, + "thread": 23 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 205538, + "thread": 29 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 389857, + "thread": 9 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 630324, + "thread": 20 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 681246, + "thread": 20 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 875471, + "thread": 12 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1021466, + "thread": 10 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1167741, + "thread": 23 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1327560, + "thread": 9 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1603641, + "thread": 10 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1754430, + "thread": 17 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 1926759, + "thread": 13 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2098002, + "thread": 25 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2292613, + "thread": 4 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2434082, + "thread": 9 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2549023, + "thread": 29 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2643763, + "thread": 6 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 2821105, + "thread": 30 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 3021778, + "thread": 18 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 3263813, + "thread": 22 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 3339190, + "thread": 1 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 3571611, + "thread": 9 + } + }, + { + "amount": "140.171178881", + "slot": { + "period": 3746776, + "thread": 30 + } + }, + { + "amount": "140.171178882", + "slot": { + "period": 3786306, + "thread": 12 + } + } + ], + "AU1AvDAr3hcsqmgyirLpaYqn83LpYzw5ah1pJKAVnYk3moZvaH7P": [ + { + "amount": "112.633500176", + "slot": { + "period": 158969, + "thread": 29 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 261033, + "thread": 19 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 361096, + "thread": 11 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 543946, + "thread": 16 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 820018, + "thread": 22 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 961106, + "thread": 22 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1053375, + "thread": 25 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1164622, + "thread": 4 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1461883, + "thread": 21 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1505379, + "thread": 23 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1679248, + "thread": 15 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 1955224, + "thread": 21 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2028953, + "thread": 4 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2179938, + "thread": 14 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2320437, + "thread": 5 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2508724, + "thread": 15 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2632049, + "thread": 14 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2829489, + "thread": 17 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 2989082, + "thread": 24 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 3200220, + "thread": 23 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 3361747, + "thread": 11 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 3561101, + "thread": 17 + } + }, + { + "amount": "112.633500176", + "slot": { + "period": 3694469, + "thread": 0 + } + }, + { + "amount": "112.633500180", + "slot": { + "period": 3816466, + "thread": 21 + } + } + ], + "AU1AvdQaHb6dCUEKAYXrDSr7ojqLWxdCLHNN4dcoCv9HSSykHiQ8": [ + { + "amount": "227.423659509", + "slot": { + "period": 134675, + "thread": 13 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 284919, + "thread": 30 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 430458, + "thread": 2 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 615502, + "thread": 13 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 813139, + "thread": 22 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 925084, + "thread": 26 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1148319, + "thread": 11 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1221098, + "thread": 7 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1451161, + "thread": 19 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1531599, + "thread": 18 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1727496, + "thread": 26 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 1963659, + "thread": 29 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2003539, + "thread": 23 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2160768, + "thread": 26 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2358902, + "thread": 17 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2595667, + "thread": 14 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2644923, + "thread": 17 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 2815194, + "thread": 31 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 3031717, + "thread": 3 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 3286507, + "thread": 29 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 3342271, + "thread": 6 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 3552864, + "thread": 25 + } + }, + { + "amount": "227.423659509", + "slot": { + "period": 3650975, + "thread": 14 + } + }, + { + "amount": "227.423659512", + "slot": { + "period": 3945269, + "thread": 24 + } + } + ], + "AU1AwP63uwB7By3D54tY9tdDam1tb6T7W7mtvSTsDRqsnaSaMPQk": [ + { + "amount": "552.525006889", + "slot": { + "period": 103261, + "thread": 24 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 309610, + "thread": 22 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 357065, + "thread": 11 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 581400, + "thread": 23 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 780645, + "thread": 19 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 864395, + "thread": 9 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1014404, + "thread": 10 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1189231, + "thread": 16 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1462343, + "thread": 9 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1551162, + "thread": 20 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1684661, + "thread": 1 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1971709, + "thread": 25 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 1997612, + "thread": 30 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 2194813, + "thread": 2 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 2418570, + "thread": 22 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 2564978, + "thread": 6 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 2744011, + "thread": 9 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 2901670, + "thread": 19 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 3067172, + "thread": 20 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 3144835, + "thread": 0 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 3297832, + "thread": 14 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 3576856, + "thread": 2 + } + }, + { + "amount": "552.525006889", + "slot": { + "period": 3700104, + "thread": 7 + } + }, + { + "amount": "552.525006896", + "slot": { + "period": 3867990, + "thread": 3 + } + } + ], + "AU1AxBRftYt1ucq5pJKfM8xDTfZvdb1VTazrxxJmX3TPKycMx8EA": [ + { + "amount": "133.624273543", + "slot": { + "period": 62243, + "thread": 15 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 258886, + "thread": 10 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 381936, + "thread": 7 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 587344, + "thread": 14 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 697453, + "thread": 1 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 967579, + "thread": 15 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1071274, + "thread": 2 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1226956, + "thread": 10 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1422946, + "thread": 30 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1549954, + "thread": 23 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1784952, + "thread": 2 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 1846088, + "thread": 5 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2060761, + "thread": 12 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2252543, + "thread": 21 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2298532, + "thread": 17 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2530702, + "thread": 24 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2681742, + "thread": 26 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 2918173, + "thread": 28 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 3012323, + "thread": 30 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 3143749, + "thread": 19 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 3335013, + "thread": 10 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 3453590, + "thread": 30 + } + }, + { + "amount": "133.624273543", + "slot": { + "period": 3645167, + "thread": 19 + } + }, + { + "amount": "133.624273535", + "slot": { + "period": 3901003, + "thread": 3 + } + } + ], + "AU1AxpDgfPGVpWAghh1hyfyrvkWke3cGCYA8HkfGGYtXitD9o1FV": [ + { + "amount": "124.726648307", + "slot": { + "period": 17232, + "thread": 27 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 303525, + "thread": 27 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 395587, + "thread": 6 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 635291, + "thread": 6 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 802977, + "thread": 28 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 899246, + "thread": 4 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1137591, + "thread": 9 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1238967, + "thread": 21 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1354540, + "thread": 10 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1492467, + "thread": 10 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1799562, + "thread": 26 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 1836737, + "thread": 13 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2006512, + "thread": 29 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2238846, + "thread": 30 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2423665, + "thread": 8 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2583829, + "thread": 29 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2663875, + "thread": 19 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2911614, + "thread": 2 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 2955985, + "thread": 3 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 3245574, + "thread": 18 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 3448682, + "thread": 9 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 3605605, + "thread": 12 + } + }, + { + "amount": "124.726648307", + "slot": { + "period": 3741267, + "thread": 14 + } + }, + { + "amount": "124.726648312", + "slot": { + "period": 3804242, + "thread": 27 + } + } + ], + "AU1AxpQHC54grXsJqpfHFs3QpaFmQ9cnYvrE5GdzFc8p8eSWrpfq": [ + { + "amount": "507.462916027", + "slot": { + "period": 135439, + "thread": 16 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 240051, + "thread": 11 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 363227, + "thread": 5 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 538374, + "thread": 2 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 670204, + "thread": 4 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 863253, + "thread": 2 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1110070, + "thread": 16 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1253990, + "thread": 26 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1445402, + "thread": 16 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1584018, + "thread": 22 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1750372, + "thread": 25 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1889000, + "thread": 1 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 1983123, + "thread": 0 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 2144112, + "thread": 10 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 2407527, + "thread": 3 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 2483241, + "thread": 9 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 2735874, + "thread": 18 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 2873020, + "thread": 4 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 3012140, + "thread": 20 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 3255399, + "thread": 2 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 3349932, + "thread": 26 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 3469838, + "thread": 26 + } + }, + { + "amount": "507.462916027", + "slot": { + "period": 3769598, + "thread": 18 + } + }, + { + "amount": "507.462916032", + "slot": { + "period": 3900144, + "thread": 10 + } + } + ], + "AU1AzJGdnrHKzcC4rEiZzTC8cy5iZHFUtWQ75e3WVefQ5ufjJhTY": [ + { + "amount": "501.895989843", + "slot": { + "period": 90698, + "thread": 11 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 263561, + "thread": 20 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 347199, + "thread": 29 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 601009, + "thread": 23 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 657340, + "thread": 12 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 914694, + "thread": 17 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1010549, + "thread": 15 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1249488, + "thread": 28 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1328014, + "thread": 27 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1549637, + "thread": 29 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1776520, + "thread": 26 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 1872260, + "thread": 18 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2002887, + "thread": 1 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2253515, + "thread": 28 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2361802, + "thread": 11 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2469555, + "thread": 1 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2785717, + "thread": 11 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 2858330, + "thread": 0 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 3111318, + "thread": 14 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 3165334, + "thread": 26 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 3364195, + "thread": 20 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 3597266, + "thread": 14 + } + }, + { + "amount": "501.895989843", + "slot": { + "period": 3697530, + "thread": 17 + } + }, + { + "amount": "501.895989844", + "slot": { + "period": 3839225, + "thread": 26 + } + } + ], + "AU1Azf4tAaJmmiE7JYhFWJ8SfwwFw61XvbCeW6umQ9vdGuwtGyiR": [ + { + "amount": "52.791924322", + "slot": { + "period": 59433, + "thread": 19 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 280586, + "thread": 3 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 416878, + "thread": 2 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 562400, + "thread": 5 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 697247, + "thread": 11 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 939035, + "thread": 9 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1148288, + "thread": 10 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1315105, + "thread": 26 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1440548, + "thread": 4 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1553603, + "thread": 18 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1655297, + "thread": 22 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1974610, + "thread": 31 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 1981100, + "thread": 27 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 2226082, + "thread": 21 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 2328539, + "thread": 14 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 2476256, + "thread": 6 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 2661272, + "thread": 21 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 2805886, + "thread": 5 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3075791, + "thread": 21 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3168523, + "thread": 26 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3445883, + "thread": 3 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3483481, + "thread": 10 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3650628, + "thread": 25 + } + }, + { + "amount": "52.791924322", + "slot": { + "period": 3886046, + "thread": 21 + } + } + ], + "AU1B1Kj2c7CenX2gbLTdgxiniyL1iM5APPGPeTiiBzKXLbCRDF55": [ + { + "amount": "96.427596518", + "slot": { + "period": 71512, + "thread": 3 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 173638, + "thread": 29 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 425499, + "thread": 6 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 590747, + "thread": 26 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 743839, + "thread": 0 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 889143, + "thread": 4 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1077448, + "thread": 14 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1266044, + "thread": 14 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1476319, + "thread": 13 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1500688, + "thread": 28 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1796206, + "thread": 0 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 1830767, + "thread": 19 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2108931, + "thread": 17 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2294445, + "thread": 10 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2354356, + "thread": 22 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2503936, + "thread": 31 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2739938, + "thread": 15 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 2808912, + "thread": 5 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 3116742, + "thread": 27 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 3232503, + "thread": 26 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 3394931, + "thread": 21 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 3465982, + "thread": 31 + } + }, + { + "amount": "96.427596518", + "slot": { + "period": 3716985, + "thread": 6 + } + }, + { + "amount": "96.427596523", + "slot": { + "period": 3799004, + "thread": 27 + } + } + ], + "AU1B1hYDG7EsdZPmxrTQCTGjyFhXYqEoMV84GLHvpV3YR2TG9kp6": [ + { + "amount": "93.857244789", + "slot": { + "period": 92907, + "thread": 20 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 297731, + "thread": 17 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 342917, + "thread": 22 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 577382, + "thread": 12 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 757211, + "thread": 28 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 915619, + "thread": 15 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1050231, + "thread": 4 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1287217, + "thread": 27 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1331163, + "thread": 15 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1579680, + "thread": 8 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1677042, + "thread": 1 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 1882453, + "thread": 19 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2119332, + "thread": 19 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2164856, + "thread": 6 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2395342, + "thread": 20 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2619639, + "thread": 2 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2770954, + "thread": 4 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 2830525, + "thread": 26 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 3105288, + "thread": 2 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 3277656, + "thread": 24 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 3363795, + "thread": 20 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 3565763, + "thread": 6 + } + }, + { + "amount": "93.857244789", + "slot": { + "period": 3761666, + "thread": 26 + } + }, + { + "amount": "93.857244790", + "slot": { + "period": 3900113, + "thread": 28 + } + } + ], + "AU1B2CNhMQqeWMNcQj7seQbsdfUTw1M5cUoUZ4e6i9KhPnMhP1wK": [ + { + "amount": "782.776268602", + "slot": { + "period": 150693, + "thread": 22 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 251611, + "thread": 28 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 450882, + "thread": 27 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 529925, + "thread": 18 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 683617, + "thread": 30 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 934483, + "thread": 25 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1099332, + "thread": 7 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1307764, + "thread": 20 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1439373, + "thread": 24 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1535009, + "thread": 12 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1696945, + "thread": 10 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 1835550, + "thread": 15 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2040570, + "thread": 25 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2256772, + "thread": 5 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2413505, + "thread": 18 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2465670, + "thread": 26 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2684720, + "thread": 8 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2923490, + "thread": 15 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 2958884, + "thread": 31 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 3279320, + "thread": 16 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 3357450, + "thread": 1 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 3555204, + "thread": 30 + } + }, + { + "amount": "782.776268602", + "slot": { + "period": 3619497, + "thread": 2 + } + }, + { + "amount": "782.776268607", + "slot": { + "period": 3823721, + "thread": 12 + } + } + ], + "AU1B2TwLTqoyrQscUjeWo8WsLXfjojk3oAqnDxWX75fiR8YNKupj": [ + { + "amount": "144.243320010", + "slot": { + "period": 103866, + "thread": 18 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 232118, + "thread": 5 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 373620, + "thread": 8 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 504566, + "thread": 24 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 813248, + "thread": 14 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 862467, + "thread": 0 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1103110, + "thread": 0 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1197014, + "thread": 4 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1395704, + "thread": 1 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1616678, + "thread": 21 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1708795, + "thread": 24 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 1811299, + "thread": 25 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2070492, + "thread": 21 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2151764, + "thread": 20 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2364035, + "thread": 19 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2598273, + "thread": 21 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2701611, + "thread": 28 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 2934813, + "thread": 18 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 3050834, + "thread": 15 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 3189568, + "thread": 24 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 3305978, + "thread": 2 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 3564043, + "thread": 4 + } + }, + { + "amount": "144.243320010", + "slot": { + "period": 3645250, + "thread": 22 + } + }, + { + "amount": "144.243320014", + "slot": { + "period": 3794307, + "thread": 9 + } + } + ], + "AU1B2qdmcgBjcmrb4CLMAEsmx7o869QLqyeaUa3pbTa5tc4dky6w": [ + { + "amount": "155.960792388", + "slot": { + "period": 18560, + "thread": 1 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 268705, + "thread": 26 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 468829, + "thread": 21 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 643478, + "thread": 6 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 711425, + "thread": 0 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 912469, + "thread": 16 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1125058, + "thread": 23 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1260112, + "thread": 5 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1381541, + "thread": 11 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1646025, + "thread": 11 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1763787, + "thread": 12 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 1813517, + "thread": 13 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2037055, + "thread": 9 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2278311, + "thread": 12 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2410504, + "thread": 20 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2616301, + "thread": 31 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2745332, + "thread": 5 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 2855866, + "thread": 17 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 3025367, + "thread": 18 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 3178431, + "thread": 3 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 3326473, + "thread": 21 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 3549544, + "thread": 18 + } + }, + { + "amount": "155.960792388", + "slot": { + "period": 3686785, + "thread": 0 + } + }, + { + "amount": "155.960792396", + "slot": { + "period": 3892454, + "thread": 3 + } + } + ], + "AU1B3c8RF8ntCBrszmr5R6eNX8CEU211mVsjBB9PxenV3uAeoYsT": [ + { + "amount": "447.513905697", + "slot": { + "period": 131381, + "thread": 10 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 196618, + "thread": 5 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 327439, + "thread": 15 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 577956, + "thread": 27 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 721622, + "thread": 1 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 848224, + "thread": 10 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1126209, + "thread": 9 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1203870, + "thread": 0 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1382316, + "thread": 1 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1581946, + "thread": 16 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1741251, + "thread": 22 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 1922406, + "thread": 6 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2081348, + "thread": 26 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2197161, + "thread": 4 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2340718, + "thread": 11 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2537564, + "thread": 9 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2780615, + "thread": 14 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 2830754, + "thread": 1 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3022195, + "thread": 17 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3174670, + "thread": 16 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3306582, + "thread": 15 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3518139, + "thread": 12 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3732456, + "thread": 30 + } + }, + { + "amount": "447.513905697", + "slot": { + "period": 3873485, + "thread": 3 + } + } + ], + "AU1B4cXbvdvhNGrcRfuBUURyVvqtiECXrRN4M1kXEB4eVYriJ23c": [ + { + "amount": "246.341916519", + "slot": { + "period": 53543, + "thread": 2 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 174732, + "thread": 11 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 417952, + "thread": 18 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 532607, + "thread": 27 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 663867, + "thread": 31 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 836208, + "thread": 28 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1101451, + "thread": 18 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1198826, + "thread": 24 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1447056, + "thread": 2 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1600887, + "thread": 13 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1682165, + "thread": 22 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 1878324, + "thread": 28 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2109971, + "thread": 25 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2192740, + "thread": 1 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2344608, + "thread": 24 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2583894, + "thread": 14 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2743395, + "thread": 7 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 2936686, + "thread": 13 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 3069683, + "thread": 21 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 3126970, + "thread": 25 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 3301055, + "thread": 8 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 3572650, + "thread": 17 + } + }, + { + "amount": "246.341916519", + "slot": { + "period": 3687631, + "thread": 16 + } + }, + { + "amount": "246.341916521", + "slot": { + "period": 3905991, + "thread": 24 + } + } + ], + "AU1B53rbadCqZk3tXk1XryYpP2bNTZ7DEDUYqqym5N9CjxzD1rzp": [ + { + "amount": "379.460902079", + "slot": { + "period": 118437, + "thread": 5 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 230365, + "thread": 10 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 375957, + "thread": 1 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 542842, + "thread": 22 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 771939, + "thread": 6 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 959334, + "thread": 2 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1104241, + "thread": 19 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1295844, + "thread": 16 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1443146, + "thread": 26 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1546549, + "thread": 30 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1784614, + "thread": 14 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 1882414, + "thread": 8 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2133351, + "thread": 15 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2194112, + "thread": 24 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2427818, + "thread": 5 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2613621, + "thread": 23 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2683981, + "thread": 21 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 2947988, + "thread": 29 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 3041626, + "thread": 16 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 3138760, + "thread": 10 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 3368140, + "thread": 0 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 3503660, + "thread": 19 + } + }, + { + "amount": "379.460902079", + "slot": { + "period": 3696099, + "thread": 28 + } + }, + { + "amount": "379.460902068", + "slot": { + "period": 3857443, + "thread": 9 + } + } + ], + "AU1B5EZd7dMYdsayWuzvP95QSXhML4kVRMJCSptyaJjuuSHawc69": [ + { + "amount": "162.109149014", + "slot": { + "period": 42027, + "thread": 4 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 280408, + "thread": 18 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 463139, + "thread": 17 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 513408, + "thread": 13 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 659599, + "thread": 24 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 824879, + "thread": 29 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1073455, + "thread": 15 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1249781, + "thread": 16 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1440029, + "thread": 9 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1547573, + "thread": 7 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1785139, + "thread": 22 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 1962512, + "thread": 17 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2138931, + "thread": 21 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2143980, + "thread": 15 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2366485, + "thread": 28 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2544207, + "thread": 7 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2761619, + "thread": 11 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 2860728, + "thread": 5 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 3049999, + "thread": 16 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 3208046, + "thread": 20 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 3439769, + "thread": 11 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 3501896, + "thread": 17 + } + }, + { + "amount": "162.109149014", + "slot": { + "period": 3636361, + "thread": 5 + } + }, + { + "amount": "162.109149026", + "slot": { + "period": 3827264, + "thread": 21 + } + } + ], + "AU1B5wyZTpXm9SkySibGRGhhP7dWkCP86Y7pmRMPu1MmvomXwnmN": [ + { + "amount": "452.424205458", + "slot": { + "period": 154030, + "thread": 3 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 310562, + "thread": 1 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 433874, + "thread": 9 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 515258, + "thread": 8 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 706448, + "thread": 31 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 921266, + "thread": 1 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1088452, + "thread": 11 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1269863, + "thread": 29 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1445681, + "thread": 25 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1613644, + "thread": 20 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1735372, + "thread": 7 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 1852800, + "thread": 20 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2078915, + "thread": 0 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2198512, + "thread": 29 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2385454, + "thread": 4 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2483679, + "thread": 10 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2657164, + "thread": 24 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 2840781, + "thread": 30 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 3113790, + "thread": 11 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 3235278, + "thread": 28 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 3376382, + "thread": 12 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 3511933, + "thread": 11 + } + }, + { + "amount": "452.424205458", + "slot": { + "period": 3691184, + "thread": 22 + } + }, + { + "amount": "452.424205460", + "slot": { + "period": 3884070, + "thread": 2 + } + } + ], + "AU1B6dgxUmcn9KF4iSCjq3TiW92cTi29MC4U6x4DDEJRk4e7HwX2": [ + { + "amount": "617.430579920", + "slot": { + "period": 161225, + "thread": 0 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 321941, + "thread": 25 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 348509, + "thread": 15 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 512301, + "thread": 26 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 750924, + "thread": 28 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 919311, + "thread": 7 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1029660, + "thread": 20 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1164501, + "thread": 1 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1354782, + "thread": 15 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1508887, + "thread": 28 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1723158, + "thread": 31 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 1830335, + "thread": 23 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2074879, + "thread": 19 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2267962, + "thread": 11 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2418572, + "thread": 19 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2467643, + "thread": 3 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2692880, + "thread": 22 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 2883887, + "thread": 8 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 3036851, + "thread": 18 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 3242314, + "thread": 3 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 3425597, + "thread": 3 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 3594530, + "thread": 13 + } + }, + { + "amount": "617.430579920", + "slot": { + "period": 3723548, + "thread": 25 + } + }, + { + "amount": "617.430579932", + "slot": { + "period": 3884039, + "thread": 13 + } + } + ], + "AU1B7BXTu8CmveehXCBX6pLVss1np5m9kGZzak3XHUNHewwoSFpe": [ + { + "amount": "84.341820677", + "slot": { + "period": 129780, + "thread": 9 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 266252, + "thread": 6 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 481435, + "thread": 30 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 494278, + "thread": 31 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 678303, + "thread": 4 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 938524, + "thread": 13 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1045459, + "thread": 18 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1283242, + "thread": 22 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1386770, + "thread": 25 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1645591, + "thread": 3 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1711492, + "thread": 11 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 1953426, + "thread": 2 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2036923, + "thread": 3 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2175911, + "thread": 11 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2334220, + "thread": 11 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2476053, + "thread": 10 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2644000, + "thread": 0 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2950862, + "thread": 6 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 2977524, + "thread": 16 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 3153000, + "thread": 18 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 3352506, + "thread": 21 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 3569824, + "thread": 3 + } + }, + { + "amount": "84.341820677", + "slot": { + "period": 3680153, + "thread": 5 + } + }, + { + "amount": "84.341820667", + "slot": { + "period": 3835845, + "thread": 15 + } + } + ], + "AU1B7Xq3NXijsFDdJugmxFLNFMm8xY49bsYwyum4CayPr2H9cPMJ": [ + { + "amount": "245.526560614", + "slot": { + "period": 33831, + "thread": 25 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 285273, + "thread": 8 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 461430, + "thread": 22 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 641086, + "thread": 22 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 662189, + "thread": 21 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 931091, + "thread": 1 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1101647, + "thread": 5 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1190520, + "thread": 7 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1321175, + "thread": 30 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1645034, + "thread": 10 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1734909, + "thread": 6 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 1868698, + "thread": 0 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2006611, + "thread": 14 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2205389, + "thread": 19 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2380868, + "thread": 21 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2572341, + "thread": 11 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2739426, + "thread": 4 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 2898710, + "thread": 5 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 3042535, + "thread": 30 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 3246573, + "thread": 1 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 3441371, + "thread": 25 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 3499774, + "thread": 6 + } + }, + { + "amount": "245.526560614", + "slot": { + "period": 3694556, + "thread": 8 + } + }, + { + "amount": "245.526560610", + "slot": { + "period": 3795744, + "thread": 30 + } + } + ], + "AU1B7bch26pQPESvS9wFNV6S9EEqdxpArf4SMywEBxjnzX6TrebQ": [ + { + "amount": "93.653390882", + "slot": { + "period": 148911, + "thread": 8 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 173109, + "thread": 0 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 416743, + "thread": 27 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 574107, + "thread": 10 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 769354, + "thread": 26 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 868251, + "thread": 0 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1106586, + "thread": 13 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1167565, + "thread": 24 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1456475, + "thread": 6 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1634898, + "thread": 16 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1735660, + "thread": 18 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 1952992, + "thread": 26 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2005054, + "thread": 19 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2194944, + "thread": 26 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2402200, + "thread": 5 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2552473, + "thread": 5 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2633880, + "thread": 10 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 2847650, + "thread": 7 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 3062161, + "thread": 31 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 3216645, + "thread": 20 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 3447535, + "thread": 3 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 3603297, + "thread": 5 + } + }, + { + "amount": "93.653390882", + "slot": { + "period": 3716953, + "thread": 6 + } + }, + { + "amount": "93.653390889", + "slot": { + "period": 3851843, + "thread": 20 + } + } + ], + "AU1B8N4b1iQjSxmf88TpF8UJntroWTgVqMDBix9GjgbM9BazhxHV": [ + { + "amount": "273.671955714", + "slot": { + "period": 159553, + "thread": 14 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 303566, + "thread": 17 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 356572, + "thread": 18 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 531766, + "thread": 27 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 734646, + "thread": 12 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 844912, + "thread": 13 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1007759, + "thread": 8 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1173509, + "thread": 20 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1332305, + "thread": 7 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1562937, + "thread": 4 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1757235, + "thread": 2 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1817090, + "thread": 16 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 1991367, + "thread": 14 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 2146992, + "thread": 8 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 2307734, + "thread": 12 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 2546603, + "thread": 16 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 2732759, + "thread": 24 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 2932655, + "thread": 21 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 3056991, + "thread": 22 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 3188686, + "thread": 18 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 3365392, + "thread": 19 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 3549984, + "thread": 27 + } + }, + { + "amount": "273.671955714", + "slot": { + "period": 3685975, + "thread": 23 + } + }, + { + "amount": "273.671955717", + "slot": { + "period": 3929767, + "thread": 24 + } + } + ], + "AU1B8fBux9im9MKn7Q6yM7x5urhgqjd95NbKzqK4h5NWKKKkT3j3": [ + { + "amount": "369.639391941", + "slot": { + "period": 59786, + "thread": 29 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 237994, + "thread": 9 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 345976, + "thread": 20 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 593838, + "thread": 13 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 707968, + "thread": 23 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 847801, + "thread": 10 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1016602, + "thread": 24 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1161097, + "thread": 0 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1404477, + "thread": 13 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1596851, + "thread": 20 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1679916, + "thread": 1 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1831650, + "thread": 6 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 1982185, + "thread": 4 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 2281414, + "thread": 19 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 2377448, + "thread": 5 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 2504287, + "thread": 19 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 2674367, + "thread": 25 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 2815178, + "thread": 3 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 3009810, + "thread": 22 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 3182858, + "thread": 25 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 3434022, + "thread": 16 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 3599525, + "thread": 12 + } + }, + { + "amount": "369.639391941", + "slot": { + "period": 3730868, + "thread": 27 + } + }, + { + "amount": "369.639391934", + "slot": { + "period": 3813757, + "thread": 20 + } + } + ], + "AU1B8mRU4cd8cQ859RfLKpfDMg6V3vmw8ewS25b6V9q5qXWwCKCK": [ + { + "amount": "220.426283440", + "slot": { + "period": 152984, + "thread": 8 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 193015, + "thread": 8 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 477176, + "thread": 18 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 559698, + "thread": 3 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 677902, + "thread": 2 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 867444, + "thread": 0 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1149966, + "thread": 19 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1294661, + "thread": 14 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1352006, + "thread": 1 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1491692, + "thread": 23 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1751973, + "thread": 7 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1837292, + "thread": 11 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 1992657, + "thread": 18 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 2235637, + "thread": 25 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 2386304, + "thread": 2 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 2601744, + "thread": 16 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 2746771, + "thread": 20 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 2841969, + "thread": 21 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 3100832, + "thread": 14 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 3227825, + "thread": 24 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 3312103, + "thread": 3 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 3591541, + "thread": 20 + } + }, + { + "amount": "220.426283440", + "slot": { + "period": 3712113, + "thread": 17 + } + }, + { + "amount": "220.426283444", + "slot": { + "period": 3929699, + "thread": 16 + } + } + ], + "AU1B9P3Ee9dKtdyY9aK8zQbhv8cauiBNLUPnbfjJFW1hnFJFnFK1": [ + { + "amount": "8955.333333333", + "slot": { + "period": 116439, + "thread": 9 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 230640, + "thread": 14 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 414142, + "thread": 18 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 548614, + "thread": 6 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 709259, + "thread": 7 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 929818, + "thread": 3 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1000294, + "thread": 6 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1289182, + "thread": 29 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1420180, + "thread": 12 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1616142, + "thread": 30 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1721152, + "thread": 6 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 1956427, + "thread": 15 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2141172, + "thread": 3 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2259916, + "thread": 21 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2404852, + "thread": 10 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2494995, + "thread": 2 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2638687, + "thread": 15 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2929934, + "thread": 29 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 2970888, + "thread": 30 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 3263509, + "thread": 12 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 3324028, + "thread": 12 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 3525683, + "thread": 16 + } + }, + { + "amount": "8955.333333333", + "slot": { + "period": 3777627, + "thread": 21 + } + }, + { + "amount": "8955.333333341", + "slot": { + "period": 3870938, + "thread": 6 + } + } + ], + "AU1BALrX736g3eYe5a5Uv3tBcyu1bwxLE7FCWCcGW4X3cjZfyFQ9": [ + { + "amount": "98.682636289", + "slot": { + "period": 25975, + "thread": 18 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 183612, + "thread": 20 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 431406, + "thread": 16 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 640461, + "thread": 15 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 814714, + "thread": 12 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 900490, + "thread": 25 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1110500, + "thread": 29 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1156558, + "thread": 25 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1383430, + "thread": 25 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1524095, + "thread": 29 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1722203, + "thread": 29 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 1897325, + "thread": 1 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2103372, + "thread": 3 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2185663, + "thread": 28 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2319174, + "thread": 25 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2496287, + "thread": 6 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2693552, + "thread": 23 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 2801310, + "thread": 14 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 3117648, + "thread": 29 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 3128325, + "thread": 13 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 3437903, + "thread": 20 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 3490981, + "thread": 6 + } + }, + { + "amount": "98.682636289", + "slot": { + "period": 3618027, + "thread": 9 + } + }, + { + "amount": "98.682636300", + "slot": { + "period": 3785418, + "thread": 15 + } + } + ], + "AU1BBTjA2a4zNvcHUAw9WPaxjyRE1P5kMvkH7GjHZAx7upVqbjzZ": [ + { + "amount": "158.712698525", + "slot": { + "period": 104901, + "thread": 12 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 295853, + "thread": 5 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 470690, + "thread": 0 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 499866, + "thread": 28 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 755298, + "thread": 22 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 910074, + "thread": 23 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1092337, + "thread": 24 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1168339, + "thread": 25 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1355374, + "thread": 18 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1502814, + "thread": 1 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1718523, + "thread": 14 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 1832096, + "thread": 19 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2128192, + "thread": 18 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2193670, + "thread": 4 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2331770, + "thread": 16 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2505513, + "thread": 5 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2627499, + "thread": 27 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2792936, + "thread": 8 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 2977759, + "thread": 17 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 3193531, + "thread": 4 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 3441752, + "thread": 21 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 3490168, + "thread": 27 + } + }, + { + "amount": "158.712698525", + "slot": { + "period": 3725781, + "thread": 13 + } + }, + { + "amount": "158.712698529", + "slot": { + "period": 3791244, + "thread": 27 + } + } + ], + "AU1BC5ketyDhSPsKzncBe9YPchvGe8PrekjCK1sfQpYgNhrCHJvP": [ + { + "amount": "89.785707094", + "slot": { + "period": 154190, + "thread": 2 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 258816, + "thread": 18 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 351266, + "thread": 28 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 548819, + "thread": 27 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 758195, + "thread": 25 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 857965, + "thread": 26 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1128262, + "thread": 26 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1236485, + "thread": 0 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1457718, + "thread": 6 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1553818, + "thread": 10 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1670431, + "thread": 23 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 1947220, + "thread": 17 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2066759, + "thread": 8 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2210309, + "thread": 2 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2428063, + "thread": 6 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2571521, + "thread": 11 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2670394, + "thread": 16 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2839118, + "thread": 18 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 2967636, + "thread": 9 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 3272843, + "thread": 31 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 3338584, + "thread": 4 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 3521836, + "thread": 4 + } + }, + { + "amount": "89.785707094", + "slot": { + "period": 3730473, + "thread": 20 + } + }, + { + "amount": "89.785707104", + "slot": { + "period": 3804115, + "thread": 4 + } + } + ], + "AU1BC6nrLqcXTmBVCRDqhLDjfhXMFcMgFrH1dRvkDXxPfQa627VX": [ + { + "amount": "221.302733096", + "slot": { + "period": 69279, + "thread": 30 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 197235, + "thread": 6 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 343943, + "thread": 15 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 636527, + "thread": 3 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 715910, + "thread": 26 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 920216, + "thread": 8 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1031998, + "thread": 13 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1169016, + "thread": 15 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1455358, + "thread": 18 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1602882, + "thread": 7 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1795435, + "thread": 4 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 1884546, + "thread": 10 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2113709, + "thread": 6 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2253072, + "thread": 11 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2305032, + "thread": 30 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2590260, + "thread": 21 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2689641, + "thread": 8 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 2926644, + "thread": 29 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 3002995, + "thread": 12 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 3139281, + "thread": 16 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 3345341, + "thread": 10 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 3566213, + "thread": 8 + } + }, + { + "amount": "221.302733096", + "slot": { + "period": 3716731, + "thread": 2 + } + }, + { + "amount": "221.302733104", + "slot": { + "period": 3872075, + "thread": 5 + } + } + ], + "AU1BDgzSjucqmv6kthRnoJ7FmHqZPJ5R4Hpro3sBPFjtxpvoZEFc": [ + { + "amount": "156.866547636", + "slot": { + "period": 56015, + "thread": 14 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 296877, + "thread": 10 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 372022, + "thread": 16 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 567389, + "thread": 20 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 728391, + "thread": 24 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 842952, + "thread": 26 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1138749, + "thread": 10 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1152641, + "thread": 15 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1335798, + "thread": 1 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1598873, + "thread": 23 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1774964, + "thread": 14 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1896868, + "thread": 0 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 1982266, + "thread": 24 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 2257351, + "thread": 21 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 2360219, + "thread": 28 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 2506319, + "thread": 28 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 2749255, + "thread": 23 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 2930578, + "thread": 31 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 3063218, + "thread": 20 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 3218440, + "thread": 15 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 3446402, + "thread": 20 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 3530075, + "thread": 9 + } + }, + { + "amount": "156.866547636", + "slot": { + "period": 3729342, + "thread": 23 + } + }, + { + "amount": "156.866547628", + "slot": { + "period": 3869783, + "thread": 12 + } + } + ], + "AU1BDsYg9TUUUy46XNBSpfSeR4saCP3gW7CMMz47wHDa9fadHEdP": [ + { + "amount": "99.392001946", + "slot": { + "period": 138681, + "thread": 12 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 251955, + "thread": 30 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 408485, + "thread": 8 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 648157, + "thread": 28 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 679193, + "thread": 8 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 894700, + "thread": 31 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 991557, + "thread": 5 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 1220463, + "thread": 17 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 1392224, + "thread": 7 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 1643490, + "thread": 8 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 1701312, + "thread": 5 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 1833441, + "thread": 31 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2061809, + "thread": 12 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2261300, + "thread": 7 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2401131, + "thread": 19 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2546927, + "thread": 14 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2629208, + "thread": 6 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 2876683, + "thread": 30 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 3051378, + "thread": 27 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 3184085, + "thread": 12 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 3366812, + "thread": 19 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 3485022, + "thread": 13 + } + }, + { + "amount": "99.392001946", + "slot": { + "period": 3650551, + "thread": 22 + } + }, + { + "amount": "99.392001958", + "slot": { + "period": 3820867, + "thread": 10 + } + } + ], + "AU1BDuiKD8A9gSHtoP5D26HBGJTf4UsBpFvuYR7vxV1XYVsZGLGy": [ + { + "amount": "102.991457723", + "slot": { + "period": 63088, + "thread": 12 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 322486, + "thread": 18 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 484827, + "thread": 6 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 539757, + "thread": 11 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 786051, + "thread": 10 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 828715, + "thread": 5 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1093892, + "thread": 24 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1240421, + "thread": 18 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1330380, + "thread": 7 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1561639, + "thread": 17 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1693387, + "thread": 6 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 1881687, + "thread": 10 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2086922, + "thread": 25 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2226314, + "thread": 29 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2378044, + "thread": 27 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2488115, + "thread": 15 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2755830, + "thread": 16 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2901172, + "thread": 25 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 2958691, + "thread": 0 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 3225034, + "thread": 6 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 3376378, + "thread": 20 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 3603812, + "thread": 24 + } + }, + { + "amount": "102.991457723", + "slot": { + "period": 3769992, + "thread": 7 + } + }, + { + "amount": "102.991457715", + "slot": { + "period": 3945197, + "thread": 11 + } + } + ], + "AU1BE4pSrCfWZkB87zcfozRWuX55cGSDKbq8w85jqa63VkLY21We": [ + { + "amount": "107.914490115", + "slot": { + "period": 51132, + "thread": 23 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 280456, + "thread": 26 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 470970, + "thread": 18 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 633142, + "thread": 28 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 751267, + "thread": 18 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 840739, + "thread": 31 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 998580, + "thread": 27 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 1260227, + "thread": 12 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 1412914, + "thread": 22 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 1634658, + "thread": 16 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 1705709, + "thread": 2 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 1952171, + "thread": 18 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2084962, + "thread": 29 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2198888, + "thread": 27 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2307053, + "thread": 31 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2585606, + "thread": 16 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2638040, + "thread": 20 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 2869404, + "thread": 4 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 3114152, + "thread": 22 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 3222958, + "thread": 14 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 3298903, + "thread": 13 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 3510512, + "thread": 0 + } + }, + { + "amount": "107.914490115", + "slot": { + "period": 3720163, + "thread": 29 + } + }, + { + "amount": "107.914490113", + "slot": { + "period": 3930763, + "thread": 7 + } + } + ], + "AU1BEApedQLng5Dz6dSBePQwsf8LDBi189HmwfDsbnEaBYC6A3Gd": [ + { + "amount": "93.728005609", + "slot": { + "period": 160719, + "thread": 25 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 291838, + "thread": 30 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 450386, + "thread": 5 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 556931, + "thread": 27 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 811235, + "thread": 30 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 857641, + "thread": 31 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 983328, + "thread": 21 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 1218287, + "thread": 31 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 1332301, + "thread": 27 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 1628217, + "thread": 9 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 1647845, + "thread": 10 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 1832948, + "thread": 20 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2025733, + "thread": 22 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2187018, + "thread": 24 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2411795, + "thread": 14 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2618411, + "thread": 10 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2767553, + "thread": 3 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2805370, + "thread": 19 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 2975500, + "thread": 25 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 3142155, + "thread": 28 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 3343373, + "thread": 13 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 3460169, + "thread": 5 + } + }, + { + "amount": "93.728005609", + "slot": { + "period": 3650021, + "thread": 27 + } + }, + { + "amount": "93.728005598", + "slot": { + "period": 3863326, + "thread": 19 + } + } + ], + "AU1BEeTL8Xwa8bvRQxvSKGDSnW23RCDnFb64kCsNAzyP6w3K5JmJ": [ + { + "amount": "165.010043643", + "slot": { + "period": 35059, + "thread": 7 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 190796, + "thread": 28 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 435407, + "thread": 9 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 586723, + "thread": 19 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 735896, + "thread": 13 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 834656, + "thread": 14 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1006013, + "thread": 21 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1306071, + "thread": 12 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1350706, + "thread": 18 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1603973, + "thread": 16 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1677129, + "thread": 15 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 1856562, + "thread": 29 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2047681, + "thread": 29 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2177197, + "thread": 28 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2319990, + "thread": 23 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2590492, + "thread": 9 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2643494, + "thread": 8 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 2808205, + "thread": 3 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 3046588, + "thread": 22 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 3265197, + "thread": 11 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 3324822, + "thread": 28 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 3574308, + "thread": 5 + } + }, + { + "amount": "165.010043643", + "slot": { + "period": 3655086, + "thread": 20 + } + }, + { + "amount": "165.010043635", + "slot": { + "period": 3912706, + "thread": 2 + } + } + ], + "AU1BFhpqiqV4urZPUsLxqDrRy3bY9JkAY5MSWHznNcw44yAx1jqR": [ + { + "amount": "1333.138520365", + "slot": { + "period": 65814, + "thread": 4 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 280412, + "thread": 20 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 390388, + "thread": 31 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 612030, + "thread": 3 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 765001, + "thread": 12 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 948837, + "thread": 1 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1052930, + "thread": 7 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1156090, + "thread": 16 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1389086, + "thread": 11 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1633039, + "thread": 3 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1673790, + "thread": 26 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 1958882, + "thread": 4 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2121097, + "thread": 15 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2262626, + "thread": 18 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2317227, + "thread": 20 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2508102, + "thread": 5 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2722581, + "thread": 27 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 2791901, + "thread": 15 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 3120776, + "thread": 9 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 3124083, + "thread": 29 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 3352365, + "thread": 7 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 3531400, + "thread": 7 + } + }, + { + "amount": "1333.138520365", + "slot": { + "period": 3691128, + "thread": 19 + } + }, + { + "amount": "1333.138520363", + "slot": { + "period": 3806695, + "thread": 6 + } + } + ], + "AU1BFw7StyZw4ZRYdCAhx6wpuuuCmr5JKGAmCN8uu5nj5UNGb6ai": [ + { + "amount": "53.191612213", + "slot": { + "period": 35300, + "thread": 19 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 283029, + "thread": 6 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 437611, + "thread": 9 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 544344, + "thread": 9 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 776167, + "thread": 31 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 907608, + "thread": 10 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1138062, + "thread": 12 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1265900, + "thread": 9 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1340480, + "thread": 1 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1599465, + "thread": 20 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1784167, + "thread": 24 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1952054, + "thread": 21 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 1987120, + "thread": 5 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 2210144, + "thread": 13 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 2415599, + "thread": 5 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 2502567, + "thread": 10 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 2790353, + "thread": 9 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 2930348, + "thread": 2 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 3026704, + "thread": 17 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 3210340, + "thread": 1 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 3290955, + "thread": 20 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 3510272, + "thread": 1 + } + }, + { + "amount": "53.191612213", + "slot": { + "period": 3675375, + "thread": 10 + } + }, + { + "amount": "53.191612218", + "slot": { + "period": 3791950, + "thread": 29 + } + } + ], + "AU1BH9WPcQVZfwT3chY5vtzNY79VPPeB8Ctxyjm3w3esd9RbdEBR": [ + { + "amount": "152.125554119", + "slot": { + "period": 100901, + "thread": 10 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 216557, + "thread": 24 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 341087, + "thread": 5 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 520110, + "thread": 9 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 797497, + "thread": 11 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 861403, + "thread": 3 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1043111, + "thread": 8 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1310939, + "thread": 14 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1348590, + "thread": 28 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1487465, + "thread": 4 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1690444, + "thread": 22 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1840946, + "thread": 4 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 1980444, + "thread": 8 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 2224710, + "thread": 11 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 2379774, + "thread": 14 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 2483292, + "thread": 3 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 2767304, + "thread": 4 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 2905469, + "thread": 9 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 3024143, + "thread": 15 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 3276180, + "thread": 9 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 3289975, + "thread": 4 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 3502480, + "thread": 18 + } + }, + { + "amount": "152.125554119", + "slot": { + "period": 3766944, + "thread": 3 + } + }, + { + "amount": "152.125554128", + "slot": { + "period": 3859300, + "thread": 24 + } + } + ], + "AU1BHK6rCcPvokJznFbRyv3KshrSh3qdnHkJyNx4VGQqE789VzE1": [ + { + "amount": "150.524874202", + "slot": { + "period": 33920, + "thread": 12 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 185822, + "thread": 9 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 369848, + "thread": 29 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 500427, + "thread": 9 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 681134, + "thread": 1 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 931025, + "thread": 22 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1108168, + "thread": 17 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1167706, + "thread": 23 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1458576, + "thread": 4 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1619522, + "thread": 20 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1665261, + "thread": 1 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 1899280, + "thread": 30 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2010264, + "thread": 23 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2255471, + "thread": 23 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2408343, + "thread": 27 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2586649, + "thread": 3 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2700631, + "thread": 10 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 2874588, + "thread": 14 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 3073991, + "thread": 23 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 3140706, + "thread": 24 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 3431213, + "thread": 8 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 3560881, + "thread": 17 + } + }, + { + "amount": "150.524874202", + "slot": { + "period": 3758473, + "thread": 2 + } + }, + { + "amount": "150.524874206", + "slot": { + "period": 3907843, + "thread": 17 + } + } + ], + "AU1BHLxLiVV8GZ4F5gvvwjSynek1C8wPmhRF555g7auoGMPfKuC8": [ + { + "amount": "64.375313628", + "slot": { + "period": 28408, + "thread": 31 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 319107, + "thread": 19 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 440184, + "thread": 27 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 530244, + "thread": 29 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 677746, + "thread": 9 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 912803, + "thread": 1 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 989260, + "thread": 20 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 1232800, + "thread": 7 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 1416485, + "thread": 19 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 1582744, + "thread": 0 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 1743255, + "thread": 26 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 1821022, + "thread": 29 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2140982, + "thread": 7 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2172268, + "thread": 16 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2419083, + "thread": 8 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2593296, + "thread": 12 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2651144, + "thread": 24 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 2792858, + "thread": 5 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 3071162, + "thread": 6 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 3240139, + "thread": 15 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 3432967, + "thread": 18 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 3466761, + "thread": 27 + } + }, + { + "amount": "64.375313628", + "slot": { + "period": 3636557, + "thread": 6 + } + }, + { + "amount": "64.375313626", + "slot": { + "period": 3901819, + "thread": 30 + } + } + ], + "AU1BHRCbQctVMQriG5WK5dK3hgnyrJoHMtzAsiiJf6XSbP9PUFKc": [ + { + "amount": "120.955007021", + "slot": { + "period": 96959, + "thread": 13 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 318177, + "thread": 31 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 406308, + "thread": 7 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 575701, + "thread": 22 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 683564, + "thread": 10 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 861173, + "thread": 23 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1035667, + "thread": 18 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1268012, + "thread": 20 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1418173, + "thread": 30 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1546262, + "thread": 30 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1758553, + "thread": 5 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 1849160, + "thread": 29 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2041183, + "thread": 27 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2217748, + "thread": 30 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2429503, + "thread": 20 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2544846, + "thread": 24 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2656842, + "thread": 0 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 2827414, + "thread": 19 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 3116875, + "thread": 7 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 3198084, + "thread": 30 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 3417947, + "thread": 30 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 3612182, + "thread": 28 + } + }, + { + "amount": "120.955007021", + "slot": { + "period": 3647117, + "thread": 21 + } + }, + { + "amount": "120.955007010", + "slot": { + "period": 3904240, + "thread": 24 + } + } + ], + "AU1BJi2cjdtqY26D3uCAzYUda1whwegUa4wUPMGntpyiFeMivvab": [ + { + "amount": "122.979835580", + "slot": { + "period": 43805, + "thread": 29 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 233849, + "thread": 27 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 445934, + "thread": 19 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 642731, + "thread": 31 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 779450, + "thread": 13 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 924805, + "thread": 23 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1127094, + "thread": 14 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1219261, + "thread": 14 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1425481, + "thread": 12 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1506701, + "thread": 5 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1749325, + "thread": 28 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 1964620, + "thread": 21 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2115421, + "thread": 0 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2282247, + "thread": 1 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2340212, + "thread": 15 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2479272, + "thread": 16 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2708759, + "thread": 19 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2936294, + "thread": 12 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 2958946, + "thread": 6 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 3174405, + "thread": 9 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 3334080, + "thread": 7 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 3570273, + "thread": 14 + } + }, + { + "amount": "122.979835580", + "slot": { + "period": 3726636, + "thread": 3 + } + }, + { + "amount": "122.979835574", + "slot": { + "period": 3888285, + "thread": 11 + } + } + ], + "AU1BKv45eTAWf48Jy5EWvVthP3cB1LVF7VRe5gXP8a8RsGUHM3dV": [ + { + "amount": "5833.333333333", + "slot": { + "period": 27871, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 219505, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 371355, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 574297, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 754256, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 979129, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1107538, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1229739, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1350536, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1576120, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1799474, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1893465, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2132293, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2289005, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2334068, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2573706, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2783753, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2920840, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2984444, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3252596, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3313633, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3576820, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3765304, + "thread": 26 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3934698, + "thread": 3 + } + } + ], + "AU1BLL6AkpjVsn6egmQoxMiY8S9vHAbTucKQnkp7NA7rPTzzvSoT": [ + { + "amount": "102.877609217", + "slot": { + "period": 71132, + "thread": 28 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 194017, + "thread": 0 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 486652, + "thread": 30 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 543999, + "thread": 10 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 659998, + "thread": 17 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 925248, + "thread": 5 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1036334, + "thread": 14 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1262244, + "thread": 30 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1341013, + "thread": 10 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1571120, + "thread": 22 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1708552, + "thread": 8 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 1946529, + "thread": 24 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2102172, + "thread": 12 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2285209, + "thread": 26 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2405088, + "thread": 12 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2599033, + "thread": 19 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2656032, + "thread": 24 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 2904162, + "thread": 15 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 3068044, + "thread": 12 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 3280786, + "thread": 25 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 3439370, + "thread": 1 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 3584490, + "thread": 4 + } + }, + { + "amount": "102.877609217", + "slot": { + "period": 3723071, + "thread": 19 + } + }, + { + "amount": "102.877609209", + "slot": { + "period": 3849378, + "thread": 19 + } + } + ], + "AU1BLRgtNi1yVD3j2JMLvs7vyoYRtDVeh4EEr8QKLV1hxMWLZsBq": [ + { + "amount": "465.660030043", + "slot": { + "period": 164515, + "thread": 5 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 243827, + "thread": 6 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 383771, + "thread": 24 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 566717, + "thread": 10 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 764041, + "thread": 24 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 880328, + "thread": 17 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1119769, + "thread": 14 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1275670, + "thread": 17 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1329469, + "thread": 6 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1628811, + "thread": 4 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1702222, + "thread": 16 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 1933255, + "thread": 2 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2112478, + "thread": 27 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2235169, + "thread": 9 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2355754, + "thread": 13 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2567720, + "thread": 4 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2728043, + "thread": 11 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 2860940, + "thread": 3 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 3027320, + "thread": 13 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 3245930, + "thread": 21 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 3362810, + "thread": 20 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 3543509, + "thread": 13 + } + }, + { + "amount": "465.660030043", + "slot": { + "period": 3743861, + "thread": 0 + } + }, + { + "amount": "465.660030033", + "slot": { + "period": 3781510, + "thread": 8 + } + } + ], + "AU1BLjX5VEC9uwYSrzxj7caYXPSma4tJ76P8x2bgohqk9BS3VEdM": [ + { + "amount": "220.393802536", + "slot": { + "period": 85298, + "thread": 10 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 174676, + "thread": 10 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 395802, + "thread": 28 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 550817, + "thread": 10 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 714491, + "thread": 14 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 839581, + "thread": 27 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1146890, + "thread": 9 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1152343, + "thread": 13 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1467642, + "thread": 30 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1536653, + "thread": 5 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1658929, + "thread": 8 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 1952849, + "thread": 20 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2052065, + "thread": 21 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2185611, + "thread": 21 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2313759, + "thread": 11 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2607838, + "thread": 5 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2742231, + "thread": 20 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2844371, + "thread": 28 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 2993224, + "thread": 20 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 3276346, + "thread": 19 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 3439172, + "thread": 2 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 3499561, + "thread": 6 + } + }, + { + "amount": "220.393802536", + "slot": { + "period": 3729582, + "thread": 27 + } + }, + { + "amount": "220.393802530", + "slot": { + "period": 3829325, + "thread": 30 + } + } + ], + "AU1BLuZ38r8vNTnYSrsmZ92AWzFjJ49AGqzQCUTunqsBCSxj4sDG": [ + { + "amount": "69.373465329", + "slot": { + "period": 119279, + "thread": 21 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 185518, + "thread": 18 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 409927, + "thread": 28 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 530846, + "thread": 3 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 735207, + "thread": 11 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 900538, + "thread": 12 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1146203, + "thread": 17 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1280579, + "thread": 25 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1357874, + "thread": 4 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1638332, + "thread": 20 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1697980, + "thread": 10 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 1809760, + "thread": 2 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2123528, + "thread": 11 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2293099, + "thread": 25 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2433018, + "thread": 16 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2547809, + "thread": 22 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2697643, + "thread": 15 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2856025, + "thread": 14 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 2956707, + "thread": 10 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 3227775, + "thread": 12 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 3400733, + "thread": 3 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 3590263, + "thread": 17 + } + }, + { + "amount": "69.373465329", + "slot": { + "period": 3761338, + "thread": 30 + } + }, + { + "amount": "69.373465338", + "slot": { + "period": 3863885, + "thread": 18 + } + } + ], + "AU1BNCi534SCwHJArnjKNfEda5iQgUfY547mDZmMAWYDPWFL2NmZ": [ + { + "amount": "150.018464449", + "slot": { + "period": 46966, + "thread": 25 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 283977, + "thread": 9 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 361326, + "thread": 10 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 511188, + "thread": 21 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 819457, + "thread": 1 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 948901, + "thread": 12 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1081405, + "thread": 24 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1257926, + "thread": 27 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1436616, + "thread": 27 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1631027, + "thread": 11 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1726229, + "thread": 25 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1858957, + "thread": 23 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 1979428, + "thread": 12 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 2193721, + "thread": 20 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 2398720, + "thread": 29 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 2553491, + "thread": 8 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 2665678, + "thread": 5 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 2847764, + "thread": 9 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 3093989, + "thread": 19 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 3250301, + "thread": 25 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 3295226, + "thread": 2 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 3602723, + "thread": 15 + } + }, + { + "amount": "150.018464449", + "slot": { + "period": 3627658, + "thread": 20 + } + }, + { + "amount": "150.018464438", + "slot": { + "period": 3877390, + "thread": 28 + } + } + ], + "AU1BPWB3ZdJiXkHzZAcgzKhmBs9cngryYuMScqKViRZ41CQVQuzJ": [ + { + "amount": "603.498429595", + "slot": { + "period": 110924, + "thread": 11 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 216683, + "thread": 12 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 399806, + "thread": 17 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 543134, + "thread": 4 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 701998, + "thread": 23 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 896827, + "thread": 2 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1043758, + "thread": 24 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1214338, + "thread": 14 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1432589, + "thread": 9 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1520780, + "thread": 15 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1693245, + "thread": 19 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 1825390, + "thread": 14 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2131467, + "thread": 21 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2281805, + "thread": 6 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2311845, + "thread": 25 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2514035, + "thread": 17 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2730365, + "thread": 13 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 2906106, + "thread": 25 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 3065303, + "thread": 27 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 3229208, + "thread": 23 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 3411544, + "thread": 24 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 3508513, + "thread": 27 + } + }, + { + "amount": "603.498429595", + "slot": { + "period": 3698733, + "thread": 18 + } + }, + { + "amount": "603.498429590", + "slot": { + "period": 3917660, + "thread": 11 + } + } + ], + "AU1BQ4ob7kA3YMiL6maHEiTi5n5VgrBkbk2SS7b54tiv8d8XmvsA": [ + { + "amount": "108.545041473", + "slot": { + "period": 31164, + "thread": 6 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 236744, + "thread": 6 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 358825, + "thread": 1 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 536224, + "thread": 25 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 811958, + "thread": 4 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 869004, + "thread": 21 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1141195, + "thread": 19 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1150980, + "thread": 17 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1402966, + "thread": 2 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1490159, + "thread": 7 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1783540, + "thread": 3 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 1834059, + "thread": 29 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2081000, + "thread": 21 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2236005, + "thread": 27 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2326560, + "thread": 5 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2528105, + "thread": 6 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2669430, + "thread": 13 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 2836505, + "thread": 30 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 3107517, + "thread": 17 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 3280624, + "thread": 23 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 3317886, + "thread": 11 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 3556521, + "thread": 28 + } + }, + { + "amount": "108.545041473", + "slot": { + "period": 3727116, + "thread": 7 + } + }, + { + "amount": "108.545041471", + "slot": { + "period": 3873846, + "thread": 11 + } + } + ], + "AU1BQHuv4MTAwUboyTovFkkMurfV2HRjssZzf1QCz5FxNi7gcNR7": [ + { + "amount": "159.624760371", + "slot": { + "period": 108971, + "thread": 18 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 252251, + "thread": 16 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 408149, + "thread": 6 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 570089, + "thread": 8 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 727876, + "thread": 0 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 967457, + "thread": 16 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 987897, + "thread": 18 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 1287963, + "thread": 24 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 1470532, + "thread": 19 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 1600839, + "thread": 19 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 1674866, + "thread": 20 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 1936017, + "thread": 22 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2007738, + "thread": 27 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2178110, + "thread": 24 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2353866, + "thread": 24 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2559821, + "thread": 30 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2783834, + "thread": 31 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2842342, + "thread": 5 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 2989713, + "thread": 23 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 3249502, + "thread": 21 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 3390464, + "thread": 18 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 3489951, + "thread": 7 + } + }, + { + "amount": "159.624760371", + "slot": { + "period": 3688440, + "thread": 0 + } + }, + { + "amount": "159.624760376", + "slot": { + "period": 3879926, + "thread": 4 + } + } + ], + "AU1BQWh5psm37Y4A6wVuZd8fQSokssNwc9ahLRQERRBnVpW2wUyV": [ + { + "amount": "117.163066546", + "slot": { + "period": 90702, + "thread": 21 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 247923, + "thread": 5 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 362356, + "thread": 6 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 570063, + "thread": 15 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 662714, + "thread": 18 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 982654, + "thread": 23 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1070027, + "thread": 16 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1300369, + "thread": 13 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1334529, + "thread": 8 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1596602, + "thread": 16 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1783457, + "thread": 15 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 1931118, + "thread": 3 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2014413, + "thread": 11 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2156753, + "thread": 28 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2450107, + "thread": 24 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2513382, + "thread": 1 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2695887, + "thread": 0 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 2859022, + "thread": 7 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 3061241, + "thread": 11 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 3226274, + "thread": 13 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 3409474, + "thread": 22 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 3478985, + "thread": 7 + } + }, + { + "amount": "117.163066546", + "slot": { + "period": 3722596, + "thread": 26 + } + }, + { + "amount": "117.163066535", + "slot": { + "period": 3866712, + "thread": 24 + } + } + ], + "AU1BReHrrBJrv6ZKWfQXBXtT2gUBG8ipFCKDMdhhuRs75dXCJW2o": [ + { + "amount": "312.807527813", + "slot": { + "period": 162351, + "thread": 16 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 173904, + "thread": 16 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 459356, + "thread": 8 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 631731, + "thread": 23 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 802049, + "thread": 16 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 879969, + "thread": 8 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1066610, + "thread": 20 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1209698, + "thread": 11 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1399006, + "thread": 22 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1522727, + "thread": 29 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1706302, + "thread": 27 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 1903202, + "thread": 24 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2142803, + "thread": 6 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2161425, + "thread": 14 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2298877, + "thread": 16 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2500076, + "thread": 28 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2765416, + "thread": 10 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 2847255, + "thread": 30 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 3100138, + "thread": 31 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 3142768, + "thread": 25 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 3338493, + "thread": 0 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 3464027, + "thread": 3 + } + }, + { + "amount": "312.807527813", + "slot": { + "period": 3756159, + "thread": 30 + } + }, + { + "amount": "312.807527812", + "slot": { + "period": 3853984, + "thread": 21 + } + } + ], + "AU1BRpScSK53Zy2UAxcBJd4iqVHRiKQS9mzcW3opcudgykcEb1h5": [ + { + "amount": "127.402009595", + "slot": { + "period": 94071, + "thread": 4 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 192098, + "thread": 26 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 373131, + "thread": 6 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 542290, + "thread": 9 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 704892, + "thread": 30 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 924520, + "thread": 6 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1130995, + "thread": 4 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1276017, + "thread": 16 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1397786, + "thread": 6 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1643741, + "thread": 9 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1662721, + "thread": 8 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 1833608, + "thread": 7 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2024744, + "thread": 28 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2261806, + "thread": 18 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2343544, + "thread": 18 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2515460, + "thread": 5 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2711498, + "thread": 21 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 2886630, + "thread": 26 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 3081142, + "thread": 20 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 3205532, + "thread": 17 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 3435554, + "thread": 8 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 3600561, + "thread": 9 + } + }, + { + "amount": "127.402009595", + "slot": { + "period": 3711505, + "thread": 0 + } + }, + { + "amount": "127.402009598", + "slot": { + "period": 3890689, + "thread": 26 + } + } + ], + "AU1BT6jdnSmdwkRXXw8Dqm8FjgDEPUJB64d8rx53xSwnbpSD9Agx": [ + { + "amount": "511.862970374", + "slot": { + "period": 12355, + "thread": 28 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 248686, + "thread": 21 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 390638, + "thread": 25 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 572174, + "thread": 26 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 663062, + "thread": 7 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 842888, + "thread": 18 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1122131, + "thread": 12 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1289096, + "thread": 0 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1370447, + "thread": 10 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1562576, + "thread": 11 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1727218, + "thread": 15 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 1822506, + "thread": 30 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2083662, + "thread": 7 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2209742, + "thread": 3 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2339002, + "thread": 22 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2478141, + "thread": 10 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2686244, + "thread": 24 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 2824457, + "thread": 24 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 3001619, + "thread": 31 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 3159174, + "thread": 3 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 3403304, + "thread": 9 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 3509072, + "thread": 14 + } + }, + { + "amount": "511.862970374", + "slot": { + "period": 3777515, + "thread": 18 + } + }, + { + "amount": "511.862970370", + "slot": { + "period": 3825367, + "thread": 5 + } + } + ], + "AU1BTDaDhHquXWTuGqurkkZW4uHFAQpfVcqk5pqCBD1gfJL7vaGK": [ + { + "amount": "637.817468667", + "slot": { + "period": 23461, + "thread": 6 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 262913, + "thread": 10 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 331555, + "thread": 20 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 532800, + "thread": 1 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 703731, + "thread": 0 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 975229, + "thread": 4 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1118577, + "thread": 19 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1295777, + "thread": 13 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1440419, + "thread": 27 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1631635, + "thread": 1 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1730095, + "thread": 1 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 1896025, + "thread": 29 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2106014, + "thread": 29 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2242191, + "thread": 13 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2458386, + "thread": 20 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2511323, + "thread": 5 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2714954, + "thread": 20 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 2792411, + "thread": 9 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 3088405, + "thread": 29 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 3259920, + "thread": 1 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 3391733, + "thread": 2 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 3546214, + "thread": 26 + } + }, + { + "amount": "637.817468667", + "slot": { + "period": 3757867, + "thread": 11 + } + }, + { + "amount": "637.817468663", + "slot": { + "period": 3818222, + "thread": 17 + } + } + ], + "AU1BTQQaXyjiz3gasTjgm4WdSY9kSxFiD6sYnQfv6Gd9RGPLWrpy": [ + { + "amount": "424.850427087", + "slot": { + "period": 150626, + "thread": 16 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 248169, + "thread": 13 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 420609, + "thread": 16 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 597170, + "thread": 7 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 785880, + "thread": 1 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 977383, + "thread": 23 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1106828, + "thread": 0 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1181979, + "thread": 14 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1429284, + "thread": 9 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1543437, + "thread": 25 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1717094, + "thread": 7 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 1842425, + "thread": 29 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2023848, + "thread": 28 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2182043, + "thread": 0 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2440742, + "thread": 27 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2557343, + "thread": 1 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2728264, + "thread": 27 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 2852693, + "thread": 30 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 3062742, + "thread": 5 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 3178336, + "thread": 13 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 3409184, + "thread": 10 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 3608726, + "thread": 16 + } + }, + { + "amount": "424.850427087", + "slot": { + "period": 3715672, + "thread": 19 + } + }, + { + "amount": "424.850427084", + "slot": { + "period": 3828503, + "thread": 1 + } + } + ], + "AU1BTjqMg5QQ6U7xvXvm6CUtdLKy3ao6jR5AyFpZLHCBuohSsRYt": [ + { + "amount": "153.182164425", + "slot": { + "period": 116033, + "thread": 3 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 307555, + "thread": 21 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 404325, + "thread": 10 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 499242, + "thread": 27 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 662542, + "thread": 6 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 826710, + "thread": 4 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1038123, + "thread": 21 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1215335, + "thread": 30 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1415405, + "thread": 25 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1618677, + "thread": 1 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1725026, + "thread": 30 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 1858926, + "thread": 3 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2132185, + "thread": 24 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2242407, + "thread": 21 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2409014, + "thread": 29 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2542743, + "thread": 21 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2782163, + "thread": 7 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 2939166, + "thread": 30 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 3113761, + "thread": 27 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 3184799, + "thread": 18 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 3381265, + "thread": 2 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 3500016, + "thread": 31 + } + }, + { + "amount": "153.182164425", + "slot": { + "period": 3743409, + "thread": 14 + } + }, + { + "amount": "153.182164416", + "slot": { + "period": 3946925, + "thread": 31 + } + } + ], + "AU1BU7uLx85nNQFRz2FcrESnjkULw3vUkhYFe9pTpYrzupLpYaz6": [ + { + "amount": "119.974212107", + "slot": { + "period": 17576, + "thread": 24 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 229987, + "thread": 21 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 410948, + "thread": 3 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 586117, + "thread": 31 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 768100, + "thread": 30 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 851266, + "thread": 7 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1092024, + "thread": 1 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1193065, + "thread": 8 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1467434, + "thread": 16 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1584498, + "thread": 20 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1738715, + "thread": 16 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 1872734, + "thread": 7 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2066166, + "thread": 29 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2234849, + "thread": 30 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2434862, + "thread": 22 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2494684, + "thread": 18 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2649074, + "thread": 11 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2903573, + "thread": 11 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 2979344, + "thread": 2 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 3177122, + "thread": 1 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 3439978, + "thread": 25 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 3458297, + "thread": 29 + } + }, + { + "amount": "119.974212107", + "slot": { + "period": 3651988, + "thread": 20 + } + }, + { + "amount": "119.974212117", + "slot": { + "period": 3914063, + "thread": 29 + } + } + ], + "AU1BUXXr5e2XsDcHS935eQpurZXfoN1PNWMfBnpfFPdBmPpnCPmU": [ + { + "amount": "201.544472604", + "slot": { + "period": 127148, + "thread": 20 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 218585, + "thread": 14 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 443550, + "thread": 2 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 592213, + "thread": 4 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 688981, + "thread": 19 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 848278, + "thread": 5 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1117310, + "thread": 10 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1305627, + "thread": 17 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1371886, + "thread": 11 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1589652, + "thread": 17 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1777356, + "thread": 4 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 1957904, + "thread": 8 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2109098, + "thread": 6 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2260112, + "thread": 31 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2340347, + "thread": 30 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2563215, + "thread": 7 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2702683, + "thread": 20 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 2938357, + "thread": 16 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 3078112, + "thread": 10 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 3127091, + "thread": 23 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 3315749, + "thread": 13 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 3460678, + "thread": 24 + } + }, + { + "amount": "201.544472604", + "slot": { + "period": 3688223, + "thread": 0 + } + }, + { + "amount": "201.544472601", + "slot": { + "period": 3816688, + "thread": 17 + } + } + ], + "AU1BVw6Qsz1xeHbzgCZihWPCQXEJ5vAnDQBUqbhWYVAXjjZsSEHF": [ + { + "amount": "116.205496149", + "slot": { + "period": 71070, + "thread": 7 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 169277, + "thread": 4 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 429897, + "thread": 13 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 624133, + "thread": 19 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 706153, + "thread": 6 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 881555, + "thread": 19 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1025269, + "thread": 8 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1154298, + "thread": 14 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1437745, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1494720, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1725807, + "thread": 18 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1812182, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 1992500, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 2231574, + "thread": 25 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 2452292, + "thread": 26 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 2586284, + "thread": 22 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 2628713, + "thread": 23 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 2950528, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 3007414, + "thread": 9 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 3168283, + "thread": 12 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 3446970, + "thread": 0 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 3548464, + "thread": 4 + } + }, + { + "amount": "116.205496149", + "slot": { + "period": 3754098, + "thread": 1 + } + }, + { + "amount": "116.205496159", + "slot": { + "period": 3809698, + "thread": 11 + } + } + ], + "AU1BXyHZCBPCsCkTDXEYtHumtgYCC9sKyxVhMqBrd3krbE33yQju": [ + { + "amount": "429.372847464", + "slot": { + "period": 22974, + "thread": 17 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 271210, + "thread": 31 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 399940, + "thread": 3 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 511547, + "thread": 25 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 708822, + "thread": 14 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 927297, + "thread": 2 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1076138, + "thread": 30 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1165604, + "thread": 9 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1469272, + "thread": 18 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1642665, + "thread": 3 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1747351, + "thread": 0 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 1837095, + "thread": 7 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2045544, + "thread": 16 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2262029, + "thread": 21 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2373864, + "thread": 22 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2464611, + "thread": 14 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2744930, + "thread": 30 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 2885776, + "thread": 2 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3062193, + "thread": 27 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3250228, + "thread": 29 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3334266, + "thread": 15 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3527988, + "thread": 17 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3702303, + "thread": 31 + } + }, + { + "amount": "429.372847464", + "slot": { + "period": 3857180, + "thread": 27 + } + } + ], + "AU1BYp3JHp6f7XSgxjmig9puSqw849uBgfgT4pCLvFNjmArkNkBX": [ + { + "amount": "270.233239251", + "slot": { + "period": 16333, + "thread": 22 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 179932, + "thread": 14 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 474307, + "thread": 12 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 509666, + "thread": 3 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 788361, + "thread": 22 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 944041, + "thread": 7 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1093290, + "thread": 10 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1240804, + "thread": 19 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1370022, + "thread": 28 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1559559, + "thread": 12 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1802369, + "thread": 13 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 1858590, + "thread": 24 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2091421, + "thread": 14 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2230892, + "thread": 1 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2396890, + "thread": 3 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2622201, + "thread": 14 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2770853, + "thread": 6 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 2836296, + "thread": 15 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 3057000, + "thread": 23 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 3260143, + "thread": 31 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 3348086, + "thread": 3 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 3462689, + "thread": 27 + } + }, + { + "amount": "270.233239251", + "slot": { + "period": 3715498, + "thread": 7 + } + }, + { + "amount": "270.233239258", + "slot": { + "period": 3870501, + "thread": 12 + } + } + ], + "AU1BakoCs6XXTUX1aQuHATM1NiUmBULKwsGg6CSjQAL3N5NZiYFh": [ + { + "amount": "57.413566149", + "slot": { + "period": 31683, + "thread": 23 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 215560, + "thread": 11 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 356418, + "thread": 27 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 640819, + "thread": 25 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 674455, + "thread": 9 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 847430, + "thread": 4 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1076374, + "thread": 9 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1311322, + "thread": 15 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1400487, + "thread": 13 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1602151, + "thread": 6 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1695529, + "thread": 12 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 1974997, + "thread": 3 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2050111, + "thread": 15 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2158450, + "thread": 30 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2446088, + "thread": 28 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2614057, + "thread": 10 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2765806, + "thread": 28 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 2953664, + "thread": 9 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 3060890, + "thread": 20 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 3176732, + "thread": 30 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 3408149, + "thread": 2 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 3546596, + "thread": 7 + } + }, + { + "amount": "57.413566149", + "slot": { + "period": 3724815, + "thread": 7 + } + }, + { + "amount": "57.413566154", + "slot": { + "period": 3835198, + "thread": 12 + } + } + ], + "AU1Bb9tijLodENUtK5DKdLWPxdFc2vB3oMcbMKyxdWrD8yf83TeV": [ + { + "amount": "139.531068462", + "slot": { + "period": 15651, + "thread": 18 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 189281, + "thread": 9 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 435569, + "thread": 30 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 648011, + "thread": 7 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 704018, + "thread": 24 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 928751, + "thread": 23 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1142243, + "thread": 20 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1224493, + "thread": 8 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1459335, + "thread": 12 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1575438, + "thread": 6 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1662020, + "thread": 12 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 1814245, + "thread": 5 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2080201, + "thread": 16 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2178241, + "thread": 11 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2452446, + "thread": 30 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2550520, + "thread": 28 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2672263, + "thread": 20 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2828790, + "thread": 22 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 2988143, + "thread": 10 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 3229956, + "thread": 9 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 3412813, + "thread": 13 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 3494188, + "thread": 2 + } + }, + { + "amount": "139.531068462", + "slot": { + "period": 3743018, + "thread": 10 + } + }, + { + "amount": "139.531068450", + "slot": { + "period": 3821865, + "thread": 29 + } + } + ], + "AU1BbbY8he7WvF7sYCBzYCsGSMzhtF98hTa2RBfANnQUV8h9Swdh": [ + { + "amount": "469.116691814", + "slot": { + "period": 54163, + "thread": 4 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 245392, + "thread": 8 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 406959, + "thread": 23 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 625157, + "thread": 28 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 691555, + "thread": 30 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 982774, + "thread": 12 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 985790, + "thread": 23 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 1244509, + "thread": 8 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 1470028, + "thread": 5 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 1514187, + "thread": 17 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 1693294, + "thread": 28 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 1939642, + "thread": 15 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2092039, + "thread": 14 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2254657, + "thread": 23 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2364009, + "thread": 25 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2513681, + "thread": 28 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2758989, + "thread": 16 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 2902244, + "thread": 29 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 3005060, + "thread": 5 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 3121856, + "thread": 13 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 3319431, + "thread": 17 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 3506600, + "thread": 26 + } + }, + { + "amount": "469.116691814", + "slot": { + "period": 3678411, + "thread": 15 + } + }, + { + "amount": "469.116691823", + "slot": { + "period": 3853787, + "thread": 22 + } + } + ], + "AU1Bbqk8G8d1TDobBQHkgkXvHjQPFLeWkUEswT7Rf1hakUVvDQ4N": [ + { + "amount": "127.367949749", + "slot": { + "period": 94763, + "thread": 5 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 245335, + "thread": 28 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 437662, + "thread": 10 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 583599, + "thread": 4 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 710982, + "thread": 13 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 944838, + "thread": 11 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1073554, + "thread": 18 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1288572, + "thread": 15 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1464214, + "thread": 30 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1616419, + "thread": 10 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1762455, + "thread": 6 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 1890415, + "thread": 22 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2105705, + "thread": 3 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2236159, + "thread": 15 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2310801, + "thread": 21 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2554974, + "thread": 22 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2651159, + "thread": 7 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 2818468, + "thread": 16 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 3094478, + "thread": 25 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 3227289, + "thread": 20 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 3410977, + "thread": 0 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 3508495, + "thread": 13 + } + }, + { + "amount": "127.367949749", + "slot": { + "period": 3763464, + "thread": 18 + } + }, + { + "amount": "127.367949740", + "slot": { + "period": 3792794, + "thread": 10 + } + } + ], + "AU1BcCWCfgYumrWfF5i7uth4TN5c8HGuf6j8mQNpNoeSr6EeYDw8": [ + { + "amount": "67.648322911", + "slot": { + "period": 69327, + "thread": 27 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 314766, + "thread": 0 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 438454, + "thread": 29 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 544881, + "thread": 12 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 740801, + "thread": 22 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 925598, + "thread": 30 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1126968, + "thread": 24 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1215211, + "thread": 11 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1410208, + "thread": 20 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1572800, + "thread": 24 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1747387, + "thread": 23 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 1923754, + "thread": 16 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2048938, + "thread": 13 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2278344, + "thread": 6 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2428160, + "thread": 19 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2603290, + "thread": 21 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2701253, + "thread": 22 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 2891783, + "thread": 6 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 3081163, + "thread": 7 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 3182725, + "thread": 15 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 3344783, + "thread": 21 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 3461837, + "thread": 16 + } + }, + { + "amount": "67.648322911", + "slot": { + "period": 3697292, + "thread": 19 + } + }, + { + "amount": "67.648322909", + "slot": { + "period": 3940846, + "thread": 8 + } + } + ], + "AU1BcjSE5yCoRqL3KgJagr1SQvpmR8miJuSxh8rGyZhPgBWV7gLs": [ + { + "amount": "348.022113011", + "slot": { + "period": 112588, + "thread": 29 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 299741, + "thread": 26 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 393107, + "thread": 6 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 504017, + "thread": 24 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 701270, + "thread": 5 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 981088, + "thread": 8 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1134719, + "thread": 28 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1223702, + "thread": 18 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1378702, + "thread": 5 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1565100, + "thread": 10 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1676017, + "thread": 2 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 1888433, + "thread": 1 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2073562, + "thread": 30 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2236579, + "thread": 14 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2453759, + "thread": 21 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2621978, + "thread": 15 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2712063, + "thread": 26 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 2838343, + "thread": 18 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 3004794, + "thread": 19 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 3270725, + "thread": 30 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 3406581, + "thread": 9 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 3544117, + "thread": 12 + } + }, + { + "amount": "348.022113011", + "slot": { + "period": 3775404, + "thread": 0 + } + }, + { + "amount": "348.022113007", + "slot": { + "period": 3933633, + "thread": 25 + } + } + ], + "AU1Bd9ey4zuAPpoSFYN7cMV5QQuJkcr8LNEW7qub97jKupGSV5Ys": [ + { + "amount": "697.676805227", + "slot": { + "period": 43577, + "thread": 26 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 280504, + "thread": 21 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 476110, + "thread": 14 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 648886, + "thread": 30 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 693366, + "thread": 14 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 824005, + "thread": 29 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 993910, + "thread": 30 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 1256958, + "thread": 1 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 1427260, + "thread": 15 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 1523953, + "thread": 22 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 1759963, + "thread": 3 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 1903139, + "thread": 26 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2069487, + "thread": 13 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2293762, + "thread": 7 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2331119, + "thread": 6 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2507549, + "thread": 18 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2778693, + "thread": 19 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2893024, + "thread": 18 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 2999635, + "thread": 0 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 3229775, + "thread": 15 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 3345287, + "thread": 5 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 3548649, + "thread": 28 + } + }, + { + "amount": "697.676805227", + "slot": { + "period": 3648074, + "thread": 14 + } + }, + { + "amount": "697.676805222", + "slot": { + "period": 3917461, + "thread": 0 + } + } + ], + "AU1BdVj7PvMLm5bbhuYY7xYgTraAJziXKH73aFmtkkDa9BeG3hj2": [ + { + "amount": "215.863247875", + "slot": { + "period": 155216, + "thread": 10 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 195819, + "thread": 3 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 423339, + "thread": 7 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 517445, + "thread": 2 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 814047, + "thread": 6 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 955947, + "thread": 6 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1120088, + "thread": 13 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1299358, + "thread": 30 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1416035, + "thread": 5 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1618705, + "thread": 13 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1743502, + "thread": 11 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 1859073, + "thread": 27 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2010300, + "thread": 15 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2287372, + "thread": 12 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2449069, + "thread": 21 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2564834, + "thread": 10 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2640198, + "thread": 27 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 2864285, + "thread": 29 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 3064826, + "thread": 28 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 3147281, + "thread": 0 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 3422103, + "thread": 30 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 3531667, + "thread": 31 + } + }, + { + "amount": "215.863247875", + "slot": { + "period": 3711298, + "thread": 15 + } + }, + { + "amount": "215.863247878", + "slot": { + "period": 3820234, + "thread": 19 + } + } + ], + "AU1BeC8cyQLU1AVxDbz4vFB93g8fCReEd8zQky2NbCZ6MbNuqKYB": [ + { + "amount": "434.216585213", + "slot": { + "period": 161443, + "thread": 4 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 234086, + "thread": 12 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 414057, + "thread": 11 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 517747, + "thread": 20 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 686320, + "thread": 12 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 936494, + "thread": 29 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1044086, + "thread": 17 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1240218, + "thread": 10 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1435915, + "thread": 24 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1629638, + "thread": 22 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1658168, + "thread": 15 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 1970112, + "thread": 26 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2137945, + "thread": 26 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2241434, + "thread": 30 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2362189, + "thread": 28 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2608227, + "thread": 17 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2695570, + "thread": 11 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2806849, + "thread": 9 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 2970217, + "thread": 1 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 3223390, + "thread": 1 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 3367150, + "thread": 22 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 3477815, + "thread": 18 + } + }, + { + "amount": "434.216585213", + "slot": { + "period": 3636177, + "thread": 13 + } + }, + { + "amount": "434.216585214", + "slot": { + "period": 3791240, + "thread": 30 + } + } + ], + "AU1BfyApnvF5WBSedF68hwGBxRMYK64RNE2r5L25CSy3cV8wFYSH": [ + { + "amount": "52.599764676", + "slot": { + "period": 100495, + "thread": 21 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 248878, + "thread": 12 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 397907, + "thread": 1 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 503877, + "thread": 26 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 789397, + "thread": 17 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 907216, + "thread": 17 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1122489, + "thread": 19 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1169279, + "thread": 4 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1411501, + "thread": 23 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1523499, + "thread": 3 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1683673, + "thread": 8 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 1941493, + "thread": 23 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2143674, + "thread": 18 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2288210, + "thread": 20 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2335603, + "thread": 18 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2494766, + "thread": 25 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2780860, + "thread": 27 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 2851771, + "thread": 23 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 3114039, + "thread": 15 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 3230115, + "thread": 29 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 3332242, + "thread": 1 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 3488964, + "thread": 15 + } + }, + { + "amount": "52.599764676", + "slot": { + "period": 3733912, + "thread": 6 + } + }, + { + "amount": "52.599764677", + "slot": { + "period": 3809794, + "thread": 17 + } + } + ], + "AU1Bg4jEv1ZJo284FoY1utMgxkJNSfXDeNoc72M8yw3BpeN3piyH": [ + { + "amount": "132.867136599", + "slot": { + "period": 79651, + "thread": 20 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 300387, + "thread": 3 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 343763, + "thread": 19 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 565787, + "thread": 12 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 770233, + "thread": 27 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 926084, + "thread": 21 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1000938, + "thread": 29 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1263765, + "thread": 2 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1467240, + "thread": 0 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1554066, + "thread": 17 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1711130, + "thread": 18 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 1857233, + "thread": 0 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2119240, + "thread": 8 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2262263, + "thread": 7 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2462356, + "thread": 7 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2466646, + "thread": 20 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2735736, + "thread": 27 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 2849484, + "thread": 15 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 3030668, + "thread": 6 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 3152705, + "thread": 3 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 3304865, + "thread": 22 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 3561714, + "thread": 18 + } + }, + { + "amount": "132.867136599", + "slot": { + "period": 3742827, + "thread": 21 + } + }, + { + "amount": "132.867136591", + "slot": { + "period": 3818800, + "thread": 26 + } + } + ], + "AU1BgnaUEZCJnq6vLqY4PddwPjurjxpy9hR2ztXe839Gk9zJ7CLp": [ + { + "amount": "470.493545230", + "slot": { + "period": 128825, + "thread": 11 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 235728, + "thread": 2 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 383485, + "thread": 17 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 649547, + "thread": 6 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 705082, + "thread": 27 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 850215, + "thread": 23 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1031210, + "thread": 27 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1286798, + "thread": 23 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1360722, + "thread": 3 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1544940, + "thread": 9 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1683155, + "thread": 9 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 1841182, + "thread": 1 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2014510, + "thread": 2 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2274569, + "thread": 30 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2329722, + "thread": 6 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2513165, + "thread": 24 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2652561, + "thread": 4 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2806487, + "thread": 22 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 2977131, + "thread": 6 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 3164443, + "thread": 4 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 3301115, + "thread": 7 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 3462493, + "thread": 30 + } + }, + { + "amount": "470.493545230", + "slot": { + "period": 3618135, + "thread": 31 + } + }, + { + "amount": "470.493545235", + "slot": { + "period": 3866362, + "thread": 15 + } + } + ], + "AU1BieipwHbg76ZHKf12dsxE11XcdmFWXYzXzc8X74q9WtcqYg6Q": [ + { + "amount": "150.939994774", + "slot": { + "period": 142999, + "thread": 27 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 252282, + "thread": 11 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 415045, + "thread": 31 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 619989, + "thread": 23 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 797865, + "thread": 3 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 858148, + "thread": 20 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 993714, + "thread": 19 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 1275541, + "thread": 6 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 1370112, + "thread": 21 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 1542380, + "thread": 16 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 1775066, + "thread": 19 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 1866726, + "thread": 26 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2030915, + "thread": 31 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2250935, + "thread": 6 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2295428, + "thread": 6 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2465597, + "thread": 13 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2688476, + "thread": 13 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2880946, + "thread": 20 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 2955125, + "thread": 31 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 3274335, + "thread": 17 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 3427864, + "thread": 5 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 3590303, + "thread": 10 + } + }, + { + "amount": "150.939994774", + "slot": { + "period": 3668653, + "thread": 1 + } + }, + { + "amount": "150.939994772", + "slot": { + "period": 3854149, + "thread": 25 + } + } + ], + "AU1BjS59PsKj17n9j9UtHirtZwVz7WNDaSwRPisafJ2skigN5DAh": [ + { + "amount": "453.479991143", + "slot": { + "period": 122032, + "thread": 21 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 227999, + "thread": 18 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 477128, + "thread": 11 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 541893, + "thread": 4 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 767108, + "thread": 19 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 900512, + "thread": 19 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1070273, + "thread": 29 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1217591, + "thread": 9 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1403978, + "thread": 20 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1556471, + "thread": 7 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1779854, + "thread": 18 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 1901252, + "thread": 10 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2129642, + "thread": 19 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2230581, + "thread": 13 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2415995, + "thread": 25 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2483325, + "thread": 6 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2779162, + "thread": 13 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 2874453, + "thread": 25 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 3052072, + "thread": 10 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 3184615, + "thread": 0 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 3377138, + "thread": 8 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 3554869, + "thread": 23 + } + }, + { + "amount": "453.479991143", + "slot": { + "period": 3670657, + "thread": 30 + } + }, + { + "amount": "453.479991149", + "slot": { + "period": 3909777, + "thread": 4 + } + } + ], + "AU1BjtsHWANLkyhCrUokBpDhXnTtuZC6M66UP3nVbjWsz2jLAszc": [ + { + "amount": "110.607832220", + "slot": { + "period": 86711, + "thread": 20 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 211512, + "thread": 4 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 332813, + "thread": 27 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 600746, + "thread": 4 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 766216, + "thread": 25 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 971558, + "thread": 22 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1072821, + "thread": 9 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1297604, + "thread": 0 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1377422, + "thread": 6 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1511403, + "thread": 5 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1770574, + "thread": 21 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 1890622, + "thread": 25 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2013842, + "thread": 13 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2210480, + "thread": 31 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2298503, + "thread": 22 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2481204, + "thread": 20 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2657225, + "thread": 19 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 2915451, + "thread": 31 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 3049289, + "thread": 23 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 3168365, + "thread": 0 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 3289348, + "thread": 15 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 3595749, + "thread": 5 + } + }, + { + "amount": "110.607832220", + "slot": { + "period": 3754711, + "thread": 30 + } + }, + { + "amount": "110.607832232", + "slot": { + "period": 3941974, + "thread": 25 + } + } + ], + "AU1Bkd6H49QrUyuvR4Jcx6brFuG1mtGSM3Mwu9PbJF97CaCnDrHQ": [ + { + "amount": "115.676564423", + "slot": { + "period": 36796, + "thread": 16 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 226649, + "thread": 18 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 401786, + "thread": 31 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 589683, + "thread": 20 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 703140, + "thread": 7 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 850761, + "thread": 24 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1102393, + "thread": 17 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1153600, + "thread": 6 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1360201, + "thread": 5 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1565822, + "thread": 29 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1694561, + "thread": 29 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 1889586, + "thread": 17 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2121435, + "thread": 11 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2286757, + "thread": 10 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2447256, + "thread": 14 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2557141, + "thread": 24 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2696439, + "thread": 2 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2835068, + "thread": 13 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 2958897, + "thread": 10 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 3268357, + "thread": 26 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 3328706, + "thread": 2 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 3593060, + "thread": 23 + } + }, + { + "amount": "115.676564423", + "slot": { + "period": 3775704, + "thread": 11 + } + }, + { + "amount": "115.676564417", + "slot": { + "period": 3943192, + "thread": 1 + } + } + ], + "AU1BmHWsdNSaXFoQ14sHqASy8tboyoLPaHYDfq2NfeT2dDKnTqYp": [ + { + "amount": "337.819553103", + "slot": { + "period": 151208, + "thread": 23 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 221352, + "thread": 16 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 345925, + "thread": 7 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 523412, + "thread": 11 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 719324, + "thread": 27 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 902116, + "thread": 0 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1061871, + "thread": 28 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1306102, + "thread": 16 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1421513, + "thread": 16 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1632158, + "thread": 16 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1704643, + "thread": 13 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 1917487, + "thread": 24 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2092267, + "thread": 15 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2229673, + "thread": 11 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2374799, + "thread": 30 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2541816, + "thread": 26 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2759551, + "thread": 5 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 2809271, + "thread": 15 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 3076900, + "thread": 26 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 3241640, + "thread": 4 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 3325648, + "thread": 11 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 3616979, + "thread": 20 + } + }, + { + "amount": "337.819553103", + "slot": { + "period": 3681157, + "thread": 2 + } + }, + { + "amount": "337.819553113", + "slot": { + "period": 3785642, + "thread": 16 + } + } + ], + "AU1BmR9EFxG26trP1SUabM4vmMD286bEZccZo9bfh1FVHp6Q4ety": [ + { + "amount": "248.668559475", + "slot": { + "period": 132965, + "thread": 24 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 218502, + "thread": 20 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 360113, + "thread": 6 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 595133, + "thread": 15 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 654968, + "thread": 24 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 840280, + "thread": 31 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1111975, + "thread": 4 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1297036, + "thread": 26 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1409969, + "thread": 30 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1533816, + "thread": 8 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1758606, + "thread": 20 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 1852308, + "thread": 4 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2132929, + "thread": 7 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2267165, + "thread": 11 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2406851, + "thread": 15 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2535935, + "thread": 21 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2650974, + "thread": 31 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 2894515, + "thread": 16 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 3027629, + "thread": 16 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 3172974, + "thread": 12 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 3301211, + "thread": 6 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 3536788, + "thread": 21 + } + }, + { + "amount": "248.668559475", + "slot": { + "period": 3779043, + "thread": 8 + } + }, + { + "amount": "248.668559467", + "slot": { + "period": 3789835, + "thread": 2 + } + } + ], + "AU1Bmb2FUmKDUqhvpBuJqB8kW3Zu2vi2SELErZpfRPzCJbQWizuC": [ + { + "amount": "84.546313926", + "slot": { + "period": 158755, + "thread": 28 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 244030, + "thread": 4 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 430752, + "thread": 27 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 517918, + "thread": 26 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 813096, + "thread": 17 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 918997, + "thread": 20 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1020887, + "thread": 27 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1213093, + "thread": 18 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1448780, + "thread": 28 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1641688, + "thread": 8 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1714112, + "thread": 19 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 1904863, + "thread": 0 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2120153, + "thread": 19 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2246108, + "thread": 3 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2428995, + "thread": 5 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2577155, + "thread": 21 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2628361, + "thread": 18 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 2945344, + "thread": 3 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 3028097, + "thread": 11 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 3176825, + "thread": 22 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 3423140, + "thread": 30 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 3596831, + "thread": 0 + } + }, + { + "amount": "84.546313926", + "slot": { + "period": 3688743, + "thread": 24 + } + }, + { + "amount": "84.546313917", + "slot": { + "period": 3787426, + "thread": 0 + } + } + ], + "AU1BnBgzZbaan7Fs1N19CFh67BoeQ3gD6rWjPvQ9wCpjrtZUVmvW": [ + { + "amount": "147.327955430", + "slot": { + "period": 112323, + "thread": 31 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 204781, + "thread": 10 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 399351, + "thread": 8 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 645308, + "thread": 24 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 768549, + "thread": 18 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 893509, + "thread": 11 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1147375, + "thread": 4 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1271282, + "thread": 3 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1442681, + "thread": 30 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1619902, + "thread": 7 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1728361, + "thread": 1 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 1811572, + "thread": 1 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2078118, + "thread": 18 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2226806, + "thread": 22 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2397368, + "thread": 4 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2469868, + "thread": 20 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2673007, + "thread": 22 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 2829443, + "thread": 10 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 3100557, + "thread": 27 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 3142970, + "thread": 28 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 3415460, + "thread": 10 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 3471381, + "thread": 1 + } + }, + { + "amount": "147.327955430", + "slot": { + "period": 3726694, + "thread": 7 + } + }, + { + "amount": "147.327955424", + "slot": { + "period": 3942542, + "thread": 1 + } + } + ], + "AU1BnzPznpT2AXPzXpQdSNk53Qr2ZuSVHJBAubXeac2djHiKW6G1": [ + { + "amount": "341.446929216", + "slot": { + "period": 124963, + "thread": 17 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 200009, + "thread": 11 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 369180, + "thread": 2 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 511266, + "thread": 19 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 721684, + "thread": 15 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 836584, + "thread": 5 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1016785, + "thread": 18 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1191632, + "thread": 26 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1354542, + "thread": 22 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1604359, + "thread": 16 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1704448, + "thread": 16 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 1891795, + "thread": 8 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2044272, + "thread": 13 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2262429, + "thread": 19 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2350855, + "thread": 27 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2537192, + "thread": 3 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2660948, + "thread": 4 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 2833634, + "thread": 10 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 3008119, + "thread": 8 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 3206684, + "thread": 30 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 3366552, + "thread": 18 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 3572256, + "thread": 0 + } + }, + { + "amount": "341.446929216", + "slot": { + "period": 3731678, + "thread": 21 + } + }, + { + "amount": "341.446929204", + "slot": { + "period": 3882515, + "thread": 17 + } + } + ], + "AU1BpaNCxX5g4Ww5CUA56TeYuLsPn6Lwon3EfzjZ67xvUdusjPCS": [ + { + "amount": "327.030187916", + "slot": { + "period": 103422, + "thread": 14 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 235777, + "thread": 27 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 370359, + "thread": 28 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 598097, + "thread": 21 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 703551, + "thread": 3 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 942776, + "thread": 1 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1127487, + "thread": 10 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1250962, + "thread": 17 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1361751, + "thread": 15 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1489515, + "thread": 4 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1700232, + "thread": 5 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 1829026, + "thread": 6 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2086993, + "thread": 6 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2163229, + "thread": 3 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2295628, + "thread": 13 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2520945, + "thread": 6 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2677282, + "thread": 25 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 2932544, + "thread": 2 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 3110372, + "thread": 16 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 3151090, + "thread": 15 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 3348393, + "thread": 1 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 3523387, + "thread": 13 + } + }, + { + "amount": "327.030187916", + "slot": { + "period": 3733736, + "thread": 14 + } + }, + { + "amount": "327.030187918", + "slot": { + "period": 3889471, + "thread": 1 + } + } + ], + "AU1BpuWE4e61p6qjU5qyW6oVJbNFVVnJqa8eVobGWbyeZghQ55TS": [ + { + "amount": "521.146139603", + "slot": { + "period": 126040, + "thread": 5 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 321748, + "thread": 1 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 364824, + "thread": 5 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 497453, + "thread": 3 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 698597, + "thread": 14 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 883281, + "thread": 0 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1025717, + "thread": 27 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1232617, + "thread": 28 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1321024, + "thread": 11 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1480656, + "thread": 29 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1782544, + "thread": 7 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 1853853, + "thread": 0 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2027981, + "thread": 27 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2188734, + "thread": 26 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2458902, + "thread": 16 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2479717, + "thread": 5 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2744642, + "thread": 8 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 2869125, + "thread": 17 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 3109670, + "thread": 25 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 3233668, + "thread": 8 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 3407628, + "thread": 8 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 3595569, + "thread": 2 + } + }, + { + "amount": "521.146139603", + "slot": { + "period": 3696841, + "thread": 5 + } + }, + { + "amount": "521.146139592", + "slot": { + "period": 3870523, + "thread": 9 + } + } + ], + "AU1Bq6pCrkRouxtv7F1grqxuqZ55qrBViQCSpsLPusxsTX5H4U6g": [ + { + "amount": "90.263063782", + "slot": { + "period": 154949, + "thread": 0 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 238216, + "thread": 2 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 461684, + "thread": 27 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 637126, + "thread": 9 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 794364, + "thread": 25 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 878343, + "thread": 21 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1076574, + "thread": 16 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1211318, + "thread": 14 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1379481, + "thread": 25 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1528593, + "thread": 15 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1738616, + "thread": 19 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 1869960, + "thread": 11 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2131507, + "thread": 31 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2250687, + "thread": 31 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2410724, + "thread": 0 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2478271, + "thread": 15 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2744296, + "thread": 5 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2894268, + "thread": 24 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 2976923, + "thread": 20 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 3223411, + "thread": 16 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 3333360, + "thread": 21 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 3455505, + "thread": 0 + } + }, + { + "amount": "90.263063782", + "slot": { + "period": 3641497, + "thread": 22 + } + }, + { + "amount": "90.263063781", + "slot": { + "period": 3917151, + "thread": 14 + } + } + ], + "AU1BrrNnLRUcdBJ2bs3DUgdgmaFyexy518ECg9N97FCtk1muB5XP": [ + { + "amount": "118.156116702", + "slot": { + "period": 71025, + "thread": 15 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 267557, + "thread": 5 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 341351, + "thread": 14 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 535102, + "thread": 14 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 754987, + "thread": 15 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 860996, + "thread": 3 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 982949, + "thread": 17 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 1186881, + "thread": 3 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 1390379, + "thread": 8 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 1563105, + "thread": 15 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 1680351, + "thread": 12 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 1885378, + "thread": 29 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2100583, + "thread": 5 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2165308, + "thread": 12 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2300277, + "thread": 10 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2585596, + "thread": 3 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2675443, + "thread": 6 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 2931227, + "thread": 18 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 3074434, + "thread": 23 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 3287396, + "thread": 28 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 3413338, + "thread": 16 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 3528726, + "thread": 20 + } + }, + { + "amount": "118.156116702", + "slot": { + "period": 3737901, + "thread": 2 + } + }, + { + "amount": "118.156116712", + "slot": { + "period": 3945550, + "thread": 13 + } + } + ], + "AU1BsiHQdw7w4rrWftoz6amDcKovDxJPwfzavnpPaRQXsT7BbqRx": [ + { + "amount": "138.458545420", + "slot": { + "period": 65694, + "thread": 10 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 260689, + "thread": 14 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 403357, + "thread": 24 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 566496, + "thread": 2 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 763014, + "thread": 6 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 825255, + "thread": 12 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1079904, + "thread": 29 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1250355, + "thread": 14 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1369279, + "thread": 0 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1552922, + "thread": 27 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1804560, + "thread": 22 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 1960974, + "thread": 18 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2128222, + "thread": 20 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2173500, + "thread": 1 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2322417, + "thread": 13 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2515131, + "thread": 30 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2737899, + "thread": 24 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2940156, + "thread": 31 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 2962539, + "thread": 26 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 3193735, + "thread": 28 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 3314537, + "thread": 6 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 3512759, + "thread": 20 + } + }, + { + "amount": "138.458545420", + "slot": { + "period": 3644702, + "thread": 10 + } + }, + { + "amount": "138.458545408", + "slot": { + "period": 3788635, + "thread": 0 + } + } + ], + "AU1BtWs4d3v4z8apbM2LdJHSshnCgdSbGjBhRDprfUAZ4FknjUgK": [ + { + "amount": "152.084196173", + "slot": { + "period": 26569, + "thread": 0 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 303429, + "thread": 5 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 325070, + "thread": 14 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 507722, + "thread": 15 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 710638, + "thread": 22 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 981674, + "thread": 13 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1002474, + "thread": 13 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1292420, + "thread": 24 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1358814, + "thread": 24 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1519600, + "thread": 28 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1806165, + "thread": 13 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 1941720, + "thread": 15 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2081383, + "thread": 28 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2232515, + "thread": 21 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2361235, + "thread": 4 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2587398, + "thread": 9 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2645390, + "thread": 26 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2814374, + "thread": 22 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 2979838, + "thread": 28 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 3275383, + "thread": 21 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 3355191, + "thread": 31 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 3496909, + "thread": 22 + } + }, + { + "amount": "152.084196173", + "slot": { + "period": 3662958, + "thread": 31 + } + }, + { + "amount": "152.084196167", + "slot": { + "period": 3923718, + "thread": 31 + } + } + ], + "AU1Bu6s2q81Ko7mfbBDWBH6Mdx2wwjzaGmgU42X6CRukh1m49eK9": [ + { + "amount": "289.321884217", + "slot": { + "period": 69535, + "thread": 18 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 229614, + "thread": 8 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 377972, + "thread": 30 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 544640, + "thread": 1 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 659023, + "thread": 29 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 951353, + "thread": 4 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1099663, + "thread": 8 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1298324, + "thread": 21 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1329918, + "thread": 22 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1645746, + "thread": 19 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1749648, + "thread": 29 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 1947789, + "thread": 30 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2005545, + "thread": 21 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2155706, + "thread": 2 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2397402, + "thread": 14 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2515305, + "thread": 10 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2782877, + "thread": 29 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2861661, + "thread": 18 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 2979965, + "thread": 12 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 3187734, + "thread": 4 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 3349758, + "thread": 0 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 3452754, + "thread": 10 + } + }, + { + "amount": "289.321884217", + "slot": { + "period": 3714476, + "thread": 20 + } + }, + { + "amount": "289.321884206", + "slot": { + "period": 3921985, + "thread": 12 + } + } + ], + "AU1BuNG4JHpZgLcPQuAqk2BmKzTgUjHbfBAcfwzPGFvJWeZja5CK": [ + { + "amount": "771.817607427", + "slot": { + "period": 69817, + "thread": 1 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 223209, + "thread": 19 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 462986, + "thread": 28 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 547591, + "thread": 30 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 762140, + "thread": 29 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 872255, + "thread": 13 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 985571, + "thread": 1 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 1202078, + "thread": 20 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 1445517, + "thread": 22 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 1514572, + "thread": 26 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 1748797, + "thread": 0 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 1951430, + "thread": 6 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2105591, + "thread": 12 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2207477, + "thread": 14 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2398982, + "thread": 14 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2524838, + "thread": 28 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2785745, + "thread": 3 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 2871380, + "thread": 3 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 3087804, + "thread": 9 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 3232556, + "thread": 18 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 3440884, + "thread": 15 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 3498175, + "thread": 27 + } + }, + { + "amount": "771.817607427", + "slot": { + "period": 3640842, + "thread": 20 + } + }, + { + "amount": "771.817607420", + "slot": { + "period": 3934091, + "thread": 6 + } + } + ], + "AU1Bvnm2AvvJtgEhqu3GKfFkS6ZospEwrzLuHndyAPb8r42WfDo3": [ + { + "amount": "465.340827892", + "slot": { + "period": 27283, + "thread": 17 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 264090, + "thread": 22 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 447905, + "thread": 0 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 542143, + "thread": 13 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 687281, + "thread": 7 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 879686, + "thread": 24 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1067608, + "thread": 24 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1216374, + "thread": 11 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1462439, + "thread": 29 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1484141, + "thread": 21 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1761240, + "thread": 4 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 1813858, + "thread": 30 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2062690, + "thread": 4 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2197192, + "thread": 23 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2367853, + "thread": 4 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2537158, + "thread": 1 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2632648, + "thread": 16 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 2939702, + "thread": 7 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 3109833, + "thread": 8 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 3271029, + "thread": 4 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 3365255, + "thread": 21 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 3570405, + "thread": 9 + } + }, + { + "amount": "465.340827892", + "slot": { + "period": 3636579, + "thread": 19 + } + }, + { + "amount": "465.340827896", + "slot": { + "period": 3923846, + "thread": 20 + } + } + ], + "AU1Bw8fFVnd7bvXF1SJDQ2NdH5XznTkigY7wp6TgwvQ9GSCkLeJf": [ + { + "amount": "168.338421210", + "slot": { + "period": 97521, + "thread": 7 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 243775, + "thread": 25 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 417960, + "thread": 10 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 533537, + "thread": 15 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 692544, + "thread": 5 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 893681, + "thread": 31 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1064378, + "thread": 22 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1307698, + "thread": 12 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1417298, + "thread": 7 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1568093, + "thread": 22 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1789265, + "thread": 31 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 1860808, + "thread": 12 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2069165, + "thread": 4 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2247277, + "thread": 27 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2340802, + "thread": 6 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2622275, + "thread": 30 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2770757, + "thread": 21 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2949503, + "thread": 24 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 2967084, + "thread": 13 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 3134415, + "thread": 25 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 3447082, + "thread": 18 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 3514134, + "thread": 2 + } + }, + { + "amount": "168.338421210", + "slot": { + "period": 3756190, + "thread": 12 + } + }, + { + "amount": "168.338421212", + "slot": { + "period": 3783132, + "thread": 27 + } + } + ], + "AU1BwPx9JETfWckbMTiBDz7Q6gnNb11ff2qYNoUhZ75G9tGYN5dm": [ + { + "amount": "148.164302038", + "slot": { + "period": 161547, + "thread": 14 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 294420, + "thread": 20 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 328290, + "thread": 2 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 564522, + "thread": 14 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 799200, + "thread": 28 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 882341, + "thread": 18 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1108111, + "thread": 1 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1285397, + "thread": 26 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1337107, + "thread": 31 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1619522, + "thread": 23 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1678233, + "thread": 10 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 1841609, + "thread": 2 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2107903, + "thread": 22 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2230400, + "thread": 0 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2300929, + "thread": 15 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2575222, + "thread": 19 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2786408, + "thread": 15 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 2923571, + "thread": 5 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 3066686, + "thread": 12 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 3257501, + "thread": 25 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 3450550, + "thread": 13 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 3461525, + "thread": 7 + } + }, + { + "amount": "148.164302038", + "slot": { + "period": 3706331, + "thread": 30 + } + }, + { + "amount": "148.164302037", + "slot": { + "period": 3911202, + "thread": 30 + } + } + ], + "AU1BwwBtfcVDorJyRCj1KxKx4DbWULQaPjgZszaaqhafQ1AZigLp": [ + { + "amount": "439.504903697", + "slot": { + "period": 96854, + "thread": 19 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 179441, + "thread": 12 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 434677, + "thread": 1 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 638273, + "thread": 15 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 788601, + "thread": 22 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 866817, + "thread": 31 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1102714, + "thread": 8 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1307050, + "thread": 10 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1461287, + "thread": 21 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1629567, + "thread": 21 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1768650, + "thread": 25 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 1937044, + "thread": 5 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2099064, + "thread": 17 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2151630, + "thread": 30 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2346085, + "thread": 10 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2516704, + "thread": 23 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2766725, + "thread": 21 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2916061, + "thread": 10 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 2981559, + "thread": 6 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 3149548, + "thread": 9 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 3308985, + "thread": 26 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 3551930, + "thread": 7 + } + }, + { + "amount": "439.504903697", + "slot": { + "period": 3639161, + "thread": 29 + } + }, + { + "amount": "439.504903701", + "slot": { + "period": 3823281, + "thread": 1 + } + } + ], + "AU1By5BHSxU6Sn1CqrE58azsM2rHrq27Zngw3CzvcveWaCBYcSjc": [ + { + "amount": "314.744261096", + "slot": { + "period": 62375, + "thread": 1 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 231006, + "thread": 4 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 439390, + "thread": 11 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 621604, + "thread": 1 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 756287, + "thread": 26 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 962560, + "thread": 13 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1146602, + "thread": 27 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1266498, + "thread": 1 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1443501, + "thread": 19 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1508011, + "thread": 1 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1699732, + "thread": 22 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 1856999, + "thread": 30 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2119702, + "thread": 23 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2242615, + "thread": 27 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2326315, + "thread": 29 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2593572, + "thread": 21 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2742887, + "thread": 25 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 2815329, + "thread": 17 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 3010756, + "thread": 2 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 3208118, + "thread": 14 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 3411555, + "thread": 30 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 3530949, + "thread": 29 + } + }, + { + "amount": "314.744261096", + "slot": { + "period": 3643745, + "thread": 24 + } + }, + { + "amount": "314.744261089", + "slot": { + "period": 3899569, + "thread": 20 + } + } + ], + "AU1BySbKk6fbdmWkoQA4X7DrrPhog5FqtpwUmUqwgH9Y2zP7qxDk": [ + { + "amount": "447.701876417", + "slot": { + "period": 76060, + "thread": 21 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 216061, + "thread": 19 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 445371, + "thread": 28 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 620563, + "thread": 16 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 753104, + "thread": 31 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 850520, + "thread": 17 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1073044, + "thread": 11 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1221189, + "thread": 5 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1386226, + "thread": 11 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1590714, + "thread": 29 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1760222, + "thread": 6 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 1923201, + "thread": 2 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2130751, + "thread": 3 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2154709, + "thread": 9 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2448957, + "thread": 2 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2467326, + "thread": 0 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2680625, + "thread": 9 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 2936340, + "thread": 7 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 3000982, + "thread": 10 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 3136963, + "thread": 8 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 3327592, + "thread": 0 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 3466378, + "thread": 1 + } + }, + { + "amount": "447.701876417", + "slot": { + "period": 3690549, + "thread": 31 + } + }, + { + "amount": "447.701876419", + "slot": { + "period": 3943234, + "thread": 8 + } + } + ], + "AU1ByTz1qzjjjVpQkjY2ziZkfsLEAzFSK1GCg4ZaVTPkrCgAvFty": [ + { + "amount": "632.061550836", + "slot": { + "period": 51794, + "thread": 15 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 199688, + "thread": 5 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 349813, + "thread": 1 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 529781, + "thread": 15 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 698524, + "thread": 8 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 962492, + "thread": 14 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 999734, + "thread": 25 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 1237134, + "thread": 19 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 1350778, + "thread": 4 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 1642921, + "thread": 18 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 1781919, + "thread": 18 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 1847124, + "thread": 9 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2024646, + "thread": 8 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2188205, + "thread": 9 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2397117, + "thread": 26 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2470394, + "thread": 7 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2729279, + "thread": 7 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 2862997, + "thread": 10 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 3022904, + "thread": 23 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 3206455, + "thread": 0 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 3377959, + "thread": 1 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 3500646, + "thread": 17 + } + }, + { + "amount": "632.061550836", + "slot": { + "period": 3695043, + "thread": 18 + } + }, + { + "amount": "632.061550848", + "slot": { + "period": 3795439, + "thread": 29 + } + } + ], + "AU1ByVzjZ8E7vjgjb7VeKwRUA9ZME8MxC5bcTHTU2xAuMKTwitdE": [ + { + "amount": "73.658870483", + "slot": { + "period": 105710, + "thread": 18 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 312162, + "thread": 21 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 442860, + "thread": 9 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 642772, + "thread": 16 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 683589, + "thread": 13 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 951216, + "thread": 28 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 998795, + "thread": 22 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 1153571, + "thread": 30 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 1363070, + "thread": 29 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 1485416, + "thread": 6 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 1780982, + "thread": 14 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 1948558, + "thread": 4 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2015257, + "thread": 14 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2162352, + "thread": 8 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2386224, + "thread": 11 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2494691, + "thread": 16 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2746843, + "thread": 1 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 2858545, + "thread": 2 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 3089473, + "thread": 29 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 3159628, + "thread": 22 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 3380337, + "thread": 3 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 3595747, + "thread": 3 + } + }, + { + "amount": "73.658870483", + "slot": { + "period": 3760543, + "thread": 2 + } + }, + { + "amount": "73.658870492", + "slot": { + "period": 3942574, + "thread": 14 + } + } + ], + "AU1BzRcQ5cTJv4JMT46pyXmzVGr3fsBB8VLnkqjjkbrMZGtbbCNp": [ + { + "amount": "114.511150809", + "slot": { + "period": 129985, + "thread": 6 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 221088, + "thread": 28 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 348801, + "thread": 9 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 600937, + "thread": 28 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 749395, + "thread": 5 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 866564, + "thread": 20 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1032010, + "thread": 20 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1208387, + "thread": 24 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1332213, + "thread": 2 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1544556, + "thread": 18 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1734774, + "thread": 26 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 1975589, + "thread": 22 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2133590, + "thread": 18 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2179686, + "thread": 6 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2321500, + "thread": 16 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2550800, + "thread": 8 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2734675, + "thread": 5 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 2839619, + "thread": 25 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 3079489, + "thread": 9 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 3225845, + "thread": 9 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 3396809, + "thread": 10 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 3602750, + "thread": 22 + } + }, + { + "amount": "114.511150809", + "slot": { + "period": 3649944, + "thread": 13 + } + }, + { + "amount": "114.511150807", + "slot": { + "period": 3840924, + "thread": 13 + } + } + ], + "AU1Bzcjcbwr5APhHa1Q3TnEYW93tJwy9faCDLk9fFDt7yhz9S4Tc": [ + { + "amount": "343.756790711", + "slot": { + "period": 38329, + "thread": 6 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 257831, + "thread": 4 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 422571, + "thread": 25 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 598120, + "thread": 18 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 703574, + "thread": 24 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 836718, + "thread": 3 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1087179, + "thread": 28 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1256118, + "thread": 12 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1387867, + "thread": 30 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1503791, + "thread": 12 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1692812, + "thread": 27 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 1906134, + "thread": 19 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2064879, + "thread": 4 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2212528, + "thread": 12 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2325445, + "thread": 10 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2527852, + "thread": 11 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2731947, + "thread": 20 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 2828145, + "thread": 1 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 3078798, + "thread": 31 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 3221282, + "thread": 8 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 3301183, + "thread": 14 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 3522784, + "thread": 19 + } + }, + { + "amount": "343.756790711", + "slot": { + "period": 3745981, + "thread": 8 + } + }, + { + "amount": "343.756790707", + "slot": { + "period": 3823179, + "thread": 4 + } + } + ], + "AU1BzqFGLE3H4YkNTj4582rfbTr4ZFZXgA3V6HRvVg6rbf37uiUG": [ + { + "amount": "269.904365774", + "slot": { + "period": 83198, + "thread": 28 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 211021, + "thread": 12 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 376244, + "thread": 8 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 536239, + "thread": 31 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 772377, + "thread": 30 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 956039, + "thread": 8 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1084871, + "thread": 2 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1225236, + "thread": 30 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1472250, + "thread": 24 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1523813, + "thread": 25 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1761689, + "thread": 8 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 1868269, + "thread": 10 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2116669, + "thread": 7 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2236711, + "thread": 17 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2393458, + "thread": 27 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2474119, + "thread": 14 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2739101, + "thread": 2 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 2918142, + "thread": 10 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 3099820, + "thread": 13 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 3234606, + "thread": 10 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 3364364, + "thread": 22 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 3570339, + "thread": 30 + } + }, + { + "amount": "269.904365774", + "slot": { + "period": 3679278, + "thread": 18 + } + }, + { + "amount": "269.904365784", + "slot": { + "period": 3812102, + "thread": 18 + } + } + ], + "AU1BzqMbiHorMHB9p2HnFqpa8cgVhWxqvcbLvJtgLEGNoiQcgxdE": [ + { + "amount": "165.044607464", + "slot": { + "period": 147128, + "thread": 31 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 290351, + "thread": 4 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 387476, + "thread": 10 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 504652, + "thread": 6 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 665078, + "thread": 8 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 856237, + "thread": 30 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1014353, + "thread": 23 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1238748, + "thread": 12 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1349310, + "thread": 4 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1584593, + "thread": 8 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1725652, + "thread": 7 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1911024, + "thread": 11 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 1987624, + "thread": 29 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 2234156, + "thread": 17 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 2329775, + "thread": 23 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 2484855, + "thread": 4 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 2634975, + "thread": 2 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 2800549, + "thread": 25 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 3109298, + "thread": 11 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 3247788, + "thread": 10 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 3328666, + "thread": 8 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 3479869, + "thread": 14 + } + }, + { + "amount": "165.044607464", + "slot": { + "period": 3678213, + "thread": 15 + } + }, + { + "amount": "165.044607462", + "slot": { + "period": 3848779, + "thread": 19 + } + } + ], + "AU1C1rEmPuJMV3VA9Hfzm1Ra7WSaGqE2SZMoSeZrXdx5Aw5AQYDg": [ + { + "amount": "341.339075390", + "slot": { + "period": 118916, + "thread": 24 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 258747, + "thread": 2 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 395716, + "thread": 11 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 550799, + "thread": 6 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 770097, + "thread": 13 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 976600, + "thread": 11 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1092312, + "thread": 24 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1208093, + "thread": 24 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1475222, + "thread": 9 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1540454, + "thread": 23 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1688162, + "thread": 19 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 1882492, + "thread": 28 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2124683, + "thread": 4 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2166242, + "thread": 1 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2336264, + "thread": 28 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2617306, + "thread": 4 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2678262, + "thread": 29 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 2860504, + "thread": 22 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 3100000, + "thread": 9 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 3155978, + "thread": 10 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 3389074, + "thread": 30 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 3589044, + "thread": 17 + } + }, + { + "amount": "341.339075390", + "slot": { + "period": 3760364, + "thread": 11 + } + }, + { + "amount": "341.339075383", + "slot": { + "period": 3937108, + "thread": 8 + } + } + ], + "AU1C4X7FCutHA8mKVQqCmJWBn8GGxYeTd8hzYFEYMbf8gTt6u4Yv": [ + { + "amount": "246.634827079", + "slot": { + "period": 141463, + "thread": 18 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 222410, + "thread": 3 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 364240, + "thread": 20 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 529610, + "thread": 10 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 690834, + "thread": 9 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 885958, + "thread": 6 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1115176, + "thread": 16 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1301525, + "thread": 1 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1340829, + "thread": 26 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1631893, + "thread": 7 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1773719, + "thread": 2 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 1817770, + "thread": 12 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2035787, + "thread": 13 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2238981, + "thread": 30 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2361729, + "thread": 7 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2470013, + "thread": 7 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2627665, + "thread": 5 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 2925307, + "thread": 31 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 3104420, + "thread": 24 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 3156436, + "thread": 8 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 3383242, + "thread": 27 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 3476409, + "thread": 4 + } + }, + { + "amount": "246.634827079", + "slot": { + "period": 3666016, + "thread": 9 + } + }, + { + "amount": "246.634827078", + "slot": { + "period": 3781985, + "thread": 13 + } + } + ], + "AU1C4uC7dsT9DrbHkd1XgLvJ7wgpN2npabyeRGaDzsFoBJhwAs61": [ + { + "amount": "227.884902376", + "slot": { + "period": 164613, + "thread": 2 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 203883, + "thread": 20 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 373678, + "thread": 14 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 619226, + "thread": 17 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 672553, + "thread": 12 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 862669, + "thread": 1 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1080201, + "thread": 4 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1308772, + "thread": 5 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1400025, + "thread": 15 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1504798, + "thread": 30 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1808110, + "thread": 2 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1958178, + "thread": 11 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 1977170, + "thread": 5 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2212519, + "thread": 1 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2360871, + "thread": 30 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2611340, + "thread": 9 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2694252, + "thread": 12 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2804046, + "thread": 31 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 2968255, + "thread": 13 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 3287582, + "thread": 4 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 3305407, + "thread": 6 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 3583301, + "thread": 22 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 3653711, + "thread": 14 + } + }, + { + "amount": "227.884902376", + "slot": { + "period": 3803257, + "thread": 20 + } + } + ], + "AU1C5jaMPn4JbpLA6S5D28NpSNYqTe7bVYi5dL876SNYaXkBQzYx": [ + { + "amount": "457.428504870", + "slot": { + "period": 34125, + "thread": 1 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 195398, + "thread": 24 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 350494, + "thread": 3 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 536724, + "thread": 1 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 705160, + "thread": 28 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 944399, + "thread": 5 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1147726, + "thread": 1 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1173004, + "thread": 24 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1376351, + "thread": 15 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1496699, + "thread": 3 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1721016, + "thread": 17 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1918388, + "thread": 19 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 1992117, + "thread": 26 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 2247200, + "thread": 20 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 2450365, + "thread": 9 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 2471428, + "thread": 31 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 2710958, + "thread": 2 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 2808657, + "thread": 27 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 3092575, + "thread": 25 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 3223704, + "thread": 22 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 3295278, + "thread": 7 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 3609301, + "thread": 8 + } + }, + { + "amount": "457.428504870", + "slot": { + "period": 3720859, + "thread": 9 + } + }, + { + "amount": "457.428504861", + "slot": { + "period": 3787748, + "thread": 0 + } + } + ], + "AU1C63mLaP4twGxykaS1DMvobRLK5qRBN5JLagqKW2bcGuVtBEH8": [ + { + "amount": "216.271027627", + "slot": { + "period": 73529, + "thread": 19 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 240030, + "thread": 11 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 357345, + "thread": 31 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 653163, + "thread": 29 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 704200, + "thread": 0 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 915113, + "thread": 7 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1017464, + "thread": 10 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1166977, + "thread": 31 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1443107, + "thread": 24 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1532250, + "thread": 13 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1801115, + "thread": 6 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 1902965, + "thread": 5 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2029783, + "thread": 22 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2155748, + "thread": 16 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2305500, + "thread": 11 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2525054, + "thread": 23 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2784774, + "thread": 14 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2863991, + "thread": 12 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 2987645, + "thread": 0 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 3169456, + "thread": 29 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 3349780, + "thread": 25 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 3590023, + "thread": 5 + } + }, + { + "amount": "216.271027627", + "slot": { + "period": 3667195, + "thread": 1 + } + }, + { + "amount": "216.271027626", + "slot": { + "period": 3857250, + "thread": 9 + } + } + ], + "AU1C6LqU7TriQtzCXpGwVkuaBAiUyJUDZbE5MwFWi8BeH44p3ct3": [ + { + "amount": "70.972230390", + "slot": { + "period": 86868, + "thread": 15 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 224758, + "thread": 2 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 373178, + "thread": 0 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 577069, + "thread": 13 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 714629, + "thread": 30 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 841039, + "thread": 9 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 988519, + "thread": 11 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 1181403, + "thread": 19 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 1348519, + "thread": 28 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 1514999, + "thread": 19 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 1721399, + "thread": 2 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 1883500, + "thread": 3 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2014702, + "thread": 10 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2163844, + "thread": 15 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2410231, + "thread": 19 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2571419, + "thread": 17 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2734067, + "thread": 30 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2793023, + "thread": 23 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 2961384, + "thread": 13 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 3278894, + "thread": 2 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 3360954, + "thread": 26 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 3499195, + "thread": 11 + } + }, + { + "amount": "70.972230390", + "slot": { + "period": 3680150, + "thread": 13 + } + }, + { + "amount": "70.972230381", + "slot": { + "period": 3848078, + "thread": 28 + } + } + ], + "AU1C6wPjo5bvHCm3rxDNExWP26724eRbRBtHzJMmnaS8UaFXqrYm": [ + { + "amount": "134.403408791", + "slot": { + "period": 143646, + "thread": 8 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 232760, + "thread": 31 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 390641, + "thread": 15 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 618880, + "thread": 1 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 654219, + "thread": 31 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 834994, + "thread": 7 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1015759, + "thread": 2 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1235178, + "thread": 24 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1341584, + "thread": 3 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1514133, + "thread": 16 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1712939, + "thread": 1 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 1907483, + "thread": 27 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2088607, + "thread": 14 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2159060, + "thread": 0 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2307930, + "thread": 19 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2511358, + "thread": 6 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2646692, + "thread": 17 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 2861626, + "thread": 12 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 3117902, + "thread": 7 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 3176458, + "thread": 24 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 3339621, + "thread": 22 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 3513758, + "thread": 12 + } + }, + { + "amount": "134.403408791", + "slot": { + "period": 3694685, + "thread": 20 + } + }, + { + "amount": "134.403408794", + "slot": { + "period": 3881703, + "thread": 24 + } + } + ], + "AU1C8DQzgi6rox4dtha1AADnsQ5tFcs8ZsHgTZD4H1rxGasDTKYm": [ + { + "amount": "130.511292558", + "slot": { + "period": 26455, + "thread": 13 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 201018, + "thread": 9 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 374601, + "thread": 16 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 644977, + "thread": 28 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 679910, + "thread": 18 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 915606, + "thread": 12 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 995417, + "thread": 24 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1269684, + "thread": 30 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1367040, + "thread": 19 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1519864, + "thread": 4 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1678613, + "thread": 24 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1879488, + "thread": 30 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 1998374, + "thread": 22 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2183964, + "thread": 25 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2351076, + "thread": 11 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2581194, + "thread": 29 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2714718, + "thread": 17 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2887539, + "thread": 17 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 2955221, + "thread": 14 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 3127058, + "thread": 27 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 3353055, + "thread": 8 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 3562688, + "thread": 18 + } + }, + { + "amount": "130.511292558", + "slot": { + "period": 3630461, + "thread": 0 + } + }, + { + "amount": "130.511292551", + "slot": { + "period": 3898638, + "thread": 10 + } + } + ], + "AU1C9A9v8KkeF24iGUDtuXNqtuk9p67h9CeSSNeB4a9sSn99cjsk": [ + { + "amount": "361.033235574", + "slot": { + "period": 158902, + "thread": 7 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 170337, + "thread": 2 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 425061, + "thread": 5 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 493682, + "thread": 12 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 817770, + "thread": 11 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 923083, + "thread": 26 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1143066, + "thread": 27 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1179860, + "thread": 1 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1355652, + "thread": 26 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1598866, + "thread": 3 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1740484, + "thread": 4 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 1961889, + "thread": 20 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2033948, + "thread": 13 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2286455, + "thread": 3 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2361608, + "thread": 22 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2492147, + "thread": 17 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2626907, + "thread": 12 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 2799148, + "thread": 1 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 3115491, + "thread": 22 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 3275781, + "thread": 23 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 3390037, + "thread": 28 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 3521854, + "thread": 13 + } + }, + { + "amount": "361.033235574", + "slot": { + "period": 3625642, + "thread": 26 + } + }, + { + "amount": "361.033235586", + "slot": { + "period": 3815030, + "thread": 12 + } + } + ], + "AU1C9XYSczre1h6TJtbFSMZ7QgRdvPpuFaocz4xv8MpQ1ftYPzdh": [ + { + "amount": "180.018794772", + "slot": { + "period": 78427, + "thread": 15 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 193443, + "thread": 10 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 438356, + "thread": 28 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 624469, + "thread": 19 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 673108, + "thread": 27 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 919215, + "thread": 2 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 999572, + "thread": 22 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 1280186, + "thread": 6 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 1464435, + "thread": 26 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 1559924, + "thread": 13 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 1669896, + "thread": 29 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 1835934, + "thread": 9 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2117010, + "thread": 27 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2171750, + "thread": 24 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2439127, + "thread": 18 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2536151, + "thread": 5 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2771843, + "thread": 3 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2816318, + "thread": 15 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 2963560, + "thread": 31 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 3260983, + "thread": 29 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 3302771, + "thread": 0 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 3537218, + "thread": 13 + } + }, + { + "amount": "180.018794772", + "slot": { + "period": 3620403, + "thread": 21 + } + }, + { + "amount": "180.018794777", + "slot": { + "period": 3837120, + "thread": 13 + } + } + ], + "AU1CACWru2tDGkqJCNWq5QZ5pX7MJQfSg8EyVTwNsxkp1E4TXgjL": [ + { + "amount": "219.142160274", + "slot": { + "period": 166041, + "thread": 1 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 187802, + "thread": 14 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 427884, + "thread": 15 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 647645, + "thread": 7 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 786026, + "thread": 28 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 936667, + "thread": 18 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1037306, + "thread": 2 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1284991, + "thread": 14 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1340377, + "thread": 7 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1527290, + "thread": 17 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1653570, + "thread": 13 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 1953371, + "thread": 8 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2141900, + "thread": 4 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2286372, + "thread": 8 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2461991, + "thread": 7 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2482209, + "thread": 18 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2731693, + "thread": 15 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2817590, + "thread": 2 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 2978799, + "thread": 2 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 3262855, + "thread": 12 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 3319408, + "thread": 29 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 3610694, + "thread": 9 + } + }, + { + "amount": "219.142160274", + "slot": { + "period": 3735837, + "thread": 28 + } + }, + { + "amount": "219.142160271", + "slot": { + "period": 3797696, + "thread": 9 + } + } + ], + "AU1CAVU82P652meLwEoQgYuktyFRorWVMVR6yP7X7gNQyShozZwL": [ + { + "amount": "66.441979740", + "slot": { + "period": 126799, + "thread": 11 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 206607, + "thread": 0 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 384340, + "thread": 12 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 630159, + "thread": 12 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 674843, + "thread": 23 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 879131, + "thread": 26 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1057613, + "thread": 4 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1218339, + "thread": 13 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1477731, + "thread": 26 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1550260, + "thread": 14 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1663437, + "thread": 25 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 1943508, + "thread": 17 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2125575, + "thread": 27 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2210438, + "thread": 19 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2375379, + "thread": 18 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2485376, + "thread": 14 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2646369, + "thread": 19 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 2804356, + "thread": 5 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 3116537, + "thread": 29 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 3256297, + "thread": 22 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 3412492, + "thread": 15 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 3485181, + "thread": 8 + } + }, + { + "amount": "66.441979740", + "slot": { + "period": 3743202, + "thread": 4 + } + }, + { + "amount": "66.441979735", + "slot": { + "period": 3908808, + "thread": 24 + } + } + ], + "AU1CAWzgqADT6WNQpgzn41VgbLjSQ2zr34WvByGprbb4FJZ1rnsT": [ + { + "amount": "241.497168828", + "slot": { + "period": 60485, + "thread": 28 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 232682, + "thread": 10 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 357307, + "thread": 2 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 491702, + "thread": 7 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 670637, + "thread": 12 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 855606, + "thread": 18 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1094495, + "thread": 6 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1301261, + "thread": 29 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1446280, + "thread": 17 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1581339, + "thread": 30 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1688477, + "thread": 21 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 1939297, + "thread": 1 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2002249, + "thread": 16 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2144906, + "thread": 8 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2318809, + "thread": 1 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2512016, + "thread": 29 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2770565, + "thread": 3 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 2872636, + "thread": 3 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 3006092, + "thread": 9 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 3128744, + "thread": 16 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 3413062, + "thread": 27 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 3461719, + "thread": 20 + } + }, + { + "amount": "241.497168828", + "slot": { + "period": 3778572, + "thread": 11 + } + }, + { + "amount": "241.497168832", + "slot": { + "period": 3946610, + "thread": 18 + } + } + ], + "AU1CAwGB8hBfGWKt2JamSfTgMw2j3xmVtbHmgBsEWQXrV2HTiDY2": [ + { + "amount": "585.553958586", + "slot": { + "period": 155302, + "thread": 29 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 220674, + "thread": 31 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 464431, + "thread": 9 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 589949, + "thread": 26 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 692987, + "thread": 8 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 982215, + "thread": 26 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1143529, + "thread": 11 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1225656, + "thread": 11 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1355494, + "thread": 13 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1493648, + "thread": 17 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1771681, + "thread": 12 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 1856380, + "thread": 20 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2136857, + "thread": 7 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2213146, + "thread": 11 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2432581, + "thread": 27 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2606632, + "thread": 17 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2754793, + "thread": 8 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2836725, + "thread": 6 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 2986368, + "thread": 12 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 3150051, + "thread": 22 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 3391885, + "thread": 11 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 3500708, + "thread": 26 + } + }, + { + "amount": "585.553958586", + "slot": { + "period": 3659856, + "thread": 5 + } + }, + { + "amount": "585.553958597", + "slot": { + "period": 3829338, + "thread": 20 + } + } + ], + "AU1CB6W2ELfkiXBdZjNNGqqv2CrseEPjCsZEWd8U4QnKeunvKMtD": [ + { + "amount": "294.286551751", + "slot": { + "period": 60051, + "thread": 13 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 262049, + "thread": 25 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 440526, + "thread": 6 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 582454, + "thread": 17 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 724441, + "thread": 17 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 829249, + "thread": 27 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1029025, + "thread": 20 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1309334, + "thread": 27 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1416657, + "thread": 3 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1534565, + "thread": 30 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1649830, + "thread": 13 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 1956031, + "thread": 19 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2113606, + "thread": 24 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2201988, + "thread": 8 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2372921, + "thread": 28 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2536761, + "thread": 25 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2770328, + "thread": 26 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 2936019, + "thread": 1 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 3034295, + "thread": 18 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 3165816, + "thread": 29 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 3345937, + "thread": 6 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 3573062, + "thread": 8 + } + }, + { + "amount": "294.286551751", + "slot": { + "period": 3705096, + "thread": 7 + } + }, + { + "amount": "294.286551759", + "slot": { + "period": 3828675, + "thread": 9 + } + } + ], + "AU1CBBH8JeMYnS8chAToGRJq87fzPwoPVQpGLy3nUrYmdf2LBac7": [ + { + "amount": "61.926553786", + "slot": { + "period": 117967, + "thread": 24 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 246706, + "thread": 16 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 355955, + "thread": 24 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 636546, + "thread": 4 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 746716, + "thread": 11 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 959155, + "thread": 1 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1003442, + "thread": 12 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1257286, + "thread": 11 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1465146, + "thread": 25 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1625483, + "thread": 15 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1719696, + "thread": 16 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 1921262, + "thread": 13 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2030662, + "thread": 12 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2208789, + "thread": 1 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2364855, + "thread": 8 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2584273, + "thread": 27 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2728187, + "thread": 20 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 2950739, + "thread": 29 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 3019703, + "thread": 26 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 3121593, + "thread": 11 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 3409290, + "thread": 2 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 3545138, + "thread": 24 + } + }, + { + "amount": "61.926553786", + "slot": { + "period": 3657220, + "thread": 19 + } + }, + { + "amount": "61.926553789", + "slot": { + "period": 3811843, + "thread": 17 + } + } + ], + "AU1CBbJoc5pSxY8cpWqEUFT5TQdqnFyXdwUR7b9fE12iBRQDWPfV": [ + { + "amount": "572.963692582", + "slot": { + "period": 38995, + "thread": 21 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 213106, + "thread": 17 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 482926, + "thread": 18 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 557972, + "thread": 24 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 709451, + "thread": 0 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 887402, + "thread": 15 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1125726, + "thread": 11 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1223094, + "thread": 25 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1374952, + "thread": 28 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1520886, + "thread": 28 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1739518, + "thread": 18 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 1838384, + "thread": 31 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2070072, + "thread": 0 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2207398, + "thread": 24 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2420946, + "thread": 11 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2595636, + "thread": 28 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2751145, + "thread": 18 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 2843566, + "thread": 30 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 3119743, + "thread": 10 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 3166685, + "thread": 26 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 3289932, + "thread": 27 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 3527486, + "thread": 12 + } + }, + { + "amount": "572.963692582", + "slot": { + "period": 3766372, + "thread": 18 + } + }, + { + "amount": "572.963692579", + "slot": { + "period": 3837173, + "thread": 10 + } + } + ], + "AU1CCvknwvVbuMLkgMfK4Dr6BQ4ayCU6DdeG3TakZyjRDEuW1TTW": [ + { + "amount": "159.155868953", + "slot": { + "period": 104585, + "thread": 27 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 178303, + "thread": 10 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 472354, + "thread": 11 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 614670, + "thread": 3 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 751680, + "thread": 19 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 941053, + "thread": 1 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1056550, + "thread": 3 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1223035, + "thread": 14 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1425668, + "thread": 26 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1639827, + "thread": 11 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1678942, + "thread": 24 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 1835796, + "thread": 16 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2104115, + "thread": 27 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2294530, + "thread": 9 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2431578, + "thread": 16 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2617300, + "thread": 5 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2702351, + "thread": 20 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 2890419, + "thread": 2 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 3024292, + "thread": 28 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 3268664, + "thread": 31 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 3329882, + "thread": 10 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 3521716, + "thread": 25 + } + }, + { + "amount": "159.155868953", + "slot": { + "period": 3626935, + "thread": 0 + } + }, + { + "amount": "159.155868948", + "slot": { + "period": 3880905, + "thread": 0 + } + } + ], + "AU1CD71Ysyeu6TvDZ1gAwiLJQHQk8pZTdKJo1JSxH64cbWuhwhX9": [ + { + "amount": "163.096900282", + "slot": { + "period": 54307, + "thread": 22 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 195328, + "thread": 23 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 480535, + "thread": 11 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 584597, + "thread": 29 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 758002, + "thread": 3 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 872828, + "thread": 30 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1093068, + "thread": 3 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1164929, + "thread": 14 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1326855, + "thread": 2 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1497358, + "thread": 18 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1788162, + "thread": 27 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1819263, + "thread": 13 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 1979185, + "thread": 29 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2153966, + "thread": 0 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2402661, + "thread": 10 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2597093, + "thread": 20 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2654479, + "thread": 10 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2924560, + "thread": 15 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 2988060, + "thread": 23 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 3200049, + "thread": 9 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 3305936, + "thread": 18 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 3601975, + "thread": 15 + } + }, + { + "amount": "163.096900282", + "slot": { + "period": 3733330, + "thread": 2 + } + }, + { + "amount": "163.096900287", + "slot": { + "period": 3827274, + "thread": 3 + } + } + ], + "AU1CECp1aoeQMR5PEP6CcNDh6kZ9u26UCkCXyJdw1utir7E4ePjp": [ + { + "amount": "495.962847189", + "slot": { + "period": 158262, + "thread": 31 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 212152, + "thread": 29 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 450242, + "thread": 21 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 526439, + "thread": 25 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 703452, + "thread": 20 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 871733, + "thread": 24 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1021032, + "thread": 17 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1198640, + "thread": 19 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1430224, + "thread": 3 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1569782, + "thread": 9 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1693458, + "thread": 5 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 1947713, + "thread": 17 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2065324, + "thread": 13 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2147891, + "thread": 20 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2333400, + "thread": 22 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2593125, + "thread": 24 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2764810, + "thread": 13 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 2824727, + "thread": 12 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 3110181, + "thread": 29 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 3167766, + "thread": 13 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 3370427, + "thread": 8 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 3466520, + "thread": 28 + } + }, + { + "amount": "495.962847189", + "slot": { + "period": 3729567, + "thread": 23 + } + }, + { + "amount": "495.962847178", + "slot": { + "period": 3816007, + "thread": 9 + } + } + ], + "AU1CEroPdbSDcmJ2EKMkNDPfrBJkkYjY1DKM97QRnhAgQ8C9E3YQ": [ + { + "amount": "144.880079308", + "slot": { + "period": 82935, + "thread": 7 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 283848, + "thread": 4 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 435330, + "thread": 3 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 597897, + "thread": 14 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 662825, + "thread": 17 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 824040, + "thread": 17 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1099162, + "thread": 24 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1213672, + "thread": 29 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1437794, + "thread": 29 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1547133, + "thread": 28 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1746226, + "thread": 20 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 1904336, + "thread": 19 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2001073, + "thread": 31 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2156669, + "thread": 25 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2377639, + "thread": 2 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2482655, + "thread": 25 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2714089, + "thread": 27 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 2947734, + "thread": 5 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 3006193, + "thread": 6 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 3223290, + "thread": 3 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 3415805, + "thread": 22 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 3504956, + "thread": 8 + } + }, + { + "amount": "144.880079308", + "slot": { + "period": 3691411, + "thread": 7 + } + }, + { + "amount": "144.880079310", + "slot": { + "period": 3780024, + "thread": 27 + } + } + ], + "AU1CFECGmdRX91WnnZ9bgKVgTtfAZxDTEKfdyoG9bCJbimNyQi6u": [ + { + "amount": "238.204113184", + "slot": { + "period": 29154, + "thread": 28 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 309839, + "thread": 5 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 402820, + "thread": 23 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 568142, + "thread": 17 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 804620, + "thread": 13 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 839327, + "thread": 21 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1006353, + "thread": 16 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1270847, + "thread": 17 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1435319, + "thread": 29 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1616422, + "thread": 17 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1654083, + "thread": 11 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 1816673, + "thread": 13 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2095075, + "thread": 2 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2153659, + "thread": 4 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2331048, + "thread": 29 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2574864, + "thread": 15 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2746767, + "thread": 27 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 2841217, + "thread": 12 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 3039456, + "thread": 6 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 3233916, + "thread": 26 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 3397092, + "thread": 21 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 3530360, + "thread": 23 + } + }, + { + "amount": "238.204113184", + "slot": { + "period": 3721926, + "thread": 29 + } + }, + { + "amount": "238.204113194", + "slot": { + "period": 3835424, + "thread": 28 + } + } + ], + "AU1CG944YXtJksPa4nGth6B2X84Ng63HUrK6eSEsPDoA5q5WZWbi": [ + { + "amount": "168.743489645", + "slot": { + "period": 48331, + "thread": 26 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 206875, + "thread": 28 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 350335, + "thread": 18 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 613583, + "thread": 24 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 710935, + "thread": 16 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 837920, + "thread": 28 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1051551, + "thread": 28 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1282164, + "thread": 25 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1364347, + "thread": 5 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1586604, + "thread": 1 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1749146, + "thread": 23 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 1895623, + "thread": 25 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2076750, + "thread": 26 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2220949, + "thread": 21 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2404674, + "thread": 23 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2474882, + "thread": 0 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2770602, + "thread": 15 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 2835985, + "thread": 3 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 3026457, + "thread": 25 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 3232089, + "thread": 18 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 3354379, + "thread": 1 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 3543917, + "thread": 24 + } + }, + { + "amount": "168.743489645", + "slot": { + "period": 3749130, + "thread": 15 + } + }, + { + "amount": "168.743489634", + "slot": { + "period": 3843901, + "thread": 27 + } + } + ], + "AU1CGNBXZXVSZufie3hfekQiV8r6DZ83bFqM53whps27Awcy1utD": [ + { + "amount": "203.166499380", + "slot": { + "period": 127600, + "thread": 8 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 202062, + "thread": 10 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 490287, + "thread": 30 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 622647, + "thread": 22 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 745678, + "thread": 14 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 946909, + "thread": 31 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1035666, + "thread": 4 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1302320, + "thread": 29 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1408793, + "thread": 13 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1484801, + "thread": 31 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1745638, + "thread": 14 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1878079, + "thread": 14 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 1992881, + "thread": 18 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 2177650, + "thread": 16 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 2436927, + "thread": 4 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 2556720, + "thread": 3 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 2646084, + "thread": 22 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 2797334, + "thread": 4 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 3047307, + "thread": 10 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 3208416, + "thread": 17 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 3377489, + "thread": 1 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 3502170, + "thread": 16 + } + }, + { + "amount": "203.166499380", + "slot": { + "period": 3645524, + "thread": 26 + } + }, + { + "amount": "203.166499373", + "slot": { + "period": 3901060, + "thread": 31 + } + } + ], + "AU1CH6MpUPtE7TzFHex8FNiXSeXNDjd9DGtvKucj1n3g5JrGZJs4": [ + { + "amount": "129.039297091", + "slot": { + "period": 120538, + "thread": 19 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 227208, + "thread": 29 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 490378, + "thread": 11 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 649636, + "thread": 0 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 662409, + "thread": 25 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 913231, + "thread": 15 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1038037, + "thread": 16 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1217159, + "thread": 16 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1368394, + "thread": 19 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1636457, + "thread": 0 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1702215, + "thread": 20 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 1822919, + "thread": 22 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2035892, + "thread": 17 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2144450, + "thread": 27 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2420350, + "thread": 9 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2509149, + "thread": 20 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2660778, + "thread": 19 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 2842783, + "thread": 13 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 3100724, + "thread": 4 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 3135951, + "thread": 20 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 3379872, + "thread": 16 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 3552139, + "thread": 10 + } + }, + { + "amount": "129.039297091", + "slot": { + "period": 3756106, + "thread": 8 + } + }, + { + "amount": "129.039297097", + "slot": { + "period": 3877881, + "thread": 12 + } + } + ], + "AU1CHa6XE1WwNdoVg76LjnJaouZdTyxksoArbeArDHPdamagyoep": [ + { + "amount": "503.254101052", + "slot": { + "period": 28750, + "thread": 30 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 211637, + "thread": 20 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 364233, + "thread": 29 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 567830, + "thread": 18 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 754436, + "thread": 20 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 890097, + "thread": 25 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1101047, + "thread": 25 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1161071, + "thread": 2 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1399499, + "thread": 9 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1616695, + "thread": 31 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1743258, + "thread": 12 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 1809150, + "thread": 30 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2114664, + "thread": 18 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2246218, + "thread": 30 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2456315, + "thread": 3 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2549753, + "thread": 18 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2751588, + "thread": 4 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 2896511, + "thread": 22 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 3101713, + "thread": 28 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 3132394, + "thread": 14 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 3432441, + "thread": 24 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 3525215, + "thread": 2 + } + }, + { + "amount": "503.254101052", + "slot": { + "period": 3651949, + "thread": 2 + } + }, + { + "amount": "503.254101044", + "slot": { + "period": 3817924, + "thread": 14 + } + } + ], + "AU1CHrdiCyHgAhEuvbpn2RsoeQDayEGzY1FQUyFvenh9nseuDtAx": [ + { + "amount": "59.323908706", + "slot": { + "period": 131304, + "thread": 14 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 167787, + "thread": 15 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 477701, + "thread": 7 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 643231, + "thread": 2 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 761835, + "thread": 8 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 916416, + "thread": 24 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1012951, + "thread": 31 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1270405, + "thread": 31 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1430531, + "thread": 2 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1560140, + "thread": 1 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1656687, + "thread": 30 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 1838132, + "thread": 3 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2008913, + "thread": 20 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2170884, + "thread": 14 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2434285, + "thread": 14 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2540988, + "thread": 13 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2658543, + "thread": 2 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2797809, + "thread": 4 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 2979238, + "thread": 25 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 3191691, + "thread": 26 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 3380875, + "thread": 31 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 3470641, + "thread": 2 + } + }, + { + "amount": "59.323908706", + "slot": { + "period": 3699481, + "thread": 18 + } + }, + { + "amount": "59.323908718", + "slot": { + "period": 3880008, + "thread": 16 + } + } + ], + "AU1CJ3f3HaxQMape9j9onBrgWhyBavESonbfPN1mLt9GS2SBTpat": [ + { + "amount": "100.895676492", + "slot": { + "period": 46342, + "thread": 21 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 300372, + "thread": 0 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 408848, + "thread": 13 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 554953, + "thread": 11 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 687685, + "thread": 20 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 843059, + "thread": 17 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1034504, + "thread": 3 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1156365, + "thread": 17 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1406982, + "thread": 22 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1587930, + "thread": 20 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1733794, + "thread": 0 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 1863652, + "thread": 29 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2119905, + "thread": 30 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2291344, + "thread": 24 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2346780, + "thread": 23 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2547744, + "thread": 29 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2715436, + "thread": 14 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2796656, + "thread": 17 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 2957884, + "thread": 27 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 3193189, + "thread": 19 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 3323045, + "thread": 3 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 3517371, + "thread": 8 + } + }, + { + "amount": "100.895676492", + "slot": { + "period": 3678890, + "thread": 2 + } + }, + { + "amount": "100.895676491", + "slot": { + "period": 3935924, + "thread": 3 + } + } + ], + "AU1CJHGtWN1KQr4qmKDYjUGbnvXFXhtoy7YsTXHwKB8aqfbj9dfj": [ + { + "amount": "99.988501060", + "slot": { + "period": 40307, + "thread": 15 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 281764, + "thread": 5 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 470565, + "thread": 4 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 580184, + "thread": 28 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 807702, + "thread": 31 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 857793, + "thread": 19 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1147547, + "thread": 29 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1294990, + "thread": 7 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1447441, + "thread": 1 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1511587, + "thread": 30 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1665950, + "thread": 22 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 1823603, + "thread": 16 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2073140, + "thread": 18 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2279698, + "thread": 25 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2311330, + "thread": 17 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2471292, + "thread": 13 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2718178, + "thread": 11 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 2812608, + "thread": 28 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 3048919, + "thread": 10 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 3128826, + "thread": 19 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 3323165, + "thread": 21 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 3615451, + "thread": 28 + } + }, + { + "amount": "99.988501060", + "slot": { + "period": 3701203, + "thread": 31 + } + }, + { + "amount": "99.988501068", + "slot": { + "period": 3780620, + "thread": 5 + } + } + ], + "AU1CK5Q4qdGHXasrzMtniLsKjJsyZTuwmzQV1p3JMhaGYwkrCHDj": [ + { + "amount": "103.021220044", + "slot": { + "period": 48013, + "thread": 23 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 252089, + "thread": 4 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 426932, + "thread": 10 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 647529, + "thread": 1 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 814084, + "thread": 8 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 943571, + "thread": 25 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1121106, + "thread": 15 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1176720, + "thread": 23 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1319326, + "thread": 16 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1581095, + "thread": 28 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1741324, + "thread": 20 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 1846870, + "thread": 3 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2125461, + "thread": 21 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2179635, + "thread": 26 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2362351, + "thread": 10 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2534802, + "thread": 12 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2642818, + "thread": 12 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 2916758, + "thread": 21 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 3033550, + "thread": 17 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 3161147, + "thread": 23 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 3376923, + "thread": 30 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 3532029, + "thread": 11 + } + }, + { + "amount": "103.021220044", + "slot": { + "period": 3705260, + "thread": 4 + } + }, + { + "amount": "103.021220033", + "slot": { + "period": 3857930, + "thread": 13 + } + } + ], + "AU1CKnpU8QABXhfY6iMiNCNxK7AepFip5tCC65WVtY7UTgsw9hmf": [ + { + "amount": "112.340638008", + "slot": { + "period": 152645, + "thread": 17 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 270880, + "thread": 31 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 448696, + "thread": 25 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 538657, + "thread": 13 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 788020, + "thread": 17 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 922310, + "thread": 15 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1115866, + "thread": 29 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1172150, + "thread": 31 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1425088, + "thread": 22 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1537405, + "thread": 29 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1690283, + "thread": 17 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 1877610, + "thread": 22 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2067219, + "thread": 15 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2227530, + "thread": 9 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2453550, + "thread": 12 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2616087, + "thread": 31 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2718112, + "thread": 2 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 2910607, + "thread": 1 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 3095010, + "thread": 26 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 3286587, + "thread": 0 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 3395934, + "thread": 30 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 3520800, + "thread": 27 + } + }, + { + "amount": "112.340638008", + "slot": { + "period": 3665812, + "thread": 18 + } + }, + { + "amount": "112.340638018", + "slot": { + "period": 3828382, + "thread": 9 + } + } + ], + "AU1CL7APBeWhpR6zwBgT869mnYEcjYuise588CM8eTCsZo6VauqT": [ + { + "amount": "58.289852181", + "slot": { + "period": 77462, + "thread": 20 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 271280, + "thread": 8 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 374507, + "thread": 30 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 645185, + "thread": 7 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 703083, + "thread": 25 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 899872, + "thread": 1 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1117475, + "thread": 27 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1204925, + "thread": 23 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1386548, + "thread": 22 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1636097, + "thread": 16 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1785519, + "thread": 29 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 1868962, + "thread": 30 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2140908, + "thread": 30 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2256326, + "thread": 14 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2376823, + "thread": 25 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2609705, + "thread": 16 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2684821, + "thread": 30 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 2882762, + "thread": 28 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 3062153, + "thread": 8 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 3256572, + "thread": 18 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 3340118, + "thread": 9 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 3503510, + "thread": 14 + } + }, + { + "amount": "58.289852181", + "slot": { + "period": 3695975, + "thread": 2 + } + }, + { + "amount": "58.289852176", + "slot": { + "period": 3793904, + "thread": 25 + } + } + ], + "AU1CL7euhZeQTBRaK3msy9D8kJJ1eN7D4s6NXhNiQnzNeG4JFKbD": [ + { + "amount": "118.629636032", + "slot": { + "period": 161534, + "thread": 5 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 228609, + "thread": 12 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 366370, + "thread": 16 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 494936, + "thread": 2 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 804791, + "thread": 14 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 928412, + "thread": 22 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1140864, + "thread": 27 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1309506, + "thread": 1 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1403090, + "thread": 20 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1563607, + "thread": 9 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1747334, + "thread": 11 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 1841997, + "thread": 19 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2045417, + "thread": 27 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2154255, + "thread": 12 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2415907, + "thread": 26 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2478338, + "thread": 21 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2640421, + "thread": 13 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 2936903, + "thread": 20 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 3085356, + "thread": 30 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 3235595, + "thread": 10 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 3414042, + "thread": 29 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 3517668, + "thread": 5 + } + }, + { + "amount": "118.629636032", + "slot": { + "period": 3656978, + "thread": 28 + } + }, + { + "amount": "118.629636044", + "slot": { + "period": 3805412, + "thread": 3 + } + } + ], + "AU1CL9VbApBsHZkn7sQqTErDg3J338AxuPTeb6sB5Fkxks8bszfK": [ + { + "amount": "1512.723717049", + "slot": { + "period": 128347, + "thread": 8 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 194203, + "thread": 7 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 454897, + "thread": 8 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 625394, + "thread": 27 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 663094, + "thread": 15 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 851534, + "thread": 26 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1067822, + "thread": 22 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1164901, + "thread": 15 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1326100, + "thread": 29 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1643706, + "thread": 31 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1729387, + "thread": 15 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 1830397, + "thread": 3 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2100405, + "thread": 7 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2261494, + "thread": 3 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2406091, + "thread": 28 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2488684, + "thread": 26 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2625405, + "thread": 30 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 2830041, + "thread": 21 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 3033824, + "thread": 3 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 3187047, + "thread": 16 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 3323639, + "thread": 24 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 3550200, + "thread": 15 + } + }, + { + "amount": "1512.723717049", + "slot": { + "period": 3773727, + "thread": 18 + } + }, + { + "amount": "1512.723717040", + "slot": { + "period": 3878563, + "thread": 1 + } + } + ], + "AU1CLL57rbxpHGzarmmGWMrVXY8sxj7gKCRrvz4n8m3XkhtEkYSF": [ + { + "amount": "189.619859201", + "slot": { + "period": 96670, + "thread": 16 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 279654, + "thread": 12 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 379678, + "thread": 2 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 604189, + "thread": 0 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 695061, + "thread": 22 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 944844, + "thread": 23 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1126769, + "thread": 16 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1312102, + "thread": 13 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1465523, + "thread": 10 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1555846, + "thread": 3 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1756838, + "thread": 14 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1864477, + "thread": 18 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 1996777, + "thread": 26 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 2234826, + "thread": 4 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 2357514, + "thread": 8 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 2527338, + "thread": 3 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 2710524, + "thread": 17 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 2929278, + "thread": 21 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 3100926, + "thread": 24 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 3240831, + "thread": 17 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 3335939, + "thread": 28 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 3494596, + "thread": 18 + } + }, + { + "amount": "189.619859201", + "slot": { + "period": 3752324, + "thread": 22 + } + }, + { + "amount": "189.619859196", + "slot": { + "period": 3891238, + "thread": 26 + } + } + ], + "AU1CLa6x3mKksnRCytWdfN9v7n9NZesT197efXeawzjxdcCDFkic": [ + { + "amount": "51.328744617", + "slot": { + "period": 105743, + "thread": 20 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 270386, + "thread": 16 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 368783, + "thread": 6 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 615983, + "thread": 2 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 777079, + "thread": 10 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 951093, + "thread": 14 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1111731, + "thread": 9 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1150954, + "thread": 9 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1384434, + "thread": 21 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1482466, + "thread": 13 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1727984, + "thread": 4 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 1908274, + "thread": 31 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2143298, + "thread": 23 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2231772, + "thread": 21 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2437785, + "thread": 22 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2616714, + "thread": 5 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2638658, + "thread": 29 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 2837651, + "thread": 23 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 3101163, + "thread": 4 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 3192003, + "thread": 6 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 3407505, + "thread": 6 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 3559544, + "thread": 30 + } + }, + { + "amount": "51.328744617", + "slot": { + "period": 3720314, + "thread": 30 + } + }, + { + "amount": "51.328744609", + "slot": { + "period": 3833728, + "thread": 0 + } + } + ], + "AU1CN9XnsWQ9qMrNJRmZwhopK8z6PpAx7jT1tSbtpBCnVb3oXi7u": [ + { + "amount": "150.467080925", + "slot": { + "period": 88300, + "thread": 7 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 222601, + "thread": 6 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 342513, + "thread": 7 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 593376, + "thread": 15 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 782968, + "thread": 26 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 977509, + "thread": 1 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1053526, + "thread": 19 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1292647, + "thread": 1 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1450845, + "thread": 30 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1633588, + "thread": 8 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1788773, + "thread": 0 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 1890068, + "thread": 27 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2059776, + "thread": 7 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2167750, + "thread": 14 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2393335, + "thread": 11 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2467827, + "thread": 8 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2723194, + "thread": 31 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2873383, + "thread": 31 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 2965385, + "thread": 29 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 3277779, + "thread": 31 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 3365217, + "thread": 25 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 3569586, + "thread": 8 + } + }, + { + "amount": "150.467080925", + "slot": { + "period": 3756337, + "thread": 21 + } + }, + { + "amount": "150.467080930", + "slot": { + "period": 3889053, + "thread": 14 + } + } + ], + "AU1CNhHUsqk8fy7u76wAawDq21MAvDQw9xF5YgUwWPeB92LvtG6C": [ + { + "amount": "89.968461191", + "slot": { + "period": 161563, + "thread": 5 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 195652, + "thread": 11 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 459356, + "thread": 20 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 531275, + "thread": 8 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 763218, + "thread": 7 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 888327, + "thread": 16 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1149942, + "thread": 27 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1299922, + "thread": 22 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1381742, + "thread": 29 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1504208, + "thread": 10 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1790339, + "thread": 23 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 1845693, + "thread": 25 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2075441, + "thread": 26 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2215225, + "thread": 7 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2306309, + "thread": 22 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2537436, + "thread": 20 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2652179, + "thread": 28 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 2914858, + "thread": 13 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 3008180, + "thread": 4 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 3246485, + "thread": 10 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 3424935, + "thread": 5 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 3587797, + "thread": 10 + } + }, + { + "amount": "89.968461191", + "slot": { + "period": 3764411, + "thread": 24 + } + }, + { + "amount": "89.968461198", + "slot": { + "period": 3927905, + "thread": 16 + } + } + ], + "AU1CPKN2GDzwzw9EHhYAj8HUetNy86vvPusdahM7JoTHXNuDwMeJ": [ + { + "amount": "218.513268657", + "slot": { + "period": 18189, + "thread": 15 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 251404, + "thread": 2 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 349861, + "thread": 11 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 651625, + "thread": 27 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 769575, + "thread": 9 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 977798, + "thread": 5 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1069013, + "thread": 8 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1287727, + "thread": 7 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1422753, + "thread": 26 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1627734, + "thread": 0 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1784743, + "thread": 12 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 1963819, + "thread": 15 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2097675, + "thread": 4 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2150623, + "thread": 8 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2445846, + "thread": 18 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2530678, + "thread": 5 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2718935, + "thread": 24 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 2824982, + "thread": 15 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 3016660, + "thread": 20 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 3268969, + "thread": 19 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 3383143, + "thread": 28 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 3517174, + "thread": 23 + } + }, + { + "amount": "218.513268657", + "slot": { + "period": 3668260, + "thread": 11 + } + }, + { + "amount": "218.513268646", + "slot": { + "period": 3921474, + "thread": 29 + } + } + ], + "AU1CPynJgeaqtkDsourkQ6eUq4p4DFz9a4vZsC1N7UL2ULAy65r5": [ + { + "amount": "91.813940980", + "slot": { + "period": 114177, + "thread": 14 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 198983, + "thread": 23 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 488156, + "thread": 28 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 496980, + "thread": 14 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 787763, + "thread": 12 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 873735, + "thread": 15 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1147354, + "thread": 8 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1189953, + "thread": 15 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1475434, + "thread": 1 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1485796, + "thread": 18 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1719245, + "thread": 11 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 1885928, + "thread": 20 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2116492, + "thread": 19 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2209249, + "thread": 10 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2406240, + "thread": 3 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2535321, + "thread": 19 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2705971, + "thread": 5 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2864660, + "thread": 6 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 2965181, + "thread": 1 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 3188998, + "thread": 31 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 3378556, + "thread": 8 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 3508052, + "thread": 12 + } + }, + { + "amount": "91.813940980", + "slot": { + "period": 3704616, + "thread": 8 + } + }, + { + "amount": "91.813940989", + "slot": { + "period": 3816165, + "thread": 13 + } + } + ], + "AU1CQhoreGEh86uXPFsVmP26Vp75rK7wua3STEL7vwG7Vx7CyoMW": [ + { + "amount": "187.371244411", + "slot": { + "period": 138774, + "thread": 26 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 211070, + "thread": 3 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 463641, + "thread": 27 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 603466, + "thread": 10 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 766642, + "thread": 11 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 848110, + "thread": 9 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1133561, + "thread": 26 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1299165, + "thread": 8 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1354913, + "thread": 25 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1558052, + "thread": 0 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1780094, + "thread": 21 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1887581, + "thread": 31 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 1980144, + "thread": 21 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 2145110, + "thread": 21 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 2447223, + "thread": 6 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 2590161, + "thread": 14 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 2698657, + "thread": 22 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 2831765, + "thread": 12 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 3047314, + "thread": 0 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 3155582, + "thread": 24 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 3422003, + "thread": 26 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 3496258, + "thread": 28 + } + }, + { + "amount": "187.371244411", + "slot": { + "period": 3706762, + "thread": 27 + } + }, + { + "amount": "187.371244415", + "slot": { + "period": 3947199, + "thread": 12 + } + } + ], + "AU1CRzYax8qXcD6tjuRYf2KP7d1yHbMi6c4yPRC74bzwCUCDWtrM": [ + { + "amount": "594.852763297", + "slot": { + "period": 82483, + "thread": 18 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 210651, + "thread": 24 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 438247, + "thread": 25 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 614651, + "thread": 15 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 778934, + "thread": 24 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 947039, + "thread": 14 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1073789, + "thread": 19 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1280526, + "thread": 26 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1381424, + "thread": 21 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1512579, + "thread": 8 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1805914, + "thread": 0 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1873833, + "thread": 9 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 1999776, + "thread": 26 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 2148703, + "thread": 15 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 2396938, + "thread": 22 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 2494652, + "thread": 21 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 2666453, + "thread": 25 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 2842562, + "thread": 26 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 3008903, + "thread": 17 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 3140457, + "thread": 20 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 3441410, + "thread": 13 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 3457426, + "thread": 27 + } + }, + { + "amount": "594.852763297", + "slot": { + "period": 3774296, + "thread": 31 + } + }, + { + "amount": "594.852763299", + "slot": { + "period": 3850631, + "thread": 22 + } + } + ], + "AU1CSYYKV19iHE9f7RNEeBNF4Tj3KuS6pbkpaFPdNERfAqmm9BHm": [ + { + "amount": "632.405771148", + "slot": { + "period": 134631, + "thread": 22 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 313974, + "thread": 30 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 401362, + "thread": 24 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 564482, + "thread": 15 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 747212, + "thread": 12 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 858241, + "thread": 20 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1102647, + "thread": 28 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1211014, + "thread": 19 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1474230, + "thread": 26 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1635987, + "thread": 31 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1711774, + "thread": 0 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 1964290, + "thread": 6 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2060562, + "thread": 4 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2145011, + "thread": 11 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2313584, + "thread": 27 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2574916, + "thread": 9 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2706963, + "thread": 26 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 2844203, + "thread": 8 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 3017787, + "thread": 4 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 3270786, + "thread": 30 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 3432672, + "thread": 18 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 3590083, + "thread": 23 + } + }, + { + "amount": "632.405771148", + "slot": { + "period": 3740707, + "thread": 14 + } + }, + { + "amount": "632.405771153", + "slot": { + "period": 3792593, + "thread": 8 + } + } + ], + "AU1CTCinUFVQTAEXnCASDqUonkqc2uq7P9nk2EfxfCSHURyNmFfB": [ + { + "amount": "84.043210953", + "slot": { + "period": 38570, + "thread": 31 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 265264, + "thread": 5 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 445589, + "thread": 20 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 570639, + "thread": 2 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 705780, + "thread": 13 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 858711, + "thread": 10 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 988281, + "thread": 11 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 1266855, + "thread": 14 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 1405991, + "thread": 29 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 1518832, + "thread": 12 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 1779222, + "thread": 9 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 1871727, + "thread": 7 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2106254, + "thread": 21 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2230822, + "thread": 24 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2412350, + "thread": 19 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2566451, + "thread": 6 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2761845, + "thread": 8 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2803075, + "thread": 10 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 2957023, + "thread": 14 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 3208853, + "thread": 18 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 3390373, + "thread": 22 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 3578860, + "thread": 27 + } + }, + { + "amount": "84.043210953", + "slot": { + "period": 3642277, + "thread": 2 + } + }, + { + "amount": "84.043210945", + "slot": { + "period": 3856773, + "thread": 0 + } + } + ], + "AU1CTGrkkSxfwwDBNV8VDqZQNLv2NfbMLfvjJVnDMpcaCCXZnifX": [ + { + "amount": "377.095540121", + "slot": { + "period": 53302, + "thread": 3 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 216983, + "thread": 10 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 351627, + "thread": 28 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 529321, + "thread": 1 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 808039, + "thread": 21 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 889246, + "thread": 6 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1038733, + "thread": 3 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1193250, + "thread": 16 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1329015, + "thread": 6 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1502425, + "thread": 13 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1670577, + "thread": 7 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 1839316, + "thread": 28 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2047382, + "thread": 29 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2264707, + "thread": 26 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2365141, + "thread": 23 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2597454, + "thread": 24 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2720883, + "thread": 13 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 2899172, + "thread": 6 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 3049355, + "thread": 17 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 3224989, + "thread": 6 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 3386091, + "thread": 21 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 3556059, + "thread": 7 + } + }, + { + "amount": "377.095540121", + "slot": { + "period": 3703004, + "thread": 2 + } + }, + { + "amount": "377.095540130", + "slot": { + "period": 3827941, + "thread": 29 + } + } + ], + "AU1CTQDw3qiJ1yBrsbA4nrPxWJ12a8KbdwAhyNRwhoBcpx56tE6V": [ + { + "amount": "62.858637326", + "slot": { + "period": 91067, + "thread": 28 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 289652, + "thread": 27 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 396241, + "thread": 30 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 632029, + "thread": 29 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 679671, + "thread": 17 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 891065, + "thread": 26 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1077743, + "thread": 15 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1254378, + "thread": 27 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1331167, + "thread": 5 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1579077, + "thread": 25 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1689765, + "thread": 12 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 1888864, + "thread": 20 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2044240, + "thread": 6 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2177912, + "thread": 10 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2380578, + "thread": 29 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2515819, + "thread": 3 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2683977, + "thread": 11 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 2829257, + "thread": 3 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 3098896, + "thread": 12 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 3227623, + "thread": 21 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 3370454, + "thread": 3 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 3529040, + "thread": 29 + } + }, + { + "amount": "62.858637326", + "slot": { + "period": 3752703, + "thread": 21 + } + }, + { + "amount": "62.858637331", + "slot": { + "period": 3915860, + "thread": 22 + } + } + ], + "AU1CTqR2uUBiA6cXx758znzntZpsNrHa4tLuTuwgVkhPETBUNpYR": [ + { + "amount": "97.911740075", + "slot": { + "period": 34818, + "thread": 13 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 315652, + "thread": 22 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 412271, + "thread": 30 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 621156, + "thread": 24 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 700181, + "thread": 26 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 840838, + "thread": 0 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1073091, + "thread": 28 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1166059, + "thread": 12 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1462711, + "thread": 30 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1523933, + "thread": 7 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1684412, + "thread": 23 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 1830189, + "thread": 28 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2111760, + "thread": 1 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2267512, + "thread": 10 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2411216, + "thread": 10 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2566376, + "thread": 9 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2686912, + "thread": 15 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 2828254, + "thread": 30 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 3003825, + "thread": 30 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 3184995, + "thread": 31 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 3304170, + "thread": 26 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 3565919, + "thread": 28 + } + }, + { + "amount": "97.911740075", + "slot": { + "period": 3690203, + "thread": 21 + } + }, + { + "amount": "97.911740070", + "slot": { + "period": 3859875, + "thread": 22 + } + } + ], + "AU1CU3x9q2EUWh2XyxJQEiq3KAsDwFqWrcvW5Rj8F3TpcfMx1DdZ": [ + { + "amount": "90.028595805", + "slot": { + "period": 77145, + "thread": 7 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 201613, + "thread": 18 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 420503, + "thread": 28 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 554270, + "thread": 16 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 786383, + "thread": 8 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 851689, + "thread": 6 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1131722, + "thread": 10 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1301596, + "thread": 15 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1385452, + "thread": 17 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1483112, + "thread": 10 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1764568, + "thread": 18 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1815067, + "thread": 5 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 1986627, + "thread": 2 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2233821, + "thread": 19 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2407061, + "thread": 0 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2598636, + "thread": 28 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2751334, + "thread": 12 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2885925, + "thread": 9 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 2957637, + "thread": 7 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 3269745, + "thread": 1 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 3444567, + "thread": 6 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 3467844, + "thread": 31 + } + }, + { + "amount": "90.028595805", + "slot": { + "period": 3725294, + "thread": 30 + } + }, + { + "amount": "90.028595811", + "slot": { + "period": 3799536, + "thread": 8 + } + } + ], + "AU1CUfzGdbNsgD5FqYXCa6vth56QtGs58bsiGM1cE5gfHuiJBCXt": [ + { + "amount": "440.955586356", + "slot": { + "period": 163848, + "thread": 23 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 175080, + "thread": 26 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 400063, + "thread": 9 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 539877, + "thread": 20 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 708328, + "thread": 17 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 827633, + "thread": 15 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1146774, + "thread": 1 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1184562, + "thread": 24 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1446824, + "thread": 14 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1529952, + "thread": 4 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1791990, + "thread": 31 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1971723, + "thread": 1 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 1977209, + "thread": 2 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2227735, + "thread": 3 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2402806, + "thread": 0 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2489191, + "thread": 15 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2722408, + "thread": 25 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2873577, + "thread": 25 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 2996018, + "thread": 21 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 3121637, + "thread": 19 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 3434227, + "thread": 15 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 3556344, + "thread": 22 + } + }, + { + "amount": "440.955586356", + "slot": { + "period": 3690479, + "thread": 18 + } + }, + { + "amount": "440.955586364", + "slot": { + "period": 3887972, + "thread": 9 + } + } + ], + "AU1CUp6VW8uqeak4vBjLDe9cJezYLjTWW7kR6jvBqufY8Ru7Uh2K": [ + { + "amount": "89.341821372", + "slot": { + "period": 83440, + "thread": 19 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 198560, + "thread": 16 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 450941, + "thread": 20 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 564897, + "thread": 13 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 768703, + "thread": 16 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 962040, + "thread": 1 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 990786, + "thread": 3 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 1179320, + "thread": 22 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 1475905, + "thread": 12 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 1637085, + "thread": 26 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 1762498, + "thread": 22 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 1974487, + "thread": 1 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2057326, + "thread": 24 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2275482, + "thread": 16 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2410982, + "thread": 24 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2514952, + "thread": 16 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2702671, + "thread": 2 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 2882397, + "thread": 16 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 3097459, + "thread": 5 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 3253441, + "thread": 24 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 3314997, + "thread": 30 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 3514601, + "thread": 18 + } + }, + { + "amount": "89.341821372", + "slot": { + "period": 3733587, + "thread": 30 + } + }, + { + "amount": "89.341821377", + "slot": { + "period": 3782460, + "thread": 20 + } + } + ], + "AU1CVNm16sdw4GJyna39vtF3GniE9teDuoCEUBNeYPhEHv6gUkcB": [ + { + "amount": "161.018781002", + "slot": { + "period": 25088, + "thread": 0 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 225925, + "thread": 26 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 334897, + "thread": 4 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 632353, + "thread": 8 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 669243, + "thread": 29 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 862114, + "thread": 8 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1039615, + "thread": 30 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1198867, + "thread": 9 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1378311, + "thread": 13 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1520509, + "thread": 8 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1747024, + "thread": 14 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 1859343, + "thread": 8 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2133099, + "thread": 1 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2281386, + "thread": 15 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2385955, + "thread": 4 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2617702, + "thread": 30 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2631426, + "thread": 25 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2923711, + "thread": 26 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 2977358, + "thread": 16 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 3168997, + "thread": 1 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 3321511, + "thread": 30 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 3535297, + "thread": 30 + } + }, + { + "amount": "161.018781002", + "slot": { + "period": 3681238, + "thread": 28 + } + }, + { + "amount": "161.018781013", + "slot": { + "period": 3839339, + "thread": 8 + } + } + ], + "AU1CW4spjD2YbjGGHJETphft6HWmSH2Vr8NarSSGyTVLRx7KKfjD": [ + { + "amount": "81.496598405", + "slot": { + "period": 98234, + "thread": 0 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 181830, + "thread": 3 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 389973, + "thread": 27 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 567348, + "thread": 8 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 808490, + "thread": 20 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 892268, + "thread": 14 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1086000, + "thread": 15 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1179484, + "thread": 25 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1437547, + "thread": 20 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1620610, + "thread": 8 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1699652, + "thread": 18 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 1903942, + "thread": 10 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2002525, + "thread": 31 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2214133, + "thread": 9 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2450677, + "thread": 7 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2545069, + "thread": 18 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2647675, + "thread": 3 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 2937763, + "thread": 14 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 3047795, + "thread": 6 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 3263589, + "thread": 26 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 3410737, + "thread": 2 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 3615347, + "thread": 20 + } + }, + { + "amount": "81.496598405", + "slot": { + "period": 3776310, + "thread": 31 + } + }, + { + "amount": "81.496598406", + "slot": { + "period": 3846067, + "thread": 11 + } + } + ], + "AU1CWQ5kwb16D8LY7vWkzoj3gUF5UdfXQKDF66AKo7PuVhyQ8Aqe": [ + { + "amount": "79.685927288", + "slot": { + "period": 126694, + "thread": 31 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 183733, + "thread": 31 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 420972, + "thread": 29 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 552928, + "thread": 10 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 795834, + "thread": 23 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 949496, + "thread": 27 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 986589, + "thread": 28 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 1240035, + "thread": 22 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 1453909, + "thread": 5 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 1506801, + "thread": 23 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 1797253, + "thread": 1 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 1917633, + "thread": 6 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2084317, + "thread": 4 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2252362, + "thread": 18 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2459411, + "thread": 25 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2603863, + "thread": 30 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2665989, + "thread": 2 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 2949345, + "thread": 5 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 3117415, + "thread": 19 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 3208588, + "thread": 11 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 3398278, + "thread": 19 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 3458770, + "thread": 13 + } + }, + { + "amount": "79.685927288", + "slot": { + "period": 3671043, + "thread": 19 + } + }, + { + "amount": "79.685927298", + "slot": { + "period": 3781017, + "thread": 14 + } + } + ], + "AU1CXrsGvEfByGZ7w8EGXGa4jvvZKTEGLhB4QqAMVExKaHzpF6Xo": [ + { + "amount": "106.005782308", + "slot": { + "period": 19698, + "thread": 11 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 313713, + "thread": 25 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 445691, + "thread": 21 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 604513, + "thread": 18 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 816964, + "thread": 20 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 954605, + "thread": 15 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1109862, + "thread": 14 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1173954, + "thread": 8 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1358084, + "thread": 4 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1523972, + "thread": 22 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1682360, + "thread": 8 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 1914139, + "thread": 16 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2031804, + "thread": 24 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2253325, + "thread": 11 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2334073, + "thread": 20 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2481170, + "thread": 30 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2745143, + "thread": 31 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 2885384, + "thread": 7 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 3119723, + "thread": 8 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 3199239, + "thread": 5 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 3410844, + "thread": 27 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 3557263, + "thread": 23 + } + }, + { + "amount": "106.005782308", + "slot": { + "period": 3624081, + "thread": 4 + } + }, + { + "amount": "106.005782313", + "slot": { + "period": 3788109, + "thread": 27 + } + } + ], + "AU1CXxWdZj5S67mkEdSQLfPg7Bs8BjS9Zr3ktPVgmpQX4NWz8aeF": [ + { + "amount": "232.567331337", + "slot": { + "period": 97007, + "thread": 1 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 193392, + "thread": 1 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 479926, + "thread": 23 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 646988, + "thread": 29 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 674921, + "thread": 26 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 902194, + "thread": 4 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1060417, + "thread": 17 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1252030, + "thread": 18 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1362137, + "thread": 1 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1613177, + "thread": 0 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1788638, + "thread": 15 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 1864497, + "thread": 28 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2107879, + "thread": 14 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2280685, + "thread": 27 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2360531, + "thread": 2 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2519389, + "thread": 30 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2759387, + "thread": 16 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 2928946, + "thread": 17 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 3066625, + "thread": 15 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 3272156, + "thread": 1 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 3330425, + "thread": 20 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 3559052, + "thread": 25 + } + }, + { + "amount": "232.567331337", + "slot": { + "period": 3752106, + "thread": 3 + } + }, + { + "amount": "232.567331344", + "slot": { + "period": 3806212, + "thread": 25 + } + } + ], + "AU1CY7JrCrtRyed3iNA8eke7BTEdsGwe5QCxBynmsAzyiNYtVmxq": [ + { + "amount": "219.646711721", + "slot": { + "period": 63987, + "thread": 29 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 275133, + "thread": 28 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 358927, + "thread": 5 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 653343, + "thread": 13 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 814659, + "thread": 28 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 840272, + "thread": 5 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1116619, + "thread": 17 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1244014, + "thread": 2 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1397440, + "thread": 10 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1624313, + "thread": 21 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1732274, + "thread": 0 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 1945649, + "thread": 1 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2081334, + "thread": 7 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2277118, + "thread": 3 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2462182, + "thread": 9 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2517238, + "thread": 30 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2654687, + "thread": 26 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 2826013, + "thread": 28 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 3018831, + "thread": 30 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 3153767, + "thread": 8 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 3321168, + "thread": 20 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 3615280, + "thread": 9 + } + }, + { + "amount": "219.646711721", + "slot": { + "period": 3664167, + "thread": 7 + } + }, + { + "amount": "219.646711718", + "slot": { + "period": 3803158, + "thread": 19 + } + } + ], + "AU1CYHJrng9ScDVo4WdZNVVanMoYR9tdWvT5A38NMJzEuRnR4teC": [ + { + "amount": "326.048901917", + "slot": { + "period": 137257, + "thread": 17 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 295939, + "thread": 10 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 330058, + "thread": 7 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 606316, + "thread": 28 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 662669, + "thread": 28 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 885818, + "thread": 30 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1014651, + "thread": 22 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1314105, + "thread": 23 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1466459, + "thread": 12 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1514493, + "thread": 11 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1784298, + "thread": 26 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 1926559, + "thread": 29 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2013734, + "thread": 15 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2256347, + "thread": 26 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2409097, + "thread": 7 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2483549, + "thread": 2 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2645026, + "thread": 13 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 2799097, + "thread": 10 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 3085748, + "thread": 28 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 3177236, + "thread": 19 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 3375889, + "thread": 2 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 3574383, + "thread": 18 + } + }, + { + "amount": "326.048901917", + "slot": { + "period": 3645989, + "thread": 15 + } + }, + { + "amount": "326.048901910", + "slot": { + "period": 3811785, + "thread": 31 + } + } + ], + "AU1CYWK4wLqvzh4Q7WFdmtEDfwzUjJczLw5Vckft153a7BUXFuhF": [ + { + "amount": "295.023218290", + "slot": { + "period": 15099, + "thread": 10 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 310277, + "thread": 15 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 416083, + "thread": 16 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 564709, + "thread": 7 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 736417, + "thread": 15 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 923682, + "thread": 21 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1064516, + "thread": 8 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1198967, + "thread": 1 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1382818, + "thread": 26 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1552301, + "thread": 14 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1745603, + "thread": 23 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 1815346, + "thread": 27 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2050925, + "thread": 24 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2159539, + "thread": 26 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2332025, + "thread": 3 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2506917, + "thread": 4 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2756738, + "thread": 14 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 2942016, + "thread": 23 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 3013837, + "thread": 17 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 3271178, + "thread": 25 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 3446359, + "thread": 28 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 3557777, + "thread": 11 + } + }, + { + "amount": "295.023218290", + "slot": { + "period": 3768636, + "thread": 8 + } + }, + { + "amount": "295.023218300", + "slot": { + "period": 3833296, + "thread": 23 + } + } + ], + "AU1CYuiqWbYuYgKxe4GEXBi4pudU5Am3AKJDsjbU7X2Bo5D9rP4L": [ + { + "amount": "175.845315903", + "slot": { + "period": 89513, + "thread": 25 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 317694, + "thread": 14 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 359580, + "thread": 18 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 613739, + "thread": 21 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 794035, + "thread": 26 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 903040, + "thread": 20 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1041304, + "thread": 24 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1150758, + "thread": 1 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1351960, + "thread": 10 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1628999, + "thread": 9 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1699205, + "thread": 31 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 1919841, + "thread": 16 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2038612, + "thread": 13 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2278660, + "thread": 7 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2459903, + "thread": 7 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2620069, + "thread": 25 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2726601, + "thread": 31 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2841867, + "thread": 28 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 2970233, + "thread": 10 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 3281919, + "thread": 29 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 3360882, + "thread": 16 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 3483354, + "thread": 31 + } + }, + { + "amount": "175.845315903", + "slot": { + "period": 3729016, + "thread": 3 + } + }, + { + "amount": "175.845315904", + "slot": { + "period": 3803374, + "thread": 17 + } + } + ], + "AU1CZEjC4XWn6ATxWM78b4M3RsaNgPsjV9LKG75CqMvE414MAHTz": [ + { + "amount": "529.929070450", + "slot": { + "period": 84458, + "thread": 5 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 276151, + "thread": 15 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 325375, + "thread": 19 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 555770, + "thread": 14 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 773027, + "thread": 22 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 963503, + "thread": 9 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1088360, + "thread": 29 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1200594, + "thread": 15 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1375687, + "thread": 31 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1535720, + "thread": 0 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1714409, + "thread": 15 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 1885725, + "thread": 22 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2116723, + "thread": 14 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2257421, + "thread": 24 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2425187, + "thread": 31 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2512164, + "thread": 2 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2779213, + "thread": 29 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 2862137, + "thread": 29 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 3067360, + "thread": 24 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 3208866, + "thread": 6 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 3360769, + "thread": 11 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 3614779, + "thread": 25 + } + }, + { + "amount": "529.929070450", + "slot": { + "period": 3775681, + "thread": 15 + } + }, + { + "amount": "529.929070438", + "slot": { + "period": 3887902, + "thread": 27 + } + } + ], + "AU1CZQui3wCac95AMLoScdPsLxReKXM5T735UYBD4aifbu1M6rzA": [ + { + "amount": "473.844095021", + "slot": { + "period": 48316, + "thread": 29 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 254895, + "thread": 30 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 449790, + "thread": 9 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 570105, + "thread": 1 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 691296, + "thread": 22 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 963019, + "thread": 20 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1017158, + "thread": 0 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1175249, + "thread": 27 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1456308, + "thread": 15 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1482519, + "thread": 23 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1668781, + "thread": 22 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 1851837, + "thread": 21 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2039595, + "thread": 22 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2160617, + "thread": 5 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2300916, + "thread": 7 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2528486, + "thread": 14 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2654343, + "thread": 26 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 2845267, + "thread": 31 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 3058255, + "thread": 6 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 3276974, + "thread": 25 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 3312781, + "thread": 1 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 3489256, + "thread": 14 + } + }, + { + "amount": "473.844095021", + "slot": { + "period": 3736039, + "thread": 19 + } + }, + { + "amount": "473.844095024", + "slot": { + "period": 3813552, + "thread": 20 + } + } + ], + "AU1CanTf9duiP4YZo18NgSUbJwwekRTA79wFB2GChP8dj8soe6dm": [ + { + "amount": "139.087558458", + "slot": { + "period": 66960, + "thread": 8 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 261117, + "thread": 20 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 409555, + "thread": 13 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 594002, + "thread": 5 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 785839, + "thread": 25 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 939109, + "thread": 18 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 987564, + "thread": 22 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 1250336, + "thread": 10 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 1415526, + "thread": 22 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 1526024, + "thread": 2 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 1746720, + "thread": 13 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 1928995, + "thread": 5 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2063613, + "thread": 20 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2181326, + "thread": 29 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2347031, + "thread": 26 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2529094, + "thread": 12 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2751924, + "thread": 20 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 2868386, + "thread": 25 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 3057136, + "thread": 7 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 3280951, + "thread": 22 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 3428511, + "thread": 21 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 3490153, + "thread": 2 + } + }, + { + "amount": "139.087558458", + "slot": { + "period": 3688445, + "thread": 9 + } + }, + { + "amount": "139.087558446", + "slot": { + "period": 3842761, + "thread": 7 + } + } + ], + "AU1Cb2Eh1579aVUSUUmAMsKv3NfNBUwAX2PczVg5a8zs878N6r4e": [ + { + "amount": "239.204328477", + "slot": { + "period": 84080, + "thread": 0 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 282733, + "thread": 5 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 457678, + "thread": 22 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 520650, + "thread": 4 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 776935, + "thread": 18 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 875310, + "thread": 1 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 985389, + "thread": 29 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 1276288, + "thread": 18 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 1417699, + "thread": 21 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 1592638, + "thread": 9 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 1790224, + "thread": 23 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 1825407, + "thread": 21 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2038421, + "thread": 29 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2217349, + "thread": 27 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2354376, + "thread": 27 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2528670, + "thread": 26 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2746264, + "thread": 3 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2935256, + "thread": 27 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 2998915, + "thread": 11 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 3144706, + "thread": 10 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 3408983, + "thread": 31 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 3465675, + "thread": 23 + } + }, + { + "amount": "239.204328477", + "slot": { + "period": 3658512, + "thread": 19 + } + }, + { + "amount": "239.204328483", + "slot": { + "period": 3798021, + "thread": 1 + } + } + ], + "AU1CbHe9NBz6i1mnyKX9iyR62Fmc22Dt4aeSnhDxPnZeWbLXuwSN": [ + { + "amount": "154.376706419", + "slot": { + "period": 70952, + "thread": 5 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 271638, + "thread": 27 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 338997, + "thread": 4 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 527172, + "thread": 2 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 749191, + "thread": 6 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 980196, + "thread": 18 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1120349, + "thread": 4 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1307491, + "thread": 11 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1384074, + "thread": 28 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1609574, + "thread": 22 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1708623, + "thread": 8 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 1846616, + "thread": 2 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2050460, + "thread": 1 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2163627, + "thread": 14 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2307810, + "thread": 15 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2526183, + "thread": 7 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2717497, + "thread": 0 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 2910625, + "thread": 4 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3007319, + "thread": 17 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3149905, + "thread": 17 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3298352, + "thread": 15 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3562674, + "thread": 14 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3646528, + "thread": 22 + } + }, + { + "amount": "154.376706419", + "slot": { + "period": 3856538, + "thread": 5 + } + } + ], + "AU1CbK4Z1ftQCViCqDtJ7g7Lh4Ep76yHDctfoZQ859GNDLJ6MfHZ": [ + { + "amount": "163.437511139", + "slot": { + "period": 56816, + "thread": 14 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 266001, + "thread": 25 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 377663, + "thread": 19 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 568270, + "thread": 8 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 775100, + "thread": 24 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 978519, + "thread": 14 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1145558, + "thread": 10 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1258335, + "thread": 18 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1348666, + "thread": 10 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1631195, + "thread": 20 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1651082, + "thread": 30 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 1850682, + "thread": 18 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2114277, + "thread": 23 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2163236, + "thread": 4 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2412026, + "thread": 7 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2485591, + "thread": 0 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2640881, + "thread": 28 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 2825541, + "thread": 9 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 3027984, + "thread": 26 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 3254530, + "thread": 15 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 3339731, + "thread": 19 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 3472034, + "thread": 12 + } + }, + { + "amount": "163.437511139", + "slot": { + "period": 3635642, + "thread": 29 + } + }, + { + "amount": "163.437511128", + "slot": { + "period": 3945441, + "thread": 2 + } + } + ], + "AU1CbK4mSSDkdjrdJV1UMi1Cbp2NNmT33NUqVs6XDQsaCU9geyvd": [ + { + "amount": "106.161963052", + "slot": { + "period": 13683, + "thread": 28 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 214392, + "thread": 21 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 444444, + "thread": 10 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 542241, + "thread": 3 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 676656, + "thread": 2 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 840055, + "thread": 5 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1047511, + "thread": 26 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1179798, + "thread": 20 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1472415, + "thread": 18 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1586038, + "thread": 24 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1796925, + "thread": 19 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1968080, + "thread": 17 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 1995769, + "thread": 25 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 2228293, + "thread": 14 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 2441182, + "thread": 31 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 2533706, + "thread": 7 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 2713419, + "thread": 6 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 2840797, + "thread": 24 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 3071310, + "thread": 31 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 3237867, + "thread": 19 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 3291359, + "thread": 5 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 3596911, + "thread": 15 + } + }, + { + "amount": "106.161963052", + "slot": { + "period": 3638927, + "thread": 9 + } + }, + { + "amount": "106.161963060", + "slot": { + "period": 3866395, + "thread": 22 + } + } + ], + "AU1CbrGVf1ZRmATSM7kBf3jgdg5vtuuau5Hoqur5PbEG2JH7H4zg": [ + { + "amount": "122.875000635", + "slot": { + "period": 34132, + "thread": 18 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 188648, + "thread": 20 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 464199, + "thread": 18 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 583219, + "thread": 31 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 806066, + "thread": 10 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 822663, + "thread": 0 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1036488, + "thread": 2 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1271767, + "thread": 5 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1383161, + "thread": 18 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1483858, + "thread": 1 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1779781, + "thread": 15 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 1838859, + "thread": 29 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2028232, + "thread": 18 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2147464, + "thread": 17 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2416036, + "thread": 30 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2575033, + "thread": 29 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2757966, + "thread": 30 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2846774, + "thread": 29 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 2971039, + "thread": 1 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 3178772, + "thread": 18 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 3414713, + "thread": 19 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 3469013, + "thread": 11 + } + }, + { + "amount": "122.875000635", + "slot": { + "period": 3740260, + "thread": 7 + } + }, + { + "amount": "122.875000633", + "slot": { + "period": 3805673, + "thread": 11 + } + } + ], + "AU1Cc73XLgwTBgctnAwMbsnzDceaPpxo4ArMHi299cRmSeA7HYHm": [ + { + "amount": "167.280057452", + "slot": { + "period": 47082, + "thread": 31 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 259874, + "thread": 1 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 485524, + "thread": 2 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 557115, + "thread": 13 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 679408, + "thread": 28 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 854497, + "thread": 1 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1007834, + "thread": 10 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1254228, + "thread": 31 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1385258, + "thread": 10 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1594165, + "thread": 15 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1790860, + "thread": 1 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 1809720, + "thread": 5 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2129213, + "thread": 30 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2162064, + "thread": 2 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2446912, + "thread": 3 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2616637, + "thread": 23 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2693473, + "thread": 19 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2795077, + "thread": 26 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 2995224, + "thread": 1 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 3208221, + "thread": 11 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 3291338, + "thread": 18 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 3562061, + "thread": 22 + } + }, + { + "amount": "167.280057452", + "slot": { + "period": 3626058, + "thread": 23 + } + }, + { + "amount": "167.280057443", + "slot": { + "period": 3789888, + "thread": 18 + } + } + ], + "AU1Ccf6odV9bzSi2gGhsg9EvxHTAHbUu6Ly2AWGF22G53bMKAauG": [ + { + "amount": "169.119145986", + "slot": { + "period": 165242, + "thread": 22 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 272718, + "thread": 24 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 449283, + "thread": 12 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 641911, + "thread": 5 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 661438, + "thread": 8 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 845647, + "thread": 29 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1038916, + "thread": 10 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1302426, + "thread": 25 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1448873, + "thread": 27 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1594578, + "thread": 27 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1671970, + "thread": 6 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 1882462, + "thread": 21 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2071721, + "thread": 18 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2241223, + "thread": 0 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2374645, + "thread": 13 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2617417, + "thread": 13 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2752329, + "thread": 26 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 2795246, + "thread": 15 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 3021377, + "thread": 7 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 3236232, + "thread": 29 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 3396908, + "thread": 11 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 3614496, + "thread": 9 + } + }, + { + "amount": "169.119145986", + "slot": { + "period": 3749059, + "thread": 25 + } + }, + { + "amount": "169.119145988", + "slot": { + "period": 3800143, + "thread": 18 + } + } + ], + "AU1CdvSXDYo6ViDguNSZTZveZUKn4wWvhC52oz51ksZ7jeYjdY47": [ + { + "amount": "77.344699097", + "slot": { + "period": 124221, + "thread": 15 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 256392, + "thread": 16 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 399768, + "thread": 10 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 523489, + "thread": 19 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 778099, + "thread": 9 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 926530, + "thread": 7 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1037011, + "thread": 25 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1238199, + "thread": 9 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1428438, + "thread": 0 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1526616, + "thread": 18 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1664395, + "thread": 6 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 1841933, + "thread": 22 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2029420, + "thread": 18 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2266247, + "thread": 20 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2320501, + "thread": 17 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2539369, + "thread": 7 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2755214, + "thread": 11 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 2899638, + "thread": 28 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3015599, + "thread": 15 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3240921, + "thread": 27 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3293002, + "thread": 29 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3585129, + "thread": 14 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3725118, + "thread": 6 + } + }, + { + "amount": "77.344699097", + "slot": { + "period": 3809129, + "thread": 30 + } + } + ], + "AU1CeCYgtfqoeiFWuMyUFbBQuWWaYhsz7LuBUvjWHHUzXawojmfQ": [ + { + "amount": "5833.333333333", + "slot": { + "period": 61623, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 291442, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 445251, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 515269, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 746032, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 929454, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1124027, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1261501, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1410526, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1579911, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1683396, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1946989, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2086030, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2290959, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2350602, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2522022, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2666155, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2923760, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3101940, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3162597, + "thread": 26 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3448725, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3504975, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3671758, + "thread": 12 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3823693, + "thread": 18 + } + } + ], + "AU1CeGG4NBM7GjxxFHin1riAnRdosLmivGetSRVKxTPpU2Atpwgh": [ + { + "amount": "151.420820866", + "slot": { + "period": 63810, + "thread": 10 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 308682, + "thread": 27 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 453069, + "thread": 27 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 545075, + "thread": 6 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 727618, + "thread": 0 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 837528, + "thread": 24 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1022865, + "thread": 25 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1275347, + "thread": 10 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1388641, + "thread": 6 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1514148, + "thread": 14 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1652223, + "thread": 1 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 1844454, + "thread": 13 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2090809, + "thread": 8 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2283786, + "thread": 28 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2349493, + "thread": 29 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2547417, + "thread": 28 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2642420, + "thread": 4 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 2808312, + "thread": 26 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 3111255, + "thread": 3 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 3209711, + "thread": 0 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 3289355, + "thread": 30 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 3474023, + "thread": 2 + } + }, + { + "amount": "151.420820866", + "slot": { + "period": 3724547, + "thread": 2 + } + }, + { + "amount": "151.420820878", + "slot": { + "period": 3911111, + "thread": 24 + } + } + ], + "AU1CekvymsySmY7zQmfnBH479nPJFyYsCw6CNpx3yZFuG9Cs4Syv": [ + { + "amount": "429.787179115", + "slot": { + "period": 91262, + "thread": 25 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 245096, + "thread": 20 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 386656, + "thread": 4 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 556705, + "thread": 25 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 701411, + "thread": 7 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 895622, + "thread": 28 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1031354, + "thread": 29 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1190399, + "thread": 7 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1374911, + "thread": 28 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1637698, + "thread": 2 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1700355, + "thread": 1 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 1836511, + "thread": 0 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2032381, + "thread": 20 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2190998, + "thread": 26 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2354463, + "thread": 27 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2612812, + "thread": 31 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2639112, + "thread": 11 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 2799769, + "thread": 7 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 3062040, + "thread": 29 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 3223586, + "thread": 24 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 3427789, + "thread": 23 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 3611203, + "thread": 5 + } + }, + { + "amount": "429.787179115", + "slot": { + "period": 3732128, + "thread": 7 + } + }, + { + "amount": "429.787179112", + "slot": { + "period": 3811370, + "thread": 14 + } + } + ], + "AU1CfZxCcP8BL4zHVXDGgRcxqswhq42FiKqrUPLHZLLE2e8hmqGt": [ + { + "amount": "194.581400612", + "slot": { + "period": 115942, + "thread": 0 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 170225, + "thread": 25 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 403197, + "thread": 21 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 634237, + "thread": 13 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 761611, + "thread": 10 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 975790, + "thread": 27 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 985177, + "thread": 4 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 1216143, + "thread": 28 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 1355100, + "thread": 24 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 1532689, + "thread": 2 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 1659628, + "thread": 28 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 1957960, + "thread": 15 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2119194, + "thread": 5 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2196520, + "thread": 5 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2330616, + "thread": 14 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2566269, + "thread": 31 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2763642, + "thread": 19 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 2798930, + "thread": 19 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 3081141, + "thread": 22 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 3236997, + "thread": 23 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 3426833, + "thread": 5 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 3450866, + "thread": 1 + } + }, + { + "amount": "194.581400612", + "slot": { + "period": 3761839, + "thread": 1 + } + }, + { + "amount": "194.581400620", + "slot": { + "period": 3811423, + "thread": 12 + } + } + ], + "AU1Cg1p4nZqxmqJzNYSHAqibQUvMupnFmaSADK21rBGKGbfyFeP4": [ + { + "amount": "56.259344926", + "slot": { + "period": 164240, + "thread": 13 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 257181, + "thread": 21 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 475715, + "thread": 11 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 533752, + "thread": 11 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 668414, + "thread": 8 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 855638, + "thread": 28 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1005947, + "thread": 15 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1306966, + "thread": 15 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1384569, + "thread": 18 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1542461, + "thread": 4 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1725382, + "thread": 30 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 1922492, + "thread": 14 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2088091, + "thread": 13 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2150448, + "thread": 9 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2408700, + "thread": 27 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2526801, + "thread": 11 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2689156, + "thread": 19 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 2895643, + "thread": 26 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 3072110, + "thread": 8 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 3288175, + "thread": 3 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 3425263, + "thread": 23 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 3471986, + "thread": 2 + } + }, + { + "amount": "56.259344926", + "slot": { + "period": 3777378, + "thread": 26 + } + }, + { + "amount": "56.259344921", + "slot": { + "period": 3921235, + "thread": 27 + } + } + ], + "AU1Cg5oPY7QyeX4j3tnWeeiy8ST13E1QVsRoXex8FkdpkA2fMHB1": [ + { + "amount": "57.278987644", + "slot": { + "period": 119930, + "thread": 6 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 239912, + "thread": 28 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 457336, + "thread": 3 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 537222, + "thread": 15 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 801054, + "thread": 15 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 962049, + "thread": 1 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1142516, + "thread": 8 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1150667, + "thread": 1 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1347478, + "thread": 7 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1510818, + "thread": 28 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1782103, + "thread": 13 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 1884949, + "thread": 12 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2127599, + "thread": 2 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2188916, + "thread": 0 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2344441, + "thread": 22 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2496046, + "thread": 16 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2637712, + "thread": 28 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 2928366, + "thread": 28 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 3066206, + "thread": 1 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 3256593, + "thread": 2 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 3441452, + "thread": 9 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 3510363, + "thread": 15 + } + }, + { + "amount": "57.278987644", + "slot": { + "period": 3631003, + "thread": 27 + } + }, + { + "amount": "57.278987637", + "slot": { + "period": 3833338, + "thread": 2 + } + } + ], + "AU1CgJAXfNeE2cKgu16e65J7F8AwVumzq2z85a7Zf5EAjW68EPr2": [ + { + "amount": "480.236518881", + "slot": { + "period": 106134, + "thread": 16 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 293292, + "thread": 2 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 410829, + "thread": 31 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 593330, + "thread": 29 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 801362, + "thread": 16 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 887690, + "thread": 9 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1076962, + "thread": 11 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1277148, + "thread": 31 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1318646, + "thread": 14 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1566431, + "thread": 17 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1668105, + "thread": 29 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 1890028, + "thread": 31 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2034636, + "thread": 11 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2181236, + "thread": 29 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2449071, + "thread": 21 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2584456, + "thread": 19 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2688648, + "thread": 22 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2928830, + "thread": 6 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 2972956, + "thread": 23 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 3166669, + "thread": 27 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 3401400, + "thread": 23 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 3617427, + "thread": 16 + } + }, + { + "amount": "480.236518881", + "slot": { + "period": 3734820, + "thread": 26 + } + }, + { + "amount": "480.236518873", + "slot": { + "period": 3930184, + "thread": 1 + } + } + ], + "AU1CgJgxLhvsEVkvKUGppebVJj2TUfu9HY3RWU7v5yFi1wgmAkJm": [ + { + "amount": "54.767388052", + "slot": { + "period": 141707, + "thread": 16 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 189086, + "thread": 14 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 340599, + "thread": 20 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 535057, + "thread": 18 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 674292, + "thread": 29 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 838282, + "thread": 2 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1116542, + "thread": 1 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1298207, + "thread": 23 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1406187, + "thread": 1 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1520209, + "thread": 19 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1674544, + "thread": 21 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1913920, + "thread": 2 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 1979022, + "thread": 11 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 2286979, + "thread": 26 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 2324962, + "thread": 4 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 2606912, + "thread": 18 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 2734667, + "thread": 27 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 2844038, + "thread": 26 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 3033684, + "thread": 10 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 3238200, + "thread": 8 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 3350158, + "thread": 17 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 3528109, + "thread": 5 + } + }, + { + "amount": "54.767388052", + "slot": { + "period": 3721205, + "thread": 13 + } + }, + { + "amount": "54.767388063", + "slot": { + "period": 3903712, + "thread": 5 + } + } + ], + "AU1CiJf4wqMsBd4bbUQRFVqE4bBmNj7fvsZ5W9CUJ3X8YL32yFqy": [ + { + "amount": "239.431180912", + "slot": { + "period": 129930, + "thread": 29 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 296806, + "thread": 7 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 474997, + "thread": 14 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 611140, + "thread": 7 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 715965, + "thread": 1 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 862295, + "thread": 25 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1145927, + "thread": 25 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1282113, + "thread": 28 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1399664, + "thread": 30 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1626671, + "thread": 28 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1691088, + "thread": 12 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1949673, + "thread": 0 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 1998874, + "thread": 19 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 2211671, + "thread": 23 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 2389806, + "thread": 23 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 2519095, + "thread": 17 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 2767742, + "thread": 30 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 2951802, + "thread": 18 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 3081374, + "thread": 8 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 3143149, + "thread": 22 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 3360387, + "thread": 24 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 3617921, + "thread": 28 + } + }, + { + "amount": "239.431180912", + "slot": { + "period": 3677204, + "thread": 5 + } + }, + { + "amount": "239.431180908", + "slot": { + "period": 3911054, + "thread": 31 + } + } + ], + "AU1CiefskqnAdoJN2nErA8DfvM1TtLoCjPbV72BnF5ZWi5KcGf6g": [ + { + "amount": "139.816061253", + "slot": { + "period": 14540, + "thread": 1 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 313686, + "thread": 9 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 478925, + "thread": 19 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 497729, + "thread": 11 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 726215, + "thread": 31 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 864747, + "thread": 10 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1109738, + "thread": 21 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1163421, + "thread": 22 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1441827, + "thread": 22 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1593752, + "thread": 17 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1658570, + "thread": 24 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 1890575, + "thread": 11 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2096118, + "thread": 7 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2286380, + "thread": 1 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2388259, + "thread": 17 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2620168, + "thread": 3 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2700611, + "thread": 17 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 2850094, + "thread": 8 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 3022633, + "thread": 3 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 3202529, + "thread": 20 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 3409036, + "thread": 30 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 3555378, + "thread": 6 + } + }, + { + "amount": "139.816061253", + "slot": { + "period": 3655236, + "thread": 7 + } + }, + { + "amount": "139.816061254", + "slot": { + "period": 3841327, + "thread": 0 + } + } + ], + "AU1Cix7bH49J1wWR9FBCyhvMncEuLLcr4w5Wrm6DzdGtgXsrpfC5": [ + { + "amount": "153.754217229", + "slot": { + "period": 45440, + "thread": 27 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 208825, + "thread": 21 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 412671, + "thread": 19 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 548733, + "thread": 8 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 713201, + "thread": 13 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 970738, + "thread": 19 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1055266, + "thread": 21 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1201684, + "thread": 16 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1454055, + "thread": 10 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1569051, + "thread": 13 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1807798, + "thread": 7 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1914240, + "thread": 17 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 1991651, + "thread": 29 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2287441, + "thread": 16 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2327648, + "thread": 21 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2540728, + "thread": 9 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2779703, + "thread": 3 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2810349, + "thread": 27 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 2993448, + "thread": 5 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 3122508, + "thread": 21 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 3367933, + "thread": 7 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 3523417, + "thread": 29 + } + }, + { + "amount": "153.754217229", + "slot": { + "period": 3624949, + "thread": 9 + } + }, + { + "amount": "153.754217221", + "slot": { + "period": 3790827, + "thread": 6 + } + } + ], + "AU1CjWzmAfKPJmej7C2MYC9QRw34DP7RVorxLEJ2aZzvWVnVxSBZ": [ + { + "amount": "249.950184986", + "slot": { + "period": 44705, + "thread": 5 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 276894, + "thread": 13 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 439629, + "thread": 11 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 621367, + "thread": 19 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 674495, + "thread": 31 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 843883, + "thread": 10 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1097173, + "thread": 4 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1178896, + "thread": 18 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1369034, + "thread": 28 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1485090, + "thread": 25 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1658695, + "thread": 23 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 1926209, + "thread": 21 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2101911, + "thread": 2 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2202405, + "thread": 26 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2367297, + "thread": 28 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2547244, + "thread": 28 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2631167, + "thread": 1 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2911618, + "thread": 14 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 2963717, + "thread": 29 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 3184724, + "thread": 20 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 3445157, + "thread": 17 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 3452412, + "thread": 10 + } + }, + { + "amount": "249.950184986", + "slot": { + "period": 3726550, + "thread": 22 + } + }, + { + "amount": "249.950184989", + "slot": { + "period": 3863883, + "thread": 31 + } + } + ], + "AU1CkWwzpeQVgrBaVVLpBPaee8TYJacuUn44CLiY4vbAnhzqbECD": [ + { + "amount": "124.994740250", + "slot": { + "period": 140885, + "thread": 12 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 183051, + "thread": 19 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 416789, + "thread": 21 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 575242, + "thread": 27 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 764410, + "thread": 17 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 871693, + "thread": 17 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1084089, + "thread": 16 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1266918, + "thread": 16 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1431564, + "thread": 20 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1645858, + "thread": 27 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1780241, + "thread": 17 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 1908077, + "thread": 5 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2048331, + "thread": 3 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2260043, + "thread": 17 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2307650, + "thread": 2 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2557027, + "thread": 31 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2710717, + "thread": 25 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 2945386, + "thread": 31 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 3018815, + "thread": 11 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 3274330, + "thread": 4 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 3447820, + "thread": 17 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 3470086, + "thread": 18 + } + }, + { + "amount": "124.994740250", + "slot": { + "period": 3750252, + "thread": 31 + } + }, + { + "amount": "124.994740245", + "slot": { + "period": 3822625, + "thread": 25 + } + } + ], + "AU1CkYaw8jn6nxrD7gJPUpiLi5SHiy3wZ1rZGhiyYDMxsSRKcbUq": [ + { + "amount": "102.692970275", + "slot": { + "period": 113390, + "thread": 19 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 181338, + "thread": 31 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 380550, + "thread": 25 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 652880, + "thread": 15 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 744925, + "thread": 13 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 980583, + "thread": 10 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1145062, + "thread": 23 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1233109, + "thread": 29 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1434883, + "thread": 8 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1629219, + "thread": 22 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1669191, + "thread": 30 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 1884356, + "thread": 26 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2039983, + "thread": 2 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2273644, + "thread": 14 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2296797, + "thread": 7 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2528349, + "thread": 1 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2736322, + "thread": 23 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 2846225, + "thread": 9 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 3055292, + "thread": 6 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 3181107, + "thread": 0 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 3310513, + "thread": 5 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 3513079, + "thread": 11 + } + }, + { + "amount": "102.692970275", + "slot": { + "period": 3723305, + "thread": 26 + } + }, + { + "amount": "102.692970269", + "slot": { + "period": 3894558, + "thread": 5 + } + } + ], + "AU1CmdNJcicGZX2Bvedd3QBUmzQMzZyU6ZC7oef1rrcV5cE2QiAZ": [ + { + "amount": "189.351175570", + "slot": { + "period": 152133, + "thread": 2 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 208434, + "thread": 21 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 385352, + "thread": 16 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 570885, + "thread": 24 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 771731, + "thread": 29 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 952178, + "thread": 20 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1096354, + "thread": 20 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1248718, + "thread": 23 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1401856, + "thread": 19 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1620084, + "thread": 30 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1745702, + "thread": 8 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 1943225, + "thread": 15 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2072921, + "thread": 7 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2269838, + "thread": 19 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2331203, + "thread": 10 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2611242, + "thread": 30 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2667983, + "thread": 29 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 2880876, + "thread": 29 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 3043355, + "thread": 30 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 3210764, + "thread": 27 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 3378157, + "thread": 27 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 3457057, + "thread": 22 + } + }, + { + "amount": "189.351175570", + "slot": { + "period": 3708889, + "thread": 24 + } + }, + { + "amount": "189.351175576", + "slot": { + "period": 3916435, + "thread": 28 + } + } + ], + "AU1CozAEehthmofdn6PvZyVUSm48n1JTHAG5AdEinpiXLD7mvjGs": [ + { + "amount": "87.293943015", + "slot": { + "period": 96898, + "thread": 9 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 316749, + "thread": 1 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 372672, + "thread": 14 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 570770, + "thread": 22 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 742360, + "thread": 3 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 828791, + "thread": 9 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1026646, + "thread": 12 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1173071, + "thread": 25 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1361337, + "thread": 18 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1608614, + "thread": 14 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1662230, + "thread": 23 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 1876507, + "thread": 29 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2058013, + "thread": 21 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2220204, + "thread": 19 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2451495, + "thread": 22 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2620748, + "thread": 21 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2702339, + "thread": 16 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2906337, + "thread": 6 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 2960982, + "thread": 18 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 3253520, + "thread": 29 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 3366432, + "thread": 15 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 3461304, + "thread": 13 + } + }, + { + "amount": "87.293943015", + "slot": { + "period": 3746133, + "thread": 7 + } + }, + { + "amount": "87.293943021", + "slot": { + "period": 3850200, + "thread": 8 + } + } + ], + "AU1Coza43DfDSnDCnhkhsZiKaRnpyyxTGx9nwTzKetKt6RxhWGJW": [ + { + "amount": "155.956338059", + "slot": { + "period": 157127, + "thread": 8 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 172788, + "thread": 8 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 420930, + "thread": 25 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 575272, + "thread": 10 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 749095, + "thread": 26 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 947426, + "thread": 22 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1043753, + "thread": 4 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1269917, + "thread": 7 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1434963, + "thread": 22 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1563974, + "thread": 9 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1800457, + "thread": 3 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 1938703, + "thread": 23 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2035228, + "thread": 0 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2167265, + "thread": 10 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2375167, + "thread": 21 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2474901, + "thread": 13 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2777460, + "thread": 9 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 2864016, + "thread": 27 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 3108488, + "thread": 15 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 3244178, + "thread": 18 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 3450145, + "thread": 29 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 3551775, + "thread": 22 + } + }, + { + "amount": "155.956338059", + "slot": { + "period": 3762076, + "thread": 13 + } + }, + { + "amount": "155.956338065", + "slot": { + "period": 3797653, + "thread": 11 + } + } + ], + "AU1CpgWXkYsirYNACeKbXGDL39n78yHifbej2pyEAWV9GiVhogqs": [ + { + "amount": "234.876906764", + "slot": { + "period": 131471, + "thread": 30 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 318380, + "thread": 12 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 344237, + "thread": 2 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 610007, + "thread": 30 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 747819, + "thread": 6 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 839732, + "thread": 8 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1022562, + "thread": 31 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1304129, + "thread": 8 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1345668, + "thread": 26 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1526335, + "thread": 0 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1721186, + "thread": 1 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 1918892, + "thread": 12 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2118599, + "thread": 20 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2284887, + "thread": 1 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2309135, + "thread": 29 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2537794, + "thread": 31 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2744262, + "thread": 28 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 2798350, + "thread": 2 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 3112499, + "thread": 28 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 3210982, + "thread": 18 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 3358270, + "thread": 4 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 3541622, + "thread": 23 + } + }, + { + "amount": "234.876906764", + "slot": { + "period": 3714467, + "thread": 6 + } + }, + { + "amount": "234.876906765", + "slot": { + "period": 3911538, + "thread": 19 + } + } + ], + "AU1CppVYhtz5Dg2owZNCotrjJGm8PD62Pzoz3xkgnmNFC5sE3QHx": [ + { + "amount": "633.952188829", + "slot": { + "period": 104148, + "thread": 12 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 268247, + "thread": 9 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 340050, + "thread": 10 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 567914, + "thread": 9 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 796947, + "thread": 28 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 928250, + "thread": 23 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1028373, + "thread": 31 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1280348, + "thread": 26 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1452188, + "thread": 2 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1555408, + "thread": 15 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1796608, + "thread": 31 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 1887234, + "thread": 20 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2120187, + "thread": 27 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2188682, + "thread": 17 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2455205, + "thread": 15 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2477820, + "thread": 16 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2743635, + "thread": 24 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 2835741, + "thread": 7 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 3022521, + "thread": 5 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 3148970, + "thread": 30 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 3440697, + "thread": 27 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 3523077, + "thread": 24 + } + }, + { + "amount": "633.952188829", + "slot": { + "period": 3714161, + "thread": 23 + } + }, + { + "amount": "633.952188822", + "slot": { + "period": 3926756, + "thread": 13 + } + } + ], + "AU1Cpt5JHaT4s88cNpWy26B99vRBhQxovZC958CyPePDk1BPwj88": [ + { + "amount": "121.667847829", + "slot": { + "period": 140296, + "thread": 18 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 187469, + "thread": 18 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 486923, + "thread": 29 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 558408, + "thread": 13 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 688690, + "thread": 0 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 909814, + "thread": 20 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1015687, + "thread": 20 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1243682, + "thread": 28 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1444573, + "thread": 26 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1605270, + "thread": 15 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1699103, + "thread": 31 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 1883984, + "thread": 21 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2106177, + "thread": 0 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2278342, + "thread": 4 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2370552, + "thread": 25 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2474218, + "thread": 18 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2754252, + "thread": 0 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 2947385, + "thread": 6 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 3079580, + "thread": 2 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 3262037, + "thread": 29 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 3295259, + "thread": 19 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 3497316, + "thread": 4 + } + }, + { + "amount": "121.667847829", + "slot": { + "period": 3688422, + "thread": 18 + } + }, + { + "amount": "121.667847830", + "slot": { + "period": 3897884, + "thread": 10 + } + } + ], + "AU1CqhmRU9QCDXPPraKJS3qhdNWDdC4w6MhpozAK8pWpiCAvzRQH": [ + { + "amount": "264.294296223", + "slot": { + "period": 58858, + "thread": 0 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 237507, + "thread": 26 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 449248, + "thread": 7 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 600037, + "thread": 10 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 729185, + "thread": 23 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 980116, + "thread": 27 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1017273, + "thread": 30 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1178568, + "thread": 14 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1388974, + "thread": 19 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1596124, + "thread": 23 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1807775, + "thread": 30 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 1886476, + "thread": 12 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2004907, + "thread": 20 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2278469, + "thread": 21 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2449876, + "thread": 23 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2490973, + "thread": 6 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2695258, + "thread": 31 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 2811825, + "thread": 5 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 3120466, + "thread": 30 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 3221107, + "thread": 0 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 3357853, + "thread": 31 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 3560609, + "thread": 24 + } + }, + { + "amount": "264.294296223", + "slot": { + "period": 3622666, + "thread": 5 + } + }, + { + "amount": "264.294296220", + "slot": { + "period": 3780478, + "thread": 9 + } + } + ], + "AU1CqrMK2yHV8LfLz7VP2ijqJQR3r4TeRuAuf4q56jBNCHRTqjrj": [ + { + "amount": "121.186981337", + "slot": { + "period": 91010, + "thread": 19 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 283695, + "thread": 23 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 380764, + "thread": 2 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 544457, + "thread": 24 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 796142, + "thread": 9 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 972070, + "thread": 25 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 994521, + "thread": 17 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 1174298, + "thread": 24 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 1412380, + "thread": 22 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 1548206, + "thread": 6 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 1769927, + "thread": 17 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 1850435, + "thread": 15 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2043928, + "thread": 2 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2251819, + "thread": 0 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2438400, + "thread": 24 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2517117, + "thread": 28 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2785616, + "thread": 10 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2884532, + "thread": 18 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 2964560, + "thread": 31 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 3259896, + "thread": 28 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 3356451, + "thread": 30 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 3483753, + "thread": 8 + } + }, + { + "amount": "121.186981337", + "slot": { + "period": 3757904, + "thread": 20 + } + }, + { + "amount": "121.186981336", + "slot": { + "period": 3921036, + "thread": 29 + } + } + ], + "AU1CrLwq6kWApUiDjVVxVKpiUS13Wevs7ZDKa8k4uD9BR6TaxhS1": [ + { + "amount": "450.634885779", + "slot": { + "period": 96579, + "thread": 16 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 287497, + "thread": 26 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 355594, + "thread": 30 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 595182, + "thread": 8 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 805698, + "thread": 26 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 960270, + "thread": 9 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1026677, + "thread": 30 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1221700, + "thread": 18 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1451285, + "thread": 29 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1606371, + "thread": 13 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1710438, + "thread": 9 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 1818022, + "thread": 26 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2019884, + "thread": 21 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2286061, + "thread": 8 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2403062, + "thread": 24 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2543740, + "thread": 19 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2758290, + "thread": 16 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 2843112, + "thread": 13 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 3078675, + "thread": 20 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 3206347, + "thread": 18 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 3299937, + "thread": 31 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 3610664, + "thread": 3 + } + }, + { + "amount": "450.634885779", + "slot": { + "period": 3770284, + "thread": 12 + } + }, + { + "amount": "450.634885781", + "slot": { + "period": 3825897, + "thread": 22 + } + } + ], + "AU1CsyKs5XRstGFXaG7BVMS7DG4EPNb999zVunnWxc3xRRBzcuDq": [ + { + "amount": "344.311161336", + "slot": { + "period": 39806, + "thread": 0 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 245297, + "thread": 26 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 433805, + "thread": 9 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 553247, + "thread": 24 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 751662, + "thread": 10 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 973044, + "thread": 1 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1004283, + "thread": 0 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1306821, + "thread": 11 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1383102, + "thread": 5 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1551365, + "thread": 27 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1692709, + "thread": 9 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 1810165, + "thread": 28 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2019328, + "thread": 27 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2203397, + "thread": 9 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2453724, + "thread": 28 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2583547, + "thread": 11 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2765526, + "thread": 2 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 2901965, + "thread": 21 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 3034097, + "thread": 11 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 3259474, + "thread": 4 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 3343131, + "thread": 12 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 3467234, + "thread": 6 + } + }, + { + "amount": "344.311161336", + "slot": { + "period": 3662892, + "thread": 13 + } + }, + { + "amount": "344.311161333", + "slot": { + "period": 3899456, + "thread": 6 + } + } + ], + "AU1Ctc3gJLxXux3RPuzDdjnUeBhtYqTVCfjnpkGqjwfBHVcYwQzF": [ + { + "amount": "292.673892627", + "slot": { + "period": 60505, + "thread": 15 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 273048, + "thread": 20 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 367616, + "thread": 10 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 556380, + "thread": 8 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 794578, + "thread": 3 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 856085, + "thread": 20 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1010113, + "thread": 6 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1199704, + "thread": 31 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1371226, + "thread": 0 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1629687, + "thread": 20 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1789000, + "thread": 15 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 1966792, + "thread": 8 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2130460, + "thread": 6 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2269954, + "thread": 4 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2399470, + "thread": 9 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2547196, + "thread": 31 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2787764, + "thread": 27 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 2863877, + "thread": 12 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 3087941, + "thread": 27 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 3127055, + "thread": 31 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 3387266, + "thread": 19 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 3520595, + "thread": 10 + } + }, + { + "amount": "292.673892627", + "slot": { + "period": 3724409, + "thread": 9 + } + }, + { + "amount": "292.673892629", + "slot": { + "period": 3837246, + "thread": 27 + } + } + ], + "AU1CuLqWPB6R6v4N4CNsFmXBmVDPXSw1uKwCbhWbLZP3ob8JAQQq": [ + { + "amount": "578.626986237", + "slot": { + "period": 60246, + "thread": 27 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 172148, + "thread": 15 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 461038, + "thread": 3 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 527668, + "thread": 8 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 763383, + "thread": 30 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 954248, + "thread": 18 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1048986, + "thread": 16 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1251076, + "thread": 12 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1350557, + "thread": 17 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1495052, + "thread": 6 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1692928, + "thread": 20 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 1884026, + "thread": 6 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2137115, + "thread": 20 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2253976, + "thread": 2 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2344922, + "thread": 26 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2598093, + "thread": 6 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2748673, + "thread": 5 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 2819204, + "thread": 13 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 3038653, + "thread": 12 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 3143910, + "thread": 20 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 3419234, + "thread": 19 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 3567389, + "thread": 21 + } + }, + { + "amount": "578.626986237", + "slot": { + "period": 3711850, + "thread": 8 + } + }, + { + "amount": "578.626986232", + "slot": { + "period": 3917351, + "thread": 14 + } + } + ], + "AU1CwRJhnRn4S9t6owS8dJUkMXFzzcnKZGswe7pCqwk9xiD2ijnu": [ + { + "amount": "96.421284391", + "slot": { + "period": 156671, + "thread": 15 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 276974, + "thread": 4 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 342688, + "thread": 15 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 535222, + "thread": 30 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 716157, + "thread": 6 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 956390, + "thread": 27 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1131912, + "thread": 18 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1192464, + "thread": 28 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1382398, + "thread": 27 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1549375, + "thread": 31 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1765619, + "thread": 7 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 1966847, + "thread": 27 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2126318, + "thread": 23 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2246647, + "thread": 9 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2345384, + "thread": 21 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2602343, + "thread": 14 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2699407, + "thread": 10 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 2868818, + "thread": 12 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 3057633, + "thread": 16 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 3177695, + "thread": 13 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 3438716, + "thread": 30 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 3527569, + "thread": 17 + } + }, + { + "amount": "96.421284391", + "slot": { + "period": 3743543, + "thread": 0 + } + }, + { + "amount": "96.421284386", + "slot": { + "period": 3887311, + "thread": 7 + } + } + ], + "AU1Cx37cHXaw1jtfvGYdj23rEudZAXcQz2CZkyoteAvZgpYfWDhv": [ + { + "amount": "128.401838320", + "slot": { + "period": 53192, + "thread": 31 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 171480, + "thread": 10 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 382091, + "thread": 5 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 579757, + "thread": 20 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 658744, + "thread": 22 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 863827, + "thread": 24 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1065029, + "thread": 6 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1212229, + "thread": 14 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1322557, + "thread": 24 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1645366, + "thread": 10 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1721901, + "thread": 15 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1974288, + "thread": 2 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 1993823, + "thread": 0 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2180370, + "thread": 5 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2348129, + "thread": 0 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2540068, + "thread": 29 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2697586, + "thread": 26 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2898210, + "thread": 3 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 2976870, + "thread": 19 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 3168018, + "thread": 24 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 3328511, + "thread": 27 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 3547644, + "thread": 23 + } + }, + { + "amount": "128.401838320", + "slot": { + "period": 3675259, + "thread": 0 + } + }, + { + "amount": "128.401838318", + "slot": { + "period": 3881645, + "thread": 10 + } + } + ], + "AU1CxmMedYa8gGPccjWuTCJCss1RPZZgZFnb2tisR5qjEhdaTEzg": [ + { + "amount": "109.183472997", + "slot": { + "period": 65967, + "thread": 23 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 277130, + "thread": 12 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 343257, + "thread": 17 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 592258, + "thread": 28 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 715085, + "thread": 12 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 840246, + "thread": 23 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1091168, + "thread": 13 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1294767, + "thread": 21 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1448722, + "thread": 12 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1619369, + "thread": 2 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1724072, + "thread": 28 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1812003, + "thread": 3 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 1993287, + "thread": 18 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 2291980, + "thread": 5 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 2439395, + "thread": 10 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 2617474, + "thread": 11 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 2694292, + "thread": 0 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 2857349, + "thread": 27 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 3079043, + "thread": 23 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 3154524, + "thread": 17 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 3304055, + "thread": 12 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 3576249, + "thread": 25 + } + }, + { + "amount": "109.183472997", + "slot": { + "period": 3693498, + "thread": 16 + } + }, + { + "amount": "109.183472988", + "slot": { + "period": 3925119, + "thread": 1 + } + } + ], + "AU1Cy6F9pmAkcyRL4qbvjXUGzpAE39N5H8ue3W54cwyJouW6qhy8": [ + { + "amount": "85.934246669", + "slot": { + "period": 155511, + "thread": 20 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 232786, + "thread": 6 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 348274, + "thread": 11 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 630438, + "thread": 1 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 777618, + "thread": 29 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 947001, + "thread": 2 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1059041, + "thread": 13 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1188482, + "thread": 22 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1319811, + "thread": 5 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1590658, + "thread": 10 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1686945, + "thread": 28 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 1934160, + "thread": 19 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2080857, + "thread": 22 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2204052, + "thread": 19 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2343752, + "thread": 29 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2511756, + "thread": 17 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2652792, + "thread": 10 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2801782, + "thread": 28 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 2984772, + "thread": 28 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 3233902, + "thread": 24 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 3303088, + "thread": 13 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 3537359, + "thread": 2 + } + }, + { + "amount": "85.934246669", + "slot": { + "period": 3767132, + "thread": 13 + } + }, + { + "amount": "85.934246668", + "slot": { + "period": 3837623, + "thread": 2 + } + } + ], + "AU1CzRy5rpmKkfG6UK7PkPeh7nTPMqo4yM4BrxJpkAHkV1Uk6Voj": [ + { + "amount": "725.820144023", + "slot": { + "period": 78467, + "thread": 21 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 262194, + "thread": 25 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 410795, + "thread": 8 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 604790, + "thread": 18 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 750416, + "thread": 18 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 857094, + "thread": 28 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1047803, + "thread": 18 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1264114, + "thread": 24 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1472771, + "thread": 19 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1552907, + "thread": 3 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1748531, + "thread": 27 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 1851742, + "thread": 5 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2019750, + "thread": 28 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2247862, + "thread": 13 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2395709, + "thread": 10 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2543174, + "thread": 21 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2723425, + "thread": 24 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 2919249, + "thread": 11 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 3058965, + "thread": 12 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 3224070, + "thread": 30 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 3329864, + "thread": 11 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 3537168, + "thread": 15 + } + }, + { + "amount": "725.820144023", + "slot": { + "period": 3697908, + "thread": 4 + } + }, + { + "amount": "725.820144021", + "slot": { + "period": 3944808, + "thread": 25 + } + } + ], + "AU1CzUXrizx3q7mD4AMvxdbrg45ndgepf53ZUer1v43ZpRDFHSRa": [ + { + "amount": "262.466732170", + "slot": { + "period": 112129, + "thread": 6 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 313087, + "thread": 29 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 360430, + "thread": 3 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 538862, + "thread": 30 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 669530, + "thread": 29 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 885573, + "thread": 27 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1028390, + "thread": 4 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1298798, + "thread": 28 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1458873, + "thread": 0 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1493474, + "thread": 0 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1701977, + "thread": 7 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1852094, + "thread": 16 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 1993477, + "thread": 16 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2186271, + "thread": 5 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2407642, + "thread": 24 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2508896, + "thread": 18 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2692532, + "thread": 28 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2860104, + "thread": 9 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 2960546, + "thread": 0 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 3185512, + "thread": 7 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 3432181, + "thread": 19 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 3541724, + "thread": 30 + } + }, + { + "amount": "262.466732170", + "slot": { + "period": 3686473, + "thread": 31 + } + }, + { + "amount": "262.466732181", + "slot": { + "period": 3783147, + "thread": 7 + } + } + ], + "AU1CzxHTVkJbW91VcGdHsD6HZ9SrcYjsTre9WA58SCoCKCB9xHDa": [ + { + "amount": "191.604610550", + "slot": { + "period": 93795, + "thread": 27 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 251300, + "thread": 9 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 417992, + "thread": 1 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 621105, + "thread": 10 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 807870, + "thread": 23 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 974150, + "thread": 9 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1079394, + "thread": 3 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1261719, + "thread": 13 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1462635, + "thread": 4 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1500443, + "thread": 3 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1749283, + "thread": 15 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1825149, + "thread": 12 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 1985577, + "thread": 30 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 2155720, + "thread": 31 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 2418189, + "thread": 14 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 2605996, + "thread": 0 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 2748960, + "thread": 20 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 2908182, + "thread": 12 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 3012868, + "thread": 7 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 3148446, + "thread": 27 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 3366378, + "thread": 16 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 3563675, + "thread": 17 + } + }, + { + "amount": "191.604610550", + "slot": { + "period": 3719242, + "thread": 5 + } + }, + { + "amount": "191.604610542", + "slot": { + "period": 3892826, + "thread": 15 + } + } + ], + "AU1D1sQoZHgVKv5x5ejRGoZXtppf8aXLmobs8qXAX5L5Aj5BxSTV": [ + { + "amount": "305.256861213", + "slot": { + "period": 84773, + "thread": 22 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 322843, + "thread": 11 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 383386, + "thread": 4 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 644059, + "thread": 28 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 791190, + "thread": 12 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 831589, + "thread": 12 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1033234, + "thread": 5 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1253275, + "thread": 10 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1415956, + "thread": 4 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1528262, + "thread": 4 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1780434, + "thread": 30 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 1921346, + "thread": 19 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2061448, + "thread": 5 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2164471, + "thread": 9 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2333183, + "thread": 22 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2614426, + "thread": 8 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2671611, + "thread": 27 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 2901465, + "thread": 8 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 3052507, + "thread": 19 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 3282760, + "thread": 13 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 3346108, + "thread": 20 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 3494565, + "thread": 19 + } + }, + { + "amount": "305.256861213", + "slot": { + "period": 3632488, + "thread": 30 + } + }, + { + "amount": "305.256861224", + "slot": { + "period": 3833384, + "thread": 5 + } + } + ], + "AU1D34HYSaftrHDUWJH6dpmy2fn89NiXHgj8GLpvzVqkhaqJNWpq": [ + { + "amount": "217.152015955", + "slot": { + "period": 16626, + "thread": 16 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 237030, + "thread": 21 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 413841, + "thread": 30 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 518820, + "thread": 14 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 815241, + "thread": 12 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 935931, + "thread": 9 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1069175, + "thread": 5 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1296215, + "thread": 13 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1379018, + "thread": 14 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1639174, + "thread": 5 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1807024, + "thread": 9 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 1840958, + "thread": 27 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2102588, + "thread": 0 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2164440, + "thread": 19 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2337960, + "thread": 3 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2572227, + "thread": 12 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2719592, + "thread": 23 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 2893414, + "thread": 8 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 3117803, + "thread": 22 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 3270238, + "thread": 31 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 3302325, + "thread": 24 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 3572285, + "thread": 22 + } + }, + { + "amount": "217.152015955", + "slot": { + "period": 3751792, + "thread": 26 + } + }, + { + "amount": "217.152015965", + "slot": { + "period": 3850084, + "thread": 8 + } + } + ], + "AU1D3QuiZisFGbRvQ39rdvVyUxR8VvP6tZhNJ1b797DbVgWR31qp": [ + { + "amount": "103.805059506", + "slot": { + "period": 73158, + "thread": 6 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 240592, + "thread": 29 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 341124, + "thread": 16 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 583716, + "thread": 5 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 729382, + "thread": 5 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 969306, + "thread": 14 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1148204, + "thread": 14 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1155226, + "thread": 4 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1332308, + "thread": 21 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1534009, + "thread": 24 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1734806, + "thread": 17 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 1871234, + "thread": 9 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2138847, + "thread": 11 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2284505, + "thread": 16 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2343871, + "thread": 19 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2573216, + "thread": 16 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2693207, + "thread": 30 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 2871773, + "thread": 2 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 3064237, + "thread": 19 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 3163618, + "thread": 27 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 3438069, + "thread": 11 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 3601028, + "thread": 2 + } + }, + { + "amount": "103.805059506", + "slot": { + "period": 3748422, + "thread": 8 + } + }, + { + "amount": "103.805059517", + "slot": { + "period": 3916973, + "thread": 31 + } + } + ], + "AU1D3gJJNjxw5gy2b11kkdDh2ax9Pjcsc9ygLMVwxVwWt1bZQoYq": [ + { + "amount": "87.480435051", + "slot": { + "period": 116662, + "thread": 27 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 294571, + "thread": 21 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 473685, + "thread": 30 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 522417, + "thread": 14 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 658379, + "thread": 14 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 866804, + "thread": 27 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1012957, + "thread": 2 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1162977, + "thread": 21 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1430846, + "thread": 30 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1610995, + "thread": 1 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1799419, + "thread": 2 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 1921984, + "thread": 9 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2034729, + "thread": 2 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2199548, + "thread": 18 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2373832, + "thread": 9 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2622262, + "thread": 11 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2709482, + "thread": 25 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 2903470, + "thread": 21 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 3042165, + "thread": 29 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 3181954, + "thread": 23 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 3307862, + "thread": 28 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 3575366, + "thread": 1 + } + }, + { + "amount": "87.480435051", + "slot": { + "period": 3658181, + "thread": 5 + } + }, + { + "amount": "87.480435045", + "slot": { + "period": 3874611, + "thread": 17 + } + } + ], + "AU1D3mzhUdfSYiB1DpA4N7ZJeAjn81yHwyVL8rQBN27SbnnM8eBE": [ + { + "amount": "376.411220932", + "slot": { + "period": 131457, + "thread": 29 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 266074, + "thread": 4 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 378631, + "thread": 4 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 589870, + "thread": 5 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 721729, + "thread": 19 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 848292, + "thread": 22 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1057183, + "thread": 1 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1176120, + "thread": 4 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1323161, + "thread": 15 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1558795, + "thread": 13 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1695133, + "thread": 9 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 1935881, + "thread": 4 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2109438, + "thread": 14 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2208907, + "thread": 30 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2440542, + "thread": 4 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2490475, + "thread": 0 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2701754, + "thread": 27 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 2951313, + "thread": 2 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 3011008, + "thread": 27 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 3260702, + "thread": 27 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 3392932, + "thread": 27 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 3577080, + "thread": 17 + } + }, + { + "amount": "376.411220932", + "slot": { + "period": 3760031, + "thread": 15 + } + }, + { + "amount": "376.411220920", + "slot": { + "period": 3869760, + "thread": 31 + } + } + ], + "AU1D4T4SXjvzSicVUi7iMQz3Jz8X5rxhmhdokiMU7kHTAwUrjonq": [ + { + "amount": "121.824955503", + "slot": { + "period": 17774, + "thread": 18 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 241062, + "thread": 30 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 397824, + "thread": 28 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 570047, + "thread": 22 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 791918, + "thread": 27 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 958206, + "thread": 14 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1069407, + "thread": 4 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1166035, + "thread": 2 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1397120, + "thread": 21 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1616865, + "thread": 23 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1662608, + "thread": 18 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 1939213, + "thread": 28 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2110721, + "thread": 25 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2219181, + "thread": 12 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2422063, + "thread": 19 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2513110, + "thread": 16 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2642482, + "thread": 31 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2935124, + "thread": 1 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 2990802, + "thread": 29 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 3251528, + "thread": 19 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 3341558, + "thread": 12 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 3607893, + "thread": 20 + } + }, + { + "amount": "121.824955503", + "slot": { + "period": 3772728, + "thread": 16 + } + }, + { + "amount": "121.824955498", + "slot": { + "period": 3818562, + "thread": 7 + } + } + ], + "AU1D57FnpCv2WBgG1pUXPjiGpYxmVgAaRfhhVjQZHVa1sSGJ2HyH": [ + { + "amount": "220.716335763", + "slot": { + "period": 106374, + "thread": 5 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 180334, + "thread": 21 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 423997, + "thread": 31 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 502820, + "thread": 17 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 811313, + "thread": 0 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 844342, + "thread": 5 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1127108, + "thread": 12 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1301513, + "thread": 28 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1372700, + "thread": 1 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1552500, + "thread": 16 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1786049, + "thread": 7 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 1825896, + "thread": 11 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2098285, + "thread": 16 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2189903, + "thread": 29 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2297000, + "thread": 30 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2571937, + "thread": 2 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2756449, + "thread": 3 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 2904342, + "thread": 26 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 3050642, + "thread": 15 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 3236550, + "thread": 18 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 3427205, + "thread": 30 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 3479583, + "thread": 19 + } + }, + { + "amount": "220.716335763", + "slot": { + "period": 3666235, + "thread": 0 + } + }, + { + "amount": "220.716335757", + "slot": { + "period": 3940958, + "thread": 12 + } + } + ], + "AU1D6NSYy6V5hyrT2A1ExNy7EGmfd9SDs7EQDXeR8rhP5nAR8RMJ": [ + { + "amount": "97.069527383", + "slot": { + "period": 121095, + "thread": 20 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 267335, + "thread": 13 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 398383, + "thread": 7 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 542104, + "thread": 28 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 787902, + "thread": 18 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 896833, + "thread": 11 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1074160, + "thread": 21 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1243715, + "thread": 18 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1439481, + "thread": 22 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1545358, + "thread": 10 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1736523, + "thread": 22 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1920521, + "thread": 14 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 1983090, + "thread": 18 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 2246613, + "thread": 3 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 2420607, + "thread": 16 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 2518058, + "thread": 16 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 2735572, + "thread": 28 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 2852075, + "thread": 15 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 3095546, + "thread": 21 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 3245452, + "thread": 9 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 3340585, + "thread": 31 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 3616366, + "thread": 11 + } + }, + { + "amount": "97.069527383", + "slot": { + "period": 3678084, + "thread": 6 + } + }, + { + "amount": "97.069527388", + "slot": { + "period": 3791269, + "thread": 19 + } + } + ], + "AU1D6Y46211rEntzEa9Xgc8yDGen4aZWsFe5iaAnhK4bnTZ38JkF": [ + { + "amount": "127.432540645", + "slot": { + "period": 88552, + "thread": 16 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 248283, + "thread": 19 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 363752, + "thread": 9 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 618637, + "thread": 17 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 725061, + "thread": 9 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 910208, + "thread": 14 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1113424, + "thread": 15 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1275259, + "thread": 9 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1357381, + "thread": 23 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1597649, + "thread": 8 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1788599, + "thread": 22 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1893055, + "thread": 11 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 1988205, + "thread": 16 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 2192295, + "thread": 0 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 2351865, + "thread": 5 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 2600073, + "thread": 31 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 2676442, + "thread": 14 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 2805714, + "thread": 15 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 3089793, + "thread": 3 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 3160097, + "thread": 31 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 3438461, + "thread": 30 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 3480003, + "thread": 25 + } + }, + { + "amount": "127.432540645", + "slot": { + "period": 3680123, + "thread": 31 + } + }, + { + "amount": "127.432540636", + "slot": { + "period": 3799115, + "thread": 17 + } + } + ], + "AU1D6jK6vGAjKKv8inY4oa68q6zT1mL4LcYxdj37UoNywKNcKxSj": [ + { + "amount": "140.945821674", + "slot": { + "period": 107524, + "thread": 16 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 217554, + "thread": 20 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 484953, + "thread": 18 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 590423, + "thread": 11 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 668447, + "thread": 3 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 895510, + "thread": 20 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1008581, + "thread": 28 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1278355, + "thread": 1 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1448623, + "thread": 7 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1567703, + "thread": 7 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1770852, + "thread": 14 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 1913369, + "thread": 7 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2130449, + "thread": 24 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2157895, + "thread": 14 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2368277, + "thread": 30 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2550511, + "thread": 24 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2773429, + "thread": 9 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 2914292, + "thread": 10 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 3044043, + "thread": 6 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 3224547, + "thread": 7 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 3424123, + "thread": 16 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 3547242, + "thread": 9 + } + }, + { + "amount": "140.945821674", + "slot": { + "period": 3669630, + "thread": 26 + } + }, + { + "amount": "140.945821677", + "slot": { + "period": 3792878, + "thread": 8 + } + } + ], + "AU1D6o5gimNKBq2jiAgY6UAVFRg75pLe2DW68SMMwsDkY9xtwXNv": [ + { + "amount": "424.310495474", + "slot": { + "period": 157580, + "thread": 21 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 258982, + "thread": 28 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 384924, + "thread": 11 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 502373, + "thread": 27 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 810521, + "thread": 25 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 835259, + "thread": 6 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1042931, + "thread": 20 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1256022, + "thread": 2 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1343071, + "thread": 30 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1633695, + "thread": 0 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1708103, + "thread": 13 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 1938596, + "thread": 24 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2050299, + "thread": 23 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2203825, + "thread": 18 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2327605, + "thread": 2 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2558854, + "thread": 13 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2705753, + "thread": 26 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2792705, + "thread": 19 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 2996058, + "thread": 13 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 3278388, + "thread": 6 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 3348328, + "thread": 15 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 3497699, + "thread": 20 + } + }, + { + "amount": "424.310495474", + "slot": { + "period": 3762272, + "thread": 21 + } + }, + { + "amount": "424.310495485", + "slot": { + "period": 3935054, + "thread": 19 + } + } + ], + "AU1D7CdwwG9pDs2STnSjt5fFFTNmtAwj4cSJH6irDpteHMxyokXL": [ + { + "amount": "189.790910514", + "slot": { + "period": 55710, + "thread": 2 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 282675, + "thread": 8 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 398118, + "thread": 24 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 526277, + "thread": 25 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 785540, + "thread": 28 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 945895, + "thread": 9 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1141873, + "thread": 15 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1235554, + "thread": 1 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1406718, + "thread": 2 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1581404, + "thread": 2 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1664345, + "thread": 23 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 1943481, + "thread": 9 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2048693, + "thread": 25 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2243142, + "thread": 6 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2436095, + "thread": 15 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2588225, + "thread": 30 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2789910, + "thread": 17 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 2950204, + "thread": 1 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 3085592, + "thread": 1 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 3286682, + "thread": 26 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 3319105, + "thread": 15 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 3593645, + "thread": 24 + } + }, + { + "amount": "189.790910514", + "slot": { + "period": 3700748, + "thread": 5 + } + }, + { + "amount": "189.790910519", + "slot": { + "period": 3896337, + "thread": 6 + } + } + ], + "AU1D7ESeA16g5kqwnWG51DkrLMVB6onA1Waiwq1CxCsT9nfp6vuB": [ + { + "amount": "125.571076893", + "slot": { + "period": 131715, + "thread": 19 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 244198, + "thread": 18 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 348008, + "thread": 2 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 495148, + "thread": 6 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 688914, + "thread": 15 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 844396, + "thread": 31 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1010489, + "thread": 11 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1166342, + "thread": 23 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1424789, + "thread": 24 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1624311, + "thread": 12 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1691382, + "thread": 8 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1826836, + "thread": 28 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 1989241, + "thread": 28 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 2169704, + "thread": 22 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 2343734, + "thread": 23 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 2596430, + "thread": 2 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 2791784, + "thread": 15 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 2909933, + "thread": 12 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 3115568, + "thread": 29 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 3232644, + "thread": 13 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 3316723, + "thread": 29 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 3457056, + "thread": 10 + } + }, + { + "amount": "125.571076893", + "slot": { + "period": 3754142, + "thread": 0 + } + }, + { + "amount": "125.571076899", + "slot": { + "period": 3857126, + "thread": 9 + } + } + ], + "AU1D7ji8sQj5TaP1C6GTV9TGVXuMtTufs4NxxJ94E5JoYBb5X87D": [ + { + "amount": "66.498196111", + "slot": { + "period": 156453, + "thread": 31 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 229068, + "thread": 10 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 371969, + "thread": 7 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 539147, + "thread": 21 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 729676, + "thread": 20 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 935020, + "thread": 6 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1106064, + "thread": 6 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1197324, + "thread": 30 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1359337, + "thread": 22 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1595874, + "thread": 1 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1667073, + "thread": 4 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 1971635, + "thread": 8 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2012856, + "thread": 23 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2249521, + "thread": 11 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2418855, + "thread": 5 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2620830, + "thread": 17 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2731473, + "thread": 30 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2947753, + "thread": 18 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 2962369, + "thread": 23 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 3146128, + "thread": 14 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 3439558, + "thread": 2 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 3456245, + "thread": 5 + } + }, + { + "amount": "66.498196111", + "slot": { + "period": 3618072, + "thread": 13 + } + }, + { + "amount": "66.498196109", + "slot": { + "period": 3904842, + "thread": 11 + } + } + ], + "AU1D89W8Wyn82WbvRi4eh4anX6AZKRSXEmEZQseB6tqrLWvKdsKg": [ + { + "amount": "218.252267334", + "slot": { + "period": 153214, + "thread": 6 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 174830, + "thread": 19 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 369129, + "thread": 16 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 619644, + "thread": 31 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 689957, + "thread": 14 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 897698, + "thread": 23 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1032685, + "thread": 10 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1181193, + "thread": 9 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1412340, + "thread": 27 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1584883, + "thread": 16 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1712883, + "thread": 24 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 1821950, + "thread": 10 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2133441, + "thread": 16 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2277676, + "thread": 13 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2369710, + "thread": 13 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2541609, + "thread": 16 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2712377, + "thread": 3 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 2927999, + "thread": 6 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 3009293, + "thread": 6 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 3196509, + "thread": 26 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 3298706, + "thread": 24 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 3582744, + "thread": 24 + } + }, + { + "amount": "218.252267334", + "slot": { + "period": 3771334, + "thread": 13 + } + }, + { + "amount": "218.252267346", + "slot": { + "period": 3824220, + "thread": 10 + } + } + ], + "AU1D8Z6HESJRDM7qaLj345Zm3ty1rcUHyagTF1VJd68SiUEPo6FG": [ + { + "amount": "52.267693828", + "slot": { + "period": 19609, + "thread": 11 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 255243, + "thread": 31 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 483878, + "thread": 28 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 609462, + "thread": 11 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 695941, + "thread": 18 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 889395, + "thread": 16 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 998150, + "thread": 1 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 1286487, + "thread": 18 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 1329231, + "thread": 11 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 1514264, + "thread": 4 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 1696834, + "thread": 22 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 1961921, + "thread": 26 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2059056, + "thread": 20 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2152757, + "thread": 11 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2363106, + "thread": 30 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2609661, + "thread": 23 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2641130, + "thread": 5 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 2864519, + "thread": 20 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 3052912, + "thread": 29 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 3160569, + "thread": 25 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 3317486, + "thread": 5 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 3546130, + "thread": 21 + } + }, + { + "amount": "52.267693828", + "slot": { + "period": 3679236, + "thread": 25 + } + }, + { + "amount": "52.267693831", + "slot": { + "period": 3923267, + "thread": 6 + } + } + ], + "AU1DC2giQ85EctRPh2H8F1FQWQPfyqVLdHAq7v86vygPjNqhJ656": [ + { + "amount": "220.492809501", + "slot": { + "period": 108537, + "thread": 10 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 252108, + "thread": 23 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 348127, + "thread": 26 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 623738, + "thread": 24 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 797283, + "thread": 20 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 901029, + "thread": 11 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1002493, + "thread": 9 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1249512, + "thread": 22 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1399795, + "thread": 7 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1579501, + "thread": 28 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1742021, + "thread": 11 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 1915366, + "thread": 17 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2011310, + "thread": 26 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2205093, + "thread": 16 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2438351, + "thread": 10 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2551364, + "thread": 15 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2777310, + "thread": 28 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 2953172, + "thread": 26 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 3079473, + "thread": 14 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 3148333, + "thread": 1 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 3289331, + "thread": 17 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 3580864, + "thread": 16 + } + }, + { + "amount": "220.492809501", + "slot": { + "period": 3735871, + "thread": 19 + } + }, + { + "amount": "220.492809510", + "slot": { + "period": 3788418, + "thread": 13 + } + } + ], + "AU1DCtGJ4EfwVr8gtcp4vFxRw7THHbNnysaR9HUPs8GYnNhGckPV": [ + { + "amount": "338.908163075", + "slot": { + "period": 58675, + "thread": 26 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 312887, + "thread": 8 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 386732, + "thread": 4 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 625376, + "thread": 16 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 710307, + "thread": 18 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 826234, + "thread": 16 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1124583, + "thread": 12 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1232412, + "thread": 17 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1341783, + "thread": 12 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1550555, + "thread": 15 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1685211, + "thread": 22 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 1935305, + "thread": 16 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2053496, + "thread": 0 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2224881, + "thread": 3 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2306566, + "thread": 3 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2504349, + "thread": 19 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2767190, + "thread": 5 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 2869680, + "thread": 29 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 3115556, + "thread": 9 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 3189800, + "thread": 26 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 3320410, + "thread": 24 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 3608758, + "thread": 10 + } + }, + { + "amount": "338.908163075", + "slot": { + "period": 3709046, + "thread": 10 + } + }, + { + "amount": "338.908163081", + "slot": { + "period": 3808250, + "thread": 1 + } + } + ], + "AU1DD1RCH2sLVsbCC5MBmF1p8DoEMGJdgfNwF814wRThmGCXFQsy": [ + { + "amount": "141.927062677", + "slot": { + "period": 33810, + "thread": 19 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 301439, + "thread": 19 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 455049, + "thread": 6 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 612154, + "thread": 3 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 775347, + "thread": 24 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 908198, + "thread": 29 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 996513, + "thread": 29 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 1227820, + "thread": 1 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 1407046, + "thread": 23 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 1494139, + "thread": 7 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 1772859, + "thread": 21 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 1914760, + "thread": 28 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2090040, + "thread": 21 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2281485, + "thread": 22 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2458453, + "thread": 2 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2482136, + "thread": 17 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2688152, + "thread": 24 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2894413, + "thread": 13 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 2993828, + "thread": 17 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 3147397, + "thread": 17 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 3448691, + "thread": 14 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 3461334, + "thread": 6 + } + }, + { + "amount": "141.927062677", + "slot": { + "period": 3747600, + "thread": 14 + } + }, + { + "amount": "141.927062681", + "slot": { + "period": 3835078, + "thread": 3 + } + } + ], + "AU1DD4xb97BFR5ojzEwE9175PqUgTFzGuXamtFvxgKLxUQDR3dg2": [ + { + "amount": "285.784167501", + "slot": { + "period": 83948, + "thread": 30 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 229985, + "thread": 31 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 380722, + "thread": 30 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 645647, + "thread": 18 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 678073, + "thread": 8 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 827711, + "thread": 19 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1069841, + "thread": 17 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1175054, + "thread": 25 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1371077, + "thread": 13 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1617690, + "thread": 19 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1795721, + "thread": 26 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1845636, + "thread": 1 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 1979479, + "thread": 7 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 2176320, + "thread": 22 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 2327588, + "thread": 19 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 2476564, + "thread": 31 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 2703661, + "thread": 24 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 2887828, + "thread": 24 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 3048250, + "thread": 27 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 3255573, + "thread": 12 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 3293026, + "thread": 19 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 3540756, + "thread": 24 + } + }, + { + "amount": "285.784167501", + "slot": { + "period": 3688086, + "thread": 3 + } + }, + { + "amount": "285.784167511", + "slot": { + "period": 3924193, + "thread": 21 + } + } + ], + "AU1DDyNWbPNr5L155g9Rg6Fx6LqEHtj22vnxd9fAKQuwarBtCrXq": [ + { + "amount": "53.206363386", + "slot": { + "period": 60812, + "thread": 31 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 190986, + "thread": 10 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 435287, + "thread": 31 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 533397, + "thread": 1 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 770763, + "thread": 15 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 935288, + "thread": 17 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1028551, + "thread": 6 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1232098, + "thread": 15 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1395436, + "thread": 6 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1494542, + "thread": 10 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1704713, + "thread": 11 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 1897300, + "thread": 10 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2114365, + "thread": 25 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2291048, + "thread": 20 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2447616, + "thread": 9 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2622923, + "thread": 19 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2679166, + "thread": 16 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 2835961, + "thread": 31 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 3074562, + "thread": 20 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 3237570, + "thread": 23 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 3356485, + "thread": 2 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 3486551, + "thread": 5 + } + }, + { + "amount": "53.206363386", + "slot": { + "period": 3767507, + "thread": 3 + } + }, + { + "amount": "53.206363379", + "slot": { + "period": 3887148, + "thread": 25 + } + } + ], + "AU1DEDRmTLQWru3rCJ7ZQTp8YicFB23udbbLt5qAkdc2wrgZLqsp": [ + { + "amount": "176.954036742", + "slot": { + "period": 142456, + "thread": 4 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 213800, + "thread": 5 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 409703, + "thread": 19 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 556254, + "thread": 21 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 668141, + "thread": 22 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 901158, + "thread": 24 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1145836, + "thread": 24 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1160744, + "thread": 13 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1362166, + "thread": 23 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1547419, + "thread": 15 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1708802, + "thread": 20 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 1911866, + "thread": 11 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2023369, + "thread": 19 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2196738, + "thread": 24 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2305176, + "thread": 22 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2619229, + "thread": 3 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2717894, + "thread": 22 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 2906628, + "thread": 5 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 3119382, + "thread": 11 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 3190659, + "thread": 6 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 3440686, + "thread": 19 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 3607606, + "thread": 8 + } + }, + { + "amount": "176.954036742", + "slot": { + "period": 3619926, + "thread": 12 + } + }, + { + "amount": "176.954036740", + "slot": { + "period": 3869650, + "thread": 2 + } + } + ], + "AU1DEMn7KPwFWJ2QyWYTPS45dbwXuRvJ23pDFv4wWFrdiZx8m4Fm": [ + { + "amount": "498.071625460", + "slot": { + "period": 161860, + "thread": 7 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 249976, + "thread": 2 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 375388, + "thread": 4 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 531630, + "thread": 25 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 816635, + "thread": 8 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 977468, + "thread": 29 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1040406, + "thread": 29 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1247568, + "thread": 0 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1354612, + "thread": 15 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1567470, + "thread": 28 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1806427, + "thread": 7 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 1923274, + "thread": 5 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2027968, + "thread": 3 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2268791, + "thread": 2 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2303254, + "thread": 27 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2543408, + "thread": 24 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2791248, + "thread": 22 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 2870628, + "thread": 29 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 3095985, + "thread": 9 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 3281999, + "thread": 18 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 3338794, + "thread": 16 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 3468873, + "thread": 14 + } + }, + { + "amount": "498.071625460", + "slot": { + "period": 3682349, + "thread": 10 + } + }, + { + "amount": "498.071625456", + "slot": { + "period": 3938278, + "thread": 13 + } + } + ], + "AU1DEX4MuNhKBVEDK5du7xatrncrXmwoPyHFBWJhHytRVa4zuwnw": [ + { + "amount": "58.832911317", + "slot": { + "period": 109204, + "thread": 3 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 206823, + "thread": 4 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 447059, + "thread": 15 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 601987, + "thread": 24 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 765716, + "thread": 24 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 950420, + "thread": 0 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1044661, + "thread": 0 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1182323, + "thread": 29 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1457188, + "thread": 1 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1562688, + "thread": 6 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1797085, + "thread": 9 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1972412, + "thread": 28 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 1993044, + "thread": 29 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2257962, + "thread": 15 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2322619, + "thread": 3 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2603136, + "thread": 25 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2658231, + "thread": 14 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2942199, + "thread": 13 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 2963302, + "thread": 2 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 3204599, + "thread": 4 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 3402756, + "thread": 5 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 3617368, + "thread": 0 + } + }, + { + "amount": "58.832911317", + "slot": { + "period": 3757690, + "thread": 2 + } + }, + { + "amount": "58.832911320", + "slot": { + "period": 3840479, + "thread": 15 + } + } + ], + "AU1DF4VqBBEeV11DG3KAfyjQJZLCmz8qzzdfX1eUeVwFiCvCcqYW": [ + { + "amount": "120.797564483", + "slot": { + "period": 121153, + "thread": 29 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 264958, + "thread": 10 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 361093, + "thread": 16 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 568237, + "thread": 28 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 691537, + "thread": 12 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 846234, + "thread": 29 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1066105, + "thread": 0 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1163474, + "thread": 2 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1401316, + "thread": 1 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1502888, + "thread": 11 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1651593, + "thread": 5 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 1934167, + "thread": 15 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2096926, + "thread": 7 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2152468, + "thread": 26 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2337119, + "thread": 5 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2513477, + "thread": 22 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2627598, + "thread": 13 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 2795637, + "thread": 0 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 3058857, + "thread": 13 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 3124694, + "thread": 2 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 3363162, + "thread": 30 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 3561344, + "thread": 24 + } + }, + { + "amount": "120.797564483", + "slot": { + "period": 3719163, + "thread": 29 + } + }, + { + "amount": "120.797564478", + "slot": { + "period": 3834208, + "thread": 1 + } + } + ], + "AU1DFUf9TLpFQigMtxeJV99TEnRa5sjNL8VSWsCSjsDGtqyuPzFm": [ + { + "amount": "524.773975493", + "slot": { + "period": 117895, + "thread": 31 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 174200, + "thread": 31 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 424192, + "thread": 15 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 636322, + "thread": 14 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 765708, + "thread": 29 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 962418, + "thread": 13 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1076664, + "thread": 17 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1248964, + "thread": 1 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1455713, + "thread": 25 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1601800, + "thread": 31 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1762139, + "thread": 8 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1890041, + "thread": 12 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 1986604, + "thread": 26 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 2147441, + "thread": 12 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 2379342, + "thread": 12 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 2467684, + "thread": 27 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 2742342, + "thread": 9 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 2841137, + "thread": 13 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3032431, + "thread": 9 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3186461, + "thread": 31 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3424857, + "thread": 24 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3456883, + "thread": 23 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3665468, + "thread": 23 + } + }, + { + "amount": "524.773975493", + "slot": { + "period": 3789704, + "thread": 21 + } + } + ], + "AU1DGqsy6RQKZTF6jLkQNzPqwzYaVy79cn3T8YgmE9rNQ7P4i4rx": [ + { + "amount": "224.729035170", + "slot": { + "period": 123411, + "thread": 13 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 249593, + "thread": 14 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 460331, + "thread": 13 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 624240, + "thread": 7 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 725539, + "thread": 1 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 946899, + "thread": 31 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1150036, + "thread": 11 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1173771, + "thread": 11 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1410949, + "thread": 24 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1549610, + "thread": 3 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1751961, + "thread": 0 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 1824936, + "thread": 29 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2034850, + "thread": 26 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2241938, + "thread": 12 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2299796, + "thread": 13 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2570251, + "thread": 29 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2763173, + "thread": 2 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 2912487, + "thread": 9 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 3013038, + "thread": 18 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 3236611, + "thread": 21 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 3341738, + "thread": 26 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 3589456, + "thread": 5 + } + }, + { + "amount": "224.729035170", + "slot": { + "period": 3712815, + "thread": 1 + } + }, + { + "amount": "224.729035181", + "slot": { + "period": 3933492, + "thread": 25 + } + } + ], + "AU1DHbywF88APHTC45RMnRKS8N2jiMz7gySGf838J63tvf7doFUr": [ + { + "amount": "440.166636158", + "slot": { + "period": 83714, + "thread": 23 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 318275, + "thread": 19 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 470479, + "thread": 9 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 564538, + "thread": 8 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 777785, + "thread": 13 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 852863, + "thread": 28 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1087518, + "thread": 5 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1230652, + "thread": 23 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1447203, + "thread": 26 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1606599, + "thread": 9 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1725587, + "thread": 30 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1820440, + "thread": 7 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 1989628, + "thread": 9 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 2181467, + "thread": 14 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 2342999, + "thread": 27 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 2478445, + "thread": 8 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 2671390, + "thread": 28 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 2809416, + "thread": 19 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 3076265, + "thread": 31 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 3155237, + "thread": 29 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 3288647, + "thread": 31 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 3526910, + "thread": 28 + } + }, + { + "amount": "440.166636158", + "slot": { + "period": 3639438, + "thread": 18 + } + }, + { + "amount": "440.166636159", + "slot": { + "period": 3944789, + "thread": 21 + } + } + ], + "AU1DHeZrE5oxx44rgnzosbSJCzUaFfiZSpRiBwpEtfsN8XCHUtAL": [ + { + "amount": "133.261392505", + "slot": { + "period": 118736, + "thread": 4 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 240263, + "thread": 7 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 360047, + "thread": 30 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 556348, + "thread": 12 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 686823, + "thread": 29 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 967703, + "thread": 19 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1069303, + "thread": 6 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1183654, + "thread": 27 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1338255, + "thread": 7 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1599424, + "thread": 28 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1702344, + "thread": 28 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 1854183, + "thread": 27 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2037712, + "thread": 14 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2200904, + "thread": 12 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2385998, + "thread": 28 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2611037, + "thread": 29 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2680560, + "thread": 10 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 2861867, + "thread": 7 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 3053835, + "thread": 29 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 3132060, + "thread": 29 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 3391740, + "thread": 16 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 3576498, + "thread": 1 + } + }, + { + "amount": "133.261392505", + "slot": { + "period": 3683025, + "thread": 12 + } + }, + { + "amount": "133.261392506", + "slot": { + "period": 3884221, + "thread": 5 + } + } + ], + "AU1DK87q9YgE5hmvQeUa1DG1R64mdLJHMbyCdbBVpvE5aia6vgQc": [ + { + "amount": "268.898570218", + "slot": { + "period": 115016, + "thread": 9 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 233725, + "thread": 25 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 463116, + "thread": 6 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 629094, + "thread": 22 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 687243, + "thread": 11 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 980943, + "thread": 19 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1077844, + "thread": 2 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1239922, + "thread": 20 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1463433, + "thread": 3 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1585569, + "thread": 3 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1651362, + "thread": 6 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 1932188, + "thread": 22 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2040248, + "thread": 22 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2284318, + "thread": 7 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2440459, + "thread": 21 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2579662, + "thread": 7 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2672766, + "thread": 12 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2868015, + "thread": 15 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 2991018, + "thread": 14 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 3260825, + "thread": 20 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 3422011, + "thread": 27 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 3450639, + "thread": 3 + } + }, + { + "amount": "268.898570218", + "slot": { + "period": 3766917, + "thread": 24 + } + }, + { + "amount": "268.898570227", + "slot": { + "period": 3875170, + "thread": 7 + } + } + ], + "AU1DKhB6rQF9swpVDyqoyHFtKwZvUFsi5Pp3ST9kqLqnuPJyqpkW": [ + { + "amount": "297.405656890", + "slot": { + "period": 49549, + "thread": 25 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 279808, + "thread": 15 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 463197, + "thread": 31 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 560592, + "thread": 7 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 801681, + "thread": 13 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 916728, + "thread": 7 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1075672, + "thread": 4 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1169599, + "thread": 7 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1384409, + "thread": 20 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1613372, + "thread": 23 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1692401, + "thread": 22 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1816141, + "thread": 27 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 1980016, + "thread": 18 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 2233398, + "thread": 13 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 2345991, + "thread": 20 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 2539520, + "thread": 13 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 2764589, + "thread": 8 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 2906731, + "thread": 30 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 3023225, + "thread": 13 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 3224592, + "thread": 19 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 3364287, + "thread": 14 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 3482305, + "thread": 9 + } + }, + { + "amount": "297.405656890", + "slot": { + "period": 3651221, + "thread": 18 + } + }, + { + "amount": "297.405656902", + "slot": { + "period": 3851216, + "thread": 31 + } + } + ], + "AU1DKzU8hWsA2M27bZzjV1muhr9e6qSa4fd5ninETEVL7DWoJX17": [ + { + "amount": "335.406499050", + "slot": { + "period": 86792, + "thread": 25 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 212596, + "thread": 18 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 394203, + "thread": 5 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 610343, + "thread": 15 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 756716, + "thread": 2 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 869663, + "thread": 11 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1092858, + "thread": 11 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1223242, + "thread": 8 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1330111, + "thread": 24 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1644521, + "thread": 27 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1651146, + "thread": 14 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 1944811, + "thread": 3 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2136207, + "thread": 14 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2144845, + "thread": 23 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2344317, + "thread": 9 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2488755, + "thread": 13 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2721777, + "thread": 1 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 2942680, + "thread": 14 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 3086893, + "thread": 27 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 3129418, + "thread": 5 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 3388215, + "thread": 16 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 3600284, + "thread": 10 + } + }, + { + "amount": "335.406499050", + "slot": { + "period": 3699992, + "thread": 0 + } + }, + { + "amount": "335.406499056", + "slot": { + "period": 3880178, + "thread": 10 + } + } + ], + "AU1DL6owCua698dxhLwqTmajTb51Ag8m4dcQdRd7WEKmNNkBZR13": [ + { + "amount": "238.934717885", + "slot": { + "period": 28848, + "thread": 26 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 182937, + "thread": 1 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 382295, + "thread": 29 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 569848, + "thread": 12 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 678201, + "thread": 15 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 927929, + "thread": 8 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1040411, + "thread": 18 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1183953, + "thread": 28 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1465518, + "thread": 16 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1517290, + "thread": 3 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1781502, + "thread": 15 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 1869002, + "thread": 2 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2051815, + "thread": 15 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2282224, + "thread": 6 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2439672, + "thread": 24 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2515662, + "thread": 26 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2779029, + "thread": 16 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 2818976, + "thread": 23 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 3115603, + "thread": 17 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 3124392, + "thread": 7 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 3446264, + "thread": 24 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 3486516, + "thread": 14 + } + }, + { + "amount": "238.934717885", + "slot": { + "period": 3755501, + "thread": 18 + } + }, + { + "amount": "238.934717875", + "slot": { + "period": 3863778, + "thread": 20 + } + } + ], + "AU1DLRrXhp8vgSr17t5x1xpHQdg82eboufvfFLzbmTWQmWJxMcXX": [ + { + "amount": "171.238660378", + "slot": { + "period": 62677, + "thread": 2 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 270408, + "thread": 10 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 372972, + "thread": 1 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 510296, + "thread": 1 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 735961, + "thread": 10 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 833933, + "thread": 14 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1042312, + "thread": 25 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1309142, + "thread": 4 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1459637, + "thread": 7 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1519698, + "thread": 24 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1675503, + "thread": 14 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 1873547, + "thread": 25 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2114614, + "thread": 19 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2236507, + "thread": 18 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2312970, + "thread": 6 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2485897, + "thread": 22 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2669644, + "thread": 4 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 2808362, + "thread": 4 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 3113170, + "thread": 6 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 3178394, + "thread": 6 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 3322053, + "thread": 6 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 3544755, + "thread": 27 + } + }, + { + "amount": "171.238660378", + "slot": { + "period": 3686434, + "thread": 17 + } + }, + { + "amount": "171.238660366", + "slot": { + "period": 3860139, + "thread": 29 + } + } + ], + "AU1DLab9UwDdhcn8s2Q3eLT4hfDhYm7aCrz9irVWZUxe4DhzFe8i": [ + { + "amount": "106.610101290", + "slot": { + "period": 151358, + "thread": 0 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 298772, + "thread": 22 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 403562, + "thread": 15 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 642002, + "thread": 8 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 813838, + "thread": 2 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 976752, + "thread": 27 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1045831, + "thread": 9 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1224606, + "thread": 20 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1353317, + "thread": 19 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1542058, + "thread": 9 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1770399, + "thread": 30 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 1839686, + "thread": 7 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2066399, + "thread": 8 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2236408, + "thread": 15 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2447023, + "thread": 8 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2511732, + "thread": 17 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2685299, + "thread": 27 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 2867779, + "thread": 19 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 3023257, + "thread": 25 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 3184755, + "thread": 22 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 3442205, + "thread": 14 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 3554737, + "thread": 16 + } + }, + { + "amount": "106.610101290", + "slot": { + "period": 3713329, + "thread": 13 + } + }, + { + "amount": "106.610101280", + "slot": { + "period": 3877018, + "thread": 3 + } + } + ], + "AU1DLg9zRQHVhkZw7HVb3VbUn62e9R2gBtiAuVAJWfs4oXhkQ5iV": [ + { + "amount": "116.048943710", + "slot": { + "period": 99961, + "thread": 13 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 185234, + "thread": 29 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 433358, + "thread": 12 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 645498, + "thread": 13 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 807131, + "thread": 27 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 844863, + "thread": 9 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 987431, + "thread": 24 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 1231201, + "thread": 1 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 1376894, + "thread": 8 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 1504018, + "thread": 25 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 1706945, + "thread": 21 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 1975725, + "thread": 3 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2121732, + "thread": 7 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2170785, + "thread": 30 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2313211, + "thread": 19 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2600114, + "thread": 22 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2716873, + "thread": 5 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 2907514, + "thread": 23 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 3013893, + "thread": 18 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 3266349, + "thread": 26 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 3330999, + "thread": 14 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 3610427, + "thread": 7 + } + }, + { + "amount": "116.048943710", + "slot": { + "period": 3618819, + "thread": 4 + } + }, + { + "amount": "116.048943702", + "slot": { + "period": 3855708, + "thread": 26 + } + } + ], + "AU1DMTfmFNy3jJpvcFcv5XqygJpYQ5X1Y3ApGXKvC8nss458uYSF": [ + { + "amount": "155.348891114", + "slot": { + "period": 122889, + "thread": 25 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 260665, + "thread": 25 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 368037, + "thread": 0 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 622510, + "thread": 9 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 753060, + "thread": 31 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 842129, + "thread": 1 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1077578, + "thread": 7 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1229957, + "thread": 3 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1376632, + "thread": 19 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1606590, + "thread": 4 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1794513, + "thread": 28 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 1944823, + "thread": 5 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2009861, + "thread": 21 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2219209, + "thread": 0 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2420327, + "thread": 11 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2577058, + "thread": 22 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2670853, + "thread": 23 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 2848567, + "thread": 24 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 3057254, + "thread": 18 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 3195365, + "thread": 9 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 3339308, + "thread": 12 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 3584260, + "thread": 17 + } + }, + { + "amount": "155.348891114", + "slot": { + "period": 3685327, + "thread": 1 + } + }, + { + "amount": "155.348891102", + "slot": { + "period": 3786670, + "thread": 4 + } + } + ], + "AU1DNNiurnNhMM1uVA2gQ7hAHSgjt1m44j4cJguhQw8VX6W4bJsv": [ + { + "amount": "51.724187626", + "slot": { + "period": 164068, + "thread": 17 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 186830, + "thread": 29 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 386345, + "thread": 25 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 518608, + "thread": 7 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 779145, + "thread": 10 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 823456, + "thread": 1 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1133883, + "thread": 17 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1152212, + "thread": 4 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1396511, + "thread": 28 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1483092, + "thread": 24 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1725931, + "thread": 9 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 1876769, + "thread": 19 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2108548, + "thread": 28 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2191440, + "thread": 22 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2377407, + "thread": 26 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2496356, + "thread": 4 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2715294, + "thread": 2 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 2885952, + "thread": 8 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 3009025, + "thread": 3 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 3127469, + "thread": 19 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 3431396, + "thread": 25 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 3611085, + "thread": 19 + } + }, + { + "amount": "51.724187626", + "slot": { + "period": 3716758, + "thread": 6 + } + }, + { + "amount": "51.724187636", + "slot": { + "period": 3797913, + "thread": 1 + } + } + ], + "AU1DPNDZFDypxUwV231CAaQNHhhWY2gpa8ePATGVZyqTibFVWJaD": [ + { + "amount": "133.104222179", + "slot": { + "period": 58863, + "thread": 1 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 230670, + "thread": 23 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 403387, + "thread": 16 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 575827, + "thread": 5 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 674101, + "thread": 28 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 971333, + "thread": 22 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1042937, + "thread": 24 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1163253, + "thread": 30 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1414026, + "thread": 31 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1573708, + "thread": 18 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1701603, + "thread": 2 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 1908165, + "thread": 0 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2073968, + "thread": 30 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2178746, + "thread": 26 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2403496, + "thread": 29 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2559199, + "thread": 2 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2732639, + "thread": 18 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 2858216, + "thread": 23 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 3054354, + "thread": 18 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 3275330, + "thread": 15 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 3328540, + "thread": 2 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 3456362, + "thread": 1 + } + }, + { + "amount": "133.104222179", + "slot": { + "period": 3707398, + "thread": 19 + } + }, + { + "amount": "133.104222183", + "slot": { + "period": 3842720, + "thread": 24 + } + } + ], + "AU1DPeC7uqZYjuA36bgqeieC5n1T7XwcWt5oZBY9FkwuSF8wuSet": [ + { + "amount": "98.416096024", + "slot": { + "period": 26884, + "thread": 24 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 195976, + "thread": 26 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 420903, + "thread": 26 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 607811, + "thread": 12 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 732673, + "thread": 31 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 972781, + "thread": 1 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1083533, + "thread": 9 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1214478, + "thread": 22 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1365894, + "thread": 5 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1627584, + "thread": 13 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1747504, + "thread": 10 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 1966866, + "thread": 14 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2115466, + "thread": 12 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2152810, + "thread": 9 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2450684, + "thread": 7 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2535332, + "thread": 13 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2788501, + "thread": 31 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 2837450, + "thread": 11 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 3055614, + "thread": 13 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 3125907, + "thread": 1 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 3372082, + "thread": 8 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 3560646, + "thread": 4 + } + }, + { + "amount": "98.416096024", + "slot": { + "period": 3771571, + "thread": 17 + } + }, + { + "amount": "98.416096015", + "slot": { + "period": 3919345, + "thread": 2 + } + } + ], + "AU1DQgRKjmyAQY7AK3nLTYq6zDVcX7yg71f44Lfa5RCGYKW68LxL": [ + { + "amount": "141.576718348", + "slot": { + "period": 103363, + "thread": 7 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 301062, + "thread": 6 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 364875, + "thread": 6 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 534211, + "thread": 23 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 689412, + "thread": 30 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 918644, + "thread": 24 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1069434, + "thread": 4 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1223375, + "thread": 19 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1356557, + "thread": 14 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1537644, + "thread": 11 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1702423, + "thread": 12 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 1946342, + "thread": 8 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2103798, + "thread": 11 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2237015, + "thread": 8 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2445280, + "thread": 20 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2586972, + "thread": 14 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2771736, + "thread": 14 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 2859828, + "thread": 4 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 3028206, + "thread": 23 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 3188403, + "thread": 5 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 3427582, + "thread": 4 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 3540276, + "thread": 5 + } + }, + { + "amount": "141.576718348", + "slot": { + "period": 3687641, + "thread": 29 + } + }, + { + "amount": "141.576718352", + "slot": { + "period": 3940158, + "thread": 22 + } + } + ], + "AU1DQiGdDU6xL3uuf1hLRZK2KVdPMPRvYjzibGSda8RDMYHPoS12": [ + { + "amount": "203.604040202", + "slot": { + "period": 143742, + "thread": 19 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 206494, + "thread": 14 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 442265, + "thread": 24 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 528155, + "thread": 3 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 670548, + "thread": 30 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 957130, + "thread": 24 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1067368, + "thread": 24 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1248486, + "thread": 17 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1364725, + "thread": 31 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1596558, + "thread": 4 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1788112, + "thread": 20 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 1873724, + "thread": 10 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2097072, + "thread": 25 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2172951, + "thread": 8 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2392737, + "thread": 20 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2614947, + "thread": 12 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2749941, + "thread": 31 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 2880778, + "thread": 11 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 3097749, + "thread": 17 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 3155647, + "thread": 0 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 3324049, + "thread": 21 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 3467351, + "thread": 15 + } + }, + { + "amount": "203.604040202", + "slot": { + "period": 3640683, + "thread": 24 + } + }, + { + "amount": "203.604040211", + "slot": { + "period": 3803169, + "thread": 6 + } + } + ], + "AU1DR6FqyMfjGBGxszYFYCAZ3LiokaCta7FLduCG1avzVHxbEjUd": [ + { + "amount": "133.040160303", + "slot": { + "period": 143885, + "thread": 24 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 280235, + "thread": 23 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 438639, + "thread": 22 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 559367, + "thread": 28 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 788043, + "thread": 6 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 931473, + "thread": 15 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1052957, + "thread": 24 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1261732, + "thread": 29 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1429864, + "thread": 24 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1614838, + "thread": 14 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1762852, + "thread": 16 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 1908224, + "thread": 19 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2033598, + "thread": 16 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2270941, + "thread": 18 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2456654, + "thread": 19 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2590185, + "thread": 28 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2773034, + "thread": 22 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2801532, + "thread": 31 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 2989037, + "thread": 13 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 3234042, + "thread": 7 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 3349467, + "thread": 17 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 3471852, + "thread": 4 + } + }, + { + "amount": "133.040160303", + "slot": { + "period": 3754492, + "thread": 16 + } + }, + { + "amount": "133.040160301", + "slot": { + "period": 3821853, + "thread": 11 + } + } + ], + "AU1DRCbEMZkVR4S3uF7egRvgBwKYKoFuyNNUxWT8Xv1UiY92EkGT": [ + { + "amount": "305.773560170", + "slot": { + "period": 110025, + "thread": 22 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 254407, + "thread": 19 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 352263, + "thread": 1 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 625715, + "thread": 18 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 786830, + "thread": 16 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 885198, + "thread": 23 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 988281, + "thread": 6 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1163337, + "thread": 15 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1358346, + "thread": 21 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1550393, + "thread": 13 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1689328, + "thread": 9 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1882976, + "thread": 18 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 1982242, + "thread": 10 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 2223174, + "thread": 25 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 2321484, + "thread": 24 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 2573240, + "thread": 20 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 2713774, + "thread": 15 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 2813131, + "thread": 31 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 3032429, + "thread": 0 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 3137236, + "thread": 9 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 3381396, + "thread": 5 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 3588008, + "thread": 31 + } + }, + { + "amount": "305.773560170", + "slot": { + "period": 3752105, + "thread": 18 + } + }, + { + "amount": "305.773560168", + "slot": { + "period": 3938875, + "thread": 4 + } + } + ], + "AU1DRuL7uLHHXKnrRiAuD4jwGxSdAWakys5YxYtCPMCyLTfEQfv9": [ + { + "amount": "102.482107562", + "slot": { + "period": 158700, + "thread": 3 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 242214, + "thread": 20 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 327802, + "thread": 16 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 592346, + "thread": 2 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 718767, + "thread": 26 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 873437, + "thread": 24 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 990399, + "thread": 7 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 1157888, + "thread": 20 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 1328188, + "thread": 26 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 1586921, + "thread": 19 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 1761779, + "thread": 30 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 1819819, + "thread": 25 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2012169, + "thread": 21 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2211878, + "thread": 27 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2377175, + "thread": 16 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2598316, + "thread": 29 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2697548, + "thread": 22 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 2858681, + "thread": 7 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 3095878, + "thread": 16 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 3262723, + "thread": 22 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 3317511, + "thread": 13 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 3503691, + "thread": 22 + } + }, + { + "amount": "102.482107562", + "slot": { + "period": 3731979, + "thread": 21 + } + }, + { + "amount": "102.482107571", + "slot": { + "period": 3869774, + "thread": 15 + } + } + ], + "AU1DSr5xNvFnmsm17Pk2j1ryYbQ4ahR53dX6WoNWvDChLMSmq1aE": [ + { + "amount": "465.623123602", + "slot": { + "period": 112813, + "thread": 24 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 208569, + "thread": 23 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 324627, + "thread": 25 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 603950, + "thread": 6 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 763831, + "thread": 27 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 913267, + "thread": 7 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1024773, + "thread": 20 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1233942, + "thread": 2 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1350487, + "thread": 17 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1498111, + "thread": 9 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1803210, + "thread": 28 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 1860493, + "thread": 0 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2055096, + "thread": 19 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2203210, + "thread": 1 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2335035, + "thread": 14 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2483600, + "thread": 14 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2644406, + "thread": 22 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2951457, + "thread": 12 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 2958687, + "thread": 3 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 3129071, + "thread": 9 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 3401295, + "thread": 26 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 3455251, + "thread": 29 + } + }, + { + "amount": "465.623123602", + "slot": { + "period": 3725672, + "thread": 28 + } + }, + { + "amount": "465.623123604", + "slot": { + "period": 3803865, + "thread": 19 + } + } + ], + "AU1DT835gX76YPgbwTEV9fY4T48zYwJbY9Mfst7524q7c1hKmycp": [ + { + "amount": "295.707292374", + "slot": { + "period": 11042, + "thread": 0 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 289129, + "thread": 6 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 375863, + "thread": 25 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 640550, + "thread": 20 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 732209, + "thread": 14 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 872860, + "thread": 2 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 988129, + "thread": 24 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 1201602, + "thread": 30 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 1422609, + "thread": 8 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 1547841, + "thread": 2 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 1752871, + "thread": 27 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 1959760, + "thread": 2 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2047471, + "thread": 25 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2237523, + "thread": 18 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2345970, + "thread": 25 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2582894, + "thread": 24 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2624943, + "thread": 24 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 2913906, + "thread": 15 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 3111176, + "thread": 17 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 3257024, + "thread": 3 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 3312462, + "thread": 25 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 3502072, + "thread": 1 + } + }, + { + "amount": "295.707292374", + "slot": { + "period": 3734857, + "thread": 6 + } + }, + { + "amount": "295.707292377", + "slot": { + "period": 3857959, + "thread": 15 + } + } + ], + "AU1DTasYf3XheW7kxor37tRkYHZWqTJa5rRXU3ZA1exS8wMxq9R5": [ + { + "amount": "294.401750530", + "slot": { + "period": 143031, + "thread": 20 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 317546, + "thread": 0 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 467648, + "thread": 19 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 570747, + "thread": 12 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 811786, + "thread": 30 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 829184, + "thread": 16 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1122739, + "thread": 27 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1267988, + "thread": 15 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1326572, + "thread": 0 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1572817, + "thread": 21 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1679947, + "thread": 4 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 1906510, + "thread": 9 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2021158, + "thread": 9 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2267290, + "thread": 15 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2353079, + "thread": 11 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2539333, + "thread": 20 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2709673, + "thread": 30 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 2816031, + "thread": 21 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 3017982, + "thread": 22 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 3224806, + "thread": 28 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 3441637, + "thread": 7 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 3484681, + "thread": 3 + } + }, + { + "amount": "294.401750530", + "slot": { + "period": 3666080, + "thread": 25 + } + }, + { + "amount": "294.401750523", + "slot": { + "period": 3879028, + "thread": 24 + } + } + ], + "AU1DWKftDHBFdqREWaiv6JGZVvGUMV7sdfWrcxPVnLjYyzz4aEvY": [ + { + "amount": "500.840739044", + "slot": { + "period": 145304, + "thread": 16 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 276004, + "thread": 6 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 438645, + "thread": 7 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 634452, + "thread": 9 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 666034, + "thread": 4 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 830558, + "thread": 14 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1080585, + "thread": 4 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1197654, + "thread": 20 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1354718, + "thread": 28 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1631719, + "thread": 27 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1696583, + "thread": 12 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 1853105, + "thread": 19 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2100802, + "thread": 4 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2173322, + "thread": 25 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2345422, + "thread": 3 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2534107, + "thread": 22 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2714976, + "thread": 10 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 2864472, + "thread": 17 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 3116592, + "thread": 9 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 3188844, + "thread": 14 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 3430605, + "thread": 28 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 3469987, + "thread": 13 + } + }, + { + "amount": "500.840739044", + "slot": { + "period": 3686994, + "thread": 14 + } + }, + { + "amount": "500.840739037", + "slot": { + "period": 3804255, + "thread": 7 + } + } + ], + "AU1DXtSEdqkNG9qp4VCRbbFcDcBPoMkDsV7kBJYXdPgooJrs8VnV": [ + { + "amount": "133.481564985", + "slot": { + "period": 111401, + "thread": 20 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 227471, + "thread": 6 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 459796, + "thread": 25 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 516370, + "thread": 11 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 801664, + "thread": 15 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 979240, + "thread": 4 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1102701, + "thread": 23 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1186127, + "thread": 28 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1400973, + "thread": 24 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1560903, + "thread": 26 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1730306, + "thread": 31 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 1863115, + "thread": 13 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2110420, + "thread": 2 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2223217, + "thread": 3 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2329070, + "thread": 31 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2556625, + "thread": 30 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2759671, + "thread": 23 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 2854977, + "thread": 14 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 3042139, + "thread": 2 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 3220848, + "thread": 2 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 3416285, + "thread": 20 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 3585561, + "thread": 25 + } + }, + { + "amount": "133.481564985", + "slot": { + "period": 3674753, + "thread": 31 + } + }, + { + "amount": "133.481564979", + "slot": { + "period": 3905533, + "thread": 6 + } + } + ], + "AU1DYcYZ9tQAz2xuRNaChqn4K8amd58JGZyqN2iBe2JWWTp9vnyk": [ + { + "amount": "90.258347386", + "slot": { + "period": 81116, + "thread": 31 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 169571, + "thread": 6 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 346001, + "thread": 30 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 621375, + "thread": 4 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 759112, + "thread": 26 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 884420, + "thread": 21 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 995422, + "thread": 11 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 1300661, + "thread": 6 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 1428129, + "thread": 27 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 1513233, + "thread": 25 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 1774883, + "thread": 7 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 1836131, + "thread": 7 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2074207, + "thread": 27 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2149822, + "thread": 16 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2392744, + "thread": 29 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2542602, + "thread": 23 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2720374, + "thread": 31 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 2888344, + "thread": 5 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 3034509, + "thread": 5 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 3198534, + "thread": 9 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 3423784, + "thread": 10 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 3516502, + "thread": 12 + } + }, + { + "amount": "90.258347386", + "slot": { + "period": 3674203, + "thread": 1 + } + }, + { + "amount": "90.258347380", + "slot": { + "period": 3902829, + "thread": 27 + } + } + ], + "AU1DYykCwzNaRLuWCo5mDTFcTjr6tyvDTRtJ299SX91LHuxiYHGt": [ + { + "amount": "471.554572676", + "slot": { + "period": 56781, + "thread": 26 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 323001, + "thread": 10 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 484353, + "thread": 0 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 620874, + "thread": 3 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 691055, + "thread": 6 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 840229, + "thread": 21 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1097969, + "thread": 8 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1257681, + "thread": 15 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1369843, + "thread": 3 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1481135, + "thread": 23 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1710051, + "thread": 1 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 1866277, + "thread": 29 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2037223, + "thread": 8 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2171410, + "thread": 20 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2439921, + "thread": 9 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2575180, + "thread": 8 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2723933, + "thread": 31 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 2878658, + "thread": 16 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 3026703, + "thread": 4 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 3278690, + "thread": 0 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 3403787, + "thread": 8 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 3486287, + "thread": 0 + } + }, + { + "amount": "471.554572676", + "slot": { + "period": 3699782, + "thread": 16 + } + }, + { + "amount": "471.554572666", + "slot": { + "period": 3827420, + "thread": 18 + } + } + ], + "AU1DZ1fpFVBH46jzHUfvVrrUMni2ZmfgcvXrsB1MZNBesUL4ENcm": [ + { + "amount": "166.837443760", + "slot": { + "period": 57884, + "thread": 26 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 298259, + "thread": 0 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 470431, + "thread": 0 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 503576, + "thread": 8 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 819687, + "thread": 25 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 970725, + "thread": 5 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1026992, + "thread": 19 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1235652, + "thread": 16 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1372808, + "thread": 22 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1636189, + "thread": 16 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1776710, + "thread": 0 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 1923333, + "thread": 30 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2085170, + "thread": 26 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2145631, + "thread": 3 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2386292, + "thread": 20 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2527979, + "thread": 22 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2783000, + "thread": 17 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 2896675, + "thread": 7 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 3096763, + "thread": 29 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 3139145, + "thread": 29 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 3367600, + "thread": 10 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 3553367, + "thread": 1 + } + }, + { + "amount": "166.837443760", + "slot": { + "period": 3672123, + "thread": 2 + } + }, + { + "amount": "166.837443761", + "slot": { + "period": 3819679, + "thread": 14 + } + } + ], + "AU1Da3K85jNvsKVS1DrYKnXLpFWX4K47nVa8kVTaiADpxZqAZwro": [ + { + "amount": "211.618377529", + "slot": { + "period": 121745, + "thread": 28 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 179147, + "thread": 7 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 419427, + "thread": 21 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 499594, + "thread": 30 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 707740, + "thread": 19 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 868908, + "thread": 3 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 998344, + "thread": 25 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 1316942, + "thread": 1 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 1452576, + "thread": 24 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 1567755, + "thread": 6 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 1772949, + "thread": 7 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 1931923, + "thread": 8 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2066468, + "thread": 1 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2147730, + "thread": 23 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2433834, + "thread": 8 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2601543, + "thread": 23 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2721758, + "thread": 16 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2936780, + "thread": 0 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 2966657, + "thread": 21 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 3244338, + "thread": 8 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 3362699, + "thread": 31 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 3604303, + "thread": 23 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 3714432, + "thread": 9 + } + }, + { + "amount": "211.618377529", + "slot": { + "period": 3894786, + "thread": 13 + } + } + ], + "AU1DbVkdSBVABnyQ24hMpZebSvCLsUFXZ5oznk1PW3oKZW45eHoF": [ + { + "amount": "176.475284287", + "slot": { + "period": 160278, + "thread": 13 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 250219, + "thread": 14 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 450298, + "thread": 12 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 576825, + "thread": 25 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 769845, + "thread": 3 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 826691, + "thread": 11 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 995340, + "thread": 3 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1191962, + "thread": 18 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1478011, + "thread": 19 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1506504, + "thread": 22 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1711582, + "thread": 13 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1941461, + "thread": 16 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 1987312, + "thread": 15 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 2151710, + "thread": 4 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 2398580, + "thread": 31 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 2567292, + "thread": 30 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 2694363, + "thread": 15 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 2872750, + "thread": 19 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 3071015, + "thread": 31 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 3248498, + "thread": 2 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 3398794, + "thread": 9 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 3480802, + "thread": 9 + } + }, + { + "amount": "176.475284287", + "slot": { + "period": 3736489, + "thread": 5 + } + }, + { + "amount": "176.475284280", + "slot": { + "period": 3891656, + "thread": 29 + } + } + ], + "AU1DbkmoLZxU4oPZ6zwRSKS2shK1BUuDzHCrhvWwNLyJw5v7M12e": [ + { + "amount": "76.312140360", + "slot": { + "period": 81880, + "thread": 14 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 206794, + "thread": 2 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 476261, + "thread": 6 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 516258, + "thread": 16 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 813258, + "thread": 5 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 846347, + "thread": 14 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1026525, + "thread": 21 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1193291, + "thread": 30 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1350362, + "thread": 20 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1618532, + "thread": 16 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1651442, + "thread": 16 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 1862557, + "thread": 14 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2090982, + "thread": 22 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2285060, + "thread": 21 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2413580, + "thread": 4 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2600223, + "thread": 6 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2684747, + "thread": 23 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 2856194, + "thread": 10 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 3091481, + "thread": 22 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 3150555, + "thread": 11 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 3382459, + "thread": 29 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 3519311, + "thread": 27 + } + }, + { + "amount": "76.312140360", + "slot": { + "period": 3722024, + "thread": 22 + } + }, + { + "amount": "76.312140356", + "slot": { + "period": 3820807, + "thread": 27 + } + } + ], + "AU1Dc7UVFHL5LJXLqf6gjweVWM8gWXZNoue2CeyXUe5Q2zCAvmw2": [ + { + "amount": "59.014542747", + "slot": { + "period": 118265, + "thread": 20 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 261184, + "thread": 22 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 363808, + "thread": 27 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 603698, + "thread": 28 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 768943, + "thread": 8 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 870594, + "thread": 9 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1122287, + "thread": 1 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1249555, + "thread": 18 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1320458, + "thread": 9 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1532305, + "thread": 13 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1702996, + "thread": 4 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 1958433, + "thread": 4 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2105736, + "thread": 29 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2257752, + "thread": 4 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2414246, + "thread": 20 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2611775, + "thread": 23 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2719782, + "thread": 30 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2809285, + "thread": 28 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 2983796, + "thread": 25 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 3267077, + "thread": 15 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 3388486, + "thread": 13 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 3554921, + "thread": 18 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 3657448, + "thread": 0 + } + }, + { + "amount": "59.014542747", + "slot": { + "period": 3867546, + "thread": 20 + } + } + ], + "AU1DcGaZ4ACJpSb29QLVtxBBbcWmu2X33mP5EdeNj9gy51Waxt19": [ + { + "amount": "471.456153207", + "slot": { + "period": 92117, + "thread": 7 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 280230, + "thread": 28 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 325657, + "thread": 6 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 606145, + "thread": 10 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 681275, + "thread": 31 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 922884, + "thread": 19 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1077381, + "thread": 12 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1184820, + "thread": 4 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1418352, + "thread": 2 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1594539, + "thread": 9 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1673909, + "thread": 5 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 1942439, + "thread": 14 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2033377, + "thread": 10 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2257583, + "thread": 8 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2352374, + "thread": 28 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2559213, + "thread": 3 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2633673, + "thread": 25 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2949960, + "thread": 19 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 2982409, + "thread": 14 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 3204652, + "thread": 26 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 3429903, + "thread": 26 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 3511861, + "thread": 26 + } + }, + { + "amount": "471.456153207", + "slot": { + "period": 3763300, + "thread": 25 + } + }, + { + "amount": "471.456153206", + "slot": { + "period": 3818719, + "thread": 11 + } + } + ], + "AU1DcxaGb6kZYsxdwgZaDGW5smnKpsgbMBWFDgDR9wA4znLfQ5DU": [ + { + "amount": "88.938768059", + "slot": { + "period": 79542, + "thread": 24 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 216483, + "thread": 21 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 475026, + "thread": 3 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 518846, + "thread": 22 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 736914, + "thread": 15 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 834180, + "thread": 12 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1012090, + "thread": 22 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1163982, + "thread": 27 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1419794, + "thread": 6 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1573663, + "thread": 31 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1735082, + "thread": 28 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 1934663, + "thread": 29 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2137558, + "thread": 12 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2189523, + "thread": 23 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2388785, + "thread": 4 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2553119, + "thread": 10 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2720684, + "thread": 26 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 2891553, + "thread": 14 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 3116086, + "thread": 4 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 3241057, + "thread": 5 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 3429745, + "thread": 30 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 3560143, + "thread": 1 + } + }, + { + "amount": "88.938768059", + "slot": { + "period": 3632027, + "thread": 17 + } + }, + { + "amount": "88.938768055", + "slot": { + "period": 3832106, + "thread": 26 + } + } + ], + "AU1DdFxTGFwn1fKmqWS2AuRAkwjJUyRsRqufyNGEz5v9xuHugobu": [ + { + "amount": "57.254086982", + "slot": { + "period": 145101, + "thread": 18 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 269135, + "thread": 21 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 487635, + "thread": 24 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 596909, + "thread": 1 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 779309, + "thread": 18 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 900300, + "thread": 12 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1018060, + "thread": 23 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1254575, + "thread": 5 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1318178, + "thread": 24 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1641032, + "thread": 29 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1798545, + "thread": 12 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 1924354, + "thread": 31 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2139624, + "thread": 7 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2162781, + "thread": 3 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2346265, + "thread": 13 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2599520, + "thread": 6 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2745425, + "thread": 11 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 2933804, + "thread": 2 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 3032188, + "thread": 16 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 3146276, + "thread": 25 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 3430400, + "thread": 15 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 3575715, + "thread": 30 + } + }, + { + "amount": "57.254086982", + "slot": { + "period": 3741184, + "thread": 29 + } + }, + { + "amount": "57.254086978", + "slot": { + "period": 3817704, + "thread": 5 + } + } + ], + "AU1Df2Cki4ARSf8hYMpjeSq1km9EnRkmpLodY6TQXbBQz6kxLb6p": [ + { + "amount": "131.020635217", + "slot": { + "period": 78172, + "thread": 29 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 258704, + "thread": 29 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 490974, + "thread": 5 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 500145, + "thread": 20 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 740841, + "thread": 24 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 958843, + "thread": 19 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1045164, + "thread": 7 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1293520, + "thread": 16 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1402171, + "thread": 18 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1485172, + "thread": 2 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1760002, + "thread": 13 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 1944741, + "thread": 17 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2028964, + "thread": 14 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2213840, + "thread": 14 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2438209, + "thread": 3 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2594048, + "thread": 21 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2754808, + "thread": 2 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 2825957, + "thread": 4 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 3100135, + "thread": 16 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 3184018, + "thread": 7 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 3362649, + "thread": 13 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 3467588, + "thread": 11 + } + }, + { + "amount": "131.020635217", + "slot": { + "period": 3671301, + "thread": 21 + } + }, + { + "amount": "131.020635210", + "slot": { + "period": 3909896, + "thread": 24 + } + } + ], + "AU1DfGSxMdyBbgGfNGJnWCDi79RJjHfcVtqeLsW6VWJKRZtKLe5k": [ + { + "amount": "83.155362048", + "slot": { + "period": 104531, + "thread": 30 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 169232, + "thread": 12 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 417982, + "thread": 21 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 607217, + "thread": 12 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 817541, + "thread": 20 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 968740, + "thread": 21 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1103970, + "thread": 30 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1178806, + "thread": 16 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1397383, + "thread": 11 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1636448, + "thread": 13 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1777507, + "thread": 9 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 1838789, + "thread": 30 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2021074, + "thread": 15 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2174965, + "thread": 9 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2457619, + "thread": 14 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2586182, + "thread": 0 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2627832, + "thread": 29 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 2860997, + "thread": 7 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 3087252, + "thread": 28 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 3196465, + "thread": 20 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 3411487, + "thread": 1 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 3456033, + "thread": 1 + } + }, + { + "amount": "83.155362048", + "slot": { + "period": 3678856, + "thread": 25 + } + }, + { + "amount": "83.155362052", + "slot": { + "period": 3818612, + "thread": 5 + } + } + ], + "AU1DfuqY7wYjpUUPZcZZi9b8NQvF7mQocyZ5HS3ptrZLXa6K2B5B": [ + { + "amount": "102.063849348", + "slot": { + "period": 135964, + "thread": 10 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 178986, + "thread": 18 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 368524, + "thread": 10 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 568900, + "thread": 5 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 679690, + "thread": 2 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 952768, + "thread": 30 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1002064, + "thread": 23 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1184898, + "thread": 6 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1364909, + "thread": 27 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1496781, + "thread": 26 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1781775, + "thread": 24 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1822685, + "thread": 25 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 1993158, + "thread": 21 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 2161432, + "thread": 6 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 2407656, + "thread": 18 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 2605178, + "thread": 31 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 2671947, + "thread": 16 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 2806884, + "thread": 8 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 3065430, + "thread": 16 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 3201990, + "thread": 12 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 3440727, + "thread": 13 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 3615556, + "thread": 13 + } + }, + { + "amount": "102.063849348", + "slot": { + "period": 3726519, + "thread": 24 + } + }, + { + "amount": "102.063849353", + "slot": { + "period": 3931317, + "thread": 0 + } + } + ], + "AU1Dg1oHApJLuFHd4ikRreVUgiNrqppKWZmYybnfgpYSa2mip4Ea": [ + { + "amount": "225.242887738", + "slot": { + "period": 61470, + "thread": 31 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 285830, + "thread": 21 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 399630, + "thread": 28 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 640414, + "thread": 16 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 713329, + "thread": 2 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 836049, + "thread": 20 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1031663, + "thread": 18 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1302953, + "thread": 11 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1352371, + "thread": 21 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1633697, + "thread": 19 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1692007, + "thread": 13 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 1904913, + "thread": 11 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2025706, + "thread": 27 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2260823, + "thread": 8 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2385699, + "thread": 29 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2576154, + "thread": 5 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2697821, + "thread": 4 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2886409, + "thread": 16 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 2977084, + "thread": 12 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 3285020, + "thread": 6 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 3307298, + "thread": 30 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 3539417, + "thread": 5 + } + }, + { + "amount": "225.242887738", + "slot": { + "period": 3721268, + "thread": 1 + } + }, + { + "amount": "225.242887737", + "slot": { + "period": 3795754, + "thread": 29 + } + } + ], + "AU1DhDtNKHzoYNLEa44bEXFbSBMTH9vmCgdt4q2HkbWEANeURZwy": [ + { + "amount": "307.633958719", + "slot": { + "period": 113523, + "thread": 13 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 317152, + "thread": 3 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 483121, + "thread": 4 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 544252, + "thread": 16 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 786034, + "thread": 3 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 828765, + "thread": 19 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1062998, + "thread": 7 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1308431, + "thread": 16 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1424362, + "thread": 29 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1495958, + "thread": 20 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1660227, + "thread": 21 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 1833325, + "thread": 19 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2076318, + "thread": 22 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2159589, + "thread": 9 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2392987, + "thread": 27 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2470545, + "thread": 17 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2647373, + "thread": 26 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 2841740, + "thread": 12 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 3052610, + "thread": 13 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 3184250, + "thread": 24 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 3322257, + "thread": 29 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 3562880, + "thread": 25 + } + }, + { + "amount": "307.633958719", + "slot": { + "period": 3774101, + "thread": 0 + } + }, + { + "amount": "307.633958711", + "slot": { + "period": 3936724, + "thread": 12 + } + } + ], + "AU1DhrUYWEaTHTWagQLqP8fqrA5kyKt72MHC2Bjbp5mNt3hJjFWw": [ + { + "amount": "266.734368310", + "slot": { + "period": 42440, + "thread": 29 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 224072, + "thread": 9 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 441190, + "thread": 9 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 599289, + "thread": 15 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 738318, + "thread": 31 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 910535, + "thread": 8 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1126390, + "thread": 12 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1165519, + "thread": 27 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1350293, + "thread": 19 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1519386, + "thread": 1 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1797512, + "thread": 22 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1824326, + "thread": 14 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 1999262, + "thread": 4 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2211626, + "thread": 15 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2413738, + "thread": 28 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2572176, + "thread": 18 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2759891, + "thread": 2 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2827853, + "thread": 13 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 2983047, + "thread": 16 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 3153280, + "thread": 1 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 3297107, + "thread": 15 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 3562040, + "thread": 22 + } + }, + { + "amount": "266.734368310", + "slot": { + "period": 3683401, + "thread": 19 + } + }, + { + "amount": "266.734368299", + "slot": { + "period": 3885996, + "thread": 14 + } + } + ], + "AU1DiVwmEwXu3PtJFSZGxkJKiu6tHFyxU1Vo3V4SUzFgDtqPxvgB": [ + { + "amount": "148.741816241", + "slot": { + "period": 101293, + "thread": 19 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 247432, + "thread": 17 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 429135, + "thread": 1 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 546752, + "thread": 21 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 776652, + "thread": 24 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 922349, + "thread": 30 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1091817, + "thread": 19 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1202192, + "thread": 22 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1415271, + "thread": 21 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1563670, + "thread": 10 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1715192, + "thread": 24 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 1897141, + "thread": 11 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2085536, + "thread": 20 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2274392, + "thread": 25 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2308626, + "thread": 4 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2464974, + "thread": 14 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2636896, + "thread": 2 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 2894548, + "thread": 3 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 3057374, + "thread": 18 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 3275009, + "thread": 27 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 3304102, + "thread": 13 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 3456390, + "thread": 12 + } + }, + { + "amount": "148.741816241", + "slot": { + "period": 3657346, + "thread": 15 + } + }, + { + "amount": "148.741816246", + "slot": { + "period": 3820885, + "thread": 6 + } + } + ], + "AU1DitWyPBx5Sv1enCpC79BfSFTD64fcr6uHRdhSaiQPEKZAXNzL": [ + { + "amount": "233.082102564", + "slot": { + "period": 26627, + "thread": 2 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 258838, + "thread": 6 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 411022, + "thread": 29 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 528666, + "thread": 18 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 747178, + "thread": 28 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 919290, + "thread": 0 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1131524, + "thread": 31 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1169815, + "thread": 10 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1338710, + "thread": 26 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1584328, + "thread": 4 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1699796, + "thread": 29 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 1920581, + "thread": 4 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2125773, + "thread": 6 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2174208, + "thread": 14 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2444415, + "thread": 0 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2481248, + "thread": 27 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2645975, + "thread": 31 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 2826701, + "thread": 8 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 3021404, + "thread": 0 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 3183415, + "thread": 1 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 3449588, + "thread": 21 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 3519340, + "thread": 20 + } + }, + { + "amount": "233.082102564", + "slot": { + "period": 3660838, + "thread": 14 + } + }, + { + "amount": "233.082102567", + "slot": { + "period": 3846905, + "thread": 20 + } + } + ], + "AU1DjRH7otQSYMutBqtjtbxfZEKhFqUStKsTGtk8tBRr9KCaDPod": [ + { + "amount": "639.494820233", + "slot": { + "period": 81866, + "thread": 23 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 290738, + "thread": 19 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 490942, + "thread": 30 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 638625, + "thread": 5 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 675618, + "thread": 16 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 926664, + "thread": 24 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1110172, + "thread": 12 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1274047, + "thread": 20 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1402697, + "thread": 9 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1545147, + "thread": 6 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1759754, + "thread": 21 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 1837168, + "thread": 5 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2072996, + "thread": 20 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2143819, + "thread": 14 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2298900, + "thread": 11 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2541660, + "thread": 17 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2667588, + "thread": 9 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 2930053, + "thread": 8 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 3013495, + "thread": 20 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 3182341, + "thread": 1 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 3449908, + "thread": 25 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 3478620, + "thread": 16 + } + }, + { + "amount": "639.494820233", + "slot": { + "period": 3714887, + "thread": 27 + } + }, + { + "amount": "639.494820234", + "slot": { + "period": 3849748, + "thread": 31 + } + } + ], + "AU1Dkr3qtjqi4Hdq6oWhJ8J6mXGFxJPfcQNQTxgeP2413YAQQL2b": [ + { + "amount": "572.661385287", + "slot": { + "period": 84922, + "thread": 1 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 250121, + "thread": 12 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 393040, + "thread": 4 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 605732, + "thread": 30 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 743129, + "thread": 5 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 857463, + "thread": 7 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1036790, + "thread": 3 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1191324, + "thread": 17 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1323086, + "thread": 3 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1548800, + "thread": 19 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1729339, + "thread": 18 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 1878908, + "thread": 16 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2019609, + "thread": 0 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2223925, + "thread": 13 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2389525, + "thread": 17 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2504122, + "thread": 4 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2713981, + "thread": 20 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2824670, + "thread": 19 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 2977408, + "thread": 0 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 3143596, + "thread": 14 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 3332465, + "thread": 4 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 3610522, + "thread": 12 + } + }, + { + "amount": "572.661385287", + "slot": { + "period": 3653576, + "thread": 22 + } + }, + { + "amount": "572.661385295", + "slot": { + "period": 3918318, + "thread": 15 + } + } + ], + "AU1DmnEqs2sEvbNsQ443s6gtg8AAxy5ybYQzwMmNWfs41Y5pT2r1": [ + { + "amount": "328.076495652", + "slot": { + "period": 129344, + "thread": 12 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 302537, + "thread": 15 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 338523, + "thread": 18 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 513998, + "thread": 18 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 679971, + "thread": 31 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 944149, + "thread": 26 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1056476, + "thread": 21 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1230050, + "thread": 7 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1440373, + "thread": 19 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1645397, + "thread": 20 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1653126, + "thread": 0 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 1940986, + "thread": 16 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2053455, + "thread": 22 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2252626, + "thread": 4 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2384268, + "thread": 21 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2516118, + "thread": 6 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2682447, + "thread": 0 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 2894453, + "thread": 6 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 3038449, + "thread": 25 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 3241731, + "thread": 5 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 3423450, + "thread": 2 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 3471195, + "thread": 11 + } + }, + { + "amount": "328.076495652", + "slot": { + "period": 3701524, + "thread": 11 + } + }, + { + "amount": "328.076495647", + "slot": { + "period": 3868082, + "thread": 19 + } + } + ], + "AU1Dmokd3wiFssvp8hXDrgSdjxoyCAR8aAgYtSTrtwXSWAAQttn3": [ + { + "amount": "250.664958232", + "slot": { + "period": 131910, + "thread": 17 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 295336, + "thread": 13 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 441949, + "thread": 26 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 589851, + "thread": 19 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 679826, + "thread": 12 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 969227, + "thread": 1 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1018510, + "thread": 30 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1243725, + "thread": 5 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1453632, + "thread": 29 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1610046, + "thread": 30 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1679155, + "thread": 11 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 1823105, + "thread": 19 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2134384, + "thread": 22 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2292881, + "thread": 8 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2454225, + "thread": 12 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2584786, + "thread": 10 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2686417, + "thread": 25 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 2862718, + "thread": 10 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 3074329, + "thread": 0 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 3281691, + "thread": 21 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 3327220, + "thread": 1 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 3467867, + "thread": 7 + } + }, + { + "amount": "250.664958232", + "slot": { + "period": 3656231, + "thread": 22 + } + }, + { + "amount": "250.664958243", + "slot": { + "period": 3907253, + "thread": 18 + } + } + ], + "AU1DmqjwhXbSGEvJ7RYc5zAzrX5z8WLqJmKFBxgsrKLTAmdbc3z2": [ + { + "amount": "338.582631393", + "slot": { + "period": 111925, + "thread": 25 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 282532, + "thread": 31 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 367091, + "thread": 27 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 602044, + "thread": 7 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 782350, + "thread": 14 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 969615, + "thread": 14 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1109354, + "thread": 25 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1250214, + "thread": 6 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1332630, + "thread": 13 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1514481, + "thread": 30 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1802057, + "thread": 26 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 1889020, + "thread": 5 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2120366, + "thread": 30 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2182604, + "thread": 18 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2416933, + "thread": 22 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2532014, + "thread": 17 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2753599, + "thread": 27 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 2842880, + "thread": 6 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 3116765, + "thread": 29 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 3152875, + "thread": 6 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 3435522, + "thread": 19 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 3598986, + "thread": 7 + } + }, + { + "amount": "338.582631393", + "slot": { + "period": 3724987, + "thread": 24 + } + }, + { + "amount": "338.582631392", + "slot": { + "period": 3929164, + "thread": 3 + } + } + ], + "AU1Dn63GsGnNyfpKCVXoAJrSBBAaMt85ZGRFL1CBzoogGHEWHWss": [ + { + "amount": "103.368880399", + "slot": { + "period": 73266, + "thread": 11 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 318196, + "thread": 11 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 447234, + "thread": 22 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 605630, + "thread": 2 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 693978, + "thread": 16 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 920565, + "thread": 24 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1024423, + "thread": 6 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1196979, + "thread": 2 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1337785, + "thread": 16 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1604369, + "thread": 10 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1724405, + "thread": 14 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 1937763, + "thread": 29 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2045711, + "thread": 17 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2274828, + "thread": 10 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2414321, + "thread": 13 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2540332, + "thread": 7 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2770264, + "thread": 22 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 2813034, + "thread": 6 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 3022754, + "thread": 10 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 3232910, + "thread": 12 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 3310403, + "thread": 30 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 3485911, + "thread": 10 + } + }, + { + "amount": "103.368880399", + "slot": { + "period": 3661031, + "thread": 12 + } + }, + { + "amount": "103.368880396", + "slot": { + "period": 3799645, + "thread": 11 + } + } + ], + "AU1Dn6bG5Ag7A5kQBfehmF59GYxRfCTrqTacpzNQfyzib1Yj5DVH": [ + { + "amount": "246.412892086", + "slot": { + "period": 74501, + "thread": 8 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 318145, + "thread": 26 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 410997, + "thread": 31 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 532009, + "thread": 26 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 662439, + "thread": 7 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 964509, + "thread": 19 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1027251, + "thread": 14 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1162405, + "thread": 15 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1479243, + "thread": 19 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1551981, + "thread": 14 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1687869, + "thread": 6 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 1918023, + "thread": 20 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2048850, + "thread": 10 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2160423, + "thread": 15 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2328905, + "thread": 16 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2555333, + "thread": 31 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2702871, + "thread": 29 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 2872523, + "thread": 27 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 3118448, + "thread": 21 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 3282923, + "thread": 15 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 3386976, + "thread": 29 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 3561925, + "thread": 20 + } + }, + { + "amount": "246.412892086", + "slot": { + "period": 3721337, + "thread": 13 + } + }, + { + "amount": "246.412892085", + "slot": { + "period": 3838869, + "thread": 13 + } + } + ], + "AU1DnMMN1cyPXYN69Wcyk5YMEyarH9X3GMFYpUb5MHRhZZ6zQMBs": [ + { + "amount": "145.185123471", + "slot": { + "period": 59982, + "thread": 26 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 188754, + "thread": 28 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 470840, + "thread": 11 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 563946, + "thread": 23 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 660129, + "thread": 0 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 910936, + "thread": 18 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1019699, + "thread": 7 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1298699, + "thread": 30 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1365058, + "thread": 6 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1646135, + "thread": 16 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1788259, + "thread": 6 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 1813265, + "thread": 1 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2108044, + "thread": 1 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2209758, + "thread": 2 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2459234, + "thread": 31 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2503761, + "thread": 13 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2708947, + "thread": 19 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 2804501, + "thread": 22 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 3090402, + "thread": 7 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 3215610, + "thread": 2 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 3395977, + "thread": 20 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 3475003, + "thread": 26 + } + }, + { + "amount": "145.185123471", + "slot": { + "period": 3648208, + "thread": 7 + } + }, + { + "amount": "145.185123466", + "slot": { + "period": 3902153, + "thread": 20 + } + } + ], + "AU1DnQdChqTVJm8WfLi46Z3iwoKyx32CKVd79XyZF5ykFTze1jNS": [ + { + "amount": "123.588632240", + "slot": { + "period": 156560, + "thread": 6 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 262701, + "thread": 19 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 417131, + "thread": 3 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 570956, + "thread": 31 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 693885, + "thread": 0 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 884216, + "thread": 29 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1019086, + "thread": 21 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1261864, + "thread": 9 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1347898, + "thread": 25 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1636391, + "thread": 31 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1748762, + "thread": 31 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 1922124, + "thread": 17 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2133811, + "thread": 31 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2191104, + "thread": 24 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2361201, + "thread": 30 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2565866, + "thread": 18 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2659471, + "thread": 26 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 2801795, + "thread": 24 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 3001009, + "thread": 20 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 3207194, + "thread": 3 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 3383891, + "thread": 26 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 3549932, + "thread": 23 + } + }, + { + "amount": "123.588632240", + "slot": { + "period": 3683890, + "thread": 25 + } + }, + { + "amount": "123.588632249", + "slot": { + "period": 3829088, + "thread": 28 + } + } + ], + "AU1DndF6buFHM8d3o6KaWG9GUkc7opFrTMNjbEe8wS1vHVVSg49A": [ + { + "amount": "207.974897637", + "slot": { + "period": 109696, + "thread": 3 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 177829, + "thread": 29 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 346884, + "thread": 21 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 624197, + "thread": 20 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 744395, + "thread": 11 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 880607, + "thread": 30 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1120948, + "thread": 26 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1313985, + "thread": 30 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1379695, + "thread": 16 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1626447, + "thread": 20 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1751113, + "thread": 9 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 1823304, + "thread": 28 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2002498, + "thread": 18 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2222771, + "thread": 30 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2362883, + "thread": 29 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2525267, + "thread": 28 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2756361, + "thread": 6 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 2934266, + "thread": 20 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 3032971, + "thread": 7 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 3199877, + "thread": 14 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 3373596, + "thread": 5 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 3559299, + "thread": 28 + } + }, + { + "amount": "207.974897637", + "slot": { + "period": 3622179, + "thread": 8 + } + }, + { + "amount": "207.974897629", + "slot": { + "period": 3928028, + "thread": 19 + } + } + ], + "AU1Dnp4BPCvG62rCDB5ycXgBpyfM61fwjPG9BJq9tYLdugnxg5wo": [ + { + "amount": "156.917549175", + "slot": { + "period": 155023, + "thread": 6 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 292051, + "thread": 2 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 379305, + "thread": 28 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 650759, + "thread": 17 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 799864, + "thread": 7 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 936500, + "thread": 12 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1103384, + "thread": 12 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1259647, + "thread": 28 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1324961, + "thread": 23 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1484228, + "thread": 21 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1678481, + "thread": 21 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 1876241, + "thread": 18 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2036969, + "thread": 25 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2281674, + "thread": 9 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2351914, + "thread": 21 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2479895, + "thread": 14 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2677175, + "thread": 23 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2837588, + "thread": 8 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 2969819, + "thread": 13 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 3272866, + "thread": 4 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 3289379, + "thread": 30 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 3604422, + "thread": 27 + } + }, + { + "amount": "156.917549175", + "slot": { + "period": 3683718, + "thread": 31 + } + }, + { + "amount": "156.917549177", + "slot": { + "period": 3784004, + "thread": 20 + } + } + ], + "AU1DpAALeNDikBruXfVN58PxTcUMhYp3S1efwBVLHSiaDEQfNWZp": [ + { + "amount": "399.587395996", + "slot": { + "period": 45527, + "thread": 13 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 232221, + "thread": 21 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 400555, + "thread": 29 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 650555, + "thread": 4 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 662066, + "thread": 31 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 908650, + "thread": 28 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1102869, + "thread": 1 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1190540, + "thread": 0 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1325862, + "thread": 7 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1556095, + "thread": 8 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1788616, + "thread": 14 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1840211, + "thread": 27 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 1983453, + "thread": 13 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 2181663, + "thread": 31 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 2432916, + "thread": 5 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 2512375, + "thread": 10 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 2738072, + "thread": 0 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 2794707, + "thread": 13 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3054260, + "thread": 1 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3184950, + "thread": 15 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3423801, + "thread": 13 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3513024, + "thread": 4 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3660862, + "thread": 1 + } + }, + { + "amount": "399.587395996", + "slot": { + "period": 3864249, + "thread": 12 + } + } + ], + "AU1Dpc9hdt4EkbMTq2FSKwfYURNqNY8wus4BZQ4eyShPEePLZKPD": [ + { + "amount": "1413.222573347", + "slot": { + "period": 126337, + "thread": 30 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 281388, + "thread": 20 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 449021, + "thread": 2 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 522345, + "thread": 27 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 758073, + "thread": 13 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 891240, + "thread": 29 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1129190, + "thread": 22 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1316942, + "thread": 19 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1430691, + "thread": 26 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1545733, + "thread": 31 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1714850, + "thread": 22 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 1849456, + "thread": 7 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2044433, + "thread": 30 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2193927, + "thread": 3 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2360972, + "thread": 8 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2537778, + "thread": 14 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2631001, + "thread": 16 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 2905032, + "thread": 6 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 3056220, + "thread": 14 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 3246111, + "thread": 26 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 3340330, + "thread": 4 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 3569607, + "thread": 18 + } + }, + { + "amount": "1413.222573347", + "slot": { + "period": 3724437, + "thread": 21 + } + }, + { + "amount": "1413.222573331", + "slot": { + "period": 3872945, + "thread": 30 + } + } + ], + "AU1Dpt2scdjEnti2HsMyKLyKWXWHECUuZYYd26VMyiZtnkk45Hfd": [ + { + "amount": "237.742457897", + "slot": { + "period": 51232, + "thread": 4 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 199469, + "thread": 4 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 480360, + "thread": 3 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 639225, + "thread": 20 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 774306, + "thread": 0 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 904297, + "thread": 16 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1111133, + "thread": 19 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1274670, + "thread": 16 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1382554, + "thread": 21 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1629982, + "thread": 10 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1667529, + "thread": 17 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 1970452, + "thread": 3 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2114103, + "thread": 12 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2242158, + "thread": 22 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2407980, + "thread": 11 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2576913, + "thread": 21 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2787898, + "thread": 25 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2872305, + "thread": 12 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 2959666, + "thread": 20 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 3263047, + "thread": 30 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 3334053, + "thread": 7 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 3595228, + "thread": 13 + } + }, + { + "amount": "237.742457897", + "slot": { + "period": 3709089, + "thread": 28 + } + }, + { + "amount": "237.742457905", + "slot": { + "period": 3924234, + "thread": 27 + } + } + ], + "AU1DpxsmBJpBwhnhwjYh1RngviyfFNkyDz56bzizNDaobydJDGaM": [ + { + "amount": "226.889971929", + "slot": { + "period": 76104, + "thread": 9 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 177175, + "thread": 30 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 435896, + "thread": 21 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 521401, + "thread": 21 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 770451, + "thread": 13 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 970030, + "thread": 16 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1019724, + "thread": 29 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1185301, + "thread": 19 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1335081, + "thread": 17 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1627032, + "thread": 19 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1761083, + "thread": 29 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 1894979, + "thread": 27 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2111115, + "thread": 18 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2168217, + "thread": 13 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2416958, + "thread": 26 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2474980, + "thread": 8 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2670306, + "thread": 6 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2940414, + "thread": 16 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 2973988, + "thread": 13 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 3201001, + "thread": 17 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 3296632, + "thread": 12 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 3470917, + "thread": 20 + } + }, + { + "amount": "226.889971929", + "slot": { + "period": 3646996, + "thread": 29 + } + }, + { + "amount": "226.889971931", + "slot": { + "period": 3869601, + "thread": 3 + } + } + ], + "AU1Dq38ZPhBwFHjW29Hpkp7whVXb25RwVhYbFJvPyeht8r2A6pLj": [ + { + "amount": "259.239658246", + "slot": { + "period": 45307, + "thread": 9 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 246561, + "thread": 25 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 386006, + "thread": 29 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 621026, + "thread": 30 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 775854, + "thread": 26 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 832157, + "thread": 23 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1036434, + "thread": 9 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1240056, + "thread": 9 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1423085, + "thread": 18 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1514675, + "thread": 8 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1775499, + "thread": 23 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 1852779, + "thread": 21 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2090253, + "thread": 2 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2187902, + "thread": 6 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2305468, + "thread": 13 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2494899, + "thread": 26 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2749411, + "thread": 2 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 2846714, + "thread": 6 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 3034547, + "thread": 2 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 3184535, + "thread": 29 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 3443755, + "thread": 18 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 3547338, + "thread": 26 + } + }, + { + "amount": "259.239658246", + "slot": { + "period": 3674970, + "thread": 31 + } + }, + { + "amount": "259.239658251", + "slot": { + "period": 3853343, + "thread": 23 + } + } + ], + "AU1DqWygd8G2eQdJpu7GS1SkGuUamDUPyYJU5r3TLsUNvHuNkusd": [ + { + "amount": "134.525611339", + "slot": { + "period": 103977, + "thread": 28 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 204963, + "thread": 16 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 361179, + "thread": 2 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 494929, + "thread": 24 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 715575, + "thread": 20 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 850391, + "thread": 13 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1089291, + "thread": 5 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1198831, + "thread": 13 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1472437, + "thread": 19 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1539803, + "thread": 20 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1766784, + "thread": 17 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 1844399, + "thread": 10 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2105606, + "thread": 27 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2199903, + "thread": 4 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2303911, + "thread": 7 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2595680, + "thread": 24 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2726882, + "thread": 3 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 2867586, + "thread": 14 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 3068785, + "thread": 30 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 3194609, + "thread": 10 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 3377918, + "thread": 12 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 3538539, + "thread": 26 + } + }, + { + "amount": "134.525611339", + "slot": { + "period": 3621886, + "thread": 20 + } + }, + { + "amount": "134.525611347", + "slot": { + "period": 3863127, + "thread": 23 + } + } + ], + "AU1DtHBuRMXc3r6aCsLFpfbmj895yvndgyt7a1aeCmSz5wMoRnoz": [ + { + "amount": "267.150310718", + "slot": { + "period": 90755, + "thread": 23 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 255199, + "thread": 9 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 370163, + "thread": 4 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 613365, + "thread": 10 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 699131, + "thread": 29 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 893422, + "thread": 18 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 996327, + "thread": 9 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 1281143, + "thread": 20 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 1333244, + "thread": 13 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 1640529, + "thread": 26 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 1786852, + "thread": 22 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 1894146, + "thread": 29 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2057684, + "thread": 17 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2271910, + "thread": 12 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2321076, + "thread": 12 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2540514, + "thread": 3 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2766879, + "thread": 31 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 2875139, + "thread": 8 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 3105603, + "thread": 20 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 3150128, + "thread": 17 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 3327451, + "thread": 26 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 3572206, + "thread": 6 + } + }, + { + "amount": "267.150310718", + "slot": { + "period": 3657731, + "thread": 13 + } + }, + { + "amount": "267.150310710", + "slot": { + "period": 3906276, + "thread": 9 + } + } + ], + "AU1DuDJ44BXkjPmrUwzugwDJmeGy6zrRjHn1gXMoVg8ovq6iky2p": [ + { + "amount": "469.379751669", + "slot": { + "period": 86272, + "thread": 11 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 316755, + "thread": 9 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 360560, + "thread": 12 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 578673, + "thread": 18 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 801871, + "thread": 5 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 953967, + "thread": 16 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1104892, + "thread": 10 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1241815, + "thread": 27 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1421702, + "thread": 23 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1501478, + "thread": 28 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1758142, + "thread": 17 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 1856318, + "thread": 26 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2016854, + "thread": 13 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2182350, + "thread": 16 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2412013, + "thread": 2 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2585434, + "thread": 18 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2711662, + "thread": 18 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 2947278, + "thread": 22 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 3109263, + "thread": 24 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 3272221, + "thread": 28 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 3443240, + "thread": 0 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 3497490, + "thread": 10 + } + }, + { + "amount": "469.379751669", + "slot": { + "period": 3635711, + "thread": 7 + } + }, + { + "amount": "469.379751665", + "slot": { + "period": 3878321, + "thread": 1 + } + } + ], + "AU1Duk8Yyce92h64CMbikRNuqA3pEj61ZqEJRLmaTXbVs2Dp5ufH": [ + { + "amount": "114.594017636", + "slot": { + "period": 43047, + "thread": 14 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 257979, + "thread": 11 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 410998, + "thread": 12 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 612916, + "thread": 21 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 671342, + "thread": 11 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 883583, + "thread": 2 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1115082, + "thread": 1 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1179957, + "thread": 11 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1466160, + "thread": 31 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1501680, + "thread": 6 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1678374, + "thread": 13 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 1967380, + "thread": 4 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2063947, + "thread": 18 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2178694, + "thread": 22 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2370539, + "thread": 9 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2598503, + "thread": 18 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2725942, + "thread": 13 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 2832938, + "thread": 29 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 3081179, + "thread": 28 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 3177150, + "thread": 12 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 3430844, + "thread": 27 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 3543684, + "thread": 24 + } + }, + { + "amount": "114.594017636", + "slot": { + "period": 3669470, + "thread": 14 + } + }, + { + "amount": "114.594017627", + "slot": { + "period": 3781667, + "thread": 26 + } + } + ], + "AU1DuqiwEjiTD77WwMCDRQvu7fpnd6CJa3AsjPxZ6WkKqssbKEun": [ + { + "amount": "267.157490620", + "slot": { + "period": 111046, + "thread": 9 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 249037, + "thread": 6 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 351651, + "thread": 8 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 633052, + "thread": 9 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 680201, + "thread": 0 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 830206, + "thread": 29 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1025499, + "thread": 14 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1229159, + "thread": 19 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1378490, + "thread": 7 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1622663, + "thread": 28 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1658294, + "thread": 1 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 1814579, + "thread": 30 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2059074, + "thread": 2 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2162362, + "thread": 3 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2393477, + "thread": 21 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2516985, + "thread": 22 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2786615, + "thread": 21 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2832536, + "thread": 28 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 2984968, + "thread": 7 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 3186113, + "thread": 27 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 3405902, + "thread": 6 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 3513963, + "thread": 24 + } + }, + { + "amount": "267.157490620", + "slot": { + "period": 3732835, + "thread": 12 + } + }, + { + "amount": "267.157490622", + "slot": { + "period": 3820613, + "thread": 4 + } + } + ], + "AU1Dvf4bVMWTNzHkbUYBoxtBJvY2kcknEhb6xEUqADjhgQEGVYaW": [ + { + "amount": "71.876729043", + "slot": { + "period": 46733, + "thread": 10 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 290090, + "thread": 8 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 471955, + "thread": 19 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 648313, + "thread": 9 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 776341, + "thread": 13 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 917542, + "thread": 23 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1065416, + "thread": 4 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1286580, + "thread": 7 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1453107, + "thread": 12 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1536321, + "thread": 17 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1730998, + "thread": 19 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 1830055, + "thread": 24 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2019084, + "thread": 17 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2147620, + "thread": 12 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2448613, + "thread": 29 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2486485, + "thread": 4 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2724125, + "thread": 29 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 2802474, + "thread": 28 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 3003991, + "thread": 22 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 3181008, + "thread": 27 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 3360315, + "thread": 18 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 3525125, + "thread": 31 + } + }, + { + "amount": "71.876729043", + "slot": { + "period": 3717013, + "thread": 29 + } + }, + { + "amount": "71.876729039", + "slot": { + "period": 3882582, + "thread": 6 + } + } + ], + "AU1Dw452H4wjRbxmD9pRyZkiHMDH4rBj5PDKiTJL7J1UjHgvngPs": [ + { + "amount": "127.353374629", + "slot": { + "period": 88353, + "thread": 11 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 252515, + "thread": 8 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 367783, + "thread": 23 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 641672, + "thread": 17 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 735665, + "thread": 7 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 925483, + "thread": 24 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1058851, + "thread": 29 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1246086, + "thread": 18 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1325676, + "thread": 16 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1556335, + "thread": 2 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1677492, + "thread": 25 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 1941428, + "thread": 27 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2124345, + "thread": 5 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2214961, + "thread": 20 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2388411, + "thread": 19 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2468993, + "thread": 0 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2741741, + "thread": 8 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 2922070, + "thread": 12 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 3070949, + "thread": 27 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 3251404, + "thread": 2 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 3332409, + "thread": 4 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 3506325, + "thread": 28 + } + }, + { + "amount": "127.353374629", + "slot": { + "period": 3773179, + "thread": 1 + } + }, + { + "amount": "127.353374636", + "slot": { + "period": 3782320, + "thread": 28 + } + } + ], + "AU1Dx6ehUkrniPNMgSGRd7hzJKfS8Bz46LBxaBGk4Adc5PKgepNi": [ + { + "amount": "423.432402349", + "slot": { + "period": 152317, + "thread": 5 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 323370, + "thread": 7 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 418008, + "thread": 5 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 577655, + "thread": 28 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 748201, + "thread": 2 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 919455, + "thread": 19 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1137068, + "thread": 3 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1166598, + "thread": 2 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1440006, + "thread": 9 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1496151, + "thread": 5 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1783165, + "thread": 9 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 1898697, + "thread": 29 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2085669, + "thread": 4 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2264589, + "thread": 1 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2453782, + "thread": 28 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2623590, + "thread": 19 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2711289, + "thread": 2 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2796679, + "thread": 30 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 2970609, + "thread": 9 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 3194132, + "thread": 16 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 3441214, + "thread": 25 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 3479154, + "thread": 27 + } + }, + { + "amount": "423.432402349", + "slot": { + "period": 3722585, + "thread": 23 + } + }, + { + "amount": "423.432402354", + "slot": { + "period": 3836182, + "thread": 28 + } + } + ], + "AU1Dx81y12jjfA784NN8aXAe51JPDLqYJsXc6fP7L2wvu6NdfTkA": [ + { + "amount": "107.538597004", + "slot": { + "period": 26812, + "thread": 18 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 306988, + "thread": 22 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 343291, + "thread": 28 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 588651, + "thread": 15 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 697323, + "thread": 10 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 870175, + "thread": 14 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1043402, + "thread": 6 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1196057, + "thread": 5 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1323091, + "thread": 0 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1516567, + "thread": 4 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1680471, + "thread": 16 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1971805, + "thread": 18 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 1976590, + "thread": 0 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 2167276, + "thread": 14 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 2311171, + "thread": 27 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 2498937, + "thread": 11 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 2749600, + "thread": 21 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 2948993, + "thread": 16 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 3093861, + "thread": 1 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 3148066, + "thread": 18 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 3298787, + "thread": 13 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 3488166, + "thread": 0 + } + }, + { + "amount": "107.538597004", + "slot": { + "period": 3699458, + "thread": 14 + } + }, + { + "amount": "107.538597016", + "slot": { + "period": 3809558, + "thread": 22 + } + } + ], + "AU1DxqKPzUX76ykCivd3eDH5hmW3Y36btGqv4kvjmK73FRTBVL3J": [ + { + "amount": "271.763630815", + "slot": { + "period": 140387, + "thread": 2 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 191509, + "thread": 20 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 382815, + "thread": 11 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 587195, + "thread": 11 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 779402, + "thread": 12 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 912953, + "thread": 4 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1053190, + "thread": 18 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1240700, + "thread": 20 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1400862, + "thread": 13 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1482414, + "thread": 0 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1667283, + "thread": 13 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1813507, + "thread": 0 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 1993632, + "thread": 4 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 2285212, + "thread": 18 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 2324546, + "thread": 11 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 2512057, + "thread": 18 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 2683834, + "thread": 4 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 2916771, + "thread": 0 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 3093906, + "thread": 4 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 3233836, + "thread": 31 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 3414019, + "thread": 17 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 3605551, + "thread": 4 + } + }, + { + "amount": "271.763630815", + "slot": { + "period": 3631648, + "thread": 22 + } + }, + { + "amount": "271.763630816", + "slot": { + "period": 3847257, + "thread": 16 + } + } + ], + "AU1DyFXLprXnyhekgicrVLLLA4VdqiqcxAEBcJWN8uBmokD651a6": [ + { + "amount": "343.057068205", + "slot": { + "period": 31360, + "thread": 4 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 279203, + "thread": 13 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 440204, + "thread": 30 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 641698, + "thread": 25 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 740292, + "thread": 23 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 940858, + "thread": 29 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1050667, + "thread": 11 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1256348, + "thread": 20 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1430227, + "thread": 28 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1482169, + "thread": 0 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1674068, + "thread": 6 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 1810657, + "thread": 27 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2016982, + "thread": 8 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2200733, + "thread": 22 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2362099, + "thread": 29 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2525440, + "thread": 29 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2697091, + "thread": 20 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 2927006, + "thread": 14 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 3017001, + "thread": 8 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 3285710, + "thread": 4 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 3328703, + "thread": 4 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 3519312, + "thread": 24 + } + }, + { + "amount": "343.057068205", + "slot": { + "period": 3625501, + "thread": 7 + } + }, + { + "amount": "343.057068201", + "slot": { + "period": 3814271, + "thread": 8 + } + } + ], + "AU1DyRWe8b4rJn6JQTz9LRki1hZL38ijdQat6C7Kbf9SeKPnn6hr": [ + { + "amount": "224.739333512", + "slot": { + "period": 129140, + "thread": 26 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 208165, + "thread": 10 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 342702, + "thread": 0 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 530622, + "thread": 31 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 777641, + "thread": 23 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 842061, + "thread": 4 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1067294, + "thread": 15 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1153067, + "thread": 19 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1468134, + "thread": 4 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1527598, + "thread": 26 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1791772, + "thread": 0 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 1871799, + "thread": 19 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2078051, + "thread": 30 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2157799, + "thread": 4 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2300950, + "thread": 0 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2540872, + "thread": 25 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2645529, + "thread": 27 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 2885232, + "thread": 23 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 3004382, + "thread": 30 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 3250579, + "thread": 16 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 3340546, + "thread": 6 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 3616446, + "thread": 0 + } + }, + { + "amount": "224.739333512", + "slot": { + "period": 3630383, + "thread": 20 + } + }, + { + "amount": "224.739333513", + "slot": { + "period": 3947268, + "thread": 22 + } + } + ], + "AU1DyiM1hDd3bSjhEmNoRERyfTK29eJXjYagwBVeJYUPenwXUiac": [ + { + "amount": "259.932822512", + "slot": { + "period": 111395, + "thread": 25 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 186388, + "thread": 26 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 455171, + "thread": 5 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 562177, + "thread": 17 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 712091, + "thread": 6 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 962420, + "thread": 16 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1026300, + "thread": 14 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1311298, + "thread": 10 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1355765, + "thread": 30 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1565336, + "thread": 5 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1687159, + "thread": 21 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 1832543, + "thread": 20 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2002941, + "thread": 12 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2203497, + "thread": 22 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2437722, + "thread": 26 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2468594, + "thread": 26 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2634825, + "thread": 10 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 2936945, + "thread": 27 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 3093848, + "thread": 29 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 3275185, + "thread": 9 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 3333614, + "thread": 24 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 3581099, + "thread": 26 + } + }, + { + "amount": "259.932822512", + "slot": { + "period": 3766062, + "thread": 14 + } + }, + { + "amount": "259.932822523", + "slot": { + "period": 3944423, + "thread": 18 + } + } + ], + "AU1Dypyx5diaejKTgBpx5LWqEw3RuWSLiSRnhH8QNx7V7wJzRqLd": [ + { + "amount": "71.237174394", + "slot": { + "period": 98768, + "thread": 28 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 288754, + "thread": 29 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 393028, + "thread": 15 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 562250, + "thread": 27 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 684712, + "thread": 25 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 933163, + "thread": 12 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1033952, + "thread": 23 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1216542, + "thread": 3 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1330559, + "thread": 10 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1595225, + "thread": 29 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1659262, + "thread": 30 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 1975726, + "thread": 4 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2137523, + "thread": 15 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2280874, + "thread": 22 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2366745, + "thread": 22 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2489560, + "thread": 28 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2731797, + "thread": 15 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2853831, + "thread": 29 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 2954750, + "thread": 1 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 3239622, + "thread": 18 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 3424179, + "thread": 2 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 3516728, + "thread": 27 + } + }, + { + "amount": "71.237174394", + "slot": { + "period": 3767387, + "thread": 29 + } + }, + { + "amount": "71.237174395", + "slot": { + "period": 3831728, + "thread": 12 + } + } + ], + "AU1E1DmejQVNSubCXtQjMWqvArKSAwUvuxuD9Tes8DirMQu5wHmv": [ + { + "amount": "165.306701556", + "slot": { + "period": 108026, + "thread": 9 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 236435, + "thread": 10 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 489964, + "thread": 4 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 577768, + "thread": 7 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 654139, + "thread": 30 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 908405, + "thread": 0 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1048086, + "thread": 2 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1231072, + "thread": 12 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1388741, + "thread": 22 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1497159, + "thread": 23 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1802948, + "thread": 29 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 1810303, + "thread": 0 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2098310, + "thread": 17 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2233800, + "thread": 14 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2312718, + "thread": 1 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2565843, + "thread": 5 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2736474, + "thread": 14 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 2825333, + "thread": 15 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 3034695, + "thread": 17 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 3154034, + "thread": 12 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 3385785, + "thread": 17 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 3551012, + "thread": 2 + } + }, + { + "amount": "165.306701556", + "slot": { + "period": 3689143, + "thread": 12 + } + }, + { + "amount": "165.306701549", + "slot": { + "period": 3835809, + "thread": 25 + } + } + ], + "AU1E24w3aU5dgitGyEpDj39MYzy1ahW1aeM9RN9xr3k9AfzGGKRG": [ + { + "amount": "141.156565051", + "slot": { + "period": 65780, + "thread": 26 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 265588, + "thread": 19 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 354729, + "thread": 31 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 524914, + "thread": 17 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 760463, + "thread": 1 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 952049, + "thread": 23 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1038699, + "thread": 1 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1275794, + "thread": 24 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1350785, + "thread": 12 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1510423, + "thread": 11 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1806988, + "thread": 27 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 1889322, + "thread": 13 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2012879, + "thread": 6 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2244645, + "thread": 17 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2380398, + "thread": 28 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2600048, + "thread": 11 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2766090, + "thread": 14 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 2897886, + "thread": 29 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 3047644, + "thread": 24 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 3251989, + "thread": 12 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 3354230, + "thread": 1 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 3513193, + "thread": 7 + } + }, + { + "amount": "141.156565051", + "slot": { + "period": 3638626, + "thread": 9 + } + }, + { + "amount": "141.156565056", + "slot": { + "period": 3909167, + "thread": 3 + } + } + ], + "AU1E2ZFqWFnNon4hAZK839wNqa57VnJePS66Mec4Z572Qn7iQ94d": [ + { + "amount": "396.879687928", + "slot": { + "period": 120874, + "thread": 23 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 227678, + "thread": 11 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 468025, + "thread": 4 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 628016, + "thread": 8 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 809963, + "thread": 5 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 871498, + "thread": 3 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1149633, + "thread": 3 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1252841, + "thread": 24 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1387308, + "thread": 11 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1528511, + "thread": 29 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1672401, + "thread": 24 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 1874461, + "thread": 21 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2049390, + "thread": 6 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2199014, + "thread": 27 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2429041, + "thread": 12 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2529985, + "thread": 16 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2736387, + "thread": 2 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 2886913, + "thread": 30 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 3029389, + "thread": 8 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 3263602, + "thread": 6 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 3433949, + "thread": 26 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 3579084, + "thread": 20 + } + }, + { + "amount": "396.879687928", + "slot": { + "period": 3682156, + "thread": 25 + } + }, + { + "amount": "396.879687935", + "slot": { + "period": 3827282, + "thread": 29 + } + } + ], + "AU1E32LUGZRuQn2aLwvx5jCshrHH57Umx9ngbd2f1bVm6z6cSnBJ": [ + { + "amount": "529.768607743", + "slot": { + "period": 94528, + "thread": 25 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 319821, + "thread": 1 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 378350, + "thread": 24 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 619509, + "thread": 6 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 757132, + "thread": 9 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 960911, + "thread": 10 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1091981, + "thread": 10 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1168969, + "thread": 12 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1340036, + "thread": 27 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1532306, + "thread": 3 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1649143, + "thread": 7 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 1874455, + "thread": 30 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2091923, + "thread": 3 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2256690, + "thread": 16 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2373726, + "thread": 9 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2499600, + "thread": 12 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2753145, + "thread": 13 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2846195, + "thread": 22 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 2965946, + "thread": 31 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 3149859, + "thread": 15 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 3336256, + "thread": 25 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 3506895, + "thread": 21 + } + }, + { + "amount": "529.768607743", + "slot": { + "period": 3771167, + "thread": 17 + } + }, + { + "amount": "529.768607744", + "slot": { + "period": 3946367, + "thread": 19 + } + } + ], + "AU1E4dVdUTUistnY5yG72NtVZn43m9xvAu63Q1SmjCTNRBnGdvHJ": [ + { + "amount": "528.762891004", + "slot": { + "period": 37543, + "thread": 11 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 310065, + "thread": 20 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 380141, + "thread": 5 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 646986, + "thread": 19 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 673903, + "thread": 0 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 877256, + "thread": 15 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1077728, + "thread": 13 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1250880, + "thread": 25 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1419556, + "thread": 21 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1485306, + "thread": 9 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1762048, + "thread": 0 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1867051, + "thread": 14 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 1982425, + "thread": 15 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 2229469, + "thread": 3 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 2357230, + "thread": 30 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 2472788, + "thread": 12 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 2692741, + "thread": 19 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 2904395, + "thread": 5 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 3079625, + "thread": 11 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 3279492, + "thread": 8 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 3398720, + "thread": 28 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 3481676, + "thread": 19 + } + }, + { + "amount": "528.762891004", + "slot": { + "period": 3771762, + "thread": 19 + } + }, + { + "amount": "528.762891015", + "slot": { + "period": 3787322, + "thread": 19 + } + } + ], + "AU1E4nhp2UiSFTJ6MqJcRhd6M2iD8LzNdurbqwCqadW3EVbyejfy": [ + { + "amount": "425.843829876", + "slot": { + "period": 13258, + "thread": 13 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 276810, + "thread": 31 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 491236, + "thread": 0 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 540935, + "thread": 14 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 678586, + "thread": 26 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 930814, + "thread": 24 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1111338, + "thread": 3 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1196552, + "thread": 20 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1401330, + "thread": 26 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1479838, + "thread": 1 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1770627, + "thread": 27 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 1870041, + "thread": 15 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2102490, + "thread": 0 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2269688, + "thread": 21 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2300624, + "thread": 31 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2603991, + "thread": 12 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2749269, + "thread": 20 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 2893463, + "thread": 7 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 3070733, + "thread": 2 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 3170700, + "thread": 20 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 3352090, + "thread": 20 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 3551870, + "thread": 17 + } + }, + { + "amount": "425.843829876", + "slot": { + "period": 3651981, + "thread": 27 + } + }, + { + "amount": "425.843829871", + "slot": { + "period": 3833278, + "thread": 18 + } + } + ], + "AU1E4tTZtEij5vLSHs3ViLwHgxVXWeMYAfTexn5HHwKB8Q6s9sCf": [ + { + "amount": "116.869104296", + "slot": { + "period": 57159, + "thread": 0 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 236640, + "thread": 1 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 373652, + "thread": 22 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 505855, + "thread": 22 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 759179, + "thread": 15 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 849952, + "thread": 18 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1081083, + "thread": 19 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1191325, + "thread": 10 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1389567, + "thread": 4 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1497831, + "thread": 5 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1694338, + "thread": 9 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 1835252, + "thread": 11 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2104580, + "thread": 22 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2251602, + "thread": 8 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2309905, + "thread": 14 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2618342, + "thread": 3 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2724405, + "thread": 9 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2947938, + "thread": 16 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 2957283, + "thread": 10 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 3240322, + "thread": 23 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 3355914, + "thread": 9 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 3550783, + "thread": 6 + } + }, + { + "amount": "116.869104296", + "slot": { + "period": 3687771, + "thread": 14 + } + }, + { + "amount": "116.869104285", + "slot": { + "period": 3902659, + "thread": 8 + } + } + ], + "AU1E5pkvTtcsLQywjiiGzLBaqQ5CTcYjcrKMfQ3qhVNrFifwJLiY": [ + { + "amount": "138.173460406", + "slot": { + "period": 101484, + "thread": 8 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 307240, + "thread": 19 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 429603, + "thread": 27 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 495685, + "thread": 14 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 790201, + "thread": 31 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 883618, + "thread": 20 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1117022, + "thread": 24 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1270167, + "thread": 22 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1474608, + "thread": 2 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1623657, + "thread": 4 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1760851, + "thread": 5 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 1968336, + "thread": 4 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2029951, + "thread": 3 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2185390, + "thread": 18 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2394073, + "thread": 1 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2493105, + "thread": 15 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2675689, + "thread": 11 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 2943740, + "thread": 19 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 3089004, + "thread": 7 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 3228920, + "thread": 15 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 3448041, + "thread": 7 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 3477565, + "thread": 3 + } + }, + { + "amount": "138.173460406", + "slot": { + "period": 3756252, + "thread": 24 + } + }, + { + "amount": "138.173460402", + "slot": { + "period": 3850463, + "thread": 23 + } + } + ], + "AU1E6axKkahJSLN44T5WPY8ECKibymHqDxBgWQFT3W65deu6M8E3": [ + { + "amount": "124.081959493", + "slot": { + "period": 107093, + "thread": 13 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 192105, + "thread": 14 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 477795, + "thread": 8 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 575634, + "thread": 0 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 672834, + "thread": 7 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 978219, + "thread": 24 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1024274, + "thread": 7 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1179315, + "thread": 0 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1329053, + "thread": 8 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1588888, + "thread": 25 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1764308, + "thread": 19 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 1923604, + "thread": 1 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2016628, + "thread": 16 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2189930, + "thread": 29 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2392519, + "thread": 24 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2524279, + "thread": 15 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2647761, + "thread": 4 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 2891309, + "thread": 25 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 3067638, + "thread": 13 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 3189883, + "thread": 17 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 3425593, + "thread": 29 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 3547626, + "thread": 19 + } + }, + { + "amount": "124.081959493", + "slot": { + "period": 3747618, + "thread": 28 + } + }, + { + "amount": "124.081959486", + "slot": { + "period": 3905214, + "thread": 11 + } + } + ], + "AU1E6j9AJtpKoxRWuAgAzRDGaDFjVbMbae3AjdcoaFgR3d1eoc2g": [ + { + "amount": "146.245515657", + "slot": { + "period": 53864, + "thread": 20 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 248943, + "thread": 30 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 452840, + "thread": 6 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 629253, + "thread": 14 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 816376, + "thread": 31 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 834731, + "thread": 23 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 992531, + "thread": 2 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 1164901, + "thread": 1 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 1447301, + "thread": 4 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 1588996, + "thread": 25 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 1720499, + "thread": 13 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 1877383, + "thread": 3 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2134996, + "thread": 3 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2151135, + "thread": 1 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2368239, + "thread": 7 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2545404, + "thread": 27 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2714223, + "thread": 5 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 2837610, + "thread": 20 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 3077261, + "thread": 24 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 3250545, + "thread": 11 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 3329239, + "thread": 23 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 3506556, + "thread": 24 + } + }, + { + "amount": "146.245515657", + "slot": { + "period": 3726699, + "thread": 16 + } + }, + { + "amount": "146.245515654", + "slot": { + "period": 3816892, + "thread": 16 + } + } + ], + "AU1E8Kt6v3MFcV437onFkzTLBm1FVbhWevLMwfJfAVU7vdZZ5VDH": [ + { + "amount": "112.422289808", + "slot": { + "period": 15757, + "thread": 13 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 279638, + "thread": 8 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 464147, + "thread": 28 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 513185, + "thread": 21 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 723091, + "thread": 26 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 904124, + "thread": 1 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1129419, + "thread": 13 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1302832, + "thread": 18 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1443849, + "thread": 6 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1492390, + "thread": 12 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1760852, + "thread": 0 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 1835639, + "thread": 0 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2101828, + "thread": 12 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2185402, + "thread": 22 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2307033, + "thread": 30 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2553022, + "thread": 6 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2682235, + "thread": 0 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2931239, + "thread": 8 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 2998009, + "thread": 3 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 3163274, + "thread": 8 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 3364571, + "thread": 29 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 3513309, + "thread": 23 + } + }, + { + "amount": "112.422289808", + "slot": { + "period": 3748846, + "thread": 14 + } + }, + { + "amount": "112.422289803", + "slot": { + "period": 3911640, + "thread": 20 + } + } + ], + "AU1E9TQWRPpZCjpKta6E7FrpXpToC6SgRCp7RpVerDQhqwKw9Vne": [ + { + "amount": "343.892667943", + "slot": { + "period": 79655, + "thread": 18 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 318744, + "thread": 25 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 383530, + "thread": 2 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 594478, + "thread": 8 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 718754, + "thread": 31 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 945097, + "thread": 6 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1063312, + "thread": 6 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1177345, + "thread": 12 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1330047, + "thread": 7 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1518366, + "thread": 18 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1776096, + "thread": 20 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 1919425, + "thread": 17 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2053748, + "thread": 23 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2154740, + "thread": 17 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2371935, + "thread": 6 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2577098, + "thread": 0 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2631618, + "thread": 25 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 2872997, + "thread": 20 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 3006923, + "thread": 0 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 3280928, + "thread": 3 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 3352785, + "thread": 17 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 3500953, + "thread": 18 + } + }, + { + "amount": "343.892667943", + "slot": { + "period": 3709571, + "thread": 28 + } + }, + { + "amount": "343.892667933", + "slot": { + "period": 3946556, + "thread": 14 + } + } + ], + "AU1E9mybCGsh1Xi5WGBGkfzqsLHYoJ8dfUN2DNTZ3DD5sBMvXZ9p": [ + { + "amount": "136.270547532", + "slot": { + "period": 57797, + "thread": 15 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 249711, + "thread": 13 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 449302, + "thread": 26 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 502943, + "thread": 10 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 798942, + "thread": 1 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 892711, + "thread": 11 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1036088, + "thread": 17 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1229578, + "thread": 1 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1394109, + "thread": 20 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1619117, + "thread": 29 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1739559, + "thread": 15 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1939788, + "thread": 16 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 1977619, + "thread": 5 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2153196, + "thread": 0 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2327016, + "thread": 18 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2505257, + "thread": 30 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2668623, + "thread": 20 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2812850, + "thread": 17 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 2958599, + "thread": 3 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 3136021, + "thread": 7 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 3424230, + "thread": 29 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 3570015, + "thread": 29 + } + }, + { + "amount": "136.270547532", + "slot": { + "period": 3720553, + "thread": 18 + } + }, + { + "amount": "136.270547526", + "slot": { + "period": 3788162, + "thread": 25 + } + } + ], + "AU1EACM9gb9fwofBVQVjPVheGpbaJ7e3RECctnUDonJ3TJ1zkbws": [ + { + "amount": "473.797264056", + "slot": { + "period": 39575, + "thread": 15 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 316635, + "thread": 23 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 479954, + "thread": 30 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 565842, + "thread": 31 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 711886, + "thread": 20 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 863146, + "thread": 16 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1039038, + "thread": 0 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1302306, + "thread": 21 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1467422, + "thread": 16 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1534237, + "thread": 12 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1728185, + "thread": 21 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 1930731, + "thread": 29 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2003451, + "thread": 12 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2225976, + "thread": 26 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2356520, + "thread": 4 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2563283, + "thread": 25 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2633981, + "thread": 8 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 2809928, + "thread": 5 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 3110286, + "thread": 16 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 3184731, + "thread": 27 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 3365400, + "thread": 16 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 3582905, + "thread": 29 + } + }, + { + "amount": "473.797264056", + "slot": { + "period": 3639231, + "thread": 4 + } + }, + { + "amount": "473.797264046", + "slot": { + "period": 3845705, + "thread": 29 + } + } + ], + "AU1EAJ7PFHhzVcgMsPbqeAUFzLniB16q9BXhRPyhJA9SbvuNJGQs": [ + { + "amount": "298.669087319", + "slot": { + "period": 66287, + "thread": 20 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 301240, + "thread": 11 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 448191, + "thread": 14 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 616543, + "thread": 10 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 748343, + "thread": 5 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 870136, + "thread": 26 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1133579, + "thread": 30 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1251384, + "thread": 14 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1351173, + "thread": 14 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1497336, + "thread": 31 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1655831, + "thread": 14 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 1936346, + "thread": 18 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2076541, + "thread": 30 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2291408, + "thread": 17 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2372163, + "thread": 15 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2590475, + "thread": 29 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2705432, + "thread": 23 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 2885956, + "thread": 0 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 3025560, + "thread": 12 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 3146172, + "thread": 15 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 3402724, + "thread": 16 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 3458794, + "thread": 10 + } + }, + { + "amount": "298.669087319", + "slot": { + "period": 3757051, + "thread": 10 + } + }, + { + "amount": "298.669087310", + "slot": { + "period": 3914370, + "thread": 13 + } + } + ], + "AU1EAxj1GCsJiDi4taSx9GrUDYvZiykMR5yhvAsPgbghL7PQgC79": [ + { + "amount": "242.909052048", + "slot": { + "period": 101236, + "thread": 26 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 226350, + "thread": 16 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 395363, + "thread": 22 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 516144, + "thread": 22 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 729276, + "thread": 10 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 959364, + "thread": 31 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 995568, + "thread": 21 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 1274095, + "thread": 5 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 1397966, + "thread": 16 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 1519544, + "thread": 7 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 1682037, + "thread": 8 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 1897682, + "thread": 12 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2025334, + "thread": 2 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2191777, + "thread": 1 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2437729, + "thread": 27 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2550913, + "thread": 29 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2690467, + "thread": 21 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2875165, + "thread": 7 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 2968017, + "thread": 0 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 3141320, + "thread": 5 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 3387250, + "thread": 12 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 3464225, + "thread": 8 + } + }, + { + "amount": "242.909052048", + "slot": { + "period": 3705939, + "thread": 5 + } + }, + { + "amount": "242.909052060", + "slot": { + "period": 3861544, + "thread": 3 + } + } + ], + "AU1EBDkU45rNNsEV9VLErd6NH9pGU19BVEFMXoaVkWVSCn9fsg5q": [ + { + "amount": "111.306612561", + "slot": { + "period": 156725, + "thread": 7 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 316883, + "thread": 5 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 386364, + "thread": 11 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 589337, + "thread": 25 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 751430, + "thread": 12 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 941128, + "thread": 30 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1013516, + "thread": 14 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1314052, + "thread": 3 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1333456, + "thread": 26 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1515128, + "thread": 21 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1655541, + "thread": 18 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 1847057, + "thread": 9 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2000614, + "thread": 12 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2277307, + "thread": 26 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2354201, + "thread": 9 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2621129, + "thread": 19 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2687146, + "thread": 21 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 2803430, + "thread": 25 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 3109282, + "thread": 18 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 3267484, + "thread": 11 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 3406350, + "thread": 25 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 3599540, + "thread": 16 + } + }, + { + "amount": "111.306612561", + "slot": { + "period": 3713591, + "thread": 4 + } + }, + { + "amount": "111.306612570", + "slot": { + "period": 3798437, + "thread": 26 + } + } + ], + "AU1EBZ5r9MhykSVwCAo2iArVm3LWQNBDCUdiJKsRMyVsZwe4pJYf": [ + { + "amount": "90.968219889", + "slot": { + "period": 17514, + "thread": 19 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 237641, + "thread": 30 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 359443, + "thread": 4 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 527781, + "thread": 24 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 667401, + "thread": 28 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 946125, + "thread": 30 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1050877, + "thread": 30 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1211117, + "thread": 9 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1463880, + "thread": 13 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1596619, + "thread": 21 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1654427, + "thread": 5 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 1876649, + "thread": 25 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2106672, + "thread": 11 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2203973, + "thread": 18 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2371479, + "thread": 13 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2468654, + "thread": 3 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2645406, + "thread": 1 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 2847249, + "thread": 14 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 3005730, + "thread": 24 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 3212524, + "thread": 1 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 3426817, + "thread": 0 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 3564118, + "thread": 14 + } + }, + { + "amount": "90.968219889", + "slot": { + "period": 3644477, + "thread": 25 + } + }, + { + "amount": "90.968219891", + "slot": { + "period": 3892380, + "thread": 9 + } + } + ], + "AU1EC3g9WoAJxgDnYBvqoAt1dwbYpHps9QEQ3ApTkgxduQCYk9Uj": [ + { + "amount": "191.291308289", + "slot": { + "period": 57290, + "thread": 23 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 198598, + "thread": 20 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 474832, + "thread": 22 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 622072, + "thread": 18 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 678103, + "thread": 11 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 929996, + "thread": 31 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1073071, + "thread": 19 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1163587, + "thread": 8 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1377086, + "thread": 1 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1533151, + "thread": 10 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1736250, + "thread": 29 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 1940027, + "thread": 30 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2107090, + "thread": 4 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2277851, + "thread": 10 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2377090, + "thread": 2 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2620104, + "thread": 23 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2783508, + "thread": 10 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 2932880, + "thread": 18 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 3107555, + "thread": 23 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 3254045, + "thread": 31 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 3365960, + "thread": 18 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 3475952, + "thread": 23 + } + }, + { + "amount": "191.291308289", + "slot": { + "period": 3683541, + "thread": 15 + } + }, + { + "amount": "191.291308299", + "slot": { + "period": 3927426, + "thread": 25 + } + } + ], + "AU1ECJMrP1UPpzYvSnV9m6RrPSGRPfaQ9QqZ3ATvj5A45PHsKjbA": [ + { + "amount": "262.512133114", + "slot": { + "period": 14060, + "thread": 28 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 299345, + "thread": 24 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 459933, + "thread": 31 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 562046, + "thread": 28 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 683186, + "thread": 18 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 946391, + "thread": 13 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1105410, + "thread": 3 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1158562, + "thread": 1 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1327591, + "thread": 13 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1599758, + "thread": 5 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1742647, + "thread": 7 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1883672, + "thread": 1 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 1982428, + "thread": 15 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2145923, + "thread": 0 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2425162, + "thread": 6 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2503283, + "thread": 18 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2712332, + "thread": 26 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2804153, + "thread": 21 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 2991729, + "thread": 6 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 3279047, + "thread": 7 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 3375283, + "thread": 7 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 3595614, + "thread": 5 + } + }, + { + "amount": "262.512133114", + "slot": { + "period": 3672986, + "thread": 29 + } + }, + { + "amount": "262.512133109", + "slot": { + "period": 3868955, + "thread": 3 + } + } + ], + "AU1ED78kYSSCtSsidcBeBn6PsDCZqxcR1uo2yXeC7jmWHh27keBt": [ + { + "amount": "343.223459326", + "slot": { + "period": 39293, + "thread": 23 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 322277, + "thread": 31 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 467508, + "thread": 3 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 620291, + "thread": 26 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 744529, + "thread": 29 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 974877, + "thread": 1 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1051078, + "thread": 12 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1310323, + "thread": 11 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1455553, + "thread": 23 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1483790, + "thread": 0 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1730776, + "thread": 22 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 1842908, + "thread": 19 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2031191, + "thread": 31 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2225700, + "thread": 12 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2458340, + "thread": 23 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2527673, + "thread": 23 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2625151, + "thread": 13 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2893297, + "thread": 5 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 2996004, + "thread": 18 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 3254148, + "thread": 13 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 3360531, + "thread": 29 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 3474874, + "thread": 14 + } + }, + { + "amount": "343.223459326", + "slot": { + "period": 3736148, + "thread": 20 + } + }, + { + "amount": "343.223459323", + "slot": { + "period": 3937752, + "thread": 25 + } + } + ], + "AU1EETwLPSYMs54z1pZsdJ2FH1vC63hQ71jNELbKgGXr2juEW73z": [ + { + "amount": "189.081426336", + "slot": { + "period": 126947, + "thread": 9 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 301958, + "thread": 23 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 413151, + "thread": 25 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 642266, + "thread": 2 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 760876, + "thread": 30 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 891787, + "thread": 14 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1001924, + "thread": 6 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1303297, + "thread": 21 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1473866, + "thread": 26 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1518147, + "thread": 4 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1709268, + "thread": 13 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 1823772, + "thread": 1 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2006585, + "thread": 12 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2237602, + "thread": 19 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2416416, + "thread": 6 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2503638, + "thread": 26 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2692627, + "thread": 11 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 2812048, + "thread": 21 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 3036072, + "thread": 26 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 3280942, + "thread": 22 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 3422499, + "thread": 28 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 3609152, + "thread": 2 + } + }, + { + "amount": "189.081426336", + "slot": { + "period": 3751493, + "thread": 25 + } + }, + { + "amount": "189.081426337", + "slot": { + "period": 3892137, + "thread": 6 + } + } + ], + "AU1EEbtWQvZnwhAfQWjwYnkBbRNkM7Ecg8Gd6bmw4LdSjZUXFvsm": [ + { + "amount": "582.536066072", + "slot": { + "period": 55535, + "thread": 11 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 249054, + "thread": 29 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 391173, + "thread": 28 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 544313, + "thread": 12 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 707958, + "thread": 4 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 839655, + "thread": 5 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1003789, + "thread": 11 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1294461, + "thread": 24 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1348407, + "thread": 8 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1488762, + "thread": 6 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1762052, + "thread": 11 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1871424, + "thread": 29 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 1993037, + "thread": 20 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2177755, + "thread": 13 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2305968, + "thread": 24 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2542900, + "thread": 5 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2784202, + "thread": 13 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2891792, + "thread": 9 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 2998089, + "thread": 12 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 3143917, + "thread": 6 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 3362925, + "thread": 17 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 3515078, + "thread": 7 + } + }, + { + "amount": "582.536066072", + "slot": { + "period": 3746958, + "thread": 27 + } + }, + { + "amount": "582.536066073", + "slot": { + "period": 3815575, + "thread": 29 + } + } + ], + "AU1EEdVWAVcBt75D8rb2aGD8fCdyzFxtMMKA7R8qvnbTbE3a4RxM": [ + { + "amount": "311.660067567", + "slot": { + "period": 154463, + "thread": 20 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 196147, + "thread": 13 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 422200, + "thread": 0 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 583113, + "thread": 14 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 803031, + "thread": 28 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 950734, + "thread": 20 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1061801, + "thread": 2 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1208648, + "thread": 16 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1473476, + "thread": 22 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1558832, + "thread": 16 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1730258, + "thread": 16 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 1912395, + "thread": 7 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2035469, + "thread": 10 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2291204, + "thread": 4 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2329266, + "thread": 1 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2535355, + "thread": 24 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2788909, + "thread": 20 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2859862, + "thread": 20 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 2956150, + "thread": 30 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 3276352, + "thread": 17 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 3391348, + "thread": 5 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 3492118, + "thread": 14 + } + }, + { + "amount": "311.660067567", + "slot": { + "period": 3706479, + "thread": 30 + } + }, + { + "amount": "311.660067565", + "slot": { + "period": 3866421, + "thread": 18 + } + } + ], + "AU1EFPFrNNmya1QSvLsweh2G82X84bnnu147X78AiRezx7Gb9Mue": [ + { + "amount": "296.802949492", + "slot": { + "period": 12409, + "thread": 24 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 215256, + "thread": 24 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 393372, + "thread": 28 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 620310, + "thread": 4 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 734878, + "thread": 22 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 859341, + "thread": 21 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1122849, + "thread": 24 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1224693, + "thread": 23 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1456479, + "thread": 11 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1561025, + "thread": 24 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1647477, + "thread": 4 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 1957071, + "thread": 26 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2088832, + "thread": 29 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2174114, + "thread": 8 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2408607, + "thread": 3 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2474728, + "thread": 12 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2652200, + "thread": 8 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 2835745, + "thread": 20 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 3071464, + "thread": 28 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 3144631, + "thread": 24 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 3382790, + "thread": 20 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 3464766, + "thread": 28 + } + }, + { + "amount": "296.802949492", + "slot": { + "period": 3684126, + "thread": 4 + } + }, + { + "amount": "296.802949485", + "slot": { + "period": 3887369, + "thread": 28 + } + } + ], + "AU1EFSMauJPwMbkYMNJFfMsLHqa1vrARm6i7jka7vVoiQPeKVrva": [ + { + "amount": "135.414182214", + "slot": { + "period": 70034, + "thread": 26 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 271521, + "thread": 23 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 476315, + "thread": 19 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 570228, + "thread": 27 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 735321, + "thread": 24 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 954577, + "thread": 29 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1082445, + "thread": 14 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1251271, + "thread": 3 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1327632, + "thread": 3 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1495484, + "thread": 22 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1663087, + "thread": 13 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 1877790, + "thread": 31 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2028964, + "thread": 4 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2187857, + "thread": 15 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2410904, + "thread": 15 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2552857, + "thread": 12 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2785697, + "thread": 18 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 2935207, + "thread": 17 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 3092540, + "thread": 29 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 3122591, + "thread": 15 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 3394244, + "thread": 9 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 3455239, + "thread": 8 + } + }, + { + "amount": "135.414182214", + "slot": { + "period": 3619740, + "thread": 30 + } + }, + { + "amount": "135.414182218", + "slot": { + "period": 3815390, + "thread": 17 + } + } + ], + "AU1EFc7UbvsAeBtJwpD1VK4kHQtcY24zDncBuvK2REJx2NFwWn9o": [ + { + "amount": "221.221165638", + "slot": { + "period": 84447, + "thread": 22 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 287051, + "thread": 7 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 385536, + "thread": 31 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 597056, + "thread": 9 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 681752, + "thread": 21 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 850821, + "thread": 28 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1084761, + "thread": 14 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1219305, + "thread": 16 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1342590, + "thread": 21 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1505546, + "thread": 8 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1771233, + "thread": 10 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 1925385, + "thread": 4 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2082190, + "thread": 25 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2235605, + "thread": 4 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2411141, + "thread": 13 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2588084, + "thread": 4 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2659693, + "thread": 20 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 2868375, + "thread": 18 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 3063948, + "thread": 26 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 3138361, + "thread": 12 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 3395737, + "thread": 11 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 3463736, + "thread": 10 + } + }, + { + "amount": "221.221165638", + "slot": { + "period": 3707522, + "thread": 15 + } + }, + { + "amount": "221.221165637", + "slot": { + "period": 3819360, + "thread": 23 + } + } + ], + "AU1EGEufq4cig6XRTZPbcVNQ92mgRsGfMFRHJ3usoLiu7V1CdjCp": [ + { + "amount": "167.932830147", + "slot": { + "period": 21865, + "thread": 4 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 231463, + "thread": 1 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 483170, + "thread": 2 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 650002, + "thread": 1 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 751003, + "thread": 22 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 957716, + "thread": 30 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1145653, + "thread": 16 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1220157, + "thread": 4 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1381367, + "thread": 13 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1628481, + "thread": 19 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1786853, + "thread": 10 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 1897074, + "thread": 2 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2134552, + "thread": 17 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2189872, + "thread": 18 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2344274, + "thread": 1 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2505651, + "thread": 16 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2726820, + "thread": 1 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 2926252, + "thread": 17 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 3046933, + "thread": 17 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 3128779, + "thread": 2 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 3299359, + "thread": 13 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 3591063, + "thread": 10 + } + }, + { + "amount": "167.932830147", + "slot": { + "period": 3644953, + "thread": 14 + } + }, + { + "amount": "167.932830154", + "slot": { + "period": 3823638, + "thread": 31 + } + } + ], + "AU1EHRugQPvTQ7kRxamKEV1kvebmVeRrD3RrDcjuJVbHpTs8beAa": [ + { + "amount": "235.653058125", + "slot": { + "period": 159479, + "thread": 2 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 213644, + "thread": 4 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 355933, + "thread": 14 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 562753, + "thread": 24 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 757610, + "thread": 26 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 963845, + "thread": 6 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1134688, + "thread": 16 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1302580, + "thread": 24 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1357135, + "thread": 26 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1547172, + "thread": 30 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1749238, + "thread": 11 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 1938853, + "thread": 30 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2054093, + "thread": 16 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2144792, + "thread": 4 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2325435, + "thread": 27 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2540092, + "thread": 3 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2739705, + "thread": 2 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 2827370, + "thread": 1 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 3069588, + "thread": 30 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 3216256, + "thread": 20 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 3386833, + "thread": 22 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 3560076, + "thread": 15 + } + }, + { + "amount": "235.653058125", + "slot": { + "period": 3706933, + "thread": 5 + } + }, + { + "amount": "235.653058121", + "slot": { + "period": 3883548, + "thread": 10 + } + } + ], + "AU1EJTYWmYEqAkR8D7yuDk3W7aXBNup9gQBFkTpWHE8sAwkGpWBx": [ + { + "amount": "196.101484138", + "slot": { + "period": 67125, + "thread": 9 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 189427, + "thread": 10 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 429183, + "thread": 6 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 630598, + "thread": 15 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 732062, + "thread": 16 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 858142, + "thread": 29 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1112527, + "thread": 8 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1271080, + "thread": 19 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1334808, + "thread": 11 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1597718, + "thread": 8 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1690563, + "thread": 20 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 1836425, + "thread": 1 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2110079, + "thread": 9 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2294124, + "thread": 0 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2340320, + "thread": 17 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2502852, + "thread": 12 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2647992, + "thread": 3 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 2917549, + "thread": 1 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 3117309, + "thread": 7 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 3233575, + "thread": 26 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 3411990, + "thread": 25 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 3578786, + "thread": 5 + } + }, + { + "amount": "196.101484138", + "slot": { + "period": 3727562, + "thread": 8 + } + }, + { + "amount": "196.101484144", + "slot": { + "period": 3895982, + "thread": 27 + } + } + ], + "AU1EJbHNgLJWbLYpYthc1rzgYqRaANYayGLhgPAEbUyFjy9GnBZs": [ + { + "amount": "154.659104340", + "slot": { + "period": 14703, + "thread": 13 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 278183, + "thread": 26 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 335162, + "thread": 4 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 613838, + "thread": 29 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 686680, + "thread": 4 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 857184, + "thread": 20 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 991530, + "thread": 28 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 1283762, + "thread": 1 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 1400787, + "thread": 2 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 1500212, + "thread": 19 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 1805210, + "thread": 24 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 1877865, + "thread": 21 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2067591, + "thread": 14 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2256317, + "thread": 1 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2415857, + "thread": 15 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2496000, + "thread": 24 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2632485, + "thread": 24 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 2815100, + "thread": 5 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 3019483, + "thread": 20 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 3280392, + "thread": 6 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 3381723, + "thread": 25 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 3546973, + "thread": 14 + } + }, + { + "amount": "154.659104340", + "slot": { + "period": 3657755, + "thread": 20 + } + }, + { + "amount": "154.659104337", + "slot": { + "period": 3910202, + "thread": 6 + } + } + ], + "AU1EK8dBrrtqDp56bURrVAqWp9R6s1M2e7hhZEscTyujaucEHwAV": [ + { + "amount": "54.490222330", + "slot": { + "period": 45772, + "thread": 3 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 225039, + "thread": 5 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 374106, + "thread": 7 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 497313, + "thread": 24 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 793170, + "thread": 3 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 965272, + "thread": 18 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1098027, + "thread": 7 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1302263, + "thread": 1 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1387259, + "thread": 21 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1502722, + "thread": 10 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1737269, + "thread": 3 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 1900406, + "thread": 2 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2000080, + "thread": 0 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2161331, + "thread": 22 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2337021, + "thread": 3 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2580011, + "thread": 19 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2789601, + "thread": 0 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2799203, + "thread": 19 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 2968688, + "thread": 1 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 3260249, + "thread": 1 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 3313303, + "thread": 13 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 3478724, + "thread": 23 + } + }, + { + "amount": "54.490222330", + "slot": { + "period": 3677318, + "thread": 2 + } + }, + { + "amount": "54.490222337", + "slot": { + "period": 3833072, + "thread": 10 + } + } + ], + "AU1EMa5hq9x5UsX44y6ECvkJXWWdQyitxtkSbMck6L4A8AG9QXLL": [ + { + "amount": "518.300446417", + "slot": { + "period": 118715, + "thread": 28 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 223530, + "thread": 24 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 423528, + "thread": 17 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 632743, + "thread": 6 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 765926, + "thread": 14 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 897290, + "thread": 11 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1149468, + "thread": 24 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1192360, + "thread": 18 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1385982, + "thread": 9 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1599707, + "thread": 12 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1789329, + "thread": 12 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 1927381, + "thread": 12 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2040712, + "thread": 0 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2220651, + "thread": 22 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2460547, + "thread": 14 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2577624, + "thread": 10 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2656835, + "thread": 15 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2911534, + "thread": 3 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 2955612, + "thread": 14 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 3247661, + "thread": 5 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 3355453, + "thread": 27 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 3547040, + "thread": 16 + } + }, + { + "amount": "518.300446417", + "slot": { + "period": 3773207, + "thread": 21 + } + }, + { + "amount": "518.300446406", + "slot": { + "period": 3928609, + "thread": 6 + } + } + ], + "AU1EMqykpvgGq4uF86YkgxniktSPEnfrQ6vQH7oWS2K7oCgWtwkk": [ + { + "amount": "163.568446895", + "slot": { + "period": 145628, + "thread": 30 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 173832, + "thread": 4 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 445491, + "thread": 8 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 502755, + "thread": 18 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 746362, + "thread": 2 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 979713, + "thread": 19 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1085223, + "thread": 16 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1307359, + "thread": 27 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1343570, + "thread": 15 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1490346, + "thread": 23 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1786717, + "thread": 1 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 1974868, + "thread": 28 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2127763, + "thread": 28 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2249150, + "thread": 8 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2329105, + "thread": 11 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2583451, + "thread": 28 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2766704, + "thread": 25 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 2905055, + "thread": 14 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 3001531, + "thread": 13 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 3269727, + "thread": 4 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 3334460, + "thread": 1 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 3557033, + "thread": 24 + } + }, + { + "amount": "163.568446895", + "slot": { + "period": 3753437, + "thread": 16 + } + }, + { + "amount": "163.568446890", + "slot": { + "period": 3786247, + "thread": 1 + } + } + ], + "AU1EN4xTWG5opJNFhazuXwdTJAm6WSALsg8mv4VxmD3Fqp6BE8uo": [ + { + "amount": "63.823984645", + "slot": { + "period": 45932, + "thread": 18 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 258192, + "thread": 9 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 362039, + "thread": 17 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 544039, + "thread": 9 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 805156, + "thread": 12 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 840186, + "thread": 31 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 999791, + "thread": 6 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 1201880, + "thread": 21 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 1411611, + "thread": 11 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 1541874, + "thread": 8 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 1808509, + "thread": 27 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 1929677, + "thread": 18 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2047069, + "thread": 6 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2169755, + "thread": 25 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2394673, + "thread": 31 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2533372, + "thread": 24 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2760797, + "thread": 22 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 2906133, + "thread": 27 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 3069634, + "thread": 30 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 3129176, + "thread": 29 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 3371426, + "thread": 26 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 3573038, + "thread": 18 + } + }, + { + "amount": "63.823984645", + "slot": { + "period": 3699884, + "thread": 13 + } + }, + { + "amount": "63.823984636", + "slot": { + "period": 3849484, + "thread": 17 + } + } + ], + "AU1ENFGTBecsv4E9teViKgjMg1Z6f91pWPnc2BbfTNLpwPcqoijZ": [ + { + "amount": "269.331726232", + "slot": { + "period": 34457, + "thread": 22 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 289044, + "thread": 9 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 432105, + "thread": 23 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 586761, + "thread": 27 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 699369, + "thread": 28 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 836869, + "thread": 24 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1074168, + "thread": 13 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1286221, + "thread": 30 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1421812, + "thread": 23 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1605400, + "thread": 5 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1660832, + "thread": 14 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 1883170, + "thread": 27 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2042740, + "thread": 20 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2172635, + "thread": 20 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2370329, + "thread": 5 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2546016, + "thread": 16 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2675838, + "thread": 9 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 2905293, + "thread": 30 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 3058797, + "thread": 14 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 3131103, + "thread": 18 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 3377066, + "thread": 3 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 3537636, + "thread": 27 + } + }, + { + "amount": "269.331726232", + "slot": { + "period": 3693108, + "thread": 30 + } + }, + { + "amount": "269.331726223", + "slot": { + "period": 3891843, + "thread": 25 + } + } + ], + "AU1ENxeAPFpRWFRDo6i1FZzRuhr6dsgTfJ9gy8VvYs3iNJUDxgLz": [ + { + "amount": "119.928417007", + "slot": { + "period": 116780, + "thread": 13 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 181219, + "thread": 6 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 404489, + "thread": 27 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 621895, + "thread": 1 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 817986, + "thread": 6 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 951635, + "thread": 4 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1105684, + "thread": 13 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1273628, + "thread": 21 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1443253, + "thread": 18 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1509181, + "thread": 22 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1651558, + "thread": 4 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1969938, + "thread": 31 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 1984641, + "thread": 31 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2276193, + "thread": 13 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2397083, + "thread": 16 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2600155, + "thread": 7 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2705948, + "thread": 21 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2896509, + "thread": 17 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 2978222, + "thread": 16 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 3265343, + "thread": 4 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 3308676, + "thread": 4 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 3541583, + "thread": 28 + } + }, + { + "amount": "119.928417007", + "slot": { + "period": 3633401, + "thread": 12 + } + }, + { + "amount": "119.928417008", + "slot": { + "period": 3830036, + "thread": 28 + } + } + ], + "AU1EP2crZHXCf2Qqg3qrByFoChqhsivK36vifmH5RdqY21RUYwCj": [ + { + "amount": "346.872285950", + "slot": { + "period": 86318, + "thread": 28 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 301806, + "thread": 1 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 469416, + "thread": 22 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 523152, + "thread": 6 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 786874, + "thread": 3 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 834502, + "thread": 28 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 987562, + "thread": 13 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 1213289, + "thread": 14 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 1358460, + "thread": 9 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 1571066, + "thread": 0 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 1746432, + "thread": 1 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 1822767, + "thread": 31 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2061644, + "thread": 28 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2159318, + "thread": 0 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2380271, + "thread": 3 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2623180, + "thread": 19 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2718798, + "thread": 28 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 2837321, + "thread": 20 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 3060576, + "thread": 27 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 3148210, + "thread": 29 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 3372018, + "thread": 28 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 3525916, + "thread": 31 + } + }, + { + "amount": "346.872285950", + "slot": { + "period": 3740474, + "thread": 13 + } + }, + { + "amount": "346.872285962", + "slot": { + "period": 3804321, + "thread": 29 + } + } + ], + "AU1EPGrxDt6q1ARcYLef9mmWGhdhuXmVcFFKvYJt924QcEc8jN8a": [ + { + "amount": "150.989589138", + "slot": { + "period": 154741, + "thread": 14 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 283228, + "thread": 21 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 482485, + "thread": 13 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 621378, + "thread": 10 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 693736, + "thread": 21 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 840631, + "thread": 15 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1148910, + "thread": 5 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1256572, + "thread": 15 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1398042, + "thread": 26 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1548020, + "thread": 13 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1772724, + "thread": 2 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1948892, + "thread": 31 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 1999862, + "thread": 11 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2237086, + "thread": 9 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2310591, + "thread": 29 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2580640, + "thread": 19 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2664973, + "thread": 0 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2829419, + "thread": 1 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 2965234, + "thread": 22 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 3268501, + "thread": 25 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 3290891, + "thread": 12 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 3536441, + "thread": 1 + } + }, + { + "amount": "150.989589138", + "slot": { + "period": 3627493, + "thread": 31 + } + }, + { + "amount": "150.989589135", + "slot": { + "period": 3880532, + "thread": 30 + } + } + ], + "AU1EPRdXEJoMRDKZzEaz6xzLEYYNwvhFTm5bWoBMBWYsXgzckULu": [ + { + "amount": "640.814772015", + "slot": { + "period": 84908, + "thread": 9 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 284233, + "thread": 11 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 377581, + "thread": 5 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 521509, + "thread": 14 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 706730, + "thread": 28 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 912391, + "thread": 2 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1002597, + "thread": 19 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1235256, + "thread": 21 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1406328, + "thread": 27 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1613057, + "thread": 24 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1807215, + "thread": 31 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 1872347, + "thread": 30 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2079618, + "thread": 29 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2266284, + "thread": 14 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2368302, + "thread": 7 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2489041, + "thread": 20 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2757583, + "thread": 2 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 2797519, + "thread": 25 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 3033876, + "thread": 24 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 3230829, + "thread": 24 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 3352349, + "thread": 3 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 3546315, + "thread": 31 + } + }, + { + "amount": "640.814772015", + "slot": { + "period": 3719438, + "thread": 31 + } + }, + { + "amount": "640.814772010", + "slot": { + "period": 3885284, + "thread": 15 + } + } + ], + "AU1EQE3DgEgwdvrvgAyhjMRzQpfB7xwAQn5jArtZtSMQHiGfDntp": [ + { + "amount": "348.137093130", + "slot": { + "period": 113450, + "thread": 25 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 312370, + "thread": 12 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 463169, + "thread": 25 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 500675, + "thread": 16 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 719398, + "thread": 8 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 974941, + "thread": 12 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1029222, + "thread": 23 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1295310, + "thread": 0 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1462375, + "thread": 16 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1587040, + "thread": 29 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1663522, + "thread": 15 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1843741, + "thread": 29 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 1989083, + "thread": 25 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 2284460, + "thread": 29 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 2369319, + "thread": 25 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 2524746, + "thread": 26 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 2744056, + "thread": 2 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 2899387, + "thread": 27 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 3057355, + "thread": 15 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 3163223, + "thread": 8 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 3335321, + "thread": 3 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 3530489, + "thread": 31 + } + }, + { + "amount": "348.137093130", + "slot": { + "period": 3687499, + "thread": 25 + } + }, + { + "amount": "348.137093131", + "slot": { + "period": 3860657, + "thread": 23 + } + } + ], + "AU1ETz3QahnQQTuYU3neL21hF1kgqLK2L8Xd2QL42xFnKk7Kv5X9": [ + { + "amount": "270.779352491", + "slot": { + "period": 49452, + "thread": 5 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 291357, + "thread": 22 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 345732, + "thread": 14 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 522568, + "thread": 26 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 672872, + "thread": 8 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 848266, + "thread": 24 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1020639, + "thread": 31 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1196810, + "thread": 16 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1320912, + "thread": 3 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1624776, + "thread": 14 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1724379, + "thread": 18 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 1854209, + "thread": 28 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2032776, + "thread": 30 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2267249, + "thread": 23 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2379590, + "thread": 31 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2570108, + "thread": 22 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2655193, + "thread": 28 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 2890004, + "thread": 28 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 3029798, + "thread": 17 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 3138208, + "thread": 7 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 3356020, + "thread": 3 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 3529055, + "thread": 22 + } + }, + { + "amount": "270.779352491", + "slot": { + "period": 3663417, + "thread": 24 + } + }, + { + "amount": "270.779352486", + "slot": { + "period": 3861477, + "thread": 20 + } + } + ], + "AU1EUym94G9aQjGpWSvb2YAduHfTo2XfBxW1JUZ8oGY6R2KXBdcy": [ + { + "amount": "59.484947326", + "slot": { + "period": 26776, + "thread": 20 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 295888, + "thread": 13 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 357282, + "thread": 23 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 548346, + "thread": 17 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 691644, + "thread": 5 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 979396, + "thread": 28 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1146514, + "thread": 21 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1203012, + "thread": 15 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1422633, + "thread": 22 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1532242, + "thread": 1 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1674490, + "thread": 29 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 1852003, + "thread": 5 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2063153, + "thread": 26 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2179723, + "thread": 7 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2451408, + "thread": 17 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2550912, + "thread": 19 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2636904, + "thread": 6 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 2905647, + "thread": 22 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 3120766, + "thread": 9 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 3174568, + "thread": 13 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 3438924, + "thread": 27 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 3474035, + "thread": 2 + } + }, + { + "amount": "59.484947326", + "slot": { + "period": 3633340, + "thread": 5 + } + }, + { + "amount": "59.484947333", + "slot": { + "period": 3786969, + "thread": 25 + } + } + ], + "AU1EV4QTUY9sCPFRERgNoWpWU6oQXhqZ6sHGAKBhFd5sLaBMeUKJ": [ + { + "amount": "420.056445237", + "slot": { + "period": 143241, + "thread": 16 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 287617, + "thread": 5 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 447009, + "thread": 27 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 629017, + "thread": 4 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 721451, + "thread": 22 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 892077, + "thread": 22 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1136069, + "thread": 20 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1252570, + "thread": 30 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1415145, + "thread": 17 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1543048, + "thread": 13 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1732841, + "thread": 3 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 1904492, + "thread": 27 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2035661, + "thread": 8 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2195115, + "thread": 18 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2452471, + "thread": 10 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2534252, + "thread": 25 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2704778, + "thread": 19 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 2940727, + "thread": 20 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 3040752, + "thread": 17 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 3159020, + "thread": 21 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 3290278, + "thread": 8 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 3477071, + "thread": 31 + } + }, + { + "amount": "420.056445237", + "slot": { + "period": 3633107, + "thread": 30 + } + }, + { + "amount": "420.056445226", + "slot": { + "period": 3879256, + "thread": 24 + } + } + ], + "AU1EWfizkuSpc2GmqdSKja2NQW92z4JCARz5Foy3HjunkByz6hns": [ + { + "amount": "642.632287487", + "slot": { + "period": 91494, + "thread": 10 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 244182, + "thread": 15 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 412988, + "thread": 28 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 534206, + "thread": 17 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 683065, + "thread": 10 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 948102, + "thread": 11 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1067530, + "thread": 14 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1188667, + "thread": 29 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1357639, + "thread": 17 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1580879, + "thread": 26 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1664304, + "thread": 18 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1817273, + "thread": 10 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 1997895, + "thread": 12 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 2166380, + "thread": 6 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 2395729, + "thread": 5 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 2550697, + "thread": 25 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 2652332, + "thread": 16 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 2871028, + "thread": 0 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 3039122, + "thread": 5 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 3180444, + "thread": 24 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 3363756, + "thread": 5 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 3457245, + "thread": 4 + } + }, + { + "amount": "642.632287487", + "slot": { + "period": 3704003, + "thread": 15 + } + }, + { + "amount": "642.632287488", + "slot": { + "period": 3856717, + "thread": 6 + } + } + ], + "AU1EXPdWtWpX1QTrUuZAYso6g5zyc2Zf112UCFjMpsC9vVhcsWyW": [ + { + "amount": "193.932507299", + "slot": { + "period": 90371, + "thread": 23 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 177631, + "thread": 25 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 372017, + "thread": 14 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 504727, + "thread": 10 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 697002, + "thread": 11 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 977394, + "thread": 1 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1077774, + "thread": 12 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1277824, + "thread": 18 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1322371, + "thread": 4 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1515833, + "thread": 22 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1808623, + "thread": 27 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 1874431, + "thread": 19 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2010997, + "thread": 3 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2253344, + "thread": 27 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2448459, + "thread": 10 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2512480, + "thread": 3 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2769652, + "thread": 29 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2940667, + "thread": 1 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 2977259, + "thread": 28 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 3235259, + "thread": 3 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 3446208, + "thread": 19 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 3606623, + "thread": 26 + } + }, + { + "amount": "193.932507299", + "slot": { + "period": 3727809, + "thread": 8 + } + }, + { + "amount": "193.932507306", + "slot": { + "period": 3807599, + "thread": 0 + } + } + ], + "AU1EYbP7FQsvyk5LqSTj5pPdDVmXPsf8tqsoy8BAQYDm8hsFGcEx": [ + { + "amount": "93.370699582", + "slot": { + "period": 94625, + "thread": 22 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 319518, + "thread": 10 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 427843, + "thread": 6 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 531390, + "thread": 17 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 783216, + "thread": 9 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 976736, + "thread": 7 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1119126, + "thread": 18 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1154009, + "thread": 29 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1437591, + "thread": 24 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1501465, + "thread": 4 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1699015, + "thread": 29 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 1958521, + "thread": 8 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2042857, + "thread": 21 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2231475, + "thread": 20 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2307229, + "thread": 1 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2570069, + "thread": 29 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2644501, + "thread": 18 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 2910249, + "thread": 16 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 3069422, + "thread": 27 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 3219036, + "thread": 23 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 3391355, + "thread": 9 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 3595782, + "thread": 21 + } + }, + { + "amount": "93.370699582", + "slot": { + "period": 3659566, + "thread": 3 + } + }, + { + "amount": "93.370699581", + "slot": { + "period": 3829212, + "thread": 1 + } + } + ], + "AU1EZHqxXRssqm7twiUCCP2nZ8pvJ2JDcPccFyY12VkpyDK1uxUZ": [ + { + "amount": "453.751676733", + "slot": { + "period": 148097, + "thread": 1 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 186700, + "thread": 26 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 384306, + "thread": 9 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 500401, + "thread": 13 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 780734, + "thread": 0 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 835130, + "thread": 20 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1104673, + "thread": 24 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1232105, + "thread": 7 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1393589, + "thread": 19 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1556831, + "thread": 14 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1713283, + "thread": 26 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 1957290, + "thread": 30 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2137307, + "thread": 16 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2192092, + "thread": 30 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2355656, + "thread": 14 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2577085, + "thread": 31 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2705069, + "thread": 6 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 2943853, + "thread": 8 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3073642, + "thread": 16 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3139708, + "thread": 25 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3319407, + "thread": 19 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3585967, + "thread": 27 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3643910, + "thread": 17 + } + }, + { + "amount": "453.751676733", + "slot": { + "period": 3887548, + "thread": 9 + } + } + ], + "AU1Ea53SdX3Ao6Xt1YG5hJdVVna1s2dRuRv8ZXUgM2tf1DhAYNj6": [ + { + "amount": "82.647905039", + "slot": { + "period": 49107, + "thread": 8 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 206611, + "thread": 13 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 369069, + "thread": 16 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 541183, + "thread": 27 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 820266, + "thread": 12 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 897285, + "thread": 15 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1015211, + "thread": 3 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1206612, + "thread": 22 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1401245, + "thread": 20 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1553637, + "thread": 13 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1733614, + "thread": 4 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 1956737, + "thread": 20 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2081193, + "thread": 20 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2226116, + "thread": 22 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2349149, + "thread": 14 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2481401, + "thread": 6 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2674005, + "thread": 17 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 2795106, + "thread": 14 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 3072437, + "thread": 11 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 3124464, + "thread": 21 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 3299114, + "thread": 0 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 3508709, + "thread": 30 + } + }, + { + "amount": "82.647905039", + "slot": { + "period": 3676301, + "thread": 25 + } + }, + { + "amount": "82.647905046", + "slot": { + "period": 3869400, + "thread": 21 + } + } + ], + "AU1EaaxAPvnMbYd7wfXTnVNEZXu8YPtztG8drzpqtjw3tcpF5diY": [ + { + "amount": "60.738305005", + "slot": { + "period": 108476, + "thread": 20 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 196639, + "thread": 12 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 357838, + "thread": 14 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 538063, + "thread": 5 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 661653, + "thread": 20 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 952080, + "thread": 21 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1040107, + "thread": 12 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1245611, + "thread": 1 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1319551, + "thread": 20 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1570159, + "thread": 8 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1688390, + "thread": 29 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1848300, + "thread": 24 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 1979085, + "thread": 19 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 2236749, + "thread": 31 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 2413628, + "thread": 17 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 2469273, + "thread": 27 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 2746953, + "thread": 16 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 2868234, + "thread": 13 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 3082991, + "thread": 23 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 3122474, + "thread": 20 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 3292441, + "thread": 19 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 3562380, + "thread": 7 + } + }, + { + "amount": "60.738305005", + "slot": { + "period": 3722255, + "thread": 3 + } + }, + { + "amount": "60.738304994", + "slot": { + "period": 3794869, + "thread": 8 + } + } + ], + "AU1EagC5iHN6h3VgLrJJHcdmS1DV7KG4or1vZjMhX5qsqvFCV5M2": [ + { + "amount": "52.378242015", + "slot": { + "period": 102199, + "thread": 29 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 298854, + "thread": 8 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 347159, + "thread": 5 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 536102, + "thread": 30 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 733019, + "thread": 4 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 834328, + "thread": 19 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 984007, + "thread": 3 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 1291483, + "thread": 14 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 1394651, + "thread": 19 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 1511227, + "thread": 2 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 1763256, + "thread": 22 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 1959218, + "thread": 10 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2000589, + "thread": 6 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2217537, + "thread": 19 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2360326, + "thread": 27 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2622866, + "thread": 12 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2764599, + "thread": 23 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 2850189, + "thread": 21 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 3099132, + "thread": 26 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 3145510, + "thread": 18 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 3396853, + "thread": 28 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 3549994, + "thread": 16 + } + }, + { + "amount": "52.378242015", + "slot": { + "period": 3667174, + "thread": 11 + } + }, + { + "amount": "52.378242025", + "slot": { + "period": 3811995, + "thread": 20 + } + } + ], + "AU1EaqbDZCKWQA2QjE5QVpZ7SGuNhYfzxP3kRjc2PrWvjkkreaUv": [ + { + "amount": "111.390028767", + "slot": { + "period": 131650, + "thread": 23 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 183299, + "thread": 1 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 384749, + "thread": 2 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 559687, + "thread": 24 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 669066, + "thread": 17 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 961131, + "thread": 17 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1081757, + "thread": 24 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1282343, + "thread": 27 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1402549, + "thread": 12 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1571336, + "thread": 19 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1798238, + "thread": 2 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 1932280, + "thread": 23 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2110877, + "thread": 4 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2270137, + "thread": 21 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2388951, + "thread": 3 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2491493, + "thread": 29 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2704002, + "thread": 1 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 2925889, + "thread": 29 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 3061365, + "thread": 18 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 3136618, + "thread": 12 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 3426660, + "thread": 9 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 3521596, + "thread": 11 + } + }, + { + "amount": "111.390028767", + "slot": { + "period": 3717349, + "thread": 24 + } + }, + { + "amount": "111.390028764", + "slot": { + "period": 3932592, + "thread": 3 + } + } + ], + "AU1EbL3gCJohoFq1CYeyXPTpXmqZ9A1ytVrZUfH7xUqAkDXwuCh5": [ + { + "amount": "97.235894473", + "slot": { + "period": 114683, + "thread": 7 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 223577, + "thread": 16 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 350312, + "thread": 22 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 556581, + "thread": 8 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 767264, + "thread": 5 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 953487, + "thread": 24 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 990815, + "thread": 10 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 1170820, + "thread": 16 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 1321946, + "thread": 31 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 1537127, + "thread": 12 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 1726162, + "thread": 3 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 1923335, + "thread": 27 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2114234, + "thread": 17 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2206108, + "thread": 17 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2393048, + "thread": 7 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2499410, + "thread": 6 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2757061, + "thread": 25 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 2854577, + "thread": 30 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 3081205, + "thread": 7 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 3288270, + "thread": 1 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 3349571, + "thread": 24 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 3524646, + "thread": 6 + } + }, + { + "amount": "97.235894473", + "slot": { + "period": 3690609, + "thread": 10 + } + }, + { + "amount": "97.235894483", + "slot": { + "period": 3925047, + "thread": 5 + } + } + ], + "AU1Ed23LyfoHMh1eVEukcFm9GnE7dgVFM1A3xkZrmYFFjgg3sVeZ": [ + { + "amount": "560.290965079", + "slot": { + "period": 98693, + "thread": 9 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 270152, + "thread": 24 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 449528, + "thread": 19 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 543687, + "thread": 5 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 676487, + "thread": 7 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 895510, + "thread": 31 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1076350, + "thread": 26 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1239200, + "thread": 3 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1375840, + "thread": 6 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1628510, + "thread": 26 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1661192, + "thread": 22 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1905913, + "thread": 23 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 1986339, + "thread": 27 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 2213031, + "thread": 21 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 2316762, + "thread": 22 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 2615306, + "thread": 19 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 2757957, + "thread": 17 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 2911974, + "thread": 6 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 3108594, + "thread": 20 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 3220695, + "thread": 22 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 3366154, + "thread": 0 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 3524321, + "thread": 8 + } + }, + { + "amount": "560.290965079", + "slot": { + "period": 3714799, + "thread": 13 + } + }, + { + "amount": "560.290965082", + "slot": { + "period": 3865019, + "thread": 20 + } + } + ], + "AU1EdAU6pbLfCJ3w9JKqLVwkmTAVf4WfMukTfLJnA2bqzFwXcW61": [ + { + "amount": "241.337298232", + "slot": { + "period": 105743, + "thread": 13 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 182960, + "thread": 25 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 465796, + "thread": 13 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 514118, + "thread": 7 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 778004, + "thread": 22 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 937766, + "thread": 12 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1100924, + "thread": 4 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1300872, + "thread": 19 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1404360, + "thread": 30 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1557493, + "thread": 25 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1721650, + "thread": 24 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 1931125, + "thread": 17 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2001984, + "thread": 10 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2256957, + "thread": 19 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2421849, + "thread": 3 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2505975, + "thread": 27 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2695205, + "thread": 7 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2942253, + "thread": 28 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 2955211, + "thread": 10 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 3136329, + "thread": 28 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 3332117, + "thread": 2 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 3560870, + "thread": 17 + } + }, + { + "amount": "241.337298232", + "slot": { + "period": 3683076, + "thread": 15 + } + }, + { + "amount": "241.337298233", + "slot": { + "period": 3887101, + "thread": 22 + } + } + ], + "AU1EdHKYhfQ7HcBbxuVyq5ky8XpbNgu1a5fLgvbFsBvJcaxxUQMW": [ + { + "amount": "160.964946750", + "slot": { + "period": 45058, + "thread": 30 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 233080, + "thread": 20 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 479615, + "thread": 27 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 651843, + "thread": 6 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 709948, + "thread": 12 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 945919, + "thread": 27 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1031663, + "thread": 10 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1309974, + "thread": 22 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1378319, + "thread": 10 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1643038, + "thread": 18 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1756369, + "thread": 0 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 1846088, + "thread": 20 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2050753, + "thread": 12 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2216873, + "thread": 2 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2447254, + "thread": 17 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2580431, + "thread": 31 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2654083, + "thread": 23 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2921246, + "thread": 11 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 2969955, + "thread": 7 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 3183199, + "thread": 1 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 3307772, + "thread": 12 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 3510948, + "thread": 0 + } + }, + { + "amount": "160.964946750", + "slot": { + "period": 3766807, + "thread": 23 + } + }, + { + "amount": "160.964946745", + "slot": { + "period": 3810627, + "thread": 30 + } + } + ], + "AU1EdNCWk5NHNj2cVabSKzMnsaDpTWDxvHWKFoZd2HnhZ7RBGSpH": [ + { + "amount": "590.655504118", + "slot": { + "period": 52034, + "thread": 12 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 202594, + "thread": 0 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 423996, + "thread": 21 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 621638, + "thread": 6 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 722534, + "thread": 12 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 958400, + "thread": 9 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1009460, + "thread": 23 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1194842, + "thread": 17 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1437164, + "thread": 7 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1535907, + "thread": 5 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1702403, + "thread": 24 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 1874208, + "thread": 30 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2041039, + "thread": 9 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2262504, + "thread": 13 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2395251, + "thread": 27 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2529058, + "thread": 22 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2734385, + "thread": 2 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2902770, + "thread": 0 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 2969856, + "thread": 22 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 3286031, + "thread": 5 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 3312422, + "thread": 29 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 3555937, + "thread": 22 + } + }, + { + "amount": "590.655504118", + "slot": { + "period": 3626035, + "thread": 24 + } + }, + { + "amount": "590.655504106", + "slot": { + "period": 3829420, + "thread": 21 + } + } + ], + "AU1EeCgnJdRxWvjxro1kjpa1qs8s9jaJuiVFace3bSKLeBReHZSn": [ + { + "amount": "87.111847894", + "slot": { + "period": 131147, + "thread": 26 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 300694, + "thread": 26 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 453182, + "thread": 8 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 591517, + "thread": 6 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 745989, + "thread": 19 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 852153, + "thread": 10 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1004475, + "thread": 1 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1212620, + "thread": 26 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1341277, + "thread": 24 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1601105, + "thread": 4 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1709476, + "thread": 27 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1936961, + "thread": 21 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 1976423, + "thread": 21 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 2281044, + "thread": 18 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 2313259, + "thread": 20 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 2499796, + "thread": 27 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 2652391, + "thread": 7 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 2864717, + "thread": 17 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 3003741, + "thread": 2 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 3135576, + "thread": 10 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 3346371, + "thread": 0 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 3510330, + "thread": 23 + } + }, + { + "amount": "87.111847894", + "slot": { + "period": 3769311, + "thread": 0 + } + }, + { + "amount": "87.111847887", + "slot": { + "period": 3877173, + "thread": 29 + } + } + ], + "AU1EeNjQmKeTAT8jhRpFf5Kotqqsp88wdh3w6Eo4ipNYJM3uoYRF": [ + { + "amount": "290.894286297", + "slot": { + "period": 75677, + "thread": 29 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 323570, + "thread": 25 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 364759, + "thread": 25 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 602686, + "thread": 18 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 815013, + "thread": 12 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 823332, + "thread": 31 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1012820, + "thread": 17 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1295096, + "thread": 10 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1391849, + "thread": 0 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1487165, + "thread": 4 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1661671, + "thread": 31 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1885079, + "thread": 4 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 1982933, + "thread": 14 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2194801, + "thread": 26 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2308396, + "thread": 1 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2564501, + "thread": 21 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2681707, + "thread": 12 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2894908, + "thread": 4 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 2959535, + "thread": 30 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 3156434, + "thread": 12 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 3303369, + "thread": 1 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 3557305, + "thread": 18 + } + }, + { + "amount": "290.894286297", + "slot": { + "period": 3642798, + "thread": 23 + } + }, + { + "amount": "290.894286294", + "slot": { + "period": 3839552, + "thread": 27 + } + } + ], + "AU1EfWeuPgeLB7FWcSP28iA6UGRZqgSYyLvd6Zo5GCEe8P8oeYCR": [ + { + "amount": "141.481211097", + "slot": { + "period": 92729, + "thread": 11 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 209136, + "thread": 2 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 428767, + "thread": 5 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 570473, + "thread": 1 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 670757, + "thread": 9 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 933694, + "thread": 26 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 994225, + "thread": 2 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 1184691, + "thread": 19 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 1389002, + "thread": 21 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 1529214, + "thread": 16 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 1740854, + "thread": 15 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 1886996, + "thread": 13 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2088151, + "thread": 24 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2228693, + "thread": 9 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2373551, + "thread": 9 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2495578, + "thread": 17 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2754400, + "thread": 17 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 2858404, + "thread": 2 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 3032989, + "thread": 3 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 3134637, + "thread": 9 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 3396822, + "thread": 0 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 3549901, + "thread": 25 + } + }, + { + "amount": "141.481211097", + "slot": { + "period": 3761245, + "thread": 12 + } + }, + { + "amount": "141.481211100", + "slot": { + "period": 3911252, + "thread": 20 + } + } + ], + "AU1Eff7vHoUVuUHQnXiMVgFX1NgxLJ6YBjMch7s5hPSpHMFjx3Ge": [ + { + "amount": "54.018656116", + "slot": { + "period": 69297, + "thread": 31 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 273019, + "thread": 14 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 454198, + "thread": 0 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 554927, + "thread": 0 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 701999, + "thread": 14 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 910677, + "thread": 7 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 994741, + "thread": 1 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1251726, + "thread": 8 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1344998, + "thread": 27 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1483092, + "thread": 11 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1772046, + "thread": 1 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1832340, + "thread": 19 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 1994610, + "thread": 2 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 2199089, + "thread": 19 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 2389654, + "thread": 20 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 2601703, + "thread": 14 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 2643753, + "thread": 28 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 2920877, + "thread": 9 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 3007035, + "thread": 29 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 3236346, + "thread": 25 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 3291170, + "thread": 11 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 3451917, + "thread": 14 + } + }, + { + "amount": "54.018656116", + "slot": { + "period": 3721455, + "thread": 23 + } + }, + { + "amount": "54.018656128", + "slot": { + "period": 3843954, + "thread": 31 + } + } + ], + "AU1Efvu4G8hDsN3wo7cgeFo5YAHQnZUjmVxm3sPxkCNqNBm2ijVu": [ + { + "amount": "499.102691794", + "slot": { + "period": 75611, + "thread": 15 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 265809, + "thread": 16 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 376385, + "thread": 10 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 648878, + "thread": 8 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 735224, + "thread": 3 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 924397, + "thread": 29 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1080063, + "thread": 7 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1262937, + "thread": 9 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1351361, + "thread": 4 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1640076, + "thread": 31 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1675934, + "thread": 25 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 1862595, + "thread": 24 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2072197, + "thread": 25 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2215638, + "thread": 28 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2422838, + "thread": 10 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2581324, + "thread": 2 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2732547, + "thread": 14 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2928988, + "thread": 6 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 2957144, + "thread": 0 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 3161060, + "thread": 8 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 3423030, + "thread": 24 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 3468917, + "thread": 20 + } + }, + { + "amount": "499.102691794", + "slot": { + "period": 3703565, + "thread": 23 + } + }, + { + "amount": "499.102691783", + "slot": { + "period": 3905947, + "thread": 28 + } + } + ], + "AU1EgGJAJNnhkdWUG3u2eWNrZfGbBMEzqSHJp41moDrtg8MiJyRC": [ + { + "amount": "388.763197101", + "slot": { + "period": 26736, + "thread": 31 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 297890, + "thread": 9 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 419961, + "thread": 1 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 566230, + "thread": 6 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 729991, + "thread": 22 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 867403, + "thread": 5 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 992416, + "thread": 7 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 1234566, + "thread": 22 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 1390180, + "thread": 21 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 1540919, + "thread": 30 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 1673710, + "thread": 12 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 1921088, + "thread": 17 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2103248, + "thread": 19 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2275227, + "thread": 17 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2457334, + "thread": 7 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2622445, + "thread": 3 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2708117, + "thread": 22 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 2915367, + "thread": 31 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 3084288, + "thread": 17 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 3164648, + "thread": 23 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 3299672, + "thread": 13 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 3509071, + "thread": 30 + } + }, + { + "amount": "388.763197101", + "slot": { + "period": 3697815, + "thread": 31 + } + }, + { + "amount": "388.763197110", + "slot": { + "period": 3916921, + "thread": 16 + } + } + ], + "AU1EgXRKAGqKQZ2GK2z7WkemxzfJBWVYj5pzLHTNdbBsXMwRfxX6": [ + { + "amount": "77.778289910", + "slot": { + "period": 64069, + "thread": 21 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 174702, + "thread": 25 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 415717, + "thread": 6 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 548009, + "thread": 23 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 762945, + "thread": 15 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 823937, + "thread": 3 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1046286, + "thread": 7 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1199739, + "thread": 12 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1474836, + "thread": 20 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1597359, + "thread": 6 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1651458, + "thread": 13 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 1956051, + "thread": 5 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2005424, + "thread": 23 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2286473, + "thread": 20 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2437296, + "thread": 29 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2507785, + "thread": 17 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2688076, + "thread": 14 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2875528, + "thread": 17 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 2957359, + "thread": 27 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 3225687, + "thread": 11 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 3310009, + "thread": 2 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 3454473, + "thread": 13 + } + }, + { + "amount": "77.778289910", + "slot": { + "period": 3680136, + "thread": 24 + } + }, + { + "amount": "77.778289919", + "slot": { + "period": 3893454, + "thread": 23 + } + } + ], + "AU1Eh1YVxNtFaC9J8zzpDq5CvdmwLxjrBt1hj6m2euWbQH1hna1z": [ + { + "amount": "395.233630410", + "slot": { + "period": 36829, + "thread": 20 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 169186, + "thread": 26 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 491298, + "thread": 27 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 585294, + "thread": 29 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 733075, + "thread": 15 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 869513, + "thread": 10 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1052459, + "thread": 20 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1181406, + "thread": 7 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1383960, + "thread": 30 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1571719, + "thread": 30 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1676956, + "thread": 7 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 1889596, + "thread": 29 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2026702, + "thread": 13 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2230650, + "thread": 14 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2392603, + "thread": 17 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2585764, + "thread": 31 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2685095, + "thread": 11 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 2796008, + "thread": 13 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 3109571, + "thread": 30 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 3192897, + "thread": 26 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 3418810, + "thread": 8 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 3494716, + "thread": 4 + } + }, + { + "amount": "395.233630410", + "slot": { + "period": 3774068, + "thread": 4 + } + }, + { + "amount": "395.233630422", + "slot": { + "period": 3810164, + "thread": 25 + } + } + ], + "AU1EhZp94AJbZcdXQsVbHGCKSxAiP6TeDXgjmeEYSZeFbhtF2eG4": [ + { + "amount": "202.969357758", + "slot": { + "period": 53899, + "thread": 24 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 217624, + "thread": 30 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 372718, + "thread": 0 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 620877, + "thread": 2 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 773239, + "thread": 1 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 838608, + "thread": 21 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1143989, + "thread": 3 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1259523, + "thread": 12 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1381406, + "thread": 12 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1555827, + "thread": 16 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1706577, + "thread": 19 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 1883311, + "thread": 1 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2061050, + "thread": 13 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2206127, + "thread": 19 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2354991, + "thread": 8 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2485089, + "thread": 11 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2781418, + "thread": 30 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 2939183, + "thread": 16 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 3066412, + "thread": 17 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 3261839, + "thread": 2 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 3377287, + "thread": 3 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 3466934, + "thread": 20 + } + }, + { + "amount": "202.969357758", + "slot": { + "period": 3738559, + "thread": 21 + } + }, + { + "amount": "202.969357757", + "slot": { + "period": 3845572, + "thread": 1 + } + } + ], + "AU1EjG3uWYazygXVFsJEuNPEZos7mw9jJmRho93zDtA6d7TVWixM": [ + { + "amount": "288.871095233", + "slot": { + "period": 144427, + "thread": 17 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 203413, + "thread": 30 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 453302, + "thread": 27 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 591258, + "thread": 4 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 665633, + "thread": 31 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 921683, + "thread": 22 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1014377, + "thread": 11 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1205539, + "thread": 5 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1465829, + "thread": 11 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1578196, + "thread": 6 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1717916, + "thread": 29 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 1913736, + "thread": 5 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2141075, + "thread": 24 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2166047, + "thread": 24 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2422463, + "thread": 30 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2485838, + "thread": 25 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2770019, + "thread": 27 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 2842906, + "thread": 19 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 3115929, + "thread": 29 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 3172143, + "thread": 29 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 3399849, + "thread": 26 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 3593846, + "thread": 27 + } + }, + { + "amount": "288.871095233", + "slot": { + "period": 3677987, + "thread": 27 + } + }, + { + "amount": "288.871095232", + "slot": { + "period": 3928771, + "thread": 28 + } + } + ], + "AU1EjeJzvpSg8Gza2ahDJCvXkbfSyxXhc4uYLnZpiwjVyN5E4Ls3": [ + { + "amount": "165.999717752", + "slot": { + "period": 137673, + "thread": 26 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 216887, + "thread": 31 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 391665, + "thread": 17 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 641424, + "thread": 21 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 657906, + "thread": 9 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 847450, + "thread": 11 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1060408, + "thread": 20 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1279179, + "thread": 27 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1448499, + "thread": 0 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1489844, + "thread": 26 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1788198, + "thread": 0 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1899182, + "thread": 1 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 1992105, + "thread": 0 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 2157359, + "thread": 28 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 2432941, + "thread": 6 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 2537580, + "thread": 29 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 2691587, + "thread": 13 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 2903588, + "thread": 3 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 3061090, + "thread": 2 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 3237892, + "thread": 6 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 3404332, + "thread": 22 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 3544250, + "thread": 27 + } + }, + { + "amount": "165.999717752", + "slot": { + "period": 3727965, + "thread": 18 + } + }, + { + "amount": "165.999717741", + "slot": { + "period": 3793472, + "thread": 8 + } + } + ], + "AU1EkWPwjs68VNB1gHpkeifwcpaGTYWFYG4z9vJRXePaYywa6SLb": [ + { + "amount": "146.219606611", + "slot": { + "period": 42101, + "thread": 6 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 260717, + "thread": 22 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 438438, + "thread": 16 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 635258, + "thread": 27 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 698770, + "thread": 19 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 928159, + "thread": 8 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 990815, + "thread": 23 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 1278643, + "thread": 1 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 1341381, + "thread": 8 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 1498075, + "thread": 7 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 1688941, + "thread": 7 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 1923209, + "thread": 30 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2059279, + "thread": 9 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2219223, + "thread": 30 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2309711, + "thread": 2 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2463846, + "thread": 21 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2629772, + "thread": 18 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 2832252, + "thread": 13 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 3106127, + "thread": 27 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 3183900, + "thread": 7 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 3356695, + "thread": 27 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 3605913, + "thread": 14 + } + }, + { + "amount": "146.219606611", + "slot": { + "period": 3699320, + "thread": 0 + } + }, + { + "amount": "146.219606621", + "slot": { + "period": 3898341, + "thread": 0 + } + } + ], + "AU1EmEhHmSZmvkkFvZYmi6dUoNKURyiSp4gCoM9vKtXLsTUySj96": [ + { + "amount": "355.117635724", + "slot": { + "period": 161253, + "thread": 30 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 199240, + "thread": 29 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 421164, + "thread": 28 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 525063, + "thread": 25 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 767837, + "thread": 4 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 966578, + "thread": 26 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1061835, + "thread": 6 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1191051, + "thread": 16 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1467126, + "thread": 31 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1642572, + "thread": 1 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1761710, + "thread": 7 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 1911893, + "thread": 30 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2023822, + "thread": 10 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2194905, + "thread": 6 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2306169, + "thread": 10 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2490444, + "thread": 5 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2646704, + "thread": 6 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 2847698, + "thread": 26 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 3109648, + "thread": 16 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 3229101, + "thread": 18 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 3435105, + "thread": 21 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 3534011, + "thread": 31 + } + }, + { + "amount": "355.117635724", + "slot": { + "period": 3716888, + "thread": 7 + } + }, + { + "amount": "355.117635713", + "slot": { + "period": 3927637, + "thread": 7 + } + } + ], + "AU1Ema36ZBbftwcUXhsSCaF9Hth8oN87mQXtaFw5HTadeTip4EGd": [ + { + "amount": "180.030060313", + "slot": { + "period": 127219, + "thread": 21 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 289766, + "thread": 24 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 389643, + "thread": 13 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 570921, + "thread": 0 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 749302, + "thread": 8 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 867333, + "thread": 22 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1132296, + "thread": 8 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1284889, + "thread": 8 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1404165, + "thread": 21 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1501576, + "thread": 7 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1687401, + "thread": 19 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 1966296, + "thread": 24 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2071394, + "thread": 16 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2194478, + "thread": 14 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2403627, + "thread": 23 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2601905, + "thread": 20 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2776688, + "thread": 16 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2813455, + "thread": 6 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 2985540, + "thread": 26 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 3214637, + "thread": 28 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 3348696, + "thread": 30 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 3519004, + "thread": 21 + } + }, + { + "amount": "180.030060313", + "slot": { + "period": 3755361, + "thread": 6 + } + }, + { + "amount": "180.030060310", + "slot": { + "period": 3880181, + "thread": 25 + } + } + ], + "AU1EnaQjaw5gSHFkgxASJEjjGgfdnFxeoezAmNZXN4sVJyVsXm8e": [ + { + "amount": "373.462087850", + "slot": { + "period": 164271, + "thread": 0 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 214504, + "thread": 2 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 356058, + "thread": 0 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 605340, + "thread": 27 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 725011, + "thread": 12 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 925026, + "thread": 11 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 993677, + "thread": 14 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 1256089, + "thread": 6 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 1463043, + "thread": 29 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 1573225, + "thread": 7 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 1664335, + "thread": 23 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 1926197, + "thread": 10 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2061891, + "thread": 2 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2163327, + "thread": 1 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2324799, + "thread": 31 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2610810, + "thread": 13 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2697690, + "thread": 10 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 2921863, + "thread": 18 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 3027560, + "thread": 10 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 3207718, + "thread": 20 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 3314486, + "thread": 1 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 3600891, + "thread": 0 + } + }, + { + "amount": "373.462087850", + "slot": { + "period": 3681415, + "thread": 5 + } + }, + { + "amount": "373.462087839", + "slot": { + "period": 3877833, + "thread": 3 + } + } + ], + "AU1EnjiETP9fohhQDh1G4i37PBxYLsgq42qFhNofWTDf5XzToLu8": [ + { + "amount": "330.035391597", + "slot": { + "period": 19798, + "thread": 15 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 242811, + "thread": 29 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 434515, + "thread": 29 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 576802, + "thread": 10 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 727477, + "thread": 13 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 854958, + "thread": 17 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1049535, + "thread": 28 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1185673, + "thread": 23 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1341883, + "thread": 20 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1565716, + "thread": 3 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1698443, + "thread": 29 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 1870615, + "thread": 31 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2130128, + "thread": 13 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2226496, + "thread": 12 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2360526, + "thread": 2 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2581874, + "thread": 16 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2759631, + "thread": 30 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 2827167, + "thread": 19 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 3007477, + "thread": 26 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 3192018, + "thread": 4 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 3378459, + "thread": 18 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 3554389, + "thread": 8 + } + }, + { + "amount": "330.035391597", + "slot": { + "period": 3766988, + "thread": 25 + } + }, + { + "amount": "330.035391588", + "slot": { + "period": 3865122, + "thread": 18 + } + } + ], + "AU1EnrtRgJPQa6bdz7USsnnZi6nwNraWjhH7i3X8LCVccARA1WjB": [ + { + "amount": "229.897928061", + "slot": { + "period": 149613, + "thread": 20 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 204588, + "thread": 15 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 455750, + "thread": 22 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 631298, + "thread": 5 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 764348, + "thread": 27 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 946022, + "thread": 22 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1128917, + "thread": 15 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1302424, + "thread": 7 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1348127, + "thread": 0 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1629637, + "thread": 4 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1752420, + "thread": 3 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 1893033, + "thread": 12 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2079881, + "thread": 3 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2163232, + "thread": 27 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2409485, + "thread": 19 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2519396, + "thread": 17 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2637044, + "thread": 21 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2875709, + "thread": 5 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 2960387, + "thread": 15 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 3246567, + "thread": 31 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 3439020, + "thread": 21 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 3563508, + "thread": 11 + } + }, + { + "amount": "229.897928061", + "slot": { + "period": 3636432, + "thread": 14 + } + }, + { + "amount": "229.897928059", + "slot": { + "period": 3905558, + "thread": 3 + } + } + ], + "AU1EoXLE9L8Zmd5vZQGG8t5tvhPkSi8xKcfcyBVf9MvARHsVVNuC": [ + { + "amount": "208.545618934", + "slot": { + "period": 48611, + "thread": 23 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 291266, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 366843, + "thread": 8 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 535826, + "thread": 28 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 737422, + "thread": 4 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 861610, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 982815, + "thread": 31 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 1298967, + "thread": 23 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 1367666, + "thread": 31 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 1594338, + "thread": 22 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 1769083, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 1907849, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2045541, + "thread": 11 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2209020, + "thread": 20 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2308889, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2557438, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2671046, + "thread": 22 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 2863079, + "thread": 29 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 3082593, + "thread": 4 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 3137706, + "thread": 21 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 3444640, + "thread": 25 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 3511461, + "thread": 26 + } + }, + { + "amount": "208.545618934", + "slot": { + "period": 3753839, + "thread": 11 + } + }, + { + "amount": "208.545618923", + "slot": { + "period": 3930005, + "thread": 8 + } + } + ], + "AU1EoeQnY5xs9mYCJcUnd58uJg3nyJEgdWjfQWED4J9EiwpsKbcH": [ + { + "amount": "356.648489197", + "slot": { + "period": 135732, + "thread": 21 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 261228, + "thread": 5 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 421878, + "thread": 20 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 618979, + "thread": 2 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 774170, + "thread": 1 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 840408, + "thread": 5 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1098882, + "thread": 12 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1234737, + "thread": 12 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1350344, + "thread": 18 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1514558, + "thread": 30 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1794562, + "thread": 26 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1880773, + "thread": 29 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 1982402, + "thread": 31 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2238428, + "thread": 31 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2449892, + "thread": 8 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2473073, + "thread": 29 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2720805, + "thread": 10 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2810550, + "thread": 9 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 2969683, + "thread": 6 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 3271716, + "thread": 2 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 3329943, + "thread": 13 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 3508656, + "thread": 24 + } + }, + { + "amount": "356.648489197", + "slot": { + "period": 3679446, + "thread": 8 + } + }, + { + "amount": "356.648489198", + "slot": { + "period": 3814422, + "thread": 10 + } + } + ], + "AU1EpLY3cTvWrXBojzLdkWzcqKnwhoJrRsBBnVe2v8e8b2KK4LFP": [ + { + "amount": "156.468968924", + "slot": { + "period": 15022, + "thread": 12 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 169401, + "thread": 6 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 456524, + "thread": 5 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 599719, + "thread": 20 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 793600, + "thread": 14 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 888061, + "thread": 21 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 987348, + "thread": 25 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1268164, + "thread": 7 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1426535, + "thread": 22 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1548518, + "thread": 19 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1789381, + "thread": 22 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1973154, + "thread": 5 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 1991717, + "thread": 22 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 2286298, + "thread": 27 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 2417788, + "thread": 15 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 2584633, + "thread": 9 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 2628649, + "thread": 30 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 2929988, + "thread": 12 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 3117480, + "thread": 27 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 3286908, + "thread": 12 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 3388516, + "thread": 26 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 3479959, + "thread": 26 + } + }, + { + "amount": "156.468968924", + "slot": { + "period": 3703842, + "thread": 1 + } + }, + { + "amount": "156.468968926", + "slot": { + "period": 3832777, + "thread": 26 + } + } + ], + "AU1EpMiNUo6bTK2yZnMnDa5NLDwCNgFzN1Jx6s6Wr86yhVvNK3Hw": [ + { + "amount": "141.763345960", + "slot": { + "period": 139681, + "thread": 6 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 310124, + "thread": 23 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 440562, + "thread": 20 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 591410, + "thread": 9 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 719545, + "thread": 15 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 934502, + "thread": 0 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1125291, + "thread": 18 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1197387, + "thread": 21 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1469608, + "thread": 0 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1626336, + "thread": 6 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1776197, + "thread": 18 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 1889375, + "thread": 27 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2124783, + "thread": 5 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2266846, + "thread": 13 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2419230, + "thread": 6 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2556049, + "thread": 16 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2715235, + "thread": 29 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2886693, + "thread": 5 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 2986865, + "thread": 30 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 3273792, + "thread": 18 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 3393749, + "thread": 12 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 3485444, + "thread": 31 + } + }, + { + "amount": "141.763345960", + "slot": { + "period": 3691041, + "thread": 25 + } + }, + { + "amount": "141.763345957", + "slot": { + "period": 3894191, + "thread": 22 + } + } + ], + "AU1EpV1JcwK3752fyfEv96QLo2qfPpYGUo9uYXgtyxFoC42rJXLU": [ + { + "amount": "405.879078731", + "slot": { + "period": 49159, + "thread": 7 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 230673, + "thread": 17 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 417266, + "thread": 25 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 500171, + "thread": 17 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 670816, + "thread": 17 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 947798, + "thread": 29 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 989543, + "thread": 6 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 1151625, + "thread": 19 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 1400273, + "thread": 5 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 1492146, + "thread": 24 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 1672788, + "thread": 8 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 1851459, + "thread": 13 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2082973, + "thread": 20 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2177188, + "thread": 3 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2410746, + "thread": 6 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2581204, + "thread": 9 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2676444, + "thread": 22 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 2848335, + "thread": 11 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 3059619, + "thread": 7 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 3233076, + "thread": 23 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 3351615, + "thread": 10 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 3503807, + "thread": 2 + } + }, + { + "amount": "405.879078731", + "slot": { + "period": 3624515, + "thread": 16 + } + }, + { + "amount": "405.879078732", + "slot": { + "period": 3795449, + "thread": 1 + } + } + ], + "AU1EqF6bTT65wmZ9DWrKEHJDG5fjqxDWFYq3e1qr92Te7RecUu4U": [ + { + "amount": "128.777911564", + "slot": { + "period": 26706, + "thread": 18 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 188474, + "thread": 27 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 346735, + "thread": 26 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 531207, + "thread": 16 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 747192, + "thread": 23 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 903399, + "thread": 13 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 993454, + "thread": 11 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 1218406, + "thread": 2 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 1377577, + "thread": 31 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 1539823, + "thread": 29 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 1725417, + "thread": 22 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 1867204, + "thread": 25 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2061749, + "thread": 17 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2149089, + "thread": 30 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2339675, + "thread": 30 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2550244, + "thread": 29 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2712598, + "thread": 1 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 2853769, + "thread": 18 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 3003756, + "thread": 10 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 3159394, + "thread": 18 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 3290020, + "thread": 31 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 3610825, + "thread": 24 + } + }, + { + "amount": "128.777911564", + "slot": { + "period": 3777857, + "thread": 29 + } + }, + { + "amount": "128.777911574", + "slot": { + "period": 3883795, + "thread": 21 + } + } + ], + "AU1EqxUHKSDbb8wgDpsv1jg7aRQuR8MgUYNvSq2paG5LEZUN53S4": [ + { + "amount": "168.659196070", + "slot": { + "period": 142515, + "thread": 19 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 227260, + "thread": 0 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 367446, + "thread": 11 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 609511, + "thread": 17 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 717750, + "thread": 29 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 932953, + "thread": 15 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1110284, + "thread": 25 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1291116, + "thread": 3 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1440431, + "thread": 12 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1561469, + "thread": 13 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1772743, + "thread": 4 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 1889342, + "thread": 15 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2055845, + "thread": 4 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2178118, + "thread": 11 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2401101, + "thread": 7 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2497073, + "thread": 7 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2664252, + "thread": 11 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2812180, + "thread": 27 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 2957595, + "thread": 27 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 3275988, + "thread": 18 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 3374426, + "thread": 13 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 3598692, + "thread": 31 + } + }, + { + "amount": "168.659196070", + "slot": { + "period": 3689713, + "thread": 6 + } + }, + { + "amount": "168.659196082", + "slot": { + "period": 3806467, + "thread": 19 + } + } + ], + "AU1EsVVSoqJCJdVuYNKdwVhbpsGe1d6reUiQiEAPMgQzeJnBN7te": [ + { + "amount": "316.552993322", + "slot": { + "period": 119911, + "thread": 26 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 206898, + "thread": 10 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 396172, + "thread": 10 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 627934, + "thread": 18 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 814834, + "thread": 23 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 904267, + "thread": 30 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1120800, + "thread": 27 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1248410, + "thread": 18 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1341228, + "thread": 1 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1588802, + "thread": 18 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1668242, + "thread": 12 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 1868270, + "thread": 19 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2034734, + "thread": 28 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2189937, + "thread": 2 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2297354, + "thread": 25 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2531082, + "thread": 16 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2661400, + "thread": 29 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 2841814, + "thread": 12 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 3023747, + "thread": 22 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 3239084, + "thread": 21 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 3293244, + "thread": 18 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 3585939, + "thread": 2 + } + }, + { + "amount": "316.552993322", + "slot": { + "period": 3752348, + "thread": 4 + } + }, + { + "amount": "316.552993333", + "slot": { + "period": 3899606, + "thread": 6 + } + } + ], + "AU1EtNDmmmTV965AeFXe8d6HtJn7K9J2iNWibWNcEXnaRfw9NDqJ": [ + { + "amount": "273.767063568", + "slot": { + "period": 99617, + "thread": 19 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 294906, + "thread": 6 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 386770, + "thread": 29 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 642872, + "thread": 7 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 810396, + "thread": 10 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 938935, + "thread": 23 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1044095, + "thread": 3 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1258507, + "thread": 2 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1455093, + "thread": 30 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1577118, + "thread": 24 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1700647, + "thread": 26 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 1942421, + "thread": 27 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2047369, + "thread": 31 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2190061, + "thread": 21 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2398286, + "thread": 1 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2602831, + "thread": 6 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2699078, + "thread": 9 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 2884161, + "thread": 30 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 3035765, + "thread": 0 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 3261898, + "thread": 29 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 3311121, + "thread": 12 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 3588939, + "thread": 18 + } + }, + { + "amount": "273.767063568", + "slot": { + "period": 3775293, + "thread": 2 + } + }, + { + "amount": "273.767063560", + "slot": { + "period": 3878287, + "thread": 1 + } + } + ], + "AU1Etb8Uy3tChSoGtXxLfXRVC6KAcwTAk4QfqW3QnVZU3Lf4NYhw": [ + { + "amount": "154.972792292", + "slot": { + "period": 45343, + "thread": 3 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 218811, + "thread": 1 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 428622, + "thread": 31 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 511143, + "thread": 21 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 743159, + "thread": 8 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 861651, + "thread": 1 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1051175, + "thread": 20 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1190760, + "thread": 14 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1456241, + "thread": 3 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1633899, + "thread": 4 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1725893, + "thread": 3 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 1888856, + "thread": 7 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2032384, + "thread": 1 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2237357, + "thread": 13 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2387100, + "thread": 16 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2606495, + "thread": 20 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2762910, + "thread": 15 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 2931624, + "thread": 6 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 3008136, + "thread": 4 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 3147830, + "thread": 15 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 3386129, + "thread": 0 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 3530571, + "thread": 18 + } + }, + { + "amount": "154.972792292", + "slot": { + "period": 3687091, + "thread": 9 + } + }, + { + "amount": "154.972792304", + "slot": { + "period": 3863818, + "thread": 11 + } + } + ], + "AU1EuR3P2kfCJAmV6KFNcBWSGxa28a43TM4qdGkgg7XCnNohySPY": [ + { + "amount": "222.562072568", + "slot": { + "period": 41927, + "thread": 1 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 193606, + "thread": 28 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 450799, + "thread": 28 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 616707, + "thread": 13 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 752103, + "thread": 30 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 919840, + "thread": 28 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 984737, + "thread": 9 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1244535, + "thread": 8 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1328473, + "thread": 23 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1610586, + "thread": 0 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1724569, + "thread": 31 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1833909, + "thread": 19 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 1983394, + "thread": 5 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2167542, + "thread": 15 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2328683, + "thread": 7 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2518243, + "thread": 30 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2641481, + "thread": 9 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2820489, + "thread": 13 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 2983212, + "thread": 19 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 3133220, + "thread": 15 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 3407690, + "thread": 28 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 3613075, + "thread": 8 + } + }, + { + "amount": "222.562072568", + "slot": { + "period": 3681961, + "thread": 9 + } + }, + { + "amount": "222.562072560", + "slot": { + "period": 3862675, + "thread": 5 + } + } + ], + "AU1EuscmncLiXQ3VXbd2k33dV1fWioRhggTHiYNPRoyavYyNbeHV": [ + { + "amount": "202.947336398", + "slot": { + "period": 81982, + "thread": 11 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 321784, + "thread": 12 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 435198, + "thread": 30 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 519632, + "thread": 25 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 741302, + "thread": 29 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 936753, + "thread": 21 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1007740, + "thread": 4 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1221963, + "thread": 3 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1430915, + "thread": 28 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1646150, + "thread": 7 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1721847, + "thread": 18 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 1837553, + "thread": 2 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2020311, + "thread": 18 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2224521, + "thread": 22 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2342430, + "thread": 19 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2524029, + "thread": 23 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2786028, + "thread": 9 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 2869764, + "thread": 24 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 3036640, + "thread": 31 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 3178658, + "thread": 27 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 3413562, + "thread": 14 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 3462537, + "thread": 8 + } + }, + { + "amount": "202.947336398", + "slot": { + "period": 3676828, + "thread": 17 + } + }, + { + "amount": "202.947336405", + "slot": { + "period": 3797424, + "thread": 20 + } + } + ], + "AU1EvshWw6g19K2VEqDZ8oU29i728xnZf6vgXUP9yEJ9oWFNoUj6": [ + { + "amount": "52.689931757", + "slot": { + "period": 111014, + "thread": 13 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 251877, + "thread": 5 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 380105, + "thread": 0 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 631988, + "thread": 18 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 722318, + "thread": 25 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 874019, + "thread": 15 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1086444, + "thread": 29 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1233259, + "thread": 18 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1358500, + "thread": 26 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1575051, + "thread": 8 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1650019, + "thread": 3 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 1871833, + "thread": 8 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2126370, + "thread": 6 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2288663, + "thread": 18 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2347974, + "thread": 23 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2520457, + "thread": 14 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2760224, + "thread": 14 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 2893848, + "thread": 19 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 3003613, + "thread": 20 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 3155986, + "thread": 31 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 3384805, + "thread": 20 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 3555801, + "thread": 24 + } + }, + { + "amount": "52.689931757", + "slot": { + "period": 3687289, + "thread": 25 + } + }, + { + "amount": "52.689931768", + "slot": { + "period": 3882737, + "thread": 16 + } + } + ], + "AU1EwAfx7ckfMxzySMkw8RtefXDbRbmLbPyt98gxGFaDuxnVUu3i": [ + { + "amount": "144.983960951", + "slot": { + "period": 21369, + "thread": 6 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 228105, + "thread": 7 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 448914, + "thread": 14 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 548623, + "thread": 28 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 712699, + "thread": 28 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 824978, + "thread": 29 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1006666, + "thread": 8 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1303582, + "thread": 25 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1470163, + "thread": 7 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1580592, + "thread": 0 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1747765, + "thread": 9 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 1872262, + "thread": 19 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2066244, + "thread": 7 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2269787, + "thread": 14 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2387846, + "thread": 3 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2470476, + "thread": 25 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2698706, + "thread": 16 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2862898, + "thread": 17 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 2990251, + "thread": 28 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 3209905, + "thread": 25 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 3398930, + "thread": 12 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 3555622, + "thread": 30 + } + }, + { + "amount": "144.983960951", + "slot": { + "period": 3677127, + "thread": 19 + } + }, + { + "amount": "144.983960947", + "slot": { + "period": 3822541, + "thread": 14 + } + } + ], + "AU1EwDYVhNHN9eMcw3fahKkebE3J8muyzS5zW6fsSX1EERTrYK4b": [ + { + "amount": "309.119194016", + "slot": { + "period": 25776, + "thread": 9 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 273400, + "thread": 14 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 449418, + "thread": 5 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 607428, + "thread": 11 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 667478, + "thread": 23 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 971592, + "thread": 22 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 984650, + "thread": 1 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 1218947, + "thread": 9 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 1374143, + "thread": 7 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 1583637, + "thread": 25 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 1657746, + "thread": 18 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 1899372, + "thread": 13 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2115417, + "thread": 2 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2152635, + "thread": 18 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2422606, + "thread": 20 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2609079, + "thread": 6 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2782269, + "thread": 18 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2835507, + "thread": 31 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 2988883, + "thread": 0 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 3161703, + "thread": 20 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 3331951, + "thread": 21 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 3475942, + "thread": 11 + } + }, + { + "amount": "309.119194016", + "slot": { + "period": 3737578, + "thread": 18 + } + }, + { + "amount": "309.119194021", + "slot": { + "period": 3854767, + "thread": 7 + } + } + ], + "AU1Ewi3wy9g1BDSEXTrRyo9dxjpXi9qk89c56uYsUAr1SNm7Y2Ep": [ + { + "amount": "465.186344653", + "slot": { + "period": 115823, + "thread": 8 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 311482, + "thread": 18 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 456487, + "thread": 18 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 492523, + "thread": 29 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 675997, + "thread": 20 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 849334, + "thread": 29 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1116704, + "thread": 24 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1172032, + "thread": 16 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1355416, + "thread": 3 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1538825, + "thread": 3 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1705079, + "thread": 16 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 1859643, + "thread": 16 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2140019, + "thread": 16 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2282237, + "thread": 21 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2430129, + "thread": 12 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2466763, + "thread": 25 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2727352, + "thread": 12 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 2913694, + "thread": 10 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 3090459, + "thread": 5 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 3178650, + "thread": 20 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 3375894, + "thread": 20 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 3452994, + "thread": 8 + } + }, + { + "amount": "465.186344653", + "slot": { + "period": 3656850, + "thread": 12 + } + }, + { + "amount": "465.186344661", + "slot": { + "period": 3908968, + "thread": 21 + } + } + ], + "AU1EwpEYxz9dD6ZLVoHqiX5NFM66eJEhh5f1r75aX2w97S3r61AA": [ + { + "amount": "176.792937022", + "slot": { + "period": 111966, + "thread": 10 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 194153, + "thread": 3 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 329273, + "thread": 11 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 616162, + "thread": 15 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 816174, + "thread": 2 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 918286, + "thread": 24 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1107348, + "thread": 15 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1193223, + "thread": 9 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1434661, + "thread": 3 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1502796, + "thread": 28 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1783826, + "thread": 21 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 1914848, + "thread": 0 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2051152, + "thread": 24 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2165620, + "thread": 2 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2386895, + "thread": 7 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2498397, + "thread": 16 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2645008, + "thread": 4 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2813999, + "thread": 3 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 2968003, + "thread": 12 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 3179413, + "thread": 13 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 3448459, + "thread": 24 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 3552604, + "thread": 21 + } + }, + { + "amount": "176.792937022", + "slot": { + "period": 3653262, + "thread": 20 + } + }, + { + "amount": "176.792937030", + "slot": { + "period": 3927726, + "thread": 1 + } + } + ], + "AU1EwuNkzdvDQv4AriJA64MrXDcRTwNUheo3QHvQBscnps4VGPHP": [ + { + "amount": "229.221643747", + "slot": { + "period": 86563, + "thread": 0 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 212491, + "thread": 14 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 404912, + "thread": 27 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 630419, + "thread": 28 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 719939, + "thread": 21 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 904394, + "thread": 16 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1069746, + "thread": 17 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1286832, + "thread": 12 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1381200, + "thread": 23 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1503505, + "thread": 31 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1749980, + "thread": 19 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 1966510, + "thread": 20 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2048209, + "thread": 18 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2246826, + "thread": 15 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2337556, + "thread": 11 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2470590, + "thread": 16 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2630624, + "thread": 30 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 2948479, + "thread": 21 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 3093160, + "thread": 26 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 3272550, + "thread": 26 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 3330730, + "thread": 31 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 3556411, + "thread": 9 + } + }, + { + "amount": "229.221643747", + "slot": { + "period": 3732594, + "thread": 4 + } + }, + { + "amount": "229.221643748", + "slot": { + "period": 3849939, + "thread": 26 + } + } + ], + "AU1ExFVuNRVEvbZo63UeDdNJj5MhrGtHJzcMnEHPdqSQq4Snut37": [ + { + "amount": "342.259878442", + "slot": { + "period": 112035, + "thread": 1 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 261856, + "thread": 7 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 348155, + "thread": 31 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 603370, + "thread": 0 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 813391, + "thread": 14 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 968419, + "thread": 25 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1144521, + "thread": 16 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1207085, + "thread": 6 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1349387, + "thread": 23 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1505170, + "thread": 12 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1687000, + "thread": 26 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 1814387, + "thread": 4 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2134944, + "thread": 0 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2246898, + "thread": 18 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2349491, + "thread": 15 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2550824, + "thread": 4 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2654965, + "thread": 11 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 2917540, + "thread": 3 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 3049515, + "thread": 26 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 3188611, + "thread": 27 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 3419119, + "thread": 0 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 3598789, + "thread": 30 + } + }, + { + "amount": "342.259878442", + "slot": { + "period": 3746903, + "thread": 23 + } + }, + { + "amount": "342.259878445", + "slot": { + "period": 3821174, + "thread": 28 + } + } + ], + "AU1EyBuFhTMM38gufFq7tRbRG7HZ1sMhoXFnakRNigrVw1VviM7H": [ + { + "amount": "601.443751257", + "slot": { + "period": 106811, + "thread": 19 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 280126, + "thread": 18 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 424993, + "thread": 5 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 552223, + "thread": 12 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 724937, + "thread": 26 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 923146, + "thread": 7 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 989814, + "thread": 4 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1262100, + "thread": 12 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1425875, + "thread": 5 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1563735, + "thread": 2 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1749391, + "thread": 18 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1854954, + "thread": 6 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 1983417, + "thread": 20 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 2273466, + "thread": 3 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 2319148, + "thread": 13 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 2464955, + "thread": 19 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 2667791, + "thread": 2 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 2824627, + "thread": 2 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 3047717, + "thread": 0 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 3122568, + "thread": 4 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 3313365, + "thread": 29 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 3580997, + "thread": 17 + } + }, + { + "amount": "601.443751257", + "slot": { + "period": 3712753, + "thread": 4 + } + }, + { + "amount": "601.443751254", + "slot": { + "period": 3827557, + "thread": 7 + } + } + ], + "AU1EzMz5n488Z1iqEBu8dvuNdUgixB9uRU6tZ8by1GbKU9UhxW7h": [ + { + "amount": "120.803735252", + "slot": { + "period": 123755, + "thread": 17 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 308592, + "thread": 18 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 407389, + "thread": 8 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 609989, + "thread": 3 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 731220, + "thread": 0 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 922691, + "thread": 7 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1042844, + "thread": 18 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1299740, + "thread": 10 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1412831, + "thread": 23 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1539904, + "thread": 20 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1749415, + "thread": 23 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 1878299, + "thread": 5 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2060692, + "thread": 28 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2177051, + "thread": 29 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2376444, + "thread": 11 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2469032, + "thread": 2 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2730109, + "thread": 31 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 2914464, + "thread": 5 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 3048441, + "thread": 21 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 3177630, + "thread": 20 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 3288673, + "thread": 5 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 3605707, + "thread": 1 + } + }, + { + "amount": "120.803735252", + "slot": { + "period": 3638021, + "thread": 29 + } + }, + { + "amount": "120.803735249", + "slot": { + "period": 3896207, + "thread": 10 + } + } + ], + "AU1F1eHFNfxcTQ64zAmYDDikxTmtAGqmGXWkrEkc1MqawazpGUVX": [ + { + "amount": "611.482753626", + "slot": { + "period": 11515, + "thread": 19 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 293001, + "thread": 7 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 463059, + "thread": 18 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 536632, + "thread": 0 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 685252, + "thread": 8 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 904768, + "thread": 23 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1114683, + "thread": 15 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1247886, + "thread": 25 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1468804, + "thread": 15 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1514556, + "thread": 24 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1664595, + "thread": 2 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 1886850, + "thread": 7 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2110220, + "thread": 27 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2169455, + "thread": 13 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2356966, + "thread": 9 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2606807, + "thread": 29 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2651461, + "thread": 21 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 2919053, + "thread": 15 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 3052730, + "thread": 2 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 3262423, + "thread": 6 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 3378282, + "thread": 2 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 3463223, + "thread": 23 + } + }, + { + "amount": "611.482753626", + "slot": { + "period": 3774201, + "thread": 21 + } + }, + { + "amount": "611.482753631", + "slot": { + "period": 3886370, + "thread": 13 + } + } + ], + "AU1F1gFJYrnkDppUKsj7CFXUv36UeYMQ3iH4YeJHU13ciXmqKEsr": [ + { + "amount": "616.033103921", + "slot": { + "period": 13198, + "thread": 23 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 255496, + "thread": 1 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 483740, + "thread": 31 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 653036, + "thread": 23 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 677039, + "thread": 5 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 857967, + "thread": 16 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1001283, + "thread": 2 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1194671, + "thread": 6 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1425909, + "thread": 22 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1497883, + "thread": 10 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1757617, + "thread": 13 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 1851802, + "thread": 7 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2130550, + "thread": 2 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2169552, + "thread": 30 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2424428, + "thread": 22 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2507196, + "thread": 7 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2694038, + "thread": 24 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2811756, + "thread": 13 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 2960816, + "thread": 9 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 3122814, + "thread": 8 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 3443433, + "thread": 1 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 3457282, + "thread": 20 + } + }, + { + "amount": "616.033103921", + "slot": { + "period": 3685712, + "thread": 8 + } + }, + { + "amount": "616.033103930", + "slot": { + "period": 3947380, + "thread": 4 + } + } + ], + "AU1F2Meisgf3qZyYZYfTzAhLvUowcesbpdTCCHf4BETb2Vi6oWYR": [ + { + "amount": "163.317908655", + "slot": { + "period": 126253, + "thread": 23 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 257310, + "thread": 2 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 439001, + "thread": 19 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 573854, + "thread": 7 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 774169, + "thread": 5 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 884968, + "thread": 18 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1006688, + "thread": 18 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1205379, + "thread": 27 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1367175, + "thread": 19 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1518457, + "thread": 18 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1781340, + "thread": 10 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 1906290, + "thread": 12 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2075145, + "thread": 3 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2266868, + "thread": 13 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2324667, + "thread": 6 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2610325, + "thread": 6 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2735027, + "thread": 15 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2857489, + "thread": 0 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 2977234, + "thread": 24 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 3264147, + "thread": 3 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 3403740, + "thread": 14 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 3531950, + "thread": 31 + } + }, + { + "amount": "163.317908655", + "slot": { + "period": 3698066, + "thread": 7 + } + }, + { + "amount": "163.317908665", + "slot": { + "period": 3904843, + "thread": 5 + } + } + ], + "AU1F4AjhixNADAjemsgqZMhwFfDsJiKe2eWJDtUMFwdBq7ps8asB": [ + { + "amount": "57.611410312", + "slot": { + "period": 115178, + "thread": 23 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 234180, + "thread": 23 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 335437, + "thread": 0 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 576241, + "thread": 19 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 672197, + "thread": 20 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 922740, + "thread": 31 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1055666, + "thread": 9 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1175504, + "thread": 23 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1462302, + "thread": 11 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1567928, + "thread": 11 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1669436, + "thread": 16 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 1881447, + "thread": 12 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2143555, + "thread": 6 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2212032, + "thread": 28 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2369086, + "thread": 27 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2597466, + "thread": 29 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2747816, + "thread": 3 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 2826024, + "thread": 7 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 3000123, + "thread": 30 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 3145596, + "thread": 6 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 3417087, + "thread": 23 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 3584056, + "thread": 15 + } + }, + { + "amount": "57.611410312", + "slot": { + "period": 3769264, + "thread": 23 + } + }, + { + "amount": "57.611410308", + "slot": { + "period": 3937573, + "thread": 18 + } + } + ], + "AU1F4By4cJYtY7BXyK6zXgkVvp6jDH4vSdPtgXBuhebtZiQeKN2Z": [ + { + "amount": "363.264558754", + "slot": { + "period": 41904, + "thread": 10 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 217766, + "thread": 2 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 399628, + "thread": 18 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 551578, + "thread": 15 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 778102, + "thread": 14 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 950793, + "thread": 28 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1059782, + "thread": 6 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1201673, + "thread": 18 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1339765, + "thread": 8 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1605662, + "thread": 19 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1685171, + "thread": 16 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 1919721, + "thread": 28 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2015863, + "thread": 10 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2232511, + "thread": 23 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2327293, + "thread": 20 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2462769, + "thread": 12 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2639761, + "thread": 0 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2856603, + "thread": 19 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 2964651, + "thread": 4 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 3136995, + "thread": 6 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 3438168, + "thread": 1 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 3564023, + "thread": 7 + } + }, + { + "amount": "363.264558754", + "slot": { + "period": 3773203, + "thread": 17 + } + }, + { + "amount": "363.264558758", + "slot": { + "period": 3907102, + "thread": 6 + } + } + ], + "AU1F5D7XATdmFqXGqMjYuMWhKkJMsJNbVSQZ2RFiU5rYWnRDXKJq": [ + { + "amount": "190.127463247", + "slot": { + "period": 48135, + "thread": 17 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 291520, + "thread": 14 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 387674, + "thread": 8 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 616637, + "thread": 25 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 664090, + "thread": 16 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 861189, + "thread": 19 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1055965, + "thread": 15 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1207706, + "thread": 26 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1443605, + "thread": 0 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1591604, + "thread": 22 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1761099, + "thread": 8 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 1890655, + "thread": 2 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2124763, + "thread": 12 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2264257, + "thread": 14 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2327279, + "thread": 28 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2587433, + "thread": 20 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2762876, + "thread": 23 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 2862934, + "thread": 9 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 3064622, + "thread": 16 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 3261091, + "thread": 11 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 3410965, + "thread": 29 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 3598551, + "thread": 27 + } + }, + { + "amount": "190.127463247", + "slot": { + "period": 3724808, + "thread": 7 + } + }, + { + "amount": "190.127463244", + "slot": { + "period": 3853552, + "thread": 16 + } + } + ], + "AU1F5Yg3EVpyapu5CKN2ANwuNPcN2q3wCmdfFYhynwrXCHeYBsEz": [ + { + "amount": "195.690079183", + "slot": { + "period": 153480, + "thread": 3 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 315258, + "thread": 29 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 466089, + "thread": 27 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 605305, + "thread": 19 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 810434, + "thread": 22 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 886474, + "thread": 29 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1008753, + "thread": 0 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1239050, + "thread": 30 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1342796, + "thread": 25 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1558094, + "thread": 4 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1659612, + "thread": 7 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 1859920, + "thread": 1 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2069893, + "thread": 11 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2225379, + "thread": 26 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2343411, + "thread": 4 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2561874, + "thread": 25 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2673862, + "thread": 26 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 2900791, + "thread": 25 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 3023490, + "thread": 31 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 3148322, + "thread": 24 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 3321690, + "thread": 23 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 3610535, + "thread": 21 + } + }, + { + "amount": "195.690079183", + "slot": { + "period": 3668212, + "thread": 0 + } + }, + { + "amount": "195.690079173", + "slot": { + "period": 3826301, + "thread": 24 + } + } + ], + "AU1F6AqkbWYh7af9ZQsAqA924NZt9EsmRFqhJrVfKV8gmp42RZE3": [ + { + "amount": "464.026445485", + "slot": { + "period": 96019, + "thread": 11 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 237258, + "thread": 22 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 408685, + "thread": 17 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 545809, + "thread": 26 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 745928, + "thread": 15 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 848356, + "thread": 18 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1096632, + "thread": 8 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1304351, + "thread": 26 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1340632, + "thread": 30 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1622411, + "thread": 1 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1655627, + "thread": 10 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 1823092, + "thread": 16 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2051487, + "thread": 25 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2233500, + "thread": 29 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2387580, + "thread": 9 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2501938, + "thread": 2 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2705285, + "thread": 28 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 2871030, + "thread": 17 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 3110045, + "thread": 9 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 3136022, + "thread": 8 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 3362461, + "thread": 17 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 3484755, + "thread": 0 + } + }, + { + "amount": "464.026445485", + "slot": { + "period": 3753493, + "thread": 17 + } + }, + { + "amount": "464.026445476", + "slot": { + "period": 3897727, + "thread": 5 + } + } + ], + "AU1F6MwCrdeo4aSpMVbmHyFuReTS9WL8WMiqrva2nWjR23WDh3F2": [ + { + "amount": "56.695267400", + "slot": { + "period": 83415, + "thread": 10 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 226266, + "thread": 26 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 342874, + "thread": 13 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 533685, + "thread": 8 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 781026, + "thread": 28 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 943469, + "thread": 28 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1007554, + "thread": 8 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1305768, + "thread": 6 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1470658, + "thread": 24 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1537565, + "thread": 23 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1781121, + "thread": 4 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 1918214, + "thread": 30 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2085592, + "thread": 27 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2214816, + "thread": 23 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2320082, + "thread": 27 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2524953, + "thread": 15 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2749402, + "thread": 8 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 2939978, + "thread": 31 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 3068492, + "thread": 16 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 3140577, + "thread": 16 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 3288678, + "thread": 12 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 3471153, + "thread": 11 + } + }, + { + "amount": "56.695267400", + "slot": { + "period": 3725915, + "thread": 14 + } + }, + { + "amount": "56.695267391", + "slot": { + "period": 3899248, + "thread": 24 + } + } + ], + "AU1F6Yp6o6biPcCFaqNvuUfGi6GJtDaj4hrsjkR1CrwUw1QykwXM": [ + { + "amount": "159.480455285", + "slot": { + "period": 112046, + "thread": 12 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 177858, + "thread": 2 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 391598, + "thread": 25 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 517941, + "thread": 8 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 672683, + "thread": 1 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 918436, + "thread": 15 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1140755, + "thread": 10 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1242989, + "thread": 2 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1464656, + "thread": 3 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1485180, + "thread": 4 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1713816, + "thread": 9 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 1848064, + "thread": 30 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2000927, + "thread": 21 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2215562, + "thread": 26 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2395387, + "thread": 9 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2586421, + "thread": 30 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2628561, + "thread": 0 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 2813295, + "thread": 16 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 3062861, + "thread": 23 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 3230084, + "thread": 27 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 3333074, + "thread": 12 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 3491121, + "thread": 15 + } + }, + { + "amount": "159.480455285", + "slot": { + "period": 3667876, + "thread": 27 + } + }, + { + "amount": "159.480455290", + "slot": { + "period": 3910095, + "thread": 7 + } + } + ], + "AU1F6eDkyynHWKoiFAimGcmri4DrKYg5VhAt8pBT76392zqLrE6L": [ + { + "amount": "66.083918526", + "slot": { + "period": 123036, + "thread": 0 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 292788, + "thread": 10 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 443685, + "thread": 12 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 599196, + "thread": 14 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 781162, + "thread": 18 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 908123, + "thread": 8 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1002168, + "thread": 1 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1307079, + "thread": 24 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1446256, + "thread": 22 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1525904, + "thread": 13 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1688041, + "thread": 10 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 1828432, + "thread": 24 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2093318, + "thread": 17 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2221257, + "thread": 22 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2325658, + "thread": 13 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2494876, + "thread": 16 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2686576, + "thread": 13 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 2903046, + "thread": 13 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 3019727, + "thread": 10 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 3211084, + "thread": 7 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 3341400, + "thread": 26 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 3471421, + "thread": 10 + } + }, + { + "amount": "66.083918526", + "slot": { + "period": 3693839, + "thread": 1 + } + }, + { + "amount": "66.083918535", + "slot": { + "period": 3898425, + "thread": 21 + } + } + ], + "AU1F6si9ShRaEPReqHYnkjPMyWtv8ecbysof3Xt1NGokvpH4VPR8": [ + { + "amount": "181.735967088", + "slot": { + "period": 50531, + "thread": 10 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 247053, + "thread": 15 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 411677, + "thread": 9 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 646352, + "thread": 22 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 719037, + "thread": 5 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 941974, + "thread": 6 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1140662, + "thread": 24 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1164416, + "thread": 15 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1469155, + "thread": 1 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1520979, + "thread": 20 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1747929, + "thread": 2 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 1809075, + "thread": 11 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2025366, + "thread": 5 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2170953, + "thread": 10 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2377735, + "thread": 15 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2470620, + "thread": 5 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2630344, + "thread": 10 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 2855815, + "thread": 1 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 3114182, + "thread": 21 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 3125736, + "thread": 28 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 3353919, + "thread": 0 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 3532903, + "thread": 1 + } + }, + { + "amount": "181.735967088", + "slot": { + "period": 3734712, + "thread": 8 + } + }, + { + "amount": "181.735967084", + "slot": { + "period": 3800915, + "thread": 8 + } + } + ], + "AU1F7EDXMLHDM9JSNEkcnqDgBFPBtfqDrGFCHjDoX8BSweEnmNwf": [ + { + "amount": "165.854730297", + "slot": { + "period": 119792, + "thread": 24 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 288171, + "thread": 22 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 346197, + "thread": 0 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 505638, + "thread": 8 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 737912, + "thread": 26 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 977377, + "thread": 17 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1117917, + "thread": 24 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1187129, + "thread": 26 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1372196, + "thread": 12 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1618378, + "thread": 29 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1801037, + "thread": 14 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1965598, + "thread": 31 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 1997076, + "thread": 9 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 2261950, + "thread": 27 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 2310500, + "thread": 14 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 2622707, + "thread": 3 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 2641752, + "thread": 11 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 2824424, + "thread": 27 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 3032371, + "thread": 7 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 3262004, + "thread": 6 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 3327657, + "thread": 4 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 3542834, + "thread": 21 + } + }, + { + "amount": "165.854730297", + "slot": { + "period": 3758414, + "thread": 10 + } + }, + { + "amount": "165.854730295", + "slot": { + "period": 3814193, + "thread": 24 + } + } + ], + "AU1F7fWa3sf7WGtK7QW6A9YgjnNnGLtWN7paBgA36FNMU9KJS3TE": [ + { + "amount": "246.812765342", + "slot": { + "period": 84972, + "thread": 3 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 218221, + "thread": 26 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 467627, + "thread": 7 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 585952, + "thread": 29 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 665064, + "thread": 17 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 918434, + "thread": 20 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1014179, + "thread": 0 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1310860, + "thread": 30 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1410563, + "thread": 3 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1569995, + "thread": 7 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1650101, + "thread": 5 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 1830720, + "thread": 24 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2024587, + "thread": 3 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2219485, + "thread": 3 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2395822, + "thread": 27 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2580955, + "thread": 0 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2781717, + "thread": 29 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 2902925, + "thread": 0 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 3092669, + "thread": 18 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 3178324, + "thread": 24 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 3297314, + "thread": 26 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 3482776, + "thread": 12 + } + }, + { + "amount": "246.812765342", + "slot": { + "period": 3745615, + "thread": 6 + } + }, + { + "amount": "246.812765339", + "slot": { + "period": 3866327, + "thread": 13 + } + } + ], + "AU1F8unWNeWCsn69tXUjSDLma7oX2Wyzjbfq7KoUiqok48UFyCw1": [ + { + "amount": "167.717936260", + "slot": { + "period": 53249, + "thread": 1 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 215104, + "thread": 18 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 405490, + "thread": 0 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 562099, + "thread": 11 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 681637, + "thread": 22 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 952596, + "thread": 14 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1010504, + "thread": 19 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1212121, + "thread": 15 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1449441, + "thread": 12 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1638982, + "thread": 8 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1800383, + "thread": 8 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 1846685, + "thread": 29 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2098830, + "thread": 23 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2276284, + "thread": 2 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2330261, + "thread": 5 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2543421, + "thread": 21 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2752994, + "thread": 26 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2934212, + "thread": 13 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 2967187, + "thread": 2 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 3242619, + "thread": 20 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 3430407, + "thread": 0 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 3617242, + "thread": 2 + } + }, + { + "amount": "167.717936260", + "slot": { + "period": 3769806, + "thread": 29 + } + }, + { + "amount": "167.717936254", + "slot": { + "period": 3822177, + "thread": 21 + } + } + ], + "AU1F9U9nM1kMgoH1Tj7TUxphfHmtnoE35WaTcjhDJfpkvJu1o9ak": [ + { + "amount": "323.229943848", + "slot": { + "period": 154203, + "thread": 9 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 210461, + "thread": 29 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 361436, + "thread": 4 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 598513, + "thread": 31 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 777665, + "thread": 27 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 950131, + "thread": 31 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1133191, + "thread": 29 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1316714, + "thread": 24 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1363639, + "thread": 16 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1628208, + "thread": 2 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1731081, + "thread": 21 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 1825901, + "thread": 21 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2103038, + "thread": 28 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2278965, + "thread": 24 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2366564, + "thread": 25 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2570354, + "thread": 26 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2734249, + "thread": 13 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 2913719, + "thread": 21 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 3054767, + "thread": 27 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 3263310, + "thread": 31 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 3447042, + "thread": 18 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 3457497, + "thread": 17 + } + }, + { + "amount": "323.229943848", + "slot": { + "period": 3767409, + "thread": 30 + } + }, + { + "amount": "323.229943840", + "slot": { + "period": 3884348, + "thread": 8 + } + } + ], + "AU1F9VtZMm3tpB1JVikHUWZKinighotd9Ff4e3ynhMi5S9YRaxEr": [ + { + "amount": "97.007018092", + "slot": { + "period": 147272, + "thread": 22 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 205111, + "thread": 11 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 452187, + "thread": 24 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 537851, + "thread": 6 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 664708, + "thread": 20 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 919189, + "thread": 3 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 985068, + "thread": 19 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 1218853, + "thread": 13 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 1404487, + "thread": 16 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 1620202, + "thread": 4 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 1712073, + "thread": 15 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 1924042, + "thread": 22 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2062668, + "thread": 20 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2282782, + "thread": 29 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2327151, + "thread": 28 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2465019, + "thread": 0 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2692091, + "thread": 25 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2829651, + "thread": 31 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 2986094, + "thread": 4 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 3155928, + "thread": 24 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 3407178, + "thread": 8 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 3545202, + "thread": 0 + } + }, + { + "amount": "97.007018092", + "slot": { + "period": 3669372, + "thread": 12 + } + }, + { + "amount": "97.007018083", + "slot": { + "period": 3867711, + "thread": 13 + } + } + ], + "AU1F9e8F37m8YmNTf9AV7WBA5vPaXV2th4EjMKf44JBs1N1aTTw4": [ + { + "amount": "69.692853083", + "slot": { + "period": 154045, + "thread": 16 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 192310, + "thread": 24 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 340634, + "thread": 30 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 529045, + "thread": 9 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 801637, + "thread": 7 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 891888, + "thread": 30 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1082761, + "thread": 6 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1278669, + "thread": 0 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1401961, + "thread": 21 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1556686, + "thread": 12 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1710337, + "thread": 0 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 1967458, + "thread": 11 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2056516, + "thread": 18 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2252846, + "thread": 22 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2397423, + "thread": 13 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2590822, + "thread": 3 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2657257, + "thread": 16 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 2933694, + "thread": 17 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 3059437, + "thread": 26 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 3197413, + "thread": 10 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 3388511, + "thread": 7 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 3500339, + "thread": 4 + } + }, + { + "amount": "69.692853083", + "slot": { + "period": 3697939, + "thread": 11 + } + }, + { + "amount": "69.692853094", + "slot": { + "period": 3914879, + "thread": 1 + } + } + ], + "AU1F9eW3oWP6iK9msRdb1Fh1JeiSpMR6ynE1ko5aT7cYr6LCefbK": [ + { + "amount": "86.563705009", + "slot": { + "period": 54132, + "thread": 8 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 320005, + "thread": 9 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 334813, + "thread": 17 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 604716, + "thread": 22 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 810720, + "thread": 16 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 939480, + "thread": 5 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1033858, + "thread": 13 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1213237, + "thread": 26 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1440245, + "thread": 26 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1570454, + "thread": 11 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1666144, + "thread": 31 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 1930355, + "thread": 31 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2117525, + "thread": 23 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2162708, + "thread": 23 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2413237, + "thread": 22 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2542185, + "thread": 16 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2706501, + "thread": 12 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2883115, + "thread": 0 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 2990378, + "thread": 8 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 3123408, + "thread": 22 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 3340169, + "thread": 23 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 3608955, + "thread": 15 + } + }, + { + "amount": "86.563705009", + "slot": { + "period": 3646051, + "thread": 16 + } + }, + { + "amount": "86.563705013", + "slot": { + "period": 3852014, + "thread": 28 + } + } + ], + "AU1FACpRdmJHhgbHoTLbiDH78iSHsNZmA3UhZ85uQySbYE5ibh3P": [ + { + "amount": "51.554541546", + "slot": { + "period": 137830, + "thread": 30 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 172570, + "thread": 31 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 325663, + "thread": 27 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 507554, + "thread": 16 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 723316, + "thread": 23 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 913863, + "thread": 22 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1116662, + "thread": 4 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1300359, + "thread": 25 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1344814, + "thread": 28 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1624078, + "thread": 20 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1743879, + "thread": 14 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1837982, + "thread": 8 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 1980026, + "thread": 16 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2156762, + "thread": 20 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2436248, + "thread": 15 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2594644, + "thread": 31 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2694810, + "thread": 21 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2911158, + "thread": 1 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 2969387, + "thread": 26 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 3236656, + "thread": 29 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 3330621, + "thread": 28 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 3592391, + "thread": 10 + } + }, + { + "amount": "51.554541546", + "slot": { + "period": 3737936, + "thread": 9 + } + }, + { + "amount": "51.554541549", + "slot": { + "period": 3838708, + "thread": 22 + } + } + ], + "AU1FB2TWJdbr8XMs3Dwy3rvAy2UE93WuVPw5f22GXekxWKxtKqts": [ + { + "amount": "215.161602977", + "slot": { + "period": 15510, + "thread": 28 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 175326, + "thread": 3 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 478164, + "thread": 7 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 582793, + "thread": 9 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 776798, + "thread": 21 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 884923, + "thread": 0 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1030406, + "thread": 23 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1234992, + "thread": 11 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1475459, + "thread": 21 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1505393, + "thread": 23 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1778305, + "thread": 30 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 1871938, + "thread": 23 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2124358, + "thread": 27 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2177285, + "thread": 6 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2336004, + "thread": 21 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2492616, + "thread": 30 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2714333, + "thread": 23 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 2912078, + "thread": 28 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 3079834, + "thread": 18 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 3169677, + "thread": 4 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 3337160, + "thread": 23 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 3491805, + "thread": 15 + } + }, + { + "amount": "215.161602977", + "slot": { + "period": 3751874, + "thread": 5 + } + }, + { + "amount": "215.161602973", + "slot": { + "period": 3828498, + "thread": 3 + } + } + ], + "AU1FB9vAs9w6gJuUUAukjspaoscN9fCz6n9wyBJkLkcWF1pFCyFL": [ + { + "amount": "286.002081494", + "slot": { + "period": 105438, + "thread": 9 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 298976, + "thread": 24 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 384999, + "thread": 6 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 605516, + "thread": 15 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 714432, + "thread": 5 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 972484, + "thread": 4 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1011130, + "thread": 19 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1271205, + "thread": 4 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1362456, + "thread": 25 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1621367, + "thread": 16 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1735377, + "thread": 3 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 1850265, + "thread": 21 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2131928, + "thread": 21 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2147531, + "thread": 0 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2413506, + "thread": 23 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2527194, + "thread": 16 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2628091, + "thread": 7 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 2881090, + "thread": 12 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 3082237, + "thread": 10 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 3124067, + "thread": 18 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 3394831, + "thread": 6 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 3493080, + "thread": 13 + } + }, + { + "amount": "286.002081494", + "slot": { + "period": 3677598, + "thread": 16 + } + }, + { + "amount": "286.002081497", + "slot": { + "period": 3863430, + "thread": 7 + } + } + ], + "AU1FBn4nvoXqDDY8whVV2DCctHKQqAWqDdR4Q8dbUH9C5s1zCQa4": [ + { + "amount": "119.058803924", + "slot": { + "period": 151107, + "thread": 6 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 183547, + "thread": 31 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 352167, + "thread": 6 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 606824, + "thread": 26 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 743724, + "thread": 22 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 852946, + "thread": 15 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1121982, + "thread": 6 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1304842, + "thread": 10 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1398591, + "thread": 16 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1536043, + "thread": 15 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1650383, + "thread": 28 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 1946402, + "thread": 16 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2142504, + "thread": 0 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2144334, + "thread": 25 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2425296, + "thread": 20 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2471762, + "thread": 26 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2738772, + "thread": 4 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 2911650, + "thread": 25 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 3087544, + "thread": 24 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 3254639, + "thread": 22 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 3302247, + "thread": 17 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 3450987, + "thread": 20 + } + }, + { + "amount": "119.058803924", + "slot": { + "period": 3765776, + "thread": 14 + } + }, + { + "amount": "119.058803921", + "slot": { + "period": 3813503, + "thread": 12 + } + } + ], + "AU1FCQu1Tj4r5eBd5X95Km9EWC3M2F4g3mUziKSr8h4UyEyacXnG": [ + { + "amount": "79.833943998", + "slot": { + "period": 117308, + "thread": 5 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 300695, + "thread": 0 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 437032, + "thread": 14 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 556598, + "thread": 25 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 713349, + "thread": 31 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 979766, + "thread": 30 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1105345, + "thread": 31 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1288953, + "thread": 25 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1397432, + "thread": 17 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1517898, + "thread": 30 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1736232, + "thread": 6 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 1930378, + "thread": 29 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2023642, + "thread": 9 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2252186, + "thread": 3 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2322891, + "thread": 12 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2517257, + "thread": 9 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2756598, + "thread": 15 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2897072, + "thread": 2 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 2996162, + "thread": 14 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 3212976, + "thread": 17 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 3305195, + "thread": 18 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 3461831, + "thread": 28 + } + }, + { + "amount": "79.833943998", + "slot": { + "period": 3776187, + "thread": 12 + } + }, + { + "amount": "79.833943986", + "slot": { + "period": 3820820, + "thread": 24 + } + } + ], + "AU1FCtQxhXyChq3king9Y8LVxLHBnjCj7xjf8mBebHsqgS3GCZMZ": [ + { + "amount": "409.828751789", + "slot": { + "period": 14782, + "thread": 28 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 307471, + "thread": 11 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 352090, + "thread": 11 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 495860, + "thread": 0 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 655141, + "thread": 8 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 857281, + "thread": 30 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 997015, + "thread": 19 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 1260199, + "thread": 15 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 1392962, + "thread": 26 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 1540785, + "thread": 1 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 1702864, + "thread": 15 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 1860992, + "thread": 23 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2004944, + "thread": 16 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2195731, + "thread": 14 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2359119, + "thread": 14 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2568686, + "thread": 31 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2723965, + "thread": 13 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2832238, + "thread": 19 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 2991191, + "thread": 5 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 3241935, + "thread": 13 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 3387114, + "thread": 5 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 3480371, + "thread": 1 + } + }, + { + "amount": "409.828751789", + "slot": { + "period": 3716544, + "thread": 1 + } + }, + { + "amount": "409.828751791", + "slot": { + "period": 3845213, + "thread": 27 + } + } + ], + "AU1FCu3V1kBH9WTEzpMgp8LCwXSJC5VmYvrXC4SrA9we6BButT6E": [ + { + "amount": "245.489557699", + "slot": { + "period": 38200, + "thread": 7 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 194844, + "thread": 19 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 404692, + "thread": 16 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 568511, + "thread": 7 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 655368, + "thread": 4 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 822174, + "thread": 10 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1142830, + "thread": 11 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1190984, + "thread": 15 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1331145, + "thread": 26 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1644477, + "thread": 22 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1714864, + "thread": 6 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 1945056, + "thread": 26 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2119464, + "thread": 28 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2150942, + "thread": 16 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2339529, + "thread": 8 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2599961, + "thread": 25 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2655550, + "thread": 23 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 2812450, + "thread": 23 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 3052140, + "thread": 6 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 3265171, + "thread": 12 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 3293534, + "thread": 26 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 3601233, + "thread": 26 + } + }, + { + "amount": "245.489557699", + "slot": { + "period": 3770344, + "thread": 31 + } + }, + { + "amount": "245.489557696", + "slot": { + "period": 3886888, + "thread": 10 + } + } + ], + "AU1FCvS4rGstwnfKQC3gNfr2P3W1GuZXHrVaBCCJQg8zpK4nEw3H": [ + { + "amount": "222.599399930", + "slot": { + "period": 48328, + "thread": 15 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 284173, + "thread": 18 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 461481, + "thread": 29 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 619776, + "thread": 13 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 731475, + "thread": 18 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 915923, + "thread": 28 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1114074, + "thread": 9 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1254643, + "thread": 19 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1364345, + "thread": 4 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1612899, + "thread": 11 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1735010, + "thread": 9 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 1832663, + "thread": 21 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2018335, + "thread": 31 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2179011, + "thread": 11 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2313503, + "thread": 2 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2563590, + "thread": 31 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2708329, + "thread": 20 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 2865025, + "thread": 14 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 3069979, + "thread": 10 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 3139564, + "thread": 3 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 3345599, + "thread": 22 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 3459314, + "thread": 8 + } + }, + { + "amount": "222.599399930", + "slot": { + "period": 3632823, + "thread": 16 + } + }, + { + "amount": "222.599399929", + "slot": { + "period": 3824668, + "thread": 18 + } + } + ], + "AU1FDEW3arhG8o1o3cmeBYzsPG5euimCdgEsNsarDg4cv3A8de5T": [ + { + "amount": "414.814911450", + "slot": { + "period": 42934, + "thread": 12 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 190585, + "thread": 7 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 479311, + "thread": 16 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 644817, + "thread": 14 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 732296, + "thread": 1 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 824384, + "thread": 27 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1143364, + "thread": 14 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1310499, + "thread": 22 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1423114, + "thread": 10 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1644473, + "thread": 17 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1806334, + "thread": 24 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 1919409, + "thread": 21 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2134667, + "thread": 0 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2201124, + "thread": 21 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2451860, + "thread": 28 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2605029, + "thread": 16 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2634262, + "thread": 10 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2922568, + "thread": 1 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 2954813, + "thread": 7 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 3248939, + "thread": 20 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 3441153, + "thread": 25 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 3528143, + "thread": 18 + } + }, + { + "amount": "414.814911450", + "slot": { + "period": 3673871, + "thread": 7 + } + }, + { + "amount": "414.814911459", + "slot": { + "period": 3882835, + "thread": 12 + } + } + ], + "AU1FDaRn81QgpnvBy65wyryx6kNCeKqpHmtQF9nj1kecbz53Tn8G": [ + { + "amount": "239.092327578", + "slot": { + "period": 103139, + "thread": 21 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 287112, + "thread": 15 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 390079, + "thread": 27 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 501967, + "thread": 3 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 690948, + "thread": 6 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 863076, + "thread": 18 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1041959, + "thread": 1 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1224045, + "thread": 9 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1439035, + "thread": 6 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1504495, + "thread": 8 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1781116, + "thread": 7 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 1966742, + "thread": 18 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2055782, + "thread": 5 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2241140, + "thread": 18 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2428500, + "thread": 19 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2616859, + "thread": 19 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2695222, + "thread": 24 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2888806, + "thread": 7 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 2990553, + "thread": 27 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 3224313, + "thread": 9 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 3365329, + "thread": 13 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 3573467, + "thread": 28 + } + }, + { + "amount": "239.092327578", + "slot": { + "period": 3687608, + "thread": 10 + } + }, + { + "amount": "239.092327572", + "slot": { + "period": 3829334, + "thread": 7 + } + } + ], + "AU1FEL2Yxn3QXfhyUpnVeqpriQE2a6FGRYLmFdLKGyYY4NpFYppR": [ + { + "amount": "337.877491538", + "slot": { + "period": 15898, + "thread": 19 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 295246, + "thread": 29 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 335804, + "thread": 17 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 589943, + "thread": 29 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 722735, + "thread": 11 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 906918, + "thread": 11 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 986016, + "thread": 11 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 1243113, + "thread": 11 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 1471228, + "thread": 12 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 1520304, + "thread": 31 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 1777180, + "thread": 22 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 1909254, + "thread": 5 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2101792, + "thread": 12 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2240888, + "thread": 3 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2411902, + "thread": 15 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2493593, + "thread": 8 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2702278, + "thread": 26 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 2800094, + "thread": 29 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 3046351, + "thread": 10 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 3237591, + "thread": 18 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 3366303, + "thread": 29 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 3456558, + "thread": 3 + } + }, + { + "amount": "337.877491538", + "slot": { + "period": 3661076, + "thread": 1 + } + }, + { + "amount": "337.877491549", + "slot": { + "period": 3839733, + "thread": 20 + } + } + ], + "AU1FGDV3yiUBCyPTa3UWPoDz43LpCwcqjDpTpxmLsqHoEjXVfRTy": [ + { + "amount": "210.507527824", + "slot": { + "period": 112133, + "thread": 11 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 318858, + "thread": 20 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 395066, + "thread": 2 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 621452, + "thread": 8 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 738569, + "thread": 0 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 933824, + "thread": 0 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1038963, + "thread": 6 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1164722, + "thread": 27 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1422447, + "thread": 3 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1566721, + "thread": 10 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1682033, + "thread": 11 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 1824150, + "thread": 3 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2113730, + "thread": 1 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2249977, + "thread": 25 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2353091, + "thread": 14 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2470761, + "thread": 17 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2690424, + "thread": 16 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 2823983, + "thread": 21 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 3084857, + "thread": 27 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 3157979, + "thread": 26 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 3412605, + "thread": 12 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 3494910, + "thread": 30 + } + }, + { + "amount": "210.507527824", + "slot": { + "period": 3771555, + "thread": 29 + } + }, + { + "amount": "210.507527822", + "slot": { + "period": 3926350, + "thread": 10 + } + } + ], + "AU1FGiCW5Rogi6B2wi4m1UsFqChMHzXzh3t9L8Dix2ye6ecHKHBx": [ + { + "amount": "494.067651244", + "slot": { + "period": 85886, + "thread": 1 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 320995, + "thread": 10 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 486339, + "thread": 17 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 571457, + "thread": 29 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 736434, + "thread": 20 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 972640, + "thread": 20 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1030665, + "thread": 24 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1275024, + "thread": 6 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1388785, + "thread": 27 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1638334, + "thread": 7 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1681286, + "thread": 15 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 1963282, + "thread": 26 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2100638, + "thread": 22 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2214415, + "thread": 17 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2449774, + "thread": 15 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2504214, + "thread": 23 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2756399, + "thread": 16 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 2845370, + "thread": 0 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 3043513, + "thread": 29 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 3144692, + "thread": 5 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 3348685, + "thread": 11 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 3508903, + "thread": 27 + } + }, + { + "amount": "494.067651244", + "slot": { + "period": 3686446, + "thread": 15 + } + }, + { + "amount": "494.067651247", + "slot": { + "period": 3853106, + "thread": 1 + } + } + ], + "AU1FHKCibAeE3bxt4CvEBbCqecCV8moHFSKsQz9HdzjLgbv8NePE": [ + { + "amount": "291.160318504", + "slot": { + "period": 121921, + "thread": 28 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 179933, + "thread": 8 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 458949, + "thread": 21 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 581879, + "thread": 17 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 802663, + "thread": 17 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 876345, + "thread": 18 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1096898, + "thread": 31 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1176622, + "thread": 23 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1468392, + "thread": 18 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1608751, + "thread": 25 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1718127, + "thread": 16 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 1965826, + "thread": 8 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2041925, + "thread": 1 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2210424, + "thread": 22 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2404010, + "thread": 31 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2620838, + "thread": 9 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2630134, + "thread": 9 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 2841416, + "thread": 18 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 3022744, + "thread": 18 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 3243150, + "thread": 8 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 3448734, + "thread": 27 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 3497297, + "thread": 2 + } + }, + { + "amount": "291.160318504", + "slot": { + "period": 3775155, + "thread": 15 + } + }, + { + "amount": "291.160318499", + "slot": { + "period": 3812093, + "thread": 10 + } + } + ], + "AU1FHrFQeWV4utxn3K2A6ban583ZTtzq4URu5gB5esoh1ivioYWX": [ + { + "amount": "82.854665128", + "slot": { + "period": 112770, + "thread": 6 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 259941, + "thread": 26 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 485816, + "thread": 22 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 493626, + "thread": 17 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 802933, + "thread": 31 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 862019, + "thread": 6 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1134346, + "thread": 8 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1178703, + "thread": 29 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1320611, + "thread": 13 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1548697, + "thread": 1 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1653491, + "thread": 14 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 1938943, + "thread": 26 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2129349, + "thread": 23 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2231533, + "thread": 6 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2323717, + "thread": 19 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2566382, + "thread": 25 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2646353, + "thread": 28 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 2817845, + "thread": 1 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 3113025, + "thread": 4 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 3132337, + "thread": 25 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 3300933, + "thread": 5 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 3607655, + "thread": 9 + } + }, + { + "amount": "82.854665128", + "slot": { + "period": 3762401, + "thread": 5 + } + }, + { + "amount": "82.854665122", + "slot": { + "period": 3914588, + "thread": 7 + } + } + ], + "AU1FJSkxTWKRDhFwFMEGSmE1pKNwFfDEQZwgXm7nJQjVVRRmrigm": [ + { + "amount": "272.218312937", + "slot": { + "period": 162817, + "thread": 25 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 181001, + "thread": 20 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 437469, + "thread": 15 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 573745, + "thread": 27 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 819323, + "thread": 21 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 855275, + "thread": 26 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1052719, + "thread": 15 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1180626, + "thread": 12 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1416180, + "thread": 2 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1577858, + "thread": 4 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1736324, + "thread": 21 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 1976040, + "thread": 0 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2005839, + "thread": 13 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2211384, + "thread": 17 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2389650, + "thread": 19 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2546166, + "thread": 17 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2712892, + "thread": 17 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 2952653, + "thread": 9 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 3100391, + "thread": 24 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 3232244, + "thread": 14 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 3343960, + "thread": 15 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 3605515, + "thread": 12 + } + }, + { + "amount": "272.218312937", + "slot": { + "period": 3667023, + "thread": 6 + } + }, + { + "amount": "272.218312938", + "slot": { + "period": 3926176, + "thread": 6 + } + } + ], + "AU1FJoZrF9QSjm2Bd8zZswMZD7QJRCYzmHrpV77xVxEC9pPjARAy": [ + { + "amount": "137.562111647", + "slot": { + "period": 33996, + "thread": 16 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 170969, + "thread": 10 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 364600, + "thread": 18 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 538421, + "thread": 23 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 675143, + "thread": 20 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 971120, + "thread": 7 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1041065, + "thread": 9 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1302900, + "thread": 26 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1364066, + "thread": 26 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1519471, + "thread": 12 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1778130, + "thread": 29 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1965740, + "thread": 26 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 1977866, + "thread": 18 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 2241528, + "thread": 11 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 2354497, + "thread": 21 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 2537762, + "thread": 24 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 2763235, + "thread": 19 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 2835179, + "thread": 25 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 3052340, + "thread": 11 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 3287975, + "thread": 20 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 3412922, + "thread": 13 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 3562992, + "thread": 20 + } + }, + { + "amount": "137.562111647", + "slot": { + "period": 3647952, + "thread": 25 + } + }, + { + "amount": "137.562111648", + "slot": { + "period": 3918657, + "thread": 31 + } + } + ], + "AU1FKhmVb68x9nq78tDS5zFG9ApSMYS8eSC3ymYJDGaxhLJc45Nn": [ + { + "amount": "460.619813096", + "slot": { + "period": 29543, + "thread": 12 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 245808, + "thread": 7 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 459284, + "thread": 27 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 582847, + "thread": 26 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 676984, + "thread": 10 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 969531, + "thread": 5 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1103678, + "thread": 5 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1257130, + "thread": 19 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1478919, + "thread": 30 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1495235, + "thread": 22 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1744417, + "thread": 9 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 1945725, + "thread": 22 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2115044, + "thread": 0 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2213982, + "thread": 19 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2368836, + "thread": 30 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2547213, + "thread": 4 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2776417, + "thread": 7 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 2807675, + "thread": 9 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 3116506, + "thread": 30 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 3215405, + "thread": 28 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 3448881, + "thread": 29 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 3536822, + "thread": 21 + } + }, + { + "amount": "460.619813096", + "slot": { + "period": 3682518, + "thread": 21 + } + }, + { + "amount": "460.619813089", + "slot": { + "period": 3854376, + "thread": 1 + } + } + ], + "AU1FL1CQWm3psn8gzcvZgU268S4khGC1Ts3rpGwUjWtmsduwMQY1": [ + { + "amount": "586.771275721", + "slot": { + "period": 125632, + "thread": 7 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 291356, + "thread": 10 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 430248, + "thread": 16 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 653184, + "thread": 12 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 761275, + "thread": 6 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 831579, + "thread": 6 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1026213, + "thread": 7 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1296160, + "thread": 22 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1372822, + "thread": 8 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1481041, + "thread": 28 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1678110, + "thread": 5 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1936887, + "thread": 14 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 1995271, + "thread": 26 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2215782, + "thread": 2 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2408030, + "thread": 16 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2521036, + "thread": 22 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2669072, + "thread": 24 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2809780, + "thread": 4 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 2968621, + "thread": 11 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 3267715, + "thread": 9 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 3294995, + "thread": 10 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 3579714, + "thread": 28 + } + }, + { + "amount": "586.771275721", + "slot": { + "period": 3677347, + "thread": 14 + } + }, + { + "amount": "586.771275710", + "slot": { + "period": 3889882, + "thread": 23 + } + } + ], + "AU1FLNgqUiFEJeVhKVMw426dsLJwdWBug7kow1YLtwULferkxv4x": [ + { + "amount": "219.238858154", + "slot": { + "period": 145589, + "thread": 17 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 233041, + "thread": 26 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 465042, + "thread": 23 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 568669, + "thread": 6 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 757960, + "thread": 10 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 883563, + "thread": 28 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1050567, + "thread": 29 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1180402, + "thread": 10 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1325606, + "thread": 1 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1630419, + "thread": 20 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1648925, + "thread": 12 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 1810848, + "thread": 2 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2088468, + "thread": 15 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2265616, + "thread": 31 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2461738, + "thread": 20 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2611833, + "thread": 22 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2765502, + "thread": 2 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 2885767, + "thread": 0 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 3075364, + "thread": 5 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 3122981, + "thread": 27 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 3441799, + "thread": 29 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 3583894, + "thread": 2 + } + }, + { + "amount": "219.238858154", + "slot": { + "period": 3773028, + "thread": 15 + } + }, + { + "amount": "219.238858150", + "slot": { + "period": 3801505, + "thread": 30 + } + } + ], + "AU1FLXWoMALXtmPR41696ssZRgUb62yzNUNohnKYptdNFyK1xVBk": [ + { + "amount": "59.036901109", + "slot": { + "period": 127614, + "thread": 15 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 320309, + "thread": 26 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 487631, + "thread": 11 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 591577, + "thread": 16 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 712352, + "thread": 27 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 850005, + "thread": 10 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1003096, + "thread": 31 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1232068, + "thread": 11 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1415158, + "thread": 22 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1500950, + "thread": 6 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1665372, + "thread": 28 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 1901280, + "thread": 15 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2049848, + "thread": 21 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2216232, + "thread": 8 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2430962, + "thread": 9 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2510806, + "thread": 11 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2669732, + "thread": 22 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 2797358, + "thread": 24 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 3079950, + "thread": 17 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 3188640, + "thread": 21 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 3329501, + "thread": 17 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 3540970, + "thread": 0 + } + }, + { + "amount": "59.036901109", + "slot": { + "period": 3689434, + "thread": 22 + } + }, + { + "amount": "59.036901115", + "slot": { + "period": 3806220, + "thread": 20 + } + } + ], + "AU1FLtVqcD5xHG6Y38xFrg5Zj9YMkzF5pjZ87e6CK8xZct6E1JUC": [ + { + "amount": "437.538606307", + "slot": { + "period": 88245, + "thread": 27 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 267684, + "thread": 7 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 359231, + "thread": 14 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 605129, + "thread": 14 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 720678, + "thread": 14 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 898737, + "thread": 7 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1134965, + "thread": 24 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1264593, + "thread": 15 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1360227, + "thread": 10 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1580493, + "thread": 9 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1774659, + "thread": 30 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 1960020, + "thread": 0 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2099310, + "thread": 3 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2153165, + "thread": 29 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2417964, + "thread": 31 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2601742, + "thread": 4 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2725296, + "thread": 28 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 2796179, + "thread": 5 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 3052208, + "thread": 30 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 3178215, + "thread": 15 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 3412459, + "thread": 19 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 3481142, + "thread": 5 + } + }, + { + "amount": "437.538606307", + "slot": { + "period": 3720849, + "thread": 22 + } + }, + { + "amount": "437.538606300", + "slot": { + "period": 3881106, + "thread": 25 + } + } + ], + "AU1FLxoQrfMAAeNxSDHArRR2XtpkrZufEHyiTY2SFFz4tfLykPAY": [ + { + "amount": "138.382644368", + "slot": { + "period": 118943, + "thread": 24 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 277194, + "thread": 30 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 444570, + "thread": 23 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 614642, + "thread": 0 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 754286, + "thread": 29 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 894395, + "thread": 19 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1024511, + "thread": 20 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1203462, + "thread": 9 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1380000, + "thread": 1 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1506272, + "thread": 8 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1687524, + "thread": 17 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 1915456, + "thread": 5 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2063868, + "thread": 18 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2268126, + "thread": 24 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2299137, + "thread": 16 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2512071, + "thread": 29 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2774480, + "thread": 30 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 2932423, + "thread": 20 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 3028946, + "thread": 26 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 3225095, + "thread": 2 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 3323163, + "thread": 21 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 3615118, + "thread": 20 + } + }, + { + "amount": "138.382644368", + "slot": { + "period": 3752965, + "thread": 4 + } + }, + { + "amount": "138.382644369", + "slot": { + "period": 3870155, + "thread": 16 + } + } + ], + "AU1FMNq1dwQb7QfnrqE393NPpsCLqx1H51BVC3rNiJd3vS8seqa9": [ + { + "amount": "147.278942975", + "slot": { + "period": 41126, + "thread": 0 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 305343, + "thread": 9 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 383849, + "thread": 28 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 493980, + "thread": 14 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 727392, + "thread": 8 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 878628, + "thread": 14 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1140457, + "thread": 20 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1243753, + "thread": 12 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1399907, + "thread": 24 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1620687, + "thread": 28 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1761934, + "thread": 2 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 1821928, + "thread": 27 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2087727, + "thread": 16 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2213605, + "thread": 23 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2331947, + "thread": 9 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2487411, + "thread": 26 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2756154, + "thread": 16 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 2904730, + "thread": 17 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 3077618, + "thread": 18 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 3241164, + "thread": 9 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 3354522, + "thread": 15 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 3562536, + "thread": 29 + } + }, + { + "amount": "147.278942975", + "slot": { + "period": 3674256, + "thread": 13 + } + }, + { + "amount": "147.278942972", + "slot": { + "period": 3894391, + "thread": 28 + } + } + ], + "AU1FNNRyV8fyg9DymCyarJEBmPYfy16mHJDoodqfCK22M5wdkhAo": [ + { + "amount": "440.798173464", + "slot": { + "period": 39881, + "thread": 5 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 244029, + "thread": 2 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 354760, + "thread": 20 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 631542, + "thread": 22 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 772173, + "thread": 17 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 917548, + "thread": 8 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1074614, + "thread": 25 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1195743, + "thread": 27 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1470684, + "thread": 3 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1604408, + "thread": 22 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1747641, + "thread": 8 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 1938431, + "thread": 9 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2132399, + "thread": 31 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2163602, + "thread": 12 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2462371, + "thread": 27 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2589251, + "thread": 23 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2662881, + "thread": 22 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 2834149, + "thread": 21 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 3022210, + "thread": 10 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 3220322, + "thread": 3 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 3351313, + "thread": 25 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 3475251, + "thread": 22 + } + }, + { + "amount": "440.798173464", + "slot": { + "period": 3739807, + "thread": 2 + } + }, + { + "amount": "440.798173476", + "slot": { + "period": 3791788, + "thread": 23 + } + } + ], + "AU1FPGbC2mzc3czqwRptzGEYU4hG5yaNA6QqGV1z6tCjj349JYDs": [ + { + "amount": "210.355622054", + "slot": { + "period": 102022, + "thread": 1 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 235391, + "thread": 9 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 335593, + "thread": 13 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 643383, + "thread": 25 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 765974, + "thread": 5 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 842625, + "thread": 26 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1009671, + "thread": 3 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1253473, + "thread": 16 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1362127, + "thread": 1 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1613354, + "thread": 9 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1780358, + "thread": 10 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 1904707, + "thread": 2 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2071979, + "thread": 26 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2154563, + "thread": 8 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2427589, + "thread": 24 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2549596, + "thread": 22 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2648412, + "thread": 15 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 2809219, + "thread": 3 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 3025252, + "thread": 19 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 3247221, + "thread": 31 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 3304697, + "thread": 7 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 3590489, + "thread": 11 + } + }, + { + "amount": "210.355622054", + "slot": { + "period": 3698640, + "thread": 19 + } + }, + { + "amount": "210.355622062", + "slot": { + "period": 3834176, + "thread": 19 + } + } + ], + "AU1FPaLWp7UVi3ZFYFqjDfSXuUrko5sNwTsnbLrpZEHgx1FNZdca": [ + { + "amount": "215.005404926", + "slot": { + "period": 92670, + "thread": 27 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 243141, + "thread": 26 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 440407, + "thread": 19 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 529311, + "thread": 6 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 755913, + "thread": 5 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 924657, + "thread": 10 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1019121, + "thread": 30 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1210725, + "thread": 15 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1419162, + "thread": 27 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1561922, + "thread": 1 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1690315, + "thread": 8 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 1893060, + "thread": 22 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2082015, + "thread": 9 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2155597, + "thread": 22 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2413744, + "thread": 1 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2547981, + "thread": 0 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2714015, + "thread": 17 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 2917595, + "thread": 5 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 3086003, + "thread": 25 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 3215519, + "thread": 30 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 3363230, + "thread": 5 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 3484696, + "thread": 20 + } + }, + { + "amount": "215.005404926", + "slot": { + "period": 3640402, + "thread": 26 + } + }, + { + "amount": "215.005404917", + "slot": { + "period": 3903337, + "thread": 7 + } + } + ], + "AU1FQhJXDb9cyRVeDMVwCHg17ihzBGBxwgRLgMv6EK3jLmK5muVV": [ + { + "amount": "88.135709213", + "slot": { + "period": 83770, + "thread": 4 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 211157, + "thread": 11 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 454151, + "thread": 15 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 493377, + "thread": 0 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 751600, + "thread": 5 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 927392, + "thread": 20 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1116511, + "thread": 24 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1218669, + "thread": 1 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1428308, + "thread": 3 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1510175, + "thread": 29 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1805091, + "thread": 10 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 1921620, + "thread": 15 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2083896, + "thread": 13 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2169695, + "thread": 14 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2373110, + "thread": 27 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2592742, + "thread": 9 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2776962, + "thread": 17 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 2859901, + "thread": 27 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 3020579, + "thread": 28 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 3153617, + "thread": 11 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 3449839, + "thread": 26 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 3471637, + "thread": 13 + } + }, + { + "amount": "88.135709213", + "slot": { + "period": 3769703, + "thread": 26 + } + }, + { + "amount": "88.135709214", + "slot": { + "period": 3938742, + "thread": 22 + } + } + ], + "AU1FQyCd6Da2HqTUizCZJcwPizB4rgf9XDg3GeV1nZ7AnKrY4f3p": [ + { + "amount": "81.367392757", + "slot": { + "period": 65613, + "thread": 10 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 240100, + "thread": 27 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 419814, + "thread": 28 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 637187, + "thread": 20 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 676033, + "thread": 31 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 896169, + "thread": 18 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 984451, + "thread": 25 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 1249172, + "thread": 3 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 1418409, + "thread": 17 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 1565678, + "thread": 3 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 1751953, + "thread": 26 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 1810007, + "thread": 7 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2005568, + "thread": 26 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2252340, + "thread": 22 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2327659, + "thread": 18 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2497063, + "thread": 9 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2777631, + "thread": 31 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 2809571, + "thread": 16 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 3105179, + "thread": 23 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 3249677, + "thread": 25 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 3376013, + "thread": 19 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 3462980, + "thread": 23 + } + }, + { + "amount": "81.367392757", + "slot": { + "period": 3745756, + "thread": 17 + } + }, + { + "amount": "81.367392767", + "slot": { + "period": 3794618, + "thread": 28 + } + } + ], + "AU1FR3r1iXUDH86qWbTxNGzpugxH8FAYp9ASAfKZbLDEkPcGPbzo": [ + { + "amount": "53.469450344", + "slot": { + "period": 19192, + "thread": 22 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 178020, + "thread": 25 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 373551, + "thread": 2 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 516081, + "thread": 23 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 772447, + "thread": 28 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 847296, + "thread": 4 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1105506, + "thread": 5 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1292699, + "thread": 26 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1319116, + "thread": 31 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1547341, + "thread": 26 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1672785, + "thread": 0 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1881072, + "thread": 15 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 1990596, + "thread": 23 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 2267468, + "thread": 30 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 2410083, + "thread": 13 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 2595084, + "thread": 26 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 2689802, + "thread": 2 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 2902342, + "thread": 29 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 3030003, + "thread": 12 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 3125275, + "thread": 7 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 3411140, + "thread": 30 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 3466008, + "thread": 6 + } + }, + { + "amount": "53.469450344", + "slot": { + "period": 3630588, + "thread": 18 + } + }, + { + "amount": "53.469450351", + "slot": { + "period": 3815274, + "thread": 25 + } + } + ], + "AU1FT2nJowi2rvmKJHsegYSWuLGpztVsaBXvN8ncAoYgeJ6T8pDK": [ + { + "amount": "65.571804508", + "slot": { + "period": 153269, + "thread": 2 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 249084, + "thread": 26 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 366588, + "thread": 14 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 530993, + "thread": 1 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 750535, + "thread": 31 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 873797, + "thread": 19 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1129412, + "thread": 30 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1210170, + "thread": 21 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1402838, + "thread": 19 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1479861, + "thread": 8 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1733223, + "thread": 8 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 1859496, + "thread": 5 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2083917, + "thread": 8 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2194743, + "thread": 28 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2337340, + "thread": 24 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2481215, + "thread": 0 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2720360, + "thread": 19 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 2933268, + "thread": 15 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 3039688, + "thread": 28 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 3258917, + "thread": 18 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 3337393, + "thread": 28 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 3454141, + "thread": 11 + } + }, + { + "amount": "65.571804508", + "slot": { + "period": 3719252, + "thread": 24 + } + }, + { + "amount": "65.571804507", + "slot": { + "period": 3810808, + "thread": 23 + } + } + ], + "AU1FUYpvxP6mJiU2C1wGqMge2JSn8X9Q2PSo9aWbmLHaru9HPSmv": [ + { + "amount": "207.293003053", + "slot": { + "period": 102035, + "thread": 21 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 180188, + "thread": 25 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 437366, + "thread": 20 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 494158, + "thread": 8 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 671668, + "thread": 21 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 912774, + "thread": 6 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1070326, + "thread": 3 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1253202, + "thread": 11 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1372752, + "thread": 1 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1623597, + "thread": 27 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1724740, + "thread": 31 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 1933632, + "thread": 30 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2082906, + "thread": 2 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2290473, + "thread": 13 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2311969, + "thread": 15 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2520641, + "thread": 5 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2769019, + "thread": 13 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 2878362, + "thread": 22 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 3032473, + "thread": 27 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 3129924, + "thread": 6 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 3442769, + "thread": 26 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 3569440, + "thread": 21 + } + }, + { + "amount": "207.293003053", + "slot": { + "period": 3713965, + "thread": 17 + } + }, + { + "amount": "207.293003043", + "slot": { + "period": 3817676, + "thread": 22 + } + } + ], + "AU1FUZpfVKNcYYgDLMFLLdv31bY91AgwzUn1oPQvScfee5zZ86Ke": [ + { + "amount": "193.871229070", + "slot": { + "period": 67310, + "thread": 11 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 194957, + "thread": 11 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 441017, + "thread": 15 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 640124, + "thread": 2 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 798307, + "thread": 4 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 846878, + "thread": 7 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1115364, + "thread": 22 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1199571, + "thread": 28 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1320427, + "thread": 4 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1494839, + "thread": 31 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1782192, + "thread": 17 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 1877409, + "thread": 5 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2101251, + "thread": 5 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2271464, + "thread": 8 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2350265, + "thread": 19 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2552419, + "thread": 30 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2769610, + "thread": 21 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 2900221, + "thread": 26 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 3093918, + "thread": 14 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 3166285, + "thread": 20 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 3290205, + "thread": 26 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 3577801, + "thread": 13 + } + }, + { + "amount": "193.871229070", + "slot": { + "period": 3646622, + "thread": 22 + } + }, + { + "amount": "193.871229073", + "slot": { + "period": 3913652, + "thread": 16 + } + } + ], + "AU1FUu137ZEKV4BBb2rtF67KZBB4yscDgJhkRSmfhTGerjwHtsj6": [ + { + "amount": "139.846917186", + "slot": { + "period": 15323, + "thread": 5 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 240600, + "thread": 13 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 472957, + "thread": 13 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 551169, + "thread": 1 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 743130, + "thread": 24 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 968639, + "thread": 29 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1008220, + "thread": 15 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1287600, + "thread": 22 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1456816, + "thread": 9 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1500069, + "thread": 12 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1756491, + "thread": 1 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1934571, + "thread": 22 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 1992539, + "thread": 30 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 2286151, + "thread": 27 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 2402650, + "thread": 29 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 2484437, + "thread": 14 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 2696756, + "thread": 0 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 2860062, + "thread": 9 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 3002723, + "thread": 26 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 3134295, + "thread": 8 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 3330588, + "thread": 30 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 3451688, + "thread": 9 + } + }, + { + "amount": "139.846917186", + "slot": { + "period": 3724078, + "thread": 1 + } + }, + { + "amount": "139.846917191", + "slot": { + "period": 3882390, + "thread": 15 + } + } + ], + "AU1FVQTXBknsoZveWMi66cKXVdeYJdrFJu6WNNxNpcMQ6m62Vvch": [ + { + "amount": "131.275736234", + "slot": { + "period": 22017, + "thread": 17 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 317482, + "thread": 3 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 353935, + "thread": 17 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 561982, + "thread": 28 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 738680, + "thread": 10 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 888782, + "thread": 16 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1028436, + "thread": 11 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1211506, + "thread": 19 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1448620, + "thread": 31 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1628858, + "thread": 10 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1795074, + "thread": 29 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 1838699, + "thread": 6 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2106744, + "thread": 10 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2273717, + "thread": 24 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2384554, + "thread": 26 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2538915, + "thread": 14 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2782280, + "thread": 20 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 2840796, + "thread": 30 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 3065587, + "thread": 10 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 3251826, + "thread": 12 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 3319002, + "thread": 18 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 3584362, + "thread": 12 + } + }, + { + "amount": "131.275736234", + "slot": { + "period": 3690537, + "thread": 9 + } + }, + { + "amount": "131.275736225", + "slot": { + "period": 3780655, + "thread": 17 + } + } + ], + "AU1FWCn2oWyzfgAKdjBzWgzGL1TKkcADVpmju5GCb1mopnk2z6sL": [ + { + "amount": "173.313226493", + "slot": { + "period": 86757, + "thread": 21 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 289350, + "thread": 8 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 346698, + "thread": 29 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 569603, + "thread": 17 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 773840, + "thread": 10 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 855298, + "thread": 17 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 984196, + "thread": 16 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 1181550, + "thread": 24 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 1420052, + "thread": 30 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 1601132, + "thread": 29 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 1745202, + "thread": 21 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 1915149, + "thread": 16 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2126292, + "thread": 11 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2270846, + "thread": 5 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2405437, + "thread": 9 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2576513, + "thread": 13 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2646134, + "thread": 24 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 2894614, + "thread": 13 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 3011382, + "thread": 30 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 3209024, + "thread": 10 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 3340969, + "thread": 18 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 3509789, + "thread": 8 + } + }, + { + "amount": "173.313226493", + "slot": { + "period": 3735102, + "thread": 18 + } + }, + { + "amount": "173.313226487", + "slot": { + "period": 3813579, + "thread": 0 + } + } + ], + "AU1FWJVKD2JJxVRgjXNbh1hXeEap5KpMV2obiBvcPVLxsxaGDviK": [ + { + "amount": "387.488579350", + "slot": { + "period": 73142, + "thread": 29 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 285371, + "thread": 15 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 352717, + "thread": 2 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 515678, + "thread": 24 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 801827, + "thread": 18 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 840610, + "thread": 23 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1115164, + "thread": 28 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1262058, + "thread": 10 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1379381, + "thread": 19 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1562421, + "thread": 21 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1753819, + "thread": 17 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 1866813, + "thread": 20 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2046929, + "thread": 19 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2193895, + "thread": 17 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2299786, + "thread": 21 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2534146, + "thread": 18 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2708687, + "thread": 26 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 2889993, + "thread": 25 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 3069696, + "thread": 26 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 3258850, + "thread": 7 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 3416600, + "thread": 25 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 3533195, + "thread": 28 + } + }, + { + "amount": "387.488579350", + "slot": { + "period": 3623001, + "thread": 8 + } + }, + { + "amount": "387.488579358", + "slot": { + "period": 3862066, + "thread": 29 + } + } + ], + "AU1FWP87xWu5Ziup87kqXDT3KtFGanJDwszR2BaVnXo82arwxTas": [ + { + "amount": "81.298560172", + "slot": { + "period": 33804, + "thread": 15 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 297566, + "thread": 9 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 368873, + "thread": 7 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 524579, + "thread": 15 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 688072, + "thread": 22 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 898251, + "thread": 29 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1086561, + "thread": 23 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1181656, + "thread": 14 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1467603, + "thread": 21 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1608142, + "thread": 19 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1651940, + "thread": 31 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 1915372, + "thread": 18 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2131641, + "thread": 23 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2182037, + "thread": 0 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2333471, + "thread": 6 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2591240, + "thread": 16 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2633226, + "thread": 10 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 2874646, + "thread": 4 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 3017087, + "thread": 1 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 3215197, + "thread": 16 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 3387787, + "thread": 7 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 3520488, + "thread": 0 + } + }, + { + "amount": "81.298560172", + "slot": { + "period": 3628582, + "thread": 12 + } + }, + { + "amount": "81.298560167", + "slot": { + "period": 3887544, + "thread": 15 + } + } + ], + "AU1FXQDopRqzaaC2VB7C7C5pYt9orgjJdiHAgcA6rmUVnawDpCcP": [ + { + "amount": "161.624706736", + "slot": { + "period": 39812, + "thread": 12 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 170636, + "thread": 2 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 477197, + "thread": 30 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 600445, + "thread": 16 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 684901, + "thread": 17 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 840019, + "thread": 13 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1069661, + "thread": 9 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1303565, + "thread": 29 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1368353, + "thread": 30 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1552312, + "thread": 3 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1660733, + "thread": 7 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 1946940, + "thread": 0 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2055158, + "thread": 16 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2165236, + "thread": 1 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2295991, + "thread": 15 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2579004, + "thread": 19 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2728301, + "thread": 17 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2814444, + "thread": 18 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 2987803, + "thread": 19 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 3245407, + "thread": 24 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 3357294, + "thread": 16 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 3577252, + "thread": 23 + } + }, + { + "amount": "161.624706736", + "slot": { + "period": 3669382, + "thread": 8 + } + }, + { + "amount": "161.624706747", + "slot": { + "period": 3809681, + "thread": 22 + } + } + ], + "AU1FXaQN5MW41hSLLX6SZKjTpMNf9rccSq1pUH2LEUjtdfpueVhT": [ + { + "amount": "558.528657793", + "slot": { + "period": 26892, + "thread": 20 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 190192, + "thread": 24 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 390229, + "thread": 15 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 532389, + "thread": 14 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 754594, + "thread": 22 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 836526, + "thread": 7 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1141399, + "thread": 29 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1157370, + "thread": 2 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1381525, + "thread": 4 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1609894, + "thread": 2 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1665537, + "thread": 9 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 1844293, + "thread": 14 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2116791, + "thread": 24 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2276108, + "thread": 6 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2397568, + "thread": 24 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2514793, + "thread": 25 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2755818, + "thread": 2 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 2810601, + "thread": 13 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 3107726, + "thread": 6 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 3128074, + "thread": 12 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 3448928, + "thread": 22 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 3524315, + "thread": 7 + } + }, + { + "amount": "558.528657793", + "slot": { + "period": 3624367, + "thread": 3 + } + }, + { + "amount": "558.528657791", + "slot": { + "period": 3796148, + "thread": 10 + } + } + ], + "AU1FY1WqzdyPXM6Dj1xCGiqW8mmWQofRSf6dDScxytAjMYK6BQSP": [ + { + "amount": "163.343134981", + "slot": { + "period": 63456, + "thread": 31 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 191332, + "thread": 14 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 398732, + "thread": 0 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 583644, + "thread": 0 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 786625, + "thread": 18 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 964994, + "thread": 26 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1070156, + "thread": 0 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1287329, + "thread": 25 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1336979, + "thread": 4 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1569444, + "thread": 4 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1723923, + "thread": 21 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 1904618, + "thread": 22 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2088639, + "thread": 13 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2277894, + "thread": 17 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2395495, + "thread": 11 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2556170, + "thread": 0 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2753614, + "thread": 6 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 2856668, + "thread": 10 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 3105384, + "thread": 27 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 3163592, + "thread": 10 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 3302431, + "thread": 2 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 3591968, + "thread": 2 + } + }, + { + "amount": "163.343134981", + "slot": { + "period": 3648228, + "thread": 8 + } + }, + { + "amount": "163.343134978", + "slot": { + "period": 3803095, + "thread": 12 + } + } + ], + "AU1FZcnBGB1Q3HTuyWeZzBiex9ptBHkrWHAVxQaURRbVYYyV3F3M": [ + { + "amount": "69.939528555", + "slot": { + "period": 165521, + "thread": 18 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 189392, + "thread": 25 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 471259, + "thread": 7 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 596819, + "thread": 24 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 697516, + "thread": 8 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 922673, + "thread": 27 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1109384, + "thread": 27 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1251604, + "thread": 12 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1356521, + "thread": 21 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1519293, + "thread": 19 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1783036, + "thread": 13 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 1928930, + "thread": 7 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2056478, + "thread": 17 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2264259, + "thread": 18 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2433072, + "thread": 3 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2559736, + "thread": 17 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2768131, + "thread": 1 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 2801125, + "thread": 12 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 3062459, + "thread": 8 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 3232531, + "thread": 30 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 3395898, + "thread": 2 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 3573484, + "thread": 6 + } + }, + { + "amount": "69.939528555", + "slot": { + "period": 3723259, + "thread": 28 + } + }, + { + "amount": "69.939528566", + "slot": { + "period": 3945586, + "thread": 8 + } + } + ], + "AU1FaQyGLZquyXQSv8VvYsScGXdnmNnc8jFvq5ssv5qVpKSdV3Pq": [ + { + "amount": "176.886095364", + "slot": { + "period": 56509, + "thread": 20 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 297121, + "thread": 16 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 335907, + "thread": 2 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 539136, + "thread": 9 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 779229, + "thread": 7 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 859084, + "thread": 11 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1142527, + "thread": 14 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1200679, + "thread": 23 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1329030, + "thread": 30 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1569248, + "thread": 20 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1660821, + "thread": 25 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1907743, + "thread": 17 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 1978458, + "thread": 1 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 2246456, + "thread": 8 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 2416620, + "thread": 21 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 2494563, + "thread": 5 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 2702925, + "thread": 1 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 2898211, + "thread": 16 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 3080591, + "thread": 3 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 3264606, + "thread": 3 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 3341437, + "thread": 21 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 3506597, + "thread": 16 + } + }, + { + "amount": "176.886095364", + "slot": { + "period": 3628919, + "thread": 13 + } + }, + { + "amount": "176.886095370", + "slot": { + "period": 3858868, + "thread": 26 + } + } + ], + "AU1FaiEKBB9j7HoSWNFBe1wEa5T5PQDKMr5B8ACAnih2cSdD1XQc": [ + { + "amount": "149.110102846", + "slot": { + "period": 66507, + "thread": 19 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 316552, + "thread": 11 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 393666, + "thread": 7 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 621386, + "thread": 1 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 724514, + "thread": 30 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 966423, + "thread": 21 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 993380, + "thread": 15 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 1259391, + "thread": 22 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 1446828, + "thread": 11 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 1565119, + "thread": 18 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 1790629, + "thread": 9 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 1964655, + "thread": 6 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2077907, + "thread": 10 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2202484, + "thread": 10 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2397807, + "thread": 10 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2547777, + "thread": 9 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2732409, + "thread": 19 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2887127, + "thread": 31 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 2975737, + "thread": 19 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 3142273, + "thread": 26 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 3436966, + "thread": 12 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 3611290, + "thread": 19 + } + }, + { + "amount": "149.110102846", + "slot": { + "period": 3742782, + "thread": 1 + } + }, + { + "amount": "149.110102852", + "slot": { + "period": 3883730, + "thread": 14 + } + } + ], + "AU1FanNwscBfrRZMH3w5YaVN5iGWK2dRN1eSn7mAtystfDaiuaBk": [ + { + "amount": "171.983147534", + "slot": { + "period": 37227, + "thread": 18 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 315300, + "thread": 5 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 397062, + "thread": 23 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 562058, + "thread": 16 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 712997, + "thread": 27 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 970921, + "thread": 1 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1111970, + "thread": 29 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1163060, + "thread": 23 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1408914, + "thread": 8 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1523429, + "thread": 11 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1681758, + "thread": 21 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 1813346, + "thread": 8 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2062846, + "thread": 20 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2207713, + "thread": 4 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2394809, + "thread": 17 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2623757, + "thread": 8 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2631452, + "thread": 15 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 2869395, + "thread": 22 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 3113242, + "thread": 0 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 3286353, + "thread": 10 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 3358326, + "thread": 24 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 3569115, + "thread": 17 + } + }, + { + "amount": "171.983147534", + "slot": { + "period": 3619104, + "thread": 25 + } + }, + { + "amount": "171.983147531", + "slot": { + "period": 3914404, + "thread": 26 + } + } + ], + "AU1FarVDbpsxm28NncnBonn7GGTpnvoATo2ozcGSGPU7Jhsco8uE": [ + { + "amount": "61.598308421", + "slot": { + "period": 135681, + "thread": 15 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 176902, + "thread": 31 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 472755, + "thread": 9 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 556588, + "thread": 21 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 782797, + "thread": 23 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 940847, + "thread": 22 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1069399, + "thread": 26 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1170404, + "thread": 22 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1433317, + "thread": 3 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1528118, + "thread": 21 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1805452, + "thread": 11 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 1835791, + "thread": 19 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2026696, + "thread": 10 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2275254, + "thread": 29 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2311484, + "thread": 2 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2600822, + "thread": 10 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2657306, + "thread": 24 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2813464, + "thread": 8 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 2983505, + "thread": 21 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 3127102, + "thread": 8 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 3328329, + "thread": 30 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 3548564, + "thread": 18 + } + }, + { + "amount": "61.598308421", + "slot": { + "period": 3767276, + "thread": 16 + } + }, + { + "amount": "61.598308426", + "slot": { + "period": 3805106, + "thread": 29 + } + } + ], + "AU1FaufzEkYy1hbXvQLYHeKxse4fqiYVyGHxZe63RxGw13gJCUyR": [ + { + "amount": "143.871559129", + "slot": { + "period": 72843, + "thread": 27 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 317166, + "thread": 29 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 360529, + "thread": 28 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 534951, + "thread": 22 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 654275, + "thread": 1 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 935807, + "thread": 17 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1058371, + "thread": 8 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1243429, + "thread": 17 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1457592, + "thread": 29 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1526783, + "thread": 16 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1767037, + "thread": 11 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 1816221, + "thread": 12 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2012924, + "thread": 0 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2259947, + "thread": 25 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2322219, + "thread": 26 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2613693, + "thread": 6 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2709255, + "thread": 1 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 2908432, + "thread": 18 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 3090972, + "thread": 31 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 3262209, + "thread": 7 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 3386174, + "thread": 6 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 3504249, + "thread": 12 + } + }, + { + "amount": "143.871559129", + "slot": { + "period": 3731647, + "thread": 15 + } + }, + { + "amount": "143.871559131", + "slot": { + "period": 3889423, + "thread": 6 + } + } + ], + "AU1FbvnNZ4GQzqxk6umk2LEzJmMCEMC482qBfoxeJSk9khDZ9oqq": [ + { + "amount": "293.318237958", + "slot": { + "period": 164727, + "thread": 19 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 213617, + "thread": 17 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 416779, + "thread": 18 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 532635, + "thread": 2 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 795052, + "thread": 8 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 961473, + "thread": 31 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1055689, + "thread": 21 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1311390, + "thread": 0 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1321483, + "thread": 13 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1527771, + "thread": 0 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1790060, + "thread": 7 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 1824816, + "thread": 11 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2016247, + "thread": 6 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2176724, + "thread": 9 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2405650, + "thread": 14 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2541456, + "thread": 13 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2679342, + "thread": 0 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 2839329, + "thread": 23 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 3024919, + "thread": 12 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 3185996, + "thread": 2 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 3394878, + "thread": 17 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 3521715, + "thread": 7 + } + }, + { + "amount": "293.318237958", + "slot": { + "period": 3689329, + "thread": 28 + } + }, + { + "amount": "293.318237951", + "slot": { + "period": 3841512, + "thread": 6 + } + } + ], + "AU1FbzuuEhUCbpEJNvCfJvJPJHHMvwzCrnzEuCQRh5v924dtw67x": [ + { + "amount": "245.630961141", + "slot": { + "period": 33997, + "thread": 18 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 277923, + "thread": 9 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 437424, + "thread": 21 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 577634, + "thread": 16 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 726632, + "thread": 10 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 866804, + "thread": 30 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1060811, + "thread": 28 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1202833, + "thread": 6 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1436180, + "thread": 7 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1560611, + "thread": 19 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1669173, + "thread": 8 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 1969502, + "thread": 31 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2084523, + "thread": 20 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2156018, + "thread": 4 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2430309, + "thread": 6 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2613207, + "thread": 20 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2695193, + "thread": 16 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 2949207, + "thread": 14 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 3090251, + "thread": 11 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 3284202, + "thread": 11 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 3343147, + "thread": 17 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 3570368, + "thread": 30 + } + }, + { + "amount": "245.630961141", + "slot": { + "period": 3763372, + "thread": 31 + } + }, + { + "amount": "245.630961145", + "slot": { + "period": 3838267, + "thread": 11 + } + } + ], + "AU1Fcdn7eRPrVKvB9fR8VTnFkJQQJ7hgYWhofizyD2taU8fPrA31": [ + { + "amount": "404.643652936", + "slot": { + "period": 151745, + "thread": 19 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 188194, + "thread": 9 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 334440, + "thread": 13 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 622157, + "thread": 5 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 668283, + "thread": 11 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 935200, + "thread": 1 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1035125, + "thread": 21 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1269117, + "thread": 31 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1458307, + "thread": 12 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1581817, + "thread": 2 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1763837, + "thread": 27 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 1950479, + "thread": 12 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2049144, + "thread": 10 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2229974, + "thread": 22 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2423126, + "thread": 26 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2545600, + "thread": 0 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2638245, + "thread": 0 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 2951077, + "thread": 23 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 3062073, + "thread": 28 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 3148268, + "thread": 5 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 3333739, + "thread": 25 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 3549279, + "thread": 30 + } + }, + { + "amount": "404.643652936", + "slot": { + "period": 3654691, + "thread": 8 + } + }, + { + "amount": "404.643652925", + "slot": { + "period": 3947036, + "thread": 28 + } + } + ], + "AU1FdX2zAks24QGQ4NfhjXAZEoEoXLsBG6H2S9JSFtKS9ZD5Q1Tg": [ + { + "amount": "294.321968424", + "slot": { + "period": 60374, + "thread": 27 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 314707, + "thread": 2 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 334827, + "thread": 23 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 577559, + "thread": 25 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 793450, + "thread": 4 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 954031, + "thread": 20 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1092343, + "thread": 28 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1242735, + "thread": 0 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1332009, + "thread": 6 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1501287, + "thread": 23 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1762523, + "thread": 17 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 1833848, + "thread": 23 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2051078, + "thread": 21 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2210167, + "thread": 5 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2438645, + "thread": 24 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2500806, + "thread": 31 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2640251, + "thread": 26 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 2869178, + "thread": 16 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 3071310, + "thread": 15 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 3219142, + "thread": 23 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 3448559, + "thread": 2 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 3605400, + "thread": 6 + } + }, + { + "amount": "294.321968424", + "slot": { + "period": 3660754, + "thread": 22 + } + }, + { + "amount": "294.321968413", + "slot": { + "period": 3847633, + "thread": 19 + } + } + ], + "AU1FdkZJtih182DXbqPxJWHoD2MVqT7kSBvuMoPPQNnMns7A9koM": [ + { + "amount": "53.573199475", + "slot": { + "period": 139496, + "thread": 3 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 205552, + "thread": 0 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 358823, + "thread": 9 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 524237, + "thread": 1 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 810193, + "thread": 5 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 972849, + "thread": 2 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1090519, + "thread": 29 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1240483, + "thread": 31 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1320200, + "thread": 6 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1491295, + "thread": 29 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1788331, + "thread": 19 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 1822581, + "thread": 15 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2122382, + "thread": 23 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2258870, + "thread": 21 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2299103, + "thread": 13 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2532968, + "thread": 17 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2648186, + "thread": 2 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 2878262, + "thread": 25 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 3050145, + "thread": 23 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 3183553, + "thread": 15 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 3370299, + "thread": 15 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 3481950, + "thread": 26 + } + }, + { + "amount": "53.573199475", + "slot": { + "period": 3676825, + "thread": 13 + } + }, + { + "amount": "53.573199473", + "slot": { + "period": 3885531, + "thread": 2 + } + } + ], + "AU1Fe3Nw49RcpkxqQ9pL1uerxy4E4Bqk156jsgw6Xd7L2Rw3gR6T": [ + { + "amount": "176.340472122", + "slot": { + "period": 135196, + "thread": 26 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 176713, + "thread": 10 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 465006, + "thread": 3 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 529060, + "thread": 0 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 703496, + "thread": 19 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 859002, + "thread": 20 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1066630, + "thread": 11 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1286658, + "thread": 29 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1348510, + "thread": 27 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1568424, + "thread": 6 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1767789, + "thread": 19 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1960870, + "thread": 23 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 1981290, + "thread": 3 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 2153117, + "thread": 31 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 2440104, + "thread": 5 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 2596485, + "thread": 17 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 2625883, + "thread": 20 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 2865612, + "thread": 7 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 3063174, + "thread": 29 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 3212003, + "thread": 13 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 3409465, + "thread": 26 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 3467952, + "thread": 15 + } + }, + { + "amount": "176.340472122", + "slot": { + "period": 3663863, + "thread": 7 + } + }, + { + "amount": "176.340472112", + "slot": { + "period": 3877239, + "thread": 11 + } + } + ], + "AU1FefZid82P3wjYV1Gtw3WeuXe13VBpFkbJRJgM3QwuT99cmucn": [ + { + "amount": "182.675907042", + "slot": { + "period": 86436, + "thread": 22 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 244716, + "thread": 26 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 387803, + "thread": 22 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 596297, + "thread": 0 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 704629, + "thread": 21 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 879546, + "thread": 9 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1044119, + "thread": 4 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1302367, + "thread": 3 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1404203, + "thread": 27 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1485689, + "thread": 12 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1697643, + "thread": 15 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 1918412, + "thread": 21 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2060584, + "thread": 29 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2189074, + "thread": 27 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2395274, + "thread": 23 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2618940, + "thread": 23 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2708918, + "thread": 18 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 2892437, + "thread": 17 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 3062111, + "thread": 15 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 3179470, + "thread": 13 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 3385801, + "thread": 21 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 3551820, + "thread": 14 + } + }, + { + "amount": "182.675907042", + "slot": { + "period": 3674585, + "thread": 8 + } + }, + { + "amount": "182.675907051", + "slot": { + "period": 3847117, + "thread": 23 + } + } + ], + "AU1Fes7upZf5Q9DZgtPsmFogPpWHf85ddp7vRCap2kUzvFNQwWDi": [ + { + "amount": "126.685904383", + "slot": { + "period": 23917, + "thread": 15 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 273335, + "thread": 1 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 471322, + "thread": 1 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 501243, + "thread": 7 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 726057, + "thread": 7 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 904800, + "thread": 21 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1048038, + "thread": 18 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1206809, + "thread": 10 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1459283, + "thread": 10 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1621155, + "thread": 10 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1675331, + "thread": 13 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 1917033, + "thread": 1 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2137505, + "thread": 1 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2248207, + "thread": 5 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2432182, + "thread": 30 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2581304, + "thread": 13 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2751181, + "thread": 30 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2936613, + "thread": 2 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 2983075, + "thread": 10 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 3239194, + "thread": 18 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 3440893, + "thread": 31 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 3509321, + "thread": 19 + } + }, + { + "amount": "126.685904383", + "slot": { + "period": 3770696, + "thread": 8 + } + }, + { + "amount": "126.685904382", + "slot": { + "period": 3785860, + "thread": 21 + } + } + ], + "AU1FfWnRMYatQJhXKf1X68dA2kha5GqgRcdTct8zqJVvfsYM97pz": [ + { + "amount": "86.894395882", + "slot": { + "period": 13743, + "thread": 0 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 272210, + "thread": 26 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 341409, + "thread": 7 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 537209, + "thread": 2 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 798355, + "thread": 30 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 902530, + "thread": 0 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1121524, + "thread": 24 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1177813, + "thread": 8 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1392287, + "thread": 9 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1614188, + "thread": 5 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1694945, + "thread": 27 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1913425, + "thread": 0 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 1999269, + "thread": 19 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2150714, + "thread": 23 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2425628, + "thread": 19 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2620823, + "thread": 22 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2735310, + "thread": 0 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2807363, + "thread": 8 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 2964722, + "thread": 21 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 3225634, + "thread": 7 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 3320871, + "thread": 7 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 3543470, + "thread": 23 + } + }, + { + "amount": "86.894395882", + "slot": { + "period": 3714378, + "thread": 7 + } + }, + { + "amount": "86.894395875", + "slot": { + "period": 3833483, + "thread": 10 + } + } + ], + "AU1Ffosn2AudbwfyhV1bWxzyv183U3aDnL9kFDg42xShps2sRz2j": [ + { + "amount": "86.191694592", + "slot": { + "period": 86280, + "thread": 25 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 261261, + "thread": 4 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 379244, + "thread": 31 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 522372, + "thread": 12 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 810517, + "thread": 8 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 842173, + "thread": 25 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1091138, + "thread": 17 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1225926, + "thread": 1 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1388993, + "thread": 15 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1638958, + "thread": 1 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1790204, + "thread": 4 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 1966031, + "thread": 7 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2137147, + "thread": 26 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2189569, + "thread": 20 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2306983, + "thread": 23 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2569258, + "thread": 18 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2724575, + "thread": 7 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 2905436, + "thread": 10 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 3033834, + "thread": 0 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 3148250, + "thread": 11 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 3437415, + "thread": 23 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 3504023, + "thread": 22 + } + }, + { + "amount": "86.191694592", + "slot": { + "period": 3675372, + "thread": 0 + } + }, + { + "amount": "86.191694598", + "slot": { + "period": 3920388, + "thread": 22 + } + } + ], + "AU1FfrVNryPAoLxcwLMdSBUyxszn4g7ZM2zXXXKMNQN8GCqrNDiH": [ + { + "amount": "89.798130216", + "slot": { + "period": 12949, + "thread": 24 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 279974, + "thread": 12 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 358153, + "thread": 16 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 519206, + "thread": 20 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 724895, + "thread": 1 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 879126, + "thread": 19 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1125921, + "thread": 2 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1177332, + "thread": 24 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1352665, + "thread": 2 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1591071, + "thread": 1 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1725231, + "thread": 1 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 1831430, + "thread": 22 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2033766, + "thread": 1 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2276909, + "thread": 20 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2332248, + "thread": 22 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2471069, + "thread": 19 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2715465, + "thread": 2 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 2879278, + "thread": 30 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 3002702, + "thread": 4 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 3247221, + "thread": 23 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 3426600, + "thread": 16 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 3544621, + "thread": 26 + } + }, + { + "amount": "89.798130216", + "slot": { + "period": 3697042, + "thread": 22 + } + }, + { + "amount": "89.798130210", + "slot": { + "period": 3808580, + "thread": 12 + } + } + ], + "AU1Fiotq9gcHQ7okwgTFRvT7gZCqwTjW2JxMDgChp1LgwucoC6eW": [ + { + "amount": "142.737736978", + "slot": { + "period": 102637, + "thread": 27 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 270724, + "thread": 18 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 444183, + "thread": 31 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 634682, + "thread": 17 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 686012, + "thread": 25 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 858326, + "thread": 30 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1038605, + "thread": 24 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1303364, + "thread": 29 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1408633, + "thread": 5 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1501834, + "thread": 15 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1776336, + "thread": 0 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 1879942, + "thread": 16 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2130380, + "thread": 14 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2151295, + "thread": 3 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2336705, + "thread": 26 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2611086, + "thread": 9 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2734067, + "thread": 25 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 2897420, + "thread": 3 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 3072265, + "thread": 4 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 3174020, + "thread": 9 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 3448376, + "thread": 20 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 3524389, + "thread": 27 + } + }, + { + "amount": "142.737736978", + "slot": { + "period": 3636767, + "thread": 12 + } + }, + { + "amount": "142.737736967", + "slot": { + "period": 3866975, + "thread": 15 + } + } + ], + "AU1FjpZDt8U6qEWmBwReix7f3UvD5RqYfVjuVMjFZ13WRAAK7oL1": [ + { + "amount": "155.072739359", + "slot": { + "period": 42869, + "thread": 30 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 289189, + "thread": 6 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 361839, + "thread": 16 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 609060, + "thread": 21 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 785369, + "thread": 30 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 855518, + "thread": 26 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1030540, + "thread": 5 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1173057, + "thread": 16 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1470336, + "thread": 13 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1485227, + "thread": 1 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1702125, + "thread": 14 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 1818269, + "thread": 15 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2132302, + "thread": 10 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2159089, + "thread": 2 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2297403, + "thread": 22 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2484013, + "thread": 2 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2789420, + "thread": 31 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 2915843, + "thread": 12 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 3015012, + "thread": 14 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 3252648, + "thread": 3 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 3400959, + "thread": 12 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 3454022, + "thread": 9 + } + }, + { + "amount": "155.072739359", + "slot": { + "period": 3683999, + "thread": 30 + } + }, + { + "amount": "155.072739363", + "slot": { + "period": 3830661, + "thread": 8 + } + } + ], + "AU1Fkfw3zqqiCd5ihv31ta3knTbPhabD4KgEJ4Hrwc4PjWn8kDKL": [ + { + "amount": "67.544752609", + "slot": { + "period": 116801, + "thread": 20 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 225099, + "thread": 5 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 409972, + "thread": 31 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 514049, + "thread": 18 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 817832, + "thread": 26 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 962387, + "thread": 25 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1135327, + "thread": 8 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1259099, + "thread": 18 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1472957, + "thread": 19 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1559517, + "thread": 1 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1730620, + "thread": 29 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1945703, + "thread": 2 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 1986853, + "thread": 4 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2174786, + "thread": 12 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2311412, + "thread": 11 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2477268, + "thread": 31 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2659163, + "thread": 24 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2895726, + "thread": 6 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 2981389, + "thread": 28 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 3252765, + "thread": 13 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 3349263, + "thread": 12 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 3538791, + "thread": 20 + } + }, + { + "amount": "67.544752609", + "slot": { + "period": 3774031, + "thread": 16 + } + }, + { + "amount": "67.544752611", + "slot": { + "period": 3932228, + "thread": 29 + } + } + ], + "AU1Fm5TbxPS3ao825bCbe1UMSZZhtHEF1DWHcfvCEePXpCod4NPk": [ + { + "amount": "223.427998371", + "slot": { + "period": 129123, + "thread": 20 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 264917, + "thread": 5 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 363189, + "thread": 0 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 494527, + "thread": 10 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 713851, + "thread": 22 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 953487, + "thread": 4 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 993740, + "thread": 8 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 1269291, + "thread": 28 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 1392288, + "thread": 20 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 1558116, + "thread": 16 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 1797100, + "thread": 31 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 1853971, + "thread": 24 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2041053, + "thread": 20 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2249055, + "thread": 11 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2457904, + "thread": 11 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2584580, + "thread": 11 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2780538, + "thread": 10 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 2945966, + "thread": 25 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 3085326, + "thread": 10 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 3209402, + "thread": 5 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 3387063, + "thread": 12 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 3459182, + "thread": 21 + } + }, + { + "amount": "223.427998371", + "slot": { + "period": 3679126, + "thread": 24 + } + }, + { + "amount": "223.427998368", + "slot": { + "period": 3790102, + "thread": 21 + } + } + ], + "AU1FmRShS8eAHEx2GrQFh4X2mHj2tMB6SjrBjFmpGVFf5o7pZaRU": [ + { + "amount": "258.302478614", + "slot": { + "period": 24468, + "thread": 25 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 228506, + "thread": 21 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 367958, + "thread": 14 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 545043, + "thread": 26 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 678163, + "thread": 13 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 972354, + "thread": 18 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 994948, + "thread": 17 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 1151932, + "thread": 5 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 1328048, + "thread": 7 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 1638627, + "thread": 22 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 1696276, + "thread": 20 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 1819979, + "thread": 16 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2074752, + "thread": 13 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2186804, + "thread": 15 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2442307, + "thread": 2 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2465342, + "thread": 12 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2764581, + "thread": 25 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 2871441, + "thread": 27 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 3044134, + "thread": 7 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 3175078, + "thread": 14 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 3422747, + "thread": 28 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 3546535, + "thread": 25 + } + }, + { + "amount": "258.302478614", + "slot": { + "period": 3670977, + "thread": 25 + } + }, + { + "amount": "258.302478625", + "slot": { + "period": 3935010, + "thread": 2 + } + } + ], + "AU1FngqUwTE5cM4Kk7pex2MREsFZodeBmvdSsQZmN6cCKDMiVMWP": [ + { + "amount": "138.240133790", + "slot": { + "period": 141210, + "thread": 18 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 262975, + "thread": 12 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 454125, + "thread": 16 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 600066, + "thread": 25 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 724959, + "thread": 28 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 944240, + "thread": 15 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1063682, + "thread": 7 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1264930, + "thread": 8 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1352587, + "thread": 31 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1625220, + "thread": 10 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1779306, + "thread": 20 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 1878877, + "thread": 10 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2113090, + "thread": 23 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2186390, + "thread": 5 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2380082, + "thread": 18 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2530750, + "thread": 12 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2727020, + "thread": 24 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 2918660, + "thread": 5 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 3075724, + "thread": 4 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 3176407, + "thread": 10 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 3313119, + "thread": 26 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 3528393, + "thread": 5 + } + }, + { + "amount": "138.240133790", + "slot": { + "period": 3732419, + "thread": 18 + } + }, + { + "amount": "138.240133798", + "slot": { + "period": 3816295, + "thread": 22 + } + } + ], + "AU1FoiYhww2XNRdM88dX9s1KGP8MoexjkdZQLhewmqq1F66iD2Qb": [ + { + "amount": "125.356303545", + "slot": { + "period": 29560, + "thread": 20 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 268619, + "thread": 8 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 427990, + "thread": 8 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 614226, + "thread": 14 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 746988, + "thread": 16 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 903100, + "thread": 12 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1096644, + "thread": 17 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1229626, + "thread": 15 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1431403, + "thread": 6 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1580546, + "thread": 16 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1724306, + "thread": 22 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 1898497, + "thread": 1 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2107918, + "thread": 6 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2162570, + "thread": 5 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2426282, + "thread": 26 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2536119, + "thread": 15 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2681247, + "thread": 22 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 2951690, + "thread": 17 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 3115155, + "thread": 26 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 3236966, + "thread": 6 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 3447808, + "thread": 9 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 3578464, + "thread": 19 + } + }, + { + "amount": "125.356303545", + "slot": { + "period": 3646208, + "thread": 17 + } + }, + { + "amount": "125.356303544", + "slot": { + "period": 3919522, + "thread": 20 + } + } + ], + "AU1FowtXu1XpHbs3LgQGgHpsMovCs57hPbeeiVYwHzPKKc3MhYwm": [ + { + "amount": "274.154844250", + "slot": { + "period": 97827, + "thread": 22 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 236002, + "thread": 21 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 379707, + "thread": 21 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 575848, + "thread": 19 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 793655, + "thread": 15 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 825089, + "thread": 1 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1109532, + "thread": 12 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1302160, + "thread": 25 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1324266, + "thread": 2 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1635162, + "thread": 7 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1682599, + "thread": 5 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 1874810, + "thread": 10 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2013450, + "thread": 31 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2267389, + "thread": 28 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2453595, + "thread": 23 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2504404, + "thread": 18 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2645203, + "thread": 5 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 2933194, + "thread": 1 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 3108546, + "thread": 27 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 3157173, + "thread": 15 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 3359663, + "thread": 5 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 3586142, + "thread": 22 + } + }, + { + "amount": "274.154844250", + "slot": { + "period": 3710025, + "thread": 15 + } + }, + { + "amount": "274.154844243", + "slot": { + "period": 3911332, + "thread": 11 + } + } + ], + "AU1Fp7uBP2TXxDty2HdTE3ZE3XQ4cNXnG3xuo8TkQLJtyxC7FKhx": [ + { + "amount": "255.695049907", + "slot": { + "period": 129502, + "thread": 19 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 185976, + "thread": 6 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 446464, + "thread": 27 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 636287, + "thread": 11 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 776789, + "thread": 30 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 911298, + "thread": 22 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1031872, + "thread": 0 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1295439, + "thread": 17 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1387321, + "thread": 5 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1593240, + "thread": 10 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1655693, + "thread": 14 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 1938370, + "thread": 8 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2100258, + "thread": 21 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2265737, + "thread": 26 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2454887, + "thread": 10 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2535621, + "thread": 2 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2750489, + "thread": 29 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 2834403, + "thread": 2 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 3077649, + "thread": 3 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 3247547, + "thread": 29 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 3432897, + "thread": 20 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 3528768, + "thread": 7 + } + }, + { + "amount": "255.695049907", + "slot": { + "period": 3692088, + "thread": 13 + } + }, + { + "amount": "255.695049905", + "slot": { + "period": 3824330, + "thread": 31 + } + } + ], + "AU1FpCTguYHfZqLixjvWiSWTNwaj4rBXAC9roQhUByhFgcHpY8hw": [ + { + "amount": "348.830546626", + "slot": { + "period": 76687, + "thread": 26 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 237869, + "thread": 25 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 386785, + "thread": 25 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 602718, + "thread": 8 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 757459, + "thread": 13 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 967507, + "thread": 25 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1124850, + "thread": 31 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1255163, + "thread": 15 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1444080, + "thread": 15 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1528974, + "thread": 9 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1659783, + "thread": 5 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 1851202, + "thread": 3 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2088177, + "thread": 20 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2248977, + "thread": 6 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2320167, + "thread": 26 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2529957, + "thread": 27 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2638678, + "thread": 21 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 2894085, + "thread": 4 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3112103, + "thread": 25 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3202066, + "thread": 31 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3347807, + "thread": 29 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3476744, + "thread": 24 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3642416, + "thread": 30 + } + }, + { + "amount": "348.830546626", + "slot": { + "period": 3887334, + "thread": 30 + } + } + ], + "AU1FqSPaDdmw2Eha5TVtzmJStQ4WAGFv42RrKmBnVEoAuSy7xUpo": [ + { + "amount": "180.528573952", + "slot": { + "period": 42261, + "thread": 5 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 178186, + "thread": 11 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 381568, + "thread": 5 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 538462, + "thread": 7 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 771162, + "thread": 14 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 846023, + "thread": 16 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1109071, + "thread": 3 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1299325, + "thread": 29 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1402309, + "thread": 11 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1487886, + "thread": 16 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1656498, + "thread": 27 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 1969703, + "thread": 13 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2081345, + "thread": 22 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2241638, + "thread": 31 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2417473, + "thread": 16 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2546524, + "thread": 9 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2656790, + "thread": 2 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 2865333, + "thread": 12 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 3048834, + "thread": 2 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 3237737, + "thread": 23 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 3315909, + "thread": 1 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 3530054, + "thread": 11 + } + }, + { + "amount": "180.528573952", + "slot": { + "period": 3771665, + "thread": 15 + } + }, + { + "amount": "180.528573957", + "slot": { + "period": 3847172, + "thread": 8 + } + } + ], + "AU1FqckCApWu4FJJVWeL1xZ2obWE5hnXadC4umxJtDEQwcghmA6Y": [ + { + "amount": "56.090674414", + "slot": { + "period": 52271, + "thread": 7 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 221437, + "thread": 0 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 347305, + "thread": 16 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 643842, + "thread": 16 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 729852, + "thread": 12 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 877891, + "thread": 13 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1052133, + "thread": 0 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1180497, + "thread": 3 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1423837, + "thread": 17 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1533287, + "thread": 22 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1764101, + "thread": 4 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 1851755, + "thread": 4 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2045601, + "thread": 1 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2271824, + "thread": 25 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2337385, + "thread": 23 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2608506, + "thread": 20 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2721235, + "thread": 17 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2910512, + "thread": 5 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 2954180, + "thread": 13 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 3178346, + "thread": 13 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 3373164, + "thread": 24 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 3482724, + "thread": 15 + } + }, + { + "amount": "56.090674414", + "slot": { + "period": 3636981, + "thread": 3 + } + }, + { + "amount": "56.090674409", + "slot": { + "period": 3814309, + "thread": 7 + } + } + ], + "AU1Fqr7o7ZA8mzSvRMY1SFr6P3fbxnjmUiLCKKQvmCWExFbcWkPR": [ + { + "amount": "317.688034664", + "slot": { + "period": 48700, + "thread": 15 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 256177, + "thread": 29 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 456613, + "thread": 26 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 589784, + "thread": 9 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 732393, + "thread": 12 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 891282, + "thread": 3 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1138267, + "thread": 11 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1255598, + "thread": 23 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1322004, + "thread": 31 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1547245, + "thread": 25 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1756188, + "thread": 18 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 1869744, + "thread": 12 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2101347, + "thread": 5 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2272112, + "thread": 7 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2380043, + "thread": 26 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2594217, + "thread": 13 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2652745, + "thread": 5 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 2950298, + "thread": 10 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 3063944, + "thread": 14 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 3225845, + "thread": 18 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 3383729, + "thread": 5 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 3518029, + "thread": 26 + } + }, + { + "amount": "317.688034664", + "slot": { + "period": 3747433, + "thread": 16 + } + }, + { + "amount": "317.688034676", + "slot": { + "period": 3908808, + "thread": 28 + } + } + ], + "AU1Frs6pW7i2f1sPGge8427MvjYX4gifzYw96jYkY8jJvvSmJPT6": [ + { + "amount": "204.368009006", + "slot": { + "period": 86176, + "thread": 8 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 197087, + "thread": 19 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 348750, + "thread": 17 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 507194, + "thread": 26 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 760544, + "thread": 31 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 909075, + "thread": 25 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1015934, + "thread": 21 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1243448, + "thread": 9 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1434357, + "thread": 1 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1529173, + "thread": 23 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1669606, + "thread": 26 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 1883210, + "thread": 18 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2004626, + "thread": 12 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2268266, + "thread": 14 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2364426, + "thread": 16 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2521152, + "thread": 22 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2639296, + "thread": 21 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 2803928, + "thread": 20 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 3061838, + "thread": 0 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 3271254, + "thread": 14 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 3445300, + "thread": 31 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 3561077, + "thread": 5 + } + }, + { + "amount": "204.368009006", + "slot": { + "period": 3775875, + "thread": 23 + } + }, + { + "amount": "204.368009012", + "slot": { + "period": 3885584, + "thread": 14 + } + } + ], + "AU1Fsma9uxeBGmUzYin9vksrTJJqwpD3YJYn4jrA7zMVfkT61wGE": [ + { + "amount": "109.366243265", + "slot": { + "period": 42139, + "thread": 9 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 312776, + "thread": 13 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 377389, + "thread": 25 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 567649, + "thread": 4 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 653470, + "thread": 0 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 953920, + "thread": 23 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1096552, + "thread": 18 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1280977, + "thread": 12 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1473770, + "thread": 17 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1516694, + "thread": 0 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1767371, + "thread": 29 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 1886590, + "thread": 19 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2032905, + "thread": 29 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2150044, + "thread": 3 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2305195, + "thread": 9 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2547714, + "thread": 16 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2727467, + "thread": 15 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 2860756, + "thread": 8 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 3076016, + "thread": 6 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 3244953, + "thread": 10 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 3401446, + "thread": 25 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 3501765, + "thread": 14 + } + }, + { + "amount": "109.366243265", + "slot": { + "period": 3660772, + "thread": 15 + } + }, + { + "amount": "109.366243269", + "slot": { + "period": 3822917, + "thread": 0 + } + } + ], + "AU1FuFpdX14STLdfKa87yyX28g96wNwQRLGd8FQuD58iTwgZ1yZC": [ + { + "amount": "147.665913429", + "slot": { + "period": 13383, + "thread": 1 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 168947, + "thread": 7 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 420258, + "thread": 24 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 519174, + "thread": 23 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 813497, + "thread": 25 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 893743, + "thread": 7 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1047813, + "thread": 2 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1297341, + "thread": 15 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1376429, + "thread": 11 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1632669, + "thread": 26 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1760350, + "thread": 9 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 1876608, + "thread": 7 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2110836, + "thread": 8 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2168689, + "thread": 7 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2414934, + "thread": 6 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2523987, + "thread": 11 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2744236, + "thread": 29 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 2906058, + "thread": 16 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 3080872, + "thread": 8 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 3280753, + "thread": 27 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 3318678, + "thread": 23 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 3518808, + "thread": 20 + } + }, + { + "amount": "147.665913429", + "slot": { + "period": 3673694, + "thread": 23 + } + }, + { + "amount": "147.665913430", + "slot": { + "period": 3813088, + "thread": 1 + } + } + ], + "AU1Fxh8pxpyAFCtehA8bbCEjrWRtBL5K4VQREsVHRVvA1RgtgZDS": [ + { + "amount": "458.037238921", + "slot": { + "period": 102504, + "thread": 20 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 217222, + "thread": 17 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 418907, + "thread": 6 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 539957, + "thread": 16 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 736112, + "thread": 30 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 868058, + "thread": 11 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1043848, + "thread": 6 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1279057, + "thread": 24 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1450261, + "thread": 12 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1530651, + "thread": 8 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1695782, + "thread": 3 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 1869685, + "thread": 23 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2138356, + "thread": 26 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2294507, + "thread": 10 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2324565, + "thread": 3 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2556035, + "thread": 8 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2766985, + "thread": 7 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 2858605, + "thread": 25 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 3062609, + "thread": 21 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 3203537, + "thread": 30 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 3383690, + "thread": 18 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 3504833, + "thread": 18 + } + }, + { + "amount": "458.037238921", + "slot": { + "period": 3645516, + "thread": 2 + } + }, + { + "amount": "458.037238919", + "slot": { + "period": 3897049, + "thread": 10 + } + } + ], + "AU1FynJf6ckA2U1wE9Hy9LYAd4gdA4Ajba9cyJEF6Y7nqptGJYyL": [ + { + "amount": "72.337390083", + "slot": { + "period": 165667, + "thread": 16 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 180015, + "thread": 16 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 346108, + "thread": 31 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 568912, + "thread": 19 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 680560, + "thread": 31 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 843721, + "thread": 6 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 996761, + "thread": 16 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 1317003, + "thread": 8 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 1349669, + "thread": 3 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 1557705, + "thread": 25 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 1774215, + "thread": 14 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 1961201, + "thread": 31 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2142080, + "thread": 2 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2247523, + "thread": 18 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2313573, + "thread": 16 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2576281, + "thread": 31 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2673024, + "thread": 28 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2801032, + "thread": 18 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 2958085, + "thread": 6 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 3150600, + "thread": 23 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 3310000, + "thread": 27 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 3489427, + "thread": 0 + } + }, + { + "amount": "72.337390083", + "slot": { + "period": 3694659, + "thread": 18 + } + }, + { + "amount": "72.337390087", + "slot": { + "period": 3879331, + "thread": 17 + } + } + ], + "AU1Fz4Bi1dZa3aypE5aCwjay9eYvK6evQZgXajrop9q4BEnqSy6j": [ + { + "amount": "82.888275507", + "slot": { + "period": 13191, + "thread": 25 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 277569, + "thread": 13 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 351886, + "thread": 6 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 649089, + "thread": 5 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 751264, + "thread": 23 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 868498, + "thread": 28 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1090727, + "thread": 27 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1301421, + "thread": 4 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1393357, + "thread": 24 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1530480, + "thread": 24 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1694560, + "thread": 11 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 1866235, + "thread": 28 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2098184, + "thread": 9 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2249673, + "thread": 20 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2307570, + "thread": 31 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2467073, + "thread": 25 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2644079, + "thread": 2 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 2945795, + "thread": 14 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 3033063, + "thread": 8 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 3269138, + "thread": 31 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 3410697, + "thread": 23 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 3610293, + "thread": 17 + } + }, + { + "amount": "82.888275507", + "slot": { + "period": 3757570, + "thread": 13 + } + }, + { + "amount": "82.888275516", + "slot": { + "period": 3854050, + "thread": 19 + } + } + ], + "AU1Fz9yui39YrzWWAhg7A4ZHJ2GD236QFMnVAFH3CQ1XgQgBGmsb": [ + { + "amount": "201.859755438", + "slot": { + "period": 160768, + "thread": 19 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 279546, + "thread": 3 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 439621, + "thread": 0 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 532272, + "thread": 4 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 760343, + "thread": 8 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 952870, + "thread": 10 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1143824, + "thread": 4 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1297590, + "thread": 19 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1342306, + "thread": 27 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1578209, + "thread": 19 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1784710, + "thread": 8 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 1931493, + "thread": 10 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2098066, + "thread": 30 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2176420, + "thread": 30 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2430524, + "thread": 8 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2525657, + "thread": 5 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2790339, + "thread": 8 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 2794128, + "thread": 18 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 3012654, + "thread": 17 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 3259782, + "thread": 18 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 3313441, + "thread": 25 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 3561202, + "thread": 15 + } + }, + { + "amount": "201.859755438", + "slot": { + "period": 3726409, + "thread": 9 + } + }, + { + "amount": "201.859755441", + "slot": { + "period": 3892245, + "thread": 13 + } + } + ], + "AU1G13Wg9B9QtdXmBd6b3YLosqS83KRF15Hyuw5LqZMXZb6dTjC1": [ + { + "amount": "65.868067409", + "slot": { + "period": 136086, + "thread": 13 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 271031, + "thread": 8 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 392999, + "thread": 11 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 546827, + "thread": 23 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 764859, + "thread": 5 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 935495, + "thread": 13 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1068042, + "thread": 23 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1295054, + "thread": 31 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1479035, + "thread": 0 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1625576, + "thread": 9 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1806652, + "thread": 26 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 1959955, + "thread": 21 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2002727, + "thread": 24 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2281427, + "thread": 11 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2414414, + "thread": 10 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2556743, + "thread": 0 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2712083, + "thread": 5 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 2845908, + "thread": 25 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 3037329, + "thread": 12 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 3198416, + "thread": 6 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 3342251, + "thread": 30 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 3501277, + "thread": 25 + } + }, + { + "amount": "65.868067409", + "slot": { + "period": 3692432, + "thread": 14 + } + }, + { + "amount": "65.868067398", + "slot": { + "period": 3860591, + "thread": 2 + } + } + ], + "AU1G18SYVx43izLByPYYBQC9rJRg28XjoQJTwHNKZi7N3kVWwgtN": [ + { + "amount": "273.794528207", + "slot": { + "period": 100695, + "thread": 9 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 261115, + "thread": 17 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 339664, + "thread": 1 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 652377, + "thread": 29 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 684803, + "thread": 14 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 951562, + "thread": 13 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1027486, + "thread": 12 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1176685, + "thread": 18 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1343247, + "thread": 0 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1566212, + "thread": 31 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1756186, + "thread": 6 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 1856898, + "thread": 16 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2091440, + "thread": 24 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2199920, + "thread": 12 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2297384, + "thread": 29 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2488922, + "thread": 20 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2735444, + "thread": 27 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2935983, + "thread": 9 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 2990179, + "thread": 26 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 3183808, + "thread": 4 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 3450480, + "thread": 26 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 3603885, + "thread": 31 + } + }, + { + "amount": "273.794528207", + "slot": { + "period": 3725754, + "thread": 2 + } + }, + { + "amount": "273.794528211", + "slot": { + "period": 3900160, + "thread": 11 + } + } + ], + "AU1G1qJahNJp4P4y7ZpKLCCVFZxxtdxYp9FiJ2vw3tz5Cu7ctPbo": [ + { + "amount": "303.914550660", + "slot": { + "period": 57296, + "thread": 10 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 267297, + "thread": 11 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 487848, + "thread": 8 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 559340, + "thread": 14 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 667983, + "thread": 9 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 906185, + "thread": 27 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1021916, + "thread": 9 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1287631, + "thread": 20 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1353492, + "thread": 17 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1581942, + "thread": 25 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1673996, + "thread": 30 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 1824253, + "thread": 0 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2003072, + "thread": 22 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2197571, + "thread": 11 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2428611, + "thread": 20 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2546840, + "thread": 28 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2652490, + "thread": 26 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 2805516, + "thread": 2 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 3087301, + "thread": 19 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 3191873, + "thread": 19 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 3334074, + "thread": 12 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 3473188, + "thread": 8 + } + }, + { + "amount": "303.914550660", + "slot": { + "period": 3765648, + "thread": 18 + } + }, + { + "amount": "303.914550661", + "slot": { + "period": 3886140, + "thread": 21 + } + } + ], + "AU1G2G23Rj83DBw9Q7QmjcGnKnxJarfxEGAiAmjiL4iDpGCimxNz": [ + { + "amount": "89.937334760", + "slot": { + "period": 98273, + "thread": 16 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 251412, + "thread": 11 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 333856, + "thread": 29 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 497425, + "thread": 18 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 799641, + "thread": 29 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 917636, + "thread": 25 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1139502, + "thread": 30 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1163914, + "thread": 5 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1390945, + "thread": 20 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1606534, + "thread": 0 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1770420, + "thread": 31 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 1871539, + "thread": 31 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2029965, + "thread": 13 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2181792, + "thread": 28 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2452248, + "thread": 31 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2557777, + "thread": 18 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2697308, + "thread": 12 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 2890729, + "thread": 26 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 3040984, + "thread": 17 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 3171250, + "thread": 19 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 3319471, + "thread": 18 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 3456428, + "thread": 25 + } + }, + { + "amount": "89.937334760", + "slot": { + "period": 3619951, + "thread": 2 + } + }, + { + "amount": "89.937334771", + "slot": { + "period": 3906733, + "thread": 26 + } + } + ], + "AU1G2dk9TDghub7ty1gJagft27VKVQXtVSb9oaEjMnYQ81ZNJQHW": [ + { + "amount": "400.121826611", + "slot": { + "period": 45003, + "thread": 24 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 314787, + "thread": 22 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 447847, + "thread": 7 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 559187, + "thread": 24 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 689481, + "thread": 16 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 846992, + "thread": 8 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1055914, + "thread": 9 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1248398, + "thread": 5 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1457129, + "thread": 27 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1501582, + "thread": 18 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1672566, + "thread": 31 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 1818210, + "thread": 23 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2021783, + "thread": 12 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2280113, + "thread": 17 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2318979, + "thread": 10 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2562398, + "thread": 24 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2669199, + "thread": 10 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 2848911, + "thread": 8 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 3004949, + "thread": 20 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 3244620, + "thread": 16 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 3357640, + "thread": 4 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 3595001, + "thread": 20 + } + }, + { + "amount": "400.121826611", + "slot": { + "period": 3686518, + "thread": 30 + } + }, + { + "amount": "400.121826612", + "slot": { + "period": 3841780, + "thread": 3 + } + } + ], + "AU1G58F98cbUEqGqSnSNtNvowVDDPNy19JdCN8Y8crxCazDTZ4Uh": [ + { + "amount": "523.785566892", + "slot": { + "period": 118301, + "thread": 3 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 205282, + "thread": 7 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 459390, + "thread": 17 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 561535, + "thread": 2 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 732847, + "thread": 10 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 877530, + "thread": 4 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1054267, + "thread": 17 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1190257, + "thread": 17 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1331482, + "thread": 21 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1485395, + "thread": 11 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1729783, + "thread": 10 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 1933268, + "thread": 3 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2063921, + "thread": 4 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2222170, + "thread": 25 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2422675, + "thread": 31 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2611909, + "thread": 5 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2683740, + "thread": 9 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 2927423, + "thread": 15 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3113044, + "thread": 16 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3206201, + "thread": 19 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3377870, + "thread": 5 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3531111, + "thread": 0 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3778448, + "thread": 11 + } + }, + { + "amount": "523.785566892", + "slot": { + "period": 3799665, + "thread": 2 + } + } + ], + "AU1G58Z3vQkC9QHvCqP4YLAAZD4zDvsaKMMeyZzBk4h49kWvaEX5": [ + { + "amount": "115.419076392", + "slot": { + "period": 141795, + "thread": 1 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 306483, + "thread": 18 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 463775, + "thread": 7 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 587255, + "thread": 24 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 696478, + "thread": 4 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 955815, + "thread": 30 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1037697, + "thread": 16 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1183018, + "thread": 10 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1459142, + "thread": 19 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1595696, + "thread": 9 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1788951, + "thread": 3 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 1829233, + "thread": 22 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2055232, + "thread": 23 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2221276, + "thread": 1 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2325914, + "thread": 11 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2511285, + "thread": 13 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2686847, + "thread": 20 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 2890729, + "thread": 20 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 3103216, + "thread": 14 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 3221993, + "thread": 2 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 3405661, + "thread": 10 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 3539064, + "thread": 14 + } + }, + { + "amount": "115.419076392", + "slot": { + "period": 3714953, + "thread": 24 + } + }, + { + "amount": "115.419076381", + "slot": { + "period": 3931067, + "thread": 25 + } + } + ], + "AU1G5SMLgnfdRQqRTLnTqBrBuuhsbDhskhrA4fNpmbWpeS5RpDPX": [ + { + "amount": "164.078645042", + "slot": { + "period": 161174, + "thread": 23 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 254331, + "thread": 2 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 339183, + "thread": 29 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 508972, + "thread": 16 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 666532, + "thread": 5 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 849246, + "thread": 24 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1145775, + "thread": 3 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1207355, + "thread": 22 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1457963, + "thread": 0 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1562547, + "thread": 20 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1784923, + "thread": 29 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 1962713, + "thread": 8 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2089853, + "thread": 29 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2183846, + "thread": 6 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2356586, + "thread": 5 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2570711, + "thread": 17 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2730132, + "thread": 14 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2865737, + "thread": 13 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 2985035, + "thread": 29 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 3164492, + "thread": 13 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 3328379, + "thread": 4 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 3507553, + "thread": 1 + } + }, + { + "amount": "164.078645042", + "slot": { + "period": 3771063, + "thread": 6 + } + }, + { + "amount": "164.078645050", + "slot": { + "period": 3807481, + "thread": 2 + } + } + ], + "AU1G5WE9GwyNDtExy6RStYUN9oHVL6MbSfz3Ru51StFkrxKfahmm": [ + { + "amount": "145.034071853", + "slot": { + "period": 132793, + "thread": 7 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 237828, + "thread": 20 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 450953, + "thread": 4 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 526867, + "thread": 3 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 800801, + "thread": 14 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 825000, + "thread": 0 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1097284, + "thread": 18 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1175404, + "thread": 2 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1361571, + "thread": 3 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1538365, + "thread": 1 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1713958, + "thread": 16 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 1951014, + "thread": 4 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2137869, + "thread": 11 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2145896, + "thread": 18 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2378480, + "thread": 6 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2493682, + "thread": 23 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2701035, + "thread": 16 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 2946087, + "thread": 31 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 3016350, + "thread": 15 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 3169699, + "thread": 11 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 3336841, + "thread": 14 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 3527778, + "thread": 22 + } + }, + { + "amount": "145.034071853", + "slot": { + "period": 3773625, + "thread": 24 + } + }, + { + "amount": "145.034071855", + "slot": { + "period": 3823345, + "thread": 18 + } + } + ], + "AU1G783oGb3Rvx7PPw9VP7qSZBH9oV1ekZcALXt3WrAcVfMJnt5b": [ + { + "amount": "131.470627043", + "slot": { + "period": 52106, + "thread": 12 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 277667, + "thread": 0 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 362135, + "thread": 23 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 540395, + "thread": 24 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 704052, + "thread": 25 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 840500, + "thread": 10 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1015534, + "thread": 20 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1274176, + "thread": 4 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1375765, + "thread": 15 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1554489, + "thread": 18 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1745836, + "thread": 30 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 1933027, + "thread": 7 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2036015, + "thread": 8 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2199048, + "thread": 11 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2428970, + "thread": 18 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2482404, + "thread": 25 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2698484, + "thread": 15 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 2901428, + "thread": 9 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 3033051, + "thread": 20 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 3274356, + "thread": 17 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 3331310, + "thread": 16 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 3564230, + "thread": 22 + } + }, + { + "amount": "131.470627043", + "slot": { + "period": 3628867, + "thread": 28 + } + }, + { + "amount": "131.470627054", + "slot": { + "period": 3907328, + "thread": 11 + } + } + ], + "AU1G87PRQe6LQrrPFpWQj2CdCuZEYU2jYp2jLhdHbPa8YP38sd8K": [ + { + "amount": "410.948249161", + "slot": { + "period": 126258, + "thread": 23 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 169228, + "thread": 2 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 419532, + "thread": 12 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 566452, + "thread": 18 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 670753, + "thread": 17 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 830449, + "thread": 9 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 999762, + "thread": 17 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1158382, + "thread": 18 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1332806, + "thread": 28 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1512312, + "thread": 8 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1718829, + "thread": 23 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1855970, + "thread": 28 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 1988207, + "thread": 12 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 2167528, + "thread": 13 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 2435619, + "thread": 7 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 2488495, + "thread": 24 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 2768800, + "thread": 20 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 2872587, + "thread": 23 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 3029429, + "thread": 7 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 3125522, + "thread": 25 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 3391492, + "thread": 25 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 3457651, + "thread": 20 + } + }, + { + "amount": "410.948249161", + "slot": { + "period": 3710776, + "thread": 23 + } + }, + { + "amount": "410.948249171", + "slot": { + "period": 3816387, + "thread": 20 + } + } + ], + "AU1G8Y2Hgdh1vbNvkiLLA5eYujUFdomzp8h1YCi8WfxuR6wUQDYW": [ + { + "amount": "66.419046310", + "slot": { + "period": 69951, + "thread": 5 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 229669, + "thread": 6 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 451818, + "thread": 17 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 507018, + "thread": 8 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 772893, + "thread": 11 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 867803, + "thread": 28 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1138557, + "thread": 20 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1266424, + "thread": 6 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1443989, + "thread": 14 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1515965, + "thread": 31 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1770185, + "thread": 27 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 1859542, + "thread": 17 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2032962, + "thread": 25 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2149908, + "thread": 31 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2439952, + "thread": 23 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2499410, + "thread": 19 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2687001, + "thread": 30 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 2843438, + "thread": 6 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 3066662, + "thread": 6 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 3190659, + "thread": 1 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 3320910, + "thread": 10 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 3510514, + "thread": 6 + } + }, + { + "amount": "66.419046310", + "slot": { + "period": 3689212, + "thread": 3 + } + }, + { + "amount": "66.419046313", + "slot": { + "period": 3865853, + "thread": 15 + } + } + ], + "AU1G8nC4khsKSMDEmuD8MyN9kDEb68BQPfwj5yRs3E7tpbkUMu1V": [ + { + "amount": "114.444971210", + "slot": { + "period": 106473, + "thread": 24 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 187621, + "thread": 12 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 385183, + "thread": 18 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 502625, + "thread": 22 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 807007, + "thread": 3 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 871423, + "thread": 22 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 999225, + "thread": 27 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 1159047, + "thread": 28 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 1395122, + "thread": 26 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 1620262, + "thread": 17 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 1758186, + "thread": 25 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 1963357, + "thread": 0 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2059629, + "thread": 28 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2251345, + "thread": 31 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2385312, + "thread": 8 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2467682, + "thread": 1 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2664044, + "thread": 12 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2828833, + "thread": 17 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 2966461, + "thread": 3 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 3182619, + "thread": 16 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 3291336, + "thread": 21 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 3485886, + "thread": 23 + } + }, + { + "amount": "114.444971210", + "slot": { + "period": 3656501, + "thread": 23 + } + }, + { + "amount": "114.444971207", + "slot": { + "period": 3802507, + "thread": 29 + } + } + ], + "AU1G8zyPLwB9T2rfmwE5uxWbzQ4MoWwjkQerq7w5F8SCno3jhsay": [ + { + "amount": "93.390474918", + "slot": { + "period": 64553, + "thread": 2 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 237162, + "thread": 19 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 444693, + "thread": 12 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 527457, + "thread": 30 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 792053, + "thread": 30 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 827097, + "thread": 1 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1058389, + "thread": 21 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1248352, + "thread": 5 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1337204, + "thread": 20 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1557921, + "thread": 1 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1715510, + "thread": 28 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 1971221, + "thread": 2 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2106097, + "thread": 16 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2150823, + "thread": 25 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2375115, + "thread": 26 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2502943, + "thread": 13 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2673696, + "thread": 26 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 2939300, + "thread": 17 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 3029750, + "thread": 24 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 3222388, + "thread": 14 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 3391937, + "thread": 29 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 3580795, + "thread": 11 + } + }, + { + "amount": "93.390474918", + "slot": { + "period": 3670986, + "thread": 0 + } + }, + { + "amount": "93.390474927", + "slot": { + "period": 3903247, + "thread": 10 + } + } + ], + "AU1GB81LrTBwYQXWcQghQfnsj85JSst9weJv9YTH1mvunb1BGQGD": [ + { + "amount": "241.153005624", + "slot": { + "period": 47001, + "thread": 1 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 220678, + "thread": 1 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 344671, + "thread": 4 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 569391, + "thread": 19 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 787886, + "thread": 28 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 875522, + "thread": 29 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1123659, + "thread": 16 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1298082, + "thread": 0 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1384421, + "thread": 17 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1557349, + "thread": 25 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1704042, + "thread": 14 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 1867632, + "thread": 29 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2017420, + "thread": 9 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2247152, + "thread": 24 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2330498, + "thread": 24 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2491499, + "thread": 1 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2662728, + "thread": 8 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2866440, + "thread": 12 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 2955150, + "thread": 18 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 3122339, + "thread": 25 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 3351657, + "thread": 16 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 3522198, + "thread": 26 + } + }, + { + "amount": "241.153005624", + "slot": { + "period": 3774700, + "thread": 15 + } + }, + { + "amount": "241.153005633", + "slot": { + "period": 3794817, + "thread": 2 + } + } + ], + "AU1GC116BWaMvUcXAC8MQ2xYEzCb9ssMpWTVBoXshHPhAonYzNmA": [ + { + "amount": "335.323556089", + "slot": { + "period": 73889, + "thread": 16 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 255490, + "thread": 18 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 364296, + "thread": 25 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 539286, + "thread": 1 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 802837, + "thread": 5 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 867656, + "thread": 25 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1011678, + "thread": 16 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1163347, + "thread": 3 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1399709, + "thread": 23 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1545363, + "thread": 31 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1742979, + "thread": 8 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 1849472, + "thread": 30 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2034586, + "thread": 23 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2190203, + "thread": 17 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2458753, + "thread": 17 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2569482, + "thread": 3 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2696843, + "thread": 15 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 2915184, + "thread": 15 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 3078592, + "thread": 4 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 3160462, + "thread": 27 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 3342076, + "thread": 13 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 3607529, + "thread": 15 + } + }, + { + "amount": "335.323556089", + "slot": { + "period": 3686533, + "thread": 22 + } + }, + { + "amount": "335.323556086", + "slot": { + "period": 3921413, + "thread": 3 + } + } + ], + "AU1GCdBkkXV6WgAHjNYvoWRRbCvwtb5NcVQofzGpbLB7e7KpdFqH": [ + { + "amount": "56.832560757", + "slot": { + "period": 143564, + "thread": 7 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 201105, + "thread": 2 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 396614, + "thread": 24 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 606657, + "thread": 12 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 778643, + "thread": 5 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 870106, + "thread": 18 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1142712, + "thread": 5 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1228416, + "thread": 18 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1466517, + "thread": 6 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1529424, + "thread": 24 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1714790, + "thread": 4 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1829135, + "thread": 19 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 1987457, + "thread": 26 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 2280719, + "thread": 5 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 2373040, + "thread": 20 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 2488355, + "thread": 19 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 2692300, + "thread": 8 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 2917422, + "thread": 3 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 3046463, + "thread": 19 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 3180183, + "thread": 11 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 3295046, + "thread": 5 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 3591712, + "thread": 0 + } + }, + { + "amount": "56.832560757", + "slot": { + "period": 3704870, + "thread": 30 + } + }, + { + "amount": "56.832560753", + "slot": { + "period": 3873566, + "thread": 2 + } + } + ], + "AU1GCoi9cay4kT4YGGyGto4woLP6MzhkNvjQ65UYCZ6LTRLsf56e": [ + { + "amount": "349.218673949", + "slot": { + "period": 109745, + "thread": 10 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 318047, + "thread": 29 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 462198, + "thread": 17 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 636475, + "thread": 12 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 794394, + "thread": 17 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 840020, + "thread": 28 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1146367, + "thread": 24 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1178411, + "thread": 30 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1344380, + "thread": 3 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1522191, + "thread": 3 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1756721, + "thread": 9 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 1878869, + "thread": 13 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2099290, + "thread": 0 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2162634, + "thread": 27 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2307003, + "thread": 27 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2617893, + "thread": 17 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2635913, + "thread": 15 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2907448, + "thread": 6 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 2971595, + "thread": 5 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 3203428, + "thread": 14 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 3355265, + "thread": 3 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 3560661, + "thread": 16 + } + }, + { + "amount": "349.218673949", + "slot": { + "period": 3748129, + "thread": 28 + } + }, + { + "amount": "349.218673942", + "slot": { + "period": 3824424, + "thread": 16 + } + } + ], + "AU1GDHneEEcCABA4YeKn4xYCwMPBgu89Y1UUQKrrUk1WxmGoXiMj": [ + { + "amount": "130.912272282", + "slot": { + "period": 148577, + "thread": 19 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 235697, + "thread": 18 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 445223, + "thread": 26 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 500137, + "thread": 29 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 819322, + "thread": 4 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 827852, + "thread": 19 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1135895, + "thread": 18 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1286011, + "thread": 31 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1374437, + "thread": 23 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1638504, + "thread": 1 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1663740, + "thread": 16 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 1855883, + "thread": 12 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2116408, + "thread": 31 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2212095, + "thread": 15 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2444329, + "thread": 21 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2526016, + "thread": 23 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2789507, + "thread": 24 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 2888195, + "thread": 16 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 3024567, + "thread": 20 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 3171618, + "thread": 31 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 3362011, + "thread": 24 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 3586003, + "thread": 22 + } + }, + { + "amount": "130.912272282", + "slot": { + "period": 3692559, + "thread": 0 + } + }, + { + "amount": "130.912272274", + "slot": { + "period": 3854716, + "thread": 30 + } + } + ], + "AU1GDma7JG34uyhgmJvaPA5suMSdkcbQxYjcJCvdos8yFPoet5aG": [ + { + "amount": "131.014790931", + "slot": { + "period": 104908, + "thread": 19 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 304875, + "thread": 0 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 416529, + "thread": 14 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 631407, + "thread": 26 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 734002, + "thread": 20 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 974687, + "thread": 26 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1119655, + "thread": 3 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1277012, + "thread": 9 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1437091, + "thread": 9 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1643899, + "thread": 2 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1750529, + "thread": 20 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1837143, + "thread": 12 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 1996132, + "thread": 31 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2220792, + "thread": 9 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2448881, + "thread": 8 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2523011, + "thread": 28 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2695354, + "thread": 0 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2797534, + "thread": 10 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 2994999, + "thread": 24 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 3155051, + "thread": 7 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 3392928, + "thread": 23 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 3616946, + "thread": 15 + } + }, + { + "amount": "131.014790931", + "slot": { + "period": 3692100, + "thread": 19 + } + }, + { + "amount": "131.014790924", + "slot": { + "period": 3933106, + "thread": 1 + } + } + ], + "AU1GDrxm7taooTtP5LV8RMW4RqHE2xRT5pC7VVVAu2VcbErGSUte": [ + { + "amount": "343.972080540", + "slot": { + "period": 130493, + "thread": 4 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 187722, + "thread": 1 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 331111, + "thread": 9 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 518928, + "thread": 12 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 789616, + "thread": 11 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 851335, + "thread": 14 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1097619, + "thread": 6 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1189222, + "thread": 3 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1461359, + "thread": 28 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1529248, + "thread": 17 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1708630, + "thread": 0 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 1956572, + "thread": 2 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2141651, + "thread": 26 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2235234, + "thread": 17 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2334049, + "thread": 0 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2624320, + "thread": 30 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2692605, + "thread": 15 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 2902865, + "thread": 21 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 3054308, + "thread": 0 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 3230898, + "thread": 17 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 3422375, + "thread": 11 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 3593478, + "thread": 1 + } + }, + { + "amount": "343.972080540", + "slot": { + "period": 3628077, + "thread": 15 + } + }, + { + "amount": "343.972080531", + "slot": { + "period": 3841832, + "thread": 2 + } + } + ], + "AU1GE2GMrvGDqLbBm3aF8AQLVtPGVWaQmipfCeDgT2GioLE3EHPg": [ + { + "amount": "174.622244457", + "slot": { + "period": 65381, + "thread": 26 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 274150, + "thread": 16 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 352160, + "thread": 6 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 606996, + "thread": 29 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 752142, + "thread": 0 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 932686, + "thread": 7 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1130877, + "thread": 9 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1311521, + "thread": 25 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1452668, + "thread": 0 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1590383, + "thread": 15 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1653186, + "thread": 24 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 1938299, + "thread": 21 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2125141, + "thread": 27 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2230413, + "thread": 1 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2368423, + "thread": 9 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2615290, + "thread": 19 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2674388, + "thread": 10 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 2855979, + "thread": 3 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 3085541, + "thread": 16 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 3178141, + "thread": 28 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 3430877, + "thread": 23 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 3493557, + "thread": 29 + } + }, + { + "amount": "174.622244457", + "slot": { + "period": 3678424, + "thread": 30 + } + }, + { + "amount": "174.622244456", + "slot": { + "period": 3848331, + "thread": 24 + } + } + ], + "AU1GFfYmfpJDo4NGYJiL1wVT6N6xwecjbAdBQvNrMLvzgHK1cgdm": [ + { + "amount": "522.560905170", + "slot": { + "period": 21868, + "thread": 3 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 272757, + "thread": 31 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 379991, + "thread": 1 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 650822, + "thread": 2 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 744339, + "thread": 4 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 892269, + "thread": 10 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1140295, + "thread": 9 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1161030, + "thread": 31 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1339500, + "thread": 15 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1515839, + "thread": 19 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1702511, + "thread": 22 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 1869826, + "thread": 22 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2086007, + "thread": 16 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2187627, + "thread": 8 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2404356, + "thread": 19 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2568156, + "thread": 8 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2701980, + "thread": 30 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2819662, + "thread": 28 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 2955019, + "thread": 14 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 3169501, + "thread": 20 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 3343265, + "thread": 28 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 3541461, + "thread": 25 + } + }, + { + "amount": "522.560905170", + "slot": { + "period": 3759894, + "thread": 29 + } + }, + { + "amount": "522.560905165", + "slot": { + "period": 3833838, + "thread": 12 + } + } + ], + "AU1GFoaoTD4vLKGetcF3wGwCPiLdhkb9LfZNy5yAXEDUgwDLQb6b": [ + { + "amount": "170.445453053", + "slot": { + "period": 122187, + "thread": 1 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 260890, + "thread": 11 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 484445, + "thread": 18 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 568062, + "thread": 28 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 742181, + "thread": 6 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 859937, + "thread": 21 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1050503, + "thread": 20 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1207303, + "thread": 4 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1371447, + "thread": 13 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1645476, + "thread": 4 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1756887, + "thread": 12 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 1927733, + "thread": 29 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2103999, + "thread": 4 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2182101, + "thread": 11 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2356260, + "thread": 20 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2510848, + "thread": 20 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2644718, + "thread": 29 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2881701, + "thread": 8 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 2992435, + "thread": 30 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 3235085, + "thread": 19 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 3316174, + "thread": 3 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 3542465, + "thread": 14 + } + }, + { + "amount": "170.445453053", + "slot": { + "period": 3738350, + "thread": 1 + } + }, + { + "amount": "170.445453060", + "slot": { + "period": 3936718, + "thread": 14 + } + } + ], + "AU1GHDdAqTizx4bwzkmKC3cJT7DmQ53SCqrdTqEyYJwkLwkRpyj9": [ + { + "amount": "353.629545540", + "slot": { + "period": 14504, + "thread": 7 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 280342, + "thread": 7 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 330641, + "thread": 8 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 559167, + "thread": 2 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 781799, + "thread": 9 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 907467, + "thread": 5 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1095856, + "thread": 21 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1285581, + "thread": 8 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1430051, + "thread": 15 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1589330, + "thread": 12 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1796566, + "thread": 22 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 1883076, + "thread": 20 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2121390, + "thread": 10 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2250842, + "thread": 31 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2316110, + "thread": 28 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2494356, + "thread": 11 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2637789, + "thread": 27 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 2876284, + "thread": 30 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 3094163, + "thread": 15 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 3221893, + "thread": 5 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 3314606, + "thread": 8 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 3595159, + "thread": 20 + } + }, + { + "amount": "353.629545540", + "slot": { + "period": 3726688, + "thread": 1 + } + }, + { + "amount": "353.629545541", + "slot": { + "period": 3783291, + "thread": 28 + } + } + ], + "AU1GHdAwWoATWasp7Xdh4RiHvYQ7uWEzSEBdt1pnXAgReHNyAg6L": [ + { + "amount": "251.999848489", + "slot": { + "period": 141738, + "thread": 12 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 298544, + "thread": 27 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 483854, + "thread": 29 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 501401, + "thread": 18 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 807163, + "thread": 19 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 974367, + "thread": 2 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1079499, + "thread": 15 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1305660, + "thread": 19 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1417318, + "thread": 21 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1534979, + "thread": 24 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1796244, + "thread": 22 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 1843363, + "thread": 11 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2136988, + "thread": 25 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2178813, + "thread": 6 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2420379, + "thread": 29 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2534446, + "thread": 16 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2682536, + "thread": 25 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 2870843, + "thread": 1 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 3030816, + "thread": 20 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 3161012, + "thread": 26 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 3424485, + "thread": 28 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 3578818, + "thread": 10 + } + }, + { + "amount": "251.999848489", + "slot": { + "period": 3712510, + "thread": 24 + } + }, + { + "amount": "251.999848492", + "slot": { + "period": 3821889, + "thread": 28 + } + } + ], + "AU1GKJR37wvHHPd3Ny4YhTYS3E1gXrmitB9cAFkqHvgNvugAdjgZ": [ + { + "amount": "409.025464286", + "slot": { + "period": 116197, + "thread": 29 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 209973, + "thread": 29 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 369892, + "thread": 4 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 529461, + "thread": 12 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 791826, + "thread": 17 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 873985, + "thread": 19 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1076711, + "thread": 23 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1224204, + "thread": 27 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1416761, + "thread": 10 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1532157, + "thread": 0 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1789932, + "thread": 4 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1973804, + "thread": 15 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 1986404, + "thread": 20 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 2218191, + "thread": 25 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 2295484, + "thread": 21 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 2511314, + "thread": 15 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 2688669, + "thread": 29 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 2809515, + "thread": 18 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 3049496, + "thread": 9 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 3271038, + "thread": 26 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 3399787, + "thread": 19 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 3530893, + "thread": 25 + } + }, + { + "amount": "409.025464286", + "slot": { + "period": 3641373, + "thread": 20 + } + }, + { + "amount": "409.025464292", + "slot": { + "period": 3918766, + "thread": 25 + } + } + ], + "AU1GKXWQQeX74EWJu9npVd4J7gmK1jUZXXw2YkAnGuzGWjPN7SKA": [ + { + "amount": "142.694576538", + "slot": { + "period": 30827, + "thread": 11 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 175672, + "thread": 8 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 441479, + "thread": 12 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 640374, + "thread": 24 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 749688, + "thread": 4 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 840541, + "thread": 12 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1017117, + "thread": 1 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1182093, + "thread": 23 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1381617, + "thread": 2 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1632372, + "thread": 0 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1716126, + "thread": 14 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1939098, + "thread": 18 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 1994501, + "thread": 20 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 2221081, + "thread": 12 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 2311180, + "thread": 10 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 2469158, + "thread": 3 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 2645344, + "thread": 20 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 2861546, + "thread": 31 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 3099039, + "thread": 29 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 3226834, + "thread": 18 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 3417632, + "thread": 21 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 3527224, + "thread": 22 + } + }, + { + "amount": "142.694576538", + "slot": { + "period": 3682735, + "thread": 9 + } + }, + { + "amount": "142.694576528", + "slot": { + "period": 3870199, + "thread": 10 + } + } + ], + "AU1GMt1vaJXsD9WKYAoA9CU6BAuS7UfBWoopZnTETPs3Rbe1g4hK": [ + { + "amount": "336.979150350", + "slot": { + "period": 45412, + "thread": 8 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 233212, + "thread": 0 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 480496, + "thread": 8 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 596780, + "thread": 22 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 704802, + "thread": 20 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 968200, + "thread": 12 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 991385, + "thread": 11 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 1221492, + "thread": 27 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 1370385, + "thread": 4 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 1500812, + "thread": 23 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 1677788, + "thread": 15 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 1812360, + "thread": 6 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2053383, + "thread": 12 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2179449, + "thread": 11 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2311090, + "thread": 23 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2543173, + "thread": 9 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2710652, + "thread": 23 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 2906748, + "thread": 10 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 3059195, + "thread": 24 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 3139167, + "thread": 0 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 3375485, + "thread": 0 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 3502935, + "thread": 12 + } + }, + { + "amount": "336.979150350", + "slot": { + "period": 3651855, + "thread": 10 + } + }, + { + "amount": "336.979150352", + "slot": { + "period": 3879153, + "thread": 26 + } + } + ], + "AU1GQ1mdDML7MyMnGNitNs8zt3R6kH7zVbHnutpGizeUcCif3Qcu": [ + { + "amount": "157.617701689", + "slot": { + "period": 37156, + "thread": 29 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 177631, + "thread": 14 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 393794, + "thread": 25 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 562494, + "thread": 13 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 754007, + "thread": 27 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 927965, + "thread": 10 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 991642, + "thread": 12 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 1283994, + "thread": 10 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 1355998, + "thread": 16 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 1510303, + "thread": 30 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 1757368, + "thread": 5 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 1899566, + "thread": 0 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2036251, + "thread": 16 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2233128, + "thread": 26 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2426371, + "thread": 28 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2605075, + "thread": 21 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2776948, + "thread": 13 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2897881, + "thread": 22 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 2973958, + "thread": 2 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 3185325, + "thread": 13 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 3310084, + "thread": 18 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 3504922, + "thread": 26 + } + }, + { + "amount": "157.617701689", + "slot": { + "period": 3707153, + "thread": 3 + } + }, + { + "amount": "157.617701690", + "slot": { + "period": 3834110, + "thread": 26 + } + } + ], + "AU1GQRWaXoAsVMo6GTRmy481tTTNHngcckFxhzHr8KhyMy4GJ5eH": [ + { + "amount": "106.804487037", + "slot": { + "period": 67156, + "thread": 23 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 214149, + "thread": 26 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 438929, + "thread": 30 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 539068, + "thread": 15 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 811789, + "thread": 24 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 864125, + "thread": 5 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1139976, + "thread": 28 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1208748, + "thread": 30 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1401897, + "thread": 29 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1541776, + "thread": 31 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1652320, + "thread": 10 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 1913542, + "thread": 12 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2136684, + "thread": 18 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2177627, + "thread": 28 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2412306, + "thread": 25 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2491351, + "thread": 2 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2715979, + "thread": 0 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 2948468, + "thread": 9 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 3093153, + "thread": 29 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 3198239, + "thread": 19 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 3444498, + "thread": 3 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 3561991, + "thread": 8 + } + }, + { + "amount": "106.804487037", + "slot": { + "period": 3632311, + "thread": 25 + } + }, + { + "amount": "106.804487035", + "slot": { + "period": 3876878, + "thread": 29 + } + } + ], + "AU1GS1ZMVmW6aT9oPWD73vuQDkcDZHgaQemm81gvk6hSi4TN9nUF": [ + { + "amount": "76.938334092", + "slot": { + "period": 46731, + "thread": 16 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 264843, + "thread": 10 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 329850, + "thread": 28 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 575204, + "thread": 23 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 667844, + "thread": 1 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 939145, + "thread": 20 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1117138, + "thread": 27 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1275304, + "thread": 26 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1378677, + "thread": 2 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1603255, + "thread": 31 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1762879, + "thread": 24 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 1959366, + "thread": 10 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2023931, + "thread": 19 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2213375, + "thread": 15 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2345603, + "thread": 13 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2620731, + "thread": 23 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2678663, + "thread": 4 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2875850, + "thread": 4 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 2991907, + "thread": 0 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 3223368, + "thread": 9 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 3345170, + "thread": 4 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 3526019, + "thread": 28 + } + }, + { + "amount": "76.938334092", + "slot": { + "period": 3662085, + "thread": 0 + } + }, + { + "amount": "76.938334082", + "slot": { + "period": 3830599, + "thread": 24 + } + } + ], + "AU1GSDWuWX4jPuVMEewvbCtHDSgfnmHcQCbYe1DScLthoaMsZxSR": [ + { + "amount": "76.236710902", + "slot": { + "period": 84654, + "thread": 29 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 269379, + "thread": 28 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 423590, + "thread": 12 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 652691, + "thread": 20 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 698035, + "thread": 0 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 864040, + "thread": 11 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1134694, + "thread": 24 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1267980, + "thread": 5 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1457379, + "thread": 29 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1576333, + "thread": 24 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1731248, + "thread": 6 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 1911591, + "thread": 23 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2048510, + "thread": 30 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2163707, + "thread": 15 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2437343, + "thread": 13 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2471375, + "thread": 9 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2652883, + "thread": 5 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 2800311, + "thread": 2 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 3113408, + "thread": 27 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 3245089, + "thread": 22 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 3363973, + "thread": 24 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 3459422, + "thread": 11 + } + }, + { + "amount": "76.236710902", + "slot": { + "period": 3658352, + "thread": 1 + } + }, + { + "amount": "76.236710907", + "slot": { + "period": 3793210, + "thread": 9 + } + } + ], + "AU1GSWxZSsJfBQc6b7S5VZ2gaoiq2w7UevGwczuxxEgRfMHNjyTZ": [ + { + "amount": "395.081835813", + "slot": { + "period": 49755, + "thread": 14 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 282894, + "thread": 23 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 428097, + "thread": 18 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 574778, + "thread": 19 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 678953, + "thread": 29 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 955103, + "thread": 9 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1127414, + "thread": 20 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1249909, + "thread": 14 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1383723, + "thread": 29 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1592663, + "thread": 22 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1668275, + "thread": 13 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 1879815, + "thread": 27 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2068835, + "thread": 30 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2288929, + "thread": 14 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2437854, + "thread": 0 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2482393, + "thread": 12 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2656527, + "thread": 4 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2855606, + "thread": 16 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 2981333, + "thread": 16 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 3206351, + "thread": 12 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 3343937, + "thread": 2 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 3531930, + "thread": 21 + } + }, + { + "amount": "395.081835813", + "slot": { + "period": 3685466, + "thread": 18 + } + }, + { + "amount": "395.081835819", + "slot": { + "period": 3839822, + "thread": 23 + } + } + ], + "AU1GSmC7o1iqSf8Una5JXt5fNk9gperZP1DZ6CRrsqd9PCNwt1ki": [ + { + "amount": "427.095622741", + "slot": { + "period": 122226, + "thread": 17 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 248981, + "thread": 1 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 339594, + "thread": 25 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 527176, + "thread": 31 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 741192, + "thread": 28 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 952046, + "thread": 3 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1138307, + "thread": 18 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1246283, + "thread": 7 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1453504, + "thread": 19 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1572769, + "thread": 5 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1694033, + "thread": 12 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 1899853, + "thread": 31 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2025473, + "thread": 7 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2214044, + "thread": 24 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2364662, + "thread": 24 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2531822, + "thread": 2 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2647409, + "thread": 14 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2793667, + "thread": 22 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 2954083, + "thread": 12 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 3270854, + "thread": 8 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 3316658, + "thread": 24 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 3586860, + "thread": 14 + } + }, + { + "amount": "427.095622741", + "slot": { + "period": 3713280, + "thread": 23 + } + }, + { + "amount": "427.095622734", + "slot": { + "period": 3821695, + "thread": 14 + } + } + ], + "AU1GUopjJTetg4GrEb8GjCoExMEuVgYBcPPES468me2yL2eTPpiZ": [ + { + "amount": "189.511186612", + "slot": { + "period": 21574, + "thread": 10 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 226692, + "thread": 14 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 332351, + "thread": 6 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 523585, + "thread": 31 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 744281, + "thread": 28 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 885302, + "thread": 24 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1148046, + "thread": 29 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1152575, + "thread": 14 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1383839, + "thread": 27 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1580248, + "thread": 6 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1725539, + "thread": 13 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 1884161, + "thread": 0 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2030750, + "thread": 17 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2209752, + "thread": 14 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2364182, + "thread": 6 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2536363, + "thread": 6 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2669326, + "thread": 11 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 2859826, + "thread": 23 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 3020657, + "thread": 16 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 3204890, + "thread": 10 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 3392984, + "thread": 29 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 3472214, + "thread": 16 + } + }, + { + "amount": "189.511186612", + "slot": { + "period": 3675364, + "thread": 2 + } + }, + { + "amount": "189.511186619", + "slot": { + "period": 3887136, + "thread": 28 + } + } + ], + "AU1GUsqRMBPrpUc5XL5qLgfVxebg2nRw8DS4VRtUuYtb23e5FBwS": [ + { + "amount": "222.619101508", + "slot": { + "period": 150515, + "thread": 29 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 265190, + "thread": 31 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 446355, + "thread": 27 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 534147, + "thread": 21 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 784595, + "thread": 28 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 835410, + "thread": 20 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1137087, + "thread": 14 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1216897, + "thread": 30 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1342442, + "thread": 12 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1497228, + "thread": 10 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1717817, + "thread": 21 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 1937915, + "thread": 3 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2066681, + "thread": 5 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2217218, + "thread": 28 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2432028, + "thread": 29 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2583242, + "thread": 31 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2681814, + "thread": 1 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 2864513, + "thread": 23 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 3030837, + "thread": 22 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 3201028, + "thread": 30 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 3364063, + "thread": 26 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 3514421, + "thread": 9 + } + }, + { + "amount": "222.619101508", + "slot": { + "period": 3765424, + "thread": 3 + } + }, + { + "amount": "222.619101517", + "slot": { + "period": 3785508, + "thread": 14 + } + } + ], + "AU1GVFFSSJL8pHFVwHRoTaurnNkdnt11TKyym19PuWmcABrVitwb": [ + { + "amount": "165.336608026", + "slot": { + "period": 15022, + "thread": 10 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 296707, + "thread": 13 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 461691, + "thread": 12 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 556796, + "thread": 23 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 781960, + "thread": 1 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 878872, + "thread": 28 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1010964, + "thread": 1 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1196174, + "thread": 8 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1376948, + "thread": 24 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1481559, + "thread": 7 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1647131, + "thread": 3 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 1920619, + "thread": 23 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2010713, + "thread": 1 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2152247, + "thread": 28 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2308236, + "thread": 20 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2621692, + "thread": 19 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2653798, + "thread": 3 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 2882074, + "thread": 22 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 3017417, + "thread": 12 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 3126468, + "thread": 25 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 3420148, + "thread": 15 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 3587714, + "thread": 1 + } + }, + { + "amount": "165.336608026", + "slot": { + "period": 3710783, + "thread": 27 + } + }, + { + "amount": "165.336608023", + "slot": { + "period": 3791871, + "thread": 14 + } + } + ], + "AU1GVRQ4vnEbBUu6hBWfCQJjh6PRDqWVjq19F6W6mDAsrapWsENo": [ + { + "amount": "99.685846314", + "slot": { + "period": 133899, + "thread": 27 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 297541, + "thread": 8 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 434107, + "thread": 7 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 559000, + "thread": 2 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 820461, + "thread": 15 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 886772, + "thread": 20 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1016492, + "thread": 19 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1202239, + "thread": 14 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1464277, + "thread": 15 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1624646, + "thread": 8 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1767828, + "thread": 10 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 1868698, + "thread": 30 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2017147, + "thread": 10 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2198720, + "thread": 14 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2305150, + "thread": 24 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2510650, + "thread": 26 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2768497, + "thread": 12 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 2808243, + "thread": 1 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 3036646, + "thread": 24 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 3168639, + "thread": 18 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 3420683, + "thread": 9 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 3571728, + "thread": 25 + } + }, + { + "amount": "99.685846314", + "slot": { + "period": 3754416, + "thread": 13 + } + }, + { + "amount": "99.685846309", + "slot": { + "period": 3874469, + "thread": 31 + } + } + ], + "AU1GWNf1dkgXjXJTftCkC8JA3e5u2c5qBVBHwT3NhNdZBAYK7xmq": [ + { + "amount": "219.732989719", + "slot": { + "period": 152402, + "thread": 12 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 242501, + "thread": 15 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 392978, + "thread": 29 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 611078, + "thread": 5 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 811922, + "thread": 22 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 921904, + "thread": 15 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 989376, + "thread": 7 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 1192219, + "thread": 26 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 1428147, + "thread": 10 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 1506959, + "thread": 12 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 1666758, + "thread": 17 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 1938407, + "thread": 1 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2068837, + "thread": 19 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2211564, + "thread": 4 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2423882, + "thread": 18 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2590926, + "thread": 12 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2784134, + "thread": 23 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 2885155, + "thread": 13 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 3115756, + "thread": 7 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 3264820, + "thread": 0 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 3314258, + "thread": 12 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 3540997, + "thread": 28 + } + }, + { + "amount": "219.732989719", + "slot": { + "period": 3774527, + "thread": 11 + } + }, + { + "amount": "219.732989716", + "slot": { + "period": 3945858, + "thread": 5 + } + } + ], + "AU1GWT6WAU9c7sbFydH3L8h1HeitbAoyjmTSnwUgG8DvRJPi6Kh3": [ + { + "amount": "106.922720288", + "slot": { + "period": 31505, + "thread": 4 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 186559, + "thread": 15 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 387827, + "thread": 4 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 501855, + "thread": 10 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 709613, + "thread": 7 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 869514, + "thread": 15 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1098385, + "thread": 28 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1295903, + "thread": 5 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1364773, + "thread": 17 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1503164, + "thread": 9 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1715320, + "thread": 17 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 1937301, + "thread": 23 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2019766, + "thread": 25 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2243234, + "thread": 7 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2393371, + "thread": 27 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2541006, + "thread": 25 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2626394, + "thread": 0 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2856439, + "thread": 27 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 2979165, + "thread": 12 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 3255286, + "thread": 0 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 3360491, + "thread": 15 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 3502895, + "thread": 21 + } + }, + { + "amount": "106.922720288", + "slot": { + "period": 3724627, + "thread": 24 + } + }, + { + "amount": "106.922720290", + "slot": { + "period": 3892414, + "thread": 30 + } + } + ], + "AU1GWyHS2uDeCmY7HD6PJSRRe3YYpvrrhPhq2eHkYQjswxwvGiAy": [ + { + "amount": "213.474306109", + "slot": { + "period": 129101, + "thread": 12 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 270263, + "thread": 3 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 449753, + "thread": 25 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 508226, + "thread": 3 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 719595, + "thread": 24 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 841088, + "thread": 11 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1099427, + "thread": 31 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1194801, + "thread": 18 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1355383, + "thread": 18 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1504613, + "thread": 23 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1700750, + "thread": 3 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 1948520, + "thread": 20 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2022676, + "thread": 17 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2179654, + "thread": 29 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2450346, + "thread": 2 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2474089, + "thread": 6 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2704172, + "thread": 22 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 2828421, + "thread": 21 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3060948, + "thread": 22 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3154019, + "thread": 17 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3396677, + "thread": 19 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3539927, + "thread": 25 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3644900, + "thread": 13 + } + }, + { + "amount": "213.474306109", + "slot": { + "period": 3883948, + "thread": 6 + } + } + ], + "AU1GX88nZQUcmBLrKrH9fUuGfir6mHB1qT6q76RWS3EM8jPBW5jj": [ + { + "amount": "161.167872017", + "slot": { + "period": 157517, + "thread": 11 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 249490, + "thread": 22 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 352067, + "thread": 0 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 637165, + "thread": 13 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 804926, + "thread": 4 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 979023, + "thread": 18 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 997758, + "thread": 24 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 1257660, + "thread": 4 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 1431007, + "thread": 28 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 1622924, + "thread": 21 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 1676374, + "thread": 25 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 1968553, + "thread": 10 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2104416, + "thread": 0 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2225475, + "thread": 7 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2390509, + "thread": 23 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2478453, + "thread": 15 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2752216, + "thread": 21 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 2828562, + "thread": 13 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 3071198, + "thread": 10 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 3123919, + "thread": 6 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 3448114, + "thread": 30 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 3585222, + "thread": 21 + } + }, + { + "amount": "161.167872017", + "slot": { + "period": 3779207, + "thread": 27 + } + }, + { + "amount": "161.167872024", + "slot": { + "period": 3781062, + "thread": 6 + } + } + ], + "AU1GXxu6AHofCZvFQdDMbWjR9SNKcgg9BReHoHmuEwFvr7Sm7A5W": [ + { + "amount": "251.288483934", + "slot": { + "period": 26429, + "thread": 8 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 234044, + "thread": 11 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 371880, + "thread": 5 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 624971, + "thread": 24 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 773222, + "thread": 20 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 968352, + "thread": 20 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1003091, + "thread": 24 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1300298, + "thread": 20 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1464573, + "thread": 29 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1641008, + "thread": 22 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1748913, + "thread": 30 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 1970099, + "thread": 8 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2117897, + "thread": 18 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2293664, + "thread": 14 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2339396, + "thread": 0 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2499946, + "thread": 28 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2701253, + "thread": 10 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 2877708, + "thread": 4 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 3067249, + "thread": 5 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 3150836, + "thread": 31 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 3370494, + "thread": 17 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 3598395, + "thread": 25 + } + }, + { + "amount": "251.288483934", + "slot": { + "period": 3749845, + "thread": 3 + } + }, + { + "amount": "251.288483937", + "slot": { + "period": 3851930, + "thread": 7 + } + } + ], + "AU1GYJWPYaSvE3LqxbSiahzrFYepYsFPHX8hkUBWqkKNJh2C6ixF": [ + { + "amount": "215.988221451", + "slot": { + "period": 152152, + "thread": 22 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 277448, + "thread": 7 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 352127, + "thread": 30 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 634956, + "thread": 28 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 730954, + "thread": 16 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 896980, + "thread": 8 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1111755, + "thread": 18 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1191185, + "thread": 18 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1411661, + "thread": 23 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1490474, + "thread": 21 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1753364, + "thread": 28 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 1960753, + "thread": 9 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2107818, + "thread": 5 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2294455, + "thread": 31 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2359439, + "thread": 30 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2465473, + "thread": 9 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2751588, + "thread": 18 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2880915, + "thread": 6 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 2995949, + "thread": 20 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 3123951, + "thread": 2 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 3390422, + "thread": 6 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 3521995, + "thread": 14 + } + }, + { + "amount": "215.988221451", + "slot": { + "period": 3672698, + "thread": 5 + } + }, + { + "amount": "215.988221460", + "slot": { + "period": 3919059, + "thread": 25 + } + } + ], + "AU1GYZjZfgvcBD34o9ffEz2iuQ3bUcgBv2nnym8B9N5g5ZBLvGJX": [ + { + "amount": "96.057049598", + "slot": { + "period": 64358, + "thread": 18 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 198064, + "thread": 8 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 459827, + "thread": 4 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 581443, + "thread": 18 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 784712, + "thread": 28 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 873231, + "thread": 12 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1007497, + "thread": 8 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1249712, + "thread": 1 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1346181, + "thread": 19 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1517703, + "thread": 19 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1774489, + "thread": 7 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 1881383, + "thread": 21 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2055656, + "thread": 2 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2283834, + "thread": 11 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2368257, + "thread": 21 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2531108, + "thread": 7 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2779878, + "thread": 18 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 2884073, + "thread": 9 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 3076410, + "thread": 20 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 3168966, + "thread": 30 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 3378229, + "thread": 25 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 3457948, + "thread": 5 + } + }, + { + "amount": "96.057049598", + "slot": { + "period": 3658144, + "thread": 20 + } + }, + { + "amount": "96.057049602", + "slot": { + "period": 3893006, + "thread": 19 + } + } + ], + "AU1GZ1cBDdMPpNbZL3u3tf9vW3CYP17UREDKvSJS2XLnsEVCYDfe": [ + { + "amount": "229.914802759", + "slot": { + "period": 150372, + "thread": 22 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 269711, + "thread": 21 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 424686, + "thread": 20 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 649163, + "thread": 30 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 753814, + "thread": 0 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 971252, + "thread": 9 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1096069, + "thread": 27 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1234050, + "thread": 27 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1475079, + "thread": 15 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1543413, + "thread": 29 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1687101, + "thread": 13 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 1811621, + "thread": 13 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2039388, + "thread": 28 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2215456, + "thread": 2 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2379941, + "thread": 22 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2535007, + "thread": 8 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2648230, + "thread": 22 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2843618, + "thread": 0 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 2960941, + "thread": 16 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 3180499, + "thread": 29 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 3317671, + "thread": 0 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 3523225, + "thread": 7 + } + }, + { + "amount": "229.914802759", + "slot": { + "period": 3654848, + "thread": 8 + } + }, + { + "amount": "229.914802753", + "slot": { + "period": 3875790, + "thread": 31 + } + } + ], + "AU1GZLpDuh1YBm2gS2iRxg4Tm2w18VuXY6rwExwHfLNM9ZSw8Z8i": [ + { + "amount": "489.743995942", + "slot": { + "period": 149383, + "thread": 23 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 210341, + "thread": 30 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 341006, + "thread": 30 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 600007, + "thread": 26 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 727148, + "thread": 14 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 875410, + "thread": 29 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1123309, + "thread": 14 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1224523, + "thread": 16 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1328000, + "thread": 14 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1532046, + "thread": 11 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1665433, + "thread": 18 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 1833765, + "thread": 19 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2069283, + "thread": 24 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2186746, + "thread": 23 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2305577, + "thread": 20 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2511210, + "thread": 3 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2666259, + "thread": 8 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 2929566, + "thread": 12 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 3010473, + "thread": 23 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 3183408, + "thread": 11 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 3414811, + "thread": 24 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 3557671, + "thread": 5 + } + }, + { + "amount": "489.743995942", + "slot": { + "period": 3754575, + "thread": 19 + } + }, + { + "amount": "489.743995931", + "slot": { + "period": 3856836, + "thread": 3 + } + } + ], + "AU1GZbGb27pQiX9UhsSokfUCCMRQRGkFzjxgprfJXzvMsnzLMzxL": [ + { + "amount": "69.059440903", + "slot": { + "period": 56910, + "thread": 29 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 239308, + "thread": 10 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 349006, + "thread": 29 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 493813, + "thread": 28 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 771467, + "thread": 11 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 919398, + "thread": 17 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1019996, + "thread": 26 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1313560, + "thread": 4 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1452030, + "thread": 6 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1500899, + "thread": 29 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1783234, + "thread": 13 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 1890613, + "thread": 18 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2102305, + "thread": 23 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2165832, + "thread": 31 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2406851, + "thread": 4 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2547666, + "thread": 2 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2742635, + "thread": 2 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 2892940, + "thread": 13 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 3032357, + "thread": 22 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 3242453, + "thread": 4 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 3436609, + "thread": 19 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 3614634, + "thread": 8 + } + }, + { + "amount": "69.059440903", + "slot": { + "period": 3684172, + "thread": 10 + } + }, + { + "amount": "69.059440895", + "slot": { + "period": 3880124, + "thread": 26 + } + } + ], + "AU1GaAnWcDSWdPF7rGqXBtAWCTeDmaBPcFf3EBPrbpBtfeqcFk75": [ + { + "amount": "214.962399177", + "slot": { + "period": 93562, + "thread": 4 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 314550, + "thread": 18 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 375535, + "thread": 2 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 631874, + "thread": 2 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 789989, + "thread": 31 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 883220, + "thread": 19 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1128103, + "thread": 12 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1258858, + "thread": 20 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1393624, + "thread": 1 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1570065, + "thread": 15 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1719297, + "thread": 16 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 1856153, + "thread": 10 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2136919, + "thread": 31 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2280538, + "thread": 27 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2445886, + "thread": 24 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2620479, + "thread": 26 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2693690, + "thread": 4 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 2866853, + "thread": 28 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 3118334, + "thread": 30 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 3175113, + "thread": 30 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 3331863, + "thread": 17 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 3497815, + "thread": 14 + } + }, + { + "amount": "214.962399177", + "slot": { + "period": 3771114, + "thread": 20 + } + }, + { + "amount": "214.962399176", + "slot": { + "period": 3857806, + "thread": 25 + } + } + ], + "AU1GaEXSigrQsDYHAKEewMohBVX5eQHbRCEUNb7UDXSfGKyr8knb": [ + { + "amount": "291.299551009", + "slot": { + "period": 106278, + "thread": 20 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 259407, + "thread": 26 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 423056, + "thread": 11 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 524796, + "thread": 6 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 724040, + "thread": 3 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 919253, + "thread": 0 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1095326, + "thread": 14 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1269206, + "thread": 20 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1364576, + "thread": 8 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1607342, + "thread": 6 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1706068, + "thread": 4 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 1828076, + "thread": 31 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2063802, + "thread": 28 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2147884, + "thread": 10 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2356141, + "thread": 4 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2619722, + "thread": 28 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2721338, + "thread": 13 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 2813477, + "thread": 25 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 3087462, + "thread": 28 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 3237688, + "thread": 8 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 3430570, + "thread": 10 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 3476162, + "thread": 27 + } + }, + { + "amount": "291.299551009", + "slot": { + "period": 3678506, + "thread": 24 + } + }, + { + "amount": "291.299551002", + "slot": { + "period": 3934148, + "thread": 26 + } + } + ], + "AU1Gb1d3GsiQdoUn7PRsH4H9yPdmC6rsVuTgtRLxpngiPjqhhtjS": [ + { + "amount": "159.208923630", + "slot": { + "period": 128041, + "thread": 2 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 294205, + "thread": 30 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 464634, + "thread": 8 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 516328, + "thread": 29 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 771472, + "thread": 10 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 905458, + "thread": 23 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 993645, + "thread": 22 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 1177155, + "thread": 0 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 1404243, + "thread": 13 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 1551101, + "thread": 23 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 1714318, + "thread": 24 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 1906956, + "thread": 17 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2018598, + "thread": 10 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2276977, + "thread": 17 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2449858, + "thread": 31 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2554087, + "thread": 14 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2722374, + "thread": 21 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 2910040, + "thread": 10 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 3118895, + "thread": 29 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 3219987, + "thread": 12 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 3319181, + "thread": 30 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 3536374, + "thread": 2 + } + }, + { + "amount": "159.208923630", + "slot": { + "period": 3763561, + "thread": 14 + } + }, + { + "amount": "159.208923621", + "slot": { + "period": 3802065, + "thread": 19 + } + } + ], + "AU1GcEBBHaBNKDYkZNr8J7W9wHFPZaQDUAGzxS1w9dYiT4ey5S9x": [ + { + "amount": "109.072871921", + "slot": { + "period": 151779, + "thread": 1 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 215972, + "thread": 28 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 430215, + "thread": 20 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 585876, + "thread": 5 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 744187, + "thread": 8 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 913471, + "thread": 10 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1140238, + "thread": 9 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1243965, + "thread": 2 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1426222, + "thread": 31 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1526997, + "thread": 5 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1748097, + "thread": 12 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1945688, + "thread": 0 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 1986389, + "thread": 9 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 2279056, + "thread": 19 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 2332101, + "thread": 24 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 2480728, + "thread": 13 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 2702078, + "thread": 7 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 2950922, + "thread": 27 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3109603, + "thread": 21 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3121624, + "thread": 9 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3291303, + "thread": 5 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3616689, + "thread": 30 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3683618, + "thread": 10 + } + }, + { + "amount": "109.072871921", + "slot": { + "period": 3845360, + "thread": 7 + } + } + ], + "AU1GcMcmNVj4uMZEEUhqSmw8RC181UBWw5Ueir7MmBiRdGwYUG1U": [ + { + "amount": "348.063436166", + "slot": { + "period": 132556, + "thread": 5 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 295884, + "thread": 1 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 446299, + "thread": 2 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 552923, + "thread": 17 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 788673, + "thread": 12 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 874247, + "thread": 17 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1039160, + "thread": 6 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1303175, + "thread": 13 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1336730, + "thread": 0 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1646513, + "thread": 27 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1737879, + "thread": 6 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 1910125, + "thread": 19 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2036200, + "thread": 21 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2283175, + "thread": 2 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2299055, + "thread": 11 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2504628, + "thread": 23 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2773554, + "thread": 4 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 2860955, + "thread": 27 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 3085994, + "thread": 19 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 3138370, + "thread": 14 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 3340594, + "thread": 30 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 3491268, + "thread": 6 + } + }, + { + "amount": "348.063436166", + "slot": { + "period": 3731565, + "thread": 6 + } + }, + { + "amount": "348.063436165", + "slot": { + "period": 3840468, + "thread": 4 + } + } + ], + "AU1GcaomrgMukh4C7fmqbssAjiEspEXWTZiG1WWU5BQPUz7DmkzM": [ + { + "amount": "126.398969412", + "slot": { + "period": 31812, + "thread": 17 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 314678, + "thread": 29 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 337344, + "thread": 21 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 629133, + "thread": 27 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 672256, + "thread": 28 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 834671, + "thread": 15 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1012702, + "thread": 20 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1315439, + "thread": 15 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1445532, + "thread": 7 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1593356, + "thread": 1 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1705841, + "thread": 19 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 1855307, + "thread": 0 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2062954, + "thread": 24 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2265090, + "thread": 6 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2415563, + "thread": 21 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2591077, + "thread": 18 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2755391, + "thread": 11 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 2836601, + "thread": 23 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 3030110, + "thread": 21 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 3276984, + "thread": 15 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 3381174, + "thread": 14 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 3520905, + "thread": 10 + } + }, + { + "amount": "126.398969412", + "slot": { + "period": 3654795, + "thread": 27 + } + }, + { + "amount": "126.398969423", + "slot": { + "period": 3934729, + "thread": 3 + } + } + ], + "AU1GcoHnV7kqKdEiv1mHhR1PyjE2ANfbQRG8ijRYdaNYnGhi3MhE": [ + { + "amount": "762.498470599", + "slot": { + "period": 86692, + "thread": 2 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 287191, + "thread": 23 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 439612, + "thread": 1 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 535083, + "thread": 0 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 681522, + "thread": 5 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 935677, + "thread": 6 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1123204, + "thread": 17 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1290826, + "thread": 6 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1332700, + "thread": 10 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1610715, + "thread": 19 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1690358, + "thread": 9 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 1928531, + "thread": 15 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2057107, + "thread": 8 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2219802, + "thread": 10 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2296979, + "thread": 6 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2593180, + "thread": 11 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2752368, + "thread": 10 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 2909909, + "thread": 28 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3026509, + "thread": 14 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3219133, + "thread": 11 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3363194, + "thread": 20 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3595835, + "thread": 21 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3773149, + "thread": 0 + } + }, + { + "amount": "762.498470599", + "slot": { + "period": 3870751, + "thread": 26 + } + } + ], + "AU1GcuDZMhuPFDcG9eEErDa64QhPwUhSDh6yVdXGf4U74xZi588R": [ + { + "amount": "370.349030555", + "slot": { + "period": 44646, + "thread": 23 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 194271, + "thread": 16 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 330549, + "thread": 12 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 591047, + "thread": 1 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 719386, + "thread": 13 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 907683, + "thread": 27 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1139394, + "thread": 16 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1151728, + "thread": 15 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1416673, + "thread": 17 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1633540, + "thread": 0 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1695229, + "thread": 11 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 1884872, + "thread": 11 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2078931, + "thread": 22 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2270132, + "thread": 3 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2407019, + "thread": 30 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2495582, + "thread": 15 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2636441, + "thread": 22 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 2888254, + "thread": 15 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 3021928, + "thread": 3 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 3274251, + "thread": 13 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 3432549, + "thread": 0 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 3569015, + "thread": 21 + } + }, + { + "amount": "370.349030555", + "slot": { + "period": 3764986, + "thread": 13 + } + }, + { + "amount": "370.349030566", + "slot": { + "period": 3802796, + "thread": 18 + } + } + ], + "AU1GddgY3Dqt8gqicHHWGdbrRxcQzWhqTTFXk53ySHvhH1Fhm8rT": [ + { + "amount": "145.276431111", + "slot": { + "period": 58951, + "thread": 2 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 201251, + "thread": 27 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 412582, + "thread": 7 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 607163, + "thread": 30 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 732811, + "thread": 8 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 862051, + "thread": 30 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1004929, + "thread": 12 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1312910, + "thread": 7 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1330465, + "thread": 18 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1537085, + "thread": 8 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1696670, + "thread": 18 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1898711, + "thread": 21 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 1994944, + "thread": 29 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 2215202, + "thread": 0 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 2427917, + "thread": 10 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 2544450, + "thread": 23 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 2787262, + "thread": 26 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 2805532, + "thread": 9 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 3101662, + "thread": 0 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 3207872, + "thread": 16 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 3328955, + "thread": 1 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 3508148, + "thread": 6 + } + }, + { + "amount": "145.276431111", + "slot": { + "period": 3778920, + "thread": 21 + } + }, + { + "amount": "145.276431108", + "slot": { + "period": 3924601, + "thread": 15 + } + } + ], + "AU1Genk4AXYdaXoxgMAGR4uEpB4coJ1C3tEUKH6Z5WPK5irDKBT1": [ + { + "amount": "74.371841601", + "slot": { + "period": 70236, + "thread": 14 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 293520, + "thread": 5 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 433781, + "thread": 24 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 519541, + "thread": 13 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 786028, + "thread": 0 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 875253, + "thread": 26 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1117159, + "thread": 16 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1198572, + "thread": 22 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1448697, + "thread": 11 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1538902, + "thread": 13 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1767687, + "thread": 7 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 1890619, + "thread": 2 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2141305, + "thread": 28 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2164129, + "thread": 6 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2391319, + "thread": 8 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2606060, + "thread": 15 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2625470, + "thread": 29 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 2933383, + "thread": 15 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 3085054, + "thread": 11 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 3187605, + "thread": 31 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 3358093, + "thread": 11 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 3572768, + "thread": 0 + } + }, + { + "amount": "74.371841601", + "slot": { + "period": 3671220, + "thread": 2 + } + }, + { + "amount": "74.371841604", + "slot": { + "period": 3824106, + "thread": 29 + } + } + ], + "AU1Gg5xRpuUzcckvbxb7ukZNrNhS8T38s9NaHu2TLr85VBQN9nc5": [ + { + "amount": "54.348905143", + "slot": { + "period": 36352, + "thread": 22 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 266664, + "thread": 31 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 384407, + "thread": 6 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 570234, + "thread": 13 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 669187, + "thread": 26 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 957118, + "thread": 14 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1040574, + "thread": 3 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1223889, + "thread": 2 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1367810, + "thread": 29 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1558582, + "thread": 16 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1773686, + "thread": 26 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 1875956, + "thread": 15 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2125162, + "thread": 18 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2223070, + "thread": 14 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2296380, + "thread": 2 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2558537, + "thread": 23 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2760251, + "thread": 16 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 2866516, + "thread": 20 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3077147, + "thread": 14 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3272672, + "thread": 22 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3332871, + "thread": 23 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3608189, + "thread": 18 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3706446, + "thread": 29 + } + }, + { + "amount": "54.348905143", + "slot": { + "period": 3815196, + "thread": 24 + } + } + ], + "AU1GgXKHKCiBp4zmzSUSGCfSzjcLhugd6DUxK8m3zMJSxAu2ZG7z": [ + { + "amount": "213.068632622", + "slot": { + "period": 66513, + "thread": 11 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 233330, + "thread": 30 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 358209, + "thread": 31 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 604778, + "thread": 29 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 692703, + "thread": 13 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 847388, + "thread": 29 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1045284, + "thread": 13 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1192393, + "thread": 15 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1474857, + "thread": 17 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1487288, + "thread": 30 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1756776, + "thread": 9 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 1967042, + "thread": 17 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2140795, + "thread": 16 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2228275, + "thread": 15 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2368453, + "thread": 24 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2503527, + "thread": 6 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2764432, + "thread": 20 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 2869231, + "thread": 28 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 3017249, + "thread": 24 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 3233306, + "thread": 1 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 3425092, + "thread": 20 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 3533840, + "thread": 3 + } + }, + { + "amount": "213.068632622", + "slot": { + "period": 3774850, + "thread": 20 + } + }, + { + "amount": "213.068632618", + "slot": { + "period": 3931646, + "thread": 6 + } + } + ], + "AU1GgbJzRVYBQtDxciRN9CR9Vn4xa13g2Dqsf9BWDFfyE8WyDGeA": [ + { + "amount": "230.339436506", + "slot": { + "period": 50977, + "thread": 23 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 312734, + "thread": 30 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 443371, + "thread": 5 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 522599, + "thread": 15 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 663083, + "thread": 22 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 855744, + "thread": 27 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1059797, + "thread": 12 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1281728, + "thread": 30 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1410000, + "thread": 31 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1522091, + "thread": 15 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1761699, + "thread": 26 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 1827044, + "thread": 21 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2006859, + "thread": 19 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2169576, + "thread": 31 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2298171, + "thread": 11 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2498175, + "thread": 7 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2785449, + "thread": 26 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 2837638, + "thread": 14 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 3067651, + "thread": 2 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 3184409, + "thread": 2 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 3315048, + "thread": 13 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 3579661, + "thread": 16 + } + }, + { + "amount": "230.339436506", + "slot": { + "period": 3670309, + "thread": 20 + } + }, + { + "amount": "230.339436504", + "slot": { + "period": 3853321, + "thread": 4 + } + } + ], + "AU1GhQyN16wE8XBrkSKTY2KR3n5ZZM2ksLZXdtzeeCXCSDsQme7X": [ + { + "amount": "61.146870960", + "slot": { + "period": 151798, + "thread": 19 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 244198, + "thread": 6 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 481136, + "thread": 4 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 639989, + "thread": 12 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 726685, + "thread": 5 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 971221, + "thread": 9 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1114436, + "thread": 28 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1315336, + "thread": 14 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1345168, + "thread": 22 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1588283, + "thread": 14 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1740295, + "thread": 0 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 1906233, + "thread": 24 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2134152, + "thread": 7 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2162770, + "thread": 6 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2378232, + "thread": 27 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2623563, + "thread": 21 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2679492, + "thread": 0 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 2815900, + "thread": 2 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 3003236, + "thread": 11 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 3246254, + "thread": 2 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 3330132, + "thread": 25 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 3496151, + "thread": 28 + } + }, + { + "amount": "61.146870960", + "slot": { + "period": 3665863, + "thread": 0 + } + }, + { + "amount": "61.146870957", + "slot": { + "period": 3837702, + "thread": 25 + } + } + ], + "AU1Gi6qwoUgtEHywurpTPqzZsbhQcq2HDhQsmrDYbxagKMfsbjdY": [ + { + "amount": "131.549931561", + "slot": { + "period": 123495, + "thread": 17 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 176930, + "thread": 0 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 336588, + "thread": 15 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 506419, + "thread": 22 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 746310, + "thread": 25 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 828520, + "thread": 14 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1123064, + "thread": 15 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1213809, + "thread": 15 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1478345, + "thread": 23 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1530238, + "thread": 3 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1684056, + "thread": 31 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 1967479, + "thread": 6 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2008280, + "thread": 3 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2222722, + "thread": 9 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2412031, + "thread": 17 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2534656, + "thread": 12 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2691924, + "thread": 5 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2893315, + "thread": 29 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 2966845, + "thread": 24 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 3137018, + "thread": 19 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 3384566, + "thread": 20 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 3592568, + "thread": 23 + } + }, + { + "amount": "131.549931561", + "slot": { + "period": 3770969, + "thread": 4 + } + }, + { + "amount": "131.549931563", + "slot": { + "period": 3828989, + "thread": 17 + } + } + ], + "AU1GiiuaZ8njNWD1KkNED5Ruo8MBg2cBWSdvZT8cQtaZvz3QBg7v": [ + { + "amount": "315.406148485", + "slot": { + "period": 62341, + "thread": 27 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 168018, + "thread": 12 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 451272, + "thread": 7 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 601343, + "thread": 29 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 696208, + "thread": 14 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 909773, + "thread": 16 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 991994, + "thread": 3 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 1209074, + "thread": 10 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 1400160, + "thread": 20 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 1507140, + "thread": 28 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 1798365, + "thread": 26 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 1843487, + "thread": 5 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2058402, + "thread": 30 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2207627, + "thread": 27 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2392532, + "thread": 31 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2592606, + "thread": 23 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2719564, + "thread": 2 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 2892629, + "thread": 0 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 3099078, + "thread": 16 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 3157114, + "thread": 23 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 3296838, + "thread": 31 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 3608237, + "thread": 8 + } + }, + { + "amount": "315.406148485", + "slot": { + "period": 3670712, + "thread": 14 + } + }, + { + "amount": "315.406148490", + "slot": { + "period": 3903347, + "thread": 2 + } + } + ], + "AU1GjiQAAKX8SSMkT79rQoQLKoJJxoJHY9b39yW58QBX1pHrv7SR": [ + { + "amount": "151.085635103", + "slot": { + "period": 29101, + "thread": 0 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 267290, + "thread": 15 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 434697, + "thread": 29 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 553740, + "thread": 29 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 677199, + "thread": 10 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 962483, + "thread": 1 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1120027, + "thread": 23 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1222379, + "thread": 15 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1342531, + "thread": 10 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1641819, + "thread": 12 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1785390, + "thread": 8 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1820617, + "thread": 2 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 1997496, + "thread": 8 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2258399, + "thread": 3 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2446416, + "thread": 0 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2493951, + "thread": 19 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2648897, + "thread": 19 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2933485, + "thread": 2 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 2956873, + "thread": 15 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 3152648, + "thread": 4 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 3330463, + "thread": 20 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 3489849, + "thread": 26 + } + }, + { + "amount": "151.085635103", + "slot": { + "period": 3689039, + "thread": 9 + } + }, + { + "amount": "151.085635094", + "slot": { + "period": 3898740, + "thread": 23 + } + } + ], + "AU1GjxFNYw1h47TXZz1qRwfkVVdPbipDRNWajKdfrLCXZMquBSrZ": [ + { + "amount": "237.529089236", + "slot": { + "period": 159029, + "thread": 13 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 242419, + "thread": 12 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 356365, + "thread": 15 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 586629, + "thread": 28 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 684939, + "thread": 18 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 896213, + "thread": 6 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1040268, + "thread": 9 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1178248, + "thread": 21 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1384618, + "thread": 8 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1531708, + "thread": 10 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1758532, + "thread": 29 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 1852192, + "thread": 4 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2023869, + "thread": 15 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2174906, + "thread": 7 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2355903, + "thread": 14 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2567121, + "thread": 17 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2757634, + "thread": 17 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 2890447, + "thread": 14 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 3024989, + "thread": 8 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 3132523, + "thread": 8 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 3328022, + "thread": 3 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 3460945, + "thread": 2 + } + }, + { + "amount": "237.529089236", + "slot": { + "period": 3758108, + "thread": 16 + } + }, + { + "amount": "237.529089226", + "slot": { + "period": 3843237, + "thread": 25 + } + } + ], + "AU1Gk1Ks6PjN5ks9SK9hcmwjCZ1fEJbzRqbUnSphZHgEE57E8JTt": [ + { + "amount": "97.998722393", + "slot": { + "period": 34902, + "thread": 31 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 323233, + "thread": 12 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 468950, + "thread": 4 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 620892, + "thread": 11 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 708102, + "thread": 21 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 955055, + "thread": 17 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1090389, + "thread": 23 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1177136, + "thread": 16 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1328658, + "thread": 13 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1644108, + "thread": 0 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1699845, + "thread": 13 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 1872917, + "thread": 11 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2050843, + "thread": 8 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2270862, + "thread": 1 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2390150, + "thread": 23 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2600415, + "thread": 3 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2734222, + "thread": 28 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2938445, + "thread": 4 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 2962234, + "thread": 23 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 3277476, + "thread": 9 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 3344908, + "thread": 17 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 3540312, + "thread": 17 + } + }, + { + "amount": "97.998722393", + "slot": { + "period": 3706366, + "thread": 25 + } + }, + { + "amount": "97.998722400", + "slot": { + "period": 3916776, + "thread": 28 + } + } + ], + "AU1Gk4pz4PcY1eLpc95bQRyVDLY1aLRJFehPCz6US1tKnoN9V91G": [ + { + "amount": "490.376592858", + "slot": { + "period": 93475, + "thread": 29 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 300132, + "thread": 31 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 346195, + "thread": 18 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 640833, + "thread": 5 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 727240, + "thread": 19 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 850053, + "thread": 10 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1077222, + "thread": 30 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1270106, + "thread": 6 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1421033, + "thread": 9 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1641781, + "thread": 3 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1659751, + "thread": 19 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 1810499, + "thread": 5 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2078268, + "thread": 8 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2169550, + "thread": 11 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2372939, + "thread": 10 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2571715, + "thread": 30 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2766033, + "thread": 11 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 2801451, + "thread": 7 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 3094496, + "thread": 15 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 3217749, + "thread": 21 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 3348539, + "thread": 13 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 3561633, + "thread": 17 + } + }, + { + "amount": "490.376592858", + "slot": { + "period": 3677230, + "thread": 22 + } + }, + { + "amount": "490.376592847", + "slot": { + "period": 3797337, + "thread": 29 + } + } + ], + "AU1GkioMM8HBpVqyrBekUkyCuP8uDK3aAzbkxtvhqpE3B8akE6TF": [ + { + "amount": "143.144625681", + "slot": { + "period": 99712, + "thread": 29 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 236221, + "thread": 22 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 385479, + "thread": 2 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 640547, + "thread": 3 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 693952, + "thread": 14 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 858569, + "thread": 7 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1045266, + "thread": 2 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1172076, + "thread": 7 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1454667, + "thread": 21 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1609123, + "thread": 7 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1777395, + "thread": 14 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1859688, + "thread": 9 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 1994015, + "thread": 19 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2236451, + "thread": 12 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2375402, + "thread": 13 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2513022, + "thread": 12 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2766850, + "thread": 9 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2833341, + "thread": 13 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 2994730, + "thread": 30 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 3151369, + "thread": 5 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 3289426, + "thread": 1 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 3474453, + "thread": 17 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 3779868, + "thread": 26 + } + }, + { + "amount": "143.144625681", + "slot": { + "period": 3828280, + "thread": 14 + } + } + ], + "AU1GkwwPte2p8WRjveputc9BC21JHgqMxU66Z48fSnmLMMkrQ1TS": [ + { + "amount": "216.475576083", + "slot": { + "period": 14880, + "thread": 10 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 202802, + "thread": 31 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 481488, + "thread": 11 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 606849, + "thread": 9 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 683722, + "thread": 9 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 891352, + "thread": 24 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1099231, + "thread": 10 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1192800, + "thread": 15 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1359385, + "thread": 18 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1595144, + "thread": 19 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1652803, + "thread": 15 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 1841976, + "thread": 28 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2006978, + "thread": 26 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2227643, + "thread": 11 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2308837, + "thread": 22 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2587332, + "thread": 1 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2769080, + "thread": 6 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 2802901, + "thread": 28 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 3027062, + "thread": 10 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 3138188, + "thread": 10 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 3298873, + "thread": 19 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 3587740, + "thread": 28 + } + }, + { + "amount": "216.475576083", + "slot": { + "period": 3633765, + "thread": 6 + } + }, + { + "amount": "216.475576072", + "slot": { + "period": 3833840, + "thread": 23 + } + } + ], + "AU1GnxxDZySc4t4NurczfSN5zE32xWvERtVA7XpF1AjqWRmTuYAZ": [ + { + "amount": "133.440454192", + "slot": { + "period": 157442, + "thread": 24 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 219161, + "thread": 17 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 392399, + "thread": 7 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 635385, + "thread": 25 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 759702, + "thread": 3 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 919427, + "thread": 3 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1012780, + "thread": 20 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1205826, + "thread": 6 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1454374, + "thread": 23 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1502773, + "thread": 26 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1707858, + "thread": 29 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 1851361, + "thread": 3 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2066165, + "thread": 4 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2282626, + "thread": 17 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2356597, + "thread": 31 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2514064, + "thread": 23 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2670261, + "thread": 31 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 2918514, + "thread": 19 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 3117885, + "thread": 20 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 3155227, + "thread": 29 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 3427626, + "thread": 29 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 3595332, + "thread": 13 + } + }, + { + "amount": "133.440454192", + "slot": { + "period": 3661913, + "thread": 15 + } + }, + { + "amount": "133.440454196", + "slot": { + "period": 3922729, + "thread": 1 + } + } + ], + "AU1Go8GMKtekFd7eSfh5X7uC7bPdKdcPjJzeS4ndeygP2Dpdpgz7": [ + { + "amount": "101.851758013", + "slot": { + "period": 40396, + "thread": 21 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 269585, + "thread": 19 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 368773, + "thread": 31 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 523481, + "thread": 1 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 712411, + "thread": 4 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 963608, + "thread": 24 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1082201, + "thread": 9 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1228886, + "thread": 25 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1339593, + "thread": 15 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1607560, + "thread": 18 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1731789, + "thread": 24 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 1910015, + "thread": 21 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2066203, + "thread": 7 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2181118, + "thread": 9 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2296334, + "thread": 17 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2586140, + "thread": 19 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2727176, + "thread": 22 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 2812849, + "thread": 19 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 3003414, + "thread": 20 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 3269166, + "thread": 18 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 3446402, + "thread": 18 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 3592922, + "thread": 11 + } + }, + { + "amount": "101.851758013", + "slot": { + "period": 3641254, + "thread": 0 + } + }, + { + "amount": "101.851758020", + "slot": { + "period": 3944637, + "thread": 1 + } + } + ], + "AU1GpFutDG3JCDrDNXjMVqcwkKcfMDyUt5iT87N6QF2hguMKyRMu": [ + { + "amount": "432.068107652", + "slot": { + "period": 54972, + "thread": 9 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 317167, + "thread": 15 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 488228, + "thread": 19 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 623622, + "thread": 7 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 687916, + "thread": 12 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 972554, + "thread": 19 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1124459, + "thread": 22 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1213642, + "thread": 1 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1318768, + "thread": 21 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1605539, + "thread": 16 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1736115, + "thread": 20 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 1894032, + "thread": 27 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2003640, + "thread": 15 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2290185, + "thread": 17 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2310987, + "thread": 15 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2489820, + "thread": 21 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2708510, + "thread": 9 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 2942188, + "thread": 10 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 3047856, + "thread": 27 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 3248068, + "thread": 10 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 3348850, + "thread": 30 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 3575298, + "thread": 17 + } + }, + { + "amount": "432.068107652", + "slot": { + "period": 3750485, + "thread": 18 + } + }, + { + "amount": "432.068107662", + "slot": { + "period": 3904324, + "thread": 21 + } + } + ], + "AU1GpZwk9eC25xgBTUE2xJwbhVVXTEGWBCiNAmUEijw66xZXt3H7": [ + { + "amount": "140.047517213", + "slot": { + "period": 140248, + "thread": 17 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 252817, + "thread": 25 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 461620, + "thread": 29 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 601685, + "thread": 8 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 765528, + "thread": 18 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 892198, + "thread": 7 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1098483, + "thread": 6 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1290644, + "thread": 19 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1442023, + "thread": 25 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1634297, + "thread": 31 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1684174, + "thread": 5 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1862744, + "thread": 28 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 1982071, + "thread": 22 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 2235382, + "thread": 8 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 2435882, + "thread": 5 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 2552903, + "thread": 30 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 2754246, + "thread": 23 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 2802073, + "thread": 25 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 3093752, + "thread": 11 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 3277698, + "thread": 3 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 3383841, + "thread": 13 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 3598607, + "thread": 30 + } + }, + { + "amount": "140.047517213", + "slot": { + "period": 3622226, + "thread": 6 + } + }, + { + "amount": "140.047517219", + "slot": { + "period": 3941483, + "thread": 22 + } + } + ], + "AU1Gq42GuGy3v1iaoz96vMt8HaDh4RF1pPVamqr98WgzLBnFNi7x": [ + { + "amount": "136.993785418", + "slot": { + "period": 164530, + "thread": 16 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 249642, + "thread": 21 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 356108, + "thread": 31 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 627929, + "thread": 27 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 721186, + "thread": 23 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 852035, + "thread": 21 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1094489, + "thread": 23 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1314087, + "thread": 2 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1435105, + "thread": 18 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1627026, + "thread": 25 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1663476, + "thread": 29 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 1890150, + "thread": 17 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2000814, + "thread": 3 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2260377, + "thread": 4 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2391940, + "thread": 27 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2567644, + "thread": 11 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2689728, + "thread": 1 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 2837513, + "thread": 18 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 3059202, + "thread": 14 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 3123273, + "thread": 16 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 3399537, + "thread": 7 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 3501311, + "thread": 21 + } + }, + { + "amount": "136.993785418", + "slot": { + "period": 3777377, + "thread": 16 + } + }, + { + "amount": "136.993785430", + "slot": { + "period": 3823548, + "thread": 21 + } + } + ], + "AU1GqEvCfEuYUCdeis8Lc8XgXfyBvYm7KarK7QfxQ4AuymeNCefq": [ + { + "amount": "140.368433347", + "slot": { + "period": 85866, + "thread": 18 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 257124, + "thread": 19 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 472892, + "thread": 10 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 607227, + "thread": 21 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 688766, + "thread": 8 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 977590, + "thread": 17 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1141607, + "thread": 10 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1200133, + "thread": 25 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1469695, + "thread": 15 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1529120, + "thread": 14 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1770215, + "thread": 13 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 1877340, + "thread": 17 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2059793, + "thread": 17 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2211709, + "thread": 11 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2322953, + "thread": 0 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2492062, + "thread": 15 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2649686, + "thread": 8 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 2876867, + "thread": 24 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 3065553, + "thread": 8 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 3264302, + "thread": 11 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 3414735, + "thread": 17 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 3579277, + "thread": 29 + } + }, + { + "amount": "140.368433347", + "slot": { + "period": 3647508, + "thread": 9 + } + }, + { + "amount": "140.368433349", + "slot": { + "period": 3822049, + "thread": 5 + } + } + ], + "AU1GqnVvxqvBvtD1AJSQkb1NMzbYTZezhULywWcJeEiYcCj95vkV": [ + { + "amount": "325.992680839", + "slot": { + "period": 134309, + "thread": 28 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 219697, + "thread": 31 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 369777, + "thread": 3 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 596456, + "thread": 21 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 663687, + "thread": 10 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 939554, + "thread": 20 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1104896, + "thread": 20 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1231885, + "thread": 20 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1462418, + "thread": 0 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1531146, + "thread": 27 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1667314, + "thread": 9 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1816958, + "thread": 21 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 1977063, + "thread": 16 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 2234118, + "thread": 21 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 2370436, + "thread": 4 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 2615192, + "thread": 8 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 2753886, + "thread": 4 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 2831708, + "thread": 21 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 3081729, + "thread": 3 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 3258397, + "thread": 30 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 3380875, + "thread": 3 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 3461430, + "thread": 0 + } + }, + { + "amount": "325.992680839", + "slot": { + "period": 3652772, + "thread": 13 + } + }, + { + "amount": "325.992680835", + "slot": { + "period": 3804892, + "thread": 2 + } + } + ], + "AU1Gqx7bhdh13jhawgoSLK1zG7YJH6zWPbvU2NzmbKrPDkejVPpc": [ + { + "amount": "174.985654927", + "slot": { + "period": 141676, + "thread": 9 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 285383, + "thread": 29 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 324262, + "thread": 17 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 640093, + "thread": 17 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 758911, + "thread": 21 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 898033, + "thread": 17 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1073454, + "thread": 16 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1279626, + "thread": 10 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1429474, + "thread": 23 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1565211, + "thread": 21 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1738713, + "thread": 29 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 1854106, + "thread": 28 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2067712, + "thread": 0 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2155807, + "thread": 18 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2355543, + "thread": 28 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2490678, + "thread": 16 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2749794, + "thread": 5 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2831591, + "thread": 3 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 2990140, + "thread": 2 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 3138861, + "thread": 3 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 3332673, + "thread": 22 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 3554631, + "thread": 29 + } + }, + { + "amount": "174.985654927", + "slot": { + "period": 3723387, + "thread": 30 + } + }, + { + "amount": "174.985654919", + "slot": { + "period": 3870971, + "thread": 23 + } + } + ], + "AU1GsoPYrM1paX4j9omntLMrCNNRfUX6QS3PupHHLzRXRQdXVbhA": [ + { + "amount": "57.755611876", + "slot": { + "period": 43610, + "thread": 11 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 212046, + "thread": 15 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 432176, + "thread": 10 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 571597, + "thread": 17 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 726017, + "thread": 3 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 961812, + "thread": 30 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1128285, + "thread": 4 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1240822, + "thread": 15 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1360618, + "thread": 30 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1568030, + "thread": 10 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1725147, + "thread": 9 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 1886216, + "thread": 7 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2053488, + "thread": 11 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2200003, + "thread": 13 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2372521, + "thread": 2 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2614534, + "thread": 26 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2742940, + "thread": 2 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 2895598, + "thread": 9 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 3042019, + "thread": 17 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 3191549, + "thread": 14 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 3433909, + "thread": 14 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 3548011, + "thread": 7 + } + }, + { + "amount": "57.755611876", + "slot": { + "period": 3687718, + "thread": 19 + } + }, + { + "amount": "57.755611881", + "slot": { + "period": 3780000, + "thread": 14 + } + } + ], + "AU1GtzkobJjWUZRq6uUjsbms2ujd6csugvBsXayvTNqLg4RPY5ra": [ + { + "amount": "173.019036630", + "slot": { + "period": 146331, + "thread": 15 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 236408, + "thread": 2 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 490984, + "thread": 12 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 524547, + "thread": 28 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 818158, + "thread": 28 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 937877, + "thread": 0 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1126211, + "thread": 24 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1282633, + "thread": 30 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1453620, + "thread": 4 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1524332, + "thread": 24 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1721476, + "thread": 31 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 1824331, + "thread": 0 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2109590, + "thread": 18 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2281552, + "thread": 12 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2402024, + "thread": 23 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2485313, + "thread": 21 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2673920, + "thread": 18 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 2934723, + "thread": 25 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 3071943, + "thread": 28 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 3171305, + "thread": 23 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 3304269, + "thread": 23 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 3600575, + "thread": 1 + } + }, + { + "amount": "173.019036630", + "slot": { + "period": 3754006, + "thread": 9 + } + }, + { + "amount": "173.019036620", + "slot": { + "period": 3904461, + "thread": 4 + } + } + ], + "AU1Gwa48UMDJG4rsQjx9GFyn8MuWoTHuo1NbViPWgvfEiffd3C2A": [ + { + "amount": "114.906045989", + "slot": { + "period": 45169, + "thread": 29 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 265192, + "thread": 24 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 418544, + "thread": 11 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 581627, + "thread": 10 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 811197, + "thread": 31 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 980115, + "thread": 5 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1079933, + "thread": 1 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1232143, + "thread": 6 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1399050, + "thread": 23 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1581691, + "thread": 25 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1680884, + "thread": 31 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 1850428, + "thread": 14 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2076274, + "thread": 14 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2238668, + "thread": 17 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2405608, + "thread": 3 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2533136, + "thread": 1 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2770620, + "thread": 13 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2876122, + "thread": 1 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 2987188, + "thread": 15 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 3158345, + "thread": 17 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 3346396, + "thread": 25 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 3452223, + "thread": 12 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 3694627, + "thread": 3 + } + }, + { + "amount": "114.906045989", + "slot": { + "period": 3879620, + "thread": 8 + } + } + ], + "AU1GwwBZbkpydikqAoTvXFwtB4R8F3Q7T7K6MTmiQ8U4KSs6cqMt": [ + { + "amount": "186.875787933", + "slot": { + "period": 58649, + "thread": 2 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 318865, + "thread": 30 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 470734, + "thread": 14 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 571975, + "thread": 12 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 760879, + "thread": 21 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 884094, + "thread": 5 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1042022, + "thread": 3 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1154904, + "thread": 6 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1395496, + "thread": 4 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1617079, + "thread": 14 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1755416, + "thread": 14 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 1809386, + "thread": 14 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2011725, + "thread": 7 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2192473, + "thread": 3 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2383929, + "thread": 1 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2600513, + "thread": 30 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2762414, + "thread": 10 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 2930003, + "thread": 7 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 3077340, + "thread": 17 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 3181752, + "thread": 6 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 3337002, + "thread": 15 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 3537187, + "thread": 6 + } + }, + { + "amount": "186.875787933", + "slot": { + "period": 3767807, + "thread": 17 + } + }, + { + "amount": "186.875787938", + "slot": { + "period": 3809736, + "thread": 7 + } + } + ], + "AU1Gx8Z3cUkY4XTHQPDX7XAQSm3syAJkAxfbWMpTYWdQuq657WwE": [ + { + "amount": "229.515023099", + "slot": { + "period": 17634, + "thread": 15 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 184261, + "thread": 15 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 372485, + "thread": 22 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 546341, + "thread": 30 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 739987, + "thread": 6 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 867698, + "thread": 20 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1125909, + "thread": 4 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1279908, + "thread": 2 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1367065, + "thread": 0 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1587988, + "thread": 7 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1798028, + "thread": 26 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 1825042, + "thread": 2 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2066963, + "thread": 5 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2147239, + "thread": 24 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2315709, + "thread": 9 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2556115, + "thread": 4 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2761523, + "thread": 29 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 2940391, + "thread": 0 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 3063988, + "thread": 27 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 3280981, + "thread": 9 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 3325271, + "thread": 22 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 3576293, + "thread": 22 + } + }, + { + "amount": "229.515023099", + "slot": { + "period": 3740813, + "thread": 20 + } + }, + { + "amount": "229.515023102", + "slot": { + "period": 3859751, + "thread": 24 + } + } + ], + "AU1GxFPXDQ8rYwcM83fTbnsa4MrFT68etM6UJ5GyW8uXWxuaj2Fo": [ + { + "amount": "134.267286551", + "slot": { + "period": 31644, + "thread": 26 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 280589, + "thread": 9 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 417113, + "thread": 22 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 513337, + "thread": 21 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 818867, + "thread": 4 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 847519, + "thread": 11 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1084808, + "thread": 13 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1266224, + "thread": 10 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1395742, + "thread": 7 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1549087, + "thread": 14 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1695748, + "thread": 1 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 1916467, + "thread": 19 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2120810, + "thread": 29 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2252498, + "thread": 15 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2364625, + "thread": 13 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2506759, + "thread": 27 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2785899, + "thread": 11 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 2851986, + "thread": 3 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 3100123, + "thread": 23 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 3192660, + "thread": 4 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 3337679, + "thread": 10 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 3540888, + "thread": 11 + } + }, + { + "amount": "134.267286551", + "slot": { + "period": 3761804, + "thread": 3 + } + }, + { + "amount": "134.267286560", + "slot": { + "period": 3932859, + "thread": 25 + } + } + ], + "AU1GxPWgwKFgj5GPp3SFDB1qTN3YptrPp91NK7LkMq7dLTJEck3e": [ + { + "amount": "233.484404746", + "slot": { + "period": 54429, + "thread": 17 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 295769, + "thread": 30 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 415757, + "thread": 17 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 500686, + "thread": 25 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 676175, + "thread": 1 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 935983, + "thread": 23 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1142784, + "thread": 8 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1314710, + "thread": 30 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1435027, + "thread": 6 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1602823, + "thread": 21 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1658777, + "thread": 25 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 1925665, + "thread": 7 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2136422, + "thread": 29 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2260404, + "thread": 17 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2372667, + "thread": 2 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2470998, + "thread": 25 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2771880, + "thread": 16 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 2941950, + "thread": 11 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 3097433, + "thread": 26 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 3127152, + "thread": 1 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 3382243, + "thread": 4 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 3562757, + "thread": 23 + } + }, + { + "amount": "233.484404746", + "slot": { + "period": 3686680, + "thread": 2 + } + }, + { + "amount": "233.484404751", + "slot": { + "period": 3858589, + "thread": 16 + } + } + ], + "AU1Gy7yLeP9jwb5ERYYrGFt7Qo8txmcKr1J6FY67W4zbgfsgEp5N": [ + { + "amount": "210.126264906", + "slot": { + "period": 153392, + "thread": 26 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 195053, + "thread": 24 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 463337, + "thread": 24 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 535185, + "thread": 30 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 772163, + "thread": 3 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 944032, + "thread": 10 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1125148, + "thread": 24 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1162751, + "thread": 31 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1425626, + "thread": 10 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1496576, + "thread": 18 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1649630, + "thread": 9 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 1941753, + "thread": 14 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2004991, + "thread": 11 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2234891, + "thread": 22 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2329427, + "thread": 13 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2520901, + "thread": 9 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2716212, + "thread": 9 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 2901548, + "thread": 10 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3106156, + "thread": 14 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3183365, + "thread": 6 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3412764, + "thread": 16 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3486504, + "thread": 27 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3673749, + "thread": 15 + } + }, + { + "amount": "210.126264906", + "slot": { + "period": 3787593, + "thread": 5 + } + } + ], + "AU1GyDHCrpKQUB51NsLPoDHPpMSe8wu69nDP2pkUgASE8W4R8URS": [ + { + "amount": "87.118252324", + "slot": { + "period": 72376, + "thread": 30 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 275774, + "thread": 8 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 356291, + "thread": 9 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 495038, + "thread": 15 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 776527, + "thread": 31 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 880636, + "thread": 31 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1007722, + "thread": 0 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1265399, + "thread": 23 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1441232, + "thread": 30 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1592162, + "thread": 28 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1794592, + "thread": 18 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 1910450, + "thread": 9 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2059071, + "thread": 2 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2188734, + "thread": 7 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2338129, + "thread": 6 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2526593, + "thread": 10 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2638387, + "thread": 28 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2880473, + "thread": 2 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 2990979, + "thread": 19 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 3272808, + "thread": 18 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 3349328, + "thread": 25 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 3511629, + "thread": 27 + } + }, + { + "amount": "87.118252324", + "slot": { + "period": 3705880, + "thread": 18 + } + }, + { + "amount": "87.118252334", + "slot": { + "period": 3795863, + "thread": 10 + } + } + ], + "AU1Gydj1arBb53EyCQu6T8muUrAQ92x2qTP9TeYigkBwEYfh5MPs": [ + { + "amount": "53.198013196", + "slot": { + "period": 85981, + "thread": 13 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 302675, + "thread": 3 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 410638, + "thread": 15 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 556321, + "thread": 22 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 683055, + "thread": 7 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 883363, + "thread": 10 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1122207, + "thread": 23 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1291693, + "thread": 15 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1400240, + "thread": 12 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1584941, + "thread": 24 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1803607, + "thread": 25 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 1902712, + "thread": 13 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2077881, + "thread": 12 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2185351, + "thread": 18 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2395619, + "thread": 17 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2623673, + "thread": 29 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2643260, + "thread": 8 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 2920579, + "thread": 7 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 3056180, + "thread": 15 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 3197013, + "thread": 29 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 3326283, + "thread": 9 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 3551515, + "thread": 14 + } + }, + { + "amount": "53.198013196", + "slot": { + "period": 3692119, + "thread": 21 + } + }, + { + "amount": "53.198013187", + "slot": { + "period": 3818486, + "thread": 10 + } + } + ], + "AU1GzZKcpgSsLjfNgVeAzACU2UetKH6rU7csQvrsbZnEktjBs9Zx": [ + { + "amount": "166.051650932", + "slot": { + "period": 61465, + "thread": 25 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 245306, + "thread": 24 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 354894, + "thread": 9 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 564336, + "thread": 20 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 786330, + "thread": 6 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 836254, + "thread": 10 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1097315, + "thread": 27 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1292981, + "thread": 0 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1467025, + "thread": 31 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1523788, + "thread": 7 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1676176, + "thread": 27 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 1810072, + "thread": 6 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2131528, + "thread": 15 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2150531, + "thread": 2 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2388079, + "thread": 24 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2556129, + "thread": 20 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2695800, + "thread": 3 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 2943779, + "thread": 27 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 3067709, + "thread": 16 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 3130744, + "thread": 17 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 3346192, + "thread": 27 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 3611554, + "thread": 28 + } + }, + { + "amount": "166.051650932", + "slot": { + "period": 3701018, + "thread": 13 + } + }, + { + "amount": "166.051650931", + "slot": { + "period": 3879190, + "thread": 7 + } + } + ], + "AU1Gzp8cr52ny8C1rV15gqmbG9v4Fed8uS6A2x5y2xjFsWGdLhJo": [ + { + "amount": "227.272078067", + "slot": { + "period": 42052, + "thread": 13 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 188310, + "thread": 20 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 487984, + "thread": 20 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 505546, + "thread": 3 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 816145, + "thread": 0 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 895851, + "thread": 24 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1033237, + "thread": 27 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1202781, + "thread": 12 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1361624, + "thread": 16 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1589824, + "thread": 4 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1778110, + "thread": 2 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 1971974, + "thread": 24 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2111126, + "thread": 26 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2172672, + "thread": 0 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2332790, + "thread": 18 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2490793, + "thread": 0 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2708358, + "thread": 5 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2841625, + "thread": 1 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 2967730, + "thread": 8 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 3279963, + "thread": 17 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 3430412, + "thread": 29 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 3575578, + "thread": 0 + } + }, + { + "amount": "227.272078067", + "slot": { + "period": 3710263, + "thread": 21 + } + }, + { + "amount": "227.272078078", + "slot": { + "period": 3847637, + "thread": 22 + } + } + ], + "AU1H1dmGrt81fjPdQjffScZpoJswCGBTRckUWMH9VXZ6B9kEjmip": [ + { + "amount": "321.509066752", + "slot": { + "period": 39124, + "thread": 2 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 309232, + "thread": 15 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 460375, + "thread": 13 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 596557, + "thread": 20 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 770374, + "thread": 4 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 899039, + "thread": 29 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1014012, + "thread": 27 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1256609, + "thread": 31 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1414356, + "thread": 3 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1523539, + "thread": 23 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1800325, + "thread": 3 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 1815735, + "thread": 24 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2073396, + "thread": 6 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2261565, + "thread": 25 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2425761, + "thread": 3 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2593974, + "thread": 13 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2754576, + "thread": 2 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 2875968, + "thread": 11 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 3066759, + "thread": 19 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 3226265, + "thread": 25 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 3348554, + "thread": 3 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 3558687, + "thread": 26 + } + }, + { + "amount": "321.509066752", + "slot": { + "period": 3707718, + "thread": 10 + } + }, + { + "amount": "321.509066761", + "slot": { + "period": 3903825, + "thread": 19 + } + } + ], + "AU1H1uurXG9fwD58DLmstDdUNZNjPGK4XA5n9f5qiMZQh7x3GzvE": [ + { + "amount": "165.235147963", + "slot": { + "period": 64959, + "thread": 24 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 200019, + "thread": 2 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 363777, + "thread": 25 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 567719, + "thread": 31 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 793841, + "thread": 26 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 866815, + "thread": 7 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1137776, + "thread": 24 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1279072, + "thread": 6 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1338045, + "thread": 30 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1582139, + "thread": 2 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1683496, + "thread": 18 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 1884096, + "thread": 24 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2049960, + "thread": 3 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2203467, + "thread": 6 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2424979, + "thread": 10 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2519517, + "thread": 14 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2625928, + "thread": 25 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2888339, + "thread": 4 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 2961874, + "thread": 21 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 3254285, + "thread": 28 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 3374839, + "thread": 12 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 3616096, + "thread": 5 + } + }, + { + "amount": "165.235147963", + "slot": { + "period": 3723380, + "thread": 31 + } + }, + { + "amount": "165.235147954", + "slot": { + "period": 3793302, + "thread": 13 + } + } + ], + "AU1H36UJx1yrSs1FyoZ5LNF2VnNPdU8rJJHM3YfLsF1u67tK4Zh5": [ + { + "amount": "134.683327339", + "slot": { + "period": 163063, + "thread": 26 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 297393, + "thread": 17 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 408684, + "thread": 4 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 505819, + "thread": 11 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 772047, + "thread": 31 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 907715, + "thread": 18 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1110119, + "thread": 20 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1297313, + "thread": 19 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1334504, + "thread": 18 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1529120, + "thread": 16 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1720214, + "thread": 18 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 1862607, + "thread": 14 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2038709, + "thread": 10 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2228072, + "thread": 13 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2393905, + "thread": 0 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2568944, + "thread": 30 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2642403, + "thread": 3 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 2811027, + "thread": 26 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 3014307, + "thread": 14 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 3128551, + "thread": 29 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 3376151, + "thread": 18 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 3598953, + "thread": 19 + } + }, + { + "amount": "134.683327339", + "slot": { + "period": 3750676, + "thread": 9 + } + }, + { + "amount": "134.683327337", + "slot": { + "period": 3893926, + "thread": 6 + } + } + ], + "AU1H4EYTCvjBLGtRgk3saZrZzkFn1G3Ctv7S91LR2Ts38rh61nRK": [ + { + "amount": "172.076743284", + "slot": { + "period": 76806, + "thread": 10 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 185250, + "thread": 17 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 456524, + "thread": 27 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 605535, + "thread": 27 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 714980, + "thread": 26 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 968527, + "thread": 30 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 994215, + "thread": 27 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 1252353, + "thread": 27 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 1424349, + "thread": 28 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 1588796, + "thread": 30 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 1693212, + "thread": 5 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 1932681, + "thread": 0 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2038375, + "thread": 1 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2210710, + "thread": 13 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2450862, + "thread": 18 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2557071, + "thread": 0 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2686472, + "thread": 5 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 2864270, + "thread": 14 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 3030982, + "thread": 22 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 3217949, + "thread": 21 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 3430241, + "thread": 23 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 3486023, + "thread": 19 + } + }, + { + "amount": "172.076743284", + "slot": { + "period": 3728574, + "thread": 7 + } + }, + { + "amount": "172.076743278", + "slot": { + "period": 3833948, + "thread": 27 + } + } + ], + "AU1H5LLYa2KP95vTcUaEzNCHiCAoZRNjSu9ZoS3YWeAwNa6YFmQE": [ + { + "amount": "235.586753667", + "slot": { + "period": 34071, + "thread": 20 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 285312, + "thread": 9 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 456729, + "thread": 17 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 568465, + "thread": 18 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 693842, + "thread": 23 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 972946, + "thread": 12 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1028550, + "thread": 9 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1293426, + "thread": 11 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1359945, + "thread": 11 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1595475, + "thread": 17 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1657324, + "thread": 27 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1856996, + "thread": 11 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 1986038, + "thread": 22 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 2201516, + "thread": 14 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 2450775, + "thread": 14 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 2479215, + "thread": 28 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 2660182, + "thread": 6 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 2802623, + "thread": 23 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 3105355, + "thread": 14 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 3244794, + "thread": 9 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 3364274, + "thread": 19 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 3600330, + "thread": 16 + } + }, + { + "amount": "235.586753667", + "slot": { + "period": 3719701, + "thread": 3 + } + }, + { + "amount": "235.586753671", + "slot": { + "period": 3787656, + "thread": 0 + } + } + ], + "AU1H5dHYRgZFBYVfz9x2mrU1uRE4jq12zshkS7vciHCE6GKdQeMc": [ + { + "amount": "302.897000004", + "slot": { + "period": 14208, + "thread": 13 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 255051, + "thread": 31 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 384102, + "thread": 4 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 580202, + "thread": 19 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 802741, + "thread": 29 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 923658, + "thread": 25 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 992191, + "thread": 28 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 1269699, + "thread": 29 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 1324530, + "thread": 14 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 1621388, + "thread": 18 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 1684921, + "thread": 28 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 1907459, + "thread": 6 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2089548, + "thread": 12 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2267229, + "thread": 15 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2323595, + "thread": 29 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2574973, + "thread": 4 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2761742, + "thread": 10 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 2865947, + "thread": 27 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 3101276, + "thread": 26 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 3177538, + "thread": 28 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 3406154, + "thread": 31 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 3611557, + "thread": 7 + } + }, + { + "amount": "302.897000004", + "slot": { + "period": 3770149, + "thread": 13 + } + }, + { + "amount": "302.897000009", + "slot": { + "period": 3886227, + "thread": 14 + } + } + ], + "AU1H6uZgnvifDNMk3UKteYbe6aSfetfdT6S2d1JuCPB4WoLVED9S": [ + { + "amount": "59.619047332", + "slot": { + "period": 78432, + "thread": 7 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 185742, + "thread": 13 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 469406, + "thread": 12 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 645073, + "thread": 5 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 787929, + "thread": 4 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 837355, + "thread": 1 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1104433, + "thread": 16 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1265018, + "thread": 1 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1454031, + "thread": 30 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1576642, + "thread": 16 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1660272, + "thread": 30 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 1869013, + "thread": 18 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2046946, + "thread": 0 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2220765, + "thread": 7 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2322610, + "thread": 13 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2543111, + "thread": 24 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2790904, + "thread": 29 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 2891207, + "thread": 19 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 3051257, + "thread": 28 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 3200879, + "thread": 28 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 3429696, + "thread": 12 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 3490101, + "thread": 14 + } + }, + { + "amount": "59.619047332", + "slot": { + "period": 3656806, + "thread": 23 + } + }, + { + "amount": "59.619047328", + "slot": { + "period": 3793606, + "thread": 14 + } + } + ], + "AU1H8mPwr3jjVsmdNA13kkFEsdtqnHA4HP79oGBqBCnqa97dKFsH": [ + { + "amount": "189.567098515", + "slot": { + "period": 99654, + "thread": 12 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 193774, + "thread": 26 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 397058, + "thread": 26 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 557777, + "thread": 13 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 704263, + "thread": 20 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 944924, + "thread": 24 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1018128, + "thread": 10 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1207225, + "thread": 29 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1433887, + "thread": 9 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1514627, + "thread": 9 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1693290, + "thread": 22 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 1944073, + "thread": 23 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2043188, + "thread": 30 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2146439, + "thread": 20 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2374487, + "thread": 21 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2544620, + "thread": 10 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2786547, + "thread": 12 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 2811966, + "thread": 14 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 3008680, + "thread": 8 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 3180070, + "thread": 25 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 3374954, + "thread": 7 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 3514189, + "thread": 21 + } + }, + { + "amount": "189.567098515", + "slot": { + "period": 3665666, + "thread": 14 + } + }, + { + "amount": "189.567098526", + "slot": { + "period": 3895336, + "thread": 14 + } + } + ], + "AU1H8rpf1Wha8zVhtcxuUUHZXshG3PaiQHRDTptjKUKo9djbwa2e": [ + { + "amount": "270.263177387", + "slot": { + "period": 100218, + "thread": 12 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 232639, + "thread": 5 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 349120, + "thread": 18 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 522919, + "thread": 22 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 705232, + "thread": 13 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 940085, + "thread": 17 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1084886, + "thread": 24 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1262510, + "thread": 27 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1454279, + "thread": 23 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1611573, + "thread": 2 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1739943, + "thread": 20 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1921727, + "thread": 31 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 1992915, + "thread": 13 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 2172145, + "thread": 10 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 2369569, + "thread": 14 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 2620194, + "thread": 24 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 2706736, + "thread": 10 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 2793812, + "thread": 18 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 3093443, + "thread": 29 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 3152081, + "thread": 15 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 3323021, + "thread": 6 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 3582082, + "thread": 10 + } + }, + { + "amount": "270.263177387", + "slot": { + "period": 3622763, + "thread": 30 + } + }, + { + "amount": "270.263177391", + "slot": { + "period": 3923374, + "thread": 22 + } + } + ], + "AU1HAWx2SKrJVaqasqD4qGKi5fQsdEVbTWwSW44hqoxcBBbFfhuR": [ + { + "amount": "75.786995362", + "slot": { + "period": 16115, + "thread": 22 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 176827, + "thread": 14 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 391131, + "thread": 18 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 531072, + "thread": 10 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 697178, + "thread": 3 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 896148, + "thread": 9 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1021160, + "thread": 16 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1186059, + "thread": 13 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1367246, + "thread": 28 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1562192, + "thread": 7 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1714625, + "thread": 28 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 1882199, + "thread": 2 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2029823, + "thread": 21 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2248456, + "thread": 31 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2457714, + "thread": 15 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2514040, + "thread": 28 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2682392, + "thread": 14 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 2793912, + "thread": 8 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 3107187, + "thread": 23 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 3197098, + "thread": 3 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 3292512, + "thread": 30 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 3552730, + "thread": 12 + } + }, + { + "amount": "75.786995362", + "slot": { + "period": 3733063, + "thread": 26 + } + }, + { + "amount": "75.786995351", + "slot": { + "period": 3803858, + "thread": 25 + } + } + ], + "AU1HBEKUqXfGH8gqfqLcpEBEeULXbsw5TDv6bKwsiC2AUF7JmEGt": [ + { + "amount": "132.608652306", + "slot": { + "period": 122316, + "thread": 24 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 291809, + "thread": 9 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 469888, + "thread": 29 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 601811, + "thread": 8 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 664292, + "thread": 0 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 906769, + "thread": 8 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1079512, + "thread": 28 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1161994, + "thread": 7 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1379874, + "thread": 2 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1633664, + "thread": 4 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1689742, + "thread": 19 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 1958536, + "thread": 8 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2015387, + "thread": 21 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2257852, + "thread": 24 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2356187, + "thread": 30 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2549153, + "thread": 16 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2652304, + "thread": 19 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 2912354, + "thread": 31 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 3110513, + "thread": 7 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 3167632, + "thread": 10 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 3370122, + "thread": 18 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 3551362, + "thread": 30 + } + }, + { + "amount": "132.608652306", + "slot": { + "period": 3678332, + "thread": 0 + } + }, + { + "amount": "132.608652302", + "slot": { + "period": 3943378, + "thread": 19 + } + } + ], + "AU1HBSxDbCRWHQXmaUSMGFGxPHQ7H6Uu2zLbGz2aBwxyMEHSYWZg": [ + { + "amount": "218.747349777", + "slot": { + "period": 74420, + "thread": 20 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 180029, + "thread": 15 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 441031, + "thread": 5 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 525686, + "thread": 14 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 743655, + "thread": 22 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 889467, + "thread": 2 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1039081, + "thread": 17 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1269589, + "thread": 27 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1434710, + "thread": 0 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1613575, + "thread": 5 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1653357, + "thread": 8 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1957541, + "thread": 14 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 1988309, + "thread": 30 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 2283831, + "thread": 31 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 2311679, + "thread": 31 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 2469513, + "thread": 19 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 2635821, + "thread": 21 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 2952923, + "thread": 24 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3004373, + "thread": 14 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3249745, + "thread": 22 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3374438, + "thread": 13 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3546903, + "thread": 31 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3669072, + "thread": 23 + } + }, + { + "amount": "218.747349777", + "slot": { + "period": 3909113, + "thread": 6 + } + } + ], + "AU1HBYML4vdW8p29K6p1vQ4qTaja9C7SyvmifButZU4ttPGYyAYh": [ + { + "amount": "454.714663058", + "slot": { + "period": 132803, + "thread": 22 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 197351, + "thread": 4 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 422871, + "thread": 31 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 561931, + "thread": 30 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 815050, + "thread": 11 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 857709, + "thread": 12 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1075903, + "thread": 28 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1216623, + "thread": 7 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1447398, + "thread": 28 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1575396, + "thread": 3 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1804523, + "thread": 7 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 1952471, + "thread": 12 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2015293, + "thread": 9 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2169300, + "thread": 2 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2460718, + "thread": 7 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2535971, + "thread": 1 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2749749, + "thread": 1 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 2833404, + "thread": 10 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 3045513, + "thread": 5 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 3138169, + "thread": 3 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 3425859, + "thread": 7 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 3592811, + "thread": 19 + } + }, + { + "amount": "454.714663058", + "slot": { + "period": 3699880, + "thread": 20 + } + }, + { + "amount": "454.714663063", + "slot": { + "period": 3838508, + "thread": 7 + } + } + ], + "AU1HBtyRKh2kkcCikGk4qtvUWoAGk7MXLiYCt8JYJUYf4LpcgdZe": [ + { + "amount": "157.935109538", + "slot": { + "period": 27602, + "thread": 31 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 222081, + "thread": 26 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 354633, + "thread": 3 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 639589, + "thread": 15 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 790205, + "thread": 14 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 893663, + "thread": 29 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 997553, + "thread": 2 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 1233947, + "thread": 28 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 1418506, + "thread": 27 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 1627325, + "thread": 21 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 1730273, + "thread": 24 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 1873039, + "thread": 12 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2109675, + "thread": 6 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2151199, + "thread": 23 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2449935, + "thread": 9 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2496638, + "thread": 7 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2690042, + "thread": 14 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 2876195, + "thread": 3 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 3107977, + "thread": 15 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 3256790, + "thread": 8 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 3432040, + "thread": 20 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 3589690, + "thread": 29 + } + }, + { + "amount": "157.935109538", + "slot": { + "period": 3739565, + "thread": 12 + } + }, + { + "amount": "157.935109549", + "slot": { + "period": 3783568, + "thread": 31 + } + } + ], + "AU1HCYg6h3Ki9PGqao85JCEhQL5pyZSV2buR8dUJ7D24mNtdmZjU": [ + { + "amount": "126.965521539", + "slot": { + "period": 159492, + "thread": 11 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 197322, + "thread": 8 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 488851, + "thread": 6 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 526707, + "thread": 27 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 793266, + "thread": 30 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 927166, + "thread": 9 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1123958, + "thread": 23 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1281283, + "thread": 17 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1452231, + "thread": 13 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1612685, + "thread": 23 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1728480, + "thread": 2 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 1863174, + "thread": 26 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2008758, + "thread": 26 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2167286, + "thread": 12 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2305289, + "thread": 16 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2622766, + "thread": 1 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2715151, + "thread": 28 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 2933186, + "thread": 10 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 3091506, + "thread": 8 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 3174029, + "thread": 1 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 3424829, + "thread": 28 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 3488088, + "thread": 9 + } + }, + { + "amount": "126.965521539", + "slot": { + "period": 3748696, + "thread": 7 + } + }, + { + "amount": "126.965521528", + "slot": { + "period": 3901283, + "thread": 8 + } + } + ], + "AU1HDUXAbsCCCNhJJp3GcjyxGZySAjWa9niAUrNE7Hcm75zaVxtH": [ + { + "amount": "162.141624024", + "slot": { + "period": 161266, + "thread": 23 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 299210, + "thread": 4 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 435083, + "thread": 11 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 542207, + "thread": 23 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 752828, + "thread": 7 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 975926, + "thread": 30 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1052168, + "thread": 31 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1271920, + "thread": 28 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1438166, + "thread": 18 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1547823, + "thread": 2 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1648800, + "thread": 15 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1850482, + "thread": 6 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 1995010, + "thread": 0 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2221309, + "thread": 30 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2367814, + "thread": 23 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2556275, + "thread": 14 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2661685, + "thread": 10 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2803955, + "thread": 30 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 2974061, + "thread": 19 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 3178309, + "thread": 4 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 3303706, + "thread": 8 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 3579426, + "thread": 17 + } + }, + { + "amount": "162.141624024", + "slot": { + "period": 3726281, + "thread": 18 + } + }, + { + "amount": "162.141624028", + "slot": { + "period": 3869119, + "thread": 21 + } + } + ], + "AU1HDoYypWwjVgDanonFLUecgHRVmFaeEhitaqJ9RVShZ6PSz9Wg": [ + { + "amount": "418.230687228", + "slot": { + "period": 92465, + "thread": 2 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 277093, + "thread": 17 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 358009, + "thread": 26 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 550763, + "thread": 2 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 735197, + "thread": 28 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 853700, + "thread": 22 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1032195, + "thread": 31 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1307327, + "thread": 9 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1352542, + "thread": 17 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1638419, + "thread": 5 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1663754, + "thread": 11 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 1838077, + "thread": 8 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2030256, + "thread": 8 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2292485, + "thread": 5 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2434906, + "thread": 9 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2610561, + "thread": 1 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2718199, + "thread": 10 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2890694, + "thread": 15 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 2982516, + "thread": 2 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 3121961, + "thread": 7 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 3365424, + "thread": 16 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 3508788, + "thread": 1 + } + }, + { + "amount": "418.230687228", + "slot": { + "period": 3663626, + "thread": 9 + } + }, + { + "amount": "418.230687216", + "slot": { + "period": 3920577, + "thread": 3 + } + } + ], + "AU1HF48NTMRZCggAeFhqH5YFKybrUg5Eb1u9uWB4PHhgiTFByKHV": [ + { + "amount": "207.256980377", + "slot": { + "period": 13519, + "thread": 6 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 300560, + "thread": 26 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 365464, + "thread": 15 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 639582, + "thread": 27 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 750963, + "thread": 6 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 961452, + "thread": 30 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1092787, + "thread": 17 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1310204, + "thread": 8 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1475488, + "thread": 27 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1595539, + "thread": 13 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1695108, + "thread": 10 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 1850987, + "thread": 13 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2067131, + "thread": 18 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2183432, + "thread": 14 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2324221, + "thread": 12 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2565434, + "thread": 31 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2736330, + "thread": 8 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 2854855, + "thread": 29 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 3052431, + "thread": 14 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 3238043, + "thread": 2 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 3427254, + "thread": 29 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 3522989, + "thread": 11 + } + }, + { + "amount": "207.256980377", + "slot": { + "period": 3712999, + "thread": 17 + } + }, + { + "amount": "207.256980372", + "slot": { + "period": 3903464, + "thread": 20 + } + } + ], + "AU1HG81u8ecuGbpTUHVah82eQyG3jiyCJaN63yyZSg3KKdhqte69": [ + { + "amount": "150.677831179", + "slot": { + "period": 35356, + "thread": 11 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 268949, + "thread": 11 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 407818, + "thread": 5 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 652744, + "thread": 19 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 793549, + "thread": 0 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 828311, + "thread": 15 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1016373, + "thread": 8 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1269452, + "thread": 21 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1437283, + "thread": 19 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1547907, + "thread": 15 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1653293, + "thread": 6 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 1817805, + "thread": 29 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2118963, + "thread": 3 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2269918, + "thread": 18 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2367861, + "thread": 8 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2554287, + "thread": 17 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2728337, + "thread": 19 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2887670, + "thread": 24 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 2964669, + "thread": 29 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 3186946, + "thread": 28 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 3371178, + "thread": 13 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 3572065, + "thread": 21 + } + }, + { + "amount": "150.677831179", + "slot": { + "period": 3625353, + "thread": 13 + } + }, + { + "amount": "150.677831172", + "slot": { + "period": 3925001, + "thread": 25 + } + } + ], + "AU1HGPyUTzYVRL9DVNHkVccqhxtGctBwZohTSZ96N4sUtwMnaqYo": [ + { + "amount": "140.860235643", + "slot": { + "period": 43218, + "thread": 31 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 287611, + "thread": 1 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 329500, + "thread": 25 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 589008, + "thread": 16 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 727584, + "thread": 31 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 907941, + "thread": 20 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1147949, + "thread": 25 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1314986, + "thread": 11 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1353771, + "thread": 7 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1641299, + "thread": 3 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1679514, + "thread": 22 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 1918045, + "thread": 17 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2083685, + "thread": 20 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2175114, + "thread": 25 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2337502, + "thread": 26 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2577293, + "thread": 17 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2750968, + "thread": 6 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 2886674, + "thread": 21 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 3076314, + "thread": 28 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 3193818, + "thread": 1 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 3293780, + "thread": 9 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 3602014, + "thread": 2 + } + }, + { + "amount": "140.860235643", + "slot": { + "period": 3751999, + "thread": 19 + } + }, + { + "amount": "140.860235636", + "slot": { + "period": 3858943, + "thread": 28 + } + } + ], + "AU1HGxQPaPHrgGMv7qjUYP4gikvokKyPJ7ckLDYLwaNabLauLj3R": [ + { + "amount": "146.027203381", + "slot": { + "period": 30085, + "thread": 27 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 194548, + "thread": 22 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 442636, + "thread": 27 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 541050, + "thread": 9 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 812877, + "thread": 18 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 853858, + "thread": 15 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1021700, + "thread": 5 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1303728, + "thread": 8 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1416125, + "thread": 2 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1599056, + "thread": 31 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1806709, + "thread": 27 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 1952425, + "thread": 5 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2040483, + "thread": 19 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2205090, + "thread": 10 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2445099, + "thread": 18 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2530416, + "thread": 16 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2704013, + "thread": 14 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 2807640, + "thread": 25 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 3021389, + "thread": 10 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 3241467, + "thread": 15 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 3399088, + "thread": 28 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 3491078, + "thread": 8 + } + }, + { + "amount": "146.027203381", + "slot": { + "period": 3653709, + "thread": 27 + } + }, + { + "amount": "146.027203375", + "slot": { + "period": 3874571, + "thread": 15 + } + } + ], + "AU1HH8uVqhFBwc81zX763MJUZhif6gVEX6d1yiYZozGGcP1EmvKy": [ + { + "amount": "224.396026785", + "slot": { + "period": 92550, + "thread": 26 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 254918, + "thread": 13 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 330101, + "thread": 13 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 527171, + "thread": 15 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 749941, + "thread": 23 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 894035, + "thread": 8 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1069876, + "thread": 19 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1170380, + "thread": 19 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1350073, + "thread": 23 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1565927, + "thread": 21 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1807260, + "thread": 31 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 1938732, + "thread": 6 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2066184, + "thread": 6 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2187100, + "thread": 12 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2323392, + "thread": 15 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2609611, + "thread": 22 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2690202, + "thread": 30 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 2860448, + "thread": 20 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3052063, + "thread": 5 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3232328, + "thread": 3 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3349865, + "thread": 15 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3566893, + "thread": 29 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3645176, + "thread": 9 + } + }, + { + "amount": "224.396026785", + "slot": { + "period": 3821350, + "thread": 4 + } + } + ], + "AU1HHZRPFDbsiyJ46jWSrPEvEFNo5QUcs2jQT4BGqSpw3YRSrzkq": [ + { + "amount": "64.795357983", + "slot": { + "period": 86838, + "thread": 22 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 258883, + "thread": 23 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 351544, + "thread": 25 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 612697, + "thread": 21 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 805095, + "thread": 12 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 905337, + "thread": 10 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1074589, + "thread": 17 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1239136, + "thread": 29 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1395477, + "thread": 28 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1563905, + "thread": 13 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1782417, + "thread": 21 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 1833961, + "thread": 9 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2100963, + "thread": 12 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2294044, + "thread": 14 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2397632, + "thread": 6 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2501392, + "thread": 19 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2635220, + "thread": 26 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 2889291, + "thread": 27 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 3000262, + "thread": 4 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 3283130, + "thread": 4 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 3429484, + "thread": 5 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 3584985, + "thread": 21 + } + }, + { + "amount": "64.795357983", + "slot": { + "period": 3652903, + "thread": 18 + } + }, + { + "amount": "64.795357980", + "slot": { + "period": 3847666, + "thread": 23 + } + } + ], + "AU1HKAMQogSdKW2SyXk6yGJv58pm4fHQbTMjTzpakmbY2KgHqyUL": [ + { + "amount": "238.267741868", + "slot": { + "period": 143908, + "thread": 5 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 224617, + "thread": 12 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 394885, + "thread": 8 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 541834, + "thread": 16 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 775362, + "thread": 20 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 851601, + "thread": 20 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1035501, + "thread": 0 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1254083, + "thread": 18 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1421925, + "thread": 9 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1492494, + "thread": 7 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1734081, + "thread": 31 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 1973937, + "thread": 11 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2056953, + "thread": 1 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2260203, + "thread": 6 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2457632, + "thread": 0 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2563709, + "thread": 30 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2762709, + "thread": 7 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 2861896, + "thread": 25 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 3040411, + "thread": 11 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 3260126, + "thread": 11 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 3331179, + "thread": 24 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 3470601, + "thread": 16 + } + }, + { + "amount": "238.267741868", + "slot": { + "period": 3723604, + "thread": 27 + } + }, + { + "amount": "238.267741862", + "slot": { + "period": 3860644, + "thread": 27 + } + } + ], + "AU1HKbJGa3GPX5zFs63rA475medeRjyvjTtzfM8GnXGDV3NTWncu": [ + { + "amount": "139.252214217", + "slot": { + "period": 34329, + "thread": 3 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 322095, + "thread": 25 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 355789, + "thread": 25 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 594482, + "thread": 17 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 756905, + "thread": 29 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 971565, + "thread": 0 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1019656, + "thread": 27 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1198626, + "thread": 25 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1451372, + "thread": 16 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1495377, + "thread": 25 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1759733, + "thread": 0 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 1859050, + "thread": 2 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2075584, + "thread": 8 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2277842, + "thread": 2 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2446071, + "thread": 21 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2462569, + "thread": 5 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2774190, + "thread": 24 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 2878890, + "thread": 12 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 3040889, + "thread": 12 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 3225722, + "thread": 18 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 3338192, + "thread": 28 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 3531936, + "thread": 13 + } + }, + { + "amount": "139.252214217", + "slot": { + "period": 3734052, + "thread": 0 + } + }, + { + "amount": "139.252214206", + "slot": { + "period": 3791701, + "thread": 21 + } + } + ], + "AU1HLkLXhoZF1KohRqpYAjJUkicC4914tn9iRD9KMMQiVv8bpuUZ": [ + { + "amount": "63.263017183", + "slot": { + "period": 23590, + "thread": 14 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 250545, + "thread": 19 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 461878, + "thread": 29 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 531139, + "thread": 20 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 659704, + "thread": 24 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 882573, + "thread": 2 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1062805, + "thread": 16 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1199856, + "thread": 27 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1426873, + "thread": 4 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1489896, + "thread": 10 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1806524, + "thread": 21 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 1809156, + "thread": 28 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2071811, + "thread": 19 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2228925, + "thread": 25 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2377063, + "thread": 26 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2583451, + "thread": 2 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2645636, + "thread": 14 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2913178, + "thread": 20 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 2959980, + "thread": 7 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 3216716, + "thread": 18 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 3439943, + "thread": 19 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 3483930, + "thread": 13 + } + }, + { + "amount": "63.263017183", + "slot": { + "period": 3651915, + "thread": 12 + } + }, + { + "amount": "63.263017190", + "slot": { + "period": 3931546, + "thread": 22 + } + } + ], + "AU1HLxQuFNKt1UEFbnrstsjMfijNwZJuNqw6SFbuEuSoQFgdxRuo": [ + { + "amount": "552.391021045", + "slot": { + "period": 163373, + "thread": 1 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 320287, + "thread": 15 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 480492, + "thread": 12 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 634249, + "thread": 9 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 751029, + "thread": 16 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 879330, + "thread": 18 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1110931, + "thread": 4 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1225446, + "thread": 12 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1330991, + "thread": 21 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1530948, + "thread": 9 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1752342, + "thread": 9 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1909696, + "thread": 11 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 1987358, + "thread": 25 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 2185833, + "thread": 26 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 2297867, + "thread": 3 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 2471563, + "thread": 10 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 2762921, + "thread": 22 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 2802026, + "thread": 15 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 3007787, + "thread": 14 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 3149731, + "thread": 29 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 3400432, + "thread": 26 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 3453521, + "thread": 18 + } + }, + { + "amount": "552.391021045", + "slot": { + "period": 3727514, + "thread": 16 + } + }, + { + "amount": "552.391021042", + "slot": { + "period": 3886950, + "thread": 28 + } + } + ], + "AU1HMTEWstKAi2eZG1kJju9KuomSft3kdcfmsBUsprsgnUU4Agux": [ + { + "amount": "160.394838837", + "slot": { + "period": 125776, + "thread": 12 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 214972, + "thread": 24 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 432347, + "thread": 5 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 600528, + "thread": 31 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 784843, + "thread": 24 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 888515, + "thread": 22 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1003385, + "thread": 28 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1234203, + "thread": 25 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1456002, + "thread": 30 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1541670, + "thread": 2 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1705831, + "thread": 1 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 1951757, + "thread": 7 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2137473, + "thread": 28 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2183319, + "thread": 13 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2328064, + "thread": 16 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2584590, + "thread": 28 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2783553, + "thread": 26 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 2822570, + "thread": 13 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 3029731, + "thread": 4 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 3155971, + "thread": 28 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 3329254, + "thread": 6 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 3520667, + "thread": 19 + } + }, + { + "amount": "160.394838837", + "slot": { + "period": 3644947, + "thread": 5 + } + }, + { + "amount": "160.394838842", + "slot": { + "period": 3885890, + "thread": 16 + } + } + ], + "AU1HNDweDrjTe2WeWuBdAJivqM1ZCqisNRMNWR6g9X84fpNV9T7W": [ + { + "amount": "489.390244152", + "slot": { + "period": 138879, + "thread": 27 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 259570, + "thread": 28 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 486071, + "thread": 30 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 611342, + "thread": 17 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 765805, + "thread": 25 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 837323, + "thread": 16 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 991789, + "thread": 13 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1245159, + "thread": 15 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1448405, + "thread": 4 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1594681, + "thread": 23 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1736124, + "thread": 3 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1899561, + "thread": 16 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 1996543, + "thread": 12 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 2215354, + "thread": 18 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 2326213, + "thread": 12 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 2517928, + "thread": 23 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 2676652, + "thread": 25 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 2883242, + "thread": 26 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 3004878, + "thread": 1 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 3281755, + "thread": 17 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 3441319, + "thread": 25 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 3518036, + "thread": 11 + } + }, + { + "amount": "489.390244152", + "slot": { + "period": 3644347, + "thread": 7 + } + }, + { + "amount": "489.390244142", + "slot": { + "period": 3790596, + "thread": 1 + } + } + ], + "AU1HNaDgSuyv6VFHsrbkjR8Bg8q7MkQEXZ3mY98JNZ53gT4Qbo1S": [ + { + "amount": "85.911980883", + "slot": { + "period": 143880, + "thread": 11 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 278637, + "thread": 30 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 471773, + "thread": 4 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 641490, + "thread": 22 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 704552, + "thread": 0 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 976444, + "thread": 31 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1027577, + "thread": 21 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1209181, + "thread": 25 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1429093, + "thread": 6 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1561955, + "thread": 12 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1775004, + "thread": 14 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 1928211, + "thread": 24 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2139237, + "thread": 7 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2218418, + "thread": 14 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2314689, + "thread": 24 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2586652, + "thread": 12 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2762903, + "thread": 17 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 2899643, + "thread": 31 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 3002563, + "thread": 9 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 3280491, + "thread": 4 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 3363401, + "thread": 23 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 3564454, + "thread": 21 + } + }, + { + "amount": "85.911980883", + "slot": { + "period": 3625766, + "thread": 7 + } + }, + { + "amount": "85.911980880", + "slot": { + "period": 3787690, + "thread": 21 + } + } + ], + "AU1HNp4Nz6xDygjtoxGs5vw5Fb1WmrGUMyhSxMXJPMAFzVjNZw6V": [ + { + "amount": "178.764097586", + "slot": { + "period": 165994, + "thread": 5 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 169614, + "thread": 28 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 464158, + "thread": 28 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 580601, + "thread": 23 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 774403, + "thread": 13 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 922723, + "thread": 7 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 990675, + "thread": 6 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 1311395, + "thread": 1 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 1441412, + "thread": 0 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 1623749, + "thread": 9 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 1647865, + "thread": 0 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 1890115, + "thread": 13 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2086579, + "thread": 3 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2286849, + "thread": 17 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2408007, + "thread": 15 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2592911, + "thread": 8 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2747153, + "thread": 10 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 2864066, + "thread": 29 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 3012005, + "thread": 10 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 3198517, + "thread": 6 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 3438360, + "thread": 13 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 3507509, + "thread": 19 + } + }, + { + "amount": "178.764097586", + "slot": { + "period": 3692973, + "thread": 7 + } + }, + { + "amount": "178.764097587", + "slot": { + "period": 3904157, + "thread": 21 + } + } + ], + "AU1HQAtxWaNj8pM7NvsPqqT8eMghQRhVuwJt3dE4hu3QaYXd7HwR": [ + { + "amount": "279.417744093", + "slot": { + "period": 94509, + "thread": 26 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 314232, + "thread": 6 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 463531, + "thread": 10 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 586855, + "thread": 0 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 792334, + "thread": 9 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 864170, + "thread": 25 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1097988, + "thread": 11 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1154775, + "thread": 29 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1439758, + "thread": 19 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1646287, + "thread": 15 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1671638, + "thread": 9 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 1836861, + "thread": 4 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2083662, + "thread": 13 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2206472, + "thread": 26 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2336059, + "thread": 28 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2552775, + "thread": 9 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2636719, + "thread": 15 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 2916625, + "thread": 1 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 3042959, + "thread": 21 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 3169449, + "thread": 6 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 3446615, + "thread": 14 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 3470455, + "thread": 21 + } + }, + { + "amount": "279.417744093", + "slot": { + "period": 3646832, + "thread": 3 + } + }, + { + "amount": "279.417744088", + "slot": { + "period": 3800094, + "thread": 7 + } + } + ], + "AU1HQBEv4q7EnCuaPBRw9iXySYTD7VBhpZbz1RBGe64KoTfdEMrP": [ + { + "amount": "264.721430555", + "slot": { + "period": 37918, + "thread": 29 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 198149, + "thread": 9 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 325725, + "thread": 19 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 503597, + "thread": 0 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 733650, + "thread": 12 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 953004, + "thread": 17 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1066473, + "thread": 9 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1160348, + "thread": 13 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1327542, + "thread": 28 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1503712, + "thread": 16 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1670742, + "thread": 24 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 1906120, + "thread": 30 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2088096, + "thread": 22 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2155605, + "thread": 17 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2304546, + "thread": 1 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2590069, + "thread": 19 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2675657, + "thread": 20 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 2882873, + "thread": 17 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 3055770, + "thread": 13 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 3225105, + "thread": 28 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 3321237, + "thread": 3 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 3586635, + "thread": 7 + } + }, + { + "amount": "264.721430555", + "slot": { + "period": 3760197, + "thread": 25 + } + }, + { + "amount": "264.721430544", + "slot": { + "period": 3878471, + "thread": 25 + } + } + ], + "AU1HQhxkgjBNLMkSUQAARZyboYCn9geNcRW2GBZ1evrCq5h9PsHc": [ + { + "amount": "67.444007512", + "slot": { + "period": 139249, + "thread": 11 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 243473, + "thread": 13 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 474087, + "thread": 20 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 603184, + "thread": 8 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 657735, + "thread": 9 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 912160, + "thread": 3 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 986273, + "thread": 24 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1264537, + "thread": 30 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1417734, + "thread": 10 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1518205, + "thread": 28 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1671601, + "thread": 24 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1949485, + "thread": 31 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 1999760, + "thread": 27 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 2274611, + "thread": 27 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 2307188, + "thread": 20 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 2514296, + "thread": 21 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 2682175, + "thread": 18 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 2880562, + "thread": 2 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 3029488, + "thread": 12 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 3253794, + "thread": 21 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 3423610, + "thread": 10 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 3490559, + "thread": 24 + } + }, + { + "amount": "67.444007512", + "slot": { + "period": 3656239, + "thread": 19 + } + }, + { + "amount": "67.444007520", + "slot": { + "period": 3897990, + "thread": 8 + } + } + ], + "AU1HSUexWA1kouFyRZ211Tj8s1ekbfumYbJ4i7mtpDHFgxNDEXnf": [ + { + "amount": "134.447899451", + "slot": { + "period": 114825, + "thread": 17 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 201124, + "thread": 25 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 461494, + "thread": 2 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 540089, + "thread": 14 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 794645, + "thread": 26 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 841098, + "thread": 2 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1114429, + "thread": 23 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1196959, + "thread": 8 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1411179, + "thread": 13 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1642367, + "thread": 27 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1793819, + "thread": 17 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 1825001, + "thread": 21 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2068733, + "thread": 23 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2162310, + "thread": 17 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2388293, + "thread": 30 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2506555, + "thread": 5 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2700179, + "thread": 26 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2862129, + "thread": 30 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 2967061, + "thread": 7 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 3263602, + "thread": 2 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 3393364, + "thread": 4 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 3600666, + "thread": 25 + } + }, + { + "amount": "134.447899451", + "slot": { + "period": 3703870, + "thread": 30 + } + }, + { + "amount": "134.447899450", + "slot": { + "period": 3825907, + "thread": 12 + } + } + ], + "AU1HT8AkTXwwsN4QNZtWRMMfNzfUQSp8BdsX4wyjSAjobebDDjvc": [ + { + "amount": "142.095858795", + "slot": { + "period": 149587, + "thread": 28 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 308650, + "thread": 13 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 415994, + "thread": 29 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 506173, + "thread": 14 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 781667, + "thread": 13 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 924551, + "thread": 9 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1007142, + "thread": 21 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1201297, + "thread": 22 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1341580, + "thread": 29 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1493942, + "thread": 6 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1722357, + "thread": 23 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 1953992, + "thread": 4 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2025338, + "thread": 22 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2234520, + "thread": 24 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2460406, + "thread": 20 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2575344, + "thread": 7 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2678702, + "thread": 26 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 2914708, + "thread": 31 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3032029, + "thread": 5 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3123941, + "thread": 10 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3328446, + "thread": 17 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3531619, + "thread": 2 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3622380, + "thread": 27 + } + }, + { + "amount": "142.095858795", + "slot": { + "period": 3941097, + "thread": 18 + } + } + ], + "AU1HTtB1o7zmhyaszpkaKkAEUeSGSx58Z8KhwWUcm5w1uRzg9oMe": [ + { + "amount": "228.532245736", + "slot": { + "period": 132004, + "thread": 1 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 318073, + "thread": 21 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 475704, + "thread": 22 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 635984, + "thread": 17 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 659707, + "thread": 28 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 926380, + "thread": 3 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1093925, + "thread": 26 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1271886, + "thread": 14 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1477371, + "thread": 26 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1586388, + "thread": 21 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1741729, + "thread": 21 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 1817762, + "thread": 18 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2035517, + "thread": 15 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2273443, + "thread": 24 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2458050, + "thread": 12 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2554056, + "thread": 30 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2744565, + "thread": 30 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 2826507, + "thread": 17 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 3118782, + "thread": 4 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 3176954, + "thread": 27 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 3342481, + "thread": 24 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 3488251, + "thread": 7 + } + }, + { + "amount": "228.532245736", + "slot": { + "period": 3654259, + "thread": 28 + } + }, + { + "amount": "228.532245744", + "slot": { + "period": 3858174, + "thread": 1 + } + } + ], + "AU1HTv5JDgqgpwXKUSDfe4m9M9YgP4ZC7XUzXpGi1uA2yQZWkcuL": [ + { + "amount": "325.954746256", + "slot": { + "period": 42757, + "thread": 30 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 199383, + "thread": 9 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 371703, + "thread": 23 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 576327, + "thread": 20 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 750274, + "thread": 15 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 958298, + "thread": 18 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1049513, + "thread": 28 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1217112, + "thread": 12 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1440489, + "thread": 16 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1635355, + "thread": 17 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1808369, + "thread": 19 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 1937041, + "thread": 6 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2094176, + "thread": 29 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2214899, + "thread": 30 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2315082, + "thread": 25 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2591849, + "thread": 18 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2678284, + "thread": 20 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 2948672, + "thread": 16 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 3004304, + "thread": 21 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 3141297, + "thread": 13 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 3299634, + "thread": 30 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 3561434, + "thread": 29 + } + }, + { + "amount": "325.954746256", + "slot": { + "period": 3724062, + "thread": 8 + } + }, + { + "amount": "325.954746244", + "slot": { + "period": 3944334, + "thread": 23 + } + } + ], + "AU1HU1o4RRYKCb3ae2DS9FEYH8vDV1QG16FVUWpNqUtVScyUaCbU": [ + { + "amount": "136.948461469", + "slot": { + "period": 42385, + "thread": 21 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 194639, + "thread": 26 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 398055, + "thread": 16 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 540085, + "thread": 17 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 727689, + "thread": 11 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 959594, + "thread": 23 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1128462, + "thread": 12 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1195480, + "thread": 21 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1329030, + "thread": 18 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1501990, + "thread": 19 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1673230, + "thread": 25 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 1971743, + "thread": 25 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2037774, + "thread": 26 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2252184, + "thread": 6 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2355923, + "thread": 27 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2568458, + "thread": 11 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2751218, + "thread": 5 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 2842866, + "thread": 19 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 3053175, + "thread": 1 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 3155042, + "thread": 23 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 3304788, + "thread": 20 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 3534731, + "thread": 2 + } + }, + { + "amount": "136.948461469", + "slot": { + "period": 3695138, + "thread": 2 + } + }, + { + "amount": "136.948461480", + "slot": { + "period": 3825997, + "thread": 21 + } + } + ], + "AU1HV6BjTMa243YFUR3eg8grZkjmXPFmq7MDTsfzYYmMHvXrRfCR": [ + { + "amount": "101.884244480", + "slot": { + "period": 149351, + "thread": 0 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 242008, + "thread": 23 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 391085, + "thread": 25 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 542764, + "thread": 13 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 801072, + "thread": 31 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 849134, + "thread": 24 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1003172, + "thread": 2 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1154456, + "thread": 31 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1455923, + "thread": 26 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1576428, + "thread": 15 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1729946, + "thread": 2 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 1873941, + "thread": 16 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2061736, + "thread": 2 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2164854, + "thread": 2 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2325815, + "thread": 1 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2547283, + "thread": 5 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2698272, + "thread": 9 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 2827539, + "thread": 20 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 3032597, + "thread": 3 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 3230834, + "thread": 9 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 3429454, + "thread": 24 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 3506531, + "thread": 28 + } + }, + { + "amount": "101.884244480", + "slot": { + "period": 3650594, + "thread": 11 + } + }, + { + "amount": "101.884244469", + "slot": { + "period": 3881679, + "thread": 7 + } + } + ], + "AU1HVVo9eBAZmdTCebSs96KYz8s8NA3Wqv9UwyrzFTEMCh94WwCS": [ + { + "amount": "266.511938378", + "slot": { + "period": 156753, + "thread": 11 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 243705, + "thread": 6 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 459447, + "thread": 12 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 514513, + "thread": 8 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 788527, + "thread": 15 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 934849, + "thread": 13 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1050459, + "thread": 26 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1182760, + "thread": 7 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1411440, + "thread": 20 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1500285, + "thread": 8 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1787181, + "thread": 11 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 1905944, + "thread": 0 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2073828, + "thread": 18 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2197807, + "thread": 4 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2457689, + "thread": 27 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2562396, + "thread": 21 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2626363, + "thread": 29 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2913290, + "thread": 31 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 2958114, + "thread": 30 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 3193310, + "thread": 0 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 3343313, + "thread": 10 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 3473464, + "thread": 4 + } + }, + { + "amount": "266.511938378", + "slot": { + "period": 3630152, + "thread": 27 + } + }, + { + "amount": "266.511938377", + "slot": { + "period": 3919116, + "thread": 11 + } + } + ], + "AU1HVW9pdE4NEWhiN2AmE2KzyxuVokfz84D921WHY8yuJWqvevyo": [ + { + "amount": "474.969681663", + "slot": { + "period": 64860, + "thread": 26 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 209965, + "thread": 21 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 410142, + "thread": 13 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 543880, + "thread": 20 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 785416, + "thread": 11 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 913140, + "thread": 17 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1021604, + "thread": 25 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1235990, + "thread": 8 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1450447, + "thread": 5 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1591837, + "thread": 26 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1745069, + "thread": 28 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 1822593, + "thread": 26 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2019530, + "thread": 0 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2240785, + "thread": 0 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2453990, + "thread": 3 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2574699, + "thread": 22 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2695497, + "thread": 0 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 2811317, + "thread": 8 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 3052987, + "thread": 30 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 3125783, + "thread": 28 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 3370704, + "thread": 22 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 3614611, + "thread": 8 + } + }, + { + "amount": "474.969681663", + "slot": { + "period": 3741424, + "thread": 31 + } + }, + { + "amount": "474.969681664", + "slot": { + "period": 3828529, + "thread": 8 + } + } + ], + "AU1HVwSwNMfAXVSbKwM71aJYLYmSo3YogLdgtTFhi8aG5HSnZFFz": [ + { + "amount": "160.474035961", + "slot": { + "period": 27241, + "thread": 28 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 201265, + "thread": 22 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 473304, + "thread": 30 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 643294, + "thread": 30 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 693189, + "thread": 1 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 943792, + "thread": 23 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 995852, + "thread": 23 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 1212849, + "thread": 25 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 1445373, + "thread": 10 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 1520639, + "thread": 3 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 1808300, + "thread": 10 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 1812536, + "thread": 13 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2116105, + "thread": 8 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2197397, + "thread": 4 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2442469, + "thread": 3 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2602519, + "thread": 30 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2686806, + "thread": 13 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 2901558, + "thread": 29 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 3092121, + "thread": 25 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 3257649, + "thread": 24 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 3377487, + "thread": 28 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 3561343, + "thread": 6 + } + }, + { + "amount": "160.474035961", + "slot": { + "period": 3620779, + "thread": 7 + } + }, + { + "amount": "160.474035951", + "slot": { + "period": 3868148, + "thread": 7 + } + } + ], + "AU1HWUZCzfGTfhFMiNvUxLMEBA8zS56aEZNEBXbVnVJ7KafwCKFH": [ + { + "amount": "134.574724261", + "slot": { + "period": 96068, + "thread": 2 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 247697, + "thread": 11 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 470264, + "thread": 28 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 574993, + "thread": 21 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 678559, + "thread": 30 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 920140, + "thread": 22 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1113704, + "thread": 18 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1253033, + "thread": 2 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1444777, + "thread": 30 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1612789, + "thread": 9 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1673519, + "thread": 26 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 1966307, + "thread": 11 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2001579, + "thread": 28 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2209502, + "thread": 21 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2354622, + "thread": 23 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2492919, + "thread": 18 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2634660, + "thread": 16 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2921429, + "thread": 17 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 2979476, + "thread": 26 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 3227746, + "thread": 7 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 3382307, + "thread": 8 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 3607942, + "thread": 8 + } + }, + { + "amount": "134.574724261", + "slot": { + "period": 3713388, + "thread": 0 + } + }, + { + "amount": "134.574724265", + "slot": { + "period": 3860672, + "thread": 31 + } + } + ], + "AU1HXDT9SRixWYS1oXAhmopfKnzhBjZSGY7WEyaNWc5rJkxoZ1mN": [ + { + "amount": "311.670401634", + "slot": { + "period": 163860, + "thread": 31 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 317301, + "thread": 31 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 468019, + "thread": 17 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 526458, + "thread": 9 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 747775, + "thread": 8 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 905955, + "thread": 9 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1019010, + "thread": 4 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1173538, + "thread": 28 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1440987, + "thread": 0 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1564750, + "thread": 29 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1725103, + "thread": 26 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1888467, + "thread": 30 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 1995010, + "thread": 10 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 2191779, + "thread": 6 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 2343985, + "thread": 23 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 2606702, + "thread": 5 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 2643172, + "thread": 17 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 2823198, + "thread": 13 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 3038219, + "thread": 28 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 3282752, + "thread": 25 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 3296575, + "thread": 21 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 3578853, + "thread": 26 + } + }, + { + "amount": "311.670401634", + "slot": { + "period": 3759040, + "thread": 18 + } + }, + { + "amount": "311.670401639", + "slot": { + "period": 3859926, + "thread": 14 + } + } + ], + "AU1HXqGvMwJuschn2yDL6ehL8DzDE332ghY9osBHVTYa74DshsY5": [ + { + "amount": "120.128442477", + "slot": { + "period": 94944, + "thread": 27 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 216129, + "thread": 25 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 419085, + "thread": 23 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 604785, + "thread": 29 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 773285, + "thread": 22 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 979121, + "thread": 10 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1082192, + "thread": 18 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1174407, + "thread": 4 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1434452, + "thread": 29 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1571751, + "thread": 9 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1677092, + "thread": 6 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 1918683, + "thread": 24 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2032809, + "thread": 15 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2181385, + "thread": 27 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2385629, + "thread": 27 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2608931, + "thread": 21 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2702297, + "thread": 16 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2913157, + "thread": 23 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 2954475, + "thread": 14 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 3217223, + "thread": 9 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 3411106, + "thread": 28 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 3506877, + "thread": 27 + } + }, + { + "amount": "120.128442477", + "slot": { + "period": 3656607, + "thread": 10 + } + }, + { + "amount": "120.128442469", + "slot": { + "period": 3865625, + "thread": 3 + } + } + ], + "AU1HXqUVJNKq5W7SstirKcoy2EshhhQKrzC6qKqWynYivcNgXucx": [ + { + "amount": "348.803952625", + "slot": { + "period": 124938, + "thread": 7 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 235746, + "thread": 13 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 466339, + "thread": 27 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 639548, + "thread": 2 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 751425, + "thread": 6 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 894088, + "thread": 5 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1116730, + "thread": 20 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1201816, + "thread": 21 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1473411, + "thread": 25 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1551567, + "thread": 13 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1742270, + "thread": 13 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 1881264, + "thread": 10 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2048608, + "thread": 1 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2207279, + "thread": 17 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2363920, + "thread": 24 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2476697, + "thread": 28 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2778205, + "thread": 11 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 2838438, + "thread": 14 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 3033356, + "thread": 21 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 3151585, + "thread": 14 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 3371015, + "thread": 12 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 3488075, + "thread": 4 + } + }, + { + "amount": "348.803952625", + "slot": { + "period": 3699736, + "thread": 2 + } + }, + { + "amount": "348.803952618", + "slot": { + "period": 3937311, + "thread": 28 + } + } + ], + "AU1HYeGR3FSFgQcosTxySPvme1v223hcMt5aH4DwGd31Mr81CHm1": [ + { + "amount": "223.514272996", + "slot": { + "period": 65364, + "thread": 12 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 169467, + "thread": 28 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 430886, + "thread": 24 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 508604, + "thread": 11 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 792737, + "thread": 31 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 906998, + "thread": 20 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1060964, + "thread": 20 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1271017, + "thread": 24 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1393493, + "thread": 13 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1553641, + "thread": 30 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1694964, + "thread": 27 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 1973737, + "thread": 15 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2084886, + "thread": 1 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2259642, + "thread": 13 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2456647, + "thread": 3 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2500871, + "thread": 6 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2742348, + "thread": 1 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2884084, + "thread": 7 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 2988436, + "thread": 8 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 3203343, + "thread": 17 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 3406036, + "thread": 11 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 3451578, + "thread": 8 + } + }, + { + "amount": "223.514272996", + "slot": { + "period": 3712243, + "thread": 22 + } + }, + { + "amount": "223.514272991", + "slot": { + "period": 3944792, + "thread": 30 + } + } + ], + "AU1HYeJ7f3Hm1TLNE2HZBp2rQhSwu4KxWxDXhCBQCenfua94i62o": [ + { + "amount": "135.542486272", + "slot": { + "period": 46867, + "thread": 8 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 270509, + "thread": 15 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 389447, + "thread": 10 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 521523, + "thread": 5 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 806431, + "thread": 8 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 981253, + "thread": 27 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1087747, + "thread": 17 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1307023, + "thread": 1 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1419093, + "thread": 30 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1644538, + "thread": 14 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1688890, + "thread": 1 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1869832, + "thread": 6 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 1976549, + "thread": 23 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 2285529, + "thread": 0 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 2334196, + "thread": 14 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 2592685, + "thread": 24 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 2674212, + "thread": 24 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 2911529, + "thread": 29 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 3051577, + "thread": 27 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 3257643, + "thread": 22 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 3441606, + "thread": 25 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 3613480, + "thread": 3 + } + }, + { + "amount": "135.542486272", + "slot": { + "period": 3726618, + "thread": 8 + } + }, + { + "amount": "135.542486261", + "slot": { + "period": 3800828, + "thread": 5 + } + } + ], + "AU1HZSpHfrGXqd4xZPEqL5w6iFJSPxjhZwK8ddBRbRks4ndMGqnN": [ + { + "amount": "668.405599544", + "slot": { + "period": 139570, + "thread": 14 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 271822, + "thread": 7 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 449438, + "thread": 12 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 631584, + "thread": 2 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 741143, + "thread": 4 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 850932, + "thread": 25 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1074498, + "thread": 27 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1162645, + "thread": 3 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1473425, + "thread": 5 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1576822, + "thread": 11 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1726055, + "thread": 27 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 1967453, + "thread": 1 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2032830, + "thread": 10 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2187899, + "thread": 0 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2422381, + "thread": 7 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2485157, + "thread": 17 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2708200, + "thread": 21 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 2890296, + "thread": 19 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 3076957, + "thread": 21 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 3132695, + "thread": 29 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 3430349, + "thread": 11 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 3483282, + "thread": 6 + } + }, + { + "amount": "668.405599544", + "slot": { + "period": 3678328, + "thread": 9 + } + }, + { + "amount": "668.405599539", + "slot": { + "period": 3808061, + "thread": 11 + } + } + ], + "AU1HZp9MqC7CCQMDumgMMzaKu4eGxo5u2dPgrdzW8MY97Gh3d7VN": [ + { + "amount": "450.484260846", + "slot": { + "period": 159458, + "thread": 18 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 285010, + "thread": 17 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 364120, + "thread": 31 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 633357, + "thread": 9 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 802880, + "thread": 23 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 862120, + "thread": 7 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1121068, + "thread": 5 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1250295, + "thread": 10 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1457424, + "thread": 15 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1644991, + "thread": 1 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1733192, + "thread": 0 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 1903185, + "thread": 31 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2114564, + "thread": 14 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2204948, + "thread": 24 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2315978, + "thread": 12 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2550640, + "thread": 10 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2686061, + "thread": 6 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 2828367, + "thread": 15 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 3090865, + "thread": 4 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 3136108, + "thread": 18 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 3329640, + "thread": 29 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 3606973, + "thread": 16 + } + }, + { + "amount": "450.484260846", + "slot": { + "period": 3766625, + "thread": 17 + } + }, + { + "amount": "450.484260855", + "slot": { + "period": 3893795, + "thread": 14 + } + } + ], + "AU1Ha5vQwEFEFULxRw5bJEREMEfaXFHtkxcdfcEMTpF5qYmV8tzY": [ + { + "amount": "467.616735592", + "slot": { + "period": 24335, + "thread": 21 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 252151, + "thread": 4 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 375858, + "thread": 9 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 638163, + "thread": 15 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 781067, + "thread": 24 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 863970, + "thread": 2 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1060768, + "thread": 11 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1162918, + "thread": 21 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1376955, + "thread": 23 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1523972, + "thread": 8 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1658722, + "thread": 27 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 1844964, + "thread": 15 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2136275, + "thread": 11 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2290983, + "thread": 30 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2403830, + "thread": 16 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2604282, + "thread": 19 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2786744, + "thread": 11 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 2861923, + "thread": 24 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 3045774, + "thread": 9 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 3262617, + "thread": 21 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 3430331, + "thread": 13 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 3516107, + "thread": 25 + } + }, + { + "amount": "467.616735592", + "slot": { + "period": 3641149, + "thread": 22 + } + }, + { + "amount": "467.616735604", + "slot": { + "period": 3809663, + "thread": 14 + } + } + ], + "AU1HahWCo5rWqpeqCoeaEwrwMQwv8Hsxic3KdyceEcW33iUHQ4ja": [ + { + "amount": "257.239131215", + "slot": { + "period": 82233, + "thread": 13 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 175144, + "thread": 1 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 347971, + "thread": 23 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 525567, + "thread": 29 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 695275, + "thread": 3 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 879625, + "thread": 19 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1091475, + "thread": 24 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1168273, + "thread": 6 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1323217, + "thread": 30 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1514499, + "thread": 9 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1742942, + "thread": 6 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 1880552, + "thread": 3 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2097286, + "thread": 0 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2285716, + "thread": 29 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2393253, + "thread": 19 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2493461, + "thread": 15 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2789673, + "thread": 5 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 2875815, + "thread": 7 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 3002771, + "thread": 23 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 3203380, + "thread": 19 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 3299704, + "thread": 13 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 3520826, + "thread": 28 + } + }, + { + "amount": "257.239131215", + "slot": { + "period": 3771381, + "thread": 9 + } + }, + { + "amount": "257.239131205", + "slot": { + "period": 3836977, + "thread": 21 + } + } + ], + "AU1HbNskETZSvhsyPFfP1Lqo6uKNjdt2fnS8eUhyx3N71xLsXd1o": [ + { + "amount": "181.178462926", + "slot": { + "period": 44660, + "thread": 27 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 199147, + "thread": 6 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 433374, + "thread": 20 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 650770, + "thread": 9 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 776178, + "thread": 15 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 917784, + "thread": 11 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1059797, + "thread": 29 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1276566, + "thread": 30 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1437523, + "thread": 25 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1565130, + "thread": 13 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1676002, + "thread": 6 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 1926758, + "thread": 24 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2084393, + "thread": 8 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2280087, + "thread": 23 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2421875, + "thread": 15 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2617924, + "thread": 21 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2733834, + "thread": 7 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 2806125, + "thread": 2 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 3042873, + "thread": 12 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 3231108, + "thread": 13 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 3375347, + "thread": 29 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 3590486, + "thread": 18 + } + }, + { + "amount": "181.178462926", + "slot": { + "period": 3644381, + "thread": 24 + } + }, + { + "amount": "181.178462932", + "slot": { + "period": 3883976, + "thread": 18 + } + } + ], + "AU1HbS4LDnKhgVXA6Vp2Ayf5XHbJ3xmyy9MxSYSCxG6vs1BUXMBJ": [ + { + "amount": "186.846233914", + "slot": { + "period": 143922, + "thread": 26 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 174283, + "thread": 18 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 354792, + "thread": 21 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 613357, + "thread": 9 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 666432, + "thread": 20 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 847684, + "thread": 21 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1069594, + "thread": 4 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1171659, + "thread": 24 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1352368, + "thread": 23 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1574031, + "thread": 19 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1707996, + "thread": 15 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1810366, + "thread": 24 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 1988269, + "thread": 22 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 2184065, + "thread": 1 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 2318680, + "thread": 16 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 2585696, + "thread": 15 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 2752660, + "thread": 27 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 2813830, + "thread": 20 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 3038689, + "thread": 13 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 3240407, + "thread": 18 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 3411766, + "thread": 19 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 3493982, + "thread": 2 + } + }, + { + "amount": "186.846233914", + "slot": { + "period": 3619552, + "thread": 26 + } + }, + { + "amount": "186.846233922", + "slot": { + "period": 3851651, + "thread": 2 + } + } + ], + "AU1HbTMfoVf7nScQcDw9WVLz5qjNTjtk45wBJeT1V8zuXVSG2PEW": [ + { + "amount": "128.921717458", + "slot": { + "period": 40501, + "thread": 6 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 233269, + "thread": 13 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 439739, + "thread": 18 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 585378, + "thread": 11 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 770068, + "thread": 6 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 861149, + "thread": 27 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1058655, + "thread": 3 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1197168, + "thread": 29 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1386986, + "thread": 5 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1558952, + "thread": 11 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1702357, + "thread": 24 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 1898261, + "thread": 17 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2110984, + "thread": 12 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2230694, + "thread": 9 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2381377, + "thread": 5 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2562901, + "thread": 1 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2665488, + "thread": 20 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 2922245, + "thread": 14 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 3015895, + "thread": 16 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 3153610, + "thread": 23 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 3383874, + "thread": 19 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 3458440, + "thread": 14 + } + }, + { + "amount": "128.921717458", + "slot": { + "period": 3685418, + "thread": 31 + } + }, + { + "amount": "128.921717456", + "slot": { + "period": 3829430, + "thread": 27 + } + } + ], + "AU1HcMCSMx1M438sJC2GY2pXdp6ZeWS5p5Yx2Th9iduqSVHbFUy6": [ + { + "amount": "320.794119577", + "slot": { + "period": 105446, + "thread": 21 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 210501, + "thread": 22 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 404626, + "thread": 5 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 497162, + "thread": 12 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 669913, + "thread": 22 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 966227, + "thread": 25 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1064772, + "thread": 26 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1291389, + "thread": 27 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1472995, + "thread": 27 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1520466, + "thread": 13 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1759090, + "thread": 20 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1964822, + "thread": 13 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 1981088, + "thread": 5 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 2228340, + "thread": 28 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 2325526, + "thread": 7 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 2605756, + "thread": 7 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 2751947, + "thread": 15 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 2889595, + "thread": 4 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 3062209, + "thread": 31 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 3198991, + "thread": 17 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 3420067, + "thread": 16 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 3599384, + "thread": 28 + } + }, + { + "amount": "320.794119577", + "slot": { + "period": 3766262, + "thread": 29 + } + }, + { + "amount": "320.794119574", + "slot": { + "period": 3851808, + "thread": 19 + } + } + ], + "AU1HcPhtdU4Jj94pxerACofVFrKb9CVvgB43Qp48KJPo6r8QbdwX": [ + { + "amount": "175.403674051", + "slot": { + "period": 47270, + "thread": 13 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 238588, + "thread": 30 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 488209, + "thread": 0 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 649192, + "thread": 29 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 747923, + "thread": 27 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 937447, + "thread": 2 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1068181, + "thread": 30 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1279714, + "thread": 13 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1426224, + "thread": 23 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1563767, + "thread": 20 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1684824, + "thread": 30 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 1915357, + "thread": 30 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2071072, + "thread": 14 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2203152, + "thread": 31 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2456637, + "thread": 31 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2585344, + "thread": 28 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2736842, + "thread": 7 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2812688, + "thread": 6 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 2983272, + "thread": 27 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 3180996, + "thread": 28 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 3354742, + "thread": 17 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 3598486, + "thread": 20 + } + }, + { + "amount": "175.403674051", + "slot": { + "period": 3672068, + "thread": 15 + } + }, + { + "amount": "175.403674046", + "slot": { + "period": 3803214, + "thread": 23 + } + } + ], + "AU1HdMviDmqQokvvwwV8BfibjQNvKGVRiW91um8tcQNDWrMB14q9": [ + { + "amount": "117.518468874", + "slot": { + "period": 138878, + "thread": 8 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 183236, + "thread": 16 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 340287, + "thread": 9 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 615732, + "thread": 2 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 804164, + "thread": 13 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 924008, + "thread": 9 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1118661, + "thread": 16 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1204086, + "thread": 7 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1366981, + "thread": 12 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1534664, + "thread": 11 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1773443, + "thread": 16 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 1848243, + "thread": 0 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2011219, + "thread": 0 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2149591, + "thread": 13 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2334967, + "thread": 19 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2576175, + "thread": 13 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2778361, + "thread": 14 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 2802969, + "thread": 26 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 3114833, + "thread": 5 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 3225539, + "thread": 26 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 3431968, + "thread": 6 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 3560871, + "thread": 27 + } + }, + { + "amount": "117.518468874", + "slot": { + "period": 3687773, + "thread": 29 + } + }, + { + "amount": "117.518468865", + "slot": { + "period": 3872281, + "thread": 17 + } + } + ], + "AU1He2wT9XrhEiqYr58wahQ2wtwKu3ce2MrW6GeKMycBtHp3h5wP": [ + { + "amount": "84.213238659", + "slot": { + "period": 44538, + "thread": 28 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 217933, + "thread": 9 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 481003, + "thread": 14 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 547799, + "thread": 15 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 735574, + "thread": 24 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 838469, + "thread": 10 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 983689, + "thread": 10 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 1207177, + "thread": 30 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 1393769, + "thread": 11 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 1483500, + "thread": 30 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 1655583, + "thread": 5 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 1943834, + "thread": 24 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2001160, + "thread": 10 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2254536, + "thread": 7 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2418117, + "thread": 29 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2554126, + "thread": 4 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2671151, + "thread": 10 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2830313, + "thread": 2 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 2985417, + "thread": 27 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 3170992, + "thread": 17 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 3401391, + "thread": 26 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 3519365, + "thread": 13 + } + }, + { + "amount": "84.213238659", + "slot": { + "period": 3771641, + "thread": 21 + } + }, + { + "amount": "84.213238668", + "slot": { + "period": 3863748, + "thread": 21 + } + } + ], + "AU1HeXeFmJMataak7coEBuUCVDpBfeSjXN5jzoAJvLEExsD7W6jx": [ + { + "amount": "283.147523986", + "slot": { + "period": 146207, + "thread": 24 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 232437, + "thread": 6 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 455609, + "thread": 20 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 630865, + "thread": 21 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 708058, + "thread": 25 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 855794, + "thread": 30 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1056995, + "thread": 2 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1315120, + "thread": 2 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1445804, + "thread": 8 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1500739, + "thread": 22 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1792745, + "thread": 6 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 1810442, + "thread": 28 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2094562, + "thread": 11 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2143883, + "thread": 30 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2304740, + "thread": 17 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2543266, + "thread": 31 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2764173, + "thread": 0 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 2874455, + "thread": 3 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 3011887, + "thread": 23 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 3124983, + "thread": 10 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 3384916, + "thread": 31 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 3464484, + "thread": 19 + } + }, + { + "amount": "283.147523986", + "slot": { + "period": 3677542, + "thread": 23 + } + }, + { + "amount": "283.147523988", + "slot": { + "period": 3818274, + "thread": 9 + } + } + ], + "AU1Hebd6hyVhEn7eTkj2DkvK6421EU9Ri49HJCnEmuHkWaHd33WM": [ + { + "amount": "290.870762150", + "slot": { + "period": 111948, + "thread": 19 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 244424, + "thread": 7 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 338315, + "thread": 18 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 574322, + "thread": 23 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 801943, + "thread": 16 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 963953, + "thread": 9 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1141574, + "thread": 6 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1224280, + "thread": 21 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1446409, + "thread": 10 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1557677, + "thread": 10 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1755832, + "thread": 10 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 1826430, + "thread": 4 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2096934, + "thread": 15 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2147112, + "thread": 30 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2439205, + "thread": 1 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2579694, + "thread": 28 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2776653, + "thread": 5 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 2836701, + "thread": 7 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 3103589, + "thread": 1 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 3280329, + "thread": 20 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 3385541, + "thread": 2 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 3525490, + "thread": 5 + } + }, + { + "amount": "290.870762150", + "slot": { + "period": 3656551, + "thread": 9 + } + }, + { + "amount": "290.870762152", + "slot": { + "period": 3901929, + "thread": 24 + } + } + ], + "AU1HeqenrKpXud4Z6eSnYgTJF4ps4FNTPY4kbm4JiLPCuF11Z1ur": [ + { + "amount": "412.341839568", + "slot": { + "period": 115379, + "thread": 28 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 229152, + "thread": 15 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 353418, + "thread": 2 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 598232, + "thread": 8 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 655246, + "thread": 8 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 981184, + "thread": 11 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1116490, + "thread": 25 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1172151, + "thread": 3 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1412260, + "thread": 7 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1615528, + "thread": 26 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1692499, + "thread": 15 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1974476, + "thread": 8 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 1977791, + "thread": 17 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2178815, + "thread": 29 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2367247, + "thread": 11 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2549870, + "thread": 2 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2790289, + "thread": 13 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2924031, + "thread": 19 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 2983599, + "thread": 9 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 3281809, + "thread": 2 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 3317488, + "thread": 4 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 3596478, + "thread": 0 + } + }, + { + "amount": "412.341839568", + "slot": { + "period": 3772678, + "thread": 17 + } + }, + { + "amount": "412.341839569", + "slot": { + "period": 3904680, + "thread": 23 + } + } + ], + "AU1HfMaFwXveJ7f51NRt5etBeTRLWt9chhV69S4x1wAEPBcb2bBZ": [ + { + "amount": "342.780428430", + "slot": { + "period": 147299, + "thread": 17 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 198379, + "thread": 4 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 330172, + "thread": 20 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 549624, + "thread": 0 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 765885, + "thread": 28 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 844655, + "thread": 13 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1146547, + "thread": 25 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1259786, + "thread": 28 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1351622, + "thread": 2 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1496074, + "thread": 5 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1786749, + "thread": 26 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 1859549, + "thread": 22 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2006522, + "thread": 7 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2172311, + "thread": 11 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2415875, + "thread": 29 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2541989, + "thread": 24 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2628516, + "thread": 11 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 2793911, + "thread": 25 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 3100366, + "thread": 19 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 3278371, + "thread": 18 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 3448960, + "thread": 22 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 3517804, + "thread": 11 + } + }, + { + "amount": "342.780428430", + "slot": { + "period": 3778578, + "thread": 4 + } + }, + { + "amount": "342.780428429", + "slot": { + "period": 3941916, + "thread": 0 + } + } + ], + "AU1HftXGeK9eyP7sfXYWjCmCNxyyff8XTG59P6JtJAZhimDKFnSD": [ + { + "amount": "287.867429710", + "slot": { + "period": 37146, + "thread": 30 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 222855, + "thread": 19 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 425840, + "thread": 29 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 597669, + "thread": 6 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 774491, + "thread": 22 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 841887, + "thread": 16 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1143139, + "thread": 2 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1307974, + "thread": 29 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1381697, + "thread": 5 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1618719, + "thread": 3 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1751094, + "thread": 0 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 1907514, + "thread": 8 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2120116, + "thread": 27 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2278152, + "thread": 5 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2421347, + "thread": 4 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2533667, + "thread": 14 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2747033, + "thread": 20 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 2892201, + "thread": 15 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 3073371, + "thread": 17 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 3122804, + "thread": 22 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 3421920, + "thread": 20 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 3578306, + "thread": 22 + } + }, + { + "amount": "287.867429710", + "slot": { + "period": 3763608, + "thread": 6 + } + }, + { + "amount": "287.867429709", + "slot": { + "period": 3862617, + "thread": 22 + } + } + ], + "AU1Hg22fargGT6zZ8Uuy7mFo4Buhw32NaHbaX4ttz259TEGkYi9c": [ + { + "amount": "550.118412075", + "slot": { + "period": 112911, + "thread": 10 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 200834, + "thread": 16 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 344268, + "thread": 1 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 643734, + "thread": 15 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 787554, + "thread": 12 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 937462, + "thread": 27 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1124032, + "thread": 16 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1275764, + "thread": 15 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1321251, + "thread": 18 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1628446, + "thread": 29 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1771447, + "thread": 1 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1936962, + "thread": 3 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 1985337, + "thread": 23 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 2214703, + "thread": 27 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 2390918, + "thread": 13 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 2506569, + "thread": 8 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 2633316, + "thread": 20 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 2912531, + "thread": 0 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 3010591, + "thread": 8 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 3165364, + "thread": 10 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 3353122, + "thread": 4 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 3509592, + "thread": 17 + } + }, + { + "amount": "550.118412075", + "slot": { + "period": 3731304, + "thread": 2 + } + }, + { + "amount": "550.118412064", + "slot": { + "period": 3808384, + "thread": 4 + } + } + ], + "AU1HggTQm7VPUuAfErRinqEWUNijcE87fCLNTjZaN3D3vFyFNnYP": [ + { + "amount": "197.800995065", + "slot": { + "period": 163258, + "thread": 6 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 223492, + "thread": 17 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 380893, + "thread": 28 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 642999, + "thread": 16 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 723505, + "thread": 25 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 879350, + "thread": 12 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1020610, + "thread": 3 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1165857, + "thread": 22 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1375566, + "thread": 27 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1581717, + "thread": 2 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1800651, + "thread": 3 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 1897389, + "thread": 15 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2130395, + "thread": 0 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2188793, + "thread": 15 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2347560, + "thread": 21 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2597666, + "thread": 13 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2701128, + "thread": 3 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 2802620, + "thread": 11 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 3024352, + "thread": 5 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 3203281, + "thread": 18 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 3427421, + "thread": 13 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 3505520, + "thread": 6 + } + }, + { + "amount": "197.800995065", + "slot": { + "period": 3692138, + "thread": 9 + } + }, + { + "amount": "197.800995056", + "slot": { + "period": 3782993, + "thread": 26 + } + } + ], + "AU1HhApF5wkjwyyF3vduQ7SgETrCbXS7R4Lnr2edDoyQqDjVXmYH": [ + { + "amount": "521.527458346", + "slot": { + "period": 139310, + "thread": 1 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 201114, + "thread": 5 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 451485, + "thread": 22 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 584170, + "thread": 26 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 770134, + "thread": 13 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 927449, + "thread": 13 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1065098, + "thread": 14 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1259100, + "thread": 16 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1453539, + "thread": 14 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1542857, + "thread": 1 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1786925, + "thread": 6 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 1927124, + "thread": 18 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2143382, + "thread": 25 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2285764, + "thread": 3 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2311913, + "thread": 8 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2557151, + "thread": 21 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2710906, + "thread": 3 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2888195, + "thread": 16 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 2963970, + "thread": 11 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 3215551, + "thread": 6 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 3415394, + "thread": 5 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 3586277, + "thread": 17 + } + }, + { + "amount": "521.527458346", + "slot": { + "period": 3743645, + "thread": 10 + } + }, + { + "amount": "521.527458339", + "slot": { + "period": 3787379, + "thread": 2 + } + } + ], + "AU1Hj89tGXxec8AJ1RCXWarb1tEMETVvMWVsd98Jx8B2nj1B3uke": [ + { + "amount": "88.842323263", + "slot": { + "period": 73079, + "thread": 0 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 281420, + "thread": 25 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 402490, + "thread": 19 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 504675, + "thread": 19 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 757910, + "thread": 22 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 905898, + "thread": 13 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1128110, + "thread": 3 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1228143, + "thread": 9 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1448433, + "thread": 19 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1482801, + "thread": 24 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1783964, + "thread": 14 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 1920705, + "thread": 16 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2121243, + "thread": 31 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2293050, + "thread": 16 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2359655, + "thread": 30 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2465810, + "thread": 4 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2759360, + "thread": 31 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2847736, + "thread": 26 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 2998425, + "thread": 18 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 3247162, + "thread": 7 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 3448384, + "thread": 5 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 3496712, + "thread": 31 + } + }, + { + "amount": "88.842323263", + "slot": { + "period": 3700040, + "thread": 13 + } + }, + { + "amount": "88.842323259", + "slot": { + "period": 3785869, + "thread": 30 + } + } + ], + "AU1HjD1hR9pRPcVQcu3hGajCamUYmeTVKCV1Nt5LBTz9mgJJvcZz": [ + { + "amount": "64.203950959", + "slot": { + "period": 65034, + "thread": 0 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 175923, + "thread": 29 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 403156, + "thread": 28 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 616118, + "thread": 25 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 770928, + "thread": 4 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 895080, + "thread": 2 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1141251, + "thread": 21 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1259320, + "thread": 24 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1362633, + "thread": 15 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1518768, + "thread": 15 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1663820, + "thread": 11 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 1942679, + "thread": 24 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2126085, + "thread": 9 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2170442, + "thread": 10 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2448954, + "thread": 29 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2540804, + "thread": 15 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2735060, + "thread": 5 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 2905181, + "thread": 18 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 3075226, + "thread": 24 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 3270981, + "thread": 23 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 3331360, + "thread": 20 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 3487573, + "thread": 26 + } + }, + { + "amount": "64.203950959", + "slot": { + "period": 3644135, + "thread": 10 + } + }, + { + "amount": "64.203950966", + "slot": { + "period": 3928651, + "thread": 20 + } + } + ], + "AU1HjaZmMjJbiiYno7uLN6xyNWjXNJsn93abrgtwNxGQJ1UXj2cz": [ + { + "amount": "171.144941777", + "slot": { + "period": 35185, + "thread": 31 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 310371, + "thread": 26 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 340423, + "thread": 18 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 503934, + "thread": 22 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 716259, + "thread": 20 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 901975, + "thread": 25 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1080699, + "thread": 15 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1236927, + "thread": 7 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1436300, + "thread": 16 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1571568, + "thread": 2 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1758537, + "thread": 17 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 1863671, + "thread": 1 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2080292, + "thread": 19 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2262553, + "thread": 17 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2440233, + "thread": 16 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2479953, + "thread": 8 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2662454, + "thread": 7 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 2879110, + "thread": 2 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 3118649, + "thread": 0 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 3251340, + "thread": 20 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 3301959, + "thread": 20 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 3565855, + "thread": 18 + } + }, + { + "amount": "171.144941777", + "slot": { + "period": 3761302, + "thread": 30 + } + }, + { + "amount": "171.144941786", + "slot": { + "period": 3850150, + "thread": 30 + } + } + ], + "AU1Hjh3VKMGCZWSRpE6MncWG4HLMuNuJhGK3F1199bjB9hxyhfd1": [ + { + "amount": "314.722796485", + "slot": { + "period": 34552, + "thread": 10 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 232535, + "thread": 24 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 377393, + "thread": 25 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 512345, + "thread": 14 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 665641, + "thread": 28 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 828306, + "thread": 11 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1018926, + "thread": 8 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1220022, + "thread": 5 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1472439, + "thread": 23 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1524405, + "thread": 13 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1792349, + "thread": 22 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 1811408, + "thread": 1 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2095010, + "thread": 9 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2265698, + "thread": 17 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2439925, + "thread": 20 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2479021, + "thread": 6 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2662120, + "thread": 3 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 2945633, + "thread": 15 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 3034322, + "thread": 20 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 3265020, + "thread": 30 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 3396052, + "thread": 31 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 3520961, + "thread": 6 + } + }, + { + "amount": "314.722796485", + "slot": { + "period": 3664859, + "thread": 5 + } + }, + { + "amount": "314.722796489", + "slot": { + "period": 3823539, + "thread": 26 + } + } + ], + "AU1HkWEURF9qb7CgKR4zEjDPEc3YFCE455PMp8XfNx4ajAssrsuW": [ + { + "amount": "155.255722156", + "slot": { + "period": 60443, + "thread": 26 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 220824, + "thread": 19 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 403695, + "thread": 23 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 505496, + "thread": 8 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 754073, + "thread": 11 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 880114, + "thread": 24 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1061740, + "thread": 25 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1269913, + "thread": 15 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1327652, + "thread": 14 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1517879, + "thread": 18 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1655645, + "thread": 24 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 1867286, + "thread": 24 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2002272, + "thread": 3 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2234398, + "thread": 0 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2364321, + "thread": 20 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2462992, + "thread": 23 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2662811, + "thread": 6 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 2878355, + "thread": 25 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 3074546, + "thread": 6 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 3276227, + "thread": 20 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 3289212, + "thread": 15 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 3466532, + "thread": 0 + } + }, + { + "amount": "155.255722156", + "slot": { + "period": 3779254, + "thread": 27 + } + }, + { + "amount": "155.255722167", + "slot": { + "period": 3804649, + "thread": 7 + } + } + ], + "AU1HmcjREhD3yXGYBAcavHub9RXjNzKS7JZAhgmdryR5wLvzr1Vy": [ + { + "amount": "365.905045980", + "slot": { + "period": 46595, + "thread": 10 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 240606, + "thread": 7 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 359851, + "thread": 21 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 570293, + "thread": 16 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 692403, + "thread": 27 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 914077, + "thread": 7 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 996990, + "thread": 8 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1196275, + "thread": 30 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1396722, + "thread": 1 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1636957, + "thread": 19 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1672684, + "thread": 2 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1914023, + "thread": 21 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 1997123, + "thread": 29 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 2223765, + "thread": 5 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 2326610, + "thread": 31 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 2576973, + "thread": 29 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 2739831, + "thread": 31 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 2798826, + "thread": 5 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 3002550, + "thread": 10 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 3179135, + "thread": 1 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 3358366, + "thread": 14 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 3489792, + "thread": 12 + } + }, + { + "amount": "365.905045980", + "slot": { + "period": 3759184, + "thread": 5 + } + }, + { + "amount": "365.905045975", + "slot": { + "period": 3848684, + "thread": 11 + } + } + ], + "AU1Hn5YjCZ29eXQ9ndYWTMP4FmaNy9UhQNg4AgTRLVenBLy8BZdF": [ + { + "amount": "224.936694099", + "slot": { + "period": 88151, + "thread": 5 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 219572, + "thread": 29 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 367864, + "thread": 5 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 653314, + "thread": 1 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 812682, + "thread": 1 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 907933, + "thread": 4 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1087742, + "thread": 21 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1270572, + "thread": 27 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1375204, + "thread": 0 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1495510, + "thread": 0 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1703599, + "thread": 5 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 1946096, + "thread": 14 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2095204, + "thread": 4 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2222455, + "thread": 15 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2460803, + "thread": 23 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2578813, + "thread": 11 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2690102, + "thread": 19 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2850483, + "thread": 18 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 2957946, + "thread": 25 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 3278334, + "thread": 31 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 3407161, + "thread": 8 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 3581462, + "thread": 16 + } + }, + { + "amount": "224.936694099", + "slot": { + "period": 3638208, + "thread": 8 + } + }, + { + "amount": "224.936694103", + "slot": { + "period": 3887167, + "thread": 0 + } + } + ], + "AU1HpF4r7dKmjtmR9oX6ZV2EycMc6tU4GHnX31Ld6ZdUmHbAN3DF": [ + { + "amount": "125.197260157", + "slot": { + "period": 165547, + "thread": 6 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 297627, + "thread": 11 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 485115, + "thread": 29 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 531811, + "thread": 5 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 763679, + "thread": 19 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 845187, + "thread": 22 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1109990, + "thread": 17 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1175725, + "thread": 30 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1400449, + "thread": 19 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1602372, + "thread": 4 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1691818, + "thread": 9 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 1832547, + "thread": 1 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2080436, + "thread": 3 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2256004, + "thread": 3 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2387292, + "thread": 20 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2570979, + "thread": 4 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2687916, + "thread": 30 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 2886703, + "thread": 15 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 3079900, + "thread": 10 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 3135242, + "thread": 2 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 3359469, + "thread": 23 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 3498198, + "thread": 20 + } + }, + { + "amount": "125.197260157", + "slot": { + "period": 3770933, + "thread": 2 + } + }, + { + "amount": "125.197260151", + "slot": { + "period": 3801147, + "thread": 4 + } + } + ], + "AU1Hpqfq4ik99u1Fatynhbm5cJ7FP45SPpZEMBwTpHawUQ17VeHx": [ + { + "amount": "145.452754116", + "slot": { + "period": 164908, + "thread": 1 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 193015, + "thread": 13 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 491095, + "thread": 19 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 498745, + "thread": 20 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 784832, + "thread": 27 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 974482, + "thread": 21 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1132437, + "thread": 3 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1157845, + "thread": 12 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1332167, + "thread": 30 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1577996, + "thread": 26 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1678607, + "thread": 20 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1964670, + "thread": 7 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 1981033, + "thread": 10 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2192157, + "thread": 23 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2373617, + "thread": 14 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2572037, + "thread": 11 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2786191, + "thread": 26 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2918571, + "thread": 11 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 2966136, + "thread": 11 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 3155942, + "thread": 24 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 3427352, + "thread": 22 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 3520352, + "thread": 10 + } + }, + { + "amount": "145.452754116", + "slot": { + "period": 3731990, + "thread": 19 + } + }, + { + "amount": "145.452754125", + "slot": { + "period": 3804530, + "thread": 21 + } + } + ], + "AU1HsHABSFVWuiq6prV64otNWch9hJZ5NrFKDfMmkW4ax6qrbJCR": [ + { + "amount": "135.182931405", + "slot": { + "period": 116096, + "thread": 13 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 283288, + "thread": 13 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 332499, + "thread": 7 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 615541, + "thread": 10 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 791780, + "thread": 16 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 888694, + "thread": 18 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1070452, + "thread": 4 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1254152, + "thread": 2 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1417896, + "thread": 28 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1549595, + "thread": 8 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1681298, + "thread": 30 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1941304, + "thread": 24 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 1985878, + "thread": 11 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 2146320, + "thread": 14 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 2418157, + "thread": 16 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 2464970, + "thread": 6 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 2695063, + "thread": 30 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 2855243, + "thread": 11 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 3008848, + "thread": 6 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 3270125, + "thread": 3 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 3369890, + "thread": 12 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 3572238, + "thread": 6 + } + }, + { + "amount": "135.182931405", + "slot": { + "period": 3708088, + "thread": 12 + } + }, + { + "amount": "135.182931404", + "slot": { + "period": 3902126, + "thread": 26 + } + } + ], + "AU1HtM1UGk1vjASeuxRJdyNc4C5QYWULMpGVaerYNKWCTeLXoiq2": [ + { + "amount": "72.470730054", + "slot": { + "period": 68594, + "thread": 27 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 289205, + "thread": 26 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 339299, + "thread": 1 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 593769, + "thread": 9 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 742726, + "thread": 2 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 905035, + "thread": 8 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1143262, + "thread": 19 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1174114, + "thread": 17 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1373241, + "thread": 8 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1596424, + "thread": 19 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1783146, + "thread": 17 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 1846859, + "thread": 15 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2027739, + "thread": 14 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2287302, + "thread": 12 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2301265, + "thread": 4 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2562745, + "thread": 6 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2766475, + "thread": 16 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 2906079, + "thread": 16 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 3120542, + "thread": 5 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 3276793, + "thread": 23 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 3423124, + "thread": 21 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 3586223, + "thread": 10 + } + }, + { + "amount": "72.470730054", + "slot": { + "period": 3654924, + "thread": 3 + } + }, + { + "amount": "72.470730042", + "slot": { + "period": 3837913, + "thread": 15 + } + } + ], + "AU1HusAMYEaWMMsfREGDqaRJzRs5ngR8utxndXSYRpSZBvcdfHKE": [ + { + "amount": "65.170222542", + "slot": { + "period": 50354, + "thread": 0 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 309698, + "thread": 14 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 419830, + "thread": 7 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 636759, + "thread": 29 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 667460, + "thread": 5 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 939511, + "thread": 7 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1027150, + "thread": 8 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1182821, + "thread": 8 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1433036, + "thread": 9 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1552971, + "thread": 13 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1679144, + "thread": 20 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 1960568, + "thread": 15 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2098923, + "thread": 30 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2145068, + "thread": 5 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2420870, + "thread": 8 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2508433, + "thread": 19 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2669542, + "thread": 9 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 2810129, + "thread": 10 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 3068184, + "thread": 5 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 3202775, + "thread": 31 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 3374826, + "thread": 26 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 3458140, + "thread": 28 + } + }, + { + "amount": "65.170222542", + "slot": { + "period": 3683342, + "thread": 21 + } + }, + { + "amount": "65.170222540", + "slot": { + "period": 3903440, + "thread": 28 + } + } + ], + "AU1Hvge2tCsER68HnqZ2BgKYQpppzxr3xJjwjGVSgbbX1ttraJTb": [ + { + "amount": "159.088823813", + "slot": { + "period": 20770, + "thread": 24 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 235067, + "thread": 1 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 364919, + "thread": 6 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 643027, + "thread": 4 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 812496, + "thread": 9 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 852651, + "thread": 28 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1121411, + "thread": 3 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1291415, + "thread": 11 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1454202, + "thread": 8 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1531006, + "thread": 31 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1713732, + "thread": 6 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 1892074, + "thread": 18 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2031369, + "thread": 19 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2144429, + "thread": 2 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2330165, + "thread": 26 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2542855, + "thread": 8 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2714516, + "thread": 13 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 2838568, + "thread": 20 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3038851, + "thread": 14 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3166068, + "thread": 0 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3329963, + "thread": 17 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3490873, + "thread": 9 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3679565, + "thread": 1 + } + }, + { + "amount": "159.088823813", + "slot": { + "period": 3890063, + "thread": 14 + } + } + ], + "AU1HwCTW8nXJ3VS6YhP4WHpq7qRZgUs3FyFkDXsn7Joud4QQEqx2": [ + { + "amount": "242.951649336", + "slot": { + "period": 133769, + "thread": 15 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 297242, + "thread": 17 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 466598, + "thread": 29 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 498438, + "thread": 13 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 786184, + "thread": 30 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 935314, + "thread": 23 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1120856, + "thread": 18 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1217931, + "thread": 14 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1444859, + "thread": 30 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1524383, + "thread": 31 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1667808, + "thread": 8 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 1907467, + "thread": 0 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2039151, + "thread": 23 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2209351, + "thread": 16 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2431174, + "thread": 30 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2565879, + "thread": 6 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2675583, + "thread": 5 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2836277, + "thread": 19 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 2992707, + "thread": 20 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 3281600, + "thread": 2 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 3404917, + "thread": 5 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 3510357, + "thread": 23 + } + }, + { + "amount": "242.951649336", + "slot": { + "period": 3730455, + "thread": 23 + } + }, + { + "amount": "242.951649343", + "slot": { + "period": 3800270, + "thread": 17 + } + } + ], + "AU1HwEbNi5EnyAep8iyKQkCqD4ddYzpkuchW3EL2fyf4Z6H4MwUN": [ + { + "amount": "84.529460882", + "slot": { + "period": 47919, + "thread": 4 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 212234, + "thread": 3 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 386956, + "thread": 20 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 606204, + "thread": 6 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 813110, + "thread": 16 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 853656, + "thread": 12 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1117925, + "thread": 13 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1207913, + "thread": 19 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1409224, + "thread": 11 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1510090, + "thread": 21 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1702412, + "thread": 10 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 1859797, + "thread": 22 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2128076, + "thread": 2 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2200314, + "thread": 8 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2432263, + "thread": 1 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2476105, + "thread": 21 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2679348, + "thread": 18 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 2874760, + "thread": 30 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 3082315, + "thread": 18 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 3259724, + "thread": 2 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 3296948, + "thread": 13 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 3517470, + "thread": 30 + } + }, + { + "amount": "84.529460882", + "slot": { + "period": 3686067, + "thread": 11 + } + }, + { + "amount": "84.529460887", + "slot": { + "period": 3859748, + "thread": 24 + } + } + ], + "AU1Hwt1j12hXRMaRSDubzuWYds9HKjXWoyAXjChMz3GtDt28wud5": [ + { + "amount": "103.809313408", + "slot": { + "period": 100750, + "thread": 25 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 197630, + "thread": 6 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 412607, + "thread": 4 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 629702, + "thread": 3 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 669686, + "thread": 23 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 896251, + "thread": 21 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1109626, + "thread": 5 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1195247, + "thread": 16 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1426650, + "thread": 10 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1608482, + "thread": 22 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1665788, + "thread": 23 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 1863415, + "thread": 7 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2066815, + "thread": 25 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2255256, + "thread": 0 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2374720, + "thread": 24 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2588776, + "thread": 27 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2791504, + "thread": 21 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2902891, + "thread": 0 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 2993270, + "thread": 25 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 3182864, + "thread": 8 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 3329220, + "thread": 17 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 3566465, + "thread": 9 + } + }, + { + "amount": "103.809313408", + "slot": { + "period": 3749146, + "thread": 26 + } + }, + { + "amount": "103.809313414", + "slot": { + "period": 3911497, + "thread": 22 + } + } + ], + "AU1Hy4y2XrB8hdw76taSjnMzx1hH9RWHVJVRJr1tkW3TnBtxAZh5": [ + { + "amount": "98.511331218", + "slot": { + "period": 128452, + "thread": 6 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 266038, + "thread": 20 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 405999, + "thread": 3 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 562729, + "thread": 6 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 820084, + "thread": 6 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 839951, + "thread": 0 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1141560, + "thread": 18 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1242694, + "thread": 9 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1458033, + "thread": 11 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1549287, + "thread": 18 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1772683, + "thread": 5 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 1834178, + "thread": 6 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2033816, + "thread": 17 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2277221, + "thread": 2 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2422098, + "thread": 15 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2496934, + "thread": 8 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2672140, + "thread": 3 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 2840385, + "thread": 0 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 3004201, + "thread": 12 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 3163062, + "thread": 9 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 3383478, + "thread": 21 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 3569682, + "thread": 17 + } + }, + { + "amount": "98.511331218", + "slot": { + "period": 3656713, + "thread": 0 + } + }, + { + "amount": "98.511331214", + "slot": { + "period": 3895712, + "thread": 16 + } + } + ], + "AU1HyTdfxV1QEi8gs1AiDyr44aAEGYfdazJPavdwm4U19mC8cXXB": [ + { + "amount": "108.522980362", + "slot": { + "period": 130601, + "thread": 11 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 292076, + "thread": 12 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 474867, + "thread": 25 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 609522, + "thread": 22 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 718413, + "thread": 22 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 980034, + "thread": 11 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1056481, + "thread": 12 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1158986, + "thread": 20 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1340007, + "thread": 15 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1507146, + "thread": 18 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1741174, + "thread": 14 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 1946459, + "thread": 31 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2086530, + "thread": 11 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2190998, + "thread": 27 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2395744, + "thread": 6 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2483002, + "thread": 11 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2769108, + "thread": 17 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2911226, + "thread": 7 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 2958848, + "thread": 20 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 3241859, + "thread": 13 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 3444762, + "thread": 8 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 3617405, + "thread": 1 + } + }, + { + "amount": "108.522980362", + "slot": { + "period": 3751894, + "thread": 5 + } + }, + { + "amount": "108.522980364", + "slot": { + "period": 3871963, + "thread": 3 + } + } + ], + "AU1Hygi9kT48v3pupy36UUyW9SmCFa3WNVc4WPFeUcWJ6mTYwExk": [ + { + "amount": "572.945649299", + "slot": { + "period": 124291, + "thread": 5 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 180599, + "thread": 25 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 339128, + "thread": 12 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 610203, + "thread": 30 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 674836, + "thread": 12 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 932367, + "thread": 18 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1122648, + "thread": 10 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1155780, + "thread": 18 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1446209, + "thread": 31 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1556548, + "thread": 23 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1657933, + "thread": 2 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 1817470, + "thread": 13 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2141109, + "thread": 4 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2212433, + "thread": 18 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2318806, + "thread": 12 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2567856, + "thread": 21 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2642984, + "thread": 21 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 2878660, + "thread": 12 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 3036123, + "thread": 30 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 3166192, + "thread": 12 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 3381407, + "thread": 7 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 3533199, + "thread": 25 + } + }, + { + "amount": "572.945649299", + "slot": { + "period": 3670781, + "thread": 12 + } + }, + { + "amount": "572.945649291", + "slot": { + "period": 3911789, + "thread": 22 + } + } + ], + "AU1J2ZcfoBuKahbrneiDzSapyY2wambG1rrq6xAKJKNaecsDRJHg": [ + { + "amount": "111.218224049", + "slot": { + "period": 87234, + "thread": 19 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 174166, + "thread": 9 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 476944, + "thread": 19 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 564618, + "thread": 10 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 818162, + "thread": 4 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 888016, + "thread": 1 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1081140, + "thread": 1 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1305122, + "thread": 12 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1384964, + "thread": 9 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1600615, + "thread": 16 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1708630, + "thread": 19 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 1896526, + "thread": 19 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2063650, + "thread": 20 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2223350, + "thread": 11 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2445761, + "thread": 21 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2565848, + "thread": 20 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2743551, + "thread": 16 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 2942256, + "thread": 1 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 3095666, + "thread": 9 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 3257557, + "thread": 15 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 3317433, + "thread": 4 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 3485967, + "thread": 11 + } + }, + { + "amount": "111.218224049", + "slot": { + "period": 3767835, + "thread": 3 + } + }, + { + "amount": "111.218224051", + "slot": { + "period": 3796428, + "thread": 9 + } + } + ], + "AU1J2qAeVQ1u1jfguMY7ao5wWKT19g7Lcr6MDZgyBmKx8VWNGzif": [ + { + "amount": "55.603503976", + "slot": { + "period": 144007, + "thread": 12 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 269054, + "thread": 3 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 419511, + "thread": 18 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 554772, + "thread": 13 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 744745, + "thread": 0 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 853921, + "thread": 5 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1074883, + "thread": 23 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1223863, + "thread": 21 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1446122, + "thread": 9 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1492856, + "thread": 29 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1743668, + "thread": 23 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 1975901, + "thread": 18 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2030337, + "thread": 3 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2163180, + "thread": 22 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2312717, + "thread": 30 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2518619, + "thread": 7 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2703470, + "thread": 15 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 2922725, + "thread": 21 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 3014124, + "thread": 8 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 3143440, + "thread": 10 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 3399796, + "thread": 15 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 3456380, + "thread": 5 + } + }, + { + "amount": "55.603503976", + "slot": { + "period": 3685797, + "thread": 17 + } + }, + { + "amount": "55.603503964", + "slot": { + "period": 3879771, + "thread": 21 + } + } + ], + "AU1J3aYjmdKbZ7nyrQfUDKVxvPFPZdMpSuJMznSQthfuPQWZzdLD": [ + { + "amount": "178.127217379", + "slot": { + "period": 95082, + "thread": 24 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 237413, + "thread": 22 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 452686, + "thread": 14 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 615568, + "thread": 22 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 755745, + "thread": 22 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 897545, + "thread": 0 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1083836, + "thread": 15 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1295996, + "thread": 3 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1422232, + "thread": 7 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1533927, + "thread": 6 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1772439, + "thread": 12 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 1916356, + "thread": 22 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2008762, + "thread": 3 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2213504, + "thread": 23 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2424580, + "thread": 28 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2497533, + "thread": 5 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2705826, + "thread": 18 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 2895730, + "thread": 17 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3077240, + "thread": 17 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3257695, + "thread": 23 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3439366, + "thread": 23 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3472148, + "thread": 27 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3717074, + "thread": 13 + } + }, + { + "amount": "178.127217379", + "slot": { + "period": 3862831, + "thread": 4 + } + } + ], + "AU1J3w5yjmMGP6LzmFd5tcdSfn5zR3YpqgmCNEsEsn9yxv1pvjhs": [ + { + "amount": "78.793030980", + "slot": { + "period": 124399, + "thread": 5 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 280914, + "thread": 2 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 472248, + "thread": 26 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 635802, + "thread": 24 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 732289, + "thread": 16 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 898352, + "thread": 25 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1140271, + "thread": 19 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1175366, + "thread": 26 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1459039, + "thread": 25 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1605083, + "thread": 7 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1780381, + "thread": 24 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 1951173, + "thread": 29 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2037276, + "thread": 4 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2196912, + "thread": 29 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2312992, + "thread": 17 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2542312, + "thread": 29 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2782057, + "thread": 25 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2833159, + "thread": 19 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 2961655, + "thread": 31 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 3189708, + "thread": 19 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 3298474, + "thread": 13 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 3586980, + "thread": 1 + } + }, + { + "amount": "78.793030980", + "slot": { + "period": 3704379, + "thread": 9 + } + }, + { + "amount": "78.793030968", + "slot": { + "period": 3831195, + "thread": 5 + } + } + ], + "AU1J4Z2mTNJxu6wqJV1pSt4tqbofaTi5G27KDC9fEwo7pZZwss5M": [ + { + "amount": "134.184276202", + "slot": { + "period": 111924, + "thread": 31 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 222916, + "thread": 4 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 425028, + "thread": 27 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 569422, + "thread": 23 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 734710, + "thread": 26 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 872644, + "thread": 30 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1071762, + "thread": 23 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1288036, + "thread": 18 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1364446, + "thread": 19 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1490326, + "thread": 23 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1651924, + "thread": 22 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 1922565, + "thread": 15 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2072129, + "thread": 15 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2191234, + "thread": 30 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2401757, + "thread": 0 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2507995, + "thread": 28 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2688845, + "thread": 13 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2866234, + "thread": 27 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 2968682, + "thread": 13 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 3176657, + "thread": 18 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 3324489, + "thread": 25 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 3461686, + "thread": 27 + } + }, + { + "amount": "134.184276202", + "slot": { + "period": 3730777, + "thread": 29 + } + }, + { + "amount": "134.184276198", + "slot": { + "period": 3862085, + "thread": 9 + } + } + ], + "AU1J5WzAK8RZCBCBW8RGYyS3VvPV5XJf8vRhnBYXT9zLZSwApjJS": [ + { + "amount": "367.942088120", + "slot": { + "period": 121885, + "thread": 27 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 203098, + "thread": 1 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 330875, + "thread": 30 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 512682, + "thread": 19 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 775548, + "thread": 14 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 918171, + "thread": 26 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1117709, + "thread": 15 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1198405, + "thread": 19 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1436352, + "thread": 1 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1566851, + "thread": 15 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1732513, + "thread": 27 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 1956998, + "thread": 16 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2011635, + "thread": 22 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2284046, + "thread": 19 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2360209, + "thread": 8 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2481831, + "thread": 9 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2707157, + "thread": 31 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 2862198, + "thread": 6 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 3027501, + "thread": 29 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 3172196, + "thread": 12 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 3298083, + "thread": 15 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 3483588, + "thread": 29 + } + }, + { + "amount": "367.942088120", + "slot": { + "period": 3761661, + "thread": 5 + } + }, + { + "amount": "367.942088125", + "slot": { + "period": 3892363, + "thread": 12 + } + } + ], + "AU1J64MJwRMcPFQuC2ESXz3NMttX1SFvVMS2RxDKbHa8ru8ZfKg9": [ + { + "amount": "142.778662014", + "slot": { + "period": 124089, + "thread": 15 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 302509, + "thread": 23 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 455539, + "thread": 18 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 593963, + "thread": 18 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 703262, + "thread": 5 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 880160, + "thread": 16 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1042488, + "thread": 23 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1253239, + "thread": 8 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1363027, + "thread": 2 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1607230, + "thread": 18 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1696233, + "thread": 11 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 1862683, + "thread": 15 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2037178, + "thread": 26 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2284679, + "thread": 7 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2388051, + "thread": 4 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2590956, + "thread": 11 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2737011, + "thread": 1 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 2830172, + "thread": 27 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 3108930, + "thread": 20 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 3209581, + "thread": 13 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 3443951, + "thread": 21 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 3564152, + "thread": 2 + } + }, + { + "amount": "142.778662014", + "slot": { + "period": 3704546, + "thread": 29 + } + }, + { + "amount": "142.778662006", + "slot": { + "period": 3946119, + "thread": 19 + } + } + ], + "AU1J6cR8oA4ZYdbchfrCgvub5g2BPp1epPo7tRkKsCboUsoKwVxx": [ + { + "amount": "58.804316118", + "slot": { + "period": 123989, + "thread": 18 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 204214, + "thread": 27 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 334371, + "thread": 30 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 548972, + "thread": 9 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 726180, + "thread": 12 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 825793, + "thread": 29 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 985943, + "thread": 26 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 1261419, + "thread": 13 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 1411079, + "thread": 4 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 1604741, + "thread": 20 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 1719607, + "thread": 0 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 1919105, + "thread": 25 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2079990, + "thread": 26 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2221449, + "thread": 12 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2421592, + "thread": 28 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2517446, + "thread": 11 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2769643, + "thread": 9 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 2801181, + "thread": 18 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 3054938, + "thread": 13 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 3231842, + "thread": 2 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 3324519, + "thread": 17 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 3565446, + "thread": 22 + } + }, + { + "amount": "58.804316118", + "slot": { + "period": 3715590, + "thread": 20 + } + }, + { + "amount": "58.804316130", + "slot": { + "period": 3839250, + "thread": 20 + } + } + ], + "AU1J7naF32BLfKyJPrmwtMHxW3q9itmyqnxaRamypzwTuvLhahpk": [ + { + "amount": "166.956412565", + "slot": { + "period": 70721, + "thread": 31 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 219270, + "thread": 14 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 405007, + "thread": 8 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 586502, + "thread": 5 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 674795, + "thread": 29 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 888546, + "thread": 15 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1040087, + "thread": 14 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1275644, + "thread": 10 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1378658, + "thread": 14 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1622693, + "thread": 3 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1667111, + "thread": 10 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 1836996, + "thread": 2 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2048875, + "thread": 23 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2175933, + "thread": 21 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2367241, + "thread": 7 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2605897, + "thread": 10 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2654357, + "thread": 31 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 2793926, + "thread": 29 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 3086763, + "thread": 19 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 3162355, + "thread": 12 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 3331595, + "thread": 0 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 3561815, + "thread": 29 + } + }, + { + "amount": "166.956412565", + "slot": { + "period": 3757667, + "thread": 29 + } + }, + { + "amount": "166.956412561", + "slot": { + "period": 3934521, + "thread": 5 + } + } + ], + "AU1J8NGbx1b243nKtV1hnYCezMPmHauEfrJinuLGEPgmrXzTdZtN": [ + { + "amount": "151.526402147", + "slot": { + "period": 11355, + "thread": 16 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 297050, + "thread": 2 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 479706, + "thread": 12 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 570498, + "thread": 15 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 711918, + "thread": 24 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 962609, + "thread": 9 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1109447, + "thread": 24 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1201033, + "thread": 26 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1331613, + "thread": 17 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1496355, + "thread": 30 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1708798, + "thread": 25 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 1881364, + "thread": 15 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2001384, + "thread": 30 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2234653, + "thread": 25 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2381214, + "thread": 31 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2594612, + "thread": 20 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2643145, + "thread": 10 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 2912027, + "thread": 27 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 3048769, + "thread": 24 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 3172654, + "thread": 17 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 3313439, + "thread": 18 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 3526865, + "thread": 12 + } + }, + { + "amount": "151.526402147", + "slot": { + "period": 3757528, + "thread": 26 + } + }, + { + "amount": "151.526402136", + "slot": { + "period": 3802890, + "thread": 26 + } + } + ], + "AU1J8QYeiPqrD3nWtWUHGh8RxPsAdinmZy35Rp5B27MsPbsEEyLc": [ + { + "amount": "240.780821954", + "slot": { + "period": 61466, + "thread": 16 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 276782, + "thread": 18 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 430090, + "thread": 22 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 569156, + "thread": 26 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 699790, + "thread": 7 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 845678, + "thread": 30 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1141928, + "thread": 29 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1301133, + "thread": 14 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1325470, + "thread": 13 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1486680, + "thread": 11 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1651973, + "thread": 27 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1973089, + "thread": 28 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 1994934, + "thread": 27 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 2157478, + "thread": 8 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 2301583, + "thread": 6 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 2473266, + "thread": 13 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 2629624, + "thread": 16 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 2918383, + "thread": 11 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 3104591, + "thread": 7 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 3133624, + "thread": 2 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 3301354, + "thread": 7 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 3467095, + "thread": 15 + } + }, + { + "amount": "240.780821954", + "slot": { + "period": 3619682, + "thread": 2 + } + }, + { + "amount": "240.780821943", + "slot": { + "period": 3884341, + "thread": 7 + } + } + ], + "AU1J9jjcWK45HpsfWERKqbWYxDdYBVyGqGa77q85Xnp2Hs8oRoPe": [ + { + "amount": "75.160151897", + "slot": { + "period": 142749, + "thread": 2 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 303573, + "thread": 26 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 415237, + "thread": 7 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 495350, + "thread": 24 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 703735, + "thread": 2 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 978211, + "thread": 3 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 986493, + "thread": 28 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 1155984, + "thread": 1 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 1463608, + "thread": 30 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 1587952, + "thread": 22 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 1686402, + "thread": 9 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 1919574, + "thread": 20 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2099089, + "thread": 20 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2185324, + "thread": 20 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2393420, + "thread": 3 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2592291, + "thread": 22 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2687226, + "thread": 9 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 2859828, + "thread": 31 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3016650, + "thread": 5 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3147747, + "thread": 21 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3408883, + "thread": 27 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3580034, + "thread": 28 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3621090, + "thread": 12 + } + }, + { + "amount": "75.160151897", + "slot": { + "period": 3894721, + "thread": 17 + } + } + ], + "AU1J9uvp528KqbuRPocwvdht5ZKZsPf51a4AusUC7KQVGoUKoes5": [ + { + "amount": "268.234746217", + "slot": { + "period": 15321, + "thread": 24 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 264796, + "thread": 24 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 389258, + "thread": 3 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 509529, + "thread": 7 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 680482, + "thread": 19 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 978629, + "thread": 12 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1134701, + "thread": 20 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1311279, + "thread": 6 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1457170, + "thread": 1 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1529078, + "thread": 13 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1767915, + "thread": 1 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 1870442, + "thread": 5 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2051981, + "thread": 11 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2208590, + "thread": 14 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2401349, + "thread": 13 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2541920, + "thread": 27 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2644352, + "thread": 30 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 2918973, + "thread": 1 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 3092300, + "thread": 23 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 3133605, + "thread": 10 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 3446977, + "thread": 31 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 3472493, + "thread": 13 + } + }, + { + "amount": "268.234746217", + "slot": { + "period": 3774422, + "thread": 1 + } + }, + { + "amount": "268.234746206", + "slot": { + "period": 3831181, + "thread": 23 + } + } + ], + "AU1JANRmuBs5JZQWTRoGvBWo6wmYDmSgVuEgZ1yqk1mjz5w78Su7": [ + { + "amount": "341.258371135", + "slot": { + "period": 89070, + "thread": 29 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 169729, + "thread": 18 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 427534, + "thread": 10 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 508491, + "thread": 14 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 691900, + "thread": 22 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 980268, + "thread": 23 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1099317, + "thread": 2 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1275756, + "thread": 23 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1377642, + "thread": 7 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1574400, + "thread": 31 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1752240, + "thread": 23 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 1832818, + "thread": 15 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2076481, + "thread": 12 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2253162, + "thread": 16 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2439490, + "thread": 30 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2564161, + "thread": 12 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2783434, + "thread": 17 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 2836526, + "thread": 18 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 3052777, + "thread": 30 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 3227778, + "thread": 18 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 3391042, + "thread": 31 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 3608135, + "thread": 15 + } + }, + { + "amount": "341.258371135", + "slot": { + "period": 3721736, + "thread": 23 + } + }, + { + "amount": "341.258371133", + "slot": { + "period": 3828005, + "thread": 1 + } + } + ], + "AU1JASyA95PdhYnSrp5GSgw11kj323qtcKqiNc6dHXqJggJMoCcq": [ + { + "amount": "496.380240536", + "slot": { + "period": 127192, + "thread": 25 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 173196, + "thread": 7 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 392810, + "thread": 17 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 642130, + "thread": 27 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 768487, + "thread": 22 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 970920, + "thread": 20 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 985599, + "thread": 24 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 1231041, + "thread": 31 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 1320361, + "thread": 2 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 1580506, + "thread": 11 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 1761968, + "thread": 25 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 1935737, + "thread": 3 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2139610, + "thread": 8 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2292537, + "thread": 1 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2331395, + "thread": 10 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2525186, + "thread": 3 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2635958, + "thread": 14 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2858463, + "thread": 17 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 2987118, + "thread": 30 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 3163018, + "thread": 28 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 3424408, + "thread": 9 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 3584365, + "thread": 9 + } + }, + { + "amount": "496.380240536", + "slot": { + "period": 3680341, + "thread": 15 + } + }, + { + "amount": "496.380240542", + "slot": { + "period": 3936640, + "thread": 15 + } + } + ], + "AU1JAUdSyEshd26ku2uZUVpCjg8rT6DtHsGqGVdFLXWR2E8tFU3K": [ + { + "amount": "411.802818160", + "slot": { + "period": 164120, + "thread": 23 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 323422, + "thread": 1 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 349720, + "thread": 5 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 635434, + "thread": 12 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 729312, + "thread": 27 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 912829, + "thread": 31 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1143956, + "thread": 0 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1202218, + "thread": 14 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1385919, + "thread": 11 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1579958, + "thread": 19 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1650528, + "thread": 22 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 1926158, + "thread": 16 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2086674, + "thread": 12 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2292612, + "thread": 0 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2326936, + "thread": 0 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2537804, + "thread": 23 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2646574, + "thread": 16 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2906374, + "thread": 8 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 2964259, + "thread": 10 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 3256897, + "thread": 16 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 3409454, + "thread": 4 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 3558514, + "thread": 9 + } + }, + { + "amount": "411.802818160", + "slot": { + "period": 3683288, + "thread": 20 + } + }, + { + "amount": "411.802818148", + "slot": { + "period": 3880218, + "thread": 15 + } + } + ], + "AU1JAYq1Qbmh1Hv9R9Y9AMuMBGChfHPXJ5nWipmgRUkX69jNa18h": [ + { + "amount": "104.151368570", + "slot": { + "period": 134638, + "thread": 31 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 218449, + "thread": 7 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 379270, + "thread": 27 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 637342, + "thread": 27 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 723001, + "thread": 6 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 965572, + "thread": 6 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1127747, + "thread": 24 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1314710, + "thread": 19 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1397578, + "thread": 25 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1571233, + "thread": 20 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1740196, + "thread": 18 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 1974756, + "thread": 27 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2125782, + "thread": 9 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2234089, + "thread": 25 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2328762, + "thread": 18 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2593886, + "thread": 14 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2646639, + "thread": 12 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2828479, + "thread": 4 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 2975970, + "thread": 12 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 3181325, + "thread": 18 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 3428773, + "thread": 15 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 3478337, + "thread": 8 + } + }, + { + "amount": "104.151368570", + "slot": { + "period": 3763700, + "thread": 11 + } + }, + { + "amount": "104.151368566", + "slot": { + "period": 3839583, + "thread": 22 + } + } + ], + "AU1JArDRYyxfYRoGPoyVrtGk7Mg4Ry4b2iGhoEdayKejvhx7fC3m": [ + { + "amount": "219.883975796", + "slot": { + "period": 68277, + "thread": 31 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 268846, + "thread": 7 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 434814, + "thread": 26 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 606048, + "thread": 2 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 683225, + "thread": 28 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 916148, + "thread": 29 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1063372, + "thread": 15 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1199398, + "thread": 18 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1352449, + "thread": 10 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1637681, + "thread": 23 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1729528, + "thread": 0 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 1919334, + "thread": 24 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2000997, + "thread": 26 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2178684, + "thread": 5 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2407454, + "thread": 18 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2474755, + "thread": 21 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2704867, + "thread": 23 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 2925418, + "thread": 17 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 3088979, + "thread": 25 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 3158692, + "thread": 14 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 3394559, + "thread": 2 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 3539710, + "thread": 30 + } + }, + { + "amount": "219.883975796", + "slot": { + "period": 3684338, + "thread": 17 + } + }, + { + "amount": "219.883975802", + "slot": { + "period": 3942926, + "thread": 13 + } + } + ], + "AU1JB4AzMYaBTot9qaiMEDXetUXCJyXLj1qnBALRKGE8sgQwhkkh": [ + { + "amount": "67.516542538", + "slot": { + "period": 55320, + "thread": 22 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 323440, + "thread": 19 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 369324, + "thread": 0 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 555793, + "thread": 19 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 702116, + "thread": 21 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 831216, + "thread": 12 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1145842, + "thread": 24 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1247547, + "thread": 10 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1325870, + "thread": 20 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1570359, + "thread": 20 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1756289, + "thread": 25 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 1963512, + "thread": 3 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2027995, + "thread": 20 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2231694, + "thread": 20 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2301668, + "thread": 22 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2542445, + "thread": 31 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2739125, + "thread": 15 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 2920397, + "thread": 6 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 3024355, + "thread": 16 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 3283906, + "thread": 30 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 3349586, + "thread": 16 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 3560507, + "thread": 16 + } + }, + { + "amount": "67.516542538", + "slot": { + "period": 3703072, + "thread": 17 + } + }, + { + "amount": "67.516542549", + "slot": { + "period": 3893120, + "thread": 9 + } + } + ], + "AU1JBQvjAsxwhVLEv7E6nMy24qhM2SwBXx7U6qZL5us3HX34RkWE": [ + { + "amount": "53.666942983", + "slot": { + "period": 78090, + "thread": 8 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 287765, + "thread": 7 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 364841, + "thread": 22 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 624593, + "thread": 31 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 687289, + "thread": 3 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 881837, + "thread": 4 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1123678, + "thread": 22 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1167682, + "thread": 23 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1390296, + "thread": 15 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1515473, + "thread": 9 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1760044, + "thread": 30 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 1811995, + "thread": 16 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2115333, + "thread": 22 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2147813, + "thread": 28 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2369635, + "thread": 16 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2605026, + "thread": 26 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2748647, + "thread": 19 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2888654, + "thread": 9 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 2991323, + "thread": 11 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 3255620, + "thread": 22 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 3290254, + "thread": 28 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 3503711, + "thread": 15 + } + }, + { + "amount": "53.666942983", + "slot": { + "period": 3709111, + "thread": 19 + } + }, + { + "amount": "53.666942990", + "slot": { + "period": 3832582, + "thread": 4 + } + } + ], + "AU1JCWfedTnxazijeLD1pQXKjCEwpxzH7i2yhja9LUsLz9xWY1Hc": [ + { + "amount": "616.429394256", + "slot": { + "period": 156514, + "thread": 30 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 291554, + "thread": 14 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 338841, + "thread": 6 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 566159, + "thread": 17 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 730095, + "thread": 11 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 937518, + "thread": 1 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1029750, + "thread": 24 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1236402, + "thread": 1 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1353088, + "thread": 22 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1531000, + "thread": 12 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1743468, + "thread": 27 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 1816617, + "thread": 2 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2132404, + "thread": 6 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2196549, + "thread": 13 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2449073, + "thread": 1 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2560514, + "thread": 15 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2654737, + "thread": 28 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2906707, + "thread": 28 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 2980052, + "thread": 27 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 3155028, + "thread": 6 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 3345108, + "thread": 7 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 3532621, + "thread": 23 + } + }, + { + "amount": "616.429394256", + "slot": { + "period": 3735924, + "thread": 14 + } + }, + { + "amount": "616.429394260", + "slot": { + "period": 3875254, + "thread": 11 + } + } + ], + "AU1JCdmH8eZmZ1EipkfLmVhuBqu8uKJbpXNMJPJDKQR2Ck6GNb85": [ + { + "amount": "622.483099104", + "slot": { + "period": 47682, + "thread": 0 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 181617, + "thread": 3 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 423382, + "thread": 30 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 523073, + "thread": 19 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 750332, + "thread": 30 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 888159, + "thread": 27 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1094863, + "thread": 5 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1289521, + "thread": 28 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1421636, + "thread": 26 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1542249, + "thread": 24 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1663532, + "thread": 0 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1827885, + "thread": 27 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 1988560, + "thread": 27 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 2288541, + "thread": 24 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 2402440, + "thread": 27 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 2516108, + "thread": 23 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 2717841, + "thread": 18 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 2941619, + "thread": 9 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 3072817, + "thread": 29 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 3140792, + "thread": 31 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 3372893, + "thread": 7 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 3536041, + "thread": 4 + } + }, + { + "amount": "622.483099104", + "slot": { + "period": 3719571, + "thread": 31 + } + }, + { + "amount": "622.483099106", + "slot": { + "period": 3912982, + "thread": 10 + } + } + ], + "AU1JDbdzwrDyVWRyB4pA7YZXti7Dy7cftXzQujG4Bxm1GmMnroZk": [ + { + "amount": "245.966464182", + "slot": { + "period": 64961, + "thread": 20 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 305218, + "thread": 13 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 338296, + "thread": 15 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 517172, + "thread": 23 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 803412, + "thread": 21 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 826343, + "thread": 27 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1146121, + "thread": 30 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1248160, + "thread": 11 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1391724, + "thread": 12 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1637214, + "thread": 25 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1770282, + "thread": 3 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 1855880, + "thread": 30 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2043058, + "thread": 31 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2151246, + "thread": 9 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2355983, + "thread": 27 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2495934, + "thread": 14 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2704112, + "thread": 9 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 2904819, + "thread": 16 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 3110715, + "thread": 24 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 3243718, + "thread": 8 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 3404439, + "thread": 11 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 3499680, + "thread": 16 + } + }, + { + "amount": "245.966464182", + "slot": { + "period": 3694798, + "thread": 20 + } + }, + { + "amount": "245.966464174", + "slot": { + "period": 3881562, + "thread": 5 + } + } + ], + "AU1JDtoDXYJZZsEYW2J4w1vo7yhGHF6mkMp2UTJd9UyfNkgpP5SU": [ + { + "amount": "80.503597752", + "slot": { + "period": 70673, + "thread": 13 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 252053, + "thread": 24 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 440965, + "thread": 26 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 555532, + "thread": 28 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 806105, + "thread": 28 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 970797, + "thread": 31 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1127945, + "thread": 0 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1198548, + "thread": 0 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1458652, + "thread": 30 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1581147, + "thread": 1 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1765556, + "thread": 2 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 1968608, + "thread": 24 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2052538, + "thread": 23 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2177495, + "thread": 14 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2312251, + "thread": 28 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2479503, + "thread": 0 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2780190, + "thread": 31 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 2865962, + "thread": 3 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 3058706, + "thread": 17 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 3139869, + "thread": 0 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 3399092, + "thread": 19 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 3507345, + "thread": 16 + } + }, + { + "amount": "80.503597752", + "slot": { + "period": 3741692, + "thread": 16 + } + }, + { + "amount": "80.503597751", + "slot": { + "period": 3852357, + "thread": 13 + } + } + ], + "AU1JEBjorVs5KDPxaKHn3r3SGR8n8A4qRPua8Zg4tqKiq7SptLt8": [ + { + "amount": "54.391605778", + "slot": { + "period": 14361, + "thread": 8 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 191213, + "thread": 7 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 420681, + "thread": 22 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 588763, + "thread": 27 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 670504, + "thread": 8 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 905528, + "thread": 8 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1010021, + "thread": 20 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1251165, + "thread": 21 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1469948, + "thread": 22 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1602674, + "thread": 7 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1736830, + "thread": 27 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 1967375, + "thread": 2 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2006022, + "thread": 19 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2187543, + "thread": 29 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2324142, + "thread": 6 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2559069, + "thread": 3 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2756757, + "thread": 10 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 2814020, + "thread": 9 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 3068298, + "thread": 21 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 3204427, + "thread": 28 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 3387175, + "thread": 6 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 3561040, + "thread": 14 + } + }, + { + "amount": "54.391605778", + "slot": { + "period": 3632069, + "thread": 27 + } + }, + { + "amount": "54.391605787", + "slot": { + "period": 3884407, + "thread": 18 + } + } + ], + "AU1JEgxfko8Ry2AnydGrubiByoqxZU4e1w4ptQh7TEFnvXjCcQ1Y": [ + { + "amount": "265.113704351", + "slot": { + "period": 111679, + "thread": 20 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 229825, + "thread": 7 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 401710, + "thread": 9 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 649487, + "thread": 13 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 737231, + "thread": 6 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 905594, + "thread": 23 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1095238, + "thread": 14 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1216535, + "thread": 19 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1326680, + "thread": 11 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1499685, + "thread": 7 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1799447, + "thread": 21 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 1949773, + "thread": 27 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2015376, + "thread": 16 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2196576, + "thread": 1 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2385114, + "thread": 16 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2523011, + "thread": 4 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2631858, + "thread": 31 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 2843190, + "thread": 1 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 3083184, + "thread": 14 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 3132539, + "thread": 29 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 3405121, + "thread": 6 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 3544486, + "thread": 4 + } + }, + { + "amount": "265.113704351", + "slot": { + "period": 3646262, + "thread": 5 + } + }, + { + "amount": "265.113704353", + "slot": { + "period": 3815920, + "thread": 31 + } + } + ], + "AU1JEx12CoasF61ajCsRKdSj7Edn3rQWerJh8QrmoUqpZnxLbbjC": [ + { + "amount": "211.939072719", + "slot": { + "period": 88746, + "thread": 19 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 179078, + "thread": 18 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 386155, + "thread": 15 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 496376, + "thread": 17 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 771043, + "thread": 29 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 973614, + "thread": 15 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1077219, + "thread": 12 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1162227, + "thread": 8 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1437732, + "thread": 2 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1632718, + "thread": 20 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1701080, + "thread": 4 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 1937109, + "thread": 13 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2121770, + "thread": 12 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2162364, + "thread": 13 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2309441, + "thread": 15 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2544727, + "thread": 22 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2630456, + "thread": 22 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 2902312, + "thread": 23 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 3054635, + "thread": 24 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 3213243, + "thread": 29 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 3313478, + "thread": 15 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 3503324, + "thread": 0 + } + }, + { + "amount": "211.939072719", + "slot": { + "period": 3667509, + "thread": 2 + } + }, + { + "amount": "211.939072711", + "slot": { + "period": 3853384, + "thread": 27 + } + } + ], + "AU1JEx6zywJJsnyVtS7RxuWACEwhpMFuTe7hthsmdGuWq3noUyqQ": [ + { + "amount": "218.167686824", + "slot": { + "period": 16003, + "thread": 9 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 295974, + "thread": 23 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 366271, + "thread": 28 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 643798, + "thread": 19 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 784410, + "thread": 28 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 880920, + "thread": 26 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1034465, + "thread": 6 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1263635, + "thread": 22 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1356220, + "thread": 24 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1496196, + "thread": 21 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1674132, + "thread": 16 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 1858149, + "thread": 29 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2041272, + "thread": 30 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2190194, + "thread": 5 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2393010, + "thread": 21 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2546470, + "thread": 6 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2751870, + "thread": 26 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2930702, + "thread": 28 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 2998002, + "thread": 15 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 3134456, + "thread": 10 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 3319835, + "thread": 12 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 3607890, + "thread": 6 + } + }, + { + "amount": "218.167686824", + "slot": { + "period": 3644478, + "thread": 15 + } + }, + { + "amount": "218.167686816", + "slot": { + "period": 3845030, + "thread": 22 + } + } + ], + "AU1JF9AFAtZkoGVwb5Yqdu1bCW3NXuPLwhceS5fnoyqeQ5noFQp4": [ + { + "amount": "234.067497518", + "slot": { + "period": 160390, + "thread": 25 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 299441, + "thread": 18 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 382285, + "thread": 12 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 602674, + "thread": 24 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 742241, + "thread": 12 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 894513, + "thread": 11 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 996105, + "thread": 23 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 1293679, + "thread": 24 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 1427484, + "thread": 8 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 1610007, + "thread": 19 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 1715641, + "thread": 18 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 1963426, + "thread": 9 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2083533, + "thread": 9 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2210247, + "thread": 10 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2460099, + "thread": 14 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2474671, + "thread": 18 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2788299, + "thread": 29 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2826194, + "thread": 9 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 2981779, + "thread": 10 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 3267609, + "thread": 12 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 3342348, + "thread": 17 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 3552089, + "thread": 7 + } + }, + { + "amount": "234.067497518", + "slot": { + "period": 3698351, + "thread": 27 + } + }, + { + "amount": "234.067497521", + "slot": { + "period": 3924855, + "thread": 17 + } + } + ], + "AU1JGHY9ZoCVKS8PWLtjameSMNBLof1fuNvDPrkx8UPdCdewdtEN": [ + { + "amount": "75.448017520", + "slot": { + "period": 73373, + "thread": 6 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 200175, + "thread": 1 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 420724, + "thread": 31 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 562912, + "thread": 8 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 709760, + "thread": 12 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 965649, + "thread": 7 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1116405, + "thread": 22 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1261641, + "thread": 8 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1465224, + "thread": 7 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1557179, + "thread": 31 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1757548, + "thread": 19 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 1889775, + "thread": 23 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2040827, + "thread": 5 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2241706, + "thread": 15 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2369897, + "thread": 0 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2568737, + "thread": 24 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2741410, + "thread": 18 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 2876715, + "thread": 2 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 3070136, + "thread": 19 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 3153032, + "thread": 19 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 3342677, + "thread": 2 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 3529454, + "thread": 18 + } + }, + { + "amount": "75.448017520", + "slot": { + "period": 3749952, + "thread": 4 + } + }, + { + "amount": "75.448017521", + "slot": { + "period": 3792866, + "thread": 8 + } + } + ], + "AU1JGS2dWzjUJgh6MKWQimRAwnCWurXTCQ1H9E4RairnBdNaPFE1": [ + { + "amount": "79.812405046", + "slot": { + "period": 125464, + "thread": 3 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 287705, + "thread": 11 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 437291, + "thread": 30 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 587640, + "thread": 31 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 769069, + "thread": 0 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 824001, + "thread": 31 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1052183, + "thread": 10 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1225504, + "thread": 15 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1400194, + "thread": 8 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1518936, + "thread": 10 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1698453, + "thread": 26 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1851281, + "thread": 0 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 1996089, + "thread": 15 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 2229835, + "thread": 23 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 2431634, + "thread": 15 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 2561684, + "thread": 26 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 2786273, + "thread": 14 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 2822836, + "thread": 30 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 3076737, + "thread": 28 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 3261993, + "thread": 21 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 3303238, + "thread": 22 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 3536700, + "thread": 22 + } + }, + { + "amount": "79.812405046", + "slot": { + "period": 3664547, + "thread": 8 + } + }, + { + "amount": "79.812405047", + "slot": { + "period": 3905632, + "thread": 7 + } + } + ], + "AU1JHyoM1rPoX6MJzfFKrRBsoeGoDuY4r6Ha9S9x75hsBTLrrXuH": [ + { + "amount": "156.428850547", + "slot": { + "period": 141710, + "thread": 10 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 268422, + "thread": 17 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 387536, + "thread": 1 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 528059, + "thread": 23 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 689326, + "thread": 0 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 957694, + "thread": 2 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1120250, + "thread": 17 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1238360, + "thread": 30 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1326152, + "thread": 23 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1626861, + "thread": 10 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1771081, + "thread": 9 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 1832965, + "thread": 21 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2078181, + "thread": 9 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2283203, + "thread": 9 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2341551, + "thread": 8 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2480419, + "thread": 15 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2695629, + "thread": 12 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 2812762, + "thread": 9 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 3045506, + "thread": 24 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 3227602, + "thread": 30 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 3324408, + "thread": 31 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 3473307, + "thread": 13 + } + }, + { + "amount": "156.428850547", + "slot": { + "period": 3711374, + "thread": 22 + } + }, + { + "amount": "156.428850542", + "slot": { + "period": 3872093, + "thread": 9 + } + } + ], + "AU1JKcKtV3Z43KUgzA6Vf7Cdu8gQoSq5T9cJzTQnk7TsgfRdU4L2": [ + { + "amount": "153.954978069", + "slot": { + "period": 57742, + "thread": 8 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 286882, + "thread": 14 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 354681, + "thread": 24 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 518607, + "thread": 3 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 795244, + "thread": 0 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 981365, + "thread": 30 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 991121, + "thread": 5 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 1159395, + "thread": 16 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 1357506, + "thread": 8 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 1525976, + "thread": 0 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 1798441, + "thread": 26 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 1857656, + "thread": 7 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2029958, + "thread": 16 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2254625, + "thread": 8 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2417864, + "thread": 28 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2482602, + "thread": 28 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2638075, + "thread": 13 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2939236, + "thread": 25 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 2979767, + "thread": 2 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 3172581, + "thread": 13 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 3342733, + "thread": 3 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 3592851, + "thread": 8 + } + }, + { + "amount": "153.954978069", + "slot": { + "period": 3734647, + "thread": 5 + } + }, + { + "amount": "153.954978074", + "slot": { + "period": 3919578, + "thread": 23 + } + } + ], + "AU1JLZjj3g1FHNzHPya25PsVuTpkL4ou38MHrAoQM2QPDjJrRhPF": [ + { + "amount": "71.640287108", + "slot": { + "period": 64313, + "thread": 5 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 170348, + "thread": 8 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 334865, + "thread": 18 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 572432, + "thread": 31 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 786972, + "thread": 27 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 853816, + "thread": 26 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1107357, + "thread": 3 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1159307, + "thread": 7 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1362992, + "thread": 19 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1559937, + "thread": 21 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1754027, + "thread": 8 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 1971906, + "thread": 11 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2026953, + "thread": 22 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2258544, + "thread": 4 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2397886, + "thread": 10 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2598118, + "thread": 26 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2732700, + "thread": 0 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 2920730, + "thread": 0 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 3024127, + "thread": 3 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 3255100, + "thread": 20 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 3351741, + "thread": 10 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 3606726, + "thread": 25 + } + }, + { + "amount": "71.640287108", + "slot": { + "period": 3766109, + "thread": 8 + } + }, + { + "amount": "71.640287110", + "slot": { + "period": 3844039, + "thread": 26 + } + } + ], + "AU1JLak4xZCV2huhsPJC2LmsKp6E5qPh2ZqzxhZNXsdEhhmwANze": [ + { + "amount": "283.848132973", + "slot": { + "period": 26226, + "thread": 24 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 193098, + "thread": 27 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 468933, + "thread": 10 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 611224, + "thread": 19 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 677610, + "thread": 0 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 830784, + "thread": 11 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1064100, + "thread": 19 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1184963, + "thread": 8 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1413201, + "thread": 31 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1564252, + "thread": 9 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1710257, + "thread": 27 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 1951165, + "thread": 16 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2063684, + "thread": 10 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2179591, + "thread": 30 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2336446, + "thread": 22 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2599429, + "thread": 21 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2724190, + "thread": 0 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 2936341, + "thread": 27 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 3090237, + "thread": 1 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 3122937, + "thread": 21 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 3306266, + "thread": 30 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 3490908, + "thread": 10 + } + }, + { + "amount": "283.848132973", + "slot": { + "period": 3712187, + "thread": 13 + } + }, + { + "amount": "283.848132978", + "slot": { + "period": 3876262, + "thread": 1 + } + } + ], + "AU1JMJH5TSkCLHfdBDodpEb8xYjmbhFxWaUm3ZsvgoAXurwTay8p": [ + { + "amount": "170.072054760", + "slot": { + "period": 147337, + "thread": 10 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 223064, + "thread": 2 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 426225, + "thread": 14 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 546140, + "thread": 31 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 690811, + "thread": 30 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 960377, + "thread": 8 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1049425, + "thread": 10 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1151297, + "thread": 13 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1470701, + "thread": 12 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1528235, + "thread": 22 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1681460, + "thread": 2 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 1826602, + "thread": 8 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2129297, + "thread": 17 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2264277, + "thread": 13 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2324562, + "thread": 2 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2519878, + "thread": 9 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2700645, + "thread": 8 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 2831715, + "thread": 3 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 3116991, + "thread": 15 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 3147303, + "thread": 1 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 3449771, + "thread": 24 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 3600348, + "thread": 2 + } + }, + { + "amount": "170.072054760", + "slot": { + "period": 3691990, + "thread": 28 + } + }, + { + "amount": "170.072054749", + "slot": { + "period": 3801457, + "thread": 18 + } + } + ], + "AU1JMPHg6sFkMB5TGwWr76g4s8HF1R61TMMz7ouqKxtEXQBdLetd": [ + { + "amount": "53.997770689", + "slot": { + "period": 98908, + "thread": 17 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 174206, + "thread": 12 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 336090, + "thread": 23 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 650136, + "thread": 12 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 716568, + "thread": 29 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 919117, + "thread": 7 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1076447, + "thread": 15 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1256316, + "thread": 25 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1386989, + "thread": 29 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1507945, + "thread": 23 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1693604, + "thread": 11 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 1854609, + "thread": 9 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2078944, + "thread": 26 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2285878, + "thread": 4 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2383509, + "thread": 29 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2522746, + "thread": 19 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2696585, + "thread": 25 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 2827759, + "thread": 14 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 3061700, + "thread": 7 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 3192268, + "thread": 2 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 3344693, + "thread": 23 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 3545520, + "thread": 17 + } + }, + { + "amount": "53.997770689", + "slot": { + "period": 3630454, + "thread": 19 + } + }, + { + "amount": "53.997770696", + "slot": { + "period": 3911534, + "thread": 13 + } + } + ], + "AU1JNBYA28oiq3nhibTavCNpJWr7RjeHa7CyeYJRb3FBfyp22mDo": [ + { + "amount": "78.165487486", + "slot": { + "period": 64991, + "thread": 30 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 189798, + "thread": 9 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 487494, + "thread": 9 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 590066, + "thread": 19 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 730951, + "thread": 26 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 839493, + "thread": 28 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1020726, + "thread": 31 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1313862, + "thread": 21 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1426193, + "thread": 27 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1576000, + "thread": 22 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1658890, + "thread": 26 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 1860804, + "thread": 1 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2118351, + "thread": 5 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2294836, + "thread": 26 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2425011, + "thread": 31 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2576976, + "thread": 14 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2774068, + "thread": 6 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 2814498, + "thread": 23 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 3090394, + "thread": 2 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 3156535, + "thread": 4 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 3330376, + "thread": 5 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 3457721, + "thread": 12 + } + }, + { + "amount": "78.165487486", + "slot": { + "period": 3640729, + "thread": 17 + } + }, + { + "amount": "78.165487482", + "slot": { + "period": 3878159, + "thread": 17 + } + } + ], + "AU1JNDhJAV144mv7V2n9xZ6Ej2nJ8MXHdX9mNDA9m9C63RLbU5E7": [ + { + "amount": "109.306516474", + "slot": { + "period": 90728, + "thread": 27 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 178961, + "thread": 9 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 462218, + "thread": 17 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 629758, + "thread": 9 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 719590, + "thread": 13 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 869593, + "thread": 11 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1141004, + "thread": 25 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1244753, + "thread": 21 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1420654, + "thread": 31 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1629188, + "thread": 21 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1741113, + "thread": 21 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1927575, + "thread": 30 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 1998435, + "thread": 20 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 2237733, + "thread": 1 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 2301274, + "thread": 22 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 2546334, + "thread": 22 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 2774499, + "thread": 20 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 2871332, + "thread": 1 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 3067532, + "thread": 14 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 3245436, + "thread": 30 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 3435243, + "thread": 26 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 3481258, + "thread": 0 + } + }, + { + "amount": "109.306516474", + "slot": { + "period": 3623946, + "thread": 5 + } + }, + { + "amount": "109.306516483", + "slot": { + "period": 3833317, + "thread": 23 + } + } + ], + "AU1JNxEzshyzYREd9GG1D39WGmVyKBwvBAwdrYv94wNj7hrQuDao": [ + { + "amount": "76.685098221", + "slot": { + "period": 137885, + "thread": 28 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 197377, + "thread": 4 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 410912, + "thread": 17 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 599289, + "thread": 22 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 770682, + "thread": 6 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 896236, + "thread": 25 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1063053, + "thread": 2 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1234312, + "thread": 4 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1354269, + "thread": 26 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1601285, + "thread": 29 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1662474, + "thread": 23 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 1934223, + "thread": 16 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2086888, + "thread": 11 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2219387, + "thread": 31 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2344805, + "thread": 8 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2506895, + "thread": 26 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2739985, + "thread": 10 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 2829953, + "thread": 12 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 3090368, + "thread": 17 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 3247753, + "thread": 4 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 3350906, + "thread": 2 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 3562820, + "thread": 28 + } + }, + { + "amount": "76.685098221", + "slot": { + "period": 3755219, + "thread": 30 + } + }, + { + "amount": "76.685098219", + "slot": { + "period": 3845083, + "thread": 1 + } + } + ], + "AU1JP7AzYqHYT72tXAUNthWjTFwafT252YeRqxD83wYJrcnDq8rw": [ + { + "amount": "414.354412139", + "slot": { + "period": 94476, + "thread": 10 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 284186, + "thread": 31 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 453060, + "thread": 0 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 500598, + "thread": 28 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 773766, + "thread": 0 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 936309, + "thread": 8 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1117844, + "thread": 9 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1174383, + "thread": 0 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1457829, + "thread": 6 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1627019, + "thread": 21 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1724425, + "thread": 11 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 1959079, + "thread": 11 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2043917, + "thread": 23 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2183703, + "thread": 14 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2323813, + "thread": 7 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2530552, + "thread": 13 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2749957, + "thread": 20 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 2862324, + "thread": 13 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 3107680, + "thread": 16 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 3149362, + "thread": 19 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 3390535, + "thread": 2 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 3497982, + "thread": 9 + } + }, + { + "amount": "414.354412139", + "slot": { + "period": 3703847, + "thread": 17 + } + }, + { + "amount": "414.354412148", + "slot": { + "period": 3899633, + "thread": 22 + } + } + ], + "AU1JRy1Av2xhjocXRRbTgEPUSTnsYXt5FBRqogdsD5Y7Konrbj9V": [ + { + "amount": "105.229997371", + "slot": { + "period": 93472, + "thread": 5 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 302085, + "thread": 21 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 387571, + "thread": 18 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 608821, + "thread": 2 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 694450, + "thread": 4 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 883507, + "thread": 10 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1030005, + "thread": 22 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1238550, + "thread": 23 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1414576, + "thread": 30 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1631852, + "thread": 9 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1804255, + "thread": 23 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 1975277, + "thread": 11 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2120704, + "thread": 19 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2251334, + "thread": 24 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2329941, + "thread": 4 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2593072, + "thread": 18 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2708700, + "thread": 14 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 2919644, + "thread": 14 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 3025531, + "thread": 25 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 3182013, + "thread": 3 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 3351473, + "thread": 17 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 3537845, + "thread": 3 + } + }, + { + "amount": "105.229997371", + "slot": { + "period": 3758317, + "thread": 11 + } + }, + { + "amount": "105.229997373", + "slot": { + "period": 3889195, + "thread": 26 + } + } + ], + "AU1JS1mH1hKuTqPuQFJ3C5PdC8szUy8G9BACBSAL6Ru8Q1uz26qQ": [ + { + "amount": "106.460687669", + "slot": { + "period": 27610, + "thread": 30 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 260175, + "thread": 21 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 363145, + "thread": 6 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 549738, + "thread": 16 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 683915, + "thread": 8 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 867347, + "thread": 8 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 996411, + "thread": 18 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 1269542, + "thread": 0 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 1331293, + "thread": 31 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 1581301, + "thread": 0 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 1671320, + "thread": 28 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 1971992, + "thread": 5 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2079750, + "thread": 15 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2256854, + "thread": 23 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2374980, + "thread": 16 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2465871, + "thread": 9 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2748313, + "thread": 16 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 2923661, + "thread": 26 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 3013907, + "thread": 17 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 3222419, + "thread": 15 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 3344282, + "thread": 25 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 3486660, + "thread": 26 + } + }, + { + "amount": "106.460687669", + "slot": { + "period": 3739594, + "thread": 10 + } + }, + { + "amount": "106.460687679", + "slot": { + "period": 3878862, + "thread": 30 + } + } + ], + "AU1JSHLJaVuQw8tCytK8Syqzz86Vo1QFck3bozyoaoBqgwPbRaFh": [ + { + "amount": "83.255658423", + "slot": { + "period": 23408, + "thread": 0 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 172554, + "thread": 12 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 399275, + "thread": 29 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 566998, + "thread": 28 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 681949, + "thread": 8 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 963463, + "thread": 12 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1142649, + "thread": 31 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1261334, + "thread": 18 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1380225, + "thread": 11 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1525054, + "thread": 23 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1770886, + "thread": 5 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1930926, + "thread": 28 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 1997337, + "thread": 21 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 2253133, + "thread": 9 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 2453015, + "thread": 21 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 2558049, + "thread": 1 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 2775725, + "thread": 19 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 2949938, + "thread": 5 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 3011291, + "thread": 18 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 3223061, + "thread": 10 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 3405481, + "thread": 14 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 3558581, + "thread": 0 + } + }, + { + "amount": "83.255658423", + "slot": { + "period": 3771854, + "thread": 23 + } + }, + { + "amount": "83.255658424", + "slot": { + "period": 3838521, + "thread": 29 + } + } + ], + "AU1JSRPpDMyA48iFsPEt94e8FnFSpqsZ4vUZzuka2HHhJt3Zd3kR": [ + { + "amount": "729.166666667", + "slot": { + "period": 102296, + "thread": 11 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 202666, + "thread": 13 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 409087, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 555359, + "thread": 6 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 800275, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 841711, + "thread": 3 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1109812, + "thread": 9 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1285048, + "thread": 24 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1461690, + "thread": 26 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1591774, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1673019, + "thread": 22 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1933911, + "thread": 4 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2008263, + "thread": 27 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2199848, + "thread": 18 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2299897, + "thread": 10 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2494614, + "thread": 28 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2631434, + "thread": 27 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2856892, + "thread": 25 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3102781, + "thread": 14 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3244311, + "thread": 31 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3327058, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3565928, + "thread": 7 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3719490, + "thread": 20 + } + }, + { + "amount": "729.166666659", + "slot": { + "period": 3861131, + "thread": 23 + } + } + ], + "AU1JV3h5RbAivkenhrj4Bdg2ttDhd5Cv55pMHrsn414vFuEhBrAo": [ + { + "amount": "115.315032003", + "slot": { + "period": 119635, + "thread": 8 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 256937, + "thread": 10 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 456598, + "thread": 23 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 510985, + "thread": 2 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 725005, + "thread": 8 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 851689, + "thread": 7 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1133497, + "thread": 8 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1180589, + "thread": 13 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1371592, + "thread": 3 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1617607, + "thread": 14 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1661901, + "thread": 8 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 1916122, + "thread": 11 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2013438, + "thread": 6 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2175576, + "thread": 24 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2406824, + "thread": 7 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2574168, + "thread": 31 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2784290, + "thread": 23 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 2908904, + "thread": 9 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 3048457, + "thread": 3 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 3135398, + "thread": 15 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 3388572, + "thread": 1 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 3545100, + "thread": 28 + } + }, + { + "amount": "115.315032003", + "slot": { + "period": 3657873, + "thread": 17 + } + }, + { + "amount": "115.315031998", + "slot": { + "period": 3891169, + "thread": 13 + } + } + ], + "AU1JV9whRrauAQG4rBFPLq1u52C6CbTaAXMdmRAt7QXsAYiYGgTd": [ + { + "amount": "393.728860615", + "slot": { + "period": 150110, + "thread": 14 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 252152, + "thread": 28 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 473296, + "thread": 4 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 491405, + "thread": 3 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 700927, + "thread": 30 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 975309, + "thread": 8 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1052567, + "thread": 1 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1242248, + "thread": 16 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1413159, + "thread": 24 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1506418, + "thread": 11 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1732618, + "thread": 4 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 1864033, + "thread": 13 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2090530, + "thread": 2 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2176595, + "thread": 30 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2386790, + "thread": 5 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2558761, + "thread": 30 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2764277, + "thread": 8 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 2828653, + "thread": 1 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 3096077, + "thread": 13 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 3237056, + "thread": 26 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 3367983, + "thread": 2 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 3617724, + "thread": 19 + } + }, + { + "amount": "393.728860615", + "slot": { + "period": 3661489, + "thread": 12 + } + }, + { + "amount": "393.728860608", + "slot": { + "period": 3869807, + "thread": 10 + } + } + ], + "AU1JWGm56SWKN5N2Tq5Xw5X1xrpt8LALmtRg3PAnGWmJZ42sPAUH": [ + { + "amount": "96.914441930", + "slot": { + "period": 71229, + "thread": 5 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 254086, + "thread": 26 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 414980, + "thread": 14 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 618080, + "thread": 19 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 707974, + "thread": 1 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 957975, + "thread": 16 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1068344, + "thread": 5 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1262918, + "thread": 15 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1444483, + "thread": 23 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1485450, + "thread": 5 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1693512, + "thread": 4 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 1917417, + "thread": 31 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2082801, + "thread": 5 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2238756, + "thread": 19 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2362144, + "thread": 24 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2492035, + "thread": 13 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2725203, + "thread": 29 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 2843016, + "thread": 18 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 3011110, + "thread": 30 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 3138535, + "thread": 17 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 3317539, + "thread": 10 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 3479434, + "thread": 17 + } + }, + { + "amount": "96.914441930", + "slot": { + "period": 3704713, + "thread": 15 + } + }, + { + "amount": "96.914441932", + "slot": { + "period": 3801848, + "thread": 27 + } + } + ], + "AU1JWLKhtzHqLLTG6kGUpK59XNpbcWgFKXJc4sXFgzLF2nn836UF": [ + { + "amount": "159.733763249", + "slot": { + "period": 43148, + "thread": 19 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 175752, + "thread": 6 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 373463, + "thread": 18 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 596256, + "thread": 10 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 803938, + "thread": 19 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 970846, + "thread": 26 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1045376, + "thread": 25 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1198357, + "thread": 3 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1366379, + "thread": 11 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1542851, + "thread": 17 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1763451, + "thread": 11 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 1844206, + "thread": 19 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2131813, + "thread": 8 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2147965, + "thread": 13 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2356629, + "thread": 28 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2518448, + "thread": 14 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2635679, + "thread": 4 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2950473, + "thread": 31 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 2993546, + "thread": 29 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 3178671, + "thread": 18 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 3415980, + "thread": 13 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 3547149, + "thread": 3 + } + }, + { + "amount": "159.733763249", + "slot": { + "period": 3704116, + "thread": 16 + } + }, + { + "amount": "159.733763255", + "slot": { + "period": 3825293, + "thread": 8 + } + } + ], + "AU1JWXb4Ds6QyCVRDxiTj2qG1GkX2at9zZZgUwNtijZTvTar1iuM": [ + { + "amount": "286.140875510", + "slot": { + "period": 67452, + "thread": 6 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 189195, + "thread": 18 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 402853, + "thread": 12 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 556454, + "thread": 24 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 665456, + "thread": 17 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 826659, + "thread": 14 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1115877, + "thread": 5 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1185349, + "thread": 26 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1383804, + "thread": 21 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1565411, + "thread": 7 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1698075, + "thread": 1 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 1905389, + "thread": 8 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2094405, + "thread": 15 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2180989, + "thread": 17 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2361813, + "thread": 7 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2568972, + "thread": 3 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2740844, + "thread": 20 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 2916879, + "thread": 2 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 3059267, + "thread": 19 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 3135857, + "thread": 22 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 3323010, + "thread": 25 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 3480886, + "thread": 15 + } + }, + { + "amount": "286.140875510", + "slot": { + "period": 3706665, + "thread": 19 + } + }, + { + "amount": "286.140875519", + "slot": { + "period": 3945684, + "thread": 16 + } + } + ], + "AU1JYFNGYVgCZ59SBeUv3AAjy88jfSjRZtDWvnCQP1DVLwnDzjew": [ + { + "amount": "93.627630342", + "slot": { + "period": 59152, + "thread": 1 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 188413, + "thread": 15 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 357184, + "thread": 2 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 491517, + "thread": 10 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 777332, + "thread": 0 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 847983, + "thread": 26 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1109156, + "thread": 15 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1245585, + "thread": 3 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1389794, + "thread": 19 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1550095, + "thread": 31 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1659526, + "thread": 5 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1821930, + "thread": 8 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 1995345, + "thread": 10 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2148187, + "thread": 25 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2370407, + "thread": 19 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2622027, + "thread": 7 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2768554, + "thread": 16 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2947728, + "thread": 4 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 2980435, + "thread": 24 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 3243999, + "thread": 0 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 3314011, + "thread": 29 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 3532590, + "thread": 10 + } + }, + { + "amount": "93.627630342", + "slot": { + "period": 3622951, + "thread": 20 + } + }, + { + "amount": "93.627630341", + "slot": { + "period": 3932434, + "thread": 26 + } + } + ], + "AU1JZHjmbUVX8M74gFTuqi5y6sxkiNe8kX2k2RGXMcWT8RLT1a76": [ + { + "amount": "197.660934188", + "slot": { + "period": 20099, + "thread": 31 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 173769, + "thread": 24 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 473691, + "thread": 6 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 545698, + "thread": 16 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 790359, + "thread": 11 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 934049, + "thread": 9 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1072130, + "thread": 13 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1300852, + "thread": 7 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1444018, + "thread": 10 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1522150, + "thread": 17 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1799752, + "thread": 26 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 1916146, + "thread": 30 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2011384, + "thread": 13 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2166832, + "thread": 8 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2386118, + "thread": 12 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2496762, + "thread": 27 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2769307, + "thread": 26 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 2927304, + "thread": 4 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 3023406, + "thread": 8 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 3238762, + "thread": 31 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 3395953, + "thread": 5 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 3522930, + "thread": 23 + } + }, + { + "amount": "197.660934188", + "slot": { + "period": 3635816, + "thread": 28 + } + }, + { + "amount": "197.660934180", + "slot": { + "period": 3788246, + "thread": 21 + } + } + ], + "AU1JZHuXS2zxwvE4YnAFqtLiNHG5L8cb5hBcu2w2wP8Vrt5ebVhr": [ + { + "amount": "136.296674521", + "slot": { + "period": 39031, + "thread": 0 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 300853, + "thread": 6 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 460953, + "thread": 4 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 641185, + "thread": 12 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 677220, + "thread": 25 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 949157, + "thread": 26 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1143288, + "thread": 3 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1293088, + "thread": 4 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1433864, + "thread": 29 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1551188, + "thread": 27 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1648059, + "thread": 25 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 1841868, + "thread": 18 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2036532, + "thread": 31 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2248589, + "thread": 15 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2308957, + "thread": 1 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2518219, + "thread": 19 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2747990, + "thread": 26 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 2879391, + "thread": 20 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 3028504, + "thread": 16 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 3221501, + "thread": 19 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 3338911, + "thread": 31 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 3565738, + "thread": 1 + } + }, + { + "amount": "136.296674521", + "slot": { + "period": 3760597, + "thread": 27 + } + }, + { + "amount": "136.296674510", + "slot": { + "period": 3868290, + "thread": 22 + } + } + ], + "AU1JZUJFgRbDiSgN9G7925b6ZSfAaZ4UTzyjBVnFwGM9A9ESMT56": [ + { + "amount": "136.378868654", + "slot": { + "period": 96410, + "thread": 19 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 240920, + "thread": 31 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 360681, + "thread": 14 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 603029, + "thread": 26 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 663428, + "thread": 12 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 926555, + "thread": 7 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1044093, + "thread": 27 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1290012, + "thread": 2 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1410875, + "thread": 25 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1553182, + "thread": 10 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1782961, + "thread": 9 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 1957894, + "thread": 18 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2121570, + "thread": 0 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2220584, + "thread": 10 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2336368, + "thread": 22 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2502436, + "thread": 22 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2658993, + "thread": 17 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 2820274, + "thread": 12 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 3111435, + "thread": 9 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 3264066, + "thread": 12 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 3308892, + "thread": 26 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 3501836, + "thread": 5 + } + }, + { + "amount": "136.378868654", + "slot": { + "period": 3770182, + "thread": 15 + } + }, + { + "amount": "136.378868665", + "slot": { + "period": 3844818, + "thread": 25 + } + } + ], + "AU1JZrVB1VBxmeWygUZwkCaqiN59xtBEFCyvK7i1ZyVjb2JUfa3z": [ + { + "amount": "83.317693980", + "slot": { + "period": 88680, + "thread": 25 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 253853, + "thread": 20 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 452415, + "thread": 19 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 563821, + "thread": 31 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 806850, + "thread": 6 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 881776, + "thread": 14 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1131551, + "thread": 14 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1164324, + "thread": 2 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1418999, + "thread": 26 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1552759, + "thread": 23 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1797295, + "thread": 20 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1891606, + "thread": 14 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 1981534, + "thread": 14 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2159295, + "thread": 26 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2442795, + "thread": 1 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2586975, + "thread": 12 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2781233, + "thread": 21 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2791870, + "thread": 31 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 2959191, + "thread": 5 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 3174343, + "thread": 25 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 3407320, + "thread": 18 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 3479826, + "thread": 18 + } + }, + { + "amount": "83.317693980", + "slot": { + "period": 3631520, + "thread": 3 + } + }, + { + "amount": "83.317693986", + "slot": { + "period": 3824630, + "thread": 3 + } + } + ], + "AU1JaLsXeKWtsqj8ioWDrW8uFsribLC6ew7szHFTwYezqE8URky6": [ + { + "amount": "235.768890362", + "slot": { + "period": 93273, + "thread": 5 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 170856, + "thread": 7 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 435980, + "thread": 14 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 563108, + "thread": 4 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 751382, + "thread": 16 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 868682, + "thread": 1 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1116785, + "thread": 14 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1223146, + "thread": 24 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1411340, + "thread": 3 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1571208, + "thread": 18 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1719948, + "thread": 30 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1945105, + "thread": 29 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 1994780, + "thread": 29 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 2220907, + "thread": 0 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 2412089, + "thread": 23 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 2496828, + "thread": 16 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 2665378, + "thread": 10 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 2813086, + "thread": 11 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 3013878, + "thread": 1 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 3136550, + "thread": 6 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 3439757, + "thread": 26 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 3608935, + "thread": 4 + } + }, + { + "amount": "235.768890362", + "slot": { + "period": 3753123, + "thread": 17 + } + }, + { + "amount": "235.768890352", + "slot": { + "period": 3811236, + "thread": 14 + } + } + ], + "AU1JaekmtbWALSJDaHD6JHyNeV2FxoL2WdPUShW6hfQSMF88sdFV": [ + { + "amount": "91.327648567", + "slot": { + "period": 46738, + "thread": 25 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 253739, + "thread": 10 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 489256, + "thread": 6 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 602540, + "thread": 30 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 714468, + "thread": 0 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 871119, + "thread": 2 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1024964, + "thread": 26 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1159167, + "thread": 25 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1344741, + "thread": 28 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1621674, + "thread": 22 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1713002, + "thread": 9 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 1811496, + "thread": 13 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2118988, + "thread": 24 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2235480, + "thread": 2 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2415120, + "thread": 10 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2585202, + "thread": 21 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2757972, + "thread": 4 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 2853560, + "thread": 13 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 3018922, + "thread": 7 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 3124859, + "thread": 11 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 3419731, + "thread": 27 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 3532800, + "thread": 27 + } + }, + { + "amount": "91.327648567", + "slot": { + "period": 3685530, + "thread": 10 + } + }, + { + "amount": "91.327648574", + "slot": { + "period": 3871948, + "thread": 18 + } + } + ], + "AU1JbSRmerEwK6Ca6c3n7n43HUvTuLwhk5mkNTkNf1XdDcvgsum2": [ + { + "amount": "213.273315777", + "slot": { + "period": 64756, + "thread": 4 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 249134, + "thread": 10 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 350467, + "thread": 8 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 645719, + "thread": 29 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 666373, + "thread": 3 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 926452, + "thread": 15 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1065630, + "thread": 6 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1182317, + "thread": 4 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1375825, + "thread": 14 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1575369, + "thread": 31 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1784088, + "thread": 13 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 1877434, + "thread": 30 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2042288, + "thread": 0 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2271273, + "thread": 26 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2375430, + "thread": 15 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2591799, + "thread": 19 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2627786, + "thread": 10 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 2866746, + "thread": 11 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 3003087, + "thread": 17 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 3196187, + "thread": 21 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 3434689, + "thread": 13 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 3489431, + "thread": 26 + } + }, + { + "amount": "213.273315777", + "slot": { + "period": 3734936, + "thread": 5 + } + }, + { + "amount": "213.273315776", + "slot": { + "period": 3812704, + "thread": 28 + } + } + ], + "AU1Jbf1S8qArcrmne2WF3g1fAhiSJBY3CQKBz8Ty7YaTcB25jbFF": [ + { + "amount": "151.833842095", + "slot": { + "period": 25365, + "thread": 13 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 208295, + "thread": 15 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 431645, + "thread": 2 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 496499, + "thread": 22 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 818106, + "thread": 21 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 952655, + "thread": 16 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 985819, + "thread": 16 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 1251123, + "thread": 4 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 1477053, + "thread": 17 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 1553940, + "thread": 26 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 1782753, + "thread": 7 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 1861111, + "thread": 17 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2018867, + "thread": 8 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2285213, + "thread": 14 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2386314, + "thread": 22 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2604358, + "thread": 11 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2665646, + "thread": 28 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 2806230, + "thread": 29 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 3120384, + "thread": 2 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 3262003, + "thread": 18 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 3304208, + "thread": 4 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 3505773, + "thread": 19 + } + }, + { + "amount": "151.833842095", + "slot": { + "period": 3694504, + "thread": 31 + } + }, + { + "amount": "151.833842097", + "slot": { + "period": 3839037, + "thread": 30 + } + } + ], + "AU1JbqqKxs8Z95dY4pYPVcMvScwSFqiLQubzFEgDrbSL5sVRas6V": [ + { + "amount": "73.555919352", + "slot": { + "period": 71464, + "thread": 7 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 258038, + "thread": 4 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 407138, + "thread": 22 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 515778, + "thread": 23 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 747770, + "thread": 27 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 899486, + "thread": 26 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1003715, + "thread": 5 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1183261, + "thread": 23 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1458838, + "thread": 14 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1585232, + "thread": 31 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1800347, + "thread": 4 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 1824498, + "thread": 15 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2055494, + "thread": 6 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2227783, + "thread": 19 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2361808, + "thread": 29 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2558253, + "thread": 1 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2675051, + "thread": 14 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 2950488, + "thread": 24 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 3028060, + "thread": 2 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 3241363, + "thread": 12 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 3332693, + "thread": 8 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 3535573, + "thread": 26 + } + }, + { + "amount": "73.555919352", + "slot": { + "period": 3727455, + "thread": 3 + } + }, + { + "amount": "73.555919340", + "slot": { + "period": 3933655, + "thread": 23 + } + } + ], + "AU1Jcrnwb3yt2sLj4rgcCJxEECAz7ptbGQtUUgjQxLmcSQj8GWhR": [ + { + "amount": "176.019375222", + "slot": { + "period": 39428, + "thread": 7 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 200169, + "thread": 10 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 329680, + "thread": 16 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 592913, + "thread": 1 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 739393, + "thread": 20 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 893554, + "thread": 10 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1060261, + "thread": 10 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1317134, + "thread": 28 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1452888, + "thread": 3 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1643194, + "thread": 23 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1691119, + "thread": 11 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 1855563, + "thread": 29 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2053577, + "thread": 1 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2144097, + "thread": 16 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2414165, + "thread": 3 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2507829, + "thread": 6 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2630385, + "thread": 24 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 2918994, + "thread": 10 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 3039055, + "thread": 2 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 3154644, + "thread": 10 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 3393997, + "thread": 23 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 3615767, + "thread": 14 + } + }, + { + "amount": "176.019375222", + "slot": { + "period": 3678720, + "thread": 7 + } + }, + { + "amount": "176.019375210", + "slot": { + "period": 3896390, + "thread": 5 + } + } + ], + "AU1JesrkmeFNsYmXV7NFoDXGGVopZQwscYcbDB9TN5YDVRbnLnzf": [ + { + "amount": "125.686638267", + "slot": { + "period": 64806, + "thread": 24 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 278559, + "thread": 6 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 460154, + "thread": 23 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 539711, + "thread": 19 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 796683, + "thread": 18 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 955986, + "thread": 8 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1147232, + "thread": 13 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1305953, + "thread": 16 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1328496, + "thread": 28 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1609388, + "thread": 19 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1775322, + "thread": 17 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 1896679, + "thread": 25 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2095846, + "thread": 16 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2169638, + "thread": 25 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2356017, + "thread": 14 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2469573, + "thread": 26 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2642439, + "thread": 30 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 2883084, + "thread": 19 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 3012905, + "thread": 31 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 3123909, + "thread": 14 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 3334578, + "thread": 29 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 3506597, + "thread": 28 + } + }, + { + "amount": "125.686638267", + "slot": { + "period": 3720178, + "thread": 14 + } + }, + { + "amount": "125.686638259", + "slot": { + "period": 3927598, + "thread": 13 + } + } + ], + "AU1JfuuZ3sNZjxXqz2WUdDyZ9tj42mDSoiaLwHNpms7cAeDX2Mzy": [ + { + "amount": "465.861534717", + "slot": { + "period": 56730, + "thread": 17 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 215733, + "thread": 18 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 468370, + "thread": 30 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 526612, + "thread": 21 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 800760, + "thread": 6 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 982582, + "thread": 2 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1120159, + "thread": 11 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1222721, + "thread": 13 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1416472, + "thread": 7 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1508898, + "thread": 0 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1788453, + "thread": 26 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1896294, + "thread": 2 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 1989751, + "thread": 6 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2180514, + "thread": 6 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2439001, + "thread": 16 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2511118, + "thread": 5 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2687138, + "thread": 19 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2913166, + "thread": 20 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 2964060, + "thread": 8 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 3262049, + "thread": 14 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 3447901, + "thread": 22 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 3493352, + "thread": 4 + } + }, + { + "amount": "465.861534717", + "slot": { + "period": 3638607, + "thread": 6 + } + }, + { + "amount": "465.861534712", + "slot": { + "period": 3795176, + "thread": 13 + } + } + ], + "AU1JgPsaiYsmsbUWj2ncY444NgEDYnsmF5HcTGQHZUwSnVQnjW4r": [ + { + "amount": "230.439345886", + "slot": { + "period": 108193, + "thread": 27 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 288957, + "thread": 15 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 483359, + "thread": 26 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 548193, + "thread": 25 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 683197, + "thread": 22 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 832870, + "thread": 12 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1071155, + "thread": 11 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1262680, + "thread": 24 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1371771, + "thread": 17 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1494364, + "thread": 31 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1664913, + "thread": 24 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 1962697, + "thread": 25 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2100830, + "thread": 6 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2272388, + "thread": 8 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2364354, + "thread": 29 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2478001, + "thread": 30 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2740452, + "thread": 23 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 2845506, + "thread": 27 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 3106092, + "thread": 18 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 3258533, + "thread": 8 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 3406119, + "thread": 21 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 3563719, + "thread": 5 + } + }, + { + "amount": "230.439345886", + "slot": { + "period": 3656637, + "thread": 14 + } + }, + { + "amount": "230.439345898", + "slot": { + "period": 3828352, + "thread": 1 + } + } + ], + "AU1JgUZ26Eku8eiDycZpp6J3EdVU27QPJjccM5MyDg6MTY6dWff3": [ + { + "amount": "133.915199904", + "slot": { + "period": 26706, + "thread": 1 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 318857, + "thread": 0 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 466170, + "thread": 24 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 569142, + "thread": 26 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 727875, + "thread": 25 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 826271, + "thread": 15 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1043365, + "thread": 28 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1257410, + "thread": 18 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1448815, + "thread": 23 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1611446, + "thread": 5 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1805615, + "thread": 18 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 1889593, + "thread": 3 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2108499, + "thread": 14 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2188622, + "thread": 3 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2443028, + "thread": 9 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2495002, + "thread": 4 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2750465, + "thread": 27 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2797929, + "thread": 17 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 2993817, + "thread": 7 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 3131454, + "thread": 11 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 3351240, + "thread": 23 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 3459728, + "thread": 10 + } + }, + { + "amount": "133.915199904", + "slot": { + "period": 3779353, + "thread": 11 + } + }, + { + "amount": "133.915199908", + "slot": { + "period": 3931788, + "thread": 21 + } + } + ], + "AU1JgfHQJqbJUzBtJ7HmAxL4bvfAiQ8oJJEpqfgrTMup75rmcB7R": [ + { + "amount": "86.954634081", + "slot": { + "period": 149528, + "thread": 8 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 313943, + "thread": 17 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 454560, + "thread": 9 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 573919, + "thread": 25 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 720684, + "thread": 13 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 894729, + "thread": 20 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1036780, + "thread": 23 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1278435, + "thread": 8 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1453736, + "thread": 16 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1553664, + "thread": 6 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1744819, + "thread": 16 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 1971296, + "thread": 5 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2042512, + "thread": 18 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2242393, + "thread": 17 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2348608, + "thread": 26 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2489059, + "thread": 24 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2717891, + "thread": 22 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 2885742, + "thread": 18 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 3107503, + "thread": 30 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 3239446, + "thread": 7 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 3322771, + "thread": 12 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 3498873, + "thread": 23 + } + }, + { + "amount": "86.954634081", + "slot": { + "period": 3636039, + "thread": 12 + } + }, + { + "amount": "86.954634082", + "slot": { + "period": 3824837, + "thread": 19 + } + } + ], + "AU1JhMtj7p1HyiASxoaN8bj2oZD2b8uJNsY3xRyq1b2yYjahuzLH": [ + { + "amount": "154.557017647", + "slot": { + "period": 160687, + "thread": 17 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 195287, + "thread": 25 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 375060, + "thread": 19 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 567117, + "thread": 16 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 769312, + "thread": 24 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 915097, + "thread": 23 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1047479, + "thread": 5 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1268644, + "thread": 29 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1386654, + "thread": 26 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1495562, + "thread": 16 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1727773, + "thread": 1 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 1831126, + "thread": 1 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2089594, + "thread": 21 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2200604, + "thread": 2 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2443370, + "thread": 22 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2493030, + "thread": 20 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2771317, + "thread": 17 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 2936122, + "thread": 17 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 3057323, + "thread": 26 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 3277242, + "thread": 13 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 3300264, + "thread": 26 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 3501446, + "thread": 4 + } + }, + { + "amount": "154.557017647", + "slot": { + "period": 3646124, + "thread": 18 + } + }, + { + "amount": "154.557017638", + "slot": { + "period": 3830120, + "thread": 2 + } + } + ], + "AU1JhojckWaTfzX2LnsqgtfnLvkRBJJv6Gb51aBCWjYPT8Zr6VqX": [ + { + "amount": "333.733625157", + "slot": { + "period": 151988, + "thread": 0 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 203647, + "thread": 8 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 403390, + "thread": 20 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 630959, + "thread": 0 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 725919, + "thread": 31 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 897250, + "thread": 7 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1042114, + "thread": 4 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1226931, + "thread": 1 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1417169, + "thread": 0 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1530768, + "thread": 27 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1802235, + "thread": 28 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 1932679, + "thread": 6 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2027443, + "thread": 9 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2167159, + "thread": 12 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2407568, + "thread": 18 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2568458, + "thread": 24 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2745298, + "thread": 23 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 2882721, + "thread": 16 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 3096443, + "thread": 15 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 3198466, + "thread": 1 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 3397998, + "thread": 19 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 3604189, + "thread": 1 + } + }, + { + "amount": "333.733625157", + "slot": { + "period": 3725194, + "thread": 9 + } + }, + { + "amount": "333.733625150", + "slot": { + "period": 3898526, + "thread": 28 + } + } + ], + "AU1JjUqSRjWmJ43w231H7tAnkjkHVoG5FqGEtWm6HmUrhjCM4289": [ + { + "amount": "178.924469985", + "slot": { + "period": 69198, + "thread": 0 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 255076, + "thread": 24 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 432998, + "thread": 14 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 491924, + "thread": 30 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 665242, + "thread": 29 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 929270, + "thread": 29 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1024138, + "thread": 2 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1291344, + "thread": 20 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1393407, + "thread": 25 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1537825, + "thread": 14 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1663202, + "thread": 16 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 1876768, + "thread": 12 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2061612, + "thread": 6 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2152299, + "thread": 4 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2313821, + "thread": 29 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2523878, + "thread": 30 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2756993, + "thread": 21 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 2922563, + "thread": 19 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 3015549, + "thread": 3 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 3170159, + "thread": 4 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 3361272, + "thread": 6 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 3461384, + "thread": 11 + } + }, + { + "amount": "178.924469985", + "slot": { + "period": 3720770, + "thread": 30 + } + }, + { + "amount": "178.924469976", + "slot": { + "period": 3865208, + "thread": 6 + } + } + ], + "AU1JmEiUNygwBgQGjJkiFpoRciC6PeTEzib7u2czth3RXXgFZudK": [ + { + "amount": "151.303355581", + "slot": { + "period": 121920, + "thread": 15 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 309360, + "thread": 6 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 482962, + "thread": 7 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 610213, + "thread": 21 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 756034, + "thread": 14 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 941890, + "thread": 28 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1043522, + "thread": 28 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1171489, + "thread": 27 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1418072, + "thread": 28 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1515681, + "thread": 12 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1699469, + "thread": 8 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1959514, + "thread": 5 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 1993633, + "thread": 11 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 2230090, + "thread": 11 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 2398956, + "thread": 6 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 2509459, + "thread": 9 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 2773939, + "thread": 31 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 2888200, + "thread": 12 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 3096342, + "thread": 6 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 3285630, + "thread": 20 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 3344874, + "thread": 20 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 3611752, + "thread": 8 + } + }, + { + "amount": "151.303355581", + "slot": { + "period": 3735226, + "thread": 28 + } + }, + { + "amount": "151.303355573", + "slot": { + "period": 3880469, + "thread": 20 + } + } + ], + "AU1Jn6GEyCCHubG2gCT9QpEsq1gWdYKgp8FmVw1fW4YRDB58CwrV": [ + { + "amount": "204.348831082", + "slot": { + "period": 137697, + "thread": 17 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 253816, + "thread": 15 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 488886, + "thread": 30 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 593247, + "thread": 14 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 736138, + "thread": 27 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 897319, + "thread": 18 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1031603, + "thread": 16 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1281602, + "thread": 8 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1353598, + "thread": 22 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1603947, + "thread": 20 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1695988, + "thread": 10 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 1943414, + "thread": 31 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2125254, + "thread": 31 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2164572, + "thread": 2 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2380032, + "thread": 18 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2621095, + "thread": 22 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2717833, + "thread": 0 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 2811662, + "thread": 28 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 3010378, + "thread": 0 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 3175957, + "thread": 1 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 3301074, + "thread": 6 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 3463695, + "thread": 22 + } + }, + { + "amount": "204.348831082", + "slot": { + "period": 3737272, + "thread": 7 + } + }, + { + "amount": "204.348831092", + "slot": { + "period": 3848879, + "thread": 9 + } + } + ], + "AU1JnNQdbnLoigYCrRCyNX9B5cwnM5MneGxUA1ziBpbvjbmxubM9": [ + { + "amount": "66.553022924", + "slot": { + "period": 118502, + "thread": 1 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 189146, + "thread": 5 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 325522, + "thread": 31 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 498441, + "thread": 22 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 757777, + "thread": 15 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 952296, + "thread": 15 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1115097, + "thread": 10 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1277024, + "thread": 25 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1423032, + "thread": 4 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1620716, + "thread": 14 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1797070, + "thread": 26 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 1884113, + "thread": 21 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2035049, + "thread": 12 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2256983, + "thread": 22 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2337773, + "thread": 10 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2568905, + "thread": 18 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2771589, + "thread": 14 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 2835537, + "thread": 21 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 3071219, + "thread": 11 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 3154901, + "thread": 18 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 3314667, + "thread": 8 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 3583606, + "thread": 1 + } + }, + { + "amount": "66.553022924", + "slot": { + "period": 3670920, + "thread": 10 + } + }, + { + "amount": "66.553022931", + "slot": { + "period": 3861458, + "thread": 0 + } + } + ], + "AU1JnWGihn53SBiHb1jgBf3vBiuB4VUnZYh1nGRUq56JKYZBXXbL": [ + { + "amount": "433.294942396", + "slot": { + "period": 144756, + "thread": 4 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 283553, + "thread": 27 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 386993, + "thread": 14 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 633953, + "thread": 9 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 797193, + "thread": 9 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 873810, + "thread": 7 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1032889, + "thread": 18 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1174009, + "thread": 30 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1425331, + "thread": 16 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1491844, + "thread": 16 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1774262, + "thread": 5 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 1810707, + "thread": 28 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2014437, + "thread": 2 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2181837, + "thread": 15 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2297618, + "thread": 5 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2502912, + "thread": 31 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2763606, + "thread": 17 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 2832815, + "thread": 25 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 3005468, + "thread": 25 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 3164105, + "thread": 1 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 3423598, + "thread": 2 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 3568634, + "thread": 26 + } + }, + { + "amount": "433.294942396", + "slot": { + "period": 3704316, + "thread": 15 + } + }, + { + "amount": "433.294942390", + "slot": { + "period": 3800199, + "thread": 30 + } + } + ], + "AU1JoKspLF4eUunsKiH4EhdEmD4r46njiR6VUo1N1mqbV4cT9UPv": [ + { + "amount": "121.685864500", + "slot": { + "period": 118056, + "thread": 10 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 293913, + "thread": 24 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 456959, + "thread": 1 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 634995, + "thread": 24 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 679278, + "thread": 7 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 821413, + "thread": 11 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1035010, + "thread": 15 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1296891, + "thread": 3 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1428443, + "thread": 11 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1547444, + "thread": 0 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1760493, + "thread": 13 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 1865528, + "thread": 31 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2083315, + "thread": 21 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2247385, + "thread": 6 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2365323, + "thread": 2 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2487254, + "thread": 11 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2651631, + "thread": 3 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 2798006, + "thread": 9 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 3089782, + "thread": 2 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 3229347, + "thread": 13 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 3384201, + "thread": 14 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 3611726, + "thread": 29 + } + }, + { + "amount": "121.685864500", + "slot": { + "period": 3742923, + "thread": 25 + } + }, + { + "amount": "121.685864497", + "slot": { + "period": 3818224, + "thread": 17 + } + } + ], + "AU1JoMCF5yPFU9gKNe8b5Z44ugvcCPQ9crbMaBDhdJD7pDHFZcHD": [ + { + "amount": "190.180755972", + "slot": { + "period": 50705, + "thread": 27 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 182939, + "thread": 3 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 337741, + "thread": 0 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 523676, + "thread": 5 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 689839, + "thread": 1 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 874882, + "thread": 4 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 982953, + "thread": 14 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 1305496, + "thread": 14 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 1410516, + "thread": 28 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 1625272, + "thread": 6 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 1675677, + "thread": 17 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 1968050, + "thread": 22 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2022466, + "thread": 18 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2178530, + "thread": 18 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2430719, + "thread": 8 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2473931, + "thread": 11 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2790125, + "thread": 20 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 2909390, + "thread": 16 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 3110804, + "thread": 13 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 3154656, + "thread": 21 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 3319630, + "thread": 8 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 3488039, + "thread": 8 + } + }, + { + "amount": "190.180755972", + "slot": { + "period": 3688597, + "thread": 15 + } + }, + { + "amount": "190.180755965", + "slot": { + "period": 3829414, + "thread": 9 + } + } + ], + "AU1JohA8FRTBv1QJHFVBa2vpVNZ4zA6DuGDcWLTg1CR5dbhdeP8t": [ + { + "amount": "502.114237138", + "slot": { + "period": 94763, + "thread": 3 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 262966, + "thread": 19 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 391065, + "thread": 31 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 552152, + "thread": 6 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 687879, + "thread": 3 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 875263, + "thread": 15 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1144325, + "thread": 28 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1244641, + "thread": 31 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1370186, + "thread": 29 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1640431, + "thread": 25 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1691037, + "thread": 12 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 1855455, + "thread": 6 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2086291, + "thread": 27 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2202899, + "thread": 24 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2336003, + "thread": 27 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2574079, + "thread": 12 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2717977, + "thread": 4 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2804788, + "thread": 2 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 2980788, + "thread": 6 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 3202715, + "thread": 20 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 3423171, + "thread": 2 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 3581951, + "thread": 6 + } + }, + { + "amount": "502.114237138", + "slot": { + "period": 3635232, + "thread": 5 + } + }, + { + "amount": "502.114237134", + "slot": { + "period": 3805122, + "thread": 27 + } + } + ], + "AU1JonHXrr41Qm1oGE9Taf4DFscBrUHTgF8jGNAg3zWo1hKEiQf7": [ + { + "amount": "645.321371838", + "slot": { + "period": 64544, + "thread": 0 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 299480, + "thread": 18 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 461344, + "thread": 3 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 527478, + "thread": 11 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 680290, + "thread": 24 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 933458, + "thread": 31 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1096907, + "thread": 28 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1310924, + "thread": 21 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1402882, + "thread": 4 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1512322, + "thread": 0 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1793079, + "thread": 29 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 1809777, + "thread": 24 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2013860, + "thread": 13 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2215718, + "thread": 14 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2327288, + "thread": 25 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2617267, + "thread": 16 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2687899, + "thread": 24 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 2899090, + "thread": 27 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 3081422, + "thread": 29 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 3121926, + "thread": 7 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 3372348, + "thread": 19 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 3511544, + "thread": 26 + } + }, + { + "amount": "645.321371838", + "slot": { + "period": 3640894, + "thread": 22 + } + }, + { + "amount": "645.321371837", + "slot": { + "period": 3846044, + "thread": 21 + } + } + ], + "AU1JpSyZAQjhC9SUntot5y9PDdgbeQVctvT9y7bS6ibpMrkVRRGQ": [ + { + "amount": "183.207158524", + "slot": { + "period": 36091, + "thread": 2 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 314826, + "thread": 19 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 408792, + "thread": 3 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 564402, + "thread": 19 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 693806, + "thread": 10 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 825448, + "thread": 15 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1023715, + "thread": 18 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1195971, + "thread": 13 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1381689, + "thread": 21 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1610661, + "thread": 28 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1764861, + "thread": 2 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 1831926, + "thread": 11 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2112618, + "thread": 17 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2153950, + "thread": 23 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2386182, + "thread": 17 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2542359, + "thread": 24 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2625660, + "thread": 13 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2916972, + "thread": 20 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 2984065, + "thread": 11 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 3233651, + "thread": 12 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 3443171, + "thread": 16 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 3503772, + "thread": 10 + } + }, + { + "amount": "183.207158524", + "slot": { + "period": 3688550, + "thread": 2 + } + }, + { + "amount": "183.207158529", + "slot": { + "period": 3837080, + "thread": 12 + } + } + ], + "AU1JpwzGKZwPgMqxWGwahmFQ4i6tCp3rwFB5EDfhPfrZM7hX3yML": [ + { + "amount": "468.937534118", + "slot": { + "period": 86220, + "thread": 11 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 221017, + "thread": 2 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 359176, + "thread": 14 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 579303, + "thread": 2 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 689220, + "thread": 22 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 866806, + "thread": 4 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1149989, + "thread": 15 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1270725, + "thread": 14 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1443782, + "thread": 28 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1490957, + "thread": 4 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1794300, + "thread": 9 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 1879343, + "thread": 22 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2033636, + "thread": 26 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2172708, + "thread": 4 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2358159, + "thread": 0 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2467358, + "thread": 24 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2666788, + "thread": 2 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 2811536, + "thread": 20 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 3011721, + "thread": 10 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 3246583, + "thread": 17 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 3360142, + "thread": 4 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 3602887, + "thread": 8 + } + }, + { + "amount": "468.937534118", + "slot": { + "period": 3738538, + "thread": 16 + } + }, + { + "amount": "468.937534122", + "slot": { + "period": 3889481, + "thread": 9 + } + } + ], + "AU1Jpyw1Foh9daxYkLsg7pch7tj38iXwvDWPU7wi5L3EaH7AJi6Y": [ + { + "amount": "399.005479136", + "slot": { + "period": 45851, + "thread": 27 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 301574, + "thread": 7 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 383188, + "thread": 29 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 577379, + "thread": 22 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 796387, + "thread": 29 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 880179, + "thread": 31 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1068361, + "thread": 0 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1186816, + "thread": 18 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1401394, + "thread": 5 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1516769, + "thread": 15 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1694112, + "thread": 25 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 1908591, + "thread": 23 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2128138, + "thread": 12 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2223775, + "thread": 4 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2419600, + "thread": 29 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2589066, + "thread": 9 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2624915, + "thread": 17 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 2892750, + "thread": 17 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 3064677, + "thread": 13 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 3188194, + "thread": 7 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 3304030, + "thread": 8 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 3617519, + "thread": 26 + } + }, + { + "amount": "399.005479136", + "slot": { + "period": 3701968, + "thread": 29 + } + }, + { + "amount": "399.005479145", + "slot": { + "period": 3856859, + "thread": 8 + } + } + ], + "AU1Jr8JtKjrNw4FGeSQsSCcVR8zZc4AYNaWNz7Bzy6NULHQefxWg": [ + { + "amount": "130.936203624", + "slot": { + "period": 101236, + "thread": 18 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 274747, + "thread": 13 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 395025, + "thread": 1 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 597191, + "thread": 0 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 657239, + "thread": 19 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 874210, + "thread": 6 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1017139, + "thread": 12 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1180334, + "thread": 6 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1317836, + "thread": 2 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1553062, + "thread": 15 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1787458, + "thread": 11 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 1854276, + "thread": 8 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2061276, + "thread": 16 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2257426, + "thread": 26 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2455101, + "thread": 14 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2498582, + "thread": 28 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2712432, + "thread": 19 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 2908245, + "thread": 20 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 3094989, + "thread": 24 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 3238602, + "thread": 24 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 3408569, + "thread": 27 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 3458302, + "thread": 16 + } + }, + { + "amount": "130.936203624", + "slot": { + "period": 3683365, + "thread": 5 + } + }, + { + "amount": "130.936203634", + "slot": { + "period": 3815452, + "thread": 24 + } + } + ], + "AU1JrGGzug4WLPZnxKKt1rw5JKXfd9AhZRr65DV93EWLMNsawy4W": [ + { + "amount": "134.995708194", + "slot": { + "period": 131210, + "thread": 22 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 238653, + "thread": 31 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 368969, + "thread": 13 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 544167, + "thread": 28 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 706706, + "thread": 2 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 928836, + "thread": 11 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1093888, + "thread": 2 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1259060, + "thread": 31 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1402256, + "thread": 2 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1551744, + "thread": 10 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1795136, + "thread": 26 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 1830808, + "thread": 5 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2109044, + "thread": 1 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2178953, + "thread": 5 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2448557, + "thread": 6 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2495208, + "thread": 29 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2764286, + "thread": 7 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2947393, + "thread": 15 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 2993102, + "thread": 14 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 3286763, + "thread": 29 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 3429814, + "thread": 8 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 3467271, + "thread": 10 + } + }, + { + "amount": "134.995708194", + "slot": { + "period": 3668477, + "thread": 4 + } + }, + { + "amount": "134.995708202", + "slot": { + "period": 3895140, + "thread": 31 + } + } + ], + "AU1JrhF9veEHFLfoFPPQMePgUcWWrXNASyA1iVMcgo8jmtcooG31": [ + { + "amount": "137.506792982", + "slot": { + "period": 63453, + "thread": 7 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 253864, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 419432, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 544745, + "thread": 10 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 738871, + "thread": 13 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 850473, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1014034, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1193238, + "thread": 18 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1401934, + "thread": 29 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1595699, + "thread": 16 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1649239, + "thread": 12 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 1887422, + "thread": 11 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2042682, + "thread": 9 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2228117, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2371278, + "thread": 5 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2556269, + "thread": 20 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2655873, + "thread": 6 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 2883887, + "thread": 13 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 3104966, + "thread": 31 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 3189088, + "thread": 17 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 3373880, + "thread": 25 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 3597941, + "thread": 30 + } + }, + { + "amount": "137.506792982", + "slot": { + "period": 3696692, + "thread": 18 + } + }, + { + "amount": "137.506792991", + "slot": { + "period": 3801100, + "thread": 14 + } + } + ], + "AU1JrnK9HpPTkGSUnzgLh6vGcV4Lr14aL3ipa5DqEJBLckkXEQK1": [ + { + "amount": "250.768534741", + "slot": { + "period": 28588, + "thread": 28 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 236031, + "thread": 8 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 354354, + "thread": 31 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 620310, + "thread": 22 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 731134, + "thread": 12 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 834295, + "thread": 20 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1045023, + "thread": 21 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1272043, + "thread": 8 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1438644, + "thread": 4 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1545589, + "thread": 10 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1652759, + "thread": 2 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 1811811, + "thread": 14 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2023476, + "thread": 28 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2256491, + "thread": 11 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2308921, + "thread": 18 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2618401, + "thread": 1 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2773118, + "thread": 0 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 2914965, + "thread": 5 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 3109658, + "thread": 10 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 3151089, + "thread": 13 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 3378593, + "thread": 20 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 3508330, + "thread": 21 + } + }, + { + "amount": "250.768534741", + "slot": { + "period": 3738866, + "thread": 17 + } + }, + { + "amount": "250.768534742", + "slot": { + "period": 3838362, + "thread": 1 + } + } + ], + "AU1JrqMR77uX6i5FwptMhCNGPt167DdLr9ktomukRVzEnmRt5g12": [ + { + "amount": "140.587057141", + "slot": { + "period": 123693, + "thread": 3 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 184707, + "thread": 22 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 428163, + "thread": 16 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 575576, + "thread": 4 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 692515, + "thread": 0 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 860554, + "thread": 20 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 996706, + "thread": 25 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 1154119, + "thread": 7 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 1424529, + "thread": 24 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 1614281, + "thread": 23 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 1652841, + "thread": 7 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 1964338, + "thread": 11 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2090589, + "thread": 17 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2192487, + "thread": 8 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2391697, + "thread": 1 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2518194, + "thread": 21 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2719531, + "thread": 29 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 2850013, + "thread": 8 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 3048453, + "thread": 17 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 3230751, + "thread": 28 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 3338681, + "thread": 16 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 3522995, + "thread": 31 + } + }, + { + "amount": "140.587057141", + "slot": { + "period": 3757855, + "thread": 1 + } + }, + { + "amount": "140.587057147", + "slot": { + "period": 3840536, + "thread": 2 + } + } + ], + "AU1JsZR6hsnvR46hexgq2FLbhiHz23PFFQeSpTsTejdiJNVz6Vxf": [ + { + "amount": "85.165318041", + "slot": { + "period": 124380, + "thread": 31 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 284716, + "thread": 23 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 446926, + "thread": 4 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 561312, + "thread": 13 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 679611, + "thread": 4 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 926861, + "thread": 26 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1140181, + "thread": 8 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1238550, + "thread": 4 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1317903, + "thread": 9 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1555222, + "thread": 25 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1652834, + "thread": 14 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 1957775, + "thread": 22 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2112764, + "thread": 20 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2207338, + "thread": 1 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2436816, + "thread": 3 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2522074, + "thread": 17 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2647001, + "thread": 21 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 2800131, + "thread": 25 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 3067142, + "thread": 26 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 3211348, + "thread": 20 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 3290523, + "thread": 11 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 3503580, + "thread": 11 + } + }, + { + "amount": "85.165318041", + "slot": { + "period": 3779866, + "thread": 9 + } + }, + { + "amount": "85.165318040", + "slot": { + "period": 3826226, + "thread": 27 + } + } + ], + "AU1JssvYxNssAkaFfVp4LyYAHGJK6WhnTnoidFb13ff7oqQ2LdhK": [ + { + "amount": "206.017143853", + "slot": { + "period": 13653, + "thread": 16 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 244759, + "thread": 13 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 400402, + "thread": 23 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 544560, + "thread": 25 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 787689, + "thread": 8 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 855007, + "thread": 8 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1081734, + "thread": 9 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1231286, + "thread": 27 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1453644, + "thread": 27 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1542003, + "thread": 21 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1773663, + "thread": 7 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 1907555, + "thread": 26 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2139033, + "thread": 18 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2277413, + "thread": 10 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2443663, + "thread": 25 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2558688, + "thread": 20 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2715821, + "thread": 25 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2866536, + "thread": 26 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 2976125, + "thread": 25 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 3251312, + "thread": 8 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 3303624, + "thread": 4 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 3510741, + "thread": 1 + } + }, + { + "amount": "206.017143853", + "slot": { + "period": 3750113, + "thread": 7 + } + }, + { + "amount": "206.017143862", + "slot": { + "period": 3794016, + "thread": 6 + } + } + ], + "AU1Jt8Mcq8aE8x7S3CUQ43oGoFcm417X8SzVzQCWwxwtWuvwdC5Y": [ + { + "amount": "158.059206587", + "slot": { + "period": 54926, + "thread": 9 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 316990, + "thread": 25 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 473174, + "thread": 28 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 552511, + "thread": 21 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 725802, + "thread": 26 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 897259, + "thread": 25 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1073708, + "thread": 18 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1181852, + "thread": 15 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1457953, + "thread": 2 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1494891, + "thread": 24 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1723282, + "thread": 6 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 1944122, + "thread": 30 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2086007, + "thread": 9 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2195548, + "thread": 29 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2323080, + "thread": 20 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2530377, + "thread": 20 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2693361, + "thread": 17 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 2904635, + "thread": 9 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 3120607, + "thread": 6 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 3122886, + "thread": 4 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 3376456, + "thread": 20 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 3586845, + "thread": 18 + } + }, + { + "amount": "158.059206587", + "slot": { + "period": 3691621, + "thread": 0 + } + }, + { + "amount": "158.059206598", + "slot": { + "period": 3892488, + "thread": 17 + } + } + ], + "AU1JtFjdfDUJ3HQdT3B5bjS4RUxD163PLi89TGQFG9xR69f8FhPs": [ + { + "amount": "279.977773195", + "slot": { + "period": 25654, + "thread": 19 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 177763, + "thread": 20 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 460713, + "thread": 13 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 492596, + "thread": 21 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 721228, + "thread": 20 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 851416, + "thread": 20 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1012966, + "thread": 13 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1229969, + "thread": 7 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1453851, + "thread": 25 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1570626, + "thread": 7 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1779875, + "thread": 8 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 1827809, + "thread": 0 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2052430, + "thread": 18 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2148928, + "thread": 20 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2417034, + "thread": 25 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2578860, + "thread": 6 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2716024, + "thread": 16 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 2910885, + "thread": 28 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 3114946, + "thread": 28 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 3202840, + "thread": 0 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 3318211, + "thread": 23 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 3574950, + "thread": 8 + } + }, + { + "amount": "279.977773195", + "slot": { + "period": 3649544, + "thread": 25 + } + }, + { + "amount": "279.977773202", + "slot": { + "period": 3857517, + "thread": 8 + } + } + ], + "AU1Jtjw5QnhvTyYuJ9P7enSc4yEeSeH5Q9Etp52qnWNv8siaRSRD": [ + { + "amount": "448.184505735", + "slot": { + "period": 84246, + "thread": 18 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 250005, + "thread": 26 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 400356, + "thread": 19 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 562338, + "thread": 27 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 779916, + "thread": 10 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 870726, + "thread": 9 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1032053, + "thread": 16 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1289222, + "thread": 17 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1410954, + "thread": 14 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1601243, + "thread": 8 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1775991, + "thread": 9 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 1917350, + "thread": 20 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2000057, + "thread": 2 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2280269, + "thread": 23 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2400258, + "thread": 26 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2584614, + "thread": 23 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2749400, + "thread": 8 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2887546, + "thread": 9 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 2958189, + "thread": 1 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 3147071, + "thread": 24 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 3391183, + "thread": 5 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 3576781, + "thread": 10 + } + }, + { + "amount": "448.184505735", + "slot": { + "period": 3664899, + "thread": 1 + } + }, + { + "amount": "448.184505731", + "slot": { + "period": 3924919, + "thread": 25 + } + } + ], + "AU1JvAiCMSVkR4r4QTyjsG42vq6AFa5sTK7PJR8xYpX1jz7pJqpn": [ + { + "amount": "119.253510969", + "slot": { + "period": 102921, + "thread": 17 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 277408, + "thread": 31 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 416411, + "thread": 26 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 616048, + "thread": 15 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 700505, + "thread": 31 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 899445, + "thread": 1 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1084755, + "thread": 29 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1299952, + "thread": 1 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1448684, + "thread": 29 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1489939, + "thread": 18 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1761812, + "thread": 26 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 1892891, + "thread": 4 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2077436, + "thread": 31 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2196347, + "thread": 20 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2440748, + "thread": 5 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2547460, + "thread": 11 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2714198, + "thread": 29 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 2870046, + "thread": 2 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 3062858, + "thread": 13 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 3134347, + "thread": 25 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 3325477, + "thread": 12 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 3527133, + "thread": 27 + } + }, + { + "amount": "119.253510969", + "slot": { + "period": 3718268, + "thread": 26 + } + }, + { + "amount": "119.253510968", + "slot": { + "period": 3795548, + "thread": 12 + } + } + ], + "AU1JvLGQwoMGJVgAjbmZEGojoYjACBW1JL3dHrrc7mGHDrDZmFC9": [ + { + "amount": "106.120394074", + "slot": { + "period": 59498, + "thread": 23 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 265250, + "thread": 17 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 406654, + "thread": 7 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 519894, + "thread": 5 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 732077, + "thread": 15 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 888773, + "thread": 30 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1037134, + "thread": 19 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1259027, + "thread": 3 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1340917, + "thread": 24 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1503905, + "thread": 24 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1732234, + "thread": 20 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 1963183, + "thread": 10 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2090882, + "thread": 24 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2208050, + "thread": 30 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2366820, + "thread": 9 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2613044, + "thread": 19 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2716525, + "thread": 20 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 2806064, + "thread": 15 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 3069173, + "thread": 31 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 3213734, + "thread": 12 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 3316949, + "thread": 22 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 3600799, + "thread": 12 + } + }, + { + "amount": "106.120394074", + "slot": { + "period": 3765098, + "thread": 5 + } + }, + { + "amount": "106.120394070", + "slot": { + "period": 3914299, + "thread": 3 + } + } + ], + "AU1JvW7m9AUCbFScwqBkWqByTNTZDf19AoG9H99bdgGjBTRY5Ugr": [ + { + "amount": "152.490597646", + "slot": { + "period": 35576, + "thread": 13 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 222429, + "thread": 11 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 450266, + "thread": 24 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 564607, + "thread": 3 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 806110, + "thread": 31 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 840988, + "thread": 18 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1129054, + "thread": 26 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1255980, + "thread": 27 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1400681, + "thread": 21 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1631100, + "thread": 14 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1804954, + "thread": 8 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1855706, + "thread": 21 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 1984463, + "thread": 17 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2212961, + "thread": 14 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2383571, + "thread": 26 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2587435, + "thread": 6 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2723329, + "thread": 4 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2933365, + "thread": 5 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 2963845, + "thread": 22 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 3131064, + "thread": 15 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 3317080, + "thread": 8 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 3615575, + "thread": 23 + } + }, + { + "amount": "152.490597646", + "slot": { + "period": 3676662, + "thread": 29 + } + }, + { + "amount": "152.490597655", + "slot": { + "period": 3867990, + "thread": 28 + } + } + ], + "AU1JwE1BNFh9czJpqFEmJUCdo7qo5JN6adasW7RP7TSFHXR1oSAN": [ + { + "amount": "277.838086105", + "slot": { + "period": 89432, + "thread": 24 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 253080, + "thread": 21 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 472822, + "thread": 1 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 504195, + "thread": 15 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 808091, + "thread": 27 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 877190, + "thread": 15 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1132362, + "thread": 21 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1255516, + "thread": 5 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1443352, + "thread": 24 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1613265, + "thread": 3 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1650636, + "thread": 26 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 1848637, + "thread": 26 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2024901, + "thread": 5 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2208142, + "thread": 7 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2427321, + "thread": 31 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2462675, + "thread": 29 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2642595, + "thread": 0 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 2902705, + "thread": 2 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 3055734, + "thread": 13 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 3180294, + "thread": 16 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 3440701, + "thread": 31 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 3617247, + "thread": 26 + } + }, + { + "amount": "277.838086105", + "slot": { + "period": 3667319, + "thread": 10 + } + }, + { + "amount": "277.838086100", + "slot": { + "period": 3937717, + "thread": 20 + } + } + ], + "AU1JwiMyZ9144skjmzg5xDKYRx9oFYpJqrNrb28tU6yhSVauswKV": [ + { + "amount": "73.054015481", + "slot": { + "period": 69804, + "thread": 6 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 288411, + "thread": 3 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 354251, + "thread": 14 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 523772, + "thread": 18 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 668340, + "thread": 13 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 861511, + "thread": 25 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1140633, + "thread": 23 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1296529, + "thread": 28 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1416940, + "thread": 29 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1483620, + "thread": 24 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1681413, + "thread": 27 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 1813467, + "thread": 15 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2096691, + "thread": 23 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2210173, + "thread": 0 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2353433, + "thread": 5 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2527585, + "thread": 17 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2695991, + "thread": 15 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2902479, + "thread": 15 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 2955097, + "thread": 22 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 3168047, + "thread": 19 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 3391472, + "thread": 16 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 3493129, + "thread": 7 + } + }, + { + "amount": "73.054015481", + "slot": { + "period": 3621496, + "thread": 28 + } + }, + { + "amount": "73.054015480", + "slot": { + "period": 3880673, + "thread": 26 + } + } + ], + "AU1JwjL9pZBFSfuVxt2XTWxwQr5LwyAGSRdqqQBcP1mXZVbJM3Rr": [ + { + "amount": "117.947476345", + "slot": { + "period": 59176, + "thread": 20 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 216164, + "thread": 20 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 440865, + "thread": 23 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 554203, + "thread": 11 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 731574, + "thread": 6 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 948649, + "thread": 2 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1066106, + "thread": 15 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1219097, + "thread": 23 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1441922, + "thread": 26 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1624372, + "thread": 13 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1683097, + "thread": 12 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 1813505, + "thread": 31 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2048216, + "thread": 25 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2155124, + "thread": 20 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2452488, + "thread": 9 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2541470, + "thread": 9 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2709094, + "thread": 10 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2945835, + "thread": 1 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 2959125, + "thread": 24 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 3252946, + "thread": 13 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 3290711, + "thread": 23 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 3565067, + "thread": 29 + } + }, + { + "amount": "117.947476345", + "slot": { + "period": 3738761, + "thread": 8 + } + }, + { + "amount": "117.947476338", + "slot": { + "period": 3813784, + "thread": 25 + } + } + ], + "AU1Jwjn9MAofzGTV2HJj8ypRpng25EvpMDR9XJv1DHtnS1Zsy9Z7": [ + { + "amount": "478.307102539", + "slot": { + "period": 100781, + "thread": 3 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 295855, + "thread": 18 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 458345, + "thread": 17 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 604574, + "thread": 13 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 667556, + "thread": 13 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 971176, + "thread": 18 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1056024, + "thread": 17 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1270419, + "thread": 2 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1381365, + "thread": 1 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1639585, + "thread": 1 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1775658, + "thread": 3 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 1899132, + "thread": 15 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2085253, + "thread": 14 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2253047, + "thread": 9 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2420426, + "thread": 1 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2494938, + "thread": 21 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2636247, + "thread": 7 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2953655, + "thread": 30 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 2998505, + "thread": 1 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 3195544, + "thread": 2 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 3416149, + "thread": 22 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 3462917, + "thread": 9 + } + }, + { + "amount": "478.307102539", + "slot": { + "period": 3673241, + "thread": 20 + } + }, + { + "amount": "478.307102538", + "slot": { + "period": 3825589, + "thread": 16 + } + } + ], + "AU1JwsAU8dUsHBS9XzBXEZsCLmzjX6kcjQoUFaA5EHa3s5xrSVS1": [ + { + "amount": "242.558727986", + "slot": { + "period": 124345, + "thread": 2 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 189670, + "thread": 22 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 476893, + "thread": 3 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 641732, + "thread": 24 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 662227, + "thread": 16 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 906351, + "thread": 3 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1008788, + "thread": 17 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1271832, + "thread": 28 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1460602, + "thread": 19 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1513132, + "thread": 16 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1685193, + "thread": 22 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 1916034, + "thread": 28 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2079171, + "thread": 12 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2181542, + "thread": 18 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2432185, + "thread": 28 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2475612, + "thread": 8 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2778215, + "thread": 9 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 2841134, + "thread": 23 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 3071644, + "thread": 7 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 3209791, + "thread": 7 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 3409792, + "thread": 18 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 3561640, + "thread": 15 + } + }, + { + "amount": "242.558727986", + "slot": { + "period": 3701004, + "thread": 0 + } + }, + { + "amount": "242.558727998", + "slot": { + "period": 3915481, + "thread": 25 + } + } + ], + "AU1JxwYuKLJMK43YK5Tdy5p7SJGzRAqyj4qx1rUew2cEBpLh39qK": [ + { + "amount": "74.062407732", + "slot": { + "period": 152385, + "thread": 5 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 215470, + "thread": 5 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 478853, + "thread": 18 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 594275, + "thread": 13 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 692016, + "thread": 3 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 887253, + "thread": 13 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1069096, + "thread": 30 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1300965, + "thread": 11 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1414377, + "thread": 20 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1493412, + "thread": 11 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1710100, + "thread": 9 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 1810160, + "thread": 31 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2142568, + "thread": 4 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2245415, + "thread": 1 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2296942, + "thread": 26 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2500245, + "thread": 16 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2690087, + "thread": 4 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 2814768, + "thread": 28 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 3025050, + "thread": 24 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 3199640, + "thread": 8 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 3298525, + "thread": 17 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 3473289, + "thread": 24 + } + }, + { + "amount": "74.062407732", + "slot": { + "period": 3743180, + "thread": 27 + } + }, + { + "amount": "74.062407733", + "slot": { + "period": 3863832, + "thread": 4 + } + } + ], + "AU1JyRwFQVNsacD2xGHUbm6NquEgiCEnPdBthChkhH9yemtXqH6Y": [ + { + "amount": "199.013874369", + "slot": { + "period": 103922, + "thread": 29 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 311470, + "thread": 8 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 422961, + "thread": 7 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 578194, + "thread": 7 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 800985, + "thread": 12 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 914091, + "thread": 0 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1071141, + "thread": 0 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1291737, + "thread": 26 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1429823, + "thread": 12 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1580993, + "thread": 24 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1739965, + "thread": 14 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1814988, + "thread": 0 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 1997439, + "thread": 27 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 2183018, + "thread": 18 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 2426277, + "thread": 1 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 2582909, + "thread": 28 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 2766712, + "thread": 21 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 2868807, + "thread": 0 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 3061129, + "thread": 7 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 3157822, + "thread": 21 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 3307682, + "thread": 7 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 3562793, + "thread": 1 + } + }, + { + "amount": "199.013874369", + "slot": { + "period": 3763663, + "thread": 16 + } + }, + { + "amount": "199.013874378", + "slot": { + "period": 3919025, + "thread": 2 + } + } + ], + "AU1JzU6KdDJBj1tdgiDuKcpTxYktTDHCAu71eCfxUSRjXibbGJXq": [ + { + "amount": "67.503523562", + "slot": { + "period": 143128, + "thread": 24 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 244997, + "thread": 10 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 463815, + "thread": 22 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 497489, + "thread": 20 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 715979, + "thread": 20 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 878323, + "thread": 7 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1068351, + "thread": 14 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1244333, + "thread": 11 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1463107, + "thread": 30 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1499240, + "thread": 19 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1679219, + "thread": 19 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 1973953, + "thread": 7 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2085207, + "thread": 30 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2204687, + "thread": 25 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2454834, + "thread": 26 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2463215, + "thread": 18 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2768865, + "thread": 20 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 2809268, + "thread": 24 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 3041149, + "thread": 10 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 3178145, + "thread": 13 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 3409737, + "thread": 21 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 3464907, + "thread": 31 + } + }, + { + "amount": "67.503523562", + "slot": { + "period": 3777568, + "thread": 0 + } + }, + { + "amount": "67.503523564", + "slot": { + "period": 3885640, + "thread": 8 + } + } + ], + "AU1JzxW16SELRaYVAiBJmu1L1XD3yx8C4E9rvyE4U59MwMSBbZeg": [ + { + "amount": "183.037341998", + "slot": { + "period": 154805, + "thread": 17 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 249585, + "thread": 31 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 482794, + "thread": 26 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 603711, + "thread": 29 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 673858, + "thread": 16 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 966247, + "thread": 2 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1022006, + "thread": 14 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1153064, + "thread": 0 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1367365, + "thread": 22 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1505538, + "thread": 31 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1747279, + "thread": 14 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 1918561, + "thread": 17 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2117822, + "thread": 30 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2267378, + "thread": 3 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2301295, + "thread": 5 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2574079, + "thread": 17 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2634183, + "thread": 0 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 2864333, + "thread": 8 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 3014492, + "thread": 3 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 3262921, + "thread": 1 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 3331257, + "thread": 14 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 3518835, + "thread": 25 + } + }, + { + "amount": "183.037341998", + "slot": { + "period": 3655676, + "thread": 23 + } + }, + { + "amount": "183.037341991", + "slot": { + "period": 3784431, + "thread": 16 + } + } + ], + "AU1K11sXX7c41uxuNAwXam4Me7zhTvWrBvd5nnsr25RU6pfHgLpK": [ + { + "amount": "113.034888784", + "slot": { + "period": 140396, + "thread": 9 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 243694, + "thread": 3 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 380351, + "thread": 30 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 511860, + "thread": 18 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 768176, + "thread": 17 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 825676, + "thread": 6 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1120230, + "thread": 21 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1253529, + "thread": 2 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1457102, + "thread": 19 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1637245, + "thread": 15 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1723316, + "thread": 1 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 1941279, + "thread": 4 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2025496, + "thread": 6 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2258573, + "thread": 18 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2372626, + "thread": 12 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2515109, + "thread": 19 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2656742, + "thread": 13 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 2825411, + "thread": 15 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 3052521, + "thread": 7 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 3250179, + "thread": 16 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 3408350, + "thread": 22 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 3517392, + "thread": 25 + } + }, + { + "amount": "113.034888784", + "slot": { + "period": 3766122, + "thread": 29 + } + }, + { + "amount": "113.034888778", + "slot": { + "period": 3797513, + "thread": 1 + } + } + ], + "AU1K26oVYNZbA5VgXEYmwrhSaoumjPfY8c4Bh3K667qnXEqSKP78": [ + { + "amount": "225.337665424", + "slot": { + "period": 15410, + "thread": 13 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 265893, + "thread": 23 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 456583, + "thread": 24 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 611710, + "thread": 21 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 801992, + "thread": 22 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 830236, + "thread": 11 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1023204, + "thread": 25 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1154089, + "thread": 17 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1326886, + "thread": 26 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1534486, + "thread": 17 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1777867, + "thread": 0 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 1882580, + "thread": 14 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2038199, + "thread": 6 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2254039, + "thread": 11 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2333773, + "thread": 6 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2567795, + "thread": 15 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2709983, + "thread": 15 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 2922469, + "thread": 20 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 3086574, + "thread": 4 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 3140647, + "thread": 8 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 3443362, + "thread": 15 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 3494442, + "thread": 0 + } + }, + { + "amount": "225.337665424", + "slot": { + "period": 3618193, + "thread": 13 + } + }, + { + "amount": "225.337665423", + "slot": { + "period": 3833565, + "thread": 7 + } + } + ], + "AU1K2ACg9avMQjLGRkAN9FiM9qG8B8UFDq4x1jy53nNW8223MJg1": [ + { + "amount": "277.341828154", + "slot": { + "period": 38107, + "thread": 2 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 316422, + "thread": 22 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 426456, + "thread": 21 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 587037, + "thread": 27 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 802338, + "thread": 10 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 971767, + "thread": 29 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1087298, + "thread": 14 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1253983, + "thread": 13 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1393464, + "thread": 31 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1558452, + "thread": 1 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1690838, + "thread": 14 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 1896644, + "thread": 3 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2140852, + "thread": 11 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2250455, + "thread": 30 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2430510, + "thread": 16 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2478175, + "thread": 13 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2701962, + "thread": 3 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 2924589, + "thread": 25 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 3000569, + "thread": 31 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 3138263, + "thread": 31 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 3356811, + "thread": 27 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 3482561, + "thread": 30 + } + }, + { + "amount": "277.341828154", + "slot": { + "period": 3672461, + "thread": 23 + } + }, + { + "amount": "277.341828153", + "slot": { + "period": 3806679, + "thread": 25 + } + } + ], + "AU1K2fHRAmrjgxqtver1TR5uDmng4Br6hvYxcbCV1TwZ3rMyf2aM": [ + { + "amount": "292.118514391", + "slot": { + "period": 11305, + "thread": 26 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 314300, + "thread": 16 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 453071, + "thread": 31 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 650476, + "thread": 28 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 815858, + "thread": 26 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 911862, + "thread": 29 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1082960, + "thread": 23 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1162454, + "thread": 14 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1345428, + "thread": 30 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1611353, + "thread": 13 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1803145, + "thread": 18 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1861557, + "thread": 26 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 1981716, + "thread": 13 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 2236292, + "thread": 17 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 2457212, + "thread": 17 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 2624130, + "thread": 4 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 2631685, + "thread": 14 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 2903428, + "thread": 27 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 3064216, + "thread": 30 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 3256158, + "thread": 22 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 3423220, + "thread": 12 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 3568219, + "thread": 26 + } + }, + { + "amount": "292.118514391", + "slot": { + "period": 3704770, + "thread": 6 + } + }, + { + "amount": "292.118514381", + "slot": { + "period": 3781236, + "thread": 31 + } + } + ], + "AU1K2tyCmEKQgQCEptxmcCmdJTRdweJgghZHejg9qdjZyFGxtnhG": [ + { + "amount": "98.706258281", + "slot": { + "period": 138968, + "thread": 6 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 225118, + "thread": 9 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 447053, + "thread": 16 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 625097, + "thread": 8 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 685783, + "thread": 24 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 823004, + "thread": 21 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1086213, + "thread": 8 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1213894, + "thread": 20 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1472448, + "thread": 27 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1603810, + "thread": 15 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1779997, + "thread": 7 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 1846392, + "thread": 28 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2122262, + "thread": 5 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2249398, + "thread": 3 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2391109, + "thread": 13 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2581808, + "thread": 6 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2768477, + "thread": 20 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 2881093, + "thread": 19 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 3103181, + "thread": 3 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 3277037, + "thread": 13 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 3377941, + "thread": 3 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 3542649, + "thread": 29 + } + }, + { + "amount": "98.706258281", + "slot": { + "period": 3773581, + "thread": 28 + } + }, + { + "amount": "98.706258288", + "slot": { + "period": 3830499, + "thread": 6 + } + } + ], + "AU1K2w5QwffcJ7fULjvDYcZ32eEUA3FqNc7KVyuvNixPPZKuHdGV": [ + { + "amount": "377.151006941", + "slot": { + "period": 119884, + "thread": 11 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 306927, + "thread": 2 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 401152, + "thread": 12 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 503710, + "thread": 5 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 776881, + "thread": 12 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 931874, + "thread": 3 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1015657, + "thread": 22 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1286308, + "thread": 10 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1350967, + "thread": 5 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1525704, + "thread": 16 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1725566, + "thread": 21 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1938659, + "thread": 5 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 1980775, + "thread": 22 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 2228028, + "thread": 25 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 2318438, + "thread": 27 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 2466910, + "thread": 22 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 2772905, + "thread": 5 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 2930364, + "thread": 11 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 3088826, + "thread": 26 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 3284357, + "thread": 29 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 3365966, + "thread": 13 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 3561998, + "thread": 3 + } + }, + { + "amount": "377.151006941", + "slot": { + "period": 3658920, + "thread": 0 + } + }, + { + "amount": "377.151006931", + "slot": { + "period": 3941030, + "thread": 28 + } + } + ], + "AU1K31he6WPGb91TjjsE1kaoqBygnY2TSLWzdGto3uMRcDBcPRur": [ + { + "amount": "249.496932746", + "slot": { + "period": 53412, + "thread": 8 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 266952, + "thread": 23 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 445252, + "thread": 4 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 526428, + "thread": 18 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 682800, + "thread": 16 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 903600, + "thread": 4 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 991442, + "thread": 7 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 1264742, + "thread": 6 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 1339475, + "thread": 31 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 1592812, + "thread": 1 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 1667879, + "thread": 10 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 1974424, + "thread": 3 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2131871, + "thread": 10 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2186606, + "thread": 6 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2441757, + "thread": 18 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2531717, + "thread": 19 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2640702, + "thread": 30 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2928693, + "thread": 22 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 2963784, + "thread": 20 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 3256080, + "thread": 8 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 3422054, + "thread": 8 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 3529813, + "thread": 0 + } + }, + { + "amount": "249.496932746", + "slot": { + "period": 3770189, + "thread": 24 + } + }, + { + "amount": "249.496932757", + "slot": { + "period": 3825733, + "thread": 9 + } + } + ], + "AU1K3DTzU7fprjowT9ZyCef1y2cuxe1eGRG6Vor2wBiRBjjpcZzA": [ + { + "amount": "83.100661716", + "slot": { + "period": 147204, + "thread": 28 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 224402, + "thread": 0 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 374821, + "thread": 26 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 627427, + "thread": 4 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 690094, + "thread": 17 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 941912, + "thread": 0 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 985658, + "thread": 30 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 1296481, + "thread": 20 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 1469135, + "thread": 24 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 1479823, + "thread": 29 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 1671516, + "thread": 30 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 1861457, + "thread": 0 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2041451, + "thread": 25 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2186974, + "thread": 12 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2378156, + "thread": 2 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2472264, + "thread": 18 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2702437, + "thread": 19 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 2816877, + "thread": 16 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 3063069, + "thread": 27 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 3175309, + "thread": 31 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 3423440, + "thread": 14 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 3550595, + "thread": 14 + } + }, + { + "amount": "83.100661716", + "slot": { + "period": 3687841, + "thread": 30 + } + }, + { + "amount": "83.100661712", + "slot": { + "period": 3833343, + "thread": 4 + } + } + ], + "AU1K46UQw12TTcyDuoiA2sPdNwRxqG3yh3hPZKYpNN13nvUF5ta1": [ + { + "amount": "97.754635611", + "slot": { + "period": 67023, + "thread": 10 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 258295, + "thread": 17 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 328057, + "thread": 1 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 565193, + "thread": 12 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 667741, + "thread": 24 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 967500, + "thread": 19 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1050901, + "thread": 15 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1206198, + "thread": 20 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1345883, + "thread": 25 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1643198, + "thread": 3 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1774374, + "thread": 29 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 1840612, + "thread": 1 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2036632, + "thread": 19 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2213935, + "thread": 22 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2298801, + "thread": 1 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2552869, + "thread": 30 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2709745, + "thread": 16 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 2930393, + "thread": 11 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 3024828, + "thread": 16 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 3204702, + "thread": 18 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 3338484, + "thread": 7 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 3596085, + "thread": 4 + } + }, + { + "amount": "97.754635611", + "slot": { + "period": 3738934, + "thread": 16 + } + }, + { + "amount": "97.754635604", + "slot": { + "period": 3852226, + "thread": 6 + } + } + ], + "AU1K4JKTNSXqZdGAdobizuu9jgLS6QWqAYHXEcjyycWiqAZUDyTd": [ + { + "amount": "95.595261134", + "slot": { + "period": 25438, + "thread": 2 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 177668, + "thread": 11 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 443824, + "thread": 0 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 612861, + "thread": 10 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 781980, + "thread": 24 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 972724, + "thread": 1 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1133800, + "thread": 5 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1290797, + "thread": 30 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1345872, + "thread": 11 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1585899, + "thread": 24 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1772088, + "thread": 14 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 1949007, + "thread": 23 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2068259, + "thread": 31 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2162442, + "thread": 31 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2330291, + "thread": 15 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2577611, + "thread": 1 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2736727, + "thread": 13 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 2862084, + "thread": 27 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 3106822, + "thread": 18 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 3150113, + "thread": 4 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 3346350, + "thread": 3 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 3516471, + "thread": 12 + } + }, + { + "amount": "95.595261134", + "slot": { + "period": 3638968, + "thread": 12 + } + }, + { + "amount": "95.595261129", + "slot": { + "period": 3835255, + "thread": 19 + } + } + ], + "AU1K4kGpdUHyVKR1x8kVk8FhgSVMQMipyGtsEsJpJGeJZwCeqDPP": [ + { + "amount": "275.772758429", + "slot": { + "period": 18543, + "thread": 21 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 269391, + "thread": 19 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 374056, + "thread": 10 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 607605, + "thread": 12 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 772729, + "thread": 15 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 855677, + "thread": 5 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1085351, + "thread": 3 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1173788, + "thread": 2 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1448733, + "thread": 23 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1552660, + "thread": 14 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1749772, + "thread": 29 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 1812964, + "thread": 24 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2003061, + "thread": 25 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2281533, + "thread": 19 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2362085, + "thread": 25 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2483018, + "thread": 15 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2757340, + "thread": 6 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 2796452, + "thread": 5 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 3071421, + "thread": 26 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 3186966, + "thread": 24 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 3314548, + "thread": 19 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 3472336, + "thread": 3 + } + }, + { + "amount": "275.772758429", + "slot": { + "period": 3712795, + "thread": 24 + } + }, + { + "amount": "275.772758435", + "slot": { + "period": 3945413, + "thread": 17 + } + } + ], + "AU1K4xKjZ3LY9L7K6oCTKie7gTUpXNbSyCngVa3BKBQzcYqZ6ar3": [ + { + "amount": "116.030858716", + "slot": { + "period": 80696, + "thread": 22 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 197797, + "thread": 16 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 346174, + "thread": 26 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 644192, + "thread": 13 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 658127, + "thread": 8 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 972613, + "thread": 24 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1139655, + "thread": 9 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1204026, + "thread": 21 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1352389, + "thread": 2 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1554652, + "thread": 15 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1659917, + "thread": 16 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 1873791, + "thread": 14 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2020896, + "thread": 2 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2244628, + "thread": 9 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2366171, + "thread": 11 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2590291, + "thread": 11 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2714947, + "thread": 14 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 2822994, + "thread": 26 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 3042312, + "thread": 24 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 3210730, + "thread": 4 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 3363118, + "thread": 17 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 3592739, + "thread": 16 + } + }, + { + "amount": "116.030858716", + "slot": { + "period": 3777146, + "thread": 11 + } + }, + { + "amount": "116.030858727", + "slot": { + "period": 3890934, + "thread": 11 + } + } + ], + "AU1K6ffHTFGUTkg69Sojij7NfHktxuituvdSpNUdaXj3jRGF76Ko": [ + { + "amount": "335.126291817", + "slot": { + "period": 23471, + "thread": 16 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 185732, + "thread": 26 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 403740, + "thread": 18 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 617117, + "thread": 1 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 790212, + "thread": 18 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 846341, + "thread": 18 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1149640, + "thread": 11 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1225165, + "thread": 23 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1362942, + "thread": 23 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1602223, + "thread": 19 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1740793, + "thread": 31 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1825564, + "thread": 28 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 1988110, + "thread": 11 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 2230569, + "thread": 3 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 2409068, + "thread": 13 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 2570275, + "thread": 20 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 2784604, + "thread": 27 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 2843563, + "thread": 10 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 3062119, + "thread": 13 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 3136919, + "thread": 24 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 3320728, + "thread": 27 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 3532272, + "thread": 12 + } + }, + { + "amount": "335.126291817", + "slot": { + "period": 3645737, + "thread": 25 + } + }, + { + "amount": "335.126291822", + "slot": { + "period": 3867749, + "thread": 22 + } + } + ], + "AU1K6nbMXeFt13MXCqsGfbZAfyKDs8rZvKQtdBecFVgz419NYdF4": [ + { + "amount": "113.076680523", + "slot": { + "period": 78723, + "thread": 12 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 318395, + "thread": 17 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 481994, + "thread": 5 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 511937, + "thread": 26 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 670834, + "thread": 8 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 944179, + "thread": 26 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1020550, + "thread": 16 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1181820, + "thread": 1 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1477014, + "thread": 25 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1625781, + "thread": 22 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1716891, + "thread": 27 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1940151, + "thread": 19 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 1985687, + "thread": 13 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 2243052, + "thread": 1 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 2434718, + "thread": 21 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 2491454, + "thread": 5 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 2675093, + "thread": 24 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 2814177, + "thread": 25 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3071572, + "thread": 24 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3186552, + "thread": 11 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3290249, + "thread": 12 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3556587, + "thread": 28 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3677526, + "thread": 7 + } + }, + { + "amount": "113.076680523", + "slot": { + "period": 3811161, + "thread": 2 + } + } + ], + "AU1K7CfLMBk3wHujD9czqNf1Zii7B7W8pQmDm7ZSPvmRN7RafZXm": [ + { + "amount": "71.541909103", + "slot": { + "period": 156763, + "thread": 11 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 257911, + "thread": 15 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 335904, + "thread": 6 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 583514, + "thread": 21 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 806794, + "thread": 25 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 926058, + "thread": 13 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1133433, + "thread": 0 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1314619, + "thread": 30 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1436448, + "thread": 19 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1620981, + "thread": 19 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1747315, + "thread": 30 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 1919408, + "thread": 2 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2011427, + "thread": 24 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2221904, + "thread": 26 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2461254, + "thread": 8 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2590645, + "thread": 17 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2709656, + "thread": 14 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 2890712, + "thread": 18 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3089692, + "thread": 17 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3145106, + "thread": 25 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3322179, + "thread": 23 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3565956, + "thread": 25 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3714689, + "thread": 22 + } + }, + { + "amount": "71.541909103", + "slot": { + "period": 3874092, + "thread": 6 + } + } + ], + "AU1K8VvDDuhY4RwrGyPerU9ERiLqgF8JbgVJgNf7TrGV1mzNWnZw": [ + { + "amount": "283.965102743", + "slot": { + "period": 24836, + "thread": 25 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 199195, + "thread": 12 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 329895, + "thread": 25 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 525440, + "thread": 24 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 810341, + "thread": 18 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 830404, + "thread": 17 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1038133, + "thread": 9 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1154875, + "thread": 3 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1351389, + "thread": 4 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1495305, + "thread": 27 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1657658, + "thread": 3 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 1815528, + "thread": 6 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2052950, + "thread": 20 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2170204, + "thread": 30 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2351518, + "thread": 21 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2493225, + "thread": 8 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2644734, + "thread": 6 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 2843663, + "thread": 22 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 3071104, + "thread": 29 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 3201689, + "thread": 19 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 3438390, + "thread": 29 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 3462616, + "thread": 20 + } + }, + { + "amount": "283.965102743", + "slot": { + "period": 3736930, + "thread": 25 + } + }, + { + "amount": "283.965102744", + "slot": { + "period": 3893628, + "thread": 2 + } + } + ], + "AU1K9QhPrK98G9NTLzYEHmFMNVmsvy17tSWWcTZ1ZRXzu6P99KiC": [ + { + "amount": "158.750977267", + "slot": { + "period": 167215, + "thread": 23 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 178007, + "thread": 22 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 433029, + "thread": 21 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 640329, + "thread": 17 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 775076, + "thread": 7 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 946504, + "thread": 8 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 983548, + "thread": 31 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 1311644, + "thread": 24 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 1467231, + "thread": 1 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 1558776, + "thread": 27 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 1675495, + "thread": 0 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 1860005, + "thread": 5 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2056372, + "thread": 30 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2148097, + "thread": 29 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2327999, + "thread": 26 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2472023, + "thread": 30 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2765935, + "thread": 13 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 2925073, + "thread": 31 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 3036248, + "thread": 29 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 3270334, + "thread": 6 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 3409824, + "thread": 3 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 3541474, + "thread": 17 + } + }, + { + "amount": "158.750977267", + "slot": { + "period": 3716200, + "thread": 29 + } + }, + { + "amount": "158.750977262", + "slot": { + "period": 3839359, + "thread": 5 + } + } + ], + "AU1KAoDnExjMn2TEKdDY9kqLc2PbB6LCCdrMQ3TA2pkq85nauPmm": [ + { + "amount": "146.346048573", + "slot": { + "period": 131654, + "thread": 19 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 296203, + "thread": 12 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 420768, + "thread": 7 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 513203, + "thread": 1 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 795073, + "thread": 4 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 923475, + "thread": 28 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1055805, + "thread": 29 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1267876, + "thread": 20 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1356631, + "thread": 21 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1645663, + "thread": 20 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1793528, + "thread": 18 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 1928189, + "thread": 20 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2121487, + "thread": 14 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2201181, + "thread": 11 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2356159, + "thread": 21 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2544096, + "thread": 17 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2758126, + "thread": 3 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2825656, + "thread": 18 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 2964103, + "thread": 18 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 3254901, + "thread": 21 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 3335394, + "thread": 26 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 3484165, + "thread": 28 + } + }, + { + "amount": "146.346048573", + "slot": { + "period": 3647005, + "thread": 31 + } + }, + { + "amount": "146.346048562", + "slot": { + "period": 3869706, + "thread": 17 + } + } + ], + "AU1KBEsqugQWME3HBRuwcNjuki8eNQP5N4om4FqB1kSuoCkCoUz5": [ + { + "amount": "412.446111999", + "slot": { + "period": 79582, + "thread": 30 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 238483, + "thread": 2 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 406797, + "thread": 27 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 578065, + "thread": 5 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 687896, + "thread": 10 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 933056, + "thread": 31 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1068539, + "thread": 30 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1214798, + "thread": 19 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1390847, + "thread": 23 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1537635, + "thread": 12 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1783911, + "thread": 10 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 1877094, + "thread": 13 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2073672, + "thread": 5 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2219941, + "thread": 3 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2389941, + "thread": 24 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2488363, + "thread": 17 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2721644, + "thread": 26 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 2836914, + "thread": 4 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 3120873, + "thread": 5 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 3261011, + "thread": 7 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 3304012, + "thread": 18 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 3467275, + "thread": 25 + } + }, + { + "amount": "412.446111999", + "slot": { + "period": 3644857, + "thread": 26 + } + }, + { + "amount": "412.446111993", + "slot": { + "period": 3807421, + "thread": 24 + } + } + ], + "AU1KBwHDtSUHmUwNZnVojswzXpsjDZntaEDRxU8j2SU2fyswBTzP": [ + { + "amount": "67.896827030", + "slot": { + "period": 118869, + "thread": 1 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 242682, + "thread": 19 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 386341, + "thread": 13 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 508182, + "thread": 22 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 705156, + "thread": 30 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 936273, + "thread": 6 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1010785, + "thread": 30 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1282648, + "thread": 19 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1332706, + "thread": 11 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1561171, + "thread": 29 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1682312, + "thread": 31 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 1935230, + "thread": 3 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2097846, + "thread": 22 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2231929, + "thread": 25 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2352481, + "thread": 29 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2581649, + "thread": 25 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2771076, + "thread": 24 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 2854057, + "thread": 19 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 3058376, + "thread": 31 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 3207515, + "thread": 2 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 3368373, + "thread": 9 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 3511777, + "thread": 1 + } + }, + { + "amount": "67.896827030", + "slot": { + "period": 3694008, + "thread": 18 + } + }, + { + "amount": "67.896827018", + "slot": { + "period": 3851216, + "thread": 8 + } + } + ], + "AU1KCh1XYrVNM9x2n1LxR1f52nC46vkqbW6JqTUUwoytygVHLSB8": [ + { + "amount": "180.497062484", + "slot": { + "period": 91194, + "thread": 11 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 302015, + "thread": 23 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 370729, + "thread": 29 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 548464, + "thread": 21 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 736807, + "thread": 28 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 852615, + "thread": 17 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 992137, + "thread": 10 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1198193, + "thread": 2 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1435585, + "thread": 27 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1554020, + "thread": 31 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1681632, + "thread": 12 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1862968, + "thread": 24 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 1983917, + "thread": 9 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 2173708, + "thread": 21 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 2378460, + "thread": 1 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 2545724, + "thread": 28 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 2649252, + "thread": 11 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 2863543, + "thread": 2 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 3091577, + "thread": 31 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 3223538, + "thread": 18 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 3423489, + "thread": 14 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 3597765, + "thread": 21 + } + }, + { + "amount": "180.497062484", + "slot": { + "period": 3702001, + "thread": 15 + } + }, + { + "amount": "180.497062478", + "slot": { + "period": 3927110, + "thread": 9 + } + } + ], + "AU1KCrX6bTrdmgHdnwjSAcLDQKxur27stTCdJibpUeELAmbrjPJk": [ + { + "amount": "134.987431244", + "slot": { + "period": 164749, + "thread": 4 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 216893, + "thread": 0 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 444948, + "thread": 28 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 533866, + "thread": 28 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 783472, + "thread": 2 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 947578, + "thread": 12 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 999338, + "thread": 9 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 1215938, + "thread": 2 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 1397500, + "thread": 14 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 1629812, + "thread": 3 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 1672344, + "thread": 6 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 1928258, + "thread": 28 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2090535, + "thread": 6 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2259049, + "thread": 0 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2426056, + "thread": 6 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2549281, + "thread": 16 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2708468, + "thread": 5 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 2930185, + "thread": 12 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 3103195, + "thread": 19 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 3179165, + "thread": 13 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 3382919, + "thread": 12 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 3512767, + "thread": 3 + } + }, + { + "amount": "134.987431244", + "slot": { + "period": 3672872, + "thread": 21 + } + }, + { + "amount": "134.987431245", + "slot": { + "period": 3911225, + "thread": 14 + } + } + ], + "AU1KD9yeS3cSG4MBZXyA7sWVorDzb6ePop4iPeRqmYT5Nqknd7mW": [ + { + "amount": "5833.333333333", + "slot": { + "period": 96655, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 218742, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 385750, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 604790, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 809265, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 845352, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1032421, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1263114, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1399998, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1646232, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1699936, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1883979, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1999983, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2247227, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2356238, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2482763, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2788750, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2920554, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2992432, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3154529, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3311484, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3548401, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3662213, + "thread": 11 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3898416, + "thread": 10 + } + } + ], + "AU1KEajLQ7KXfB9iHPFekRyHsksX154WmJqv9B1pREao3vpYxzXB": [ + { + "amount": "97.052063404", + "slot": { + "period": 108320, + "thread": 15 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 172720, + "thread": 12 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 344971, + "thread": 3 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 497796, + "thread": 4 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 657674, + "thread": 8 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 886185, + "thread": 19 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1067071, + "thread": 22 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1268853, + "thread": 0 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1334267, + "thread": 0 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1529825, + "thread": 4 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1720808, + "thread": 1 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1925941, + "thread": 6 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 1981260, + "thread": 16 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 2204768, + "thread": 23 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 2435980, + "thread": 12 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 2606344, + "thread": 26 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 2651590, + "thread": 23 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 2813782, + "thread": 2 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 3003488, + "thread": 28 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 3215840, + "thread": 23 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 3357529, + "thread": 26 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 3543345, + "thread": 4 + } + }, + { + "amount": "97.052063404", + "slot": { + "period": 3740265, + "thread": 0 + } + }, + { + "amount": "97.052063413", + "slot": { + "period": 3818274, + "thread": 2 + } + } + ], + "AU1KEvNmR44gvEZh8b7dFwzqahrwcFPEpTMUYcjnJeRFmCrJWKka": [ + { + "amount": "243.367111592", + "slot": { + "period": 98125, + "thread": 28 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 204275, + "thread": 26 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 387950, + "thread": 8 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 546903, + "thread": 18 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 787397, + "thread": 1 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 837662, + "thread": 27 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1116717, + "thread": 11 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1167281, + "thread": 3 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1358811, + "thread": 31 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1554185, + "thread": 11 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1671085, + "thread": 30 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 1882319, + "thread": 4 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2075043, + "thread": 13 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2234570, + "thread": 20 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2302092, + "thread": 6 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2548462, + "thread": 2 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2700943, + "thread": 3 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 2888236, + "thread": 27 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 3097052, + "thread": 10 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 3175141, + "thread": 7 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 3359460, + "thread": 9 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 3474132, + "thread": 21 + } + }, + { + "amount": "243.367111592", + "slot": { + "period": 3749395, + "thread": 1 + } + }, + { + "amount": "243.367111586", + "slot": { + "period": 3906100, + "thread": 31 + } + } + ], + "AU1KFMSUt95UbJKnefBmCKxXvAXYBg8VmvegmubAoFRxJaRKLajX": [ + { + "amount": "143.869019469", + "slot": { + "period": 90026, + "thread": 5 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 216138, + "thread": 27 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 350331, + "thread": 7 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 520015, + "thread": 15 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 753552, + "thread": 4 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 973543, + "thread": 20 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1015105, + "thread": 6 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1212010, + "thread": 25 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1354238, + "thread": 29 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1625801, + "thread": 16 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1692802, + "thread": 22 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 1972750, + "thread": 22 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2009509, + "thread": 28 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2261177, + "thread": 18 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2324174, + "thread": 6 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2537140, + "thread": 0 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2768875, + "thread": 20 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 2922058, + "thread": 4 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 3041757, + "thread": 27 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 3272312, + "thread": 20 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 3293059, + "thread": 2 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 3525753, + "thread": 24 + } + }, + { + "amount": "143.869019469", + "slot": { + "period": 3768562, + "thread": 16 + } + }, + { + "amount": "143.869019464", + "slot": { + "period": 3850364, + "thread": 28 + } + } + ], + "AU1KFQrYHdpyiX2G9U3opivFCSpUpX5Grt4PhnjLbPBQndSy9gPe": [ + { + "amount": "55.089952960", + "slot": { + "period": 164514, + "thread": 11 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 204199, + "thread": 21 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 351473, + "thread": 2 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 616702, + "thread": 6 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 678231, + "thread": 26 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 866001, + "thread": 30 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1012424, + "thread": 5 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1301361, + "thread": 2 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1331902, + "thread": 4 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1600972, + "thread": 14 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1651823, + "thread": 13 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 1954281, + "thread": 14 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2054433, + "thread": 31 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2235573, + "thread": 19 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2383972, + "thread": 0 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2572685, + "thread": 19 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2711909, + "thread": 22 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 2864750, + "thread": 9 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 3017236, + "thread": 3 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 3211938, + "thread": 31 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 3411731, + "thread": 10 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 3589467, + "thread": 30 + } + }, + { + "amount": "55.089952960", + "slot": { + "period": 3762800, + "thread": 13 + } + }, + { + "amount": "55.089952955", + "slot": { + "period": 3843537, + "thread": 11 + } + } + ], + "AU1KFpdqYEASyxn83WeYw24ir9fhiMSUFjWLYKc8cpSgkEshbHEk": [ + { + "amount": "130.203460191", + "slot": { + "period": 161078, + "thread": 25 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 215337, + "thread": 1 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 386592, + "thread": 20 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 545643, + "thread": 31 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 720362, + "thread": 22 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 852567, + "thread": 7 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1149328, + "thread": 10 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1214721, + "thread": 15 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1434374, + "thread": 2 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1562860, + "thread": 6 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1762954, + "thread": 22 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 1864807, + "thread": 20 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2142802, + "thread": 27 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2234913, + "thread": 24 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2351129, + "thread": 14 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2558418, + "thread": 28 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2772481, + "thread": 25 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2793995, + "thread": 21 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 2990167, + "thread": 21 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 3210569, + "thread": 5 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 3295355, + "thread": 5 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 3485579, + "thread": 0 + } + }, + { + "amount": "130.203460191", + "slot": { + "period": 3766788, + "thread": 27 + } + }, + { + "amount": "130.203460187", + "slot": { + "period": 3866429, + "thread": 25 + } + } + ], + "AU1KG96kr1x4fQm9aMGQh5sZjGiizEr1K51kKPS5ejUMmAX1Wzto": [ + { + "amount": "96.868942850", + "slot": { + "period": 163418, + "thread": 16 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 263478, + "thread": 21 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 417716, + "thread": 25 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 491570, + "thread": 0 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 728183, + "thread": 4 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 821922, + "thread": 1 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1003546, + "thread": 28 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1285544, + "thread": 9 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1423700, + "thread": 31 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1611854, + "thread": 30 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1693521, + "thread": 10 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 1821961, + "thread": 1 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2094362, + "thread": 18 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2257592, + "thread": 0 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2356272, + "thread": 13 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2565210, + "thread": 21 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2675287, + "thread": 23 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2822414, + "thread": 20 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 2977739, + "thread": 27 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 3272081, + "thread": 30 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 3412316, + "thread": 18 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 3553842, + "thread": 21 + } + }, + { + "amount": "96.868942850", + "slot": { + "period": 3729477, + "thread": 17 + } + }, + { + "amount": "96.868942846", + "slot": { + "period": 3867350, + "thread": 12 + } + } + ], + "AU1KGiegMJZYRSVLNJxBWnRGT2hayJnyYUhh7VreWLMfYuGvnGjH": [ + { + "amount": "268.359645411", + "slot": { + "period": 61684, + "thread": 28 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 255624, + "thread": 23 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 375665, + "thread": 25 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 590112, + "thread": 17 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 731310, + "thread": 22 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 926248, + "thread": 24 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1067534, + "thread": 0 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1236493, + "thread": 9 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1351026, + "thread": 15 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1575476, + "thread": 14 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1650003, + "thread": 23 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1963184, + "thread": 2 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 1981137, + "thread": 25 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 2229212, + "thread": 20 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 2451645, + "thread": 11 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 2596625, + "thread": 14 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 2775581, + "thread": 28 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 2936319, + "thread": 27 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3035063, + "thread": 29 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3271985, + "thread": 5 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3359577, + "thread": 21 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3554536, + "thread": 21 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3770691, + "thread": 8 + } + }, + { + "amount": "268.359645411", + "slot": { + "period": 3828018, + "thread": 18 + } + } + ], + "AU1KGwZ7gWPUWyy26ggtJbgv1TDESuCvsitM3j7Euf4csGVqaFdL": [ + { + "amount": "433.166671468", + "slot": { + "period": 51410, + "thread": 3 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 202098, + "thread": 12 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 409124, + "thread": 16 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 595538, + "thread": 26 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 767646, + "thread": 14 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 900763, + "thread": 8 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 996847, + "thread": 9 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 1283497, + "thread": 29 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 1328044, + "thread": 4 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 1519692, + "thread": 12 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 1791719, + "thread": 5 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 1837249, + "thread": 17 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2062674, + "thread": 15 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2236342, + "thread": 15 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2328169, + "thread": 9 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2503545, + "thread": 11 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2748978, + "thread": 22 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2936662, + "thread": 7 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 2968785, + "thread": 3 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 3228597, + "thread": 23 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 3402053, + "thread": 30 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 3541153, + "thread": 1 + } + }, + { + "amount": "433.166671468", + "slot": { + "period": 3774498, + "thread": 14 + } + }, + { + "amount": "433.166671479", + "slot": { + "period": 3815622, + "thread": 25 + } + } + ], + "AU1KJjUmkPhmwuQedCFiw84PgDLxqTjgTbPXpDKZo9ZrYk74ige1": [ + { + "amount": "124.873059409", + "slot": { + "period": 55176, + "thread": 8 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 314047, + "thread": 26 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 355095, + "thread": 4 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 650140, + "thread": 24 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 658857, + "thread": 19 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 950565, + "thread": 28 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1047970, + "thread": 18 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1303074, + "thread": 2 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1349483, + "thread": 4 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1566262, + "thread": 18 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1763031, + "thread": 20 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 1953674, + "thread": 13 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2089975, + "thread": 15 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2270171, + "thread": 1 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2413751, + "thread": 16 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2587995, + "thread": 1 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2742522, + "thread": 14 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 2941399, + "thread": 24 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 3037385, + "thread": 14 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 3192298, + "thread": 24 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 3381881, + "thread": 21 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 3524620, + "thread": 8 + } + }, + { + "amount": "124.873059409", + "slot": { + "period": 3622139, + "thread": 5 + } + }, + { + "amount": "124.873059406", + "slot": { + "period": 3899330, + "thread": 0 + } + } + ], + "AU1KKWK5zEhk1C7cT9SrFRPwbEyEQms5oLF8fPYEJutE8KKNyNBJ": [ + { + "amount": "111.062281269", + "slot": { + "period": 14669, + "thread": 16 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 275437, + "thread": 14 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 411239, + "thread": 31 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 640957, + "thread": 15 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 775364, + "thread": 11 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 874158, + "thread": 1 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1066300, + "thread": 17 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1188867, + "thread": 16 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1449966, + "thread": 24 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1490750, + "thread": 5 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1759636, + "thread": 12 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 1937569, + "thread": 21 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2130989, + "thread": 7 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2243720, + "thread": 26 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2304771, + "thread": 25 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2613501, + "thread": 2 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2749663, + "thread": 9 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 2811089, + "thread": 26 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 3068510, + "thread": 23 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 3131299, + "thread": 17 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 3424199, + "thread": 2 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 3611991, + "thread": 30 + } + }, + { + "amount": "111.062281269", + "slot": { + "period": 3731138, + "thread": 21 + } + }, + { + "amount": "111.062281277", + "slot": { + "period": 3791137, + "thread": 11 + } + } + ], + "AU1KKeHGdArZJvrRyVkEtz5NXgv6feNKW1vz2mwKzm2nyx67NbpX": [ + { + "amount": "479.746504442", + "slot": { + "period": 133709, + "thread": 25 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 207662, + "thread": 23 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 481073, + "thread": 8 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 615284, + "thread": 18 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 754583, + "thread": 14 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 865770, + "thread": 10 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1073570, + "thread": 13 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1197180, + "thread": 26 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1388731, + "thread": 19 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1506277, + "thread": 11 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1721823, + "thread": 20 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1903170, + "thread": 5 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 1995826, + "thread": 20 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 2272521, + "thread": 12 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 2350324, + "thread": 20 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 2615969, + "thread": 13 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 2725077, + "thread": 7 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 2835862, + "thread": 4 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 3020499, + "thread": 9 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 3217889, + "thread": 19 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 3320227, + "thread": 31 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 3492712, + "thread": 31 + } + }, + { + "amount": "479.746504442", + "slot": { + "period": 3650263, + "thread": 22 + } + }, + { + "amount": "479.746504437", + "slot": { + "period": 3894334, + "thread": 0 + } + } + ], + "AU1KKiTX6ZCun4ijohKg7S324VuFtD6Gq9B6L9HjqPRpwcJw9Fwx": [ + { + "amount": "68.782212990", + "slot": { + "period": 49979, + "thread": 16 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 225517, + "thread": 31 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 481300, + "thread": 14 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 611449, + "thread": 10 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 727022, + "thread": 30 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 827156, + "thread": 3 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1040057, + "thread": 9 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1175224, + "thread": 13 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1319986, + "thread": 27 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1645218, + "thread": 0 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1755214, + "thread": 5 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 1869697, + "thread": 21 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2081645, + "thread": 23 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2186744, + "thread": 14 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2310363, + "thread": 2 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2531380, + "thread": 0 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2704558, + "thread": 26 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2850623, + "thread": 23 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 2964241, + "thread": 31 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 3170925, + "thread": 9 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 3301861, + "thread": 15 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 3492265, + "thread": 28 + } + }, + { + "amount": "68.782212990", + "slot": { + "period": 3627801, + "thread": 8 + } + }, + { + "amount": "68.782213001", + "slot": { + "period": 3909170, + "thread": 3 + } + } + ], + "AU1KLGgGjnwCskYAtGAh8zNNYtxXcCoyQJ4AZXu5ZKSaziX6THhD": [ + { + "amount": "176.500983178", + "slot": { + "period": 27252, + "thread": 29 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 303543, + "thread": 11 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 489299, + "thread": 29 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 517722, + "thread": 28 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 712139, + "thread": 11 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 887667, + "thread": 25 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1121098, + "thread": 17 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1257554, + "thread": 27 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1366404, + "thread": 27 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1552536, + "thread": 24 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1699428, + "thread": 2 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 1956434, + "thread": 11 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2025488, + "thread": 31 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2249221, + "thread": 13 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2451031, + "thread": 27 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2495642, + "thread": 10 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2652485, + "thread": 24 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 2841152, + "thread": 1 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 3095769, + "thread": 14 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 3232255, + "thread": 29 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 3436373, + "thread": 4 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 3483952, + "thread": 20 + } + }, + { + "amount": "176.500983178", + "slot": { + "period": 3660381, + "thread": 19 + } + }, + { + "amount": "176.500983176", + "slot": { + "period": 3871447, + "thread": 8 + } + } + ], + "AU1KLezBTcHbP4v1ajM1Be5rgwLN4revP2DWYcxgiQ8hBhYkr6Zc": [ + { + "amount": "121.746198584", + "slot": { + "period": 157025, + "thread": 10 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 238204, + "thread": 5 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 464783, + "thread": 0 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 601138, + "thread": 26 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 720640, + "thread": 20 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 839700, + "thread": 8 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 986354, + "thread": 11 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1166070, + "thread": 12 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1402889, + "thread": 28 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1571515, + "thread": 20 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1663539, + "thread": 12 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1946913, + "thread": 7 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 1981822, + "thread": 31 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 2216566, + "thread": 8 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 2295942, + "thread": 7 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 2579853, + "thread": 21 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 2691651, + "thread": 20 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 2802176, + "thread": 23 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 3103773, + "thread": 6 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 3287856, + "thread": 13 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 3337357, + "thread": 25 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 3540978, + "thread": 25 + } + }, + { + "amount": "121.746198584", + "slot": { + "period": 3618785, + "thread": 14 + } + }, + { + "amount": "121.746198591", + "slot": { + "period": 3791147, + "thread": 0 + } + } + ], + "AU1KMNmwHzegMynAfirftN13DUKeWkdNpMb8LGRWzDACm3PGzhFb": [ + { + "amount": "241.690401231", + "slot": { + "period": 110574, + "thread": 27 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 174890, + "thread": 31 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 473316, + "thread": 26 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 610686, + "thread": 31 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 777101, + "thread": 15 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 944748, + "thread": 2 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1149750, + "thread": 8 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1177944, + "thread": 9 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1446739, + "thread": 8 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1632984, + "thread": 1 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1697546, + "thread": 21 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 1836513, + "thread": 5 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2007046, + "thread": 1 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2228429, + "thread": 14 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2445601, + "thread": 7 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2494920, + "thread": 31 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2757287, + "thread": 12 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 2844460, + "thread": 1 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 3099074, + "thread": 16 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 3197472, + "thread": 21 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 3448894, + "thread": 1 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 3615603, + "thread": 17 + } + }, + { + "amount": "241.690401231", + "slot": { + "period": 3763318, + "thread": 19 + } + }, + { + "amount": "241.690401232", + "slot": { + "period": 3934790, + "thread": 8 + } + } + ], + "AU1KN1ig8MzA38mGGsbnpjmEvzCiA5ixjYiWU7NrurfbZVwagSfw": [ + { + "amount": "177.587644674", + "slot": { + "period": 37784, + "thread": 20 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 277379, + "thread": 24 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 470773, + "thread": 3 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 529611, + "thread": 24 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 672915, + "thread": 9 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 907813, + "thread": 16 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1146401, + "thread": 26 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1257796, + "thread": 22 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1450119, + "thread": 7 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1497433, + "thread": 1 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1652032, + "thread": 18 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 1938492, + "thread": 20 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2136087, + "thread": 25 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2289185, + "thread": 21 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2358452, + "thread": 6 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2592655, + "thread": 19 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2754539, + "thread": 18 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 2849292, + "thread": 0 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 3051091, + "thread": 8 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 3239348, + "thread": 6 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 3437510, + "thread": 30 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 3553944, + "thread": 12 + } + }, + { + "amount": "177.587644674", + "slot": { + "period": 3759972, + "thread": 4 + } + }, + { + "amount": "177.587644668", + "slot": { + "period": 3821652, + "thread": 23 + } + } + ], + "AU1KNbJg7ANQUPRgux2Y2LBhUdCAvWDbuZeP49weAdo4EsjbpfgK": [ + { + "amount": "132.018313376", + "slot": { + "period": 18149, + "thread": 21 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 286551, + "thread": 14 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 360851, + "thread": 29 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 492221, + "thread": 7 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 681498, + "thread": 17 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 900572, + "thread": 8 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1128319, + "thread": 28 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1303642, + "thread": 18 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1361826, + "thread": 18 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1630230, + "thread": 23 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1689001, + "thread": 30 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 1926216, + "thread": 5 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2041999, + "thread": 18 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2155221, + "thread": 31 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2362242, + "thread": 14 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2605912, + "thread": 26 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2776587, + "thread": 27 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2829219, + "thread": 23 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 2977210, + "thread": 28 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 3214141, + "thread": 17 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 3449634, + "thread": 16 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 3590543, + "thread": 4 + } + }, + { + "amount": "132.018313376", + "slot": { + "period": 3758989, + "thread": 25 + } + }, + { + "amount": "132.018313364", + "slot": { + "period": 3931690, + "thread": 5 + } + } + ], + "AU1KPyh17soQzeGZpMdw6qi877c2x9JBYBdyf5sCncYWGYMwwn9N": [ + { + "amount": "178.521372356", + "slot": { + "period": 155007, + "thread": 28 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 275694, + "thread": 17 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 376548, + "thread": 27 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 595650, + "thread": 1 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 819095, + "thread": 17 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 870410, + "thread": 19 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1055109, + "thread": 25 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1165316, + "thread": 7 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1336949, + "thread": 15 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1633912, + "thread": 0 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1660136, + "thread": 6 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 1823610, + "thread": 21 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2126286, + "thread": 18 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2220273, + "thread": 18 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2360073, + "thread": 0 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2555636, + "thread": 8 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2698301, + "thread": 1 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 2850365, + "thread": 23 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3008201, + "thread": 8 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3232134, + "thread": 29 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3425972, + "thread": 6 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3570202, + "thread": 29 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3757232, + "thread": 23 + } + }, + { + "amount": "178.521372356", + "slot": { + "period": 3881337, + "thread": 9 + } + } + ], + "AU1KQZU3vTaiZXJiM4cdfQEFu95hvVepDzzfHK365ySff5u7SvWW": [ + { + "amount": "57.148063611", + "slot": { + "period": 167305, + "thread": 25 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 244766, + "thread": 23 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 442649, + "thread": 17 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 575814, + "thread": 5 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 703429, + "thread": 22 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 959047, + "thread": 12 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1040277, + "thread": 8 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1165299, + "thread": 5 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1418022, + "thread": 13 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1485310, + "thread": 22 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1751963, + "thread": 31 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1873406, + "thread": 18 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 1980936, + "thread": 27 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2159196, + "thread": 11 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2460447, + "thread": 2 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2516401, + "thread": 20 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2663988, + "thread": 18 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2809249, + "thread": 31 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 2987773, + "thread": 21 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 3278947, + "thread": 14 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 3339087, + "thread": 28 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 3529447, + "thread": 2 + } + }, + { + "amount": "57.148063611", + "slot": { + "period": 3677312, + "thread": 30 + } + }, + { + "amount": "57.148063622", + "slot": { + "period": 3880315, + "thread": 11 + } + } + ], + "AU1KQekzDJGTAvsgSbV5y88qVZWeA2YtcKn7NQZgPkt5nUdKRtYj": [ + { + "amount": "189.977269267", + "slot": { + "period": 14509, + "thread": 18 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 215283, + "thread": 28 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 368249, + "thread": 20 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 549134, + "thread": 19 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 689176, + "thread": 1 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 947583, + "thread": 25 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1078118, + "thread": 24 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1244839, + "thread": 9 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1377561, + "thread": 11 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1580147, + "thread": 27 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1748018, + "thread": 9 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 1934507, + "thread": 1 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2031900, + "thread": 23 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2255448, + "thread": 3 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2354535, + "thread": 31 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2571573, + "thread": 19 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2657908, + "thread": 11 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2826986, + "thread": 4 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 2992934, + "thread": 7 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 3238950, + "thread": 22 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 3398714, + "thread": 30 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 3591711, + "thread": 23 + } + }, + { + "amount": "189.977269267", + "slot": { + "period": 3762019, + "thread": 8 + } + }, + { + "amount": "189.977269275", + "slot": { + "period": 3784558, + "thread": 28 + } + } + ], + "AU1KRLV9frNqXSFmUQuAWTcmpFKQRyprcVghrQxnbT8R2KP6Eeqy": [ + { + "amount": "142.830999689", + "slot": { + "period": 82179, + "thread": 4 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 198889, + "thread": 2 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 445071, + "thread": 8 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 619119, + "thread": 18 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 754530, + "thread": 10 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 896283, + "thread": 12 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1099914, + "thread": 21 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1267548, + "thread": 6 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1415669, + "thread": 31 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1546140, + "thread": 29 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1682186, + "thread": 31 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 1872253, + "thread": 24 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2027260, + "thread": 11 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2246833, + "thread": 26 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2374532, + "thread": 1 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2547360, + "thread": 25 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2676760, + "thread": 1 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2852855, + "thread": 30 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 2998929, + "thread": 16 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 3262678, + "thread": 22 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 3444143, + "thread": 2 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 3508898, + "thread": 4 + } + }, + { + "amount": "142.830999689", + "slot": { + "period": 3718813, + "thread": 24 + } + }, + { + "amount": "142.830999700", + "slot": { + "period": 3861768, + "thread": 6 + } + } + ], + "AU1KRTEzvyUxuVtsuxbbcGhBVQSicuUCCEgc9r9CYWRJhrrZhPdx": [ + { + "amount": "201.009023221", + "slot": { + "period": 42751, + "thread": 8 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 312043, + "thread": 2 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 408306, + "thread": 22 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 637558, + "thread": 13 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 757501, + "thread": 18 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 942477, + "thread": 21 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1140788, + "thread": 3 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1168256, + "thread": 6 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1332692, + "thread": 9 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1512027, + "thread": 10 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1709698, + "thread": 13 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1885184, + "thread": 24 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 1992867, + "thread": 17 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 2272154, + "thread": 9 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 2382520, + "thread": 30 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 2515612, + "thread": 5 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 2741134, + "thread": 12 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 2952858, + "thread": 20 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 3048896, + "thread": 17 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 3142435, + "thread": 4 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 3441553, + "thread": 12 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 3453878, + "thread": 30 + } + }, + { + "amount": "201.009023221", + "slot": { + "period": 3709466, + "thread": 31 + } + }, + { + "amount": "201.009023228", + "slot": { + "period": 3811365, + "thread": 2 + } + } + ], + "AU1KRer2AR9GRKAbryG92WpvuL3ZRr3AmV7BD2BcZrznNXKHzcAn": [ + { + "amount": "94.843685403", + "slot": { + "period": 18063, + "thread": 5 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 200674, + "thread": 23 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 420529, + "thread": 21 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 550715, + "thread": 20 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 743644, + "thread": 1 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 881055, + "thread": 30 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1080462, + "thread": 11 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1255153, + "thread": 23 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1460931, + "thread": 11 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1544282, + "thread": 29 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1763055, + "thread": 5 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 1894745, + "thread": 17 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2129548, + "thread": 18 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2174212, + "thread": 25 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2323381, + "thread": 22 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2592111, + "thread": 3 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2703248, + "thread": 31 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 2793067, + "thread": 22 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 3063512, + "thread": 7 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 3214798, + "thread": 2 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 3427637, + "thread": 2 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 3558602, + "thread": 8 + } + }, + { + "amount": "94.843685403", + "slot": { + "period": 3757773, + "thread": 15 + } + }, + { + "amount": "94.843685408", + "slot": { + "period": 3928690, + "thread": 28 + } + } + ], + "AU1KRrmYN14iSXW8xSZ8grAUV7YLJToFgyLvemW9DBQAXVyn4cgb": [ + { + "amount": "392.596488310", + "slot": { + "period": 115962, + "thread": 8 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 320880, + "thread": 10 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 353059, + "thread": 8 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 570061, + "thread": 0 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 799188, + "thread": 24 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 869136, + "thread": 9 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1149580, + "thread": 28 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1286657, + "thread": 23 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1319966, + "thread": 15 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1482796, + "thread": 28 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1700107, + "thread": 3 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1970120, + "thread": 5 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 1999879, + "thread": 21 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 2153921, + "thread": 6 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 2351380, + "thread": 26 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 2517816, + "thread": 3 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 2705975, + "thread": 19 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 2836010, + "thread": 4 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 3085917, + "thread": 11 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 3204330, + "thread": 6 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 3358878, + "thread": 10 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 3496576, + "thread": 28 + } + }, + { + "amount": "392.596488310", + "slot": { + "period": 3737018, + "thread": 20 + } + }, + { + "amount": "392.596488319", + "slot": { + "period": 3942172, + "thread": 29 + } + } + ], + "AU1KRtwZm3wmgU7c1Px6uai8g423LxU28BRDT73eoxVgj4WPEKjM": [ + { + "amount": "98.807624274", + "slot": { + "period": 44647, + "thread": 16 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 254379, + "thread": 30 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 473530, + "thread": 3 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 548521, + "thread": 13 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 711047, + "thread": 24 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 870010, + "thread": 19 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1099295, + "thread": 18 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1173687, + "thread": 23 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1336589, + "thread": 20 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1524015, + "thread": 4 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1805378, + "thread": 21 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 1930545, + "thread": 24 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2097856, + "thread": 23 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2271677, + "thread": 21 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2375875, + "thread": 27 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2557773, + "thread": 3 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2730433, + "thread": 22 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2866508, + "thread": 19 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 2995628, + "thread": 25 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 3156934, + "thread": 25 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 3361959, + "thread": 8 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 3532995, + "thread": 2 + } + }, + { + "amount": "98.807624274", + "slot": { + "period": 3677649, + "thread": 31 + } + }, + { + "amount": "98.807624272", + "slot": { + "period": 3838694, + "thread": 26 + } + } + ], + "AU1KRwaMyHHshEq9aWAFWXJJTo9F8AgqNeQobFFycv7P5Q486p6f": [ + { + "amount": "60.301424351", + "slot": { + "period": 61920, + "thread": 24 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 203273, + "thread": 27 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 364100, + "thread": 23 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 596703, + "thread": 28 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 727836, + "thread": 3 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 904579, + "thread": 23 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1134337, + "thread": 4 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1208665, + "thread": 16 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1405456, + "thread": 16 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1488167, + "thread": 17 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1727128, + "thread": 14 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 1874975, + "thread": 5 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2046305, + "thread": 6 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2281304, + "thread": 5 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2357268, + "thread": 15 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2581731, + "thread": 28 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2790005, + "thread": 2 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 2873449, + "thread": 30 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 3074933, + "thread": 14 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 3212412, + "thread": 26 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 3411281, + "thread": 19 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 3492355, + "thread": 9 + } + }, + { + "amount": "60.301424351", + "slot": { + "period": 3719983, + "thread": 6 + } + }, + { + "amount": "60.301424352", + "slot": { + "period": 3907740, + "thread": 31 + } + } + ], + "AU1KSCsi5fvWFysbPY1FcDSomcAXwmx345TZwGXUhc9XyAtTBJgF": [ + { + "amount": "60.666287649", + "slot": { + "period": 156200, + "thread": 2 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 323078, + "thread": 25 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 479266, + "thread": 11 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 543063, + "thread": 29 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 747652, + "thread": 21 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 911444, + "thread": 4 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1148547, + "thread": 10 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1213357, + "thread": 3 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1439921, + "thread": 29 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1616283, + "thread": 27 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1747374, + "thread": 6 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 1926672, + "thread": 9 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2038800, + "thread": 14 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2193966, + "thread": 3 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2330367, + "thread": 22 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2494501, + "thread": 5 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2705885, + "thread": 7 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 2818802, + "thread": 2 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 3061126, + "thread": 25 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 3176511, + "thread": 5 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 3410900, + "thread": 15 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 3532887, + "thread": 19 + } + }, + { + "amount": "60.666287649", + "slot": { + "period": 3778961, + "thread": 10 + } + }, + { + "amount": "60.666287642", + "slot": { + "period": 3943658, + "thread": 11 + } + } + ], + "AU1KThgAQWuArKEAnqZU62BsPpdf2YiQiiDmNUNh1VVD2VcMTpTq": [ + { + "amount": "144.014533017", + "slot": { + "period": 35205, + "thread": 3 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 199170, + "thread": 12 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 340852, + "thread": 8 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 591283, + "thread": 17 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 729355, + "thread": 22 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 823741, + "thread": 24 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1135861, + "thread": 28 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1159207, + "thread": 21 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1358769, + "thread": 10 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1506338, + "thread": 6 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1745007, + "thread": 23 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 1942284, + "thread": 26 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2116122, + "thread": 17 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2253489, + "thread": 1 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2392650, + "thread": 17 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2480081, + "thread": 16 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2678122, + "thread": 3 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 2854673, + "thread": 14 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 3012846, + "thread": 25 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 3134467, + "thread": 28 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 3349794, + "thread": 16 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 3570630, + "thread": 13 + } + }, + { + "amount": "144.014533017", + "slot": { + "period": 3757397, + "thread": 19 + } + }, + { + "amount": "144.014533010", + "slot": { + "period": 3799971, + "thread": 3 + } + } + ], + "AU1KTvsc6cy3ETvEsuZ832ACRRxzX3DWVq5GUFVF8jUMC6WfxJAr": [ + { + "amount": "1502.676042470", + "slot": { + "period": 149254, + "thread": 3 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 310663, + "thread": 18 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 343559, + "thread": 21 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 587595, + "thread": 21 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 744465, + "thread": 10 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 826918, + "thread": 3 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1057801, + "thread": 3 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1176040, + "thread": 18 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1376275, + "thread": 27 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1490562, + "thread": 29 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1755675, + "thread": 14 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 1947380, + "thread": 17 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2021082, + "thread": 2 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2166683, + "thread": 31 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2372034, + "thread": 18 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2531248, + "thread": 11 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2740012, + "thread": 27 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 2933228, + "thread": 3 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 3065777, + "thread": 17 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 3187805, + "thread": 31 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 3437583, + "thread": 10 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 3599753, + "thread": 6 + } + }, + { + "amount": "1502.676042470", + "slot": { + "period": 3692548, + "thread": 5 + } + }, + { + "amount": "1502.676042480", + "slot": { + "period": 3850764, + "thread": 20 + } + } + ], + "AU1KVD3a8eMHhzktzNE8jQapiVTkDbjCFU7JdCsJvfSor1bVYpVg": [ + { + "amount": "523.178947923", + "slot": { + "period": 71932, + "thread": 5 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 317703, + "thread": 12 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 406331, + "thread": 24 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 504113, + "thread": 2 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 790937, + "thread": 20 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 903586, + "thread": 7 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1046584, + "thread": 2 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1184139, + "thread": 3 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1378431, + "thread": 19 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1580650, + "thread": 22 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1765500, + "thread": 30 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 1925783, + "thread": 19 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2000917, + "thread": 30 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2183445, + "thread": 8 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2432855, + "thread": 15 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2506128, + "thread": 12 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2705370, + "thread": 19 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2916112, + "thread": 31 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 2983680, + "thread": 8 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 3177146, + "thread": 0 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 3435764, + "thread": 11 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 3566548, + "thread": 15 + } + }, + { + "amount": "523.178947923", + "slot": { + "period": 3684602, + "thread": 14 + } + }, + { + "amount": "523.178947916", + "slot": { + "period": 3782487, + "thread": 15 + } + } + ], + "AU1KVJSZy8LyXSNSRbj4qTEEQLNWLu2aUTyus7QqvGE2aeK2b5mP": [ + { + "amount": "193.102316829", + "slot": { + "period": 102831, + "thread": 10 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 293128, + "thread": 18 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 410086, + "thread": 7 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 573639, + "thread": 27 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 681855, + "thread": 27 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 885851, + "thread": 23 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1106775, + "thread": 16 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1246010, + "thread": 3 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1366735, + "thread": 15 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1532783, + "thread": 0 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1753960, + "thread": 5 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 1945965, + "thread": 12 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2046856, + "thread": 28 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2259262, + "thread": 28 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2348799, + "thread": 25 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2606830, + "thread": 16 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2710579, + "thread": 8 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 2818689, + "thread": 13 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3037691, + "thread": 20 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3152218, + "thread": 23 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3295632, + "thread": 27 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3495479, + "thread": 28 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3777394, + "thread": 12 + } + }, + { + "amount": "193.102316829", + "slot": { + "period": 3805869, + "thread": 11 + } + } + ], + "AU1KVRrsUH6kH2TUSo9JXW29s7oshDLmjdDCK9PcBTejYY87XGMj": [ + { + "amount": "601.881138384", + "slot": { + "period": 138357, + "thread": 14 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 264663, + "thread": 12 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 363691, + "thread": 16 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 575847, + "thread": 8 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 686478, + "thread": 26 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 840035, + "thread": 31 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1140661, + "thread": 20 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1280143, + "thread": 22 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1453215, + "thread": 20 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1598068, + "thread": 29 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1722961, + "thread": 11 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 1943681, + "thread": 25 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2010903, + "thread": 4 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2163789, + "thread": 29 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2315906, + "thread": 10 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2481669, + "thread": 7 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2644023, + "thread": 16 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 2920352, + "thread": 3 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 3093173, + "thread": 22 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 3283211, + "thread": 14 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 3395471, + "thread": 17 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 3493627, + "thread": 19 + } + }, + { + "amount": "601.881138384", + "slot": { + "period": 3657827, + "thread": 17 + } + }, + { + "amount": "601.881138377", + "slot": { + "period": 3881098, + "thread": 22 + } + } + ], + "AU1KWYeLpMhCyGfcjjYchJbzszEAq5euKisXEFc1FMYw2o2iNAti": [ + { + "amount": "90.156359449", + "slot": { + "period": 56214, + "thread": 3 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 241751, + "thread": 11 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 392012, + "thread": 24 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 620290, + "thread": 30 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 805425, + "thread": 28 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 848075, + "thread": 4 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1090994, + "thread": 3 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1228328, + "thread": 14 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1357707, + "thread": 2 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1593536, + "thread": 23 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1747601, + "thread": 7 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 1899348, + "thread": 14 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2109231, + "thread": 15 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2249461, + "thread": 22 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2434365, + "thread": 29 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2504757, + "thread": 24 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2666286, + "thread": 8 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 2926871, + "thread": 14 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 3019260, + "thread": 2 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 3221130, + "thread": 8 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 3416613, + "thread": 18 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 3609832, + "thread": 22 + } + }, + { + "amount": "90.156359449", + "slot": { + "period": 3640470, + "thread": 13 + } + }, + { + "amount": "90.156359447", + "slot": { + "period": 3784367, + "thread": 4 + } + } + ], + "AU1KWmh7UiNEVSiYY3vCzN5Lxxk3jMqVCh8B5VzsLC77HuJk8zbR": [ + { + "amount": "258.977806763", + "slot": { + "period": 122211, + "thread": 5 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 201218, + "thread": 18 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 418216, + "thread": 10 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 514326, + "thread": 6 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 678697, + "thread": 4 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 891641, + "thread": 5 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1121311, + "thread": 10 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1153863, + "thread": 31 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1473785, + "thread": 30 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1616669, + "thread": 14 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1678518, + "thread": 16 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 1926220, + "thread": 7 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2131867, + "thread": 8 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2283256, + "thread": 5 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2435533, + "thread": 20 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2496143, + "thread": 19 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2783946, + "thread": 29 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 2941398, + "thread": 25 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 3114675, + "thread": 11 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 3279222, + "thread": 18 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 3327508, + "thread": 18 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 3532415, + "thread": 22 + } + }, + { + "amount": "258.977806763", + "slot": { + "period": 3746366, + "thread": 8 + } + }, + { + "amount": "258.977806761", + "slot": { + "period": 3828768, + "thread": 20 + } + } + ], + "AU1KYEMY7yvYBmaNCEvrjK7ssHLvfxqorctZPAyUwH4p5NA54zLD": [ + { + "amount": "161.139273354", + "slot": { + "period": 53541, + "thread": 12 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 249919, + "thread": 0 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 368908, + "thread": 6 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 592439, + "thread": 23 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 733469, + "thread": 3 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 872937, + "thread": 15 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1071598, + "thread": 10 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1213449, + "thread": 12 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1444168, + "thread": 26 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1523526, + "thread": 17 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1744187, + "thread": 16 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 1836348, + "thread": 4 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2034677, + "thread": 28 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2274086, + "thread": 7 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2312192, + "thread": 25 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2470903, + "thread": 2 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2630778, + "thread": 27 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2948365, + "thread": 6 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 2968687, + "thread": 31 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 3159435, + "thread": 25 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 3359983, + "thread": 5 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 3565638, + "thread": 7 + } + }, + { + "amount": "161.139273354", + "slot": { + "period": 3744598, + "thread": 4 + } + }, + { + "amount": "161.139273349", + "slot": { + "period": 3816051, + "thread": 28 + } + } + ], + "AU1KYFv1BzfAd1QFApdUGHvscC3JmtU8Q9EQFCeXqvZtXrxK6UL9": [ + { + "amount": "230.515284978", + "slot": { + "period": 11517, + "thread": 0 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 311367, + "thread": 26 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 468917, + "thread": 4 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 529503, + "thread": 12 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 724608, + "thread": 30 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 869454, + "thread": 20 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1064481, + "thread": 18 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1180157, + "thread": 28 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1437260, + "thread": 9 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1641264, + "thread": 0 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1732149, + "thread": 27 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 1867367, + "thread": 7 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2009517, + "thread": 17 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2149543, + "thread": 20 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2352941, + "thread": 27 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2542896, + "thread": 31 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2751043, + "thread": 30 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 2816116, + "thread": 24 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 3029378, + "thread": 28 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 3212123, + "thread": 16 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 3297946, + "thread": 21 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 3549884, + "thread": 8 + } + }, + { + "amount": "230.515284978", + "slot": { + "period": 3713814, + "thread": 31 + } + }, + { + "amount": "230.515284988", + "slot": { + "period": 3786519, + "thread": 10 + } + } + ], + "AU1Ka7hgc2RBcz3sNoL2kbhJseMMsn9ay1QaPj3mkWD3Jw4xQiDo": [ + { + "amount": "238.326965875", + "slot": { + "period": 55846, + "thread": 9 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 210876, + "thread": 12 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 486215, + "thread": 0 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 563639, + "thread": 5 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 735007, + "thread": 7 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 830669, + "thread": 12 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1062740, + "thread": 0 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1311397, + "thread": 6 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1400643, + "thread": 16 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1487894, + "thread": 26 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1650515, + "thread": 23 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1931209, + "thread": 7 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 1979633, + "thread": 20 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 2218842, + "thread": 2 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 2320956, + "thread": 3 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 2526341, + "thread": 18 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 2791025, + "thread": 31 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 2913856, + "thread": 13 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 3069095, + "thread": 27 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 3247877, + "thread": 23 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 3317286, + "thread": 25 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 3486938, + "thread": 10 + } + }, + { + "amount": "238.326965875", + "slot": { + "period": 3765711, + "thread": 12 + } + }, + { + "amount": "238.326965886", + "slot": { + "period": 3782185, + "thread": 24 + } + } + ], + "AU1KaCmHV4RBsgsCQiVtJhSnPRjPitBz3fzU1vpHQZMXVjTpSv9m": [ + { + "amount": "169.996644457", + "slot": { + "period": 137365, + "thread": 13 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 221083, + "thread": 29 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 469171, + "thread": 2 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 519350, + "thread": 4 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 751054, + "thread": 17 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 873954, + "thread": 6 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 990302, + "thread": 22 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 1312843, + "thread": 24 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 1372894, + "thread": 1 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 1506206, + "thread": 28 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 1761093, + "thread": 18 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 1809381, + "thread": 11 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2036657, + "thread": 26 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2164972, + "thread": 24 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2300573, + "thread": 31 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2503786, + "thread": 2 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2658145, + "thread": 15 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 2800506, + "thread": 2 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 3042924, + "thread": 20 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 3190013, + "thread": 14 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 3314637, + "thread": 23 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 3456104, + "thread": 15 + } + }, + { + "amount": "169.996644457", + "slot": { + "period": 3739398, + "thread": 11 + } + }, + { + "amount": "169.996644456", + "slot": { + "period": 3821350, + "thread": 1 + } + } + ], + "AU1KaoT64sB91KkarnbdAfEcuf9t3zRxGMrESpCrZRWy3YgdRs86": [ + { + "amount": "128.930736104", + "slot": { + "period": 141728, + "thread": 6 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 299124, + "thread": 14 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 479938, + "thread": 13 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 642269, + "thread": 1 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 734584, + "thread": 27 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 874852, + "thread": 10 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1082455, + "thread": 5 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1215916, + "thread": 4 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1322130, + "thread": 7 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1625297, + "thread": 31 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1762474, + "thread": 24 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 1941176, + "thread": 24 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2141469, + "thread": 6 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2189827, + "thread": 22 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2332167, + "thread": 7 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2477986, + "thread": 16 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2660816, + "thread": 2 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 2931067, + "thread": 29 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 3054490, + "thread": 22 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 3162364, + "thread": 29 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 3431645, + "thread": 1 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 3568141, + "thread": 20 + } + }, + { + "amount": "128.930736104", + "slot": { + "period": 3680211, + "thread": 7 + } + }, + { + "amount": "128.930736107", + "slot": { + "period": 3880662, + "thread": 12 + } + } + ], + "AU1KaorsydNjvATW6HMeDjrbqAeD6Uz5HMSE9ycGdt8yeCcXjSM4": [ + { + "amount": "68.327092116", + "slot": { + "period": 17769, + "thread": 21 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 220379, + "thread": 21 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 417292, + "thread": 0 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 548087, + "thread": 24 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 758651, + "thread": 22 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 978668, + "thread": 31 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1107782, + "thread": 15 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1174224, + "thread": 31 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1438080, + "thread": 0 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1599210, + "thread": 28 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1751450, + "thread": 9 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 1819857, + "thread": 26 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2030655, + "thread": 16 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2180234, + "thread": 14 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2394630, + "thread": 19 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2496006, + "thread": 23 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2656384, + "thread": 27 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 2857712, + "thread": 6 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 3067800, + "thread": 22 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 3244615, + "thread": 16 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 3441478, + "thread": 19 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 3492605, + "thread": 29 + } + }, + { + "amount": "68.327092116", + "slot": { + "period": 3689542, + "thread": 15 + } + }, + { + "amount": "68.327092120", + "slot": { + "period": 3816098, + "thread": 24 + } + } + ], + "AU1KbuUZazWCWbqk8UwTdtPFLA9FsuJ6VmAGsCRvoKKo34CJeH7H": [ + { + "amount": "89.077476753", + "slot": { + "period": 38288, + "thread": 30 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 274050, + "thread": 22 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 419289, + "thread": 11 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 611005, + "thread": 13 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 673289, + "thread": 8 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 939108, + "thread": 2 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1095270, + "thread": 25 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1285421, + "thread": 11 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1478408, + "thread": 23 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1568174, + "thread": 30 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1744318, + "thread": 7 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 1850000, + "thread": 2 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2018501, + "thread": 7 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2167997, + "thread": 8 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2302702, + "thread": 1 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2495029, + "thread": 23 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2652698, + "thread": 7 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2827300, + "thread": 28 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 2981869, + "thread": 19 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 3164107, + "thread": 31 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 3392411, + "thread": 17 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 3454268, + "thread": 12 + } + }, + { + "amount": "89.077476753", + "slot": { + "period": 3664015, + "thread": 10 + } + }, + { + "amount": "89.077476757", + "slot": { + "period": 3839583, + "thread": 0 + } + } + ], + "AU1KcXCfnfzgrDWTwiWudkghR2EQKFBxagX6jaG655MoaxsWWVZj": [ + { + "amount": "443.559591856", + "slot": { + "period": 36623, + "thread": 11 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 285641, + "thread": 27 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 466742, + "thread": 25 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 587513, + "thread": 3 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 806456, + "thread": 23 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 918299, + "thread": 18 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1119546, + "thread": 10 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1222466, + "thread": 4 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1347265, + "thread": 21 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1615768, + "thread": 10 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1651970, + "thread": 23 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 1868980, + "thread": 9 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2056814, + "thread": 4 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2204718, + "thread": 23 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2460698, + "thread": 4 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2536797, + "thread": 11 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2688784, + "thread": 5 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 2857397, + "thread": 15 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 3081243, + "thread": 7 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 3147254, + "thread": 31 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 3350860, + "thread": 8 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 3580383, + "thread": 4 + } + }, + { + "amount": "443.559591856", + "slot": { + "period": 3724576, + "thread": 0 + } + }, + { + "amount": "443.559591861", + "slot": { + "period": 3831876, + "thread": 25 + } + } + ], + "AU1Ke9NorVEcv2w9EzYHsSWnYNj6MSP7ahsukZoyKoxnFo7iJAQG": [ + { + "amount": "126.150119883", + "slot": { + "period": 141362, + "thread": 11 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 226942, + "thread": 29 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 353739, + "thread": 13 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 546505, + "thread": 21 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 679877, + "thread": 2 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 859218, + "thread": 4 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1032488, + "thread": 2 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1170979, + "thread": 16 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1462652, + "thread": 6 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1518128, + "thread": 22 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1733264, + "thread": 9 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1878330, + "thread": 24 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 1983292, + "thread": 13 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2287330, + "thread": 6 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2389221, + "thread": 6 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2536349, + "thread": 31 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2632961, + "thread": 15 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2914044, + "thread": 7 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 2967873, + "thread": 14 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 3184131, + "thread": 29 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 3295305, + "thread": 24 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 3454433, + "thread": 30 + } + }, + { + "amount": "126.150119883", + "slot": { + "period": 3727450, + "thread": 3 + } + }, + { + "amount": "126.150119875", + "slot": { + "period": 3918306, + "thread": 15 + } + } + ], + "AU1Kf93kwshyh2NEC9uqFezK5NPxMuiFkN5EDiCJv4ewYySAcoVK": [ + { + "amount": "214.036728219", + "slot": { + "period": 38460, + "thread": 28 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 174936, + "thread": 19 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 466865, + "thread": 6 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 503843, + "thread": 2 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 737032, + "thread": 3 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 912276, + "thread": 11 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1083276, + "thread": 17 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1164003, + "thread": 25 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1399906, + "thread": 17 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1515513, + "thread": 14 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1657764, + "thread": 29 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 1900120, + "thread": 24 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2062542, + "thread": 27 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2152440, + "thread": 21 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2396556, + "thread": 5 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2501369, + "thread": 6 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2651253, + "thread": 25 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2909082, + "thread": 25 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 2969879, + "thread": 8 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 3157690, + "thread": 12 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 3374939, + "thread": 9 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 3561307, + "thread": 16 + } + }, + { + "amount": "214.036728219", + "slot": { + "period": 3729818, + "thread": 26 + } + }, + { + "amount": "214.036728214", + "slot": { + "period": 3809822, + "thread": 0 + } + } + ], + "AU1KhuXhfNosXduPtCAtrhkfDc5uByL33ktEHZRGqbKcXCetKmkH": [ + { + "amount": "497.948899186", + "slot": { + "period": 95253, + "thread": 25 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 256958, + "thread": 19 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 346477, + "thread": 31 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 577096, + "thread": 10 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 793883, + "thread": 4 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 961394, + "thread": 7 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1003225, + "thread": 12 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1232842, + "thread": 20 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1352802, + "thread": 27 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1555848, + "thread": 4 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1697950, + "thread": 25 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 1974623, + "thread": 3 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2085098, + "thread": 0 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2264310, + "thread": 17 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2296582, + "thread": 18 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2562971, + "thread": 14 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2723445, + "thread": 7 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2946184, + "thread": 13 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 2963585, + "thread": 4 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 3268991, + "thread": 30 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 3440048, + "thread": 3 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 3480689, + "thread": 30 + } + }, + { + "amount": "497.948899186", + "slot": { + "period": 3682034, + "thread": 29 + } + }, + { + "amount": "497.948899190", + "slot": { + "period": 3802085, + "thread": 5 + } + } + ], + "AU1KiALiMqBnv2sgWd6bkrtcZz8oEgnoFeKvcxjWFmCG4y9y1skw": [ + { + "amount": "373.069315643", + "slot": { + "period": 127101, + "thread": 9 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 234056, + "thread": 12 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 392008, + "thread": 26 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 586309, + "thread": 15 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 735932, + "thread": 18 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 927966, + "thread": 26 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 989592, + "thread": 25 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 1205575, + "thread": 5 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 1461717, + "thread": 15 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 1562772, + "thread": 17 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 1790934, + "thread": 19 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 1853963, + "thread": 20 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2070354, + "thread": 4 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2212785, + "thread": 21 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2435045, + "thread": 3 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2602640, + "thread": 23 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2743090, + "thread": 1 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 2928322, + "thread": 14 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 3030571, + "thread": 16 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 3127058, + "thread": 2 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 3400102, + "thread": 21 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 3608445, + "thread": 27 + } + }, + { + "amount": "373.069315643", + "slot": { + "period": 3775292, + "thread": 20 + } + }, + { + "amount": "373.069315635", + "slot": { + "period": 3786804, + "thread": 16 + } + } + ], + "AU1KivNFWBW3ZThmAAnkPwGTfJc5iFER3Erb65PDaGjH2DsStFKv": [ + { + "amount": "59.100628382", + "slot": { + "period": 23525, + "thread": 2 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 296800, + "thread": 7 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 433497, + "thread": 13 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 611788, + "thread": 10 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 710312, + "thread": 10 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 971827, + "thread": 17 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1133707, + "thread": 31 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1273328, + "thread": 13 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1355334, + "thread": 9 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1640079, + "thread": 5 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1787560, + "thread": 13 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 1961771, + "thread": 5 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2009388, + "thread": 9 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2260779, + "thread": 10 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2383258, + "thread": 20 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2581082, + "thread": 22 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2771342, + "thread": 24 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 2850982, + "thread": 10 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 3108433, + "thread": 10 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 3265750, + "thread": 31 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 3347775, + "thread": 11 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 3488338, + "thread": 29 + } + }, + { + "amount": "59.100628382", + "slot": { + "period": 3730775, + "thread": 28 + } + }, + { + "amount": "59.100628385", + "slot": { + "period": 3908766, + "thread": 29 + } + } + ], + "AU1KjjweFujmrtE1AKukXQkDB4iAZSzA8zMqsHELZeEfMqRkxE4Y": [ + { + "amount": "143.445915370", + "slot": { + "period": 78342, + "thread": 26 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 306881, + "thread": 2 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 401505, + "thread": 7 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 528981, + "thread": 20 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 692364, + "thread": 30 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 938532, + "thread": 21 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1044692, + "thread": 30 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1240048, + "thread": 13 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1367716, + "thread": 22 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1641282, + "thread": 1 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1808491, + "thread": 5 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 1828224, + "thread": 26 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2101358, + "thread": 29 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2153671, + "thread": 29 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2394773, + "thread": 4 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2467096, + "thread": 28 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2625088, + "thread": 3 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 2950805, + "thread": 8 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 3053604, + "thread": 15 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 3184494, + "thread": 6 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 3336794, + "thread": 11 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 3514378, + "thread": 6 + } + }, + { + "amount": "143.445915370", + "slot": { + "period": 3743766, + "thread": 6 + } + }, + { + "amount": "143.445915379", + "slot": { + "period": 3882855, + "thread": 11 + } + } + ], + "AU1KkgR5YQotpuFc75eXUEbsFtVLZJPjWsJaxC3pafKEqT8Tgafj": [ + { + "amount": "81.685884428", + "slot": { + "period": 35914, + "thread": 16 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 290835, + "thread": 19 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 391432, + "thread": 24 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 617961, + "thread": 6 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 706773, + "thread": 23 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 958605, + "thread": 8 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 996983, + "thread": 6 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 1293385, + "thread": 8 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 1431273, + "thread": 22 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 1545780, + "thread": 8 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 1730046, + "thread": 18 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 1829308, + "thread": 12 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2108407, + "thread": 17 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2158311, + "thread": 12 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2342449, + "thread": 24 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2551436, + "thread": 6 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2685940, + "thread": 21 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 2903225, + "thread": 4 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 3112144, + "thread": 11 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 3194359, + "thread": 8 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 3339683, + "thread": 24 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 3470904, + "thread": 19 + } + }, + { + "amount": "81.685884428", + "slot": { + "period": 3733197, + "thread": 5 + } + }, + { + "amount": "81.685884435", + "slot": { + "period": 3796927, + "thread": 27 + } + } + ], + "AU1KkqxoJG5eEdyw5XTpuV7UBCkvs76TwKBmjS1uVkL2XPrYGYSf": [ + { + "amount": "101.641845843", + "slot": { + "period": 104180, + "thread": 15 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 276112, + "thread": 19 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 407434, + "thread": 14 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 569080, + "thread": 28 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 749114, + "thread": 24 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 821876, + "thread": 0 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 994250, + "thread": 25 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 1183727, + "thread": 24 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 1408753, + "thread": 20 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 1480491, + "thread": 15 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 1708141, + "thread": 14 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 1838747, + "thread": 9 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2092785, + "thread": 31 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2221189, + "thread": 19 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2370241, + "thread": 8 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2593481, + "thread": 15 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2677801, + "thread": 10 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 2798585, + "thread": 23 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 3064265, + "thread": 15 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 3167770, + "thread": 30 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 3409827, + "thread": 29 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 3536268, + "thread": 31 + } + }, + { + "amount": "101.641845843", + "slot": { + "period": 3743385, + "thread": 8 + } + }, + { + "amount": "101.641845841", + "slot": { + "period": 3896934, + "thread": 16 + } + } + ], + "AU1Km2w3iuGSdAkazUNpdEJfD9TUDVjkNiYtTq6NC6Dq1ENzEBqa": [ + { + "amount": "463.132255409", + "slot": { + "period": 63239, + "thread": 5 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 176978, + "thread": 27 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 488938, + "thread": 23 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 629268, + "thread": 20 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 765677, + "thread": 13 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 940481, + "thread": 0 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1111138, + "thread": 18 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1266510, + "thread": 29 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1347527, + "thread": 27 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1595720, + "thread": 25 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1650246, + "thread": 11 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1829581, + "thread": 6 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 1990861, + "thread": 10 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 2231775, + "thread": 28 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 2393193, + "thread": 15 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 2571893, + "thread": 27 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 2703008, + "thread": 14 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 2862389, + "thread": 19 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 3030701, + "thread": 18 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 3123582, + "thread": 19 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 3334229, + "thread": 28 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 3569734, + "thread": 2 + } + }, + { + "amount": "463.132255409", + "slot": { + "period": 3737679, + "thread": 19 + } + }, + { + "amount": "463.132255407", + "slot": { + "period": 3909167, + "thread": 19 + } + } + ], + "AU1KmEkyMvXupvb7P4eR5LRSdLHLTuK4R4Q8ZvFVAJSPJVaRzjrQ": [ + { + "amount": "86.007380848", + "slot": { + "period": 52935, + "thread": 18 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 212959, + "thread": 3 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 329973, + "thread": 26 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 511543, + "thread": 14 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 673943, + "thread": 15 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 922385, + "thread": 9 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1039794, + "thread": 1 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1238155, + "thread": 25 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1382319, + "thread": 29 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1611897, + "thread": 26 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1772407, + "thread": 1 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 1919396, + "thread": 27 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2120711, + "thread": 28 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2244448, + "thread": 10 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2333726, + "thread": 9 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2537641, + "thread": 7 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2668613, + "thread": 23 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2852386, + "thread": 23 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 2978216, + "thread": 30 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 3151833, + "thread": 4 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 3368337, + "thread": 8 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 3491175, + "thread": 19 + } + }, + { + "amount": "86.007380848", + "slot": { + "period": 3709787, + "thread": 12 + } + }, + { + "amount": "86.007380838", + "slot": { + "period": 3887057, + "thread": 11 + } + } + ], + "AU1KmzwbbFAHGg9gD6YVcrD8PcSMcQieXVBpx6n5AU2Unhvq5JGX": [ + { + "amount": "417.818907442", + "slot": { + "period": 106105, + "thread": 29 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 194761, + "thread": 30 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 431964, + "thread": 27 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 538292, + "thread": 15 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 693646, + "thread": 23 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 967231, + "thread": 27 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1115705, + "thread": 8 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1254764, + "thread": 6 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1350294, + "thread": 13 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1530326, + "thread": 24 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1654453, + "thread": 20 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 1868287, + "thread": 15 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2013123, + "thread": 13 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2165737, + "thread": 28 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2309176, + "thread": 29 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2470592, + "thread": 26 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2733990, + "thread": 4 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 2854807, + "thread": 30 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 3054411, + "thread": 3 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 3142086, + "thread": 4 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 3328372, + "thread": 2 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 3468517, + "thread": 31 + } + }, + { + "amount": "417.818907442", + "slot": { + "period": 3631206, + "thread": 29 + } + }, + { + "amount": "417.818907439", + "slot": { + "period": 3946438, + "thread": 16 + } + } + ], + "AU1Knpk3herwDXRna3PgPgoEykPZHCosxvSX6HoBpPRcBrmeoNc7": [ + { + "amount": "127.522426787", + "slot": { + "period": 124081, + "thread": 12 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 235283, + "thread": 21 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 419683, + "thread": 0 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 526074, + "thread": 10 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 665055, + "thread": 9 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 864321, + "thread": 18 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1018899, + "thread": 17 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1239947, + "thread": 31 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1384517, + "thread": 0 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1486602, + "thread": 23 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1766516, + "thread": 22 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 1855196, + "thread": 24 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2137607, + "thread": 6 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2152784, + "thread": 6 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2385020, + "thread": 9 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2506515, + "thread": 28 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2780512, + "thread": 20 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 2794840, + "thread": 27 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3026163, + "thread": 7 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3131325, + "thread": 14 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3327678, + "thread": 6 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3586459, + "thread": 17 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3778237, + "thread": 8 + } + }, + { + "amount": "127.522426787", + "slot": { + "period": 3920227, + "thread": 20 + } + } + ], + "AU1Ko6gDvmczQjuAE5GL3xcqcHW27iXzswXGVK6TvU69DtrZL58E": [ + { + "amount": "255.526856578", + "slot": { + "period": 74041, + "thread": 20 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 297060, + "thread": 26 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 467994, + "thread": 12 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 539290, + "thread": 28 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 770017, + "thread": 7 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 882126, + "thread": 1 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1078019, + "thread": 28 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1178424, + "thread": 1 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1413506, + "thread": 10 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1516442, + "thread": 8 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1674659, + "thread": 12 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 1905359, + "thread": 8 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2041607, + "thread": 13 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2284466, + "thread": 4 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2424711, + "thread": 2 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2532750, + "thread": 16 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2733431, + "thread": 18 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 2835565, + "thread": 16 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 3001667, + "thread": 1 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 3172021, + "thread": 28 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 3424357, + "thread": 2 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 3464266, + "thread": 6 + } + }, + { + "amount": "255.526856578", + "slot": { + "period": 3631295, + "thread": 31 + } + }, + { + "amount": "255.526856590", + "slot": { + "period": 3811929, + "thread": 8 + } + } + ], + "AU1KoTCiUucLt6JJ9TmnfdN4SEBYax2kFG4j7o3yuzbFAQewZQ2k": [ + { + "amount": "231.664897578", + "slot": { + "period": 92054, + "thread": 23 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 173872, + "thread": 0 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 324485, + "thread": 0 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 494750, + "thread": 1 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 719374, + "thread": 24 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 872696, + "thread": 17 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1012435, + "thread": 24 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1280537, + "thread": 4 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1440709, + "thread": 6 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1637920, + "thread": 22 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1802090, + "thread": 31 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 1937611, + "thread": 28 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2137513, + "thread": 13 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2294693, + "thread": 11 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2305426, + "thread": 12 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2608955, + "thread": 18 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2782041, + "thread": 10 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 2891758, + "thread": 10 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 3118678, + "thread": 31 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 3264095, + "thread": 14 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 3380637, + "thread": 24 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 3606117, + "thread": 27 + } + }, + { + "amount": "231.664897578", + "slot": { + "period": 3676519, + "thread": 18 + } + }, + { + "amount": "231.664897573", + "slot": { + "period": 3782779, + "thread": 5 + } + } + ], + "AU1Koaus4mPhPcqK7zMNW7W3TqZVGVdaX1MEDV5U29UTdzg4oc65": [ + { + "amount": "255.660405272", + "slot": { + "period": 68446, + "thread": 18 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 226127, + "thread": 26 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 393793, + "thread": 12 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 550961, + "thread": 5 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 715298, + "thread": 12 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 893067, + "thread": 8 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1026565, + "thread": 19 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1285512, + "thread": 31 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1466891, + "thread": 31 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1519510, + "thread": 12 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1743478, + "thread": 6 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 1970400, + "thread": 3 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2079991, + "thread": 7 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2169980, + "thread": 0 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2375716, + "thread": 25 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2524415, + "thread": 29 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2725831, + "thread": 6 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 2927972, + "thread": 16 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 3061691, + "thread": 26 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 3160743, + "thread": 22 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 3450378, + "thread": 16 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 3510247, + "thread": 23 + } + }, + { + "amount": "255.660405272", + "slot": { + "period": 3659394, + "thread": 13 + } + }, + { + "amount": "255.660405260", + "slot": { + "period": 3906534, + "thread": 5 + } + } + ], + "AU1KpbfHP43R9A6ZQTquHuoS15ei7W6yLFB9aNSi7RQQNvVPZrF7": [ + { + "amount": "208.820349292", + "slot": { + "period": 14141, + "thread": 30 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 264721, + "thread": 9 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 379523, + "thread": 14 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 644642, + "thread": 25 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 770852, + "thread": 26 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 977256, + "thread": 11 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1125146, + "thread": 1 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1281381, + "thread": 9 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1437095, + "thread": 4 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1485827, + "thread": 27 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1760304, + "thread": 20 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 1838138, + "thread": 26 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2029208, + "thread": 5 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2237840, + "thread": 4 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2451428, + "thread": 11 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2532454, + "thread": 11 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2727095, + "thread": 9 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 2807700, + "thread": 11 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 3020816, + "thread": 3 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 3228468, + "thread": 1 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 3317824, + "thread": 1 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 3465530, + "thread": 15 + } + }, + { + "amount": "208.820349292", + "slot": { + "period": 3704547, + "thread": 6 + } + }, + { + "amount": "208.820349283", + "slot": { + "period": 3927764, + "thread": 11 + } + } + ], + "AU1KpuqUGfW6mt75sWAsfPAYYJiNww5suzPBMoSFs7zbuatFndbd": [ + { + "amount": "192.521008180", + "slot": { + "period": 44088, + "thread": 4 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 281194, + "thread": 1 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 447777, + "thread": 23 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 588467, + "thread": 16 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 684840, + "thread": 26 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 981413, + "thread": 28 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1013264, + "thread": 18 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1232406, + "thread": 25 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1342100, + "thread": 29 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1583931, + "thread": 27 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1723936, + "thread": 14 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 1965926, + "thread": 8 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2054690, + "thread": 8 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2246568, + "thread": 13 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2410694, + "thread": 8 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2600356, + "thread": 29 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2739416, + "thread": 19 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 2908636, + "thread": 3 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 3039699, + "thread": 31 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 3160569, + "thread": 4 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 3448949, + "thread": 10 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 3510824, + "thread": 29 + } + }, + { + "amount": "192.521008180", + "slot": { + "period": 3754577, + "thread": 16 + } + }, + { + "amount": "192.521008183", + "slot": { + "period": 3848727, + "thread": 30 + } + } + ], + "AU1KqXsort5ZPCoVphZmBP16ARZPssQuC7nURy23aSrrcZ3ZDo6W": [ + { + "amount": "581.445606972", + "slot": { + "period": 121503, + "thread": 12 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 224221, + "thread": 21 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 459194, + "thread": 15 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 499069, + "thread": 8 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 809606, + "thread": 26 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 970591, + "thread": 4 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1112540, + "thread": 13 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1279754, + "thread": 23 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1318209, + "thread": 28 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1512435, + "thread": 23 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1719547, + "thread": 20 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 1967803, + "thread": 22 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2007198, + "thread": 26 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2158800, + "thread": 8 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2446811, + "thread": 21 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2508395, + "thread": 3 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2643801, + "thread": 10 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 2852705, + "thread": 29 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 3038050, + "thread": 3 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 3178001, + "thread": 1 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 3447827, + "thread": 23 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 3559605, + "thread": 23 + } + }, + { + "amount": "581.445606972", + "slot": { + "period": 3701970, + "thread": 15 + } + }, + { + "amount": "581.445606963", + "slot": { + "period": 3890202, + "thread": 14 + } + } + ], + "AU1KqwU55yzk6rprbA93zhsfvEy28mtStHUMvuTP4BdBrqY96Nje": [ + { + "amount": "129.172134636", + "slot": { + "period": 59425, + "thread": 23 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 214642, + "thread": 30 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 452329, + "thread": 4 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 575932, + "thread": 13 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 688035, + "thread": 1 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 923913, + "thread": 11 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1089970, + "thread": 25 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1225069, + "thread": 28 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1333939, + "thread": 11 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1593776, + "thread": 16 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1691581, + "thread": 12 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 1842690, + "thread": 24 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2093651, + "thread": 4 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2292770, + "thread": 28 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2310056, + "thread": 13 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2555088, + "thread": 14 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2695096, + "thread": 19 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 2934051, + "thread": 12 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 3096481, + "thread": 0 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 3246554, + "thread": 8 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 3398935, + "thread": 16 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 3605667, + "thread": 16 + } + }, + { + "amount": "129.172134636", + "slot": { + "period": 3725497, + "thread": 23 + } + }, + { + "amount": "129.172134640", + "slot": { + "period": 3854436, + "thread": 23 + } + } + ], + "AU1Kr8BQFSPfW7jeh1Czxk8PzVSdfmrkknr41xcYzCnnToZ2gqZt": [ + { + "amount": "139.257451220", + "slot": { + "period": 85545, + "thread": 17 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 279392, + "thread": 23 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 416109, + "thread": 30 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 643420, + "thread": 5 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 666419, + "thread": 30 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 964279, + "thread": 19 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1034304, + "thread": 24 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1277674, + "thread": 12 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1459239, + "thread": 8 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1640175, + "thread": 21 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1748070, + "thread": 10 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 1857916, + "thread": 1 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2046703, + "thread": 13 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2187822, + "thread": 24 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2392004, + "thread": 17 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2611507, + "thread": 1 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2737485, + "thread": 12 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 2897551, + "thread": 12 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 3025246, + "thread": 23 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 3243257, + "thread": 25 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 3298252, + "thread": 17 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 3547432, + "thread": 27 + } + }, + { + "amount": "139.257451220", + "slot": { + "period": 3643714, + "thread": 4 + } + }, + { + "amount": "139.257451219", + "slot": { + "period": 3820052, + "thread": 18 + } + } + ], + "AU1KrsKpN9WNDSJuvhzeKKQwr3MuJt36QUihkeR1Vi8rvx6pna1m": [ + { + "amount": "60.196958722", + "slot": { + "period": 122686, + "thread": 10 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 205978, + "thread": 4 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 463141, + "thread": 17 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 533606, + "thread": 11 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 715628, + "thread": 15 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 829314, + "thread": 14 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1064836, + "thread": 13 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1271712, + "thread": 28 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1360411, + "thread": 2 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1550911, + "thread": 0 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1718365, + "thread": 18 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 1894889, + "thread": 21 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2097831, + "thread": 25 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2190528, + "thread": 24 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2357150, + "thread": 1 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2606631, + "thread": 0 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2735030, + "thread": 22 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2850476, + "thread": 0 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 2981414, + "thread": 21 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 3182801, + "thread": 0 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 3422606, + "thread": 0 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 3450658, + "thread": 25 + } + }, + { + "amount": "60.196958722", + "slot": { + "period": 3663729, + "thread": 10 + } + }, + { + "amount": "60.196958718", + "slot": { + "period": 3781298, + "thread": 7 + } + } + ], + "AU1KuGAVu8X2Ea6zhMGYzMjtCcUrsyF9Gyn43vUC1WhDeqTRgizi": [ + { + "amount": "99.414067338", + "slot": { + "period": 126827, + "thread": 31 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 191824, + "thread": 25 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 340760, + "thread": 0 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 604469, + "thread": 19 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 743061, + "thread": 5 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 902817, + "thread": 19 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1011101, + "thread": 14 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1241226, + "thread": 3 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1380919, + "thread": 16 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1535116, + "thread": 18 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1734896, + "thread": 4 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1836915, + "thread": 19 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 1987829, + "thread": 7 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2155761, + "thread": 30 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2333376, + "thread": 1 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2618477, + "thread": 16 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2789523, + "thread": 21 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2803345, + "thread": 4 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 2972145, + "thread": 5 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 3173949, + "thread": 15 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 3443603, + "thread": 14 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 3617380, + "thread": 2 + } + }, + { + "amount": "99.414067338", + "slot": { + "period": 3631668, + "thread": 13 + } + }, + { + "amount": "99.414067333", + "slot": { + "period": 3799899, + "thread": 10 + } + } + ], + "AU1KuKNb1BSPNzNwARhxDKTjA4AXHcztQGVtm22CCaKjRk8vfyYf": [ + { + "amount": "163.895650490", + "slot": { + "period": 166829, + "thread": 3 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 285950, + "thread": 30 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 387852, + "thread": 27 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 651354, + "thread": 14 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 769538, + "thread": 22 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 842872, + "thread": 26 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1034785, + "thread": 22 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1224435, + "thread": 21 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1382142, + "thread": 3 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1509871, + "thread": 13 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1737084, + "thread": 12 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1877670, + "thread": 12 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 1994663, + "thread": 19 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 2270731, + "thread": 1 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 2399222, + "thread": 6 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 2511402, + "thread": 0 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 2688725, + "thread": 9 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 2866281, + "thread": 27 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 3013477, + "thread": 22 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 3212342, + "thread": 24 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 3387724, + "thread": 8 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 3593076, + "thread": 7 + } + }, + { + "amount": "163.895650490", + "slot": { + "period": 3685674, + "thread": 12 + } + }, + { + "amount": "163.895650481", + "slot": { + "period": 3831560, + "thread": 9 + } + } + ], + "AU1KuXhq3Cpe9aFqM3hpNGuZVrqHwPYuLGDuvY95NqEGdqsGsGRT": [ + { + "amount": "276.138414422", + "slot": { + "period": 133213, + "thread": 16 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 246485, + "thread": 4 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 434735, + "thread": 24 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 521161, + "thread": 22 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 692146, + "thread": 10 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 968692, + "thread": 8 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1093592, + "thread": 24 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1256257, + "thread": 2 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1342796, + "thread": 4 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1550262, + "thread": 25 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1769953, + "thread": 15 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 1826778, + "thread": 27 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2009791, + "thread": 6 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2146771, + "thread": 30 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2426739, + "thread": 1 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2586391, + "thread": 28 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2698392, + "thread": 8 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 2944204, + "thread": 10 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3032863, + "thread": 4 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3245301, + "thread": 17 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3374163, + "thread": 18 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3484836, + "thread": 9 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3651185, + "thread": 17 + } + }, + { + "amount": "276.138414422", + "slot": { + "period": 3806585, + "thread": 0 + } + } + ], + "AU1KvXQYte2R6zuCAGYsp2r3Zr4AcdQRb26tFW69Dk5UjGaZRtb5": [ + { + "amount": "267.047672157", + "slot": { + "period": 36958, + "thread": 13 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 312584, + "thread": 29 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 422263, + "thread": 18 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 616934, + "thread": 17 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 807769, + "thread": 23 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 889270, + "thread": 26 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1016501, + "thread": 0 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1193143, + "thread": 16 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1456733, + "thread": 12 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1637154, + "thread": 5 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1682673, + "thread": 0 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 1883879, + "thread": 24 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2071216, + "thread": 21 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2230926, + "thread": 1 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2393714, + "thread": 28 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2498697, + "thread": 28 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2787982, + "thread": 3 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 2831126, + "thread": 16 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 3042295, + "thread": 15 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 3164078, + "thread": 19 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 3376805, + "thread": 21 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 3510365, + "thread": 25 + } + }, + { + "amount": "267.047672157", + "slot": { + "period": 3646592, + "thread": 20 + } + }, + { + "amount": "267.047672155", + "slot": { + "period": 3866683, + "thread": 8 + } + } + ], + "AU1KvYoVxjevHABVhpayxis9UaiZ24vLyYYp7o27fSWjWdrWrSAu": [ + { + "amount": "163.271774947", + "slot": { + "period": 96625, + "thread": 23 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 216547, + "thread": 2 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 476271, + "thread": 1 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 569392, + "thread": 28 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 800728, + "thread": 1 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 943097, + "thread": 22 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1127584, + "thread": 30 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1167272, + "thread": 27 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1366940, + "thread": 6 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1621600, + "thread": 31 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1750971, + "thread": 29 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1898680, + "thread": 28 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 1989359, + "thread": 9 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 2178138, + "thread": 15 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 2385096, + "thread": 15 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 2614869, + "thread": 31 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 2760950, + "thread": 11 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 2904754, + "thread": 28 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 3108030, + "thread": 31 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 3177040, + "thread": 5 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 3356581, + "thread": 1 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 3573692, + "thread": 27 + } + }, + { + "amount": "163.271774947", + "slot": { + "period": 3730586, + "thread": 18 + } + }, + { + "amount": "163.271774940", + "slot": { + "period": 3921715, + "thread": 21 + } + } + ], + "AU1Kx81W3F7m4KbbHNh1M7XgnaEqbuhSTfDCdQig5fkp6B71XSAA": [ + { + "amount": "327.789708897", + "slot": { + "period": 111941, + "thread": 17 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 281120, + "thread": 8 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 379729, + "thread": 14 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 642750, + "thread": 8 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 803439, + "thread": 9 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 897233, + "thread": 13 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1063703, + "thread": 20 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1227012, + "thread": 14 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1473928, + "thread": 15 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1511429, + "thread": 1 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1766520, + "thread": 13 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 1926517, + "thread": 29 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2001791, + "thread": 20 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2255632, + "thread": 10 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2461181, + "thread": 3 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2618500, + "thread": 1 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2700997, + "thread": 17 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 2891856, + "thread": 10 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 3047617, + "thread": 11 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 3152088, + "thread": 24 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 3295246, + "thread": 11 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 3574080, + "thread": 26 + } + }, + { + "amount": "327.789708897", + "slot": { + "period": 3766581, + "thread": 29 + } + }, + { + "amount": "327.789708905", + "slot": { + "period": 3941292, + "thread": 20 + } + } + ], + "AU1Kx83yo1Crkje3AkgLEgcQs5PZTc8cEDY6WERjUpSjPbr6Ds1v": [ + { + "amount": "135.543617009", + "slot": { + "period": 135170, + "thread": 26 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 220362, + "thread": 31 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 416823, + "thread": 0 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 508128, + "thread": 13 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 785780, + "thread": 16 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 932719, + "thread": 25 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1078851, + "thread": 25 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1256189, + "thread": 31 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1318556, + "thread": 4 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1550507, + "thread": 24 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1799472, + "thread": 27 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 1961512, + "thread": 13 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2142692, + "thread": 14 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2182891, + "thread": 3 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2424099, + "thread": 4 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2584218, + "thread": 26 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2657138, + "thread": 6 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 2880173, + "thread": 2 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 3086447, + "thread": 31 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 3282008, + "thread": 15 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 3316045, + "thread": 28 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 3582335, + "thread": 30 + } + }, + { + "amount": "135.543617009", + "slot": { + "period": 3660016, + "thread": 17 + } + }, + { + "amount": "135.543617013", + "slot": { + "period": 3878013, + "thread": 0 + } + } + ], + "AU1KxcXAtuQfDYgAzH6Y4HSKqwKswv2qghrCgm78VLGsBZXcdjVo": [ + { + "amount": "79.554066543", + "slot": { + "period": 45687, + "thread": 2 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 194000, + "thread": 27 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 388748, + "thread": 15 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 550499, + "thread": 25 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 744351, + "thread": 30 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 932066, + "thread": 2 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1088953, + "thread": 29 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1215189, + "thread": 30 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1440127, + "thread": 10 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1596198, + "thread": 3 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1799263, + "thread": 27 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 1900107, + "thread": 11 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2013625, + "thread": 28 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2212152, + "thread": 28 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2370217, + "thread": 17 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2467922, + "thread": 18 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2646880, + "thread": 22 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 2893621, + "thread": 18 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 3015472, + "thread": 7 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 3221835, + "thread": 11 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 3443943, + "thread": 12 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 3524392, + "thread": 28 + } + }, + { + "amount": "79.554066543", + "slot": { + "period": 3632877, + "thread": 0 + } + }, + { + "amount": "79.554066541", + "slot": { + "period": 3910371, + "thread": 28 + } + } + ], + "AU1KyMt8Z4uWg5nWAh5ki1b7ZWm8FHLe4HjYGBrgSB9QYRcFUsQj": [ + { + "amount": "132.419501618", + "slot": { + "period": 134412, + "thread": 25 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 323951, + "thread": 9 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 331996, + "thread": 8 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 554407, + "thread": 19 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 783547, + "thread": 31 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 964045, + "thread": 10 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1142166, + "thread": 2 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1159417, + "thread": 10 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1415472, + "thread": 26 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1496547, + "thread": 15 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1764367, + "thread": 2 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 1975248, + "thread": 11 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2018763, + "thread": 15 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2290587, + "thread": 17 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2307120, + "thread": 23 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2502415, + "thread": 18 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2718589, + "thread": 31 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 2905501, + "thread": 30 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 3000183, + "thread": 6 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 3263832, + "thread": 25 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 3349627, + "thread": 11 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 3467496, + "thread": 25 + } + }, + { + "amount": "132.419501618", + "slot": { + "period": 3648729, + "thread": 7 + } + }, + { + "amount": "132.419501606", + "slot": { + "period": 3929617, + "thread": 10 + } + } + ], + "AU1KyyG6ecF3Xt8CCUNg55tQr8zLEEX4roeURWK6t1UnhPgTjyZA": [ + { + "amount": "175.475917486", + "slot": { + "period": 102606, + "thread": 25 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 204415, + "thread": 24 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 444577, + "thread": 12 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 539961, + "thread": 20 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 753573, + "thread": 8 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 887379, + "thread": 15 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1094686, + "thread": 10 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1178793, + "thread": 6 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1322200, + "thread": 21 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1529398, + "thread": 6 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1657098, + "thread": 19 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 1946462, + "thread": 19 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2066695, + "thread": 21 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2204513, + "thread": 24 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2427043, + "thread": 0 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2589583, + "thread": 9 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2712901, + "thread": 25 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2826628, + "thread": 16 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 2982346, + "thread": 22 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 3122558, + "thread": 26 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 3317205, + "thread": 24 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 3537922, + "thread": 8 + } + }, + { + "amount": "175.475917486", + "slot": { + "period": 3723169, + "thread": 4 + } + }, + { + "amount": "175.475917479", + "slot": { + "period": 3808736, + "thread": 2 + } + } + ], + "AU1KzTY3LUttgGh1vcBRkem7NRrQCqCBGS44CXVAtq64bVWucLj3": [ + { + "amount": "276.548799394", + "slot": { + "period": 25984, + "thread": 2 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 259528, + "thread": 8 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 381555, + "thread": 19 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 593068, + "thread": 24 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 776872, + "thread": 13 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 897683, + "thread": 1 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1006774, + "thread": 15 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1245653, + "thread": 28 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1393519, + "thread": 14 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1642658, + "thread": 11 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1757201, + "thread": 14 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1967704, + "thread": 13 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 1982957, + "thread": 5 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2212008, + "thread": 17 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2423477, + "thread": 22 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2618892, + "thread": 3 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2760825, + "thread": 26 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2857282, + "thread": 20 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 2960871, + "thread": 21 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 3173931, + "thread": 30 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 3381924, + "thread": 28 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 3491952, + "thread": 3 + } + }, + { + "amount": "276.548799394", + "slot": { + "period": 3640429, + "thread": 1 + } + }, + { + "amount": "276.548799399", + "slot": { + "period": 3797582, + "thread": 21 + } + } + ], + "AU1KzbQefFQRkV2D59CNejM5sninRwKgTBSMBdi8s7mnEWsAgeQr": [ + { + "amount": "113.288638479", + "slot": { + "period": 161273, + "thread": 22 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 231729, + "thread": 12 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 348732, + "thread": 27 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 526818, + "thread": 30 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 752174, + "thread": 17 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 969468, + "thread": 29 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1081076, + "thread": 7 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1305945, + "thread": 15 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1429147, + "thread": 1 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1582650, + "thread": 1 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1698214, + "thread": 15 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 1963229, + "thread": 2 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2030951, + "thread": 21 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2279659, + "thread": 0 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2310079, + "thread": 7 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2573138, + "thread": 2 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2678809, + "thread": 26 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2915138, + "thread": 0 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 2970496, + "thread": 6 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 3148014, + "thread": 27 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 3346385, + "thread": 28 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 3511161, + "thread": 13 + } + }, + { + "amount": "113.288638479", + "slot": { + "period": 3680015, + "thread": 21 + } + }, + { + "amount": "113.288638474", + "slot": { + "period": 3884869, + "thread": 0 + } + } + ], + "AU1L1qtZGX6MdqPQ8XPVdkCqNkaXs3C7XZgxfmeWmTbsTtwcPTqS": [ + { + "amount": "156.709640118", + "slot": { + "period": 40269, + "thread": 26 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 173179, + "thread": 27 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 475769, + "thread": 10 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 593657, + "thread": 0 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 719200, + "thread": 11 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 855515, + "thread": 25 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1139933, + "thread": 24 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1166769, + "thread": 0 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1379377, + "thread": 13 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1621352, + "thread": 14 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1745092, + "thread": 15 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 1964443, + "thread": 26 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2028431, + "thread": 1 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2189599, + "thread": 26 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2383490, + "thread": 13 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2495734, + "thread": 5 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2740643, + "thread": 12 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 2885061, + "thread": 12 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 3013017, + "thread": 0 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 3161046, + "thread": 13 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 3418254, + "thread": 1 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 3464920, + "thread": 7 + } + }, + { + "amount": "156.709640118", + "slot": { + "period": 3638311, + "thread": 11 + } + }, + { + "amount": "156.709640117", + "slot": { + "period": 3847540, + "thread": 23 + } + } + ], + "AU1L2NYrTUU99kvDgJvhgKewVt47nLSjHGHPcg4H2XyPHam7THPC": [ + { + "amount": "403.793534276", + "slot": { + "period": 69150, + "thread": 17 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 271157, + "thread": 26 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 431504, + "thread": 19 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 609442, + "thread": 24 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 781765, + "thread": 16 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 855134, + "thread": 8 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1063336, + "thread": 11 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1314216, + "thread": 4 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1344768, + "thread": 18 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1637222, + "thread": 17 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1785970, + "thread": 30 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 1863416, + "thread": 23 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2072112, + "thread": 16 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2238645, + "thread": 26 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2422635, + "thread": 22 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2552329, + "thread": 25 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2739171, + "thread": 13 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2893939, + "thread": 24 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 2979248, + "thread": 27 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 3207830, + "thread": 27 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 3294382, + "thread": 10 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 3500433, + "thread": 4 + } + }, + { + "amount": "403.793534276", + "slot": { + "period": 3730002, + "thread": 23 + } + }, + { + "amount": "403.793534273", + "slot": { + "period": 3840682, + "thread": 24 + } + } + ], + "AU1L5AxMMtJSb6X69CTYig6LE3gcKZa2Hd5irr2z5bAUQ8w1ocQv": [ + { + "amount": "87.516183589", + "slot": { + "period": 20383, + "thread": 29 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 308137, + "thread": 13 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 452764, + "thread": 26 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 507506, + "thread": 9 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 787695, + "thread": 11 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 900639, + "thread": 1 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1010421, + "thread": 11 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1287964, + "thread": 18 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1403374, + "thread": 13 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1489460, + "thread": 24 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1726568, + "thread": 4 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 1959038, + "thread": 16 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2139747, + "thread": 12 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2276906, + "thread": 25 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2421109, + "thread": 24 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2505302, + "thread": 3 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2640780, + "thread": 12 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 2875607, + "thread": 26 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 3098044, + "thread": 2 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 3259853, + "thread": 22 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 3376872, + "thread": 27 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 3518759, + "thread": 12 + } + }, + { + "amount": "87.516183589", + "slot": { + "period": 3748188, + "thread": 10 + } + }, + { + "amount": "87.516183587", + "slot": { + "period": 3897908, + "thread": 22 + } + } + ], + "AU1L5K3V4Xm6LK8c3BVQCX9hBFjDR5GHJ3g8jayyWLeTSaoVKbVx": [ + { + "amount": "54.319785818", + "slot": { + "period": 41406, + "thread": 22 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 202477, + "thread": 31 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 487186, + "thread": 11 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 646517, + "thread": 6 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 806338, + "thread": 13 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 873579, + "thread": 29 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1137277, + "thread": 0 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1249681, + "thread": 9 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1382994, + "thread": 29 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1526026, + "thread": 30 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1667508, + "thread": 22 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 1821170, + "thread": 22 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2116698, + "thread": 28 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2201482, + "thread": 9 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2445920, + "thread": 31 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2497234, + "thread": 3 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2736803, + "thread": 18 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 2844623, + "thread": 14 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 3024296, + "thread": 2 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 3193823, + "thread": 9 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 3353968, + "thread": 6 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 3514213, + "thread": 13 + } + }, + { + "amount": "54.319785818", + "slot": { + "period": 3748884, + "thread": 14 + } + }, + { + "amount": "54.319785830", + "slot": { + "period": 3944580, + "thread": 30 + } + } + ], + "AU1L68LKyqvhFfquX2CHFJo4DDH5kGWsD2DcS6GRkzNeYqyE5ftA": [ + { + "amount": "228.345484892", + "slot": { + "period": 72427, + "thread": 5 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 181828, + "thread": 3 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 481843, + "thread": 31 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 579207, + "thread": 8 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 777226, + "thread": 23 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 889603, + "thread": 17 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 995531, + "thread": 31 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 1288037, + "thread": 19 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 1398869, + "thread": 15 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 1578575, + "thread": 1 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 1761049, + "thread": 29 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 1848290, + "thread": 13 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2064401, + "thread": 23 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2171741, + "thread": 13 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2385909, + "thread": 12 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2544479, + "thread": 25 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2709202, + "thread": 17 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 2948476, + "thread": 14 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 3075183, + "thread": 30 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 3171661, + "thread": 20 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 3424423, + "thread": 4 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 3481436, + "thread": 21 + } + }, + { + "amount": "228.345484892", + "slot": { + "period": 3744721, + "thread": 9 + } + }, + { + "amount": "228.345484882", + "slot": { + "period": 3842655, + "thread": 10 + } + } + ], + "AU1L6Tr6exNpoYNnwZzkWzMf7dk5RdAt6bKzFYE3sdA2ERN99HMQ": [ + { + "amount": "68.115121054", + "slot": { + "period": 159542, + "thread": 13 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 291879, + "thread": 25 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 418879, + "thread": 19 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 646885, + "thread": 15 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 655882, + "thread": 29 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 949243, + "thread": 13 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1137477, + "thread": 23 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1268044, + "thread": 13 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1339124, + "thread": 10 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1547373, + "thread": 12 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1671733, + "thread": 4 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 1827565, + "thread": 17 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2110991, + "thread": 19 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2221850, + "thread": 1 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2322433, + "thread": 2 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2556033, + "thread": 21 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2751468, + "thread": 10 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 2899905, + "thread": 19 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 3052905, + "thread": 13 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 3254761, + "thread": 3 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 3441570, + "thread": 24 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 3487695, + "thread": 17 + } + }, + { + "amount": "68.115121054", + "slot": { + "period": 3707676, + "thread": 23 + } + }, + { + "amount": "68.115121047", + "slot": { + "period": 3905595, + "thread": 3 + } + } + ], + "AU1L8NYLGPnoFXnPb23XbvPADVYp1h8rma8QGwfZYqaekSFfaHkz": [ + { + "amount": "134.982170669", + "slot": { + "period": 150644, + "thread": 24 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 283968, + "thread": 8 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 489172, + "thread": 10 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 544738, + "thread": 4 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 653409, + "thread": 6 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 906573, + "thread": 13 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1000909, + "thread": 2 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1245458, + "thread": 16 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1403902, + "thread": 16 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1559445, + "thread": 19 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1701602, + "thread": 18 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 1813848, + "thread": 14 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2078461, + "thread": 10 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2199234, + "thread": 18 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2393682, + "thread": 5 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2575420, + "thread": 17 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2712958, + "thread": 12 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2851773, + "thread": 12 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 2960925, + "thread": 20 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 3191942, + "thread": 20 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 3426842, + "thread": 13 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 3571719, + "thread": 5 + } + }, + { + "amount": "134.982170669", + "slot": { + "period": 3639355, + "thread": 20 + } + }, + { + "amount": "134.982170674", + "slot": { + "period": 3899410, + "thread": 22 + } + } + ], + "AU1L93aioUF3hBgV7yz1tSnoCiWLrydR9t5evRmYxTdZEcf1hAa5": [ + { + "amount": "111.491479964", + "slot": { + "period": 35795, + "thread": 22 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 264059, + "thread": 17 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 490056, + "thread": 29 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 531959, + "thread": 5 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 737418, + "thread": 6 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 937125, + "thread": 26 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1034474, + "thread": 14 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1172156, + "thread": 1 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1377132, + "thread": 13 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1499838, + "thread": 27 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1718448, + "thread": 2 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 1809619, + "thread": 8 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2127635, + "thread": 29 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2197432, + "thread": 21 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2375903, + "thread": 4 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2549226, + "thread": 29 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2780804, + "thread": 26 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2953078, + "thread": 13 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 2992058, + "thread": 15 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 3150881, + "thread": 6 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 3337212, + "thread": 27 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 3461051, + "thread": 3 + } + }, + { + "amount": "111.491479964", + "slot": { + "period": 3728699, + "thread": 29 + } + }, + { + "amount": "111.491479973", + "slot": { + "period": 3793889, + "thread": 4 + } + } + ], + "AU1L9sn7g4G9R6D87RGQczyMn1JhMeTKRkAbdrg7mZC3J2Qfj2bT": [ + { + "amount": "175.198541754", + "slot": { + "period": 98354, + "thread": 0 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 299157, + "thread": 27 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 387806, + "thread": 16 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 519318, + "thread": 16 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 688734, + "thread": 0 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 939345, + "thread": 26 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1089316, + "thread": 14 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1219555, + "thread": 11 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1394051, + "thread": 17 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1637359, + "thread": 0 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1746312, + "thread": 1 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1853262, + "thread": 4 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 1993295, + "thread": 16 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 2285883, + "thread": 9 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 2344952, + "thread": 30 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 2513011, + "thread": 7 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 2698009, + "thread": 10 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 2946224, + "thread": 16 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 3026532, + "thread": 24 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 3143381, + "thread": 9 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 3351622, + "thread": 6 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 3495022, + "thread": 6 + } + }, + { + "amount": "175.198541754", + "slot": { + "period": 3642782, + "thread": 2 + } + }, + { + "amount": "175.198541766", + "slot": { + "period": 3792420, + "thread": 28 + } + } + ], + "AU1LAL9gRexFMqkVicDf6MuMfM61fkUt8wMiEdBhUeHuL2QsxU6m": [ + { + "amount": "64.878944302", + "slot": { + "period": 82429, + "thread": 1 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 305512, + "thread": 2 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 445082, + "thread": 21 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 633904, + "thread": 17 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 788717, + "thread": 15 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 850508, + "thread": 7 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 997452, + "thread": 28 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 1293931, + "thread": 0 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 1374314, + "thread": 7 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 1570761, + "thread": 4 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 1725122, + "thread": 15 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 1887237, + "thread": 31 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2021118, + "thread": 7 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2205354, + "thread": 15 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2331892, + "thread": 10 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2584621, + "thread": 18 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2753531, + "thread": 19 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2887091, + "thread": 12 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 2996349, + "thread": 11 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 3199026, + "thread": 1 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 3395876, + "thread": 13 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 3557137, + "thread": 16 + } + }, + { + "amount": "64.878944302", + "slot": { + "period": 3647674, + "thread": 19 + } + }, + { + "amount": "64.878944291", + "slot": { + "period": 3783067, + "thread": 30 + } + } + ], + "AU1LAqytFaqYwF2ZrA1FjCvnf1DeKLVzCn2NK3nxvv2Af6KRdu1j": [ + { + "amount": "124.427436613", + "slot": { + "period": 144341, + "thread": 10 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 171072, + "thread": 2 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 458830, + "thread": 26 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 580465, + "thread": 24 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 801744, + "thread": 4 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 911842, + "thread": 21 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1073424, + "thread": 1 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1249347, + "thread": 14 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1380639, + "thread": 18 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1577603, + "thread": 4 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1777406, + "thread": 26 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 1921039, + "thread": 27 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2128600, + "thread": 21 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2254442, + "thread": 22 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2297056, + "thread": 21 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2551579, + "thread": 13 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2646069, + "thread": 9 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 2948679, + "thread": 27 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 3011042, + "thread": 10 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 3167874, + "thread": 0 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 3394537, + "thread": 10 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 3471828, + "thread": 6 + } + }, + { + "amount": "124.427436613", + "slot": { + "period": 3726278, + "thread": 26 + } + }, + { + "amount": "124.427436612", + "slot": { + "period": 3924907, + "thread": 12 + } + } + ], + "AU1LBND541PhhLwbHjMGcBcf2snL1xRaasiMa5WqyWaPaj5WFDrW": [ + { + "amount": "93.673120398", + "slot": { + "period": 116821, + "thread": 31 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 209381, + "thread": 5 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 337305, + "thread": 15 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 511785, + "thread": 9 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 762133, + "thread": 1 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 833446, + "thread": 4 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1051784, + "thread": 17 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1223332, + "thread": 0 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1399545, + "thread": 27 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1557919, + "thread": 26 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1716889, + "thread": 18 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 1975123, + "thread": 5 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2127814, + "thread": 28 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2255324, + "thread": 3 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2369863, + "thread": 9 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2613131, + "thread": 0 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2752169, + "thread": 17 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 2908169, + "thread": 6 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 3030033, + "thread": 5 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 3261257, + "thread": 27 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 3353861, + "thread": 19 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 3563675, + "thread": 29 + } + }, + { + "amount": "93.673120398", + "slot": { + "period": 3732723, + "thread": 12 + } + }, + { + "amount": "93.673120402", + "slot": { + "period": 3923535, + "thread": 21 + } + } + ], + "AU1LCFqg1x6hpSMApYcv8Mu66KYHnXZ1nDTCM5NaNLpRHnmeoTku": [ + { + "amount": "160.635029696", + "slot": { + "period": 94781, + "thread": 14 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 261688, + "thread": 14 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 393041, + "thread": 3 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 621887, + "thread": 29 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 663453, + "thread": 24 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 865721, + "thread": 3 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1066727, + "thread": 1 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1215298, + "thread": 19 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1380413, + "thread": 0 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1490533, + "thread": 6 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1769624, + "thread": 0 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 1865093, + "thread": 20 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2078841, + "thread": 9 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2236696, + "thread": 7 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2336514, + "thread": 12 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2611441, + "thread": 31 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2734422, + "thread": 4 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 2947840, + "thread": 9 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 3105992, + "thread": 6 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 3125344, + "thread": 12 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 3305054, + "thread": 14 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 3586205, + "thread": 18 + } + }, + { + "amount": "160.635029696", + "slot": { + "period": 3746238, + "thread": 18 + } + }, + { + "amount": "160.635029699", + "slot": { + "period": 3932774, + "thread": 22 + } + } + ], + "AU1LD65nMwbD6SDPrVomFf3DPaqMcKvhcFgbYKjurHoG3ajkBhjQ": [ + { + "amount": "141.163285061", + "slot": { + "period": 133262, + "thread": 14 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 258135, + "thread": 4 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 473171, + "thread": 10 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 516443, + "thread": 29 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 739712, + "thread": 26 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 934764, + "thread": 12 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1046064, + "thread": 6 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1287893, + "thread": 0 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1401300, + "thread": 13 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1594846, + "thread": 30 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1682212, + "thread": 8 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 1933208, + "thread": 12 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2036101, + "thread": 8 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2186192, + "thread": 25 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2391169, + "thread": 23 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2580209, + "thread": 27 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2787281, + "thread": 27 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 2949953, + "thread": 21 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 3041998, + "thread": 6 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 3279929, + "thread": 5 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 3362891, + "thread": 1 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 3455690, + "thread": 12 + } + }, + { + "amount": "141.163285061", + "slot": { + "period": 3703813, + "thread": 12 + } + }, + { + "amount": "141.163285065", + "slot": { + "period": 3816073, + "thread": 23 + } + } + ], + "AU1LDFqKPmAVjvADbwdsrhcvUUBQNuJqoWb9oZBnbfE5hqWFsAAK": [ + { + "amount": "537.955008446", + "slot": { + "period": 155264, + "thread": 6 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 198590, + "thread": 4 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 373358, + "thread": 17 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 630397, + "thread": 2 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 773329, + "thread": 29 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 961139, + "thread": 2 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1127455, + "thread": 15 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1296851, + "thread": 7 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1390422, + "thread": 21 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1610423, + "thread": 31 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1741120, + "thread": 27 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 1838747, + "thread": 20 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2142257, + "thread": 2 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2262011, + "thread": 5 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2349723, + "thread": 26 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2549960, + "thread": 30 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2775359, + "thread": 6 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 2948849, + "thread": 24 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3092887, + "thread": 10 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3217535, + "thread": 2 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3435942, + "thread": 31 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3523433, + "thread": 19 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3767729, + "thread": 19 + } + }, + { + "amount": "537.955008446", + "slot": { + "period": 3846902, + "thread": 12 + } + } + ], + "AU1LE5T8sL4HrYzhwmvYuQWGhp8LF5zbXRN1xE9gncuraSc9WSG1": [ + { + "amount": "547.369005215", + "slot": { + "period": 16973, + "thread": 8 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 312891, + "thread": 19 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 438628, + "thread": 15 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 553035, + "thread": 22 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 660716, + "thread": 21 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 898915, + "thread": 23 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1063447, + "thread": 6 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1236805, + "thread": 0 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1477052, + "thread": 26 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1628892, + "thread": 20 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1722064, + "thread": 10 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 1906813, + "thread": 4 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2026994, + "thread": 25 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2250663, + "thread": 19 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2373484, + "thread": 1 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2468774, + "thread": 16 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2682468, + "thread": 23 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 2947478, + "thread": 5 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 3075203, + "thread": 14 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 3174248, + "thread": 12 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 3307623, + "thread": 16 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 3575433, + "thread": 4 + } + }, + { + "amount": "547.369005215", + "slot": { + "period": 3686448, + "thread": 25 + } + }, + { + "amount": "547.369005209", + "slot": { + "period": 3869657, + "thread": 0 + } + } + ], + "AU1LEXEAPCyGyrXEjzxTtBeruZgRzDyrereP8tiUzreaLpJXQis1": [ + { + "amount": "241.140665687", + "slot": { + "period": 69574, + "thread": 28 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 292460, + "thread": 29 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 384167, + "thread": 25 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 516717, + "thread": 28 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 814121, + "thread": 26 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 877654, + "thread": 3 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1000113, + "thread": 18 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1249032, + "thread": 11 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1367924, + "thread": 0 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1624107, + "thread": 15 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1763964, + "thread": 2 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1897660, + "thread": 2 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 1986254, + "thread": 25 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 2209250, + "thread": 18 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 2442253, + "thread": 17 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 2576448, + "thread": 6 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 2644278, + "thread": 23 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 2882370, + "thread": 26 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 3046333, + "thread": 26 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 3263553, + "thread": 31 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 3386334, + "thread": 27 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 3525470, + "thread": 10 + } + }, + { + "amount": "241.140665687", + "slot": { + "period": 3709841, + "thread": 24 + } + }, + { + "amount": "241.140665694", + "slot": { + "period": 3911934, + "thread": 29 + } + } + ], + "AU1LEbN7Mwkre88GGBfWbtaQ2jLKEtbiefPeAKUCsq217nqFKHvr": [ + { + "amount": "127.586253087", + "slot": { + "period": 13950, + "thread": 6 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 264380, + "thread": 15 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 462697, + "thread": 26 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 518202, + "thread": 7 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 722475, + "thread": 1 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 852876, + "thread": 15 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1023319, + "thread": 28 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1276884, + "thread": 25 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1364482, + "thread": 6 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1584655, + "thread": 14 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1779874, + "thread": 18 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 1853781, + "thread": 23 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2083104, + "thread": 22 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2207279, + "thread": 12 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2374302, + "thread": 4 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2619989, + "thread": 20 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2756880, + "thread": 4 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 2814587, + "thread": 2 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 3011765, + "thread": 24 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 3255610, + "thread": 12 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 3400746, + "thread": 26 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 3511294, + "thread": 7 + } + }, + { + "amount": "127.586253087", + "slot": { + "period": 3740712, + "thread": 15 + } + }, + { + "amount": "127.586253097", + "slot": { + "period": 3855171, + "thread": 18 + } + } + ], + "AU1LEwwj2JdpdiyHKEQZQsFz9RDfQk1gUAyPiCX8JuRMm2uUvWbT": [ + { + "amount": "139.642398041", + "slot": { + "period": 115751, + "thread": 11 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 234815, + "thread": 2 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 353707, + "thread": 8 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 528269, + "thread": 17 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 778568, + "thread": 10 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 920879, + "thread": 19 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1029662, + "thread": 2 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1156381, + "thread": 13 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1323167, + "thread": 29 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1484522, + "thread": 15 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1667211, + "thread": 30 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 1939081, + "thread": 2 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2007049, + "thread": 26 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2214895, + "thread": 21 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2343486, + "thread": 27 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2611883, + "thread": 12 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2723406, + "thread": 24 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 2828936, + "thread": 0 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 3012258, + "thread": 19 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 3124340, + "thread": 15 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 3313303, + "thread": 2 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 3530143, + "thread": 8 + } + }, + { + "amount": "139.642398041", + "slot": { + "period": 3730839, + "thread": 14 + } + }, + { + "amount": "139.642398046", + "slot": { + "period": 3805535, + "thread": 19 + } + } + ], + "AU1LFKxJgabdJogsxYsaHecRLXBBTcUjrg9pCiH8NwmRFeE3dvgv": [ + { + "amount": "202.102153283", + "slot": { + "period": 23684, + "thread": 12 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 235503, + "thread": 6 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 428430, + "thread": 29 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 498554, + "thread": 13 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 683719, + "thread": 10 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 959778, + "thread": 13 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 995023, + "thread": 4 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1263942, + "thread": 1 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1399826, + "thread": 14 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1496733, + "thread": 19 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1663821, + "thread": 1 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1824161, + "thread": 2 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 1994603, + "thread": 7 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2183146, + "thread": 30 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2319184, + "thread": 16 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2559286, + "thread": 14 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2697510, + "thread": 19 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2898272, + "thread": 15 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 2995584, + "thread": 8 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 3276490, + "thread": 19 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 3369620, + "thread": 18 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 3616768, + "thread": 15 + } + }, + { + "amount": "202.102153283", + "slot": { + "period": 3779538, + "thread": 19 + } + }, + { + "amount": "202.102153285", + "slot": { + "period": 3921203, + "thread": 15 + } + } + ], + "AU1LH27GwxGabaieSNo7ab8ZCwpSwJ9cTaMTX9X53eD3tcdooQLL": [ + { + "amount": "59.851672336", + "slot": { + "period": 125512, + "thread": 28 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 261176, + "thread": 4 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 332615, + "thread": 1 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 554173, + "thread": 14 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 684251, + "thread": 6 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 926334, + "thread": 19 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1003465, + "thread": 29 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1302778, + "thread": 15 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1412433, + "thread": 8 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1519907, + "thread": 5 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1805931, + "thread": 25 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 1898003, + "thread": 14 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2079193, + "thread": 9 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2225781, + "thread": 17 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2386870, + "thread": 22 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2493930, + "thread": 16 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2771093, + "thread": 24 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 2821366, + "thread": 22 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 3074160, + "thread": 31 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 3172228, + "thread": 21 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 3300277, + "thread": 2 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 3552190, + "thread": 1 + } + }, + { + "amount": "59.851672336", + "slot": { + "period": 3762817, + "thread": 8 + } + }, + { + "amount": "59.851672344", + "slot": { + "period": 3868094, + "thread": 1 + } + } + ], + "AU1LHrUX59xzGpbk5qeeV2yWzJYqVqJvXz5bK5zdLiMUM8HHSETB": [ + { + "amount": "92.961980534", + "slot": { + "period": 35765, + "thread": 14 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 212298, + "thread": 29 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 395092, + "thread": 28 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 601004, + "thread": 30 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 690378, + "thread": 6 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 829149, + "thread": 8 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1018764, + "thread": 9 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1314001, + "thread": 30 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1382466, + "thread": 13 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1534304, + "thread": 20 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1791168, + "thread": 28 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 1886305, + "thread": 6 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2078201, + "thread": 29 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2236616, + "thread": 28 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2372454, + "thread": 24 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2463849, + "thread": 20 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2682817, + "thread": 18 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2922503, + "thread": 30 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 2962382, + "thread": 23 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 3234461, + "thread": 12 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 3295255, + "thread": 17 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 3491108, + "thread": 28 + } + }, + { + "amount": "92.961980534", + "slot": { + "period": 3721466, + "thread": 11 + } + }, + { + "amount": "92.961980522", + "slot": { + "period": 3817870, + "thread": 4 + } + } + ], + "AU1LJH3xwPU5ScnvkshkddRnvFuQwYGfkCnbRnTNinnogAyCzsXA": [ + { + "amount": "316.745609755", + "slot": { + "period": 122965, + "thread": 14 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 198661, + "thread": 27 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 404226, + "thread": 6 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 536289, + "thread": 17 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 748610, + "thread": 15 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 868268, + "thread": 12 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1073466, + "thread": 20 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1260539, + "thread": 21 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1371766, + "thread": 14 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1537297, + "thread": 6 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1666110, + "thread": 22 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1912222, + "thread": 9 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 1989461, + "thread": 10 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 2271978, + "thread": 4 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 2379488, + "thread": 23 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 2543149, + "thread": 20 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 2685573, + "thread": 23 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 2878463, + "thread": 14 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 3011015, + "thread": 19 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 3218347, + "thread": 28 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 3395790, + "thread": 0 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 3532278, + "thread": 16 + } + }, + { + "amount": "316.745609755", + "slot": { + "period": 3711194, + "thread": 12 + } + }, + { + "amount": "316.745609766", + "slot": { + "period": 3874874, + "thread": 21 + } + } + ], + "AU1LK4saYw91Z5ZwXvqC4BzLzbEChDtr6STBP1GU1HvGT7EGa6kh": [ + { + "amount": "240.730043599", + "slot": { + "period": 99226, + "thread": 13 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 224505, + "thread": 28 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 405254, + "thread": 4 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 565599, + "thread": 13 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 756881, + "thread": 2 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 854041, + "thread": 1 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1071291, + "thread": 5 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1181101, + "thread": 0 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1441286, + "thread": 22 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1566104, + "thread": 2 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1797566, + "thread": 30 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 1839340, + "thread": 30 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2065750, + "thread": 17 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2201718, + "thread": 0 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2349882, + "thread": 29 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2575503, + "thread": 23 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2667481, + "thread": 13 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2810860, + "thread": 16 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 2970653, + "thread": 27 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 3181636, + "thread": 19 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 3322480, + "thread": 0 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 3477735, + "thread": 19 + } + }, + { + "amount": "240.730043599", + "slot": { + "period": 3774985, + "thread": 16 + } + }, + { + "amount": "240.730043604", + "slot": { + "period": 3800133, + "thread": 19 + } + } + ], + "AU1LKAbvWPCpGCX6vjpfm9nGNwxbBvoRtHmpKN7E5KqWwZweZA5R": [ + { + "amount": "86.419990841", + "slot": { + "period": 161915, + "thread": 4 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 238107, + "thread": 0 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 353944, + "thread": 18 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 499854, + "thread": 2 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 768890, + "thread": 21 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 923667, + "thread": 18 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1142131, + "thread": 8 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1252157, + "thread": 4 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1337157, + "thread": 31 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1529206, + "thread": 17 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1766290, + "thread": 24 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 1826916, + "thread": 13 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2060321, + "thread": 20 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2149443, + "thread": 10 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2392512, + "thread": 27 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2614012, + "thread": 12 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2636761, + "thread": 22 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2909806, + "thread": 4 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 2996809, + "thread": 10 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 3182314, + "thread": 13 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 3315983, + "thread": 27 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 3589157, + "thread": 5 + } + }, + { + "amount": "86.419990841", + "slot": { + "period": 3759428, + "thread": 14 + } + }, + { + "amount": "86.419990846", + "slot": { + "period": 3849936, + "thread": 18 + } + } + ], + "AU1LKc2jnyvB2cCqcUvb4RxLKcXHttJyApb3vP8uqgcFBzLvoaHT": [ + { + "amount": "195.550890871", + "slot": { + "period": 48034, + "thread": 25 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 258869, + "thread": 2 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 438770, + "thread": 8 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 571404, + "thread": 15 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 703925, + "thread": 28 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 955086, + "thread": 30 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1048256, + "thread": 30 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1261467, + "thread": 7 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1454686, + "thread": 14 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1643464, + "thread": 0 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1707751, + "thread": 2 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 1833765, + "thread": 9 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2010666, + "thread": 27 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2226115, + "thread": 7 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2399694, + "thread": 14 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2517903, + "thread": 1 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2664912, + "thread": 8 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 2942376, + "thread": 29 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 3055217, + "thread": 29 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 3188556, + "thread": 10 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 3404128, + "thread": 29 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 3494950, + "thread": 25 + } + }, + { + "amount": "195.550890871", + "slot": { + "period": 3760579, + "thread": 11 + } + }, + { + "amount": "195.550890874", + "slot": { + "period": 3796065, + "thread": 11 + } + } + ], + "AU1LLFhUgpuPcceZF54PDgzzZb38RQyu1EiV75sGqYSXGajXRvcj": [ + { + "amount": "286.510560070", + "slot": { + "period": 142187, + "thread": 0 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 257527, + "thread": 30 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 460138, + "thread": 19 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 559742, + "thread": 5 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 773131, + "thread": 1 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 838453, + "thread": 5 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1060025, + "thread": 16 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1269384, + "thread": 10 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1418836, + "thread": 20 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1530288, + "thread": 13 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1784336, + "thread": 30 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 1943358, + "thread": 8 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2135711, + "thread": 0 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2278370, + "thread": 17 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2349906, + "thread": 0 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2465618, + "thread": 10 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2738451, + "thread": 25 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 2823019, + "thread": 23 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 3011078, + "thread": 14 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 3233073, + "thread": 1 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 3303863, + "thread": 27 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 3600663, + "thread": 20 + } + }, + { + "amount": "286.510560070", + "slot": { + "period": 3636937, + "thread": 31 + } + }, + { + "amount": "286.510560078", + "slot": { + "period": 3888617, + "thread": 24 + } + } + ], + "AU1LLSPLaXx8n2WHq7B3sMQKHpMf8yPXkPY7F9peyAJRWq5RxEvh": [ + { + "amount": "123.662243978", + "slot": { + "period": 71051, + "thread": 23 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 283605, + "thread": 15 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 464294, + "thread": 0 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 530144, + "thread": 27 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 730146, + "thread": 16 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 861343, + "thread": 16 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1057324, + "thread": 25 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1175396, + "thread": 20 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1412684, + "thread": 5 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1568829, + "thread": 13 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1763379, + "thread": 5 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1817360, + "thread": 9 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 1991142, + "thread": 2 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 2260143, + "thread": 15 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 2401343, + "thread": 25 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 2485194, + "thread": 26 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 2628533, + "thread": 16 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 2841372, + "thread": 10 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 3006602, + "thread": 27 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 3182981, + "thread": 18 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 3358618, + "thread": 11 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 3610571, + "thread": 26 + } + }, + { + "amount": "123.662243978", + "slot": { + "period": 3751435, + "thread": 17 + } + }, + { + "amount": "123.662243981", + "slot": { + "period": 3801032, + "thread": 22 + } + } + ], + "AU1LMA2CWaXfez8YdxvgneGtnTY7MwpjHtSd5aiR6BMo8fZXLW3H": [ + { + "amount": "175.036222673", + "slot": { + "period": 137122, + "thread": 23 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 230828, + "thread": 4 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 360052, + "thread": 4 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 518807, + "thread": 2 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 785495, + "thread": 6 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 893451, + "thread": 23 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1131180, + "thread": 17 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1247329, + "thread": 8 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1419008, + "thread": 6 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1582164, + "thread": 7 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1790953, + "thread": 5 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 1828316, + "thread": 23 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2138892, + "thread": 29 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2287389, + "thread": 0 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2324191, + "thread": 4 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2564275, + "thread": 9 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2647318, + "thread": 11 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 2940680, + "thread": 21 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 3098411, + "thread": 21 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 3145145, + "thread": 29 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 3352821, + "thread": 14 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 3612478, + "thread": 14 + } + }, + { + "amount": "175.036222673", + "slot": { + "period": 3625072, + "thread": 15 + } + }, + { + "amount": "175.036222664", + "slot": { + "period": 3827822, + "thread": 17 + } + } + ], + "AU1LMMMEjEmMc4H4w6QFdn97XspzUzmHhWyxDS8kLmWpe4Uv6prR": [ + { + "amount": "94.784275250", + "slot": { + "period": 80358, + "thread": 4 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 173507, + "thread": 9 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 429495, + "thread": 19 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 636620, + "thread": 16 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 703993, + "thread": 16 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 824412, + "thread": 14 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1092477, + "thread": 6 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1306664, + "thread": 27 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1364395, + "thread": 26 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1546436, + "thread": 3 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1747969, + "thread": 4 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 1850337, + "thread": 10 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2124321, + "thread": 12 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2281829, + "thread": 11 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2330945, + "thread": 29 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2507095, + "thread": 6 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2764583, + "thread": 19 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2831693, + "thread": 18 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 2968135, + "thread": 18 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 3133434, + "thread": 29 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 3422736, + "thread": 10 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 3592115, + "thread": 6 + } + }, + { + "amount": "94.784275250", + "slot": { + "period": 3686165, + "thread": 3 + } + }, + { + "amount": "94.784275242", + "slot": { + "period": 3878435, + "thread": 30 + } + } + ], + "AU1LMcaqq1dVkUsFPuV11TnfmwVmThnqicrK7m2vRcqAvTfnAijJ": [ + { + "amount": "127.772393630", + "slot": { + "period": 26504, + "thread": 26 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 218728, + "thread": 26 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 453118, + "thread": 20 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 632453, + "thread": 31 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 745112, + "thread": 31 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 832718, + "thread": 6 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1148044, + "thread": 16 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1259133, + "thread": 2 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1414899, + "thread": 18 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1481180, + "thread": 3 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1662595, + "thread": 30 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 1809339, + "thread": 16 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2048823, + "thread": 24 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2205616, + "thread": 0 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2299608, + "thread": 0 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2561448, + "thread": 17 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2632601, + "thread": 7 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 2831563, + "thread": 19 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 3077775, + "thread": 11 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 3190987, + "thread": 5 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 3378677, + "thread": 1 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 3492257, + "thread": 20 + } + }, + { + "amount": "127.772393630", + "slot": { + "period": 3765819, + "thread": 25 + } + }, + { + "amount": "127.772393629", + "slot": { + "period": 3924901, + "thread": 12 + } + } + ], + "AU1LN3S9eLb7pR1t7KEDVXwdZrG3zXzqgF6W9tpYwxmQFnGtGidL": [ + { + "amount": "105.359984345", + "slot": { + "period": 155721, + "thread": 29 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 232921, + "thread": 18 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 485385, + "thread": 13 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 558545, + "thread": 17 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 718104, + "thread": 9 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 953032, + "thread": 28 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1093682, + "thread": 11 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1264804, + "thread": 5 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1476819, + "thread": 22 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1535688, + "thread": 14 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1683374, + "thread": 31 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1862395, + "thread": 15 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 1991012, + "thread": 18 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 2191260, + "thread": 18 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 2432121, + "thread": 20 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 2465930, + "thread": 20 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 2667518, + "thread": 29 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 2943963, + "thread": 5 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 3058677, + "thread": 20 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 3142690, + "thread": 19 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 3338967, + "thread": 24 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 3514092, + "thread": 0 + } + }, + { + "amount": "105.359984345", + "slot": { + "period": 3716015, + "thread": 10 + } + }, + { + "amount": "105.359984352", + "slot": { + "period": 3818200, + "thread": 3 + } + } + ], + "AU1LQJuWDR4X5tY4wR5qGRxhaKJKNyEUJY46QUdWezHne1eHTtQa": [ + { + "amount": "75.106615570", + "slot": { + "period": 46274, + "thread": 7 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 252286, + "thread": 3 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 465838, + "thread": 2 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 593127, + "thread": 14 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 694861, + "thread": 18 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 905523, + "thread": 24 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1099345, + "thread": 13 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1188763, + "thread": 1 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1351181, + "thread": 30 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1490084, + "thread": 22 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1717510, + "thread": 22 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 1918411, + "thread": 1 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2118383, + "thread": 18 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2289617, + "thread": 19 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2424399, + "thread": 10 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2598049, + "thread": 0 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2734663, + "thread": 13 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 2928376, + "thread": 17 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 3097332, + "thread": 11 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 3240783, + "thread": 16 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 3338447, + "thread": 13 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 3532204, + "thread": 22 + } + }, + { + "amount": "75.106615570", + "slot": { + "period": 3623242, + "thread": 23 + } + }, + { + "amount": "75.106615581", + "slot": { + "period": 3840863, + "thread": 0 + } + } + ], + "AU1LQNDabFpLEMLqU14a1y6REXLARsQuoWL2q8TYnhPfCSDQRTsW": [ + { + "amount": "146.509357558", + "slot": { + "period": 160216, + "thread": 13 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 318430, + "thread": 16 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 440067, + "thread": 31 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 647587, + "thread": 3 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 775520, + "thread": 28 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 919413, + "thread": 22 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1003737, + "thread": 13 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1216396, + "thread": 12 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1344347, + "thread": 9 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1502815, + "thread": 0 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1782146, + "thread": 12 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1876945, + "thread": 21 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 1982415, + "thread": 21 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2231193, + "thread": 2 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2363355, + "thread": 30 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2479505, + "thread": 5 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2683285, + "thread": 25 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2860133, + "thread": 10 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 2983570, + "thread": 1 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 3257087, + "thread": 7 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 3425160, + "thread": 6 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 3476902, + "thread": 3 + } + }, + { + "amount": "146.509357558", + "slot": { + "period": 3672559, + "thread": 25 + } + }, + { + "amount": "146.509357549", + "slot": { + "period": 3791715, + "thread": 8 + } + } + ], + "AU1LQNMaEDJCSEm7mQvdQnd7T9RCXzY84wJaqaUtaaHqJzYrTEBK": [ + { + "amount": "609.707901173", + "slot": { + "period": 40452, + "thread": 25 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 269366, + "thread": 27 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 430579, + "thread": 7 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 608647, + "thread": 19 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 656757, + "thread": 13 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 913382, + "thread": 25 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1009973, + "thread": 17 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1262346, + "thread": 23 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1431327, + "thread": 4 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1520314, + "thread": 4 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1760461, + "thread": 11 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 1907716, + "thread": 18 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2104021, + "thread": 2 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2172289, + "thread": 25 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2444846, + "thread": 1 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2623951, + "thread": 7 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2664166, + "thread": 18 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 2849540, + "thread": 2 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 3040940, + "thread": 11 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 3279238, + "thread": 19 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 3362865, + "thread": 10 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 3573102, + "thread": 21 + } + }, + { + "amount": "609.707901173", + "slot": { + "period": 3720038, + "thread": 10 + } + }, + { + "amount": "609.707901184", + "slot": { + "period": 3784932, + "thread": 14 + } + } + ], + "AU1LQPLvu1zCH8K9Strreghc8Wibs91RDNArDrnzLvCu34Yosfai": [ + { + "amount": "51.710888214", + "slot": { + "period": 49378, + "thread": 27 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 225832, + "thread": 29 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 386861, + "thread": 9 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 509248, + "thread": 20 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 702529, + "thread": 16 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 893706, + "thread": 15 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1117673, + "thread": 1 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1190512, + "thread": 19 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1424962, + "thread": 31 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1575890, + "thread": 4 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1686394, + "thread": 4 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1870354, + "thread": 4 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 1992108, + "thread": 17 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 2156042, + "thread": 16 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 2373247, + "thread": 24 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 2505733, + "thread": 15 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 2649677, + "thread": 20 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 2930343, + "thread": 19 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 3120386, + "thread": 24 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 3167934, + "thread": 26 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 3305184, + "thread": 17 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 3592159, + "thread": 8 + } + }, + { + "amount": "51.710888214", + "slot": { + "period": 3687410, + "thread": 16 + } + }, + { + "amount": "51.710888209", + "slot": { + "period": 3903353, + "thread": 13 + } + } + ], + "AU1LRRGs9weKsjsonipoSsTcypBAEPyEyWprZm7T9g1s1CRgm4jw": [ + { + "amount": "224.738865930", + "slot": { + "period": 49275, + "thread": 8 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 285677, + "thread": 24 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 470248, + "thread": 1 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 558702, + "thread": 3 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 770542, + "thread": 21 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 852024, + "thread": 27 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1118914, + "thread": 8 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1167535, + "thread": 29 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1396191, + "thread": 30 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1640174, + "thread": 25 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1676099, + "thread": 30 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1889415, + "thread": 6 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 1980218, + "thread": 18 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 2276336, + "thread": 7 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 2411761, + "thread": 22 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 2600805, + "thread": 29 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 2746004, + "thread": 16 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 2891541, + "thread": 20 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 3046322, + "thread": 11 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 3168205, + "thread": 24 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 3343352, + "thread": 3 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 3537979, + "thread": 4 + } + }, + { + "amount": "224.738865930", + "slot": { + "period": 3697289, + "thread": 28 + } + }, + { + "amount": "224.738865927", + "slot": { + "period": 3863588, + "thread": 1 + } + } + ], + "AU1LRSyMk35VZrTAfheKnwJWPRS6yL2zD8yFU28PyGY1tSQp76Qm": [ + { + "amount": "225.395459075", + "slot": { + "period": 48960, + "thread": 14 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 223177, + "thread": 24 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 416412, + "thread": 25 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 618631, + "thread": 1 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 735131, + "thread": 9 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 948689, + "thread": 16 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1143486, + "thread": 4 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1154022, + "thread": 3 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1408083, + "thread": 1 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1630481, + "thread": 30 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1685740, + "thread": 1 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 1873098, + "thread": 31 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2014380, + "thread": 3 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2262088, + "thread": 15 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2378402, + "thread": 22 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2591491, + "thread": 5 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2780939, + "thread": 7 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 2804956, + "thread": 22 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 3073136, + "thread": 29 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 3214489, + "thread": 26 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 3348129, + "thread": 6 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 3561961, + "thread": 11 + } + }, + { + "amount": "225.395459075", + "slot": { + "period": 3638743, + "thread": 22 + } + }, + { + "amount": "225.395459072", + "slot": { + "period": 3899337, + "thread": 26 + } + } + ], + "AU1LSYpX63KbwLgBPqn6UEEiFcU317HdCi1y6B6jsaSU1s7Ed43C": [ + { + "amount": "71.839871486", + "slot": { + "period": 22585, + "thread": 12 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 315483, + "thread": 30 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 382597, + "thread": 0 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 528841, + "thread": 19 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 716604, + "thread": 24 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 883420, + "thread": 20 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1026780, + "thread": 2 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1153098, + "thread": 14 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1326478, + "thread": 13 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1606753, + "thread": 21 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1713066, + "thread": 1 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 1901124, + "thread": 11 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2067754, + "thread": 17 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2162801, + "thread": 20 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2396510, + "thread": 8 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2509862, + "thread": 19 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2700050, + "thread": 12 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2841963, + "thread": 25 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 2979787, + "thread": 2 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 3201884, + "thread": 13 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 3294748, + "thread": 26 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 3597651, + "thread": 19 + } + }, + { + "amount": "71.839871486", + "slot": { + "period": 3639598, + "thread": 5 + } + }, + { + "amount": "71.839871496", + "slot": { + "period": 3833321, + "thread": 0 + } + } + ], + "AU1LUMVpezzbZPPh5QxiyYY61TeoL1bmpckFne2BJTRUB2Zwmoby": [ + { + "amount": "517.816307056", + "slot": { + "period": 53212, + "thread": 20 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 299877, + "thread": 2 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 395786, + "thread": 7 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 644889, + "thread": 9 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 732850, + "thread": 9 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 826073, + "thread": 3 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1054509, + "thread": 19 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1268480, + "thread": 22 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1319601, + "thread": 29 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1583974, + "thread": 0 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1759227, + "thread": 13 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1835583, + "thread": 5 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 1989526, + "thread": 11 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 2159178, + "thread": 26 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 2422989, + "thread": 8 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 2615574, + "thread": 8 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 2632280, + "thread": 25 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 2792344, + "thread": 1 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 3024137, + "thread": 28 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 3205391, + "thread": 5 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 3444930, + "thread": 30 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 3583196, + "thread": 2 + } + }, + { + "amount": "517.816307056", + "slot": { + "period": 3715943, + "thread": 20 + } + }, + { + "amount": "517.816307066", + "slot": { + "period": 3906353, + "thread": 10 + } + } + ], + "AU1LUwFdtTv7WPF9oqDM1hSx9Zja2cJiSz3CUCcu7xQeH28Z9ewM": [ + { + "amount": "171.060847499", + "slot": { + "period": 12034, + "thread": 20 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 246085, + "thread": 4 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 379947, + "thread": 17 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 517949, + "thread": 29 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 689404, + "thread": 0 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 938558, + "thread": 24 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1136893, + "thread": 31 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1177439, + "thread": 2 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1400952, + "thread": 3 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1599474, + "thread": 28 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1801874, + "thread": 8 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 1949346, + "thread": 12 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2061663, + "thread": 1 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2263568, + "thread": 24 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2455642, + "thread": 12 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2597456, + "thread": 18 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2738971, + "thread": 30 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2929041, + "thread": 18 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 2966590, + "thread": 15 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 3253788, + "thread": 19 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 3348165, + "thread": 13 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 3474085, + "thread": 22 + } + }, + { + "amount": "171.060847499", + "slot": { + "period": 3692204, + "thread": 17 + } + }, + { + "amount": "171.060847505", + "slot": { + "period": 3933089, + "thread": 0 + } + } + ], + "AU1LVYMgTN1QgKYhg8dFpKwpkxUg5uqnYbCFZMAxQi1ZumYX3aPz": [ + { + "amount": "76.234787995", + "slot": { + "period": 98634, + "thread": 23 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 230813, + "thread": 3 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 432641, + "thread": 23 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 496892, + "thread": 13 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 815100, + "thread": 28 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 949019, + "thread": 25 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1065940, + "thread": 21 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1308777, + "thread": 7 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1455424, + "thread": 8 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1567952, + "thread": 23 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1782034, + "thread": 9 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 1830122, + "thread": 6 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2081388, + "thread": 13 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2213123, + "thread": 29 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2307103, + "thread": 19 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2603638, + "thread": 15 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2711507, + "thread": 2 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 2848851, + "thread": 5 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 3001920, + "thread": 25 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 3280924, + "thread": 22 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 3430396, + "thread": 28 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 3617283, + "thread": 8 + } + }, + { + "amount": "76.234787995", + "slot": { + "period": 3710919, + "thread": 0 + } + }, + { + "amount": "76.234787996", + "slot": { + "period": 3782120, + "thread": 6 + } + } + ], + "AU1LWv26Ms9ARXmmCDzYkPPNqa1DDgtjM9ePWBdjDAnU1zTB6LjC": [ + { + "amount": "88.981972991", + "slot": { + "period": 42859, + "thread": 8 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 253062, + "thread": 5 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 490031, + "thread": 6 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 583508, + "thread": 8 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 753771, + "thread": 13 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 916008, + "thread": 6 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1026546, + "thread": 21 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1170939, + "thread": 2 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1401937, + "thread": 1 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1596465, + "thread": 26 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1680249, + "thread": 11 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 1916904, + "thread": 14 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2094191, + "thread": 28 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2213665, + "thread": 4 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2322628, + "thread": 24 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2601309, + "thread": 24 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2671485, + "thread": 11 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 2863678, + "thread": 31 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 3010373, + "thread": 15 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 3153966, + "thread": 2 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 3346887, + "thread": 18 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 3563869, + "thread": 0 + } + }, + { + "amount": "88.981972991", + "slot": { + "period": 3624356, + "thread": 6 + } + }, + { + "amount": "88.981972982", + "slot": { + "period": 3906608, + "thread": 3 + } + } + ], + "AU1LXF8imwEtHFPNZPbmuvSDLsWr4deh6xrD6dohYgJLP6LDnHmD": [ + { + "amount": "169.651663945", + "slot": { + "period": 45150, + "thread": 31 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 212717, + "thread": 27 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 414282, + "thread": 22 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 542321, + "thread": 27 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 804650, + "thread": 25 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 928290, + "thread": 11 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1109620, + "thread": 31 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1283451, + "thread": 15 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1435037, + "thread": 28 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1502627, + "thread": 5 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1651542, + "thread": 10 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 1915241, + "thread": 2 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2067241, + "thread": 25 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2144050, + "thread": 8 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2300533, + "thread": 19 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2511073, + "thread": 11 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2634279, + "thread": 0 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2812603, + "thread": 10 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 2971282, + "thread": 19 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 3157978, + "thread": 23 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 3389161, + "thread": 20 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 3545788, + "thread": 9 + } + }, + { + "amount": "169.651663945", + "slot": { + "period": 3639776, + "thread": 0 + } + }, + { + "amount": "169.651663943", + "slot": { + "period": 3915159, + "thread": 10 + } + } + ], + "AU1La8nGFJLcCQRu6GB8vjV4GxPTh5YZPiRoWU83ogW8RWipTPSB": [ + { + "amount": "156.128625060", + "slot": { + "period": 61722, + "thread": 23 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 319326, + "thread": 18 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 373986, + "thread": 15 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 588710, + "thread": 4 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 812364, + "thread": 22 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 822126, + "thread": 24 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1046550, + "thread": 12 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1281422, + "thread": 13 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1362047, + "thread": 26 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1621318, + "thread": 27 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1709516, + "thread": 31 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 1896431, + "thread": 8 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2106826, + "thread": 8 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2229421, + "thread": 1 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2346220, + "thread": 8 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2561172, + "thread": 26 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2775186, + "thread": 31 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2934770, + "thread": 6 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 2985261, + "thread": 14 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 3186804, + "thread": 10 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 3303738, + "thread": 26 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 3483698, + "thread": 16 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 3759974, + "thread": 18 + } + }, + { + "amount": "156.128625060", + "slot": { + "period": 3897194, + "thread": 5 + } + } + ], + "AU1LaAZB8d4BELfxuX4nPUBvA5RoetUP8j5U21RwXNcoLEm6jsY9": [ + { + "amount": "77.779729822", + "slot": { + "period": 47179, + "thread": 6 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 182841, + "thread": 15 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 373485, + "thread": 16 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 492721, + "thread": 25 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 657614, + "thread": 19 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 908684, + "thread": 23 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1041189, + "thread": 9 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1274344, + "thread": 23 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1443365, + "thread": 11 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1533881, + "thread": 21 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1648804, + "thread": 19 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1934617, + "thread": 5 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 1984146, + "thread": 15 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 2221075, + "thread": 22 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 2351100, + "thread": 7 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 2576519, + "thread": 26 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 2748719, + "thread": 5 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 2928530, + "thread": 18 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 3003422, + "thread": 22 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 3233698, + "thread": 0 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 3361795, + "thread": 3 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 3480475, + "thread": 14 + } + }, + { + "amount": "77.779729822", + "slot": { + "period": 3733491, + "thread": 24 + } + }, + { + "amount": "77.779729832", + "slot": { + "period": 3797979, + "thread": 11 + } + } + ], + "AU1LcaSAodaJuQTtAqyGTyoBXoeaUbY7PFNSu9XAJKidecWV6fgW": [ + { + "amount": "148.131850215", + "slot": { + "period": 139010, + "thread": 28 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 189320, + "thread": 21 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 403962, + "thread": 23 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 575941, + "thread": 13 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 766065, + "thread": 12 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 916165, + "thread": 30 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1110788, + "thread": 28 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1158035, + "thread": 16 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1415776, + "thread": 27 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1509877, + "thread": 18 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1697819, + "thread": 7 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 1852976, + "thread": 11 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2030847, + "thread": 15 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2261458, + "thread": 12 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2417057, + "thread": 23 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2589205, + "thread": 7 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2752618, + "thread": 25 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 2946542, + "thread": 0 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 3025078, + "thread": 15 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 3134955, + "thread": 6 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 3429904, + "thread": 24 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 3578149, + "thread": 29 + } + }, + { + "amount": "148.131850215", + "slot": { + "period": 3682943, + "thread": 7 + } + }, + { + "amount": "148.131850220", + "slot": { + "period": 3932425, + "thread": 19 + } + } + ], + "AU1Ld7j7XfVhRdeJhe7cDzmKZfkqswMKtYvxkSuUDwBb6py1PZY7": [ + { + "amount": "66.177879336", + "slot": { + "period": 158098, + "thread": 10 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 237342, + "thread": 31 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 485428, + "thread": 16 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 516884, + "thread": 7 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 814189, + "thread": 6 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 950362, + "thread": 5 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1006959, + "thread": 26 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1216884, + "thread": 16 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1413376, + "thread": 8 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1581577, + "thread": 25 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1692949, + "thread": 3 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 1838222, + "thread": 28 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2129106, + "thread": 12 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2255166, + "thread": 8 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2407405, + "thread": 31 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2615720, + "thread": 30 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2774400, + "thread": 1 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 2922057, + "thread": 27 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 3026570, + "thread": 1 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 3168724, + "thread": 10 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 3409804, + "thread": 2 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 3487272, + "thread": 20 + } + }, + { + "amount": "66.177879336", + "slot": { + "period": 3657474, + "thread": 5 + } + }, + { + "amount": "66.177879327", + "slot": { + "period": 3867164, + "thread": 0 + } + } + ], + "AU1LdLR7852SqRvLuqPPkgDS4W43D6SDAyA7H5JTR6ggby81esok": [ + { + "amount": "267.521349673", + "slot": { + "period": 153514, + "thread": 21 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 240742, + "thread": 15 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 406848, + "thread": 17 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 525299, + "thread": 20 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 815572, + "thread": 0 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 937502, + "thread": 21 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1004394, + "thread": 17 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1281273, + "thread": 10 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1415272, + "thread": 15 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1626759, + "thread": 17 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1764440, + "thread": 4 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 1971190, + "thread": 27 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2064392, + "thread": 21 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2191253, + "thread": 11 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2455088, + "thread": 26 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2577785, + "thread": 30 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2719593, + "thread": 26 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2842248, + "thread": 4 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 2967016, + "thread": 2 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 3150454, + "thread": 28 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 3403435, + "thread": 10 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 3588672, + "thread": 7 + } + }, + { + "amount": "267.521349673", + "slot": { + "period": 3744860, + "thread": 27 + } + }, + { + "amount": "267.521349676", + "slot": { + "period": 3827564, + "thread": 14 + } + } + ], + "AU1Lfh8kj1KZBynUXytSGVgp3Cz62sk2UK57QK8abiXGdroZXNLF": [ + { + "amount": "102.228767709", + "slot": { + "period": 102401, + "thread": 15 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 192170, + "thread": 22 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 351350, + "thread": 6 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 637950, + "thread": 23 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 778484, + "thread": 26 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 916653, + "thread": 7 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1074288, + "thread": 23 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1209986, + "thread": 18 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1348060, + "thread": 19 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1624015, + "thread": 25 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1799047, + "thread": 20 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 1951011, + "thread": 22 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2091921, + "thread": 23 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2243524, + "thread": 26 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2395422, + "thread": 26 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2559319, + "thread": 30 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2655215, + "thread": 20 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 2835645, + "thread": 28 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 3023831, + "thread": 21 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 3215243, + "thread": 2 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 3419674, + "thread": 19 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 3474518, + "thread": 11 + } + }, + { + "amount": "102.228767709", + "slot": { + "period": 3744488, + "thread": 7 + } + }, + { + "amount": "102.228767716", + "slot": { + "period": 3897525, + "thread": 5 + } + } + ], + "AU1Lfi6xmjspVPKKbT7S4bVEnN132xtECgnCbszzUgC8H1aZG82t": [ + { + "amount": "82.002047460", + "slot": { + "period": 70086, + "thread": 16 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 239488, + "thread": 5 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 403398, + "thread": 22 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 546863, + "thread": 23 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 767899, + "thread": 31 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 924693, + "thread": 24 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 984684, + "thread": 29 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 1234893, + "thread": 26 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 1399794, + "thread": 16 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 1547791, + "thread": 28 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 1782428, + "thread": 23 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 1971772, + "thread": 29 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2053387, + "thread": 6 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2247393, + "thread": 22 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2390417, + "thread": 31 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2483943, + "thread": 31 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2743991, + "thread": 12 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 2850476, + "thread": 23 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 3050013, + "thread": 17 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 3249738, + "thread": 25 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 3405866, + "thread": 28 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 3519652, + "thread": 26 + } + }, + { + "amount": "82.002047460", + "slot": { + "period": 3676689, + "thread": 7 + } + }, + { + "amount": "82.002047461", + "slot": { + "period": 3939461, + "thread": 6 + } + } + ], + "AU1LgqieDjhmuBQcjEZixuSNy1o9rYCjzY4xFbKhyGNZsGi3oPmH": [ + { + "amount": "131.715480730", + "slot": { + "period": 44679, + "thread": 14 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 233359, + "thread": 10 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 473597, + "thread": 14 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 607317, + "thread": 18 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 801612, + "thread": 14 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 936605, + "thread": 25 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1046975, + "thread": 10 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1215785, + "thread": 2 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1438583, + "thread": 21 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1585320, + "thread": 19 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1684404, + "thread": 16 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 1829282, + "thread": 2 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2128814, + "thread": 12 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2221590, + "thread": 6 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2339289, + "thread": 10 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2576216, + "thread": 28 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2789160, + "thread": 20 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2942106, + "thread": 22 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 2984664, + "thread": 26 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 3240206, + "thread": 4 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 3409958, + "thread": 12 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 3472651, + "thread": 3 + } + }, + { + "amount": "131.715480730", + "slot": { + "period": 3761128, + "thread": 8 + } + }, + { + "amount": "131.715480734", + "slot": { + "period": 3784777, + "thread": 7 + } + } + ], + "AU1LhJ7ZUQHANXfuZaQDmuUv5YxbMRJEDLK25wRja7S7WSESLiJ9": [ + { + "amount": "220.370282400", + "slot": { + "period": 85827, + "thread": 3 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 231851, + "thread": 3 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 366544, + "thread": 29 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 505242, + "thread": 16 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 794723, + "thread": 7 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 917932, + "thread": 4 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1110888, + "thread": 31 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1260727, + "thread": 0 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1452061, + "thread": 2 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1588218, + "thread": 27 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1743535, + "thread": 14 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 1818777, + "thread": 6 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2042120, + "thread": 16 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2259222, + "thread": 2 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2360799, + "thread": 2 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2609290, + "thread": 11 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2753444, + "thread": 2 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2927128, + "thread": 3 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 2976489, + "thread": 9 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 3154652, + "thread": 26 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 3334814, + "thread": 13 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 3535834, + "thread": 1 + } + }, + { + "amount": "220.370282400", + "slot": { + "period": 3740299, + "thread": 4 + } + }, + { + "amount": "220.370282411", + "slot": { + "period": 3944101, + "thread": 18 + } + } + ], + "AU1LhyeumRMunmvXRA6DTy9HnjJFoLULxKSK79wRYzFDnzRYXEk9": [ + { + "amount": "146.221070629", + "slot": { + "period": 166834, + "thread": 13 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 311463, + "thread": 21 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 473010, + "thread": 0 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 582105, + "thread": 2 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 789784, + "thread": 0 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 826459, + "thread": 28 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1140581, + "thread": 8 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1177951, + "thread": 25 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1450788, + "thread": 17 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1605155, + "thread": 2 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1723730, + "thread": 12 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 1871269, + "thread": 14 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2102547, + "thread": 4 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2172253, + "thread": 26 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2298507, + "thread": 13 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2602118, + "thread": 14 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2684838, + "thread": 13 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2934608, + "thread": 22 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 2954632, + "thread": 15 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 3281076, + "thread": 25 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 3305431, + "thread": 12 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 3607662, + "thread": 14 + } + }, + { + "amount": "146.221070629", + "slot": { + "period": 3754326, + "thread": 31 + } + }, + { + "amount": "146.221070623", + "slot": { + "period": 3789093, + "thread": 30 + } + } + ], + "AU1Li6QLq25SFkAzSKkbgdUKgKMPGaSeivRsKKBetxSNU12ptWgv": [ + { + "amount": "72.503701644", + "slot": { + "period": 33986, + "thread": 2 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 228199, + "thread": 18 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 354378, + "thread": 24 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 504459, + "thread": 18 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 709688, + "thread": 9 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 941022, + "thread": 14 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1088651, + "thread": 22 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1259257, + "thread": 7 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1365193, + "thread": 27 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1640360, + "thread": 8 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1674906, + "thread": 10 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 1946805, + "thread": 5 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2088650, + "thread": 17 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2158119, + "thread": 15 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2297807, + "thread": 23 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2476433, + "thread": 18 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2743580, + "thread": 11 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 2874106, + "thread": 18 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 3043970, + "thread": 21 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 3189408, + "thread": 13 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 3410663, + "thread": 27 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 3540360, + "thread": 9 + } + }, + { + "amount": "72.503701644", + "slot": { + "period": 3705185, + "thread": 5 + } + }, + { + "amount": "72.503701653", + "slot": { + "period": 3790711, + "thread": 22 + } + } + ], + "AU1Lj53RagyLju23ADKs5Ly9CMdDUsD882AHiC5m3RpmgBYMNNpz": [ + { + "amount": "146.145616410", + "slot": { + "period": 127426, + "thread": 26 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 223708, + "thread": 22 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 362485, + "thread": 10 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 507090, + "thread": 6 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 674550, + "thread": 27 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 848600, + "thread": 23 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1008063, + "thread": 23 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1195456, + "thread": 24 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1454388, + "thread": 19 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1561985, + "thread": 0 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1680936, + "thread": 6 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 1869387, + "thread": 0 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2065731, + "thread": 14 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2222868, + "thread": 15 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2432366, + "thread": 22 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2538973, + "thread": 15 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2692589, + "thread": 2 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 2817608, + "thread": 9 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3105108, + "thread": 24 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3274372, + "thread": 6 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3422411, + "thread": 25 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3608286, + "thread": 15 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3715426, + "thread": 6 + } + }, + { + "amount": "146.145616410", + "slot": { + "period": 3855557, + "thread": 27 + } + } + ], + "AU1LkVnSqUmSjDSMeUDsRd9xiGjVWzSrU2mNLzVyEZkx7Qft2LvL": [ + { + "amount": "144.079134532", + "slot": { + "period": 34272, + "thread": 26 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 243889, + "thread": 26 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 440211, + "thread": 21 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 597158, + "thread": 14 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 746116, + "thread": 12 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 908561, + "thread": 31 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1127649, + "thread": 12 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1197182, + "thread": 11 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1374167, + "thread": 11 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1557858, + "thread": 13 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1702912, + "thread": 14 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 1901284, + "thread": 7 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2012368, + "thread": 21 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2260927, + "thread": 11 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2437797, + "thread": 25 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2567978, + "thread": 31 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2744171, + "thread": 30 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 2830960, + "thread": 17 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 3024439, + "thread": 20 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 3133148, + "thread": 30 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 3349013, + "thread": 7 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 3551368, + "thread": 26 + } + }, + { + "amount": "144.079134532", + "slot": { + "period": 3692027, + "thread": 7 + } + }, + { + "amount": "144.079134521", + "slot": { + "period": 3803006, + "thread": 18 + } + } + ], + "AU1LmeU6DarSeJcQ6qjzqSUH1JqjRUZNxUFmXyXscWxMzj6BJyzs": [ + { + "amount": "139.433522906", + "slot": { + "period": 127828, + "thread": 0 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 323946, + "thread": 11 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 476456, + "thread": 18 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 499646, + "thread": 6 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 779825, + "thread": 23 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 852197, + "thread": 29 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1112380, + "thread": 17 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1221364, + "thread": 10 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1417026, + "thread": 29 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1532266, + "thread": 26 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1767142, + "thread": 25 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 1848705, + "thread": 1 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2077312, + "thread": 30 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2151768, + "thread": 18 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2456406, + "thread": 29 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2553093, + "thread": 14 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2768783, + "thread": 8 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2854815, + "thread": 19 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 2991959, + "thread": 11 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 3244679, + "thread": 3 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 3379421, + "thread": 2 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 3464853, + "thread": 13 + } + }, + { + "amount": "139.433522906", + "slot": { + "period": 3753032, + "thread": 5 + } + }, + { + "amount": "139.433522918", + "slot": { + "period": 3882725, + "thread": 22 + } + } + ], + "AU1LokY9mkhgWkxpsayaZzf61Rc21wN4ZXfL8je9cU7zbygFGDjy": [ + { + "amount": "146.138333770", + "slot": { + "period": 109338, + "thread": 19 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 240028, + "thread": 3 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 342232, + "thread": 15 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 619931, + "thread": 10 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 722083, + "thread": 23 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 842849, + "thread": 1 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1016628, + "thread": 9 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1257276, + "thread": 0 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1353045, + "thread": 21 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1572565, + "thread": 10 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1703684, + "thread": 25 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 1844593, + "thread": 25 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2058685, + "thread": 4 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2294425, + "thread": 16 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2350240, + "thread": 0 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2604281, + "thread": 31 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2771378, + "thread": 29 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 2890082, + "thread": 23 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 3102670, + "thread": 11 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 3252711, + "thread": 1 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 3335177, + "thread": 9 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 3537692, + "thread": 30 + } + }, + { + "amount": "146.138333770", + "slot": { + "period": 3715215, + "thread": 30 + } + }, + { + "amount": "146.138333782", + "slot": { + "period": 3855176, + "thread": 31 + } + } + ], + "AU1Lp9BmsBqitrwvMtv1TTMTtnrFV539bLxKBF7TLnmid52ixYd2": [ + { + "amount": "224.774217502", + "slot": { + "period": 70866, + "thread": 8 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 217025, + "thread": 31 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 444902, + "thread": 29 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 613827, + "thread": 15 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 676366, + "thread": 6 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 837564, + "thread": 29 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1073151, + "thread": 22 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1310922, + "thread": 1 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1454826, + "thread": 21 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1557007, + "thread": 8 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1688166, + "thread": 29 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 1956140, + "thread": 4 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2123894, + "thread": 26 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2263619, + "thread": 12 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2367590, + "thread": 25 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2611773, + "thread": 25 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2683368, + "thread": 9 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2936300, + "thread": 27 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 2967231, + "thread": 0 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 3194484, + "thread": 12 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 3382717, + "thread": 7 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 3544751, + "thread": 27 + } + }, + { + "amount": "224.774217502", + "slot": { + "period": 3692945, + "thread": 9 + } + }, + { + "amount": "224.774217511", + "slot": { + "period": 3943602, + "thread": 23 + } + } + ], + "AU1LpCMSK3iKHd79KT7YoSwZZd1hvybDDFsNfMQ7YxHpTECigwE6": [ + { + "amount": "87.182895001", + "slot": { + "period": 96223, + "thread": 17 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 198123, + "thread": 4 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 336044, + "thread": 11 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 586625, + "thread": 20 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 698023, + "thread": 1 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 870026, + "thread": 7 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 992498, + "thread": 28 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1293019, + "thread": 25 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1403405, + "thread": 2 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1579260, + "thread": 18 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1677634, + "thread": 10 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1871393, + "thread": 1 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 1989939, + "thread": 28 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 2218065, + "thread": 8 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 2367283, + "thread": 15 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 2553324, + "thread": 29 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 2663546, + "thread": 25 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 2930627, + "thread": 19 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 3022584, + "thread": 11 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 3125304, + "thread": 26 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 3309432, + "thread": 26 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 3617405, + "thread": 23 + } + }, + { + "amount": "87.182895001", + "slot": { + "period": 3636209, + "thread": 10 + } + }, + { + "amount": "87.182895000", + "slot": { + "period": 3869775, + "thread": 17 + } + } + ], + "AU1LpX7hai2VgwTDnNiNLBxAV9mH9dpiBpLRrNrVpWNE1z15UqnC": [ + { + "amount": "123.298149768", + "slot": { + "period": 161564, + "thread": 10 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 304621, + "thread": 3 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 373187, + "thread": 24 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 505193, + "thread": 10 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 681005, + "thread": 4 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 861113, + "thread": 1 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1005349, + "thread": 17 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1201986, + "thread": 21 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1396980, + "thread": 10 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1611209, + "thread": 10 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1650095, + "thread": 25 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 1967659, + "thread": 6 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2143593, + "thread": 1 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2179903, + "thread": 26 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2306090, + "thread": 5 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2591756, + "thread": 24 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2688426, + "thread": 7 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 2922124, + "thread": 20 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 3108341, + "thread": 11 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 3239397, + "thread": 8 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 3388361, + "thread": 4 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 3573030, + "thread": 11 + } + }, + { + "amount": "123.298149768", + "slot": { + "period": 3709419, + "thread": 11 + } + }, + { + "amount": "123.298149767", + "slot": { + "period": 3910597, + "thread": 15 + } + } + ], + "AU1LphTnpEhUFcX286VncRjL6A2bGt7C2wP4323w2nerujQJsNLG": [ + { + "amount": "317.151367980", + "slot": { + "period": 57234, + "thread": 25 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 179720, + "thread": 29 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 394143, + "thread": 8 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 636603, + "thread": 1 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 775228, + "thread": 0 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 842407, + "thread": 0 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1064867, + "thread": 6 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1305909, + "thread": 8 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1426568, + "thread": 3 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1627052, + "thread": 27 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1769027, + "thread": 25 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 1894926, + "thread": 14 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2054907, + "thread": 8 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2185013, + "thread": 0 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2349039, + "thread": 27 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2508219, + "thread": 18 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2755931, + "thread": 9 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 2903584, + "thread": 14 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 3027659, + "thread": 2 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 3142319, + "thread": 11 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 3426018, + "thread": 10 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 3572266, + "thread": 30 + } + }, + { + "amount": "317.151367980", + "slot": { + "period": 3650339, + "thread": 10 + } + }, + { + "amount": "317.151367987", + "slot": { + "period": 3803727, + "thread": 7 + } + } + ], + "AU1LpvSzUsLqCmFEpYjnRbt6KBhq8aKkjzF1rUDUeBk5TVNUW575": [ + { + "amount": "285.008589807", + "slot": { + "period": 58641, + "thread": 15 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 209283, + "thread": 9 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 358987, + "thread": 23 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 611014, + "thread": 14 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 683876, + "thread": 22 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 981644, + "thread": 22 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1008047, + "thread": 5 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1205742, + "thread": 8 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1352251, + "thread": 6 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1543325, + "thread": 0 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1731597, + "thread": 10 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 1951775, + "thread": 22 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2062325, + "thread": 6 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2210646, + "thread": 14 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2315238, + "thread": 0 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2498115, + "thread": 4 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2632689, + "thread": 12 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2933429, + "thread": 2 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 2959660, + "thread": 22 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 3160130, + "thread": 5 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 3407442, + "thread": 20 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 3609925, + "thread": 3 + } + }, + { + "amount": "285.008589807", + "slot": { + "period": 3722941, + "thread": 8 + } + }, + { + "amount": "285.008589815", + "slot": { + "period": 3934137, + "thread": 10 + } + } + ], + "AU1Lq5xEjAbYGsCa2ReqdUbVH4wCDinSqWHiwuTFtRAU1GebVK8u": [ + { + "amount": "453.962302336", + "slot": { + "period": 130795, + "thread": 22 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 238491, + "thread": 15 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 337033, + "thread": 10 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 558658, + "thread": 19 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 760969, + "thread": 30 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 873100, + "thread": 12 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1021932, + "thread": 21 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1231125, + "thread": 13 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1354764, + "thread": 20 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1640943, + "thread": 19 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1739602, + "thread": 12 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1839360, + "thread": 10 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 1986394, + "thread": 4 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2203989, + "thread": 25 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2411235, + "thread": 31 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2499594, + "thread": 6 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2761364, + "thread": 6 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2918633, + "thread": 9 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 2983369, + "thread": 30 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 3182133, + "thread": 26 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 3342756, + "thread": 9 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 3518652, + "thread": 18 + } + }, + { + "amount": "453.962302336", + "slot": { + "period": 3634378, + "thread": 21 + } + }, + { + "amount": "453.962302335", + "slot": { + "period": 3793002, + "thread": 25 + } + } + ], + "AU1LqCoTf45f9uAoTvz7t5yAiDBFdwEu7h8r24WHn59fVJ5aCMew": [ + { + "amount": "149.447671208", + "slot": { + "period": 92574, + "thread": 17 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 221232, + "thread": 14 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 330885, + "thread": 0 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 501119, + "thread": 15 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 755065, + "thread": 29 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 929262, + "thread": 20 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1059796, + "thread": 31 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1167878, + "thread": 19 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1325538, + "thread": 13 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1550226, + "thread": 9 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1682543, + "thread": 11 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1814060, + "thread": 24 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 1996788, + "thread": 12 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2175449, + "thread": 4 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2397426, + "thread": 29 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2481843, + "thread": 28 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2735412, + "thread": 11 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2935907, + "thread": 8 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 2994842, + "thread": 28 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 3202167, + "thread": 20 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 3298739, + "thread": 23 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 3590088, + "thread": 8 + } + }, + { + "amount": "149.447671208", + "slot": { + "period": 3665398, + "thread": 2 + } + }, + { + "amount": "149.447671212", + "slot": { + "period": 3819272, + "thread": 20 + } + } + ], + "AU1LqHGPi4mZEJ3jUaHLhuGcgQfyfjcr8m31cTVGinAxS1CfgoAZ": [ + { + "amount": "193.263236546", + "slot": { + "period": 88877, + "thread": 26 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 225848, + "thread": 11 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 421827, + "thread": 13 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 539024, + "thread": 24 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 699887, + "thread": 17 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 978684, + "thread": 22 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1130174, + "thread": 29 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1267217, + "thread": 0 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1379818, + "thread": 0 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1482104, + "thread": 11 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1730518, + "thread": 21 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 1965502, + "thread": 7 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2009034, + "thread": 25 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2243158, + "thread": 9 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2461588, + "thread": 29 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2571109, + "thread": 7 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2772056, + "thread": 7 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 2803646, + "thread": 24 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 3119035, + "thread": 5 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 3221742, + "thread": 14 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 3395309, + "thread": 0 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 3580584, + "thread": 24 + } + }, + { + "amount": "193.263236546", + "slot": { + "period": 3668179, + "thread": 26 + } + }, + { + "amount": "193.263236555", + "slot": { + "period": 3783277, + "thread": 18 + } + } + ], + "AU1LqHVw1XYLqXaJWYNF1J4HnAHvYDQLS6HVhHsBcyz6AmxGx2h4": [ + { + "amount": "168.303936625", + "slot": { + "period": 93956, + "thread": 17 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 280026, + "thread": 5 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 467051, + "thread": 7 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 558125, + "thread": 25 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 798510, + "thread": 24 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 911367, + "thread": 9 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1126067, + "thread": 2 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1221099, + "thread": 12 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1423078, + "thread": 10 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1567870, + "thread": 6 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1803752, + "thread": 12 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 1839988, + "thread": 7 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2097286, + "thread": 12 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2158030, + "thread": 10 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2373823, + "thread": 0 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2599979, + "thread": 20 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2742860, + "thread": 26 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 2846857, + "thread": 18 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 3050137, + "thread": 2 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 3210335, + "thread": 5 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 3300535, + "thread": 11 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 3589663, + "thread": 14 + } + }, + { + "amount": "168.303936625", + "slot": { + "period": 3639970, + "thread": 0 + } + }, + { + "amount": "168.303936616", + "slot": { + "period": 3875092, + "thread": 8 + } + } + ], + "AU1Lqn63QrBzaBRZ4CWdPkT7NXXABXkGvEFgKR2FKza69McJcM19": [ + { + "amount": "192.101405308", + "slot": { + "period": 130474, + "thread": 12 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 250561, + "thread": 16 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 468271, + "thread": 8 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 508931, + "thread": 25 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 685891, + "thread": 30 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 912888, + "thread": 2 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1129375, + "thread": 0 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1270022, + "thread": 23 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1452767, + "thread": 15 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1577016, + "thread": 0 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1657283, + "thread": 27 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 1940028, + "thread": 4 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2139629, + "thread": 20 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2199716, + "thread": 10 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2440299, + "thread": 26 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2565067, + "thread": 0 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2661559, + "thread": 10 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 2895858, + "thread": 16 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 3036415, + "thread": 28 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 3207207, + "thread": 25 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 3383589, + "thread": 12 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 3464767, + "thread": 4 + } + }, + { + "amount": "192.101405308", + "slot": { + "period": 3702872, + "thread": 11 + } + }, + { + "amount": "192.101405306", + "slot": { + "period": 3913410, + "thread": 25 + } + } + ], + "AU1LrkDno1VB1AAopchugYvxBH4K8Ru8HtmGDZh8EB29APUP2Qus": [ + { + "amount": "359.354275272", + "slot": { + "period": 89221, + "thread": 17 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 195809, + "thread": 7 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 469566, + "thread": 7 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 543122, + "thread": 18 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 818243, + "thread": 10 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 913314, + "thread": 30 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1102457, + "thread": 30 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1288686, + "thread": 3 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1318441, + "thread": 3 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1580231, + "thread": 24 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1734824, + "thread": 0 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 1818008, + "thread": 8 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2083307, + "thread": 11 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2191481, + "thread": 28 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2453278, + "thread": 30 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2623544, + "thread": 8 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2790329, + "thread": 15 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 2818360, + "thread": 2 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 3090402, + "thread": 5 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 3263411, + "thread": 17 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 3443956, + "thread": 19 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 3555026, + "thread": 2 + } + }, + { + "amount": "359.354275272", + "slot": { + "period": 3670784, + "thread": 3 + } + }, + { + "amount": "359.354275276", + "slot": { + "period": 3857424, + "thread": 29 + } + } + ], + "AU1Lt2J657WL9G7pEfxTGSN11xGaKdSEq7j7HAYbfrA2TLz9fFUA": [ + { + "amount": "135.222665986", + "slot": { + "period": 63914, + "thread": 22 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 239669, + "thread": 25 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 405719, + "thread": 20 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 516901, + "thread": 27 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 703578, + "thread": 9 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 974819, + "thread": 12 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1024141, + "thread": 17 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1226337, + "thread": 0 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1477978, + "thread": 24 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1505134, + "thread": 13 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1725430, + "thread": 21 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 1849003, + "thread": 26 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2004710, + "thread": 31 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2202285, + "thread": 27 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2330485, + "thread": 16 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2489034, + "thread": 14 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2791572, + "thread": 11 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 2864795, + "thread": 14 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 3062054, + "thread": 28 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 3166513, + "thread": 8 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 3332525, + "thread": 22 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 3554965, + "thread": 23 + } + }, + { + "amount": "135.222665986", + "slot": { + "period": 3710818, + "thread": 23 + } + }, + { + "amount": "135.222665985", + "slot": { + "period": 3842924, + "thread": 3 + } + } + ], + "AU1LuysaX8vHLEWsPQtExSGVsLiCMPG6oZfeDe3Ngcuov7ZPEgfc": [ + { + "amount": "384.329581594", + "slot": { + "period": 104752, + "thread": 31 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 292267, + "thread": 22 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 377049, + "thread": 1 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 649290, + "thread": 17 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 749041, + "thread": 21 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 822416, + "thread": 11 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1037828, + "thread": 9 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1265069, + "thread": 21 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1416183, + "thread": 30 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1643670, + "thread": 26 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1779087, + "thread": 15 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1941663, + "thread": 20 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 1984707, + "thread": 9 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2144899, + "thread": 15 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2453797, + "thread": 4 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2537565, + "thread": 23 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2750577, + "thread": 19 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2828711, + "thread": 14 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 2986974, + "thread": 24 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 3224426, + "thread": 27 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 3446998, + "thread": 15 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 3602711, + "thread": 17 + } + }, + { + "amount": "384.329581594", + "slot": { + "period": 3645599, + "thread": 2 + } + }, + { + "amount": "384.329581595", + "slot": { + "period": 3928406, + "thread": 1 + } + } + ], + "AU1Lv1bzyv8thdKBKofPqPLppg9grAsuWZPN2wvriCaJmmPvcdCY": [ + { + "amount": "202.482536698", + "slot": { + "period": 107474, + "thread": 10 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 317868, + "thread": 10 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 431250, + "thread": 14 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 554094, + "thread": 23 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 722704, + "thread": 22 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 858052, + "thread": 0 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1051815, + "thread": 17 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1303620, + "thread": 28 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1409483, + "thread": 30 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1576394, + "thread": 11 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1717991, + "thread": 20 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 1911585, + "thread": 30 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2087105, + "thread": 21 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2213920, + "thread": 0 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2295005, + "thread": 28 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2615530, + "thread": 29 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2639448, + "thread": 2 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2850528, + "thread": 28 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 2990634, + "thread": 16 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 3250865, + "thread": 9 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 3416335, + "thread": 7 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 3607298, + "thread": 2 + } + }, + { + "amount": "202.482536698", + "slot": { + "period": 3773307, + "thread": 6 + } + }, + { + "amount": "202.482536708", + "slot": { + "period": 3853696, + "thread": 26 + } + } + ], + "AU1LvMxqFr6UQUuEVEhjPQQHBkMn3bNGez6yaoVuA16oHpnXBUpa": [ + { + "amount": "371.758971897", + "slot": { + "period": 14582, + "thread": 28 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 242001, + "thread": 19 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 490095, + "thread": 19 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 637007, + "thread": 11 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 749685, + "thread": 24 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 903944, + "thread": 21 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1096802, + "thread": 3 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1254890, + "thread": 3 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1477290, + "thread": 23 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1611345, + "thread": 4 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1703176, + "thread": 12 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 1847713, + "thread": 21 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2020382, + "thread": 22 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2240146, + "thread": 7 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2388372, + "thread": 22 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2623552, + "thread": 26 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2670784, + "thread": 25 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2825161, + "thread": 30 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 2997467, + "thread": 14 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 3264721, + "thread": 17 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 3444541, + "thread": 21 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 3508288, + "thread": 8 + } + }, + { + "amount": "371.758971897", + "slot": { + "period": 3750712, + "thread": 12 + } + }, + { + "amount": "371.758971905", + "slot": { + "period": 3921887, + "thread": 16 + } + } + ], + "AU1LvVuNFSp6rqTxhYXNQMsa1Q3YjZvJAG64KC4eqmxgVkP5yYXM": [ + { + "amount": "198.285896914", + "slot": { + "period": 95921, + "thread": 29 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 268412, + "thread": 16 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 438705, + "thread": 1 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 543362, + "thread": 19 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 771732, + "thread": 10 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 860020, + "thread": 14 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1020026, + "thread": 7 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1252955, + "thread": 2 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1321477, + "thread": 24 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1525737, + "thread": 22 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1723267, + "thread": 22 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 1882040, + "thread": 29 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2003949, + "thread": 15 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2286109, + "thread": 8 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2312914, + "thread": 6 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2463890, + "thread": 16 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2654269, + "thread": 4 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 2823505, + "thread": 6 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 3086008, + "thread": 27 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 3260331, + "thread": 2 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 3373634, + "thread": 29 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 3461717, + "thread": 0 + } + }, + { + "amount": "198.285896914", + "slot": { + "period": 3687213, + "thread": 21 + } + }, + { + "amount": "198.285896917", + "slot": { + "period": 3801714, + "thread": 23 + } + } + ], + "AU1LwJg8XdCTcQSmCTnG32eWCJSqSZmnfuAYACxV4d1FaRxYpcQn": [ + { + "amount": "87.677352828", + "slot": { + "period": 158816, + "thread": 29 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 239665, + "thread": 22 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 351822, + "thread": 26 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 569186, + "thread": 7 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 667619, + "thread": 28 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 920494, + "thread": 7 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1050477, + "thread": 11 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1226953, + "thread": 1 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1357889, + "thread": 7 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1642267, + "thread": 13 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1780627, + "thread": 3 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 1968376, + "thread": 18 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2044889, + "thread": 14 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2196508, + "thread": 17 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2331366, + "thread": 6 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2490254, + "thread": 12 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2701479, + "thread": 0 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 2923858, + "thread": 22 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 3117365, + "thread": 27 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 3238060, + "thread": 1 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 3409774, + "thread": 3 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 3486384, + "thread": 2 + } + }, + { + "amount": "87.677352828", + "slot": { + "period": 3632673, + "thread": 5 + } + }, + { + "amount": "87.677352829", + "slot": { + "period": 3946571, + "thread": 5 + } + } + ], + "AU1LxCSKQMj7zbaV8srXMYdQ9H4wMr8F3kieps6oQ78eGWYfnyCC": [ + { + "amount": "152.184639258", + "slot": { + "period": 32905, + "thread": 13 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 175405, + "thread": 3 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 455898, + "thread": 6 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 495949, + "thread": 30 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 657953, + "thread": 13 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 960843, + "thread": 22 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1062622, + "thread": 30 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1311208, + "thread": 14 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1458718, + "thread": 20 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1595682, + "thread": 17 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1776962, + "thread": 30 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1939645, + "thread": 21 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 1991170, + "thread": 7 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 2282277, + "thread": 31 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 2436954, + "thread": 27 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 2485798, + "thread": 22 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 2744759, + "thread": 16 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 2876971, + "thread": 31 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 3028095, + "thread": 27 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 3194093, + "thread": 6 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 3408982, + "thread": 18 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 3516081, + "thread": 26 + } + }, + { + "amount": "152.184639258", + "slot": { + "period": 3628463, + "thread": 1 + } + }, + { + "amount": "152.184639261", + "slot": { + "period": 3798616, + "thread": 28 + } + } + ], + "AU1LyKAoMdHqQNXRq8LxDVv877G1x4XNhh1z6eg9vhN1RPPVR1J2": [ + { + "amount": "79.012720816", + "slot": { + "period": 45595, + "thread": 16 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 300958, + "thread": 15 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 387052, + "thread": 6 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 647422, + "thread": 30 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 748410, + "thread": 26 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 857890, + "thread": 28 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1058952, + "thread": 11 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1248973, + "thread": 0 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1338888, + "thread": 1 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1578300, + "thread": 21 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1797416, + "thread": 9 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1912620, + "thread": 17 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 1983387, + "thread": 11 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 2154825, + "thread": 1 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 2419408, + "thread": 7 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 2564759, + "thread": 26 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 2688372, + "thread": 9 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 2856735, + "thread": 15 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 3015598, + "thread": 4 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 3208552, + "thread": 24 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 3343410, + "thread": 19 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 3569364, + "thread": 17 + } + }, + { + "amount": "79.012720816", + "slot": { + "period": 3751734, + "thread": 6 + } + }, + { + "amount": "79.012720819", + "slot": { + "period": 3814626, + "thread": 31 + } + } + ], + "AU1LzjW6yooDhRAxxYRXvhjSErZpEZL42YGNx5MRDwCzjM6ufPRq": [ + { + "amount": "599.899741839", + "slot": { + "period": 37669, + "thread": 3 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 322973, + "thread": 11 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 420838, + "thread": 23 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 639361, + "thread": 8 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 769118, + "thread": 28 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 955420, + "thread": 15 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1066636, + "thread": 0 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1155520, + "thread": 3 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1415997, + "thread": 3 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1583537, + "thread": 1 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1776533, + "thread": 30 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 1955661, + "thread": 11 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2086494, + "thread": 1 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2217612, + "thread": 25 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2354150, + "thread": 15 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2462765, + "thread": 31 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2632297, + "thread": 22 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 2839306, + "thread": 22 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 3002597, + "thread": 2 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 3258207, + "thread": 12 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 3353735, + "thread": 27 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 3608176, + "thread": 9 + } + }, + { + "amount": "599.899741839", + "slot": { + "period": 3737053, + "thread": 9 + } + }, + { + "amount": "599.899741834", + "slot": { + "period": 3856949, + "thread": 26 + } + } + ], + "AU1M19EQV2Fsnz1ZJDfEdo6sWFtpN7biRpFb5iYGjdtrDDZFVmLq": [ + { + "amount": "498.021431492", + "slot": { + "period": 125507, + "thread": 31 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 231845, + "thread": 20 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 402595, + "thread": 23 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 605938, + "thread": 20 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 783486, + "thread": 20 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 949822, + "thread": 29 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1066026, + "thread": 5 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1267660, + "thread": 29 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1423139, + "thread": 0 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1644227, + "thread": 8 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1781617, + "thread": 17 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1864016, + "thread": 25 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 1990553, + "thread": 4 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 2198258, + "thread": 19 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 2300410, + "thread": 22 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 2480950, + "thread": 16 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 2650213, + "thread": 24 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 2927497, + "thread": 7 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 3016729, + "thread": 13 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 3263440, + "thread": 18 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 3446256, + "thread": 28 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 3565790, + "thread": 6 + } + }, + { + "amount": "498.021431492", + "slot": { + "period": 3689183, + "thread": 7 + } + }, + { + "amount": "498.021431480", + "slot": { + "period": 3817685, + "thread": 12 + } + } + ], + "AU1M1RTeemiko7EaN2XwruzE5yi5DaHcstbYejQXCqe7CkJMPxnQ": [ + { + "amount": "396.670491607", + "slot": { + "period": 56949, + "thread": 30 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 269677, + "thread": 26 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 442169, + "thread": 29 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 606417, + "thread": 14 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 809495, + "thread": 2 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 867737, + "thread": 0 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1072734, + "thread": 2 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1177738, + "thread": 27 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1395839, + "thread": 13 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1646942, + "thread": 7 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1761043, + "thread": 4 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1927779, + "thread": 12 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 1984808, + "thread": 22 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 2291784, + "thread": 31 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 2306490, + "thread": 10 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 2486221, + "thread": 9 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 2771543, + "thread": 0 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 2819996, + "thread": 2 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 3050794, + "thread": 7 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 3189891, + "thread": 7 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 3313011, + "thread": 5 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 3543155, + "thread": 14 + } + }, + { + "amount": "396.670491607", + "slot": { + "period": 3765774, + "thread": 4 + } + }, + { + "amount": "396.670491596", + "slot": { + "period": 3880993, + "thread": 19 + } + } + ], + "AU1M1oPt1KV68YADL1nsXwWEFiWCMdN7u5thkgSiM8Xa3h5qukDw": [ + { + "amount": "596.357929445", + "slot": { + "period": 109436, + "thread": 14 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 187938, + "thread": 10 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 375129, + "thread": 26 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 536374, + "thread": 17 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 659894, + "thread": 10 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 967142, + "thread": 21 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1066752, + "thread": 9 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1260156, + "thread": 11 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1416797, + "thread": 0 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1643545, + "thread": 0 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1781416, + "thread": 24 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 1886245, + "thread": 29 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2081672, + "thread": 8 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2289930, + "thread": 3 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2346468, + "thread": 1 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2462719, + "thread": 2 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2765977, + "thread": 22 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 2890052, + "thread": 16 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 3059387, + "thread": 3 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 3285741, + "thread": 31 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 3310299, + "thread": 9 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 3500060, + "thread": 19 + } + }, + { + "amount": "596.357929445", + "slot": { + "period": 3622573, + "thread": 14 + } + }, + { + "amount": "596.357929439", + "slot": { + "period": 3826498, + "thread": 23 + } + } + ], + "AU1M2BWNBsGtJw29cVmGvuhZwR8Uox77oBX1GJBJED1Drb2ARsbm": [ + { + "amount": "377.875767343", + "slot": { + "period": 144815, + "thread": 3 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 226873, + "thread": 22 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 395698, + "thread": 30 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 610217, + "thread": 15 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 663710, + "thread": 23 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 933293, + "thread": 8 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1100904, + "thread": 17 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1225832, + "thread": 9 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1446175, + "thread": 10 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1548154, + "thread": 0 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1672838, + "thread": 13 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 1918049, + "thread": 20 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2073364, + "thread": 16 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2245483, + "thread": 4 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2371059, + "thread": 19 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2509730, + "thread": 12 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2747671, + "thread": 12 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 2817171, + "thread": 14 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 3003249, + "thread": 18 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 3206549, + "thread": 9 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 3394661, + "thread": 11 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 3561769, + "thread": 12 + } + }, + { + "amount": "377.875767343", + "slot": { + "period": 3701012, + "thread": 20 + } + }, + { + "amount": "377.875767345", + "slot": { + "period": 3898554, + "thread": 16 + } + } + ], + "AU1M2Wtrr1h9iJJdBu3waRwaEJRF5ZpH6iiMJsU1HVdFKLxontDd": [ + { + "amount": "490.294436986", + "slot": { + "period": 100443, + "thread": 14 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 236976, + "thread": 0 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 420011, + "thread": 17 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 590450, + "thread": 13 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 736765, + "thread": 13 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 931597, + "thread": 5 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1075082, + "thread": 19 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1256768, + "thread": 5 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1363619, + "thread": 19 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1506979, + "thread": 12 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1697243, + "thread": 10 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 1948428, + "thread": 21 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2032107, + "thread": 3 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2284945, + "thread": 5 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2318113, + "thread": 13 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2609536, + "thread": 12 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2749816, + "thread": 24 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2833908, + "thread": 4 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 2969558, + "thread": 12 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 3200179, + "thread": 18 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 3428272, + "thread": 13 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 3493497, + "thread": 3 + } + }, + { + "amount": "490.294436986", + "slot": { + "period": 3681609, + "thread": 2 + } + }, + { + "amount": "490.294436995", + "slot": { + "period": 3848237, + "thread": 18 + } + } + ], + "AU1M3Wg82Cwo62SwB37AvPjik6fev8RWm1Tba8CjhdyQRA185Uet": [ + { + "amount": "276.223724408", + "slot": { + "period": 94566, + "thread": 21 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 239540, + "thread": 15 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 446707, + "thread": 24 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 549211, + "thread": 24 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 782635, + "thread": 7 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 889410, + "thread": 23 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1001118, + "thread": 4 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1304958, + "thread": 20 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1439508, + "thread": 23 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1596629, + "thread": 13 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1752956, + "thread": 29 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 1958130, + "thread": 1 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2067890, + "thread": 5 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2166014, + "thread": 26 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2310823, + "thread": 7 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2531828, + "thread": 24 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2753294, + "thread": 10 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 2918522, + "thread": 9 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 3118182, + "thread": 13 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 3287318, + "thread": 17 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 3375962, + "thread": 7 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 3537786, + "thread": 26 + } + }, + { + "amount": "276.223724408", + "slot": { + "period": 3668864, + "thread": 27 + } + }, + { + "amount": "276.223724403", + "slot": { + "period": 3850405, + "thread": 17 + } + } + ], + "AU1M3XxfHVZC4pbjv2LNH139EwK8py2yJRTRD8BwcYy95YeFp7d4": [ + { + "amount": "160.511064618", + "slot": { + "period": 24129, + "thread": 5 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 221073, + "thread": 26 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 443494, + "thread": 18 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 494961, + "thread": 17 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 697182, + "thread": 13 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 976341, + "thread": 4 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1086362, + "thread": 18 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1181543, + "thread": 12 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1394941, + "thread": 31 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1526161, + "thread": 21 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1743648, + "thread": 27 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 1862655, + "thread": 15 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2042319, + "thread": 21 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2277129, + "thread": 26 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2350952, + "thread": 18 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2609900, + "thread": 2 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2788144, + "thread": 22 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 2868122, + "thread": 19 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 3058970, + "thread": 25 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 3254427, + "thread": 27 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 3365433, + "thread": 20 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 3605634, + "thread": 21 + } + }, + { + "amount": "160.511064618", + "slot": { + "period": 3642042, + "thread": 11 + } + }, + { + "amount": "160.511064606", + "slot": { + "period": 3816659, + "thread": 22 + } + } + ], + "AU1M3bRGQGRb5xYfUpHMpzZ5Ce8Y5PHexcFh1gkXmgNzbkLSNFm7": [ + { + "amount": "352.906516621", + "slot": { + "period": 122059, + "thread": 25 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 249341, + "thread": 15 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 420041, + "thread": 30 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 530045, + "thread": 29 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 761545, + "thread": 23 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 828608, + "thread": 26 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1027563, + "thread": 19 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1293047, + "thread": 30 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1342934, + "thread": 14 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1575802, + "thread": 4 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1692531, + "thread": 29 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 1843981, + "thread": 28 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2029422, + "thread": 1 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2243043, + "thread": 19 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2373105, + "thread": 28 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2550991, + "thread": 26 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2736864, + "thread": 15 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2836792, + "thread": 1 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 2978988, + "thread": 30 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 3133015, + "thread": 7 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 3341670, + "thread": 10 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 3609963, + "thread": 30 + } + }, + { + "amount": "352.906516621", + "slot": { + "period": 3626328, + "thread": 16 + } + }, + { + "amount": "352.906516613", + "slot": { + "period": 3827980, + "thread": 26 + } + } + ], + "AU1M4DFdVNTusUAMCo1sYAVvpmLs5dxDU4Ay1yMM7cFKCPfXdDJp": [ + { + "amount": "79.623098494", + "slot": { + "period": 31007, + "thread": 4 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 210828, + "thread": 1 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 446011, + "thread": 4 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 582594, + "thread": 23 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 680823, + "thread": 16 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 913405, + "thread": 4 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 983878, + "thread": 16 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1262211, + "thread": 30 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1378059, + "thread": 21 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1541776, + "thread": 23 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1742024, + "thread": 31 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1941612, + "thread": 8 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 1996586, + "thread": 23 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 2151978, + "thread": 31 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 2377931, + "thread": 6 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 2597187, + "thread": 2 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 2763450, + "thread": 23 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 2924777, + "thread": 9 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 3117189, + "thread": 20 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 3181413, + "thread": 0 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 3347836, + "thread": 28 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 3505843, + "thread": 24 + } + }, + { + "amount": "79.623098494", + "slot": { + "period": 3750046, + "thread": 19 + } + }, + { + "amount": "79.623098484", + "slot": { + "period": 3867461, + "thread": 24 + } + } + ], + "AU1M4duAr7VsXXDCRLuPNjCvSy4gMYvn27fBCJyp1sckaMm3uq6L": [ + { + "amount": "95.804357302", + "slot": { + "period": 107457, + "thread": 3 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 213160, + "thread": 24 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 337502, + "thread": 31 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 542230, + "thread": 12 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 678859, + "thread": 27 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 891922, + "thread": 17 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 990194, + "thread": 7 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1234717, + "thread": 7 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1365114, + "thread": 24 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1628339, + "thread": 27 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1697589, + "thread": 5 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1818607, + "thread": 3 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 1991069, + "thread": 9 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 2248791, + "thread": 2 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 2446163, + "thread": 7 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 2486604, + "thread": 22 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 2715335, + "thread": 3 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 2801685, + "thread": 3 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 3091528, + "thread": 2 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 3287726, + "thread": 26 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 3436564, + "thread": 18 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 3610441, + "thread": 17 + } + }, + { + "amount": "95.804357302", + "slot": { + "period": 3622773, + "thread": 15 + } + }, + { + "amount": "95.804357290", + "slot": { + "period": 3827731, + "thread": 15 + } + } + ], + "AU1M4sXpjT5D7GiCPFnTN1SvjH8jMNhRsGz4AgGGFKnzf9T9K1so": [ + { + "amount": "132.369384906", + "slot": { + "period": 72890, + "thread": 13 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 192504, + "thread": 7 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 374436, + "thread": 8 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 644679, + "thread": 2 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 750930, + "thread": 2 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 842042, + "thread": 26 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1034552, + "thread": 23 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1256276, + "thread": 23 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1386380, + "thread": 4 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1610520, + "thread": 13 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1668117, + "thread": 26 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 1949396, + "thread": 19 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2066413, + "thread": 18 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2209623, + "thread": 24 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2327379, + "thread": 16 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2472055, + "thread": 4 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2699724, + "thread": 23 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 2910070, + "thread": 30 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 3119207, + "thread": 6 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 3201497, + "thread": 27 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 3373748, + "thread": 3 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 3538004, + "thread": 29 + } + }, + { + "amount": "132.369384906", + "slot": { + "period": 3644321, + "thread": 19 + } + }, + { + "amount": "132.369384901", + "slot": { + "period": 3843224, + "thread": 0 + } + } + ], + "AU1M5LcxD5goxjF4FcEZUGna9fyu1M2NXj9uAL4DQnDgdGTahuM5": [ + { + "amount": "135.447832944", + "slot": { + "period": 103280, + "thread": 27 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 300243, + "thread": 18 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 389029, + "thread": 3 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 587124, + "thread": 27 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 681410, + "thread": 19 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 919456, + "thread": 2 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 984654, + "thread": 16 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 1176664, + "thread": 13 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 1430544, + "thread": 8 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 1535478, + "thread": 15 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 1798454, + "thread": 23 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 1827502, + "thread": 28 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2083776, + "thread": 4 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2181044, + "thread": 4 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2317248, + "thread": 3 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2598718, + "thread": 10 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2761790, + "thread": 11 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 2799974, + "thread": 18 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 3098056, + "thread": 25 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 3220903, + "thread": 11 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 3383832, + "thread": 24 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 3548536, + "thread": 23 + } + }, + { + "amount": "135.447832944", + "slot": { + "period": 3682067, + "thread": 29 + } + }, + { + "amount": "135.447832949", + "slot": { + "period": 3799743, + "thread": 6 + } + } + ], + "AU1M5eidsWeXVQzkBTSUExsY6rrfHMWq8VFEFiEjPPskDiYuPqCB": [ + { + "amount": "278.703433192", + "slot": { + "period": 105068, + "thread": 17 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 311942, + "thread": 7 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 329395, + "thread": 31 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 542701, + "thread": 28 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 773455, + "thread": 0 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 943038, + "thread": 2 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1068494, + "thread": 7 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1251402, + "thread": 19 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1449633, + "thread": 5 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1614767, + "thread": 4 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1796214, + "thread": 10 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 1892869, + "thread": 14 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2118186, + "thread": 30 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2209008, + "thread": 31 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2418202, + "thread": 18 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2579133, + "thread": 13 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2630052, + "thread": 30 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 2886351, + "thread": 31 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 3038935, + "thread": 21 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 3282316, + "thread": 21 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 3408080, + "thread": 23 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 3508781, + "thread": 28 + } + }, + { + "amount": "278.703433192", + "slot": { + "period": 3735612, + "thread": 26 + } + }, + { + "amount": "278.703433199", + "slot": { + "period": 3916428, + "thread": 21 + } + } + ], + "AU1M6HYPhkHaQwBXRmyizQT2hjE3gg5wEJBY6AQxtULovwa955fa": [ + { + "amount": "62.903164282", + "slot": { + "period": 41843, + "thread": 10 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 309623, + "thread": 26 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 471993, + "thread": 22 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 534446, + "thread": 4 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 724561, + "thread": 8 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 838462, + "thread": 10 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1146566, + "thread": 7 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1242328, + "thread": 29 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1343306, + "thread": 20 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1533588, + "thread": 20 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1786001, + "thread": 2 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 1954611, + "thread": 4 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2109940, + "thread": 21 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2157077, + "thread": 31 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2372397, + "thread": 25 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2551766, + "thread": 1 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2753960, + "thread": 16 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 2815894, + "thread": 19 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 3049389, + "thread": 11 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 3212029, + "thread": 24 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 3320470, + "thread": 17 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 3466989, + "thread": 15 + } + }, + { + "amount": "62.903164282", + "slot": { + "period": 3764669, + "thread": 30 + } + }, + { + "amount": "62.903164271", + "slot": { + "period": 3876295, + "thread": 15 + } + } + ], + "AU1M6WAuWnCaBY8ces4AmAFzoqM7XPSc2XeQSQVfoAgaRXyzPytS": [ + { + "amount": "475.104142347", + "slot": { + "period": 135046, + "thread": 21 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 218681, + "thread": 2 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 405357, + "thread": 29 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 534232, + "thread": 30 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 719699, + "thread": 23 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 899122, + "thread": 26 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1121616, + "thread": 29 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1195798, + "thread": 12 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1390474, + "thread": 23 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1487401, + "thread": 31 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1657495, + "thread": 7 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 1841429, + "thread": 12 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2093786, + "thread": 10 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2287334, + "thread": 24 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2351173, + "thread": 10 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2589232, + "thread": 3 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2739875, + "thread": 6 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2943355, + "thread": 18 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 2976937, + "thread": 27 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 3215525, + "thread": 9 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 3399904, + "thread": 11 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 3576165, + "thread": 27 + } + }, + { + "amount": "475.104142347", + "slot": { + "period": 3744931, + "thread": 22 + } + }, + { + "amount": "475.104142356", + "slot": { + "period": 3874855, + "thread": 28 + } + } + ], + "AU1M6pbesfzCGZgCEfgC8SXEvjUYgTf3XdbpLzhxxMhoiggQEVw3": [ + { + "amount": "79.569460900", + "slot": { + "period": 108450, + "thread": 2 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 191820, + "thread": 10 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 453070, + "thread": 5 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 565484, + "thread": 14 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 748652, + "thread": 12 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 916571, + "thread": 1 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1078516, + "thread": 19 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1197436, + "thread": 17 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1463197, + "thread": 21 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1571491, + "thread": 20 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1665579, + "thread": 24 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 1815190, + "thread": 3 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2015383, + "thread": 22 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2162402, + "thread": 4 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2317385, + "thread": 17 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2471093, + "thread": 26 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2787334, + "thread": 27 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 2945255, + "thread": 29 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 3007426, + "thread": 21 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 3187218, + "thread": 11 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 3374964, + "thread": 3 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 3489941, + "thread": 11 + } + }, + { + "amount": "79.569460900", + "slot": { + "period": 3739236, + "thread": 27 + } + }, + { + "amount": "79.569460903", + "slot": { + "period": 3846720, + "thread": 16 + } + } + ], + "AU1M6ukBMWhWQPabWZoNSzewsJ9bcG5n9EbTMQw5DdvFbY1tVQUA": [ + { + "amount": "274.235775557", + "slot": { + "period": 90429, + "thread": 19 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 282455, + "thread": 30 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 483009, + "thread": 16 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 503884, + "thread": 20 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 775007, + "thread": 28 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 923295, + "thread": 15 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1107606, + "thread": 24 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1200065, + "thread": 22 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1479144, + "thread": 17 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1532401, + "thread": 15 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1657173, + "thread": 8 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 1938279, + "thread": 7 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2056417, + "thread": 26 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2148149, + "thread": 3 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2444315, + "thread": 13 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2504287, + "thread": 0 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2625831, + "thread": 18 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 2951909, + "thread": 30 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 3116670, + "thread": 30 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 3149911, + "thread": 5 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 3321897, + "thread": 4 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 3561633, + "thread": 26 + } + }, + { + "amount": "274.235775557", + "slot": { + "period": 3704545, + "thread": 31 + } + }, + { + "amount": "274.235775547", + "slot": { + "period": 3859995, + "thread": 14 + } + } + ], + "AU1M7JnJtczJhdGLufj71N6WpNupiijhzJomSFgL18DrjzpTkx8M": [ + { + "amount": "87.710850731", + "slot": { + "period": 58044, + "thread": 29 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 290539, + "thread": 22 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 328035, + "thread": 7 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 551581, + "thread": 26 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 662590, + "thread": 14 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 882319, + "thread": 29 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1122234, + "thread": 24 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1194459, + "thread": 13 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1330428, + "thread": 20 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1493867, + "thread": 6 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1799396, + "thread": 24 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 1845740, + "thread": 7 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2047709, + "thread": 13 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2206616, + "thread": 2 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2332877, + "thread": 23 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2516090, + "thread": 30 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2703611, + "thread": 14 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2805385, + "thread": 1 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 2965645, + "thread": 8 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 3160258, + "thread": 20 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 3319903, + "thread": 3 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 3522608, + "thread": 5 + } + }, + { + "amount": "87.710850731", + "slot": { + "period": 3759420, + "thread": 11 + } + }, + { + "amount": "87.710850722", + "slot": { + "period": 3867026, + "thread": 16 + } + } + ], + "AU1M7KNknsSNo4pBNh1hHc3ekwnaqaB8YUQ5MheDUd5nrmSP7Qz4": [ + { + "amount": "421.755349881", + "slot": { + "period": 89080, + "thread": 6 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 199183, + "thread": 30 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 397918, + "thread": 4 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 620422, + "thread": 24 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 814301, + "thread": 7 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 946643, + "thread": 0 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1086500, + "thread": 19 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1280109, + "thread": 6 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1360671, + "thread": 30 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1627603, + "thread": 17 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1673480, + "thread": 11 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 1933024, + "thread": 24 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2122832, + "thread": 23 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2212824, + "thread": 19 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2300625, + "thread": 29 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2495973, + "thread": 10 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2731851, + "thread": 27 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 2944424, + "thread": 21 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 3086641, + "thread": 13 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 3212234, + "thread": 22 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 3426871, + "thread": 18 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 3461164, + "thread": 8 + } + }, + { + "amount": "421.755349881", + "slot": { + "period": 3763285, + "thread": 7 + } + }, + { + "amount": "421.755349886", + "slot": { + "period": 3793071, + "thread": 8 + } + } + ], + "AU1M8V7krcSZRFNHs88R1wkP9XAv7kH16EMUXnKrkfH4D2A714qu": [ + { + "amount": "445.982950231", + "slot": { + "period": 166585, + "thread": 28 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 262115, + "thread": 23 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 440728, + "thread": 22 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 554476, + "thread": 0 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 811223, + "thread": 24 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 904483, + "thread": 5 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1132159, + "thread": 1 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1295761, + "thread": 24 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1344805, + "thread": 6 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1637020, + "thread": 10 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1804282, + "thread": 20 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 1818632, + "thread": 12 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2057153, + "thread": 10 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2292699, + "thread": 13 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2419178, + "thread": 3 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2574682, + "thread": 20 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2751316, + "thread": 28 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 2907213, + "thread": 24 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 3093320, + "thread": 30 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 3234332, + "thread": 11 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 3355996, + "thread": 17 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 3604254, + "thread": 12 + } + }, + { + "amount": "445.982950231", + "slot": { + "period": 3687046, + "thread": 3 + } + }, + { + "amount": "445.982950220", + "slot": { + "period": 3839441, + "thread": 29 + } + } + ], + "AU1M8aiLH72ihNEcKjvwGFLMvCZPUJUZuTd5diZZoeUDFMGJe6cs": [ + { + "amount": "156.463050329", + "slot": { + "period": 120021, + "thread": 12 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 218723, + "thread": 6 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 334650, + "thread": 15 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 585699, + "thread": 3 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 745074, + "thread": 12 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 844740, + "thread": 8 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1031835, + "thread": 4 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1273203, + "thread": 9 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1340677, + "thread": 22 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1536891, + "thread": 15 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1780369, + "thread": 17 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 1927608, + "thread": 27 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2022572, + "thread": 9 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2220262, + "thread": 9 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2300229, + "thread": 31 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2576102, + "thread": 11 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2722553, + "thread": 8 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 2803824, + "thread": 15 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 3007430, + "thread": 10 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 3159421, + "thread": 1 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 3395772, + "thread": 31 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 3576577, + "thread": 1 + } + }, + { + "amount": "156.463050329", + "slot": { + "period": 3750898, + "thread": 30 + } + }, + { + "amount": "156.463050330", + "slot": { + "period": 3892164, + "thread": 26 + } + } + ], + "AU1M8bQ7dmtCxoGmguQ5JnW3XgM6Gwzeg3XTxtzKsBu1U83keTVj": [ + { + "amount": "282.045794128", + "slot": { + "period": 22745, + "thread": 28 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 312886, + "thread": 20 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 384259, + "thread": 2 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 602141, + "thread": 23 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 774518, + "thread": 8 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 874502, + "thread": 23 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1097473, + "thread": 24 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1284908, + "thread": 5 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1409893, + "thread": 0 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1495629, + "thread": 13 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1699048, + "thread": 10 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1946959, + "thread": 28 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 1989202, + "thread": 4 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 2224290, + "thread": 19 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 2453520, + "thread": 4 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 2592438, + "thread": 3 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 2669059, + "thread": 7 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 2953418, + "thread": 24 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 3069549, + "thread": 30 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 3242316, + "thread": 19 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 3356312, + "thread": 17 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 3577101, + "thread": 29 + } + }, + { + "amount": "282.045794128", + "slot": { + "period": 3621083, + "thread": 14 + } + }, + { + "amount": "282.045794125", + "slot": { + "period": 3840206, + "thread": 0 + } + } + ], + "AU1M9n2yYGLK2wLKC8EmCXWtpfR1hZEZf5fEZp9G1nUEqsBy5q6E": [ + { + "amount": "119.440060761", + "slot": { + "period": 59213, + "thread": 14 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 228230, + "thread": 22 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 329199, + "thread": 12 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 561747, + "thread": 6 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 670105, + "thread": 10 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 851621, + "thread": 13 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1149989, + "thread": 13 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1266532, + "thread": 10 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1407087, + "thread": 31 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1504804, + "thread": 16 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1657308, + "thread": 14 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1851253, + "thread": 17 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 1996507, + "thread": 9 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2264702, + "thread": 24 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2295522, + "thread": 9 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2584376, + "thread": 0 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2726590, + "thread": 0 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2880750, + "thread": 24 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 2979345, + "thread": 24 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 3162483, + "thread": 23 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 3295316, + "thread": 8 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 3558760, + "thread": 21 + } + }, + { + "amount": "119.440060761", + "slot": { + "period": 3709931, + "thread": 2 + } + }, + { + "amount": "119.440060772", + "slot": { + "period": 3906534, + "thread": 7 + } + } + ], + "AU1M9wqLnk7T2a5GtT3jh5ryJrcBRsDzgYMM8wFcuvPQGZjJekhZ": [ + { + "amount": "215.347457786", + "slot": { + "period": 78360, + "thread": 29 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 290735, + "thread": 28 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 333366, + "thread": 15 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 528196, + "thread": 11 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 755586, + "thread": 20 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 890194, + "thread": 21 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1064322, + "thread": 30 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1187003, + "thread": 31 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1466462, + "thread": 17 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1492226, + "thread": 11 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1768176, + "thread": 22 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 1862307, + "thread": 2 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2017218, + "thread": 12 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2201503, + "thread": 23 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2430647, + "thread": 26 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2589895, + "thread": 0 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2698194, + "thread": 7 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2916310, + "thread": 29 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 2984312, + "thread": 18 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 3168202, + "thread": 22 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 3425974, + "thread": 10 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 3570555, + "thread": 28 + } + }, + { + "amount": "215.347457786", + "slot": { + "period": 3705211, + "thread": 31 + } + }, + { + "amount": "215.347457781", + "slot": { + "period": 3936687, + "thread": 26 + } + } + ], + "AU1MADGFKHHsWMP4eJ6UT9HZc9KYtpun9ZiUMWidHXfrf9jqHNAw": [ + { + "amount": "117.843694853", + "slot": { + "period": 90121, + "thread": 8 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 186772, + "thread": 15 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 379967, + "thread": 31 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 559505, + "thread": 20 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 665157, + "thread": 1 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 951719, + "thread": 16 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1075981, + "thread": 30 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1299312, + "thread": 16 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1432263, + "thread": 24 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1613024, + "thread": 13 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1667872, + "thread": 29 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 1922190, + "thread": 24 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2135217, + "thread": 8 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2209461, + "thread": 24 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2409479, + "thread": 30 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2520216, + "thread": 26 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2681807, + "thread": 6 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 2879684, + "thread": 15 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 3070651, + "thread": 12 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 3146774, + "thread": 20 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 3381135, + "thread": 29 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 3473623, + "thread": 13 + } + }, + { + "amount": "117.843694853", + "slot": { + "period": 3628711, + "thread": 23 + } + }, + { + "amount": "117.843694850", + "slot": { + "period": 3845140, + "thread": 26 + } + } + ], + "AU1MAiqTHekEWDPdf2U3EWo2YkTgs8oozXuEtRg5hHqrYvwomte8": [ + { + "amount": "76.868769162", + "slot": { + "period": 20845, + "thread": 20 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 304704, + "thread": 27 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 447780, + "thread": 10 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 649774, + "thread": 1 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 765182, + "thread": 15 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 889545, + "thread": 3 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 990846, + "thread": 18 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 1224081, + "thread": 10 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 1332468, + "thread": 9 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 1529136, + "thread": 19 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 1769859, + "thread": 21 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 1959726, + "thread": 20 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2083560, + "thread": 28 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2222995, + "thread": 8 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2447571, + "thread": 30 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2532928, + "thread": 23 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2769590, + "thread": 24 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 2793874, + "thread": 19 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 3104070, + "thread": 13 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 3133143, + "thread": 5 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 3310439, + "thread": 2 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 3466736, + "thread": 8 + } + }, + { + "amount": "76.868769162", + "slot": { + "period": 3642479, + "thread": 15 + } + }, + { + "amount": "76.868769159", + "slot": { + "period": 3859040, + "thread": 14 + } + } + ], + "AU1MB32pkjjWPSXQpTL7KQbkop6mKkaERDjcQjr7Tm4NR1TRivsy": [ + { + "amount": "455.164233020", + "slot": { + "period": 87020, + "thread": 8 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 211564, + "thread": 16 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 479760, + "thread": 0 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 500190, + "thread": 15 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 755353, + "thread": 15 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 953035, + "thread": 12 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1008677, + "thread": 7 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1228920, + "thread": 27 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1357801, + "thread": 1 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1590463, + "thread": 17 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1706983, + "thread": 28 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 1838590, + "thread": 21 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2026677, + "thread": 9 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2291801, + "thread": 6 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2346289, + "thread": 9 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2534127, + "thread": 31 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2629979, + "thread": 10 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 2808397, + "thread": 23 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 3000921, + "thread": 27 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 3188460, + "thread": 11 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 3314092, + "thread": 13 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 3584912, + "thread": 16 + } + }, + { + "amount": "455.164233020", + "slot": { + "period": 3760119, + "thread": 9 + } + }, + { + "amount": "455.164233028", + "slot": { + "period": 3837277, + "thread": 24 + } + } + ], + "AU1MB4spQTkmmGpYhjjnnmzi6SLKwPYECsnmiQ7Bm16wzZTuB4Bh": [ + { + "amount": "96.395440936", + "slot": { + "period": 24822, + "thread": 29 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 224014, + "thread": 14 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 476026, + "thread": 14 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 645011, + "thread": 27 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 781807, + "thread": 26 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 978416, + "thread": 6 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1009110, + "thread": 7 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1252983, + "thread": 31 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1424792, + "thread": 7 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1594485, + "thread": 29 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1742496, + "thread": 4 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 1972428, + "thread": 19 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2128081, + "thread": 1 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2244175, + "thread": 7 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2436532, + "thread": 6 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2546326, + "thread": 17 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2747368, + "thread": 17 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2881871, + "thread": 7 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 2960531, + "thread": 4 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 3158967, + "thread": 0 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 3316125, + "thread": 25 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 3545026, + "thread": 16 + } + }, + { + "amount": "96.395440936", + "slot": { + "period": 3738250, + "thread": 26 + } + }, + { + "amount": "96.395440939", + "slot": { + "period": 3888849, + "thread": 16 + } + } + ], + "AU1MBvjdmKZW1taCvXRgrmhznMmnrseQrpPSPeBRYFFdJg67RszV": [ + { + "amount": "326.453841459", + "slot": { + "period": 32245, + "thread": 27 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 314405, + "thread": 10 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 338087, + "thread": 5 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 571446, + "thread": 23 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 750440, + "thread": 5 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 878618, + "thread": 27 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1047754, + "thread": 16 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1267380, + "thread": 13 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1471889, + "thread": 11 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1592450, + "thread": 29 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1725777, + "thread": 29 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 1915829, + "thread": 22 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2026638, + "thread": 5 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2263425, + "thread": 13 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2361703, + "thread": 25 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2545420, + "thread": 26 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2659551, + "thread": 2 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 2889515, + "thread": 3 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 3074245, + "thread": 17 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 3206255, + "thread": 23 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 3435140, + "thread": 15 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 3504795, + "thread": 28 + } + }, + { + "amount": "326.453841459", + "slot": { + "period": 3735816, + "thread": 16 + } + }, + { + "amount": "326.453841453", + "slot": { + "period": 3877814, + "thread": 31 + } + } + ], + "AU1MDThoyZDovBhyMshXYoB7SeiLgnUV8bJdVAMjF45UrDhdyqsG": [ + { + "amount": "243.121533514", + "slot": { + "period": 62392, + "thread": 30 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 306578, + "thread": 17 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 406699, + "thread": 21 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 596773, + "thread": 17 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 781776, + "thread": 21 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 843312, + "thread": 18 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1133667, + "thread": 21 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1262324, + "thread": 14 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1446142, + "thread": 22 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1606713, + "thread": 20 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1775282, + "thread": 10 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 1967096, + "thread": 0 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2040439, + "thread": 1 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2276925, + "thread": 10 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2336868, + "thread": 8 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2598651, + "thread": 5 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2707679, + "thread": 15 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 2794158, + "thread": 15 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 3116540, + "thread": 22 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 3203576, + "thread": 22 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 3317287, + "thread": 31 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 3579938, + "thread": 0 + } + }, + { + "amount": "243.121533514", + "slot": { + "period": 3658527, + "thread": 9 + } + }, + { + "amount": "243.121533509", + "slot": { + "period": 3832340, + "thread": 17 + } + } + ], + "AU1MDxgochCcfN5sfEyVMQDKBMDZZNBWRJb9dqwmc9m1SEztiUhS": [ + { + "amount": "280.863172938", + "slot": { + "period": 118571, + "thread": 3 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 261563, + "thread": 26 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 405443, + "thread": 10 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 502942, + "thread": 10 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 781467, + "thread": 0 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 932288, + "thread": 28 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 985173, + "thread": 30 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 1288734, + "thread": 13 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 1412623, + "thread": 21 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 1488303, + "thread": 19 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 1671028, + "thread": 18 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 1974873, + "thread": 10 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2097951, + "thread": 28 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2167091, + "thread": 26 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2408185, + "thread": 1 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2544570, + "thread": 31 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2732950, + "thread": 27 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 2827091, + "thread": 1 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 3100742, + "thread": 24 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 3260523, + "thread": 23 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 3408034, + "thread": 0 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 3490781, + "thread": 26 + } + }, + { + "amount": "280.863172938", + "slot": { + "period": 3708024, + "thread": 31 + } + }, + { + "amount": "280.863172928", + "slot": { + "period": 3862283, + "thread": 24 + } + } + ], + "AU1MExvRGyzxQMFhD4tZUcgZEozyYqz9sWGY7xQN3XDu9Zj14Wbr": [ + { + "amount": "173.512309597", + "slot": { + "period": 35414, + "thread": 1 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 269499, + "thread": 27 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 386439, + "thread": 20 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 573401, + "thread": 3 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 673908, + "thread": 21 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 820912, + "thread": 13 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1095887, + "thread": 12 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1310329, + "thread": 18 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1388011, + "thread": 29 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1568433, + "thread": 12 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1689120, + "thread": 23 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 1856599, + "thread": 15 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2132313, + "thread": 31 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2222157, + "thread": 14 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2328131, + "thread": 28 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2555229, + "thread": 12 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2779246, + "thread": 28 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 2854823, + "thread": 15 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 3030060, + "thread": 15 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 3218303, + "thread": 15 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 3317337, + "thread": 28 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 3495901, + "thread": 11 + } + }, + { + "amount": "173.512309597", + "slot": { + "period": 3639024, + "thread": 21 + } + }, + { + "amount": "173.512309606", + "slot": { + "period": 3864444, + "thread": 20 + } + } + ], + "AU1MFP4eUnsP26FFj8cP9EPgmibit3iH28FQGJEFS4fedER6NLkW": [ + { + "amount": "154.152790044", + "slot": { + "period": 22944, + "thread": 5 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 203300, + "thread": 5 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 488526, + "thread": 1 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 626880, + "thread": 28 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 793523, + "thread": 2 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 884445, + "thread": 0 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1150020, + "thread": 29 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1316397, + "thread": 15 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1413242, + "thread": 3 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1503778, + "thread": 1 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1679573, + "thread": 18 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 1926822, + "thread": 13 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2054264, + "thread": 1 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2154944, + "thread": 8 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2439725, + "thread": 13 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2485159, + "thread": 31 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2664220, + "thread": 29 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 2877140, + "thread": 17 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 3114753, + "thread": 7 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 3273970, + "thread": 27 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 3303568, + "thread": 17 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 3582710, + "thread": 4 + } + }, + { + "amount": "154.152790044", + "slot": { + "period": 3672180, + "thread": 30 + } + }, + { + "amount": "154.152790040", + "slot": { + "period": 3841163, + "thread": 21 + } + } + ], + "AU1MFW1bwQiVbD67tg1fBjGm3GNw3594BsuVkRW4xXHYuAMop6SJ": [ + { + "amount": "417.582042222", + "slot": { + "period": 51235, + "thread": 25 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 270228, + "thread": 7 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 328394, + "thread": 10 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 603219, + "thread": 24 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 705602, + "thread": 15 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 864585, + "thread": 26 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1134703, + "thread": 2 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1279070, + "thread": 29 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1469154, + "thread": 4 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1479852, + "thread": 0 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1737014, + "thread": 6 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 1809706, + "thread": 28 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2022915, + "thread": 14 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2212051, + "thread": 9 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2441120, + "thread": 17 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2529036, + "thread": 7 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2782142, + "thread": 4 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 2946514, + "thread": 30 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 3002925, + "thread": 31 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 3248566, + "thread": 10 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 3294278, + "thread": 31 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 3478606, + "thread": 28 + } + }, + { + "amount": "417.582042222", + "slot": { + "period": 3628050, + "thread": 4 + } + }, + { + "amount": "417.582042217", + "slot": { + "period": 3926607, + "thread": 3 + } + } + ], + "AU1MFx464AbtNCjQ315SjgN44PW81nWkhxYJkSG7tSC15sczV4Sv": [ + { + "amount": "137.919869745", + "slot": { + "period": 149016, + "thread": 19 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 258114, + "thread": 23 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 340040, + "thread": 27 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 590689, + "thread": 31 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 726880, + "thread": 5 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 918222, + "thread": 0 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1096718, + "thread": 29 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1151970, + "thread": 20 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1391729, + "thread": 6 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1580340, + "thread": 18 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1759528, + "thread": 25 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 1910637, + "thread": 5 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2020712, + "thread": 16 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2269065, + "thread": 29 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2361326, + "thread": 12 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2533449, + "thread": 29 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2681523, + "thread": 19 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 2849194, + "thread": 3 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3070422, + "thread": 25 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3151847, + "thread": 6 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3444969, + "thread": 13 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3482206, + "thread": 1 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3695555, + "thread": 14 + } + }, + { + "amount": "137.919869745", + "slot": { + "period": 3913399, + "thread": 23 + } + } + ], + "AU1MGX4i9ntqwDT7zW2PmfHybbqzxJ3TrAdSgpfFyNghKN7EVJjP": [ + { + "amount": "32407.433333333", + "slot": { + "period": 70920, + "thread": 21 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 172659, + "thread": 24 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 411028, + "thread": 29 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 650319, + "thread": 17 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 685497, + "thread": 11 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 850658, + "thread": 9 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1148830, + "thread": 19 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1298900, + "thread": 4 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1435181, + "thread": 9 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1537981, + "thread": 21 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1698546, + "thread": 8 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1944178, + "thread": 8 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2006334, + "thread": 29 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2278382, + "thread": 21 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2326783, + "thread": 7 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2546675, + "thread": 10 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2755521, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2834164, + "thread": 26 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3034699, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3199649, + "thread": 22 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3315894, + "thread": 10 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3483467, + "thread": 4 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3660311, + "thread": 31 + } + }, + { + "amount": "32407.433333341", + "slot": { + "period": 3891139, + "thread": 3 + } + } + ], + "AU1MGmqFFZMp1suD3PSkM6pUEHbproB6VCzP2qE3PMQcjGnn4DXx": [ + { + "amount": "152.885526881", + "slot": { + "period": 107581, + "thread": 1 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 192128, + "thread": 28 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 385606, + "thread": 6 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 498503, + "thread": 14 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 688861, + "thread": 25 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 955900, + "thread": 27 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1128699, + "thread": 13 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1230114, + "thread": 24 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1340421, + "thread": 12 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1615437, + "thread": 13 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1692733, + "thread": 14 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 1907776, + "thread": 9 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2051928, + "thread": 7 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2262327, + "thread": 4 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2321999, + "thread": 30 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2526038, + "thread": 28 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2755772, + "thread": 8 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2924157, + "thread": 0 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 2961254, + "thread": 9 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 3195011, + "thread": 13 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 3376267, + "thread": 26 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 3566601, + "thread": 20 + } + }, + { + "amount": "152.885526881", + "slot": { + "period": 3764816, + "thread": 15 + } + }, + { + "amount": "152.885526890", + "slot": { + "period": 3840093, + "thread": 29 + } + } + ], + "AU1MH7EiWoTgPXfx6iWg9BYDxiyEoxoiiaE1QNHVmyprKtdpyMzR": [ + { + "amount": "382.251119645", + "slot": { + "period": 155795, + "thread": 30 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 268931, + "thread": 18 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 403604, + "thread": 30 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 525194, + "thread": 11 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 663365, + "thread": 10 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 861678, + "thread": 21 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1055491, + "thread": 3 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1201643, + "thread": 27 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1468749, + "thread": 31 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1615493, + "thread": 5 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1751630, + "thread": 28 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 1921038, + "thread": 0 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2137118, + "thread": 5 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2165213, + "thread": 11 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2299708, + "thread": 13 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2494801, + "thread": 26 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2650846, + "thread": 3 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 2803279, + "thread": 20 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 3051666, + "thread": 20 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 3256039, + "thread": 26 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 3322602, + "thread": 12 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 3497092, + "thread": 5 + } + }, + { + "amount": "382.251119645", + "slot": { + "period": 3690037, + "thread": 24 + } + }, + { + "amount": "382.251119646", + "slot": { + "period": 3871953, + "thread": 9 + } + } + ], + "AU1MJ8ejbp8oRnjDav9aDjTjELpwwzRs3rhtzR5tiKNrhNVE6eXR": [ + { + "amount": "139.904920698", + "slot": { + "period": 158668, + "thread": 24 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 183542, + "thread": 6 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 383261, + "thread": 9 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 566103, + "thread": 28 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 763598, + "thread": 29 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 837663, + "thread": 8 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1094276, + "thread": 0 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1230091, + "thread": 13 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1396021, + "thread": 25 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1537330, + "thread": 9 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1668563, + "thread": 31 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 1845677, + "thread": 24 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2117098, + "thread": 14 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2279531, + "thread": 5 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2454975, + "thread": 23 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2466911, + "thread": 12 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2642226, + "thread": 4 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 2932964, + "thread": 24 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 3055777, + "thread": 29 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 3275066, + "thread": 16 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 3396679, + "thread": 9 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 3571114, + "thread": 8 + } + }, + { + "amount": "139.904920698", + "slot": { + "period": 3657831, + "thread": 9 + } + }, + { + "amount": "139.904920708", + "slot": { + "period": 3806308, + "thread": 3 + } + } + ], + "AU1MJTTdJid2FHn6eZ9M2kx5zGaNdrGhM11RCafDNagV9HWsN5DA": [ + { + "amount": "59.351115616", + "slot": { + "period": 86600, + "thread": 23 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 296952, + "thread": 27 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 417763, + "thread": 27 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 498179, + "thread": 26 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 747519, + "thread": 29 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 866225, + "thread": 31 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1058604, + "thread": 7 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1227737, + "thread": 19 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1344089, + "thread": 21 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1494339, + "thread": 2 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1742493, + "thread": 27 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 1833801, + "thread": 27 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2055813, + "thread": 7 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2163789, + "thread": 9 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2384110, + "thread": 23 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2518293, + "thread": 9 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2708190, + "thread": 30 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2927422, + "thread": 18 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 2965686, + "thread": 27 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 3247970, + "thread": 10 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 3302319, + "thread": 3 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 3531198, + "thread": 21 + } + }, + { + "amount": "59.351115616", + "slot": { + "period": 3751662, + "thread": 5 + } + }, + { + "amount": "59.351115624", + "slot": { + "period": 3790670, + "thread": 3 + } + } + ], + "AU1MK2PkBBgZQV3swe2gexhCos9Cee2fhSDCLMDAtfg6gNRcqfzq": [ + { + "amount": "86.682062176", + "slot": { + "period": 109587, + "thread": 25 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 179997, + "thread": 30 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 393735, + "thread": 28 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 522062, + "thread": 23 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 800115, + "thread": 17 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 906920, + "thread": 9 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1095796, + "thread": 20 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1197265, + "thread": 6 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1431534, + "thread": 7 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1482953, + "thread": 4 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1707648, + "thread": 16 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 1896844, + "thread": 30 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2066641, + "thread": 8 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2229346, + "thread": 0 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2378269, + "thread": 9 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2597564, + "thread": 27 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2714810, + "thread": 15 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2848860, + "thread": 12 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 2969972, + "thread": 0 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 3239667, + "thread": 27 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 3407364, + "thread": 29 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 3481809, + "thread": 19 + } + }, + { + "amount": "86.682062176", + "slot": { + "period": 3762968, + "thread": 12 + } + }, + { + "amount": "86.682062175", + "slot": { + "period": 3844607, + "thread": 23 + } + } + ], + "AU1MLXFDXjuJ2UDAtzA4qtnMmR2ivh8o3ECh11KAskcpzXVZdgM4": [ + { + "amount": "207.188986842", + "slot": { + "period": 155469, + "thread": 7 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 218713, + "thread": 4 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 334971, + "thread": 29 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 533449, + "thread": 21 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 749973, + "thread": 15 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 972510, + "thread": 10 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1089639, + "thread": 13 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1268616, + "thread": 25 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1371934, + "thread": 31 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1515368, + "thread": 2 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1805301, + "thread": 7 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 1816623, + "thread": 6 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2027086, + "thread": 26 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2162667, + "thread": 18 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2388041, + "thread": 15 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2594857, + "thread": 21 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2745223, + "thread": 11 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 2878042, + "thread": 30 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 3058335, + "thread": 2 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 3155987, + "thread": 11 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 3343560, + "thread": 14 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 3478385, + "thread": 30 + } + }, + { + "amount": "207.188986842", + "slot": { + "period": 3677349, + "thread": 18 + } + }, + { + "amount": "207.188986833", + "slot": { + "period": 3931476, + "thread": 1 + } + } + ], + "AU1MLXUUJq9GyWAHr4uS3QWZacQHMUDuubP8CttG4Z8TmehXWfq7": [ + { + "amount": "200.002809335", + "slot": { + "period": 147289, + "thread": 26 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 276621, + "thread": 3 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 380918, + "thread": 21 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 552976, + "thread": 4 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 812203, + "thread": 20 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 879172, + "thread": 21 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1138317, + "thread": 26 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1277593, + "thread": 12 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1370769, + "thread": 31 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1631934, + "thread": 2 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1659157, + "thread": 8 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1811329, + "thread": 7 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 1987369, + "thread": 18 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 2228591, + "thread": 21 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 2299540, + "thread": 16 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 2503689, + "thread": 12 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 2638678, + "thread": 14 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 2874055, + "thread": 0 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 3107157, + "thread": 13 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 3164413, + "thread": 13 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 3431541, + "thread": 22 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 3568359, + "thread": 9 + } + }, + { + "amount": "200.002809335", + "slot": { + "period": 3759746, + "thread": 5 + } + }, + { + "amount": "200.002809342", + "slot": { + "period": 3851550, + "thread": 16 + } + } + ], + "AU1MMfcga9r2rAsuF5U2hGG963inY1Qu13ogRpcHd37nXxMSeYdZ": [ + { + "amount": "109.035920170", + "slot": { + "period": 113886, + "thread": 1 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 249266, + "thread": 21 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 435722, + "thread": 7 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 627700, + "thread": 4 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 771637, + "thread": 22 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 911500, + "thread": 1 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1060477, + "thread": 20 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1225512, + "thread": 0 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1327978, + "thread": 30 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1559247, + "thread": 0 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1759058, + "thread": 15 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 1901248, + "thread": 7 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2099972, + "thread": 6 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2251230, + "thread": 2 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2445204, + "thread": 20 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2623168, + "thread": 30 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2712727, + "thread": 20 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 2927159, + "thread": 4 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 3070503, + "thread": 28 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 3260896, + "thread": 14 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 3397848, + "thread": 9 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 3539790, + "thread": 31 + } + }, + { + "amount": "109.035920170", + "slot": { + "period": 3699508, + "thread": 15 + } + }, + { + "amount": "109.035920179", + "slot": { + "period": 3809799, + "thread": 4 + } + } + ], + "AU1MMmagKUSzhCMR4XLjQUMpr31BCoFooBcK34ynQ1aihSvqkrZ4": [ + { + "amount": "306.622212839", + "slot": { + "period": 81743, + "thread": 9 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 242717, + "thread": 1 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 445093, + "thread": 6 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 536171, + "thread": 16 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 779588, + "thread": 7 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 896911, + "thread": 4 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1140534, + "thread": 12 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1309101, + "thread": 30 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1334748, + "thread": 23 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1499955, + "thread": 29 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1725044, + "thread": 23 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1853691, + "thread": 13 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 1987073, + "thread": 11 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 2189547, + "thread": 24 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 2343007, + "thread": 0 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 2565948, + "thread": 24 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 2715575, + "thread": 21 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 2885785, + "thread": 27 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 3005702, + "thread": 14 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 3145045, + "thread": 28 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 3294772, + "thread": 27 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 3592471, + "thread": 12 + } + }, + { + "amount": "306.622212839", + "slot": { + "period": 3733846, + "thread": 22 + } + }, + { + "amount": "306.622212846", + "slot": { + "period": 3782802, + "thread": 23 + } + } + ], + "AU1MPzwjXayJuSa7B4y41eWXoGUC8NX6LUuFDyh7RN4x4j5cN3St": [ + { + "amount": "77.001702711", + "slot": { + "period": 159333, + "thread": 17 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 233257, + "thread": 0 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 340552, + "thread": 25 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 595037, + "thread": 16 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 677259, + "thread": 15 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 965988, + "thread": 10 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1010960, + "thread": 26 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1246323, + "thread": 8 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1425957, + "thread": 6 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1560756, + "thread": 28 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1750111, + "thread": 30 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 1809770, + "thread": 16 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2133063, + "thread": 11 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2222223, + "thread": 14 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2401391, + "thread": 8 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2562638, + "thread": 23 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2664289, + "thread": 27 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 2812146, + "thread": 14 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 3043741, + "thread": 8 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 3142816, + "thread": 5 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 3404412, + "thread": 13 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 3515822, + "thread": 15 + } + }, + { + "amount": "77.001702711", + "slot": { + "period": 3716246, + "thread": 9 + } + }, + { + "amount": "77.001702712", + "slot": { + "period": 3927674, + "thread": 29 + } + } + ], + "AU1MQ53HusXCbNsQF6t4KuJweXJYD4m94eECMjns6UQJia5ifK2Q": [ + { + "amount": "197.914855238", + "slot": { + "period": 159328, + "thread": 22 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 287411, + "thread": 13 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 485314, + "thread": 2 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 533807, + "thread": 18 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 761554, + "thread": 13 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 886941, + "thread": 6 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 989852, + "thread": 31 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 1315838, + "thread": 19 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 1329182, + "thread": 4 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 1542751, + "thread": 5 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 1684820, + "thread": 4 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 1883445, + "thread": 22 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2001667, + "thread": 15 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2196971, + "thread": 13 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2436983, + "thread": 23 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2580564, + "thread": 20 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2680626, + "thread": 13 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 2816969, + "thread": 30 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 3001003, + "thread": 30 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 3268071, + "thread": 1 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 3435191, + "thread": 27 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 3592545, + "thread": 8 + } + }, + { + "amount": "197.914855238", + "slot": { + "period": 3673735, + "thread": 22 + } + }, + { + "amount": "197.914855247", + "slot": { + "period": 3780930, + "thread": 8 + } + } + ], + "AU1MQNQb4Es3pJDE8q8i7rCDcyDh7bczZfj3bQvPgBFtayGJSgDu": [ + { + "amount": "57.420061480", + "slot": { + "period": 54437, + "thread": 1 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 188225, + "thread": 13 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 369873, + "thread": 0 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 633250, + "thread": 24 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 657376, + "thread": 13 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 828685, + "thread": 6 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 983649, + "thread": 21 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 1306084, + "thread": 0 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 1359999, + "thread": 31 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 1624075, + "thread": 14 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 1732805, + "thread": 12 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 1820365, + "thread": 24 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2020862, + "thread": 7 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2291987, + "thread": 15 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2419559, + "thread": 6 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2574375, + "thread": 10 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2684992, + "thread": 27 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 2846422, + "thread": 0 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 3078044, + "thread": 5 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 3186772, + "thread": 15 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 3413789, + "thread": 10 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 3547811, + "thread": 4 + } + }, + { + "amount": "57.420061480", + "slot": { + "period": 3728601, + "thread": 20 + } + }, + { + "amount": "57.420061490", + "slot": { + "period": 3901321, + "thread": 0 + } + } + ], + "AU1MRK5bJG5SzDt5zrG9fA4X6Nyu3xKkNwowp9Eb66VwFs8Vun5t": [ + { + "amount": "223.200587365", + "slot": { + "period": 108455, + "thread": 12 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 237664, + "thread": 23 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 411546, + "thread": 13 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 610013, + "thread": 30 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 769527, + "thread": 25 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 974387, + "thread": 21 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1014645, + "thread": 24 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1261717, + "thread": 0 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1377305, + "thread": 26 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1483989, + "thread": 18 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1799376, + "thread": 14 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 1944771, + "thread": 27 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2129272, + "thread": 11 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2249256, + "thread": 23 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2456403, + "thread": 19 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2549364, + "thread": 0 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2652862, + "thread": 6 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2792437, + "thread": 17 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 2972540, + "thread": 21 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 3133836, + "thread": 0 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 3447448, + "thread": 5 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 3452365, + "thread": 17 + } + }, + { + "amount": "223.200587365", + "slot": { + "period": 3710818, + "thread": 29 + } + }, + { + "amount": "223.200587366", + "slot": { + "period": 3922460, + "thread": 27 + } + } + ], + "AU1MS6xPyxphfZtbLFmtEnFNDweVbBW7KkA85GhhFrDrQriEKqpH": [ + { + "amount": "107.517438825", + "slot": { + "period": 21181, + "thread": 19 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 321813, + "thread": 31 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 472691, + "thread": 7 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 651828, + "thread": 23 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 730462, + "thread": 28 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 839261, + "thread": 29 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1142434, + "thread": 15 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1169112, + "thread": 16 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1475212, + "thread": 1 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1639051, + "thread": 25 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1745033, + "thread": 14 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 1947219, + "thread": 10 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2130232, + "thread": 6 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2144248, + "thread": 7 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2350367, + "thread": 5 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2466395, + "thread": 11 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2696975, + "thread": 1 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 2908351, + "thread": 11 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 3039078, + "thread": 5 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 3213286, + "thread": 0 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 3419201, + "thread": 17 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 3566794, + "thread": 18 + } + }, + { + "amount": "107.517438825", + "slot": { + "period": 3776623, + "thread": 19 + } + }, + { + "amount": "107.517438827", + "slot": { + "period": 3788069, + "thread": 26 + } + } + ], + "AU1MSsXLVf43C8maxP67n6AVY8HsAwVoa3HUwSEhnYv4wUkKWz4D": [ + { + "amount": "63.887191033", + "slot": { + "period": 82938, + "thread": 7 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 223657, + "thread": 26 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 363822, + "thread": 1 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 647532, + "thread": 20 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 663436, + "thread": 2 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 873090, + "thread": 19 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1102438, + "thread": 18 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1182239, + "thread": 17 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1374939, + "thread": 21 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1552803, + "thread": 29 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1798928, + "thread": 14 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 1958743, + "thread": 13 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2142162, + "thread": 10 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2184039, + "thread": 18 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2461541, + "thread": 8 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2617533, + "thread": 3 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2781440, + "thread": 31 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 2865098, + "thread": 7 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 3116109, + "thread": 3 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 3212120, + "thread": 22 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 3308863, + "thread": 25 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 3512840, + "thread": 19 + } + }, + { + "amount": "63.887191033", + "slot": { + "period": 3700049, + "thread": 12 + } + }, + { + "amount": "63.887191029", + "slot": { + "period": 3844760, + "thread": 27 + } + } + ], + "AU1MU4cQwAD7x3UkmsFrPTw8sCqCU29gRw5NaPozKHW7r8aZBcBK": [ + { + "amount": "203.942830656", + "slot": { + "period": 156430, + "thread": 13 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 230736, + "thread": 2 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 465998, + "thread": 2 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 520527, + "thread": 18 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 762040, + "thread": 0 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 978606, + "thread": 25 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1053490, + "thread": 16 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1209840, + "thread": 30 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1374837, + "thread": 7 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1522993, + "thread": 8 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1771804, + "thread": 24 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 1896456, + "thread": 13 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2065644, + "thread": 6 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2260894, + "thread": 25 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2440989, + "thread": 3 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2533723, + "thread": 30 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2758699, + "thread": 31 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 2921297, + "thread": 16 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3035246, + "thread": 23 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3212484, + "thread": 21 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3410803, + "thread": 17 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3519342, + "thread": 6 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3618460, + "thread": 29 + } + }, + { + "amount": "203.942830656", + "slot": { + "period": 3844263, + "thread": 2 + } + } + ], + "AU1MUQUvfNHiE8G8KpAuEXBXnHCG2zXXGNCC4o2TBmYcA1sHHirS": [ + { + "amount": "205.486150622", + "slot": { + "period": 70745, + "thread": 23 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 274160, + "thread": 20 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 401919, + "thread": 4 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 559376, + "thread": 11 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 709084, + "thread": 18 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 951889, + "thread": 12 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1074987, + "thread": 8 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1183298, + "thread": 7 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1469617, + "thread": 10 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1561466, + "thread": 6 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1687310, + "thread": 8 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 1949790, + "thread": 24 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2069717, + "thread": 20 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2208851, + "thread": 31 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2417119, + "thread": 18 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2487532, + "thread": 23 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2727971, + "thread": 5 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 2940186, + "thread": 23 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 3026183, + "thread": 10 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 3208232, + "thread": 0 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 3390052, + "thread": 21 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 3577388, + "thread": 17 + } + }, + { + "amount": "205.486150622", + "slot": { + "period": 3679636, + "thread": 31 + } + }, + { + "amount": "205.486150630", + "slot": { + "period": 3922595, + "thread": 3 + } + } + ], + "AU1MUpEWs4ei6H2F5mC71TyC9D9DHZ65iG16H69NYVtdVT38CxQu": [ + { + "amount": "137.964290382", + "slot": { + "period": 136248, + "thread": 3 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 247557, + "thread": 24 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 341091, + "thread": 31 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 521638, + "thread": 6 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 665083, + "thread": 12 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 954405, + "thread": 8 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1070547, + "thread": 1 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1242866, + "thread": 14 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1445227, + "thread": 15 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1507723, + "thread": 7 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1724007, + "thread": 14 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 1855131, + "thread": 25 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2085822, + "thread": 3 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2290249, + "thread": 23 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2311068, + "thread": 15 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2527206, + "thread": 29 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2702904, + "thread": 8 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2857573, + "thread": 8 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 2974304, + "thread": 14 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 3273511, + "thread": 24 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 3381773, + "thread": 15 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 3533191, + "thread": 28 + } + }, + { + "amount": "137.964290382", + "slot": { + "period": 3717479, + "thread": 5 + } + }, + { + "amount": "137.964290375", + "slot": { + "period": 3806697, + "thread": 2 + } + } + ], + "AU1MVWeNTNHPgjYK7XKifg6xx4rTV4MAtsbrrNdGcBv7s6YVQSNd": [ + { + "amount": "172.548242357", + "slot": { + "period": 164799, + "thread": 31 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 211126, + "thread": 18 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 387896, + "thread": 25 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 608879, + "thread": 2 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 738682, + "thread": 14 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 829238, + "thread": 1 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1047325, + "thread": 7 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1224421, + "thread": 1 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1473780, + "thread": 23 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1552138, + "thread": 7 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1720427, + "thread": 25 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 1965820, + "thread": 26 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2082315, + "thread": 30 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2233264, + "thread": 8 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2399037, + "thread": 13 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2577067, + "thread": 26 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2633105, + "thread": 15 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2808330, + "thread": 28 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 2994015, + "thread": 29 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 3177566, + "thread": 1 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 3384858, + "thread": 23 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 3472592, + "thread": 17 + } + }, + { + "amount": "172.548242357", + "slot": { + "period": 3748880, + "thread": 13 + } + }, + { + "amount": "172.548242350", + "slot": { + "period": 3904648, + "thread": 13 + } + } + ], + "AU1MWw9A4UvNPRiBvwUvj3Esdr7T7MdEm4Y8mcyuWDgTVKkMvJLE": [ + { + "amount": "215.682758011", + "slot": { + "period": 70285, + "thread": 18 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 250631, + "thread": 6 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 340939, + "thread": 23 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 491971, + "thread": 13 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 707242, + "thread": 26 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 842673, + "thread": 2 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1057233, + "thread": 29 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1257106, + "thread": 12 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1355906, + "thread": 10 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1607834, + "thread": 21 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1751897, + "thread": 6 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 1932996, + "thread": 21 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2139497, + "thread": 6 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2234981, + "thread": 31 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2329733, + "thread": 10 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2479802, + "thread": 28 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2627323, + "thread": 13 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 2876797, + "thread": 8 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 3111268, + "thread": 18 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 3236170, + "thread": 4 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 3396811, + "thread": 18 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 3506547, + "thread": 11 + } + }, + { + "amount": "215.682758011", + "slot": { + "period": 3683173, + "thread": 2 + } + }, + { + "amount": "215.682758000", + "slot": { + "period": 3797053, + "thread": 4 + } + } + ], + "AU1MYEHLHLQSiVrfR8mwScgdiAjySvoTWBSjDhvAHmuox6ruMryF": [ + { + "amount": "106.759561349", + "slot": { + "period": 123765, + "thread": 12 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 255898, + "thread": 4 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 446221, + "thread": 24 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 584584, + "thread": 30 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 670030, + "thread": 12 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 912361, + "thread": 27 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1117779, + "thread": 19 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1248957, + "thread": 26 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1464937, + "thread": 7 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1554314, + "thread": 14 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1763253, + "thread": 4 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 1903514, + "thread": 14 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2138779, + "thread": 0 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2174539, + "thread": 4 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2320684, + "thread": 8 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2591465, + "thread": 9 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2743691, + "thread": 26 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 2801840, + "thread": 19 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 3012694, + "thread": 17 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 3179320, + "thread": 23 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 3319780, + "thread": 30 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 3532179, + "thread": 4 + } + }, + { + "amount": "106.759561349", + "slot": { + "period": 3708521, + "thread": 9 + } + }, + { + "amount": "106.759561357", + "slot": { + "period": 3820420, + "thread": 9 + } + } + ], + "AU1MZfGbGtidAuuZhqEMNt3cSc2fWBfbCZ7VzfHBM27i6kStwgqk": [ + { + "amount": "179.511094474", + "slot": { + "period": 24676, + "thread": 8 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 225994, + "thread": 10 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 390335, + "thread": 24 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 527294, + "thread": 15 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 811753, + "thread": 21 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 892958, + "thread": 4 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 994169, + "thread": 27 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 1199882, + "thread": 27 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 1438987, + "thread": 0 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 1610668, + "thread": 9 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 1745902, + "thread": 27 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 1845396, + "thread": 29 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2022893, + "thread": 18 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2183991, + "thread": 30 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2448248, + "thread": 10 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2525221, + "thread": 20 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2692388, + "thread": 26 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 2951583, + "thread": 10 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 3085909, + "thread": 11 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 3132073, + "thread": 9 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 3318533, + "thread": 17 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 3538798, + "thread": 22 + } + }, + { + "amount": "179.511094474", + "slot": { + "period": 3644554, + "thread": 26 + } + }, + { + "amount": "179.511094462", + "slot": { + "period": 3938805, + "thread": 1 + } + } + ], + "AU1MZuRkKsghcduuvUMNrL7dyvhHsuYGydMJwYUEzigTwiu3AMQk": [ + { + "amount": "265.485293947", + "slot": { + "period": 84797, + "thread": 15 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 183051, + "thread": 18 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 330315, + "thread": 9 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 565651, + "thread": 10 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 681915, + "thread": 17 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 860305, + "thread": 16 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1109844, + "thread": 24 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1278031, + "thread": 5 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1411725, + "thread": 30 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1541265, + "thread": 26 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1675551, + "thread": 20 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 1826754, + "thread": 0 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2056275, + "thread": 25 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2224146, + "thread": 16 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2305299, + "thread": 13 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2501633, + "thread": 2 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2707723, + "thread": 15 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2910499, + "thread": 15 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 2967938, + "thread": 15 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 3139078, + "thread": 2 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 3402307, + "thread": 6 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 3461367, + "thread": 13 + } + }, + { + "amount": "265.485293947", + "slot": { + "period": 3758448, + "thread": 6 + } + }, + { + "amount": "265.485293958", + "slot": { + "period": 3911434, + "thread": 16 + } + } + ], + "AU1MbSAV9sKy3mN8a87T1qzPHh73HTj7Vi4dHRNkRhZG8oBF5QbA": [ + { + "amount": "148.986306789", + "slot": { + "period": 105079, + "thread": 14 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 225088, + "thread": 1 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 409708, + "thread": 6 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 615179, + "thread": 25 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 812823, + "thread": 5 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 982108, + "thread": 19 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1079577, + "thread": 11 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1234706, + "thread": 19 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1453004, + "thread": 29 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1532274, + "thread": 4 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1681794, + "thread": 25 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 1965873, + "thread": 28 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2126417, + "thread": 3 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2227932, + "thread": 3 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2387828, + "thread": 1 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2471864, + "thread": 3 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2761005, + "thread": 5 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 2919919, + "thread": 8 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 3003878, + "thread": 2 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 3236096, + "thread": 9 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 3321547, + "thread": 14 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 3615872, + "thread": 13 + } + }, + { + "amount": "148.986306789", + "slot": { + "period": 3705607, + "thread": 12 + } + }, + { + "amount": "148.986306798", + "slot": { + "period": 3888144, + "thread": 5 + } + } + ], + "AU1McBWNNZizhp4auEE9fUvjpzBDajR8ArpFUErswzMWnqkakcPi": [ + { + "amount": "99.217973771", + "slot": { + "period": 144700, + "thread": 23 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 170318, + "thread": 0 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 360695, + "thread": 19 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 615675, + "thread": 14 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 780692, + "thread": 1 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 919010, + "thread": 31 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1136911, + "thread": 17 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1205519, + "thread": 3 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1478185, + "thread": 3 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1582359, + "thread": 25 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1668811, + "thread": 19 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 1901640, + "thread": 15 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2002583, + "thread": 23 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2245661, + "thread": 12 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2375504, + "thread": 3 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2536109, + "thread": 1 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2665448, + "thread": 22 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 2890176, + "thread": 31 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 3100008, + "thread": 17 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 3195919, + "thread": 31 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 3355466, + "thread": 27 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 3503582, + "thread": 28 + } + }, + { + "amount": "99.217973771", + "slot": { + "period": 3774423, + "thread": 11 + } + }, + { + "amount": "99.217973765", + "slot": { + "period": 3927651, + "thread": 27 + } + } + ], + "AU1Meefia2Y6ekrn25pEXGxj8FFYe7JJ8CWnQUu8Ut74Tv5ye7Kh": [ + { + "amount": "158.767450906", + "slot": { + "period": 11584, + "thread": 28 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 191699, + "thread": 18 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 378143, + "thread": 19 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 612082, + "thread": 2 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 695131, + "thread": 30 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 921277, + "thread": 17 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1086643, + "thread": 25 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1162769, + "thread": 22 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1348027, + "thread": 20 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1561289, + "thread": 31 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1669819, + "thread": 29 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 1876732, + "thread": 8 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2075708, + "thread": 18 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2185353, + "thread": 22 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2372613, + "thread": 29 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2593232, + "thread": 11 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2700425, + "thread": 13 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 2889199, + "thread": 1 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 3033410, + "thread": 27 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 3234722, + "thread": 7 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 3377687, + "thread": 26 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 3593564, + "thread": 0 + } + }, + { + "amount": "158.767450906", + "slot": { + "period": 3755607, + "thread": 16 + } + }, + { + "amount": "158.767450898", + "slot": { + "period": 3930983, + "thread": 13 + } + } + ], + "AU1MerA4sSkDwMFMjVmj62a424y7YpT5DhCJeeQPjqipgmHNbQFm": [ + { + "amount": "121.804811438", + "slot": { + "period": 99383, + "thread": 2 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 180814, + "thread": 15 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 458619, + "thread": 31 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 630046, + "thread": 0 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 744803, + "thread": 6 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 830832, + "thread": 7 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1106255, + "thread": 27 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1281446, + "thread": 23 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1424367, + "thread": 7 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1486972, + "thread": 21 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1803854, + "thread": 7 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 1925676, + "thread": 25 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2101233, + "thread": 27 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2281780, + "thread": 17 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2412563, + "thread": 24 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2593911, + "thread": 23 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2719489, + "thread": 10 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2834621, + "thread": 11 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 2978639, + "thread": 10 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 3184030, + "thread": 7 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 3341794, + "thread": 29 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 3457955, + "thread": 17 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 3620003, + "thread": 17 + } + }, + { + "amount": "121.804811438", + "slot": { + "period": 3910520, + "thread": 26 + } + } + ], + "AU1Mf8uB6BDBizrX7e6ySMjS3FYtRkGSrTqUz8AFG78c1RttyjFh": [ + { + "amount": "601.427264971", + "slot": { + "period": 131901, + "thread": 27 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 278123, + "thread": 6 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 433959, + "thread": 10 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 620983, + "thread": 18 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 728792, + "thread": 23 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 927063, + "thread": 8 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1068066, + "thread": 29 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1267124, + "thread": 20 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1336937, + "thread": 21 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1613895, + "thread": 6 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1744248, + "thread": 7 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1961096, + "thread": 25 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 1983722, + "thread": 16 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 2258721, + "thread": 29 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 2346717, + "thread": 0 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 2527895, + "thread": 16 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 2699110, + "thread": 29 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 2855792, + "thread": 29 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 3089723, + "thread": 27 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 3281839, + "thread": 1 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 3376134, + "thread": 17 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 3526224, + "thread": 23 + } + }, + { + "amount": "601.427264971", + "slot": { + "period": 3619741, + "thread": 9 + } + }, + { + "amount": "601.427264978", + "slot": { + "period": 3790470, + "thread": 15 + } + } + ], + "AU1MfGJtxyz8Jj5ZMfupwxgYCejkbEm99YntgHBrCoicFw8sZWMK": [ + { + "amount": "79.594558687", + "slot": { + "period": 91445, + "thread": 21 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 222591, + "thread": 29 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 439674, + "thread": 29 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 550747, + "thread": 19 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 746840, + "thread": 6 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 851072, + "thread": 3 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1011466, + "thread": 31 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1273410, + "thread": 0 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1398852, + "thread": 17 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1643169, + "thread": 16 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1787714, + "thread": 21 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 1871753, + "thread": 9 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2054372, + "thread": 17 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2243788, + "thread": 13 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2344081, + "thread": 22 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2473677, + "thread": 1 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2627795, + "thread": 8 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 2916985, + "thread": 20 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 3101042, + "thread": 19 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 3241895, + "thread": 20 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 3420064, + "thread": 7 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 3537215, + "thread": 11 + } + }, + { + "amount": "79.594558687", + "slot": { + "period": 3637265, + "thread": 21 + } + }, + { + "amount": "79.594558693", + "slot": { + "period": 3842035, + "thread": 26 + } + } + ], + "AU1MgHw26HZVDfEcjZ8RnrSjQQxpP2enY8ZHPSDcKmZyFNbyTS5y": [ + { + "amount": "255.163935049", + "slot": { + "period": 90822, + "thread": 27 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 293445, + "thread": 15 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 446415, + "thread": 13 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 501459, + "thread": 6 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 751351, + "thread": 11 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 888210, + "thread": 20 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1060989, + "thread": 7 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1157359, + "thread": 15 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1439226, + "thread": 15 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1553471, + "thread": 14 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1808556, + "thread": 27 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 1854993, + "thread": 15 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2110950, + "thread": 28 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2255699, + "thread": 20 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2325488, + "thread": 5 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2535746, + "thread": 24 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2786217, + "thread": 29 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 2824190, + "thread": 6 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 3039767, + "thread": 2 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 3127797, + "thread": 5 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 3383297, + "thread": 16 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 3451762, + "thread": 8 + } + }, + { + "amount": "255.163935049", + "slot": { + "period": 3690276, + "thread": 12 + } + }, + { + "amount": "255.163935051", + "slot": { + "period": 3853206, + "thread": 19 + } + } + ], + "AU1MgsbyqptSpsSoJcBtgdnCZNBruMiX118bqAcRkaiaP1wKvPyV": [ + { + "amount": "322.087046490", + "slot": { + "period": 66523, + "thread": 15 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 222808, + "thread": 16 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 421031, + "thread": 20 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 499506, + "thread": 13 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 782986, + "thread": 6 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 834662, + "thread": 11 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1118358, + "thread": 2 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1236971, + "thread": 7 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1350247, + "thread": 1 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1488452, + "thread": 6 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1757663, + "thread": 3 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 1885727, + "thread": 8 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2127525, + "thread": 16 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2286331, + "thread": 24 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2369990, + "thread": 20 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2594586, + "thread": 0 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2706172, + "thread": 26 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 2932775, + "thread": 8 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 3104603, + "thread": 9 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 3199176, + "thread": 22 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 3344814, + "thread": 12 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 3454563, + "thread": 14 + } + }, + { + "amount": "322.087046490", + "slot": { + "period": 3774494, + "thread": 21 + } + }, + { + "amount": "322.087046488", + "slot": { + "period": 3869506, + "thread": 11 + } + } + ], + "AU1MgvwG39iVHhazeQzY7zqSLKadCFuk1upTjVvcQbU2DNBxtQHi": [ + { + "amount": "168.980140623", + "slot": { + "period": 139317, + "thread": 8 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 211192, + "thread": 8 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 476145, + "thread": 21 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 634003, + "thread": 0 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 691508, + "thread": 13 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 896680, + "thread": 14 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1005139, + "thread": 28 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1314958, + "thread": 5 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1395528, + "thread": 8 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1600413, + "thread": 0 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1777540, + "thread": 17 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 1915754, + "thread": 15 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2049301, + "thread": 2 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2249842, + "thread": 12 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2344668, + "thread": 7 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2549116, + "thread": 7 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2664383, + "thread": 18 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2873104, + "thread": 15 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 2984452, + "thread": 14 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 3155010, + "thread": 31 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 3446527, + "thread": 21 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 3451274, + "thread": 21 + } + }, + { + "amount": "168.980140623", + "slot": { + "period": 3691500, + "thread": 5 + } + }, + { + "amount": "168.980140622", + "slot": { + "period": 3817489, + "thread": 31 + } + } + ], + "AU1MhFoSGJ7vjtsnLYi2GpjtNJf59dPtKPe7hh9RJDbxK6hcDojL": [ + { + "amount": "121.470838625", + "slot": { + "period": 96852, + "thread": 1 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 223295, + "thread": 20 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 385256, + "thread": 13 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 506524, + "thread": 6 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 697707, + "thread": 20 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 873328, + "thread": 27 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1137622, + "thread": 31 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1266594, + "thread": 9 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1408277, + "thread": 6 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1535652, + "thread": 22 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1651054, + "thread": 25 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 1907699, + "thread": 3 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2055573, + "thread": 13 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2225632, + "thread": 13 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2358716, + "thread": 16 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2463415, + "thread": 4 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2713390, + "thread": 30 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 2922509, + "thread": 17 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 3049930, + "thread": 18 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 3137471, + "thread": 9 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 3399321, + "thread": 26 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 3571473, + "thread": 13 + } + }, + { + "amount": "121.470838625", + "slot": { + "period": 3759438, + "thread": 18 + } + }, + { + "amount": "121.470838618", + "slot": { + "period": 3898841, + "thread": 21 + } + } + ], + "AU1MjZvMbG33yTZsk36vrVeLLXRwvgkPxzphFsiZRUpq1648fvrE": [ + { + "amount": "296.468309913", + "slot": { + "period": 118155, + "thread": 1 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 275948, + "thread": 31 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 474985, + "thread": 18 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 628039, + "thread": 10 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 795728, + "thread": 22 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 877388, + "thread": 10 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1083126, + "thread": 5 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1218152, + "thread": 17 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1319393, + "thread": 31 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1625573, + "thread": 22 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1801265, + "thread": 19 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 1960327, + "thread": 12 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2025357, + "thread": 3 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2218306, + "thread": 16 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2417569, + "thread": 29 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2590965, + "thread": 29 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2705135, + "thread": 15 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 2832960, + "thread": 20 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 3027278, + "thread": 27 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 3264115, + "thread": 3 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 3360340, + "thread": 20 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 3484580, + "thread": 18 + } + }, + { + "amount": "296.468309913", + "slot": { + "period": 3646617, + "thread": 23 + } + }, + { + "amount": "296.468309907", + "slot": { + "period": 3866033, + "thread": 10 + } + } + ], + "AU1MkHWD6dNkqj2F6kqtZTo9K2pweMeG8EdnRTQQNGn64N733xoX": [ + { + "amount": "389.265506178", + "slot": { + "period": 15785, + "thread": 6 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 281986, + "thread": 1 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 435094, + "thread": 9 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 529701, + "thread": 10 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 751355, + "thread": 14 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 977639, + "thread": 17 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1062867, + "thread": 19 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1307283, + "thread": 13 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1331784, + "thread": 7 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1521757, + "thread": 29 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1753733, + "thread": 7 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1897388, + "thread": 30 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 1996860, + "thread": 9 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 2144617, + "thread": 7 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 2323960, + "thread": 31 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 2501746, + "thread": 2 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 2786498, + "thread": 25 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 2816431, + "thread": 10 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 3037121, + "thread": 8 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 3186626, + "thread": 9 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 3392668, + "thread": 21 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 3550457, + "thread": 15 + } + }, + { + "amount": "389.265506178", + "slot": { + "period": 3695014, + "thread": 31 + } + }, + { + "amount": "389.265506166", + "slot": { + "period": 3874047, + "thread": 24 + } + } + ], + "AU1MkJ5NetBkbRNoQFfZ3CriTwnNTNQAL3J78HtZQ95K5EeU3sp2": [ + { + "amount": "451.667808220", + "slot": { + "period": 104411, + "thread": 1 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 272459, + "thread": 28 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 478343, + "thread": 3 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 550645, + "thread": 2 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 725094, + "thread": 24 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 825474, + "thread": 11 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1044334, + "thread": 0 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1278416, + "thread": 9 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1478416, + "thread": 17 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1555299, + "thread": 22 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1756958, + "thread": 2 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 1975633, + "thread": 24 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2005292, + "thread": 26 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2294486, + "thread": 1 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2373392, + "thread": 9 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2568116, + "thread": 22 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2668250, + "thread": 10 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 2874578, + "thread": 10 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 3031772, + "thread": 22 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 3151193, + "thread": 30 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 3353766, + "thread": 18 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 3492804, + "thread": 16 + } + }, + { + "amount": "451.667808220", + "slot": { + "period": 3777145, + "thread": 5 + } + }, + { + "amount": "451.667808222", + "slot": { + "period": 3831241, + "thread": 18 + } + } + ], + "AU1Mkuv8fU79LdoogQpjzyDrVm6UqU63eqBLLx5sYAhT5T1eGSgW": [ + { + "amount": "152.542890139", + "slot": { + "period": 65060, + "thread": 24 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 285450, + "thread": 9 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 419516, + "thread": 14 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 590399, + "thread": 0 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 703175, + "thread": 6 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 953506, + "thread": 12 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1124877, + "thread": 29 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1164256, + "thread": 2 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1332052, + "thread": 20 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1566889, + "thread": 3 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1698972, + "thread": 2 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 1952396, + "thread": 17 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2006931, + "thread": 25 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2292718, + "thread": 17 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2455222, + "thread": 24 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2580046, + "thread": 26 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2717845, + "thread": 7 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 2876047, + "thread": 25 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 3112767, + "thread": 13 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 3165842, + "thread": 3 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 3432240, + "thread": 13 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 3485018, + "thread": 19 + } + }, + { + "amount": "152.542890139", + "slot": { + "period": 3710143, + "thread": 20 + } + }, + { + "amount": "152.542890144", + "slot": { + "period": 3812912, + "thread": 28 + } + } + ], + "AU1MmmbGx2X7zdwUWU7Bi9VyEfvCZ1yxAPCiCk8EZeZiq84vAVFZ": [ + { + "amount": "164.887200428", + "slot": { + "period": 18412, + "thread": 1 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 318964, + "thread": 24 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 368768, + "thread": 3 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 495529, + "thread": 9 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 739063, + "thread": 18 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 833175, + "thread": 13 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1047767, + "thread": 4 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1180415, + "thread": 13 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1457709, + "thread": 27 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1534670, + "thread": 10 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1709137, + "thread": 6 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 1847918, + "thread": 26 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2054543, + "thread": 15 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2166725, + "thread": 12 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2300439, + "thread": 22 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2568414, + "thread": 5 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2751219, + "thread": 14 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2865543, + "thread": 3 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 2973906, + "thread": 27 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 3220288, + "thread": 13 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 3329579, + "thread": 0 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 3549573, + "thread": 11 + } + }, + { + "amount": "164.887200428", + "slot": { + "period": 3718198, + "thread": 29 + } + }, + { + "amount": "164.887200435", + "slot": { + "period": 3782972, + "thread": 17 + } + } + ], + "AU1MmnrX24DmTvUvWPCAxG47KcTDCEdj2S7xchdWFxw9WjHoetjZ": [ + { + "amount": "72.943441621", + "slot": { + "period": 142749, + "thread": 21 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 179014, + "thread": 21 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 406920, + "thread": 25 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 552414, + "thread": 30 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 817711, + "thread": 30 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 876421, + "thread": 5 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1053373, + "thread": 4 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1199043, + "thread": 25 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1421630, + "thread": 1 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1601091, + "thread": 10 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1808306, + "thread": 9 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1820814, + "thread": 23 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 1979484, + "thread": 16 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 2294375, + "thread": 23 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 2314314, + "thread": 16 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 2545462, + "thread": 27 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 2642030, + "thread": 5 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 2882581, + "thread": 1 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 3076383, + "thread": 18 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 3147687, + "thread": 6 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 3307488, + "thread": 25 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 3539742, + "thread": 3 + } + }, + { + "amount": "72.943441621", + "slot": { + "period": 3630424, + "thread": 4 + } + }, + { + "amount": "72.943441628", + "slot": { + "period": 3913371, + "thread": 27 + } + } + ], + "AU1MncMsWLCa1xuA4x88PNnwsNAAzvwTivsAU7NU6BNcSb7aDsuQ": [ + { + "amount": "272.749321799", + "slot": { + "period": 83746, + "thread": 2 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 323749, + "thread": 12 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 477656, + "thread": 11 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 639425, + "thread": 29 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 792941, + "thread": 3 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 967401, + "thread": 3 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1100511, + "thread": 13 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1214259, + "thread": 16 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1403012, + "thread": 30 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1511408, + "thread": 0 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1778657, + "thread": 0 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 1929467, + "thread": 18 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2138712, + "thread": 4 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2184241, + "thread": 4 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2399044, + "thread": 28 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2471516, + "thread": 30 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2675459, + "thread": 8 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 2911408, + "thread": 17 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 3077136, + "thread": 22 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 3176132, + "thread": 18 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 3445286, + "thread": 15 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 3473911, + "thread": 22 + } + }, + { + "amount": "272.749321799", + "slot": { + "period": 3734113, + "thread": 29 + } + }, + { + "amount": "272.749321800", + "slot": { + "period": 3930580, + "thread": 11 + } + } + ], + "AU1MoGCUREMp8xcPvcVuH3MULnmdDqDoKwzixDvuBzdoK4HNcumr": [ + { + "amount": "145.099866893", + "slot": { + "period": 154500, + "thread": 14 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 320404, + "thread": 19 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 428846, + "thread": 15 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 539876, + "thread": 1 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 730033, + "thread": 14 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 950384, + "thread": 17 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1123392, + "thread": 21 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1153563, + "thread": 11 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1403839, + "thread": 10 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1643670, + "thread": 8 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1739007, + "thread": 7 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 1877246, + "thread": 3 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2102810, + "thread": 11 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2277776, + "thread": 28 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2452296, + "thread": 3 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2478430, + "thread": 24 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2656123, + "thread": 8 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2895423, + "thread": 26 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 2988702, + "thread": 21 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 3253240, + "thread": 4 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 3293382, + "thread": 24 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 3514233, + "thread": 24 + } + }, + { + "amount": "145.099866893", + "slot": { + "period": 3621364, + "thread": 7 + } + }, + { + "amount": "145.099866898", + "slot": { + "period": 3784374, + "thread": 5 + } + } + ], + "AU1MpCiRFQkVy5A79McySFiRGc1QTsaHpS7edWzPm9ZTv17CEGgg": [ + { + "amount": "122.839774716", + "slot": { + "period": 89368, + "thread": 18 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 244862, + "thread": 8 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 336002, + "thread": 23 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 561502, + "thread": 29 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 759882, + "thread": 8 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 892288, + "thread": 21 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1007457, + "thread": 0 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1181780, + "thread": 22 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1444800, + "thread": 23 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1618029, + "thread": 28 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1732471, + "thread": 7 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 1883367, + "thread": 7 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2003408, + "thread": 24 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2166319, + "thread": 27 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2448389, + "thread": 2 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2475524, + "thread": 26 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2657174, + "thread": 28 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 2853006, + "thread": 29 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 3034151, + "thread": 14 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 3217655, + "thread": 6 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 3333317, + "thread": 2 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 3534951, + "thread": 8 + } + }, + { + "amount": "122.839774716", + "slot": { + "period": 3648402, + "thread": 15 + } + }, + { + "amount": "122.839774710", + "slot": { + "period": 3896158, + "thread": 9 + } + } + ], + "AU1MpvFUYbozA9x4bWj7CBKibYqxUFRxBSdXSX56XYCJQfMsj5QJ": [ + { + "amount": "133.578935857", + "slot": { + "period": 149812, + "thread": 27 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 170195, + "thread": 17 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 444987, + "thread": 14 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 609920, + "thread": 21 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 780647, + "thread": 28 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 978655, + "thread": 2 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1059467, + "thread": 5 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1280609, + "thread": 10 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1428842, + "thread": 12 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1632876, + "thread": 25 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1791118, + "thread": 8 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1814319, + "thread": 26 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 1988806, + "thread": 4 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 2186692, + "thread": 22 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 2454779, + "thread": 13 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 2613240, + "thread": 7 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 2655924, + "thread": 13 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 2948333, + "thread": 22 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 3092436, + "thread": 28 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 3176337, + "thread": 31 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 3360164, + "thread": 8 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 3488753, + "thread": 6 + } + }, + { + "amount": "133.578935857", + "slot": { + "period": 3710597, + "thread": 16 + } + }, + { + "amount": "133.578935849", + "slot": { + "period": 3903367, + "thread": 9 + } + } + ], + "AU1Mqvy2uQYAFb3U6ppyuhTLBBKxXNnB6ir7QgtqQ6X1cSiBHpEr": [ + { + "amount": "82.978390875", + "slot": { + "period": 126732, + "thread": 29 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 243973, + "thread": 31 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 367290, + "thread": 7 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 593738, + "thread": 27 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 818604, + "thread": 7 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 929322, + "thread": 3 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 993266, + "thread": 31 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 1245551, + "thread": 22 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 1321148, + "thread": 21 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 1493710, + "thread": 29 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 1703794, + "thread": 16 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 1851203, + "thread": 18 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2055860, + "thread": 11 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2280764, + "thread": 20 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2447071, + "thread": 4 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2500667, + "thread": 29 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2676206, + "thread": 19 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2795023, + "thread": 29 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 2962268, + "thread": 25 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 3134142, + "thread": 15 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 3325145, + "thread": 27 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 3498840, + "thread": 17 + } + }, + { + "amount": "82.978390875", + "slot": { + "period": 3764565, + "thread": 4 + } + }, + { + "amount": "82.978390866", + "slot": { + "period": 3889227, + "thread": 30 + } + } + ], + "AU1Mr4rXNBBGCeLnuW5r71DHtmNDHXZ26F3ii6tQdgdCXSS5G2au": [ + { + "amount": "577.465458451", + "slot": { + "period": 82789, + "thread": 15 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 174830, + "thread": 17 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 418850, + "thread": 27 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 507122, + "thread": 31 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 784107, + "thread": 7 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 825780, + "thread": 2 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1016911, + "thread": 23 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1183866, + "thread": 10 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1438971, + "thread": 31 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1559474, + "thread": 29 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1648119, + "thread": 18 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 1886989, + "thread": 18 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2112446, + "thread": 2 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2294596, + "thread": 8 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2388777, + "thread": 29 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2549345, + "thread": 23 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2742419, + "thread": 16 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 2798546, + "thread": 21 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 3108772, + "thread": 23 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 3175966, + "thread": 7 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 3367773, + "thread": 18 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 3560604, + "thread": 2 + } + }, + { + "amount": "577.465458451", + "slot": { + "period": 3743411, + "thread": 13 + } + }, + { + "amount": "577.465458454", + "slot": { + "period": 3807035, + "thread": 23 + } + } + ], + "AU1Mr5i5PgWAYdmyENZetsMXAi7dLxVvbYWLA3w7MssHysDzQuxy": [ + { + "amount": "55.884418152", + "slot": { + "period": 71092, + "thread": 22 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 176839, + "thread": 25 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 407788, + "thread": 10 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 626633, + "thread": 10 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 677806, + "thread": 9 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 864815, + "thread": 13 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1143718, + "thread": 6 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1217986, + "thread": 14 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1334676, + "thread": 4 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1520997, + "thread": 3 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1707749, + "thread": 4 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 1953207, + "thread": 24 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2111364, + "thread": 20 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2156491, + "thread": 3 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2320034, + "thread": 21 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2608623, + "thread": 15 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2745855, + "thread": 0 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2943023, + "thread": 13 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 2994284, + "thread": 22 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 3154705, + "thread": 28 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 3430350, + "thread": 25 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 3578616, + "thread": 31 + } + }, + { + "amount": "55.884418152", + "slot": { + "period": 3624360, + "thread": 1 + } + }, + { + "amount": "55.884418158", + "slot": { + "period": 3881245, + "thread": 3 + } + } + ], + "AU1MrLseerMNF8BVNxkHdGtkcUAKrtwULfkmm2AX3JMuTK2jAS8S": [ + { + "amount": "306.077688981", + "slot": { + "period": 126332, + "thread": 3 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 323964, + "thread": 27 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 401966, + "thread": 31 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 514679, + "thread": 13 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 725902, + "thread": 14 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 838015, + "thread": 16 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1048918, + "thread": 17 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1161850, + "thread": 21 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1322589, + "thread": 15 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1575378, + "thread": 11 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1720249, + "thread": 25 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 1954950, + "thread": 31 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2030705, + "thread": 12 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2221111, + "thread": 28 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2338751, + "thread": 12 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2567074, + "thread": 28 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2765555, + "thread": 29 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2835188, + "thread": 30 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 2963531, + "thread": 30 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 3255485, + "thread": 21 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 3309740, + "thread": 5 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 3478399, + "thread": 10 + } + }, + { + "amount": "306.077688981", + "slot": { + "period": 3659563, + "thread": 7 + } + }, + { + "amount": "306.077688991", + "slot": { + "period": 3932978, + "thread": 18 + } + } + ], + "AU1MrQSXqkHdG7hCA7jbiDM3tSsUeZ7HivPi2kGxkvSxnPnam7CP": [ + { + "amount": "338.067707369", + "slot": { + "period": 110215, + "thread": 28 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 176139, + "thread": 0 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 464758, + "thread": 23 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 612979, + "thread": 4 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 807121, + "thread": 25 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 842409, + "thread": 15 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1146837, + "thread": 18 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1306075, + "thread": 0 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1421271, + "thread": 9 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1523518, + "thread": 15 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1674011, + "thread": 17 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 1828325, + "thread": 2 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2106679, + "thread": 0 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2176085, + "thread": 12 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2396487, + "thread": 11 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2590312, + "thread": 3 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2635087, + "thread": 4 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 2912918, + "thread": 22 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 3008238, + "thread": 6 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 3213977, + "thread": 27 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 3400098, + "thread": 24 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 3507168, + "thread": 29 + } + }, + { + "amount": "338.067707369", + "slot": { + "period": 3669195, + "thread": 9 + } + }, + { + "amount": "338.067707367", + "slot": { + "period": 3892045, + "thread": 27 + } + } + ], + "AU1Mtpm93zFNvy7dUHTKwL6BtF6ZdruP5Wvvqt56KH2mV63MyuCY": [ + { + "amount": "211.452932886", + "slot": { + "period": 21248, + "thread": 23 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 186566, + "thread": 25 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 423764, + "thread": 26 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 529639, + "thread": 18 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 660284, + "thread": 8 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 840718, + "thread": 22 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1148705, + "thread": 26 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1291792, + "thread": 27 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1465365, + "thread": 25 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1513680, + "thread": 17 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1751341, + "thread": 15 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 1868908, + "thread": 5 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2068565, + "thread": 10 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2144057, + "thread": 21 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2319452, + "thread": 9 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2549441, + "thread": 23 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2725378, + "thread": 27 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 2826746, + "thread": 4 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 3038233, + "thread": 30 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 3266658, + "thread": 4 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 3319430, + "thread": 9 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 3500423, + "thread": 30 + } + }, + { + "amount": "211.452932886", + "slot": { + "period": 3696870, + "thread": 5 + } + }, + { + "amount": "211.452932891", + "slot": { + "period": 3928417, + "thread": 25 + } + } + ], + "AU1MtysDoE6AuFQ38QBveHb7i3jhYYLwVBoNYvmnXBWzqU2LXox4": [ + { + "amount": "159.780950375", + "slot": { + "period": 110235, + "thread": 9 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 233347, + "thread": 2 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 329003, + "thread": 12 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 545168, + "thread": 30 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 673178, + "thread": 20 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 846348, + "thread": 1 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1102627, + "thread": 16 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1258348, + "thread": 8 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1335240, + "thread": 5 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1639209, + "thread": 5 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1724607, + "thread": 31 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 1929050, + "thread": 30 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2105750, + "thread": 29 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2156790, + "thread": 10 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2354416, + "thread": 18 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2502064, + "thread": 3 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2650658, + "thread": 7 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 2923473, + "thread": 4 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 3084441, + "thread": 21 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 3225314, + "thread": 10 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 3417154, + "thread": 2 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 3503074, + "thread": 3 + } + }, + { + "amount": "159.780950375", + "slot": { + "period": 3695588, + "thread": 18 + } + }, + { + "amount": "159.780950366", + "slot": { + "period": 3877020, + "thread": 3 + } + } + ], + "AU1MuQonms2NsNiaL9hjJk9t84Z4mrrEakb4Q1h8uXDvsRtDnWRi": [ + { + "amount": "74.590839119", + "slot": { + "period": 122976, + "thread": 15 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 199946, + "thread": 15 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 450821, + "thread": 17 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 615947, + "thread": 19 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 708508, + "thread": 22 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 883782, + "thread": 23 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1038439, + "thread": 8 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1186628, + "thread": 12 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1430544, + "thread": 26 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1527501, + "thread": 19 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1747266, + "thread": 3 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 1917801, + "thread": 2 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2128892, + "thread": 12 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2278378, + "thread": 20 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2441037, + "thread": 16 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2607879, + "thread": 30 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2680099, + "thread": 28 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 2920857, + "thread": 16 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 3048699, + "thread": 2 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 3248718, + "thread": 23 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 3331279, + "thread": 23 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 3616841, + "thread": 27 + } + }, + { + "amount": "74.590839119", + "slot": { + "period": 3687871, + "thread": 20 + } + }, + { + "amount": "74.590839116", + "slot": { + "period": 3843300, + "thread": 0 + } + } + ], + "AU1MvAihM7oh8RS2Sy8mCcYfnuWYE6hi7KK6TnVC4sy7VF6Dp3t7": [ + { + "amount": "148.921823247", + "slot": { + "period": 74390, + "thread": 28 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 282432, + "thread": 29 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 449810, + "thread": 22 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 639810, + "thread": 26 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 775311, + "thread": 12 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 889107, + "thread": 19 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1137748, + "thread": 2 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1200506, + "thread": 14 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1362339, + "thread": 23 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1535324, + "thread": 31 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1774508, + "thread": 20 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 1940434, + "thread": 25 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2120537, + "thread": 24 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2240320, + "thread": 19 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2300841, + "thread": 15 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2472194, + "thread": 22 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2724973, + "thread": 8 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 2841478, + "thread": 4 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 3008301, + "thread": 26 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 3260570, + "thread": 24 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 3319017, + "thread": 14 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 3577084, + "thread": 6 + } + }, + { + "amount": "148.921823247", + "slot": { + "period": 3704780, + "thread": 5 + } + }, + { + "amount": "148.921823243", + "slot": { + "period": 3791431, + "thread": 22 + } + } + ], + "AU1MvPTkQLLsJohS2r2oVTs2WVUewUsYoJtVRbhDE26Uhxkynoki": [ + { + "amount": "408.056606813", + "slot": { + "period": 35498, + "thread": 11 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 216587, + "thread": 25 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 406929, + "thread": 6 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 524627, + "thread": 23 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 659747, + "thread": 3 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 974782, + "thread": 15 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1040167, + "thread": 15 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1238033, + "thread": 22 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1394400, + "thread": 24 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1521618, + "thread": 8 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1793166, + "thread": 21 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 1886443, + "thread": 3 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2127705, + "thread": 5 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2291775, + "thread": 25 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2313130, + "thread": 0 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2575163, + "thread": 25 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2737321, + "thread": 20 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 2855419, + "thread": 7 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3070731, + "thread": 18 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3147308, + "thread": 15 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3353897, + "thread": 4 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3585145, + "thread": 1 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3768550, + "thread": 25 + } + }, + { + "amount": "408.056606813", + "slot": { + "period": 3866043, + "thread": 12 + } + } + ], + "AU1MxTHJS165sqpDwQsjh8nACg2PdNiULa6nGHTaJ3pMBbrZkjMJ": [ + { + "amount": "145.489193135", + "slot": { + "period": 142955, + "thread": 13 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 287130, + "thread": 7 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 465428, + "thread": 31 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 613053, + "thread": 28 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 684290, + "thread": 29 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 896101, + "thread": 25 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1102772, + "thread": 28 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1246050, + "thread": 23 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1318091, + "thread": 21 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1536654, + "thread": 6 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1671791, + "thread": 18 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 1815731, + "thread": 2 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2063318, + "thread": 23 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2235824, + "thread": 7 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2369025, + "thread": 24 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2498460, + "thread": 8 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2684111, + "thread": 3 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 2896806, + "thread": 31 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 3103629, + "thread": 2 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 3265350, + "thread": 22 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 3372972, + "thread": 12 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 3474462, + "thread": 1 + } + }, + { + "amount": "145.489193135", + "slot": { + "period": 3779466, + "thread": 6 + } + }, + { + "amount": "145.489193142", + "slot": { + "period": 3852958, + "thread": 10 + } + } + ], + "AU1MyDiLmskA4zfovzefPaPu7PhsgxDANuBRYp8rNTJ2dJNDujZd": [ + { + "amount": "81.456519195", + "slot": { + "period": 105760, + "thread": 10 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 237107, + "thread": 9 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 355876, + "thread": 7 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 542519, + "thread": 0 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 701967, + "thread": 5 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 886081, + "thread": 18 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1008615, + "thread": 19 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1288672, + "thread": 2 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1371025, + "thread": 31 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1603033, + "thread": 2 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1708212, + "thread": 21 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 1971485, + "thread": 8 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2143548, + "thread": 26 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2204462, + "thread": 29 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2404372, + "thread": 3 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2541227, + "thread": 18 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2744875, + "thread": 30 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 2917539, + "thread": 2 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 3075156, + "thread": 25 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 3139430, + "thread": 23 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 3350926, + "thread": 25 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 3474300, + "thread": 3 + } + }, + { + "amount": "81.456519195", + "slot": { + "period": 3729514, + "thread": 11 + } + }, + { + "amount": "81.456519204", + "slot": { + "period": 3945407, + "thread": 19 + } + } + ], + "AU1MyaccMoz3wc2ko1AmyTq7a4rHpgeCASifV242AfLops4s139r": [ + { + "amount": "208.591100312", + "slot": { + "period": 154989, + "thread": 30 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 272247, + "thread": 13 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 431495, + "thread": 27 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 515221, + "thread": 27 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 748930, + "thread": 2 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 843553, + "thread": 18 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1061068, + "thread": 7 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1268477, + "thread": 17 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1442423, + "thread": 17 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1571369, + "thread": 12 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1652318, + "thread": 25 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 1814054, + "thread": 3 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2062977, + "thread": 16 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2262879, + "thread": 13 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2310159, + "thread": 2 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2566847, + "thread": 4 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2720822, + "thread": 16 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 2875155, + "thread": 20 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 3089526, + "thread": 1 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 3159136, + "thread": 8 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 3407814, + "thread": 17 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 3533477, + "thread": 9 + } + }, + { + "amount": "208.591100312", + "slot": { + "period": 3678114, + "thread": 25 + } + }, + { + "amount": "208.591100305", + "slot": { + "period": 3846338, + "thread": 8 + } + } + ], + "AU1Mz9NUqQKGmuPLErEb63xfqQ67ZdF5xKWb7nkcPmsqqxQiBvSR": [ + { + "amount": "257.210071767", + "slot": { + "period": 164016, + "thread": 15 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 276011, + "thread": 24 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 415067, + "thread": 4 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 583540, + "thread": 12 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 764625, + "thread": 7 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 906999, + "thread": 31 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 988923, + "thread": 13 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 1272091, + "thread": 28 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 1380046, + "thread": 7 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 1583088, + "thread": 8 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 1798913, + "thread": 30 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 1967785, + "thread": 27 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2008684, + "thread": 1 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2270187, + "thread": 17 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2391484, + "thread": 25 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2593602, + "thread": 29 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2694857, + "thread": 7 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2931565, + "thread": 1 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 2987533, + "thread": 15 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 3133348, + "thread": 12 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 3404965, + "thread": 23 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 3501036, + "thread": 4 + } + }, + { + "amount": "257.210071767", + "slot": { + "period": 3708278, + "thread": 20 + } + }, + { + "amount": "257.210071770", + "slot": { + "period": 3813736, + "thread": 19 + } + } + ], + "AU1MzeYTKTiNDv749La2iKvp1BMeWYqZRzH6RyHQDLNXw7oHDYuH": [ + { + "amount": "510.306783641", + "slot": { + "period": 156959, + "thread": 11 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 273559, + "thread": 14 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 325286, + "thread": 7 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 527120, + "thread": 21 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 721864, + "thread": 30 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 822836, + "thread": 5 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1061185, + "thread": 12 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1296389, + "thread": 13 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1469535, + "thread": 21 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1556614, + "thread": 29 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1733591, + "thread": 29 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1892030, + "thread": 26 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 1977641, + "thread": 16 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 2155177, + "thread": 7 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 2349605, + "thread": 2 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 2593428, + "thread": 8 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 2704872, + "thread": 26 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 2869170, + "thread": 29 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 3006030, + "thread": 1 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 3216653, + "thread": 15 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 3376374, + "thread": 25 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 3481423, + "thread": 15 + } + }, + { + "amount": "510.306783641", + "slot": { + "period": 3713065, + "thread": 14 + } + }, + { + "amount": "510.306783646", + "slot": { + "period": 3888308, + "thread": 21 + } + } + ], + "AU1N15kvD5MXfkpTiauDBz6BD4YL8oGjRZtqM8jGTZYP25VBNpJk": [ + { + "amount": "122.492382854", + "slot": { + "period": 71963, + "thread": 0 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 212142, + "thread": 4 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 451306, + "thread": 28 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 536710, + "thread": 12 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 784508, + "thread": 0 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 824020, + "thread": 17 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1135470, + "thread": 29 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1207786, + "thread": 20 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1479598, + "thread": 22 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1484987, + "thread": 31 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1720248, + "thread": 5 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 1865438, + "thread": 15 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2139546, + "thread": 1 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2155800, + "thread": 18 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2403238, + "thread": 27 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2600389, + "thread": 19 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2663207, + "thread": 18 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2931580, + "thread": 23 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 2982700, + "thread": 17 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 3188565, + "thread": 16 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 3413295, + "thread": 7 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 3578310, + "thread": 12 + } + }, + { + "amount": "122.492382854", + "slot": { + "period": 3718170, + "thread": 27 + } + }, + { + "amount": "122.492382855", + "slot": { + "period": 3946385, + "thread": 13 + } + } + ], + "AU1N2bsuiraEkzjiDCExQTsxbRpWZPZ9Qaw73ipFf4XVPkxJHgvp": [ + { + "amount": "132.476625167", + "slot": { + "period": 17947, + "thread": 20 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 323375, + "thread": 7 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 356718, + "thread": 19 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 567008, + "thread": 14 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 791653, + "thread": 31 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 845840, + "thread": 2 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1136839, + "thread": 7 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1153066, + "thread": 2 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1333631, + "thread": 22 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1579973, + "thread": 6 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1657603, + "thread": 21 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 1882251, + "thread": 12 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2013822, + "thread": 22 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2156551, + "thread": 19 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2401942, + "thread": 2 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2544397, + "thread": 8 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2745137, + "thread": 9 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2892609, + "thread": 25 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 2967122, + "thread": 26 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 3217552, + "thread": 10 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 3415965, + "thread": 19 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 3513050, + "thread": 25 + } + }, + { + "amount": "132.476625167", + "slot": { + "period": 3645471, + "thread": 12 + } + }, + { + "amount": "132.476625162", + "slot": { + "period": 3901525, + "thread": 14 + } + } + ], + "AU1N3pHG6HwTuhyyQAsVySoMBmasEaDC4Fv4RgH7CQrYhcRwehBg": [ + { + "amount": "459.946736931", + "slot": { + "period": 16318, + "thread": 26 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 206102, + "thread": 16 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 348788, + "thread": 1 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 608351, + "thread": 1 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 700212, + "thread": 9 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 933616, + "thread": 4 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1098200, + "thread": 23 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1252049, + "thread": 5 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1341889, + "thread": 28 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1567913, + "thread": 1 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1799628, + "thread": 12 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 1880839, + "thread": 5 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2005902, + "thread": 1 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2289405, + "thread": 14 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2359770, + "thread": 31 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2572065, + "thread": 8 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2679693, + "thread": 26 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 2927214, + "thread": 3 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 3104697, + "thread": 24 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 3235351, + "thread": 21 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 3343880, + "thread": 11 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 3451546, + "thread": 14 + } + }, + { + "amount": "459.946736931", + "slot": { + "period": 3704067, + "thread": 19 + } + }, + { + "amount": "459.946736928", + "slot": { + "period": 3819835, + "thread": 23 + } + } + ], + "AU1N4ssNVK9tbBYHK8yRT5o1CVaC1UZcFeAra76rVyu4kYM2Ek1x": [ + { + "amount": "98.495402246", + "slot": { + "period": 62697, + "thread": 20 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 199993, + "thread": 15 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 381671, + "thread": 16 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 630160, + "thread": 30 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 680110, + "thread": 5 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 883974, + "thread": 0 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1103782, + "thread": 29 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1306245, + "thread": 1 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1468816, + "thread": 16 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1598333, + "thread": 26 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1660146, + "thread": 5 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 1831067, + "thread": 9 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2026441, + "thread": 16 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2242172, + "thread": 18 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2459102, + "thread": 18 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2620819, + "thread": 2 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2631731, + "thread": 25 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 2803504, + "thread": 22 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3096886, + "thread": 7 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3209401, + "thread": 8 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3348961, + "thread": 11 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3457054, + "thread": 26 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3753019, + "thread": 4 + } + }, + { + "amount": "98.495402246", + "slot": { + "period": 3940138, + "thread": 6 + } + } + ], + "AU1N5nUhqkinfLdreRaoVeuFLhygyz6KoiAy6MjbDDmWwmr54Xmu": [ + { + "amount": "302.502870565", + "slot": { + "period": 19657, + "thread": 30 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 269898, + "thread": 13 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 435518, + "thread": 29 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 620871, + "thread": 7 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 716101, + "thread": 11 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 960409, + "thread": 0 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1030762, + "thread": 18 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1188515, + "thread": 11 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1439123, + "thread": 14 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1526354, + "thread": 2 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1714878, + "thread": 30 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1928267, + "thread": 24 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 1986562, + "thread": 21 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 2158668, + "thread": 26 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 2373943, + "thread": 16 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 2487680, + "thread": 20 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 2696578, + "thread": 27 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 2833128, + "thread": 10 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 3045260, + "thread": 27 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 3224944, + "thread": 9 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 3288714, + "thread": 6 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 3482467, + "thread": 21 + } + }, + { + "amount": "302.502870565", + "slot": { + "period": 3697675, + "thread": 4 + } + }, + { + "amount": "302.502870559", + "slot": { + "period": 3928521, + "thread": 19 + } + } + ], + "AU1N64o96Muh1Qn8LQDMvPDj67ceTQEopqaDjdko3BK7avVWUcTg": [ + { + "amount": "52.290815608", + "slot": { + "period": 43746, + "thread": 29 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 263715, + "thread": 26 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 389735, + "thread": 29 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 609203, + "thread": 10 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 710567, + "thread": 13 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 889944, + "thread": 7 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1027154, + "thread": 29 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1312564, + "thread": 15 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1476543, + "thread": 18 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1628960, + "thread": 30 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1791292, + "thread": 30 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1849379, + "thread": 5 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 1990596, + "thread": 29 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 2189428, + "thread": 3 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 2329521, + "thread": 23 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 2603062, + "thread": 18 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 2649771, + "thread": 29 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 2818488, + "thread": 26 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3091395, + "thread": 31 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3255097, + "thread": 10 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3334151, + "thread": 14 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3473285, + "thread": 31 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3698016, + "thread": 15 + } + }, + { + "amount": "52.290815608", + "slot": { + "period": 3812922, + "thread": 3 + } + } + ], + "AU1N6QrHgosSi3avaRrRreNsHH6JHjw2TMHBKDmS1nbG3Wu15ESY": [ + { + "amount": "88.077088496", + "slot": { + "period": 159868, + "thread": 28 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 259190, + "thread": 22 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 405861, + "thread": 29 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 500938, + "thread": 2 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 663226, + "thread": 8 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 980280, + "thread": 26 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1035204, + "thread": 21 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1193197, + "thread": 28 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1477080, + "thread": 16 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1608908, + "thread": 19 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1757792, + "thread": 10 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 1935562, + "thread": 24 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2125342, + "thread": 31 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2155471, + "thread": 7 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2382894, + "thread": 30 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2465030, + "thread": 3 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2723111, + "thread": 0 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 2792092, + "thread": 20 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 3069481, + "thread": 4 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 3210267, + "thread": 3 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 3404473, + "thread": 4 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 3617421, + "thread": 20 + } + }, + { + "amount": "88.077088496", + "slot": { + "period": 3760594, + "thread": 16 + } + }, + { + "amount": "88.077088494", + "slot": { + "period": 3941857, + "thread": 1 + } + } + ], + "AU1N6cXqPFERd93dmyFRJmSVkxNesB9BQcEu7Zc5J2FvcESqcW86": [ + { + "amount": "333.252681264", + "slot": { + "period": 162889, + "thread": 2 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 269000, + "thread": 14 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 396117, + "thread": 31 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 586161, + "thread": 17 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 653885, + "thread": 2 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 845472, + "thread": 19 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1005664, + "thread": 9 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1284216, + "thread": 6 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1468934, + "thread": 16 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1551011, + "thread": 18 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1803598, + "thread": 14 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 1838389, + "thread": 16 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2138649, + "thread": 16 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2166767, + "thread": 21 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2366866, + "thread": 12 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2598213, + "thread": 13 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2746656, + "thread": 22 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 2934082, + "thread": 17 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 3011608, + "thread": 24 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 3161249, + "thread": 28 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 3389042, + "thread": 28 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 3470869, + "thread": 11 + } + }, + { + "amount": "333.252681264", + "slot": { + "period": 3758786, + "thread": 26 + } + }, + { + "amount": "333.252681273", + "slot": { + "period": 3943498, + "thread": 6 + } + } + ], + "AU1N7GizgYmd7tgNnKTfjep2CbMcRrTm3cqYFYrDXTZ7WyRhM578": [ + { + "amount": "257.376648785", + "slot": { + "period": 106664, + "thread": 28 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 201212, + "thread": 18 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 366605, + "thread": 5 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 544490, + "thread": 23 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 761435, + "thread": 0 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 894234, + "thread": 20 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1120892, + "thread": 10 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1271722, + "thread": 12 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1447844, + "thread": 11 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1621663, + "thread": 20 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1802013, + "thread": 4 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 1946457, + "thread": 31 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2115931, + "thread": 30 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2180802, + "thread": 9 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2456455, + "thread": 26 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2532536, + "thread": 18 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2788209, + "thread": 6 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2907723, + "thread": 25 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 2979376, + "thread": 1 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 3164738, + "thread": 18 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 3305466, + "thread": 18 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 3498709, + "thread": 7 + } + }, + { + "amount": "257.376648785", + "slot": { + "period": 3662447, + "thread": 6 + } + }, + { + "amount": "257.376648784", + "slot": { + "period": 3885666, + "thread": 29 + } + } + ], + "AU1N7LhRzfs11Cb5xnujb4HAf1Cw8Ltpf6894oVsqkT7gu6gG8M9": [ + { + "amount": "115.456441018", + "slot": { + "period": 123116, + "thread": 1 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 260111, + "thread": 29 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 353714, + "thread": 3 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 548101, + "thread": 15 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 665421, + "thread": 26 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 951262, + "thread": 1 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 983686, + "thread": 8 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 1167619, + "thread": 23 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 1367270, + "thread": 12 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 1519577, + "thread": 22 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 1679826, + "thread": 8 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 1901923, + "thread": 3 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2060043, + "thread": 31 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2192528, + "thread": 22 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2365582, + "thread": 17 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2618913, + "thread": 27 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2649875, + "thread": 19 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2935338, + "thread": 31 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 2976082, + "thread": 30 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 3195940, + "thread": 8 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 3295632, + "thread": 28 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 3534110, + "thread": 11 + } + }, + { + "amount": "115.456441018", + "slot": { + "period": 3676982, + "thread": 29 + } + }, + { + "amount": "115.456441006", + "slot": { + "period": 3945688, + "thread": 9 + } + } + ], + "AU1N7bbuEBbsbDS6CEziw7K7QisyPv8dubbwMC5TKhVma2VjsgDH": [ + { + "amount": "86.686914470", + "slot": { + "period": 54952, + "thread": 6 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 251939, + "thread": 20 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 348560, + "thread": 17 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 523027, + "thread": 17 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 655070, + "thread": 1 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 940756, + "thread": 11 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1032353, + "thread": 15 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1311302, + "thread": 18 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1347529, + "thread": 7 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1568323, + "thread": 4 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1775864, + "thread": 23 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 1911119, + "thread": 15 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2060022, + "thread": 19 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2170904, + "thread": 17 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2311036, + "thread": 7 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2463786, + "thread": 25 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2773452, + "thread": 7 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2900546, + "thread": 6 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 2968794, + "thread": 2 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 3135843, + "thread": 9 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 3441147, + "thread": 3 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 3577361, + "thread": 15 + } + }, + { + "amount": "86.686914470", + "slot": { + "period": 3688585, + "thread": 21 + } + }, + { + "amount": "86.686914465", + "slot": { + "period": 3834083, + "thread": 23 + } + } + ], + "AU1N7f7nMxfohpugX5UmD2uXhWnMqG49Mp9mTvHdRfyELW6KUWjg": [ + { + "amount": "448.837527781", + "slot": { + "period": 39387, + "thread": 4 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 203990, + "thread": 17 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 445192, + "thread": 1 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 628852, + "thread": 17 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 779447, + "thread": 6 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 931542, + "thread": 12 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1134741, + "thread": 7 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1180033, + "thread": 27 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1442497, + "thread": 12 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1583354, + "thread": 8 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1774015, + "thread": 31 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 1922801, + "thread": 31 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2059163, + "thread": 28 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2211078, + "thread": 29 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2348090, + "thread": 27 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2564294, + "thread": 12 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2679833, + "thread": 11 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2907038, + "thread": 30 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 2972444, + "thread": 17 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 3244875, + "thread": 16 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 3369573, + "thread": 4 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 3563939, + "thread": 28 + } + }, + { + "amount": "448.837527781", + "slot": { + "period": 3731770, + "thread": 5 + } + }, + { + "amount": "448.837527774", + "slot": { + "period": 3804284, + "thread": 0 + } + } + ], + "AU1N7qcg4Pamqukzbsb8YFMnmmaWsXktYhoartSxwign1rqZdyfa": [ + { + "amount": "306.237723708", + "slot": { + "period": 88838, + "thread": 0 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 271429, + "thread": 4 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 381607, + "thread": 25 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 605972, + "thread": 11 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 782316, + "thread": 29 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 899515, + "thread": 1 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1083773, + "thread": 17 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1212139, + "thread": 24 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1331170, + "thread": 10 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1564945, + "thread": 15 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1697150, + "thread": 3 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 1960883, + "thread": 11 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2128769, + "thread": 7 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2204475, + "thread": 31 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2364504, + "thread": 27 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2498433, + "thread": 2 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2718960, + "thread": 22 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 2892716, + "thread": 9 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 3102874, + "thread": 21 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 3240052, + "thread": 7 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 3426751, + "thread": 6 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 3468216, + "thread": 12 + } + }, + { + "amount": "306.237723708", + "slot": { + "period": 3661789, + "thread": 28 + } + }, + { + "amount": "306.237723697", + "slot": { + "period": 3833856, + "thread": 14 + } + } + ], + "AU1N8DtttvhAWYHDQieNc7c29E59e4b5QgwW6chYXxYAoe2ApF2K": [ + { + "amount": "494.610855255", + "slot": { + "period": 117714, + "thread": 29 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 229984, + "thread": 21 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 416168, + "thread": 11 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 566953, + "thread": 6 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 820639, + "thread": 17 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 851002, + "thread": 7 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1019460, + "thread": 23 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1222530, + "thread": 20 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1402124, + "thread": 15 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1626413, + "thread": 3 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1698473, + "thread": 3 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 1954296, + "thread": 1 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2046326, + "thread": 8 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2235196, + "thread": 2 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2344039, + "thread": 25 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2527155, + "thread": 21 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2708158, + "thread": 11 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2934215, + "thread": 2 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 2993661, + "thread": 17 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 3166465, + "thread": 22 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 3380539, + "thread": 7 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 3551440, + "thread": 28 + } + }, + { + "amount": "494.610855255", + "slot": { + "period": 3762921, + "thread": 9 + } + }, + { + "amount": "494.610855248", + "slot": { + "period": 3784984, + "thread": 11 + } + } + ], + "AU1N9Ztg1Y3ZDLs4RKbsDJPfvVyZSMV1EcEJXCMtnSbECScumBn3": [ + { + "amount": "78.996585005", + "slot": { + "period": 76823, + "thread": 28 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 265113, + "thread": 31 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 458500, + "thread": 16 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 503127, + "thread": 28 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 816859, + "thread": 22 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 916503, + "thread": 26 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1067768, + "thread": 30 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1200918, + "thread": 9 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1449807, + "thread": 22 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1619026, + "thread": 17 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1766587, + "thread": 15 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 1831204, + "thread": 26 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2036551, + "thread": 8 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2170168, + "thread": 19 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2347225, + "thread": 26 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2593508, + "thread": 9 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2668338, + "thread": 25 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2802430, + "thread": 26 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 2981088, + "thread": 25 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 3251856, + "thread": 14 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 3449010, + "thread": 5 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 3555502, + "thread": 31 + } + }, + { + "amount": "78.996585005", + "slot": { + "period": 3770166, + "thread": 25 + } + }, + { + "amount": "78.996585002", + "slot": { + "period": 3943108, + "thread": 10 + } + } + ], + "AU1NA3MkRaSitvs1VSGddPruHFcbFxVoC8sxdkDbWsHBKYZziyEE": [ + { + "amount": "378.810646309", + "slot": { + "period": 133799, + "thread": 7 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 270145, + "thread": 15 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 453762, + "thread": 16 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 619405, + "thread": 13 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 774975, + "thread": 9 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 914429, + "thread": 20 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1014647, + "thread": 8 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1307621, + "thread": 12 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1342121, + "thread": 0 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1591055, + "thread": 31 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1728558, + "thread": 4 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 1848318, + "thread": 12 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2065043, + "thread": 4 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2167241, + "thread": 17 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2366519, + "thread": 7 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2598374, + "thread": 2 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2711077, + "thread": 21 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 2938224, + "thread": 6 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 3018546, + "thread": 10 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 3282656, + "thread": 5 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 3316995, + "thread": 9 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 3534617, + "thread": 13 + } + }, + { + "amount": "378.810646309", + "slot": { + "period": 3685724, + "thread": 0 + } + }, + { + "amount": "378.810646320", + "slot": { + "period": 3818152, + "thread": 11 + } + } + ], + "AU1NA8FqqXo96189wiGrjwhuU4RyVfnMR51fAKtfFYthbHW3Q6wm": [ + { + "amount": "136.189806550", + "slot": { + "period": 25759, + "thread": 6 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 321309, + "thread": 30 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 448020, + "thread": 1 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 580297, + "thread": 3 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 690101, + "thread": 1 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 842342, + "thread": 12 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1080747, + "thread": 15 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1211680, + "thread": 8 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1415562, + "thread": 17 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1508377, + "thread": 29 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1784255, + "thread": 13 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 1828842, + "thread": 10 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2013174, + "thread": 24 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2147071, + "thread": 6 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2325317, + "thread": 0 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2525403, + "thread": 9 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2691002, + "thread": 0 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 2848055, + "thread": 4 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 3077667, + "thread": 17 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 3241047, + "thread": 31 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 3338188, + "thread": 16 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 3559021, + "thread": 9 + } + }, + { + "amount": "136.189806550", + "slot": { + "period": 3650473, + "thread": 30 + } + }, + { + "amount": "136.189806551", + "slot": { + "period": 3921030, + "thread": 25 + } + } + ], + "AU1NAXfDbEUT6w1P1EeXivZLzZNczs2dnr5gkwXpumu8vcfd4Maf": [ + { + "amount": "131.937445590", + "slot": { + "period": 100925, + "thread": 12 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 304413, + "thread": 7 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 426738, + "thread": 5 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 559358, + "thread": 15 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 679291, + "thread": 8 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 912536, + "thread": 13 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 991664, + "thread": 23 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 1217128, + "thread": 8 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 1383394, + "thread": 20 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 1600781, + "thread": 16 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 1799609, + "thread": 12 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 1864549, + "thread": 18 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2025535, + "thread": 25 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2267349, + "thread": 20 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2432327, + "thread": 1 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2596528, + "thread": 20 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2736482, + "thread": 18 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 2818352, + "thread": 21 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 3037720, + "thread": 23 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 3278595, + "thread": 16 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 3330057, + "thread": 14 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 3592360, + "thread": 30 + } + }, + { + "amount": "131.937445590", + "slot": { + "period": 3679838, + "thread": 11 + } + }, + { + "amount": "131.937445589", + "slot": { + "period": 3783356, + "thread": 4 + } + } + ], + "AU1NB4g1yzpqcTPGAAUJirLxmBT63Z6ESEtNARwBNwsQiwegHAGx": [ + { + "amount": "228.613696050", + "slot": { + "period": 152614, + "thread": 0 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 307422, + "thread": 23 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 413757, + "thread": 4 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 592464, + "thread": 30 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 819957, + "thread": 25 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 974319, + "thread": 13 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1122323, + "thread": 25 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1220987, + "thread": 6 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1403839, + "thread": 9 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1479958, + "thread": 3 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1730859, + "thread": 11 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 1823251, + "thread": 21 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2079728, + "thread": 10 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2165394, + "thread": 11 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2417902, + "thread": 8 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2471776, + "thread": 20 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2739823, + "thread": 16 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2915987, + "thread": 0 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 2994874, + "thread": 14 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 3146288, + "thread": 17 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 3415499, + "thread": 0 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 3600140, + "thread": 29 + } + }, + { + "amount": "228.613696050", + "slot": { + "period": 3644012, + "thread": 3 + } + }, + { + "amount": "228.613696059", + "slot": { + "period": 3926310, + "thread": 28 + } + } + ], + "AU1NCSiLhcfRmCHHPxssoeEdt3pZA8hzAiriv5TyXzRRJWkkMZMM": [ + { + "amount": "75.349451676", + "slot": { + "period": 153523, + "thread": 5 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 197269, + "thread": 30 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 470606, + "thread": 10 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 632696, + "thread": 29 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 807060, + "thread": 5 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 885212, + "thread": 19 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1077051, + "thread": 10 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1313639, + "thread": 4 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1448926, + "thread": 15 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1597523, + "thread": 16 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1777104, + "thread": 15 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 1849570, + "thread": 20 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2029681, + "thread": 10 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2233274, + "thread": 3 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2363296, + "thread": 27 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2480158, + "thread": 14 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2776636, + "thread": 24 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 2862649, + "thread": 28 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 3107592, + "thread": 30 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 3277793, + "thread": 5 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 3408271, + "thread": 28 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 3542462, + "thread": 22 + } + }, + { + "amount": "75.349451676", + "slot": { + "period": 3670705, + "thread": 4 + } + }, + { + "amount": "75.349451674", + "slot": { + "period": 3863354, + "thread": 11 + } + } + ], + "AU1NCTKRhG2vSQX8fzKU2Dxz1yYzhJHTWHf9fhr4cbzAQDtW3exd": [ + { + "amount": "138.045496380", + "slot": { + "period": 126181, + "thread": 29 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 303463, + "thread": 28 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 413213, + "thread": 27 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 576601, + "thread": 1 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 814219, + "thread": 9 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 927892, + "thread": 28 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1053626, + "thread": 11 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1225755, + "thread": 2 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1369246, + "thread": 30 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1503006, + "thread": 19 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1775212, + "thread": 13 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 1920767, + "thread": 29 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2030488, + "thread": 29 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2187756, + "thread": 18 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2424712, + "thread": 31 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2579102, + "thread": 28 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2638288, + "thread": 19 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2845665, + "thread": 7 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 2966728, + "thread": 3 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 3152711, + "thread": 31 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 3321927, + "thread": 16 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 3525560, + "thread": 0 + } + }, + { + "amount": "138.045496380", + "slot": { + "period": 3659707, + "thread": 24 + } + }, + { + "amount": "138.045496371", + "slot": { + "period": 3859420, + "thread": 21 + } + } + ], + "AU1NCUjWVGXWcvqmVwQEa7nMJpB1KACsm1ri738UydkaWpfcDENC": [ + { + "amount": "144.234158190", + "slot": { + "period": 103757, + "thread": 14 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 261147, + "thread": 22 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 396690, + "thread": 28 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 573101, + "thread": 29 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 815428, + "thread": 20 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 856537, + "thread": 27 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1124678, + "thread": 22 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1215310, + "thread": 6 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1441224, + "thread": 0 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1532836, + "thread": 11 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1786258, + "thread": 1 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 1870631, + "thread": 7 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2007963, + "thread": 2 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2164014, + "thread": 23 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2454787, + "thread": 28 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2556507, + "thread": 22 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2735865, + "thread": 15 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2908647, + "thread": 22 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 2993814, + "thread": 0 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 3257821, + "thread": 13 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 3405401, + "thread": 8 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 3526874, + "thread": 19 + } + }, + { + "amount": "144.234158190", + "slot": { + "period": 3630000, + "thread": 0 + } + }, + { + "amount": "144.234158185", + "slot": { + "period": 3908749, + "thread": 15 + } + } + ], + "AU1NDDLF9dJrXeBMFmpXHiMFL8Lo3mFaXeZLoa3k1XdLAvhamWbH": [ + { + "amount": "441.035723797", + "slot": { + "period": 84804, + "thread": 11 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 299083, + "thread": 30 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 359738, + "thread": 10 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 638366, + "thread": 4 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 678637, + "thread": 11 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 840484, + "thread": 7 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1011943, + "thread": 24 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1178665, + "thread": 20 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1398807, + "thread": 0 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1588353, + "thread": 22 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1749064, + "thread": 7 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 1817373, + "thread": 22 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2019314, + "thread": 23 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2257911, + "thread": 20 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2323507, + "thread": 5 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2561331, + "thread": 18 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2701635, + "thread": 22 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2807887, + "thread": 20 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 2996096, + "thread": 12 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 3270847, + "thread": 0 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 3394021, + "thread": 17 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 3480168, + "thread": 22 + } + }, + { + "amount": "441.035723797", + "slot": { + "period": 3758508, + "thread": 23 + } + }, + { + "amount": "441.035723788", + "slot": { + "period": 3935818, + "thread": 15 + } + } + ], + "AU1NE4jgQ8CjA9mo5tfQigTLadb7dRbT79WEmdae724hMJZ2gceC": [ + { + "amount": "58.945099898", + "slot": { + "period": 153717, + "thread": 29 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 320446, + "thread": 1 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 389089, + "thread": 5 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 610251, + "thread": 25 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 680580, + "thread": 21 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 890939, + "thread": 7 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1025709, + "thread": 25 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1223197, + "thread": 0 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1339950, + "thread": 21 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1605621, + "thread": 1 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1711512, + "thread": 31 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 1850966, + "thread": 16 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2093812, + "thread": 17 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2234777, + "thread": 20 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2364349, + "thread": 6 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2538715, + "thread": 4 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2629481, + "thread": 16 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 2835160, + "thread": 20 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 3052999, + "thread": 9 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 3218010, + "thread": 20 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 3397818, + "thread": 22 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 3559189, + "thread": 16 + } + }, + { + "amount": "58.945099898", + "slot": { + "period": 3696030, + "thread": 1 + } + }, + { + "amount": "58.945099909", + "slot": { + "period": 3922136, + "thread": 23 + } + } + ], + "AU1NEvJNsbD5w7g58zHkiimYu3XgRcbZYiQLCHyfCBPKKoK6y252": [ + { + "amount": "325.144271173", + "slot": { + "period": 32513, + "thread": 12 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 248018, + "thread": 17 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 489768, + "thread": 2 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 609969, + "thread": 30 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 674862, + "thread": 14 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 915134, + "thread": 0 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1134673, + "thread": 15 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1206663, + "thread": 25 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1453094, + "thread": 11 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1516116, + "thread": 7 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1652203, + "thread": 22 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 1970207, + "thread": 23 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2121228, + "thread": 31 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2248885, + "thread": 21 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2302330, + "thread": 23 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2570547, + "thread": 12 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2744702, + "thread": 10 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 2812163, + "thread": 16 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 3078648, + "thread": 13 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 3204767, + "thread": 31 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 3377896, + "thread": 0 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 3492950, + "thread": 0 + } + }, + { + "amount": "325.144271173", + "slot": { + "period": 3698672, + "thread": 30 + } + }, + { + "amount": "325.144271168", + "slot": { + "period": 3820743, + "thread": 17 + } + } + ], + "AU1NFo2v3LcvCkjeNLiUKpmhHRhmQ3ks78TYkpPihkNBH6j59Dkx": [ + { + "amount": "256.716970453", + "slot": { + "period": 85489, + "thread": 23 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 175089, + "thread": 4 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 361144, + "thread": 12 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 495318, + "thread": 2 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 689828, + "thread": 11 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 895887, + "thread": 23 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1146961, + "thread": 28 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1181072, + "thread": 9 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1376125, + "thread": 20 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1538123, + "thread": 20 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1705645, + "thread": 28 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 1933324, + "thread": 3 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2005867, + "thread": 0 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2162653, + "thread": 5 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2330951, + "thread": 11 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2496779, + "thread": 1 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2627083, + "thread": 1 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 2897844, + "thread": 17 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 3039634, + "thread": 29 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 3178196, + "thread": 3 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 3364704, + "thread": 17 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 3480131, + "thread": 6 + } + }, + { + "amount": "256.716970453", + "slot": { + "period": 3698409, + "thread": 30 + } + }, + { + "amount": "256.716970462", + "slot": { + "period": 3876138, + "thread": 8 + } + } + ], + "AU1NGx9PjbxbYsuBzPfEc1EutewBk6tNvVoyou16KmBk9ovQ5AYg": [ + { + "amount": "495.619080257", + "slot": { + "period": 68485, + "thread": 11 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 233470, + "thread": 26 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 438673, + "thread": 5 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 622675, + "thread": 12 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 810856, + "thread": 26 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 858045, + "thread": 24 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1073959, + "thread": 8 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1207930, + "thread": 26 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1397145, + "thread": 16 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1481354, + "thread": 29 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1739738, + "thread": 20 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 1842822, + "thread": 9 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2118920, + "thread": 2 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2203694, + "thread": 6 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2377344, + "thread": 4 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2523267, + "thread": 5 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2717575, + "thread": 9 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2901992, + "thread": 1 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 2955426, + "thread": 17 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 3153616, + "thread": 28 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 3362590, + "thread": 11 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 3568981, + "thread": 5 + } + }, + { + "amount": "495.619080257", + "slot": { + "period": 3659577, + "thread": 26 + } + }, + { + "amount": "495.619080251", + "slot": { + "period": 3806377, + "thread": 21 + } + } + ], + "AU1NJ9vVFdhoNCBsuwK5CmdRVAHGLgAzYddWB4BGDYJrxqo38pVq": [ + { + "amount": "602.455863767", + "slot": { + "period": 18882, + "thread": 19 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 267566, + "thread": 6 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 431471, + "thread": 25 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 626835, + "thread": 27 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 686538, + "thread": 7 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 822224, + "thread": 8 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1133546, + "thread": 17 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1270735, + "thread": 24 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1450562, + "thread": 3 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1626007, + "thread": 22 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1649756, + "thread": 2 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 1938545, + "thread": 24 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2005403, + "thread": 1 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2210723, + "thread": 21 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2321271, + "thread": 23 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2515846, + "thread": 3 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2651927, + "thread": 9 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2935820, + "thread": 2 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 2999526, + "thread": 20 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 3143515, + "thread": 30 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 3364247, + "thread": 25 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 3573471, + "thread": 27 + } + }, + { + "amount": "602.455863767", + "slot": { + "period": 3618204, + "thread": 8 + } + }, + { + "amount": "602.455863777", + "slot": { + "period": 3933082, + "thread": 16 + } + } + ], + "AU1NJEjf3Jj9Ld1nL6V9MFMH2BNux7SxmHMARNyHM1K3Nrwzqm9T": [ + { + "amount": "412.452566088", + "slot": { + "period": 131839, + "thread": 25 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 276533, + "thread": 0 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 467375, + "thread": 18 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 635164, + "thread": 10 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 804177, + "thread": 0 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 979988, + "thread": 8 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 984716, + "thread": 27 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 1248410, + "thread": 0 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 1398092, + "thread": 12 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 1509649, + "thread": 15 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 1686615, + "thread": 31 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 1901206, + "thread": 5 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2033308, + "thread": 22 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2257650, + "thread": 2 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2348182, + "thread": 27 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2536105, + "thread": 31 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2787969, + "thread": 29 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 2813845, + "thread": 11 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 3046404, + "thread": 14 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 3244286, + "thread": 15 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 3418504, + "thread": 5 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 3494207, + "thread": 21 + } + }, + { + "amount": "412.452566088", + "slot": { + "period": 3688604, + "thread": 24 + } + }, + { + "amount": "412.452566098", + "slot": { + "period": 3917251, + "thread": 30 + } + } + ], + "AU1NJSvKoTbvV5UQwU3ZBBnLtxKtGRL14QufRkFgK9CdZRYtg5BX": [ + { + "amount": "138.420080639", + "slot": { + "period": 89556, + "thread": 16 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 225758, + "thread": 5 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 410951, + "thread": 19 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 558826, + "thread": 24 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 710629, + "thread": 4 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 960099, + "thread": 30 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 983444, + "thread": 11 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 1252871, + "thread": 18 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 1373954, + "thread": 3 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 1645921, + "thread": 15 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 1708649, + "thread": 12 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 1862349, + "thread": 24 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2110733, + "thread": 30 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2169482, + "thread": 21 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2348471, + "thread": 8 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2512659, + "thread": 7 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2724106, + "thread": 2 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2888571, + "thread": 4 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 2989032, + "thread": 9 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 3238035, + "thread": 15 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 3421560, + "thread": 0 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 3546083, + "thread": 27 + } + }, + { + "amount": "138.420080639", + "slot": { + "period": 3750614, + "thread": 12 + } + }, + { + "amount": "138.420080643", + "slot": { + "period": 3803587, + "thread": 12 + } + } + ], + "AU1NJT1GkdLyGzqrJHUskJVN1P22Lic92ANNZTbn5CnCFK4X9BzQ": [ + { + "amount": "228.699931900", + "slot": { + "period": 117426, + "thread": 14 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 237507, + "thread": 24 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 407627, + "thread": 1 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 543413, + "thread": 29 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 801804, + "thread": 21 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 956571, + "thread": 7 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1007036, + "thread": 24 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1206871, + "thread": 22 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1411488, + "thread": 0 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1636318, + "thread": 16 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1674715, + "thread": 22 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 1911463, + "thread": 29 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2087107, + "thread": 6 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2167164, + "thread": 28 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2420004, + "thread": 13 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2502438, + "thread": 7 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2641592, + "thread": 17 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2916387, + "thread": 4 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 2981193, + "thread": 14 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 3176866, + "thread": 19 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 3333288, + "thread": 24 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 3498606, + "thread": 24 + } + }, + { + "amount": "228.699931900", + "slot": { + "period": 3746317, + "thread": 7 + } + }, + { + "amount": "228.699931891", + "slot": { + "period": 3783310, + "thread": 21 + } + } + ], + "AU1NJYEsiFXsJfdo9p4yks9AN6Gpx9wUwCfAVqEfUoUTL8gxGr6d": [ + { + "amount": "66.947529460", + "slot": { + "period": 125454, + "thread": 31 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 255660, + "thread": 16 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 372642, + "thread": 26 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 590035, + "thread": 22 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 736660, + "thread": 15 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 911701, + "thread": 17 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1043982, + "thread": 2 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1214186, + "thread": 14 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1352267, + "thread": 17 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1611820, + "thread": 12 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1779752, + "thread": 1 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1965970, + "thread": 11 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 1997883, + "thread": 6 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 2180205, + "thread": 22 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 2392259, + "thread": 14 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 2519359, + "thread": 12 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 2760981, + "thread": 0 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 2873978, + "thread": 6 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 3067687, + "thread": 27 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 3166927, + "thread": 29 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 3304156, + "thread": 22 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 3486305, + "thread": 22 + } + }, + { + "amount": "66.947529460", + "slot": { + "period": 3668703, + "thread": 9 + } + }, + { + "amount": "66.947529454", + "slot": { + "period": 3811399, + "thread": 31 + } + } + ], + "AU1NKD3xiuzM7Yyc54JY7LAHBysZw2UQrpbjB9Vs2z4k7jRhdbDL": [ + { + "amount": "141.479572080", + "slot": { + "period": 40541, + "thread": 7 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 305848, + "thread": 24 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 331040, + "thread": 11 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 623162, + "thread": 5 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 677354, + "thread": 16 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 968936, + "thread": 10 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 998659, + "thread": 8 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 1171430, + "thread": 11 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 1398407, + "thread": 18 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 1585551, + "thread": 1 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 1735579, + "thread": 17 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 1862550, + "thread": 26 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2023895, + "thread": 7 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2281184, + "thread": 15 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2330137, + "thread": 13 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2551472, + "thread": 18 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2629411, + "thread": 27 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 2862377, + "thread": 11 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 3073512, + "thread": 24 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 3269692, + "thread": 31 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 3368205, + "thread": 23 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 3465673, + "thread": 8 + } + }, + { + "amount": "141.479572080", + "slot": { + "period": 3643341, + "thread": 9 + } + }, + { + "amount": "141.479572073", + "slot": { + "period": 3869471, + "thread": 9 + } + } + ], + "AU1NKHFmb5PoaQDS8ZJDCbLU1jJBh7K1Y5kC8jd2ZY3qy1pfmiKx": [ + { + "amount": "132.310201705", + "slot": { + "period": 86695, + "thread": 0 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 167501, + "thread": 16 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 365304, + "thread": 1 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 584881, + "thread": 23 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 818001, + "thread": 10 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 869927, + "thread": 7 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1064396, + "thread": 16 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1218246, + "thread": 7 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1470890, + "thread": 22 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1505020, + "thread": 14 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1694185, + "thread": 5 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 1907528, + "thread": 29 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2133807, + "thread": 4 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2216104, + "thread": 25 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2406073, + "thread": 26 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2606274, + "thread": 21 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2697986, + "thread": 28 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2804644, + "thread": 13 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 2994146, + "thread": 13 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 3163922, + "thread": 28 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 3378560, + "thread": 27 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 3617605, + "thread": 4 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 3678172, + "thread": 29 + } + }, + { + "amount": "132.310201705", + "slot": { + "period": 3804885, + "thread": 30 + } + } + ], + "AU1NKS8xz11tmfwkFmbFU9jNWeGjpNtkiUZZ4yXMB8Dy2vgk1ChV": [ + { + "amount": "56.200811553", + "slot": { + "period": 152993, + "thread": 2 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 212904, + "thread": 10 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 337098, + "thread": 25 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 497657, + "thread": 26 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 799195, + "thread": 27 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 977654, + "thread": 28 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1149564, + "thread": 7 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1315127, + "thread": 22 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1322842, + "thread": 4 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1563078, + "thread": 20 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1722845, + "thread": 10 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 1809803, + "thread": 0 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2056201, + "thread": 17 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2207829, + "thread": 8 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2408826, + "thread": 24 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2541343, + "thread": 14 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2771773, + "thread": 1 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 2865091, + "thread": 8 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 3031325, + "thread": 21 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 3182145, + "thread": 16 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 3421223, + "thread": 5 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 3614278, + "thread": 21 + } + }, + { + "amount": "56.200811553", + "slot": { + "period": 3678480, + "thread": 27 + } + }, + { + "amount": "56.200811551", + "slot": { + "period": 3911042, + "thread": 22 + } + } + ], + "AU1NLRj5VweoHHwqd4w9SuxCBpps2KbYCxJ2w76HfdG4RndgusDb": [ + { + "amount": "105.696426729", + "slot": { + "period": 109758, + "thread": 29 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 189932, + "thread": 7 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 358843, + "thread": 22 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 644626, + "thread": 22 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 788998, + "thread": 14 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 860809, + "thread": 6 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1130409, + "thread": 31 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1186787, + "thread": 25 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1380161, + "thread": 29 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1521400, + "thread": 18 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1767119, + "thread": 15 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 1843019, + "thread": 19 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2027844, + "thread": 1 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2184247, + "thread": 12 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2451561, + "thread": 12 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2514519, + "thread": 0 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2788727, + "thread": 25 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2864920, + "thread": 10 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 2966349, + "thread": 9 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 3244285, + "thread": 4 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 3305453, + "thread": 15 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 3450827, + "thread": 11 + } + }, + { + "amount": "105.696426729", + "slot": { + "period": 3758875, + "thread": 31 + } + }, + { + "amount": "105.696426735", + "slot": { + "period": 3900884, + "thread": 28 + } + } + ], + "AU1NLXrpyNjrGxG4xdk6M5Qdkm9Rv2qHVNsbCspytALBs4DZJPiM": [ + { + "amount": "90.990202210", + "slot": { + "period": 135671, + "thread": 26 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 289201, + "thread": 16 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 403476, + "thread": 9 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 513881, + "thread": 12 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 818177, + "thread": 29 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 866121, + "thread": 3 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1051086, + "thread": 24 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1213146, + "thread": 25 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1475966, + "thread": 21 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1503791, + "thread": 8 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1787308, + "thread": 22 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 1938857, + "thread": 14 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2038818, + "thread": 25 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2198620, + "thread": 25 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2363652, + "thread": 14 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2530126, + "thread": 18 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2675260, + "thread": 0 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 2940342, + "thread": 29 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 3041666, + "thread": 15 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 3244756, + "thread": 0 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 3322763, + "thread": 14 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 3501682, + "thread": 6 + } + }, + { + "amount": "90.990202210", + "slot": { + "period": 3677794, + "thread": 29 + } + }, + { + "amount": "90.990202202", + "slot": { + "period": 3932179, + "thread": 18 + } + } + ], + "AU1NLhtTuxSv2YqAjVhVyf7i9tg51k9aLUs9ZE9pMhhinqaN95E5": [ + { + "amount": "151.263886763", + "slot": { + "period": 125933, + "thread": 15 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 276700, + "thread": 7 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 350006, + "thread": 9 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 614350, + "thread": 1 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 798912, + "thread": 19 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 953096, + "thread": 11 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1008281, + "thread": 4 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1292180, + "thread": 8 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1381659, + "thread": 8 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1603828, + "thread": 24 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1788757, + "thread": 31 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 1846856, + "thread": 14 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2091703, + "thread": 21 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2253617, + "thread": 24 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2402987, + "thread": 9 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2519072, + "thread": 30 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2653728, + "thread": 24 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 2836803, + "thread": 15 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 3119639, + "thread": 23 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 3189589, + "thread": 6 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 3402480, + "thread": 31 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 3463315, + "thread": 10 + } + }, + { + "amount": "151.263886763", + "slot": { + "period": 3697373, + "thread": 7 + } + }, + { + "amount": "151.263886768", + "slot": { + "period": 3788060, + "thread": 7 + } + } + ], + "AU1NN6WvopRgwGbonxLno296xra84C71kM3xFqiffAjTQQiJh6qg": [ + { + "amount": "237.420934620", + "slot": { + "period": 129299, + "thread": 29 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 269500, + "thread": 3 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 437077, + "thread": 8 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 533848, + "thread": 21 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 766507, + "thread": 14 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 856511, + "thread": 29 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1113553, + "thread": 9 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1209081, + "thread": 11 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1438821, + "thread": 20 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1580397, + "thread": 17 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1753726, + "thread": 24 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 1811732, + "thread": 2 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2098503, + "thread": 19 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2248870, + "thread": 8 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2335754, + "thread": 29 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2578497, + "thread": 26 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2746573, + "thread": 29 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 2815499, + "thread": 18 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3019580, + "thread": 1 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3240272, + "thread": 20 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3349950, + "thread": 23 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3610612, + "thread": 8 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3681759, + "thread": 7 + } + }, + { + "amount": "237.420934620", + "slot": { + "period": 3886507, + "thread": 25 + } + } + ], + "AU1NNfMpS4fpfgwpaHWJD8H7AkJ3TpmvR2cAVbgbsbspGFFgBT3a": [ + { + "amount": "2269.218072041", + "slot": { + "period": 90533, + "thread": 14 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 202504, + "thread": 31 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 421930, + "thread": 18 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 623499, + "thread": 29 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 700399, + "thread": 12 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 960058, + "thread": 8 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1123604, + "thread": 9 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1189257, + "thread": 14 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1325753, + "thread": 12 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1574944, + "thread": 24 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1759364, + "thread": 7 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 1849205, + "thread": 22 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2092765, + "thread": 12 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2263831, + "thread": 1 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2447997, + "thread": 18 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2520822, + "thread": 0 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2673026, + "thread": 23 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 2866473, + "thread": 23 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 3000370, + "thread": 19 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 3155002, + "thread": 5 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 3379763, + "thread": 9 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 3530914, + "thread": 14 + } + }, + { + "amount": "2269.218072041", + "slot": { + "period": 3708241, + "thread": 15 + } + }, + { + "amount": "2269.218072057", + "slot": { + "period": 3886734, + "thread": 13 + } + } + ], + "AU1NPTxrgx4rsAexv13UdsDpkAC5V2Rhx5S9raBAGUvW62brCy7D": [ + { + "amount": "193.159860349", + "slot": { + "period": 66096, + "thread": 31 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 238956, + "thread": 26 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 444501, + "thread": 24 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 578108, + "thread": 13 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 684101, + "thread": 2 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 844995, + "thread": 14 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1003826, + "thread": 25 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1314858, + "thread": 0 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1322541, + "thread": 23 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1497449, + "thread": 20 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1674879, + "thread": 10 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 1815298, + "thread": 31 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2091344, + "thread": 9 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2268438, + "thread": 24 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2402050, + "thread": 23 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2559555, + "thread": 25 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2698066, + "thread": 2 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 2896994, + "thread": 30 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 3015500, + "thread": 7 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 3206879, + "thread": 7 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 3296439, + "thread": 20 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 3524101, + "thread": 25 + } + }, + { + "amount": "193.159860349", + "slot": { + "period": 3746164, + "thread": 25 + } + }, + { + "amount": "193.159860360", + "slot": { + "period": 3874315, + "thread": 23 + } + } + ], + "AU1NPXcPddHNKH3iKPzKNEeMUCTzjajuX2M7PJYseZb5Eof3Wyi5": [ + { + "amount": "257.950036951", + "slot": { + "period": 146555, + "thread": 14 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 220119, + "thread": 11 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 384009, + "thread": 10 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 650931, + "thread": 2 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 686528, + "thread": 24 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 883491, + "thread": 25 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 996513, + "thread": 27 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 1266453, + "thread": 21 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 1374390, + "thread": 15 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 1586206, + "thread": 30 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 1785513, + "thread": 20 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 1973717, + "thread": 13 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2084439, + "thread": 15 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2273172, + "thread": 27 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2303793, + "thread": 16 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2573600, + "thread": 16 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2663558, + "thread": 2 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 2860128, + "thread": 16 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 3114467, + "thread": 25 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 3235411, + "thread": 10 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 3361190, + "thread": 19 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 3561779, + "thread": 12 + } + }, + { + "amount": "257.950036951", + "slot": { + "period": 3731475, + "thread": 22 + } + }, + { + "amount": "257.950036944", + "slot": { + "period": 3935438, + "thread": 24 + } + } + ], + "AU1NQEDC1wqG6wihX2TFHqUetCqFbBCtnQ4eK7T8VcFiZ3AnqQqR": [ + { + "amount": "165.128375796", + "slot": { + "period": 64469, + "thread": 5 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 308846, + "thread": 3 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 328894, + "thread": 12 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 605836, + "thread": 1 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 717452, + "thread": 16 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 947641, + "thread": 1 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1048484, + "thread": 26 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1309627, + "thread": 31 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1388996, + "thread": 30 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1630956, + "thread": 24 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1669308, + "thread": 8 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1885406, + "thread": 7 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 1976851, + "thread": 20 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 2150332, + "thread": 2 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 2364692, + "thread": 27 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 2533616, + "thread": 2 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 2696896, + "thread": 21 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 2947549, + "thread": 24 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 3007047, + "thread": 17 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 3163266, + "thread": 9 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 3317549, + "thread": 8 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 3554586, + "thread": 15 + } + }, + { + "amount": "165.128375796", + "slot": { + "period": 3694085, + "thread": 0 + } + }, + { + "amount": "165.128375806", + "slot": { + "period": 3834492, + "thread": 6 + } + } + ], + "AU1NSbiDa7nFjpHPYup1E25pp8w6d9gPFhAMhMwCJHY1DPzxytv3": [ + { + "amount": "107.660442869", + "slot": { + "period": 36508, + "thread": 20 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 190180, + "thread": 21 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 395170, + "thread": 5 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 594561, + "thread": 29 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 738805, + "thread": 2 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 860327, + "thread": 2 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 998568, + "thread": 8 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1234357, + "thread": 4 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1461200, + "thread": 12 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1508194, + "thread": 27 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1690673, + "thread": 24 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1910392, + "thread": 28 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 1986330, + "thread": 13 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 2261904, + "thread": 12 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 2338405, + "thread": 18 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 2534311, + "thread": 9 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 2694138, + "thread": 24 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 2942813, + "thread": 21 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 3013288, + "thread": 4 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 3243673, + "thread": 2 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 3307448, + "thread": 20 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 3533414, + "thread": 1 + } + }, + { + "amount": "107.660442869", + "slot": { + "period": 3766485, + "thread": 21 + } + }, + { + "amount": "107.660442877", + "slot": { + "period": 3853712, + "thread": 12 + } + } + ], + "AU1NTM7AFEkKsUFA8zav1ZLV7JHkjVPN33j4qGbJJknXkhMJPgK4": [ + { + "amount": "88.349397148", + "slot": { + "period": 73355, + "thread": 4 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 315001, + "thread": 30 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 405162, + "thread": 28 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 492415, + "thread": 8 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 750706, + "thread": 28 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 974252, + "thread": 20 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1050394, + "thread": 22 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1210916, + "thread": 2 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1468569, + "thread": 29 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1515190, + "thread": 7 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1682778, + "thread": 28 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 1852568, + "thread": 10 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2140484, + "thread": 14 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2168153, + "thread": 20 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2404385, + "thread": 31 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2567579, + "thread": 27 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2736940, + "thread": 4 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2907894, + "thread": 9 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 2959049, + "thread": 18 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 3124228, + "thread": 20 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 3381426, + "thread": 24 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 3527306, + "thread": 18 + } + }, + { + "amount": "88.349397148", + "slot": { + "period": 3659515, + "thread": 28 + } + }, + { + "amount": "88.349397136", + "slot": { + "period": 3897751, + "thread": 21 + } + } + ], + "AU1NTuYvWM33FKMkTiGSUo5xr8xq67BpsEwVeQe8Mbyp8g9bJra7": [ + { + "amount": "71.452995567", + "slot": { + "period": 133185, + "thread": 6 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 315824, + "thread": 13 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 331066, + "thread": 7 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 608218, + "thread": 12 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 709557, + "thread": 22 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 977175, + "thread": 0 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1104689, + "thread": 5 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1218785, + "thread": 19 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1353311, + "thread": 21 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1594910, + "thread": 29 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1720850, + "thread": 10 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 1930022, + "thread": 6 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2009052, + "thread": 9 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2273784, + "thread": 9 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2431717, + "thread": 2 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2560824, + "thread": 6 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2652906, + "thread": 27 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2832064, + "thread": 15 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 2999751, + "thread": 24 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 3275892, + "thread": 7 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 3434416, + "thread": 11 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 3605026, + "thread": 22 + } + }, + { + "amount": "71.452995567", + "slot": { + "period": 3670597, + "thread": 17 + } + }, + { + "amount": "71.452995559", + "slot": { + "period": 3851344, + "thread": 10 + } + } + ], + "AU1NUy5d8zpTaDDZxb5J2BxsNnbMCMt9gZYc1skq6sa2BXK71PRV": [ + { + "amount": "325.516147815", + "slot": { + "period": 26960, + "thread": 26 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 254077, + "thread": 3 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 444200, + "thread": 22 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 630893, + "thread": 3 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 657123, + "thread": 27 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 842697, + "thread": 10 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1037220, + "thread": 30 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1156755, + "thread": 23 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1434259, + "thread": 24 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1607210, + "thread": 9 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1760359, + "thread": 22 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 1926292, + "thread": 13 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2013642, + "thread": 6 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2189363, + "thread": 19 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2417065, + "thread": 9 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2594803, + "thread": 12 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2773553, + "thread": 26 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 2797647, + "thread": 10 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 3010006, + "thread": 7 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 3183427, + "thread": 12 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 3343088, + "thread": 16 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 3528581, + "thread": 16 + } + }, + { + "amount": "325.516147815", + "slot": { + "period": 3712830, + "thread": 6 + } + }, + { + "amount": "325.516147813", + "slot": { + "period": 3888957, + "thread": 31 + } + } + ], + "AU1NV4SSh9dYJCqwBfc8YUtZkfvttzexpbW5RShfXdJo51e125n9": [ + { + "amount": "119.266304521", + "slot": { + "period": 23435, + "thread": 8 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 187184, + "thread": 5 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 363066, + "thread": 31 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 533171, + "thread": 26 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 781320, + "thread": 18 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 900208, + "thread": 15 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1109954, + "thread": 12 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1184822, + "thread": 21 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1434374, + "thread": 5 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1573500, + "thread": 18 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1664342, + "thread": 1 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 1872166, + "thread": 11 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2142883, + "thread": 12 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2177169, + "thread": 22 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2347389, + "thread": 21 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2544757, + "thread": 11 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2627551, + "thread": 19 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 2937157, + "thread": 7 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 3056438, + "thread": 5 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 3244508, + "thread": 1 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 3390130, + "thread": 20 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 3547230, + "thread": 11 + } + }, + { + "amount": "119.266304521", + "slot": { + "period": 3718686, + "thread": 3 + } + }, + { + "amount": "119.266304513", + "slot": { + "period": 3792103, + "thread": 27 + } + } + ], + "AU1NVzqbyuKTJKyzcYTLFoLHukQiYZfozrZtism6CHega3Z17tYV": [ + { + "amount": "246.743514375", + "slot": { + "period": 54970, + "thread": 27 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 318392, + "thread": 0 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 345717, + "thread": 30 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 580457, + "thread": 25 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 815601, + "thread": 16 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 899383, + "thread": 6 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1071454, + "thread": 23 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1278899, + "thread": 22 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1380415, + "thread": 5 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1607212, + "thread": 29 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1801373, + "thread": 5 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 1972229, + "thread": 30 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2137503, + "thread": 28 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2223821, + "thread": 14 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2429658, + "thread": 6 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2474819, + "thread": 31 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2672246, + "thread": 2 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 2826778, + "thread": 6 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 3083236, + "thread": 4 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 3124933, + "thread": 11 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 3301435, + "thread": 3 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 3530618, + "thread": 4 + } + }, + { + "amount": "246.743514375", + "slot": { + "period": 3627418, + "thread": 22 + } + }, + { + "amount": "246.743514365", + "slot": { + "period": 3891449, + "thread": 26 + } + } + ], + "AU1NXcWmifZ1oeJ8XkDuRSVG1fARaQdo2nyZHysxm3oK9GJa4yfU": [ + { + "amount": "51.920529761", + "slot": { + "period": 101021, + "thread": 11 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 225839, + "thread": 10 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 369821, + "thread": 12 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 568777, + "thread": 11 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 695962, + "thread": 27 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 835009, + "thread": 10 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1126371, + "thread": 6 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1156297, + "thread": 13 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1415509, + "thread": 13 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1555650, + "thread": 6 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1768529, + "thread": 25 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1815819, + "thread": 6 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 1992892, + "thread": 18 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2194562, + "thread": 15 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2355716, + "thread": 12 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2520092, + "thread": 10 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2638071, + "thread": 9 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2871937, + "thread": 8 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 2965674, + "thread": 24 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 3175015, + "thread": 10 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 3374886, + "thread": 22 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 3605820, + "thread": 29 + } + }, + { + "amount": "51.920529761", + "slot": { + "period": 3729539, + "thread": 31 + } + }, + { + "amount": "51.920529762", + "slot": { + "period": 3885906, + "thread": 12 + } + } + ], + "AU1NXzJJuSkwD3TKajCbthWbmHGvftCKYjAbMpCEy6KrtExUCDdd": [ + { + "amount": "268.621024845", + "slot": { + "period": 102119, + "thread": 14 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 300731, + "thread": 17 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 359798, + "thread": 30 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 602001, + "thread": 27 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 763668, + "thread": 13 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 830314, + "thread": 9 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1069015, + "thread": 1 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1251029, + "thread": 21 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1425534, + "thread": 23 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1488791, + "thread": 9 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1757344, + "thread": 17 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 1846239, + "thread": 2 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2099448, + "thread": 6 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2254918, + "thread": 0 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2320283, + "thread": 5 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2600154, + "thread": 29 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2690898, + "thread": 5 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2800351, + "thread": 30 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 2977069, + "thread": 13 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 3252689, + "thread": 17 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 3318093, + "thread": 8 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 3464473, + "thread": 26 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 3628896, + "thread": 5 + } + }, + { + "amount": "268.621024845", + "slot": { + "period": 3929081, + "thread": 1 + } + } + ], + "AU1Nam4ciRgF4n5tFkM7y6bU4idYwXTXhxWG2Df1THmFfDYFT1Pu": [ + { + "amount": "183.158887456", + "slot": { + "period": 161366, + "thread": 18 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 303902, + "thread": 5 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 385658, + "thread": 12 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 528822, + "thread": 14 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 659146, + "thread": 1 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 883709, + "thread": 12 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1119209, + "thread": 15 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1226748, + "thread": 26 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1408077, + "thread": 10 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1582322, + "thread": 0 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1656941, + "thread": 23 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 1891599, + "thread": 5 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2025156, + "thread": 20 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2232683, + "thread": 8 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2422575, + "thread": 19 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2476553, + "thread": 11 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2742396, + "thread": 21 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 2918696, + "thread": 24 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 3059050, + "thread": 17 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 3229178, + "thread": 0 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 3402312, + "thread": 26 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 3599603, + "thread": 13 + } + }, + { + "amount": "183.158887456", + "slot": { + "period": 3624897, + "thread": 7 + } + }, + { + "amount": "183.158887445", + "slot": { + "period": 3796698, + "thread": 19 + } + } + ], + "AU1NbMFWbzVVtkGxe1ydWVNYPXyiNSNQfM7yRC5acymF6ecGwBHF": [ + { + "amount": "187.895473136", + "slot": { + "period": 161327, + "thread": 27 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 267850, + "thread": 31 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 350844, + "thread": 25 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 612076, + "thread": 13 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 682501, + "thread": 4 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 939716, + "thread": 29 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1082870, + "thread": 19 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1156396, + "thread": 0 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1323124, + "thread": 5 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1517039, + "thread": 11 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1718999, + "thread": 31 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 1892876, + "thread": 15 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2023226, + "thread": 24 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2189449, + "thread": 17 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2295164, + "thread": 1 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2621204, + "thread": 18 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2714635, + "thread": 25 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 2845992, + "thread": 6 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 3115152, + "thread": 17 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 3189244, + "thread": 4 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 3365907, + "thread": 29 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 3538256, + "thread": 8 + } + }, + { + "amount": "187.895473136", + "slot": { + "period": 3759594, + "thread": 3 + } + }, + { + "amount": "187.895473139", + "slot": { + "period": 3884384, + "thread": 22 + } + } + ], + "AU1NbxN7McsfRkYcbuPcvUsdiJBFbxFonsFWHMxfu2zSqsct6wr6": [ + { + "amount": "409.520171599", + "slot": { + "period": 80945, + "thread": 7 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 275641, + "thread": 20 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 443236, + "thread": 24 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 511694, + "thread": 30 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 802632, + "thread": 26 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 926837, + "thread": 3 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1139017, + "thread": 11 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1258708, + "thread": 22 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1459268, + "thread": 26 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1586842, + "thread": 17 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1691576, + "thread": 31 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 1970685, + "thread": 5 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2017617, + "thread": 19 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2147282, + "thread": 27 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2332964, + "thread": 4 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2618411, + "thread": 14 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2776529, + "thread": 18 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2935685, + "thread": 15 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 2993009, + "thread": 23 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 3238120, + "thread": 12 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 3341491, + "thread": 22 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 3497704, + "thread": 12 + } + }, + { + "amount": "409.520171599", + "slot": { + "period": 3764413, + "thread": 8 + } + }, + { + "amount": "409.520171596", + "slot": { + "period": 3837025, + "thread": 2 + } + } + ], + "AU1NbysNKqZDWd4oSMVWFxBi3yZctSv69dqFVF6qyeRqfBEj68ut": [ + { + "amount": "240.674078801", + "slot": { + "period": 103257, + "thread": 17 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 196405, + "thread": 19 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 415740, + "thread": 27 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 608500, + "thread": 10 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 658331, + "thread": 4 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 979059, + "thread": 7 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1043644, + "thread": 0 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1287243, + "thread": 25 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1374870, + "thread": 20 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1585001, + "thread": 28 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1721129, + "thread": 15 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 1893804, + "thread": 17 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2049356, + "thread": 25 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2267577, + "thread": 5 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2327426, + "thread": 20 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2524105, + "thread": 3 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2646887, + "thread": 9 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 2861529, + "thread": 23 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 3023935, + "thread": 18 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 3228710, + "thread": 20 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 3409620, + "thread": 11 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 3586007, + "thread": 3 + } + }, + { + "amount": "240.674078801", + "slot": { + "period": 3710463, + "thread": 6 + } + }, + { + "amount": "240.674078798", + "slot": { + "period": 3910485, + "thread": 12 + } + } + ], + "AU1Nc1xPRvh9SPdiNaZHBHjJZ3nirCrSJvbhjEfjew25jQJek99e": [ + { + "amount": "143.621983823", + "slot": { + "period": 105119, + "thread": 21 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 210546, + "thread": 0 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 439908, + "thread": 8 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 603884, + "thread": 20 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 711047, + "thread": 15 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 964588, + "thread": 21 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1062198, + "thread": 6 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1235898, + "thread": 20 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1395331, + "thread": 17 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1612967, + "thread": 9 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1648225, + "thread": 21 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1814647, + "thread": 21 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 1976686, + "thread": 6 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2238602, + "thread": 27 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2450110, + "thread": 30 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2468218, + "thread": 31 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2762135, + "thread": 8 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2826677, + "thread": 6 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 2971148, + "thread": 17 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 3246509, + "thread": 8 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 3364148, + "thread": 21 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 3466785, + "thread": 9 + } + }, + { + "amount": "143.621983823", + "slot": { + "period": 3714707, + "thread": 25 + } + }, + { + "amount": "143.621983827", + "slot": { + "period": 3795835, + "thread": 23 + } + } + ], + "AU1Ncd91ws9GrqLu5ktURcWyuFzmT7ymYUvie1rAHnaz6ryJKRRz": [ + { + "amount": "120.123647060", + "slot": { + "period": 69993, + "thread": 22 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 298277, + "thread": 2 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 478338, + "thread": 8 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 554400, + "thread": 8 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 717325, + "thread": 13 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 833210, + "thread": 17 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1007909, + "thread": 25 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1188645, + "thread": 9 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1448508, + "thread": 17 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1488942, + "thread": 28 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1793744, + "thread": 13 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1923634, + "thread": 17 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 1990357, + "thread": 1 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2150469, + "thread": 3 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2387515, + "thread": 9 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2557699, + "thread": 10 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2769166, + "thread": 1 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2803377, + "thread": 16 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 2976216, + "thread": 30 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 3248238, + "thread": 2 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 3347359, + "thread": 6 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 3531350, + "thread": 13 + } + }, + { + "amount": "120.123647060", + "slot": { + "period": 3739568, + "thread": 10 + } + }, + { + "amount": "120.123647053", + "slot": { + "period": 3860491, + "thread": 20 + } + } + ], + "AU1Nd4JJ31rjrPNfJ4xwxw5yvZ7ahVhrHU2AoPffioasoXA28LB3": [ + { + "amount": "250.068258274", + "slot": { + "period": 80999, + "thread": 19 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 217937, + "thread": 20 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 442564, + "thread": 7 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 506276, + "thread": 7 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 740251, + "thread": 21 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 905520, + "thread": 11 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1068230, + "thread": 23 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1212103, + "thread": 24 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1447249, + "thread": 25 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1534220, + "thread": 6 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1656441, + "thread": 24 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 1926569, + "thread": 22 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2080684, + "thread": 0 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2157012, + "thread": 12 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2438353, + "thread": 4 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2533907, + "thread": 23 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2697566, + "thread": 11 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2802515, + "thread": 29 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 2963517, + "thread": 26 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 3188503, + "thread": 13 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 3397177, + "thread": 13 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 3486579, + "thread": 28 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 3628860, + "thread": 29 + } + }, + { + "amount": "250.068258274", + "slot": { + "period": 3920241, + "thread": 8 + } + } + ], + "AU1NdJ9JKBEZrdyUcoC4XHTq7oNg7xTE478PcsZykZgxj1Tt18cv": [ + { + "amount": "156.261206703", + "slot": { + "period": 153297, + "thread": 4 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 181080, + "thread": 19 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 463899, + "thread": 25 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 644286, + "thread": 29 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 677020, + "thread": 8 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 902839, + "thread": 17 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1003064, + "thread": 1 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1210450, + "thread": 14 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1386825, + "thread": 23 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1518043, + "thread": 25 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1800391, + "thread": 17 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1950595, + "thread": 21 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 1976841, + "thread": 28 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2218401, + "thread": 22 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2417030, + "thread": 18 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2610487, + "thread": 10 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2649489, + "thread": 6 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2900399, + "thread": 0 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 2960534, + "thread": 2 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 3196656, + "thread": 17 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 3359477, + "thread": 16 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 3540464, + "thread": 7 + } + }, + { + "amount": "156.261206703", + "slot": { + "period": 3672434, + "thread": 15 + } + }, + { + "amount": "156.261206712", + "slot": { + "period": 3913428, + "thread": 16 + } + } + ], + "AU1Ndydq1BU94S3cCoDW2qCvYVPbW3gjkrgiuGHwHrebKFvHaHrA": [ + { + "amount": "131.546968002", + "slot": { + "period": 63542, + "thread": 7 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 235735, + "thread": 20 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 363598, + "thread": 2 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 555407, + "thread": 12 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 750620, + "thread": 1 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 937560, + "thread": 14 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1068580, + "thread": 27 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1196759, + "thread": 29 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1411832, + "thread": 24 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1530865, + "thread": 5 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1769466, + "thread": 24 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 1935411, + "thread": 6 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2068224, + "thread": 15 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2246159, + "thread": 3 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2439114, + "thread": 20 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2496295, + "thread": 5 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2624440, + "thread": 3 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 2937436, + "thread": 23 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 3093546, + "thread": 22 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 3269111, + "thread": 11 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 3331634, + "thread": 7 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 3595539, + "thread": 8 + } + }, + { + "amount": "131.546968002", + "slot": { + "period": 3666469, + "thread": 25 + } + }, + { + "amount": "131.546968001", + "slot": { + "period": 3843378, + "thread": 21 + } + } + ], + "AU1Ne4soZwN3xjQvz2C5r5V1aTjoxn32oBsWQxS3ftRenqUSCwc6": [ + { + "amount": "145.915555623", + "slot": { + "period": 127308, + "thread": 2 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 175975, + "thread": 16 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 349215, + "thread": 8 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 504339, + "thread": 4 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 729193, + "thread": 25 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 828727, + "thread": 24 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1112084, + "thread": 18 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1220719, + "thread": 30 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1352492, + "thread": 27 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1567255, + "thread": 30 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1690834, + "thread": 27 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 1900558, + "thread": 4 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2056953, + "thread": 4 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2152705, + "thread": 2 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2359027, + "thread": 19 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2538386, + "thread": 3 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2702866, + "thread": 7 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2915079, + "thread": 1 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 2986063, + "thread": 7 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 3224358, + "thread": 20 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 3417465, + "thread": 16 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 3570141, + "thread": 19 + } + }, + { + "amount": "145.915555623", + "slot": { + "period": 3633654, + "thread": 13 + } + }, + { + "amount": "145.915555621", + "slot": { + "period": 3888892, + "thread": 15 + } + } + ], + "AU1NgErTFiNRxPQEXCrfTkrTrms7gKfHJZksZfAPQt9aZVNUy8BG": [ + { + "amount": "160.963451104", + "slot": { + "period": 103929, + "thread": 4 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 302604, + "thread": 24 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 462614, + "thread": 29 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 511335, + "thread": 3 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 737938, + "thread": 3 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 902024, + "thread": 31 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1055821, + "thread": 12 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1160839, + "thread": 6 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1428232, + "thread": 23 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1607233, + "thread": 10 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1761821, + "thread": 25 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 1925122, + "thread": 1 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2071482, + "thread": 12 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2208169, + "thread": 15 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2367172, + "thread": 31 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2580805, + "thread": 25 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2765515, + "thread": 2 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 2892070, + "thread": 21 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 3029388, + "thread": 30 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 3210669, + "thread": 13 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 3409307, + "thread": 30 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 3455704, + "thread": 4 + } + }, + { + "amount": "160.963451104", + "slot": { + "period": 3768403, + "thread": 14 + } + }, + { + "amount": "160.963451097", + "slot": { + "period": 3915278, + "thread": 21 + } + } + ], + "AU1NhrrWKgUCp4uVoy5xrw1mCEdBetjX7PZGBUBjnUeQmmtsJJoX": [ + { + "amount": "79.015638515", + "slot": { + "period": 104836, + "thread": 21 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 251072, + "thread": 1 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 423091, + "thread": 26 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 536922, + "thread": 19 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 803333, + "thread": 18 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 881596, + "thread": 22 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1102978, + "thread": 12 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1216474, + "thread": 18 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1443198, + "thread": 22 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1595385, + "thread": 18 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1731112, + "thread": 22 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 1826563, + "thread": 7 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2031198, + "thread": 2 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2150903, + "thread": 11 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2422513, + "thread": 6 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2532892, + "thread": 29 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2686203, + "thread": 8 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 2867568, + "thread": 30 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 3027474, + "thread": 24 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 3182814, + "thread": 29 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 3335045, + "thread": 20 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 3484248, + "thread": 16 + } + }, + { + "amount": "79.015638515", + "slot": { + "period": 3652801, + "thread": 1 + } + }, + { + "amount": "79.015638506", + "slot": { + "period": 3827688, + "thread": 8 + } + } + ], + "AU1Nhs7d3NBGmoYsF3vh1muXKkfwLswZU6yWjjqfcECaUyPdayki": [ + { + "amount": "97.156838938", + "slot": { + "period": 67906, + "thread": 2 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 313843, + "thread": 10 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 474126, + "thread": 9 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 595857, + "thread": 12 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 801556, + "thread": 7 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 917024, + "thread": 17 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 998506, + "thread": 5 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 1282273, + "thread": 16 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 1347094, + "thread": 15 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 1585781, + "thread": 18 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 1716339, + "thread": 29 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 1861272, + "thread": 3 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2078664, + "thread": 12 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2276480, + "thread": 31 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2298790, + "thread": 16 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2476446, + "thread": 5 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2624783, + "thread": 25 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2918159, + "thread": 2 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 2958678, + "thread": 14 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 3230462, + "thread": 28 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 3364733, + "thread": 4 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 3543636, + "thread": 4 + } + }, + { + "amount": "97.156838938", + "slot": { + "period": 3769086, + "thread": 12 + } + }, + { + "amount": "97.156838926", + "slot": { + "period": 3825844, + "thread": 9 + } + } + ], + "AU1NiVzqWZKuiWDPHPDMG1rNCwCQD5GGdUeWCucH6Lumfr76TkoS": [ + { + "amount": "55.926146702", + "slot": { + "period": 12300, + "thread": 27 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 311954, + "thread": 14 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 342483, + "thread": 15 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 504776, + "thread": 15 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 704216, + "thread": 20 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 860841, + "thread": 4 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 985581, + "thread": 27 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 1185325, + "thread": 7 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 1477532, + "thread": 23 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 1547515, + "thread": 15 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 1762280, + "thread": 30 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 1971406, + "thread": 2 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2046949, + "thread": 19 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2292528, + "thread": 14 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2372800, + "thread": 6 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2554812, + "thread": 4 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2759102, + "thread": 11 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 2836068, + "thread": 8 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 3102342, + "thread": 25 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 3226046, + "thread": 19 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 3288788, + "thread": 2 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 3592673, + "thread": 0 + } + }, + { + "amount": "55.926146702", + "slot": { + "period": 3671225, + "thread": 22 + } + }, + { + "amount": "55.926146690", + "slot": { + "period": 3917033, + "thread": 17 + } + } + ], + "AU1NjFmbKyHKyZjquGgWCZZ8DfNdsiwdxBoeSguQoGqMow8Xg7Ra": [ + { + "amount": "130.002879256", + "slot": { + "period": 38217, + "thread": 29 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 284843, + "thread": 2 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 425679, + "thread": 7 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 637458, + "thread": 13 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 716600, + "thread": 5 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 880530, + "thread": 18 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1119920, + "thread": 24 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1209083, + "thread": 18 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1461308, + "thread": 18 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1596155, + "thread": 3 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1752305, + "thread": 30 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 1964620, + "thread": 13 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2106687, + "thread": 30 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2240697, + "thread": 10 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2333351, + "thread": 25 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2562737, + "thread": 4 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2754084, + "thread": 21 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2854569, + "thread": 24 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 2982365, + "thread": 15 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 3226248, + "thread": 15 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 3406122, + "thread": 31 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 3499947, + "thread": 3 + } + }, + { + "amount": "130.002879256", + "slot": { + "period": 3775973, + "thread": 26 + } + }, + { + "amount": "130.002879268", + "slot": { + "period": 3840023, + "thread": 17 + } + } + ], + "AU1NmJvSuFAbEie35U2bbiTzXr8tAahwJH5BeYQ18D3LqMT4fPKb": [ + { + "amount": "398.870682931", + "slot": { + "period": 133982, + "thread": 5 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 267344, + "thread": 15 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 435558, + "thread": 10 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 515460, + "thread": 7 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 740951, + "thread": 26 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 843215, + "thread": 0 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1000866, + "thread": 16 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1314460, + "thread": 22 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1437356, + "thread": 20 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1479830, + "thread": 20 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1683539, + "thread": 27 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 1861783, + "thread": 27 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2096171, + "thread": 5 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2246706, + "thread": 30 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2358523, + "thread": 15 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2564099, + "thread": 1 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2727544, + "thread": 15 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 2899601, + "thread": 12 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 3002664, + "thread": 10 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 3144650, + "thread": 31 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 3325801, + "thread": 17 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 3587592, + "thread": 0 + } + }, + { + "amount": "398.870682931", + "slot": { + "period": 3694708, + "thread": 25 + } + }, + { + "amount": "398.870682936", + "slot": { + "period": 3866334, + "thread": 31 + } + } + ], + "AU1NnN6ZmvjwncptmkfudDragwsVy1QrWAsZjHgeygicAPwcXyq5": [ + { + "amount": "172.450981824", + "slot": { + "period": 105996, + "thread": 18 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 191667, + "thread": 31 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 362698, + "thread": 14 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 633999, + "thread": 5 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 793972, + "thread": 8 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 838937, + "thread": 29 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1066661, + "thread": 21 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1154008, + "thread": 18 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1479513, + "thread": 21 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1599873, + "thread": 9 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1667681, + "thread": 9 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 1914169, + "thread": 8 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2100754, + "thread": 20 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2163333, + "thread": 25 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2389500, + "thread": 10 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2605924, + "thread": 7 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2630969, + "thread": 21 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 2879068, + "thread": 5 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 3082957, + "thread": 10 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 3196557, + "thread": 18 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 3363856, + "thread": 16 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 3471817, + "thread": 11 + } + }, + { + "amount": "172.450981824", + "slot": { + "period": 3722685, + "thread": 10 + } + }, + { + "amount": "172.450981827", + "slot": { + "period": 3910838, + "thread": 21 + } + } + ], + "AU1NnXedEWeQ465F6ma3U8UArq5Qk2f19ExaGfQtCEM4nDaDaUQC": [ + { + "amount": "232.869064323", + "slot": { + "period": 21047, + "thread": 16 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 243598, + "thread": 19 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 433698, + "thread": 29 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 644830, + "thread": 2 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 678731, + "thread": 22 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 884822, + "thread": 9 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1036498, + "thread": 29 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1203404, + "thread": 13 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1330344, + "thread": 24 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1639599, + "thread": 24 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1780306, + "thread": 20 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 1838098, + "thread": 31 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2050199, + "thread": 22 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2218539, + "thread": 9 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2438083, + "thread": 18 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2622027, + "thread": 29 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2764780, + "thread": 23 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2843781, + "thread": 27 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 2970478, + "thread": 2 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 3233873, + "thread": 31 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 3358133, + "thread": 8 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 3526788, + "thread": 1 + } + }, + { + "amount": "232.869064323", + "slot": { + "period": 3671095, + "thread": 10 + } + }, + { + "amount": "232.869064320", + "slot": { + "period": 3861817, + "thread": 1 + } + } + ], + "AU1No6SAL7vaZhJTQ3vWNByxytUWE9eu771DuT2C5ZsKUWPd2acH": [ + { + "amount": "208.400424820", + "slot": { + "period": 81522, + "thread": 14 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 287799, + "thread": 5 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 441551, + "thread": 8 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 568892, + "thread": 25 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 819228, + "thread": 19 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 847578, + "thread": 17 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1079646, + "thread": 1 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1203071, + "thread": 20 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1444543, + "thread": 0 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1532615, + "thread": 7 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1721012, + "thread": 25 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 1929702, + "thread": 13 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2008699, + "thread": 0 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2152793, + "thread": 11 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2311701, + "thread": 3 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2595442, + "thread": 17 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2696634, + "thread": 9 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2878261, + "thread": 25 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 2975870, + "thread": 1 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 3168342, + "thread": 27 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 3297452, + "thread": 21 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 3611067, + "thread": 31 + } + }, + { + "amount": "208.400424820", + "slot": { + "period": 3759839, + "thread": 23 + } + }, + { + "amount": "208.400424818", + "slot": { + "period": 3936790, + "thread": 5 + } + } + ], + "AU1NoiZW8ow5CxwibfTaL98vfQxRrz2S6PBtJJpTaJ7Te6Tc141U": [ + { + "amount": "197.300044393", + "slot": { + "period": 25492, + "thread": 24 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 172601, + "thread": 10 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 489244, + "thread": 3 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 572548, + "thread": 28 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 684137, + "thread": 8 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 892953, + "thread": 1 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1011478, + "thread": 5 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1259656, + "thread": 30 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1423203, + "thread": 4 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1557513, + "thread": 13 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1647796, + "thread": 13 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 1818204, + "thread": 0 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2106258, + "thread": 4 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2182194, + "thread": 10 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2319908, + "thread": 30 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2538964, + "thread": 20 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2693769, + "thread": 16 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 2828439, + "thread": 28 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 3060597, + "thread": 21 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 3201111, + "thread": 9 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 3421927, + "thread": 10 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 3569543, + "thread": 8 + } + }, + { + "amount": "197.300044393", + "slot": { + "period": 3724542, + "thread": 27 + } + }, + { + "amount": "197.300044402", + "slot": { + "period": 3800540, + "thread": 5 + } + } + ], + "AU1NpVHzyAyrYSMNkGDnHNZzkueJf29p7MegVMyLgWhYsXaJrRWC": [ + { + "amount": "187.456011900", + "slot": { + "period": 121849, + "thread": 14 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 186964, + "thread": 22 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 355989, + "thread": 18 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 562240, + "thread": 31 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 756257, + "thread": 3 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 957503, + "thread": 18 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 992290, + "thread": 25 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 1236322, + "thread": 0 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 1457121, + "thread": 1 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 1525934, + "thread": 1 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 1807592, + "thread": 29 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 1917138, + "thread": 12 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2063412, + "thread": 22 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2233750, + "thread": 19 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2425171, + "thread": 4 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2555690, + "thread": 12 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2637210, + "thread": 4 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 2804189, + "thread": 31 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 3032677, + "thread": 29 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 3238102, + "thread": 31 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 3379957, + "thread": 18 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 3518140, + "thread": 31 + } + }, + { + "amount": "187.456011900", + "slot": { + "period": 3668226, + "thread": 1 + } + }, + { + "amount": "187.456011892", + "slot": { + "period": 3884582, + "thread": 30 + } + } + ], + "AU1NpxR3ztusFGVwiF4WcBU3ZhZB7WSrzezUz3VYyiBMpRvGYWMn": [ + { + "amount": "197.229951755", + "slot": { + "period": 96472, + "thread": 28 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 271155, + "thread": 7 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 489207, + "thread": 26 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 566182, + "thread": 2 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 725562, + "thread": 8 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 976033, + "thread": 11 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1103651, + "thread": 15 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1246770, + "thread": 29 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1448546, + "thread": 19 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1627809, + "thread": 17 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1774336, + "thread": 26 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1956066, + "thread": 23 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 1980205, + "thread": 30 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 2240726, + "thread": 17 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 2376142, + "thread": 24 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 2463116, + "thread": 19 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 2751791, + "thread": 8 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 2915963, + "thread": 20 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 3042050, + "thread": 1 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 3268205, + "thread": 31 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 3295039, + "thread": 14 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 3598345, + "thread": 11 + } + }, + { + "amount": "197.229951755", + "slot": { + "period": 3678322, + "thread": 29 + } + }, + { + "amount": "197.229951764", + "slot": { + "period": 3894847, + "thread": 13 + } + } + ], + "AU1NqGDjMbaWtXBuePABNYepST6PafDG8MWdhbJeB86y86p24gXE": [ + { + "amount": "117.536896952", + "slot": { + "period": 17828, + "thread": 15 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 193104, + "thread": 6 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 374653, + "thread": 11 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 498447, + "thread": 1 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 698059, + "thread": 30 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 937761, + "thread": 3 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1009995, + "thread": 1 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1254565, + "thread": 25 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1331835, + "thread": 7 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1646513, + "thread": 23 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1700309, + "thread": 8 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 1893604, + "thread": 0 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2080828, + "thread": 23 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2278783, + "thread": 14 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2354684, + "thread": 25 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2467628, + "thread": 28 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2705921, + "thread": 28 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 2898960, + "thread": 18 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 3047740, + "thread": 17 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 3168434, + "thread": 20 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 3440435, + "thread": 30 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 3500229, + "thread": 5 + } + }, + { + "amount": "117.536896952", + "slot": { + "period": 3656439, + "thread": 12 + } + }, + { + "amount": "117.536896951", + "slot": { + "period": 3926342, + "thread": 14 + } + } + ], + "AU1NqM3z1yzpCoXXc2hzj36kWjcK6ZnEUwPm9PKUx1SRjsLsV6TH": [ + { + "amount": "428.991666276", + "slot": { + "period": 112467, + "thread": 1 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 240688, + "thread": 7 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 453506, + "thread": 24 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 508178, + "thread": 30 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 814491, + "thread": 13 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 828538, + "thread": 2 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1012534, + "thread": 8 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1229993, + "thread": 1 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1404112, + "thread": 27 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1566730, + "thread": 23 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1767075, + "thread": 19 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 1942406, + "thread": 15 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2047578, + "thread": 16 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2169853, + "thread": 30 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2363217, + "thread": 16 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2467339, + "thread": 12 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2789654, + "thread": 4 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 2929538, + "thread": 16 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 3061867, + "thread": 31 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 3261453, + "thread": 25 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 3419124, + "thread": 20 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 3548044, + "thread": 22 + } + }, + { + "amount": "428.991666276", + "slot": { + "period": 3654774, + "thread": 23 + } + }, + { + "amount": "428.991666269", + "slot": { + "period": 3898210, + "thread": 13 + } + } + ], + "AU1NqyUmcHnPbposKADiMSosPbSLmqQaPggcKeo1cMbLV74NcHqH": [ + { + "amount": "374.977534757", + "slot": { + "period": 150291, + "thread": 12 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 232454, + "thread": 27 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 340428, + "thread": 1 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 590287, + "thread": 31 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 728855, + "thread": 24 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 827219, + "thread": 25 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1012494, + "thread": 28 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1168285, + "thread": 14 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1382318, + "thread": 25 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1640980, + "thread": 20 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1748419, + "thread": 21 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 1858297, + "thread": 26 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2066560, + "thread": 6 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2242654, + "thread": 23 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2460442, + "thread": 17 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2586072, + "thread": 11 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2672629, + "thread": 0 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 2935807, + "thread": 28 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 3058523, + "thread": 20 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 3263449, + "thread": 21 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 3360105, + "thread": 28 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 3457589, + "thread": 27 + } + }, + { + "amount": "374.977534757", + "slot": { + "period": 3677831, + "thread": 12 + } + }, + { + "amount": "374.977534765", + "slot": { + "period": 3917694, + "thread": 10 + } + } + ], + "AU1NsC8GyTm427a9ug8qXcBH1PEDjnTi7b3hmwo2wnmwLpV7padK": [ + { + "amount": "78.757464626", + "slot": { + "period": 165260, + "thread": 31 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 202635, + "thread": 19 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 461342, + "thread": 17 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 646415, + "thread": 8 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 727390, + "thread": 22 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 849485, + "thread": 18 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1056680, + "thread": 13 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1277854, + "thread": 20 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1428192, + "thread": 23 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1485906, + "thread": 23 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1758824, + "thread": 28 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1842706, + "thread": 6 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 1984536, + "thread": 26 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 2266781, + "thread": 3 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 2354615, + "thread": 23 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 2514475, + "thread": 22 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 2630557, + "thread": 20 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 2838794, + "thread": 10 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 3090998, + "thread": 12 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 3273948, + "thread": 29 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 3406808, + "thread": 23 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 3549158, + "thread": 31 + } + }, + { + "amount": "78.757464626", + "slot": { + "period": 3666467, + "thread": 31 + } + }, + { + "amount": "78.757464629", + "slot": { + "period": 3865413, + "thread": 11 + } + } + ], + "AU1Nu6qsoQSUhoLcTVhG4nWk92uMPtshtZBHpiX6KNWjB8yafk6t": [ + { + "amount": "126.463125828", + "slot": { + "period": 154008, + "thread": 27 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 304797, + "thread": 16 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 348905, + "thread": 16 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 500481, + "thread": 1 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 816231, + "thread": 16 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 851551, + "thread": 24 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1122062, + "thread": 24 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1285409, + "thread": 30 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1453087, + "thread": 16 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1521120, + "thread": 16 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1708277, + "thread": 6 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 1960382, + "thread": 9 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2132660, + "thread": 23 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2219598, + "thread": 2 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2334834, + "thread": 14 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2566678, + "thread": 18 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2787199, + "thread": 21 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 2862639, + "thread": 8 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 3061637, + "thread": 5 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 3160919, + "thread": 31 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 3427382, + "thread": 0 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 3478316, + "thread": 7 + } + }, + { + "amount": "126.463125828", + "slot": { + "period": 3710354, + "thread": 10 + } + }, + { + "amount": "126.463125819", + "slot": { + "period": 3855452, + "thread": 19 + } + } + ], + "AU1NvPcLNKRHoRYdf6YSPpgLe5ronwc1raMoosGQJLJWg5NtNx6b": [ + { + "amount": "160.328731587", + "slot": { + "period": 28622, + "thread": 16 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 287295, + "thread": 31 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 354580, + "thread": 6 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 538578, + "thread": 1 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 786070, + "thread": 10 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 922784, + "thread": 12 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1143328, + "thread": 0 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1291302, + "thread": 6 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1351421, + "thread": 14 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1503135, + "thread": 28 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1786915, + "thread": 30 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 1917123, + "thread": 26 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2134737, + "thread": 2 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2262899, + "thread": 22 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2419059, + "thread": 3 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2506766, + "thread": 23 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2679228, + "thread": 21 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2810999, + "thread": 29 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 2972382, + "thread": 15 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 3259320, + "thread": 1 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 3294037, + "thread": 16 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 3464638, + "thread": 5 + } + }, + { + "amount": "160.328731587", + "slot": { + "period": 3749685, + "thread": 0 + } + }, + { + "amount": "160.328731597", + "slot": { + "period": 3808545, + "thread": 1 + } + } + ], + "AU1NwJSF55GwxmnoVGBGUuovRuNi3QgHeVutzwwXeG8jUJqq17of": [ + { + "amount": "138.618922031", + "slot": { + "period": 91872, + "thread": 1 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 247382, + "thread": 3 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 357138, + "thread": 18 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 578853, + "thread": 25 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 718496, + "thread": 22 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 936825, + "thread": 0 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1020807, + "thread": 30 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1307536, + "thread": 8 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1456826, + "thread": 1 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1557847, + "thread": 14 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1805176, + "thread": 16 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 1862341, + "thread": 26 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2016502, + "thread": 13 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2197985, + "thread": 26 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2352648, + "thread": 18 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2605006, + "thread": 21 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2712177, + "thread": 20 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 2934291, + "thread": 22 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 3037436, + "thread": 16 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 3195636, + "thread": 27 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 3367979, + "thread": 3 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 3518898, + "thread": 31 + } + }, + { + "amount": "138.618922031", + "slot": { + "period": 3653760, + "thread": 7 + } + }, + { + "amount": "138.618922026", + "slot": { + "period": 3842632, + "thread": 15 + } + } + ], + "AU1NwgkY68nkCbc1F7EBoqPH9jGHTvRTYB4aRu7ozKZwEPgjkjbP": [ + { + "amount": "66.647522204", + "slot": { + "period": 98959, + "thread": 1 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 246562, + "thread": 17 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 372665, + "thread": 23 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 631267, + "thread": 27 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 661214, + "thread": 3 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 908346, + "thread": 25 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1007392, + "thread": 30 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1243771, + "thread": 27 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1447430, + "thread": 16 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1619461, + "thread": 23 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1784230, + "thread": 29 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 1810711, + "thread": 15 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2042570, + "thread": 19 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2220572, + "thread": 30 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2322384, + "thread": 15 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2528488, + "thread": 26 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2705397, + "thread": 23 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 2868041, + "thread": 26 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 3093262, + "thread": 21 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 3270155, + "thread": 15 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 3372444, + "thread": 2 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 3473291, + "thread": 29 + } + }, + { + "amount": "66.647522204", + "slot": { + "period": 3693843, + "thread": 4 + } + }, + { + "amount": "66.647522209", + "slot": { + "period": 3861962, + "thread": 27 + } + } + ], + "AU1NxZP1M1Pyyqj8YboDPPVpuKBNUkJ1j3x3rhFRBZRnXmzGZk34": [ + { + "amount": "65.459325910", + "slot": { + "period": 161027, + "thread": 13 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 253879, + "thread": 21 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 412499, + "thread": 16 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 597743, + "thread": 20 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 772035, + "thread": 17 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 968635, + "thread": 15 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1026961, + "thread": 13 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1269828, + "thread": 26 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1399863, + "thread": 28 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1586334, + "thread": 1 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1701460, + "thread": 27 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 1975355, + "thread": 12 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2133588, + "thread": 24 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2157754, + "thread": 5 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2404785, + "thread": 5 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2609944, + "thread": 21 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2669815, + "thread": 12 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 2855729, + "thread": 29 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 3015856, + "thread": 21 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 3130975, + "thread": 3 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 3364997, + "thread": 20 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 3592594, + "thread": 10 + } + }, + { + "amount": "65.459325910", + "slot": { + "period": 3632083, + "thread": 6 + } + }, + { + "amount": "65.459325912", + "slot": { + "period": 3823065, + "thread": 12 + } + } + ], + "AU1NyCQmEamojaKMVUrfhhr6xEymA1EEfjnMFz7NmnY2GAgHcLQC": [ + { + "amount": "156.726047611", + "slot": { + "period": 129232, + "thread": 6 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 321028, + "thread": 15 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 461672, + "thread": 12 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 577210, + "thread": 9 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 761949, + "thread": 10 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 946211, + "thread": 31 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1010173, + "thread": 6 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1280917, + "thread": 23 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1341036, + "thread": 11 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1561518, + "thread": 7 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1787249, + "thread": 26 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 1878917, + "thread": 25 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2141764, + "thread": 25 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2260467, + "thread": 15 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2302853, + "thread": 14 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2529774, + "thread": 17 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2657597, + "thread": 11 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 2819960, + "thread": 18 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 3077351, + "thread": 4 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 3262310, + "thread": 25 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 3359420, + "thread": 7 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 3467108, + "thread": 7 + } + }, + { + "amount": "156.726047611", + "slot": { + "period": 3618103, + "thread": 3 + } + }, + { + "amount": "156.726047606", + "slot": { + "period": 3930384, + "thread": 7 + } + } + ], + "AU1NyUQ1iAvh7Z1syPQyQ9kX9wR4jpzBPK3SVLJC9Cg3i3nGB7qi": [ + { + "amount": "118.198408340", + "slot": { + "period": 19604, + "thread": 26 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 313516, + "thread": 17 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 413522, + "thread": 29 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 595587, + "thread": 18 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 689087, + "thread": 23 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 864608, + "thread": 4 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1131513, + "thread": 19 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1200013, + "thread": 10 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1415516, + "thread": 29 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1607821, + "thread": 16 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1657055, + "thread": 10 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 1970660, + "thread": 9 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2037773, + "thread": 2 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2181853, + "thread": 23 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2314379, + "thread": 24 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2513094, + "thread": 7 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2781524, + "thread": 5 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2926568, + "thread": 6 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 2956735, + "thread": 2 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 3180334, + "thread": 26 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 3362020, + "thread": 13 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 3500211, + "thread": 15 + } + }, + { + "amount": "118.198408340", + "slot": { + "period": 3735738, + "thread": 17 + } + }, + { + "amount": "118.198408343", + "slot": { + "period": 3932028, + "thread": 27 + } + } + ], + "AU1P18eXckACxb35qqXNWKhEMhMTa7uQMtFUbezXVv98PhP1E3Yr": [ + { + "amount": "152.239799738", + "slot": { + "period": 17973, + "thread": 22 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 272033, + "thread": 21 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 338465, + "thread": 23 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 609124, + "thread": 15 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 664510, + "thread": 28 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 948761, + "thread": 18 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1108975, + "thread": 27 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1260998, + "thread": 7 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1455838, + "thread": 7 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1505128, + "thread": 6 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1701401, + "thread": 15 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1863526, + "thread": 1 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 1993231, + "thread": 15 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 2249557, + "thread": 12 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 2415935, + "thread": 2 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 2589502, + "thread": 20 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 2664872, + "thread": 28 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 2796444, + "thread": 19 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 3095693, + "thread": 18 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 3190518, + "thread": 0 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 3308036, + "thread": 19 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 3588481, + "thread": 30 + } + }, + { + "amount": "152.239799738", + "slot": { + "period": 3668226, + "thread": 10 + } + }, + { + "amount": "152.239799728", + "slot": { + "period": 3932183, + "thread": 20 + } + } + ], + "AU1P1r5mLw7JK8u4m3gnPKDnrwEWaNA9XzrqtHcPmmqyqYx5rQd3": [ + { + "amount": "129.621241447", + "slot": { + "period": 165038, + "thread": 29 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 170237, + "thread": 0 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 384423, + "thread": 6 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 532863, + "thread": 4 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 667570, + "thread": 20 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 835837, + "thread": 22 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1128747, + "thread": 21 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1173339, + "thread": 28 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1351937, + "thread": 12 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1551425, + "thread": 29 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1705755, + "thread": 31 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 1824892, + "thread": 13 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2043323, + "thread": 24 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2197985, + "thread": 6 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2349360, + "thread": 0 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2489592, + "thread": 1 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2778403, + "thread": 9 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 2852143, + "thread": 2 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 3016396, + "thread": 24 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 3264871, + "thread": 21 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 3371138, + "thread": 16 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 3505345, + "thread": 24 + } + }, + { + "amount": "129.621241447", + "slot": { + "period": 3750926, + "thread": 15 + } + }, + { + "amount": "129.621241441", + "slot": { + "period": 3809868, + "thread": 5 + } + } + ], + "AU1P22i2YFacDxeckdQCja7soBQVTZ4jihXzW7G7evfE1T35HoMt": [ + { + "amount": "254.675858833", + "slot": { + "period": 39624, + "thread": 22 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 180623, + "thread": 28 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 450473, + "thread": 25 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 588046, + "thread": 18 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 707165, + "thread": 25 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 909586, + "thread": 29 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1149503, + "thread": 0 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1210688, + "thread": 22 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1342648, + "thread": 28 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1592189, + "thread": 5 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1743226, + "thread": 8 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 1890610, + "thread": 26 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2083001, + "thread": 22 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2188385, + "thread": 3 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2310188, + "thread": 17 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2589550, + "thread": 22 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2712982, + "thread": 21 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 2911895, + "thread": 5 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 3017098, + "thread": 27 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 3173592, + "thread": 9 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 3380045, + "thread": 11 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 3517900, + "thread": 31 + } + }, + { + "amount": "254.675858833", + "slot": { + "period": 3686782, + "thread": 10 + } + }, + { + "amount": "254.675858824", + "slot": { + "period": 3923316, + "thread": 0 + } + } + ], + "AU1P23YeVN7F9dQ4YoBEs7SqS8L6FanD9WdSMT9o8funRyDQCCmf": [ + { + "amount": "250.014257936", + "slot": { + "period": 111770, + "thread": 12 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 180987, + "thread": 6 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 326265, + "thread": 19 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 577556, + "thread": 13 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 784837, + "thread": 13 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 907464, + "thread": 14 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1081001, + "thread": 0 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1257626, + "thread": 18 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1387194, + "thread": 9 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1530536, + "thread": 10 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1742435, + "thread": 3 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 1843366, + "thread": 5 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2132244, + "thread": 28 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2165323, + "thread": 11 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2355087, + "thread": 27 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2508290, + "thread": 7 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2754094, + "thread": 30 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2863484, + "thread": 13 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 2963967, + "thread": 0 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 3222034, + "thread": 0 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 3327908, + "thread": 5 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 3586622, + "thread": 22 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 3699134, + "thread": 29 + } + }, + { + "amount": "250.014257936", + "slot": { + "period": 3898616, + "thread": 28 + } + } + ], + "AU1P3AbR3Hm2BJfJ9GFQBSE1EQvDByBqcwZS8AcFGFvdYCszKTNB": [ + { + "amount": "110.654112371", + "slot": { + "period": 117076, + "thread": 18 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 184203, + "thread": 14 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 415845, + "thread": 22 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 620029, + "thread": 12 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 820684, + "thread": 19 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 885711, + "thread": 1 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1032196, + "thread": 30 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1267071, + "thread": 25 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1325551, + "thread": 14 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1635547, + "thread": 24 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1793263, + "thread": 4 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 1963919, + "thread": 26 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2047230, + "thread": 8 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2253984, + "thread": 3 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2358842, + "thread": 30 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2600643, + "thread": 25 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2665531, + "thread": 18 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 2852407, + "thread": 15 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 3095114, + "thread": 18 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 3275051, + "thread": 0 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 3367886, + "thread": 14 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 3491822, + "thread": 10 + } + }, + { + "amount": "110.654112371", + "slot": { + "period": 3649227, + "thread": 22 + } + }, + { + "amount": "110.654112374", + "slot": { + "period": 3800310, + "thread": 25 + } + } + ], + "AU1P4LVzx2VuWK3nxenQsHF7mskEGAUATWq9q6ijVfD6E3m7xkK9": [ + { + "amount": "136.232340607", + "slot": { + "period": 47598, + "thread": 9 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 169934, + "thread": 24 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 447449, + "thread": 16 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 536188, + "thread": 26 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 747831, + "thread": 5 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 877213, + "thread": 25 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1017579, + "thread": 0 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1187595, + "thread": 6 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1340274, + "thread": 26 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1563844, + "thread": 26 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1652335, + "thread": 11 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 1814895, + "thread": 29 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2006595, + "thread": 12 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2236645, + "thread": 28 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2321496, + "thread": 13 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2473261, + "thread": 22 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2655491, + "thread": 27 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 2927115, + "thread": 25 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 3076990, + "thread": 2 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 3190050, + "thread": 25 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 3308069, + "thread": 12 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 3456233, + "thread": 1 + } + }, + { + "amount": "136.232340607", + "slot": { + "period": 3621577, + "thread": 23 + } + }, + { + "amount": "136.232340600", + "slot": { + "period": 3907517, + "thread": 29 + } + } + ], + "AU1P4MzibAcCFixYaF6uSbcEhdFirVLT5z8YWnuKSLERy4tEQRX2": [ + { + "amount": "261.891435047", + "slot": { + "period": 92771, + "thread": 25 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 225979, + "thread": 5 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 466494, + "thread": 31 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 568470, + "thread": 24 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 793073, + "thread": 14 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 875034, + "thread": 25 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1123584, + "thread": 8 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1193947, + "thread": 6 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1395030, + "thread": 31 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1568637, + "thread": 16 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1683916, + "thread": 13 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 1891132, + "thread": 7 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2143633, + "thread": 15 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2154425, + "thread": 8 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2411602, + "thread": 21 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2561754, + "thread": 30 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2725641, + "thread": 7 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 2851584, + "thread": 4 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 3080478, + "thread": 27 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 3163408, + "thread": 13 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 3343111, + "thread": 23 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 3585019, + "thread": 21 + } + }, + { + "amount": "261.891435047", + "slot": { + "period": 3704664, + "thread": 19 + } + }, + { + "amount": "261.891435039", + "slot": { + "period": 3896764, + "thread": 8 + } + } + ], + "AU1P4Pz6UTu1dmMMeCQm4LLm4eR3EgotsfR9yzaCiLHXS64ZLEMz": [ + { + "amount": "178.470541118", + "slot": { + "period": 77747, + "thread": 21 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 199567, + "thread": 31 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 404969, + "thread": 2 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 641140, + "thread": 7 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 711831, + "thread": 6 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 873810, + "thread": 27 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1069889, + "thread": 5 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1188145, + "thread": 7 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1343012, + "thread": 2 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1563419, + "thread": 19 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1735697, + "thread": 13 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 1857252, + "thread": 22 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2085065, + "thread": 31 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2218727, + "thread": 30 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2320390, + "thread": 24 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2531800, + "thread": 14 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2786891, + "thread": 29 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 2832499, + "thread": 15 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 3009767, + "thread": 22 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 3261093, + "thread": 19 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 3384529, + "thread": 21 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 3486344, + "thread": 16 + } + }, + { + "amount": "178.470541118", + "slot": { + "period": 3741014, + "thread": 12 + } + }, + { + "amount": "178.470541119", + "slot": { + "period": 3853875, + "thread": 29 + } + } + ], + "AU1P4zvBt3va7NGMkZym7EqWMjeFDAiqhxgBtGmPwrhhwWHErUAK": [ + { + "amount": "138.970478673", + "slot": { + "period": 95092, + "thread": 13 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 190526, + "thread": 21 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 403581, + "thread": 25 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 492157, + "thread": 29 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 664837, + "thread": 4 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 977170, + "thread": 24 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1034513, + "thread": 9 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1279724, + "thread": 0 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1339561, + "thread": 16 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1588873, + "thread": 19 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1748212, + "thread": 28 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1853660, + "thread": 22 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 1987982, + "thread": 23 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 2262611, + "thread": 10 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 2443857, + "thread": 7 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 2476065, + "thread": 20 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 2735494, + "thread": 31 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 2830887, + "thread": 28 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 3007993, + "thread": 3 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 3152528, + "thread": 6 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 3342427, + "thread": 0 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 3550773, + "thread": 25 + } + }, + { + "amount": "138.970478673", + "slot": { + "period": 3747143, + "thread": 24 + } + }, + { + "amount": "138.970478683", + "slot": { + "period": 3914180, + "thread": 17 + } + } + ], + "AU1P6YaHro2ow8eAm2kxk8HyuSE83r8yrg5aLL2GhVq2U4VR4hTx": [ + { + "amount": "449.465381506", + "slot": { + "period": 107496, + "thread": 7 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 179367, + "thread": 13 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 424044, + "thread": 28 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 573694, + "thread": 24 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 773916, + "thread": 5 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 946182, + "thread": 2 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1008548, + "thread": 7 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1159533, + "thread": 28 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1373043, + "thread": 4 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1519530, + "thread": 12 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1771072, + "thread": 22 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 1917364, + "thread": 1 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2130070, + "thread": 23 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2235746, + "thread": 23 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2377170, + "thread": 28 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2538174, + "thread": 17 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2657246, + "thread": 6 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 2870735, + "thread": 13 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 3115498, + "thread": 14 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 3239612, + "thread": 31 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 3310246, + "thread": 17 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 3529709, + "thread": 15 + } + }, + { + "amount": "449.465381506", + "slot": { + "period": 3765242, + "thread": 22 + } + }, + { + "amount": "449.465381516", + "slot": { + "period": 3828941, + "thread": 1 + } + } + ], + "AU1P8PnNY7jWJkxi5mtvGjAXWvbwcXFGwG8ciqrgc1pExiHk7vie": [ + { + "amount": "54.682491169", + "slot": { + "period": 156364, + "thread": 24 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 261414, + "thread": 27 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 443657, + "thread": 18 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 644139, + "thread": 28 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 783718, + "thread": 16 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 901105, + "thread": 17 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 999704, + "thread": 8 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 1184479, + "thread": 24 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 1469778, + "thread": 12 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 1643051, + "thread": 5 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 1706179, + "thread": 26 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 1848014, + "thread": 17 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2056760, + "thread": 15 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2215850, + "thread": 14 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2295019, + "thread": 30 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2602618, + "thread": 15 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2654863, + "thread": 12 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2837702, + "thread": 0 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 2965904, + "thread": 1 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 3122735, + "thread": 5 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 3368838, + "thread": 24 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 3538734, + "thread": 6 + } + }, + { + "amount": "54.682491169", + "slot": { + "period": 3711691, + "thread": 10 + } + }, + { + "amount": "54.682491173", + "slot": { + "period": 3813919, + "thread": 22 + } + } + ], + "AU1P9tSJuBfL4zVLfNHtDop78faXDDFiLgR5snUNjUpds1PwpMkK": [ + { + "amount": "146.761116957", + "slot": { + "period": 70921, + "thread": 13 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 186237, + "thread": 11 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 411543, + "thread": 2 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 635096, + "thread": 3 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 768314, + "thread": 24 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 921283, + "thread": 18 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1057477, + "thread": 16 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1259304, + "thread": 1 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1476786, + "thread": 18 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1608019, + "thread": 2 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1686753, + "thread": 14 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1955696, + "thread": 30 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 1999429, + "thread": 17 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2268830, + "thread": 10 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2378303, + "thread": 18 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2524366, + "thread": 10 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2748565, + "thread": 29 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2900171, + "thread": 26 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 2960552, + "thread": 26 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 3281402, + "thread": 8 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 3306124, + "thread": 21 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 3526396, + "thread": 17 + } + }, + { + "amount": "146.761116957", + "slot": { + "period": 3719247, + "thread": 6 + } + }, + { + "amount": "146.761116964", + "slot": { + "period": 3799854, + "thread": 8 + } + } + ], + "AU1PAiwUvAL2hZiwJwfqsr68VhXivXabehVsQxZGCAa7RQhDU2R7": [ + { + "amount": "223.371723457", + "slot": { + "period": 152725, + "thread": 8 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 312435, + "thread": 2 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 453156, + "thread": 9 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 598150, + "thread": 1 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 729176, + "thread": 18 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 911531, + "thread": 29 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1081056, + "thread": 20 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1293674, + "thread": 13 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1380823, + "thread": 7 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1555293, + "thread": 30 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1690077, + "thread": 22 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 1858130, + "thread": 12 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2027281, + "thread": 12 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2241817, + "thread": 1 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2314950, + "thread": 13 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2509369, + "thread": 6 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2753656, + "thread": 17 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 2829333, + "thread": 27 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 3027490, + "thread": 13 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 3161778, + "thread": 22 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 3434629, + "thread": 8 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 3596942, + "thread": 27 + } + }, + { + "amount": "223.371723457", + "slot": { + "period": 3709873, + "thread": 17 + } + }, + { + "amount": "223.371723458", + "slot": { + "period": 3939008, + "thread": 20 + } + } + ], + "AU1PAs52tHTnHC5ssDDMUjdb9rdkzaPW2TLzgJdFARtiCJzMdX5r": [ + { + "amount": "290.645818909", + "slot": { + "period": 24069, + "thread": 30 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 209640, + "thread": 19 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 427526, + "thread": 17 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 496275, + "thread": 18 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 782028, + "thread": 3 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 943501, + "thread": 1 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1014096, + "thread": 3 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1208026, + "thread": 9 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1435123, + "thread": 14 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1528108, + "thread": 11 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1722038, + "thread": 31 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 1839511, + "thread": 12 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2095453, + "thread": 14 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2168765, + "thread": 7 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2337698, + "thread": 8 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2492245, + "thread": 29 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2659488, + "thread": 14 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 2943001, + "thread": 17 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 3104014, + "thread": 11 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 3264804, + "thread": 0 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 3374991, + "thread": 1 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 3463385, + "thread": 19 + } + }, + { + "amount": "290.645818909", + "slot": { + "period": 3635755, + "thread": 10 + } + }, + { + "amount": "290.645818912", + "slot": { + "period": 3938394, + "thread": 22 + } + } + ], + "AU1PBQA7kfZfkBKTai347t7vZxhjm3Dweqi1Tu1XpuZ8uPcHu6gE": [ + { + "amount": "162.220045852", + "slot": { + "period": 98718, + "thread": 23 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 193113, + "thread": 25 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 325442, + "thread": 31 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 513066, + "thread": 1 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 660153, + "thread": 4 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 822314, + "thread": 14 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1142188, + "thread": 27 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1218916, + "thread": 18 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1357808, + "thread": 3 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1594232, + "thread": 30 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1661081, + "thread": 30 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 1863238, + "thread": 11 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2129192, + "thread": 22 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2231217, + "thread": 27 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2338209, + "thread": 6 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2548005, + "thread": 20 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2732464, + "thread": 29 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 2806861, + "thread": 4 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 3089934, + "thread": 13 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 3209621, + "thread": 10 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 3358303, + "thread": 25 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 3555573, + "thread": 30 + } + }, + { + "amount": "162.220045852", + "slot": { + "period": 3684576, + "thread": 18 + } + }, + { + "amount": "162.220045863", + "slot": { + "period": 3824509, + "thread": 6 + } + } + ], + "AU1PBRRuh64g5M31gpRJ6aFKLCgLobtp1WQMZ4YPivBVbFp9LNfD": [ + { + "amount": "145.620418532", + "slot": { + "period": 160239, + "thread": 8 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 257359, + "thread": 30 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 324514, + "thread": 8 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 527533, + "thread": 19 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 683595, + "thread": 16 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 926232, + "thread": 10 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 993357, + "thread": 11 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 1171449, + "thread": 3 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 1403628, + "thread": 24 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 1642538, + "thread": 22 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 1762614, + "thread": 26 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 1869172, + "thread": 10 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2074096, + "thread": 6 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2237663, + "thread": 16 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2377412, + "thread": 12 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2546343, + "thread": 18 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2690485, + "thread": 25 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2920213, + "thread": 1 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 2968553, + "thread": 9 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 3269876, + "thread": 13 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 3305739, + "thread": 14 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 3479990, + "thread": 3 + } + }, + { + "amount": "145.620418532", + "slot": { + "period": 3746031, + "thread": 7 + } + }, + { + "amount": "145.620418537", + "slot": { + "period": 3842375, + "thread": 12 + } + } + ], + "AU1PBpJKHExgKzBbHNBrTzDFzCSENR8YQjsMn9ri1cULs7TTvRaG": [ + { + "amount": "101.308729741", + "slot": { + "period": 115064, + "thread": 22 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 274633, + "thread": 24 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 413260, + "thread": 20 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 642443, + "thread": 30 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 812757, + "thread": 3 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 955793, + "thread": 31 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1045669, + "thread": 13 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1248641, + "thread": 28 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1456556, + "thread": 26 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1588917, + "thread": 10 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1716028, + "thread": 28 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1954486, + "thread": 18 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 1988911, + "thread": 22 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2197468, + "thread": 27 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2296739, + "thread": 1 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2510911, + "thread": 10 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2772665, + "thread": 7 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2902986, + "thread": 14 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 2999330, + "thread": 10 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 3166520, + "thread": 22 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 3392849, + "thread": 19 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 3455151, + "thread": 29 + } + }, + { + "amount": "101.308729741", + "slot": { + "period": 3766831, + "thread": 4 + } + }, + { + "amount": "101.308729731", + "slot": { + "period": 3869229, + "thread": 22 + } + } + ], + "AU1PBsdtxYBtmX5U8mShBSLagnix37REnNqB6nphVoPuzqdsikyc": [ + { + "amount": "152.137730412", + "slot": { + "period": 153476, + "thread": 5 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 240963, + "thread": 24 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 360346, + "thread": 9 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 524330, + "thread": 29 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 708654, + "thread": 12 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 837809, + "thread": 8 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1064252, + "thread": 29 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1192362, + "thread": 22 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1423272, + "thread": 18 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1607889, + "thread": 21 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1668823, + "thread": 26 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 1875258, + "thread": 20 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2143024, + "thread": 7 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2175664, + "thread": 4 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2327827, + "thread": 19 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2616860, + "thread": 18 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2714868, + "thread": 15 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2828415, + "thread": 7 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 2981254, + "thread": 26 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 3162932, + "thread": 9 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 3333797, + "thread": 15 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 3591956, + "thread": 1 + } + }, + { + "amount": "152.137730412", + "slot": { + "period": 3719088, + "thread": 19 + } + }, + { + "amount": "152.137730414", + "slot": { + "period": 3864461, + "thread": 5 + } + } + ], + "AU1PD7NYwBwZeEVe2QmG59RcT6KKZCsHhsfeF1hit3oVKwMJd8oZ": [ + { + "amount": "181.727290428", + "slot": { + "period": 40814, + "thread": 18 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 318403, + "thread": 0 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 417304, + "thread": 9 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 627921, + "thread": 19 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 815205, + "thread": 19 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 834425, + "thread": 3 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1002296, + "thread": 0 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1167010, + "thread": 30 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1438677, + "thread": 25 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1593727, + "thread": 17 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1670306, + "thread": 25 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 1903598, + "thread": 10 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2105298, + "thread": 0 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2195896, + "thread": 3 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2364259, + "thread": 18 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2541719, + "thread": 14 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2704783, + "thread": 26 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2920912, + "thread": 3 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 2954952, + "thread": 16 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 3232701, + "thread": 29 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 3429871, + "thread": 10 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 3563106, + "thread": 1 + } + }, + { + "amount": "181.727290428", + "slot": { + "period": 3768394, + "thread": 15 + } + }, + { + "amount": "181.727290417", + "slot": { + "period": 3830291, + "thread": 4 + } + } + ], + "AU1PEaXHwJcEoGozXdXen2qtEh3Nq1MYURNoPLZ4rYwsyexoeAv8": [ + { + "amount": "362.248483459", + "slot": { + "period": 57176, + "thread": 12 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 216621, + "thread": 19 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 395059, + "thread": 30 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 587254, + "thread": 10 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 813999, + "thread": 27 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 963567, + "thread": 28 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1101762, + "thread": 25 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1163653, + "thread": 8 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1334987, + "thread": 15 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1531598, + "thread": 19 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1784576, + "thread": 5 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 1912590, + "thread": 8 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2002858, + "thread": 28 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2247932, + "thread": 4 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2367701, + "thread": 3 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2481621, + "thread": 18 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2710183, + "thread": 24 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 2902329, + "thread": 26 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 3042234, + "thread": 4 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 3158715, + "thread": 18 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 3349233, + "thread": 20 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 3459481, + "thread": 0 + } + }, + { + "amount": "362.248483459", + "slot": { + "period": 3749467, + "thread": 16 + } + }, + { + "amount": "362.248483468", + "slot": { + "period": 3937886, + "thread": 21 + } + } + ], + "AU1PFeaEQ2FbGHVa8KSFq45HYeSBjq1vdUZQ6Dd2U387E9mzm4it": [ + { + "amount": "132.357437607", + "slot": { + "period": 163382, + "thread": 25 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 249797, + "thread": 1 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 423555, + "thread": 0 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 621819, + "thread": 16 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 714587, + "thread": 26 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 887712, + "thread": 2 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 992840, + "thread": 3 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 1290134, + "thread": 29 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 1335971, + "thread": 27 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 1590039, + "thread": 28 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 1779215, + "thread": 25 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 1957797, + "thread": 16 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2030523, + "thread": 3 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2166688, + "thread": 2 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2321539, + "thread": 22 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2542893, + "thread": 31 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2635515, + "thread": 25 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 2822049, + "thread": 18 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 3001859, + "thread": 3 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 3236660, + "thread": 31 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 3427588, + "thread": 28 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 3517249, + "thread": 5 + } + }, + { + "amount": "132.357437607", + "slot": { + "period": 3663433, + "thread": 16 + } + }, + { + "amount": "132.357437599", + "slot": { + "period": 3815894, + "thread": 18 + } + } + ], + "AU1PG9xw9EDt41wHobysMpHfrpYtg6mQ84ZHvin17d6rQLjRGsM6": [ + { + "amount": "82.691089337", + "slot": { + "period": 25323, + "thread": 22 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 222574, + "thread": 14 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 392298, + "thread": 31 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 634795, + "thread": 4 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 794680, + "thread": 20 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 901969, + "thread": 19 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1137240, + "thread": 5 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1244654, + "thread": 28 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1344065, + "thread": 6 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1496695, + "thread": 26 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1657935, + "thread": 16 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1939989, + "thread": 29 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 1985475, + "thread": 0 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 2193726, + "thread": 8 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 2351813, + "thread": 30 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 2483187, + "thread": 8 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 2788824, + "thread": 25 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 2919048, + "thread": 20 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 3005721, + "thread": 23 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 3248933, + "thread": 18 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 3327821, + "thread": 26 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 3578356, + "thread": 1 + } + }, + { + "amount": "82.691089337", + "slot": { + "period": 3701578, + "thread": 0 + } + }, + { + "amount": "82.691089334", + "slot": { + "period": 3877657, + "thread": 27 + } + } + ], + "AU1PGeLJDZFBM88T4satSQfLjYn4BxFyhzSxqfwfRrm5gs4AuBLE": [ + { + "amount": "117.904293893", + "slot": { + "period": 16218, + "thread": 25 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 211753, + "thread": 2 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 418576, + "thread": 5 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 605527, + "thread": 28 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 767390, + "thread": 3 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 838693, + "thread": 19 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1131247, + "thread": 15 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1165583, + "thread": 17 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1319952, + "thread": 31 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1531843, + "thread": 29 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1678316, + "thread": 6 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 1821709, + "thread": 29 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2078250, + "thread": 15 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2228969, + "thread": 11 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2342240, + "thread": 29 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2490991, + "thread": 28 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2667659, + "thread": 0 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 2948474, + "thread": 23 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 3033426, + "thread": 13 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 3284382, + "thread": 31 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 3335109, + "thread": 2 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 3494838, + "thread": 6 + } + }, + { + "amount": "117.904293893", + "slot": { + "period": 3754995, + "thread": 0 + } + }, + { + "amount": "117.904293889", + "slot": { + "period": 3940046, + "thread": 23 + } + } + ], + "AU1PJ65tznKyGYwFoR1Pd6ug8cdkztMQdimEvrebKFhLZcmtBJYS": [ + { + "amount": "145.964253897", + "slot": { + "period": 65663, + "thread": 14 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 295101, + "thread": 2 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 432917, + "thread": 8 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 573291, + "thread": 12 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 784537, + "thread": 2 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 928682, + "thread": 7 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1041456, + "thread": 3 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1235673, + "thread": 3 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1325194, + "thread": 8 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1535573, + "thread": 2 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1666125, + "thread": 16 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 1824401, + "thread": 25 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2102445, + "thread": 10 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2249835, + "thread": 25 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2342876, + "thread": 6 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2472710, + "thread": 31 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2683293, + "thread": 15 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 2801263, + "thread": 13 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 3043579, + "thread": 0 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 3202157, + "thread": 19 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 3341148, + "thread": 22 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 3604895, + "thread": 27 + } + }, + { + "amount": "145.964253897", + "slot": { + "period": 3764794, + "thread": 26 + } + }, + { + "amount": "145.964253887", + "slot": { + "period": 3938651, + "thread": 4 + } + } + ], + "AU1PJfSW7ugF422AYRcHqWWjTdjj85VrNNT41LChyP6wfhccmQiM": [ + { + "amount": "252.200105655", + "slot": { + "period": 17106, + "thread": 18 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 271719, + "thread": 0 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 437366, + "thread": 1 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 588631, + "thread": 16 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 728457, + "thread": 30 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 972627, + "thread": 17 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1058929, + "thread": 28 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1235521, + "thread": 11 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1454007, + "thread": 30 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1480553, + "thread": 28 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1668707, + "thread": 2 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 1901391, + "thread": 3 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2114405, + "thread": 8 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2178750, + "thread": 12 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2322387, + "thread": 12 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2492011, + "thread": 28 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2637204, + "thread": 9 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2953793, + "thread": 31 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 2970689, + "thread": 14 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 3242206, + "thread": 23 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 3435223, + "thread": 28 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 3517252, + "thread": 7 + } + }, + { + "amount": "252.200105655", + "slot": { + "period": 3677729, + "thread": 23 + } + }, + { + "amount": "252.200105644", + "slot": { + "period": 3887719, + "thread": 1 + } + } + ], + "AU1PK1YbwAFkhVzAa6ge4tgNck9Gaf1JiKwP1Dckdh6666ueKggt": [ + { + "amount": "77.552616880", + "slot": { + "period": 74217, + "thread": 7 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 293584, + "thread": 25 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 485362, + "thread": 6 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 603375, + "thread": 22 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 733427, + "thread": 8 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 946836, + "thread": 18 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1075854, + "thread": 12 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1175944, + "thread": 27 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1418246, + "thread": 12 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1582488, + "thread": 24 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1651053, + "thread": 4 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 1943629, + "thread": 19 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2116748, + "thread": 15 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2184353, + "thread": 1 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2426629, + "thread": 9 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2547951, + "thread": 28 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2784331, + "thread": 20 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 2915919, + "thread": 5 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 3083734, + "thread": 16 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 3150797, + "thread": 24 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 3365294, + "thread": 22 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 3603624, + "thread": 8 + } + }, + { + "amount": "77.552616880", + "slot": { + "period": 3657474, + "thread": 10 + } + }, + { + "amount": "77.552616870", + "slot": { + "period": 3832209, + "thread": 9 + } + } + ], + "AU1PKfY8kVjjB9vtmbYfARqSLQ2vQUxnoC3cqG9tVdEHzJVM1cCJ": [ + { + "amount": "113.148034042", + "slot": { + "period": 157491, + "thread": 12 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 250505, + "thread": 28 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 434017, + "thread": 12 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 604661, + "thread": 24 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 682886, + "thread": 7 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 948110, + "thread": 29 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1085833, + "thread": 20 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1264895, + "thread": 11 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1414190, + "thread": 26 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1641076, + "thread": 20 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1723966, + "thread": 12 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 1873312, + "thread": 24 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2080372, + "thread": 13 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2243661, + "thread": 30 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2335502, + "thread": 15 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2497267, + "thread": 16 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2757283, + "thread": 23 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 2815428, + "thread": 19 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 3117784, + "thread": 2 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 3142853, + "thread": 15 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 3351505, + "thread": 18 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 3581956, + "thread": 11 + } + }, + { + "amount": "113.148034042", + "slot": { + "period": 3692889, + "thread": 8 + } + }, + { + "amount": "113.148034048", + "slot": { + "period": 3846267, + "thread": 28 + } + } + ], + "AU1PLrsmTVEP68d6hTSuA1K42j9PBFg71Gbs1nLELE4ysT9FmBPQ": [ + { + "amount": "108.583081018", + "slot": { + "period": 21340, + "thread": 22 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 280713, + "thread": 20 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 423233, + "thread": 30 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 525825, + "thread": 12 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 764809, + "thread": 15 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 887006, + "thread": 24 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1125306, + "thread": 11 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1224761, + "thread": 11 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1465713, + "thread": 19 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1547242, + "thread": 21 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1757661, + "thread": 8 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 1834466, + "thread": 19 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2113528, + "thread": 21 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2152528, + "thread": 1 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2363057, + "thread": 4 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2609577, + "thread": 26 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2700204, + "thread": 19 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 2894658, + "thread": 27 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 3086656, + "thread": 14 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 3244481, + "thread": 21 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 3337492, + "thread": 6 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 3530221, + "thread": 26 + } + }, + { + "amount": "108.583081018", + "slot": { + "period": 3758664, + "thread": 15 + } + }, + { + "amount": "108.583081015", + "slot": { + "period": 3933755, + "thread": 22 + } + } + ], + "AU1PM1vYVKDsiqq4bsnvz4HmB3aFud4hRTvBdXeC8UTDx8pq8Q7U": [ + { + "amount": "141.497287764", + "slot": { + "period": 85459, + "thread": 30 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 269712, + "thread": 8 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 341384, + "thread": 4 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 620310, + "thread": 21 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 680686, + "thread": 3 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 938207, + "thread": 10 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1078492, + "thread": 23 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1250662, + "thread": 21 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1326844, + "thread": 17 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1533737, + "thread": 27 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1726428, + "thread": 4 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 1866200, + "thread": 1 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2031085, + "thread": 2 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2264490, + "thread": 30 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2344659, + "thread": 12 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2560119, + "thread": 19 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2666997, + "thread": 29 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 2948878, + "thread": 11 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 3019848, + "thread": 23 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 3164547, + "thread": 28 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 3302900, + "thread": 29 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 3592228, + "thread": 15 + } + }, + { + "amount": "141.497287764", + "slot": { + "period": 3696355, + "thread": 18 + } + }, + { + "amount": "141.497287769", + "slot": { + "period": 3835447, + "thread": 16 + } + } + ], + "AU1PMVyDXyFUjJFh5wX3d26ojZrQHQWaFnSHDdNcpAfF73kLinDF": [ + { + "amount": "335.295900161", + "slot": { + "period": 69822, + "thread": 18 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 220931, + "thread": 2 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 414618, + "thread": 6 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 585586, + "thread": 20 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 742305, + "thread": 0 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 833228, + "thread": 23 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 991012, + "thread": 24 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 1242887, + "thread": 23 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 1340047, + "thread": 20 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 1541556, + "thread": 1 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 1650768, + "thread": 10 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 1830242, + "thread": 24 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2007036, + "thread": 16 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2228706, + "thread": 14 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2319954, + "thread": 3 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2550393, + "thread": 24 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2632612, + "thread": 5 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 2938311, + "thread": 20 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 3047899, + "thread": 6 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 3155355, + "thread": 27 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 3436655, + "thread": 23 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 3557789, + "thread": 5 + } + }, + { + "amount": "335.295900161", + "slot": { + "period": 3695799, + "thread": 26 + } + }, + { + "amount": "335.295900157", + "slot": { + "period": 3848182, + "thread": 6 + } + } + ], + "AU1PNJMBmZiJKxotNbE2op3rcb1YmwA83rQVH5wZd7xiTANk3EoT": [ + { + "amount": "222.471340898", + "slot": { + "period": 56769, + "thread": 31 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 239812, + "thread": 24 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 444977, + "thread": 31 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 494039, + "thread": 3 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 726160, + "thread": 21 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 977329, + "thread": 31 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1064491, + "thread": 24 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1256990, + "thread": 7 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1406043, + "thread": 26 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1549537, + "thread": 17 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1780007, + "thread": 8 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1960558, + "thread": 22 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 1983229, + "thread": 8 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 2190778, + "thread": 11 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 2339527, + "thread": 3 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 2623167, + "thread": 17 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 2645110, + "thread": 15 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 2840147, + "thread": 4 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 3096614, + "thread": 4 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 3266377, + "thread": 22 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 3429818, + "thread": 23 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 3615496, + "thread": 15 + } + }, + { + "amount": "222.471340898", + "slot": { + "period": 3668336, + "thread": 17 + } + }, + { + "amount": "222.471340891", + "slot": { + "period": 3875422, + "thread": 20 + } + } + ], + "AU1PNeUnBSv2AjtvkWtmw9n6kJaMgihf3pjz5q8kvHBUwyKzR9N2": [ + { + "amount": "111.028176176", + "slot": { + "period": 122052, + "thread": 21 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 293283, + "thread": 13 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 483496, + "thread": 17 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 576297, + "thread": 12 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 718723, + "thread": 15 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 936701, + "thread": 15 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1004473, + "thread": 1 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1287393, + "thread": 23 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1433944, + "thread": 0 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1516291, + "thread": 3 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1761451, + "thread": 0 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 1943082, + "thread": 10 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2025059, + "thread": 24 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2208666, + "thread": 8 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2429852, + "thread": 13 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2478922, + "thread": 1 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2751587, + "thread": 16 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 2863738, + "thread": 31 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 3053126, + "thread": 11 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 3150779, + "thread": 29 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 3399664, + "thread": 27 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 3490678, + "thread": 14 + } + }, + { + "amount": "111.028176176", + "slot": { + "period": 3634457, + "thread": 17 + } + }, + { + "amount": "111.028176169", + "slot": { + "period": 3816564, + "thread": 22 + } + } + ], + "AU1PPBKdQFnkUgjyuk2e6GiCwv7Fw4ARToiVDac4ZYLRN1uS936A": [ + { + "amount": "609.524327688", + "slot": { + "period": 120497, + "thread": 24 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 249198, + "thread": 14 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 410138, + "thread": 0 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 636106, + "thread": 9 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 792970, + "thread": 15 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 895434, + "thread": 23 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1077353, + "thread": 27 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1212121, + "thread": 16 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1458048, + "thread": 8 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1626364, + "thread": 19 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1659022, + "thread": 12 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 1888490, + "thread": 3 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2014437, + "thread": 8 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2224053, + "thread": 28 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2320496, + "thread": 21 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2600068, + "thread": 27 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2637969, + "thread": 29 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2842685, + "thread": 14 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 2957782, + "thread": 2 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 3276155, + "thread": 25 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 3320150, + "thread": 29 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 3585453, + "thread": 26 + } + }, + { + "amount": "609.524327688", + "slot": { + "period": 3670216, + "thread": 3 + } + }, + { + "amount": "609.524327697", + "slot": { + "period": 3938916, + "thread": 30 + } + } + ], + "AU1PPvtDgCy1UjrWBsC8GNJrQRk1fMjeyqcbjUxW3pT8qFANomXW": [ + { + "amount": "159.335250814", + "slot": { + "period": 77926, + "thread": 4 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 261950, + "thread": 5 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 415985, + "thread": 17 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 521587, + "thread": 25 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 678057, + "thread": 1 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 944272, + "thread": 27 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1136495, + "thread": 0 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1200952, + "thread": 31 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1378856, + "thread": 24 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1612396, + "thread": 7 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1716857, + "thread": 23 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1884930, + "thread": 8 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 1991289, + "thread": 17 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 2159791, + "thread": 25 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 2441172, + "thread": 7 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 2495775, + "thread": 1 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 2756114, + "thread": 3 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 2800202, + "thread": 12 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 3109837, + "thread": 12 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 3123119, + "thread": 30 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 3371749, + "thread": 26 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 3456341, + "thread": 18 + } + }, + { + "amount": "159.335250814", + "slot": { + "period": 3715749, + "thread": 2 + } + }, + { + "amount": "159.335250823", + "slot": { + "period": 3873524, + "thread": 11 + } + } + ], + "AU1PQJaAwxCT3w9BzQfwkAkeCdpwuAMGn9U9W6paWMa9x7Q8ic7D": [ + { + "amount": "155.038431560", + "slot": { + "period": 63244, + "thread": 17 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 209045, + "thread": 19 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 480405, + "thread": 18 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 526254, + "thread": 18 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 744631, + "thread": 18 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 947365, + "thread": 31 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1088915, + "thread": 10 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1289550, + "thread": 11 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1444579, + "thread": 24 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1509204, + "thread": 15 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1741737, + "thread": 9 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 1852082, + "thread": 28 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2138102, + "thread": 8 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2243624, + "thread": 4 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2307777, + "thread": 14 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2504477, + "thread": 7 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2718327, + "thread": 19 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 2861777, + "thread": 13 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 3091716, + "thread": 16 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 3240418, + "thread": 28 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 3291656, + "thread": 12 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 3519554, + "thread": 24 + } + }, + { + "amount": "155.038431560", + "slot": { + "period": 3731315, + "thread": 8 + } + }, + { + "amount": "155.038431565", + "slot": { + "period": 3886069, + "thread": 14 + } + } + ], + "AU1PSHa53BG1QiZPpULtcy4z3cKptbw82qbr6fY7K86Y4NVYKkiq": [ + { + "amount": "327.308085068", + "slot": { + "period": 134245, + "thread": 8 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 257323, + "thread": 21 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 362688, + "thread": 26 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 555917, + "thread": 19 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 758228, + "thread": 13 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 895661, + "thread": 15 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1022518, + "thread": 28 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1294087, + "thread": 4 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1403342, + "thread": 29 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1558408, + "thread": 13 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1669445, + "thread": 15 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1921495, + "thread": 16 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 1991528, + "thread": 5 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 2256229, + "thread": 11 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 2376069, + "thread": 30 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 2504995, + "thread": 29 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 2722576, + "thread": 12 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 2949975, + "thread": 25 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 3051035, + "thread": 4 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 3258674, + "thread": 29 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 3352047, + "thread": 6 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 3573829, + "thread": 26 + } + }, + { + "amount": "327.308085068", + "slot": { + "period": 3712597, + "thread": 15 + } + }, + { + "amount": "327.308085077", + "slot": { + "period": 3786711, + "thread": 26 + } + } + ], + "AU1PSLPcTNCZoC3W56PSNc4Gsb7qkP87gM6MvN51LApWkgjyQsKf": [ + { + "amount": "119.091126877", + "slot": { + "period": 72642, + "thread": 3 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 180101, + "thread": 18 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 419049, + "thread": 2 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 546655, + "thread": 30 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 735580, + "thread": 14 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 821601, + "thread": 12 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1131890, + "thread": 3 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1298536, + "thread": 12 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1324617, + "thread": 11 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1619559, + "thread": 16 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1679249, + "thread": 11 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 1975515, + "thread": 13 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2085429, + "thread": 6 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2174546, + "thread": 6 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2319225, + "thread": 29 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2508356, + "thread": 5 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2769107, + "thread": 15 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2814376, + "thread": 18 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 2990613, + "thread": 27 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 3274758, + "thread": 7 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 3417188, + "thread": 11 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 3501284, + "thread": 0 + } + }, + { + "amount": "119.091126877", + "slot": { + "period": 3674901, + "thread": 31 + } + }, + { + "amount": "119.091126873", + "slot": { + "period": 3829463, + "thread": 2 + } + } + ], + "AU1PSh9M16KfdW5aCqQ1ntCCtaLPCn1npgQymmdpehTWHEhiht6v": [ + { + "amount": "233.675916026", + "slot": { + "period": 48977, + "thread": 1 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 247359, + "thread": 25 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 481772, + "thread": 12 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 544301, + "thread": 25 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 732062, + "thread": 6 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 901166, + "thread": 12 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1049231, + "thread": 1 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1274888, + "thread": 27 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1378274, + "thread": 15 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1626186, + "thread": 29 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1739214, + "thread": 9 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 1947074, + "thread": 3 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2071248, + "thread": 11 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2249969, + "thread": 10 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2455124, + "thread": 24 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2484099, + "thread": 6 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2767995, + "thread": 4 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 2881966, + "thread": 1 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 3083926, + "thread": 13 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 3148209, + "thread": 3 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 3411366, + "thread": 19 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 3509297, + "thread": 23 + } + }, + { + "amount": "233.675916026", + "slot": { + "period": 3687666, + "thread": 19 + } + }, + { + "amount": "233.675916035", + "slot": { + "period": 3816057, + "thread": 9 + } + } + ], + "AU1PShTTK62ko8TRqoip8bJy5Sk77X7k1chgv699nVWLibZeUNpu": [ + { + "amount": "238.216437288", + "slot": { + "period": 121835, + "thread": 20 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 173970, + "thread": 31 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 376894, + "thread": 28 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 538010, + "thread": 7 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 797679, + "thread": 27 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 854156, + "thread": 31 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1112704, + "thread": 29 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1206113, + "thread": 14 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1405731, + "thread": 21 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1538283, + "thread": 21 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1701703, + "thread": 29 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 1851800, + "thread": 7 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2090562, + "thread": 16 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2159667, + "thread": 31 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2354709, + "thread": 9 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2463960, + "thread": 22 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2762440, + "thread": 19 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 2795943, + "thread": 21 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 3107898, + "thread": 20 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 3139006, + "thread": 18 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 3440909, + "thread": 22 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 3511544, + "thread": 2 + } + }, + { + "amount": "238.216437288", + "slot": { + "period": 3661839, + "thread": 31 + } + }, + { + "amount": "238.216437290", + "slot": { + "period": 3837585, + "thread": 14 + } + } + ], + "AU1PTHJ2rxXufrHWfqMWZyAMCUoDWu2gjUR3bQtwMyKHmDm9oPcN": [ + { + "amount": "142.699777039", + "slot": { + "period": 48458, + "thread": 19 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 212095, + "thread": 5 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 432819, + "thread": 14 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 609288, + "thread": 11 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 785787, + "thread": 25 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 972347, + "thread": 19 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1135169, + "thread": 31 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1310107, + "thread": 10 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1323113, + "thread": 30 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1531324, + "thread": 21 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1793976, + "thread": 22 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 1816758, + "thread": 8 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2138671, + "thread": 9 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2290941, + "thread": 4 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2453430, + "thread": 5 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2495152, + "thread": 21 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2778136, + "thread": 9 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 2829873, + "thread": 12 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 3115796, + "thread": 29 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 3195963, + "thread": 22 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 3420034, + "thread": 20 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 3495170, + "thread": 4 + } + }, + { + "amount": "142.699777039", + "slot": { + "period": 3725859, + "thread": 7 + } + }, + { + "amount": "142.699777030", + "slot": { + "period": 3784704, + "thread": 25 + } + } + ], + "AU1PTZiYHbkjzcVmjMRyfGvX5T1waZ7jFzxdvc9Ji3a3RKjmaBZn": [ + { + "amount": "86.541294591", + "slot": { + "period": 112059, + "thread": 5 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 293926, + "thread": 7 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 480191, + "thread": 15 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 650191, + "thread": 5 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 775009, + "thread": 19 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 880070, + "thread": 14 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1021735, + "thread": 13 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1161679, + "thread": 14 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1322936, + "thread": 14 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1550837, + "thread": 0 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1801094, + "thread": 22 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 1908903, + "thread": 29 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2067766, + "thread": 15 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2233582, + "thread": 9 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2458151, + "thread": 3 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2584053, + "thread": 12 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2649684, + "thread": 14 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2852058, + "thread": 11 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 2987658, + "thread": 8 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 3262354, + "thread": 5 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 3396834, + "thread": 24 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 3550913, + "thread": 8 + } + }, + { + "amount": "86.541294591", + "slot": { + "period": 3725357, + "thread": 30 + } + }, + { + "amount": "86.541294595", + "slot": { + "period": 3800390, + "thread": 25 + } + } + ], + "AU1PTcWmyd79sW39NG1nt2JCnyzeBjRVZzLtMh2FqYFBGthJkDQq": [ + { + "amount": "130.679127237", + "slot": { + "period": 20128, + "thread": 3 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 294133, + "thread": 28 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 396538, + "thread": 17 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 491907, + "thread": 7 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 715858, + "thread": 28 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 865175, + "thread": 16 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1058120, + "thread": 13 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1167375, + "thread": 17 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1332929, + "thread": 28 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1505215, + "thread": 8 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1786730, + "thread": 23 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 1893157, + "thread": 11 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2090198, + "thread": 21 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2262689, + "thread": 11 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2377105, + "thread": 29 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2586807, + "thread": 20 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2748144, + "thread": 13 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2812778, + "thread": 3 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 2968996, + "thread": 22 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 3169355, + "thread": 9 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 3403297, + "thread": 4 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 3490491, + "thread": 27 + } + }, + { + "amount": "130.679127237", + "slot": { + "period": 3620409, + "thread": 11 + } + }, + { + "amount": "130.679127233", + "slot": { + "period": 3849674, + "thread": 15 + } + } + ], + "AU1PTqK1Ve8Q2WbgK3w32Ee8v4DcvwgKJ3B57wH9KHK9abqr1CWo": [ + { + "amount": "146.667528081", + "slot": { + "period": 61506, + "thread": 10 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 198228, + "thread": 0 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 414322, + "thread": 16 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 578712, + "thread": 7 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 718059, + "thread": 14 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 929952, + "thread": 8 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1008033, + "thread": 31 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1201112, + "thread": 27 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1396094, + "thread": 9 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1612268, + "thread": 5 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1798958, + "thread": 9 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 1881685, + "thread": 10 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2119330, + "thread": 24 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2248855, + "thread": 21 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2414054, + "thread": 21 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2610749, + "thread": 31 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2649638, + "thread": 13 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2932909, + "thread": 11 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 2983023, + "thread": 17 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 3144911, + "thread": 28 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 3371621, + "thread": 22 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 3549430, + "thread": 1 + } + }, + { + "amount": "146.667528081", + "slot": { + "period": 3701959, + "thread": 18 + } + }, + { + "amount": "146.667528075", + "slot": { + "period": 3876410, + "thread": 3 + } + } + ], + "AU1PU2gMcaYo2C5n9SFscuMCgGNh1JPNN5YyyUL1fvdXNKoVa89n": [ + { + "amount": "80.580930772", + "slot": { + "period": 17937, + "thread": 12 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 242664, + "thread": 28 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 433995, + "thread": 22 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 583665, + "thread": 13 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 721017, + "thread": 19 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 886748, + "thread": 11 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1085112, + "thread": 20 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1215953, + "thread": 2 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1472126, + "thread": 5 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1635682, + "thread": 23 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1648425, + "thread": 4 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 1914837, + "thread": 21 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2120993, + "thread": 17 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2205204, + "thread": 9 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2400058, + "thread": 30 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2601605, + "thread": 14 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2713230, + "thread": 7 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2796440, + "thread": 3 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 2985332, + "thread": 28 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 3137898, + "thread": 28 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 3296687, + "thread": 20 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 3597472, + "thread": 28 + } + }, + { + "amount": "80.580930772", + "slot": { + "period": 3626123, + "thread": 5 + } + }, + { + "amount": "80.580930781", + "slot": { + "period": 3844352, + "thread": 7 + } + } + ], + "AU1PV9HcKf8yqWaNnnPf2tsHRW5jN5sp1tXMbUx6R49u5dJUEcV2": [ + { + "amount": "122.983862985", + "slot": { + "period": 159626, + "thread": 30 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 227101, + "thread": 26 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 432657, + "thread": 2 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 553482, + "thread": 11 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 734334, + "thread": 6 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 954756, + "thread": 14 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 998322, + "thread": 1 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 1272418, + "thread": 12 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 1394076, + "thread": 23 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 1527392, + "thread": 2 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 1692138, + "thread": 31 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 1915354, + "thread": 14 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2119451, + "thread": 8 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2200090, + "thread": 16 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2446939, + "thread": 23 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2611858, + "thread": 25 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2753568, + "thread": 7 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2872688, + "thread": 13 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 2977995, + "thread": 8 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 3136189, + "thread": 31 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 3379427, + "thread": 1 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 3475828, + "thread": 21 + } + }, + { + "amount": "122.983862985", + "slot": { + "period": 3705525, + "thread": 7 + } + }, + { + "amount": "122.983862992", + "slot": { + "period": 3930463, + "thread": 13 + } + } + ], + "AU1PVZVzLwKM5x2aQsgZxC2ZcbMsV3c25ZtKsXefv3KxPadskBmq": [ + { + "amount": "211.510306802", + "slot": { + "period": 66432, + "thread": 3 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 235885, + "thread": 18 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 484777, + "thread": 22 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 556926, + "thread": 27 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 740368, + "thread": 23 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 862912, + "thread": 15 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 988482, + "thread": 8 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 1279532, + "thread": 10 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 1363004, + "thread": 11 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 1485252, + "thread": 12 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 1765633, + "thread": 12 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 1827665, + "thread": 23 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2105668, + "thread": 8 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2219116, + "thread": 19 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2403867, + "thread": 26 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2556979, + "thread": 15 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2637445, + "thread": 30 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 2863557, + "thread": 20 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 3106747, + "thread": 2 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 3252682, + "thread": 12 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 3361602, + "thread": 18 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 3498454, + "thread": 17 + } + }, + { + "amount": "211.510306802", + "slot": { + "period": 3681980, + "thread": 1 + } + }, + { + "amount": "211.510306810", + "slot": { + "period": 3918821, + "thread": 21 + } + } + ], + "AU1PWPFPdYRg31JgF8QLfJbTffLpL4PGbvX5gjnQERHYY8iqvhpA": [ + { + "amount": "150.094051552", + "slot": { + "period": 155339, + "thread": 21 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 188009, + "thread": 23 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 479552, + "thread": 16 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 653300, + "thread": 22 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 718315, + "thread": 18 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 953681, + "thread": 16 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1093581, + "thread": 15 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1316516, + "thread": 4 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1446725, + "thread": 21 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1511003, + "thread": 19 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1681673, + "thread": 21 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 1895950, + "thread": 21 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2119749, + "thread": 15 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2150364, + "thread": 0 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2420213, + "thread": 13 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2589400, + "thread": 26 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2772663, + "thread": 12 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 2844509, + "thread": 0 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 3113466, + "thread": 5 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 3175367, + "thread": 4 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 3334621, + "thread": 17 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 3488151, + "thread": 23 + } + }, + { + "amount": "150.094051552", + "slot": { + "period": 3763503, + "thread": 1 + } + }, + { + "amount": "150.094051541", + "slot": { + "period": 3862216, + "thread": 2 + } + } + ], + "AU1PZKJj1SkkEv2zeLnK9HMX9MC2w6G5qAhSK3j7g6t8NuqUbNhL": [ + { + "amount": "56.037541158", + "slot": { + "period": 112454, + "thread": 7 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 195273, + "thread": 11 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 390481, + "thread": 10 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 526804, + "thread": 25 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 725036, + "thread": 27 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 982293, + "thread": 2 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1066145, + "thread": 0 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1305858, + "thread": 22 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1338951, + "thread": 23 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1630629, + "thread": 14 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1774793, + "thread": 14 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 1825710, + "thread": 23 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2076071, + "thread": 4 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2273390, + "thread": 2 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2405473, + "thread": 0 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2614457, + "thread": 16 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2755426, + "thread": 15 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 2824680, + "thread": 9 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 3030647, + "thread": 29 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 3152954, + "thread": 17 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 3340545, + "thread": 10 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 3596361, + "thread": 18 + } + }, + { + "amount": "56.037541158", + "slot": { + "period": 3724765, + "thread": 30 + } + }, + { + "amount": "56.037541152", + "slot": { + "period": 3917427, + "thread": 9 + } + } + ], + "AU1PZRTzqnRXSWMwW4bjQ2ZetevKwPTmwq4W14ZoU8pH6WHZFCiw": [ + { + "amount": "291.538150343", + "slot": { + "period": 91056, + "thread": 6 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 214743, + "thread": 8 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 466732, + "thread": 18 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 563280, + "thread": 25 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 689811, + "thread": 21 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 875979, + "thread": 19 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1143902, + "thread": 2 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1282671, + "thread": 10 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1418515, + "thread": 3 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1543992, + "thread": 14 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1698895, + "thread": 23 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 1951680, + "thread": 30 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2096977, + "thread": 15 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2215320, + "thread": 15 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2404405, + "thread": 1 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2511911, + "thread": 14 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2711562, + "thread": 25 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2817823, + "thread": 10 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 2967807, + "thread": 31 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 3154965, + "thread": 0 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 3371621, + "thread": 4 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 3487364, + "thread": 25 + } + }, + { + "amount": "291.538150343", + "slot": { + "period": 3675093, + "thread": 21 + } + }, + { + "amount": "291.538150354", + "slot": { + "period": 3920716, + "thread": 2 + } + } + ], + "AU1PZt6XvEBbXryUz5UWSuPuQqB3vMA5HsSggYp8ihvh6bGB6Zb7": [ + { + "amount": "366.491938890", + "slot": { + "period": 117559, + "thread": 9 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 225405, + "thread": 20 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 343677, + "thread": 30 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 535442, + "thread": 5 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 718662, + "thread": 23 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 835937, + "thread": 6 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1028230, + "thread": 24 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1241751, + "thread": 4 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1365298, + "thread": 2 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1531660, + "thread": 11 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1749665, + "thread": 27 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 1942578, + "thread": 8 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2042385, + "thread": 14 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2157986, + "thread": 11 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2382814, + "thread": 24 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2476444, + "thread": 22 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2675463, + "thread": 31 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 2873072, + "thread": 5 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3079456, + "thread": 9 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3177783, + "thread": 12 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3289173, + "thread": 13 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3599154, + "thread": 8 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3649930, + "thread": 19 + } + }, + { + "amount": "366.491938890", + "slot": { + "period": 3912380, + "thread": 29 + } + } + ], + "AU1PbMg8fc1oTn4xWx5gdamYtSvyAfnXKkrDS5Er7f2ergpRjd2P": [ + { + "amount": "85.066226405", + "slot": { + "period": 52552, + "thread": 6 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 223733, + "thread": 1 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 442868, + "thread": 9 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 562964, + "thread": 11 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 778370, + "thread": 2 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 974461, + "thread": 19 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1038288, + "thread": 1 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1268401, + "thread": 4 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1421386, + "thread": 11 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1536913, + "thread": 3 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1709155, + "thread": 5 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 1851229, + "thread": 23 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2036773, + "thread": 29 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2245798, + "thread": 31 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2322529, + "thread": 25 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2565632, + "thread": 19 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2719558, + "thread": 11 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 2809391, + "thread": 20 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 3076595, + "thread": 6 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 3195250, + "thread": 9 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 3433406, + "thread": 5 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 3533213, + "thread": 28 + } + }, + { + "amount": "85.066226405", + "slot": { + "period": 3778453, + "thread": 29 + } + }, + { + "amount": "85.066226412", + "slot": { + "period": 3838612, + "thread": 20 + } + } + ], + "AU1PbQN8eHiYePtnKL7k56ktLAePa21m32oKUhbEqz61nQuhV4g9": [ + { + "amount": "129.356584453", + "slot": { + "period": 88117, + "thread": 25 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 258816, + "thread": 24 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 383460, + "thread": 6 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 534942, + "thread": 1 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 792961, + "thread": 12 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 958332, + "thread": 23 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1145607, + "thread": 8 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1234167, + "thread": 26 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1320086, + "thread": 5 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1626099, + "thread": 15 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1733906, + "thread": 6 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 1823235, + "thread": 31 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2001520, + "thread": 27 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2242258, + "thread": 1 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2362601, + "thread": 8 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2500974, + "thread": 4 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2634011, + "thread": 26 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 2887236, + "thread": 30 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 3018510, + "thread": 16 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 3123864, + "thread": 6 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 3333183, + "thread": 15 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 3506312, + "thread": 27 + } + }, + { + "amount": "129.356584453", + "slot": { + "period": 3702692, + "thread": 17 + } + }, + { + "amount": "129.356584458", + "slot": { + "period": 3894021, + "thread": 13 + } + } + ], + "AU1PbYpoesQBFdtPfEwhgY7T4375P5ERTiM5yeKnuJdnbvzNcqyZ": [ + { + "amount": "110.137514885", + "slot": { + "period": 98070, + "thread": 11 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 317532, + "thread": 24 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 433293, + "thread": 8 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 534688, + "thread": 5 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 723086, + "thread": 10 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 960815, + "thread": 2 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1132766, + "thread": 16 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1252896, + "thread": 11 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1394763, + "thread": 26 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1599434, + "thread": 24 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1770262, + "thread": 2 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 1831088, + "thread": 30 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2109918, + "thread": 5 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2291991, + "thread": 23 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2455853, + "thread": 2 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2493867, + "thread": 18 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2657889, + "thread": 29 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 2834958, + "thread": 18 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 3024136, + "thread": 27 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 3150983, + "thread": 25 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 3409935, + "thread": 27 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 3569053, + "thread": 20 + } + }, + { + "amount": "110.137514885", + "slot": { + "period": 3724712, + "thread": 21 + } + }, + { + "amount": "110.137514887", + "slot": { + "period": 3788935, + "thread": 7 + } + } + ], + "AU1PbgwEh1e8pA85aEjNQxdUM7FqexryuRnk7dNaLgQcDzJxYnND": [ + { + "amount": "331.720214634", + "slot": { + "period": 133508, + "thread": 25 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 190806, + "thread": 29 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 338476, + "thread": 17 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 516308, + "thread": 27 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 738970, + "thread": 31 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 882840, + "thread": 20 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1081851, + "thread": 24 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1287475, + "thread": 9 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1387120, + "thread": 18 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1544904, + "thread": 12 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1687427, + "thread": 29 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 1934343, + "thread": 2 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2058775, + "thread": 21 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2283506, + "thread": 4 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2424852, + "thread": 3 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2597138, + "thread": 3 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2645026, + "thread": 27 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2827853, + "thread": 5 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 2994012, + "thread": 10 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 3276026, + "thread": 19 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 3306057, + "thread": 17 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 3478931, + "thread": 20 + } + }, + { + "amount": "331.720214634", + "slot": { + "period": 3721706, + "thread": 16 + } + }, + { + "amount": "331.720214646", + "slot": { + "period": 3927558, + "thread": 8 + } + } + ], + "AU1PbsdY4oJFwg5vfaTckujEVmuvtHYQBE9J3zMPBDW21GkwFqVR": [ + { + "amount": "124.108093800", + "slot": { + "period": 63650, + "thread": 21 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 273414, + "thread": 20 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 436327, + "thread": 13 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 512973, + "thread": 12 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 813687, + "thread": 6 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 967898, + "thread": 4 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1081235, + "thread": 31 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1162181, + "thread": 3 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1451130, + "thread": 29 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1538921, + "thread": 30 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1750120, + "thread": 18 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1813507, + "thread": 11 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 1978890, + "thread": 8 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 2180368, + "thread": 2 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 2447231, + "thread": 31 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 2527778, + "thread": 23 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 2746770, + "thread": 0 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 2902421, + "thread": 18 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 3070879, + "thread": 22 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 3138417, + "thread": 17 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 3310837, + "thread": 22 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 3465605, + "thread": 22 + } + }, + { + "amount": "124.108093800", + "slot": { + "period": 3738684, + "thread": 12 + } + }, + { + "amount": "124.108093789", + "slot": { + "period": 3836948, + "thread": 3 + } + } + ], + "AU1Pc15fL6Ju8kXM9iuJnczVM5Jb1QEYgqkkYg5kTxPKXUtyTS6J": [ + { + "amount": "175.963339317", + "slot": { + "period": 51023, + "thread": 23 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 175358, + "thread": 14 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 431376, + "thread": 31 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 560254, + "thread": 25 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 698372, + "thread": 22 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 855978, + "thread": 16 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1083205, + "thread": 7 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1157752, + "thread": 2 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1387154, + "thread": 0 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1505986, + "thread": 8 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1708373, + "thread": 27 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 1862958, + "thread": 5 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2029865, + "thread": 20 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2219526, + "thread": 18 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2409119, + "thread": 3 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2559093, + "thread": 3 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2727292, + "thread": 18 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 2949508, + "thread": 17 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 3033307, + "thread": 14 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 3281715, + "thread": 4 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 3302607, + "thread": 10 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 3495983, + "thread": 19 + } + }, + { + "amount": "175.963339317", + "slot": { + "period": 3658959, + "thread": 26 + } + }, + { + "amount": "175.963339321", + "slot": { + "period": 3782447, + "thread": 12 + } + } + ], + "AU1Pc9Dx2A7hEx8VDiXiQp56kbRdGzVrzraN6vLCaghUcxJRyJEM": [ + { + "amount": "119.646404516", + "slot": { + "period": 87387, + "thread": 18 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 284970, + "thread": 10 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 443545, + "thread": 28 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 587062, + "thread": 27 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 769087, + "thread": 13 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 836353, + "thread": 5 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1128358, + "thread": 13 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1280506, + "thread": 8 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1380976, + "thread": 23 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1576458, + "thread": 4 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1746127, + "thread": 23 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 1902731, + "thread": 4 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2065680, + "thread": 10 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2245293, + "thread": 19 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2366471, + "thread": 7 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2489869, + "thread": 31 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2647104, + "thread": 14 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 2921023, + "thread": 31 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 3117030, + "thread": 29 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 3167751, + "thread": 5 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 3298768, + "thread": 21 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 3614111, + "thread": 26 + } + }, + { + "amount": "119.646404516", + "slot": { + "period": 3672187, + "thread": 9 + } + }, + { + "amount": "119.646404511", + "slot": { + "period": 3917205, + "thread": 14 + } + } + ], + "AU1PcYa5M3U6GZv3LV6oHToPHGUUHnd1dhW9quHp3Roru43A5xBT": [ + { + "amount": "287.404909256", + "slot": { + "period": 158701, + "thread": 0 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 242949, + "thread": 2 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 336534, + "thread": 23 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 647478, + "thread": 14 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 699778, + "thread": 6 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 949863, + "thread": 6 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1120838, + "thread": 0 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1165564, + "thread": 20 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1412538, + "thread": 7 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1645570, + "thread": 30 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1716746, + "thread": 7 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 1945648, + "thread": 26 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2007081, + "thread": 26 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2175822, + "thread": 17 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2404069, + "thread": 20 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2566682, + "thread": 23 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2783963, + "thread": 9 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2863996, + "thread": 25 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 2958163, + "thread": 6 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 3211705, + "thread": 14 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 3397712, + "thread": 15 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 3614898, + "thread": 16 + } + }, + { + "amount": "287.404909256", + "slot": { + "period": 3704642, + "thread": 28 + } + }, + { + "amount": "287.404909263", + "slot": { + "period": 3798039, + "thread": 30 + } + } + ], + "AU1Pd2BUdgKi4Hrf1NFChr4KGmbbJxp7ZQomHFkZkTRHYt7skXEz": [ + { + "amount": "473.748823119", + "slot": { + "period": 141723, + "thread": 19 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 316087, + "thread": 8 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 345309, + "thread": 3 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 577839, + "thread": 26 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 798032, + "thread": 12 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 876745, + "thread": 18 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1081209, + "thread": 18 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1206646, + "thread": 8 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1340282, + "thread": 19 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1587354, + "thread": 16 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1684964, + "thread": 0 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1901891, + "thread": 7 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 1998349, + "thread": 24 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 2279017, + "thread": 15 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 2318076, + "thread": 7 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 2479742, + "thread": 26 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 2748865, + "thread": 6 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 2914642, + "thread": 29 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 3077596, + "thread": 30 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 3147949, + "thread": 11 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 3355258, + "thread": 24 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 3617960, + "thread": 9 + } + }, + { + "amount": "473.748823119", + "slot": { + "period": 3693134, + "thread": 20 + } + }, + { + "amount": "473.748823128", + "slot": { + "period": 3922507, + "thread": 18 + } + } + ], + "AU1PdjRBUqV31A7Yh1YN41qSGff8kmdT3ZSBLVaEVZryjZENcN5F": [ + { + "amount": "152.728996959", + "slot": { + "period": 32609, + "thread": 13 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 212077, + "thread": 18 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 350672, + "thread": 20 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 608792, + "thread": 20 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 774836, + "thread": 17 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 963265, + "thread": 4 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1106256, + "thread": 9 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1171345, + "thread": 24 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1465935, + "thread": 7 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1626628, + "thread": 28 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1715893, + "thread": 27 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 1917399, + "thread": 10 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2053665, + "thread": 2 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2252807, + "thread": 2 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2341306, + "thread": 30 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2614451, + "thread": 20 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2707336, + "thread": 13 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 2844674, + "thread": 26 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 3044464, + "thread": 10 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 3175081, + "thread": 18 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 3322990, + "thread": 1 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 3537443, + "thread": 13 + } + }, + { + "amount": "152.728996959", + "slot": { + "period": 3698661, + "thread": 13 + } + }, + { + "amount": "152.728996970", + "slot": { + "period": 3849782, + "thread": 8 + } + } + ], + "AU1Pe9ciw2gg4aGg9amnLLBBf7NanYv5VpDCSGgQEYz1fPS9akao": [ + { + "amount": "162.920703895", + "slot": { + "period": 104580, + "thread": 1 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 278573, + "thread": 17 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 339544, + "thread": 18 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 581938, + "thread": 23 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 776242, + "thread": 16 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 904064, + "thread": 31 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1145529, + "thread": 18 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1247032, + "thread": 18 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1359787, + "thread": 17 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1503612, + "thread": 30 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1740453, + "thread": 5 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 1827726, + "thread": 20 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2037944, + "thread": 16 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2145274, + "thread": 6 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2384468, + "thread": 5 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2607496, + "thread": 6 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2625448, + "thread": 1 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 2908879, + "thread": 15 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 3103017, + "thread": 7 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 3219382, + "thread": 0 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 3364007, + "thread": 30 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 3604890, + "thread": 9 + } + }, + { + "amount": "162.920703895", + "slot": { + "period": 3625645, + "thread": 4 + } + }, + { + "amount": "162.920703902", + "slot": { + "period": 3934469, + "thread": 6 + } + } + ], + "AU1PfMzJcop9XcjPQyF5RpqdQK5oBuLKUSXvStrJkUBY23hQNZvP": [ + { + "amount": "281.761411969", + "slot": { + "period": 97489, + "thread": 14 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 299605, + "thread": 21 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 403768, + "thread": 31 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 591375, + "thread": 11 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 772342, + "thread": 24 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 851854, + "thread": 3 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1087442, + "thread": 14 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1311619, + "thread": 5 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1418371, + "thread": 24 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1567515, + "thread": 19 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1779751, + "thread": 20 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 1885353, + "thread": 30 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2000913, + "thread": 27 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2226334, + "thread": 13 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2406476, + "thread": 9 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2490208, + "thread": 4 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2674559, + "thread": 30 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 2873752, + "thread": 17 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 3089160, + "thread": 5 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 3193469, + "thread": 17 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 3403410, + "thread": 12 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 3606898, + "thread": 10 + } + }, + { + "amount": "281.761411969", + "slot": { + "period": 3648424, + "thread": 5 + } + }, + { + "amount": "281.761411962", + "slot": { + "period": 3867700, + "thread": 8 + } + } + ], + "AU1PfnLRSsoZDbPfkQnbyfcoRSEgLb4KTtCVVgKtFpLMpYKrVX1V": [ + { + "amount": "251.357771339", + "slot": { + "period": 65106, + "thread": 23 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 192027, + "thread": 27 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 383006, + "thread": 31 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 511857, + "thread": 6 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 764823, + "thread": 2 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 823085, + "thread": 10 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1143732, + "thread": 8 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1294318, + "thread": 5 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1347091, + "thread": 18 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1548233, + "thread": 22 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1651013, + "thread": 28 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 1909846, + "thread": 9 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2078900, + "thread": 3 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2237380, + "thread": 6 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2344018, + "thread": 24 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2548736, + "thread": 8 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2789916, + "thread": 28 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2851375, + "thread": 19 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 2962166, + "thread": 1 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 3166326, + "thread": 21 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 3435826, + "thread": 24 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 3465176, + "thread": 28 + } + }, + { + "amount": "251.357771339", + "slot": { + "period": 3726976, + "thread": 14 + } + }, + { + "amount": "251.357771334", + "slot": { + "period": 3837916, + "thread": 4 + } + } + ], + "AU1PgjgjN93MTDgdfoDfVmb23b2bq5GYQ7Y5AV7aY9mHj14fYJCZ": [ + { + "amount": "189.546505098", + "slot": { + "period": 73390, + "thread": 6 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 219136, + "thread": 17 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 475101, + "thread": 13 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 618951, + "thread": 24 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 707069, + "thread": 18 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 977033, + "thread": 30 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1034584, + "thread": 21 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1168916, + "thread": 13 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1459157, + "thread": 30 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1643150, + "thread": 6 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1799165, + "thread": 22 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 1915884, + "thread": 21 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2075826, + "thread": 8 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2259904, + "thread": 21 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2324898, + "thread": 29 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2568895, + "thread": 18 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2741163, + "thread": 7 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 2810458, + "thread": 26 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 3100381, + "thread": 4 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 3287279, + "thread": 15 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 3312972, + "thread": 13 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 3578840, + "thread": 8 + } + }, + { + "amount": "189.546505098", + "slot": { + "period": 3758202, + "thread": 29 + } + }, + { + "amount": "189.546505096", + "slot": { + "period": 3787505, + "thread": 22 + } + } + ], + "AU1PgtmxxtPW5RvtNE3YRQ5XjutBEph7p2c1R2ztVztT6xrwdGfy": [ + { + "amount": "73.784770085", + "slot": { + "period": 91721, + "thread": 26 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 199281, + "thread": 8 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 378238, + "thread": 11 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 593565, + "thread": 24 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 678037, + "thread": 22 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 950379, + "thread": 8 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1145233, + "thread": 24 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1256565, + "thread": 19 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1439654, + "thread": 8 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1606256, + "thread": 30 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1657880, + "thread": 25 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 1852445, + "thread": 15 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2118168, + "thread": 4 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2244889, + "thread": 23 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2325991, + "thread": 30 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2529473, + "thread": 10 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2664019, + "thread": 9 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2821815, + "thread": 14 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 2982710, + "thread": 7 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 3135149, + "thread": 3 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 3292161, + "thread": 21 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 3544453, + "thread": 11 + } + }, + { + "amount": "73.784770085", + "slot": { + "period": 3640449, + "thread": 22 + } + }, + { + "amount": "73.784770078", + "slot": { + "period": 3805759, + "thread": 28 + } + } + ], + "AU1Ph3gy5bx17iThsv9wpq4QjcKTV9yYEQKjEo9CJ9yzQnzP4SKQ": [ + { + "amount": "174.637035460", + "slot": { + "period": 18614, + "thread": 6 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 189617, + "thread": 6 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 373214, + "thread": 10 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 603196, + "thread": 7 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 665754, + "thread": 27 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 904893, + "thread": 3 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1054020, + "thread": 23 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1161378, + "thread": 7 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1357107, + "thread": 18 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1562362, + "thread": 23 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1731037, + "thread": 8 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 1931037, + "thread": 17 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2125427, + "thread": 22 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2286097, + "thread": 25 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2452456, + "thread": 14 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2496096, + "thread": 30 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2662951, + "thread": 30 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 2849230, + "thread": 8 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3032461, + "thread": 8 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3267990, + "thread": 16 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3402310, + "thread": 19 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3588641, + "thread": 30 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3705748, + "thread": 26 + } + }, + { + "amount": "174.637035460", + "slot": { + "period": 3814262, + "thread": 14 + } + } + ], + "AU1PhCJSv8tG2aLoBAFjPpZCGUL9iAtdWUKCrH6zLnFJ7K3zznaQ": [ + { + "amount": "247.438377242", + "slot": { + "period": 117096, + "thread": 27 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 285139, + "thread": 25 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 475680, + "thread": 3 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 528949, + "thread": 11 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 774359, + "thread": 16 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 970575, + "thread": 10 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1042085, + "thread": 1 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1272799, + "thread": 24 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1342003, + "thread": 17 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1608124, + "thread": 18 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1667162, + "thread": 31 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 1962532, + "thread": 7 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2087575, + "thread": 5 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2227687, + "thread": 2 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2299434, + "thread": 8 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2483550, + "thread": 8 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2718852, + "thread": 3 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2879352, + "thread": 16 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 2972901, + "thread": 5 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 3199463, + "thread": 26 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 3432055, + "thread": 25 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 3579198, + "thread": 13 + } + }, + { + "amount": "247.438377242", + "slot": { + "period": 3753047, + "thread": 4 + } + }, + { + "amount": "247.438377236", + "slot": { + "period": 3901887, + "thread": 31 + } + } + ], + "AU1PjkCHq37NUVm9FBJawiRw9dCZaDRTeZQkQwsqhH36iFiPL92e": [ + { + "amount": "290.081924242", + "slot": { + "period": 160346, + "thread": 3 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 177530, + "thread": 31 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 479873, + "thread": 0 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 644780, + "thread": 31 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 760875, + "thread": 29 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 856181, + "thread": 3 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1021375, + "thread": 11 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1174707, + "thread": 16 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1417480, + "thread": 15 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1639689, + "thread": 5 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1780982, + "thread": 2 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 1869302, + "thread": 9 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2033020, + "thread": 2 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2287663, + "thread": 0 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2341520, + "thread": 21 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2598979, + "thread": 26 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2755021, + "thread": 12 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 2856301, + "thread": 23 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 3084876, + "thread": 18 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 3192627, + "thread": 25 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 3336968, + "thread": 2 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 3568733, + "thread": 3 + } + }, + { + "amount": "290.081924242", + "slot": { + "period": 3639845, + "thread": 31 + } + }, + { + "amount": "290.081924247", + "slot": { + "period": 3800337, + "thread": 16 + } + } + ], + "AU1Pk8TkZrmif5owBeECaQTtPCRm1RntV5vWMv1G5XvgUs16md4y": [ + { + "amount": "238.219072984", + "slot": { + "period": 44302, + "thread": 8 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 286197, + "thread": 11 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 344009, + "thread": 14 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 564724, + "thread": 12 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 761940, + "thread": 27 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 926573, + "thread": 28 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1002609, + "thread": 1 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1247882, + "thread": 31 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1398701, + "thread": 18 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1570903, + "thread": 3 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1744849, + "thread": 26 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 1900987, + "thread": 22 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2139284, + "thread": 25 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2180871, + "thread": 11 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2373309, + "thread": 0 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2524338, + "thread": 4 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2677150, + "thread": 0 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 2878428, + "thread": 4 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 3003913, + "thread": 16 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 3121762, + "thread": 6 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 3303705, + "thread": 22 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 3512358, + "thread": 30 + } + }, + { + "amount": "238.219072984", + "slot": { + "period": 3649786, + "thread": 20 + } + }, + { + "amount": "238.219072996", + "slot": { + "period": 3918965, + "thread": 19 + } + } + ], + "AU1PkPGJfYxUgoyvaSZRvji956Yffm5547rh9XNTC8Xczyx61etB": [ + { + "amount": "280.356891131", + "slot": { + "period": 49084, + "thread": 20 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 183148, + "thread": 22 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 380635, + "thread": 20 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 564356, + "thread": 3 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 810006, + "thread": 0 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 941309, + "thread": 30 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1139961, + "thread": 4 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1240670, + "thread": 13 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1416610, + "thread": 10 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1492831, + "thread": 11 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1764822, + "thread": 8 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1923209, + "thread": 16 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 1993297, + "thread": 12 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 2230481, + "thread": 19 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 2378073, + "thread": 6 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 2596956, + "thread": 15 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 2728951, + "thread": 9 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 2794341, + "thread": 31 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3038021, + "thread": 23 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3121292, + "thread": 4 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3418890, + "thread": 13 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3466886, + "thread": 1 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3683926, + "thread": 31 + } + }, + { + "amount": "280.356891131", + "slot": { + "period": 3889083, + "thread": 10 + } + } + ], + "AU1PkaaCueKbHMAuvmwdizoadChJ5BhGEAbxXNruFnp2YFCwrqce": [ + { + "amount": "239.759319975", + "slot": { + "period": 143945, + "thread": 2 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 191002, + "thread": 6 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 399319, + "thread": 14 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 559211, + "thread": 2 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 710679, + "thread": 18 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 940520, + "thread": 30 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1109461, + "thread": 17 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1269411, + "thread": 17 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1446602, + "thread": 13 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1625544, + "thread": 14 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1753998, + "thread": 13 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 1941295, + "thread": 16 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2129189, + "thread": 5 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2273613, + "thread": 22 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2368555, + "thread": 8 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2620499, + "thread": 26 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2701854, + "thread": 16 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 2873970, + "thread": 18 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 3009914, + "thread": 16 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 3177643, + "thread": 29 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 3310592, + "thread": 8 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 3589596, + "thread": 20 + } + }, + { + "amount": "239.759319975", + "slot": { + "period": 3618643, + "thread": 23 + } + }, + { + "amount": "239.759319982", + "slot": { + "period": 3911482, + "thread": 2 + } + } + ], + "AU1PmiHR7KSrkeYyah79c4weYQDSUVq5T6jMmmf9FAh9zMkTgbaT": [ + { + "amount": "498.145128873", + "slot": { + "period": 79169, + "thread": 2 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 208337, + "thread": 29 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 482537, + "thread": 24 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 542232, + "thread": 7 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 775760, + "thread": 20 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 910515, + "thread": 4 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1050872, + "thread": 30 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1168652, + "thread": 29 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1363382, + "thread": 30 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1620305, + "thread": 21 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1705663, + "thread": 19 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 1932960, + "thread": 29 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2097781, + "thread": 17 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2178824, + "thread": 27 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2446650, + "thread": 24 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2586464, + "thread": 3 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2644693, + "thread": 13 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 2824326, + "thread": 4 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 3017830, + "thread": 5 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 3249724, + "thread": 15 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 3331680, + "thread": 10 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 3588052, + "thread": 22 + } + }, + { + "amount": "498.145128873", + "slot": { + "period": 3702066, + "thread": 29 + } + }, + { + "amount": "498.145128869", + "slot": { + "period": 3879721, + "thread": 5 + } + } + ], + "AU1PmrdenL9wTo3nMKuFjacUar83j2qqgq6f2etu83o5ZZaRFHv3": [ + { + "amount": "297.334939064", + "slot": { + "period": 111632, + "thread": 8 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 173347, + "thread": 1 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 428114, + "thread": 19 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 515471, + "thread": 2 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 780492, + "thread": 3 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 943337, + "thread": 22 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1005593, + "thread": 7 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1313345, + "thread": 6 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1412295, + "thread": 24 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1484044, + "thread": 10 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1740017, + "thread": 3 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 1955066, + "thread": 7 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2089269, + "thread": 18 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2146552, + "thread": 27 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2350549, + "thread": 17 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2466045, + "thread": 1 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2722383, + "thread": 27 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2918634, + "thread": 14 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 2966093, + "thread": 0 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 3223284, + "thread": 11 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 3374730, + "thread": 10 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 3460447, + "thread": 30 + } + }, + { + "amount": "297.334939064", + "slot": { + "period": 3738890, + "thread": 17 + } + }, + { + "amount": "297.334939055", + "slot": { + "period": 3860449, + "thread": 31 + } + } + ], + "AU1Pn2LyuXbUFY8Mbdac7kjNgE9Gq983i7tMdU1Hr13aYcYszFNj": [ + { + "amount": "455.556584431", + "slot": { + "period": 67816, + "thread": 6 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 287442, + "thread": 13 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 410107, + "thread": 1 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 640558, + "thread": 16 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 696743, + "thread": 2 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 866132, + "thread": 6 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1095129, + "thread": 19 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1269492, + "thread": 9 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1321551, + "thread": 14 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1542522, + "thread": 0 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1757884, + "thread": 22 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 1847887, + "thread": 27 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2044053, + "thread": 16 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2261276, + "thread": 3 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2358070, + "thread": 14 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2509453, + "thread": 14 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2704510, + "thread": 2 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2854299, + "thread": 14 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 2967537, + "thread": 16 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 3177597, + "thread": 10 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 3320133, + "thread": 17 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 3501391, + "thread": 21 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 3631838, + "thread": 17 + } + }, + { + "amount": "455.556584431", + "slot": { + "period": 3939092, + "thread": 7 + } + } + ], + "AU1PnN7JFcByxgP4E4NBhVdxqHzNKoq9sR7Ed4hQPP674fQzgCbw": [ + { + "amount": "313.030516357", + "slot": { + "period": 33310, + "thread": 9 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 276654, + "thread": 0 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 393345, + "thread": 15 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 576235, + "thread": 25 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 713858, + "thread": 15 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 904267, + "thread": 16 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1050918, + "thread": 21 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1275372, + "thread": 13 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1434453, + "thread": 30 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1567755, + "thread": 31 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1670272, + "thread": 0 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 1811414, + "thread": 21 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2049329, + "thread": 3 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2242519, + "thread": 23 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2375480, + "thread": 17 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2586725, + "thread": 13 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2704448, + "thread": 0 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 2793402, + "thread": 21 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 3041782, + "thread": 15 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 3148193, + "thread": 10 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 3428156, + "thread": 27 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 3589449, + "thread": 3 + } + }, + { + "amount": "313.030516357", + "slot": { + "period": 3725192, + "thread": 11 + } + }, + { + "amount": "313.030516361", + "slot": { + "period": 3871997, + "thread": 26 + } + } + ], + "AU1PpNGEE3VtYyScwsFmoaMkwECsZXUkY1n9XJbLTFCNYy21L9p7": [ + { + "amount": "110.672822449", + "slot": { + "period": 41332, + "thread": 30 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 292490, + "thread": 24 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 404543, + "thread": 3 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 628632, + "thread": 13 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 700947, + "thread": 30 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 917502, + "thread": 28 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1006578, + "thread": 17 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1253444, + "thread": 14 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1442044, + "thread": 4 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1640341, + "thread": 13 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1660306, + "thread": 27 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1945987, + "thread": 9 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 1977406, + "thread": 9 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 2266113, + "thread": 22 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 2450673, + "thread": 26 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 2559724, + "thread": 29 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 2776973, + "thread": 8 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 2884643, + "thread": 14 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 3071938, + "thread": 3 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 3184403, + "thread": 24 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 3409596, + "thread": 14 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 3486821, + "thread": 7 + } + }, + { + "amount": "110.672822449", + "slot": { + "period": 3708732, + "thread": 14 + } + }, + { + "amount": "110.672822452", + "slot": { + "period": 3862855, + "thread": 31 + } + } + ], + "AU1PpTUswBo9vYuDxQKJNLARdUQZu3quuZRJYfR5B4oN8GL8n6Hf": [ + { + "amount": "86.391081390", + "slot": { + "period": 142652, + "thread": 13 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 191164, + "thread": 10 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 328600, + "thread": 10 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 537796, + "thread": 14 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 767112, + "thread": 4 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 966776, + "thread": 12 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1113283, + "thread": 5 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1237071, + "thread": 29 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1474318, + "thread": 12 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1543919, + "thread": 12 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1690847, + "thread": 24 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 1814787, + "thread": 9 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2045565, + "thread": 0 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2239432, + "thread": 13 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2387516, + "thread": 5 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2489178, + "thread": 21 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2666997, + "thread": 10 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 2804598, + "thread": 19 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 3047372, + "thread": 6 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 3192405, + "thread": 0 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 3400373, + "thread": 8 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 3457833, + "thread": 31 + } + }, + { + "amount": "86.391081390", + "slot": { + "period": 3647483, + "thread": 19 + } + }, + { + "amount": "86.391081379", + "slot": { + "period": 3871433, + "thread": 17 + } + } + ], + "AU1Pq4UZAAY6wd7MjsP9te3UdP8x97J2ZxAkCTFa2wWv5YNTqvJN": [ + { + "amount": "155.476662607", + "slot": { + "period": 87379, + "thread": 21 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 257890, + "thread": 24 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 359015, + "thread": 3 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 509608, + "thread": 29 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 698967, + "thread": 9 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 941662, + "thread": 18 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1061028, + "thread": 15 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1233561, + "thread": 12 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1448891, + "thread": 17 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1542008, + "thread": 13 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1712250, + "thread": 29 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1918555, + "thread": 2 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 1982839, + "thread": 1 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 2252876, + "thread": 31 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 2375324, + "thread": 25 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 2476431, + "thread": 11 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 2668073, + "thread": 17 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 2833281, + "thread": 18 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 3024502, + "thread": 19 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 3187618, + "thread": 19 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 3330151, + "thread": 24 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 3477783, + "thread": 16 + } + }, + { + "amount": "155.476662607", + "slot": { + "period": 3663182, + "thread": 22 + } + }, + { + "amount": "155.476662613", + "slot": { + "period": 3870819, + "thread": 28 + } + } + ], + "AU1Pq91bNQXigiYXhWgC1Agbr1ouECfeensqxd8JE7FWpfrd4Ytn": [ + { + "amount": "164.060924504", + "slot": { + "period": 164843, + "thread": 26 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 245530, + "thread": 22 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 463115, + "thread": 21 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 608589, + "thread": 1 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 659080, + "thread": 6 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 961157, + "thread": 6 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1000069, + "thread": 28 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1185746, + "thread": 24 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1365825, + "thread": 5 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1499058, + "thread": 20 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1806341, + "thread": 9 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 1935669, + "thread": 1 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2025988, + "thread": 15 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2214392, + "thread": 28 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2449028, + "thread": 5 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2592350, + "thread": 20 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2715673, + "thread": 7 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 2832650, + "thread": 19 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 3012888, + "thread": 2 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 3193351, + "thread": 25 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 3444398, + "thread": 12 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 3540673, + "thread": 21 + } + }, + { + "amount": "164.060924504", + "slot": { + "period": 3742412, + "thread": 17 + } + }, + { + "amount": "164.060924513", + "slot": { + "period": 3902528, + "thread": 20 + } + } + ], + "AU1PqAAXG3nMpgSNuDRM7XzjSmBRn4Tqi9HcFhfgXcCGd3BNoNfh": [ + { + "amount": "365.433513515", + "slot": { + "period": 13659, + "thread": 21 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 213570, + "thread": 7 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 374813, + "thread": 8 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 515622, + "thread": 31 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 812473, + "thread": 10 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 860663, + "thread": 1 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1018114, + "thread": 3 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1308795, + "thread": 6 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1395620, + "thread": 7 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1642025, + "thread": 7 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1726038, + "thread": 27 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 1943003, + "thread": 21 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2132325, + "thread": 5 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2216006, + "thread": 6 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2430387, + "thread": 10 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2539594, + "thread": 4 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2665329, + "thread": 5 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 2811258, + "thread": 16 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 3080597, + "thread": 8 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 3227452, + "thread": 25 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 3325574, + "thread": 0 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 3541152, + "thread": 2 + } + }, + { + "amount": "365.433513515", + "slot": { + "period": 3742834, + "thread": 26 + } + }, + { + "amount": "365.433513506", + "slot": { + "period": 3884729, + "thread": 3 + } + } + ], + "AU1PqMBvmxcR3nFqZ8MJC6QGrx67FEis5zYzJ33ZNbFrftu7uvCm": [ + { + "amount": "134.183628966", + "slot": { + "period": 83295, + "thread": 22 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 190188, + "thread": 10 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 425928, + "thread": 16 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 570173, + "thread": 14 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 713581, + "thread": 30 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 942495, + "thread": 30 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1009753, + "thread": 6 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1259160, + "thread": 4 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1433387, + "thread": 12 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1514484, + "thread": 14 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1748144, + "thread": 0 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1973425, + "thread": 16 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 1998927, + "thread": 29 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2200032, + "thread": 16 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2354159, + "thread": 13 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2484082, + "thread": 12 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2754792, + "thread": 29 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2881340, + "thread": 1 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 2968367, + "thread": 25 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 3236852, + "thread": 6 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 3323738, + "thread": 22 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 3552589, + "thread": 0 + } + }, + { + "amount": "134.183628966", + "slot": { + "period": 3734356, + "thread": 0 + } + }, + { + "amount": "134.183628957", + "slot": { + "period": 3858371, + "thread": 25 + } + } + ], + "AU1PriaTFam7zMh86eFQNgErDuVMpV8zHgZNB8gJVFWsHLk7LAns": [ + { + "amount": "467.923274124", + "slot": { + "period": 95321, + "thread": 26 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 204422, + "thread": 10 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 387180, + "thread": 27 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 547155, + "thread": 9 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 665823, + "thread": 6 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 935821, + "thread": 5 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1061597, + "thread": 0 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1221560, + "thread": 22 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1450477, + "thread": 10 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1520065, + "thread": 29 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1749384, + "thread": 14 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1838975, + "thread": 28 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 1999208, + "thread": 27 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 2291182, + "thread": 24 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 2380226, + "thread": 1 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 2606270, + "thread": 7 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 2710476, + "thread": 28 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 2910455, + "thread": 0 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3052646, + "thread": 23 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3266178, + "thread": 19 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3320577, + "thread": 9 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3616520, + "thread": 3 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3688773, + "thread": 13 + } + }, + { + "amount": "467.923274124", + "slot": { + "period": 3866578, + "thread": 28 + } + } + ], + "AU1Prx1SpJSVcTXcMZ81PFy22FkwsZQfehFic7BPK9guTJcmumEb": [ + { + "amount": "60.429030046", + "slot": { + "period": 167399, + "thread": 20 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 192406, + "thread": 18 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 407137, + "thread": 20 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 648675, + "thread": 5 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 797842, + "thread": 27 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 879390, + "thread": 31 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1075228, + "thread": 23 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1193769, + "thread": 21 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1460992, + "thread": 31 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1559404, + "thread": 27 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1695857, + "thread": 3 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 1931903, + "thread": 14 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2006403, + "thread": 30 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2151033, + "thread": 29 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2354668, + "thread": 9 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2566772, + "thread": 26 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2758364, + "thread": 28 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2794927, + "thread": 6 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 2968949, + "thread": 17 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 3206052, + "thread": 28 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 3346294, + "thread": 4 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 3609879, + "thread": 11 + } + }, + { + "amount": "60.429030046", + "slot": { + "period": 3707192, + "thread": 12 + } + }, + { + "amount": "60.429030053", + "slot": { + "period": 3945967, + "thread": 17 + } + } + ], + "AU1PsCUerCoJGo1nLqCxHSjErb82u7mqKwMrVLuDxrcXn1E8S6nF": [ + { + "amount": "95.343842539", + "slot": { + "period": 72592, + "thread": 10 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 198610, + "thread": 8 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 388885, + "thread": 12 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 513634, + "thread": 11 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 678068, + "thread": 23 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 922754, + "thread": 16 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1090797, + "thread": 23 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1310089, + "thread": 28 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1403530, + "thread": 26 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1518167, + "thread": 12 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1667036, + "thread": 27 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 1830658, + "thread": 6 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2002288, + "thread": 22 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2166331, + "thread": 10 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2343368, + "thread": 22 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2508465, + "thread": 6 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2773323, + "thread": 10 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2801553, + "thread": 24 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 2974362, + "thread": 8 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 3157621, + "thread": 6 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 3359580, + "thread": 20 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 3587337, + "thread": 12 + } + }, + { + "amount": "95.343842539", + "slot": { + "period": 3751404, + "thread": 22 + } + }, + { + "amount": "95.343842546", + "slot": { + "period": 3826727, + "thread": 18 + } + } + ], + "AU1PsVjLpkwGsJmsnaHAAC69EW9BX6dHSWKEM1nLt7HJ4VbZQaKK": [ + { + "amount": "140.030620741", + "slot": { + "period": 103719, + "thread": 27 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 317216, + "thread": 26 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 401755, + "thread": 25 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 586818, + "thread": 18 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 740856, + "thread": 21 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 939004, + "thread": 11 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1114646, + "thread": 10 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1228986, + "thread": 22 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1429059, + "thread": 14 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1530041, + "thread": 21 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1787842, + "thread": 29 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 1885659, + "thread": 20 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2041149, + "thread": 18 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2203405, + "thread": 21 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2384609, + "thread": 23 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2536948, + "thread": 10 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2683944, + "thread": 15 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2811965, + "thread": 4 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 2969897, + "thread": 31 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 3136414, + "thread": 11 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 3319141, + "thread": 21 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 3554318, + "thread": 18 + } + }, + { + "amount": "140.030620741", + "slot": { + "period": 3678907, + "thread": 8 + } + }, + { + "amount": "140.030620732", + "slot": { + "period": 3852471, + "thread": 7 + } + } + ], + "AU1PwNHuohm6TWVKSymCLsT5kkZiZ6EHz6HcHG5epM7MkQheS9oM": [ + { + "amount": "172.506278190", + "slot": { + "period": 109146, + "thread": 26 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 172961, + "thread": 20 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 403060, + "thread": 11 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 622254, + "thread": 11 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 818064, + "thread": 30 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 860065, + "thread": 20 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1015161, + "thread": 27 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1224341, + "thread": 12 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1456046, + "thread": 9 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1570968, + "thread": 27 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1662335, + "thread": 10 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 1915551, + "thread": 16 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2031034, + "thread": 8 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2176254, + "thread": 23 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2407455, + "thread": 18 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2552801, + "thread": 31 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2775286, + "thread": 12 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2813823, + "thread": 10 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 2956597, + "thread": 15 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 3262863, + "thread": 16 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 3359590, + "thread": 21 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 3499442, + "thread": 25 + } + }, + { + "amount": "172.506278190", + "slot": { + "period": 3736548, + "thread": 15 + } + }, + { + "amount": "172.506278191", + "slot": { + "period": 3925217, + "thread": 27 + } + } + ], + "AU1Pwe1TDZjoeh41zXEW1f1XnXu6UbTYe4jxhVmYsfdau6i8W7LS": [ + { + "amount": "109.600165137", + "slot": { + "period": 89156, + "thread": 29 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 262487, + "thread": 0 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 435829, + "thread": 17 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 614966, + "thread": 9 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 687724, + "thread": 18 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 954618, + "thread": 19 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1035463, + "thread": 15 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1195961, + "thread": 18 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1402901, + "thread": 25 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1540257, + "thread": 9 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1693575, + "thread": 29 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 1925163, + "thread": 14 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2044606, + "thread": 16 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2154263, + "thread": 1 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2301348, + "thread": 19 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2544548, + "thread": 16 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2673699, + "thread": 10 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 2802637, + "thread": 26 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 3119784, + "thread": 27 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 3126469, + "thread": 23 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 3321071, + "thread": 18 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 3546436, + "thread": 20 + } + }, + { + "amount": "109.600165137", + "slot": { + "period": 3627752, + "thread": 1 + } + }, + { + "amount": "109.600165133", + "slot": { + "period": 3848154, + "thread": 19 + } + } + ], + "AU1PwguuvdjuSmeRRHxnCCcq9TPhn4p1z1n7NxhEdvc4F72qew3P": [ + { + "amount": "281.399992467", + "slot": { + "period": 124051, + "thread": 23 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 183301, + "thread": 17 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 366732, + "thread": 21 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 546499, + "thread": 7 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 816913, + "thread": 28 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 879190, + "thread": 15 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1090153, + "thread": 24 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1294255, + "thread": 19 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1356897, + "thread": 20 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1523266, + "thread": 5 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1716477, + "thread": 20 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 1926911, + "thread": 4 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2048796, + "thread": 21 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2236570, + "thread": 11 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2359434, + "thread": 28 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2493142, + "thread": 24 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2665695, + "thread": 8 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2811099, + "thread": 5 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 2962828, + "thread": 19 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 3156794, + "thread": 14 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 3372009, + "thread": 25 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 3533025, + "thread": 31 + } + }, + { + "amount": "281.399992467", + "slot": { + "period": 3651716, + "thread": 21 + } + }, + { + "amount": "281.399992472", + "slot": { + "period": 3801626, + "thread": 16 + } + } + ], + "AU1PwzbGY7eChXkEyKz2xiJxnuKkAAvFFTCumyLycGuVTmnY6B6u": [ + { + "amount": "181.341827841", + "slot": { + "period": 49377, + "thread": 25 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 279824, + "thread": 6 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 468133, + "thread": 5 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 569872, + "thread": 8 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 710565, + "thread": 12 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 892007, + "thread": 8 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1127410, + "thread": 30 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1262667, + "thread": 2 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1458372, + "thread": 19 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1578444, + "thread": 27 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1721295, + "thread": 11 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 1917458, + "thread": 26 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2078784, + "thread": 24 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2161038, + "thread": 24 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2361202, + "thread": 4 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2495385, + "thread": 12 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2786016, + "thread": 6 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 2876491, + "thread": 24 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 3020570, + "thread": 1 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 3166964, + "thread": 8 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 3391030, + "thread": 9 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 3569856, + "thread": 9 + } + }, + { + "amount": "181.341827841", + "slot": { + "period": 3662448, + "thread": 16 + } + }, + { + "amount": "181.341827834", + "slot": { + "period": 3816627, + "thread": 16 + } + } + ], + "AU1Py7XAQshuLPy6uHHsCAMgiNtZF3eQThwfdTkWcnW2YbnFk6pv": [ + { + "amount": "168.906180775", + "slot": { + "period": 17509, + "thread": 10 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 307641, + "thread": 1 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 459628, + "thread": 5 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 540929, + "thread": 20 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 791045, + "thread": 25 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 848868, + "thread": 12 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1106200, + "thread": 2 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1163114, + "thread": 11 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1389202, + "thread": 1 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1501832, + "thread": 16 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1694726, + "thread": 10 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 1864493, + "thread": 21 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2042551, + "thread": 30 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2234481, + "thread": 0 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2361537, + "thread": 14 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2503211, + "thread": 2 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2656781, + "thread": 15 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 2887568, + "thread": 19 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 3042355, + "thread": 16 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 3237936, + "thread": 21 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 3319047, + "thread": 1 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 3517861, + "thread": 29 + } + }, + { + "amount": "168.906180775", + "slot": { + "period": 3670782, + "thread": 23 + } + }, + { + "amount": "168.906180778", + "slot": { + "period": 3843832, + "thread": 24 + } + } + ], + "AU1Pz6tdEY1BM6Qi4jLbQeQ1Q1oTGGXMoFPadev7nboAD3xVfxui": [ + { + "amount": "5833.333333333", + "slot": { + "period": 117461, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 211310, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 392130, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 533185, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 734354, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 823702, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1078712, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1169517, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1476637, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1532381, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1695935, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1834820, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2070177, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2185525, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2401180, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2560535, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2749870, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2899640, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3002438, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3206188, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3367153, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3510794, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3646446, + "thread": 20 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3831159, + "thread": 22 + } + } + ], + "AU1PzYyxptgeYMLWyvuBWkDzRkiJvvLeoDALtW6k6iRd5VeYczyJ": [ + { + "amount": "489.108468363", + "slot": { + "period": 148657, + "thread": 12 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 170248, + "thread": 23 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 325239, + "thread": 16 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 614426, + "thread": 30 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 679550, + "thread": 15 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 941368, + "thread": 29 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 994150, + "thread": 0 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 1160111, + "thread": 25 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 1374660, + "thread": 11 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 1496560, + "thread": 8 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 1665496, + "thread": 14 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 1857739, + "thread": 8 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2073434, + "thread": 19 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2222418, + "thread": 15 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2316875, + "thread": 2 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2541269, + "thread": 31 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2648082, + "thread": 25 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 2811526, + "thread": 7 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 3101338, + "thread": 16 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 3155822, + "thread": 25 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 3390815, + "thread": 13 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 3485795, + "thread": 3 + } + }, + { + "amount": "489.108468363", + "slot": { + "period": 3695441, + "thread": 28 + } + }, + { + "amount": "489.108468353", + "slot": { + "period": 3788650, + "thread": 17 + } + } + ], + "AU1Q11kyHy2CcgmviK6dAnMeDsADvkb9Kku7hFGG2AdzdAvJpgLX": [ + { + "amount": "471.164972374", + "slot": { + "period": 90446, + "thread": 30 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 297978, + "thread": 0 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 480114, + "thread": 12 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 498901, + "thread": 22 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 668172, + "thread": 15 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 865004, + "thread": 13 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1008094, + "thread": 2 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1251983, + "thread": 28 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1454014, + "thread": 13 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1623458, + "thread": 8 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1724501, + "thread": 15 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 1897432, + "thread": 10 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2131724, + "thread": 31 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2209440, + "thread": 7 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2389724, + "thread": 23 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2471743, + "thread": 10 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2704861, + "thread": 28 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2886845, + "thread": 7 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 2989211, + "thread": 27 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 3151805, + "thread": 10 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 3355585, + "thread": 3 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 3530318, + "thread": 19 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 3618794, + "thread": 0 + } + }, + { + "amount": "471.164972374", + "slot": { + "period": 3810464, + "thread": 25 + } + } + ], + "AU1Q151erihCvxCivmUsRyJBqjGqYbEsumWLTvPpyr3JKXij7c6M": [ + { + "amount": "164.231971778", + "slot": { + "period": 42061, + "thread": 21 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 269962, + "thread": 15 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 402198, + "thread": 19 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 575958, + "thread": 19 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 713362, + "thread": 15 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 873319, + "thread": 4 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1016126, + "thread": 26 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1198780, + "thread": 21 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1384855, + "thread": 17 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1608241, + "thread": 16 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1734229, + "thread": 27 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 1919456, + "thread": 5 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2129419, + "thread": 4 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2280178, + "thread": 7 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2440932, + "thread": 17 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2611274, + "thread": 22 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2637343, + "thread": 9 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 2936009, + "thread": 14 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 3117429, + "thread": 16 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 3173476, + "thread": 23 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 3425669, + "thread": 7 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 3591967, + "thread": 2 + } + }, + { + "amount": "164.231971778", + "slot": { + "period": 3737954, + "thread": 7 + } + }, + { + "amount": "164.231971785", + "slot": { + "period": 3854076, + "thread": 19 + } + } + ], + "AU1Q29gMm95qmGHJmDoLCU8StJUDUQgkn71ZmyLMj59LF9G4a2cE": [ + { + "amount": "235.568841674", + "slot": { + "period": 115004, + "thread": 3 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 210342, + "thread": 22 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 350881, + "thread": 25 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 559487, + "thread": 1 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 777724, + "thread": 7 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 827027, + "thread": 9 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1130975, + "thread": 18 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1210294, + "thread": 13 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1396934, + "thread": 2 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1590997, + "thread": 18 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1693513, + "thread": 15 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 1878358, + "thread": 2 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2032028, + "thread": 15 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2287175, + "thread": 16 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2297490, + "thread": 10 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2517681, + "thread": 18 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2629386, + "thread": 1 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2937600, + "thread": 20 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 2981819, + "thread": 11 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 3245129, + "thread": 3 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 3437706, + "thread": 0 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 3451227, + "thread": 23 + } + }, + { + "amount": "235.568841674", + "slot": { + "period": 3713279, + "thread": 26 + } + }, + { + "amount": "235.568841681", + "slot": { + "period": 3886723, + "thread": 16 + } + } + ], + "AU1Q329TZhRD7nDH71etMEViySEUf4m8WmwLgDkYeriEzQmFjTXZ": [ + { + "amount": "96.005632912", + "slot": { + "period": 161240, + "thread": 3 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 190607, + "thread": 31 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 387649, + "thread": 1 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 493327, + "thread": 29 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 755053, + "thread": 24 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 957811, + "thread": 20 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1030407, + "thread": 25 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1222769, + "thread": 4 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1458383, + "thread": 24 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1505604, + "thread": 5 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1749541, + "thread": 13 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 1816313, + "thread": 21 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2108427, + "thread": 22 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2213740, + "thread": 4 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2338771, + "thread": 20 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2610991, + "thread": 13 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2708194, + "thread": 14 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 2939647, + "thread": 16 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 3083347, + "thread": 18 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 3122311, + "thread": 17 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 3326597, + "thread": 29 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 3479004, + "thread": 8 + } + }, + { + "amount": "96.005632912", + "slot": { + "period": 3767913, + "thread": 21 + } + }, + { + "amount": "96.005632915", + "slot": { + "period": 3911998, + "thread": 5 + } + } + ], + "AU1Q3HPTQJZD68ZhgLqvKS1DBHy3RAK6vqH8jFeJGEw5eLqUv59A": [ + { + "amount": "137.368019022", + "slot": { + "period": 63566, + "thread": 1 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 254289, + "thread": 22 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 410545, + "thread": 1 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 539954, + "thread": 19 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 718891, + "thread": 6 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 935392, + "thread": 24 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1132296, + "thread": 26 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1300886, + "thread": 30 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1457453, + "thread": 10 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1528549, + "thread": 22 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1788827, + "thread": 5 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 1886206, + "thread": 11 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2123117, + "thread": 22 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2192641, + "thread": 13 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2446636, + "thread": 24 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2493727, + "thread": 2 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2789442, + "thread": 12 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2892082, + "thread": 23 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 2966595, + "thread": 9 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 3228887, + "thread": 10 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 3391412, + "thread": 13 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 3589891, + "thread": 30 + } + }, + { + "amount": "137.368019022", + "slot": { + "period": 3722880, + "thread": 7 + } + }, + { + "amount": "137.368019034", + "slot": { + "period": 3850441, + "thread": 19 + } + } + ], + "AU1Q3oBGsD1FvS5Bw7v1Qv7dP8z4LBUrfGatm5g6mdMtzpmXhvdP": [ + { + "amount": "381.307631584", + "slot": { + "period": 152350, + "thread": 11 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 249193, + "thread": 25 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 456167, + "thread": 0 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 511962, + "thread": 3 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 702465, + "thread": 3 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 946793, + "thread": 16 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1104294, + "thread": 20 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1176227, + "thread": 22 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1463055, + "thread": 11 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1557189, + "thread": 14 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1772994, + "thread": 17 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 1874177, + "thread": 19 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2021608, + "thread": 0 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2173547, + "thread": 30 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2434432, + "thread": 31 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2557566, + "thread": 30 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2749321, + "thread": 27 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2797727, + "thread": 22 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 2964247, + "thread": 25 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 3139290, + "thread": 6 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 3321457, + "thread": 7 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 3511217, + "thread": 6 + } + }, + { + "amount": "381.307631584", + "slot": { + "period": 3675082, + "thread": 6 + } + }, + { + "amount": "381.307631585", + "slot": { + "period": 3909742, + "thread": 3 + } + } + ], + "AU1Q3tNrJ7Zd9v6VDPvrGoSDLfig2yVqCLpuFTeN7gB7cj7SfjJR": [ + { + "amount": "273.759501047", + "slot": { + "period": 38728, + "thread": 15 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 259752, + "thread": 20 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 466150, + "thread": 3 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 588331, + "thread": 7 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 752977, + "thread": 17 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 839593, + "thread": 19 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1089845, + "thread": 5 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1206384, + "thread": 2 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1417203, + "thread": 24 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1643540, + "thread": 4 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1773412, + "thread": 13 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 1869116, + "thread": 8 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2032519, + "thread": 0 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2212975, + "thread": 20 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2365722, + "thread": 17 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2547558, + "thread": 6 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2748728, + "thread": 17 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 2892251, + "thread": 17 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 3115132, + "thread": 1 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 3267901, + "thread": 3 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 3442057, + "thread": 22 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 3582537, + "thread": 29 + } + }, + { + "amount": "273.759501047", + "slot": { + "period": 3708224, + "thread": 18 + } + }, + { + "amount": "273.759501057", + "slot": { + "period": 3943592, + "thread": 10 + } + } + ], + "AU1Q4o29o6zsvGSkuWWg5XnQcnTspPFCW6yV5p36JoBRS1TNzNCA": [ + { + "amount": "196.214065637", + "slot": { + "period": 95604, + "thread": 0 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 315487, + "thread": 16 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 405785, + "thread": 16 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 494809, + "thread": 24 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 763290, + "thread": 22 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 951618, + "thread": 27 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1106556, + "thread": 22 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1161009, + "thread": 3 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1476635, + "thread": 5 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1638117, + "thread": 28 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1724148, + "thread": 29 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 1889619, + "thread": 16 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2140401, + "thread": 16 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2183375, + "thread": 3 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2401228, + "thread": 21 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2542994, + "thread": 1 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2644193, + "thread": 23 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 2888881, + "thread": 20 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 3017376, + "thread": 29 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 3215035, + "thread": 9 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 3410899, + "thread": 21 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 3600954, + "thread": 9 + } + }, + { + "amount": "196.214065637", + "slot": { + "period": 3719681, + "thread": 5 + } + }, + { + "amount": "196.214065635", + "slot": { + "period": 3909950, + "thread": 19 + } + } + ], + "AU1Q6Fr47NkVfabGxBa22LAmUHBaTiBd4TSpu7ZZC4KsBxktk9aF": [ + { + "amount": "80.407938296", + "slot": { + "period": 33107, + "thread": 20 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 245519, + "thread": 9 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 385030, + "thread": 28 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 631593, + "thread": 24 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 722875, + "thread": 0 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 913142, + "thread": 2 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1040307, + "thread": 26 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1259034, + "thread": 4 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1396180, + "thread": 24 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1570709, + "thread": 17 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1766231, + "thread": 17 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 1907783, + "thread": 6 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2132979, + "thread": 21 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2236358, + "thread": 3 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2388289, + "thread": 6 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2549532, + "thread": 11 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2755906, + "thread": 13 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 2884127, + "thread": 25 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 3030418, + "thread": 28 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 3272914, + "thread": 13 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 3417176, + "thread": 29 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 3579950, + "thread": 5 + } + }, + { + "amount": "80.407938296", + "slot": { + "period": 3668396, + "thread": 24 + } + }, + { + "amount": "80.407938304", + "slot": { + "period": 3822466, + "thread": 25 + } + } + ], + "AU1Q6RdTDg5codNGjrVFtj7FwTx1hy41gCY6syakFDqygsPBBT8z": [ + { + "amount": "517.250039617", + "slot": { + "period": 89967, + "thread": 9 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 313811, + "thread": 24 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 484420, + "thread": 26 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 602890, + "thread": 11 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 723420, + "thread": 7 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 907171, + "thread": 12 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1109667, + "thread": 1 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1169536, + "thread": 27 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1336542, + "thread": 28 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1513832, + "thread": 3 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1751898, + "thread": 9 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 1964604, + "thread": 7 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2042517, + "thread": 21 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2177545, + "thread": 3 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2377743, + "thread": 2 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2580223, + "thread": 9 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2634357, + "thread": 4 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 2881306, + "thread": 6 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 3016682, + "thread": 3 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 3225702, + "thread": 24 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 3344960, + "thread": 14 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 3455071, + "thread": 0 + } + }, + { + "amount": "517.250039617", + "slot": { + "period": 3644509, + "thread": 15 + } + }, + { + "amount": "517.250039614", + "slot": { + "period": 3794773, + "thread": 4 + } + } + ], + "AU1Q6qGh7te6SWgmPCY2djxYQvUP1WVd1g1oJUZTLc25D243AmCh": [ + { + "amount": "150.797357148", + "slot": { + "period": 130835, + "thread": 16 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 188721, + "thread": 0 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 408557, + "thread": 8 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 526068, + "thread": 13 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 702387, + "thread": 4 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 898904, + "thread": 25 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1084090, + "thread": 24 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1153192, + "thread": 6 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1414714, + "thread": 2 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1555289, + "thread": 26 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1729078, + "thread": 12 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 1937794, + "thread": 21 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2048084, + "thread": 12 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2186778, + "thread": 2 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2421669, + "thread": 6 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2544490, + "thread": 2 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2784535, + "thread": 6 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 2849186, + "thread": 31 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 3101856, + "thread": 9 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 3226555, + "thread": 17 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 3322958, + "thread": 17 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 3549000, + "thread": 11 + } + }, + { + "amount": "150.797357148", + "slot": { + "period": 3774950, + "thread": 14 + } + }, + { + "amount": "150.797357144", + "slot": { + "period": 3897795, + "thread": 30 + } + } + ], + "AU1Q6shoN9Kq3P9hP9x1hRE7PeELRLyX1YZspWKrCmSMWek6SK34": [ + { + "amount": "155.975726499", + "slot": { + "period": 35686, + "thread": 16 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 257747, + "thread": 16 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 436849, + "thread": 22 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 561257, + "thread": 7 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 774116, + "thread": 3 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 902219, + "thread": 4 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1018322, + "thread": 31 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1302592, + "thread": 16 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1420044, + "thread": 17 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1624297, + "thread": 10 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1752533, + "thread": 1 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 1962618, + "thread": 12 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2065260, + "thread": 7 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2215412, + "thread": 29 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2376364, + "thread": 14 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2580414, + "thread": 20 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2673895, + "thread": 12 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 2933989, + "thread": 11 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 3047586, + "thread": 13 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 3189795, + "thread": 13 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 3298611, + "thread": 7 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 3509577, + "thread": 11 + } + }, + { + "amount": "155.975726499", + "slot": { + "period": 3778578, + "thread": 16 + } + }, + { + "amount": "155.975726504", + "slot": { + "period": 3807725, + "thread": 6 + } + } + ], + "AU1Q7Y8QS7a2np3r1XvX4nE2scV9gWyvJWi6V73doLRpQzqVgUKo": [ + { + "amount": "380.594618744", + "slot": { + "period": 79236, + "thread": 10 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 271531, + "thread": 26 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 338036, + "thread": 20 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 624872, + "thread": 22 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 770271, + "thread": 13 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 947006, + "thread": 26 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1108703, + "thread": 17 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1293593, + "thread": 5 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1474527, + "thread": 28 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1540727, + "thread": 18 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1705301, + "thread": 17 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1968035, + "thread": 4 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 1991352, + "thread": 7 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 2170480, + "thread": 18 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 2444939, + "thread": 3 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 2551468, + "thread": 8 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 2650027, + "thread": 31 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 2883922, + "thread": 12 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 3029615, + "thread": 28 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 3219937, + "thread": 27 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 3315792, + "thread": 29 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 3566405, + "thread": 20 + } + }, + { + "amount": "380.594618744", + "slot": { + "period": 3677912, + "thread": 17 + } + }, + { + "amount": "380.594618747", + "slot": { + "period": 3827664, + "thread": 5 + } + } + ], + "AU1Q7ZBAkWjCoYxWhDvHNsmTRS5aNLoVUrBXtGiNQMnEasbS69mu": [ + { + "amount": "287.098804391", + "slot": { + "period": 38352, + "thread": 25 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 238752, + "thread": 6 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 463072, + "thread": 28 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 534624, + "thread": 30 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 677507, + "thread": 22 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 959075, + "thread": 7 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1085880, + "thread": 25 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1293536, + "thread": 5 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1472646, + "thread": 31 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1587536, + "thread": 10 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1730393, + "thread": 31 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 1962788, + "thread": 10 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2010237, + "thread": 22 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2190154, + "thread": 11 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2305594, + "thread": 14 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2527617, + "thread": 29 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2777285, + "thread": 22 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 2885542, + "thread": 23 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 3109467, + "thread": 28 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 3210070, + "thread": 2 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 3439270, + "thread": 28 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 3533519, + "thread": 4 + } + }, + { + "amount": "287.098804391", + "slot": { + "period": 3630695, + "thread": 4 + } + }, + { + "amount": "287.098804390", + "slot": { + "period": 3876839, + "thread": 30 + } + } + ], + "AU1Q8881SXy4gJaEzEKq8JZigasSVLzQLM9bm6tUe7XNEkNZm75C": [ + { + "amount": "482.241669967", + "slot": { + "period": 34986, + "thread": 9 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 226166, + "thread": 3 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 391715, + "thread": 9 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 602941, + "thread": 22 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 816543, + "thread": 0 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 898618, + "thread": 11 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1028794, + "thread": 18 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1221548, + "thread": 3 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1434368, + "thread": 31 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1566655, + "thread": 12 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1784728, + "thread": 19 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 1880955, + "thread": 25 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2052018, + "thread": 20 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2213227, + "thread": 20 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2408801, + "thread": 13 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2596443, + "thread": 30 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2672789, + "thread": 29 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 2847200, + "thread": 18 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 3117733, + "thread": 16 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 3190154, + "thread": 13 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 3329258, + "thread": 12 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 3585597, + "thread": 29 + } + }, + { + "amount": "482.241669967", + "slot": { + "period": 3714961, + "thread": 27 + } + }, + { + "amount": "482.241669962", + "slot": { + "period": 3842512, + "thread": 21 + } + } + ], + "AU1Q8GM1cGPyhtztYVJ2zHmXjZzFYFYUvniFcH5EUEFUXpTnyVB4": [ + { + "amount": "58333.333333333", + "slot": { + "period": 87222, + "thread": 10 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 302751, + "thread": 23 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 447854, + "thread": 15 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 492393, + "thread": 31 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 736338, + "thread": 19 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 888746, + "thread": 12 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1059534, + "thread": 8 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1163433, + "thread": 0 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1365722, + "thread": 21 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1630607, + "thread": 31 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1709328, + "thread": 11 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 1850657, + "thread": 15 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2024368, + "thread": 31 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2253697, + "thread": 14 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2455394, + "thread": 22 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2584022, + "thread": 28 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2756523, + "thread": 1 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2903431, + "thread": 11 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 2961523, + "thread": 30 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 3227426, + "thread": 5 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 3321870, + "thread": 11 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 3521289, + "thread": 2 + } + }, + { + "amount": "58333.333333333", + "slot": { + "period": 3767268, + "thread": 14 + } + }, + { + "amount": "58333.333333341", + "slot": { + "period": 3836702, + "thread": 30 + } + } + ], + "AU1Q8iye7uHy4u1Bx2zxw7bNbQJ36DMsLftdA3efBXHwKFJ8HZ2y": [ + { + "amount": "111.231748054", + "slot": { + "period": 144019, + "thread": 19 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 263115, + "thread": 31 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 418212, + "thread": 21 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 621215, + "thread": 31 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 769790, + "thread": 8 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 826538, + "thread": 25 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1075970, + "thread": 27 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1156667, + "thread": 18 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1401165, + "thread": 29 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1568760, + "thread": 25 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1713633, + "thread": 5 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 1939527, + "thread": 2 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2027214, + "thread": 0 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2170245, + "thread": 23 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2442839, + "thread": 8 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2519909, + "thread": 16 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2692101, + "thread": 9 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 2908051, + "thread": 15 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 3044216, + "thread": 30 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 3283351, + "thread": 9 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 3336742, + "thread": 16 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 3544281, + "thread": 8 + } + }, + { + "amount": "111.231748054", + "slot": { + "period": 3650130, + "thread": 5 + } + }, + { + "amount": "111.231748042", + "slot": { + "period": 3910102, + "thread": 13 + } + } + ], + "AU1QA1E5ZswUnCh5Cb1GFBN17RRpRbxFfv61NbtSkJFVaejpBQYf": [ + { + "amount": "143.114132357", + "slot": { + "period": 151670, + "thread": 1 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 258997, + "thread": 28 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 437340, + "thread": 25 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 624478, + "thread": 11 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 796124, + "thread": 22 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 914139, + "thread": 5 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1058757, + "thread": 24 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1284632, + "thread": 22 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1462884, + "thread": 12 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1558743, + "thread": 7 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1719913, + "thread": 25 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 1824811, + "thread": 3 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2040160, + "thread": 5 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2199465, + "thread": 19 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2359296, + "thread": 0 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2486032, + "thread": 12 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2720948, + "thread": 29 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 2842098, + "thread": 27 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 3093951, + "thread": 1 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 3162864, + "thread": 20 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 3289526, + "thread": 25 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 3574502, + "thread": 6 + } + }, + { + "amount": "143.114132357", + "slot": { + "period": 3707899, + "thread": 8 + } + }, + { + "amount": "143.114132346", + "slot": { + "period": 3939300, + "thread": 29 + } + } + ], + "AU1QB6qe3iXZHGppJoFQCD4D3P3h3XqCtfM2Mby2y31T8xQLjBgd": [ + { + "amount": "415.536326763", + "slot": { + "period": 149047, + "thread": 14 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 263101, + "thread": 7 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 459217, + "thread": 5 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 605439, + "thread": 8 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 694757, + "thread": 14 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 855670, + "thread": 15 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1033247, + "thread": 27 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1298343, + "thread": 3 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1326621, + "thread": 13 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1568480, + "thread": 4 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1760122, + "thread": 29 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 1935333, + "thread": 7 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2002261, + "thread": 8 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2208467, + "thread": 15 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2430945, + "thread": 17 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2476733, + "thread": 27 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2741710, + "thread": 15 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2818092, + "thread": 14 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 2965967, + "thread": 16 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 3189485, + "thread": 30 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 3376190, + "thread": 24 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 3535185, + "thread": 12 + } + }, + { + "amount": "415.536326763", + "slot": { + "period": 3680116, + "thread": 27 + } + }, + { + "amount": "415.536326764", + "slot": { + "period": 3833248, + "thread": 6 + } + } + ], + "AU1QBMEYM6Yym1LCjeJiDJp3LBwAC1KyefuWsM9g2vAik47Kb5ga": [ + { + "amount": "56.976865155", + "slot": { + "period": 55640, + "thread": 3 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 176533, + "thread": 3 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 417030, + "thread": 18 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 624087, + "thread": 30 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 655845, + "thread": 13 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 919878, + "thread": 6 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1029882, + "thread": 31 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1316456, + "thread": 28 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1433538, + "thread": 17 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1558487, + "thread": 0 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1703912, + "thread": 5 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 1864886, + "thread": 20 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2049114, + "thread": 26 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2183609, + "thread": 20 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2451978, + "thread": 14 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2545676, + "thread": 30 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2687159, + "thread": 29 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 2837996, + "thread": 19 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 3052622, + "thread": 14 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 3209775, + "thread": 17 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 3409831, + "thread": 13 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 3573950, + "thread": 20 + } + }, + { + "amount": "56.976865155", + "slot": { + "period": 3737445, + "thread": 29 + } + }, + { + "amount": "56.976865165", + "slot": { + "period": 3802785, + "thread": 12 + } + } + ], + "AU1QC2mKZ3YbDK9QX1tJJJm7bap2LWzw5DD41FHPCPp1nXR3N3v1": [ + { + "amount": "74.952691626", + "slot": { + "period": 32548, + "thread": 12 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 281658, + "thread": 7 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 338637, + "thread": 11 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 549737, + "thread": 29 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 669052, + "thread": 25 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 884532, + "thread": 22 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1147206, + "thread": 15 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1217012, + "thread": 17 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1409032, + "thread": 3 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1601154, + "thread": 21 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1698814, + "thread": 2 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 1927325, + "thread": 30 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2093498, + "thread": 11 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2244701, + "thread": 13 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2359781, + "thread": 8 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2468478, + "thread": 28 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2694157, + "thread": 4 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 2927700, + "thread": 21 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 3053861, + "thread": 7 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 3232428, + "thread": 9 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 3424457, + "thread": 22 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 3476985, + "thread": 17 + } + }, + { + "amount": "74.952691626", + "slot": { + "period": 3767590, + "thread": 8 + } + }, + { + "amount": "74.952691634", + "slot": { + "period": 3818396, + "thread": 5 + } + } + ], + "AU1QCRJ2yJ3jVuhTS6ZSMfyPqHki8duVx3tw77aRx4qdznDwP7Cq": [ + { + "amount": "372.421749156", + "slot": { + "period": 14582, + "thread": 22 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 175878, + "thread": 1 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 455370, + "thread": 14 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 577635, + "thread": 11 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 717663, + "thread": 29 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 942152, + "thread": 29 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1054882, + "thread": 15 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1275000, + "thread": 18 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1365177, + "thread": 27 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1566824, + "thread": 16 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1689451, + "thread": 9 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 1945026, + "thread": 26 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2029779, + "thread": 10 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2229234, + "thread": 8 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2440403, + "thread": 12 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2497015, + "thread": 16 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2742688, + "thread": 7 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 2899605, + "thread": 13 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 3041852, + "thread": 27 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 3193938, + "thread": 30 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 3444249, + "thread": 6 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 3496822, + "thread": 22 + } + }, + { + "amount": "372.421749156", + "slot": { + "period": 3736234, + "thread": 13 + } + }, + { + "amount": "372.421749163", + "slot": { + "period": 3870029, + "thread": 24 + } + } + ], + "AU1QCgeBq9vJVDtYDreZt3Uo5MR8VegpbNxpUHga9ii9ZBW6f8RR": [ + { + "amount": "129.534781630", + "slot": { + "period": 127324, + "thread": 13 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 296782, + "thread": 8 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 394456, + "thread": 18 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 547269, + "thread": 21 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 714347, + "thread": 21 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 972091, + "thread": 6 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1062982, + "thread": 12 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1313324, + "thread": 19 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1381125, + "thread": 30 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1490236, + "thread": 17 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1654536, + "thread": 8 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 1951711, + "thread": 31 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2050782, + "thread": 8 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2230831, + "thread": 25 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2397975, + "thread": 7 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2551982, + "thread": 16 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2668284, + "thread": 12 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 2811370, + "thread": 24 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 3060598, + "thread": 3 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 3195940, + "thread": 23 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 3297292, + "thread": 12 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 3616721, + "thread": 9 + } + }, + { + "amount": "129.534781630", + "slot": { + "period": 3710064, + "thread": 17 + } + }, + { + "amount": "129.534781641", + "slot": { + "period": 3861683, + "thread": 18 + } + } + ], + "AU1QDmXWqCMi9gBeFqLasAEHh3vVNJBFGLpdXY8pcgPJsM5ttU6e": [ + { + "amount": "201.514970263", + "slot": { + "period": 145326, + "thread": 4 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 317560, + "thread": 19 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 387007, + "thread": 28 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 652591, + "thread": 3 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 796746, + "thread": 0 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 948764, + "thread": 25 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1099981, + "thread": 30 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1258377, + "thread": 31 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1411963, + "thread": 5 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1500748, + "thread": 28 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1747260, + "thread": 9 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 1932274, + "thread": 5 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2042853, + "thread": 25 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2184153, + "thread": 7 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2319705, + "thread": 24 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2534983, + "thread": 31 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2627970, + "thread": 20 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 2932571, + "thread": 0 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 3020941, + "thread": 2 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 3268245, + "thread": 0 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 3330680, + "thread": 16 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 3612124, + "thread": 31 + } + }, + { + "amount": "201.514970263", + "slot": { + "period": 3683559, + "thread": 9 + } + }, + { + "amount": "201.514970256", + "slot": { + "period": 3880572, + "thread": 5 + } + } + ], + "AU1QDy1wtzhCgXt3q6FpmztxJMBatmf1LJh3uJXmSpSFVx4rs8pa": [ + { + "amount": "57.853850798", + "slot": { + "period": 131568, + "thread": 17 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 283795, + "thread": 13 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 356952, + "thread": 26 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 619103, + "thread": 0 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 734837, + "thread": 30 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 879128, + "thread": 28 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1148037, + "thread": 31 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1291990, + "thread": 15 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1381507, + "thread": 4 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1489295, + "thread": 3 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1756583, + "thread": 8 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 1950167, + "thread": 8 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2075116, + "thread": 26 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2183212, + "thread": 0 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2427666, + "thread": 20 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2518330, + "thread": 29 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2639066, + "thread": 25 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 2900806, + "thread": 27 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 3097286, + "thread": 7 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 3218528, + "thread": 0 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 3355162, + "thread": 12 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 3614064, + "thread": 11 + } + }, + { + "amount": "57.853850798", + "slot": { + "period": 3697445, + "thread": 8 + } + }, + { + "amount": "57.853850809", + "slot": { + "period": 3810287, + "thread": 6 + } + } + ], + "AU1QEkdqXNsSJkxcZYk1cg3mL3t9TDTZ6WpTKApz3XVs3cQbULve": [ + { + "amount": "562.131027824", + "slot": { + "period": 135474, + "thread": 7 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 181702, + "thread": 5 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 360533, + "thread": 3 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 575539, + "thread": 16 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 722195, + "thread": 27 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 906230, + "thread": 31 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1092756, + "thread": 13 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1211593, + "thread": 12 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1333809, + "thread": 2 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1588618, + "thread": 21 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1801292, + "thread": 20 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 1964090, + "thread": 22 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2026525, + "thread": 1 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2186049, + "thread": 1 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2321144, + "thread": 27 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2536647, + "thread": 28 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2740715, + "thread": 30 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2869301, + "thread": 0 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 2993956, + "thread": 23 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 3286625, + "thread": 16 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 3341597, + "thread": 27 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 3594598, + "thread": 17 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 3714167, + "thread": 1 + } + }, + { + "amount": "562.131027824", + "slot": { + "period": 3895718, + "thread": 6 + } + } + ], + "AU1QF5JLvWsYUmwz9eHXEtzdxiXd6cncTTaZxD3xYpYTT7Ahfrrd": [ + { + "amount": "56.870423469", + "slot": { + "period": 131235, + "thread": 12 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 204603, + "thread": 30 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 386086, + "thread": 12 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 523308, + "thread": 12 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 681052, + "thread": 16 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 895516, + "thread": 23 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1142127, + "thread": 18 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1165987, + "thread": 21 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1431568, + "thread": 6 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1597783, + "thread": 4 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1724146, + "thread": 1 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1827692, + "thread": 21 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 1994024, + "thread": 13 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 2203760, + "thread": 12 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 2313575, + "thread": 23 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 2540634, + "thread": 3 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 2698860, + "thread": 14 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 2839027, + "thread": 15 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 3016511, + "thread": 2 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 3213827, + "thread": 23 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 3393828, + "thread": 3 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 3567338, + "thread": 1 + } + }, + { + "amount": "56.870423469", + "slot": { + "period": 3737017, + "thread": 24 + } + }, + { + "amount": "56.870423473", + "slot": { + "period": 3904255, + "thread": 9 + } + } + ], + "AU1QF5Jm4wcKmVe1BFveKSd9PXrc9KkAkv2KYxxELKFisFq9RWeT": [ + { + "amount": "1799.944712131", + "slot": { + "period": 108157, + "thread": 6 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 171589, + "thread": 24 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 469968, + "thread": 30 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 610295, + "thread": 29 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 777280, + "thread": 18 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 904427, + "thread": 26 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1136379, + "thread": 14 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1241432, + "thread": 24 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1326308, + "thread": 9 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1605787, + "thread": 19 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1773261, + "thread": 15 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 1906503, + "thread": 14 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2119038, + "thread": 19 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2211400, + "thread": 24 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2328340, + "thread": 23 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2596175, + "thread": 9 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2650419, + "thread": 21 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 2881612, + "thread": 13 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 3103459, + "thread": 0 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 3171024, + "thread": 31 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 3340366, + "thread": 24 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 3544272, + "thread": 18 + } + }, + { + "amount": "1799.944712131", + "slot": { + "period": 3700119, + "thread": 28 + } + }, + { + "amount": "1799.944712129", + "slot": { + "period": 3793456, + "thread": 15 + } + } + ], + "AU1QFqRuasah6Bad5ShQsfiPriUJSudY2eAhtDSPcVBrjY3eiQ6W": [ + { + "amount": "147.233523296", + "slot": { + "period": 26511, + "thread": 21 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 238852, + "thread": 29 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 487269, + "thread": 11 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 632333, + "thread": 8 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 748930, + "thread": 11 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 909781, + "thread": 7 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 992152, + "thread": 13 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 1260926, + "thread": 23 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 1471487, + "thread": 20 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 1562326, + "thread": 2 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 1693640, + "thread": 5 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 1863616, + "thread": 25 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2028364, + "thread": 15 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2226437, + "thread": 18 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2375109, + "thread": 28 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2544446, + "thread": 4 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2691243, + "thread": 5 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2810921, + "thread": 20 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 2985722, + "thread": 2 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 3266381, + "thread": 12 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 3430773, + "thread": 31 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 3474215, + "thread": 17 + } + }, + { + "amount": "147.233523296", + "slot": { + "period": 3661276, + "thread": 24 + } + }, + { + "amount": "147.233523284", + "slot": { + "period": 3810505, + "thread": 7 + } + } + ], + "AU1QGA7WRoavaumeymEM2bTCd434NCM3zLVhuQXdM2vxopwRnhjL": [ + { + "amount": "181.928445265", + "slot": { + "period": 128497, + "thread": 17 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 267582, + "thread": 6 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 392485, + "thread": 1 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 609257, + "thread": 13 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 733198, + "thread": 9 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 849014, + "thread": 20 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1038257, + "thread": 22 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1286981, + "thread": 0 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1461852, + "thread": 19 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1488609, + "thread": 21 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1808336, + "thread": 24 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 1830436, + "thread": 12 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2012364, + "thread": 14 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2247633, + "thread": 19 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2459255, + "thread": 17 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2552449, + "thread": 13 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2699802, + "thread": 3 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 2812042, + "thread": 16 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 3099706, + "thread": 13 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 3186037, + "thread": 23 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 3337703, + "thread": 6 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 3578686, + "thread": 29 + } + }, + { + "amount": "181.928445265", + "slot": { + "period": 3693484, + "thread": 30 + } + }, + { + "amount": "181.928445267", + "slot": { + "period": 3904566, + "thread": 17 + } + } + ], + "AU1QGMiHH7yiL6iN4g4itt3E1SM3o3wPFhfM5UnFA6GmFgTJ3ZaL": [ + { + "amount": "112.969396198", + "slot": { + "period": 152474, + "thread": 15 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 178070, + "thread": 14 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 413848, + "thread": 31 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 511605, + "thread": 7 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 693480, + "thread": 11 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 867194, + "thread": 13 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1000113, + "thread": 14 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1180762, + "thread": 15 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1381637, + "thread": 13 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1521322, + "thread": 14 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1763799, + "thread": 22 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 1826959, + "thread": 0 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2096986, + "thread": 13 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2278962, + "thread": 10 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2451431, + "thread": 9 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2530758, + "thread": 9 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2698434, + "thread": 15 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 2902940, + "thread": 9 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 3075942, + "thread": 7 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 3209029, + "thread": 0 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 3370718, + "thread": 22 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 3480097, + "thread": 7 + } + }, + { + "amount": "112.969396198", + "slot": { + "period": 3624375, + "thread": 26 + } + }, + { + "amount": "112.969396201", + "slot": { + "period": 3862087, + "thread": 7 + } + } + ], + "AU1QGj8PocbMuBLESZESCd4jiEH5kukYbSeSJHS5GcAEzW37uPpk": [ + { + "amount": "350.259090936", + "slot": { + "period": 161669, + "thread": 23 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 314310, + "thread": 27 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 447811, + "thread": 24 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 525527, + "thread": 14 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 769910, + "thread": 1 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 887571, + "thread": 23 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1013305, + "thread": 31 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1174175, + "thread": 9 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1388626, + "thread": 18 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1550976, + "thread": 6 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1679038, + "thread": 8 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 1867420, + "thread": 9 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2086802, + "thread": 13 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2171917, + "thread": 5 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2358659, + "thread": 1 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2533652, + "thread": 5 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2640561, + "thread": 16 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2792014, + "thread": 14 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 2982363, + "thread": 25 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 3136724, + "thread": 8 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 3410754, + "thread": 25 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 3569231, + "thread": 8 + } + }, + { + "amount": "350.259090936", + "slot": { + "period": 3701898, + "thread": 29 + } + }, + { + "amount": "350.259090935", + "slot": { + "period": 3930155, + "thread": 27 + } + } + ], + "AU1QGjMnHnjZvFVcKQXzN1aM78r7b6A6heVEfWUkDGphVCRzBNPq": [ + { + "amount": "195.071073504", + "slot": { + "period": 13938, + "thread": 21 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 226132, + "thread": 15 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 472484, + "thread": 0 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 650274, + "thread": 5 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 708052, + "thread": 27 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 900343, + "thread": 24 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1104505, + "thread": 3 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1153061, + "thread": 22 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1328188, + "thread": 26 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1515967, + "thread": 6 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1790594, + "thread": 31 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 1974973, + "thread": 22 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2123667, + "thread": 29 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2269146, + "thread": 27 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2383529, + "thread": 17 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2515905, + "thread": 2 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2649181, + "thread": 9 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 2873042, + "thread": 30 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 3069636, + "thread": 11 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 3124566, + "thread": 0 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 3307837, + "thread": 14 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 3484549, + "thread": 15 + } + }, + { + "amount": "195.071073504", + "slot": { + "period": 3694840, + "thread": 18 + } + }, + { + "amount": "195.071073492", + "slot": { + "period": 3939278, + "thread": 10 + } + } + ], + "AU1QGpTqzp1c8XGgw6d9Aer6o2ryy641a1ih95NzjAfvw2NU7szY": [ + { + "amount": "130.910342119", + "slot": { + "period": 132163, + "thread": 20 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 199225, + "thread": 26 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 445367, + "thread": 26 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 545614, + "thread": 4 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 817414, + "thread": 2 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 855830, + "thread": 15 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1127704, + "thread": 24 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1190210, + "thread": 17 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1333943, + "thread": 23 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1614056, + "thread": 19 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1797527, + "thread": 23 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 1814806, + "thread": 3 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2123900, + "thread": 15 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2147800, + "thread": 31 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2386264, + "thread": 6 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2504747, + "thread": 9 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2684073, + "thread": 7 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2866170, + "thread": 21 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 2994563, + "thread": 15 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 3220822, + "thread": 22 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 3446498, + "thread": 15 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 3516839, + "thread": 22 + } + }, + { + "amount": "130.910342119", + "slot": { + "period": 3759024, + "thread": 6 + } + }, + { + "amount": "130.910342127", + "slot": { + "period": 3900683, + "thread": 30 + } + } + ], + "AU1QHgvH3838xzDqwm6Mm7CovJAWXsHyyanPQBTSVTTdQu1Sghop": [ + { + "amount": "525.983301907", + "slot": { + "period": 72100, + "thread": 21 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 202404, + "thread": 23 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 390739, + "thread": 1 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 517206, + "thread": 27 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 787933, + "thread": 3 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 843796, + "thread": 4 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1095419, + "thread": 9 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1200092, + "thread": 2 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1466701, + "thread": 15 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1544000, + "thread": 17 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1719411, + "thread": 16 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 1965343, + "thread": 15 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2100065, + "thread": 27 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2181303, + "thread": 25 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2402819, + "thread": 9 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2475320, + "thread": 26 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2730176, + "thread": 14 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 2933370, + "thread": 28 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 3037923, + "thread": 25 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 3173225, + "thread": 20 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 3304814, + "thread": 21 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 3613881, + "thread": 29 + } + }, + { + "amount": "525.983301907", + "slot": { + "period": 3644575, + "thread": 15 + } + }, + { + "amount": "525.983301896", + "slot": { + "period": 3889902, + "thread": 9 + } + } + ], + "AU1QJC7nNPBojuNxmTVVS1q9kzJiN5rPGvTSscnvKr6WoqNp8Yub": [ + { + "amount": "102.591653440", + "slot": { + "period": 61966, + "thread": 10 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 314086, + "thread": 11 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 324451, + "thread": 12 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 649134, + "thread": 31 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 709935, + "thread": 26 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 850170, + "thread": 31 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1134646, + "thread": 16 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1161581, + "thread": 14 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1341298, + "thread": 0 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1620195, + "thread": 8 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1657508, + "thread": 17 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 1947375, + "thread": 28 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2011060, + "thread": 28 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2246130, + "thread": 5 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2409895, + "thread": 31 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2623887, + "thread": 5 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2695347, + "thread": 9 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 2840342, + "thread": 15 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 3109367, + "thread": 4 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 3285027, + "thread": 10 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 3418768, + "thread": 3 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 3517147, + "thread": 11 + } + }, + { + "amount": "102.591653440", + "slot": { + "period": 3632932, + "thread": 30 + } + }, + { + "amount": "102.591653444", + "slot": { + "period": 3847968, + "thread": 30 + } + } + ], + "AU1QLUcRATNVbgfdBBXpcTFATHypuimtBjZaiuRiUdqUsrktkW9g": [ + { + "amount": "76.980257665", + "slot": { + "period": 80607, + "thread": 29 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 291183, + "thread": 2 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 360819, + "thread": 12 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 623620, + "thread": 24 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 773094, + "thread": 12 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 922902, + "thread": 29 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 993161, + "thread": 2 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1298213, + "thread": 24 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1444609, + "thread": 30 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1618085, + "thread": 1 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1707883, + "thread": 10 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1829736, + "thread": 3 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 1986113, + "thread": 25 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 2156849, + "thread": 8 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 2407624, + "thread": 14 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 2524061, + "thread": 11 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 2660225, + "thread": 5 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 2834589, + "thread": 13 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 3090464, + "thread": 9 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 3199423, + "thread": 26 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 3332939, + "thread": 9 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 3473727, + "thread": 23 + } + }, + { + "amount": "76.980257665", + "slot": { + "period": 3698452, + "thread": 6 + } + }, + { + "amount": "76.980257664", + "slot": { + "period": 3789021, + "thread": 20 + } + } + ], + "AU1QMqFUUBXykgD4TkfmZB1bCd9So5ppigGAfjSARnFJw3z4BvHq": [ + { + "amount": "228.774600457", + "slot": { + "period": 33675, + "thread": 12 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 225904, + "thread": 23 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 470390, + "thread": 1 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 598306, + "thread": 24 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 814949, + "thread": 5 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 895483, + "thread": 4 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1094029, + "thread": 14 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1160757, + "thread": 10 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1324369, + "thread": 5 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1545665, + "thread": 31 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1753397, + "thread": 2 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 1969097, + "thread": 15 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2125235, + "thread": 30 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2199941, + "thread": 16 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2345715, + "thread": 24 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2552101, + "thread": 23 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2717057, + "thread": 2 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 2945009, + "thread": 10 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 3017364, + "thread": 17 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 3232640, + "thread": 21 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 3376589, + "thread": 10 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 3514619, + "thread": 31 + } + }, + { + "amount": "228.774600457", + "slot": { + "period": 3769344, + "thread": 1 + } + }, + { + "amount": "228.774600452", + "slot": { + "period": 3859531, + "thread": 29 + } + } + ], + "AU1QNTPkqTL1a2dr9mGhy2onXWiSiWvfEV5crtaAABihH2hrDm1M": [ + { + "amount": "70.743118178", + "slot": { + "period": 122416, + "thread": 14 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 318002, + "thread": 29 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 436298, + "thread": 18 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 523865, + "thread": 6 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 766362, + "thread": 3 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 821336, + "thread": 20 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1031549, + "thread": 1 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1242041, + "thread": 4 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1370157, + "thread": 11 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1625936, + "thread": 28 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1808075, + "thread": 6 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 1946565, + "thread": 28 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2101516, + "thread": 22 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2236097, + "thread": 17 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2421712, + "thread": 31 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2574454, + "thread": 16 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2693735, + "thread": 3 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 2830828, + "thread": 30 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 3022051, + "thread": 29 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 3170781, + "thread": 16 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 3319142, + "thread": 17 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 3481086, + "thread": 5 + } + }, + { + "amount": "70.743118178", + "slot": { + "period": 3635221, + "thread": 12 + } + }, + { + "amount": "70.743118177", + "slot": { + "period": 3899626, + "thread": 7 + } + } + ], + "AU1QNaoaYUc18gGo4Y1eU7DHR6uquPpmweYqtX4fT3FecZAQX6JF": [ + { + "amount": "40833.333333333", + "slot": { + "period": 31828, + "thread": 22 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 293310, + "thread": 19 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 479889, + "thread": 16 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 618937, + "thread": 25 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 797645, + "thread": 31 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 945473, + "thread": 21 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1073667, + "thread": 13 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1207910, + "thread": 4 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1363899, + "thread": 0 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1590731, + "thread": 27 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1730850, + "thread": 11 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 1829773, + "thread": 29 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2119528, + "thread": 17 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2217155, + "thread": 31 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2449421, + "thread": 19 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2577585, + "thread": 28 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2649985, + "thread": 19 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 2909552, + "thread": 4 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 3018203, + "thread": 11 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 3150704, + "thread": 26 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 3412014, + "thread": 7 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 3592530, + "thread": 31 + } + }, + { + "amount": "40833.333333333", + "slot": { + "period": 3733255, + "thread": 2 + } + }, + { + "amount": "40833.333333341", + "slot": { + "period": 3878219, + "thread": 29 + } + } + ], + "AU1QPNN7Vz6Pyngn55RXsuLhs8hQCofrYA7d2TcB7TRx2FRCZVaN": [ + { + "amount": "200.782870074", + "slot": { + "period": 67061, + "thread": 14 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 197079, + "thread": 11 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 451799, + "thread": 30 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 562835, + "thread": 15 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 687463, + "thread": 13 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 935208, + "thread": 30 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1095474, + "thread": 26 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1224367, + "thread": 1 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1349438, + "thread": 28 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1591756, + "thread": 3 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1656754, + "thread": 17 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 1968829, + "thread": 13 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2016511, + "thread": 30 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2284317, + "thread": 18 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2435904, + "thread": 24 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2466471, + "thread": 16 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2662350, + "thread": 21 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 2818165, + "thread": 12 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3066630, + "thread": 30 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3169536, + "thread": 31 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3445680, + "thread": 5 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3470766, + "thread": 14 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3644492, + "thread": 21 + } + }, + { + "amount": "200.782870074", + "slot": { + "period": 3787362, + "thread": 2 + } + } + ], + "AU1QPi4jsjHJa6zLdRKFv5tFsiWGuVAdS79D2D5r9GYPgctWxSkE": [ + { + "amount": "122.353332904", + "slot": { + "period": 105688, + "thread": 29 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 171918, + "thread": 13 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 448505, + "thread": 16 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 495721, + "thread": 15 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 782982, + "thread": 11 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 852548, + "thread": 14 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1017254, + "thread": 11 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1173028, + "thread": 6 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1404090, + "thread": 7 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1515981, + "thread": 6 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1781311, + "thread": 22 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 1909827, + "thread": 17 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2126778, + "thread": 26 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2220413, + "thread": 4 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2408848, + "thread": 5 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2546674, + "thread": 10 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2650236, + "thread": 10 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 2871552, + "thread": 30 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 3065061, + "thread": 20 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 3279281, + "thread": 3 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 3350984, + "thread": 6 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 3460268, + "thread": 9 + } + }, + { + "amount": "122.353332904", + "slot": { + "period": 3758348, + "thread": 28 + } + }, + { + "amount": "122.353332907", + "slot": { + "period": 3819952, + "thread": 25 + } + } + ], + "AU1QPqX45dBM87mEhLgajkoT2HhSwTHH8KfLdJyoZTbhgh8sexFE": [ + { + "amount": "200.640482205", + "slot": { + "period": 11435, + "thread": 7 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 275824, + "thread": 23 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 361728, + "thread": 19 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 522608, + "thread": 29 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 741569, + "thread": 14 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 906609, + "thread": 21 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1003988, + "thread": 12 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1191457, + "thread": 9 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1467383, + "thread": 13 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1514720, + "thread": 7 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1793217, + "thread": 8 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 1865849, + "thread": 2 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2094872, + "thread": 6 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2289819, + "thread": 11 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2398199, + "thread": 10 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2595819, + "thread": 21 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2723877, + "thread": 11 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 2894278, + "thread": 29 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 3009030, + "thread": 8 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 3139551, + "thread": 31 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 3310253, + "thread": 30 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 3528413, + "thread": 29 + } + }, + { + "amount": "200.640482205", + "slot": { + "period": 3671128, + "thread": 23 + } + }, + { + "amount": "200.640482203", + "slot": { + "period": 3796154, + "thread": 8 + } + } + ], + "AU1QRBkYsz2aYsqkaVeRitJwQfi8hrmudbENZVvD457P3STqW2nB": [ + { + "amount": "155.552202482", + "slot": { + "period": 93736, + "thread": 23 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 223129, + "thread": 19 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 437779, + "thread": 29 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 494041, + "thread": 20 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 775225, + "thread": 19 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 950250, + "thread": 9 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1135624, + "thread": 24 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1181453, + "thread": 17 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1403111, + "thread": 23 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1538638, + "thread": 6 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1709715, + "thread": 24 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 1852487, + "thread": 15 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2039363, + "thread": 1 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2240901, + "thread": 24 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2360140, + "thread": 9 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2557264, + "thread": 22 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2783505, + "thread": 11 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2891738, + "thread": 3 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 2994636, + "thread": 27 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 3137601, + "thread": 24 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 3441937, + "thread": 28 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 3481902, + "thread": 13 + } + }, + { + "amount": "155.552202482", + "slot": { + "period": 3769503, + "thread": 14 + } + }, + { + "amount": "155.552202486", + "slot": { + "period": 3802934, + "thread": 31 + } + } + ], + "AU1QRhwZAzyqX7R4SxBizYWPwjxXoXmcXgdG3H1L24KC3CWS1Db7": [ + { + "amount": "176.546919612", + "slot": { + "period": 40938, + "thread": 15 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 208752, + "thread": 5 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 484405, + "thread": 20 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 519519, + "thread": 5 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 740817, + "thread": 13 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 827524, + "thread": 23 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1010769, + "thread": 31 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1209657, + "thread": 26 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1450182, + "thread": 9 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1524962, + "thread": 16 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1751003, + "thread": 14 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 1844346, + "thread": 4 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2019309, + "thread": 20 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2259706, + "thread": 7 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2368221, + "thread": 25 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2477530, + "thread": 10 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2625653, + "thread": 30 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2931554, + "thread": 4 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 2968603, + "thread": 19 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 3143151, + "thread": 2 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 3378471, + "thread": 11 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 3495608, + "thread": 7 + } + }, + { + "amount": "176.546919612", + "slot": { + "period": 3689844, + "thread": 1 + } + }, + { + "amount": "176.546919607", + "slot": { + "period": 3830664, + "thread": 10 + } + } + ], + "AU1QRrupAWKwrhQmMGkNKuBFyH4cGcoUKZHL1BLvxVUuVV7BSwSB": [ + { + "amount": "102.099454516", + "slot": { + "period": 16735, + "thread": 21 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 180326, + "thread": 24 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 453502, + "thread": 24 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 504254, + "thread": 27 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 712596, + "thread": 7 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 955348, + "thread": 22 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1035373, + "thread": 21 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1271832, + "thread": 22 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1385482, + "thread": 18 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1498187, + "thread": 12 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1755250, + "thread": 5 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 1946094, + "thread": 11 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2049419, + "thread": 3 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2255088, + "thread": 19 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2386063, + "thread": 6 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2479269, + "thread": 18 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2634280, + "thread": 5 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 2870885, + "thread": 25 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 3004381, + "thread": 12 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 3147188, + "thread": 18 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 3318905, + "thread": 17 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 3600929, + "thread": 4 + } + }, + { + "amount": "102.099454516", + "slot": { + "period": 3681952, + "thread": 31 + } + }, + { + "amount": "102.099454520", + "slot": { + "period": 3802774, + "thread": 13 + } + } + ], + "AU1QRv44LSRrjpjx7oFkAY2vn4CfCN8GAzxyqzTKZEbXaVddNRtS": [ + { + "amount": "274.231569154", + "slot": { + "period": 120247, + "thread": 1 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 307081, + "thread": 10 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 398666, + "thread": 21 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 534480, + "thread": 15 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 729868, + "thread": 24 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 826435, + "thread": 19 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1008699, + "thread": 15 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1231153, + "thread": 27 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1352504, + "thread": 13 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1518374, + "thread": 3 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1765423, + "thread": 10 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 1923282, + "thread": 12 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2003816, + "thread": 8 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2213044, + "thread": 27 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2455830, + "thread": 11 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2603481, + "thread": 8 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2657119, + "thread": 14 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 2798860, + "thread": 7 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 3111722, + "thread": 6 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 3258793, + "thread": 25 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 3443433, + "thread": 22 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 3577124, + "thread": 0 + } + }, + { + "amount": "274.231569154", + "slot": { + "period": 3778639, + "thread": 21 + } + }, + { + "amount": "274.231569142", + "slot": { + "period": 3865380, + "thread": 17 + } + } + ], + "AU1QS8XgywdQHXxMe15FSuZWSLw7jH5pzmnZNrJBjWX5SrNpe9AN": [ + { + "amount": "247.263401251", + "slot": { + "period": 78755, + "thread": 8 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 283996, + "thread": 14 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 426412, + "thread": 27 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 547309, + "thread": 31 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 757668, + "thread": 27 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 851626, + "thread": 21 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1087103, + "thread": 20 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1162297, + "thread": 19 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1423222, + "thread": 19 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1609326, + "thread": 12 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1689321, + "thread": 11 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 1888114, + "thread": 29 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2084799, + "thread": 4 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2280463, + "thread": 0 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2384472, + "thread": 24 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2589309, + "thread": 26 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2673093, + "thread": 20 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2864591, + "thread": 15 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 2981335, + "thread": 14 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 3159286, + "thread": 14 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 3288994, + "thread": 5 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 3477237, + "thread": 30 + } + }, + { + "amount": "247.263401251", + "slot": { + "period": 3717878, + "thread": 9 + } + }, + { + "amount": "247.263401255", + "slot": { + "period": 3889384, + "thread": 3 + } + } + ], + "AU1QSa6JfNqqi1o6pbtK8NE7CcUXpQNCuWirGiU41dtbHGUjjApA": [ + { + "amount": "458.112128592", + "slot": { + "period": 32357, + "thread": 26 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 211859, + "thread": 20 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 450629, + "thread": 4 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 643952, + "thread": 4 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 747032, + "thread": 21 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 823802, + "thread": 24 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1011816, + "thread": 20 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1281867, + "thread": 0 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1467562, + "thread": 18 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1616692, + "thread": 23 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1688644, + "thread": 30 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1834185, + "thread": 15 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 1985138, + "thread": 22 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 2176230, + "thread": 17 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 2436459, + "thread": 27 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 2541937, + "thread": 26 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 2747425, + "thread": 4 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 2863867, + "thread": 23 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 3055593, + "thread": 2 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 3187550, + "thread": 0 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 3358978, + "thread": 8 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 3578171, + "thread": 2 + } + }, + { + "amount": "458.112128592", + "slot": { + "period": 3706785, + "thread": 27 + } + }, + { + "amount": "458.112128587", + "slot": { + "period": 3942422, + "thread": 26 + } + } + ], + "AU1QSa9N5GyqxX4NJAK4n9JWEt88oEy9wKrWRfzaqurW52GE2g7p": [ + { + "amount": "242.748909072", + "slot": { + "period": 51130, + "thread": 26 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 268774, + "thread": 2 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 464576, + "thread": 6 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 642315, + "thread": 20 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 690039, + "thread": 23 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 884834, + "thread": 13 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1118596, + "thread": 10 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1199592, + "thread": 19 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1367835, + "thread": 5 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1612038, + "thread": 14 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1690728, + "thread": 13 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 1882497, + "thread": 9 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2008338, + "thread": 21 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2223565, + "thread": 11 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2369156, + "thread": 5 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2498196, + "thread": 22 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2626943, + "thread": 22 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 2799343, + "thread": 26 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 3025206, + "thread": 6 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 3241070, + "thread": 4 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 3448133, + "thread": 16 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 3599318, + "thread": 1 + } + }, + { + "amount": "242.748909072", + "slot": { + "period": 3622452, + "thread": 19 + } + }, + { + "amount": "242.748909063", + "slot": { + "period": 3837252, + "thread": 1 + } + } + ], + "AU1QSvAEAYzLnDYvEkb7qSCv6eW5jKiMhnqDzcnAhxGoMGH7K5QM": [ + { + "amount": "289.137309338", + "slot": { + "period": 148099, + "thread": 4 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 180460, + "thread": 30 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 462044, + "thread": 14 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 532111, + "thread": 10 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 815864, + "thread": 16 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 976645, + "thread": 11 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1098497, + "thread": 30 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1234912, + "thread": 12 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1361318, + "thread": 29 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1636028, + "thread": 13 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1740747, + "thread": 25 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 1856929, + "thread": 2 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2016271, + "thread": 29 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2173121, + "thread": 27 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2337122, + "thread": 14 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2494455, + "thread": 15 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2777755, + "thread": 12 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 2848639, + "thread": 7 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 3014246, + "thread": 20 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 3187037, + "thread": 27 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 3427614, + "thread": 23 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 3585351, + "thread": 24 + } + }, + { + "amount": "289.137309338", + "slot": { + "period": 3768972, + "thread": 5 + } + }, + { + "amount": "289.137309341", + "slot": { + "period": 3909477, + "thread": 18 + } + } + ], + "AU1QU15F49MFBXmXTc8corySHmptnHBkyr2VtYvLmqWhTGRcBaCb": [ + { + "amount": "113.415668202", + "slot": { + "period": 121232, + "thread": 26 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 256284, + "thread": 7 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 380678, + "thread": 12 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 616308, + "thread": 26 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 673519, + "thread": 10 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 891666, + "thread": 6 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1005279, + "thread": 11 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1227983, + "thread": 16 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1400902, + "thread": 10 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1557843, + "thread": 11 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1757839, + "thread": 16 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1947300, + "thread": 0 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 1993720, + "thread": 24 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2278944, + "thread": 19 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2315725, + "thread": 25 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2621171, + "thread": 3 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2678753, + "thread": 4 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2809392, + "thread": 29 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 2954869, + "thread": 23 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 3224982, + "thread": 3 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 3366255, + "thread": 22 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 3609045, + "thread": 9 + } + }, + { + "amount": "113.415668202", + "slot": { + "period": 3715337, + "thread": 10 + } + }, + { + "amount": "113.415668212", + "slot": { + "period": 3938155, + "thread": 2 + } + } + ], + "AU1QUS1XHYyguUAVo3De2Mfyy23X1Atuj4uauxibU8uuPNx377e7": [ + { + "amount": "476.349590472", + "slot": { + "period": 130095, + "thread": 31 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 178673, + "thread": 27 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 328999, + "thread": 21 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 515210, + "thread": 9 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 728435, + "thread": 9 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 946449, + "thread": 17 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1113439, + "thread": 10 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1208516, + "thread": 25 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1366044, + "thread": 10 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1630681, + "thread": 21 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1649715, + "thread": 6 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1843696, + "thread": 21 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 1981227, + "thread": 4 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 2178685, + "thread": 0 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 2454833, + "thread": 5 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 2469618, + "thread": 25 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 2710898, + "thread": 28 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 2944114, + "thread": 22 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 3048690, + "thread": 9 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 3198538, + "thread": 29 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 3301209, + "thread": 28 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 3482506, + "thread": 12 + } + }, + { + "amount": "476.349590472", + "slot": { + "period": 3677228, + "thread": 7 + } + }, + { + "amount": "476.349590460", + "slot": { + "period": 3938007, + "thread": 19 + } + } + ], + "AU1QUT9wM1kJAUqvKGMTfreXLfTFy4PEm4jbMsi68A9e3hdroATr": [ + { + "amount": "104.121796334", + "slot": { + "period": 34668, + "thread": 21 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 318482, + "thread": 23 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 409161, + "thread": 22 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 566256, + "thread": 12 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 746728, + "thread": 2 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 823334, + "thread": 10 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1066958, + "thread": 26 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1158650, + "thread": 8 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1464757, + "thread": 16 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1562681, + "thread": 30 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1776045, + "thread": 7 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 1891137, + "thread": 3 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2129239, + "thread": 3 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2199842, + "thread": 8 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2312930, + "thread": 30 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2603495, + "thread": 7 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2752723, + "thread": 15 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2945209, + "thread": 3 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 2995880, + "thread": 19 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 3284360, + "thread": 15 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 3300178, + "thread": 24 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 3579020, + "thread": 22 + } + }, + { + "amount": "104.121796334", + "slot": { + "period": 3749623, + "thread": 3 + } + }, + { + "amount": "104.121796339", + "slot": { + "period": 3893055, + "thread": 2 + } + } + ], + "AU1QVBXKzK3LND2i9y6d15Ecrgnuyq7SUe8ABBhMGxiBLsueXxRK": [ + { + "amount": "144.662737891", + "slot": { + "period": 27924, + "thread": 18 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 315926, + "thread": 4 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 489913, + "thread": 21 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 519701, + "thread": 26 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 810619, + "thread": 28 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 904122, + "thread": 26 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1051115, + "thread": 18 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1278989, + "thread": 8 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1351445, + "thread": 21 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1605620, + "thread": 13 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1689873, + "thread": 2 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1925613, + "thread": 24 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 1999038, + "thread": 5 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 2249119, + "thread": 6 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 2389468, + "thread": 20 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 2465479, + "thread": 1 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 2676348, + "thread": 3 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 2927930, + "thread": 6 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 3027444, + "thread": 22 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 3283364, + "thread": 29 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 3308213, + "thread": 28 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 3497793, + "thread": 13 + } + }, + { + "amount": "144.662737891", + "slot": { + "period": 3699182, + "thread": 26 + } + }, + { + "amount": "144.662737892", + "slot": { + "period": 3905315, + "thread": 29 + } + } + ], + "AU1QVBgnsb31nqLBygxrTJGpUfSSWSXZCrUdkXwDV9iNos2heKkg": [ + { + "amount": "124.599150434", + "slot": { + "period": 69972, + "thread": 14 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 297576, + "thread": 10 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 438170, + "thread": 25 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 582516, + "thread": 22 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 747615, + "thread": 24 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 982359, + "thread": 15 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1149149, + "thread": 8 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1209232, + "thread": 27 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1464028, + "thread": 25 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1625493, + "thread": 5 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1795376, + "thread": 14 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 1926533, + "thread": 6 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2052069, + "thread": 9 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2169385, + "thread": 15 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2375044, + "thread": 27 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2611676, + "thread": 18 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2670768, + "thread": 10 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 2952539, + "thread": 26 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 3033031, + "thread": 25 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 3151098, + "thread": 3 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 3399067, + "thread": 21 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 3572572, + "thread": 31 + } + }, + { + "amount": "124.599150434", + "slot": { + "period": 3770415, + "thread": 11 + } + }, + { + "amount": "124.599150444", + "slot": { + "period": 3856717, + "thread": 16 + } + } + ], + "AU1QVx4Da8HroosDrFSj4cJLuW14SwgeFNDBSpNqF2nL6F2mfFGK": [ + { + "amount": "427.142022430", + "slot": { + "period": 83192, + "thread": 5 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 223461, + "thread": 5 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 489997, + "thread": 11 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 500001, + "thread": 6 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 697452, + "thread": 29 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 827945, + "thread": 17 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1082784, + "thread": 6 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1179932, + "thread": 17 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1355262, + "thread": 4 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1494602, + "thread": 30 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1712976, + "thread": 18 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1823836, + "thread": 5 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 1997864, + "thread": 15 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 2243830, + "thread": 8 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 2422359, + "thread": 4 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 2492371, + "thread": 24 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 2630016, + "thread": 22 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 2935898, + "thread": 30 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 3098107, + "thread": 8 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 3124288, + "thread": 17 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 3361112, + "thread": 18 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 3599696, + "thread": 2 + } + }, + { + "amount": "427.142022430", + "slot": { + "period": 3647574, + "thread": 26 + } + }, + { + "amount": "427.142022435", + "slot": { + "period": 3925797, + "thread": 23 + } + } + ], + "AU1QW7C1pTCfgNHxwD9o4JDdeqkiF1gSxGmVYMspi4wqZjVWdkJF": [ + { + "amount": "151.480365170", + "slot": { + "period": 54825, + "thread": 12 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 169689, + "thread": 5 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 463265, + "thread": 4 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 574467, + "thread": 8 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 786867, + "thread": 29 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 972020, + "thread": 17 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1144777, + "thread": 0 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1183658, + "thread": 13 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1367625, + "thread": 16 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1627603, + "thread": 4 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1671591, + "thread": 10 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1934055, + "thread": 1 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 1998635, + "thread": 24 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 2177992, + "thread": 19 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 2461091, + "thread": 29 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 2554386, + "thread": 23 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 2756572, + "thread": 13 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 2879414, + "thread": 12 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 3009442, + "thread": 22 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 3247333, + "thread": 2 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 3289731, + "thread": 29 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 3457446, + "thread": 17 + } + }, + { + "amount": "151.480365170", + "slot": { + "period": 3749486, + "thread": 21 + } + }, + { + "amount": "151.480365165", + "slot": { + "period": 3797172, + "thread": 22 + } + } + ], + "AU1QWPzBgc9QsX291Rq3KL6mXmRiFU6sbfwmREAuQJa1UbUCU3WK": [ + { + "amount": "257.060061820", + "slot": { + "period": 42322, + "thread": 17 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 235152, + "thread": 8 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 334990, + "thread": 12 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 622322, + "thread": 17 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 788300, + "thread": 15 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 962591, + "thread": 7 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1097565, + "thread": 22 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1250375, + "thread": 14 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1359752, + "thread": 9 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1509755, + "thread": 6 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1750261, + "thread": 25 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 1826828, + "thread": 11 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2096364, + "thread": 23 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2255292, + "thread": 25 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2398206, + "thread": 18 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2503493, + "thread": 26 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2772600, + "thread": 20 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 2928948, + "thread": 7 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 3069720, + "thread": 22 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 3236778, + "thread": 28 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 3423035, + "thread": 24 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 3579648, + "thread": 16 + } + }, + { + "amount": "257.060061820", + "slot": { + "period": 3779139, + "thread": 28 + } + }, + { + "amount": "257.060061815", + "slot": { + "period": 3930355, + "thread": 17 + } + } + ], + "AU1QWjM1Hr4uoaYE7Ch2qeh9BVThqSkRCojWa5tJ8VnYD4QFFMBL": [ + { + "amount": "259.796721554", + "slot": { + "period": 159285, + "thread": 11 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 295799, + "thread": 6 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 455537, + "thread": 15 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 610174, + "thread": 20 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 676031, + "thread": 2 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 843418, + "thread": 17 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1029946, + "thread": 30 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1250306, + "thread": 27 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1468375, + "thread": 27 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1573360, + "thread": 18 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1712529, + "thread": 7 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 1824355, + "thread": 3 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2024536, + "thread": 22 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2196627, + "thread": 3 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2399187, + "thread": 12 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2566882, + "thread": 18 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2754944, + "thread": 12 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 2862861, + "thread": 29 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 3036949, + "thread": 2 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 3262091, + "thread": 17 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 3313063, + "thread": 16 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 3487868, + "thread": 12 + } + }, + { + "amount": "259.796721554", + "slot": { + "period": 3669806, + "thread": 17 + } + }, + { + "amount": "259.796721551", + "slot": { + "period": 3870164, + "thread": 11 + } + } + ], + "AU1QWmYG3fqtAZ8ynMJbLxVZPqvpzZbVhnk6HnMccRMtMfaH8DRf": [ + { + "amount": "629.291022894", + "slot": { + "period": 85319, + "thread": 15 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 186296, + "thread": 27 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 428738, + "thread": 4 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 517589, + "thread": 4 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 816618, + "thread": 19 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 971420, + "thread": 1 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1137338, + "thread": 24 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1291126, + "thread": 18 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1449238, + "thread": 25 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1581674, + "thread": 10 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1648304, + "thread": 18 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 1898690, + "thread": 14 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2123082, + "thread": 23 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2231213, + "thread": 22 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2441362, + "thread": 24 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2566949, + "thread": 28 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2737284, + "thread": 3 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 2948114, + "thread": 7 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 3017464, + "thread": 25 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 3246996, + "thread": 27 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 3350508, + "thread": 15 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 3559660, + "thread": 29 + } + }, + { + "amount": "629.291022894", + "slot": { + "period": 3651488, + "thread": 7 + } + }, + { + "amount": "629.291022884", + "slot": { + "period": 3848677, + "thread": 30 + } + } + ], + "AU1QXFW4Bri3ushT6qiCVxGEGCQGVScwotwCbBBPHieqtHn8SDGV": [ + { + "amount": "209.883794315", + "slot": { + "period": 73805, + "thread": 4 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 168938, + "thread": 14 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 459537, + "thread": 28 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 609166, + "thread": 5 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 666007, + "thread": 8 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 849006, + "thread": 18 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 987942, + "thread": 31 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 1167787, + "thread": 28 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 1467178, + "thread": 0 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 1603116, + "thread": 25 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 1735807, + "thread": 25 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 1822423, + "thread": 31 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2138885, + "thread": 21 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2259575, + "thread": 9 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2356057, + "thread": 7 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2483929, + "thread": 12 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2683205, + "thread": 8 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 2916900, + "thread": 24 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 3008180, + "thread": 30 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 3188925, + "thread": 23 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 3369904, + "thread": 28 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 3507023, + "thread": 3 + } + }, + { + "amount": "209.883794315", + "slot": { + "period": 3640646, + "thread": 2 + } + }, + { + "amount": "209.883794319", + "slot": { + "period": 3865469, + "thread": 26 + } + } + ], + "AU1QXUu5d5kFjaaAPto6kWsbPULgyWcj9KzfeHRjh1xMNTMZBK97": [ + { + "amount": "63.410436878", + "slot": { + "period": 125600, + "thread": 22 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 190978, + "thread": 1 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 478674, + "thread": 19 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 617377, + "thread": 1 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 797235, + "thread": 11 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 868998, + "thread": 1 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1134837, + "thread": 25 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1244051, + "thread": 27 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1373277, + "thread": 18 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1589924, + "thread": 18 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1725540, + "thread": 29 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 1827061, + "thread": 2 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2106820, + "thread": 6 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2266644, + "thread": 8 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2345174, + "thread": 31 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2540336, + "thread": 9 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2657286, + "thread": 6 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 2861153, + "thread": 3 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 3077677, + "thread": 30 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 3236351, + "thread": 30 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 3381428, + "thread": 23 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 3514608, + "thread": 15 + } + }, + { + "amount": "63.410436878", + "slot": { + "period": 3696938, + "thread": 27 + } + }, + { + "amount": "63.410436873", + "slot": { + "period": 3849540, + "thread": 25 + } + } + ], + "AU1QXYCHvLuy9uwTbLwaMbAf8WJSVHa4M6CHy1k6T9jrL1XoaNQL": [ + { + "amount": "123.407939182", + "slot": { + "period": 26642, + "thread": 19 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 171806, + "thread": 4 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 446337, + "thread": 24 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 504016, + "thread": 15 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 785416, + "thread": 19 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 949964, + "thread": 14 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1018858, + "thread": 3 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1315894, + "thread": 16 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1365004, + "thread": 12 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1599600, + "thread": 10 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1688191, + "thread": 29 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 1962299, + "thread": 17 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2032209, + "thread": 1 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2283787, + "thread": 31 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2322046, + "thread": 8 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2512927, + "thread": 21 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2725253, + "thread": 25 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 2891567, + "thread": 4 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 3074487, + "thread": 8 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 3149905, + "thread": 17 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 3441346, + "thread": 22 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 3609335, + "thread": 29 + } + }, + { + "amount": "123.407939182", + "slot": { + "period": 3694760, + "thread": 3 + } + }, + { + "amount": "123.407939188", + "slot": { + "period": 3914081, + "thread": 9 + } + } + ], + "AU1QY5YrmuPrUJDcMQj973fAjZmnxQWvZgvTgh4MJLZxTXowecTW": [ + { + "amount": "117.248279798", + "slot": { + "period": 55257, + "thread": 13 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 245287, + "thread": 6 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 350386, + "thread": 14 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 600894, + "thread": 21 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 691465, + "thread": 8 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 823868, + "thread": 0 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1021686, + "thread": 12 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1279506, + "thread": 26 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1357636, + "thread": 18 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1632626, + "thread": 13 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1742935, + "thread": 18 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 1938391, + "thread": 6 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2095541, + "thread": 4 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2182319, + "thread": 20 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2411722, + "thread": 5 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2488911, + "thread": 13 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2675719, + "thread": 22 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 2882973, + "thread": 4 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 3096529, + "thread": 10 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 3251896, + "thread": 9 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 3429366, + "thread": 0 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 3552299, + "thread": 24 + } + }, + { + "amount": "117.248279798", + "slot": { + "period": 3722209, + "thread": 24 + } + }, + { + "amount": "117.248279793", + "slot": { + "period": 3867331, + "thread": 19 + } + } + ], + "AU1QYStSMia4VfrLW56LM8z3Bp4ppzhZESncFMrmmt4b3JC3MfWk": [ + { + "amount": "205.393790822", + "slot": { + "period": 49177, + "thread": 31 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 282770, + "thread": 21 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 383594, + "thread": 26 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 507542, + "thread": 21 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 730467, + "thread": 23 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 835711, + "thread": 31 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1002995, + "thread": 13 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1187107, + "thread": 14 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1324681, + "thread": 22 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1592775, + "thread": 7 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1767661, + "thread": 27 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 1952814, + "thread": 8 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2130612, + "thread": 24 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2275779, + "thread": 11 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2368947, + "thread": 31 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2504237, + "thread": 15 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2671711, + "thread": 4 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 2881655, + "thread": 28 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 3009350, + "thread": 5 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 3280670, + "thread": 21 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 3314282, + "thread": 23 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 3462049, + "thread": 25 + } + }, + { + "amount": "205.393790822", + "slot": { + "period": 3773365, + "thread": 8 + } + }, + { + "amount": "205.393790816", + "slot": { + "period": 3786357, + "thread": 24 + } + } + ], + "AU1QYfxgJTxKWmjMTMjbRqRZJtv21Jp14eKHRXNtgqKq3MbkKbTs": [ + { + "amount": "300.808273850", + "slot": { + "period": 92246, + "thread": 30 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 299867, + "thread": 3 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 328537, + "thread": 26 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 578542, + "thread": 1 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 726911, + "thread": 17 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 838144, + "thread": 1 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 985438, + "thread": 18 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 1279612, + "thread": 11 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 1414871, + "thread": 17 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 1611370, + "thread": 16 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 1656662, + "thread": 17 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 1889887, + "thread": 22 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2056862, + "thread": 14 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2288179, + "thread": 11 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2325199, + "thread": 8 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2465906, + "thread": 9 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2747197, + "thread": 13 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 2904161, + "thread": 2 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 3110096, + "thread": 30 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 3223599, + "thread": 30 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 3338216, + "thread": 17 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 3455696, + "thread": 1 + } + }, + { + "amount": "300.808273850", + "slot": { + "period": 3748624, + "thread": 8 + } + }, + { + "amount": "300.808273839", + "slot": { + "period": 3866860, + "thread": 9 + } + } + ], + "AU1QZ8rXKQzq6WHhNg8mh5p1yoCdux9D5pze5Ab5Aoo2kkmWrKHN": [ + { + "amount": "214.086898580", + "slot": { + "period": 48311, + "thread": 11 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 271054, + "thread": 1 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 487882, + "thread": 7 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 544979, + "thread": 18 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 804850, + "thread": 14 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 879861, + "thread": 22 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1133308, + "thread": 7 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1311486, + "thread": 22 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1412881, + "thread": 21 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1506223, + "thread": 24 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1657216, + "thread": 29 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 1902078, + "thread": 19 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2036739, + "thread": 6 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2183276, + "thread": 10 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2420904, + "thread": 10 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2623676, + "thread": 23 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2713469, + "thread": 26 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 2818140, + "thread": 20 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 3077358, + "thread": 14 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 3170085, + "thread": 2 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 3386775, + "thread": 26 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 3476286, + "thread": 17 + } + }, + { + "amount": "214.086898580", + "slot": { + "period": 3659059, + "thread": 4 + } + }, + { + "amount": "214.086898574", + "slot": { + "period": 3872876, + "thread": 26 + } + } + ], + "AU1QZRwuxcfXjaBaY2m9F2nniegXRrVQ8LxyoZT5MJMBoJuz3NUB": [ + { + "amount": "94.598052476", + "slot": { + "period": 97800, + "thread": 25 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 219317, + "thread": 17 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 384952, + "thread": 20 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 577382, + "thread": 26 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 723933, + "thread": 27 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 917765, + "thread": 7 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 986227, + "thread": 7 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 1211481, + "thread": 0 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 1386314, + "thread": 18 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 1521715, + "thread": 4 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 1710283, + "thread": 23 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 1914561, + "thread": 6 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2084267, + "thread": 30 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2196694, + "thread": 13 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2311224, + "thread": 17 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2530534, + "thread": 3 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2770439, + "thread": 5 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 2794283, + "thread": 7 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 3088789, + "thread": 18 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 3175365, + "thread": 26 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 3395031, + "thread": 12 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 3500998, + "thread": 7 + } + }, + { + "amount": "94.598052476", + "slot": { + "period": 3701309, + "thread": 6 + } + }, + { + "amount": "94.598052471", + "slot": { + "period": 3838360, + "thread": 19 + } + } + ], + "AU1QaXYDBepMEQfw3BmqMP4HczE2CXPxN77eTkTUXDsejnTgAA94": [ + { + "amount": "181.105324908", + "slot": { + "period": 37337, + "thread": 18 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 257749, + "thread": 26 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 335262, + "thread": 30 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 639390, + "thread": 9 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 679600, + "thread": 21 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 821946, + "thread": 1 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1087206, + "thread": 24 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1298738, + "thread": 3 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1369887, + "thread": 31 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1485753, + "thread": 26 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1690134, + "thread": 15 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 1950505, + "thread": 18 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2048951, + "thread": 28 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2209163, + "thread": 10 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2379915, + "thread": 7 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2501994, + "thread": 29 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2730679, + "thread": 7 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2926999, + "thread": 10 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 2955264, + "thread": 27 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 3279427, + "thread": 24 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 3382687, + "thread": 12 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 3524689, + "thread": 5 + } + }, + { + "amount": "181.105324908", + "slot": { + "period": 3706227, + "thread": 11 + } + }, + { + "amount": "181.105324904", + "slot": { + "period": 3854205, + "thread": 23 + } + } + ], + "AU1QaqRnKzrkWhrQLruZTrpF7qcAzt5XCw4ib2vpYCSiXb5NvmWx": [ + { + "amount": "299.966490103", + "slot": { + "period": 94433, + "thread": 25 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 222257, + "thread": 0 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 467747, + "thread": 13 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 607664, + "thread": 6 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 669793, + "thread": 5 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 879007, + "thread": 24 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1046598, + "thread": 28 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1215800, + "thread": 9 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1421499, + "thread": 29 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1540202, + "thread": 12 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1749694, + "thread": 22 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 1934565, + "thread": 12 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2067759, + "thread": 16 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2231777, + "thread": 3 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2460624, + "thread": 25 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2538707, + "thread": 27 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2770163, + "thread": 30 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 2844406, + "thread": 31 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 3088011, + "thread": 7 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 3276418, + "thread": 25 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 3347236, + "thread": 18 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 3551383, + "thread": 8 + } + }, + { + "amount": "299.966490103", + "slot": { + "period": 3619720, + "thread": 25 + } + }, + { + "amount": "299.966490102", + "slot": { + "period": 3844819, + "thread": 22 + } + } + ], + "AU1Qb6FN32oefJAkc8cgeptBKq21vNM1gCSyQA3PBmMpbNb5hJtF": [ + { + "amount": "316.238590570", + "slot": { + "period": 152269, + "thread": 28 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 299484, + "thread": 6 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 329854, + "thread": 24 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 548822, + "thread": 13 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 681158, + "thread": 10 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 938959, + "thread": 20 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1082008, + "thread": 6 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1151403, + "thread": 4 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1375798, + "thread": 2 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1543018, + "thread": 18 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1664184, + "thread": 9 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 1954370, + "thread": 15 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2085435, + "thread": 14 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2166506, + "thread": 15 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2396211, + "thread": 23 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2469425, + "thread": 31 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2626534, + "thread": 20 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 2820837, + "thread": 0 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 3039822, + "thread": 2 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 3226180, + "thread": 0 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 3331243, + "thread": 26 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 3519541, + "thread": 22 + } + }, + { + "amount": "316.238590570", + "slot": { + "period": 3715519, + "thread": 31 + } + }, + { + "amount": "316.238590565", + "slot": { + "period": 3803673, + "thread": 27 + } + } + ], + "AU1QbjzsKsrcDHqQi3cYobJxLR5EDQsMtPGMEd2hSJkCCQZBYwMK": [ + { + "amount": "232.726013255", + "slot": { + "period": 115397, + "thread": 20 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 278537, + "thread": 30 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 432129, + "thread": 21 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 570111, + "thread": 5 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 747568, + "thread": 16 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 893824, + "thread": 29 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1144461, + "thread": 29 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1150239, + "thread": 31 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1431207, + "thread": 6 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1483690, + "thread": 16 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1688762, + "thread": 27 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 1830429, + "thread": 1 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2101074, + "thread": 17 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2176686, + "thread": 15 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2336086, + "thread": 8 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2583401, + "thread": 16 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2659804, + "thread": 29 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 2832512, + "thread": 11 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 3095736, + "thread": 31 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 3139400, + "thread": 18 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 3380764, + "thread": 23 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 3590248, + "thread": 2 + } + }, + { + "amount": "232.726013255", + "slot": { + "period": 3762414, + "thread": 0 + } + }, + { + "amount": "232.726013265", + "slot": { + "period": 3797674, + "thread": 18 + } + } + ], + "AU1Qbvd4XanfY1d2MJENdUGvbj9hb6NgR9XjbpNuQHoF72oX9GQE": [ + { + "amount": "291.103283361", + "slot": { + "period": 29065, + "thread": 8 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 262137, + "thread": 23 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 387064, + "thread": 21 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 498906, + "thread": 6 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 662884, + "thread": 27 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 972759, + "thread": 17 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1107836, + "thread": 19 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1260118, + "thread": 29 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1365991, + "thread": 31 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1612394, + "thread": 16 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1765954, + "thread": 27 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 1868477, + "thread": 27 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2040934, + "thread": 1 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2177486, + "thread": 23 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2426340, + "thread": 5 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2568228, + "thread": 10 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2708161, + "thread": 27 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 2882810, + "thread": 4 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 3091574, + "thread": 5 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 3164144, + "thread": 31 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 3383538, + "thread": 0 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 3488862, + "thread": 28 + } + }, + { + "amount": "291.103283361", + "slot": { + "period": 3700032, + "thread": 16 + } + }, + { + "amount": "291.103283352", + "slot": { + "period": 3809249, + "thread": 0 + } + } + ], + "AU1Qf9ABgR3vmuoP2y5edAcuRjfi1YKhW9kt8t8cKpfL1x8RgAfs": [ + { + "amount": "94.260086354", + "slot": { + "period": 107966, + "thread": 6 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 265308, + "thread": 27 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 410968, + "thread": 9 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 539260, + "thread": 18 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 817875, + "thread": 3 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 837838, + "thread": 20 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1045302, + "thread": 25 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1261928, + "thread": 19 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1336984, + "thread": 26 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1508016, + "thread": 2 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1663744, + "thread": 2 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 1864158, + "thread": 23 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2120670, + "thread": 0 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2293527, + "thread": 24 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2340024, + "thread": 13 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2527195, + "thread": 19 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2633793, + "thread": 2 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 2929813, + "thread": 8 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 3108282, + "thread": 0 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 3218745, + "thread": 19 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 3354835, + "thread": 5 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 3522357, + "thread": 26 + } + }, + { + "amount": "94.260086354", + "slot": { + "period": 3674988, + "thread": 24 + } + }, + { + "amount": "94.260086345", + "slot": { + "period": 3889265, + "thread": 0 + } + } + ], + "AU1QfNRn18xsyXa3EYw772654TM9Fcw4tq8CcYheQWkVoaV7U5R7": [ + { + "amount": "176.224269868", + "slot": { + "period": 39933, + "thread": 4 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 235857, + "thread": 29 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 379174, + "thread": 17 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 523287, + "thread": 15 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 703141, + "thread": 25 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 897357, + "thread": 13 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1017660, + "thread": 6 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1163532, + "thread": 27 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1346277, + "thread": 14 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1549485, + "thread": 9 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1654951, + "thread": 22 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 1832887, + "thread": 28 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2009999, + "thread": 31 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2169952, + "thread": 13 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2373229, + "thread": 28 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2564811, + "thread": 31 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2688225, + "thread": 10 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 2844316, + "thread": 31 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 3048912, + "thread": 14 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 3286044, + "thread": 29 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 3405013, + "thread": 20 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 3570385, + "thread": 23 + } + }, + { + "amount": "176.224269868", + "slot": { + "period": 3651968, + "thread": 10 + } + }, + { + "amount": "176.224269865", + "slot": { + "period": 3897768, + "thread": 25 + } + } + ], + "AU1QgKi7Ct5C5YTu38PETnGbChtrT6Qy9UQLSwd6xLpSv2v4525Z": [ + { + "amount": "311.222304442", + "slot": { + "period": 159811, + "thread": 20 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 317711, + "thread": 17 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 341135, + "thread": 29 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 548579, + "thread": 0 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 775025, + "thread": 31 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 848899, + "thread": 24 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1051886, + "thread": 10 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1207002, + "thread": 19 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1455859, + "thread": 18 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1615766, + "thread": 27 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1695468, + "thread": 14 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 1872632, + "thread": 15 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2013741, + "thread": 8 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2246383, + "thread": 7 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2348060, + "thread": 22 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2516388, + "thread": 15 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2725414, + "thread": 4 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2930499, + "thread": 19 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 2983821, + "thread": 17 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 3254992, + "thread": 22 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 3339112, + "thread": 2 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 3498824, + "thread": 6 + } + }, + { + "amount": "311.222304442", + "slot": { + "period": 3640292, + "thread": 0 + } + }, + { + "amount": "311.222304450", + "slot": { + "period": 3888348, + "thread": 21 + } + } + ], + "AU1Qh5EnEKR7inR4jDuv8pd9xGf8e815bTEfkuS3HxVVPNzHJtAb": [ + { + "amount": "536.269071034", + "slot": { + "period": 29490, + "thread": 10 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 254164, + "thread": 27 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 483444, + "thread": 31 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 571302, + "thread": 12 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 780513, + "thread": 28 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 876653, + "thread": 25 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 997483, + "thread": 12 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 1223244, + "thread": 8 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 1356033, + "thread": 27 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 1484046, + "thread": 7 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 1756293, + "thread": 12 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 1973913, + "thread": 14 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2039439, + "thread": 3 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2155477, + "thread": 25 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2326509, + "thread": 5 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2521977, + "thread": 8 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2700455, + "thread": 21 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 2897353, + "thread": 29 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 3023526, + "thread": 4 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 3246473, + "thread": 10 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 3367550, + "thread": 0 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 3505503, + "thread": 21 + } + }, + { + "amount": "536.269071034", + "slot": { + "period": 3636016, + "thread": 12 + } + }, + { + "amount": "536.269071025", + "slot": { + "period": 3902064, + "thread": 2 + } + } + ], + "AU1QhRw4xpdMZa7sBNVwxvHkNbveQcGEfToGBs1pwpVd2vLCvj3B": [ + { + "amount": "640.550071266", + "slot": { + "period": 136702, + "thread": 14 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 321791, + "thread": 15 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 380954, + "thread": 26 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 556900, + "thread": 15 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 683183, + "thread": 17 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 882606, + "thread": 16 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1149352, + "thread": 15 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1264964, + "thread": 29 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1457169, + "thread": 16 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1522057, + "thread": 9 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1653500, + "thread": 16 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 1834818, + "thread": 22 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2133294, + "thread": 29 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2187498, + "thread": 26 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2322235, + "thread": 9 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2617068, + "thread": 3 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2732783, + "thread": 27 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2832097, + "thread": 10 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 2984971, + "thread": 0 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 3124888, + "thread": 4 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 3377040, + "thread": 10 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 3491496, + "thread": 22 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 3684750, + "thread": 5 + } + }, + { + "amount": "640.550071266", + "slot": { + "period": 3850943, + "thread": 3 + } + } + ], + "AU1QiAc6tWsBqRMDkcmVdboLZzfwy8i29x8KGwu9UBvQmvmoy4Pr": [ + { + "amount": "144.718818915", + "slot": { + "period": 156378, + "thread": 31 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 305986, + "thread": 1 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 452423, + "thread": 19 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 496382, + "thread": 24 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 806621, + "thread": 6 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 902691, + "thread": 26 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1103843, + "thread": 18 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1224521, + "thread": 26 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1411824, + "thread": 0 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1577259, + "thread": 2 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1723873, + "thread": 27 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 1846710, + "thread": 28 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2011389, + "thread": 31 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2231760, + "thread": 12 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2450640, + "thread": 18 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2622723, + "thread": 6 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2647729, + "thread": 28 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 2935071, + "thread": 18 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 3085894, + "thread": 14 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 3239232, + "thread": 29 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 3396316, + "thread": 14 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 3498637, + "thread": 25 + } + }, + { + "amount": "144.718818915", + "slot": { + "period": 3641827, + "thread": 31 + } + }, + { + "amount": "144.718818908", + "slot": { + "period": 3891765, + "thread": 7 + } + } + ], + "AU1QiC4NpD2YssuGfZ2LXtAK1fQeBDfeP4AuUfmy8bkwBMMzFDAt": [ + { + "amount": "105.606307651", + "slot": { + "period": 58192, + "thread": 0 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 303521, + "thread": 12 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 355116, + "thread": 7 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 522287, + "thread": 6 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 820225, + "thread": 21 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 886879, + "thread": 10 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1089230, + "thread": 16 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1231291, + "thread": 10 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1436270, + "thread": 31 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1574547, + "thread": 16 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1781656, + "thread": 16 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 1842484, + "thread": 19 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2041015, + "thread": 21 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2168118, + "thread": 23 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2434809, + "thread": 29 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2478966, + "thread": 20 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2664925, + "thread": 4 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 2886977, + "thread": 0 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 3086307, + "thread": 24 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 3287190, + "thread": 24 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 3408550, + "thread": 20 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 3485439, + "thread": 5 + } + }, + { + "amount": "105.606307651", + "slot": { + "period": 3643528, + "thread": 13 + } + }, + { + "amount": "105.606307658", + "slot": { + "period": 3925584, + "thread": 19 + } + } + ], + "AU1QjTm47pUHcSugKriReyb7cMNqM72fH1qaHY5yKg4vqAP1KcdK": [ + { + "amount": "217.308974608", + "slot": { + "period": 126835, + "thread": 1 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 210979, + "thread": 9 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 385012, + "thread": 4 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 540880, + "thread": 25 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 708586, + "thread": 31 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 977647, + "thread": 17 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1143099, + "thread": 18 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1273488, + "thread": 26 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1393023, + "thread": 20 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1500549, + "thread": 12 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1719427, + "thread": 10 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 1821548, + "thread": 0 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2032110, + "thread": 24 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2199808, + "thread": 0 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2427782, + "thread": 8 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2537755, + "thread": 25 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2632913, + "thread": 9 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 2887421, + "thread": 25 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 3108019, + "thread": 25 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 3278607, + "thread": 7 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 3387196, + "thread": 31 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 3510320, + "thread": 30 + } + }, + { + "amount": "217.308974608", + "slot": { + "period": 3634862, + "thread": 16 + } + }, + { + "amount": "217.308974612", + "slot": { + "period": 3794167, + "thread": 31 + } + } + ], + "AU1QkWkgJAq6WExQF6BZKAxnBJgjkyLY4CmB6Ro7eYyVKpxHMQWg": [ + { + "amount": "152.211262842", + "slot": { + "period": 146463, + "thread": 17 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 181224, + "thread": 16 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 341083, + "thread": 8 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 500963, + "thread": 3 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 789623, + "thread": 21 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 876056, + "thread": 11 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1083974, + "thread": 12 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1276562, + "thread": 11 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1397762, + "thread": 4 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1634231, + "thread": 22 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1672737, + "thread": 11 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 1883738, + "thread": 3 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2045052, + "thread": 7 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2239679, + "thread": 23 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2312146, + "thread": 31 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2503008, + "thread": 13 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2766555, + "thread": 6 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 2812113, + "thread": 21 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 3097923, + "thread": 16 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 3151483, + "thread": 9 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 3293761, + "thread": 28 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 3458907, + "thread": 2 + } + }, + { + "amount": "152.211262842", + "slot": { + "period": 3735784, + "thread": 16 + } + }, + { + "amount": "152.211262832", + "slot": { + "period": 3851181, + "thread": 7 + } + } + ], + "AU1QkZwUjkSdcmwn9zCp7DPx2qAoDrVks3jcgg81jRcHyQ8j262b": [ + { + "amount": "116.111988976", + "slot": { + "period": 28990, + "thread": 0 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 214693, + "thread": 14 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 452667, + "thread": 5 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 625188, + "thread": 10 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 739477, + "thread": 1 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 832108, + "thread": 8 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1061940, + "thread": 1 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1279872, + "thread": 7 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1410763, + "thread": 11 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1545575, + "thread": 11 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1680567, + "thread": 11 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 1901274, + "thread": 4 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2063867, + "thread": 6 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2158758, + "thread": 10 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2436767, + "thread": 9 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2540134, + "thread": 27 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2701556, + "thread": 25 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 2802400, + "thread": 0 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3007355, + "thread": 24 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3148468, + "thread": 20 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3375684, + "thread": 13 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3459278, + "thread": 17 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3730651, + "thread": 11 + } + }, + { + "amount": "116.111988976", + "slot": { + "period": 3925243, + "thread": 6 + } + } + ], + "AU1Qkzzn6yUasnZUC4mT5S8iCrq5Y5SxWqpdajsTENwSDJVuCdtV": [ + { + "amount": "420.497880323", + "slot": { + "period": 59827, + "thread": 14 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 293529, + "thread": 15 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 324798, + "thread": 23 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 609480, + "thread": 9 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 664811, + "thread": 7 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 886989, + "thread": 11 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1076585, + "thread": 18 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1299248, + "thread": 24 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1420021, + "thread": 14 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1620724, + "thread": 28 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1782022, + "thread": 10 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 1911330, + "thread": 9 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2097929, + "thread": 14 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2185193, + "thread": 19 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2300871, + "thread": 21 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2515726, + "thread": 24 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2643409, + "thread": 2 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2885232, + "thread": 13 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 2968729, + "thread": 24 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 3244937, + "thread": 17 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 3304857, + "thread": 26 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 3557723, + "thread": 0 + } + }, + { + "amount": "420.497880323", + "slot": { + "period": 3752150, + "thread": 23 + } + }, + { + "amount": "420.497880314", + "slot": { + "period": 3863139, + "thread": 17 + } + } + ], + "AU1Qn1MDh3xMjp3YC1P94GcxYU5is8vHoCAp1ZcJ3iJuaN8eLa9J": [ + { + "amount": "420.791609861", + "slot": { + "period": 87760, + "thread": 28 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 269059, + "thread": 0 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 478157, + "thread": 19 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 559246, + "thread": 9 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 752040, + "thread": 30 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 922359, + "thread": 13 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1037130, + "thread": 20 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1294593, + "thread": 5 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1478833, + "thread": 16 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1520915, + "thread": 1 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1730769, + "thread": 0 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1813941, + "thread": 26 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 1990591, + "thread": 30 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 2166468, + "thread": 14 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 2399978, + "thread": 4 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 2599864, + "thread": 8 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 2728742, + "thread": 13 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 2827095, + "thread": 19 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 3069234, + "thread": 30 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 3257750, + "thread": 24 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 3403357, + "thread": 0 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 3574756, + "thread": 29 + } + }, + { + "amount": "420.791609861", + "slot": { + "period": 3732746, + "thread": 26 + } + }, + { + "amount": "420.791609869", + "slot": { + "period": 3867526, + "thread": 3 + } + } + ], + "AU1QnyiEnKVq4n3Md4zncaaHCppKgVP6SiLYy7wUqdD8YmU12RVf": [ + { + "amount": "509.611918891", + "slot": { + "period": 74925, + "thread": 1 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 270419, + "thread": 21 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 397167, + "thread": 6 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 639002, + "thread": 0 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 713243, + "thread": 25 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 962449, + "thread": 4 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1045614, + "thread": 16 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1311545, + "thread": 1 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1462679, + "thread": 26 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1603362, + "thread": 7 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1792274, + "thread": 29 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 1833796, + "thread": 18 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2047592, + "thread": 0 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2191009, + "thread": 2 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2429124, + "thread": 22 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2534973, + "thread": 26 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2741988, + "thread": 31 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 2851387, + "thread": 20 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 3024202, + "thread": 17 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 3182582, + "thread": 28 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 3331154, + "thread": 7 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 3612007, + "thread": 31 + } + }, + { + "amount": "509.611918891", + "slot": { + "period": 3654254, + "thread": 27 + } + }, + { + "amount": "509.611918889", + "slot": { + "period": 3904020, + "thread": 21 + } + } + ], + "AU1QqJ89XYcjQ5ujNU6pdtudnauoojt5xXxgjrHtLVDZ4LFX5kNm": [ + { + "amount": "241.425177090", + "slot": { + "period": 133032, + "thread": 21 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 278110, + "thread": 24 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 476898, + "thread": 10 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 602050, + "thread": 22 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 780441, + "thread": 16 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 911585, + "thread": 18 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1069922, + "thread": 26 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1271353, + "thread": 31 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1432622, + "thread": 22 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1591113, + "thread": 4 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1689952, + "thread": 20 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 1904674, + "thread": 15 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2101736, + "thread": 27 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2247842, + "thread": 4 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2438047, + "thread": 14 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2590621, + "thread": 13 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2716269, + "thread": 21 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 2836066, + "thread": 25 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 3094481, + "thread": 26 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 3154136, + "thread": 9 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 3434817, + "thread": 4 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 3559938, + "thread": 10 + } + }, + { + "amount": "241.425177090", + "slot": { + "period": 3631113, + "thread": 9 + } + }, + { + "amount": "241.425177089", + "slot": { + "period": 3780947, + "thread": 17 + } + } + ], + "AU1QqSN47SmCfSEFhE9RhVon73jTorLwMRR9i1UfGmFry4qFhZQv": [ + { + "amount": "469.220533146", + "slot": { + "period": 42771, + "thread": 1 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 271274, + "thread": 16 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 381212, + "thread": 15 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 550575, + "thread": 7 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 780513, + "thread": 27 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 906710, + "thread": 16 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1099477, + "thread": 5 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1187435, + "thread": 24 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1320917, + "thread": 14 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1642800, + "thread": 6 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1731049, + "thread": 20 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 1957278, + "thread": 14 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2093163, + "thread": 11 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2234550, + "thread": 0 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2346702, + "thread": 17 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2544342, + "thread": 3 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2748119, + "thread": 16 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 2822114, + "thread": 2 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 3075172, + "thread": 7 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 3212520, + "thread": 16 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 3351669, + "thread": 28 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 3511444, + "thread": 24 + } + }, + { + "amount": "469.220533146", + "slot": { + "period": 3732237, + "thread": 14 + } + }, + { + "amount": "469.220533157", + "slot": { + "period": 3805070, + "thread": 4 + } + } + ], + "AU1QrS8G28Yq1kzTPxx3VenoyeH5vNGwLwJ4DzpnxjLX1VzT2sNU": [ + { + "amount": "227.797488288", + "slot": { + "period": 116877, + "thread": 24 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 192155, + "thread": 19 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 325333, + "thread": 13 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 506859, + "thread": 13 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 810160, + "thread": 28 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 869731, + "thread": 24 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 998467, + "thread": 2 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 1255767, + "thread": 22 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 1349791, + "thread": 20 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 1544681, + "thread": 17 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 1730820, + "thread": 21 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 1943391, + "thread": 29 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2085674, + "thread": 15 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2277116, + "thread": 26 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2385189, + "thread": 30 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2478529, + "thread": 23 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2759576, + "thread": 7 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 2814827, + "thread": 24 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 3078769, + "thread": 20 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 3216831, + "thread": 14 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 3304817, + "thread": 31 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 3474844, + "thread": 16 + } + }, + { + "amount": "227.797488288", + "slot": { + "period": 3705444, + "thread": 4 + } + }, + { + "amount": "227.797488283", + "slot": { + "period": 3821194, + "thread": 23 + } + } + ], + "AU1Qtae2xstRLEYXMnMx4tBrwo9qz46vSEjMDoBojZZFk7sVXbLk": [ + { + "amount": "84.291367554", + "slot": { + "period": 39417, + "thread": 18 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 203474, + "thread": 22 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 327886, + "thread": 2 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 595005, + "thread": 12 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 787838, + "thread": 31 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 930799, + "thread": 3 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1006204, + "thread": 19 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1186947, + "thread": 19 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1476363, + "thread": 17 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1594487, + "thread": 26 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1780862, + "thread": 4 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1829945, + "thread": 22 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 1990578, + "thread": 20 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2276984, + "thread": 29 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2367828, + "thread": 19 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2515490, + "thread": 5 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2671802, + "thread": 22 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2938412, + "thread": 26 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 2965293, + "thread": 10 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 3204778, + "thread": 0 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 3385474, + "thread": 21 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 3465260, + "thread": 3 + } + }, + { + "amount": "84.291367554", + "slot": { + "period": 3630490, + "thread": 6 + } + }, + { + "amount": "84.291367552", + "slot": { + "period": 3891112, + "thread": 20 + } + } + ], + "AU1Qtzs3thZWbPoeuYB7r4ZFZG1seA7aogEqXEbWnK6MYHyC5XiJ": [ + { + "amount": "132.124537497", + "slot": { + "period": 53281, + "thread": 7 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 282012, + "thread": 12 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 381714, + "thread": 30 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 499066, + "thread": 12 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 660071, + "thread": 6 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 893476, + "thread": 16 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1108764, + "thread": 1 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1234292, + "thread": 9 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1458743, + "thread": 10 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1516528, + "thread": 15 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1769179, + "thread": 8 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 1869616, + "thread": 31 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2064271, + "thread": 0 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2243641, + "thread": 19 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2340341, + "thread": 27 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2549978, + "thread": 1 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2674407, + "thread": 11 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 2881624, + "thread": 10 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 3117547, + "thread": 2 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 3219768, + "thread": 25 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 3408219, + "thread": 17 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 3612088, + "thread": 29 + } + }, + { + "amount": "132.124537497", + "slot": { + "period": 3776136, + "thread": 17 + } + }, + { + "amount": "132.124537490", + "slot": { + "period": 3905632, + "thread": 19 + } + } + ], + "AU1QunBYzVShUd9c5xGziqtQmpjagNV897jdXYuzqnoNxtU6Txqp": [ + { + "amount": "246.071759711", + "slot": { + "period": 50500, + "thread": 19 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 221190, + "thread": 0 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 446205, + "thread": 27 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 504076, + "thread": 31 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 734135, + "thread": 30 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 923924, + "thread": 23 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1102486, + "thread": 16 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1219787, + "thread": 19 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1346013, + "thread": 23 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1626633, + "thread": 11 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1745050, + "thread": 3 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 1820286, + "thread": 18 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2063356, + "thread": 26 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2200763, + "thread": 9 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2456832, + "thread": 12 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2534308, + "thread": 16 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2701462, + "thread": 24 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 2840374, + "thread": 6 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 3088062, + "thread": 27 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 3229815, + "thread": 14 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 3386052, + "thread": 6 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 3597591, + "thread": 11 + } + }, + { + "amount": "246.071759711", + "slot": { + "period": 3632543, + "thread": 16 + } + }, + { + "amount": "246.071759720", + "slot": { + "period": 3883611, + "thread": 30 + } + } + ], + "AU1QvjzTKJB5CuU3VJogEzoSraA9rjJirThK4b4AM2Ef4UeRV5Vc": [ + { + "amount": "146.455439534", + "slot": { + "period": 83462, + "thread": 5 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 282092, + "thread": 21 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 336614, + "thread": 16 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 620564, + "thread": 16 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 717556, + "thread": 3 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 941396, + "thread": 17 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1094674, + "thread": 21 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1189427, + "thread": 9 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1385698, + "thread": 27 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1542641, + "thread": 24 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1694269, + "thread": 24 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1871987, + "thread": 4 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 1983435, + "thread": 19 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 2243304, + "thread": 13 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 2426115, + "thread": 12 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 2575622, + "thread": 9 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 2726870, + "thread": 26 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 2898254, + "thread": 30 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 3076350, + "thread": 3 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 3122043, + "thread": 0 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 3326975, + "thread": 26 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 3540875, + "thread": 22 + } + }, + { + "amount": "146.455439534", + "slot": { + "period": 3654111, + "thread": 30 + } + }, + { + "amount": "146.455439523", + "slot": { + "period": 3943193, + "thread": 6 + } + } + ], + "AU1QwDfjUGgzQzw6kf76QqRwafWSVGHE31WxfacYcAQxCUzPoQqS": [ + { + "amount": "350.852027301", + "slot": { + "period": 55736, + "thread": 22 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 256850, + "thread": 21 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 352849, + "thread": 2 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 565048, + "thread": 6 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 666555, + "thread": 5 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 979428, + "thread": 5 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1014430, + "thread": 26 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1174824, + "thread": 25 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1436590, + "thread": 24 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1563404, + "thread": 23 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1805624, + "thread": 23 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 1840281, + "thread": 5 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2071397, + "thread": 22 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2274474, + "thread": 31 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2442895, + "thread": 22 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2505247, + "thread": 14 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2640437, + "thread": 28 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 2948103, + "thread": 1 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 3030286, + "thread": 13 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 3149666, + "thread": 28 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 3402592, + "thread": 28 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 3536757, + "thread": 19 + } + }, + { + "amount": "350.852027301", + "slot": { + "period": 3759318, + "thread": 28 + } + }, + { + "amount": "350.852027303", + "slot": { + "period": 3894377, + "thread": 3 + } + } + ], + "AU1QweYhb8gYrV53CtSAfhwBjJ8kcWQ8XqMPcXUEBJ5CHYaaM9mN": [ + { + "amount": "84.758434265", + "slot": { + "period": 124164, + "thread": 24 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 203108, + "thread": 17 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 340836, + "thread": 16 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 595096, + "thread": 14 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 666671, + "thread": 26 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 904670, + "thread": 7 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1150128, + "thread": 8 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1153667, + "thread": 18 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1440646, + "thread": 9 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1538597, + "thread": 28 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1794358, + "thread": 31 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 1910107, + "thread": 3 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2056371, + "thread": 29 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2172595, + "thread": 11 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2459461, + "thread": 4 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2476420, + "thread": 22 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2786715, + "thread": 25 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 2937391, + "thread": 22 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3117430, + "thread": 2 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3154612, + "thread": 26 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3384057, + "thread": 16 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3609667, + "thread": 22 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3732079, + "thread": 28 + } + }, + { + "amount": "84.758434265", + "slot": { + "period": 3899522, + "thread": 12 + } + } + ], + "AU1QyrdL1EpEFzKbqnhQT57FhbY3nBNodK9E437xRsuouuFD2qKp": [ + { + "amount": "447.399721454", + "slot": { + "period": 122234, + "thread": 25 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 299189, + "thread": 10 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 446190, + "thread": 5 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 538977, + "thread": 15 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 692014, + "thread": 4 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 949890, + "thread": 0 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1074920, + "thread": 3 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1247346, + "thread": 30 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1424012, + "thread": 21 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1628791, + "thread": 24 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1756166, + "thread": 1 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 1975448, + "thread": 21 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2107001, + "thread": 21 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2213925, + "thread": 9 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2418358, + "thread": 5 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2545159, + "thread": 6 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2706199, + "thread": 8 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 2853745, + "thread": 13 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 3104379, + "thread": 28 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 3240279, + "thread": 27 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 3412892, + "thread": 19 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 3451059, + "thread": 17 + } + }, + { + "amount": "447.399721454", + "slot": { + "period": 3620056, + "thread": 0 + } + }, + { + "amount": "447.399721458", + "slot": { + "period": 3833473, + "thread": 2 + } + } + ], + "AU1QzGFxEkJAih6U4vHzxpGJReVNNd1yHU1WC2WVr8Zc7cbpWEFk": [ + { + "amount": "128.900536358", + "slot": { + "period": 143431, + "thread": 17 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 186671, + "thread": 28 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 367502, + "thread": 26 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 529097, + "thread": 13 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 716953, + "thread": 21 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 939844, + "thread": 15 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1065604, + "thread": 4 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1197068, + "thread": 17 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1321340, + "thread": 30 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1554684, + "thread": 27 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1765253, + "thread": 26 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1832657, + "thread": 16 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 1983254, + "thread": 0 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 2227054, + "thread": 29 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 2323201, + "thread": 16 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 2603536, + "thread": 22 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 2766127, + "thread": 2 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 2831859, + "thread": 27 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 3014893, + "thread": 18 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 3246475, + "thread": 18 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 3368696, + "thread": 23 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 3473095, + "thread": 26 + } + }, + { + "amount": "128.900536358", + "slot": { + "period": 3621942, + "thread": 14 + } + }, + { + "amount": "128.900536347", + "slot": { + "period": 3781719, + "thread": 28 + } + } + ], + "AU1QzKs2kXfq8vz4T6fkipynwrQCjg9xUFqGTF9SHowyvcYb1sJQ": [ + { + "amount": "304.849107207", + "slot": { + "period": 96554, + "thread": 8 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 248609, + "thread": 7 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 376582, + "thread": 22 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 577273, + "thread": 26 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 761559, + "thread": 24 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 926079, + "thread": 26 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1115757, + "thread": 30 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1315837, + "thread": 27 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1369819, + "thread": 16 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1584743, + "thread": 14 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1658182, + "thread": 10 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1910250, + "thread": 24 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 1984367, + "thread": 6 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2215938, + "thread": 15 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2433607, + "thread": 15 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2529468, + "thread": 8 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2707420, + "thread": 11 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2860030, + "thread": 29 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 2995102, + "thread": 7 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 3227721, + "thread": 30 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 3410832, + "thread": 10 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 3481776, + "thread": 3 + } + }, + { + "amount": "304.849107207", + "slot": { + "period": 3737595, + "thread": 4 + } + }, + { + "amount": "304.849107214", + "slot": { + "period": 3872822, + "thread": 5 + } + } + ], + "AU1R1g7jKjWS54uUjdcLtZmcJbntkYo3CVuAQNuao3mHgP1Z2ifo": [ + { + "amount": "354.330231451", + "slot": { + "period": 130092, + "thread": 15 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 233046, + "thread": 21 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 438625, + "thread": 30 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 626587, + "thread": 21 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 786235, + "thread": 0 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 973980, + "thread": 24 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1049367, + "thread": 27 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1206459, + "thread": 25 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1331089, + "thread": 8 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1509766, + "thread": 2 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1751495, + "thread": 4 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 1814648, + "thread": 2 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2031801, + "thread": 10 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2277105, + "thread": 2 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2440833, + "thread": 5 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2537569, + "thread": 18 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2690543, + "thread": 9 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 2860849, + "thread": 11 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 3078511, + "thread": 0 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 3164974, + "thread": 11 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 3419626, + "thread": 26 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 3498870, + "thread": 0 + } + }, + { + "amount": "354.330231451", + "slot": { + "period": 3732535, + "thread": 7 + } + }, + { + "amount": "354.330231456", + "slot": { + "period": 3781075, + "thread": 5 + } + } + ], + "AU1R1o2ZLWVDNihvBY87pBMesNk91WFB8DvcoPviNTiMcYivWnEb": [ + { + "amount": "189.152101570", + "slot": { + "period": 140066, + "thread": 9 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 281246, + "thread": 5 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 465144, + "thread": 15 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 577206, + "thread": 18 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 730040, + "thread": 2 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 870762, + "thread": 26 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1035928, + "thread": 22 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1216890, + "thread": 22 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1458721, + "thread": 25 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1588869, + "thread": 21 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1733141, + "thread": 13 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 1816490, + "thread": 1 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2023949, + "thread": 0 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2236090, + "thread": 12 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2377778, + "thread": 15 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2534021, + "thread": 27 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2756360, + "thread": 19 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 2821085, + "thread": 22 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 3006747, + "thread": 25 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 3225341, + "thread": 2 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 3310761, + "thread": 7 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 3534168, + "thread": 31 + } + }, + { + "amount": "189.152101570", + "slot": { + "period": 3710384, + "thread": 0 + } + }, + { + "amount": "189.152101579", + "slot": { + "period": 3780856, + "thread": 17 + } + } + ], + "AU1R21CCkXsbFYB7sjPdrDVWP6uRUqK4zFQSSAMAYA9hJ387VhkT": [ + { + "amount": "147.779412544", + "slot": { + "period": 111012, + "thread": 6 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 315981, + "thread": 19 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 371688, + "thread": 19 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 641464, + "thread": 4 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 697873, + "thread": 12 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 870591, + "thread": 26 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1101349, + "thread": 13 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1154156, + "thread": 28 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1338791, + "thread": 3 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1533681, + "thread": 23 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1741956, + "thread": 25 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 1851027, + "thread": 17 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2099611, + "thread": 13 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2160203, + "thread": 19 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2330504, + "thread": 11 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2473566, + "thread": 23 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2753964, + "thread": 16 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 2870602, + "thread": 5 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 3097109, + "thread": 24 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 3243044, + "thread": 13 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 3290249, + "thread": 28 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 3612126, + "thread": 22 + } + }, + { + "amount": "147.779412544", + "slot": { + "period": 3660381, + "thread": 1 + } + }, + { + "amount": "147.779412532", + "slot": { + "period": 3819536, + "thread": 22 + } + } + ], + "AU1R28d5CPMpY3epwmgpX9WkvRDd3Dy1NvimriaKfUdPyuQf2P9q": [ + { + "amount": "233.815182956", + "slot": { + "period": 45939, + "thread": 13 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 289545, + "thread": 3 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 447444, + "thread": 9 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 562000, + "thread": 4 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 790147, + "thread": 26 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 934225, + "thread": 20 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1121154, + "thread": 10 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1307447, + "thread": 11 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1390504, + "thread": 7 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1517534, + "thread": 27 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1663693, + "thread": 31 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 1970608, + "thread": 11 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2111499, + "thread": 14 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2164892, + "thread": 16 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2376808, + "thread": 0 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2603135, + "thread": 25 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2709146, + "thread": 17 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 2895709, + "thread": 13 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 3020820, + "thread": 22 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 3166535, + "thread": 13 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 3373706, + "thread": 27 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 3455299, + "thread": 3 + } + }, + { + "amount": "233.815182956", + "slot": { + "period": 3632881, + "thread": 3 + } + }, + { + "amount": "233.815182964", + "slot": { + "period": 3845538, + "thread": 8 + } + } + ], + "AU1R2PX57Pys7m8yveqsdmQcqfB5hapGuDr68UiLF32gyCayhB9V": [ + { + "amount": "444.668737895", + "slot": { + "period": 48313, + "thread": 18 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 319765, + "thread": 15 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 335695, + "thread": 17 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 572231, + "thread": 5 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 728680, + "thread": 6 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 923113, + "thread": 24 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1124012, + "thread": 19 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1280556, + "thread": 8 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1463059, + "thread": 6 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1643911, + "thread": 15 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1674499, + "thread": 25 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 1852019, + "thread": 28 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2032773, + "thread": 0 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2270958, + "thread": 13 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2345808, + "thread": 10 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2542610, + "thread": 16 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2624659, + "thread": 3 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 2883832, + "thread": 0 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 3061537, + "thread": 28 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 3149840, + "thread": 14 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 3336694, + "thread": 20 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 3484090, + "thread": 23 + } + }, + { + "amount": "444.668737895", + "slot": { + "period": 3686812, + "thread": 29 + } + }, + { + "amount": "444.668737904", + "slot": { + "period": 3854535, + "thread": 27 + } + } + ], + "AU1R2PxCXGAERt68dm3oj3U1rFE3dc5zumwLKgeNxSYt9D5zoF7T": [ + { + "amount": "222.745746406", + "slot": { + "period": 114049, + "thread": 8 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 246074, + "thread": 28 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 447745, + "thread": 28 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 580262, + "thread": 10 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 749419, + "thread": 20 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 884921, + "thread": 1 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 986977, + "thread": 0 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 1316736, + "thread": 7 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 1320746, + "thread": 23 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 1640883, + "thread": 18 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 1713785, + "thread": 31 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 1846579, + "thread": 5 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2125535, + "thread": 5 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2153033, + "thread": 9 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2398064, + "thread": 21 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2609917, + "thread": 1 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2629327, + "thread": 18 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2953652, + "thread": 9 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 2971106, + "thread": 31 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 3242532, + "thread": 4 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 3304288, + "thread": 12 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 3498750, + "thread": 17 + } + }, + { + "amount": "222.745746406", + "slot": { + "period": 3661426, + "thread": 0 + } + }, + { + "amount": "222.745746399", + "slot": { + "period": 3874738, + "thread": 2 + } + } + ], + "AU1R2bw2UKktbqj63fH8BuYZZZGAyR43yUeiWi4eVMjJzd6YrMKN": [ + { + "amount": "146.712634159", + "slot": { + "period": 158272, + "thread": 10 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 202184, + "thread": 22 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 347329, + "thread": 26 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 496017, + "thread": 31 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 805560, + "thread": 4 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 938201, + "thread": 5 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1022601, + "thread": 20 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1224431, + "thread": 20 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1328511, + "thread": 30 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1507602, + "thread": 29 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1721527, + "thread": 8 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 1940133, + "thread": 16 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2040262, + "thread": 17 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2229277, + "thread": 4 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2362011, + "thread": 1 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2565036, + "thread": 25 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2696341, + "thread": 24 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2894254, + "thread": 22 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 2973589, + "thread": 16 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 3284076, + "thread": 4 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 3396213, + "thread": 18 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 3611609, + "thread": 2 + } + }, + { + "amount": "146.712634159", + "slot": { + "period": 3662080, + "thread": 20 + } + }, + { + "amount": "146.712634170", + "slot": { + "period": 3893967, + "thread": 23 + } + } + ], + "AU1R3kgEivr6tGPAzDZ6rUNxx4tFwzn1zSpvakU2VYYaroZCNJfQ": [ + { + "amount": "70.846559387", + "slot": { + "period": 89849, + "thread": 1 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 200713, + "thread": 8 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 329744, + "thread": 31 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 598308, + "thread": 31 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 728040, + "thread": 17 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 851455, + "thread": 13 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 988242, + "thread": 30 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 1280284, + "thread": 13 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 1391639, + "thread": 20 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 1498923, + "thread": 13 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 1666050, + "thread": 19 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 1852513, + "thread": 27 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2068734, + "thread": 18 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2214814, + "thread": 25 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2411873, + "thread": 20 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2562938, + "thread": 8 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2758178, + "thread": 15 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 2820465, + "thread": 11 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 3026202, + "thread": 6 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 3181657, + "thread": 6 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 3392507, + "thread": 1 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 3572825, + "thread": 21 + } + }, + { + "amount": "70.846559387", + "slot": { + "period": 3643427, + "thread": 31 + } + }, + { + "amount": "70.846559392", + "slot": { + "period": 3942956, + "thread": 18 + } + } + ], + "AU1R52TRcQJRsD7WNyTa2dMWMKiLAjLrJFpcLgbh65ZaLVj6mmAR": [ + { + "amount": "323.186479118", + "slot": { + "period": 116901, + "thread": 20 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 180798, + "thread": 31 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 475888, + "thread": 24 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 609383, + "thread": 5 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 693590, + "thread": 16 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 931293, + "thread": 18 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1060918, + "thread": 5 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1245345, + "thread": 23 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1410580, + "thread": 23 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1508286, + "thread": 17 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1789980, + "thread": 8 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1885170, + "thread": 19 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 1980056, + "thread": 16 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 2275007, + "thread": 9 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 2358334, + "thread": 11 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 2552039, + "thread": 17 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 2696790, + "thread": 13 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 2885532, + "thread": 11 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3098777, + "thread": 12 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3280247, + "thread": 7 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3390113, + "thread": 22 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3569737, + "thread": 28 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3758985, + "thread": 31 + } + }, + { + "amount": "323.186479118", + "slot": { + "period": 3886336, + "thread": 5 + } + } + ], + "AU1R5WCCCzfVnNJYpii8FrDuhWvoQ4Z2sSr39dgHGhRbEtFzoRKt": [ + { + "amount": "52.004998290", + "slot": { + "period": 117256, + "thread": 13 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 242676, + "thread": 17 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 403371, + "thread": 30 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 534289, + "thread": 19 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 669321, + "thread": 2 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 859888, + "thread": 0 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1103948, + "thread": 6 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1211347, + "thread": 12 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1451756, + "thread": 21 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1595279, + "thread": 31 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1694172, + "thread": 14 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 1920704, + "thread": 19 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2093671, + "thread": 11 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2147871, + "thread": 3 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2341718, + "thread": 1 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2584855, + "thread": 24 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2763541, + "thread": 4 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 2803050, + "thread": 10 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 3031254, + "thread": 5 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 3281941, + "thread": 9 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 3394714, + "thread": 3 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 3540743, + "thread": 2 + } + }, + { + "amount": "52.004998290", + "slot": { + "period": 3672026, + "thread": 21 + } + }, + { + "amount": "52.004998288", + "slot": { + "period": 3889744, + "thread": 10 + } + } + ], + "AU1R6eKaxEaKjKAoeEd1aSeegMtt6xcq6MoP6WWVJDH7gwsyjAFU": [ + { + "amount": "136.751660266", + "slot": { + "period": 100735, + "thread": 4 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 202556, + "thread": 6 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 350940, + "thread": 15 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 539136, + "thread": 4 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 655787, + "thread": 22 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 925404, + "thread": 25 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1118355, + "thread": 22 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1274577, + "thread": 2 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1337994, + "thread": 27 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1617682, + "thread": 24 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1722434, + "thread": 17 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1901825, + "thread": 22 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 1987651, + "thread": 24 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 2209386, + "thread": 30 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 2303269, + "thread": 5 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 2474547, + "thread": 8 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 2675680, + "thread": 19 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 2912521, + "thread": 3 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 3022148, + "thread": 17 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 3128374, + "thread": 14 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 3347580, + "thread": 4 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 3455449, + "thread": 5 + } + }, + { + "amount": "136.751660266", + "slot": { + "period": 3763517, + "thread": 0 + } + }, + { + "amount": "136.751660264", + "slot": { + "period": 3927669, + "thread": 14 + } + } + ], + "AU1R76GpEFuFcn78gxk7tAJ4ups4jJkaUw3BpiZq7wWFmNoKsjjc": [ + { + "amount": "250.186386117", + "slot": { + "period": 141966, + "thread": 3 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 241249, + "thread": 27 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 466790, + "thread": 7 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 501850, + "thread": 20 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 718215, + "thread": 11 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 961430, + "thread": 31 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1132399, + "thread": 25 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1211057, + "thread": 17 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1403881, + "thread": 16 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1564131, + "thread": 18 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1730459, + "thread": 14 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 1935478, + "thread": 19 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2139784, + "thread": 17 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2176489, + "thread": 8 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2393428, + "thread": 3 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2478641, + "thread": 5 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2762309, + "thread": 8 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 2858284, + "thread": 9 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3053717, + "thread": 11 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3146621, + "thread": 19 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3441893, + "thread": 9 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3453200, + "thread": 15 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3764001, + "thread": 6 + } + }, + { + "amount": "250.186386117", + "slot": { + "period": 3843096, + "thread": 6 + } + } + ], + "AU1R76Kpjo5AxmzPpVgiJXBgoXWDbq6GjkTKVCvVKJvwBivmhpTn": [ + { + "amount": "383.265903524", + "slot": { + "period": 89709, + "thread": 6 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 196792, + "thread": 2 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 341449, + "thread": 5 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 604832, + "thread": 7 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 704449, + "thread": 21 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 937410, + "thread": 13 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1076389, + "thread": 26 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1311247, + "thread": 30 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1353866, + "thread": 16 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1507614, + "thread": 20 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1721707, + "thread": 5 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 1847883, + "thread": 11 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2001551, + "thread": 22 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2248995, + "thread": 1 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2408834, + "thread": 13 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2578039, + "thread": 5 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2722755, + "thread": 5 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 2802141, + "thread": 0 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 3003057, + "thread": 20 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 3200101, + "thread": 19 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 3428722, + "thread": 15 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 3533305, + "thread": 27 + } + }, + { + "amount": "383.265903524", + "slot": { + "period": 3775834, + "thread": 24 + } + }, + { + "amount": "383.265903513", + "slot": { + "period": 3908608, + "thread": 16 + } + } + ], + "AU1R8nk4VPWeyVG5F2DSxjdG2ybwSbQLU6f9xjkB2Ub9xRwU68ge": [ + { + "amount": "155.827391422", + "slot": { + "period": 76002, + "thread": 2 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 202148, + "thread": 21 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 465620, + "thread": 22 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 617783, + "thread": 29 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 787050, + "thread": 28 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 851741, + "thread": 25 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1080956, + "thread": 12 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1302639, + "thread": 24 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1439058, + "thread": 19 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1594465, + "thread": 17 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1723196, + "thread": 18 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 1848486, + "thread": 19 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2011785, + "thread": 23 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2161825, + "thread": 14 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2346687, + "thread": 13 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2504283, + "thread": 27 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2717374, + "thread": 0 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2930889, + "thread": 20 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 2960908, + "thread": 20 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 3162294, + "thread": 25 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 3320992, + "thread": 28 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 3552315, + "thread": 25 + } + }, + { + "amount": "155.827391422", + "slot": { + "period": 3663416, + "thread": 5 + } + }, + { + "amount": "155.827391433", + "slot": { + "period": 3811041, + "thread": 17 + } + } + ], + "AU1R9yny5AdQ2jauwL4ymDzDAGikCzxvCiqc9EMkgSQT24rJhaxt": [ + { + "amount": "1458.333333333", + "slot": { + "period": 153230, + "thread": 15 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 267056, + "thread": 13 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 332807, + "thread": 3 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 543257, + "thread": 20 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 714168, + "thread": 3 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 871639, + "thread": 3 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1102918, + "thread": 7 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1205471, + "thread": 16 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1447197, + "thread": 24 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1578606, + "thread": 6 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1787298, + "thread": 18 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1928313, + "thread": 2 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 1980227, + "thread": 30 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2287599, + "thread": 18 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2334407, + "thread": 18 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2610565, + "thread": 23 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2729775, + "thread": 2 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 2941757, + "thread": 7 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3022970, + "thread": 8 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3193618, + "thread": 17 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3317873, + "thread": 7 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3500179, + "thread": 2 + } + }, + { + "amount": "1458.333333333", + "slot": { + "period": 3695289, + "thread": 28 + } + }, + { + "amount": "1458.333333341", + "slot": { + "period": 3799774, + "thread": 10 + } + } + ], + "AU1RAaLVRjzXLT9TXqgCVEkkKpaudwuhhfQu8gh6QsHUVkPhjRAu": [ + { + "amount": "395.717916079", + "slot": { + "period": 106639, + "thread": 5 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 170761, + "thread": 12 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 338448, + "thread": 14 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 625791, + "thread": 27 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 788815, + "thread": 10 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 911327, + "thread": 23 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1047169, + "thread": 17 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1297829, + "thread": 8 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1437959, + "thread": 31 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1595050, + "thread": 24 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1658457, + "thread": 20 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 1894222, + "thread": 27 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2018670, + "thread": 14 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2169791, + "thread": 12 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2458820, + "thread": 4 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2543812, + "thread": 27 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2683717, + "thread": 13 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2810765, + "thread": 27 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 2954804, + "thread": 31 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 3122857, + "thread": 27 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 3352291, + "thread": 23 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 3597869, + "thread": 3 + } + }, + { + "amount": "395.717916079", + "slot": { + "period": 3690533, + "thread": 28 + } + }, + { + "amount": "395.717916082", + "slot": { + "period": 3902682, + "thread": 22 + } + } + ], + "AU1RB8Y4wQfLWncZbE3XqhWFyisTHYc2ucmQQpjHJMaUQnvpr5jZ": [ + { + "amount": "149.351665244", + "slot": { + "period": 162089, + "thread": 14 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 183767, + "thread": 25 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 362533, + "thread": 18 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 573567, + "thread": 8 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 812788, + "thread": 30 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 939585, + "thread": 12 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1036479, + "thread": 4 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1284351, + "thread": 20 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1398181, + "thread": 10 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1494828, + "thread": 31 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1785321, + "thread": 22 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 1942776, + "thread": 6 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2003225, + "thread": 16 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2231729, + "thread": 2 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2364924, + "thread": 16 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2480115, + "thread": 11 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2733239, + "thread": 17 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 2834852, + "thread": 13 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 3114035, + "thread": 19 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 3162055, + "thread": 6 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 3304366, + "thread": 0 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 3570721, + "thread": 28 + } + }, + { + "amount": "149.351665244", + "slot": { + "period": 3649418, + "thread": 2 + } + }, + { + "amount": "149.351665250", + "slot": { + "period": 3868502, + "thread": 24 + } + } + ], + "AU1RCqH7bFqLsGhJwkRgkBxFAD8YJoTLcthGLvQDTV4WA3GQR15h": [ + { + "amount": "2916.666666667", + "slot": { + "period": 83297, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 315250, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 483164, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 632364, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 733387, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 874219, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1032153, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1199077, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1339262, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1557600, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1656008, + "thread": 29 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1846103, + "thread": 16 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2120335, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2214507, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2422374, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2507396, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2785437, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2841357, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3112806, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3281907, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3389091, + "thread": 5 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3612971, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3635636, + "thread": 21 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3791874, + "thread": 1 + } + } + ], + "AU1RD8URzRUZz1eZSga66M2f2T1b4mfjLWTa65K87JwF1hPtvj4B": [ + { + "amount": "573.985934950", + "slot": { + "period": 116761, + "thread": 7 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 169220, + "thread": 10 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 382722, + "thread": 5 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 630115, + "thread": 14 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 692147, + "thread": 21 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 839328, + "thread": 14 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1146004, + "thread": 11 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1178349, + "thread": 23 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1421558, + "thread": 20 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1640340, + "thread": 26 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1759450, + "thread": 24 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 1838384, + "thread": 24 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2071823, + "thread": 12 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2167709, + "thread": 5 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2381656, + "thread": 13 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2580504, + "thread": 19 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2730890, + "thread": 31 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 2812594, + "thread": 12 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 3015082, + "thread": 3 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 3239175, + "thread": 12 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 3340471, + "thread": 5 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 3501241, + "thread": 21 + } + }, + { + "amount": "573.985934950", + "slot": { + "period": 3690982, + "thread": 25 + } + }, + { + "amount": "573.985934948", + "slot": { + "period": 3896400, + "thread": 1 + } + } + ], + "AU1RFqEwKXoHYZKDKgmNdio7KbD7LPGmmeX7cCupvLmyQt6hGRqG": [ + { + "amount": "127.466941290", + "slot": { + "period": 25210, + "thread": 16 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 205936, + "thread": 18 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 345870, + "thread": 8 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 611223, + "thread": 22 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 800173, + "thread": 18 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 899825, + "thread": 12 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1008263, + "thread": 5 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1246859, + "thread": 9 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1456941, + "thread": 7 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1624765, + "thread": 2 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1713089, + "thread": 24 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 1970098, + "thread": 21 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2114667, + "thread": 17 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2217751, + "thread": 13 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2305317, + "thread": 23 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2599328, + "thread": 15 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2745574, + "thread": 8 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2866781, + "thread": 30 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 2983087, + "thread": 16 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 3212515, + "thread": 2 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 3361718, + "thread": 22 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 3461811, + "thread": 7 + } + }, + { + "amount": "127.466941290", + "slot": { + "period": 3718457, + "thread": 29 + } + }, + { + "amount": "127.466941282", + "slot": { + "period": 3939418, + "thread": 0 + } + } + ], + "AU1RGm4VYoRmA8wGjjrnoMckqrLxNBLa4m2RWkqYq8JWkueBzJYp": [ + { + "amount": "172.814959087", + "slot": { + "period": 65870, + "thread": 28 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 323379, + "thread": 13 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 440688, + "thread": 6 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 649571, + "thread": 0 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 670064, + "thread": 21 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 965057, + "thread": 0 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1083017, + "thread": 21 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1220059, + "thread": 31 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1397978, + "thread": 28 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1567768, + "thread": 13 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1692784, + "thread": 7 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 1896881, + "thread": 27 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2049674, + "thread": 0 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2166335, + "thread": 29 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2393755, + "thread": 11 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2539973, + "thread": 23 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2713671, + "thread": 14 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2849056, + "thread": 4 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 2973329, + "thread": 12 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 3215924, + "thread": 4 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 3326494, + "thread": 19 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 3451918, + "thread": 26 + } + }, + { + "amount": "172.814959087", + "slot": { + "period": 3732651, + "thread": 28 + } + }, + { + "amount": "172.814959078", + "slot": { + "period": 3926639, + "thread": 24 + } + } + ], + "AU1RGuSDdiSMGk1w7tM99wnXeAy69QxDhZdfuidDJRp5cGr4UGX1": [ + { + "amount": "151.146535470", + "slot": { + "period": 101917, + "thread": 26 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 226037, + "thread": 17 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 361746, + "thread": 19 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 529702, + "thread": 6 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 695913, + "thread": 16 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 906790, + "thread": 18 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1127112, + "thread": 22 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1190768, + "thread": 8 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1460523, + "thread": 11 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1499616, + "thread": 31 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1655158, + "thread": 24 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 1928121, + "thread": 10 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2050935, + "thread": 31 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2170015, + "thread": 4 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2406113, + "thread": 19 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2534939, + "thread": 10 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2674087, + "thread": 0 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2944975, + "thread": 26 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 2998976, + "thread": 1 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 3286087, + "thread": 1 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 3370034, + "thread": 29 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 3483681, + "thread": 18 + } + }, + { + "amount": "151.146535470", + "slot": { + "period": 3735527, + "thread": 15 + } + }, + { + "amount": "151.146535467", + "slot": { + "period": 3821982, + "thread": 17 + } + } + ], + "AU1RHG2BY7eKRTtPk9RPzGsPg9e1phQ1LFEaPBHRmZ7EsWAZckWo": [ + { + "amount": "298.839595468", + "slot": { + "period": 17402, + "thread": 18 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 189585, + "thread": 10 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 341001, + "thread": 9 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 496086, + "thread": 9 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 713579, + "thread": 0 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 915613, + "thread": 8 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1069703, + "thread": 23 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1168610, + "thread": 31 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1400380, + "thread": 11 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1560075, + "thread": 2 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1734316, + "thread": 24 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 1889943, + "thread": 7 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2063930, + "thread": 4 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2209530, + "thread": 16 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2313862, + "thread": 24 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2525422, + "thread": 14 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2648650, + "thread": 4 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 2949895, + "thread": 26 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 3028420, + "thread": 8 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 3249173, + "thread": 4 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 3437411, + "thread": 24 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 3560601, + "thread": 1 + } + }, + { + "amount": "298.839595468", + "slot": { + "period": 3696324, + "thread": 5 + } + }, + { + "amount": "298.839595477", + "slot": { + "period": 3895354, + "thread": 4 + } + } + ], + "AU1RHbtDHdXtuTEgTFmhSDek7hAGeoZMNowxvmMPBmrgx6XYVKDZ": [ + { + "amount": "157.108609536", + "slot": { + "period": 161389, + "thread": 30 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 260118, + "thread": 27 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 440324, + "thread": 4 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 522197, + "thread": 30 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 717697, + "thread": 12 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 911968, + "thread": 23 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1119010, + "thread": 12 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1270180, + "thread": 16 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1367388, + "thread": 7 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1630690, + "thread": 7 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1788175, + "thread": 17 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 1966581, + "thread": 6 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2109842, + "thread": 8 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2190699, + "thread": 2 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2449706, + "thread": 8 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2613085, + "thread": 2 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2721709, + "thread": 28 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2841569, + "thread": 11 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 2975751, + "thread": 19 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 3246316, + "thread": 15 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 3333113, + "thread": 11 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 3599920, + "thread": 25 + } + }, + { + "amount": "157.108609536", + "slot": { + "period": 3778278, + "thread": 4 + } + }, + { + "amount": "157.108609543", + "slot": { + "period": 3934618, + "thread": 19 + } + } + ], + "AU1RKAmfpVGy8foKG9mnXryjeT7EmTwTx7fakKWp51KWRpYBgUeR": [ + { + "amount": "461.213802148", + "slot": { + "period": 165805, + "thread": 1 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 175546, + "thread": 23 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 406715, + "thread": 6 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 631772, + "thread": 22 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 699101, + "thread": 26 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 917354, + "thread": 12 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1067213, + "thread": 28 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1233272, + "thread": 14 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1364770, + "thread": 18 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1527944, + "thread": 6 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1805237, + "thread": 30 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 1873350, + "thread": 18 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2028638, + "thread": 7 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2198954, + "thread": 22 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2436428, + "thread": 14 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2596504, + "thread": 6 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2749000, + "thread": 2 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2825568, + "thread": 23 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 2995832, + "thread": 24 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 3132743, + "thread": 15 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 3360408, + "thread": 0 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 3564733, + "thread": 13 + } + }, + { + "amount": "461.213802148", + "slot": { + "period": 3729865, + "thread": 6 + } + }, + { + "amount": "461.213802160", + "slot": { + "period": 3916639, + "thread": 1 + } + } + ], + "AU1RMxtZGiuHt6e1vC735GKGEh9MqqxAxuZnjyxfrDLoMGBKTdub": [ + { + "amount": "111.608773770", + "slot": { + "period": 75294, + "thread": 27 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 301755, + "thread": 23 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 444616, + "thread": 5 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 649140, + "thread": 6 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 815773, + "thread": 12 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 891937, + "thread": 3 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1101430, + "thread": 11 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1173616, + "thread": 29 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1466729, + "thread": 22 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1568506, + "thread": 9 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1808036, + "thread": 17 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1892221, + "thread": 26 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 1976440, + "thread": 1 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 2186860, + "thread": 19 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 2429902, + "thread": 23 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 2558282, + "thread": 24 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 2766707, + "thread": 28 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 2898220, + "thread": 3 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 3024685, + "thread": 20 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 3164288, + "thread": 29 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 3360455, + "thread": 12 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 3546206, + "thread": 4 + } + }, + { + "amount": "111.608773770", + "slot": { + "period": 3654257, + "thread": 6 + } + }, + { + "amount": "111.608773771", + "slot": { + "period": 3838593, + "thread": 12 + } + } + ], + "AU1RN8H1fvhVeF64FsApdnBKJsEiNQCxoRpETKof248SUcSYnRpS": [ + { + "amount": "194.268633668", + "slot": { + "period": 132442, + "thread": 2 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 189902, + "thread": 0 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 466631, + "thread": 27 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 570417, + "thread": 10 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 694419, + "thread": 13 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 941914, + "thread": 14 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1083181, + "thread": 27 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1177608, + "thread": 21 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1374466, + "thread": 31 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1502081, + "thread": 24 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1692184, + "thread": 11 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 1975624, + "thread": 6 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2085397, + "thread": 14 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2200075, + "thread": 13 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2434799, + "thread": 4 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2517601, + "thread": 11 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2672058, + "thread": 22 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 2835415, + "thread": 27 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3028779, + "thread": 1 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3248827, + "thread": 1 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3380408, + "thread": 9 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3533677, + "thread": 9 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3694054, + "thread": 12 + } + }, + { + "amount": "194.268633668", + "slot": { + "period": 3780038, + "thread": 29 + } + } + ], + "AU1RNwjvWWP72CC8ucMPiLWGswnCsXqhumoGzDCdCiWN2nEPsxMn": [ + { + "amount": "91.823644074", + "slot": { + "period": 70768, + "thread": 11 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 284261, + "thread": 29 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 365941, + "thread": 5 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 500819, + "thread": 27 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 786228, + "thread": 9 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 840091, + "thread": 26 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1040349, + "thread": 24 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1311812, + "thread": 17 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1432935, + "thread": 12 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1492779, + "thread": 10 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1714086, + "thread": 15 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 1942671, + "thread": 12 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2054933, + "thread": 21 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2211423, + "thread": 25 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2354088, + "thread": 15 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2516474, + "thread": 20 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2641636, + "thread": 26 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 2793153, + "thread": 24 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 3095355, + "thread": 18 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 3171830, + "thread": 14 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 3443353, + "thread": 18 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 3454556, + "thread": 21 + } + }, + { + "amount": "91.823644074", + "slot": { + "period": 3634206, + "thread": 22 + } + }, + { + "amount": "91.823644063", + "slot": { + "period": 3929372, + "thread": 3 + } + } + ], + "AU1RQNiRLfuKhk8vLq7YDBjZcrbgSPYCnJbcVUh267wNT1BsQhYU": [ + { + "amount": "185.490751771", + "slot": { + "period": 83609, + "thread": 28 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 178736, + "thread": 5 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 405402, + "thread": 14 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 530022, + "thread": 22 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 722981, + "thread": 28 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 907765, + "thread": 18 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1017235, + "thread": 22 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1292264, + "thread": 29 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1461264, + "thread": 3 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1551601, + "thread": 5 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1741387, + "thread": 15 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1810451, + "thread": 7 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 1993505, + "thread": 30 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 2286887, + "thread": 20 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 2397304, + "thread": 5 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 2530076, + "thread": 9 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 2654796, + "thread": 14 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 2890320, + "thread": 12 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 3073606, + "thread": 1 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 3136408, + "thread": 3 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 3317525, + "thread": 4 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 3568272, + "thread": 31 + } + }, + { + "amount": "185.490751771", + "slot": { + "period": 3709963, + "thread": 17 + } + }, + { + "amount": "185.490751781", + "slot": { + "period": 3924567, + "thread": 23 + } + } + ], + "AU1RRLDu1Fy7MQNLTcSZ2NDJKBTivzqWP8UF9bvbLLxmRFG3n25G": [ + { + "amount": "175.979157005", + "slot": { + "period": 22499, + "thread": 1 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 207660, + "thread": 14 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 333487, + "thread": 24 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 559062, + "thread": 0 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 739513, + "thread": 16 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 934456, + "thread": 3 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1113919, + "thread": 23 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1253591, + "thread": 29 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1356598, + "thread": 15 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1521471, + "thread": 24 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1682760, + "thread": 27 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 1815977, + "thread": 29 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2041782, + "thread": 11 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2283486, + "thread": 12 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2404721, + "thread": 16 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2512903, + "thread": 26 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2777382, + "thread": 8 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 2915019, + "thread": 21 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 3065134, + "thread": 3 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 3173283, + "thread": 9 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 3368388, + "thread": 7 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 3557810, + "thread": 1 + } + }, + { + "amount": "175.979157005", + "slot": { + "period": 3618571, + "thread": 14 + } + }, + { + "amount": "175.979157000", + "slot": { + "period": 3783711, + "thread": 25 + } + } + ], + "AU1RRkTGBMBmgeYVrqiR9VVt156Ap8fo6M5upUBZ8y8mzvCLLa9L": [ + { + "amount": "56.813610554", + "slot": { + "period": 28620, + "thread": 11 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 299785, + "thread": 17 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 412720, + "thread": 2 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 523116, + "thread": 1 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 791252, + "thread": 29 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 833074, + "thread": 20 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 989694, + "thread": 10 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 1294870, + "thread": 8 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 1385813, + "thread": 29 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 1606924, + "thread": 13 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 1752099, + "thread": 12 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 1949432, + "thread": 15 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2098917, + "thread": 16 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2255801, + "thread": 25 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2366495, + "thread": 8 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2527123, + "thread": 7 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2776272, + "thread": 17 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 2848006, + "thread": 28 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 3104118, + "thread": 22 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 3175400, + "thread": 10 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 3386323, + "thread": 21 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 3580163, + "thread": 15 + } + }, + { + "amount": "56.813610554", + "slot": { + "period": 3746423, + "thread": 28 + } + }, + { + "amount": "56.813610550", + "slot": { + "period": 3868912, + "thread": 4 + } + } + ], + "AU1RS2UELPXXuoCx64aEkUXFmrR5R3fJAdQ11aaNwK5GKu1upzUo": [ + { + "amount": "338.585174751", + "slot": { + "period": 34936, + "thread": 30 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 249823, + "thread": 30 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 373962, + "thread": 2 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 576416, + "thread": 1 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 820404, + "thread": 16 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 825841, + "thread": 4 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1072189, + "thread": 31 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1230374, + "thread": 26 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1373637, + "thread": 8 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1504311, + "thread": 16 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1771214, + "thread": 1 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 1867907, + "thread": 22 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2135669, + "thread": 12 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2175244, + "thread": 22 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2325024, + "thread": 27 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2543130, + "thread": 0 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2748721, + "thread": 2 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 2805947, + "thread": 27 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 3015304, + "thread": 25 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 3149052, + "thread": 21 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 3436007, + "thread": 22 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 3462828, + "thread": 5 + } + }, + { + "amount": "338.585174751", + "slot": { + "period": 3766516, + "thread": 22 + } + }, + { + "amount": "338.585174744", + "slot": { + "period": 3887010, + "thread": 16 + } + } + ], + "AU1RTEjrRRv1TjQZPB7yXVQccupYvybetRtvBEDafi5u2ekLerwA": [ + { + "amount": "76.222291147", + "slot": { + "period": 104431, + "thread": 8 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 178028, + "thread": 28 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 351893, + "thread": 10 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 583148, + "thread": 16 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 752225, + "thread": 14 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 824501, + "thread": 18 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1113598, + "thread": 3 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1224267, + "thread": 7 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1465354, + "thread": 0 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1506343, + "thread": 25 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1682354, + "thread": 29 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 1925798, + "thread": 15 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2135084, + "thread": 13 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2241118, + "thread": 11 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2433491, + "thread": 27 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2465242, + "thread": 10 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2732776, + "thread": 22 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 2933761, + "thread": 6 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 3046017, + "thread": 3 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 3126900, + "thread": 25 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 3327416, + "thread": 13 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 3567246, + "thread": 18 + } + }, + { + "amount": "76.222291147", + "slot": { + "period": 3695802, + "thread": 10 + } + }, + { + "amount": "76.222291152", + "slot": { + "period": 3797431, + "thread": 15 + } + } + ], + "AU1RTRB6oRWKR4YsDgPrJScy5MTYLSgYPf4nCTYPqtfRVLZPRVsC": [ + { + "amount": "172.085962657", + "slot": { + "period": 100755, + "thread": 8 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 219404, + "thread": 19 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 340061, + "thread": 7 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 626177, + "thread": 11 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 728955, + "thread": 11 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 906415, + "thread": 20 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1137204, + "thread": 12 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1263808, + "thread": 13 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1358768, + "thread": 15 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1577950, + "thread": 2 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1742648, + "thread": 18 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1847381, + "thread": 31 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 1977834, + "thread": 16 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 2162100, + "thread": 23 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 2377754, + "thread": 25 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 2586325, + "thread": 14 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 2756497, + "thread": 19 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 2808898, + "thread": 5 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 3009110, + "thread": 11 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 3211449, + "thread": 1 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 3348550, + "thread": 31 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 3614615, + "thread": 20 + } + }, + { + "amount": "172.085962657", + "slot": { + "period": 3714173, + "thread": 25 + } + }, + { + "amount": "172.085962646", + "slot": { + "period": 3915704, + "thread": 24 + } + } + ], + "AU1RV7so8KNdkUw17Dj9E622nrwJQmueM71SVNEWVwjnFUwmn5hL": [ + { + "amount": "321.833889825", + "slot": { + "period": 154161, + "thread": 7 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 256688, + "thread": 24 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 477139, + "thread": 31 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 591125, + "thread": 26 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 813626, + "thread": 31 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 856968, + "thread": 28 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1010911, + "thread": 12 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1274225, + "thread": 13 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1369261, + "thread": 14 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1544481, + "thread": 19 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1772909, + "thread": 25 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 1955127, + "thread": 2 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2108261, + "thread": 12 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2193644, + "thread": 29 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2383506, + "thread": 9 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2513749, + "thread": 13 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2635112, + "thread": 12 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 2931913, + "thread": 1 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 3047432, + "thread": 25 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 3217209, + "thread": 8 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 3377621, + "thread": 22 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 3540005, + "thread": 8 + } + }, + { + "amount": "321.833889825", + "slot": { + "period": 3721658, + "thread": 22 + } + }, + { + "amount": "321.833889828", + "slot": { + "period": 3829977, + "thread": 10 + } + } + ], + "AU1RWW29tLXQgfNnvjsB1tyiXRxh964TyHizP8VHhA7Eck1tP3ib": [ + { + "amount": "123.896598047", + "slot": { + "period": 46578, + "thread": 18 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 303382, + "thread": 20 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 378387, + "thread": 6 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 589215, + "thread": 3 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 724753, + "thread": 3 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 850939, + "thread": 1 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1085285, + "thread": 1 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1159446, + "thread": 0 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1476407, + "thread": 28 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1548788, + "thread": 19 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1683118, + "thread": 2 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 1940432, + "thread": 20 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2069656, + "thread": 4 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2149102, + "thread": 20 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2426043, + "thread": 28 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2604401, + "thread": 19 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2732619, + "thread": 4 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 2952912, + "thread": 19 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 3107148, + "thread": 2 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 3207968, + "thread": 2 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 3446619, + "thread": 21 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 3558028, + "thread": 23 + } + }, + { + "amount": "123.896598047", + "slot": { + "period": 3758851, + "thread": 22 + } + }, + { + "amount": "123.896598039", + "slot": { + "period": 3783550, + "thread": 6 + } + } + ], + "AU1RWaVr4qtt31FqNRgh6fU46oFcurZ5LieuAycYoYo7sioCwVfh": [ + { + "amount": "147.809502085", + "slot": { + "period": 125899, + "thread": 6 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 186430, + "thread": 27 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 324283, + "thread": 21 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 537778, + "thread": 24 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 735800, + "thread": 15 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 853377, + "thread": 19 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1061620, + "thread": 19 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1191148, + "thread": 8 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1476152, + "thread": 25 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1531673, + "thread": 9 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1709588, + "thread": 3 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 1885310, + "thread": 25 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2122982, + "thread": 20 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2169470, + "thread": 20 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2401197, + "thread": 15 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2593263, + "thread": 2 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2691531, + "thread": 29 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 2810217, + "thread": 0 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 3109999, + "thread": 0 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 3132609, + "thread": 19 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 3321054, + "thread": 1 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 3452667, + "thread": 31 + } + }, + { + "amount": "147.809502085", + "slot": { + "period": 3768205, + "thread": 0 + } + }, + { + "amount": "147.809502091", + "slot": { + "period": 3945614, + "thread": 30 + } + } + ], + "AU1RWmFY9ZZCj9ArmjdQA8VZz2UuR3zPqasWxyXCx7F1iweEtRQF": [ + { + "amount": "623.923697917", + "slot": { + "period": 147825, + "thread": 8 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 280426, + "thread": 15 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 446656, + "thread": 14 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 585431, + "thread": 19 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 795305, + "thread": 18 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 860749, + "thread": 19 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 989466, + "thread": 25 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 1169647, + "thread": 17 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 1433608, + "thread": 17 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 1618876, + "thread": 2 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 1663127, + "thread": 3 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 1844004, + "thread": 30 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2061634, + "thread": 22 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2252104, + "thread": 14 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2328272, + "thread": 30 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2515678, + "thread": 11 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2730576, + "thread": 27 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 2794897, + "thread": 5 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 3032512, + "thread": 1 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 3220539, + "thread": 19 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 3364253, + "thread": 29 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 3554097, + "thread": 13 + } + }, + { + "amount": "623.923697917", + "slot": { + "period": 3772662, + "thread": 6 + } + }, + { + "amount": "623.923697911", + "slot": { + "period": 3808447, + "thread": 13 + } + } + ], + "AU1RWzA17K2CNRbJ7DKgVevJLyapMyxEMmEVFsCT5bXrcRwF1752": [ + { + "amount": "177.240352352", + "slot": { + "period": 154233, + "thread": 7 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 172437, + "thread": 19 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 330720, + "thread": 3 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 621653, + "thread": 15 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 743039, + "thread": 7 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 853894, + "thread": 14 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1130344, + "thread": 1 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1177226, + "thread": 9 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1354647, + "thread": 10 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1531265, + "thread": 1 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1724351, + "thread": 19 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 1834897, + "thread": 9 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2033571, + "thread": 25 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2260365, + "thread": 24 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2419282, + "thread": 1 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2547360, + "thread": 15 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2709552, + "thread": 20 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2921981, + "thread": 15 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 2988948, + "thread": 27 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 3202875, + "thread": 22 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 3337097, + "thread": 27 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 3570179, + "thread": 14 + } + }, + { + "amount": "177.240352352", + "slot": { + "period": 3644399, + "thread": 10 + } + }, + { + "amount": "177.240352353", + "slot": { + "period": 3865500, + "thread": 21 + } + } + ], + "AU1RXHoLt67YbR8M1962aYsFSUeaTByK25XPbp5GAMSr2XvJKqMN": [ + { + "amount": "139.563227666", + "slot": { + "period": 91925, + "thread": 29 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 321293, + "thread": 10 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 385992, + "thread": 7 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 639335, + "thread": 25 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 786787, + "thread": 8 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 965965, + "thread": 14 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1122615, + "thread": 10 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1218580, + "thread": 23 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1422473, + "thread": 2 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1565277, + "thread": 18 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1698798, + "thread": 20 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1906721, + "thread": 30 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 1986536, + "thread": 11 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 2213313, + "thread": 10 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 2343694, + "thread": 9 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 2464312, + "thread": 24 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 2709494, + "thread": 6 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 2949023, + "thread": 1 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 3118943, + "thread": 10 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 3258867, + "thread": 6 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 3377878, + "thread": 4 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 3463118, + "thread": 11 + } + }, + { + "amount": "139.563227666", + "slot": { + "period": 3718833, + "thread": 15 + } + }, + { + "amount": "139.563227661", + "slot": { + "period": 3890529, + "thread": 13 + } + } + ], + "AU1RYWSpsXL2BQwewf1NbytEAqCse7TCSmCrbR4RsgEVGaNUTuEH": [ + { + "amount": "106.065202065", + "slot": { + "period": 31608, + "thread": 19 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 279693, + "thread": 7 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 391950, + "thread": 10 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 503015, + "thread": 5 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 788391, + "thread": 1 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 843632, + "thread": 19 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1042234, + "thread": 23 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1307174, + "thread": 22 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1477438, + "thread": 0 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1575902, + "thread": 16 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1738680, + "thread": 19 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1899755, + "thread": 30 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 1998357, + "thread": 9 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2229695, + "thread": 23 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2436989, + "thread": 20 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2600236, + "thread": 6 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2773835, + "thread": 23 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2910476, + "thread": 19 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 2954939, + "thread": 7 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 3248835, + "thread": 14 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 3332437, + "thread": 9 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 3586058, + "thread": 26 + } + }, + { + "amount": "106.065202065", + "slot": { + "period": 3628568, + "thread": 21 + } + }, + { + "amount": "106.065202073", + "slot": { + "period": 3823537, + "thread": 13 + } + } + ], + "AU1RZjq6RDqiikozGMy3ABPv4WcHPnA6UuTCx35H9PvSyxJF1iBi": [ + { + "amount": "142.743581646", + "slot": { + "period": 158139, + "thread": 1 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 257493, + "thread": 2 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 477784, + "thread": 18 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 652220, + "thread": 16 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 769197, + "thread": 14 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 827505, + "thread": 0 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1044297, + "thread": 1 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1304308, + "thread": 29 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1446795, + "thread": 23 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1620112, + "thread": 0 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1788042, + "thread": 21 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1916267, + "thread": 21 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 1984437, + "thread": 21 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 2194051, + "thread": 14 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 2329544, + "thread": 31 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 2520363, + "thread": 11 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 2706632, + "thread": 2 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 2881758, + "thread": 20 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 3020028, + "thread": 27 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 3252839, + "thread": 25 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 3407631, + "thread": 13 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 3454099, + "thread": 8 + } + }, + { + "amount": "142.743581646", + "slot": { + "period": 3657893, + "thread": 27 + } + }, + { + "amount": "142.743581654", + "slot": { + "period": 3870715, + "thread": 22 + } + } + ], + "AU1RbChehfiz18WjSNXdqksWFhqVubpRfoSYUP32HUVABanjZqFW": [ + { + "amount": "142.771710706", + "slot": { + "period": 37098, + "thread": 14 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 171016, + "thread": 27 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 357845, + "thread": 5 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 565814, + "thread": 29 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 755441, + "thread": 2 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 837052, + "thread": 31 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1049842, + "thread": 4 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1223673, + "thread": 11 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1454843, + "thread": 0 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1622134, + "thread": 7 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1670563, + "thread": 6 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 1903249, + "thread": 27 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2089276, + "thread": 2 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2252289, + "thread": 21 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2381449, + "thread": 30 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2611945, + "thread": 8 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2735379, + "thread": 5 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2843309, + "thread": 21 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 2978612, + "thread": 13 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 3207276, + "thread": 26 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 3418004, + "thread": 0 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 3610345, + "thread": 30 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 3753542, + "thread": 19 + } + }, + { + "amount": "142.771710706", + "slot": { + "period": 3789231, + "thread": 20 + } + } + ], + "AU1RbCyUTTu8JRn2fZLgpki8zSm5h87ZnksvubkTG5pjW1ZYLqkF": [ + { + "amount": "88.925627840", + "slot": { + "period": 130965, + "thread": 25 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 183988, + "thread": 24 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 350695, + "thread": 0 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 504601, + "thread": 20 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 819578, + "thread": 22 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 823716, + "thread": 23 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1071435, + "thread": 8 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1244596, + "thread": 23 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1422390, + "thread": 22 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1552535, + "thread": 15 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1743142, + "thread": 26 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 1812237, + "thread": 19 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2115809, + "thread": 16 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2187659, + "thread": 30 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2296253, + "thread": 8 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2538266, + "thread": 27 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2743032, + "thread": 25 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 2862236, + "thread": 2 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 3117784, + "thread": 1 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 3131636, + "thread": 23 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 3420841, + "thread": 22 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 3615239, + "thread": 26 + } + }, + { + "amount": "88.925627840", + "slot": { + "period": 3655113, + "thread": 5 + } + }, + { + "amount": "88.925627851", + "slot": { + "period": 3878470, + "thread": 14 + } + } + ], + "AU1RbzhT3RK1XffvyppfmemnCVryTbXQdcEoXUgUwXorHfdARjsX": [ + { + "amount": "600.159222003", + "slot": { + "period": 11582, + "thread": 6 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 268610, + "thread": 29 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 377688, + "thread": 21 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 587425, + "thread": 14 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 765882, + "thread": 27 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 851830, + "thread": 7 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1015429, + "thread": 27 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1283970, + "thread": 0 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1423819, + "thread": 11 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1644240, + "thread": 4 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1782502, + "thread": 17 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 1823941, + "thread": 16 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2096814, + "thread": 26 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2174670, + "thread": 5 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2390829, + "thread": 12 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2519770, + "thread": 31 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2670718, + "thread": 8 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 2867723, + "thread": 17 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 3089534, + "thread": 30 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 3142283, + "thread": 24 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 3294095, + "thread": 11 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 3589203, + "thread": 9 + } + }, + { + "amount": "600.159222003", + "slot": { + "period": 3681698, + "thread": 27 + } + }, + { + "amount": "600.159221996", + "slot": { + "period": 3786818, + "thread": 9 + } + } + ], + "AU1RdnQjRKknvWwrD1PYbiiRHXvMgiVDsHyhhhmsFNVsq3mbjcqg": [ + { + "amount": "198.986350398", + "slot": { + "period": 79510, + "thread": 13 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 290729, + "thread": 5 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 340324, + "thread": 7 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 585369, + "thread": 5 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 660958, + "thread": 19 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 900801, + "thread": 19 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1149372, + "thread": 7 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1246873, + "thread": 15 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1434985, + "thread": 12 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1615987, + "thread": 1 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1662474, + "thread": 12 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 1962783, + "thread": 29 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2073630, + "thread": 1 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2277358, + "thread": 3 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2410678, + "thread": 10 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2547334, + "thread": 8 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2784771, + "thread": 29 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 2792894, + "thread": 16 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 3050732, + "thread": 5 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 3227502, + "thread": 22 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 3403880, + "thread": 26 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 3540535, + "thread": 16 + } + }, + { + "amount": "198.986350398", + "slot": { + "period": 3739157, + "thread": 1 + } + }, + { + "amount": "198.986350386", + "slot": { + "period": 3829449, + "thread": 4 + } + } + ], + "AU1RfJztYjzykUzhAGB5xyo92ZgBG6hNbPgh8DKniprjxzrUmbVM": [ + { + "amount": "464.217928520", + "slot": { + "period": 127062, + "thread": 20 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 277950, + "thread": 13 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 430652, + "thread": 29 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 493624, + "thread": 4 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 706998, + "thread": 26 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 955028, + "thread": 16 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1126788, + "thread": 1 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1275997, + "thread": 10 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1479585, + "thread": 2 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1609992, + "thread": 5 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1700092, + "thread": 19 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 1900864, + "thread": 13 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2131819, + "thread": 23 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2261210, + "thread": 23 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2322817, + "thread": 15 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2603019, + "thread": 14 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2658991, + "thread": 19 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 2811655, + "thread": 27 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 3006504, + "thread": 20 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 3177034, + "thread": 24 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 3301156, + "thread": 5 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 3463694, + "thread": 0 + } + }, + { + "amount": "464.217928520", + "slot": { + "period": 3719472, + "thread": 3 + } + }, + { + "amount": "464.217928512", + "slot": { + "period": 3897545, + "thread": 13 + } + } + ], + "AU1RfVzoBvRdJq9N4u9MzygNkxiCbDZMdDwfL9kHBGQybPggkBFS": [ + { + "amount": "214.148060460", + "slot": { + "period": 78758, + "thread": 15 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 286908, + "thread": 31 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 446586, + "thread": 7 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 576747, + "thread": 28 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 773793, + "thread": 30 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 861661, + "thread": 26 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 984527, + "thread": 28 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 1290940, + "thread": 27 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 1382944, + "thread": 15 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 1626157, + "thread": 0 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 1693409, + "thread": 11 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 1933676, + "thread": 20 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2045262, + "thread": 25 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2186750, + "thread": 20 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2441856, + "thread": 14 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2464446, + "thread": 11 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2749739, + "thread": 7 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 2921404, + "thread": 16 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 3061360, + "thread": 29 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 3186467, + "thread": 17 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 3348196, + "thread": 7 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 3608414, + "thread": 28 + } + }, + { + "amount": "214.148060460", + "slot": { + "period": 3734661, + "thread": 30 + } + }, + { + "amount": "214.148060464", + "slot": { + "period": 3836831, + "thread": 12 + } + } + ], + "AU1RghpiQBPAkfnDru1ZtpsXBghDSDRGoqzBGqBL1tXMzY4kh1zv": [ + { + "amount": "77.138080745", + "slot": { + "period": 129343, + "thread": 16 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 265866, + "thread": 5 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 336231, + "thread": 21 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 584630, + "thread": 12 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 682602, + "thread": 18 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 868574, + "thread": 22 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1142109, + "thread": 9 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1308590, + "thread": 16 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1469881, + "thread": 31 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1623142, + "thread": 20 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1679195, + "thread": 24 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 1967444, + "thread": 20 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2116566, + "thread": 22 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2231676, + "thread": 4 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2301600, + "thread": 15 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2556666, + "thread": 25 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2727853, + "thread": 1 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 2935194, + "thread": 28 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 3075777, + "thread": 10 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 3194425, + "thread": 2 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 3441906, + "thread": 13 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 3583097, + "thread": 0 + } + }, + { + "amount": "77.138080745", + "slot": { + "period": 3722816, + "thread": 27 + } + }, + { + "amount": "77.138080744", + "slot": { + "period": 3889147, + "thread": 5 + } + } + ], + "AU1RiKBkVKTh925SwcUSkaBUA646UbAt2vagAtPfggAMKuiVooHZ": [ + { + "amount": "104.126020425", + "slot": { + "period": 150591, + "thread": 15 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 226839, + "thread": 8 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 463173, + "thread": 4 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 619364, + "thread": 1 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 812180, + "thread": 8 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 844320, + "thread": 23 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1075558, + "thread": 12 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1242638, + "thread": 11 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1389807, + "thread": 31 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1480246, + "thread": 12 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1784875, + "thread": 27 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 1910224, + "thread": 2 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2094209, + "thread": 2 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2276291, + "thread": 3 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2419631, + "thread": 20 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2600913, + "thread": 22 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2643597, + "thread": 30 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 2844512, + "thread": 26 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 3060409, + "thread": 5 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 3207905, + "thread": 13 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 3399270, + "thread": 8 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 3590422, + "thread": 19 + } + }, + { + "amount": "104.126020425", + "slot": { + "period": 3738504, + "thread": 12 + } + }, + { + "amount": "104.126020416", + "slot": { + "period": 3861510, + "thread": 7 + } + } + ], + "AU1Ric9S6bEXiAKwfoLX9ACU3rZJEJs3HM1xNzgS18QbtN97Pv6o": [ + { + "amount": "392.303910578", + "slot": { + "period": 94404, + "thread": 7 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 202036, + "thread": 6 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 420753, + "thread": 11 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 617577, + "thread": 8 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 798668, + "thread": 4 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 864464, + "thread": 14 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1058202, + "thread": 7 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1283046, + "thread": 22 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1367196, + "thread": 2 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1512735, + "thread": 12 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1655538, + "thread": 28 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 1962673, + "thread": 31 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2076151, + "thread": 9 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2166256, + "thread": 12 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2328124, + "thread": 7 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2485636, + "thread": 1 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2755278, + "thread": 13 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 2896791, + "thread": 12 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 3021457, + "thread": 8 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 3201597, + "thread": 10 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 3433342, + "thread": 11 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 3615316, + "thread": 3 + } + }, + { + "amount": "392.303910578", + "slot": { + "period": 3726490, + "thread": 13 + } + }, + { + "amount": "392.303910587", + "slot": { + "period": 3933698, + "thread": 23 + } + } + ], + "AU1Rj76Apr3GPY9SN8JJPTT2vJRn32RcnNEBEpPJFcSCWc3yrzpo": [ + { + "amount": "68.354669321", + "slot": { + "period": 47198, + "thread": 4 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 269446, + "thread": 2 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 345398, + "thread": 13 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 538527, + "thread": 21 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 672231, + "thread": 1 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 826607, + "thread": 29 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 983912, + "thread": 7 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 1197229, + "thread": 19 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 1459789, + "thread": 26 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 1601538, + "thread": 31 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 1749882, + "thread": 29 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 1887907, + "thread": 24 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2022676, + "thread": 4 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2261584, + "thread": 29 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2310318, + "thread": 28 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2580165, + "thread": 9 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2643060, + "thread": 4 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 2847302, + "thread": 5 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 3068227, + "thread": 6 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 3224759, + "thread": 8 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 3297764, + "thread": 0 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 3507090, + "thread": 28 + } + }, + { + "amount": "68.354669321", + "slot": { + "period": 3667555, + "thread": 31 + } + }, + { + "amount": "68.354669328", + "slot": { + "period": 3806448, + "thread": 13 + } + } + ], + "AU1RjQAqEN6y8ZpDi5UTUkEJKuSktQSJzg8dkSyP9KTXdm1PvkqW": [ + { + "amount": "187.514912658", + "slot": { + "period": 152060, + "thread": 4 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 319916, + "thread": 12 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 456951, + "thread": 12 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 607337, + "thread": 0 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 672368, + "thread": 27 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 853739, + "thread": 17 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1117220, + "thread": 8 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1252995, + "thread": 27 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1334347, + "thread": 11 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1612329, + "thread": 17 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1731832, + "thread": 17 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1822655, + "thread": 23 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 1998807, + "thread": 19 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 2151221, + "thread": 22 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 2374033, + "thread": 23 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 2524962, + "thread": 13 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 2707313, + "thread": 11 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 2832328, + "thread": 9 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 3069369, + "thread": 27 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 3206142, + "thread": 29 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 3415216, + "thread": 15 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 3528776, + "thread": 15 + } + }, + { + "amount": "187.514912658", + "slot": { + "period": 3742038, + "thread": 16 + } + }, + { + "amount": "187.514912650", + "slot": { + "period": 3848598, + "thread": 14 + } + } + ], + "AU1RkrTjKAyw6YiHPEpDZpZR16SNr88m1QjpGL9zUSR21QqCxhsh": [ + { + "amount": "137.933835340", + "slot": { + "period": 13915, + "thread": 14 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 271881, + "thread": 21 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 452948, + "thread": 21 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 558148, + "thread": 11 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 798860, + "thread": 1 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 836373, + "thread": 24 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1069717, + "thread": 11 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1233594, + "thread": 11 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1463208, + "thread": 20 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1481692, + "thread": 28 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1715760, + "thread": 3 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1848644, + "thread": 1 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 1979027, + "thread": 18 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 2292843, + "thread": 14 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 2444253, + "thread": 3 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 2564586, + "thread": 29 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 2643053, + "thread": 16 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 2872281, + "thread": 12 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 3053041, + "thread": 0 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 3287667, + "thread": 4 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 3355377, + "thread": 6 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 3513678, + "thread": 18 + } + }, + { + "amount": "137.933835340", + "slot": { + "period": 3743177, + "thread": 15 + } + }, + { + "amount": "137.933835334", + "slot": { + "period": 3923198, + "thread": 17 + } + } + ], + "AU1Rmp2r47siTMGdwvAcDhfgddy6v3nVssVPsoZxa1g5rhWMJch4": [ + { + "amount": "76.234575908", + "slot": { + "period": 92921, + "thread": 9 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 251061, + "thread": 13 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 429700, + "thread": 1 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 650705, + "thread": 16 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 819398, + "thread": 18 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 854733, + "thread": 7 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 982838, + "thread": 8 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 1266879, + "thread": 19 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 1327511, + "thread": 17 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 1607515, + "thread": 25 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 1717381, + "thread": 29 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 1960849, + "thread": 6 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2020091, + "thread": 30 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2148096, + "thread": 28 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2402266, + "thread": 29 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2463130, + "thread": 31 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2669885, + "thread": 6 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2932647, + "thread": 9 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 2979363, + "thread": 12 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 3139256, + "thread": 25 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 3394940, + "thread": 16 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 3599192, + "thread": 10 + } + }, + { + "amount": "76.234575908", + "slot": { + "period": 3682500, + "thread": 21 + } + }, + { + "amount": "76.234575901", + "slot": { + "period": 3902635, + "thread": 14 + } + } + ], + "AU1RnATVEXfgRYif46KuPhYZeDdcwPF4Gz1T5MjarwVdm1SZeRgo": [ + { + "amount": "54.132274684", + "slot": { + "period": 93943, + "thread": 17 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 299892, + "thread": 3 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 431861, + "thread": 19 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 552579, + "thread": 21 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 743706, + "thread": 17 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 895676, + "thread": 30 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 983034, + "thread": 23 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 1286701, + "thread": 22 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 1329883, + "thread": 3 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 1608666, + "thread": 1 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 1757191, + "thread": 30 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 1860029, + "thread": 14 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2106817, + "thread": 25 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2251961, + "thread": 14 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2322850, + "thread": 23 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2516673, + "thread": 21 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2671039, + "thread": 29 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 2896500, + "thread": 1 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 3003424, + "thread": 11 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 3149137, + "thread": 9 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 3297376, + "thread": 15 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 3565695, + "thread": 26 + } + }, + { + "amount": "54.132274684", + "slot": { + "period": 3726755, + "thread": 29 + } + }, + { + "amount": "54.132274687", + "slot": { + "period": 3930638, + "thread": 0 + } + } + ], + "AU1RnnNmxNDiFyUBtV9DAc9Ptry6mAqxAe8Pds2mHicJ4bw7U9M2": [ + { + "amount": "177.316601565", + "slot": { + "period": 103943, + "thread": 1 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 197804, + "thread": 6 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 407427, + "thread": 21 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 638081, + "thread": 15 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 743743, + "thread": 1 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 834324, + "thread": 24 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1061525, + "thread": 25 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1314977, + "thread": 2 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1446758, + "thread": 3 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1581225, + "thread": 27 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1779056, + "thread": 14 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 1849875, + "thread": 9 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2080908, + "thread": 1 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2150598, + "thread": 10 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2386286, + "thread": 30 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2623693, + "thread": 9 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2706067, + "thread": 21 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 2793205, + "thread": 4 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 3083118, + "thread": 11 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 3128227, + "thread": 1 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 3358235, + "thread": 23 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 3501784, + "thread": 16 + } + }, + { + "amount": "177.316601565", + "slot": { + "period": 3685962, + "thread": 14 + } + }, + { + "amount": "177.316601570", + "slot": { + "period": 3932651, + "thread": 22 + } + } + ], + "AU1RnveEGao41tZ9jAnMTpQmMxKEbPg3j3ScZKdrfTqTP4cci1fQ": [ + { + "amount": "183.997143190", + "slot": { + "period": 92494, + "thread": 14 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 307610, + "thread": 3 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 470863, + "thread": 9 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 639527, + "thread": 22 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 784536, + "thread": 20 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 837803, + "thread": 26 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1126597, + "thread": 27 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1242468, + "thread": 17 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1366416, + "thread": 4 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1607110, + "thread": 5 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1691595, + "thread": 8 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 1828489, + "thread": 25 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2007344, + "thread": 9 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2174004, + "thread": 26 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2451514, + "thread": 0 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2514397, + "thread": 18 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2719235, + "thread": 1 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 2858226, + "thread": 6 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 3039580, + "thread": 5 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 3180812, + "thread": 27 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 3405306, + "thread": 30 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 3511422, + "thread": 31 + } + }, + { + "amount": "183.997143190", + "slot": { + "period": 3777574, + "thread": 1 + } + }, + { + "amount": "183.997143187", + "slot": { + "period": 3927490, + "thread": 0 + } + } + ], + "AU1RoY4ufuCw16NrfFjmSyPGQ4y9qFaLeUcEQFxkJS4QJaMnHX4k": [ + { + "amount": "98.395179950", + "slot": { + "period": 72063, + "thread": 28 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 289491, + "thread": 26 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 446811, + "thread": 29 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 553713, + "thread": 2 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 690618, + "thread": 24 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 857194, + "thread": 11 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1020197, + "thread": 17 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1285476, + "thread": 5 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1474130, + "thread": 14 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1609915, + "thread": 28 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1764287, + "thread": 18 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 1873714, + "thread": 30 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2080734, + "thread": 7 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2231258, + "thread": 13 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2423397, + "thread": 9 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2607373, + "thread": 25 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2649493, + "thread": 18 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2885798, + "thread": 2 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 2993545, + "thread": 18 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 3139218, + "thread": 9 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 3369071, + "thread": 3 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 3496262, + "thread": 2 + } + }, + { + "amount": "98.395179950", + "slot": { + "period": 3623575, + "thread": 29 + } + }, + { + "amount": "98.395179945", + "slot": { + "period": 3874074, + "thread": 20 + } + } + ], + "AU1RoxUWQey32SoCVyXjizhXyeJceYSDK7y4p5ATeWEo3RPqrZzB": [ + { + "amount": "234.969465290", + "slot": { + "period": 39937, + "thread": 29 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 173763, + "thread": 9 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 402707, + "thread": 9 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 546776, + "thread": 10 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 692131, + "thread": 19 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 838274, + "thread": 21 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1021079, + "thread": 9 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1256933, + "thread": 19 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1397554, + "thread": 6 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1625877, + "thread": 8 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1649527, + "thread": 5 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 1820562, + "thread": 11 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2124934, + "thread": 10 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2170147, + "thread": 22 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2451332, + "thread": 15 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2615412, + "thread": 28 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2648514, + "thread": 17 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 2846819, + "thread": 23 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 3093000, + "thread": 13 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 3208537, + "thread": 30 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 3356466, + "thread": 13 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 3475658, + "thread": 21 + } + }, + { + "amount": "234.969465290", + "slot": { + "period": 3702762, + "thread": 1 + } + }, + { + "amount": "234.969465301", + "slot": { + "period": 3921802, + "thread": 2 + } + } + ], + "AU1RqLHPaNv6k3End6Wo8bPRYFRoimuE39dKcCZHRBMFczaHPPLp": [ + { + "amount": "313.580260750", + "slot": { + "period": 88583, + "thread": 18 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 290178, + "thread": 31 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 337996, + "thread": 16 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 541542, + "thread": 19 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 705538, + "thread": 5 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 925372, + "thread": 2 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1021729, + "thread": 2 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1253278, + "thread": 24 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1345482, + "thread": 9 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1520937, + "thread": 15 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1761868, + "thread": 9 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 1881492, + "thread": 6 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2051601, + "thread": 14 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2254957, + "thread": 30 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2409537, + "thread": 22 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2503175, + "thread": 6 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2640342, + "thread": 15 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 2822003, + "thread": 15 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 3109078, + "thread": 0 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 3254089, + "thread": 8 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 3425628, + "thread": 10 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 3581002, + "thread": 21 + } + }, + { + "amount": "313.580260750", + "slot": { + "period": 3766345, + "thread": 2 + } + }, + { + "amount": "313.580260760", + "slot": { + "period": 3794730, + "thread": 19 + } + } + ], + "AU1RqPW2zcaeFoaCyURsjR5VEctAnBavgdkrrVondcmRcTmPhF9j": [ + { + "amount": "61.744842439", + "slot": { + "period": 77238, + "thread": 5 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 307054, + "thread": 17 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 354724, + "thread": 1 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 508675, + "thread": 30 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 769518, + "thread": 3 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 935545, + "thread": 8 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1147955, + "thread": 10 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1163853, + "thread": 20 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1472902, + "thread": 28 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1636279, + "thread": 29 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1769749, + "thread": 30 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 1956216, + "thread": 13 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2026112, + "thread": 24 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2234051, + "thread": 6 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2419224, + "thread": 3 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2505056, + "thread": 17 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2722787, + "thread": 18 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 2848603, + "thread": 23 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 3067333, + "thread": 29 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 3192362, + "thread": 31 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 3382982, + "thread": 7 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 3461814, + "thread": 21 + } + }, + { + "amount": "61.744842439", + "slot": { + "period": 3710170, + "thread": 9 + } + }, + { + "amount": "61.744842450", + "slot": { + "period": 3834472, + "thread": 7 + } + } + ], + "AU1RqSbDk1rbeodVEwspeoLhJAGjGFCGJLVDFeZ5eMPiyDRps9jc": [ + { + "amount": "78.682788783", + "slot": { + "period": 44954, + "thread": 24 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 189372, + "thread": 10 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 435062, + "thread": 20 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 647040, + "thread": 22 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 799648, + "thread": 1 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 880139, + "thread": 24 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1070029, + "thread": 12 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1198085, + "thread": 12 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1439534, + "thread": 7 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1537984, + "thread": 13 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1742708, + "thread": 27 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 1855780, + "thread": 17 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2044190, + "thread": 6 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2281910, + "thread": 19 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2346715, + "thread": 29 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2529532, + "thread": 27 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2630542, + "thread": 30 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 2872104, + "thread": 24 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 3115517, + "thread": 4 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 3236863, + "thread": 19 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 3370516, + "thread": 29 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 3526422, + "thread": 10 + } + }, + { + "amount": "78.682788783", + "slot": { + "period": 3724953, + "thread": 6 + } + }, + { + "amount": "78.682788772", + "slot": { + "period": 3901415, + "thread": 12 + } + } + ], + "AU1RqTvTZy1WzQ41Hq5RtEQJNo2XRizh9spzRGiwLrNvEaKiFMQr": [ + { + "amount": "145.579132720", + "slot": { + "period": 139546, + "thread": 31 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 188462, + "thread": 16 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 460091, + "thread": 12 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 642110, + "thread": 4 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 727896, + "thread": 6 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 934271, + "thread": 30 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1131785, + "thread": 4 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1228791, + "thread": 13 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1459018, + "thread": 21 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1502079, + "thread": 28 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1701890, + "thread": 19 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 1887034, + "thread": 0 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2051637, + "thread": 30 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2155453, + "thread": 22 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2325608, + "thread": 29 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2587724, + "thread": 29 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2676387, + "thread": 21 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 2846834, + "thread": 21 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 3110383, + "thread": 15 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 3243964, + "thread": 5 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 3289681, + "thread": 6 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 3542386, + "thread": 8 + } + }, + { + "amount": "145.579132720", + "slot": { + "period": 3749244, + "thread": 11 + } + }, + { + "amount": "145.579132708", + "slot": { + "period": 3800741, + "thread": 17 + } + } + ], + "AU1RqxhrcqbgFr3tt7pBe9QHxNrHGyyTN3GBeUBjLaWjCircYgb8": [ + { + "amount": "659.182898086", + "slot": { + "period": 13877, + "thread": 17 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 199153, + "thread": 29 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 341674, + "thread": 13 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 574845, + "thread": 17 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 774699, + "thread": 10 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 937385, + "thread": 28 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1041221, + "thread": 19 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1171544, + "thread": 5 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1415577, + "thread": 4 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1635473, + "thread": 4 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1693192, + "thread": 11 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 1881950, + "thread": 18 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2137206, + "thread": 31 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2181480, + "thread": 26 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2314206, + "thread": 9 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2590530, + "thread": 31 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2766984, + "thread": 14 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 2856191, + "thread": 7 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 3066810, + "thread": 10 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 3183521, + "thread": 18 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 3357223, + "thread": 2 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 3541173, + "thread": 28 + } + }, + { + "amount": "659.182898086", + "slot": { + "period": 3664788, + "thread": 17 + } + }, + { + "amount": "659.182898088", + "slot": { + "period": 3903300, + "thread": 6 + } + } + ], + "AU1Rt3j7ci6jRVrCsQRcpL8jgBFqJd2LRXJm4XVMivuFqHipbhxN": [ + { + "amount": "102.554750111", + "slot": { + "period": 70177, + "thread": 3 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 274319, + "thread": 18 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 455624, + "thread": 28 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 580160, + "thread": 16 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 697039, + "thread": 10 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 841977, + "thread": 15 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1112403, + "thread": 24 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1184515, + "thread": 15 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1470579, + "thread": 12 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1481326, + "thread": 7 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1674244, + "thread": 28 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 1822088, + "thread": 2 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2084869, + "thread": 19 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2287169, + "thread": 1 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2436372, + "thread": 12 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2611578, + "thread": 19 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2652362, + "thread": 28 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2871249, + "thread": 31 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 2987001, + "thread": 28 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 3235034, + "thread": 0 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 3381870, + "thread": 19 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 3570428, + "thread": 0 + } + }, + { + "amount": "102.554750111", + "slot": { + "period": 3689790, + "thread": 16 + } + }, + { + "amount": "102.554750102", + "slot": { + "period": 3931401, + "thread": 30 + } + } + ], + "AU1RurUL4fz8UydSGsmBoZHrmQDsb97XwwN4JkEgVzs99rEbtCvS": [ + { + "amount": "455.581533378", + "slot": { + "period": 11850, + "thread": 6 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 251533, + "thread": 5 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 393291, + "thread": 14 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 576826, + "thread": 14 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 713664, + "thread": 25 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 827506, + "thread": 18 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1022360, + "thread": 11 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1307422, + "thread": 17 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1420963, + "thread": 3 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1620340, + "thread": 0 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1714176, + "thread": 29 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 1959508, + "thread": 8 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2050342, + "thread": 17 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2240860, + "thread": 31 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2344350, + "thread": 13 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2570094, + "thread": 26 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2637048, + "thread": 4 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 2903251, + "thread": 21 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 3025647, + "thread": 9 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 3170768, + "thread": 25 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 3354428, + "thread": 13 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 3578347, + "thread": 24 + } + }, + { + "amount": "455.581533378", + "slot": { + "period": 3662140, + "thread": 11 + } + }, + { + "amount": "455.581533390", + "slot": { + "period": 3933638, + "thread": 28 + } + } + ], + "AU1Rv7dE2bjNUtq4M2VUyhiuybRu42wZ6HoWt5ziQb7Biu7SrRqL": [ + { + "amount": "144.066896609", + "slot": { + "period": 33710, + "thread": 10 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 207959, + "thread": 7 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 403950, + "thread": 11 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 578014, + "thread": 26 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 656991, + "thread": 30 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 908588, + "thread": 19 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1134542, + "thread": 8 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1187173, + "thread": 20 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1349041, + "thread": 17 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1626421, + "thread": 4 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1760456, + "thread": 27 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1944840, + "thread": 4 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 1993366, + "thread": 30 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 2269233, + "thread": 2 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 2336862, + "thread": 3 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 2491705, + "thread": 5 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 2720928, + "thread": 6 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 2806146, + "thread": 27 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 3033223, + "thread": 18 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 3231149, + "thread": 18 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 3308687, + "thread": 7 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 3601106, + "thread": 2 + } + }, + { + "amount": "144.066896609", + "slot": { + "period": 3660548, + "thread": 2 + } + }, + { + "amount": "144.066896603", + "slot": { + "period": 3896956, + "thread": 5 + } + } + ], + "AU1RvT7sgRxPWuUbaN6485kojiXaxZQ5huSgsByxN6YkrWpVwu4b": [ + { + "amount": "68.974642468", + "slot": { + "period": 162843, + "thread": 12 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 244481, + "thread": 25 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 441420, + "thread": 28 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 623078, + "thread": 16 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 688030, + "thread": 30 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 853335, + "thread": 23 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1113708, + "thread": 24 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1300845, + "thread": 6 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1331429, + "thread": 2 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1499162, + "thread": 26 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1687459, + "thread": 5 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 1820793, + "thread": 6 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2043916, + "thread": 0 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2226473, + "thread": 29 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2384371, + "thread": 21 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2573273, + "thread": 28 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2743100, + "thread": 28 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2804635, + "thread": 14 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 2984795, + "thread": 21 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 3216773, + "thread": 5 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 3308577, + "thread": 19 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 3615287, + "thread": 14 + } + }, + { + "amount": "68.974642468", + "slot": { + "period": 3717515, + "thread": 17 + } + }, + { + "amount": "68.974642473", + "slot": { + "period": 3840474, + "thread": 11 + } + } + ], + "AU1RwsMeixvipV9BdAmTwz5rs2dFHADkNadvdTsFkj6CMYzEUX4d": [ + { + "amount": "262.613086373", + "slot": { + "period": 166770, + "thread": 13 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 309908, + "thread": 14 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 473810, + "thread": 4 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 624783, + "thread": 21 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 655534, + "thread": 28 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 936868, + "thread": 22 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1055656, + "thread": 3 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1176481, + "thread": 9 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1359520, + "thread": 15 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1629601, + "thread": 4 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1746793, + "thread": 5 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1821212, + "thread": 25 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 1999980, + "thread": 7 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 2273181, + "thread": 31 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 2306133, + "thread": 31 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 2519623, + "thread": 13 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 2753853, + "thread": 29 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 2893615, + "thread": 3 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3016085, + "thread": 30 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3137483, + "thread": 29 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3297532, + "thread": 26 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3534816, + "thread": 29 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3693535, + "thread": 24 + } + }, + { + "amount": "262.613086373", + "slot": { + "period": 3817837, + "thread": 6 + } + } + ], + "AU1Rww8qDtkrSm6EWUy5uo7EpA25L9UDbSraBq43kBT7tyJJpynu": [ + { + "amount": "85.156092182", + "slot": { + "period": 101474, + "thread": 11 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 267351, + "thread": 7 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 395645, + "thread": 4 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 520244, + "thread": 31 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 731903, + "thread": 22 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 957822, + "thread": 29 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1015852, + "thread": 28 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1217430, + "thread": 15 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1341591, + "thread": 23 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1639152, + "thread": 4 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1730819, + "thread": 30 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 1833666, + "thread": 20 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2068147, + "thread": 26 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2162190, + "thread": 26 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2369783, + "thread": 25 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2498186, + "thread": 4 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2755068, + "thread": 25 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2875205, + "thread": 27 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 2958925, + "thread": 15 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 3221912, + "thread": 18 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 3336263, + "thread": 25 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 3470423, + "thread": 0 + } + }, + { + "amount": "85.156092182", + "slot": { + "period": 3643885, + "thread": 24 + } + }, + { + "amount": "85.156092191", + "slot": { + "period": 3834909, + "thread": 23 + } + } + ], + "AU1RxYFUf3FKUsGdEY3v8ZQA73e1xRuTr9wWvjq6X6vZ4xEZzbas": [ + { + "amount": "64.829110849", + "slot": { + "period": 143553, + "thread": 7 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 206633, + "thread": 8 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 373872, + "thread": 30 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 598675, + "thread": 12 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 699709, + "thread": 11 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 834261, + "thread": 7 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1123652, + "thread": 11 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1277153, + "thread": 19 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1351185, + "thread": 23 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1626178, + "thread": 10 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1789059, + "thread": 29 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 1813541, + "thread": 24 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2076440, + "thread": 18 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2207730, + "thread": 17 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2441024, + "thread": 25 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2561098, + "thread": 9 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2751064, + "thread": 31 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 2860336, + "thread": 4 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3043141, + "thread": 2 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3248246, + "thread": 6 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3340218, + "thread": 30 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3451842, + "thread": 2 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3688134, + "thread": 4 + } + }, + { + "amount": "64.829110849", + "slot": { + "period": 3896922, + "thread": 6 + } + } + ], + "AU1Rxqd1QdSu9B1mFve7pYfdEVp5oexmcz3RVv1AYowRsH2aQnDZ": [ + { + "amount": "64.207284264", + "slot": { + "period": 55316, + "thread": 9 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 291911, + "thread": 23 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 362902, + "thread": 21 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 495716, + "thread": 26 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 699724, + "thread": 2 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 965164, + "thread": 14 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1109908, + "thread": 2 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1295909, + "thread": 8 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1355796, + "thread": 28 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1499497, + "thread": 23 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1689457, + "thread": 16 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 1906652, + "thread": 6 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2085216, + "thread": 5 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2273532, + "thread": 3 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2350284, + "thread": 10 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2530487, + "thread": 16 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2789299, + "thread": 12 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 2873854, + "thread": 16 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 3019573, + "thread": 31 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 3165662, + "thread": 12 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 3364179, + "thread": 11 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 3452976, + "thread": 23 + } + }, + { + "amount": "64.207284264", + "slot": { + "period": 3727030, + "thread": 0 + } + }, + { + "amount": "64.207284276", + "slot": { + "period": 3849182, + "thread": 8 + } + } + ], + "AU1RzETvxvsoFYuMi5EWeF5msy5pcrNb2CCP5XQ141zbXtZ9ZKCa": [ + { + "amount": "153.306723762", + "slot": { + "period": 74378, + "thread": 31 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 220688, + "thread": 22 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 466923, + "thread": 6 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 651857, + "thread": 25 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 661907, + "thread": 19 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 898305, + "thread": 19 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1034193, + "thread": 26 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1201803, + "thread": 16 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1410971, + "thread": 30 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1620550, + "thread": 11 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1749412, + "thread": 0 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 1885171, + "thread": 17 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2136643, + "thread": 18 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2170206, + "thread": 1 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2445712, + "thread": 14 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2531142, + "thread": 8 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2694829, + "thread": 5 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 2897093, + "thread": 24 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 3016800, + "thread": 26 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 3252969, + "thread": 14 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 3369031, + "thread": 2 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 3520301, + "thread": 22 + } + }, + { + "amount": "153.306723762", + "slot": { + "period": 3656470, + "thread": 1 + } + }, + { + "amount": "153.306723763", + "slot": { + "period": 3837825, + "thread": 25 + } + } + ], + "AU1S1dCX251shiU9Tdf3AmZ5q6mggN1P6xuBVhELisxhy2pVRRCo": [ + { + "amount": "111.366062465", + "slot": { + "period": 20235, + "thread": 6 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 247935, + "thread": 6 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 444410, + "thread": 12 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 564340, + "thread": 8 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 714341, + "thread": 3 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 868353, + "thread": 11 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 983484, + "thread": 26 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 1251724, + "thread": 4 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 1417251, + "thread": 7 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 1501436, + "thread": 16 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 1705779, + "thread": 0 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 1887971, + "thread": 22 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2028351, + "thread": 11 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2208542, + "thread": 13 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2389048, + "thread": 29 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2527083, + "thread": 21 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2680670, + "thread": 3 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2854811, + "thread": 26 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 2993537, + "thread": 16 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 3208073, + "thread": 17 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 3361678, + "thread": 2 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 3453022, + "thread": 0 + } + }, + { + "amount": "111.366062465", + "slot": { + "period": 3625992, + "thread": 26 + } + }, + { + "amount": "111.366062467", + "slot": { + "period": 3929922, + "thread": 28 + } + } + ], + "AU1S35ykRqATGDf5tXvaNEKsuNYfjoSBKuEsV82HyD1XKRTHUAXT": [ + { + "amount": "154.617036887", + "slot": { + "period": 55498, + "thread": 7 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 285774, + "thread": 28 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 435870, + "thread": 29 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 524010, + "thread": 4 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 730073, + "thread": 2 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 912262, + "thread": 17 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1043435, + "thread": 23 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1262682, + "thread": 25 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1435546, + "thread": 29 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1580478, + "thread": 31 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1677496, + "thread": 7 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 1902114, + "thread": 18 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2112065, + "thread": 23 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2158082, + "thread": 5 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2352484, + "thread": 0 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2519762, + "thread": 25 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2778805, + "thread": 22 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 2897371, + "thread": 14 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 3042683, + "thread": 1 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 3221184, + "thread": 12 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 3395472, + "thread": 4 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 3455989, + "thread": 15 + } + }, + { + "amount": "154.617036887", + "slot": { + "period": 3733864, + "thread": 23 + } + }, + { + "amount": "154.617036892", + "slot": { + "period": 3946731, + "thread": 9 + } + } + ], + "AU1S3SHitxVXRPiRWWf35fiKeEfNxYfLaSGV44QdzmZ5gmuXE33k": [ + { + "amount": "127.139234741", + "slot": { + "period": 105975, + "thread": 1 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 178041, + "thread": 15 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 397380, + "thread": 17 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 557829, + "thread": 6 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 682495, + "thread": 10 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 909962, + "thread": 10 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1054585, + "thread": 2 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1265562, + "thread": 17 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1394268, + "thread": 3 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1549803, + "thread": 0 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1651216, + "thread": 7 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 1907721, + "thread": 18 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2013651, + "thread": 8 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2167661, + "thread": 16 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2319294, + "thread": 6 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2511599, + "thread": 23 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2680240, + "thread": 12 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 2891157, + "thread": 8 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 3066644, + "thread": 5 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 3214182, + "thread": 24 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 3444106, + "thread": 2 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 3576076, + "thread": 9 + } + }, + { + "amount": "127.139234741", + "slot": { + "period": 3632313, + "thread": 18 + } + }, + { + "amount": "127.139234748", + "slot": { + "period": 3797071, + "thread": 0 + } + } + ], + "AU1S3WrwbwmDDAs6HVKPy91GzLbxGqiGCiijTaqR8qpCumvhiEtS": [ + { + "amount": "248.647647044", + "slot": { + "period": 43706, + "thread": 20 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 195766, + "thread": 17 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 490426, + "thread": 16 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 518407, + "thread": 2 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 792723, + "thread": 18 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 902290, + "thread": 24 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1006381, + "thread": 7 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1224493, + "thread": 16 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1324160, + "thread": 9 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1512138, + "thread": 17 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1784457, + "thread": 14 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 1945839, + "thread": 2 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2004041, + "thread": 5 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2256174, + "thread": 2 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2448118, + "thread": 25 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2560170, + "thread": 17 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2778631, + "thread": 28 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 2806790, + "thread": 13 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 3051937, + "thread": 7 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 3282586, + "thread": 5 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 3319535, + "thread": 28 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 3478005, + "thread": 21 + } + }, + { + "amount": "248.647647044", + "slot": { + "period": 3709102, + "thread": 5 + } + }, + { + "amount": "248.647647038", + "slot": { + "period": 3912420, + "thread": 21 + } + } + ], + "AU1S3qMaH1Hnz9MDGjQbnzbbNfioJbWdxXasphboj6ZqPvVppuuo": [ + { + "amount": "299.003049862", + "slot": { + "period": 146959, + "thread": 31 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 242305, + "thread": 22 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 447943, + "thread": 26 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 596851, + "thread": 4 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 736043, + "thread": 0 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 858675, + "thread": 21 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1065303, + "thread": 6 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1165763, + "thread": 16 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1320257, + "thread": 9 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1574625, + "thread": 24 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1650638, + "thread": 21 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1941019, + "thread": 11 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 1978407, + "thread": 2 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 2262220, + "thread": 11 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 2335931, + "thread": 17 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 2565397, + "thread": 20 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 2684478, + "thread": 25 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 2949222, + "thread": 19 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 3100397, + "thread": 12 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 3240597, + "thread": 17 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 3434529, + "thread": 3 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 3595568, + "thread": 1 + } + }, + { + "amount": "299.003049862", + "slot": { + "period": 3637745, + "thread": 25 + } + }, + { + "amount": "299.003049850", + "slot": { + "period": 3799046, + "thread": 14 + } + } + ], + "AU1S6zGZ94W9qaQoh5d6HU1B6Mss96aSCJ8ERjrnipaC5k9WBXxC": [ + { + "amount": "315.753237865", + "slot": { + "period": 135834, + "thread": 17 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 237689, + "thread": 14 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 348036, + "thread": 4 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 642842, + "thread": 14 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 692874, + "thread": 31 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 924313, + "thread": 14 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1089285, + "thread": 15 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1256433, + "thread": 3 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1393200, + "thread": 21 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1571441, + "thread": 20 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1726409, + "thread": 5 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 1878483, + "thread": 17 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2051802, + "thread": 28 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2278927, + "thread": 13 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2402900, + "thread": 17 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2586032, + "thread": 14 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2669328, + "thread": 21 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2796150, + "thread": 18 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 2981025, + "thread": 15 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 3249878, + "thread": 4 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 3393180, + "thread": 9 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 3452884, + "thread": 5 + } + }, + { + "amount": "315.753237865", + "slot": { + "period": 3629820, + "thread": 9 + } + }, + { + "amount": "315.753237864", + "slot": { + "period": 3811753, + "thread": 25 + } + } + ], + "AU1S7wa52ioFJqU4q2o2jFNA2ayczDuLD9AY5k8bAPecEZ8HKK4s": [ + { + "amount": "542.638572388", + "slot": { + "period": 109413, + "thread": 29 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 185884, + "thread": 30 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 463558, + "thread": 19 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 637909, + "thread": 10 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 669064, + "thread": 18 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 857787, + "thread": 24 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 985389, + "thread": 23 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 1216347, + "thread": 29 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 1462713, + "thread": 31 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 1611905, + "thread": 28 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 1670417, + "thread": 17 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 1867660, + "thread": 11 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2065955, + "thread": 21 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2253417, + "thread": 25 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2302569, + "thread": 12 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2491944, + "thread": 8 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2747920, + "thread": 23 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 2872664, + "thread": 0 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 3114440, + "thread": 5 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 3285681, + "thread": 0 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 3433851, + "thread": 9 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 3550992, + "thread": 30 + } + }, + { + "amount": "542.638572388", + "slot": { + "period": 3675255, + "thread": 28 + } + }, + { + "amount": "542.638572394", + "slot": { + "period": 3794109, + "thread": 4 + } + } + ], + "AU1S8bGzWSrtwUo3wsAGLCCrpn1of7A7inta4Mx8TTdvqibisKjA": [ + { + "amount": "539.571996381", + "slot": { + "period": 50201, + "thread": 24 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 247351, + "thread": 14 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 438485, + "thread": 5 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 572348, + "thread": 13 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 784363, + "thread": 27 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 977862, + "thread": 10 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1106220, + "thread": 24 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1183506, + "thread": 1 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1426765, + "thread": 2 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1484931, + "thread": 4 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1806314, + "thread": 21 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 1855312, + "thread": 18 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2022134, + "thread": 22 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2273659, + "thread": 19 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2413461, + "thread": 20 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2504039, + "thread": 26 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2671582, + "thread": 21 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 2946207, + "thread": 29 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 3014371, + "thread": 1 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 3206079, + "thread": 14 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 3302643, + "thread": 25 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 3535687, + "thread": 29 + } + }, + { + "amount": "539.571996381", + "slot": { + "period": 3709663, + "thread": 14 + } + }, + { + "amount": "539.571996372", + "slot": { + "period": 3789513, + "thread": 20 + } + } + ], + "AU1S8djXGSWWy2b4jH5au6xn3rQGR7BsCRJiuF2YenQy48BMRbaY": [ + { + "amount": "103.802149345", + "slot": { + "period": 25013, + "thread": 28 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 254907, + "thread": 26 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 381269, + "thread": 7 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 653257, + "thread": 26 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 662130, + "thread": 14 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 916039, + "thread": 16 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1128825, + "thread": 7 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1170007, + "thread": 25 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1443891, + "thread": 19 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1545947, + "thread": 17 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1733547, + "thread": 30 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 1822411, + "thread": 10 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2027144, + "thread": 27 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2192811, + "thread": 3 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2422826, + "thread": 2 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2565482, + "thread": 6 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2706124, + "thread": 31 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 2853874, + "thread": 27 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 3002504, + "thread": 26 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 3257125, + "thread": 26 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 3407929, + "thread": 17 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 3553135, + "thread": 27 + } + }, + { + "amount": "103.802149345", + "slot": { + "period": 3648788, + "thread": 9 + } + }, + { + "amount": "103.802149339", + "slot": { + "period": 3937550, + "thread": 22 + } + } + ], + "AU1S97VXrmCD1mGNCC7Z8TmWRNybxaNyv9UHH4MC47cNGZRpLgSh": [ + { + "amount": "417.130774816", + "slot": { + "period": 74072, + "thread": 17 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 315367, + "thread": 28 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 476646, + "thread": 0 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 584087, + "thread": 31 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 774372, + "thread": 30 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 900100, + "thread": 5 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1047170, + "thread": 3 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1211048, + "thread": 21 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1369927, + "thread": 22 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1524530, + "thread": 29 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1681715, + "thread": 9 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 1810614, + "thread": 26 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2049190, + "thread": 3 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2254192, + "thread": 1 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2295977, + "thread": 5 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2517205, + "thread": 16 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2757704, + "thread": 2 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 2906043, + "thread": 17 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 3039484, + "thread": 14 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 3241151, + "thread": 0 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 3414748, + "thread": 27 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 3511438, + "thread": 23 + } + }, + { + "amount": "417.130774816", + "slot": { + "period": 3709290, + "thread": 27 + } + }, + { + "amount": "417.130774822", + "slot": { + "period": 3918566, + "thread": 25 + } + } + ], + "AU1S9RgKATcdd7T6bJNRutMWRC8eCx3Jib6zBXYrfZ2ZcjTEG6GF": [ + { + "amount": "331.905984849", + "slot": { + "period": 34977, + "thread": 8 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 257668, + "thread": 31 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 382204, + "thread": 7 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 553799, + "thread": 28 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 774626, + "thread": 30 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 968293, + "thread": 5 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1000748, + "thread": 6 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1256076, + "thread": 25 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1381899, + "thread": 21 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1591426, + "thread": 2 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1650756, + "thread": 25 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1876005, + "thread": 11 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 1992685, + "thread": 11 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2232892, + "thread": 30 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2430046, + "thread": 9 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2616049, + "thread": 9 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2701854, + "thread": 24 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2931408, + "thread": 3 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 2976497, + "thread": 6 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 3136745, + "thread": 7 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 3303199, + "thread": 24 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 3564632, + "thread": 10 + } + }, + { + "amount": "331.905984849", + "slot": { + "period": 3654599, + "thread": 6 + } + }, + { + "amount": "331.905984846", + "slot": { + "period": 3946916, + "thread": 18 + } + } + ], + "AU1S9XHjkCdaGjiQWdSXyq3PcK8dr6U9ZV8PjFoVrKU3NGZKWPJ5": [ + { + "amount": "286.849576491", + "slot": { + "period": 71193, + "thread": 16 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 320684, + "thread": 8 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 369538, + "thread": 1 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 592754, + "thread": 22 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 751349, + "thread": 18 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 915716, + "thread": 8 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1050133, + "thread": 29 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1184273, + "thread": 29 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1408991, + "thread": 9 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1645765, + "thread": 18 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1658097, + "thread": 14 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 1935778, + "thread": 11 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2126105, + "thread": 29 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2288829, + "thread": 11 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2446284, + "thread": 20 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2545348, + "thread": 3 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2677338, + "thread": 11 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 2947712, + "thread": 20 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 3097731, + "thread": 6 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 3282982, + "thread": 27 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 3396681, + "thread": 31 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 3591181, + "thread": 28 + } + }, + { + "amount": "286.849576491", + "slot": { + "period": 3722086, + "thread": 8 + } + }, + { + "amount": "286.849576486", + "slot": { + "period": 3939293, + "thread": 28 + } + } + ], + "AU1S9gZwo8rr3fG8sHo7kuXvZnazPsMPYmNxTyiF5AtDYgGjc8dz": [ + { + "amount": "547.865357100", + "slot": { + "period": 163817, + "thread": 31 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 205509, + "thread": 31 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 418347, + "thread": 9 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 582559, + "thread": 5 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 763469, + "thread": 8 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 828380, + "thread": 11 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 985486, + "thread": 10 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 1233501, + "thread": 25 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 1379047, + "thread": 24 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 1637616, + "thread": 14 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 1649938, + "thread": 28 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 1933463, + "thread": 12 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2066715, + "thread": 19 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2247012, + "thread": 3 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2400506, + "thread": 19 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2564458, + "thread": 18 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2718450, + "thread": 20 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 2817660, + "thread": 11 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 3051913, + "thread": 28 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 3176499, + "thread": 14 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 3439225, + "thread": 7 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 3457083, + "thread": 29 + } + }, + { + "amount": "547.865357100", + "slot": { + "period": 3708685, + "thread": 29 + } + }, + { + "amount": "547.865357107", + "slot": { + "period": 3841693, + "thread": 10 + } + } + ], + "AU1S9vQjU3BbmZWLqAQpiWTiX5GYhvXztdUPZ9nf6VRpS7EvWGUN": [ + { + "amount": "274.003715524", + "slot": { + "period": 66007, + "thread": 3 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 209673, + "thread": 23 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 469616, + "thread": 28 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 538584, + "thread": 3 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 766457, + "thread": 16 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 828233, + "thread": 15 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 997315, + "thread": 13 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1269166, + "thread": 21 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1358406, + "thread": 1 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1615211, + "thread": 9 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1766511, + "thread": 26 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1824094, + "thread": 18 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 1995122, + "thread": 12 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 2238500, + "thread": 2 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 2314665, + "thread": 21 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 2481771, + "thread": 4 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 2714624, + "thread": 26 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 2808533, + "thread": 28 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 3101063, + "thread": 15 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 3282836, + "thread": 2 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 3321626, + "thread": 27 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 3463563, + "thread": 30 + } + }, + { + "amount": "274.003715524", + "slot": { + "period": 3636896, + "thread": 9 + } + }, + { + "amount": "274.003715514", + "slot": { + "period": 3786693, + "thread": 14 + } + } + ], + "AU1SA1tr7wCF2uQyESnMtABFeJVfFUWTd1C26JSQJ9B6AgchgBeG": [ + { + "amount": "90.750894131", + "slot": { + "period": 116930, + "thread": 22 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 217676, + "thread": 1 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 416077, + "thread": 21 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 557787, + "thread": 28 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 802633, + "thread": 29 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 956844, + "thread": 2 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1063504, + "thread": 22 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1280856, + "thread": 31 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1412108, + "thread": 30 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1501218, + "thread": 25 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1723045, + "thread": 2 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 1912867, + "thread": 21 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2132397, + "thread": 8 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2227523, + "thread": 6 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2344261, + "thread": 12 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2534618, + "thread": 17 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2639131, + "thread": 27 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 2875061, + "thread": 16 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 3066079, + "thread": 12 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 3187451, + "thread": 24 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 3428685, + "thread": 1 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 3570752, + "thread": 21 + } + }, + { + "amount": "90.750894131", + "slot": { + "period": 3632059, + "thread": 30 + } + }, + { + "amount": "90.750894140", + "slot": { + "period": 3891600, + "thread": 27 + } + } + ], + "AU1SAkVzUFnUHoxhvxq34GkSJxfa5kfijiXF5ZJPPi23ZWpTWGRD": [ + { + "amount": "117.417387087", + "slot": { + "period": 17486, + "thread": 13 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 272981, + "thread": 17 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 463642, + "thread": 19 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 590047, + "thread": 28 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 756020, + "thread": 17 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 843001, + "thread": 0 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1126803, + "thread": 8 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1251347, + "thread": 0 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1368837, + "thread": 10 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1622879, + "thread": 15 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1724025, + "thread": 7 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 1924002, + "thread": 5 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2138631, + "thread": 18 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2288425, + "thread": 22 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2338937, + "thread": 18 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2529782, + "thread": 14 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2764733, + "thread": 0 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2804119, + "thread": 21 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 2963346, + "thread": 29 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 3236969, + "thread": 9 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 3346458, + "thread": 15 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 3477615, + "thread": 28 + } + }, + { + "amount": "117.417387087", + "slot": { + "period": 3747983, + "thread": 10 + } + }, + { + "amount": "117.417387082", + "slot": { + "period": 3864598, + "thread": 22 + } + } + ], + "AU1SBtNCYF3KPCDCJgrtzL1BZbDbeWYyqSit3DDuhWfYCUc738Qp": [ + { + "amount": "550.894429692", + "slot": { + "period": 37880, + "thread": 15 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 305598, + "thread": 30 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 362679, + "thread": 31 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 625745, + "thread": 12 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 792476, + "thread": 19 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 862419, + "thread": 18 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1079188, + "thread": 16 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1238559, + "thread": 1 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1471651, + "thread": 9 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1505762, + "thread": 15 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1720085, + "thread": 6 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 1843509, + "thread": 9 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2007650, + "thread": 8 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2215458, + "thread": 26 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2373864, + "thread": 12 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2617999, + "thread": 10 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2696881, + "thread": 13 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 2846209, + "thread": 4 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 3115885, + "thread": 7 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 3234667, + "thread": 18 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 3294373, + "thread": 21 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 3457160, + "thread": 21 + } + }, + { + "amount": "550.894429692", + "slot": { + "period": 3745829, + "thread": 25 + } + }, + { + "amount": "550.894429686", + "slot": { + "period": 3891619, + "thread": 21 + } + } + ], + "AU1SC9hVYpHB26iLVrCMVijv2SSJX9fh5m33YyP2AjJ5R7CNgXMd": [ + { + "amount": "137.002681788", + "slot": { + "period": 19416, + "thread": 26 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 175268, + "thread": 11 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 332963, + "thread": 5 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 570561, + "thread": 5 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 774418, + "thread": 7 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 844296, + "thread": 20 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1149139, + "thread": 4 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1238023, + "thread": 26 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1342713, + "thread": 22 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1525657, + "thread": 15 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1724635, + "thread": 11 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 1927820, + "thread": 13 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2074080, + "thread": 19 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2160614, + "thread": 1 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2395854, + "thread": 26 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2597832, + "thread": 28 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2778008, + "thread": 14 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2810424, + "thread": 24 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 2966312, + "thread": 22 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 3215199, + "thread": 13 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 3373329, + "thread": 19 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 3492977, + "thread": 17 + } + }, + { + "amount": "137.002681788", + "slot": { + "period": 3770510, + "thread": 22 + } + }, + { + "amount": "137.002681782", + "slot": { + "period": 3824201, + "thread": 10 + } + } + ], + "AU1SCYbdZQvHGDj2sMUH2aidU5EJS6QuhH9qxdcHKyRZd9Sgy66B": [ + { + "amount": "285.882946271", + "slot": { + "period": 117657, + "thread": 8 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 226707, + "thread": 15 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 413860, + "thread": 23 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 617183, + "thread": 2 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 677864, + "thread": 1 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 877464, + "thread": 9 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1050612, + "thread": 23 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1274362, + "thread": 11 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1460138, + "thread": 23 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1612998, + "thread": 5 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1745540, + "thread": 10 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 1877448, + "thread": 12 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2027212, + "thread": 11 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2277011, + "thread": 12 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2429368, + "thread": 18 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2531753, + "thread": 7 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2696257, + "thread": 5 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 2914601, + "thread": 3 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 3104376, + "thread": 0 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 3126852, + "thread": 19 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 3429062, + "thread": 18 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 3523129, + "thread": 15 + } + }, + { + "amount": "285.882946271", + "slot": { + "period": 3705400, + "thread": 15 + } + }, + { + "amount": "285.882946280", + "slot": { + "period": 3939800, + "thread": 12 + } + } + ], + "AU1SCiYJgFLTCMDcXDxgyipWZoCzxx4ZFGH6EYhSBQ21DBkFVSAk": [ + { + "amount": "86.781460713", + "slot": { + "period": 103438, + "thread": 0 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 284971, + "thread": 0 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 453468, + "thread": 16 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 572725, + "thread": 4 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 683195, + "thread": 10 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 965865, + "thread": 2 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1094224, + "thread": 15 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1287453, + "thread": 9 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1407059, + "thread": 13 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1596249, + "thread": 28 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1685309, + "thread": 13 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1858778, + "thread": 6 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 1978713, + "thread": 16 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 2279200, + "thread": 2 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 2444415, + "thread": 14 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 2613360, + "thread": 24 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 2705872, + "thread": 14 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 2846476, + "thread": 2 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 3085637, + "thread": 13 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 3127009, + "thread": 5 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 3299451, + "thread": 27 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 3495958, + "thread": 29 + } + }, + { + "amount": "86.781460713", + "slot": { + "period": 3666225, + "thread": 18 + } + }, + { + "amount": "86.781460710", + "slot": { + "period": 3914961, + "thread": 5 + } + } + ], + "AU1SD8Gg7Ss4qmssE2zkVkf1EzpkQ52sjRJgtYhUbDbAzJxAW12t": [ + { + "amount": "289.364892660", + "slot": { + "period": 80943, + "thread": 13 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 210066, + "thread": 11 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 419841, + "thread": 8 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 494474, + "thread": 29 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 818297, + "thread": 31 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 880503, + "thread": 5 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1077955, + "thread": 0 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1214609, + "thread": 26 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1355883, + "thread": 20 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1558131, + "thread": 0 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1805279, + "thread": 28 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 1932459, + "thread": 25 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2040517, + "thread": 20 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2242780, + "thread": 15 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2330464, + "thread": 6 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2523523, + "thread": 2 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2715297, + "thread": 8 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 2859573, + "thread": 3 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 3014176, + "thread": 0 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 3270773, + "thread": 19 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 3352036, + "thread": 2 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 3522205, + "thread": 6 + } + }, + { + "amount": "289.364892660", + "slot": { + "period": 3679213, + "thread": 12 + } + }, + { + "amount": "289.364892658", + "slot": { + "period": 3841301, + "thread": 15 + } + } + ], + "AU1SDK723VmJVytZ4Uk2hT5BUmr5z8oraiXDbCWTaaMv8AeWC8xd": [ + { + "amount": "435.573181707", + "slot": { + "period": 146220, + "thread": 7 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 186103, + "thread": 18 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 471926, + "thread": 12 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 597788, + "thread": 27 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 801746, + "thread": 3 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 893314, + "thread": 10 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1099247, + "thread": 24 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1300087, + "thread": 18 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1386657, + "thread": 29 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1543900, + "thread": 20 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1684577, + "thread": 5 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 1847189, + "thread": 16 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2103228, + "thread": 6 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2281619, + "thread": 10 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2309727, + "thread": 10 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2476210, + "thread": 18 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2660666, + "thread": 24 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2863489, + "thread": 30 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 2979279, + "thread": 7 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 3261359, + "thread": 13 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 3331221, + "thread": 12 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 3521333, + "thread": 11 + } + }, + { + "amount": "435.573181707", + "slot": { + "period": 3745708, + "thread": 14 + } + }, + { + "amount": "435.573181700", + "slot": { + "period": 3795629, + "thread": 3 + } + } + ], + "AU1SDuVUxZpoKrZLfH6TVTWmv5PxudjwtRdubMp6zCETdmyDMHjo": [ + { + "amount": "169.109459844", + "slot": { + "period": 126242, + "thread": 29 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 182251, + "thread": 3 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 469095, + "thread": 3 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 530662, + "thread": 19 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 668151, + "thread": 25 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 961975, + "thread": 0 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1022687, + "thread": 28 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1165027, + "thread": 22 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1343748, + "thread": 2 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1604648, + "thread": 4 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1667306, + "thread": 22 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 1973195, + "thread": 12 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2141590, + "thread": 22 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2194810, + "thread": 16 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2423500, + "thread": 21 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2608254, + "thread": 1 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2634181, + "thread": 13 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 2889364, + "thread": 19 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 3081137, + "thread": 28 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 3139786, + "thread": 13 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 3417163, + "thread": 4 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 3605311, + "thread": 23 + } + }, + { + "amount": "169.109459844", + "slot": { + "period": 3650477, + "thread": 12 + } + }, + { + "amount": "169.109459838", + "slot": { + "period": 3796689, + "thread": 17 + } + } + ], + "AU1SDyBA3pPTeLqzxdLw8uY3paDRorGv6Hy995L4fXBqiXNws2kw": [ + { + "amount": "260.456992232", + "slot": { + "period": 11274, + "thread": 26 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 315845, + "thread": 2 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 366941, + "thread": 22 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 607939, + "thread": 16 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 730084, + "thread": 9 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 934124, + "thread": 11 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1049166, + "thread": 24 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1292332, + "thread": 7 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1342324, + "thread": 14 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1563993, + "thread": 18 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1731878, + "thread": 26 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1873109, + "thread": 25 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 1984212, + "thread": 10 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 2155960, + "thread": 12 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 2347132, + "thread": 28 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 2516004, + "thread": 27 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 2653319, + "thread": 7 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 2870339, + "thread": 12 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 3040270, + "thread": 8 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 3193141, + "thread": 24 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 3357309, + "thread": 21 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 3612413, + "thread": 12 + } + }, + { + "amount": "260.456992232", + "slot": { + "period": 3636741, + "thread": 23 + } + }, + { + "amount": "260.456992241", + "slot": { + "period": 3901609, + "thread": 0 + } + } + ], + "AU1SEzwaYJ8feVaLv5v6PLMdc7DhDyo5bT36VUk2sYzT5FF85o7h": [ + { + "amount": "467.503802175", + "slot": { + "period": 14795, + "thread": 20 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 245996, + "thread": 13 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 380233, + "thread": 26 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 653089, + "thread": 18 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 738251, + "thread": 0 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 822972, + "thread": 19 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 996586, + "thread": 24 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 1283988, + "thread": 29 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 1398646, + "thread": 9 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 1490130, + "thread": 19 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 1666065, + "thread": 24 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 1936262, + "thread": 7 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2131819, + "thread": 26 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2157577, + "thread": 18 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2356388, + "thread": 6 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2587208, + "thread": 12 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2722747, + "thread": 17 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 2806070, + "thread": 24 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 3057303, + "thread": 21 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 3225278, + "thread": 28 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 3340714, + "thread": 0 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 3513897, + "thread": 2 + } + }, + { + "amount": "467.503802175", + "slot": { + "period": 3722537, + "thread": 6 + } + }, + { + "amount": "467.503802164", + "slot": { + "period": 3917770, + "thread": 17 + } + } + ], + "AU1SFt4sCUKcvTmyP8DnXvyZzvLjyGEHx8yuJnCxxcoHDEfc3c2W": [ + { + "amount": "165.360097154", + "slot": { + "period": 145633, + "thread": 6 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 236346, + "thread": 15 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 457172, + "thread": 24 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 647776, + "thread": 25 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 689362, + "thread": 5 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 939709, + "thread": 25 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1131954, + "thread": 15 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1156751, + "thread": 7 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1402541, + "thread": 15 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1627031, + "thread": 26 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1722095, + "thread": 12 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 1887500, + "thread": 22 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2075348, + "thread": 18 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2244892, + "thread": 25 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2458507, + "thread": 13 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2616238, + "thread": 24 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2707646, + "thread": 0 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 2851668, + "thread": 4 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 3110853, + "thread": 12 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 3153498, + "thread": 16 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 3427805, + "thread": 22 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 3612191, + "thread": 12 + } + }, + { + "amount": "165.360097154", + "slot": { + "period": 3700416, + "thread": 1 + } + }, + { + "amount": "165.360097143", + "slot": { + "period": 3861089, + "thread": 28 + } + } + ], + "AU1SGKMHjBWm7jCCiyTRksUNBVhj7N6MUCBNbHM7cGAPEtqzjfJt": [ + { + "amount": "115.003418727", + "slot": { + "period": 58069, + "thread": 22 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 300074, + "thread": 22 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 489752, + "thread": 26 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 546985, + "thread": 0 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 697595, + "thread": 19 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 937044, + "thread": 29 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1053199, + "thread": 26 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1224274, + "thread": 3 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1464086, + "thread": 14 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1612705, + "thread": 24 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1789878, + "thread": 11 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 1952134, + "thread": 22 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2096281, + "thread": 8 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2220543, + "thread": 15 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2374470, + "thread": 15 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2514473, + "thread": 17 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2717136, + "thread": 15 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2921862, + "thread": 26 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 2971711, + "thread": 7 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 3250514, + "thread": 26 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 3386303, + "thread": 19 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 3463784, + "thread": 18 + } + }, + { + "amount": "115.003418727", + "slot": { + "period": 3620315, + "thread": 8 + } + }, + { + "amount": "115.003418728", + "slot": { + "period": 3860537, + "thread": 3 + } + } + ], + "AU1SGY3rkCQozhxLULwC5LP7Bg7h1HJiXx7ky5caoE46xpW7HYaR": [ + { + "amount": "204.891110429", + "slot": { + "period": 153222, + "thread": 22 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 236730, + "thread": 1 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 470871, + "thread": 2 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 572955, + "thread": 24 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 698848, + "thread": 22 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 908411, + "thread": 13 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1097745, + "thread": 14 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1253358, + "thread": 17 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1391266, + "thread": 14 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1626836, + "thread": 17 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1805269, + "thread": 20 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 1903378, + "thread": 10 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2110110, + "thread": 3 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2204158, + "thread": 11 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2308089, + "thread": 28 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2544780, + "thread": 0 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2662050, + "thread": 31 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2908735, + "thread": 28 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 2985683, + "thread": 31 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 3286331, + "thread": 21 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 3304463, + "thread": 30 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 3588381, + "thread": 8 + } + }, + { + "amount": "204.891110429", + "slot": { + "period": 3725946, + "thread": 24 + } + }, + { + "amount": "204.891110435", + "slot": { + "period": 3805993, + "thread": 24 + } + } + ], + "AU1SGaBL9NVbHB6jfRAXXsU4jLnEeyxuHVCRwt6Cosga4dBbW3HB": [ + { + "amount": "340.033750243", + "slot": { + "period": 116855, + "thread": 7 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 169281, + "thread": 7 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 449381, + "thread": 31 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 643478, + "thread": 21 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 753368, + "thread": 25 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 866772, + "thread": 10 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1144532, + "thread": 10 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1269438, + "thread": 17 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1338581, + "thread": 8 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1486553, + "thread": 10 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1770627, + "thread": 13 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 1877575, + "thread": 10 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2016001, + "thread": 12 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2164418, + "thread": 30 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2345590, + "thread": 22 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2519717, + "thread": 26 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2715990, + "thread": 12 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2914422, + "thread": 18 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 2992241, + "thread": 3 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 3184564, + "thread": 24 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 3322790, + "thread": 2 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 3495638, + "thread": 6 + } + }, + { + "amount": "340.033750243", + "slot": { + "period": 3763908, + "thread": 21 + } + }, + { + "amount": "340.033750253", + "slot": { + "period": 3795183, + "thread": 5 + } + } + ], + "AU1SH4jyQRwNHpf8jNpVuU7t8vkt7hAHk42okfFSUZrtLv5HXUUu": [ + { + "amount": "188.425488290", + "slot": { + "period": 106135, + "thread": 20 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 189614, + "thread": 17 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 398334, + "thread": 4 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 526054, + "thread": 30 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 700267, + "thread": 2 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 913762, + "thread": 11 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1111454, + "thread": 0 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1251130, + "thread": 31 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1431319, + "thread": 5 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1569062, + "thread": 17 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1785610, + "thread": 17 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1892840, + "thread": 21 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 1980974, + "thread": 20 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2255701, + "thread": 11 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2421781, + "thread": 26 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2609972, + "thread": 15 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2783523, + "thread": 15 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2829056, + "thread": 14 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 2962855, + "thread": 22 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 3167401, + "thread": 19 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 3388503, + "thread": 10 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 3573894, + "thread": 29 + } + }, + { + "amount": "188.425488290", + "slot": { + "period": 3708500, + "thread": 31 + } + }, + { + "amount": "188.425488284", + "slot": { + "period": 3945110, + "thread": 29 + } + } + ], + "AU1SHin2MoJ9YxDM2iXm3j38eGwccn2c9a9hCQgdE2dRbyfcpszC": [ + { + "amount": "208.220140297", + "slot": { + "period": 42878, + "thread": 1 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 283061, + "thread": 29 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 426683, + "thread": 5 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 562363, + "thread": 31 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 681377, + "thread": 9 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 959890, + "thread": 11 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1005936, + "thread": 30 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1317323, + "thread": 17 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1411919, + "thread": 21 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1606955, + "thread": 28 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1722180, + "thread": 28 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 1819992, + "thread": 19 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2039008, + "thread": 29 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2251723, + "thread": 14 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2302990, + "thread": 7 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2525934, + "thread": 7 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2654331, + "thread": 10 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2946859, + "thread": 9 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 2975136, + "thread": 5 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 3222941, + "thread": 27 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 3298849, + "thread": 22 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 3494728, + "thread": 28 + } + }, + { + "amount": "208.220140297", + "slot": { + "period": 3727144, + "thread": 18 + } + }, + { + "amount": "208.220140293", + "slot": { + "period": 3840323, + "thread": 20 + } + } + ], + "AU1SJGK6z94emHHgpPeGR62vKSMNBK1DxBqvdi5HwxhLjGajb4aJ": [ + { + "amount": "69.735462595", + "slot": { + "period": 105349, + "thread": 25 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 299026, + "thread": 13 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 480027, + "thread": 21 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 522852, + "thread": 18 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 769397, + "thread": 31 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 859233, + "thread": 22 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1009038, + "thread": 15 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1265075, + "thread": 22 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1368803, + "thread": 24 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1517373, + "thread": 3 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1670317, + "thread": 22 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 1861300, + "thread": 13 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2066148, + "thread": 15 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2157862, + "thread": 18 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2402666, + "thread": 20 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2617640, + "thread": 26 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2630632, + "thread": 23 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 2849996, + "thread": 22 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 3023045, + "thread": 5 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 3251272, + "thread": 27 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 3399717, + "thread": 0 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 3539283, + "thread": 3 + } + }, + { + "amount": "69.735462595", + "slot": { + "period": 3662316, + "thread": 23 + } + }, + { + "amount": "69.735462598", + "slot": { + "period": 3812327, + "thread": 19 + } + } + ], + "AU1SJfZr3Mr1kF5gPWZoJ9unhYFuVKPrjqhqdD4frYVJkS6wrEvG": [ + { + "amount": "117.052410161", + "slot": { + "period": 109432, + "thread": 14 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 297994, + "thread": 1 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 347640, + "thread": 10 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 513046, + "thread": 13 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 720130, + "thread": 18 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 911646, + "thread": 24 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1067487, + "thread": 19 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1266304, + "thread": 17 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1458036, + "thread": 22 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1602525, + "thread": 17 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1706330, + "thread": 4 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 1829685, + "thread": 25 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2043761, + "thread": 6 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2197196, + "thread": 22 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2304509, + "thread": 23 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2527899, + "thread": 22 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2716383, + "thread": 27 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 2800981, + "thread": 25 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 3033940, + "thread": 23 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 3253072, + "thread": 5 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 3379965, + "thread": 15 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 3586824, + "thread": 23 + } + }, + { + "amount": "117.052410161", + "slot": { + "period": 3682101, + "thread": 26 + } + }, + { + "amount": "117.052410162", + "slot": { + "period": 3916696, + "thread": 22 + } + } + ], + "AU1SJfcaeEnipxJrsVC5NfVsSZTDqYdxAyuCxQY6656FYztzAtJv": [ + { + "amount": "199.889587870", + "slot": { + "period": 58416, + "thread": 20 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 300854, + "thread": 11 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 429017, + "thread": 25 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 623121, + "thread": 22 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 735541, + "thread": 13 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 979290, + "thread": 9 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1007050, + "thread": 29 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1301264, + "thread": 23 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1430103, + "thread": 28 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1527192, + "thread": 10 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1739220, + "thread": 17 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 1830565, + "thread": 16 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2118758, + "thread": 10 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2235324, + "thread": 31 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2421094, + "thread": 23 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2468797, + "thread": 29 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2696599, + "thread": 3 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 2894924, + "thread": 9 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 3110313, + "thread": 6 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 3232360, + "thread": 9 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 3305658, + "thread": 9 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 3498366, + "thread": 29 + } + }, + { + "amount": "199.889587870", + "slot": { + "period": 3719296, + "thread": 1 + } + }, + { + "amount": "199.889587859", + "slot": { + "period": 3904683, + "thread": 26 + } + } + ], + "AU1SJmSzMmw517nn4KhutV8asrNPZV5jyjaorjU9wbWrgu6dcMXZ": [ + { + "amount": "144.382536346", + "slot": { + "period": 62077, + "thread": 16 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 199462, + "thread": 20 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 410820, + "thread": 25 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 551527, + "thread": 8 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 796275, + "thread": 24 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 909302, + "thread": 7 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1032698, + "thread": 18 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1214157, + "thread": 22 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1404855, + "thread": 15 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1645323, + "thread": 20 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1682966, + "thread": 6 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 1920518, + "thread": 9 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2070553, + "thread": 4 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2145080, + "thread": 31 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2410776, + "thread": 16 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2617191, + "thread": 12 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2788098, + "thread": 6 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 2796013, + "thread": 27 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 3043276, + "thread": 6 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 3285128, + "thread": 18 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 3332723, + "thread": 12 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 3483944, + "thread": 14 + } + }, + { + "amount": "144.382536346", + "slot": { + "period": 3688426, + "thread": 22 + } + }, + { + "amount": "144.382536357", + "slot": { + "period": 3864162, + "thread": 14 + } + } + ], + "AU1SJpL2kZkjSv7QGHmFEtR88y5yoXyuK78h1FvqefYjsse4c3jC": [ + { + "amount": "216.877694074", + "slot": { + "period": 160911, + "thread": 31 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 171898, + "thread": 7 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 437708, + "thread": 8 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 596842, + "thread": 24 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 664205, + "thread": 0 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 831205, + "thread": 11 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1083647, + "thread": 30 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1278054, + "thread": 11 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1463555, + "thread": 25 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1518040, + "thread": 0 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1760893, + "thread": 18 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 1898087, + "thread": 25 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2106381, + "thread": 19 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2265356, + "thread": 4 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2339012, + "thread": 13 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2582292, + "thread": 26 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2648390, + "thread": 9 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 2945096, + "thread": 31 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 3003972, + "thread": 17 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 3159473, + "thread": 26 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 3396571, + "thread": 25 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 3577179, + "thread": 0 + } + }, + { + "amount": "216.877694074", + "slot": { + "period": 3767984, + "thread": 17 + } + }, + { + "amount": "216.877694070", + "slot": { + "period": 3842556, + "thread": 11 + } + } + ], + "AU1SJyh5MY8oksFa1MyN62P3kKjyw1echycpXtxrfTxCThfP4hcL": [ + { + "amount": "223.330553612", + "slot": { + "period": 20663, + "thread": 8 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 284079, + "thread": 10 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 441221, + "thread": 24 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 508773, + "thread": 29 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 733744, + "thread": 27 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 877273, + "thread": 12 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1099810, + "thread": 31 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1181437, + "thread": 29 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1344723, + "thread": 1 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1642463, + "thread": 24 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1706511, + "thread": 14 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 1937238, + "thread": 6 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2074192, + "thread": 9 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2200707, + "thread": 11 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2325292, + "thread": 26 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2569243, + "thread": 5 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2705117, + "thread": 31 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 2943599, + "thread": 15 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 3001164, + "thread": 17 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 3178688, + "thread": 0 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 3364453, + "thread": 22 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 3557607, + "thread": 2 + } + }, + { + "amount": "223.330553612", + "slot": { + "period": 3675362, + "thread": 27 + } + }, + { + "amount": "223.330553610", + "slot": { + "period": 3945462, + "thread": 20 + } + } + ], + "AU1SKEfPxDbPdPeTC4UWvyFFKR448nML4TgvVPUnUwwSN5agFKpM": [ + { + "amount": "355.527187621", + "slot": { + "period": 13835, + "thread": 30 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 253590, + "thread": 29 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 380443, + "thread": 26 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 552210, + "thread": 0 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 693031, + "thread": 3 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 831328, + "thread": 26 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1129885, + "thread": 30 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1246181, + "thread": 0 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1367150, + "thread": 14 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1594373, + "thread": 24 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1700724, + "thread": 5 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1853512, + "thread": 30 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 1996459, + "thread": 11 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 2207656, + "thread": 8 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 2428132, + "thread": 24 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 2561028, + "thread": 22 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 2680361, + "thread": 21 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 2919294, + "thread": 8 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 3033617, + "thread": 1 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 3242896, + "thread": 11 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 3432455, + "thread": 16 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 3472782, + "thread": 0 + } + }, + { + "amount": "355.527187621", + "slot": { + "period": 3652712, + "thread": 3 + } + }, + { + "amount": "355.527187615", + "slot": { + "period": 3870453, + "thread": 2 + } + } + ], + "AU1SKFKjma8ejRaijmVbKiAkaTxFbipYP5L8r83hFJu6wxGwWmey": [ + { + "amount": "154.712308860", + "slot": { + "period": 47372, + "thread": 15 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 196548, + "thread": 21 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 424565, + "thread": 30 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 521989, + "thread": 3 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 692023, + "thread": 13 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 961230, + "thread": 31 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1124238, + "thread": 23 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1204938, + "thread": 27 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1460509, + "thread": 24 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1508066, + "thread": 17 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1711025, + "thread": 15 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 1856993, + "thread": 12 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2089413, + "thread": 29 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2273693, + "thread": 16 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2389662, + "thread": 31 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2492901, + "thread": 16 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2674655, + "thread": 2 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 2899718, + "thread": 20 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 3050352, + "thread": 22 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 3148346, + "thread": 10 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 3368599, + "thread": 16 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 3472737, + "thread": 11 + } + }, + { + "amount": "154.712308860", + "slot": { + "period": 3719813, + "thread": 1 + } + }, + { + "amount": "154.712308848", + "slot": { + "period": 3937187, + "thread": 3 + } + } + ], + "AU1SKqjzAWrARBJf7GAUPabFbtCJu7W3fE7vNzsb59QYyUftN1R9": [ + { + "amount": "378.135468877", + "slot": { + "period": 151090, + "thread": 7 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 182800, + "thread": 5 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 325352, + "thread": 29 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 625975, + "thread": 16 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 781006, + "thread": 3 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 830745, + "thread": 9 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1116231, + "thread": 19 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1247535, + "thread": 27 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1430762, + "thread": 19 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1492065, + "thread": 14 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1769176, + "thread": 22 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 1899962, + "thread": 18 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2014388, + "thread": 30 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2236433, + "thread": 26 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2371446, + "thread": 5 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2520200, + "thread": 10 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2663697, + "thread": 9 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 2796210, + "thread": 3 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 3004942, + "thread": 29 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 3252846, + "thread": 26 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 3367168, + "thread": 17 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 3475724, + "thread": 24 + } + }, + { + "amount": "378.135468877", + "slot": { + "period": 3680812, + "thread": 10 + } + }, + { + "amount": "378.135468871", + "slot": { + "period": 3921380, + "thread": 9 + } + } + ], + "AU1SLkuspnHxRxs6yFJWWUzoBxUZ9JxdDht18qR3WbMG18KSaS1K": [ + { + "amount": "286.182614728", + "slot": { + "period": 151362, + "thread": 10 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 180455, + "thread": 17 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 412258, + "thread": 29 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 517156, + "thread": 28 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 673114, + "thread": 19 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 896886, + "thread": 16 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 997422, + "thread": 8 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 1270006, + "thread": 25 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 1417362, + "thread": 18 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 1638072, + "thread": 17 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 1753214, + "thread": 8 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 1959436, + "thread": 12 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2042924, + "thread": 0 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2200413, + "thread": 17 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2461819, + "thread": 17 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2540300, + "thread": 14 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2690307, + "thread": 0 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 2866178, + "thread": 29 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 3034698, + "thread": 20 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 3223954, + "thread": 29 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 3388150, + "thread": 30 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 3459755, + "thread": 23 + } + }, + { + "amount": "286.182614728", + "slot": { + "period": 3670792, + "thread": 14 + } + }, + { + "amount": "286.182614729", + "slot": { + "period": 3908172, + "thread": 9 + } + } + ], + "AU1SLpvAgLJNjqdVbi2FQwCkjznPxmCmCRKHyaUs4nPfYmqGomyK": [ + { + "amount": "376.216165738", + "slot": { + "period": 112141, + "thread": 17 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 220146, + "thread": 15 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 387982, + "thread": 17 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 605836, + "thread": 19 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 805959, + "thread": 1 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 944264, + "thread": 9 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1019448, + "thread": 20 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1163598, + "thread": 1 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1356919, + "thread": 12 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1542948, + "thread": 3 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1651157, + "thread": 20 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 1879206, + "thread": 23 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2002847, + "thread": 16 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2212865, + "thread": 25 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2377994, + "thread": 27 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2612496, + "thread": 16 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2633634, + "thread": 19 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 2853002, + "thread": 0 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 3072338, + "thread": 3 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 3170015, + "thread": 14 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 3377944, + "thread": 20 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 3479655, + "thread": 29 + } + }, + { + "amount": "376.216165738", + "slot": { + "period": 3663902, + "thread": 21 + } + }, + { + "amount": "376.216165741", + "slot": { + "period": 3873918, + "thread": 0 + } + } + ], + "AU1SLzTHv3JevJYPngLLd5NAeG8zCFmC8HSEmBrP5qnu5ns57n5L": [ + { + "amount": "210.284363468", + "slot": { + "period": 99061, + "thread": 13 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 215316, + "thread": 13 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 355186, + "thread": 13 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 500263, + "thread": 15 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 722982, + "thread": 17 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 893922, + "thread": 6 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1115342, + "thread": 3 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1178988, + "thread": 1 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1420791, + "thread": 24 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1626751, + "thread": 11 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1704597, + "thread": 5 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 1834445, + "thread": 23 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2072025, + "thread": 21 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2188591, + "thread": 10 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2381257, + "thread": 29 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2488464, + "thread": 24 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2743575, + "thread": 31 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 2808365, + "thread": 6 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 3028911, + "thread": 5 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 3275658, + "thread": 25 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 3401044, + "thread": 15 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 3571260, + "thread": 30 + } + }, + { + "amount": "210.284363468", + "slot": { + "period": 3705425, + "thread": 29 + } + }, + { + "amount": "210.284363476", + "slot": { + "period": 3872014, + "thread": 3 + } + } + ], + "AU1SMDPaA15emZm6uWYB8AsXBBaTPuq6JfPgbxqEKek3DdYu6d2y": [ + { + "amount": "217.668647267", + "slot": { + "period": 110139, + "thread": 15 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 307056, + "thread": 12 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 433367, + "thread": 8 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 566013, + "thread": 12 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 798609, + "thread": 1 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 841145, + "thread": 19 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1042637, + "thread": 26 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1205800, + "thread": 9 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1456943, + "thread": 27 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1507162, + "thread": 5 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1714478, + "thread": 27 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 1884170, + "thread": 9 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2072646, + "thread": 30 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2288574, + "thread": 10 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2370854, + "thread": 27 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2542673, + "thread": 24 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2750651, + "thread": 24 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2936404, + "thread": 6 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 2993498, + "thread": 7 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 3212713, + "thread": 0 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 3358290, + "thread": 29 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 3554551, + "thread": 1 + } + }, + { + "amount": "217.668647267", + "slot": { + "period": 3618122, + "thread": 15 + } + }, + { + "amount": "217.668647261", + "slot": { + "period": 3838250, + "thread": 7 + } + } + ], + "AU1SNLLriREWy3q1ZJUTVVjqBae45CAtiqfAUPZ7DUKVGsz7SDau": [ + { + "amount": "206.463074565", + "slot": { + "period": 16265, + "thread": 6 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 224538, + "thread": 25 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 343588, + "thread": 20 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 491956, + "thread": 17 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 698521, + "thread": 0 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 834603, + "thread": 24 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1082376, + "thread": 31 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1156250, + "thread": 6 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1426752, + "thread": 22 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1550686, + "thread": 30 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1726324, + "thread": 25 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 1810986, + "thread": 23 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2107314, + "thread": 13 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2257452, + "thread": 24 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2366845, + "thread": 24 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2500676, + "thread": 18 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2733683, + "thread": 0 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2874205, + "thread": 19 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 2957473, + "thread": 15 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 3268563, + "thread": 27 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 3428750, + "thread": 1 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 3543779, + "thread": 29 + } + }, + { + "amount": "206.463074565", + "slot": { + "period": 3670681, + "thread": 22 + } + }, + { + "amount": "206.463074555", + "slot": { + "period": 3873383, + "thread": 12 + } + } + ], + "AU1SP7Rcux3d31tbvHeTfvrxcURdRRRFzGrQzZ2d5FBFo6k76hyY": [ + { + "amount": "100.736060262", + "slot": { + "period": 91139, + "thread": 25 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 214175, + "thread": 22 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 426037, + "thread": 20 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 618013, + "thread": 12 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 654954, + "thread": 2 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 836308, + "thread": 15 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1107583, + "thread": 14 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1238677, + "thread": 25 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1366477, + "thread": 19 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1557588, + "thread": 2 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1695721, + "thread": 6 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 1812312, + "thread": 10 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2095808, + "thread": 7 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2256996, + "thread": 21 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2304507, + "thread": 7 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2617322, + "thread": 30 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2768537, + "thread": 22 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2805295, + "thread": 2 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 2983206, + "thread": 4 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 3189878, + "thread": 29 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 3330741, + "thread": 23 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 3603372, + "thread": 5 + } + }, + { + "amount": "100.736060262", + "slot": { + "period": 3683754, + "thread": 30 + } + }, + { + "amount": "100.736060274", + "slot": { + "period": 3937681, + "thread": 28 + } + } + ], + "AU1SR3R2ssep7qgxMwGox98oRHYFPKxd8NJfkyTHkyTv5Jbk1PWq": [ + { + "amount": "215.098755275", + "slot": { + "period": 147241, + "thread": 6 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 223258, + "thread": 18 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 369074, + "thread": 11 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 627228, + "thread": 4 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 781923, + "thread": 10 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 965329, + "thread": 2 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1077759, + "thread": 9 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1151075, + "thread": 1 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1442359, + "thread": 9 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1569360, + "thread": 2 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1735790, + "thread": 17 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 1901295, + "thread": 30 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2112810, + "thread": 4 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2291273, + "thread": 16 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2413309, + "thread": 25 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2531276, + "thread": 8 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2654280, + "thread": 6 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 2799988, + "thread": 1 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 3097362, + "thread": 1 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 3194037, + "thread": 8 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 3320970, + "thread": 12 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 3527786, + "thread": 18 + } + }, + { + "amount": "215.098755275", + "slot": { + "period": 3754358, + "thread": 7 + } + }, + { + "amount": "215.098755280", + "slot": { + "period": 3916851, + "thread": 16 + } + } + ], + "AU1SRUB6hdgcXkaC37yRkdHnSobmjxFfUFCkMkChFTHkBnV3Q6ML": [ + { + "amount": "265.081766427", + "slot": { + "period": 54841, + "thread": 25 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 198721, + "thread": 12 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 342761, + "thread": 13 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 568421, + "thread": 10 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 725710, + "thread": 29 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 891862, + "thread": 15 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1083286, + "thread": 15 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1309551, + "thread": 11 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1385373, + "thread": 10 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1501061, + "thread": 15 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1649619, + "thread": 22 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1842330, + "thread": 25 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 1980440, + "thread": 22 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 2233509, + "thread": 21 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 2396762, + "thread": 4 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 2549543, + "thread": 22 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 2649764, + "thread": 13 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 2815395, + "thread": 30 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 3106825, + "thread": 24 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 3151231, + "thread": 2 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 3296342, + "thread": 4 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 3544735, + "thread": 20 + } + }, + { + "amount": "265.081766427", + "slot": { + "period": 3738319, + "thread": 13 + } + }, + { + "amount": "265.081766429", + "slot": { + "period": 3826608, + "thread": 13 + } + } + ], + "AU1SRcU3RXVv9xK1dB5VrxMD6rVdDvR8V5V8C5Bzj3nvYSqsjJf4": [ + { + "amount": "364.130035341", + "slot": { + "period": 75390, + "thread": 30 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 265888, + "thread": 6 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 404894, + "thread": 17 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 618003, + "thread": 30 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 703621, + "thread": 4 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 860822, + "thread": 30 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1055139, + "thread": 3 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1209085, + "thread": 24 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1454497, + "thread": 9 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1597816, + "thread": 21 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1724644, + "thread": 1 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 1890719, + "thread": 26 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2088310, + "thread": 17 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2153646, + "thread": 10 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2368946, + "thread": 4 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2533765, + "thread": 0 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2693890, + "thread": 27 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 2869497, + "thread": 23 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 3075749, + "thread": 8 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 3264812, + "thread": 12 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 3438722, + "thread": 23 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 3555061, + "thread": 20 + } + }, + { + "amount": "364.130035341", + "slot": { + "period": 3648429, + "thread": 18 + } + }, + { + "amount": "364.130035330", + "slot": { + "period": 3848461, + "thread": 13 + } + } + ], + "AU1SRfhVgC6GhhhmU1VWzY69j5Q3jsvnnaByGaFErXwoyk1HXnT4": [ + { + "amount": "114.644800986", + "slot": { + "period": 34030, + "thread": 9 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 277879, + "thread": 5 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 411204, + "thread": 14 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 522626, + "thread": 29 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 762085, + "thread": 11 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 843709, + "thread": 15 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1031885, + "thread": 4 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1219129, + "thread": 7 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1381415, + "thread": 26 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1550474, + "thread": 23 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1741897, + "thread": 8 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 1880470, + "thread": 15 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2102883, + "thread": 10 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2180563, + "thread": 18 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2327119, + "thread": 22 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2485597, + "thread": 1 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2670186, + "thread": 3 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 2882807, + "thread": 28 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 3100945, + "thread": 25 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 3269704, + "thread": 25 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 3363526, + "thread": 7 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 3549346, + "thread": 25 + } + }, + { + "amount": "114.644800986", + "slot": { + "period": 3725455, + "thread": 11 + } + }, + { + "amount": "114.644800976", + "slot": { + "period": 3800993, + "thread": 8 + } + } + ], + "AU1SSUZMdC5mz4Mp58edEEv4jTyjmWZ2G4PAvBfymy7erHKGVVqQ": [ + { + "amount": "139.800500081", + "slot": { + "period": 103738, + "thread": 18 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 205875, + "thread": 20 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 485850, + "thread": 26 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 640917, + "thread": 14 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 784070, + "thread": 5 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 965824, + "thread": 16 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1112992, + "thread": 11 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1252334, + "thread": 0 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1322966, + "thread": 14 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1581244, + "thread": 20 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1688693, + "thread": 11 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 1882743, + "thread": 23 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2129716, + "thread": 31 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2219026, + "thread": 5 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2364251, + "thread": 20 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2546888, + "thread": 11 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2750729, + "thread": 10 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 2890809, + "thread": 9 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 3034275, + "thread": 4 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 3231836, + "thread": 13 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 3441291, + "thread": 12 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 3596813, + "thread": 11 + } + }, + { + "amount": "139.800500081", + "slot": { + "period": 3765338, + "thread": 10 + } + }, + { + "amount": "139.800500080", + "slot": { + "period": 3897757, + "thread": 7 + } + } + ], + "AU1SSbjMfatotxu6CGQqkezZrFqCGJaXV2VP8ZiC5dkRgoqe1ADV": [ + { + "amount": "379.858149693", + "slot": { + "period": 59395, + "thread": 21 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 226587, + "thread": 19 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 324797, + "thread": 15 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 641514, + "thread": 5 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 732174, + "thread": 30 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 870597, + "thread": 9 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1046628, + "thread": 18 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1224271, + "thread": 31 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1412704, + "thread": 15 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1521209, + "thread": 16 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1712518, + "thread": 26 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 1886397, + "thread": 2 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2053596, + "thread": 9 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2176776, + "thread": 14 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2446064, + "thread": 16 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2577145, + "thread": 25 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2769196, + "thread": 30 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2874710, + "thread": 20 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 2977086, + "thread": 23 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 3284712, + "thread": 22 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 3336684, + "thread": 13 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 3495917, + "thread": 0 + } + }, + { + "amount": "379.858149693", + "slot": { + "period": 3738869, + "thread": 29 + } + }, + { + "amount": "379.858149696", + "slot": { + "period": 3793105, + "thread": 14 + } + } + ], + "AU1SSd62jqkNgaJFib9JSdmcocpNMRXBqAhT4MXSPmkLWnBqhWQU": [ + { + "amount": "242.584714102", + "slot": { + "period": 143271, + "thread": 17 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 274372, + "thread": 5 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 427521, + "thread": 3 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 534750, + "thread": 14 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 665496, + "thread": 18 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 915194, + "thread": 28 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1023271, + "thread": 23 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1181818, + "thread": 8 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1446050, + "thread": 8 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1479744, + "thread": 13 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1655818, + "thread": 27 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 1973402, + "thread": 0 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2030112, + "thread": 2 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2234926, + "thread": 18 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2369964, + "thread": 8 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2471763, + "thread": 15 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2719095, + "thread": 20 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 2920185, + "thread": 13 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 3070754, + "thread": 31 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 3129443, + "thread": 2 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 3380107, + "thread": 4 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 3505967, + "thread": 31 + } + }, + { + "amount": "242.584714102", + "slot": { + "period": 3676430, + "thread": 26 + } + }, + { + "amount": "242.584714098", + "slot": { + "period": 3792474, + "thread": 4 + } + } + ], + "AU1SSjzTLSAEkfid9gRE9Sgff2PirX7oGM27SbKfnEodaE8jtUQm": [ + { + "amount": "513.280108214", + "slot": { + "period": 120025, + "thread": 13 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 314460, + "thread": 10 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 389129, + "thread": 27 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 650570, + "thread": 13 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 790379, + "thread": 20 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 956341, + "thread": 24 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1059418, + "thread": 19 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1288386, + "thread": 5 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1343578, + "thread": 2 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1506376, + "thread": 16 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1770871, + "thread": 16 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 1837861, + "thread": 22 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2114597, + "thread": 28 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2240897, + "thread": 23 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2456864, + "thread": 26 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2599472, + "thread": 13 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2778311, + "thread": 6 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2915376, + "thread": 20 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 2993247, + "thread": 17 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 3245019, + "thread": 3 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 3408262, + "thread": 30 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 3600705, + "thread": 21 + } + }, + { + "amount": "513.280108214", + "slot": { + "period": 3716028, + "thread": 0 + } + }, + { + "amount": "513.280108213", + "slot": { + "period": 3829555, + "thread": 26 + } + } + ], + "AU1SVMYpu2AYMPBHzcGRcLZbYb38ecYSLLrmegqj32fF6MbYYwsu": [ + { + "amount": "144.349188712", + "slot": { + "period": 48973, + "thread": 19 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 207635, + "thread": 21 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 380190, + "thread": 10 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 504689, + "thread": 26 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 802970, + "thread": 30 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 886136, + "thread": 21 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 984493, + "thread": 0 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 1264207, + "thread": 26 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 1436616, + "thread": 25 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 1542332, + "thread": 1 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 1760836, + "thread": 23 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 1861212, + "thread": 10 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2041334, + "thread": 18 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2191839, + "thread": 2 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2422801, + "thread": 21 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2602559, + "thread": 2 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2672347, + "thread": 15 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 2823434, + "thread": 7 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 3029178, + "thread": 31 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 3135119, + "thread": 21 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 3434572, + "thread": 5 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 3567812, + "thread": 22 + } + }, + { + "amount": "144.349188712", + "slot": { + "period": 3768023, + "thread": 26 + } + }, + { + "amount": "144.349188702", + "slot": { + "period": 3897116, + "thread": 26 + } + } + ], + "AU1SVPxKKnY47mpnJh8REyzkoaWRJ9RsLaHi4cxjbDkruWaRU6Jv": [ + { + "amount": "202.455090804", + "slot": { + "period": 72348, + "thread": 30 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 241781, + "thread": 24 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 369609, + "thread": 23 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 634873, + "thread": 14 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 708303, + "thread": 28 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 907923, + "thread": 14 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1057929, + "thread": 16 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1293639, + "thread": 9 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1454229, + "thread": 15 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1489091, + "thread": 19 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1667156, + "thread": 16 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1815426, + "thread": 2 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 1984695, + "thread": 13 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 2155600, + "thread": 1 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 2386373, + "thread": 1 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 2521933, + "thread": 21 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 2669913, + "thread": 31 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 2908399, + "thread": 1 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 3014737, + "thread": 10 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 3268767, + "thread": 8 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 3353933, + "thread": 6 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 3514183, + "thread": 30 + } + }, + { + "amount": "202.455090804", + "slot": { + "period": 3686895, + "thread": 15 + } + }, + { + "amount": "202.455090810", + "slot": { + "period": 3819237, + "thread": 12 + } + } + ], + "AU1SVjpUWYukzpZurAX7pUUc2jSMMEEgUsiomgWQnEdovq4pgXMB": [ + { + "amount": "297.952486808", + "slot": { + "period": 76242, + "thread": 21 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 260884, + "thread": 23 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 394895, + "thread": 8 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 611622, + "thread": 10 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 808531, + "thread": 5 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 863686, + "thread": 23 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1144944, + "thread": 18 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1240873, + "thread": 18 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1320724, + "thread": 25 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1625033, + "thread": 17 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1677925, + "thread": 16 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 1818667, + "thread": 12 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2013046, + "thread": 9 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2232891, + "thread": 17 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2400839, + "thread": 30 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2557160, + "thread": 31 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2710796, + "thread": 13 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 2925918, + "thread": 18 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 3009284, + "thread": 11 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 3186204, + "thread": 9 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 3407386, + "thread": 20 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 3454026, + "thread": 22 + } + }, + { + "amount": "297.952486808", + "slot": { + "period": 3654311, + "thread": 9 + } + }, + { + "amount": "297.952486813", + "slot": { + "period": 3853410, + "thread": 12 + } + } + ], + "AU1SXqa6UwJgjdjrmPvWg66C7JFDyCq3bAHvNkiduYhQjFRHCPHi": [ + { + "amount": "321.828433014", + "slot": { + "period": 27776, + "thread": 10 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 321016, + "thread": 11 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 338326, + "thread": 10 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 599578, + "thread": 2 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 707498, + "thread": 20 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 882540, + "thread": 24 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1016165, + "thread": 7 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1176027, + "thread": 16 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1397972, + "thread": 22 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1621296, + "thread": 18 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1660874, + "thread": 20 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1816512, + "thread": 11 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 1984029, + "thread": 29 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 2232081, + "thread": 1 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 2334130, + "thread": 29 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 2550227, + "thread": 13 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 2716285, + "thread": 28 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 2940887, + "thread": 22 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 3108276, + "thread": 18 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 3243764, + "thread": 13 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 3345149, + "thread": 19 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 3508299, + "thread": 6 + } + }, + { + "amount": "321.828433014", + "slot": { + "period": 3635116, + "thread": 16 + } + }, + { + "amount": "321.828433019", + "slot": { + "period": 3791531, + "thread": 9 + } + } + ], + "AU1SXtWzFMQ1NHNH3dr5MiGDF35FEQ9zSUxWThqdnFDQxngwz5VT": [ + { + "amount": "353.421482902", + "slot": { + "period": 41582, + "thread": 25 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 292609, + "thread": 20 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 400126, + "thread": 23 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 492472, + "thread": 13 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 714510, + "thread": 2 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 904050, + "thread": 26 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1022855, + "thread": 15 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1177728, + "thread": 13 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1409893, + "thread": 8 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1572896, + "thread": 28 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1733448, + "thread": 18 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 1924041, + "thread": 7 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2021695, + "thread": 24 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2190553, + "thread": 25 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2318051, + "thread": 8 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2535775, + "thread": 29 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2773692, + "thread": 4 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2881486, + "thread": 7 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 2978391, + "thread": 9 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 3183737, + "thread": 26 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 3306561, + "thread": 9 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 3617456, + "thread": 31 + } + }, + { + "amount": "353.421482902", + "slot": { + "period": 3663569, + "thread": 27 + } + }, + { + "amount": "353.421482905", + "slot": { + "period": 3789528, + "thread": 27 + } + } + ], + "AU1SY94CfuLGg3ds2bLALu7FViagMhg5Poq1Nkvi9jjfZpAnPUev": [ + { + "amount": "729.166666667", + "slot": { + "period": 148890, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 240261, + "thread": 0 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 331687, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 501470, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 685415, + "thread": 16 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 900167, + "thread": 31 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1149428, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1272364, + "thread": 25 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1420478, + "thread": 21 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1598552, + "thread": 9 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1671831, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1919034, + "thread": 25 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2029238, + "thread": 31 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2239857, + "thread": 30 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2426997, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2562849, + "thread": 3 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2671633, + "thread": 23 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2828963, + "thread": 27 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2962113, + "thread": 18 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3147253, + "thread": 20 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3292215, + "thread": 15 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3563573, + "thread": 30 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3665237, + "thread": 22 + } + }, + { + "amount": "729.166666659", + "slot": { + "period": 3858896, + "thread": 5 + } + } + ], + "AU1SZ8Wsj8pfwAJgrWqSCBWUAAghcUj6gMwFnmBBbiUxZbPfKYxG": [ + { + "amount": "110.042558623", + "slot": { + "period": 114221, + "thread": 12 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 183316, + "thread": 22 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 443737, + "thread": 22 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 543399, + "thread": 0 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 758885, + "thread": 17 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 886107, + "thread": 11 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 988122, + "thread": 6 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 1170998, + "thread": 12 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 1412959, + "thread": 17 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 1484388, + "thread": 26 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 1703709, + "thread": 14 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 1953656, + "thread": 15 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2143685, + "thread": 22 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2162586, + "thread": 0 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2313026, + "thread": 5 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2484552, + "thread": 2 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2704545, + "thread": 12 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 2938802, + "thread": 2 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 3084084, + "thread": 25 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 3153010, + "thread": 12 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 3409008, + "thread": 16 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 3463560, + "thread": 5 + } + }, + { + "amount": "110.042558623", + "slot": { + "period": 3646527, + "thread": 20 + } + }, + { + "amount": "110.042558622", + "slot": { + "period": 3882862, + "thread": 26 + } + } + ], + "AU1SZS8QTWJWgSWZmPhi6QbzrNinKw7LrjaD9NoLwZvZZLCyuE5u": [ + { + "amount": "146.198329372", + "slot": { + "period": 60134, + "thread": 1 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 175207, + "thread": 25 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 484244, + "thread": 13 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 573918, + "thread": 8 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 712835, + "thread": 4 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 822062, + "thread": 21 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1027223, + "thread": 11 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1265681, + "thread": 17 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1336414, + "thread": 7 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1578270, + "thread": 19 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1725891, + "thread": 5 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 1947242, + "thread": 14 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2076636, + "thread": 13 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2195162, + "thread": 22 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2453999, + "thread": 5 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2541972, + "thread": 18 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2782502, + "thread": 2 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 2822975, + "thread": 0 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 3104181, + "thread": 10 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 3124990, + "thread": 29 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 3433369, + "thread": 9 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 3565878, + "thread": 18 + } + }, + { + "amount": "146.198329372", + "slot": { + "period": 3654009, + "thread": 31 + } + }, + { + "amount": "146.198329368", + "slot": { + "period": 3862845, + "thread": 11 + } + } + ], + "AU1SZjJUofCdD7qXufvsESWwFtCgtT49UkEVQU7NFPVHqDQ7jL47": [ + { + "amount": "165.954217840", + "slot": { + "period": 11462, + "thread": 29 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 290294, + "thread": 5 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 488391, + "thread": 13 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 508526, + "thread": 3 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 742633, + "thread": 27 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 921703, + "thread": 8 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1113450, + "thread": 6 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1213011, + "thread": 27 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1456161, + "thread": 30 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1569212, + "thread": 3 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1652035, + "thread": 23 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 1939904, + "thread": 30 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2039693, + "thread": 18 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2230428, + "thread": 27 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2447510, + "thread": 23 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2586676, + "thread": 7 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2761887, + "thread": 25 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2938468, + "thread": 0 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 2994794, + "thread": 3 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 3237104, + "thread": 17 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 3372405, + "thread": 1 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 3600793, + "thread": 21 + } + }, + { + "amount": "165.954217840", + "slot": { + "period": 3760588, + "thread": 19 + } + }, + { + "amount": "165.954217850", + "slot": { + "period": 3899617, + "thread": 1 + } + } + ], + "AU1SaQuSYTPN3a7CD8M4134R1bH3LCP1xQhTqzr4jd7DtLxiDtC": [ + { + "amount": "147.634519210", + "slot": { + "period": 57572, + "thread": 17 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 174299, + "thread": 4 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 384574, + "thread": 19 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 521311, + "thread": 13 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 696241, + "thread": 2 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 978852, + "thread": 14 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1142286, + "thread": 15 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1213331, + "thread": 9 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1433946, + "thread": 31 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1522553, + "thread": 4 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1698631, + "thread": 16 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 1889913, + "thread": 26 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2013966, + "thread": 30 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2248178, + "thread": 12 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2408043, + "thread": 1 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2616833, + "thread": 6 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2665879, + "thread": 12 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 2835654, + "thread": 17 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 3005509, + "thread": 0 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 3248525, + "thread": 24 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 3370070, + "thread": 3 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 3515904, + "thread": 24 + } + }, + { + "amount": "147.634519210", + "slot": { + "period": 3707892, + "thread": 0 + } + }, + { + "amount": "147.634519198", + "slot": { + "period": 3878587, + "thread": 10 + } + } + ], + "AU1Sb8A6aVNkiwZxNq1UjSaypM5U5iPX56a4LhWXJHaYvL52TtSK": [ + { + "amount": "264.177726033", + "slot": { + "period": 19988, + "thread": 26 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 185532, + "thread": 28 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 435108, + "thread": 20 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 565959, + "thread": 23 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 774960, + "thread": 14 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 899828, + "thread": 10 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1108326, + "thread": 17 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1210042, + "thread": 17 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1412130, + "thread": 16 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1618591, + "thread": 18 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1767657, + "thread": 17 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 1902009, + "thread": 5 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2111653, + "thread": 1 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2196684, + "thread": 19 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2384620, + "thread": 31 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2613241, + "thread": 3 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2712628, + "thread": 18 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2925581, + "thread": 22 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 2955785, + "thread": 21 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 3200641, + "thread": 10 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 3446965, + "thread": 27 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 3613126, + "thread": 26 + } + }, + { + "amount": "264.177726033", + "slot": { + "period": 3725613, + "thread": 10 + } + }, + { + "amount": "264.177726036", + "slot": { + "period": 3838624, + "thread": 7 + } + } + ], + "AU1ScJ5Z3hZfDEW1hsvUGTouowA8P5fTSXPYVgxh9jSjHMTEpEnY": [ + { + "amount": "129.829768529", + "slot": { + "period": 37661, + "thread": 26 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 237856, + "thread": 17 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 463318, + "thread": 6 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 633843, + "thread": 26 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 716479, + "thread": 31 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 968141, + "thread": 18 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1132160, + "thread": 2 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1279205, + "thread": 8 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1425371, + "thread": 23 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1560444, + "thread": 28 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1795378, + "thread": 21 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 1938306, + "thread": 6 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2004184, + "thread": 4 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2262085, + "thread": 6 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2344365, + "thread": 30 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2558233, + "thread": 22 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2769451, + "thread": 9 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2943044, + "thread": 22 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 2996768, + "thread": 0 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 3154765, + "thread": 26 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 3303581, + "thread": 0 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 3563474, + "thread": 20 + } + }, + { + "amount": "129.829768529", + "slot": { + "period": 3757819, + "thread": 30 + } + }, + { + "amount": "129.829768528", + "slot": { + "period": 3817167, + "thread": 29 + } + } + ], + "AU1SdbpsAtNGGSZzhwAFnzU7HpX4s8jUZvHCdKg8sEvFqvaqomCk": [ + { + "amount": "850.704166667", + "slot": { + "period": 131844, + "thread": 24 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 198264, + "thread": 12 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 421399, + "thread": 27 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 643942, + "thread": 24 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 761978, + "thread": 6 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 879045, + "thread": 18 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1089790, + "thread": 12 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1153069, + "thread": 23 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1473613, + "thread": 2 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1492228, + "thread": 19 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1676751, + "thread": 15 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 1912976, + "thread": 31 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2106538, + "thread": 25 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2206341, + "thread": 28 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2376911, + "thread": 3 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2530306, + "thread": 6 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2693228, + "thread": 31 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 2934397, + "thread": 5 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3032153, + "thread": 21 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3172613, + "thread": 16 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3382925, + "thread": 22 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3496758, + "thread": 29 + } + }, + { + "amount": "850.704166667", + "slot": { + "period": 3720307, + "thread": 2 + } + }, + { + "amount": "850.704166659", + "slot": { + "period": 3809184, + "thread": 0 + } + } + ], + "AU1SeCfreGCwVVd6UbRjdMm9z6dUk8W46AsKwKDBBahed4aWKzga": [ + { + "amount": "272.318272258", + "slot": { + "period": 156729, + "thread": 10 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 319693, + "thread": 13 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 397796, + "thread": 25 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 542504, + "thread": 30 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 733645, + "thread": 0 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 934248, + "thread": 16 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1068049, + "thread": 10 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1301045, + "thread": 3 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1456384, + "thread": 29 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1490699, + "thread": 30 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1651137, + "thread": 24 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 1915825, + "thread": 3 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2060858, + "thread": 9 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2273477, + "thread": 1 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2385837, + "thread": 30 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2466198, + "thread": 15 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2711879, + "thread": 19 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2870743, + "thread": 23 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 2975567, + "thread": 28 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 3209201, + "thread": 3 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 3382574, + "thread": 28 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 3602401, + "thread": 12 + } + }, + { + "amount": "272.318272258", + "slot": { + "period": 3686545, + "thread": 2 + } + }, + { + "amount": "272.318272247", + "slot": { + "period": 3836834, + "thread": 30 + } + } + ], + "AU1SeovhZdh9zi4C5MevwJNc1wt21a4VvLhz5WjfHGWx2GGbguH": [ + { + "amount": "163.440507927", + "slot": { + "period": 162931, + "thread": 17 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 202438, + "thread": 25 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 337823, + "thread": 30 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 566119, + "thread": 23 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 739399, + "thread": 4 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 869088, + "thread": 10 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1067325, + "thread": 6 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1306990, + "thread": 6 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1425533, + "thread": 12 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1557660, + "thread": 11 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1681654, + "thread": 25 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 1930071, + "thread": 24 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2065187, + "thread": 2 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2157920, + "thread": 28 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2380122, + "thread": 10 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2550400, + "thread": 17 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2661817, + "thread": 13 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2804189, + "thread": 28 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 2995521, + "thread": 12 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 3277769, + "thread": 2 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 3362180, + "thread": 17 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 3498130, + "thread": 2 + } + }, + { + "amount": "163.440507927", + "slot": { + "period": 3667959, + "thread": 7 + } + }, + { + "amount": "163.440507923", + "slot": { + "period": 3866873, + "thread": 0 + } + } + ], + "AU1SfQakeDtRJTorMqFvrJBbY7AX5maBhFSSYy76D5C8GLdUEov9": [ + { + "amount": "167.290778309", + "slot": { + "period": 98616, + "thread": 19 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 246416, + "thread": 29 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 390954, + "thread": 30 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 513186, + "thread": 31 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 749479, + "thread": 23 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 982190, + "thread": 16 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1099555, + "thread": 5 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1280264, + "thread": 11 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1328309, + "thread": 8 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1548994, + "thread": 22 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1694920, + "thread": 30 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 1851791, + "thread": 22 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2096754, + "thread": 28 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2155226, + "thread": 17 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2417939, + "thread": 16 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2568552, + "thread": 13 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2690498, + "thread": 19 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2820174, + "thread": 29 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 2971647, + "thread": 10 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 3256548, + "thread": 4 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 3308593, + "thread": 4 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 3613674, + "thread": 19 + } + }, + { + "amount": "167.290778309", + "slot": { + "period": 3618645, + "thread": 29 + } + }, + { + "amount": "167.290778298", + "slot": { + "period": 3822695, + "thread": 20 + } + } + ], + "AU1Sfwp28v4bDqmWpDLdVLe6J8m3jpTdxna6WEyLGppyrnkYcfCn": [ + { + "amount": "60.390048471", + "slot": { + "period": 10947, + "thread": 18 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 232161, + "thread": 4 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 435155, + "thread": 2 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 523293, + "thread": 11 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 737242, + "thread": 27 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 870911, + "thread": 22 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1144793, + "thread": 15 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1209772, + "thread": 3 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1454012, + "thread": 23 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1557958, + "thread": 5 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1695212, + "thread": 6 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 1834273, + "thread": 5 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2038526, + "thread": 5 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2294986, + "thread": 5 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2394313, + "thread": 7 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2503443, + "thread": 24 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2662050, + "thread": 30 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2850062, + "thread": 3 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 2963601, + "thread": 25 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 3218065, + "thread": 17 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 3387702, + "thread": 15 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 3565997, + "thread": 1 + } + }, + { + "amount": "60.390048471", + "slot": { + "period": 3740641, + "thread": 5 + } + }, + { + "amount": "60.390048465", + "slot": { + "period": 3898580, + "thread": 14 + } + } + ], + "AU1SgXQLA3oGe8oyosu8WVDPSu6LFz82hjkv7zajgLnwNKpbg7uf": [ + { + "amount": "83.709748376", + "slot": { + "period": 17402, + "thread": 31 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 177097, + "thread": 20 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 468240, + "thread": 8 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 652688, + "thread": 16 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 794789, + "thread": 28 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 830716, + "thread": 11 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1034794, + "thread": 8 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1185086, + "thread": 20 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1331412, + "thread": 20 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1641466, + "thread": 23 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1749396, + "thread": 13 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 1825833, + "thread": 6 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2131378, + "thread": 24 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2257726, + "thread": 30 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2315558, + "thread": 1 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2551078, + "thread": 6 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2781794, + "thread": 5 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2847749, + "thread": 28 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 2995098, + "thread": 22 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 3267393, + "thread": 2 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 3437921, + "thread": 13 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 3547391, + "thread": 5 + } + }, + { + "amount": "83.709748376", + "slot": { + "period": 3646419, + "thread": 25 + } + }, + { + "amount": "83.709748367", + "slot": { + "period": 3906943, + "thread": 23 + } + } + ], + "AU1SjBPJViacWtEqwXrMMb2quAfH9cqKyDkn5xMzDrbzzLNfv1cc": [ + { + "amount": "160.368285626", + "slot": { + "period": 92791, + "thread": 1 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 206996, + "thread": 0 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 434403, + "thread": 9 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 584954, + "thread": 29 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 716133, + "thread": 9 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 835792, + "thread": 18 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1136271, + "thread": 22 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1183531, + "thread": 15 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1448661, + "thread": 12 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1506426, + "thread": 11 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1776802, + "thread": 30 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 1828250, + "thread": 23 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2037742, + "thread": 0 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2262769, + "thread": 21 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2426129, + "thread": 10 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2561115, + "thread": 25 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2681725, + "thread": 21 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2916195, + "thread": 6 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 2964561, + "thread": 0 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 3150405, + "thread": 17 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 3302460, + "thread": 20 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 3563651, + "thread": 22 + } + }, + { + "amount": "160.368285626", + "slot": { + "period": 3638405, + "thread": 2 + } + }, + { + "amount": "160.368285624", + "slot": { + "period": 3864979, + "thread": 4 + } + } + ], + "AU1Sk1WGesjodFdZNFTouxpEyXYncgypianTAfPL1dVVuERCd5MN": [ + { + "amount": "245.160029740", + "slot": { + "period": 53860, + "thread": 14 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 233318, + "thread": 3 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 432830, + "thread": 9 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 509602, + "thread": 9 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 740141, + "thread": 9 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 845708, + "thread": 23 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 992878, + "thread": 6 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 1250408, + "thread": 23 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 1348147, + "thread": 9 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 1619170, + "thread": 9 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 1653867, + "thread": 25 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 1962069, + "thread": 30 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2020137, + "thread": 20 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2264461, + "thread": 28 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2298353, + "thread": 8 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2500241, + "thread": 2 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2760413, + "thread": 17 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 2907166, + "thread": 5 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 3047532, + "thread": 6 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 3173981, + "thread": 11 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 3408649, + "thread": 10 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 3484794, + "thread": 1 + } + }, + { + "amount": "245.160029740", + "slot": { + "period": 3746054, + "thread": 31 + } + }, + { + "amount": "245.160029741", + "slot": { + "period": 3913949, + "thread": 25 + } + } + ], + "AU1SmCok1ZnhrUcev2T1j8cB6jpfkQUdDS6PVTsN2e1AKkkdDvfr": [ + { + "amount": "135.123455052", + "slot": { + "period": 80893, + "thread": 9 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 265614, + "thread": 27 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 403882, + "thread": 29 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 566479, + "thread": 2 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 767241, + "thread": 14 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 879679, + "thread": 9 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1035377, + "thread": 8 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1153273, + "thread": 9 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1394066, + "thread": 8 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1512627, + "thread": 19 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1700314, + "thread": 4 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 1891652, + "thread": 17 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2050453, + "thread": 31 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2274878, + "thread": 4 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2443173, + "thread": 1 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2531762, + "thread": 3 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2705370, + "thread": 24 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 2923835, + "thread": 13 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 3115477, + "thread": 2 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 3214563, + "thread": 10 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 3312918, + "thread": 5 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 3496970, + "thread": 27 + } + }, + { + "amount": "135.123455052", + "slot": { + "period": 3624585, + "thread": 9 + } + }, + { + "amount": "135.123455056", + "slot": { + "period": 3928947, + "thread": 24 + } + } + ], + "AU1Sn2F96y5mD5NpFN2NGsCGoge49PHPRWjhgQ7PHA5NWX2FyJ77": [ + { + "amount": "198.433915066", + "slot": { + "period": 93574, + "thread": 2 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 286704, + "thread": 27 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 394900, + "thread": 6 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 621044, + "thread": 9 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 701777, + "thread": 17 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 852997, + "thread": 5 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1059258, + "thread": 20 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1251911, + "thread": 13 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1360377, + "thread": 1 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1612034, + "thread": 26 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1773073, + "thread": 20 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 1902087, + "thread": 16 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2045629, + "thread": 28 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2257665, + "thread": 14 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2418477, + "thread": 1 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2535013, + "thread": 5 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2738283, + "thread": 4 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2878520, + "thread": 8 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 2971270, + "thread": 7 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 3276913, + "thread": 27 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 3382732, + "thread": 12 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 3559414, + "thread": 28 + } + }, + { + "amount": "198.433915066", + "slot": { + "period": 3758245, + "thread": 12 + } + }, + { + "amount": "198.433915061", + "slot": { + "period": 3810272, + "thread": 27 + } + } + ], + "AU1Sn9nPW2v7dkPmGLZ1P2hJZZMHJwdHKkuwboz4xb6JExKgfHWu": [ + { + "amount": "179.816153991", + "slot": { + "period": 96070, + "thread": 6 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 252693, + "thread": 19 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 490019, + "thread": 9 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 571829, + "thread": 0 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 813912, + "thread": 10 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 941895, + "thread": 31 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1070369, + "thread": 29 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1292906, + "thread": 31 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1475791, + "thread": 23 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1631133, + "thread": 16 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1773832, + "thread": 5 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1831852, + "thread": 31 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 1985934, + "thread": 30 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 2257660, + "thread": 0 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 2428887, + "thread": 20 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 2611711, + "thread": 16 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 2695726, + "thread": 27 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 2946664, + "thread": 2 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 3038562, + "thread": 6 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 3210426, + "thread": 11 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 3368052, + "thread": 24 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 3547204, + "thread": 8 + } + }, + { + "amount": "179.816153991", + "slot": { + "period": 3701468, + "thread": 10 + } + }, + { + "amount": "179.816153984", + "slot": { + "period": 3806136, + "thread": 21 + } + } + ], + "AU1SoT9tLr2kaYWRaMizDZY6wGrXoZne4ceury6feajKDjAx35jM": [ + { + "amount": "138.737733447", + "slot": { + "period": 85896, + "thread": 27 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 244115, + "thread": 14 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 446919, + "thread": 7 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 626292, + "thread": 22 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 795865, + "thread": 28 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 853328, + "thread": 1 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1066176, + "thread": 15 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1317405, + "thread": 11 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1434827, + "thread": 12 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1481489, + "thread": 18 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1783223, + "thread": 13 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 1962755, + "thread": 6 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2026060, + "thread": 4 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2157506, + "thread": 17 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2350329, + "thread": 1 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2539951, + "thread": 28 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2726050, + "thread": 20 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 2908918, + "thread": 26 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 3001050, + "thread": 19 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 3176768, + "thread": 8 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 3438792, + "thread": 22 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 3510555, + "thread": 15 + } + }, + { + "amount": "138.737733447", + "slot": { + "period": 3739467, + "thread": 3 + } + }, + { + "amount": "138.737733438", + "slot": { + "period": 3801322, + "thread": 17 + } + } + ], + "AU1Sog4k4Yb37vj9a6w6Gw4mJPrZ5kBz4KWFki99UxL3vYXYpqUH": [ + { + "amount": "132.687724861", + "slot": { + "period": 56062, + "thread": 16 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 270829, + "thread": 31 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 377405, + "thread": 17 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 549099, + "thread": 18 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 804516, + "thread": 13 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 852220, + "thread": 17 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1085431, + "thread": 14 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1249479, + "thread": 4 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1378985, + "thread": 26 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1556224, + "thread": 26 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1740270, + "thread": 12 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 1864343, + "thread": 19 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2074341, + "thread": 1 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2145915, + "thread": 11 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2405947, + "thread": 15 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2465278, + "thread": 6 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2785324, + "thread": 24 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 2866977, + "thread": 24 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 3035846, + "thread": 21 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 3219836, + "thread": 9 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 3431344, + "thread": 28 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 3616385, + "thread": 3 + } + }, + { + "amount": "132.687724861", + "slot": { + "period": 3681801, + "thread": 19 + } + }, + { + "amount": "132.687724866", + "slot": { + "period": 3824780, + "thread": 17 + } + } + ], + "AU1Sp53Vmwjt8yB1ZJexPW6nguEuuqrsrU5U4X8rRMJXPgGqyyM3": [ + { + "amount": "293.256700731", + "slot": { + "period": 140256, + "thread": 15 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 286905, + "thread": 23 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 447910, + "thread": 22 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 652420, + "thread": 9 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 813696, + "thread": 26 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 896230, + "thread": 26 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1016981, + "thread": 16 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1256200, + "thread": 12 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1336949, + "thread": 28 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1567387, + "thread": 20 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1775405, + "thread": 20 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 1865291, + "thread": 13 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2117685, + "thread": 18 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2265547, + "thread": 26 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2362094, + "thread": 20 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2568097, + "thread": 26 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2719192, + "thread": 11 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 2866135, + "thread": 23 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 3100747, + "thread": 14 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 3257935, + "thread": 5 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 3357270, + "thread": 4 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 3506899, + "thread": 16 + } + }, + { + "amount": "293.256700731", + "slot": { + "period": 3705121, + "thread": 18 + } + }, + { + "amount": "293.256700722", + "slot": { + "period": 3911179, + "thread": 19 + } + } + ], + "AU1Spjhsfg24gEVH5ctVHa6pjQUbXymdzJJ5ZJm3e2JmC71tUW5": [ + { + "amount": "592.451254172", + "slot": { + "period": 89989, + "thread": 9 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 233524, + "thread": 7 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 487451, + "thread": 11 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 604378, + "thread": 26 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 728349, + "thread": 28 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 903073, + "thread": 20 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1090266, + "thread": 31 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1163644, + "thread": 4 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1319545, + "thread": 12 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1504628, + "thread": 19 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1680719, + "thread": 16 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 1962755, + "thread": 7 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2107325, + "thread": 24 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2252934, + "thread": 20 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2381487, + "thread": 8 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2571716, + "thread": 27 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2725053, + "thread": 8 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 2927266, + "thread": 12 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 3030438, + "thread": 25 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 3194114, + "thread": 11 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 3430234, + "thread": 16 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 3474260, + "thread": 7 + } + }, + { + "amount": "592.451254172", + "slot": { + "period": 3662974, + "thread": 22 + } + }, + { + "amount": "592.451254178", + "slot": { + "period": 3851486, + "thread": 19 + } + } + ], + "AU1SqSfLR5WLAxSMtAmPA5kG6aSQLmpqZZSPMsCkHToQMmd3t1cR": [ + { + "amount": "112.096765859", + "slot": { + "period": 75993, + "thread": 24 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 296175, + "thread": 31 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 391968, + "thread": 7 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 581497, + "thread": 23 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 712940, + "thread": 12 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 847791, + "thread": 18 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1005038, + "thread": 20 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1254607, + "thread": 2 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1349809, + "thread": 28 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1484272, + "thread": 6 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1670927, + "thread": 6 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1904983, + "thread": 30 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 1990634, + "thread": 0 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 2219573, + "thread": 3 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 2454252, + "thread": 0 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 2566371, + "thread": 11 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 2671148, + "thread": 1 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 2835801, + "thread": 27 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 3028488, + "thread": 9 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 3277444, + "thread": 25 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 3362354, + "thread": 20 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 3501548, + "thread": 26 + } + }, + { + "amount": "112.096765859", + "slot": { + "period": 3691286, + "thread": 26 + } + }, + { + "amount": "112.096765860", + "slot": { + "period": 3888293, + "thread": 22 + } + } + ], + "AU1Sr9hogvLaSCqciJS2YHG7apKUtejw7xx9msntx9p45EGyJS36": [ + { + "amount": "119.654226019", + "slot": { + "period": 69084, + "thread": 23 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 194964, + "thread": 11 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 486009, + "thread": 20 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 542332, + "thread": 4 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 684697, + "thread": 18 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 898105, + "thread": 5 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1019701, + "thread": 29 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1227886, + "thread": 3 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1419146, + "thread": 3 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1512925, + "thread": 24 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1673519, + "thread": 19 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 1859074, + "thread": 6 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2021441, + "thread": 24 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2292097, + "thread": 20 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2453189, + "thread": 22 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2539569, + "thread": 23 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2629402, + "thread": 14 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2918630, + "thread": 30 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 2990943, + "thread": 13 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 3254302, + "thread": 18 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 3291002, + "thread": 14 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 3587759, + "thread": 16 + } + }, + { + "amount": "119.654226019", + "slot": { + "period": 3636372, + "thread": 13 + } + }, + { + "amount": "119.654226023", + "slot": { + "period": 3916297, + "thread": 13 + } + } + ], + "AU1SrH75sFLywEKCjseNAMNxTsSDS8cMo4ronNTSQLcCABjKML8a": [ + { + "amount": "198.769755469", + "slot": { + "period": 124581, + "thread": 21 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 313019, + "thread": 28 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 461516, + "thread": 8 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 628343, + "thread": 31 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 707553, + "thread": 15 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 914503, + "thread": 22 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1052832, + "thread": 16 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1159418, + "thread": 17 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1476666, + "thread": 14 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1562370, + "thread": 25 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1723424, + "thread": 0 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1817363, + "thread": 18 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 1976633, + "thread": 28 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 2292154, + "thread": 15 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 2310616, + "thread": 13 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 2609298, + "thread": 0 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 2772627, + "thread": 0 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 2811322, + "thread": 0 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 3081347, + "thread": 12 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 3200182, + "thread": 9 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 3311540, + "thread": 28 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 3525361, + "thread": 0 + } + }, + { + "amount": "198.769755469", + "slot": { + "period": 3623237, + "thread": 17 + } + }, + { + "amount": "198.769755473", + "slot": { + "period": 3916780, + "thread": 13 + } + } + ], + "AU1StSzHiGPzuYEH4e4WCuvAiy4aBmDr9aFMxVyUrUcQm5sRstm4": [ + { + "amount": "201.871730140", + "slot": { + "period": 130746, + "thread": 31 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 217776, + "thread": 23 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 463715, + "thread": 6 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 521449, + "thread": 19 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 691362, + "thread": 15 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 843925, + "thread": 22 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1135381, + "thread": 29 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1179374, + "thread": 13 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1415969, + "thread": 26 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1554906, + "thread": 0 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1796052, + "thread": 26 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1924850, + "thread": 6 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 1981585, + "thread": 15 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 2222298, + "thread": 13 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 2387308, + "thread": 4 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 2601382, + "thread": 16 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 2670359, + "thread": 28 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 2937393, + "thread": 12 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 3013053, + "thread": 9 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 3279674, + "thread": 19 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 3449886, + "thread": 4 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 3550910, + "thread": 15 + } + }, + { + "amount": "201.871730140", + "slot": { + "period": 3662905, + "thread": 1 + } + }, + { + "amount": "201.871730129", + "slot": { + "period": 3910492, + "thread": 1 + } + } + ], + "AU1SueN8EmHSUxWjEAyrLCRzFcUNw4ZyH3meRbEZJUMxGEe6LroP": [ + { + "amount": "77.425716013", + "slot": { + "period": 148352, + "thread": 17 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 314635, + "thread": 25 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 488157, + "thread": 5 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 639955, + "thread": 12 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 726752, + "thread": 16 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 942748, + "thread": 5 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1141205, + "thread": 6 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1166660, + "thread": 21 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1357361, + "thread": 23 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1577231, + "thread": 10 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1800067, + "thread": 27 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 1898871, + "thread": 9 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2011379, + "thread": 8 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2246228, + "thread": 13 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2393004, + "thread": 10 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2609409, + "thread": 24 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2740443, + "thread": 20 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 2871720, + "thread": 3 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 3079823, + "thread": 11 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 3267313, + "thread": 7 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 3432225, + "thread": 18 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 3474518, + "thread": 15 + } + }, + { + "amount": "77.425716013", + "slot": { + "period": 3727739, + "thread": 16 + } + }, + { + "amount": "77.425716008", + "slot": { + "period": 3814323, + "thread": 24 + } + } + ], + "AU1Sv2V1ixJ5ehrQxmNmnxpwLxUArJsBfRitkMuKYzvKyZHgtBx4": [ + { + "amount": "87.298195962", + "slot": { + "period": 23627, + "thread": 19 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 315690, + "thread": 20 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 336123, + "thread": 11 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 503700, + "thread": 6 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 811462, + "thread": 28 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 962596, + "thread": 8 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1006026, + "thread": 4 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1311606, + "thread": 24 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1393524, + "thread": 1 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1521439, + "thread": 15 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1766565, + "thread": 15 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 1940103, + "thread": 23 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2125287, + "thread": 17 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2150390, + "thread": 2 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2423160, + "thread": 3 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2608844, + "thread": 5 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2644892, + "thread": 29 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 2803279, + "thread": 1 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 3081254, + "thread": 7 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 3238099, + "thread": 7 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 3422597, + "thread": 6 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 3608915, + "thread": 1 + } + }, + { + "amount": "87.298195962", + "slot": { + "period": 3769943, + "thread": 10 + } + }, + { + "amount": "87.298195953", + "slot": { + "period": 3831400, + "thread": 13 + } + } + ], + "AU1SvcE7YmohSnkN6FP5HFuByG8ZeMcrSmQvJaY756gGigv8WRxA": [ + { + "amount": "424.267068284", + "slot": { + "period": 116204, + "thread": 31 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 226911, + "thread": 21 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 395538, + "thread": 20 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 636850, + "thread": 2 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 754206, + "thread": 25 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 865084, + "thread": 29 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1110272, + "thread": 9 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1275878, + "thread": 6 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1458221, + "thread": 3 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1522859, + "thread": 28 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1705132, + "thread": 9 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 1916269, + "thread": 30 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2018568, + "thread": 30 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2184760, + "thread": 27 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2420348, + "thread": 13 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2606870, + "thread": 10 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2781928, + "thread": 16 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 2930614, + "thread": 10 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 3034789, + "thread": 25 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 3221367, + "thread": 1 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 3433265, + "thread": 25 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 3610155, + "thread": 7 + } + }, + { + "amount": "424.267068284", + "slot": { + "period": 3691041, + "thread": 3 + } + }, + { + "amount": "424.267068287", + "slot": { + "period": 3938193, + "thread": 27 + } + } + ], + "AU1Sw1JZpK3EYF8VVnJKHYeqspXR9aGncDBn34FpSfmi6T3vvqfA": [ + { + "amount": "197.015838949", + "slot": { + "period": 88345, + "thread": 17 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 185998, + "thread": 8 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 447284, + "thread": 24 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 493444, + "thread": 3 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 779165, + "thread": 5 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 820978, + "thread": 13 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1020756, + "thread": 27 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1245275, + "thread": 23 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1324076, + "thread": 25 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1616199, + "thread": 2 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1786994, + "thread": 19 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 1848377, + "thread": 0 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2008739, + "thread": 23 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2149838, + "thread": 0 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2414825, + "thread": 13 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2593175, + "thread": 23 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2709186, + "thread": 25 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 2818817, + "thread": 4 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 3038765, + "thread": 14 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 3239882, + "thread": 12 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 3388546, + "thread": 12 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 3477304, + "thread": 13 + } + }, + { + "amount": "197.015838949", + "slot": { + "period": 3735167, + "thread": 19 + } + }, + { + "amount": "197.015838938", + "slot": { + "period": 3939014, + "thread": 27 + } + } + ], + "AU1Sx4SkbUxs8DxPYZfMLdy8asPRehe5tUTSFW2zLWxjeW69WBmA": [ + { + "amount": "134.731620670", + "slot": { + "period": 35738, + "thread": 11 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 219912, + "thread": 14 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 404885, + "thread": 9 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 503531, + "thread": 15 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 688364, + "thread": 29 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 894524, + "thread": 15 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1064173, + "thread": 28 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1164541, + "thread": 23 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1444665, + "thread": 13 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1480242, + "thread": 20 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1775797, + "thread": 22 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 1845974, + "thread": 1 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2118073, + "thread": 4 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2168091, + "thread": 15 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2378574, + "thread": 6 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2582908, + "thread": 26 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2730323, + "thread": 6 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 2913015, + "thread": 10 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 3069503, + "thread": 15 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 3254670, + "thread": 15 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 3336011, + "thread": 11 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 3594011, + "thread": 13 + } + }, + { + "amount": "134.731620670", + "slot": { + "period": 3627734, + "thread": 14 + } + }, + { + "amount": "134.731620673", + "slot": { + "period": 3851495, + "thread": 20 + } + } + ], + "AU1SxA35HyubkrnwjDp7y2mMzvPmtENcjA5aFoxjqZweBjRN1JCV": [ + { + "amount": "124.250382031", + "slot": { + "period": 102373, + "thread": 26 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 229092, + "thread": 11 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 397396, + "thread": 31 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 613131, + "thread": 2 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 697070, + "thread": 25 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 970154, + "thread": 29 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 998037, + "thread": 0 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 1199653, + "thread": 14 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 1461379, + "thread": 31 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 1509709, + "thread": 2 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 1766462, + "thread": 4 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 1870585, + "thread": 14 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2135161, + "thread": 28 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2268182, + "thread": 4 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2303514, + "thread": 5 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2547392, + "thread": 27 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2763916, + "thread": 24 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2900114, + "thread": 22 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 2968786, + "thread": 11 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 3242498, + "thread": 7 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 3449231, + "thread": 9 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 3480327, + "thread": 22 + } + }, + { + "amount": "124.250382031", + "slot": { + "period": 3738918, + "thread": 25 + } + }, + { + "amount": "124.250382036", + "slot": { + "period": 3796366, + "thread": 3 + } + } + ], + "AU1SxUxtxH1Re74PkDWJ2iStjoUv6RUoYX8Qe1QTWHGT9wySgUZS": [ + { + "amount": "175.594753679", + "slot": { + "period": 39350, + "thread": 17 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 295334, + "thread": 27 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 377883, + "thread": 2 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 601109, + "thread": 11 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 693255, + "thread": 21 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 906632, + "thread": 1 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1111946, + "thread": 20 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1216428, + "thread": 17 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1319757, + "thread": 0 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1482675, + "thread": 31 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1800139, + "thread": 23 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 1878727, + "thread": 18 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2040789, + "thread": 17 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2253112, + "thread": 0 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2451274, + "thread": 9 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2578335, + "thread": 18 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2660885, + "thread": 29 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 2806717, + "thread": 19 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 3043659, + "thread": 17 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 3178159, + "thread": 10 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 3300263, + "thread": 24 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 3599060, + "thread": 13 + } + }, + { + "amount": "175.594753679", + "slot": { + "period": 3626416, + "thread": 28 + } + }, + { + "amount": "175.594753685", + "slot": { + "period": 3855063, + "thread": 22 + } + } + ], + "AU1Sxv1dUbhWfMWYKmSjJkaKoqufMEqfcu7Ji9TyE6SxwaLJe5YB": [ + { + "amount": "188.101387287", + "slot": { + "period": 96611, + "thread": 2 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 170366, + "thread": 9 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 406294, + "thread": 19 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 568563, + "thread": 4 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 778361, + "thread": 0 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 948026, + "thread": 29 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1061080, + "thread": 1 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1178335, + "thread": 25 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1388625, + "thread": 31 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1613439, + "thread": 26 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1649835, + "thread": 9 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 1873362, + "thread": 6 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2060418, + "thread": 19 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2280895, + "thread": 25 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2382021, + "thread": 3 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2483652, + "thread": 5 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2646179, + "thread": 3 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2897316, + "thread": 14 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 2972827, + "thread": 29 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 3282414, + "thread": 16 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 3379154, + "thread": 5 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 3583263, + "thread": 11 + } + }, + { + "amount": "188.101387287", + "slot": { + "period": 3731292, + "thread": 4 + } + }, + { + "amount": "188.101387293", + "slot": { + "period": 3931484, + "thread": 28 + } + } + ], + "AU1Sy5HdkkK7o4DwZomV9NdrxpXD9dKtBXRkKDwCvhicdUJcpGyq": [ + { + "amount": "113.655016889", + "slot": { + "period": 50158, + "thread": 20 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 305896, + "thread": 30 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 442658, + "thread": 29 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 651335, + "thread": 29 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 668959, + "thread": 7 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 888058, + "thread": 13 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1139980, + "thread": 14 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1308911, + "thread": 0 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1426532, + "thread": 14 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1578991, + "thread": 25 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1786402, + "thread": 5 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 1894041, + "thread": 19 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2008200, + "thread": 0 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2238898, + "thread": 25 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2432116, + "thread": 12 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2614018, + "thread": 9 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2642433, + "thread": 21 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 2893818, + "thread": 9 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 3006178, + "thread": 19 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 3202261, + "thread": 29 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 3297957, + "thread": 3 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 3601910, + "thread": 28 + } + }, + { + "amount": "113.655016889", + "slot": { + "period": 3648047, + "thread": 19 + } + }, + { + "amount": "113.655016898", + "slot": { + "period": 3944664, + "thread": 0 + } + } + ], + "AU1SyPV94PieU8KPyHmBA1CxG1RSExjgng2vTqik5Kfzt4N9w3Kd": [ + { + "amount": "211.293518173", + "slot": { + "period": 115948, + "thread": 28 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 249630, + "thread": 8 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 433184, + "thread": 5 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 560973, + "thread": 16 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 699425, + "thread": 19 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 843990, + "thread": 11 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1142769, + "thread": 23 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1299893, + "thread": 31 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1320118, + "thread": 10 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1586577, + "thread": 5 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1713850, + "thread": 24 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 1818548, + "thread": 16 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2109381, + "thread": 22 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2205558, + "thread": 7 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2372841, + "thread": 13 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2601015, + "thread": 17 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2677146, + "thread": 3 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 2900776, + "thread": 8 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 3117336, + "thread": 31 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 3141040, + "thread": 5 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 3346109, + "thread": 27 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 3543250, + "thread": 23 + } + }, + { + "amount": "211.293518173", + "slot": { + "period": 3677301, + "thread": 15 + } + }, + { + "amount": "211.293518172", + "slot": { + "period": 3784729, + "thread": 9 + } + } + ], + "AU1SyS2ovY7eC7qQsi8Kh91LrtxvCpGPy3LqzZmFnxViUx3ChXF6": [ + { + "amount": "109.322497113", + "slot": { + "period": 44221, + "thread": 17 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 285388, + "thread": 31 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 326668, + "thread": 2 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 597458, + "thread": 22 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 701033, + "thread": 20 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 924107, + "thread": 27 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1012811, + "thread": 13 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1248305, + "thread": 6 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1341285, + "thread": 5 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1535621, + "thread": 11 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1792056, + "thread": 11 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 1960254, + "thread": 29 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2070075, + "thread": 5 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2160560, + "thread": 18 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2439966, + "thread": 29 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2486338, + "thread": 21 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2708438, + "thread": 14 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 2805212, + "thread": 23 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 3042372, + "thread": 2 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 3143286, + "thread": 11 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 3322620, + "thread": 29 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 3610780, + "thread": 22 + } + }, + { + "amount": "109.322497113", + "slot": { + "period": 3719313, + "thread": 25 + } + }, + { + "amount": "109.322497123", + "slot": { + "period": 3879070, + "thread": 23 + } + } + ], + "AU1SzNuaYfgan9idTyczT636dsgCmZzMWLXL1BDkDNJzkcDkaAja": [ + { + "amount": "188.909679707", + "slot": { + "period": 68999, + "thread": 2 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 284201, + "thread": 29 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 332545, + "thread": 24 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 536050, + "thread": 1 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 740245, + "thread": 2 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 868856, + "thread": 27 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1013661, + "thread": 12 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1299860, + "thread": 15 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1397967, + "thread": 20 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1558301, + "thread": 29 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1726537, + "thread": 26 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 1893229, + "thread": 5 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2046239, + "thread": 3 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2147608, + "thread": 19 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2300280, + "thread": 6 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2540929, + "thread": 6 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2706070, + "thread": 21 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 2803214, + "thread": 16 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 3013195, + "thread": 19 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 3150988, + "thread": 27 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 3366530, + "thread": 31 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 3560061, + "thread": 4 + } + }, + { + "amount": "188.909679707", + "slot": { + "period": 3768408, + "thread": 20 + } + }, + { + "amount": "188.909679715", + "slot": { + "period": 3943192, + "thread": 2 + } + } + ], + "AU1T11UKoduJ9uBtkDLerfuV4iatuKv1vfbYKJaVKdvYk8vfvmeE": [ + { + "amount": "57.674317937", + "slot": { + "period": 135016, + "thread": 4 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 317899, + "thread": 27 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 471904, + "thread": 0 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 495753, + "thread": 2 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 779730, + "thread": 26 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 880161, + "thread": 10 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1023546, + "thread": 19 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1265118, + "thread": 24 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1341950, + "thread": 13 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1631909, + "thread": 31 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1758483, + "thread": 28 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1856435, + "thread": 25 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 1978282, + "thread": 3 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 2276594, + "thread": 20 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 2363540, + "thread": 18 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 2510363, + "thread": 17 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 2695201, + "thread": 9 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 2837071, + "thread": 29 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 3086135, + "thread": 15 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 3239746, + "thread": 0 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 3369116, + "thread": 28 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 3456580, + "thread": 26 + } + }, + { + "amount": "57.674317937", + "slot": { + "period": 3688174, + "thread": 0 + } + }, + { + "amount": "57.674317940", + "slot": { + "period": 3932297, + "thread": 9 + } + } + ], + "AU1T2C3HxMqzD4GbG3JtGh3BZfWYnDsTeZSP44aXmKLJh3HhDwcm": [ + { + "amount": "18021.131860481", + "slot": { + "period": 80698, + "thread": 19 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 203614, + "thread": 29 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 382429, + "thread": 19 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 566415, + "thread": 27 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 770919, + "thread": 3 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 880311, + "thread": 3 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1119939, + "thread": 21 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1177127, + "thread": 4 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1401084, + "thread": 21 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1595944, + "thread": 12 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1757674, + "thread": 6 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 1912767, + "thread": 19 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2089422, + "thread": 25 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2222674, + "thread": 9 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2317565, + "thread": 19 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2515077, + "thread": 12 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2734316, + "thread": 19 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 2942392, + "thread": 8 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 3068629, + "thread": 17 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 3283897, + "thread": 27 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 3434971, + "thread": 26 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 3597163, + "thread": 20 + } + }, + { + "amount": "18021.131860481", + "slot": { + "period": 3711733, + "thread": 30 + } + }, + { + "amount": "18021.131860482", + "slot": { + "period": 3931693, + "thread": 11 + } + } + ], + "AU1T2sLF5p85Rn3c6uWv4GwmyjaXysw1xmdypxWcNWGhHTGazzFF": [ + { + "amount": "349.341371151", + "slot": { + "period": 154865, + "thread": 22 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 184986, + "thread": 23 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 440397, + "thread": 29 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 501310, + "thread": 5 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 780434, + "thread": 24 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 836811, + "thread": 31 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1089445, + "thread": 29 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1240267, + "thread": 8 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1360038, + "thread": 28 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1560915, + "thread": 25 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1669473, + "thread": 3 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1895977, + "thread": 5 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 1986137, + "thread": 24 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 2259111, + "thread": 31 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 2358060, + "thread": 30 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 2473554, + "thread": 16 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 2630246, + "thread": 8 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 2856717, + "thread": 10 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 3085942, + "thread": 27 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 3243441, + "thread": 1 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 3348779, + "thread": 8 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 3561166, + "thread": 7 + } + }, + { + "amount": "349.341371151", + "slot": { + "period": 3743509, + "thread": 20 + } + }, + { + "amount": "349.341371141", + "slot": { + "period": 3928057, + "thread": 15 + } + } + ], + "AU1T4B6MaVaVEriLmYErEiyEqjBq5QxDYLpu9vDu7Qo51r6Hpnm5": [ + { + "amount": "276.327590576", + "slot": { + "period": 14665, + "thread": 8 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 177680, + "thread": 21 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 437068, + "thread": 15 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 537492, + "thread": 10 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 765723, + "thread": 24 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 934736, + "thread": 8 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1000934, + "thread": 25 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1162936, + "thread": 7 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1432023, + "thread": 29 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1623809, + "thread": 21 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1790825, + "thread": 5 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 1819802, + "thread": 6 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2028461, + "thread": 18 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2237876, + "thread": 10 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2421942, + "thread": 7 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2490634, + "thread": 4 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2745807, + "thread": 3 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2943614, + "thread": 30 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 2986747, + "thread": 23 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 3188905, + "thread": 31 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 3405764, + "thread": 6 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 3462346, + "thread": 18 + } + }, + { + "amount": "276.327590576", + "slot": { + "period": 3760204, + "thread": 21 + } + }, + { + "amount": "276.327590578", + "slot": { + "period": 3876308, + "thread": 11 + } + } + ], + "AU1T4fmtCnCLKePBBNB9FHiGhhEUQB5F2NNJ39Tc6HrDEmSgMwka": [ + { + "amount": "636.576175954", + "slot": { + "period": 27993, + "thread": 4 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 198125, + "thread": 6 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 470331, + "thread": 11 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 625213, + "thread": 26 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 768072, + "thread": 8 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 834322, + "thread": 10 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1045118, + "thread": 7 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1276058, + "thread": 0 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1447631, + "thread": 20 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1644174, + "thread": 21 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1656267, + "thread": 19 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 1810804, + "thread": 0 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2019260, + "thread": 4 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2256200, + "thread": 21 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2434951, + "thread": 3 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2589668, + "thread": 26 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2627318, + "thread": 11 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2947135, + "thread": 22 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 2999597, + "thread": 2 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 3125708, + "thread": 29 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 3332049, + "thread": 8 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 3576211, + "thread": 15 + } + }, + { + "amount": "636.576175954", + "slot": { + "period": 3706675, + "thread": 17 + } + }, + { + "amount": "636.576175952", + "slot": { + "period": 3946399, + "thread": 20 + } + } + ], + "AU1T6JjkAAdhsPdcseXbx9y5KJK3yfCU8Bw9NmT3YNCMyFVjrMPN": [ + { + "amount": "73.571542784", + "slot": { + "period": 107433, + "thread": 23 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 186979, + "thread": 15 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 438892, + "thread": 30 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 527835, + "thread": 8 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 654303, + "thread": 20 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 855201, + "thread": 1 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1099826, + "thread": 29 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1254227, + "thread": 21 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1319469, + "thread": 16 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1609951, + "thread": 27 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1777589, + "thread": 15 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 1812913, + "thread": 2 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2029386, + "thread": 4 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2163960, + "thread": 11 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2384461, + "thread": 11 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2526817, + "thread": 31 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2738730, + "thread": 11 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2810147, + "thread": 15 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 2961713, + "thread": 16 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 3196797, + "thread": 4 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 3417357, + "thread": 21 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 3460438, + "thread": 0 + } + }, + { + "amount": "73.571542784", + "slot": { + "period": 3712028, + "thread": 27 + } + }, + { + "amount": "73.571542781", + "slot": { + "period": 3847708, + "thread": 12 + } + } + ], + "AU1T6n7BbHezVF6t9buE75KHbGsDcC1vnK2gjZ1f8KbGuheRXAtX": [ + { + "amount": "289.373500470", + "slot": { + "period": 38390, + "thread": 13 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 276487, + "thread": 27 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 408629, + "thread": 29 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 541124, + "thread": 29 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 792434, + "thread": 13 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 957333, + "thread": 7 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1070459, + "thread": 6 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1183383, + "thread": 2 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1360317, + "thread": 25 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1548095, + "thread": 10 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1668737, + "thread": 7 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 1853144, + "thread": 9 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2058670, + "thread": 19 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2215951, + "thread": 30 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2394141, + "thread": 18 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2557172, + "thread": 20 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2774635, + "thread": 10 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 2943972, + "thread": 7 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 3054312, + "thread": 27 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 3153850, + "thread": 6 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 3375154, + "thread": 11 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 3454685, + "thread": 9 + } + }, + { + "amount": "289.373500470", + "slot": { + "period": 3644563, + "thread": 24 + } + }, + { + "amount": "289.373500479", + "slot": { + "period": 3940767, + "thread": 16 + } + } + ], + "AU1T6rtpxekAAP747wvUR8HB8EmsPeWu26gh1mzqRWjfjhm8FHi1": [ + { + "amount": "140.048876575", + "slot": { + "period": 70874, + "thread": 16 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 226362, + "thread": 29 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 339302, + "thread": 29 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 594675, + "thread": 17 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 799868, + "thread": 22 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 977829, + "thread": 12 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 983663, + "thread": 2 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 1307222, + "thread": 27 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 1385042, + "thread": 13 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 1507966, + "thread": 6 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 1747761, + "thread": 30 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 1903869, + "thread": 21 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2058874, + "thread": 17 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2191139, + "thread": 31 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2397277, + "thread": 20 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2527703, + "thread": 22 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2668498, + "thread": 29 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 2898462, + "thread": 8 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 3084004, + "thread": 4 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 3165954, + "thread": 31 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 3342828, + "thread": 21 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 3482856, + "thread": 10 + } + }, + { + "amount": "140.048876575", + "slot": { + "period": 3692069, + "thread": 16 + } + }, + { + "amount": "140.048876581", + "slot": { + "period": 3902180, + "thread": 27 + } + } + ], + "AU1T7j3HXeighH9nfpQZVE1crvxYjna3BAVK3C7TganyaVc2jamK": [ + { + "amount": "164.902359494", + "slot": { + "period": 128977, + "thread": 27 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 289926, + "thread": 30 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 459990, + "thread": 25 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 582551, + "thread": 1 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 680872, + "thread": 31 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 880675, + "thread": 16 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1109687, + "thread": 11 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1278110, + "thread": 5 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1384550, + "thread": 27 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1622318, + "thread": 3 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1703980, + "thread": 29 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 1870597, + "thread": 9 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2014644, + "thread": 23 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2233631, + "thread": 4 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2319172, + "thread": 23 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2561206, + "thread": 13 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2779676, + "thread": 26 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 2803709, + "thread": 23 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 3027551, + "thread": 21 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 3151275, + "thread": 25 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 3309128, + "thread": 0 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 3499529, + "thread": 18 + } + }, + { + "amount": "164.902359494", + "slot": { + "period": 3738284, + "thread": 8 + } + }, + { + "amount": "164.902359483", + "slot": { + "period": 3833181, + "thread": 26 + } + } + ], + "AU1T91EBmVqrpCo338JV7BVWkx5pNF2QjkVaQUszE78qwFqtJqi6": [ + { + "amount": "160.177600130", + "slot": { + "period": 129458, + "thread": 12 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 231939, + "thread": 1 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 338592, + "thread": 7 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 552092, + "thread": 22 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 746014, + "thread": 23 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 844174, + "thread": 15 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1006198, + "thread": 18 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1252450, + "thread": 7 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1429874, + "thread": 3 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1617015, + "thread": 21 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1703222, + "thread": 19 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 1837767, + "thread": 5 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2055492, + "thread": 20 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2153652, + "thread": 20 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2370726, + "thread": 28 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2522586, + "thread": 6 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2665593, + "thread": 27 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 2839803, + "thread": 29 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 3023479, + "thread": 17 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 3216161, + "thread": 13 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 3299266, + "thread": 7 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 3550814, + "thread": 26 + } + }, + { + "amount": "160.177600130", + "slot": { + "period": 3700348, + "thread": 29 + } + }, + { + "amount": "160.177600120", + "slot": { + "period": 3804161, + "thread": 3 + } + } + ], + "AU1T9nL3dBZw1gUAhYny2ULTZDuykQ8iq3WkAPozNKuWrfqsDQKK": [ + { + "amount": "302.254714891", + "slot": { + "period": 136427, + "thread": 23 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 215880, + "thread": 5 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 395709, + "thread": 12 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 541331, + "thread": 8 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 711687, + "thread": 8 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 860376, + "thread": 4 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1113369, + "thread": 3 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1253812, + "thread": 14 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1408353, + "thread": 6 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1594854, + "thread": 26 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1691681, + "thread": 21 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 1902322, + "thread": 16 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2000668, + "thread": 24 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2237646, + "thread": 18 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2329026, + "thread": 10 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2604149, + "thread": 14 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2657360, + "thread": 31 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2914914, + "thread": 17 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 2970919, + "thread": 25 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 3221023, + "thread": 28 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 3402614, + "thread": 7 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 3487946, + "thread": 8 + } + }, + { + "amount": "302.254714891", + "slot": { + "period": 3753649, + "thread": 12 + } + }, + { + "amount": "302.254714900", + "slot": { + "period": 3793650, + "thread": 11 + } + } + ], + "AU1T9powqNyohoxmzfNHon7HnKowhZyWA6dtewrNNKbYCpCQGQsa": [ + { + "amount": "172.706950865", + "slot": { + "period": 71217, + "thread": 12 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 226262, + "thread": 16 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 449859, + "thread": 26 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 552036, + "thread": 30 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 680911, + "thread": 5 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 976852, + "thread": 27 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1046714, + "thread": 27 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1294358, + "thread": 6 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1395105, + "thread": 15 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1620299, + "thread": 28 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1675143, + "thread": 19 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 1967626, + "thread": 25 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2039654, + "thread": 25 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2234729, + "thread": 13 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2317224, + "thread": 0 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2533660, + "thread": 18 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2784997, + "thread": 18 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 2927311, + "thread": 2 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 3041059, + "thread": 11 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 3173560, + "thread": 10 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 3418359, + "thread": 9 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 3455489, + "thread": 11 + } + }, + { + "amount": "172.706950865", + "slot": { + "period": 3712899, + "thread": 2 + } + }, + { + "amount": "172.706950876", + "slot": { + "period": 3932755, + "thread": 6 + } + } + ], + "AU1TAMtkEVs1KH77dWnVHbE9LDEeFwH3NfpWQjH3FfQihqCFFovL": [ + { + "amount": "1009.629808705", + "slot": { + "period": 113740, + "thread": 23 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 250601, + "thread": 8 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 402357, + "thread": 5 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 598221, + "thread": 13 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 698730, + "thread": 18 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 933039, + "thread": 26 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 988560, + "thread": 14 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 1187228, + "thread": 22 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 1477932, + "thread": 29 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 1624510, + "thread": 2 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 1772167, + "thread": 25 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 1842825, + "thread": 3 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2119006, + "thread": 12 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2144875, + "thread": 28 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2339970, + "thread": 16 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2545702, + "thread": 20 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2656641, + "thread": 17 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 2890337, + "thread": 0 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 3068387, + "thread": 22 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 3170774, + "thread": 10 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 3446579, + "thread": 6 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 3545124, + "thread": 9 + } + }, + { + "amount": "1009.629808705", + "slot": { + "period": 3639063, + "thread": 2 + } + }, + { + "amount": "1009.629808686", + "slot": { + "period": 3866571, + "thread": 22 + } + } + ], + "AU1TAYRmaYqK4FMuX1faitftF9LeSSwojo2Dwg5hpyFwFVNf44Bo": [ + { + "amount": "262.006220256", + "slot": { + "period": 133874, + "thread": 23 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 303219, + "thread": 16 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 444265, + "thread": 29 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 563110, + "thread": 14 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 745655, + "thread": 21 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 972440, + "thread": 21 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1089173, + "thread": 7 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1258692, + "thread": 30 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1333419, + "thread": 22 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1643077, + "thread": 27 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1687772, + "thread": 11 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 1971938, + "thread": 6 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2131516, + "thread": 13 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2241495, + "thread": 6 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2366550, + "thread": 31 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2557798, + "thread": 18 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2696554, + "thread": 18 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 2906488, + "thread": 27 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3092242, + "thread": 31 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3135963, + "thread": 31 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3399322, + "thread": 19 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3503545, + "thread": 2 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3743755, + "thread": 1 + } + }, + { + "amount": "262.006220256", + "slot": { + "period": 3945912, + "thread": 7 + } + } + ], + "AU1TAwKBwG5vSuXREqpxNMvFzNeVQWUZq3UJZEPiHBNmyCfXEQ5B": [ + { + "amount": "101.857796794", + "slot": { + "period": 115437, + "thread": 17 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 178649, + "thread": 0 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 482449, + "thread": 1 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 643488, + "thread": 7 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 662498, + "thread": 11 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 908837, + "thread": 12 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1054217, + "thread": 31 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1258618, + "thread": 27 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1357596, + "thread": 6 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1616594, + "thread": 13 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1686930, + "thread": 14 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 1872661, + "thread": 10 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2008752, + "thread": 24 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2149507, + "thread": 19 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2343985, + "thread": 14 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2485081, + "thread": 25 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2626073, + "thread": 1 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 2813589, + "thread": 7 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3085899, + "thread": 7 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3260643, + "thread": 16 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3399710, + "thread": 23 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3558189, + "thread": 4 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3747597, + "thread": 10 + } + }, + { + "amount": "101.857796794", + "slot": { + "period": 3804814, + "thread": 18 + } + } + ], + "AU1TB5JtxprJ5s8RXm4WtwCvv6hAhagdaQJUJMaMJSvcqyk7yzEm": [ + { + "amount": "105.877382335", + "slot": { + "period": 119664, + "thread": 29 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 311902, + "thread": 21 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 468566, + "thread": 9 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 528110, + "thread": 29 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 781401, + "thread": 31 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 943534, + "thread": 11 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1012740, + "thread": 2 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1227694, + "thread": 26 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1330106, + "thread": 25 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1637035, + "thread": 5 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1702085, + "thread": 29 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 1933958, + "thread": 29 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2086819, + "thread": 23 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2210767, + "thread": 3 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2378758, + "thread": 31 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2527133, + "thread": 13 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2634249, + "thread": 26 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2856031, + "thread": 27 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 2987548, + "thread": 12 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 3156307, + "thread": 27 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 3409854, + "thread": 28 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 3591397, + "thread": 8 + } + }, + { + "amount": "105.877382335", + "slot": { + "period": 3662019, + "thread": 16 + } + }, + { + "amount": "105.877382346", + "slot": { + "period": 3890598, + "thread": 27 + } + } + ], + "AU1TBX7vrpHFGc2hNzawZJaiYoKuffFc4ZPemrHwXjTZSYmKF1TJ": [ + { + "amount": "173.600061410", + "slot": { + "period": 38915, + "thread": 2 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 321481, + "thread": 29 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 485619, + "thread": 7 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 498698, + "thread": 0 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 772779, + "thread": 19 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 841479, + "thread": 14 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1088164, + "thread": 5 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1155503, + "thread": 1 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1434228, + "thread": 21 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1539159, + "thread": 3 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1677316, + "thread": 30 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 1918012, + "thread": 2 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2136765, + "thread": 11 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2229470, + "thread": 29 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2386929, + "thread": 9 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2560902, + "thread": 18 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2655524, + "thread": 31 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2933677, + "thread": 21 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 2998953, + "thread": 0 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 3210500, + "thread": 7 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 3359661, + "thread": 1 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 3571372, + "thread": 5 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 3708994, + "thread": 20 + } + }, + { + "amount": "173.600061410", + "slot": { + "period": 3797484, + "thread": 18 + } + } + ], + "AU1TBu2GrdXSBQbH4PMCiG6eD6RshnrRhEAiPkzSfieerapdygup": [ + { + "amount": "69.560917291", + "slot": { + "period": 114506, + "thread": 11 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 195726, + "thread": 13 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 400671, + "thread": 16 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 611870, + "thread": 12 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 741130, + "thread": 0 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 957419, + "thread": 13 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1029547, + "thread": 3 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1190022, + "thread": 29 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1376195, + "thread": 8 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1518598, + "thread": 30 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1751370, + "thread": 17 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 1886779, + "thread": 3 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2064842, + "thread": 3 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2195723, + "thread": 30 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2437709, + "thread": 9 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2553397, + "thread": 9 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2730765, + "thread": 25 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 2867642, + "thread": 27 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 3076615, + "thread": 8 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 3258910, + "thread": 24 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 3377930, + "thread": 7 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 3547354, + "thread": 8 + } + }, + { + "amount": "69.560917291", + "slot": { + "period": 3713689, + "thread": 20 + } + }, + { + "amount": "69.560917294", + "slot": { + "period": 3820324, + "thread": 2 + } + } + ], + "AU1TCx6kGqwxu9mV1MFq18i7NLrUvoazgCC8tJ5SJWxm63a3ZTyj": [ + { + "amount": "223.444054392", + "slot": { + "period": 167115, + "thread": 30 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 255713, + "thread": 0 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 388273, + "thread": 25 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 587555, + "thread": 4 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 753962, + "thread": 10 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 963148, + "thread": 25 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1148947, + "thread": 25 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1170491, + "thread": 13 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1469187, + "thread": 19 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1593119, + "thread": 7 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1722285, + "thread": 8 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 1901240, + "thread": 17 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2094215, + "thread": 10 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2252482, + "thread": 17 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2342096, + "thread": 2 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2620323, + "thread": 10 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2746857, + "thread": 12 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 2818850, + "thread": 19 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3030949, + "thread": 27 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3196133, + "thread": 29 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3366089, + "thread": 6 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3546061, + "thread": 14 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3690594, + "thread": 14 + } + }, + { + "amount": "223.444054392", + "slot": { + "period": 3911599, + "thread": 24 + } + } + ], + "AU1TEK36KwLnwyUFU9s7sFDaekcXaFSknrkskmdh4RmQDRxscvYS": [ + { + "amount": "121.224726428", + "slot": { + "period": 90793, + "thread": 25 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 178407, + "thread": 10 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 480840, + "thread": 12 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 492221, + "thread": 25 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 820564, + "thread": 28 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 921448, + "thread": 28 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1043478, + "thread": 14 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1280358, + "thread": 3 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1346191, + "thread": 29 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1589004, + "thread": 18 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1736020, + "thread": 11 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 1894472, + "thread": 23 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2083732, + "thread": 22 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2236067, + "thread": 6 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2357978, + "thread": 14 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2543515, + "thread": 9 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2754033, + "thread": 27 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 2944695, + "thread": 14 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 3064280, + "thread": 8 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 3230400, + "thread": 11 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 3331216, + "thread": 15 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 3615755, + "thread": 13 + } + }, + { + "amount": "121.224726428", + "slot": { + "period": 3744015, + "thread": 4 + } + }, + { + "amount": "121.224726425", + "slot": { + "period": 3860320, + "thread": 27 + } + } + ], + "AU1TEcWzCX5LykCTNsMsR5xVoE3R89BZ5Q91itRvxo4WGbmUEt1g": [ + { + "amount": "384.540168343", + "slot": { + "period": 160480, + "thread": 29 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 229609, + "thread": 1 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 350823, + "thread": 23 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 579451, + "thread": 7 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 818404, + "thread": 13 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 926640, + "thread": 12 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1053871, + "thread": 15 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1264545, + "thread": 28 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1339149, + "thread": 31 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1615204, + "thread": 1 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1805211, + "thread": 8 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 1968590, + "thread": 24 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2119051, + "thread": 2 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2254344, + "thread": 12 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2433986, + "thread": 28 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2485639, + "thread": 15 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2675088, + "thread": 6 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2933249, + "thread": 11 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 2971473, + "thread": 18 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 3288477, + "thread": 9 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 3431865, + "thread": 25 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 3617346, + "thread": 4 + } + }, + { + "amount": "384.540168343", + "slot": { + "period": 3765143, + "thread": 18 + } + }, + { + "amount": "384.540168339", + "slot": { + "period": 3875233, + "thread": 10 + } + } + ], + "AU1TExwCJX85ia9c3Eh9GgeVcZZ6HRN3rQ2yLX1bPfpNEDtBeHpK": [ + { + "amount": "165.248222437", + "slot": { + "period": 64926, + "thread": 27 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 174842, + "thread": 29 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 456121, + "thread": 1 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 586384, + "thread": 6 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 777344, + "thread": 1 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 887625, + "thread": 24 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1027744, + "thread": 25 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1245994, + "thread": 27 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1417576, + "thread": 8 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1547589, + "thread": 1 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1676401, + "thread": 18 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 1969228, + "thread": 26 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2028982, + "thread": 28 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2268180, + "thread": 21 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2368312, + "thread": 21 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2471412, + "thread": 2 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2732037, + "thread": 9 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 2835536, + "thread": 6 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 3094712, + "thread": 4 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 3130252, + "thread": 22 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 3374983, + "thread": 26 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 3532834, + "thread": 30 + } + }, + { + "amount": "165.248222437", + "slot": { + "period": 3628466, + "thread": 18 + } + }, + { + "amount": "165.248222439", + "slot": { + "period": 3850400, + "thread": 30 + } + } + ], + "AU1TFcSorbXM3iprWfemBXj6eQi4DuiJppkeDSHfDjqRBRS6VWj6": [ + { + "amount": "172.278308538", + "slot": { + "period": 124477, + "thread": 17 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 307186, + "thread": 31 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 478838, + "thread": 11 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 567944, + "thread": 21 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 678562, + "thread": 16 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 906260, + "thread": 22 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1056752, + "thread": 0 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1300690, + "thread": 7 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1453822, + "thread": 16 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1567703, + "thread": 7 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1781300, + "thread": 20 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 1880582, + "thread": 28 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2067312, + "thread": 11 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2247789, + "thread": 9 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2304460, + "thread": 31 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2462871, + "thread": 12 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2695014, + "thread": 7 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2844853, + "thread": 0 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 2989185, + "thread": 25 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 3278090, + "thread": 11 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 3448270, + "thread": 18 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 3479520, + "thread": 18 + } + }, + { + "amount": "172.278308538", + "slot": { + "period": 3655891, + "thread": 5 + } + }, + { + "amount": "172.278308534", + "slot": { + "period": 3842555, + "thread": 22 + } + } + ], + "AU1TGMxgivqvuWhY3KKUF4p5sXsuphjh3DAg6p4t3kc1FW2cSAgc": [ + { + "amount": "282.657098112", + "slot": { + "period": 120073, + "thread": 1 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 250008, + "thread": 9 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 447393, + "thread": 29 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 651810, + "thread": 16 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 786203, + "thread": 11 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 834657, + "thread": 4 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 995531, + "thread": 3 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 1223295, + "thread": 16 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 1441318, + "thread": 24 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 1495471, + "thread": 30 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 1663012, + "thread": 23 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 1811219, + "thread": 29 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2061223, + "thread": 22 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2254217, + "thread": 22 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2430821, + "thread": 18 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2569472, + "thread": 7 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2750763, + "thread": 1 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 2944466, + "thread": 13 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 3121037, + "thread": 4 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 3257354, + "thread": 13 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 3437653, + "thread": 14 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 3500032, + "thread": 31 + } + }, + { + "amount": "282.657098112", + "slot": { + "period": 3704433, + "thread": 9 + } + }, + { + "amount": "282.657098103", + "slot": { + "period": 3871804, + "thread": 11 + } + } + ], + "AU1THJptMtnnVCEsBLuaYx8BqpqkCrGmhQuqXYGBBusV2whJTNCr": [ + { + "amount": "261.693199311", + "slot": { + "period": 70214, + "thread": 23 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 178619, + "thread": 18 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 464804, + "thread": 21 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 510200, + "thread": 20 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 690732, + "thread": 8 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 843035, + "thread": 19 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1015547, + "thread": 14 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1208467, + "thread": 3 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1442009, + "thread": 7 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1612250, + "thread": 3 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1781787, + "thread": 27 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 1844927, + "thread": 31 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2102191, + "thread": 0 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2170455, + "thread": 10 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2445810, + "thread": 28 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2550622, + "thread": 1 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2684020, + "thread": 3 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 2918711, + "thread": 31 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 3030330, + "thread": 27 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 3179783, + "thread": 23 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 3431041, + "thread": 1 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 3597164, + "thread": 17 + } + }, + { + "amount": "261.693199311", + "slot": { + "period": 3778936, + "thread": 17 + } + }, + { + "amount": "261.693199312", + "slot": { + "period": 3914503, + "thread": 28 + } + } + ], + "AU1THZ18LxptRrwq8XtURUqd8Vwtwfi5fbHuNFJwRriPFNPUeh88": [ + { + "amount": "133.761132751", + "slot": { + "period": 82046, + "thread": 22 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 299281, + "thread": 10 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 343339, + "thread": 0 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 550931, + "thread": 19 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 736070, + "thread": 21 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 873424, + "thread": 19 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1001397, + "thread": 6 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1254579, + "thread": 19 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1376803, + "thread": 26 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1502163, + "thread": 29 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1654500, + "thread": 0 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 1954765, + "thread": 13 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2048720, + "thread": 14 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2222665, + "thread": 16 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2340554, + "thread": 6 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2544546, + "thread": 6 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2691979, + "thread": 0 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 2948971, + "thread": 27 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 3103289, + "thread": 4 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 3158083, + "thread": 16 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 3378800, + "thread": 13 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 3484715, + "thread": 26 + } + }, + { + "amount": "133.761132751", + "slot": { + "period": 3770845, + "thread": 8 + } + }, + { + "amount": "133.761132748", + "slot": { + "period": 3891311, + "thread": 23 + } + } + ], + "AU1TJxiXvsxsAKh5AhzpMdyhkS5ZN87WxnXrgYQnbGH1sCZVt9GG": [ + { + "amount": "513.164032729", + "slot": { + "period": 156733, + "thread": 30 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 246496, + "thread": 26 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 419073, + "thread": 23 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 531832, + "thread": 22 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 714689, + "thread": 7 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 917779, + "thread": 7 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1098965, + "thread": 3 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1150717, + "thread": 23 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1365714, + "thread": 19 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1559933, + "thread": 30 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1744851, + "thread": 12 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 1898388, + "thread": 11 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2063989, + "thread": 24 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2213617, + "thread": 10 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2435430, + "thread": 31 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2520238, + "thread": 27 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2771873, + "thread": 0 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 2917987, + "thread": 17 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3047768, + "thread": 27 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3174569, + "thread": 10 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3314959, + "thread": 5 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3587273, + "thread": 8 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3644423, + "thread": 7 + } + }, + { + "amount": "513.164032729", + "slot": { + "period": 3878088, + "thread": 15 + } + } + ], + "AU1TKkZsPapDYHfC7UxDiKeF14EjHHgMUzqxEqV5cwa9atzch6kQ": [ + { + "amount": "139.860914208", + "slot": { + "period": 158100, + "thread": 6 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 308592, + "thread": 8 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 403591, + "thread": 23 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 599947, + "thread": 11 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 781938, + "thread": 10 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 904705, + "thread": 10 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1075804, + "thread": 3 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1234705, + "thread": 11 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1343012, + "thread": 3 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1563459, + "thread": 21 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1752216, + "thread": 7 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 1841721, + "thread": 4 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2002152, + "thread": 16 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2196158, + "thread": 18 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2304776, + "thread": 19 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2509257, + "thread": 13 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2649190, + "thread": 0 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2946779, + "thread": 3 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 2985993, + "thread": 19 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 3135107, + "thread": 17 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 3341672, + "thread": 3 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 3530156, + "thread": 1 + } + }, + { + "amount": "139.860914208", + "slot": { + "period": 3643388, + "thread": 2 + } + }, + { + "amount": "139.860914215", + "slot": { + "period": 3782351, + "thread": 17 + } + } + ], + "AU1TL1Ua9dNSvzPYzMvtBj7D5U57ALzNpfMU5HEqwDVUhqmvT9uB": [ + { + "amount": "133.465271465", + "slot": { + "period": 45158, + "thread": 16 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 277950, + "thread": 26 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 406989, + "thread": 17 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 529876, + "thread": 6 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 659451, + "thread": 17 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 943180, + "thread": 11 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1056864, + "thread": 22 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1189869, + "thread": 25 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1349737, + "thread": 27 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1579044, + "thread": 11 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1719009, + "thread": 20 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 1919620, + "thread": 24 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2012302, + "thread": 16 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2241263, + "thread": 31 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2308021, + "thread": 9 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2616726, + "thread": 30 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2769356, + "thread": 4 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 2815730, + "thread": 7 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 3082342, + "thread": 26 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 3268899, + "thread": 21 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 3302968, + "thread": 7 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 3579978, + "thread": 11 + } + }, + { + "amount": "133.465271465", + "slot": { + "period": 3712916, + "thread": 8 + } + }, + { + "amount": "133.465271463", + "slot": { + "period": 3946114, + "thread": 31 + } + } + ], + "AU1TL2sQcRcCDDvXLqLMXWBgjMvk9uqXLxo5XbVuDiH6ZRtQTvCz": [ + { + "amount": "217.480494629", + "slot": { + "period": 98882, + "thread": 20 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 288123, + "thread": 29 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 385867, + "thread": 9 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 531158, + "thread": 20 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 699200, + "thread": 15 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 826658, + "thread": 19 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1049337, + "thread": 8 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1280556, + "thread": 30 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1428666, + "thread": 2 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1498724, + "thread": 12 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1671328, + "thread": 0 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 1942996, + "thread": 30 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2081926, + "thread": 31 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2201333, + "thread": 10 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2371486, + "thread": 28 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2582354, + "thread": 6 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2742360, + "thread": 18 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 2826229, + "thread": 30 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 3059533, + "thread": 20 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 3227223, + "thread": 10 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 3368057, + "thread": 30 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 3475710, + "thread": 21 + } + }, + { + "amount": "217.480494629", + "slot": { + "period": 3748980, + "thread": 27 + } + }, + { + "amount": "217.480494638", + "slot": { + "period": 3842942, + "thread": 1 + } + } + ], + "AU1TMRFFDxGAsyNTdWCDw5FoR24oecGrjTLzJuExUTxqc4syTNtR": [ + { + "amount": "426.739968492", + "slot": { + "period": 121559, + "thread": 17 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 220694, + "thread": 13 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 456239, + "thread": 11 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 494406, + "thread": 20 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 755645, + "thread": 4 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 826265, + "thread": 30 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1016045, + "thread": 10 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1267468, + "thread": 8 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1324858, + "thread": 6 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1588111, + "thread": 15 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1758808, + "thread": 17 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 1859813, + "thread": 12 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2007955, + "thread": 19 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2289137, + "thread": 17 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2374947, + "thread": 9 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2574239, + "thread": 20 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2785644, + "thread": 10 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 2931034, + "thread": 30 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 3001863, + "thread": 23 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 3252945, + "thread": 7 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 3437128, + "thread": 6 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 3525431, + "thread": 9 + } + }, + { + "amount": "426.739968492", + "slot": { + "period": 3692605, + "thread": 24 + } + }, + { + "amount": "426.739968499", + "slot": { + "period": 3945316, + "thread": 14 + } + } + ], + "AU1TMckFUbRueH9jgA4pCd4GVDnQeE7Z14xraZdnva15wdA7h6fz": [ + { + "amount": "215.372966084", + "slot": { + "period": 162382, + "thread": 17 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 239159, + "thread": 3 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 465801, + "thread": 27 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 584031, + "thread": 1 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 659312, + "thread": 19 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 960308, + "thread": 25 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1071281, + "thread": 21 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1307953, + "thread": 27 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1366583, + "thread": 7 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1606830, + "thread": 4 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1743231, + "thread": 1 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 1909073, + "thread": 5 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2002817, + "thread": 23 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2146063, + "thread": 24 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2424139, + "thread": 10 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2480667, + "thread": 18 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2626396, + "thread": 29 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 2808778, + "thread": 9 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 3017900, + "thread": 31 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 3262046, + "thread": 12 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 3396758, + "thread": 4 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 3558309, + "thread": 27 + } + }, + { + "amount": "215.372966084", + "slot": { + "period": 3621727, + "thread": 16 + } + }, + { + "amount": "215.372966091", + "slot": { + "period": 3867120, + "thread": 27 + } + } + ], + "AU1TMkJU47zp8t7CXts5CYwHyinyS1w959cStLf1dPJBySfsuaC7": [ + { + "amount": "93.763795427", + "slot": { + "period": 67633, + "thread": 21 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 265361, + "thread": 9 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 430339, + "thread": 23 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 501948, + "thread": 7 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 724274, + "thread": 30 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 939036, + "thread": 2 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1087677, + "thread": 31 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1243537, + "thread": 4 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1361482, + "thread": 27 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1598846, + "thread": 19 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1723893, + "thread": 26 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 1827316, + "thread": 24 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2141274, + "thread": 24 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2274389, + "thread": 3 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2315990, + "thread": 15 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2535407, + "thread": 30 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2757384, + "thread": 2 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 2858740, + "thread": 12 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 3030401, + "thread": 6 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 3144839, + "thread": 17 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 3444322, + "thread": 1 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 3548730, + "thread": 7 + } + }, + { + "amount": "93.763795427", + "slot": { + "period": 3770183, + "thread": 31 + } + }, + { + "amount": "93.763795436", + "slot": { + "period": 3855540, + "thread": 29 + } + } + ], + "AU1TNcemYRWYWYFFfnA7kAdcWCTMmmEHZTh6tVtVL83kBAYDBRfc": [ + { + "amount": "330.700785152", + "slot": { + "period": 39349, + "thread": 6 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 302482, + "thread": 19 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 361022, + "thread": 29 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 607860, + "thread": 15 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 771627, + "thread": 1 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 832798, + "thread": 24 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1088911, + "thread": 29 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1197663, + "thread": 26 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1442583, + "thread": 14 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1544526, + "thread": 29 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1767256, + "thread": 19 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 1851244, + "thread": 16 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2082485, + "thread": 4 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2294853, + "thread": 29 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2347189, + "thread": 27 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2563882, + "thread": 22 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2633013, + "thread": 25 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 2896136, + "thread": 8 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 3069894, + "thread": 3 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 3253853, + "thread": 27 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 3325594, + "thread": 21 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 3603137, + "thread": 29 + } + }, + { + "amount": "330.700785152", + "slot": { + "period": 3690178, + "thread": 12 + } + }, + { + "amount": "330.700785156", + "slot": { + "period": 3829318, + "thread": 13 + } + } + ], + "AU1TPVkohLuJb5fKSTpfThyFejN1kbQBR6jsiSP3BccuVYpQGm5q": [ + { + "amount": "277.185210529", + "slot": { + "period": 166135, + "thread": 16 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 271289, + "thread": 22 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 354743, + "thread": 23 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 583796, + "thread": 21 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 820518, + "thread": 11 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 902912, + "thread": 13 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1097039, + "thread": 19 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1259658, + "thread": 23 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1466222, + "thread": 24 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1515452, + "thread": 5 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1737803, + "thread": 2 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 1925688, + "thread": 4 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2018226, + "thread": 8 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2166353, + "thread": 31 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2302711, + "thread": 25 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2561704, + "thread": 2 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2780205, + "thread": 13 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2913223, + "thread": 10 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 2978599, + "thread": 16 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 3225603, + "thread": 25 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 3424389, + "thread": 28 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 3484123, + "thread": 12 + } + }, + { + "amount": "277.185210529", + "slot": { + "period": 3691532, + "thread": 11 + } + }, + { + "amount": "277.185210519", + "slot": { + "period": 3842971, + "thread": 31 + } + } + ], + "AU1TPmgzLwjsLvMv6Sx3nGp8qjN1mswwkuivXQf1dVLcZhG9d4U5": [ + { + "amount": "123.876094367", + "slot": { + "period": 101783, + "thread": 23 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 210727, + "thread": 13 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 442633, + "thread": 24 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 594041, + "thread": 6 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 808613, + "thread": 18 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 855639, + "thread": 10 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 998723, + "thread": 31 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 1199611, + "thread": 1 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 1364749, + "thread": 30 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 1530556, + "thread": 4 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 1723935, + "thread": 5 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 1972424, + "thread": 14 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2141145, + "thread": 22 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2253087, + "thread": 19 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2335357, + "thread": 24 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2483200, + "thread": 6 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2706129, + "thread": 21 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 2911842, + "thread": 0 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 3113724, + "thread": 1 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 3280842, + "thread": 22 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 3334595, + "thread": 6 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 3566479, + "thread": 13 + } + }, + { + "amount": "123.876094367", + "slot": { + "period": 3755240, + "thread": 6 + } + }, + { + "amount": "123.876094361", + "slot": { + "period": 3840165, + "thread": 28 + } + } + ], + "AU1TPqrhHqnU4V53cDuTkYueS8zVPXEycbDTAsDeduFvQMSyosVc": [ + { + "amount": "120.258423395", + "slot": { + "period": 125032, + "thread": 20 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 287499, + "thread": 25 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 356450, + "thread": 26 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 648066, + "thread": 23 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 772183, + "thread": 12 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 960354, + "thread": 7 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1034493, + "thread": 16 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1263460, + "thread": 13 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1362868, + "thread": 22 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1593313, + "thread": 18 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1761244, + "thread": 23 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 1968788, + "thread": 3 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2078119, + "thread": 2 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2237583, + "thread": 6 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2397251, + "thread": 3 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2520447, + "thread": 20 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2655754, + "thread": 22 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 2827526, + "thread": 27 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 3077556, + "thread": 30 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 3141837, + "thread": 29 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 3356794, + "thread": 16 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 3478244, + "thread": 17 + } + }, + { + "amount": "120.258423395", + "slot": { + "period": 3635173, + "thread": 23 + } + }, + { + "amount": "120.258423392", + "slot": { + "period": 3942718, + "thread": 9 + } + } + ], + "AU1TQ1uMz5mxeuqeoCgPmR5V5YznMMtVfZnPNZxTbURS78T1YFgS": [ + { + "amount": "201.998172749", + "slot": { + "period": 21658, + "thread": 7 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 262947, + "thread": 23 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 426344, + "thread": 9 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 587718, + "thread": 27 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 754112, + "thread": 20 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 955872, + "thread": 25 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1063644, + "thread": 12 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1211963, + "thread": 11 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1431801, + "thread": 17 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1551649, + "thread": 16 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1769124, + "thread": 23 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 1913440, + "thread": 7 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2062161, + "thread": 2 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2186689, + "thread": 2 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2330672, + "thread": 28 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2468133, + "thread": 27 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2713619, + "thread": 13 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2885187, + "thread": 5 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 2978889, + "thread": 19 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 3189579, + "thread": 13 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 3342437, + "thread": 31 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 3488070, + "thread": 12 + } + }, + { + "amount": "201.998172749", + "slot": { + "period": 3668404, + "thread": 19 + } + }, + { + "amount": "201.998172748", + "slot": { + "period": 3821039, + "thread": 20 + } + } + ], + "AU1TQM2j8AgA2dpnxSN7DwHoeL1WptN2dxvq1YFMNX3bUDEnErqG": [ + { + "amount": "55.935689829", + "slot": { + "period": 158872, + "thread": 21 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 291339, + "thread": 0 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 328429, + "thread": 13 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 620476, + "thread": 29 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 655043, + "thread": 23 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 874314, + "thread": 2 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1107068, + "thread": 27 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1202271, + "thread": 17 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1459272, + "thread": 30 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1485863, + "thread": 12 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1794706, + "thread": 4 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1930506, + "thread": 1 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 1981267, + "thread": 15 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 2227214, + "thread": 6 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 2380742, + "thread": 8 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 2545630, + "thread": 27 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 2755393, + "thread": 25 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 2855837, + "thread": 16 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 3106900, + "thread": 15 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 3284814, + "thread": 22 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 3356625, + "thread": 2 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 3535496, + "thread": 18 + } + }, + { + "amount": "55.935689829", + "slot": { + "period": 3764782, + "thread": 30 + } + }, + { + "amount": "55.935689818", + "slot": { + "period": 3946865, + "thread": 17 + } + } + ], + "AU1TQtPwnaMEkk9QsSsJ8R9JKagirG5Ld3GK1Vjig75eAGQLrN3d": [ + { + "amount": "234.686224585", + "slot": { + "period": 71776, + "thread": 6 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 241222, + "thread": 19 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 485395, + "thread": 30 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 534877, + "thread": 11 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 750823, + "thread": 10 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 981392, + "thread": 25 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1010578, + "thread": 8 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1309584, + "thread": 4 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1352941, + "thread": 18 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1510929, + "thread": 19 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1791331, + "thread": 26 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 1967406, + "thread": 12 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2050780, + "thread": 12 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2294708, + "thread": 11 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2394944, + "thread": 10 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2494032, + "thread": 31 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2699687, + "thread": 14 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 2836739, + "thread": 19 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 3002898, + "thread": 12 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 3206003, + "thread": 9 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 3320466, + "thread": 30 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 3600009, + "thread": 7 + } + }, + { + "amount": "234.686224585", + "slot": { + "period": 3658052, + "thread": 13 + } + }, + { + "amount": "234.686224584", + "slot": { + "period": 3827001, + "thread": 15 + } + } + ], + "AU1TR1w3V9HnTqYuvTxZR2HGSnpFdVHWgbHo9aC3TPcTopEvfp9F": [ + { + "amount": "96.559157595", + "slot": { + "period": 77370, + "thread": 1 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 185481, + "thread": 22 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 331587, + "thread": 26 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 583041, + "thread": 17 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 658025, + "thread": 0 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 906358, + "thread": 16 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1145157, + "thread": 20 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1176314, + "thread": 2 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1439696, + "thread": 22 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1620240, + "thread": 6 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1666167, + "thread": 13 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 1814928, + "thread": 9 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2132927, + "thread": 14 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2147832, + "thread": 24 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2403554, + "thread": 8 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2590065, + "thread": 22 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2750434, + "thread": 23 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 2839949, + "thread": 25 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 3116034, + "thread": 30 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 3279638, + "thread": 5 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 3404159, + "thread": 1 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 3571999, + "thread": 27 + } + }, + { + "amount": "96.559157595", + "slot": { + "period": 3700530, + "thread": 7 + } + }, + { + "amount": "96.559157587", + "slot": { + "period": 3911562, + "thread": 15 + } + } + ], + "AU1TSgvSRHVBJWBXCWAubSZGngMdpkmMrAhys4XN4pJaFkee6T9e": [ + { + "amount": "167.880999024", + "slot": { + "period": 46590, + "thread": 26 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 289981, + "thread": 15 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 373537, + "thread": 29 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 584551, + "thread": 20 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 741002, + "thread": 7 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 929384, + "thread": 24 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1123391, + "thread": 30 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1161788, + "thread": 4 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1396741, + "thread": 16 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1502576, + "thread": 0 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1765343, + "thread": 0 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 1922293, + "thread": 0 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2140974, + "thread": 8 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2197621, + "thread": 14 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2303183, + "thread": 10 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2596449, + "thread": 2 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2731803, + "thread": 9 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 2889891, + "thread": 31 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 3023098, + "thread": 3 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 3144244, + "thread": 19 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 3380236, + "thread": 30 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 3467858, + "thread": 18 + } + }, + { + "amount": "167.880999024", + "slot": { + "period": 3761022, + "thread": 8 + } + }, + { + "amount": "167.880999013", + "slot": { + "period": 3848271, + "thread": 0 + } + } + ], + "AU1TSz91f4WHXHkYHL7Xm3f9AzmNdoPMNuk6EKMhxjhU3sbwbnCm": [ + { + "amount": "199.690409360", + "slot": { + "period": 132778, + "thread": 0 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 279093, + "thread": 10 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 369207, + "thread": 11 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 572908, + "thread": 30 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 766478, + "thread": 2 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 832304, + "thread": 22 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1127657, + "thread": 2 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1304430, + "thread": 12 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1479505, + "thread": 13 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1578049, + "thread": 5 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1785972, + "thread": 9 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1952297, + "thread": 2 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 1999711, + "thread": 11 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 2207387, + "thread": 14 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 2301395, + "thread": 13 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 2622775, + "thread": 24 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 2721340, + "thread": 22 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 2900893, + "thread": 18 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 3066386, + "thread": 21 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 3159641, + "thread": 28 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 3326369, + "thread": 10 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 3605311, + "thread": 1 + } + }, + { + "amount": "199.690409360", + "slot": { + "period": 3644973, + "thread": 6 + } + }, + { + "amount": "199.690409370", + "slot": { + "period": 3856416, + "thread": 22 + } + } + ], + "AU1TT45k95hx7PeYSFbHNc4hjn2tSJtXYamMzVy5uae9SFm1KRWJ": [ + { + "amount": "72.034836135", + "slot": { + "period": 132549, + "thread": 13 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 321306, + "thread": 31 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 342876, + "thread": 8 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 544638, + "thread": 9 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 681427, + "thread": 3 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 962827, + "thread": 6 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1038409, + "thread": 8 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1255880, + "thread": 31 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1411998, + "thread": 20 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1572043, + "thread": 24 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1772370, + "thread": 19 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1878342, + "thread": 18 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 1993317, + "thread": 10 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 2214246, + "thread": 8 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 2333249, + "thread": 12 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 2558137, + "thread": 30 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 2680711, + "thread": 4 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 2904887, + "thread": 5 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 3008762, + "thread": 7 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 3198995, + "thread": 19 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 3361843, + "thread": 23 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 3472025, + "thread": 26 + } + }, + { + "amount": "72.034836135", + "slot": { + "period": 3618736, + "thread": 0 + } + }, + { + "amount": "72.034836139", + "slot": { + "period": 3901411, + "thread": 30 + } + } + ], + "AU1TUMh3sMczpqo8qcTU7NxfLqMRmovjmXoH12UtrdxgCqp7t7E1": [ + { + "amount": "106.491380144", + "slot": { + "period": 90005, + "thread": 23 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 263901, + "thread": 22 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 345713, + "thread": 30 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 633424, + "thread": 27 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 786784, + "thread": 25 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 937000, + "thread": 6 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1023956, + "thread": 21 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1196923, + "thread": 14 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1379604, + "thread": 1 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1495405, + "thread": 22 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1710620, + "thread": 0 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 1954099, + "thread": 23 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2023926, + "thread": 0 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2172963, + "thread": 11 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2438549, + "thread": 12 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2535743, + "thread": 17 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2729885, + "thread": 11 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 2936869, + "thread": 21 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 3060628, + "thread": 16 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 3219800, + "thread": 12 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 3414849, + "thread": 9 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 3540523, + "thread": 12 + } + }, + { + "amount": "106.491380144", + "slot": { + "period": 3659483, + "thread": 19 + } + }, + { + "amount": "106.491380149", + "slot": { + "period": 3829094, + "thread": 21 + } + } + ], + "AU1TVEihoiQMJH4QWqSZmK6Fv6L5xEVBqJSsS2YVYAuYZioRLuKq": [ + { + "amount": "118.439730887", + "slot": { + "period": 100985, + "thread": 4 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 209380, + "thread": 18 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 421696, + "thread": 27 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 645054, + "thread": 28 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 659117, + "thread": 29 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 905852, + "thread": 22 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 984267, + "thread": 6 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 1164079, + "thread": 20 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 1460197, + "thread": 27 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 1508598, + "thread": 30 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 1794445, + "thread": 8 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 1859518, + "thread": 12 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2002855, + "thread": 0 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2165988, + "thread": 14 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2378095, + "thread": 8 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2608970, + "thread": 2 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2681094, + "thread": 21 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 2854645, + "thread": 24 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 3087593, + "thread": 20 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 3194360, + "thread": 5 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 3432947, + "thread": 15 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 3487767, + "thread": 12 + } + }, + { + "amount": "118.439730887", + "slot": { + "period": 3724071, + "thread": 7 + } + }, + { + "amount": "118.439730896", + "slot": { + "period": 3939255, + "thread": 17 + } + } + ], + "AU1TVpa4t813xf3h89hGsxPstcSrLfjWg7cvDSkF6M3ivuJyWQ1": [ + { + "amount": "194.585996206", + "slot": { + "period": 100080, + "thread": 24 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 189303, + "thread": 16 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 404088, + "thread": 31 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 648351, + "thread": 30 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 730387, + "thread": 19 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 853216, + "thread": 5 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1119895, + "thread": 12 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1317278, + "thread": 7 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1378066, + "thread": 24 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1507664, + "thread": 1 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1736771, + "thread": 21 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 1849832, + "thread": 4 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2094492, + "thread": 5 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2203725, + "thread": 2 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2347447, + "thread": 0 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2477221, + "thread": 0 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2755923, + "thread": 26 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 2909328, + "thread": 0 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 3088931, + "thread": 2 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 3152914, + "thread": 22 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 3404336, + "thread": 20 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 3458677, + "thread": 17 + } + }, + { + "amount": "194.585996206", + "slot": { + "period": 3697338, + "thread": 31 + } + }, + { + "amount": "194.585996211", + "slot": { + "period": 3866074, + "thread": 4 + } + } + ], + "AU1TWEGEGcZhahebTB9ZnBRCNUjeQvVNfnstKEXU5g4Dpj34d6Vs": [ + { + "amount": "73.621437016", + "slot": { + "period": 83879, + "thread": 7 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 253593, + "thread": 28 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 454606, + "thread": 3 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 491906, + "thread": 10 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 743659, + "thread": 31 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 902433, + "thread": 5 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 986617, + "thread": 7 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 1207883, + "thread": 27 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 1447568, + "thread": 24 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 1591664, + "thread": 5 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 1696772, + "thread": 28 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 1967945, + "thread": 21 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2101816, + "thread": 6 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2195250, + "thread": 5 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2326230, + "thread": 14 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2479638, + "thread": 18 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2773248, + "thread": 24 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 2910867, + "thread": 16 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 3000513, + "thread": 5 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 3251021, + "thread": 3 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 3334106, + "thread": 20 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 3478903, + "thread": 14 + } + }, + { + "amount": "73.621437016", + "slot": { + "period": 3728800, + "thread": 9 + } + }, + { + "amount": "73.621437015", + "slot": { + "period": 3817133, + "thread": 12 + } + } + ], + "AU1TWVya1iuuZfL4tcwDvg1oG4dy5ci3WthVkKct4tBDQPnxLQhP": [ + { + "amount": "78.554121877", + "slot": { + "period": 22699, + "thread": 27 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 322195, + "thread": 3 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 343451, + "thread": 30 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 649871, + "thread": 5 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 751844, + "thread": 27 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 865358, + "thread": 5 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1042247, + "thread": 14 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1259907, + "thread": 7 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1397915, + "thread": 1 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1642750, + "thread": 4 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1651701, + "thread": 20 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 1838946, + "thread": 26 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2121118, + "thread": 17 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2149181, + "thread": 23 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2356989, + "thread": 20 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2589708, + "thread": 28 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2769026, + "thread": 18 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 2801952, + "thread": 1 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 3036899, + "thread": 6 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 3264719, + "thread": 24 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 3440865, + "thread": 18 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 3479720, + "thread": 27 + } + }, + { + "amount": "78.554121877", + "slot": { + "period": 3637728, + "thread": 17 + } + }, + { + "amount": "78.554121874", + "slot": { + "period": 3936116, + "thread": 4 + } + } + ], + "AU1TXUH1S4ocLUvvWDdk4KDkW8q8bpKPTVsoSMBUacxKrcVGq7ra": [ + { + "amount": "197.011562878", + "slot": { + "period": 79754, + "thread": 27 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 199769, + "thread": 29 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 417162, + "thread": 29 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 641647, + "thread": 0 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 678590, + "thread": 2 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 934646, + "thread": 19 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1084020, + "thread": 26 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1306564, + "thread": 3 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1453575, + "thread": 12 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1602062, + "thread": 18 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1732226, + "thread": 1 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 1966367, + "thread": 7 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2059666, + "thread": 6 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2155090, + "thread": 14 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2425740, + "thread": 23 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2579728, + "thread": 13 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2780687, + "thread": 29 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2811146, + "thread": 22 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 2994610, + "thread": 24 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 3209977, + "thread": 22 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 3385655, + "thread": 21 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 3517330, + "thread": 14 + } + }, + { + "amount": "197.011562878", + "slot": { + "period": 3688691, + "thread": 30 + } + }, + { + "amount": "197.011562875", + "slot": { + "period": 3784536, + "thread": 13 + } + } + ], + "AU1TXoWkAGRkdgXtueq9WFg5UNqyd6zjvtruQxmaQxjCyTv63mYi": [ + { + "amount": "257.737330487", + "slot": { + "period": 39017, + "thread": 25 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 257980, + "thread": 2 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 481616, + "thread": 6 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 591921, + "thread": 29 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 776478, + "thread": 17 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 907399, + "thread": 22 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1074383, + "thread": 11 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1289879, + "thread": 31 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1361046, + "thread": 24 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1496962, + "thread": 18 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1649694, + "thread": 11 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 1852090, + "thread": 13 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2113867, + "thread": 4 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2293251, + "thread": 9 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2335350, + "thread": 2 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2581355, + "thread": 20 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2625023, + "thread": 22 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 2842909, + "thread": 19 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 3050901, + "thread": 15 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 3210320, + "thread": 11 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 3435063, + "thread": 30 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 3479499, + "thread": 23 + } + }, + { + "amount": "257.737330487", + "slot": { + "period": 3639098, + "thread": 16 + } + }, + { + "amount": "257.737330488", + "slot": { + "period": 3798881, + "thread": 30 + } + } + ], + "AU1TY64GQEfj4A4x3PKnHiY3GmEfwS6L7baPx6ni4dXmYfY6cWFp": [ + { + "amount": "173.624652892", + "slot": { + "period": 128713, + "thread": 2 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 227447, + "thread": 19 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 472035, + "thread": 4 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 635998, + "thread": 1 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 727718, + "thread": 3 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 978622, + "thread": 16 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 996740, + "thread": 9 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 1245983, + "thread": 10 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 1343349, + "thread": 7 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 1518578, + "thread": 1 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 1688602, + "thread": 4 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 1823068, + "thread": 30 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2094869, + "thread": 29 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2152802, + "thread": 14 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2432581, + "thread": 8 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2562220, + "thread": 19 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2673739, + "thread": 9 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 2908631, + "thread": 18 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 3080830, + "thread": 21 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 3191399, + "thread": 24 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 3327958, + "thread": 3 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 3467144, + "thread": 11 + } + }, + { + "amount": "173.624652892", + "slot": { + "period": 3697881, + "thread": 26 + } + }, + { + "amount": "173.624652887", + "slot": { + "period": 3830691, + "thread": 22 + } + } + ], + "AU1TaJhn257iPvyPwjpjUvPSfykSfvQh4dXT7SLrxWY6HPR8ugfk": [ + { + "amount": "154.814755254", + "slot": { + "period": 131142, + "thread": 20 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 260250, + "thread": 14 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 376384, + "thread": 31 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 521384, + "thread": 3 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 667892, + "thread": 13 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 917942, + "thread": 20 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1062620, + "thread": 22 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1178091, + "thread": 26 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1363967, + "thread": 6 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1607369, + "thread": 0 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1685254, + "thread": 13 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 1950060, + "thread": 11 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2039891, + "thread": 27 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2280277, + "thread": 8 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2422920, + "thread": 10 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2581842, + "thread": 15 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2709971, + "thread": 23 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 2895851, + "thread": 18 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 3029445, + "thread": 25 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 3228339, + "thread": 31 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 3341811, + "thread": 4 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 3563955, + "thread": 24 + } + }, + { + "amount": "154.814755254", + "slot": { + "period": 3777292, + "thread": 9 + } + }, + { + "amount": "154.814755259", + "slot": { + "period": 3874129, + "thread": 9 + } + } + ], + "AU1TaPAHC2mgKTwEohCCQeJX9s3PwUMTSAUZ5hSns7hsbrjTcBPR": [ + { + "amount": "196.136463977", + "slot": { + "period": 135070, + "thread": 2 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 262753, + "thread": 15 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 372775, + "thread": 5 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 580794, + "thread": 2 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 665896, + "thread": 3 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 943107, + "thread": 22 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1095528, + "thread": 20 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1300964, + "thread": 31 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1334315, + "thread": 5 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1511795, + "thread": 16 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1761215, + "thread": 3 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 1834557, + "thread": 12 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2119799, + "thread": 7 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2164251, + "thread": 3 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2372635, + "thread": 0 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2500173, + "thread": 0 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2699719, + "thread": 2 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 2834139, + "thread": 23 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 3014148, + "thread": 29 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 3264553, + "thread": 11 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 3385028, + "thread": 29 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 3503446, + "thread": 21 + } + }, + { + "amount": "196.136463977", + "slot": { + "period": 3755710, + "thread": 5 + } + }, + { + "amount": "196.136463975", + "slot": { + "period": 3944344, + "thread": 26 + } + } + ], + "AU1TcS3WTAvLDcmRsegoCBESYZ6Cx8HC3PZf4jz1uRw3ob9m4tpU": [ + { + "amount": "112.844943023", + "slot": { + "period": 31394, + "thread": 26 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 322521, + "thread": 27 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 416616, + "thread": 31 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 637379, + "thread": 14 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 676456, + "thread": 27 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 877662, + "thread": 8 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1022063, + "thread": 9 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1206133, + "thread": 23 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1427332, + "thread": 7 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1635404, + "thread": 22 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1676154, + "thread": 14 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 1973045, + "thread": 10 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2140529, + "thread": 31 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2181771, + "thread": 11 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2335692, + "thread": 7 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2463856, + "thread": 23 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2640021, + "thread": 7 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2814710, + "thread": 18 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 2982872, + "thread": 12 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 3230147, + "thread": 7 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 3397402, + "thread": 14 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 3472409, + "thread": 6 + } + }, + { + "amount": "112.844943023", + "slot": { + "period": 3646655, + "thread": 26 + } + }, + { + "amount": "112.844943029", + "slot": { + "period": 3863871, + "thread": 0 + } + } + ], + "AU1Tf5Uxmpi32Niz5RWks1sWSfDcud9H5e3Cijv3pFpkUibmMY1i": [ + { + "amount": "129.649896924", + "slot": { + "period": 108439, + "thread": 10 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 198295, + "thread": 15 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 461495, + "thread": 31 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 623895, + "thread": 9 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 765334, + "thread": 13 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 924906, + "thread": 2 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1135965, + "thread": 6 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1199470, + "thread": 28 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1386244, + "thread": 23 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1599167, + "thread": 7 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1787078, + "thread": 11 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 1902898, + "thread": 17 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2126739, + "thread": 27 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2160834, + "thread": 21 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2363367, + "thread": 26 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2506848, + "thread": 12 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2730407, + "thread": 9 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 2801620, + "thread": 0 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3030491, + "thread": 24 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3240856, + "thread": 5 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3306838, + "thread": 4 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3465537, + "thread": 18 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3700348, + "thread": 31 + } + }, + { + "amount": "129.649896924", + "slot": { + "period": 3877004, + "thread": 30 + } + } + ], + "AU1Tf5XDycxgXjsYvdDZuG3C55Pcxzum8z7o4rWRqG42ewrSv7YT": [ + { + "amount": "154.075100842", + "slot": { + "period": 23557, + "thread": 25 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 238273, + "thread": 16 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 410379, + "thread": 24 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 546145, + "thread": 7 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 659920, + "thread": 30 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 953576, + "thread": 21 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1102756, + "thread": 26 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1185308, + "thread": 30 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1372437, + "thread": 17 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1544550, + "thread": 24 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1657950, + "thread": 26 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 1945458, + "thread": 12 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2115813, + "thread": 14 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2243949, + "thread": 8 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2383061, + "thread": 31 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2499394, + "thread": 6 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2717243, + "thread": 5 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 2867599, + "thread": 15 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 3026190, + "thread": 10 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 3284899, + "thread": 18 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 3373943, + "thread": 30 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 3470844, + "thread": 19 + } + }, + { + "amount": "154.075100842", + "slot": { + "period": 3672919, + "thread": 24 + } + }, + { + "amount": "154.075100835", + "slot": { + "period": 3789930, + "thread": 17 + } + } + ], + "AU1TfZPCDDDUBb5u37qSGoFmHk84hw8Z2N2G1sVzW6XLbwT1drxV": [ + { + "amount": "267.785351027", + "slot": { + "period": 109499, + "thread": 21 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 222384, + "thread": 13 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 467198, + "thread": 25 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 651406, + "thread": 14 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 684408, + "thread": 5 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 909270, + "thread": 20 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1128206, + "thread": 8 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1158356, + "thread": 31 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1364379, + "thread": 25 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1486016, + "thread": 30 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1668354, + "thread": 13 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 1924014, + "thread": 26 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2065058, + "thread": 23 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2153213, + "thread": 9 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2461256, + "thread": 5 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2589584, + "thread": 6 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2677420, + "thread": 10 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 2919188, + "thread": 2 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 3114498, + "thread": 17 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 3264179, + "thread": 28 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 3410076, + "thread": 4 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 3568083, + "thread": 7 + } + }, + { + "amount": "267.785351027", + "slot": { + "period": 3764422, + "thread": 2 + } + }, + { + "amount": "267.785351019", + "slot": { + "period": 3833872, + "thread": 3 + } + } + ], + "AU1Tg7zp1YaiZdfvDZ4YoTm1VwucgAVPrYcuL7BRnEKCirFnPStp": [ + { + "amount": "137.951225426", + "slot": { + "period": 64011, + "thread": 10 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 172110, + "thread": 23 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 385603, + "thread": 14 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 575807, + "thread": 14 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 713764, + "thread": 21 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 841990, + "thread": 14 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1038876, + "thread": 20 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1267762, + "thread": 13 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1464961, + "thread": 12 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1561535, + "thread": 18 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1708437, + "thread": 27 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 1869162, + "thread": 1 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2035024, + "thread": 26 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2181102, + "thread": 24 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2349420, + "thread": 18 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2610793, + "thread": 5 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2756239, + "thread": 6 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 2933785, + "thread": 22 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 3084160, + "thread": 12 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 3132884, + "thread": 12 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 3344442, + "thread": 24 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 3512299, + "thread": 22 + } + }, + { + "amount": "137.951225426", + "slot": { + "period": 3752779, + "thread": 2 + } + }, + { + "amount": "137.951225424", + "slot": { + "period": 3935730, + "thread": 24 + } + } + ], + "AU1Tg9TqsHKnxgBPcubQt1JcdRmSyajWsmgCeEokqeSFNQP71Zou": [ + { + "amount": "164.233623822", + "slot": { + "period": 70511, + "thread": 1 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 322992, + "thread": 17 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 358652, + "thread": 17 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 531626, + "thread": 29 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 803846, + "thread": 31 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 936571, + "thread": 17 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1072675, + "thread": 23 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1183864, + "thread": 18 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1344471, + "thread": 7 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1585798, + "thread": 1 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1656689, + "thread": 14 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 1923957, + "thread": 20 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2007299, + "thread": 2 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2201107, + "thread": 12 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2423843, + "thread": 11 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2502656, + "thread": 5 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2665685, + "thread": 27 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 2953000, + "thread": 5 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3086400, + "thread": 13 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3141609, + "thread": 1 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3315984, + "thread": 27 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3509417, + "thread": 7 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3624879, + "thread": 17 + } + }, + { + "amount": "164.233623822", + "slot": { + "period": 3903748, + "thread": 6 + } + } + ], + "AU1ThFyrPGEXptG2nV6TXPYZBhMsbRCG5mWb86SZFcrDDrYwxnfL": [ + { + "amount": "158.400150035", + "slot": { + "period": 128106, + "thread": 8 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 181061, + "thread": 15 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 486377, + "thread": 0 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 537459, + "thread": 25 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 661773, + "thread": 9 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 908292, + "thread": 26 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1044788, + "thread": 6 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1307940, + "thread": 27 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1356230, + "thread": 13 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1620281, + "thread": 24 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1677399, + "thread": 28 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 1853802, + "thread": 21 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2130076, + "thread": 22 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2213307, + "thread": 28 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2376194, + "thread": 9 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2611156, + "thread": 22 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2669256, + "thread": 16 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 2897476, + "thread": 11 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 3018844, + "thread": 9 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 3203737, + "thread": 7 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 3393242, + "thread": 0 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 3522424, + "thread": 22 + } + }, + { + "amount": "158.400150035", + "slot": { + "period": 3661051, + "thread": 15 + } + }, + { + "amount": "158.400150039", + "slot": { + "period": 3942342, + "thread": 14 + } + } + ], + "AU1TjC2wCffiX6jkwe6M7niugm7QvDy4zHiR2LeZknLGezn2BGxE": [ + { + "amount": "134.724638590", + "slot": { + "period": 29713, + "thread": 20 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 251255, + "thread": 21 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 329512, + "thread": 26 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 578585, + "thread": 20 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 810256, + "thread": 9 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 839720, + "thread": 29 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1133039, + "thread": 12 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1311218, + "thread": 1 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1382202, + "thread": 6 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1610217, + "thread": 24 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1716016, + "thread": 19 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 1832555, + "thread": 3 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2048371, + "thread": 21 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2212079, + "thread": 13 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2459027, + "thread": 1 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2498432, + "thread": 16 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2739491, + "thread": 6 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2926986, + "thread": 8 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 2996601, + "thread": 21 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 3214068, + "thread": 30 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 3428425, + "thread": 1 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 3606891, + "thread": 4 + } + }, + { + "amount": "134.724638590", + "slot": { + "period": 3710386, + "thread": 3 + } + }, + { + "amount": "134.724638582", + "slot": { + "period": 3877086, + "thread": 5 + } + } + ], + "AU1TjE1EqMyGXPnBd8aqwQWG2v1ga4k86s5tw9dBEj6ZcA6oZBMK": [ + { + "amount": "138.375973896", + "slot": { + "period": 143176, + "thread": 3 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 315725, + "thread": 24 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 422759, + "thread": 0 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 498127, + "thread": 14 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 695231, + "thread": 1 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 930254, + "thread": 12 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1024172, + "thread": 17 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1197285, + "thread": 2 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1417710, + "thread": 4 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1513953, + "thread": 24 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1743723, + "thread": 16 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 1972318, + "thread": 14 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2111151, + "thread": 12 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2229064, + "thread": 26 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2358868, + "thread": 28 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2533162, + "thread": 27 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2642113, + "thread": 12 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 2798063, + "thread": 26 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 3068466, + "thread": 16 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 3224842, + "thread": 27 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 3291641, + "thread": 28 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 3491623, + "thread": 6 + } + }, + { + "amount": "138.375973896", + "slot": { + "period": 3671471, + "thread": 0 + } + }, + { + "amount": "138.375973884", + "slot": { + "period": 3805513, + "thread": 10 + } + } + ], + "AU1TjPBrFrXTDwkPCp1k78kpK82WvQwXpayfua8udp9tsKoL3T3s": [ + { + "amount": "104.281709538", + "slot": { + "period": 142306, + "thread": 20 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 279647, + "thread": 2 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 408049, + "thread": 30 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 625068, + "thread": 17 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 796769, + "thread": 13 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 853542, + "thread": 19 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1091462, + "thread": 29 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1198811, + "thread": 24 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1455457, + "thread": 6 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1604228, + "thread": 22 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1683146, + "thread": 11 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 1852942, + "thread": 29 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2106767, + "thread": 25 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2149767, + "thread": 26 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2444367, + "thread": 25 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2599149, + "thread": 3 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2790211, + "thread": 27 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2916072, + "thread": 16 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 2986909, + "thread": 21 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 3288526, + "thread": 29 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 3351337, + "thread": 18 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 3502582, + "thread": 18 + } + }, + { + "amount": "104.281709538", + "slot": { + "period": 3668627, + "thread": 20 + } + }, + { + "amount": "104.281709533", + "slot": { + "period": 3828059, + "thread": 19 + } + } + ], + "AU1TjjDonKp7LtXonw8MKXyG5bWJ2jKc7GqZTFHp8Peh7axHKQqY": [ + { + "amount": "206.359484983", + "slot": { + "period": 141953, + "thread": 19 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 176171, + "thread": 26 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 453572, + "thread": 27 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 590901, + "thread": 10 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 800878, + "thread": 29 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 890860, + "thread": 6 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1025969, + "thread": 26 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1190202, + "thread": 11 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1372187, + "thread": 27 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1580373, + "thread": 24 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1791706, + "thread": 21 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 1814224, + "thread": 14 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2019699, + "thread": 4 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2266407, + "thread": 29 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2328920, + "thread": 19 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2590260, + "thread": 21 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2714935, + "thread": 13 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2799995, + "thread": 16 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 2993877, + "thread": 16 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 3278165, + "thread": 17 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 3300247, + "thread": 27 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 3613571, + "thread": 29 + } + }, + { + "amount": "206.359484983", + "slot": { + "period": 3696863, + "thread": 4 + } + }, + { + "amount": "206.359484976", + "slot": { + "period": 3924467, + "thread": 8 + } + } + ], + "AU1TjrbGfH9v4EL6YW4EepZBMwuWUw3N4V6Q1GwrVWnMZvNEPC2o": [ + { + "amount": "97.436297812", + "slot": { + "period": 147178, + "thread": 21 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 290651, + "thread": 10 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 445223, + "thread": 30 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 589218, + "thread": 11 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 657738, + "thread": 30 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 951500, + "thread": 12 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1141628, + "thread": 10 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1314995, + "thread": 1 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1431581, + "thread": 19 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1623615, + "thread": 21 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1744292, + "thread": 30 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 1862656, + "thread": 29 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2063056, + "thread": 24 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2239996, + "thread": 4 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2365347, + "thread": 18 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2534095, + "thread": 22 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2654590, + "thread": 15 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 2854482, + "thread": 23 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 3089070, + "thread": 18 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 3147370, + "thread": 2 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 3404896, + "thread": 17 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 3507344, + "thread": 23 + } + }, + { + "amount": "97.436297812", + "slot": { + "period": 3700462, + "thread": 23 + } + }, + { + "amount": "97.436297813", + "slot": { + "period": 3940082, + "thread": 15 + } + } + ], + "AU1TmGk9KCcT7HPDwfbUWV6XK2DarSGHpMXdFap7AqCVXDoTiEda": [ + { + "amount": "545.778481774", + "slot": { + "period": 117969, + "thread": 22 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 190610, + "thread": 13 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 373606, + "thread": 30 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 551168, + "thread": 2 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 816270, + "thread": 30 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 822973, + "thread": 18 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1042025, + "thread": 19 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1245651, + "thread": 14 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1450918, + "thread": 6 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1590413, + "thread": 1 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1737032, + "thread": 29 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 1963839, + "thread": 17 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2014925, + "thread": 26 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2145184, + "thread": 28 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2393803, + "thread": 7 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2615502, + "thread": 15 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2760130, + "thread": 17 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 2894239, + "thread": 10 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 3005317, + "thread": 27 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 3131073, + "thread": 8 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 3437342, + "thread": 9 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 3515166, + "thread": 12 + } + }, + { + "amount": "545.778481774", + "slot": { + "period": 3628837, + "thread": 15 + } + }, + { + "amount": "545.778481785", + "slot": { + "period": 3796117, + "thread": 0 + } + } + ], + "AU1Tmb9RWPa9obzmiB5HtY6pZwRYe9pDuhTZGLdEnNKxChALcEVS": [ + { + "amount": "88.500485391", + "slot": { + "period": 94663, + "thread": 25 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 302460, + "thread": 1 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 446975, + "thread": 2 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 625423, + "thread": 20 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 740151, + "thread": 20 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 945210, + "thread": 20 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1096642, + "thread": 28 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1239126, + "thread": 10 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1389621, + "thread": 8 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1514342, + "thread": 22 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1746470, + "thread": 9 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 1875067, + "thread": 14 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2103376, + "thread": 12 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2227430, + "thread": 21 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2314025, + "thread": 7 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2540964, + "thread": 3 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2654840, + "thread": 5 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 2830847, + "thread": 24 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 3101810, + "thread": 12 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 3256375, + "thread": 19 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 3395282, + "thread": 5 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 3529401, + "thread": 4 + } + }, + { + "amount": "88.500485391", + "slot": { + "period": 3773930, + "thread": 10 + } + }, + { + "amount": "88.500485394", + "slot": { + "period": 3852121, + "thread": 14 + } + } + ], + "AU1TmxgWoXfqrLpynX9Nf1afY1eLJHbqeBRMCUgx6XprrNp9HZ9M": [ + { + "amount": "195.497129419", + "slot": { + "period": 116029, + "thread": 1 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 300586, + "thread": 23 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 420934, + "thread": 28 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 636368, + "thread": 2 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 728554, + "thread": 29 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 846241, + "thread": 16 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1025414, + "thread": 0 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1315087, + "thread": 6 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1338507, + "thread": 8 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1540876, + "thread": 29 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1720878, + "thread": 6 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 1886746, + "thread": 27 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2126260, + "thread": 20 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2164919, + "thread": 23 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2376317, + "thread": 11 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2474422, + "thread": 2 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2689115, + "thread": 7 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2810033, + "thread": 10 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 2967687, + "thread": 27 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 3287006, + "thread": 25 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 3439349, + "thread": 4 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 3464431, + "thread": 13 + } + }, + { + "amount": "195.497129419", + "slot": { + "period": 3684385, + "thread": 31 + } + }, + { + "amount": "195.497129424", + "slot": { + "period": 3817144, + "thread": 21 + } + } + ], + "AU1Tn1Z9k75dYT9sHwNTD8kGvZL5sK9R8YdcFUcQWMXcb8uLXFfe": [ + { + "amount": "298.633145208", + "slot": { + "period": 102412, + "thread": 1 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 276294, + "thread": 28 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 489828, + "thread": 14 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 646737, + "thread": 11 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 792059, + "thread": 5 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 899645, + "thread": 8 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1042953, + "thread": 1 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1256874, + "thread": 11 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1444336, + "thread": 5 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1618902, + "thread": 30 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1674880, + "thread": 3 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 1917042, + "thread": 11 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2055649, + "thread": 29 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2248698, + "thread": 11 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2331196, + "thread": 5 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2557388, + "thread": 26 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2705980, + "thread": 1 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2816677, + "thread": 29 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 2991921, + "thread": 22 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 3255505, + "thread": 18 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 3442119, + "thread": 30 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 3464750, + "thread": 10 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 3650820, + "thread": 13 + } + }, + { + "amount": "298.633145208", + "slot": { + "period": 3816331, + "thread": 22 + } + } + ], + "AU1Tnf1zguzZYSmvwPN4dfbw7HCXaWFhCSFqfJeSn9EFmDTwcsrs": [ + { + "amount": "113.734694482", + "slot": { + "period": 33950, + "thread": 26 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 316364, + "thread": 7 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 391040, + "thread": 4 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 548127, + "thread": 3 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 663600, + "thread": 9 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 888053, + "thread": 14 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1001826, + "thread": 2 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1192013, + "thread": 8 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1371851, + "thread": 0 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1612896, + "thread": 20 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1744524, + "thread": 10 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 1893244, + "thread": 14 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2092892, + "thread": 25 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2250220, + "thread": 25 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2307410, + "thread": 21 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2578944, + "thread": 6 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2722920, + "thread": 13 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 2835225, + "thread": 3 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 3029066, + "thread": 28 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 3122421, + "thread": 29 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 3338081, + "thread": 6 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 3526300, + "thread": 9 + } + }, + { + "amount": "113.734694482", + "slot": { + "period": 3758758, + "thread": 13 + } + }, + { + "amount": "113.734694474", + "slot": { + "period": 3928595, + "thread": 9 + } + } + ], + "AU1ToHfhwEQM1ERtP4Eo88RcfDVcPSUGJA2ViCr8Dp2w99oJuUfk": [ + { + "amount": "188.769482836", + "slot": { + "period": 103395, + "thread": 9 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 173698, + "thread": 24 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 350614, + "thread": 27 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 607873, + "thread": 0 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 725286, + "thread": 3 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 905591, + "thread": 0 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1020682, + "thread": 13 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1287988, + "thread": 23 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1400362, + "thread": 9 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1637632, + "thread": 26 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1759994, + "thread": 7 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 1828947, + "thread": 10 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2019304, + "thread": 13 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2204012, + "thread": 15 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2354756, + "thread": 30 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2473014, + "thread": 26 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2704382, + "thread": 28 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2953132, + "thread": 26 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 2963062, + "thread": 25 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 3224809, + "thread": 12 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 3402254, + "thread": 4 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 3564752, + "thread": 30 + } + }, + { + "amount": "188.769482836", + "slot": { + "period": 3656289, + "thread": 19 + } + }, + { + "amount": "188.769482833", + "slot": { + "period": 3901965, + "thread": 16 + } + } + ], + "AU1TozkgH89RCpZwkyu6v5oVm7BCWJV6ARo8ahDnynBP1KXeCBoZ": [ + { + "amount": "131.238006871", + "slot": { + "period": 59327, + "thread": 19 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 285423, + "thread": 8 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 337947, + "thread": 0 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 507785, + "thread": 29 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 715431, + "thread": 27 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 916276, + "thread": 30 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 996918, + "thread": 14 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1226208, + "thread": 21 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1474318, + "thread": 15 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1521121, + "thread": 10 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1679729, + "thread": 2 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1888036, + "thread": 27 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 1990037, + "thread": 2 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 2237529, + "thread": 16 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 2428117, + "thread": 26 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 2623775, + "thread": 28 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 2658293, + "thread": 29 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 2923492, + "thread": 28 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 3038530, + "thread": 6 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 3232828, + "thread": 24 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 3327635, + "thread": 6 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 3522498, + "thread": 19 + } + }, + { + "amount": "131.238006871", + "slot": { + "period": 3708586, + "thread": 4 + } + }, + { + "amount": "131.238006861", + "slot": { + "period": 3894956, + "thread": 4 + } + } + ], + "AU1TqHACaamPw6xqZK1VuyXExmhwa7vrDjcMKqZrRQyoYhLYt79o": [ + { + "amount": "1725.813205692", + "slot": { + "period": 105819, + "thread": 19 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 287720, + "thread": 3 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 424419, + "thread": 22 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 517569, + "thread": 28 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 680736, + "thread": 28 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 825216, + "thread": 5 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1064532, + "thread": 9 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1297417, + "thread": 2 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1440786, + "thread": 23 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1613550, + "thread": 5 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1713646, + "thread": 13 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 1878566, + "thread": 31 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2007992, + "thread": 5 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2205600, + "thread": 24 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2311354, + "thread": 23 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2479379, + "thread": 17 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2745163, + "thread": 15 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2920417, + "thread": 22 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 2957234, + "thread": 15 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 3266132, + "thread": 13 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 3418770, + "thread": 4 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 3486559, + "thread": 6 + } + }, + { + "amount": "1725.813205692", + "slot": { + "period": 3649008, + "thread": 10 + } + }, + { + "amount": "1725.813205680", + "slot": { + "period": 3944521, + "thread": 3 + } + } + ], + "AU1TqVyt3LAfo5wcDdos3PdGGWJzxz6JxM1GMu3xvvcQQ5ka6heb": [ + { + "amount": "165.641462949", + "slot": { + "period": 106937, + "thread": 1 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 209688, + "thread": 19 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 465828, + "thread": 20 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 571410, + "thread": 1 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 702932, + "thread": 29 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 890307, + "thread": 28 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 993203, + "thread": 20 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 1169044, + "thread": 9 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 1339810, + "thread": 3 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 1573900, + "thread": 3 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 1680831, + "thread": 11 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 1811374, + "thread": 27 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2113594, + "thread": 16 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2283085, + "thread": 6 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2416499, + "thread": 7 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2556957, + "thread": 17 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2730953, + "thread": 9 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 2851743, + "thread": 19 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 3053135, + "thread": 4 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 3146962, + "thread": 15 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 3420715, + "thread": 30 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 3505217, + "thread": 11 + } + }, + { + "amount": "165.641462949", + "slot": { + "period": 3759341, + "thread": 31 + } + }, + { + "amount": "165.641462944", + "slot": { + "period": 3786539, + "thread": 5 + } + } + ], + "AU1TrBBnLCxu6QmwYnYwomvhUCZC3KeCy2iHi7fNkCobZphZLnEm": [ + { + "amount": "68.173449305", + "slot": { + "period": 123372, + "thread": 13 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 304608, + "thread": 6 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 342244, + "thread": 15 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 558194, + "thread": 29 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 780620, + "thread": 19 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 824906, + "thread": 13 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1109938, + "thread": 6 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1251870, + "thread": 18 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1459961, + "thread": 9 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1585301, + "thread": 13 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1771148, + "thread": 24 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 1890023, + "thread": 0 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2092455, + "thread": 0 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2187164, + "thread": 6 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2429962, + "thread": 13 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2524127, + "thread": 20 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2685780, + "thread": 1 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 2811754, + "thread": 3 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 3007600, + "thread": 18 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 3150098, + "thread": 8 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 3414264, + "thread": 6 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 3608694, + "thread": 19 + } + }, + { + "amount": "68.173449305", + "slot": { + "period": 3725346, + "thread": 31 + } + }, + { + "amount": "68.173449300", + "slot": { + "period": 3844006, + "thread": 28 + } + } + ], + "AU1TrPz9nDFoCx7PjTshfEURPVNsjjBBdCmWwhoYXnAYERDf2w4w": [ + { + "amount": "100.086169670", + "slot": { + "period": 133017, + "thread": 17 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 297773, + "thread": 24 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 441220, + "thread": 26 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 552857, + "thread": 26 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 819599, + "thread": 28 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 890902, + "thread": 19 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1053811, + "thread": 0 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1291683, + "thread": 9 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1328055, + "thread": 20 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1526223, + "thread": 3 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1674295, + "thread": 1 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 1823194, + "thread": 6 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2034153, + "thread": 3 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2150528, + "thread": 26 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2364271, + "thread": 9 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2526818, + "thread": 29 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2768068, + "thread": 17 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 2840562, + "thread": 1 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 3007437, + "thread": 13 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 3203895, + "thread": 4 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 3367188, + "thread": 22 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 3496013, + "thread": 20 + } + }, + { + "amount": "100.086169670", + "slot": { + "period": 3765249, + "thread": 8 + } + }, + { + "amount": "100.086169666", + "slot": { + "period": 3921646, + "thread": 7 + } + } + ], + "AU1TroGggP31pkrqfPY5vHontBwqggMSGEWuJeqmNm3Er41aqVnf": [ + { + "amount": "86.451040769", + "slot": { + "period": 113015, + "thread": 16 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 189280, + "thread": 0 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 360407, + "thread": 25 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 574281, + "thread": 1 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 733094, + "thread": 29 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 927516, + "thread": 28 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1127676, + "thread": 31 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1233024, + "thread": 24 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1442370, + "thread": 9 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1482646, + "thread": 27 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1710156, + "thread": 17 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 1919435, + "thread": 8 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2032585, + "thread": 19 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2170344, + "thread": 16 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2360629, + "thread": 4 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2468374, + "thread": 29 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2680194, + "thread": 29 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 2901717, + "thread": 1 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3034552, + "thread": 13 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3185199, + "thread": 14 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3337327, + "thread": 24 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3616328, + "thread": 0 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3662026, + "thread": 26 + } + }, + { + "amount": "86.451040769", + "slot": { + "period": 3833783, + "thread": 4 + } + } + ], + "AU1Ttbb4uEek2P4ACfn7nupefyzj7Kgj5BEJgu1CWN8fdA6DCpg8": [ + { + "amount": "318.924625368", + "slot": { + "period": 55385, + "thread": 1 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 220852, + "thread": 31 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 328077, + "thread": 6 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 646810, + "thread": 21 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 670387, + "thread": 8 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 903567, + "thread": 20 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1149009, + "thread": 28 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1242179, + "thread": 29 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1320065, + "thread": 25 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1567356, + "thread": 1 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1807340, + "thread": 2 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 1975398, + "thread": 18 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2083831, + "thread": 3 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2203628, + "thread": 3 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2424240, + "thread": 24 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2490171, + "thread": 22 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2639194, + "thread": 2 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 2879470, + "thread": 15 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 3062227, + "thread": 28 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 3284081, + "thread": 16 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 3444859, + "thread": 9 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 3478236, + "thread": 4 + } + }, + { + "amount": "318.924625368", + "slot": { + "period": 3767990, + "thread": 22 + } + }, + { + "amount": "318.924625363", + "slot": { + "period": 3929192, + "thread": 10 + } + } + ], + "AU1Tu6NC9qSxSwEatTJvEUzBuAEgj3Z6Fj9x4FhwGF4jDtDLaoWL": [ + { + "amount": "135.061993588", + "slot": { + "period": 94844, + "thread": 27 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 316454, + "thread": 16 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 329235, + "thread": 29 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 629451, + "thread": 9 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 727154, + "thread": 5 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 825331, + "thread": 10 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1107400, + "thread": 12 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1252301, + "thread": 20 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1474600, + "thread": 1 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1549773, + "thread": 0 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1685222, + "thread": 20 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 1901638, + "thread": 23 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2029907, + "thread": 7 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2151353, + "thread": 20 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2372954, + "thread": 6 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2564731, + "thread": 24 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2771567, + "thread": 20 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2865388, + "thread": 15 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 2983663, + "thread": 20 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 3265483, + "thread": 31 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 3319416, + "thread": 29 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 3482150, + "thread": 24 + } + }, + { + "amount": "135.061993588", + "slot": { + "period": 3658417, + "thread": 9 + } + }, + { + "amount": "135.061993593", + "slot": { + "period": 3832873, + "thread": 3 + } + } + ], + "AU1Tu7a1qESZLSNTxdsMNFEgPUJU3usdkmjbPbeX7qNMzW7ab9pm": [ + { + "amount": "497.825525484", + "slot": { + "period": 96052, + "thread": 25 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 261154, + "thread": 10 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 489150, + "thread": 16 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 579226, + "thread": 24 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 739054, + "thread": 30 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 847738, + "thread": 1 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1145916, + "thread": 30 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1186464, + "thread": 19 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1437070, + "thread": 13 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1560456, + "thread": 2 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1726775, + "thread": 14 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 1894089, + "thread": 31 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2036167, + "thread": 1 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2271676, + "thread": 24 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2348075, + "thread": 13 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2496937, + "thread": 11 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2731564, + "thread": 3 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 2802904, + "thread": 1 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 3026294, + "thread": 27 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 3184483, + "thread": 22 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 3313057, + "thread": 18 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 3524151, + "thread": 23 + } + }, + { + "amount": "497.825525484", + "slot": { + "period": 3725523, + "thread": 21 + } + }, + { + "amount": "497.825525494", + "slot": { + "period": 3885625, + "thread": 30 + } + } + ], + "AU1TuDEcWnFq64tUvvLiPGmdV4WVGYmrUfEAHRnoaR7vn7mZxD28": [ + { + "amount": "188.425346906", + "slot": { + "period": 101627, + "thread": 22 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 178194, + "thread": 7 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 343083, + "thread": 4 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 603993, + "thread": 15 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 809382, + "thread": 11 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 964697, + "thread": 29 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1106833, + "thread": 11 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1316514, + "thread": 9 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1340739, + "thread": 4 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1486933, + "thread": 14 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1772091, + "thread": 27 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 1901136, + "thread": 4 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2087140, + "thread": 3 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2161573, + "thread": 15 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2315751, + "thread": 22 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2554698, + "thread": 20 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2791339, + "thread": 22 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 2930451, + "thread": 30 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 3098497, + "thread": 14 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 3156852, + "thread": 26 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 3319388, + "thread": 23 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 3590300, + "thread": 19 + } + }, + { + "amount": "188.425346906", + "slot": { + "period": 3693597, + "thread": 31 + } + }, + { + "amount": "188.425346903", + "slot": { + "period": 3906297, + "thread": 15 + } + } + ], + "AU1Tub72nb2NRkxqmGTwJWsQgpyhMFRF7NdrorXxmWseQ4beVZJ6": [ + { + "amount": "252.435609027", + "slot": { + "period": 136579, + "thread": 19 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 283979, + "thread": 29 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 329330, + "thread": 30 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 585072, + "thread": 17 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 803713, + "thread": 24 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 860692, + "thread": 3 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 982829, + "thread": 13 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 1286864, + "thread": 13 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 1332579, + "thread": 1 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 1635873, + "thread": 30 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 1673755, + "thread": 6 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 1926702, + "thread": 12 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2022102, + "thread": 17 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2150028, + "thread": 22 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2328855, + "thread": 26 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2615335, + "thread": 30 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2725737, + "thread": 24 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 2929553, + "thread": 3 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 3085297, + "thread": 25 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 3251620, + "thread": 1 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 3331284, + "thread": 9 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 3480420, + "thread": 1 + } + }, + { + "amount": "252.435609027", + "slot": { + "period": 3646410, + "thread": 14 + } + }, + { + "amount": "252.435609017", + "slot": { + "period": 3799792, + "thread": 10 + } + } + ], + "AU1TukkmAyiRrboGGfdRRQW4grjveSJJANBhs5nLGUpDbfiRD7qe": [ + { + "amount": "55.717601474", + "slot": { + "period": 21675, + "thread": 4 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 172886, + "thread": 28 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 329838, + "thread": 0 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 599040, + "thread": 23 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 688319, + "thread": 1 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 873713, + "thread": 30 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1136846, + "thread": 25 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1214438, + "thread": 0 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1320160, + "thread": 13 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1633595, + "thread": 31 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1765751, + "thread": 5 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 1826579, + "thread": 28 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2086124, + "thread": 21 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2272070, + "thread": 20 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2346578, + "thread": 25 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2470656, + "thread": 18 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2700313, + "thread": 22 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 2835265, + "thread": 11 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 3100503, + "thread": 27 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 3246016, + "thread": 13 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 3340696, + "thread": 4 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 3550135, + "thread": 21 + } + }, + { + "amount": "55.717601474", + "slot": { + "period": 3645078, + "thread": 3 + } + }, + { + "amount": "55.717601472", + "slot": { + "period": 3893101, + "thread": 8 + } + } + ], + "AU1TvRGsBLtmYG7s82LqoZai3TBK6rv4WTB8WGkf7DNBQg4BJzVv": [ + { + "amount": "417.298544947", + "slot": { + "period": 105426, + "thread": 23 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 205513, + "thread": 17 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 453921, + "thread": 23 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 528212, + "thread": 10 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 717714, + "thread": 31 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 887905, + "thread": 3 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1143707, + "thread": 30 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1212209, + "thread": 5 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1443831, + "thread": 9 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1507899, + "thread": 19 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1802298, + "thread": 19 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 1949978, + "thread": 4 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2048914, + "thread": 16 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2292498, + "thread": 1 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2446131, + "thread": 28 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2497463, + "thread": 7 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2680586, + "thread": 9 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 2879732, + "thread": 26 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 3118245, + "thread": 0 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 3191616, + "thread": 6 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 3312325, + "thread": 16 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 3598973, + "thread": 13 + } + }, + { + "amount": "417.298544947", + "slot": { + "period": 3749687, + "thread": 0 + } + }, + { + "amount": "417.298544952", + "slot": { + "period": 3811028, + "thread": 26 + } + } + ], + "AU1TvZyu3JSb9wn1GyUrhM2KykMn58atbgUmas8Ksi7irMJZ7vBX": [ + { + "amount": "430.880644330", + "slot": { + "period": 139117, + "thread": 28 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 244344, + "thread": 13 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 331079, + "thread": 6 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 632489, + "thread": 18 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 777154, + "thread": 9 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 828606, + "thread": 12 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1062693, + "thread": 13 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1218141, + "thread": 13 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1459870, + "thread": 23 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1533998, + "thread": 27 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1671462, + "thread": 26 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 1877224, + "thread": 10 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2071936, + "thread": 1 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2232633, + "thread": 23 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2368176, + "thread": 21 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2592835, + "thread": 30 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2674491, + "thread": 19 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 2908949, + "thread": 3 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 3112463, + "thread": 19 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 3156950, + "thread": 19 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 3382264, + "thread": 28 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 3465476, + "thread": 30 + } + }, + { + "amount": "430.880644330", + "slot": { + "period": 3641464, + "thread": 19 + } + }, + { + "amount": "430.880644340", + "slot": { + "period": 3783089, + "thread": 17 + } + } + ], + "AU1TxFMS6Vq8dojqigXMpZ2fNu8fnjvS65iqM6ZXEL7J4SpaAJk7": [ + { + "amount": "151.919596995", + "slot": { + "period": 47641, + "thread": 1 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 181401, + "thread": 27 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 383603, + "thread": 10 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 620239, + "thread": 3 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 664883, + "thread": 7 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 861766, + "thread": 23 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1036169, + "thread": 24 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1155066, + "thread": 23 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1327005, + "thread": 17 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1579310, + "thread": 11 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1696205, + "thread": 23 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 1880674, + "thread": 26 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2106708, + "thread": 26 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2174852, + "thread": 27 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2349210, + "thread": 26 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2581212, + "thread": 28 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2659196, + "thread": 17 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 2872310, + "thread": 25 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 3064920, + "thread": 16 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 3230769, + "thread": 12 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 3312575, + "thread": 19 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 3544174, + "thread": 25 + } + }, + { + "amount": "151.919596995", + "slot": { + "period": 3714439, + "thread": 22 + } + }, + { + "amount": "151.919597003", + "slot": { + "period": 3932182, + "thread": 3 + } + } + ], + "AU1Tyj5JXNJDtMRNAEA4t1XN4AJiHT8FdLsFjSkXJaADmNpCFNEi": [ + { + "amount": "55.957501625", + "slot": { + "period": 134206, + "thread": 1 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 215879, + "thread": 26 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 375444, + "thread": 21 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 620937, + "thread": 24 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 768544, + "thread": 21 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 866806, + "thread": 23 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1070887, + "thread": 10 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1243860, + "thread": 6 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1422759, + "thread": 11 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1527239, + "thread": 5 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1693514, + "thread": 29 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 1823443, + "thread": 0 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2103366, + "thread": 25 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2230326, + "thread": 22 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2325036, + "thread": 10 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2553141, + "thread": 1 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2746782, + "thread": 28 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 2838383, + "thread": 31 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 3097902, + "thread": 27 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 3254355, + "thread": 8 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 3348326, + "thread": 1 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 3588580, + "thread": 10 + } + }, + { + "amount": "55.957501625", + "slot": { + "period": 3738020, + "thread": 3 + } + }, + { + "amount": "55.957501629", + "slot": { + "period": 3919882, + "thread": 11 + } + } + ], + "AU1Tzs5Zk96mE5SrwuhVAunF7GXm4NFHSR2YbTekAAXLNLXFiQA2": [ + { + "amount": "453.229300364", + "slot": { + "period": 61301, + "thread": 21 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 286955, + "thread": 14 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 452286, + "thread": 5 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 539852, + "thread": 1 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 772963, + "thread": 11 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 866541, + "thread": 17 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 996918, + "thread": 16 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 1151867, + "thread": 13 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 1416592, + "thread": 1 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 1646896, + "thread": 11 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 1787496, + "thread": 26 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 1900037, + "thread": 14 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2027648, + "thread": 10 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2150406, + "thread": 30 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2347741, + "thread": 1 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2565155, + "thread": 7 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2726535, + "thread": 5 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 2815790, + "thread": 29 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 3007721, + "thread": 6 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 3181719, + "thread": 22 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 3336984, + "thread": 4 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 3541105, + "thread": 15 + } + }, + { + "amount": "453.229300364", + "slot": { + "period": 3662731, + "thread": 27 + } + }, + { + "amount": "453.229300373", + "slot": { + "period": 3898790, + "thread": 23 + } + } + ], + "AU1U16XuVzgxhGQ184GabxM6DoNugqKgi2Px1R4g1LqiL8sFRZFE": [ + { + "amount": "432.903218172", + "slot": { + "period": 119875, + "thread": 30 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 279966, + "thread": 29 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 432387, + "thread": 15 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 520865, + "thread": 20 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 690553, + "thread": 7 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 906531, + "thread": 12 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1106631, + "thread": 13 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1261584, + "thread": 10 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1401981, + "thread": 27 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1506210, + "thread": 1 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1681302, + "thread": 30 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 1858507, + "thread": 10 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2033030, + "thread": 28 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2231923, + "thread": 16 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2374184, + "thread": 7 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2475543, + "thread": 17 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2696510, + "thread": 30 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2872898, + "thread": 21 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 2964263, + "thread": 17 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 3237043, + "thread": 13 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 3383474, + "thread": 28 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 3593292, + "thread": 12 + } + }, + { + "amount": "432.903218172", + "slot": { + "period": 3678746, + "thread": 30 + } + }, + { + "amount": "432.903218181", + "slot": { + "period": 3804535, + "thread": 10 + } + } + ], + "AU1U1srfc9q6q31kJcAhfi7oHnJZP8d2kWyFTrqdNyKyhZzPBink": [ + { + "amount": "378.661567515", + "slot": { + "period": 113355, + "thread": 11 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 267949, + "thread": 8 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 418941, + "thread": 11 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 651761, + "thread": 18 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 724446, + "thread": 8 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 951502, + "thread": 30 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1101167, + "thread": 14 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1204560, + "thread": 6 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1327541, + "thread": 1 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1576621, + "thread": 16 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1668804, + "thread": 2 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 1836719, + "thread": 17 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2015548, + "thread": 24 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2247615, + "thread": 17 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2358808, + "thread": 22 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2551624, + "thread": 2 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2638816, + "thread": 1 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 2869490, + "thread": 27 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 3110109, + "thread": 20 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 3161822, + "thread": 21 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 3428338, + "thread": 11 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 3471038, + "thread": 9 + } + }, + { + "amount": "378.661567515", + "slot": { + "period": 3688124, + "thread": 31 + } + }, + { + "amount": "378.661567511", + "slot": { + "period": 3794394, + "thread": 1 + } + } + ], + "AU1U2NzXfx9RYXsa4p4W5YaS4YdGAy32nKMzouHUkTsatX4FPSeE": [ + { + "amount": "380.440767450", + "slot": { + "period": 133769, + "thread": 22 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 197279, + "thread": 6 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 430610, + "thread": 17 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 621743, + "thread": 0 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 691437, + "thread": 28 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 902341, + "thread": 16 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1044837, + "thread": 19 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1265885, + "thread": 14 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1405353, + "thread": 6 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1610608, + "thread": 29 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1781566, + "thread": 24 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 1913556, + "thread": 2 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2076616, + "thread": 25 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2265865, + "thread": 13 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2418266, + "thread": 9 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2565094, + "thread": 4 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2676029, + "thread": 23 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 2941659, + "thread": 11 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 3030853, + "thread": 13 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 3191152, + "thread": 14 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 3421363, + "thread": 2 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 3490991, + "thread": 20 + } + }, + { + "amount": "380.440767450", + "slot": { + "period": 3626809, + "thread": 12 + } + }, + { + "amount": "380.440767448", + "slot": { + "period": 3867836, + "thread": 24 + } + } + ], + "AU1U2SfaA9SnpvjR1YSNqNNRyjzMYCKqoFpZnY9TdKHs1YLS25zA": [ + { + "amount": "138.276093394", + "slot": { + "period": 127103, + "thread": 10 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 231150, + "thread": 26 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 398298, + "thread": 23 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 521862, + "thread": 28 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 699344, + "thread": 31 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 938421, + "thread": 10 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1138883, + "thread": 20 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1264185, + "thread": 13 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1477815, + "thread": 8 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1569194, + "thread": 28 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1785572, + "thread": 27 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 1845110, + "thread": 8 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2109902, + "thread": 21 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2185393, + "thread": 12 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2377331, + "thread": 10 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2564571, + "thread": 31 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2629627, + "thread": 20 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 2851040, + "thread": 24 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 3003202, + "thread": 26 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 3192056, + "thread": 4 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 3326788, + "thread": 23 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 3532815, + "thread": 5 + } + }, + { + "amount": "138.276093394", + "slot": { + "period": 3714914, + "thread": 14 + } + }, + { + "amount": "138.276093389", + "slot": { + "period": 3798488, + "thread": 5 + } + } + ], + "AU1U2mx9in8vKhpJWF9nMqncfZ9jkxtRHGaeiM6841cmWxsNHyDN": [ + { + "amount": "199.113557337", + "slot": { + "period": 56375, + "thread": 5 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 317068, + "thread": 31 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 387511, + "thread": 3 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 585692, + "thread": 5 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 657260, + "thread": 5 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 912854, + "thread": 30 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1072437, + "thread": 23 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1283574, + "thread": 1 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1441436, + "thread": 24 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1581471, + "thread": 28 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1768941, + "thread": 2 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1886647, + "thread": 9 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 1991991, + "thread": 22 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 2163843, + "thread": 3 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 2372678, + "thread": 28 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 2559910, + "thread": 14 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 2769356, + "thread": 19 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 2853205, + "thread": 10 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 3088921, + "thread": 31 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 3187604, + "thread": 7 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 3307261, + "thread": 9 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 3594011, + "thread": 3 + } + }, + { + "amount": "199.113557337", + "slot": { + "period": 3694202, + "thread": 9 + } + }, + { + "amount": "199.113557334", + "slot": { + "period": 3923508, + "thread": 12 + } + } + ], + "AU1U3knEtzJpF56MQUPDK81UCbWauaBwm8T7cuKcJEu554RtWXSW": [ + { + "amount": "292.101879055", + "slot": { + "period": 48172, + "thread": 7 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 220066, + "thread": 8 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 359609, + "thread": 18 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 510555, + "thread": 30 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 666075, + "thread": 25 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 972034, + "thread": 22 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1138544, + "thread": 19 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1308346, + "thread": 30 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1374239, + "thread": 16 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1565905, + "thread": 22 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1648280, + "thread": 10 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 1821329, + "thread": 12 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2105289, + "thread": 1 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2175467, + "thread": 5 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2347417, + "thread": 29 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2607624, + "thread": 26 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2730415, + "thread": 8 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 2824831, + "thread": 22 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 3116369, + "thread": 0 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 3141621, + "thread": 26 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 3444944, + "thread": 4 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 3521375, + "thread": 6 + } + }, + { + "amount": "292.101879055", + "slot": { + "period": 3678904, + "thread": 15 + } + }, + { + "amount": "292.101879060", + "slot": { + "period": 3916929, + "thread": 26 + } + } + ], + "AU1U3sQ9eMUkDrVSAYkvKBsPi3J1YTJpbm7n3xKjcQg5QQJE8VdX": [ + { + "amount": "71.154213749", + "slot": { + "period": 123758, + "thread": 22 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 201969, + "thread": 20 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 371528, + "thread": 24 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 550577, + "thread": 30 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 756478, + "thread": 6 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 893290, + "thread": 16 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1012057, + "thread": 30 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1180349, + "thread": 12 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1426362, + "thread": 9 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1571951, + "thread": 29 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1682381, + "thread": 7 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 1899614, + "thread": 22 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2030247, + "thread": 19 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2285770, + "thread": 0 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2414990, + "thread": 3 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2504318, + "thread": 10 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2643465, + "thread": 23 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 2927813, + "thread": 25 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 3009544, + "thread": 7 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 3133091, + "thread": 0 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 3302910, + "thread": 18 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 3464392, + "thread": 12 + } + }, + { + "amount": "71.154213749", + "slot": { + "period": 3640014, + "thread": 15 + } + }, + { + "amount": "71.154213748", + "slot": { + "period": 3938136, + "thread": 9 + } + } + ], + "AU1U3xYDsQoFBJ84mtchuL3TRa4SuZ4Z9qq27W9PQPsidLFdCzfx": [ + { + "amount": "94.159076007", + "slot": { + "period": 89658, + "thread": 25 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 214358, + "thread": 31 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 438696, + "thread": 5 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 600949, + "thread": 18 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 699021, + "thread": 31 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 932160, + "thread": 19 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1061631, + "thread": 14 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1228403, + "thread": 25 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1377556, + "thread": 11 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1631159, + "thread": 17 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1703339, + "thread": 27 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 1816673, + "thread": 4 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2131059, + "thread": 0 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2166023, + "thread": 16 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2335451, + "thread": 21 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2567558, + "thread": 16 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2688479, + "thread": 4 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2942842, + "thread": 22 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 2990203, + "thread": 4 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 3263708, + "thread": 0 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 3373943, + "thread": 22 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 3468843, + "thread": 14 + } + }, + { + "amount": "94.159076007", + "slot": { + "period": 3779718, + "thread": 31 + } + }, + { + "amount": "94.159076018", + "slot": { + "period": 3884206, + "thread": 28 + } + } + ], + "AU1U4aKbokEcqH2s2UAwBC4Z16rkhH33BtmwxwuVUjizHLgPmXW3": [ + { + "amount": "136.250252437", + "slot": { + "period": 16997, + "thread": 19 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 318513, + "thread": 28 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 475541, + "thread": 9 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 639542, + "thread": 7 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 778811, + "thread": 6 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 905009, + "thread": 4 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1095363, + "thread": 30 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1270170, + "thread": 11 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1356676, + "thread": 9 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1549153, + "thread": 7 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1766848, + "thread": 22 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1886771, + "thread": 16 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 1993577, + "thread": 14 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 2267912, + "thread": 11 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 2385655, + "thread": 1 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 2480409, + "thread": 5 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 2757964, + "thread": 23 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 2930740, + "thread": 17 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 3019327, + "thread": 0 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 3203490, + "thread": 22 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 3384698, + "thread": 6 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 3537565, + "thread": 4 + } + }, + { + "amount": "136.250252437", + "slot": { + "period": 3751273, + "thread": 14 + } + }, + { + "amount": "136.250252430", + "slot": { + "period": 3782995, + "thread": 20 + } + } + ], + "AU1U4kvxpxpEAsZEwrEXM9qpZQPZBfKQgqnqVtE3T2e51pPPAWsa": [ + { + "amount": "678.611756280", + "slot": { + "period": 142853, + "thread": 24 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 246680, + "thread": 13 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 357896, + "thread": 22 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 526598, + "thread": 2 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 740814, + "thread": 26 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 943995, + "thread": 17 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1138104, + "thread": 19 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1174772, + "thread": 21 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1446245, + "thread": 17 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1642236, + "thread": 7 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1672553, + "thread": 18 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 1819079, + "thread": 20 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2052431, + "thread": 13 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2193878, + "thread": 20 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2412241, + "thread": 12 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2524968, + "thread": 21 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2742823, + "thread": 17 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2921539, + "thread": 16 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 2974797, + "thread": 16 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 3287995, + "thread": 17 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 3296662, + "thread": 23 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 3601817, + "thread": 15 + } + }, + { + "amount": "678.611756280", + "slot": { + "period": 3622810, + "thread": 25 + } + }, + { + "amount": "678.611756270", + "slot": { + "period": 3816369, + "thread": 25 + } + } + ], + "AU1U5TGxMQZ3nXDkiYiGAF5nAsS2X42g9z7fk8XpvaCs2ZDgMVj1": [ + { + "amount": "146.896550288", + "slot": { + "period": 128700, + "thread": 20 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 237242, + "thread": 29 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 369616, + "thread": 12 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 503078, + "thread": 2 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 781679, + "thread": 13 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 906365, + "thread": 11 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1125691, + "thread": 1 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1309959, + "thread": 23 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1444014, + "thread": 0 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1584926, + "thread": 30 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1677339, + "thread": 5 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 1940470, + "thread": 28 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2074360, + "thread": 10 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2261735, + "thread": 12 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2363843, + "thread": 22 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2575536, + "thread": 29 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2638614, + "thread": 25 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 2817840, + "thread": 13 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 3089758, + "thread": 26 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 3141945, + "thread": 25 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 3439265, + "thread": 2 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 3608664, + "thread": 17 + } + }, + { + "amount": "146.896550288", + "slot": { + "period": 3755416, + "thread": 9 + } + }, + { + "amount": "146.896550277", + "slot": { + "period": 3855090, + "thread": 24 + } + } + ], + "AU1U6aSvDx2yTzbU7TnUmiBoRp7E57rAzEyWwwVHKfv64wZ3dEBN": [ + { + "amount": "198.584566712", + "slot": { + "period": 62658, + "thread": 11 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 312024, + "thread": 13 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 397315, + "thread": 25 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 589152, + "thread": 21 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 709161, + "thread": 6 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 899164, + "thread": 20 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1005589, + "thread": 0 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1216136, + "thread": 24 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1460438, + "thread": 11 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1558840, + "thread": 3 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1751389, + "thread": 11 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 1972721, + "thread": 27 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2124612, + "thread": 4 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2274399, + "thread": 26 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2331781, + "thread": 24 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2502690, + "thread": 25 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2698995, + "thread": 17 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 2830240, + "thread": 11 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 3098743, + "thread": 23 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 3190161, + "thread": 0 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 3400053, + "thread": 25 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 3489892, + "thread": 2 + } + }, + { + "amount": "198.584566712", + "slot": { + "period": 3758789, + "thread": 29 + } + }, + { + "amount": "198.584566700", + "slot": { + "period": 3791980, + "thread": 27 + } + } + ], + "AU1U6abgKE48PLAs2qFCd4QtyTo8ryNJ6UxMuEC14AneoNFcP3sS": [ + { + "amount": "94.845625361", + "slot": { + "period": 47144, + "thread": 3 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 180471, + "thread": 9 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 439215, + "thread": 10 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 537746, + "thread": 23 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 656631, + "thread": 29 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 915854, + "thread": 25 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1054937, + "thread": 14 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1227267, + "thread": 26 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1360329, + "thread": 31 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1513197, + "thread": 4 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1731497, + "thread": 4 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 1887336, + "thread": 3 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2105797, + "thread": 6 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2220059, + "thread": 3 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2307569, + "thread": 0 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2524487, + "thread": 20 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2639399, + "thread": 26 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 2906791, + "thread": 7 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 3063821, + "thread": 14 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 3204573, + "thread": 9 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 3425188, + "thread": 18 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 3600627, + "thread": 29 + } + }, + { + "amount": "94.845625361", + "slot": { + "period": 3623431, + "thread": 10 + } + }, + { + "amount": "94.845625360", + "slot": { + "period": 3919350, + "thread": 10 + } + } + ], + "AU1U7NU49G8cbtBW5TEqS3nHiN3z8bwEoojnXjAXo4JYFXBst5a2": [ + { + "amount": "346.772234290", + "slot": { + "period": 57671, + "thread": 4 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 234256, + "thread": 19 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 452364, + "thread": 13 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 578197, + "thread": 24 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 733969, + "thread": 15 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 847523, + "thread": 18 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1071986, + "thread": 19 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1169380, + "thread": 2 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1348019, + "thread": 7 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1576512, + "thread": 10 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1795083, + "thread": 10 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 1897604, + "thread": 12 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2064813, + "thread": 21 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2215799, + "thread": 23 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2372951, + "thread": 13 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2480300, + "thread": 25 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2652440, + "thread": 9 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 2815690, + "thread": 8 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3102247, + "thread": 19 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3198285, + "thread": 8 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3423796, + "thread": 10 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3585072, + "thread": 21 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3736704, + "thread": 25 + } + }, + { + "amount": "346.772234290", + "slot": { + "period": 3862296, + "thread": 27 + } + } + ], + "AU1U7VU1DC4Amz6tuLwwhC9ygSJoNNYwK4nKkNifPeAfrgDPFN3t": [ + { + "amount": "83.232517846", + "slot": { + "period": 158334, + "thread": 18 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 213991, + "thread": 24 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 476572, + "thread": 30 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 588512, + "thread": 25 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 691808, + "thread": 8 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 961727, + "thread": 16 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1106069, + "thread": 14 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1204349, + "thread": 14 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1407144, + "thread": 10 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1646924, + "thread": 23 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1704158, + "thread": 9 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 1870545, + "thread": 1 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2140564, + "thread": 17 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2282275, + "thread": 31 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2441446, + "thread": 29 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2592785, + "thread": 24 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2751038, + "thread": 28 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2824096, + "thread": 13 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 2964872, + "thread": 3 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 3216140, + "thread": 22 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 3358445, + "thread": 14 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 3482280, + "thread": 18 + } + }, + { + "amount": "83.232517846", + "slot": { + "period": 3733203, + "thread": 24 + } + }, + { + "amount": "83.232517844", + "slot": { + "period": 3914919, + "thread": 18 + } + } + ], + "AU1U7quHh8vEC3MMMurhsX7xMfP1tcsDmZHMxZhQw8jmqWZsB41x": [ + { + "amount": "237.374907605", + "slot": { + "period": 61829, + "thread": 19 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 187586, + "thread": 31 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 391253, + "thread": 9 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 541383, + "thread": 11 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 702044, + "thread": 25 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 860261, + "thread": 24 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1079350, + "thread": 13 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1241286, + "thread": 4 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1385097, + "thread": 18 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1480612, + "thread": 24 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1746695, + "thread": 18 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 1858221, + "thread": 2 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2132658, + "thread": 4 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2179410, + "thread": 28 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2295641, + "thread": 8 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2586231, + "thread": 7 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2760787, + "thread": 14 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2938048, + "thread": 25 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 2981094, + "thread": 25 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 3128746, + "thread": 6 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 3388150, + "thread": 23 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 3487811, + "thread": 3 + } + }, + { + "amount": "237.374907605", + "slot": { + "period": 3667618, + "thread": 0 + } + }, + { + "amount": "237.374907596", + "slot": { + "period": 3813037, + "thread": 4 + } + } + ], + "AU1U7xtdnW2yJxvgRi81h8a66zp3nZgtVwhGh9LU2APCu4Sa3PN7": [ + { + "amount": "468.979695771", + "slot": { + "period": 73607, + "thread": 9 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 222437, + "thread": 23 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 470329, + "thread": 28 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 651912, + "thread": 26 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 693866, + "thread": 14 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 905257, + "thread": 29 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1000292, + "thread": 27 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1156138, + "thread": 21 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1415996, + "thread": 4 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1625554, + "thread": 0 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1658726, + "thread": 24 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 1868594, + "thread": 25 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2052957, + "thread": 2 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2199582, + "thread": 23 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2416975, + "thread": 27 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2582601, + "thread": 4 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2780670, + "thread": 27 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 2892892, + "thread": 19 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 3062147, + "thread": 0 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 3278985, + "thread": 24 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 3319807, + "thread": 24 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 3489392, + "thread": 5 + } + }, + { + "amount": "468.979695771", + "slot": { + "period": 3722023, + "thread": 9 + } + }, + { + "amount": "468.979695761", + "slot": { + "period": 3909318, + "thread": 28 + } + } + ], + "AU1U8VgLjLVSJZ2ave7nxLmCeq9GSDH2YXEMKCuSRVXucy9jCsbV": [ + { + "amount": "170.176014978", + "slot": { + "period": 36818, + "thread": 23 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 195877, + "thread": 15 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 357914, + "thread": 25 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 653353, + "thread": 31 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 787541, + "thread": 22 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 921153, + "thread": 14 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1111044, + "thread": 4 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1225572, + "thread": 5 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1386954, + "thread": 5 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1510242, + "thread": 3 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1714818, + "thread": 10 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 1877338, + "thread": 14 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2014706, + "thread": 17 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2173694, + "thread": 17 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2310859, + "thread": 4 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2603983, + "thread": 14 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2640300, + "thread": 12 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 2838593, + "thread": 5 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 3036864, + "thread": 2 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 3268947, + "thread": 16 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 3340144, + "thread": 28 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 3524767, + "thread": 5 + } + }, + { + "amount": "170.176014978", + "slot": { + "period": 3718348, + "thread": 2 + } + }, + { + "amount": "170.176014984", + "slot": { + "period": 3850431, + "thread": 17 + } + } + ], + "AU1U9FuiWhLfTDZV9Qiek4K91KgQEEKojujeiazfaMcC7BMdto7W": [ + { + "amount": "110.278772616", + "slot": { + "period": 47369, + "thread": 19 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 312135, + "thread": 18 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 417038, + "thread": 7 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 626624, + "thread": 0 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 726950, + "thread": 0 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 870508, + "thread": 6 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1009554, + "thread": 18 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1303110, + "thread": 18 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1455546, + "thread": 20 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1633925, + "thread": 16 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1751743, + "thread": 14 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1956301, + "thread": 1 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 1979419, + "thread": 21 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 2256825, + "thread": 12 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 2329333, + "thread": 14 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 2581714, + "thread": 9 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 2671163, + "thread": 1 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 2881031, + "thread": 30 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 3038426, + "thread": 14 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 3269272, + "thread": 9 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 3374073, + "thread": 31 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 3616604, + "thread": 26 + } + }, + { + "amount": "110.278772616", + "slot": { + "period": 3657303, + "thread": 22 + } + }, + { + "amount": "110.278772617", + "slot": { + "period": 3909121, + "thread": 1 + } + } + ], + "AU1UAL7fw29EgyysW81hhiWMFjpbVdxeLvqqd4m5DzZ7ydNvTx58": [ + { + "amount": "82.388185474", + "slot": { + "period": 105610, + "thread": 11 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 250210, + "thread": 18 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 462197, + "thread": 18 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 633529, + "thread": 14 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 791160, + "thread": 23 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 896104, + "thread": 9 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1016320, + "thread": 22 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1287639, + "thread": 1 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1416934, + "thread": 25 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1512199, + "thread": 30 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1746261, + "thread": 15 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1876940, + "thread": 9 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 1997673, + "thread": 31 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 2275108, + "thread": 15 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 2297364, + "thread": 24 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 2574897, + "thread": 25 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 2764396, + "thread": 13 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 2865773, + "thread": 14 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 3102118, + "thread": 0 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 3134564, + "thread": 24 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 3446760, + "thread": 12 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 3479421, + "thread": 5 + } + }, + { + "amount": "82.388185474", + "slot": { + "period": 3712969, + "thread": 26 + } + }, + { + "amount": "82.388185476", + "slot": { + "period": 3850052, + "thread": 14 + } + } + ], + "AU1UBMQNYTSjUTyrwmDW2YU8E3UEcQrtqu78kRZa7gPWSFdZPwhD": [ + { + "amount": "54.582246634", + "slot": { + "period": 30581, + "thread": 11 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 323465, + "thread": 2 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 378849, + "thread": 31 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 628020, + "thread": 20 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 773425, + "thread": 22 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 963153, + "thread": 22 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1093286, + "thread": 26 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1254281, + "thread": 4 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1439541, + "thread": 27 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1564931, + "thread": 11 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1794673, + "thread": 12 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 1890361, + "thread": 16 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2098076, + "thread": 15 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2183297, + "thread": 18 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2343904, + "thread": 4 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2499050, + "thread": 27 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2674033, + "thread": 27 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 2932244, + "thread": 17 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 3084601, + "thread": 17 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 3269938, + "thread": 19 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 3326432, + "thread": 8 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 3496956, + "thread": 23 + } + }, + { + "amount": "54.582246634", + "slot": { + "period": 3699042, + "thread": 3 + } + }, + { + "amount": "54.582246629", + "slot": { + "period": 3809987, + "thread": 14 + } + } + ], + "AU1UCDh94z57T8REqqD6DJADV18bVFSgc85oqGVNJdt7BqsqYfvG": [ + { + "amount": "58.440030610", + "slot": { + "period": 105153, + "thread": 15 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 295085, + "thread": 14 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 428002, + "thread": 8 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 634344, + "thread": 14 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 673085, + "thread": 18 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 920476, + "thread": 29 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 987245, + "thread": 14 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 1208179, + "thread": 28 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 1381137, + "thread": 12 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 1550305, + "thread": 10 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 1776458, + "thread": 20 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 1855946, + "thread": 30 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2065063, + "thread": 31 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2150758, + "thread": 7 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2371856, + "thread": 20 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2563649, + "thread": 1 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2716269, + "thread": 28 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 2877490, + "thread": 2 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 3095010, + "thread": 10 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 3229588, + "thread": 3 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 3401458, + "thread": 7 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 3488938, + "thread": 15 + } + }, + { + "amount": "58.440030610", + "slot": { + "period": 3639096, + "thread": 9 + } + }, + { + "amount": "58.440030608", + "slot": { + "period": 3826580, + "thread": 3 + } + } + ], + "AU1UCQB7ZL7kZWUXbDhFJ34pmythirPD51M8wu49X1gjzfR1wqqA": [ + { + "amount": "203.683663447", + "slot": { + "period": 82540, + "thread": 11 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 259185, + "thread": 4 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 464701, + "thread": 15 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 585909, + "thread": 16 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 758777, + "thread": 8 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 832975, + "thread": 28 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1088680, + "thread": 17 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1299894, + "thread": 16 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1429506, + "thread": 7 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1591202, + "thread": 29 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1681079, + "thread": 1 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 1924466, + "thread": 21 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2117679, + "thread": 20 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2167075, + "thread": 20 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2396191, + "thread": 27 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2587367, + "thread": 27 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2681653, + "thread": 22 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 2853584, + "thread": 11 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 3050316, + "thread": 14 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 3246499, + "thread": 9 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 3386339, + "thread": 15 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 3615843, + "thread": 18 + } + }, + { + "amount": "203.683663447", + "slot": { + "period": 3667422, + "thread": 4 + } + }, + { + "amount": "203.683663439", + "slot": { + "period": 3791079, + "thread": 5 + } + } + ], + "AU1UCX9r68FV6gkv5sGpNhgpz2GytGp3rw3Ah17Fr1AvqJQKTibe": [ + { + "amount": "286.309624256", + "slot": { + "period": 41588, + "thread": 25 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 292407, + "thread": 26 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 408728, + "thread": 3 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 496419, + "thread": 26 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 777297, + "thread": 29 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 873187, + "thread": 0 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1055250, + "thread": 6 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1155896, + "thread": 26 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1433476, + "thread": 29 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1491192, + "thread": 25 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1679890, + "thread": 10 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 1894207, + "thread": 28 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2142485, + "thread": 9 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2197599, + "thread": 6 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2400392, + "thread": 0 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2547667, + "thread": 15 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2733231, + "thread": 19 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 2893694, + "thread": 15 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 3070687, + "thread": 11 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 3139417, + "thread": 10 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 3404056, + "thread": 8 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 3530015, + "thread": 21 + } + }, + { + "amount": "286.309624256", + "slot": { + "period": 3727623, + "thread": 9 + } + }, + { + "amount": "286.309624261", + "slot": { + "period": 3872493, + "thread": 8 + } + } + ], + "AU1UCd5rFbZ1uMsJPkekzCmsjaRG45jonhD5MEb9rghFunxu9vKM": [ + { + "amount": "107.471352444", + "slot": { + "period": 105805, + "thread": 28 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 283716, + "thread": 28 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 435276, + "thread": 30 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 492304, + "thread": 12 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 735154, + "thread": 0 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 970809, + "thread": 8 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1090541, + "thread": 8 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1280416, + "thread": 21 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1415115, + "thread": 5 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1604991, + "thread": 7 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1759687, + "thread": 30 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 1904729, + "thread": 24 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2017339, + "thread": 9 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2267650, + "thread": 29 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2444749, + "thread": 10 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2479922, + "thread": 7 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2699028, + "thread": 12 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2894881, + "thread": 22 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 2964836, + "thread": 19 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 3220251, + "thread": 7 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 3316180, + "thread": 24 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 3464059, + "thread": 22 + } + }, + { + "amount": "107.471352444", + "slot": { + "period": 3637837, + "thread": 11 + } + }, + { + "amount": "107.471352450", + "slot": { + "period": 3844136, + "thread": 21 + } + } + ], + "AU1UChVgrdkXVpwEh3592GL123Uo7qzB9QPo7AzaWy8Gkk6Th9Ux": [ + { + "amount": "620.872389173", + "slot": { + "period": 136551, + "thread": 10 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 267353, + "thread": 11 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 396606, + "thread": 8 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 635213, + "thread": 11 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 742199, + "thread": 12 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 844856, + "thread": 5 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1115232, + "thread": 15 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1155177, + "thread": 5 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1398852, + "thread": 11 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1495930, + "thread": 11 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1669078, + "thread": 14 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 1875312, + "thread": 1 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2061886, + "thread": 20 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2245338, + "thread": 28 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2392166, + "thread": 23 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2512480, + "thread": 29 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2787503, + "thread": 12 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2860712, + "thread": 22 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 2994298, + "thread": 2 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 3272715, + "thread": 25 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 3375692, + "thread": 8 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 3612915, + "thread": 8 + } + }, + { + "amount": "620.872389173", + "slot": { + "period": 3714489, + "thread": 24 + } + }, + { + "amount": "620.872389170", + "slot": { + "period": 3823979, + "thread": 9 + } + } + ], + "AU1UD16TA2a65dXuKYkENUfNkZ9uJz3DZ6UB5KDJPYJVhrZ3fBi5": [ + { + "amount": "94.159529679", + "slot": { + "period": 70926, + "thread": 23 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 184142, + "thread": 18 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 463061, + "thread": 19 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 533108, + "thread": 21 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 773968, + "thread": 28 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 901047, + "thread": 25 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1047303, + "thread": 22 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1310278, + "thread": 30 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1346511, + "thread": 24 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1500829, + "thread": 29 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1697645, + "thread": 15 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 1860922, + "thread": 19 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2000560, + "thread": 21 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2206414, + "thread": 27 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2417538, + "thread": 5 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2602507, + "thread": 25 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2744722, + "thread": 21 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 2820133, + "thread": 18 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 3023233, + "thread": 25 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 3201603, + "thread": 2 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 3392818, + "thread": 7 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 3492486, + "thread": 30 + } + }, + { + "amount": "94.159529679", + "slot": { + "period": 3660128, + "thread": 17 + } + }, + { + "amount": "94.159529682", + "slot": { + "period": 3857896, + "thread": 1 + } + } + ], + "AU1UD8zhmmXgJiUd6F69D39jEHNmg8Dqd8RS6HEBdEqq3SE8MgeV": [ + { + "amount": "406.191688498", + "slot": { + "period": 64551, + "thread": 26 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 322370, + "thread": 14 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 460371, + "thread": 25 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 552998, + "thread": 28 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 768358, + "thread": 28 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 981760, + "thread": 5 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1115767, + "thread": 21 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1221563, + "thread": 13 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1373957, + "thread": 5 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1527537, + "thread": 11 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1806465, + "thread": 2 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 1852650, + "thread": 29 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2122043, + "thread": 15 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2171218, + "thread": 23 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2368792, + "thread": 28 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2508679, + "thread": 7 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2690216, + "thread": 29 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 2794313, + "thread": 1 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 3005693, + "thread": 1 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 3271228, + "thread": 10 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 3368403, + "thread": 14 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 3582364, + "thread": 6 + } + }, + { + "amount": "406.191688498", + "slot": { + "period": 3759061, + "thread": 15 + } + }, + { + "amount": "406.191688506", + "slot": { + "period": 3940952, + "thread": 0 + } + } + ], + "AU1UE9THYPJdz6kFaNDgGNu2Jz15Gkt6S8cNkUgXQthTrai6V9jQ": [ + { + "amount": "233.195429695", + "slot": { + "period": 17430, + "thread": 7 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 321416, + "thread": 23 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 395367, + "thread": 23 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 579753, + "thread": 21 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 722158, + "thread": 19 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 824574, + "thread": 10 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1054900, + "thread": 2 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1242396, + "thread": 22 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1450509, + "thread": 7 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1643351, + "thread": 22 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1769306, + "thread": 18 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 1841594, + "thread": 9 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2109380, + "thread": 4 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2283822, + "thread": 26 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2395439, + "thread": 7 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2599715, + "thread": 31 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2788664, + "thread": 25 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 2857622, + "thread": 2 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 3065988, + "thread": 21 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 3242066, + "thread": 21 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 3419685, + "thread": 3 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 3499198, + "thread": 25 + } + }, + { + "amount": "233.195429695", + "slot": { + "period": 3658061, + "thread": 16 + } + }, + { + "amount": "233.195429694", + "slot": { + "period": 3901006, + "thread": 6 + } + } + ], + "AU1UEUbgye9LhGr17anxFcYBLa8jw6zvtoGYeVZ8jXT1WmAsWTv9": [ + { + "amount": "438.845549638", + "slot": { + "period": 82934, + "thread": 29 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 307693, + "thread": 16 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 354581, + "thread": 10 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 568997, + "thread": 0 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 759355, + "thread": 18 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 870665, + "thread": 13 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 988579, + "thread": 10 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 1171045, + "thread": 18 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 1352645, + "thread": 23 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 1564879, + "thread": 18 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 1681953, + "thread": 11 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 1874053, + "thread": 17 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2092109, + "thread": 12 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2239694, + "thread": 13 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2393663, + "thread": 13 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2574920, + "thread": 7 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2678539, + "thread": 10 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 2927108, + "thread": 25 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 3111490, + "thread": 21 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 3255286, + "thread": 18 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 3376918, + "thread": 0 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 3561040, + "thread": 0 + } + }, + { + "amount": "438.845549638", + "slot": { + "period": 3665014, + "thread": 25 + } + }, + { + "amount": "438.845549630", + "slot": { + "period": 3845760, + "thread": 12 + } + } + ], + "AU1UEhHRgPPwcqPoySDX8Rgonq1oaRAavKeBjJ76mhSnNpkoxvBD": [ + { + "amount": "79.916544439", + "slot": { + "period": 33715, + "thread": 17 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 229976, + "thread": 3 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 415520, + "thread": 5 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 635325, + "thread": 0 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 681995, + "thread": 14 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 878227, + "thread": 21 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1025809, + "thread": 17 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1253891, + "thread": 14 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1459993, + "thread": 28 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1543843, + "thread": 15 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1684991, + "thread": 21 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 1855751, + "thread": 6 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2024685, + "thread": 15 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2222281, + "thread": 23 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2391857, + "thread": 20 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2550296, + "thread": 13 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2749394, + "thread": 29 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 2829554, + "thread": 6 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 3007447, + "thread": 19 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 3225178, + "thread": 11 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 3408134, + "thread": 12 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 3572929, + "thread": 20 + } + }, + { + "amount": "79.916544439", + "slot": { + "period": 3761498, + "thread": 9 + } + }, + { + "amount": "79.916544446", + "slot": { + "period": 3806780, + "thread": 18 + } + } + ], + "AU1UFEdZZZ2nQoAcqzA5nTn5QpsYUfhmhYQjf7CRPJhTKT8inhLD": [ + { + "amount": "157.171317809", + "slot": { + "period": 11551, + "thread": 9 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 277907, + "thread": 24 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 486477, + "thread": 29 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 551482, + "thread": 6 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 714113, + "thread": 2 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 973063, + "thread": 19 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1147761, + "thread": 9 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1197251, + "thread": 20 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1441800, + "thread": 26 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1621445, + "thread": 26 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1772782, + "thread": 11 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 1899707, + "thread": 11 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2013433, + "thread": 5 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2157905, + "thread": 13 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2429257, + "thread": 22 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2543275, + "thread": 16 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2727914, + "thread": 5 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2860764, + "thread": 19 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 2979232, + "thread": 28 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 3216599, + "thread": 0 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 3362803, + "thread": 13 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 3544261, + "thread": 4 + } + }, + { + "amount": "157.171317809", + "slot": { + "period": 3737757, + "thread": 30 + } + }, + { + "amount": "157.171317820", + "slot": { + "period": 3803776, + "thread": 2 + } + } + ], + "AU1UFsDywnT54LmLXGRSGoxG1HV1WFKmaDiSvkohvm9RkbNVFnn9": [ + { + "amount": "278.475514484", + "slot": { + "period": 114248, + "thread": 13 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 176877, + "thread": 7 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 450967, + "thread": 29 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 625850, + "thread": 3 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 703981, + "thread": 2 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 971034, + "thread": 22 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1142757, + "thread": 26 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1221671, + "thread": 12 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1370395, + "thread": 16 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1594424, + "thread": 4 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1647455, + "thread": 23 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 1818920, + "thread": 0 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2066446, + "thread": 4 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2149569, + "thread": 25 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2457900, + "thread": 11 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2482585, + "thread": 7 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2778500, + "thread": 28 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 2884105, + "thread": 19 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 3019290, + "thread": 30 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 3224901, + "thread": 26 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 3341745, + "thread": 11 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 3512286, + "thread": 28 + } + }, + { + "amount": "278.475514484", + "slot": { + "period": 3714635, + "thread": 13 + } + }, + { + "amount": "278.475514488", + "slot": { + "period": 3903277, + "thread": 7 + } + } + ], + "AU1UHBHhpuSr2537pL4TerS9PBVZn6NJgnrgep8USeDzohfEmF3U": [ + { + "amount": "236.622847275", + "slot": { + "period": 13206, + "thread": 7 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 171381, + "thread": 15 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 407816, + "thread": 28 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 573010, + "thread": 22 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 792383, + "thread": 26 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 948838, + "thread": 30 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1055930, + "thread": 0 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1302620, + "thread": 20 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1448952, + "thread": 28 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1566369, + "thread": 13 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1786825, + "thread": 5 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 1954495, + "thread": 28 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2081700, + "thread": 0 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2186313, + "thread": 2 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2341459, + "thread": 28 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2530199, + "thread": 21 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2760635, + "thread": 25 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 2889107, + "thread": 24 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 3086880, + "thread": 4 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 3196691, + "thread": 3 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 3414289, + "thread": 16 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 3540151, + "thread": 20 + } + }, + { + "amount": "236.622847275", + "slot": { + "period": 3752847, + "thread": 20 + } + }, + { + "amount": "236.622847284", + "slot": { + "period": 3941903, + "thread": 28 + } + } + ], + "AU1UHmQe95CubX6SAvyDQ2ZGSpiu7dFJRU61iict6PdyRAGu4f65": [ + { + "amount": "459.395403232", + "slot": { + "period": 45535, + "thread": 23 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 181029, + "thread": 16 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 410074, + "thread": 9 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 603293, + "thread": 19 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 772391, + "thread": 30 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 875077, + "thread": 5 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1014602, + "thread": 12 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1282543, + "thread": 25 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1356357, + "thread": 27 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1581432, + "thread": 11 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1674850, + "thread": 3 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1828224, + "thread": 2 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 1994788, + "thread": 11 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 2272629, + "thread": 30 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 2448675, + "thread": 10 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 2466784, + "thread": 4 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 2693427, + "thread": 17 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 2930942, + "thread": 17 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 3088319, + "thread": 30 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 3232026, + "thread": 29 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 3324853, + "thread": 4 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 3534550, + "thread": 0 + } + }, + { + "amount": "459.395403232", + "slot": { + "period": 3692959, + "thread": 14 + } + }, + { + "amount": "459.395403226", + "slot": { + "period": 3870362, + "thread": 5 + } + } + ], + "AU1UHxbTCaqifokTU5NFar4ASfVUvPBM4KEYPMEDGCLbb7LPCgRL": [ + { + "amount": "117.361819459", + "slot": { + "period": 52388, + "thread": 21 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 246948, + "thread": 28 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 359407, + "thread": 17 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 637311, + "thread": 15 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 804164, + "thread": 10 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 969515, + "thread": 3 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1049187, + "thread": 14 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1243116, + "thread": 1 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1428439, + "thread": 19 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1532815, + "thread": 23 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1783081, + "thread": 20 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 1891090, + "thread": 26 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2035888, + "thread": 26 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2208169, + "thread": 5 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2308657, + "thread": 31 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2544926, + "thread": 7 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2708182, + "thread": 11 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 2796619, + "thread": 21 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 3112122, + "thread": 8 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 3239357, + "thread": 9 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 3383935, + "thread": 3 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 3477932, + "thread": 5 + } + }, + { + "amount": "117.361819459", + "slot": { + "period": 3738087, + "thread": 14 + } + }, + { + "amount": "117.361819457", + "slot": { + "period": 3850979, + "thread": 27 + } + } + ], + "AU1UJkp7gV4cEX45BJ6KtgtxGwdphxjv3HMrfjSJ4EB8qVfvs1UJ": [ + { + "amount": "181.893342331", + "slot": { + "period": 98090, + "thread": 7 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 192866, + "thread": 10 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 490944, + "thread": 21 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 526127, + "thread": 29 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 736697, + "thread": 1 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 918258, + "thread": 5 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1045710, + "thread": 30 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1214328, + "thread": 3 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1424687, + "thread": 16 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1489450, + "thread": 12 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1668212, + "thread": 21 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 1870445, + "thread": 4 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2123377, + "thread": 31 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2161349, + "thread": 29 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2326564, + "thread": 20 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2480058, + "thread": 16 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2762634, + "thread": 20 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2855830, + "thread": 23 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 2983937, + "thread": 26 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 3141585, + "thread": 25 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 3337912, + "thread": 9 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 3511286, + "thread": 7 + } + }, + { + "amount": "181.893342331", + "slot": { + "period": 3720171, + "thread": 28 + } + }, + { + "amount": "181.893342332", + "slot": { + "period": 3798191, + "thread": 17 + } + } + ], + "AU1UKRv8bATP31U3zUNvj9tvwfMbUBp7gWGdQqEM1hwM19kw8D3H": [ + { + "amount": "191.949263827", + "slot": { + "period": 144823, + "thread": 1 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 181326, + "thread": 4 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 456823, + "thread": 22 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 624077, + "thread": 30 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 801831, + "thread": 23 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 880827, + "thread": 9 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1110511, + "thread": 26 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1301294, + "thread": 30 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1385423, + "thread": 30 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1593648, + "thread": 15 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1710019, + "thread": 27 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 1862979, + "thread": 27 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2047383, + "thread": 29 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2209743, + "thread": 6 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2391485, + "thread": 30 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2499414, + "thread": 3 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2721507, + "thread": 9 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2912138, + "thread": 29 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 2969136, + "thread": 12 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 3173199, + "thread": 24 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 3292326, + "thread": 16 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 3594237, + "thread": 28 + } + }, + { + "amount": "191.949263827", + "slot": { + "period": 3717121, + "thread": 11 + } + }, + { + "amount": "191.949263819", + "slot": { + "period": 3786548, + "thread": 5 + } + } + ], + "AU1UKxwWddbiVQ85xRUj9eUxyZKDECMYENLXKv2bH1N4N8dRCK62": [ + { + "amount": "150.985507970", + "slot": { + "period": 41058, + "thread": 5 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 256421, + "thread": 12 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 415378, + "thread": 19 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 543798, + "thread": 14 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 806902, + "thread": 31 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 915865, + "thread": 10 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1000664, + "thread": 10 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1227047, + "thread": 0 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1478558, + "thread": 15 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1571226, + "thread": 9 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1650092, + "thread": 6 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1956289, + "thread": 22 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 1979422, + "thread": 12 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 2186735, + "thread": 30 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 2433433, + "thread": 4 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 2573942, + "thread": 22 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 2696630, + "thread": 3 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 2869095, + "thread": 28 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 3072076, + "thread": 6 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 3260633, + "thread": 1 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 3361575, + "thread": 10 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 3484303, + "thread": 18 + } + }, + { + "amount": "150.985507970", + "slot": { + "period": 3697659, + "thread": 6 + } + }, + { + "amount": "150.985507974", + "slot": { + "period": 3863536, + "thread": 29 + } + } + ], + "AU1ULadd8Ng2bKoViF7xjJTEzx1Qe4NkUkZqeNKwLQF7rYVnDYnX": [ + { + "amount": "435.967785584", + "slot": { + "period": 58202, + "thread": 19 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 256010, + "thread": 16 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 457798, + "thread": 10 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 641454, + "thread": 16 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 820729, + "thread": 26 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 883268, + "thread": 11 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1055121, + "thread": 4 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1265522, + "thread": 24 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1407702, + "thread": 24 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1629568, + "thread": 18 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1727057, + "thread": 19 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 1881255, + "thread": 23 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2049520, + "thread": 11 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2202138, + "thread": 12 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2423759, + "thread": 26 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2516826, + "thread": 11 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2753917, + "thread": 28 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 2889103, + "thread": 13 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 3090960, + "thread": 25 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 3245516, + "thread": 4 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 3429873, + "thread": 9 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 3484848, + "thread": 7 + } + }, + { + "amount": "435.967785584", + "slot": { + "period": 3776920, + "thread": 21 + } + }, + { + "amount": "435.967785592", + "slot": { + "period": 3835481, + "thread": 31 + } + } + ], + "AU1UNiurzSMkVdxkmGTmQv3msM3RqJNE272iugBDcBfMBBLyajnL": [ + { + "amount": "135.070231246", + "slot": { + "period": 75461, + "thread": 3 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 281875, + "thread": 13 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 364145, + "thread": 18 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 524061, + "thread": 7 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 657846, + "thread": 12 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 846190, + "thread": 28 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1075410, + "thread": 15 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1272106, + "thread": 2 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1421379, + "thread": 30 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1613959, + "thread": 20 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1715180, + "thread": 8 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 1845901, + "thread": 4 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2045852, + "thread": 3 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2294382, + "thread": 5 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2412127, + "thread": 16 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2496887, + "thread": 26 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2746505, + "thread": 17 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 2816145, + "thread": 13 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 3059143, + "thread": 28 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 3247027, + "thread": 4 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 3373682, + "thread": 15 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 3458362, + "thread": 14 + } + }, + { + "amount": "135.070231246", + "slot": { + "period": 3712619, + "thread": 24 + } + }, + { + "amount": "135.070231234", + "slot": { + "period": 3912402, + "thread": 21 + } + } + ], + "AU1UNkCMTqqwQkkEeBqm4hfxHg9EKCrXcqc6ho7X4g56dd9yPAHa": [ + { + "amount": "170.357533924", + "slot": { + "period": 26291, + "thread": 19 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 252076, + "thread": 11 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 468495, + "thread": 10 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 549834, + "thread": 7 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 699406, + "thread": 22 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 954711, + "thread": 31 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1038497, + "thread": 29 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1190456, + "thread": 20 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1357618, + "thread": 1 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1514696, + "thread": 3 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1734851, + "thread": 9 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 1898810, + "thread": 30 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2127192, + "thread": 12 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2198656, + "thread": 1 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2301077, + "thread": 6 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2487103, + "thread": 6 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2630414, + "thread": 3 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2865389, + "thread": 28 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 2986452, + "thread": 25 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 3277021, + "thread": 11 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 3380623, + "thread": 11 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 3581653, + "thread": 16 + } + }, + { + "amount": "170.357533924", + "slot": { + "period": 3640852, + "thread": 4 + } + }, + { + "amount": "170.357533920", + "slot": { + "period": 3895048, + "thread": 21 + } + } + ], + "AU1UQH55V2f7AfgBtAvuoPtNQFxLx7ufmvNXGkPYguP8m9hCmUXt": [ + { + "amount": "199.839083590", + "slot": { + "period": 128591, + "thread": 21 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 310340, + "thread": 0 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 467758, + "thread": 12 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 553408, + "thread": 15 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 716018, + "thread": 21 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 966326, + "thread": 5 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1143380, + "thread": 28 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1167036, + "thread": 7 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1457994, + "thread": 23 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1609553, + "thread": 22 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1789870, + "thread": 22 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 1923149, + "thread": 31 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2056224, + "thread": 18 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2203457, + "thread": 24 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2377096, + "thread": 7 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2602899, + "thread": 30 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2695291, + "thread": 0 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2875660, + "thread": 0 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 2972347, + "thread": 6 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 3264890, + "thread": 1 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 3367697, + "thread": 18 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 3487520, + "thread": 22 + } + }, + { + "amount": "199.839083590", + "slot": { + "period": 3620379, + "thread": 1 + } + }, + { + "amount": "199.839083588", + "slot": { + "period": 3858083, + "thread": 21 + } + } + ], + "AU1UQZztbfsaj4Dva2zWVbGB36bs879ovmpKZSE32D2v7afHoMWF": [ + { + "amount": "61.122932767", + "slot": { + "period": 151917, + "thread": 4 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 315330, + "thread": 12 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 420712, + "thread": 0 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 509804, + "thread": 27 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 676950, + "thread": 24 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 936767, + "thread": 10 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1115410, + "thread": 8 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1256677, + "thread": 15 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1396541, + "thread": 8 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1548323, + "thread": 28 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1654354, + "thread": 7 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 1831709, + "thread": 4 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2111923, + "thread": 24 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2274565, + "thread": 21 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2400547, + "thread": 11 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2543170, + "thread": 16 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2655915, + "thread": 18 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 2809005, + "thread": 29 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 3061268, + "thread": 13 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 3168759, + "thread": 14 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 3410262, + "thread": 25 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 3464995, + "thread": 21 + } + }, + { + "amount": "61.122932767", + "slot": { + "period": 3697868, + "thread": 25 + } + }, + { + "amount": "61.122932760", + "slot": { + "period": 3884351, + "thread": 6 + } + } + ], + "AU1UQh7J3P8qLWRKgiqQorEW2s4mawredSNR1vsXFrMvPQstLaos": [ + { + "amount": "80.913559179", + "slot": { + "period": 35684, + "thread": 15 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 199438, + "thread": 31 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 332908, + "thread": 4 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 593834, + "thread": 2 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 741368, + "thread": 31 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 970533, + "thread": 14 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 996363, + "thread": 24 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 1232337, + "thread": 18 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 1388118, + "thread": 22 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 1556167, + "thread": 12 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 1681319, + "thread": 23 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 1821962, + "thread": 2 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2020020, + "thread": 21 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2281014, + "thread": 22 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2348197, + "thread": 11 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2485628, + "thread": 12 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2715069, + "thread": 17 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2809621, + "thread": 28 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 2959994, + "thread": 5 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 3269246, + "thread": 28 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 3293202, + "thread": 10 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 3451555, + "thread": 27 + } + }, + { + "amount": "80.913559179", + "slot": { + "period": 3659729, + "thread": 3 + } + }, + { + "amount": "80.913559172", + "slot": { + "period": 3895583, + "thread": 31 + } + } + ], + "AU1URNgbqzUA4yn6hiRmpyjRnnUNjn3PRA3D63Lr2MRTWt66fFYQ": [ + { + "amount": "159.550595756", + "slot": { + "period": 119548, + "thread": 22 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 294985, + "thread": 17 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 327575, + "thread": 12 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 611179, + "thread": 23 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 802888, + "thread": 4 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 877049, + "thread": 13 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1100382, + "thread": 27 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1173147, + "thread": 17 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1340153, + "thread": 22 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1588618, + "thread": 2 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1793181, + "thread": 6 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 1876258, + "thread": 29 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2140172, + "thread": 27 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2160929, + "thread": 19 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2427466, + "thread": 22 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2566093, + "thread": 4 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2773010, + "thread": 29 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 2881724, + "thread": 25 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 3019098, + "thread": 27 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 3149115, + "thread": 20 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 3326128, + "thread": 30 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 3611652, + "thread": 28 + } + }, + { + "amount": "159.550595756", + "slot": { + "period": 3682366, + "thread": 20 + } + }, + { + "amount": "159.550595758", + "slot": { + "period": 3824800, + "thread": 13 + } + } + ], + "AU1USXzjSzpFHKuntcFnYyK5xqXm17iciBoAATqyh83EXHGriMFo": [ + { + "amount": "184.547157173", + "slot": { + "period": 142276, + "thread": 31 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 221660, + "thread": 15 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 363140, + "thread": 18 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 620363, + "thread": 24 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 785895, + "thread": 6 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 863016, + "thread": 5 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 992835, + "thread": 14 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1160769, + "thread": 2 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1437779, + "thread": 19 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1593649, + "thread": 28 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1648977, + "thread": 6 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1975078, + "thread": 28 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 1981795, + "thread": 30 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 2193549, + "thread": 31 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 2335066, + "thread": 7 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 2468121, + "thread": 18 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 2646535, + "thread": 21 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 2835803, + "thread": 2 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 3044311, + "thread": 26 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 3182998, + "thread": 9 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 3439067, + "thread": 22 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 3482610, + "thread": 10 + } + }, + { + "amount": "184.547157173", + "slot": { + "period": 3684000, + "thread": 5 + } + }, + { + "amount": "184.547157167", + "slot": { + "period": 3842506, + "thread": 21 + } + } + ], + "AU1USeWsHxbrPGAPKA2vHVG7RQJBfuUXMkmH1BesHPYwNAVKycGq": [ + { + "amount": "353.412683304", + "slot": { + "period": 124514, + "thread": 16 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 251785, + "thread": 16 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 403500, + "thread": 13 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 642098, + "thread": 16 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 771988, + "thread": 16 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 977253, + "thread": 13 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1055283, + "thread": 20 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1276597, + "thread": 22 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1477783, + "thread": 25 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1602569, + "thread": 0 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1686084, + "thread": 11 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 1870350, + "thread": 31 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2070775, + "thread": 17 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2266710, + "thread": 17 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2427456, + "thread": 18 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2486770, + "thread": 24 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2684012, + "thread": 25 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 2797761, + "thread": 15 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 3051585, + "thread": 15 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 3245031, + "thread": 6 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 3407803, + "thread": 16 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 3609790, + "thread": 25 + } + }, + { + "amount": "353.412683304", + "slot": { + "period": 3713552, + "thread": 1 + } + }, + { + "amount": "353.412683309", + "slot": { + "period": 3892388, + "thread": 19 + } + } + ], + "AU1UTGqp7ygAaDeuincrYoJaAocBwdrD7W8QH5eESuPo6PjbFi6S": [ + { + "amount": "99.202225967", + "slot": { + "period": 98422, + "thread": 21 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 212161, + "thread": 19 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 372886, + "thread": 16 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 634544, + "thread": 0 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 752406, + "thread": 29 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 926877, + "thread": 15 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1015490, + "thread": 27 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1272805, + "thread": 1 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1432640, + "thread": 30 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1544070, + "thread": 14 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1778468, + "thread": 1 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 1897283, + "thread": 6 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2029245, + "thread": 17 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2201199, + "thread": 17 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2381753, + "thread": 12 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2593498, + "thread": 24 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2746066, + "thread": 1 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 2854665, + "thread": 22 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 3102608, + "thread": 28 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 3224856, + "thread": 5 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 3404593, + "thread": 6 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 3464876, + "thread": 9 + } + }, + { + "amount": "99.202225967", + "slot": { + "period": 3689889, + "thread": 8 + } + }, + { + "amount": "99.202225966", + "slot": { + "period": 3902695, + "thread": 27 + } + } + ], + "AU1UTV71KBW3w3ZkzQfU3a6SW9WfAGYGqyHmLKdXUfYsVw28evkN": [ + { + "amount": "92.026185097", + "slot": { + "period": 166449, + "thread": 7 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 316388, + "thread": 22 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 466275, + "thread": 21 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 535581, + "thread": 10 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 667854, + "thread": 4 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 857769, + "thread": 20 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1085735, + "thread": 25 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1213549, + "thread": 7 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1395929, + "thread": 29 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1521611, + "thread": 10 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1750785, + "thread": 5 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 1863894, + "thread": 10 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2060384, + "thread": 1 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2271812, + "thread": 22 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2305783, + "thread": 9 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2549434, + "thread": 7 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2674354, + "thread": 9 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 2891747, + "thread": 2 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 3099210, + "thread": 31 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 3242191, + "thread": 31 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 3361281, + "thread": 18 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 3546726, + "thread": 13 + } + }, + { + "amount": "92.026185097", + "slot": { + "period": 3692994, + "thread": 17 + } + }, + { + "amount": "92.026185091", + "slot": { + "period": 3816396, + "thread": 8 + } + } + ], + "AU1UUVNqZMm1oa5WL8XpJDfd7euq1xSrHSKvEwPueAmta5wzCeMs": [ + { + "amount": "71.843135997", + "slot": { + "period": 39556, + "thread": 20 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 174894, + "thread": 11 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 420468, + "thread": 1 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 560180, + "thread": 12 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 788485, + "thread": 27 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 968994, + "thread": 7 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1026680, + "thread": 5 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1253863, + "thread": 13 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1396397, + "thread": 31 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1511157, + "thread": 8 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1665127, + "thread": 20 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 1810808, + "thread": 1 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2043724, + "thread": 4 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2155110, + "thread": 18 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2397195, + "thread": 1 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2600860, + "thread": 4 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2762940, + "thread": 27 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 2844934, + "thread": 15 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 3016176, + "thread": 16 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 3173754, + "thread": 4 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 3310083, + "thread": 24 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 3608306, + "thread": 9 + } + }, + { + "amount": "71.843135997", + "slot": { + "period": 3778977, + "thread": 18 + } + }, + { + "amount": "71.843135999", + "slot": { + "period": 3835775, + "thread": 0 + } + } + ], + "AU1UUcSYMfQgfR5ZX1wvfBCnHVuaHLrVMm2aoYocBaGY9zBzxx2J": [ + { + "amount": "173.494591925", + "slot": { + "period": 162306, + "thread": 4 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 210230, + "thread": 10 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 436745, + "thread": 27 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 648563, + "thread": 13 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 686305, + "thread": 16 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 878850, + "thread": 26 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 992744, + "thread": 5 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 1236920, + "thread": 19 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 1472558, + "thread": 22 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 1595728, + "thread": 15 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 1687095, + "thread": 20 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 1880318, + "thread": 19 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2137639, + "thread": 22 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2281267, + "thread": 22 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2432531, + "thread": 18 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2606603, + "thread": 6 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2777845, + "thread": 0 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 2860818, + "thread": 26 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 3085424, + "thread": 14 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 3138281, + "thread": 19 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 3395213, + "thread": 3 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 3564136, + "thread": 14 + } + }, + { + "amount": "173.494591925", + "slot": { + "period": 3654524, + "thread": 28 + } + }, + { + "amount": "173.494591927", + "slot": { + "period": 3792970, + "thread": 15 + } + } + ], + "AU1UV356yUocqMGsftBYjHGSmnmwuweWrS63q1egXx7dNbqcd8BJ": [ + { + "amount": "156.553673251", + "slot": { + "period": 132244, + "thread": 14 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 169580, + "thread": 5 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 372570, + "thread": 6 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 620280, + "thread": 29 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 700553, + "thread": 3 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 937264, + "thread": 31 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1146684, + "thread": 24 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1258326, + "thread": 7 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1387755, + "thread": 6 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1543231, + "thread": 17 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1746202, + "thread": 31 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 1962032, + "thread": 30 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2078434, + "thread": 29 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2165734, + "thread": 1 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2330565, + "thread": 3 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2581062, + "thread": 11 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2774708, + "thread": 13 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 2829970, + "thread": 9 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 3063648, + "thread": 20 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 3242900, + "thread": 31 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 3310534, + "thread": 7 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 3497249, + "thread": 1 + } + }, + { + "amount": "156.553673251", + "slot": { + "period": 3719501, + "thread": 16 + } + }, + { + "amount": "156.553673260", + "slot": { + "period": 3782464, + "thread": 21 + } + } + ], + "AU1UW6SMppm1RYiobN1MJAvNnmAW8tKNaXWg9vEHvCDhASMYFAnz": [ + { + "amount": "253.469063949", + "slot": { + "period": 50551, + "thread": 20 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 268762, + "thread": 29 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 343635, + "thread": 5 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 592305, + "thread": 26 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 744550, + "thread": 12 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 849408, + "thread": 9 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1074082, + "thread": 20 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1304696, + "thread": 17 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1383620, + "thread": 22 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1634539, + "thread": 5 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1683303, + "thread": 20 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 1952520, + "thread": 29 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2103552, + "thread": 22 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2231423, + "thread": 21 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2378590, + "thread": 28 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2599119, + "thread": 8 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2652620, + "thread": 17 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 2945962, + "thread": 27 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 3116680, + "thread": 3 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 3151138, + "thread": 18 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 3442704, + "thread": 18 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 3597229, + "thread": 31 + } + }, + { + "amount": "253.469063949", + "slot": { + "period": 3725785, + "thread": 8 + } + }, + { + "amount": "253.469063960", + "slot": { + "period": 3941896, + "thread": 11 + } + } + ], + "AU1UWzJK6q1vDbFAP6s5MHJJPy4oCoepDtorjj4wBuqDy8BrVvuB": [ + { + "amount": "298.331744392", + "slot": { + "period": 125455, + "thread": 15 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 176778, + "thread": 24 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 394047, + "thread": 3 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 559826, + "thread": 25 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 664406, + "thread": 10 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 930150, + "thread": 13 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1004979, + "thread": 0 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1310262, + "thread": 1 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1411998, + "thread": 26 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1489383, + "thread": 18 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1711056, + "thread": 28 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 1908457, + "thread": 27 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2067797, + "thread": 29 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2225370, + "thread": 27 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2377902, + "thread": 20 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2567567, + "thread": 7 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2640622, + "thread": 17 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 2844151, + "thread": 8 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 3053926, + "thread": 7 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 3170399, + "thread": 4 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 3361083, + "thread": 13 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 3579179, + "thread": 26 + } + }, + { + "amount": "298.331744392", + "slot": { + "period": 3768005, + "thread": 7 + } + }, + { + "amount": "298.331744404", + "slot": { + "period": 3788413, + "thread": 13 + } + } + ], + "AU1UXuVPSGAHE7jsQvmVSGTgtieX1EuQLq7rU4DeUTWLCQZVUmN2": [ + { + "amount": "346.083992329", + "slot": { + "period": 100675, + "thread": 31 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 309483, + "thread": 4 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 395819, + "thread": 0 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 504974, + "thread": 2 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 699450, + "thread": 21 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 872419, + "thread": 21 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1070356, + "thread": 27 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1224283, + "thread": 17 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1362437, + "thread": 12 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1506622, + "thread": 0 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1689936, + "thread": 31 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1870922, + "thread": 22 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 1977622, + "thread": 20 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 2174932, + "thread": 4 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 2316804, + "thread": 12 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 2555388, + "thread": 3 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 2688722, + "thread": 10 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 2858617, + "thread": 23 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 3106355, + "thread": 20 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 3173524, + "thread": 19 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 3421122, + "thread": 18 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 3503533, + "thread": 15 + } + }, + { + "amount": "346.083992329", + "slot": { + "period": 3761296, + "thread": 28 + } + }, + { + "amount": "346.083992322", + "slot": { + "period": 3866131, + "thread": 30 + } + } + ], + "AU1UYxJzANG7MicuahJs2WA5F2qchgALbanxqn3maNL7tNy2bqCc": [ + { + "amount": "436.100251932", + "slot": { + "period": 22750, + "thread": 5 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 199791, + "thread": 27 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 440709, + "thread": 1 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 518921, + "thread": 15 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 708437, + "thread": 13 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 832870, + "thread": 0 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 999727, + "thread": 6 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 1273537, + "thread": 12 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 1332197, + "thread": 9 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 1548225, + "thread": 30 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 1673333, + "thread": 8 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 1855872, + "thread": 30 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2014059, + "thread": 21 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2203724, + "thread": 26 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2402246, + "thread": 18 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2475407, + "thread": 3 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2671013, + "thread": 16 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 2794756, + "thread": 16 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 3064438, + "thread": 0 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 3251114, + "thread": 14 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 3333989, + "thread": 10 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 3506862, + "thread": 30 + } + }, + { + "amount": "436.100251932", + "slot": { + "period": 3705267, + "thread": 8 + } + }, + { + "amount": "436.100251920", + "slot": { + "period": 3882006, + "thread": 6 + } + } + ], + "AU1UZCzZQSxx7fadByWHgRUqTnYznoBrmXWmY6TzPtgeGu2xshFa": [ + { + "amount": "129.633034504", + "slot": { + "period": 53096, + "thread": 18 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 280446, + "thread": 1 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 490566, + "thread": 23 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 519547, + "thread": 16 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 713103, + "thread": 13 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 895811, + "thread": 27 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1071689, + "thread": 26 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1304312, + "thread": 28 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1368548, + "thread": 24 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1632648, + "thread": 18 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1674334, + "thread": 25 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 1959286, + "thread": 22 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2124027, + "thread": 24 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2271070, + "thread": 15 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2448380, + "thread": 25 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2541770, + "thread": 19 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2757369, + "thread": 8 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 2800866, + "thread": 12 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 3116341, + "thread": 10 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 3221889, + "thread": 10 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 3323051, + "thread": 20 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 3543846, + "thread": 21 + } + }, + { + "amount": "129.633034504", + "slot": { + "period": 3689950, + "thread": 2 + } + }, + { + "amount": "129.633034495", + "slot": { + "period": 3835477, + "thread": 21 + } + } + ], + "AU1UZMxesGnNEJhztPDfaiWMsMqBx2sDoJjZ4MiSffeMmgY9VuQQ": [ + { + "amount": "136.376374260", + "slot": { + "period": 101366, + "thread": 3 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 255526, + "thread": 7 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 411054, + "thread": 18 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 629333, + "thread": 19 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 676948, + "thread": 19 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 904585, + "thread": 9 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1089840, + "thread": 25 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1214094, + "thread": 14 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1465142, + "thread": 28 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1600461, + "thread": 9 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1786692, + "thread": 2 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 1936788, + "thread": 23 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2140721, + "thread": 3 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2192496, + "thread": 25 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2414525, + "thread": 14 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2618765, + "thread": 17 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2703966, + "thread": 16 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 2894086, + "thread": 13 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 3046243, + "thread": 14 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 3241192, + "thread": 14 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 3403388, + "thread": 15 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 3555977, + "thread": 25 + } + }, + { + "amount": "136.376374260", + "slot": { + "period": 3655040, + "thread": 21 + } + }, + { + "amount": "136.376374261", + "slot": { + "period": 3815623, + "thread": 21 + } + } + ], + "AU1Ua7z9uTWN5SdaY2jdgxerEz7nAb3Ax34HNZXssjVvgJZAcqUA": [ + { + "amount": "120.508303607", + "slot": { + "period": 138868, + "thread": 6 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 192575, + "thread": 4 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 368419, + "thread": 28 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 557952, + "thread": 21 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 666326, + "thread": 22 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 961718, + "thread": 2 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1102931, + "thread": 31 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1254836, + "thread": 8 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1442224, + "thread": 30 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1593667, + "thread": 14 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1662441, + "thread": 7 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 1849374, + "thread": 28 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2051040, + "thread": 7 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2217420, + "thread": 10 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2317538, + "thread": 15 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2528454, + "thread": 1 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2752937, + "thread": 3 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2805153, + "thread": 12 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 2973065, + "thread": 21 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 3268771, + "thread": 1 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 3299474, + "thread": 19 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 3458191, + "thread": 14 + } + }, + { + "amount": "120.508303607", + "slot": { + "period": 3734138, + "thread": 25 + } + }, + { + "amount": "120.508303614", + "slot": { + "period": 3801434, + "thread": 6 + } + } + ], + "AU1UaTXABcuxjPhCNfMb51k3SA9cjYNGKD7vwYH3qkNYJmV1iULZ": [ + { + "amount": "159.033565423", + "slot": { + "period": 17346, + "thread": 2 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 309367, + "thread": 7 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 435145, + "thread": 30 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 583833, + "thread": 15 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 724811, + "thread": 1 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 915483, + "thread": 27 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1088482, + "thread": 1 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1217572, + "thread": 4 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1385974, + "thread": 24 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1602813, + "thread": 25 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1653856, + "thread": 18 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 1954370, + "thread": 12 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2132642, + "thread": 1 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2234486, + "thread": 24 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2338925, + "thread": 31 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2614047, + "thread": 2 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2738012, + "thread": 28 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 2902223, + "thread": 23 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 3112634, + "thread": 7 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 3275676, + "thread": 23 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 3360984, + "thread": 13 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 3451623, + "thread": 8 + } + }, + { + "amount": "159.033565423", + "slot": { + "period": 3732633, + "thread": 5 + } + }, + { + "amount": "159.033565418", + "slot": { + "period": 3911230, + "thread": 27 + } + } + ], + "AU1UbjqKUZKjeGhfABWrEvvMjd2DDZqQHNTsE5aa94uontiSx5S6": [ + { + "amount": "565.924462272", + "slot": { + "period": 59408, + "thread": 6 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 227914, + "thread": 25 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 383822, + "thread": 21 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 602431, + "thread": 28 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 696880, + "thread": 19 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 886388, + "thread": 11 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1079226, + "thread": 23 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1177227, + "thread": 16 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1331847, + "thread": 3 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1624230, + "thread": 15 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1708870, + "thread": 21 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 1915960, + "thread": 19 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2087063, + "thread": 3 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2276447, + "thread": 9 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2380483, + "thread": 20 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2483111, + "thread": 21 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2705162, + "thread": 14 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 2888746, + "thread": 30 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 3038202, + "thread": 5 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 3130445, + "thread": 5 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 3320516, + "thread": 15 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 3559839, + "thread": 18 + } + }, + { + "amount": "565.924462272", + "slot": { + "period": 3663069, + "thread": 22 + } + }, + { + "amount": "565.924462273", + "slot": { + "period": 3867373, + "thread": 17 + } + } + ], + "AU1Uc3XYiUnw9TFs746ou2NnWBvs2u2FLxmTKm8CxBHSvSXxG8tb": [ + { + "amount": "327.804952141", + "slot": { + "period": 122516, + "thread": 23 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 258079, + "thread": 22 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 419070, + "thread": 21 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 600902, + "thread": 11 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 674190, + "thread": 7 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 879022, + "thread": 14 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1050653, + "thread": 22 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1267875, + "thread": 21 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1347136, + "thread": 13 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1513934, + "thread": 5 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1774849, + "thread": 21 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1902229, + "thread": 13 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 1981118, + "thread": 19 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 2227581, + "thread": 30 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 2377759, + "thread": 16 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 2520916, + "thread": 16 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 2638450, + "thread": 25 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 2813000, + "thread": 20 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 3017339, + "thread": 11 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 3163734, + "thread": 26 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 3407784, + "thread": 14 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 3481718, + "thread": 16 + } + }, + { + "amount": "327.804952141", + "slot": { + "period": 3734142, + "thread": 7 + } + }, + { + "amount": "327.804952147", + "slot": { + "period": 3863562, + "thread": 28 + } + } + ], + "AU1UcUY1xbZVt13RFYXV6QJt5k6PwsQyk9xPaZNSEFEpCCFuRDAS": [ + { + "amount": "260.323521105", + "slot": { + "period": 152868, + "thread": 18 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 195400, + "thread": 23 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 401384, + "thread": 13 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 636481, + "thread": 0 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 680397, + "thread": 12 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 887157, + "thread": 23 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1102895, + "thread": 2 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1172325, + "thread": 23 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1335020, + "thread": 15 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1631876, + "thread": 23 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1807093, + "thread": 18 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 1895667, + "thread": 26 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2077016, + "thread": 2 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2190677, + "thread": 8 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2364516, + "thread": 5 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2591205, + "thread": 2 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2768165, + "thread": 26 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 2917205, + "thread": 24 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 3029085, + "thread": 31 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 3219485, + "thread": 11 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 3441415, + "thread": 13 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 3587165, + "thread": 21 + } + }, + { + "amount": "260.323521105", + "slot": { + "period": 3679843, + "thread": 13 + } + }, + { + "amount": "260.323521114", + "slot": { + "period": 3820605, + "thread": 9 + } + } + ], + "AU1Ucajrg2e5K64uLri9FGQYVNUWj8FK9VMxZybgePhq5Vug9XsW": [ + { + "amount": "331.407866354", + "slot": { + "period": 58126, + "thread": 16 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 320989, + "thread": 30 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 378179, + "thread": 23 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 548571, + "thread": 20 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 667184, + "thread": 1 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 952138, + "thread": 21 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1126008, + "thread": 26 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1268354, + "thread": 31 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1440038, + "thread": 19 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1628119, + "thread": 13 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1677286, + "thread": 5 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 1815137, + "thread": 17 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2115372, + "thread": 28 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2212884, + "thread": 15 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2345551, + "thread": 5 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2517658, + "thread": 25 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2688705, + "thread": 17 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2837264, + "thread": 18 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 2998362, + "thread": 6 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 3265491, + "thread": 16 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 3439083, + "thread": 10 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 3465927, + "thread": 27 + } + }, + { + "amount": "331.407866354", + "slot": { + "period": 3756550, + "thread": 17 + } + }, + { + "amount": "331.407866350", + "slot": { + "period": 3838693, + "thread": 30 + } + } + ], + "AU1Ud4HMFaMUUpdfoxuRoyrRYGEoVkY1zzZXSVMK8AcoCmaWgtLs": [ + { + "amount": "182.057416022", + "slot": { + "period": 112564, + "thread": 1 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 317572, + "thread": 24 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 395967, + "thread": 21 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 641296, + "thread": 2 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 749073, + "thread": 24 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 920613, + "thread": 30 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1144633, + "thread": 18 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1282741, + "thread": 20 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1397185, + "thread": 31 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1512199, + "thread": 31 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1728113, + "thread": 12 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 1932007, + "thread": 5 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2113238, + "thread": 7 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2254607, + "thread": 18 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2421858, + "thread": 6 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2622438, + "thread": 18 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2757757, + "thread": 14 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 2867955, + "thread": 3 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 3019411, + "thread": 2 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 3241426, + "thread": 31 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 3397228, + "thread": 15 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 3564853, + "thread": 8 + } + }, + { + "amount": "182.057416022", + "slot": { + "period": 3626556, + "thread": 25 + } + }, + { + "amount": "182.057416012", + "slot": { + "period": 3856425, + "thread": 15 + } + } + ], + "AU1Ud65Hrm8UKhfqMn4F3ybS5KYaQhoZ7RryBFFaQoyWLyHXBs4S": [ + { + "amount": "213.050775692", + "slot": { + "period": 116050, + "thread": 8 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 173030, + "thread": 13 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 353277, + "thread": 18 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 640876, + "thread": 23 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 685692, + "thread": 23 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 887335, + "thread": 19 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1086088, + "thread": 3 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1253050, + "thread": 29 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1434765, + "thread": 25 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1608928, + "thread": 27 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1727611, + "thread": 23 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 1841476, + "thread": 17 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2127894, + "thread": 20 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2253431, + "thread": 3 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2431364, + "thread": 30 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2550330, + "thread": 25 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2760685, + "thread": 15 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 2903479, + "thread": 28 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 3085193, + "thread": 23 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 3177659, + "thread": 17 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 3344342, + "thread": 31 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 3584319, + "thread": 15 + } + }, + { + "amount": "213.050775692", + "slot": { + "period": 3765331, + "thread": 11 + } + }, + { + "amount": "213.050775694", + "slot": { + "period": 3854168, + "thread": 20 + } + } + ], + "AU1Ud9shJucuVRGkKDUbZ8jTjGeXsEANahRhaW8T3bB6YqjyQgwM": [ + { + "amount": "164.452679626", + "slot": { + "period": 92296, + "thread": 23 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 319227, + "thread": 8 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 371307, + "thread": 25 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 499469, + "thread": 30 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 684198, + "thread": 8 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 943337, + "thread": 5 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1074873, + "thread": 31 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1281502, + "thread": 7 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1328492, + "thread": 18 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1615134, + "thread": 1 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1673580, + "thread": 28 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 1846796, + "thread": 31 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2061392, + "thread": 18 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2214852, + "thread": 1 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2393709, + "thread": 18 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2488201, + "thread": 15 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2665807, + "thread": 27 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2949902, + "thread": 28 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 2994603, + "thread": 31 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 3191912, + "thread": 29 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 3371999, + "thread": 17 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 3456607, + "thread": 10 + } + }, + { + "amount": "164.452679626", + "slot": { + "period": 3661552, + "thread": 13 + } + }, + { + "amount": "164.452679630", + "slot": { + "period": 3944867, + "thread": 22 + } + } + ], + "AU1Udt3NpuJxAzs5L1qcSot4V9E5ZocuN3iodjvrdTgBBHBuiSEm": [ + { + "amount": "237.607915032", + "slot": { + "period": 49090, + "thread": 3 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 240581, + "thread": 25 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 474323, + "thread": 28 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 570903, + "thread": 23 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 668667, + "thread": 30 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 875430, + "thread": 14 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1065855, + "thread": 31 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1227703, + "thread": 2 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1404943, + "thread": 20 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1552154, + "thread": 13 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1657664, + "thread": 16 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 1917760, + "thread": 10 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2021501, + "thread": 5 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2156265, + "thread": 7 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2338576, + "thread": 0 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2569774, + "thread": 17 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2679163, + "thread": 25 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 2793583, + "thread": 4 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 3029520, + "thread": 16 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 3218197, + "thread": 28 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 3436000, + "thread": 19 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 3532685, + "thread": 10 + } + }, + { + "amount": "237.607915032", + "slot": { + "period": 3676238, + "thread": 24 + } + }, + { + "amount": "237.607915030", + "slot": { + "period": 3892200, + "thread": 13 + } + } + ], + "AU1UdxqT8qH65Jdrh4BFpbQDTFLHYx7vyaVME5pmKUKfWt7gs8Wp": [ + { + "amount": "122.362608892", + "slot": { + "period": 94424, + "thread": 6 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 267536, + "thread": 16 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 327626, + "thread": 13 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 568637, + "thread": 7 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 743957, + "thread": 9 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 834046, + "thread": 20 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1084023, + "thread": 23 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1219861, + "thread": 0 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1476822, + "thread": 3 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1559093, + "thread": 5 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1741868, + "thread": 30 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 1818192, + "thread": 19 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2010324, + "thread": 14 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2148975, + "thread": 1 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2455884, + "thread": 9 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2528744, + "thread": 16 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2631436, + "thread": 30 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 2792949, + "thread": 23 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 3014963, + "thread": 17 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 3178467, + "thread": 8 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 3341928, + "thread": 11 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 3547164, + "thread": 11 + } + }, + { + "amount": "122.362608892", + "slot": { + "period": 3664119, + "thread": 17 + } + }, + { + "amount": "122.362608891", + "slot": { + "period": 3862118, + "thread": 16 + } + } + ], + "AU1Uegp9Y9oDWDU5Y1huauxeX6sGGrwAdDsaUs7rZz4LoB31e4Mm": [ + { + "amount": "550.235712230", + "slot": { + "period": 52166, + "thread": 11 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 214907, + "thread": 29 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 367683, + "thread": 5 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 544526, + "thread": 14 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 787446, + "thread": 4 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 852896, + "thread": 6 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1078599, + "thread": 23 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1170600, + "thread": 14 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1422061, + "thread": 28 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1533036, + "thread": 23 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1655548, + "thread": 9 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 1874617, + "thread": 27 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2143223, + "thread": 29 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2292874, + "thread": 27 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2382421, + "thread": 27 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2614780, + "thread": 25 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2784029, + "thread": 23 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 2849361, + "thread": 31 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 3112720, + "thread": 28 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 3219870, + "thread": 11 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 3378402, + "thread": 15 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 3607661, + "thread": 25 + } + }, + { + "amount": "550.235712230", + "slot": { + "period": 3659085, + "thread": 12 + } + }, + { + "amount": "550.235712233", + "slot": { + "period": 3944300, + "thread": 15 + } + } + ], + "AU1UfoW5Vng6sPjvkUUfESZCedueFLv7WF1tRywpadfUbB64WCs5": [ + { + "amount": "212.013275906", + "slot": { + "period": 86563, + "thread": 7 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 275021, + "thread": 16 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 392477, + "thread": 15 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 630421, + "thread": 30 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 793630, + "thread": 3 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 849807, + "thread": 0 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1131796, + "thread": 21 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1188347, + "thread": 7 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1357139, + "thread": 29 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1632896, + "thread": 28 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1691229, + "thread": 20 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 1904688, + "thread": 0 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2085507, + "thread": 10 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2204127, + "thread": 17 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2461955, + "thread": 20 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2571244, + "thread": 7 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2785411, + "thread": 15 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2903071, + "thread": 27 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 2971603, + "thread": 30 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 3286943, + "thread": 27 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 3408594, + "thread": 19 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 3452598, + "thread": 28 + } + }, + { + "amount": "212.013275906", + "slot": { + "period": 3749576, + "thread": 17 + } + }, + { + "amount": "212.013275905", + "slot": { + "period": 3800755, + "thread": 14 + } + } + ], + "AU1UgG17oqpFysritr47JAhrjcmyKw7bG7z1tVdf2HpEn1rdYTgv": [ + { + "amount": "130.655475002", + "slot": { + "period": 159065, + "thread": 11 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 239691, + "thread": 14 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 379296, + "thread": 6 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 553849, + "thread": 19 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 659378, + "thread": 26 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 865475, + "thread": 0 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1108597, + "thread": 26 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1174618, + "thread": 31 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1376107, + "thread": 15 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1555476, + "thread": 31 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1698896, + "thread": 30 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 1923933, + "thread": 29 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2026179, + "thread": 31 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2143963, + "thread": 30 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2455319, + "thread": 8 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2498614, + "thread": 20 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2631797, + "thread": 16 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 2917728, + "thread": 0 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 3013152, + "thread": 28 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 3268840, + "thread": 2 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 3339872, + "thread": 19 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 3603399, + "thread": 18 + } + }, + { + "amount": "130.655475002", + "slot": { + "period": 3661062, + "thread": 18 + } + }, + { + "amount": "130.655475006", + "slot": { + "period": 3928046, + "thread": 14 + } + } + ], + "AU1UgPg8qR7e7fBcVyPrq7AsLcQfPttYdt4GHXxE2VKYaYnsRrS4": [ + { + "amount": "231.718770999", + "slot": { + "period": 127748, + "thread": 14 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 251489, + "thread": 26 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 412261, + "thread": 11 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 568504, + "thread": 18 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 819445, + "thread": 5 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 941047, + "thread": 4 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1110453, + "thread": 26 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1278853, + "thread": 5 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1445295, + "thread": 24 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1646895, + "thread": 17 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1707584, + "thread": 5 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1819609, + "thread": 15 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 1982868, + "thread": 7 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 2149363, + "thread": 31 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 2435447, + "thread": 13 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 2488009, + "thread": 5 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 2658421, + "thread": 4 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 2942985, + "thread": 20 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 3019193, + "thread": 13 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 3175894, + "thread": 6 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 3289889, + "thread": 27 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 3579049, + "thread": 15 + } + }, + { + "amount": "231.718770999", + "slot": { + "period": 3752149, + "thread": 6 + } + }, + { + "amount": "231.718771002", + "slot": { + "period": 3855931, + "thread": 18 + } + } + ], + "AU1UhYKoouaFsmxi5Sjj57WKhqnPvFjEVPc9cnNkFn6Yo6N7gyFW": [ + { + "amount": "99.333498633", + "slot": { + "period": 166233, + "thread": 30 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 213555, + "thread": 18 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 448515, + "thread": 2 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 610730, + "thread": 17 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 805478, + "thread": 18 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 896782, + "thread": 19 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1130316, + "thread": 13 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1245813, + "thread": 29 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1479416, + "thread": 7 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1608955, + "thread": 4 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1792192, + "thread": 9 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 1949898, + "thread": 19 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2063418, + "thread": 17 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2272816, + "thread": 3 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2456322, + "thread": 13 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2582459, + "thread": 22 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2726294, + "thread": 27 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 2889241, + "thread": 10 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 3079564, + "thread": 23 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 3133656, + "thread": 31 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 3444279, + "thread": 8 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 3497613, + "thread": 6 + } + }, + { + "amount": "99.333498633", + "slot": { + "period": 3753209, + "thread": 0 + } + }, + { + "amount": "99.333498637", + "slot": { + "period": 3879817, + "thread": 3 + } + } + ], + "AU1Ui4daipx921JYcNQXYQxPA2RwCr5GVTKV7NmYLsu5dRzoart6": [ + { + "amount": "173.258486337", + "slot": { + "period": 49443, + "thread": 4 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 206018, + "thread": 29 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 434503, + "thread": 30 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 531902, + "thread": 25 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 792839, + "thread": 14 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 899482, + "thread": 27 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1001527, + "thread": 17 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1233795, + "thread": 5 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1449613, + "thread": 19 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1505772, + "thread": 2 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1677724, + "thread": 31 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 1819531, + "thread": 26 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2051086, + "thread": 22 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2161737, + "thread": 14 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2382327, + "thread": 26 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2567159, + "thread": 10 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2692448, + "thread": 26 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 2800086, + "thread": 22 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 3084904, + "thread": 11 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 3155536, + "thread": 21 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 3406991, + "thread": 14 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 3468485, + "thread": 23 + } + }, + { + "amount": "173.258486337", + "slot": { + "period": 3671693, + "thread": 22 + } + }, + { + "amount": "173.258486339", + "slot": { + "period": 3811960, + "thread": 22 + } + } + ], + "AU1Uirhy3mhoc37DkffMBRuQwqFFcxJeLASohyp8wJ6kiWAe4ipa": [ + { + "amount": "83.345946028", + "slot": { + "period": 26869, + "thread": 1 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 173588, + "thread": 15 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 453314, + "thread": 12 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 635513, + "thread": 10 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 736375, + "thread": 7 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 842176, + "thread": 28 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1016594, + "thread": 22 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1241862, + "thread": 19 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1395474, + "thread": 12 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1618449, + "thread": 24 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1800512, + "thread": 15 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 1832018, + "thread": 6 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2064573, + "thread": 4 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2242257, + "thread": 22 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2363947, + "thread": 27 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2554975, + "thread": 16 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2679596, + "thread": 11 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 2885799, + "thread": 28 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 3017238, + "thread": 5 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 3127905, + "thread": 4 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 3301749, + "thread": 18 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 3471621, + "thread": 29 + } + }, + { + "amount": "83.345946028", + "slot": { + "period": 3684234, + "thread": 3 + } + }, + { + "amount": "83.345946036", + "slot": { + "period": 3898097, + "thread": 10 + } + } + ], + "AU1UizWmimQUkVeozN9R5sYej7qHA3hHhGKceB6ZvtR2qAeuudTT": [ + { + "amount": "687.314188490", + "slot": { + "period": 23292, + "thread": 1 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 223245, + "thread": 25 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 453572, + "thread": 5 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 635716, + "thread": 24 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 719485, + "thread": 26 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 902431, + "thread": 10 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 997017, + "thread": 12 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1155739, + "thread": 0 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1464976, + "thread": 12 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1634079, + "thread": 21 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1729246, + "thread": 18 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1951281, + "thread": 23 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 1990814, + "thread": 15 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 2260256, + "thread": 31 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 2383522, + "thread": 20 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 2513737, + "thread": 15 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 2632581, + "thread": 13 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 2815423, + "thread": 6 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 3060832, + "thread": 13 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 3170860, + "thread": 16 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 3395859, + "thread": 9 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 3496394, + "thread": 10 + } + }, + { + "amount": "687.314188490", + "slot": { + "period": 3680308, + "thread": 23 + } + }, + { + "amount": "687.314188480", + "slot": { + "period": 3861324, + "thread": 25 + } + } + ], + "AU1UjRuNt56AqNE13ycxqTNq54iqsECFtDWDpaXty5VLTpfeBEDC": [ + { + "amount": "138.524331057", + "slot": { + "period": 85915, + "thread": 13 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 185492, + "thread": 15 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 405212, + "thread": 27 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 522241, + "thread": 23 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 707929, + "thread": 30 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 909861, + "thread": 6 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1019252, + "thread": 28 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1310335, + "thread": 22 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1323871, + "thread": 29 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1484416, + "thread": 8 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1710027, + "thread": 1 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 1867270, + "thread": 24 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2054947, + "thread": 28 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2169141, + "thread": 31 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2388427, + "thread": 8 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2545735, + "thread": 31 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2791201, + "thread": 12 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 2895915, + "thread": 14 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 3057373, + "thread": 27 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 3181523, + "thread": 24 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 3298977, + "thread": 27 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 3570319, + "thread": 23 + } + }, + { + "amount": "138.524331057", + "slot": { + "period": 3635585, + "thread": 21 + } + }, + { + "amount": "138.524331060", + "slot": { + "period": 3945025, + "thread": 14 + } + } + ], + "AU1UjnU8DxNes2hcS14mTGVVmN4rjtjefM8BPQ4wsiSv4QPtnCvp": [ + { + "amount": "181.650707633", + "slot": { + "period": 60824, + "thread": 12 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 292890, + "thread": 29 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 438281, + "thread": 25 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 554278, + "thread": 2 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 682000, + "thread": 11 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 960877, + "thread": 12 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 985165, + "thread": 14 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 1288798, + "thread": 10 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 1344492, + "thread": 11 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 1575885, + "thread": 19 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 1791822, + "thread": 28 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 1914783, + "thread": 1 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2095339, + "thread": 10 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2212765, + "thread": 8 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2311988, + "thread": 24 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2509960, + "thread": 17 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2735700, + "thread": 6 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 2796394, + "thread": 5 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 3028894, + "thread": 24 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 3198988, + "thread": 27 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 3403831, + "thread": 16 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 3480177, + "thread": 13 + } + }, + { + "amount": "181.650707633", + "slot": { + "period": 3721032, + "thread": 6 + } + }, + { + "amount": "181.650707644", + "slot": { + "period": 3805076, + "thread": 23 + } + } + ], + "AU1UjrJHuW6nh4sLatKbGK2vYpo9vjxozAhqLLqrk4G5EmWyDpDy": [ + { + "amount": "566.100962295", + "slot": { + "period": 64707, + "thread": 24 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 205310, + "thread": 9 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 461364, + "thread": 24 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 515027, + "thread": 15 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 715964, + "thread": 2 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 886252, + "thread": 7 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1127128, + "thread": 9 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1230209, + "thread": 23 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1437295, + "thread": 24 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1616313, + "thread": 16 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1692287, + "thread": 24 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 1832473, + "thread": 7 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2055194, + "thread": 24 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2220481, + "thread": 31 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2433724, + "thread": 1 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2543090, + "thread": 16 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2699236, + "thread": 29 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 2914286, + "thread": 19 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3016656, + "thread": 26 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3204225, + "thread": 7 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3386450, + "thread": 1 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3579218, + "thread": 20 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3643080, + "thread": 20 + } + }, + { + "amount": "566.100962295", + "slot": { + "period": 3913156, + "thread": 13 + } + } + ], + "AU1UkM7CH4a1SnBYw6U8xt4zSrB8XB4tyrCGThmqBDqncFXsRSrZ": [ + { + "amount": "583.605981129", + "slot": { + "period": 156886, + "thread": 12 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 295476, + "thread": 6 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 340909, + "thread": 16 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 507738, + "thread": 10 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 660249, + "thread": 11 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 885201, + "thread": 1 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1020767, + "thread": 22 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1273059, + "thread": 0 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1402644, + "thread": 17 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1577568, + "thread": 0 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1711091, + "thread": 10 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 1900155, + "thread": 3 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2124340, + "thread": 29 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2158519, + "thread": 26 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2332259, + "thread": 19 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2470907, + "thread": 5 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2626528, + "thread": 5 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 2812601, + "thread": 26 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 3064261, + "thread": 30 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 3270236, + "thread": 29 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 3297371, + "thread": 29 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 3569426, + "thread": 17 + } + }, + { + "amount": "583.605981129", + "slot": { + "period": 3704336, + "thread": 21 + } + }, + { + "amount": "583.605981140", + "slot": { + "period": 3844639, + "thread": 0 + } + } + ], + "AU1UkVZ3TaEw1K85Ah6RwLkCMaWmBgh77W1TusTjzBmb6mWd1md6": [ + { + "amount": "281.042433028", + "slot": { + "period": 99744, + "thread": 4 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 209379, + "thread": 28 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 435891, + "thread": 29 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 545314, + "thread": 23 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 762004, + "thread": 17 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 916890, + "thread": 16 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1080483, + "thread": 25 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1288408, + "thread": 6 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1354153, + "thread": 10 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1523209, + "thread": 22 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1766412, + "thread": 7 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 1972239, + "thread": 7 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2091471, + "thread": 18 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2283479, + "thread": 4 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2343160, + "thread": 31 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2485774, + "thread": 15 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2729429, + "thread": 22 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 2918963, + "thread": 10 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 3062116, + "thread": 20 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 3227249, + "thread": 1 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 3311210, + "thread": 24 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 3603819, + "thread": 28 + } + }, + { + "amount": "281.042433028", + "slot": { + "period": 3749798, + "thread": 15 + } + }, + { + "amount": "281.042433030", + "slot": { + "period": 3812910, + "thread": 16 + } + } + ], + "AU1UmBa1PhWNNJrV9PgNcmswY6P8VsDFTQ4qaPMhi2jrGQfsKZYy": [ + { + "amount": "91.921481392", + "slot": { + "period": 92634, + "thread": 6 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 196010, + "thread": 2 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 336678, + "thread": 17 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 543694, + "thread": 27 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 764389, + "thread": 30 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 972125, + "thread": 26 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1081283, + "thread": 6 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1181050, + "thread": 30 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1385600, + "thread": 11 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1496986, + "thread": 0 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1714041, + "thread": 18 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 1813152, + "thread": 1 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2087747, + "thread": 14 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2159633, + "thread": 4 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2408478, + "thread": 4 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2504919, + "thread": 12 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2721452, + "thread": 12 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 2822958, + "thread": 18 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 3054662, + "thread": 1 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 3122723, + "thread": 9 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 3445971, + "thread": 10 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 3517523, + "thread": 23 + } + }, + { + "amount": "91.921481392", + "slot": { + "period": 3705770, + "thread": 2 + } + }, + { + "amount": "91.921481382", + "slot": { + "period": 3848504, + "thread": 31 + } + } + ], + "AU1UmSUVM1owFacR4uiVUPQSQk8NbUTLCJ33wXXc8QfXG1mSZ5eQ": [ + { + "amount": "147.838447936", + "slot": { + "period": 165325, + "thread": 31 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 196231, + "thread": 23 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 338909, + "thread": 5 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 605935, + "thread": 22 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 660936, + "thread": 5 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 933017, + "thread": 17 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1099547, + "thread": 27 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1282498, + "thread": 27 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1455151, + "thread": 27 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1538043, + "thread": 24 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1763433, + "thread": 31 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1900263, + "thread": 31 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 1980040, + "thread": 26 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 2267463, + "thread": 10 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 2312711, + "thread": 10 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 2607266, + "thread": 31 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 2676357, + "thread": 12 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 2800522, + "thread": 18 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 3017495, + "thread": 14 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 3241315, + "thread": 29 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 3361561, + "thread": 16 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 3480827, + "thread": 26 + } + }, + { + "amount": "147.838447936", + "slot": { + "period": 3685929, + "thread": 5 + } + }, + { + "amount": "147.838447944", + "slot": { + "period": 3930537, + "thread": 0 + } + } + ], + "AU1UnvmZSBegDpa6GScoGhMZV9mRjx1CnZZnbMjajJ58qnzbqKNY": [ + { + "amount": "150.394930050", + "slot": { + "period": 63847, + "thread": 20 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 202978, + "thread": 4 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 326821, + "thread": 11 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 631141, + "thread": 29 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 816192, + "thread": 13 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 828408, + "thread": 17 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1058318, + "thread": 8 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1284026, + "thread": 3 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1354415, + "thread": 10 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1598333, + "thread": 6 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1770840, + "thread": 9 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 1831379, + "thread": 9 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2079933, + "thread": 29 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2191916, + "thread": 29 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2402123, + "thread": 13 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2521919, + "thread": 3 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2737663, + "thread": 29 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2867954, + "thread": 7 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 2979677, + "thread": 12 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 3251204, + "thread": 26 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 3304599, + "thread": 13 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 3617374, + "thread": 23 + } + }, + { + "amount": "150.394930050", + "slot": { + "period": 3678044, + "thread": 30 + } + }, + { + "amount": "150.394930053", + "slot": { + "period": 3804722, + "thread": 9 + } + } + ], + "AU1Uot1C64QvLA4teH6bnZ2b1azrWT4ffyW1t2oyAxo8pg9VY6ag": [ + { + "amount": "168.160612379", + "slot": { + "period": 159677, + "thread": 30 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 286231, + "thread": 24 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 354183, + "thread": 7 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 564881, + "thread": 27 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 656548, + "thread": 25 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 829606, + "thread": 29 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1134716, + "thread": 8 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1242557, + "thread": 13 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1377612, + "thread": 24 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1609899, + "thread": 22 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1656266, + "thread": 11 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 1816148, + "thread": 17 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2143608, + "thread": 6 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2243648, + "thread": 28 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2455356, + "thread": 2 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2584794, + "thread": 14 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2645783, + "thread": 3 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2908407, + "thread": 20 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 2997929, + "thread": 16 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 3239700, + "thread": 30 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 3436533, + "thread": 1 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 3500999, + "thread": 10 + } + }, + { + "amount": "168.160612379", + "slot": { + "period": 3773561, + "thread": 0 + } + }, + { + "amount": "168.160612382", + "slot": { + "period": 3803750, + "thread": 11 + } + } + ], + "AU1Up4yAmmhBSFc2zUMU1rGfQMP5LFyZdbsQGGqi58Hqth16sJQP": [ + { + "amount": "63.184949043", + "slot": { + "period": 152088, + "thread": 3 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 262095, + "thread": 19 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 484538, + "thread": 29 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 596659, + "thread": 31 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 769735, + "thread": 27 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 841027, + "thread": 26 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1018794, + "thread": 15 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1162199, + "thread": 9 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1475953, + "thread": 4 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1519788, + "thread": 24 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1750913, + "thread": 15 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 1828711, + "thread": 8 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2124017, + "thread": 21 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2170613, + "thread": 15 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2337159, + "thread": 22 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2511113, + "thread": 7 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2754128, + "thread": 8 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 2911683, + "thread": 6 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 3035847, + "thread": 0 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 3174449, + "thread": 14 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 3400798, + "thread": 25 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 3553561, + "thread": 10 + } + }, + { + "amount": "63.184949043", + "slot": { + "period": 3661721, + "thread": 26 + } + }, + { + "amount": "63.184949050", + "slot": { + "period": 3935874, + "thread": 12 + } + } + ], + "AU1UphqXWeUcZgumzhpVQ8arFUWYpzE224T6XYxU3pNBsvz2C49h": [ + { + "amount": "542.239394286", + "slot": { + "period": 55239, + "thread": 24 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 204168, + "thread": 28 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 416770, + "thread": 22 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 652553, + "thread": 8 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 711819, + "thread": 24 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 839682, + "thread": 2 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1049339, + "thread": 14 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1186921, + "thread": 30 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1362379, + "thread": 9 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1554574, + "thread": 5 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1710784, + "thread": 9 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 1853097, + "thread": 12 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2006585, + "thread": 6 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2205606, + "thread": 16 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2297854, + "thread": 1 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2492083, + "thread": 18 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2731976, + "thread": 14 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 2914835, + "thread": 29 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 3082769, + "thread": 10 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 3143950, + "thread": 7 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 3400562, + "thread": 6 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 3507991, + "thread": 10 + } + }, + { + "amount": "542.239394286", + "slot": { + "period": 3636946, + "thread": 15 + } + }, + { + "amount": "542.239394296", + "slot": { + "period": 3788992, + "thread": 17 + } + } + ], + "AU1UqGUTRGhooRYNhoqNzfaWKMaZmJFR51UytvSK3zqz7aWeJJTc": [ + { + "amount": "112.891963965", + "slot": { + "period": 11114, + "thread": 6 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 185681, + "thread": 20 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 325509, + "thread": 20 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 566873, + "thread": 13 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 787641, + "thread": 22 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 896820, + "thread": 12 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1063465, + "thread": 20 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1296619, + "thread": 15 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1404202, + "thread": 10 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1609540, + "thread": 21 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1701487, + "thread": 22 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 1970498, + "thread": 31 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2128982, + "thread": 5 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2182469, + "thread": 22 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2366169, + "thread": 23 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2572820, + "thread": 1 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2761036, + "thread": 23 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 2952627, + "thread": 22 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 3060069, + "thread": 30 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 3129505, + "thread": 2 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 3448073, + "thread": 26 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 3577395, + "thread": 31 + } + }, + { + "amount": "112.891963965", + "slot": { + "period": 3631491, + "thread": 19 + } + }, + { + "amount": "112.891963962", + "slot": { + "period": 3824061, + "thread": 8 + } + } + ], + "AU1UqR8w94LKwHVkj8dT6498oVTt6khz1Et2FMvpEE9obDbyCXtu": [ + { + "amount": "53.432077741", + "slot": { + "period": 81290, + "thread": 24 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 184036, + "thread": 8 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 458551, + "thread": 30 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 637749, + "thread": 21 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 767632, + "thread": 16 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 868855, + "thread": 19 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1140106, + "thread": 10 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1165831, + "thread": 1 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1330384, + "thread": 9 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1597342, + "thread": 4 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1791719, + "thread": 17 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1946043, + "thread": 19 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 1993801, + "thread": 25 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 2157473, + "thread": 26 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 2375987, + "thread": 0 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 2505401, + "thread": 27 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 2661847, + "thread": 5 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 2937822, + "thread": 26 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 3015808, + "thread": 4 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 3140391, + "thread": 14 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 3358242, + "thread": 19 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 3513799, + "thread": 14 + } + }, + { + "amount": "53.432077741", + "slot": { + "period": 3743613, + "thread": 9 + } + }, + { + "amount": "53.432077730", + "slot": { + "period": 3944574, + "thread": 14 + } + } + ], + "AU1UqihfbpVVkcM5gao5jUSuTmHYo7oh42GBYCVxJ5AaXfhAaczA": [ + { + "amount": "241.891916153", + "slot": { + "period": 87627, + "thread": 22 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 183932, + "thread": 15 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 328451, + "thread": 3 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 529091, + "thread": 26 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 818708, + "thread": 25 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 912159, + "thread": 14 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1144180, + "thread": 20 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1256130, + "thread": 17 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1406214, + "thread": 28 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1551115, + "thread": 15 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1747007, + "thread": 3 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 1899132, + "thread": 29 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2042457, + "thread": 12 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2206971, + "thread": 5 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2416961, + "thread": 28 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2523629, + "thread": 3 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2723415, + "thread": 17 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2912209, + "thread": 11 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 2982667, + "thread": 26 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 3242333, + "thread": 19 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 3373557, + "thread": 8 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 3598263, + "thread": 17 + } + }, + { + "amount": "241.891916153", + "slot": { + "period": 3756696, + "thread": 13 + } + }, + { + "amount": "241.891916147", + "slot": { + "period": 3843264, + "thread": 28 + } + } + ], + "AU1UrpD4PcXrNGd1G3KrN6mvB9hDgKixRFeuprKxx6uEL1My4Y5q": [ + { + "amount": "90.912188954", + "slot": { + "period": 77378, + "thread": 12 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 250954, + "thread": 5 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 453455, + "thread": 19 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 638188, + "thread": 24 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 815937, + "thread": 29 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 937964, + "thread": 11 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1097133, + "thread": 0 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1237931, + "thread": 9 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1447380, + "thread": 17 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1536085, + "thread": 15 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1660652, + "thread": 25 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 1925638, + "thread": 29 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2139455, + "thread": 29 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2200272, + "thread": 23 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2411978, + "thread": 6 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2568139, + "thread": 6 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2722366, + "thread": 17 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 2866420, + "thread": 21 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 3027409, + "thread": 4 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 3183367, + "thread": 11 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 3314142, + "thread": 5 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 3511988, + "thread": 10 + } + }, + { + "amount": "90.912188954", + "slot": { + "period": 3642660, + "thread": 9 + } + }, + { + "amount": "90.912188949", + "slot": { + "period": 3830996, + "thread": 28 + } + } + ], + "AU1UrtWecPsKJqybpCdGgxrc5ehbtk7bnfCZxHif3JNRLGbDEFmP": [ + { + "amount": "661.682187078", + "slot": { + "period": 35159, + "thread": 0 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 208086, + "thread": 8 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 478264, + "thread": 7 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 621382, + "thread": 9 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 675824, + "thread": 13 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 876153, + "thread": 27 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1019445, + "thread": 20 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1188121, + "thread": 16 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1420663, + "thread": 11 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1486683, + "thread": 15 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1724237, + "thread": 27 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1917188, + "thread": 29 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 1978303, + "thread": 1 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 2176636, + "thread": 25 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 2413857, + "thread": 0 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 2583027, + "thread": 3 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 2713901, + "thread": 9 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 2872939, + "thread": 3 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 3058254, + "thread": 9 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 3166760, + "thread": 3 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 3313405, + "thread": 12 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 3616952, + "thread": 29 + } + }, + { + "amount": "661.682187078", + "slot": { + "period": 3695493, + "thread": 23 + } + }, + { + "amount": "661.682187068", + "slot": { + "period": 3861700, + "thread": 12 + } + } + ], + "AU1Us1rCsLTfPed33Th5g6c16XMH8aZMTWTsVk41fh3mUcap2tnj": [ + { + "amount": "115.130200445", + "slot": { + "period": 97167, + "thread": 14 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 188475, + "thread": 1 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 438359, + "thread": 31 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 540239, + "thread": 0 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 775966, + "thread": 18 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 920448, + "thread": 27 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1017542, + "thread": 29 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1208219, + "thread": 10 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1325142, + "thread": 18 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1532621, + "thread": 8 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1687058, + "thread": 28 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 1823242, + "thread": 7 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2109505, + "thread": 13 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2278598, + "thread": 24 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2308617, + "thread": 14 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2549311, + "thread": 3 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2641946, + "thread": 1 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2893605, + "thread": 0 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 2994423, + "thread": 10 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 3134289, + "thread": 21 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 3326309, + "thread": 14 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 3616186, + "thread": 9 + } + }, + { + "amount": "115.130200445", + "slot": { + "period": 3734543, + "thread": 21 + } + }, + { + "amount": "115.130200452", + "slot": { + "period": 3940849, + "thread": 22 + } + } + ], + "AU1Us3J5uVLWkCCsN8v7SK1dFCER29ZYfDAQFMVe6RupKAfu5BR3": [ + { + "amount": "90.921131643", + "slot": { + "period": 144660, + "thread": 17 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 296122, + "thread": 0 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 326682, + "thread": 30 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 541328, + "thread": 1 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 812568, + "thread": 8 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 883039, + "thread": 3 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1089664, + "thread": 29 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1311491, + "thread": 31 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1397830, + "thread": 1 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1619661, + "thread": 27 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1699309, + "thread": 17 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 1939136, + "thread": 0 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2051705, + "thread": 11 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2216721, + "thread": 6 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2430557, + "thread": 5 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2582231, + "thread": 14 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2686056, + "thread": 4 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 2927147, + "thread": 13 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 3049022, + "thread": 18 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 3286461, + "thread": 29 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 3321000, + "thread": 20 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 3482546, + "thread": 11 + } + }, + { + "amount": "90.921131643", + "slot": { + "period": 3660180, + "thread": 5 + } + }, + { + "amount": "90.921131644", + "slot": { + "period": 3914664, + "thread": 3 + } + } + ], + "AU1UsEbCVsrYQCGdkHqq1XXTLxvfAbhMPMy3SVxuXSCerYtuk48m": [ + { + "amount": "167.729736863", + "slot": { + "period": 22352, + "thread": 15 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 185543, + "thread": 8 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 333845, + "thread": 29 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 599552, + "thread": 5 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 776179, + "thread": 21 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 828914, + "thread": 3 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1146040, + "thread": 4 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1216403, + "thread": 19 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1462324, + "thread": 29 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1638338, + "thread": 16 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1752876, + "thread": 4 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1947956, + "thread": 19 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 1987356, + "thread": 14 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 2241407, + "thread": 19 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 2438533, + "thread": 15 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 2557371, + "thread": 1 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 2681012, + "thread": 28 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 2932326, + "thread": 15 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 3104067, + "thread": 3 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 3153750, + "thread": 9 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 3353391, + "thread": 16 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 3564663, + "thread": 26 + } + }, + { + "amount": "167.729736863", + "slot": { + "period": 3651163, + "thread": 7 + } + }, + { + "amount": "167.729736864", + "slot": { + "period": 3807224, + "thread": 13 + } + } + ], + "AU1UtXmJwfgtpFhUris6TTu1szC2bfQKdxYvrP45s6ud4zY53fEZ": [ + { + "amount": "137.124175298", + "slot": { + "period": 34931, + "thread": 11 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 260180, + "thread": 15 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 378136, + "thread": 21 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 609152, + "thread": 6 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 738222, + "thread": 31 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 973142, + "thread": 11 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1054485, + "thread": 13 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1270757, + "thread": 31 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1459267, + "thread": 26 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1530598, + "thread": 12 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1755997, + "thread": 14 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1955230, + "thread": 27 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 1988728, + "thread": 19 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 2215611, + "thread": 16 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 2303650, + "thread": 3 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 2517268, + "thread": 12 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 2653963, + "thread": 23 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 2861886, + "thread": 9 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 3083652, + "thread": 13 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 3263591, + "thread": 8 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 3355787, + "thread": 2 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 3451951, + "thread": 26 + } + }, + { + "amount": "137.124175298", + "slot": { + "period": 3669194, + "thread": 21 + } + }, + { + "amount": "137.124175305", + "slot": { + "period": 3909549, + "thread": 5 + } + } + ], + "AU1UuH8EooeZj9qU6MfbL3zFr6YS6paAQv68aFMmpHyn6h299oLy": [ + { + "amount": "80.547129135", + "slot": { + "period": 71138, + "thread": 0 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 171095, + "thread": 21 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 454179, + "thread": 1 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 618886, + "thread": 30 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 713301, + "thread": 27 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 973901, + "thread": 24 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1119478, + "thread": 26 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1154341, + "thread": 28 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1392588, + "thread": 28 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1507511, + "thread": 7 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1698413, + "thread": 16 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 1838746, + "thread": 16 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2107272, + "thread": 4 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2236215, + "thread": 4 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2402759, + "thread": 11 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2570614, + "thread": 11 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2750413, + "thread": 6 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 2828471, + "thread": 30 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 3094186, + "thread": 31 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 3176235, + "thread": 15 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 3410242, + "thread": 22 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 3454104, + "thread": 2 + } + }, + { + "amount": "80.547129135", + "slot": { + "period": 3740157, + "thread": 12 + } + }, + { + "amount": "80.547129144", + "slot": { + "period": 3889127, + "thread": 6 + } + } + ], + "AU1UudatCudCEX8FYi7uVj95w9cKtqXdyVAwxnwYgGiSFHqAYRmX": [ + { + "amount": "264.516468769", + "slot": { + "period": 127037, + "thread": 4 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 209482, + "thread": 10 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 364026, + "thread": 22 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 550562, + "thread": 14 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 807096, + "thread": 15 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 918997, + "thread": 18 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1042615, + "thread": 4 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1238697, + "thread": 18 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1375047, + "thread": 9 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1624328, + "thread": 28 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1764762, + "thread": 1 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 1941463, + "thread": 12 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2132779, + "thread": 29 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2262407, + "thread": 26 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2337770, + "thread": 17 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2530395, + "thread": 24 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2627146, + "thread": 21 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 2902530, + "thread": 18 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 3113803, + "thread": 12 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 3230292, + "thread": 30 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 3352010, + "thread": 4 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 3508503, + "thread": 21 + } + }, + { + "amount": "264.516468769", + "slot": { + "period": 3752544, + "thread": 30 + } + }, + { + "amount": "264.516468765", + "slot": { + "period": 3928350, + "thread": 25 + } + } + ], + "AU1Uurx14BjiXAnnqp38NnYqtitDT7WHVyV1Co5uJiahrzDRgYoM": [ + { + "amount": "178.421705514", + "slot": { + "period": 58418, + "thread": 17 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 197734, + "thread": 26 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 422757, + "thread": 1 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 603004, + "thread": 31 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 800608, + "thread": 16 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 921491, + "thread": 31 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1023793, + "thread": 1 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1162132, + "thread": 26 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1436101, + "thread": 3 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1645701, + "thread": 1 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1771020, + "thread": 26 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1820514, + "thread": 29 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 1982506, + "thread": 25 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 2250167, + "thread": 24 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 2343479, + "thread": 0 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 2540763, + "thread": 5 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 2677072, + "thread": 3 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 2881527, + "thread": 15 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 3039028, + "thread": 1 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 3251057, + "thread": 30 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 3414790, + "thread": 19 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 3524970, + "thread": 22 + } + }, + { + "amount": "178.421705514", + "slot": { + "period": 3746540, + "thread": 23 + } + }, + { + "amount": "178.421705526", + "slot": { + "period": 3839618, + "thread": 8 + } + } + ], + "AU1UuzVZqnJi4BT6vR2c13HjvJBXMnDWnqSH69D1Lxdk2d1N75H4": [ + { + "amount": "144.124199574", + "slot": { + "period": 128882, + "thread": 11 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 275875, + "thread": 29 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 446749, + "thread": 0 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 567682, + "thread": 0 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 787768, + "thread": 7 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 876906, + "thread": 1 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1114947, + "thread": 23 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1314390, + "thread": 9 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1376312, + "thread": 7 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1640660, + "thread": 29 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1691819, + "thread": 3 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 1867663, + "thread": 4 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2136579, + "thread": 13 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2222534, + "thread": 23 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2435098, + "thread": 21 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2536586, + "thread": 1 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2713363, + "thread": 15 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 2832761, + "thread": 6 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 3034045, + "thread": 10 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 3269300, + "thread": 25 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 3420320, + "thread": 3 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 3540861, + "thread": 1 + } + }, + { + "amount": "144.124199574", + "slot": { + "period": 3714189, + "thread": 1 + } + }, + { + "amount": "144.124199576", + "slot": { + "period": 3784709, + "thread": 5 + } + } + ], + "AU1UvXEVfeNQ9SB2kvu3d5TSZXt73JJYtAMq25tXhH5c14HAymN6": [ + { + "amount": "578.914387312", + "slot": { + "period": 57905, + "thread": 11 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 252602, + "thread": 17 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 405944, + "thread": 30 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 503381, + "thread": 21 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 806874, + "thread": 18 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 921945, + "thread": 7 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1149400, + "thread": 13 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1278739, + "thread": 20 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1358891, + "thread": 30 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1598228, + "thread": 21 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1687240, + "thread": 16 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 1852717, + "thread": 21 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2035061, + "thread": 21 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2263310, + "thread": 9 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2407698, + "thread": 0 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2551726, + "thread": 3 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2783104, + "thread": 25 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 2816791, + "thread": 30 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 3077539, + "thread": 2 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 3275799, + "thread": 28 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 3386342, + "thread": 6 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 3607513, + "thread": 10 + } + }, + { + "amount": "578.914387312", + "slot": { + "period": 3752457, + "thread": 5 + } + }, + { + "amount": "578.914387324", + "slot": { + "period": 3822082, + "thread": 17 + } + } + ], + "AU1Uw1KeXQRb55jf524mji5Vmm52uyZ1GN9kKbE1JgjTyKQCVkYV": [ + { + "amount": "341.313785016", + "slot": { + "period": 79692, + "thread": 25 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 284729, + "thread": 24 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 360690, + "thread": 30 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 542391, + "thread": 14 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 679676, + "thread": 2 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 867339, + "thread": 11 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1058993, + "thread": 20 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1299504, + "thread": 25 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1439952, + "thread": 17 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1564272, + "thread": 18 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1783563, + "thread": 8 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1919379, + "thread": 25 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 1991130, + "thread": 16 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 2275368, + "thread": 4 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 2398143, + "thread": 3 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 2608540, + "thread": 1 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 2777132, + "thread": 7 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 2895009, + "thread": 19 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 3072762, + "thread": 4 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 3230544, + "thread": 21 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 3346739, + "thread": 26 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 3523356, + "thread": 9 + } + }, + { + "amount": "341.313785016", + "slot": { + "period": 3758639, + "thread": 7 + } + }, + { + "amount": "341.313785008", + "slot": { + "period": 3813586, + "thread": 10 + } + } + ], + "AU1UwCWUDuwjkaRe5S9eWhhfJySVqoJEoSvZmEgcYumXyVGTwHC3": [ + { + "amount": "102.223652210", + "slot": { + "period": 160852, + "thread": 16 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 231995, + "thread": 13 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 405681, + "thread": 1 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 501680, + "thread": 3 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 753337, + "thread": 21 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 892760, + "thread": 9 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1148460, + "thread": 27 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1276769, + "thread": 28 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1408233, + "thread": 26 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1580188, + "thread": 24 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1776877, + "thread": 19 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 1826020, + "thread": 30 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2052099, + "thread": 10 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2256564, + "thread": 14 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2339992, + "thread": 3 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2524472, + "thread": 26 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2678034, + "thread": 27 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 2893488, + "thread": 7 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 3103474, + "thread": 15 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 3123265, + "thread": 18 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 3412303, + "thread": 25 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 3511053, + "thread": 5 + } + }, + { + "amount": "102.223652210", + "slot": { + "period": 3728518, + "thread": 30 + } + }, + { + "amount": "102.223652220", + "slot": { + "period": 3827686, + "thread": 11 + } + } + ], + "AU1UwXG3YXhgqBK5qshbDhpM7QeVngZsXxAdkQBffGRFdquPBvGQ": [ + { + "amount": "140.749038431", + "slot": { + "period": 120478, + "thread": 12 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 310639, + "thread": 6 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 437703, + "thread": 12 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 493032, + "thread": 19 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 707687, + "thread": 16 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 970630, + "thread": 15 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1117934, + "thread": 6 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1162201, + "thread": 14 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1443111, + "thread": 20 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1540991, + "thread": 25 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1682655, + "thread": 27 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 1865537, + "thread": 31 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2081284, + "thread": 3 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2264622, + "thread": 17 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2365500, + "thread": 15 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2540988, + "thread": 24 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2782494, + "thread": 25 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 2849710, + "thread": 26 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 3011495, + "thread": 6 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 3271570, + "thread": 31 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 3421296, + "thread": 9 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 3601139, + "thread": 5 + } + }, + { + "amount": "140.749038431", + "slot": { + "period": 3771567, + "thread": 12 + } + }, + { + "amount": "140.749038429", + "slot": { + "period": 3821368, + "thread": 19 + } + } + ], + "AU1UwjnN2GaHgeZYCdMDjtKpDooWJzG8DA8QuY5fMKzPP6FtXP86": [ + { + "amount": "202.156329889", + "slot": { + "period": 11595, + "thread": 18 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 175117, + "thread": 21 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 376441, + "thread": 15 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 609792, + "thread": 30 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 769713, + "thread": 24 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 879946, + "thread": 0 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1044122, + "thread": 14 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1307299, + "thread": 30 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1475281, + "thread": 31 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1481355, + "thread": 12 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1658654, + "thread": 19 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 1950855, + "thread": 3 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2036257, + "thread": 18 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2283252, + "thread": 20 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2411251, + "thread": 17 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2519987, + "thread": 3 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2711880, + "thread": 30 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 2846312, + "thread": 20 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 3059496, + "thread": 4 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 3258737, + "thread": 14 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 3376919, + "thread": 31 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 3593618, + "thread": 27 + } + }, + { + "amount": "202.156329889", + "slot": { + "period": 3621437, + "thread": 9 + } + }, + { + "amount": "202.156329893", + "slot": { + "period": 3801617, + "thread": 14 + } + } + ], + "AU1UxV44gV4BAevoJzhG9ocGaBko6eN9Lg9K9spnyXdYGcXDfgny": [ + { + "amount": "190.052298576", + "slot": { + "period": 130670, + "thread": 0 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 235628, + "thread": 17 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 372627, + "thread": 10 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 516056, + "thread": 11 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 687054, + "thread": 21 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 967276, + "thread": 30 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1110294, + "thread": 13 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1202867, + "thread": 16 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1330013, + "thread": 20 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1580039, + "thread": 6 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1797354, + "thread": 23 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 1882914, + "thread": 6 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2126095, + "thread": 13 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2253174, + "thread": 27 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2410405, + "thread": 14 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2540611, + "thread": 20 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2713530, + "thread": 16 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2925432, + "thread": 24 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 2976803, + "thread": 26 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 3270957, + "thread": 30 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 3441821, + "thread": 2 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 3544019, + "thread": 17 + } + }, + { + "amount": "190.052298576", + "slot": { + "period": 3752915, + "thread": 0 + } + }, + { + "amount": "190.052298579", + "slot": { + "period": 3870331, + "thread": 16 + } + } + ], + "AU1Uy9Sa4uavxNuktqwiFxU1fxTQLVS4wc5HbD8TUxjdyaba1cZP": [ + { + "amount": "509.915970787", + "slot": { + "period": 18751, + "thread": 22 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 254208, + "thread": 20 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 396423, + "thread": 14 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 575134, + "thread": 12 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 714935, + "thread": 15 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 942794, + "thread": 3 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1025497, + "thread": 6 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1174565, + "thread": 28 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1439201, + "thread": 7 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1551399, + "thread": 3 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1654414, + "thread": 16 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 1813603, + "thread": 22 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2131779, + "thread": 21 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2284975, + "thread": 14 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2391815, + "thread": 15 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2577189, + "thread": 21 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2713285, + "thread": 13 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 2840081, + "thread": 18 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 3081686, + "thread": 0 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 3160186, + "thread": 19 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 3414164, + "thread": 30 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 3576483, + "thread": 22 + } + }, + { + "amount": "509.915970787", + "slot": { + "period": 3649653, + "thread": 6 + } + }, + { + "amount": "509.915970794", + "slot": { + "period": 3905471, + "thread": 8 + } + } + ], + "AU1UyaAYUQgR1ZgAuo5PqkPJLiskS4yqgy7uYhJRXNBMZHqKdUGM": [ + { + "amount": "98.050831250", + "slot": { + "period": 50572, + "thread": 15 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 194781, + "thread": 26 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 376416, + "thread": 7 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 513191, + "thread": 6 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 759815, + "thread": 31 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 964223, + "thread": 9 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1033965, + "thread": 5 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1185826, + "thread": 23 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1445957, + "thread": 23 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1538114, + "thread": 16 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1691346, + "thread": 6 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1889423, + "thread": 14 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 1980849, + "thread": 6 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 2163578, + "thread": 6 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 2330561, + "thread": 22 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 2576957, + "thread": 24 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 2777977, + "thread": 26 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 2856602, + "thread": 19 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 3023284, + "thread": 26 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 3262202, + "thread": 14 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 3363837, + "thread": 16 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 3472162, + "thread": 15 + } + }, + { + "amount": "98.050831250", + "slot": { + "period": 3702996, + "thread": 17 + } + }, + { + "amount": "98.050831257", + "slot": { + "period": 3824679, + "thread": 1 + } + } + ], + "AU1UzCHZ9TtfDwtU3756JvHKLroDuBGwHbxbykSHXyMwmYPLKJ5h": [ + { + "amount": "84.396983702", + "slot": { + "period": 34503, + "thread": 28 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 169187, + "thread": 30 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 489837, + "thread": 15 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 536933, + "thread": 26 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 757958, + "thread": 8 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 857550, + "thread": 6 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1068001, + "thread": 26 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1175525, + "thread": 25 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1471686, + "thread": 20 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1566916, + "thread": 15 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1680243, + "thread": 29 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 1885136, + "thread": 29 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2114899, + "thread": 21 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2239636, + "thread": 10 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2405464, + "thread": 0 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2616138, + "thread": 5 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2725646, + "thread": 12 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 2818939, + "thread": 17 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 3037397, + "thread": 11 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 3287771, + "thread": 26 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 3372772, + "thread": 29 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 3532468, + "thread": 25 + } + }, + { + "amount": "84.396983702", + "slot": { + "period": 3643306, + "thread": 28 + } + }, + { + "amount": "84.396983701", + "slot": { + "period": 3892922, + "thread": 20 + } + } + ], + "AU1UzZNBLN3kQ7MVU1mtodqK2fKN8PJocegyDFB3ykaLyUPHHzZV": [ + { + "amount": "260.725515778", + "slot": { + "period": 45324, + "thread": 13 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 224527, + "thread": 1 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 392004, + "thread": 12 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 591169, + "thread": 31 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 784805, + "thread": 21 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 856900, + "thread": 14 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1023761, + "thread": 14 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1152910, + "thread": 30 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1399172, + "thread": 1 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1501724, + "thread": 5 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1668373, + "thread": 19 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1967191, + "thread": 11 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 1984636, + "thread": 10 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 2244399, + "thread": 26 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 2418631, + "thread": 26 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 2581399, + "thread": 5 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 2721613, + "thread": 2 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 2816063, + "thread": 3 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 3086590, + "thread": 9 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 3138439, + "thread": 27 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 3413393, + "thread": 6 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 3594087, + "thread": 6 + } + }, + { + "amount": "260.725515778", + "slot": { + "period": 3739720, + "thread": 1 + } + }, + { + "amount": "260.725515772", + "slot": { + "period": 3907314, + "thread": 29 + } + } + ], + "AU1V1UifdMxen7bbXRxkn5wo1pKaKYZP8tyRpsCo7iKB5LCnQvRj": [ + { + "amount": "69.684067166", + "slot": { + "period": 71336, + "thread": 26 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 254373, + "thread": 15 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 486558, + "thread": 31 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 533951, + "thread": 18 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 820628, + "thread": 29 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 908354, + "thread": 6 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1063857, + "thread": 0 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1268566, + "thread": 2 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1462521, + "thread": 0 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1542603, + "thread": 29 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1656446, + "thread": 9 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 1926617, + "thread": 31 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2011082, + "thread": 21 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2248404, + "thread": 3 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2459702, + "thread": 7 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2597138, + "thread": 0 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2703094, + "thread": 25 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2827964, + "thread": 1 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 2992894, + "thread": 31 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 3125809, + "thread": 30 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 3410113, + "thread": 22 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 3543443, + "thread": 30 + } + }, + { + "amount": "69.684067166", + "slot": { + "period": 3757333, + "thread": 23 + } + }, + { + "amount": "69.684067174", + "slot": { + "period": 3842947, + "thread": 23 + } + } + ], + "AU1V2BryknXggNXLPTaGYL6tA4D4KW7ukNAVkJmAS7mjhh5cosYy": [ + { + "amount": "192.241799666", + "slot": { + "period": 42794, + "thread": 14 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 187306, + "thread": 6 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 326915, + "thread": 12 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 571032, + "thread": 3 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 800359, + "thread": 3 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 978787, + "thread": 11 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1003414, + "thread": 2 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1168005, + "thread": 31 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1466153, + "thread": 28 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1600727, + "thread": 29 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1670964, + "thread": 27 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 1910755, + "thread": 20 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2009951, + "thread": 11 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2244711, + "thread": 4 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2435541, + "thread": 1 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2552161, + "thread": 12 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2752737, + "thread": 16 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 2917763, + "thread": 21 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 3046653, + "thread": 6 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 3267127, + "thread": 7 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 3368013, + "thread": 19 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 3553941, + "thread": 8 + } + }, + { + "amount": "192.241799666", + "slot": { + "period": 3739936, + "thread": 25 + } + }, + { + "amount": "192.241799667", + "slot": { + "period": 3849863, + "thread": 3 + } + } + ], + "AU1V2U2z7NQLGV3BEU4qZJrhfEaHbwZUQJZ4FxFW15HJCwWKmWLX": [ + { + "amount": "279.074051839", + "slot": { + "period": 61458, + "thread": 2 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 313505, + "thread": 25 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 484493, + "thread": 11 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 511992, + "thread": 28 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 658919, + "thread": 17 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 843768, + "thread": 29 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1107075, + "thread": 1 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1293750, + "thread": 6 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1369626, + "thread": 21 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1535693, + "thread": 14 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1741921, + "thread": 17 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 1854890, + "thread": 23 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2134110, + "thread": 30 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2165877, + "thread": 10 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2348671, + "thread": 4 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2478985, + "thread": 7 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2685345, + "thread": 3 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2866959, + "thread": 29 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 2980496, + "thread": 19 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 3205107, + "thread": 21 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 3297412, + "thread": 27 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 3585365, + "thread": 20 + } + }, + { + "amount": "279.074051839", + "slot": { + "period": 3691722, + "thread": 27 + } + }, + { + "amount": "279.074051849", + "slot": { + "period": 3788015, + "thread": 25 + } + } + ], + "AU1V3rMGHAvwbYv29u6cetEmeF8WGjVMjYJqdnqdUuGgRRjywRKf": [ + { + "amount": "280.898641587", + "slot": { + "period": 115705, + "thread": 14 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 239821, + "thread": 0 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 369416, + "thread": 28 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 574489, + "thread": 13 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 687923, + "thread": 14 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 966026, + "thread": 22 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 986849, + "thread": 27 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 1188084, + "thread": 6 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 1478550, + "thread": 14 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 1562003, + "thread": 12 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 1780010, + "thread": 6 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 1861004, + "thread": 5 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2115643, + "thread": 18 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2242780, + "thread": 25 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2386861, + "thread": 19 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2611300, + "thread": 11 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2641445, + "thread": 30 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2869315, + "thread": 12 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 2954385, + "thread": 5 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 3122414, + "thread": 12 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 3340075, + "thread": 15 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 3545262, + "thread": 6 + } + }, + { + "amount": "280.898641587", + "slot": { + "period": 3723863, + "thread": 17 + } + }, + { + "amount": "280.898641588", + "slot": { + "period": 3914639, + "thread": 14 + } + } + ], + "AU1V4JLK71LKpDACLvAVc6heMhAbnGYpywkJCx9DqM5WA5SQDspp": [ + { + "amount": "446.228235757", + "slot": { + "period": 73181, + "thread": 4 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 247514, + "thread": 17 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 376797, + "thread": 28 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 582282, + "thread": 15 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 697657, + "thread": 5 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 840691, + "thread": 29 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1061115, + "thread": 4 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1162712, + "thread": 10 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1384403, + "thread": 27 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1534177, + "thread": 30 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1728984, + "thread": 24 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 1935431, + "thread": 29 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2143527, + "thread": 28 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2144121, + "thread": 15 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2300286, + "thread": 27 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2536767, + "thread": 28 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2646289, + "thread": 0 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 2925369, + "thread": 15 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 3018781, + "thread": 6 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 3271015, + "thread": 22 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 3415062, + "thread": 9 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 3455692, + "thread": 15 + } + }, + { + "amount": "446.228235757", + "slot": { + "period": 3675344, + "thread": 7 + } + }, + { + "amount": "446.228235763", + "slot": { + "period": 3884601, + "thread": 26 + } + } + ], + "AU1V5M5QK5fdg1bDQYmVgDfxa5ShRUsqmJ4eac2vq62iAemTvoHw": [ + { + "amount": "130.726343610", + "slot": { + "period": 17390, + "thread": 24 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 249616, + "thread": 30 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 465835, + "thread": 9 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 623206, + "thread": 0 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 769129, + "thread": 30 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 906599, + "thread": 0 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1139374, + "thread": 6 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1289471, + "thread": 21 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1402067, + "thread": 28 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1646587, + "thread": 15 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1699630, + "thread": 23 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 1968073, + "thread": 5 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2072682, + "thread": 27 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2223512, + "thread": 24 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2435019, + "thread": 20 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2582078, + "thread": 15 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2668338, + "thread": 18 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 2901161, + "thread": 9 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 3036113, + "thread": 6 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 3215748, + "thread": 1 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 3439972, + "thread": 21 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 3590148, + "thread": 28 + } + }, + { + "amount": "130.726343610", + "slot": { + "period": 3630127, + "thread": 14 + } + }, + { + "amount": "130.726343619", + "slot": { + "period": 3823125, + "thread": 14 + } + } + ], + "AU1V5sP1HAedzCQtoc6YMhEP5xkke9jipGScqS3Pf5r73zkLbuUD": [ + { + "amount": "193.045068197", + "slot": { + "period": 76483, + "thread": 2 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 277177, + "thread": 10 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 334001, + "thread": 0 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 612751, + "thread": 6 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 773130, + "thread": 8 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 856187, + "thread": 11 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 997301, + "thread": 27 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 1199299, + "thread": 22 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 1393488, + "thread": 1 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 1532440, + "thread": 18 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 1744178, + "thread": 11 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 1895014, + "thread": 0 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2073624, + "thread": 12 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2276454, + "thread": 21 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2396145, + "thread": 7 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2482342, + "thread": 29 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2713383, + "thread": 30 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 2889301, + "thread": 2 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 3011669, + "thread": 1 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 3235042, + "thread": 3 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 3327979, + "thread": 17 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 3554653, + "thread": 16 + } + }, + { + "amount": "193.045068197", + "slot": { + "period": 3685226, + "thread": 25 + } + }, + { + "amount": "193.045068192", + "slot": { + "period": 3831850, + "thread": 11 + } + } + ], + "AU1V6diFBKgDKQWV9tFv1nWkUVsWmACj7EbB3cnLP8rwPXENyq3d": [ + { + "amount": "327.313561194", + "slot": { + "period": 50860, + "thread": 31 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 257812, + "thread": 20 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 475203, + "thread": 24 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 539879, + "thread": 23 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 761073, + "thread": 14 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 908055, + "thread": 5 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1036817, + "thread": 12 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1182926, + "thread": 11 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1374044, + "thread": 7 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1590927, + "thread": 28 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1688726, + "thread": 20 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 1902581, + "thread": 22 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2067600, + "thread": 6 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2236654, + "thread": 8 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2326538, + "thread": 7 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2525206, + "thread": 29 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2654874, + "thread": 22 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 2903205, + "thread": 22 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 3083674, + "thread": 12 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 3181134, + "thread": 17 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 3411581, + "thread": 4 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 3611620, + "thread": 1 + } + }, + { + "amount": "327.313561194", + "slot": { + "period": 3634188, + "thread": 18 + } + }, + { + "amount": "327.313561199", + "slot": { + "period": 3934196, + "thread": 1 + } + } + ], + "AU1V6feF8cVoYydUnPLSWUTFAAZZqjS4UwCr2dynNERXjaGcHiMk": [ + { + "amount": "58.389627589", + "slot": { + "period": 27069, + "thread": 29 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 296924, + "thread": 12 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 425445, + "thread": 2 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 509424, + "thread": 27 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 723034, + "thread": 13 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 909218, + "thread": 24 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1025095, + "thread": 13 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1307614, + "thread": 17 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1396743, + "thread": 20 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1501318, + "thread": 20 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1673320, + "thread": 7 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 1910580, + "thread": 13 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2070904, + "thread": 27 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2273746, + "thread": 13 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2400751, + "thread": 13 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2600336, + "thread": 20 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2791190, + "thread": 28 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 2829261, + "thread": 0 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 3067562, + "thread": 4 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 3142853, + "thread": 26 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 3422346, + "thread": 27 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 3509919, + "thread": 29 + } + }, + { + "amount": "58.389627589", + "slot": { + "period": 3690970, + "thread": 16 + } + }, + { + "amount": "58.389627596", + "slot": { + "period": 3794138, + "thread": 19 + } + } + ], + "AU1V6x9c9yrfcZ9GJo2DiRR5ZWFdEbKyWumgBudZoNkEU4Ekwqqu": [ + { + "amount": "241.423663470", + "slot": { + "period": 52589, + "thread": 13 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 296021, + "thread": 10 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 350276, + "thread": 15 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 550207, + "thread": 22 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 748048, + "thread": 8 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 961082, + "thread": 29 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1071392, + "thread": 11 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1151298, + "thread": 30 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1408957, + "thread": 2 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1628431, + "thread": 23 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1690871, + "thread": 2 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 1852600, + "thread": 18 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2138189, + "thread": 2 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2212096, + "thread": 30 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2332573, + "thread": 10 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2573593, + "thread": 4 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2789304, + "thread": 0 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 2866086, + "thread": 19 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 3074338, + "thread": 19 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 3255918, + "thread": 0 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 3334384, + "thread": 24 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 3605388, + "thread": 1 + } + }, + { + "amount": "241.423663470", + "slot": { + "period": 3691184, + "thread": 28 + } + }, + { + "amount": "241.423663482", + "slot": { + "period": 3911912, + "thread": 5 + } + } + ], + "AU1V8Gg5sgFfT4aJwD77bz8t8NfFM3m7kcz3rWHwTwvPMCvJhgok": [ + { + "amount": "285.808910887", + "slot": { + "period": 96471, + "thread": 28 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 250708, + "thread": 16 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 325489, + "thread": 7 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 598536, + "thread": 26 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 725613, + "thread": 9 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 867588, + "thread": 10 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1089552, + "thread": 7 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1284066, + "thread": 9 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1411999, + "thread": 28 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1571821, + "thread": 7 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1678488, + "thread": 12 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 1881232, + "thread": 26 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2007522, + "thread": 30 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2201947, + "thread": 10 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2342751, + "thread": 25 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2474212, + "thread": 9 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2675559, + "thread": 3 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 2864885, + "thread": 3 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 3107203, + "thread": 2 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 3271536, + "thread": 11 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 3299038, + "thread": 24 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 3539454, + "thread": 12 + } + }, + { + "amount": "285.808910887", + "slot": { + "period": 3713281, + "thread": 31 + } + }, + { + "amount": "285.808910886", + "slot": { + "period": 3791967, + "thread": 2 + } + } + ], + "AU1V8MxXN1jgz9G3Rg1FeMgJPgUS9B1FKs2wbHN3KyxhdWAY7bFJ": [ + { + "amount": "65.953705710", + "slot": { + "period": 151630, + "thread": 24 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 285347, + "thread": 25 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 433626, + "thread": 14 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 632225, + "thread": 0 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 679147, + "thread": 0 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 885427, + "thread": 31 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 992335, + "thread": 2 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 1239564, + "thread": 2 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 1333610, + "thread": 30 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 1602644, + "thread": 1 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 1697588, + "thread": 10 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 1941671, + "thread": 0 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2139511, + "thread": 26 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2145817, + "thread": 24 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2433133, + "thread": 30 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2516713, + "thread": 4 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2671450, + "thread": 9 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2947242, + "thread": 18 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 2993924, + "thread": 12 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 3272956, + "thread": 5 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 3299928, + "thread": 21 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 3457721, + "thread": 5 + } + }, + { + "amount": "65.953705710", + "slot": { + "period": 3696592, + "thread": 17 + } + }, + { + "amount": "65.953705722", + "slot": { + "period": 3909140, + "thread": 31 + } + } + ], + "AU1V9LMYpWZnSixLAj9Vt8WAbQt6VBwFdUBtnyK7QPrGeiBPghHT": [ + { + "amount": "645.076126126", + "slot": { + "period": 101277, + "thread": 6 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 236232, + "thread": 29 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 389349, + "thread": 14 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 615704, + "thread": 28 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 665134, + "thread": 8 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 966644, + "thread": 13 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1109045, + "thread": 22 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1258293, + "thread": 2 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1434532, + "thread": 17 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1593960, + "thread": 15 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1808749, + "thread": 20 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 1968863, + "thread": 20 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2117823, + "thread": 5 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2248683, + "thread": 22 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2315385, + "thread": 9 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2548363, + "thread": 21 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2734762, + "thread": 4 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2862590, + "thread": 19 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 2953923, + "thread": 27 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 3237534, + "thread": 19 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 3430869, + "thread": 28 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 3505963, + "thread": 18 + } + }, + { + "amount": "645.076126126", + "slot": { + "period": 3661988, + "thread": 29 + } + }, + { + "amount": "645.076126124", + "slot": { + "period": 3780445, + "thread": 3 + } + } + ], + "AU1V9UnPeCkJkeUTLTcd4LfiqcVk6UkfdjJ4wRNtDwkoniarqSwJ": [ + { + "amount": "489.149816410", + "slot": { + "period": 150091, + "thread": 10 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 178440, + "thread": 4 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 371674, + "thread": 25 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 534824, + "thread": 0 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 749155, + "thread": 21 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 910011, + "thread": 12 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1111281, + "thread": 31 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1295572, + "thread": 26 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1462460, + "thread": 30 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1620933, + "thread": 24 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1800378, + "thread": 9 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 1844191, + "thread": 1 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2080772, + "thread": 20 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2230808, + "thread": 20 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2296991, + "thread": 15 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2492063, + "thread": 19 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2721743, + "thread": 11 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2932772, + "thread": 14 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 2996687, + "thread": 28 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 3275435, + "thread": 11 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 3441574, + "thread": 10 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 3464235, + "thread": 21 + } + }, + { + "amount": "489.149816410", + "slot": { + "period": 3755540, + "thread": 25 + } + }, + { + "amount": "489.149816411", + "slot": { + "period": 3811263, + "thread": 4 + } + } + ], + "AU1V9n72PPAYKBCZPLk8cwHgQNAFLtw2U14dA1jfEDUXgB55nX9n": [ + { + "amount": "222.448239794", + "slot": { + "period": 44160, + "thread": 12 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 300298, + "thread": 26 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 331347, + "thread": 12 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 573400, + "thread": 10 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 705104, + "thread": 12 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 847840, + "thread": 8 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1004387, + "thread": 19 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1314450, + "thread": 29 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1357389, + "thread": 16 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1545800, + "thread": 1 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1795991, + "thread": 29 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 1975255, + "thread": 5 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2132295, + "thread": 28 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2278301, + "thread": 7 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2448757, + "thread": 2 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2589022, + "thread": 26 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2788117, + "thread": 10 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 2858099, + "thread": 25 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 3070492, + "thread": 26 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 3277612, + "thread": 7 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 3410371, + "thread": 17 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 3588651, + "thread": 7 + } + }, + { + "amount": "222.448239794", + "slot": { + "period": 3743670, + "thread": 31 + } + }, + { + "amount": "222.448239782", + "slot": { + "period": 3860591, + "thread": 8 + } + } + ], + "AU1V9qy6u9kQJkRaerkiADYgJ6qPJieKnuW3PUpBsNQei7ZLv567": [ + { + "amount": "254.808360757", + "slot": { + "period": 49821, + "thread": 9 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 176236, + "thread": 18 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 487562, + "thread": 19 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 538815, + "thread": 3 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 754663, + "thread": 20 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 857560, + "thread": 2 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1134065, + "thread": 7 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1283487, + "thread": 4 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1390395, + "thread": 29 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1560145, + "thread": 17 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1649739, + "thread": 0 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 1925902, + "thread": 11 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2102149, + "thread": 20 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2175738, + "thread": 25 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2406983, + "thread": 22 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2589793, + "thread": 11 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2651191, + "thread": 16 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2935010, + "thread": 9 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 2961362, + "thread": 17 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 3163668, + "thread": 19 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 3427715, + "thread": 19 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 3479206, + "thread": 1 + } + }, + { + "amount": "254.808360757", + "slot": { + "period": 3707358, + "thread": 6 + } + }, + { + "amount": "254.808360750", + "slot": { + "period": 3920876, + "thread": 21 + } + } + ], + "AU1VANupsC9Xmi251yypb3YMnEtKTQRmyFvMJDPA6VMyBRSQZDWm": [ + { + "amount": "116.887130220", + "slot": { + "period": 164103, + "thread": 6 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 321482, + "thread": 7 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 443216, + "thread": 2 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 539111, + "thread": 24 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 721688, + "thread": 5 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 952048, + "thread": 8 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1077227, + "thread": 9 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1308158, + "thread": 31 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1407002, + "thread": 10 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1567389, + "thread": 31 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1662239, + "thread": 24 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 1968665, + "thread": 12 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2105623, + "thread": 26 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2181053, + "thread": 1 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2342752, + "thread": 19 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2596533, + "thread": 31 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2754707, + "thread": 20 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 2951555, + "thread": 11 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 3004978, + "thread": 27 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 3142126, + "thread": 1 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 3303791, + "thread": 16 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 3529702, + "thread": 7 + } + }, + { + "amount": "116.887130220", + "slot": { + "period": 3706547, + "thread": 15 + } + }, + { + "amount": "116.887130212", + "slot": { + "period": 3841687, + "thread": 4 + } + } + ], + "AU1VBS25ZCLMwAYwDbbmtgFCMgVYuWVpreWU7evb5UTPMG5BvnpW": [ + { + "amount": "374.715272609", + "slot": { + "period": 56611, + "thread": 4 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 253027, + "thread": 27 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 381462, + "thread": 13 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 508142, + "thread": 24 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 696861, + "thread": 17 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 822437, + "thread": 28 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1076473, + "thread": 7 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1298091, + "thread": 3 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1454626, + "thread": 16 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1571996, + "thread": 14 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1745019, + "thread": 31 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 1887471, + "thread": 27 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2082913, + "thread": 8 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2188466, + "thread": 4 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2385750, + "thread": 11 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2616031, + "thread": 25 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2695003, + "thread": 3 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 2838859, + "thread": 16 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 3022879, + "thread": 13 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 3175480, + "thread": 7 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 3380026, + "thread": 20 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 3593859, + "thread": 22 + } + }, + { + "amount": "374.715272609", + "slot": { + "period": 3719128, + "thread": 11 + } + }, + { + "amount": "374.715272620", + "slot": { + "period": 3894605, + "thread": 28 + } + } + ], + "AU1VBqgATb1ojXFaVs2UfexpjweW3W6YMCyB7wDVCPamddCpT2Zn": [ + { + "amount": "363.181549219", + "slot": { + "period": 16011, + "thread": 10 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 313894, + "thread": 14 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 365198, + "thread": 9 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 493938, + "thread": 29 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 815188, + "thread": 31 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 964603, + "thread": 15 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1090593, + "thread": 21 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1262375, + "thread": 5 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1370339, + "thread": 20 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1583280, + "thread": 11 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1801431, + "thread": 13 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 1865916, + "thread": 29 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2086048, + "thread": 21 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2210630, + "thread": 3 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2449233, + "thread": 21 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2540892, + "thread": 26 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2706824, + "thread": 9 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 2916509, + "thread": 0 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 3054613, + "thread": 22 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 3122479, + "thread": 26 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 3347888, + "thread": 8 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 3491947, + "thread": 26 + } + }, + { + "amount": "363.181549219", + "slot": { + "period": 3693269, + "thread": 7 + } + }, + { + "amount": "363.181549218", + "slot": { + "period": 3852354, + "thread": 3 + } + } + ], + "AU1VCXnqnFuW7Z9k46UgpKE8T4EA36jw3DmWgiE8PWfHBYJUECYc": [ + { + "amount": "328.490463133", + "slot": { + "period": 68531, + "thread": 12 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 212052, + "thread": 23 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 355252, + "thread": 0 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 647956, + "thread": 12 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 680451, + "thread": 14 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 946776, + "thread": 1 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1112358, + "thread": 0 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1192512, + "thread": 25 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1477922, + "thread": 30 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1488201, + "thread": 27 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1688783, + "thread": 16 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 1894294, + "thread": 17 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2086187, + "thread": 12 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2164092, + "thread": 10 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2416966, + "thread": 23 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2509004, + "thread": 27 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2783662, + "thread": 30 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 2824046, + "thread": 15 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 3046776, + "thread": 10 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 3220213, + "thread": 5 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 3413440, + "thread": 8 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 3580283, + "thread": 14 + } + }, + { + "amount": "328.490463133", + "slot": { + "period": 3745654, + "thread": 25 + } + }, + { + "amount": "328.490463144", + "slot": { + "period": 3860462, + "thread": 17 + } + } + ], + "AU1VDCyhYcL2cZFxmVNDFYZomjAuKnHoy1nMFE67JJAeFDLgTo9D": [ + { + "amount": "239.613041753", + "slot": { + "period": 102446, + "thread": 19 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 180454, + "thread": 14 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 338710, + "thread": 15 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 618338, + "thread": 9 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 663528, + "thread": 29 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 875015, + "thread": 23 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1115973, + "thread": 20 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1247094, + "thread": 18 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1328653, + "thread": 7 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1606579, + "thread": 6 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1781574, + "thread": 30 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 1868297, + "thread": 1 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2113288, + "thread": 17 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2157648, + "thread": 27 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2387995, + "thread": 12 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2570225, + "thread": 22 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2722166, + "thread": 12 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 2887895, + "thread": 11 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 3000571, + "thread": 31 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 3140277, + "thread": 12 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 3305101, + "thread": 10 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 3520213, + "thread": 23 + } + }, + { + "amount": "239.613041753", + "slot": { + "period": 3666523, + "thread": 27 + } + }, + { + "amount": "239.613041747", + "slot": { + "period": 3864313, + "thread": 13 + } + } + ], + "AU1VDVLx4G4yph6ugS6qxzLisjZKorNQapzDihn94KwfCwfjvwvx": [ + { + "amount": "301.039052021", + "slot": { + "period": 127556, + "thread": 16 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 323948, + "thread": 31 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 328967, + "thread": 2 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 507388, + "thread": 26 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 736742, + "thread": 31 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 831382, + "thread": 4 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1088523, + "thread": 16 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1187118, + "thread": 4 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1333683, + "thread": 17 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1505702, + "thread": 21 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1774366, + "thread": 9 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 1851325, + "thread": 7 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2110808, + "thread": 16 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2221594, + "thread": 30 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2336851, + "thread": 0 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2567058, + "thread": 1 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2778536, + "thread": 10 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 2839651, + "thread": 15 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 3109593, + "thread": 25 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 3128666, + "thread": 11 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 3399211, + "thread": 16 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 3559660, + "thread": 2 + } + }, + { + "amount": "301.039052021", + "slot": { + "period": 3756298, + "thread": 16 + } + }, + { + "amount": "301.039052022", + "slot": { + "period": 3918411, + "thread": 16 + } + } + ], + "AU1VDt4Uq6VneZPqigrc4gXardMpRBUswECPq2SkomfS1pF1prCm": [ + { + "amount": "193.451236512", + "slot": { + "period": 89094, + "thread": 15 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 203081, + "thread": 6 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 345450, + "thread": 15 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 547761, + "thread": 7 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 803372, + "thread": 5 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 982118, + "thread": 31 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1105705, + "thread": 30 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1315757, + "thread": 5 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1361713, + "thread": 22 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1590413, + "thread": 7 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1758483, + "thread": 9 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 1890419, + "thread": 12 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2130017, + "thread": 9 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2146900, + "thread": 16 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2351946, + "thread": 1 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2527090, + "thread": 18 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2769819, + "thread": 25 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 2944614, + "thread": 26 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 3033712, + "thread": 31 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 3188046, + "thread": 3 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 3309630, + "thread": 3 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 3593004, + "thread": 3 + } + }, + { + "amount": "193.451236512", + "slot": { + "period": 3686009, + "thread": 8 + } + }, + { + "amount": "193.451236509", + "slot": { + "period": 3899936, + "thread": 3 + } + } + ], + "AU1VEqU5DwJcjtwkTXjj1KwftQp3eJoSUXbf3WWwa5hs8chyRUsw": [ + { + "amount": "351.918215096", + "slot": { + "period": 55482, + "thread": 25 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 168281, + "thread": 14 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 427377, + "thread": 12 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 641670, + "thread": 24 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 797234, + "thread": 21 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 844278, + "thread": 11 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1010222, + "thread": 1 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1294506, + "thread": 8 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1468453, + "thread": 26 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1621695, + "thread": 23 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1804599, + "thread": 31 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 1809581, + "thread": 14 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2048282, + "thread": 10 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2187653, + "thread": 21 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2418849, + "thread": 23 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2512809, + "thread": 13 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2624421, + "thread": 19 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 2874303, + "thread": 22 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 3106254, + "thread": 19 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 3270867, + "thread": 3 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 3323836, + "thread": 19 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 3474241, + "thread": 25 + } + }, + { + "amount": "351.918215096", + "slot": { + "period": 3734781, + "thread": 4 + } + }, + { + "amount": "351.918215095", + "slot": { + "period": 3894696, + "thread": 27 + } + } + ], + "AU1VFxQ9mFmpivx1RvFxXA5LX4xmtykeXeftKWxWkpZm7QiuAEc7": [ + { + "amount": "83.798495788", + "slot": { + "period": 81272, + "thread": 1 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 190720, + "thread": 27 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 491221, + "thread": 28 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 637212, + "thread": 25 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 663774, + "thread": 20 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 909792, + "thread": 29 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1106382, + "thread": 0 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1261204, + "thread": 26 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1450470, + "thread": 11 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1515068, + "thread": 15 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1724760, + "thread": 18 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 1962842, + "thread": 30 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2103801, + "thread": 21 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2213377, + "thread": 28 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2400533, + "thread": 19 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2536768, + "thread": 5 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2697252, + "thread": 6 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 2828063, + "thread": 23 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 3045785, + "thread": 0 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 3273323, + "thread": 5 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 3421387, + "thread": 8 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 3509313, + "thread": 30 + } + }, + { + "amount": "83.798495788", + "slot": { + "period": 3630151, + "thread": 8 + } + }, + { + "amount": "83.798495799", + "slot": { + "period": 3791755, + "thread": 27 + } + } + ], + "AU1VFyXh8v3YDmHC8uQfu8k7291WMsydEEzBAuDY8igwhCLuaAXb": [ + { + "amount": "210.951076755", + "slot": { + "period": 159416, + "thread": 21 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 193412, + "thread": 12 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 469612, + "thread": 4 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 605343, + "thread": 13 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 774685, + "thread": 16 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 931449, + "thread": 10 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1030191, + "thread": 25 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1165285, + "thread": 2 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1428819, + "thread": 20 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1514221, + "thread": 13 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1797910, + "thread": 19 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 1849673, + "thread": 12 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2042700, + "thread": 17 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2188263, + "thread": 17 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2448508, + "thread": 10 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2622661, + "thread": 23 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2717744, + "thread": 13 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 2901630, + "thread": 9 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 3061029, + "thread": 15 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 3227887, + "thread": 30 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 3377390, + "thread": 15 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 3569474, + "thread": 20 + } + }, + { + "amount": "210.951076755", + "slot": { + "period": 3635905, + "thread": 9 + } + }, + { + "amount": "210.951076754", + "slot": { + "period": 3926069, + "thread": 27 + } + } + ], + "AU1VGAZBKLk7WUwQKswWX261LPdtWyQsuwYSRuBYpUU7CJxiHzjA": [ + { + "amount": "17500.000000000", + "slot": { + "period": 122117, + "thread": 10 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 194329, + "thread": 23 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 487616, + "thread": 10 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 649125, + "thread": 18 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 798136, + "thread": 24 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 842233, + "thread": 8 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 993324, + "thread": 5 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 1294177, + "thread": 24 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 1464165, + "thread": 22 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 1607596, + "thread": 25 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 1763681, + "thread": 7 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 1841337, + "thread": 11 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2010228, + "thread": 27 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2245436, + "thread": 16 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2342923, + "thread": 21 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2622073, + "thread": 18 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2714120, + "thread": 25 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 2876271, + "thread": 8 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3073766, + "thread": 9 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3285189, + "thread": 9 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3383939, + "thread": 28 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3599940, + "thread": 7 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3687877, + "thread": 5 + } + }, + { + "amount": "17500.000000000", + "slot": { + "period": 3918953, + "thread": 28 + } + } + ], + "AU1VGG36p8JkYtzkV7T3BrGRdJoU1wphaqyS9sMtQsiPnZZw8G2V": [ + { + "amount": "132.040342654", + "slot": { + "period": 124031, + "thread": 4 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 282317, + "thread": 23 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 353616, + "thread": 6 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 520114, + "thread": 31 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 729602, + "thread": 11 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 957561, + "thread": 28 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1018175, + "thread": 17 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1239061, + "thread": 1 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1340372, + "thread": 27 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1559242, + "thread": 27 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1683867, + "thread": 26 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 1835081, + "thread": 24 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2021360, + "thread": 1 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2190651, + "thread": 18 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2378102, + "thread": 15 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2467762, + "thread": 26 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2772496, + "thread": 24 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 2880856, + "thread": 21 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 3081484, + "thread": 16 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 3196650, + "thread": 23 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 3313514, + "thread": 17 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 3455975, + "thread": 9 + } + }, + { + "amount": "132.040342654", + "slot": { + "period": 3637372, + "thread": 16 + } + }, + { + "amount": "132.040342646", + "slot": { + "period": 3788593, + "thread": 31 + } + } + ], + "AU1VGgkfGPUxYUD7SUhJpvcSNxYnWMrzoHBdgujugMM1JGcH58mq": [ + { + "amount": "237.252479564", + "slot": { + "period": 134759, + "thread": 31 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 321936, + "thread": 29 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 447066, + "thread": 22 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 557770, + "thread": 1 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 690726, + "thread": 3 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 891571, + "thread": 3 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1009561, + "thread": 28 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1304426, + "thread": 28 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1459212, + "thread": 3 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1583274, + "thread": 27 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1745704, + "thread": 0 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 1841524, + "thread": 20 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2138427, + "thread": 10 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2290593, + "thread": 17 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2324587, + "thread": 25 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2521610, + "thread": 7 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2729931, + "thread": 22 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2938445, + "thread": 4 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 2973837, + "thread": 26 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 3253651, + "thread": 18 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 3331528, + "thread": 21 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 3502425, + "thread": 4 + } + }, + { + "amount": "237.252479564", + "slot": { + "period": 3643787, + "thread": 5 + } + }, + { + "amount": "237.252479568", + "slot": { + "period": 3858924, + "thread": 1 + } + } + ], + "AU1VKNbMte4CvFxZwKGZbjEuB3YC6Jb8wuCiCqC5b4KnikLt1Y8z": [ + { + "amount": "85.471300613", + "slot": { + "period": 112793, + "thread": 7 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 310905, + "thread": 4 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 339637, + "thread": 4 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 491789, + "thread": 25 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 700583, + "thread": 25 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 848230, + "thread": 22 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 990568, + "thread": 5 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 1241298, + "thread": 16 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 1356296, + "thread": 11 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 1618786, + "thread": 10 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 1719458, + "thread": 26 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 1894482, + "thread": 8 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2086882, + "thread": 27 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2254834, + "thread": 26 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2373081, + "thread": 11 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2622672, + "thread": 12 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2680623, + "thread": 22 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 2947229, + "thread": 3 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 3072376, + "thread": 6 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 3126863, + "thread": 5 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 3432124, + "thread": 9 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 3575180, + "thread": 21 + } + }, + { + "amount": "85.471300613", + "slot": { + "period": 3669359, + "thread": 2 + } + }, + { + "amount": "85.471300611", + "slot": { + "period": 3847722, + "thread": 10 + } + } + ], + "AU1VKNmaSQa51U719WL8MFN7DqyADH7MubexcfFdhpvkn3eyjM9x": [ + { + "amount": "63.759803092", + "slot": { + "period": 80864, + "thread": 24 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 177182, + "thread": 8 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 391963, + "thread": 7 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 644235, + "thread": 27 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 654020, + "thread": 4 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 842735, + "thread": 20 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1042573, + "thread": 15 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1179025, + "thread": 25 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1331965, + "thread": 7 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1569230, + "thread": 6 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1736208, + "thread": 15 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1856744, + "thread": 26 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 1989512, + "thread": 27 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2265346, + "thread": 20 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2362429, + "thread": 14 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2617292, + "thread": 4 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2675807, + "thread": 11 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2805391, + "thread": 30 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 2983070, + "thread": 27 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 3190575, + "thread": 16 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 3318688, + "thread": 15 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 3589967, + "thread": 4 + } + }, + { + "amount": "63.759803092", + "slot": { + "period": 3628725, + "thread": 26 + } + }, + { + "amount": "63.759803082", + "slot": { + "period": 3917877, + "thread": 18 + } + } + ], + "AU1VKjAyzwa2Y59tFjMxeKXv838x7kV3JcFLY1etqEtmXnw5B7BQ": [ + { + "amount": "484.795579336", + "slot": { + "period": 35340, + "thread": 25 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 213275, + "thread": 2 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 407320, + "thread": 24 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 613845, + "thread": 13 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 820346, + "thread": 6 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 866535, + "thread": 9 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1083021, + "thread": 16 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1254167, + "thread": 16 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1424157, + "thread": 8 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1608542, + "thread": 17 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1767596, + "thread": 22 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 1823455, + "thread": 19 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2090346, + "thread": 19 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2273120, + "thread": 31 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2324196, + "thread": 8 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2616438, + "thread": 2 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2658909, + "thread": 19 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2864238, + "thread": 3 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 2971602, + "thread": 17 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 3198689, + "thread": 10 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 3361143, + "thread": 6 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 3483832, + "thread": 2 + } + }, + { + "amount": "484.795579336", + "slot": { + "period": 3677972, + "thread": 18 + } + }, + { + "amount": "484.795579328", + "slot": { + "period": 3796054, + "thread": 4 + } + } + ], + "AU1VLJr6xta4RpYmRtmUo2YzbkdhdYV9h54u4zqynsnacwsP5Wyu": [ + { + "amount": "183.715830323", + "slot": { + "period": 129734, + "thread": 25 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 264893, + "thread": 29 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 343710, + "thread": 4 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 577647, + "thread": 0 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 684649, + "thread": 25 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 863436, + "thread": 24 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1126725, + "thread": 26 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1188564, + "thread": 23 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1389894, + "thread": 11 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1566631, + "thread": 13 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1686821, + "thread": 13 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 1966734, + "thread": 27 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2115680, + "thread": 24 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2291048, + "thread": 26 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2412874, + "thread": 8 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2511302, + "thread": 4 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2638706, + "thread": 13 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2801912, + "thread": 24 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 2986506, + "thread": 27 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 3273118, + "thread": 28 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 3328499, + "thread": 19 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 3601460, + "thread": 3 + } + }, + { + "amount": "183.715830323", + "slot": { + "period": 3728965, + "thread": 11 + } + }, + { + "amount": "183.715830316", + "slot": { + "period": 3870646, + "thread": 17 + } + } + ], + "AU1VMKCuLBu4U8UqGZqTJg7pYYpiBz5fagfXK5apJLnbsvtb7jFa": [ + { + "amount": "243.102816564", + "slot": { + "period": 67750, + "thread": 22 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 193474, + "thread": 15 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 439290, + "thread": 21 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 582799, + "thread": 5 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 778048, + "thread": 16 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 919277, + "thread": 20 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1137677, + "thread": 26 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1161941, + "thread": 3 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1457042, + "thread": 3 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1548864, + "thread": 25 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1808315, + "thread": 5 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 1830605, + "thread": 16 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2089161, + "thread": 8 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2166967, + "thread": 3 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2392294, + "thread": 3 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2611419, + "thread": 23 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2695936, + "thread": 29 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 2897341, + "thread": 17 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 3035963, + "thread": 27 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 3180024, + "thread": 2 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 3435237, + "thread": 28 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 3518455, + "thread": 11 + } + }, + { + "amount": "243.102816564", + "slot": { + "period": 3619845, + "thread": 23 + } + }, + { + "amount": "243.102816566", + "slot": { + "period": 3896015, + "thread": 22 + } + } + ], + "AU1VMLDaqPet4YucsuusdWWgbA4AgkjfhUgoKNVGn7UVisSFv5nw": [ + { + "amount": "103.762262661", + "slot": { + "period": 88861, + "thread": 21 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 284356, + "thread": 10 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 432881, + "thread": 21 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 522871, + "thread": 4 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 772380, + "thread": 7 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 898902, + "thread": 2 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1145779, + "thread": 19 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1249260, + "thread": 2 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1462192, + "thread": 0 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1585748, + "thread": 17 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1673372, + "thread": 25 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 1840797, + "thread": 0 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2042342, + "thread": 0 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2261211, + "thread": 19 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2306854, + "thread": 11 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2616049, + "thread": 5 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2787787, + "thread": 1 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 2924228, + "thread": 14 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 3079970, + "thread": 30 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 3211749, + "thread": 26 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 3427746, + "thread": 6 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 3521137, + "thread": 11 + } + }, + { + "amount": "103.762262661", + "slot": { + "period": 3733605, + "thread": 31 + } + }, + { + "amount": "103.762262659", + "slot": { + "period": 3884719, + "thread": 18 + } + } + ], + "AU1VN2W1syxPNfzLmugVAAwyEDVXMuD7TuqhW3ecX2C1HkKSrYpg": [ + { + "amount": "140.529777522", + "slot": { + "period": 42148, + "thread": 6 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 221311, + "thread": 26 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 476506, + "thread": 13 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 577526, + "thread": 16 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 766026, + "thread": 17 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 859582, + "thread": 14 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1048026, + "thread": 31 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1210996, + "thread": 20 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1321696, + "thread": 2 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1527267, + "thread": 30 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1792117, + "thread": 16 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 1917745, + "thread": 30 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2108120, + "thread": 31 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2258357, + "thread": 19 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2311924, + "thread": 13 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2549012, + "thread": 24 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2717916, + "thread": 28 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 2813598, + "thread": 1 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 3105650, + "thread": 5 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 3148469, + "thread": 17 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 3400649, + "thread": 21 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 3551970, + "thread": 3 + } + }, + { + "amount": "140.529777522", + "slot": { + "period": 3715021, + "thread": 6 + } + }, + { + "amount": "140.529777513", + "slot": { + "period": 3926921, + "thread": 5 + } + } + ], + "AU1VNML3Qowtxf2iXx9nnhXqDWT5KtW3uEJA8xuQ6n7uP2EuY2Qt": [ + { + "amount": "180.352235429", + "slot": { + "period": 28305, + "thread": 25 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 169163, + "thread": 18 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 449176, + "thread": 28 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 549155, + "thread": 10 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 663163, + "thread": 11 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 889448, + "thread": 4 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1088987, + "thread": 14 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1204753, + "thread": 20 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1436389, + "thread": 26 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1633701, + "thread": 3 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1653062, + "thread": 9 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1856075, + "thread": 12 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 1998504, + "thread": 3 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2153188, + "thread": 10 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2455142, + "thread": 2 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2556095, + "thread": 21 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2708904, + "thread": 21 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2885114, + "thread": 11 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 2991531, + "thread": 16 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 3125854, + "thread": 5 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 3363499, + "thread": 14 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 3586850, + "thread": 28 + } + }, + { + "amount": "180.352235429", + "slot": { + "period": 3648210, + "thread": 11 + } + }, + { + "amount": "180.352235434", + "slot": { + "period": 3913353, + "thread": 17 + } + } + ], + "AU1VPCSoizzjoeyEfysNoCBzT4N4vGXekxC8dWJxEB5hN2fi1frr": [ + { + "amount": "217.287281898", + "slot": { + "period": 11377, + "thread": 24 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 316499, + "thread": 2 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 401124, + "thread": 3 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 558497, + "thread": 12 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 811646, + "thread": 19 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 837550, + "thread": 31 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1115925, + "thread": 27 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1304258, + "thread": 25 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1454780, + "thread": 31 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1483330, + "thread": 30 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1779884, + "thread": 8 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 1895142, + "thread": 26 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2036138, + "thread": 2 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2161224, + "thread": 10 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2434083, + "thread": 8 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2541933, + "thread": 20 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2704733, + "thread": 7 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2883670, + "thread": 17 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 2966052, + "thread": 10 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 3242532, + "thread": 0 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 3395560, + "thread": 15 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 3596276, + "thread": 4 + } + }, + { + "amount": "217.287281898", + "slot": { + "period": 3738686, + "thread": 16 + } + }, + { + "amount": "217.287281892", + "slot": { + "period": 3924891, + "thread": 8 + } + } + ], + "AU1VPnJ28QUrso2kgAo67hY772D2nbuXea5pMaGbFUiEHZvGrbxe": [ + { + "amount": "314.997904707", + "slot": { + "period": 99440, + "thread": 7 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 299614, + "thread": 19 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 479966, + "thread": 28 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 574596, + "thread": 0 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 727734, + "thread": 14 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 864182, + "thread": 6 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1033526, + "thread": 17 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1151713, + "thread": 4 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1406725, + "thread": 18 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1628062, + "thread": 7 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1800720, + "thread": 28 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 1957620, + "thread": 22 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2125757, + "thread": 22 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2169681, + "thread": 0 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2411868, + "thread": 26 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2594452, + "thread": 27 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2775517, + "thread": 26 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 2824051, + "thread": 23 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 3072775, + "thread": 22 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 3123790, + "thread": 10 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 3339854, + "thread": 13 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 3451222, + "thread": 14 + } + }, + { + "amount": "314.997904707", + "slot": { + "period": 3650760, + "thread": 8 + } + }, + { + "amount": "314.997904699", + "slot": { + "period": 3923290, + "thread": 11 + } + } + ], + "AU1VQMEQZaLLZBAiummFhoTXTSGJ4qiXgJgpqjH9x9uwRPWaQdGo": [ + { + "amount": "130.263318055", + "slot": { + "period": 90911, + "thread": 4 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 214027, + "thread": 16 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 344105, + "thread": 20 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 508959, + "thread": 9 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 662350, + "thread": 12 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 867675, + "thread": 30 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1118349, + "thread": 25 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1290308, + "thread": 15 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1360209, + "thread": 4 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1567667, + "thread": 9 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1664362, + "thread": 20 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1922112, + "thread": 4 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 1980921, + "thread": 31 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 2147161, + "thread": 19 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 2387594, + "thread": 22 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 2478040, + "thread": 31 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 2637521, + "thread": 31 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 2795146, + "thread": 15 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 3060882, + "thread": 27 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 3124380, + "thread": 4 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 3385860, + "thread": 17 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 3541054, + "thread": 30 + } + }, + { + "amount": "130.263318055", + "slot": { + "period": 3707976, + "thread": 25 + } + }, + { + "amount": "130.263318047", + "slot": { + "period": 3913073, + "thread": 10 + } + } + ], + "AU1VQaH4FRrKoUuFaDodf6LfErNjhaaxMamG1g3DxxST1TcP54ms": [ + { + "amount": "115.585988978", + "slot": { + "period": 60316, + "thread": 22 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 226016, + "thread": 31 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 347945, + "thread": 17 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 623556, + "thread": 14 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 807549, + "thread": 10 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 950561, + "thread": 11 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1037823, + "thread": 9 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1292563, + "thread": 27 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1354987, + "thread": 7 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1580521, + "thread": 28 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1759065, + "thread": 30 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 1913440, + "thread": 14 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2098992, + "thread": 30 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2289638, + "thread": 27 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2448245, + "thread": 3 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2487575, + "thread": 8 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2778600, + "thread": 17 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 2824284, + "thread": 30 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 3041767, + "thread": 29 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 3275580, + "thread": 19 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 3447815, + "thread": 19 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 3585397, + "thread": 25 + } + }, + { + "amount": "115.585988978", + "slot": { + "period": 3646413, + "thread": 24 + } + }, + { + "amount": "115.585988968", + "slot": { + "period": 3804121, + "thread": 13 + } + } + ], + "AU1VRSMJqMrdCEUk1xMPccTYRbPVXEG6gJnKYyZFFCDBhUVS5SQM": [ + { + "amount": "142.815666577", + "slot": { + "period": 50096, + "thread": 24 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 264363, + "thread": 10 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 447045, + "thread": 28 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 584151, + "thread": 30 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 682094, + "thread": 2 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 891979, + "thread": 13 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1091643, + "thread": 0 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1219008, + "thread": 15 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1475588, + "thread": 13 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1513676, + "thread": 18 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1714543, + "thread": 25 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 1870028, + "thread": 6 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2096997, + "thread": 19 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2214217, + "thread": 20 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2309097, + "thread": 12 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2553886, + "thread": 14 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2753003, + "thread": 30 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 2856886, + "thread": 21 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 3081326, + "thread": 16 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 3256780, + "thread": 11 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 3335880, + "thread": 17 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 3491826, + "thread": 25 + } + }, + { + "amount": "142.815666577", + "slot": { + "period": 3634992, + "thread": 6 + } + }, + { + "amount": "142.815666586", + "slot": { + "period": 3937210, + "thread": 21 + } + } + ], + "AU1VRTW4v6teVboa7yRU2LHaKuKp4L7jgwFQWCZE7cjRBycmjA14": [ + { + "amount": "69.256216929", + "slot": { + "period": 131525, + "thread": 26 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 210597, + "thread": 28 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 416896, + "thread": 13 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 594606, + "thread": 19 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 718134, + "thread": 27 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 981372, + "thread": 27 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 997215, + "thread": 24 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 1182984, + "thread": 28 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 1408692, + "thread": 30 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 1532327, + "thread": 2 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 1744136, + "thread": 1 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 1924564, + "thread": 2 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2024686, + "thread": 21 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2251619, + "thread": 15 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2403435, + "thread": 11 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2504898, + "thread": 2 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2740041, + "thread": 25 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 2881520, + "thread": 9 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 3100025, + "thread": 3 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 3242790, + "thread": 19 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 3434824, + "thread": 25 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 3587016, + "thread": 20 + } + }, + { + "amount": "69.256216929", + "slot": { + "period": 3700300, + "thread": 2 + } + }, + { + "amount": "69.256216930", + "slot": { + "period": 3789309, + "thread": 7 + } + } + ], + "AU1VRoQuqjxrDDbrYvzoab8pQQsbkoSDqPRGkHP16ZnHw4BiYh7w": [ + { + "amount": "144.335604517", + "slot": { + "period": 64513, + "thread": 3 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 182872, + "thread": 5 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 384566, + "thread": 4 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 543925, + "thread": 1 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 808404, + "thread": 30 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 958594, + "thread": 8 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1004670, + "thread": 29 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1249093, + "thread": 28 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1421275, + "thread": 11 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1608084, + "thread": 13 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1672329, + "thread": 18 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 1895554, + "thread": 10 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2022855, + "thread": 30 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2268266, + "thread": 28 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2450031, + "thread": 28 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2470385, + "thread": 4 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2662198, + "thread": 5 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 2878086, + "thread": 24 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 3054796, + "thread": 13 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 3265606, + "thread": 2 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 3364167, + "thread": 5 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 3567073, + "thread": 31 + } + }, + { + "amount": "144.335604517", + "slot": { + "period": 3640606, + "thread": 5 + } + }, + { + "amount": "144.335604528", + "slot": { + "period": 3897126, + "thread": 23 + } + } + ], + "AU1VRysUEDUyy2vJeNQphbbru5TgveP7k8CLuKbNECnWzybNtMmG": [ + { + "amount": "93.387646767", + "slot": { + "period": 49896, + "thread": 14 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 256668, + "thread": 16 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 324761, + "thread": 2 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 506728, + "thread": 27 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 774333, + "thread": 3 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 958777, + "thread": 10 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1041044, + "thread": 0 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1204230, + "thread": 4 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1381384, + "thread": 13 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1548748, + "thread": 16 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1698094, + "thread": 13 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 1922280, + "thread": 24 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2097378, + "thread": 9 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2179967, + "thread": 21 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2338717, + "thread": 19 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2547930, + "thread": 11 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2762362, + "thread": 16 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2927340, + "thread": 10 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 2958071, + "thread": 7 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 3244924, + "thread": 2 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 3450390, + "thread": 22 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 3565265, + "thread": 18 + } + }, + { + "amount": "93.387646767", + "slot": { + "period": 3666744, + "thread": 5 + } + }, + { + "amount": "93.387646775", + "slot": { + "period": 3858768, + "thread": 23 + } + } + ], + "AU1VS9MGfdpJoaB5DBcW6LJVcwagv4vqA9qMxSDdeYsfGnCVqEH": [ + { + "amount": "184.820806027", + "slot": { + "period": 90520, + "thread": 0 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 246921, + "thread": 6 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 453914, + "thread": 1 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 569571, + "thread": 7 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 795390, + "thread": 8 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 848493, + "thread": 25 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 992346, + "thread": 27 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 1232189, + "thread": 15 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 1402255, + "thread": 20 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 1620221, + "thread": 15 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 1664555, + "thread": 30 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 1954791, + "thread": 31 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2071316, + "thread": 25 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2223706, + "thread": 29 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2410053, + "thread": 27 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2532851, + "thread": 7 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2725541, + "thread": 0 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 2806496, + "thread": 6 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 3046392, + "thread": 25 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 3199395, + "thread": 3 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 3371213, + "thread": 31 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 3560091, + "thread": 13 + } + }, + { + "amount": "184.820806027", + "slot": { + "period": 3675408, + "thread": 22 + } + }, + { + "amount": "184.820806025", + "slot": { + "period": 3882460, + "thread": 25 + } + } + ], + "AU1VSFH8th6MwfafwLbZoWxEAywi5M9GM687aD3BAa9XsmRVKeRi": [ + { + "amount": "148.792027594", + "slot": { + "period": 15781, + "thread": 21 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 233580, + "thread": 27 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 329584, + "thread": 16 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 519064, + "thread": 9 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 718211, + "thread": 31 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 955864, + "thread": 12 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1075583, + "thread": 6 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1230615, + "thread": 21 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1374597, + "thread": 23 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1487926, + "thread": 19 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1655546, + "thread": 29 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1830322, + "thread": 2 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 1995108, + "thread": 16 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 2220455, + "thread": 0 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 2372079, + "thread": 21 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 2579113, + "thread": 26 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 2788168, + "thread": 19 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 2843896, + "thread": 30 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 3098609, + "thread": 17 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 3266616, + "thread": 1 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 3379576, + "thread": 14 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 3597267, + "thread": 4 + } + }, + { + "amount": "148.792027594", + "slot": { + "period": 3685678, + "thread": 28 + } + }, + { + "amount": "148.792027589", + "slot": { + "period": 3894540, + "thread": 5 + } + } + ], + "AU1VSJB24FeTnt3R85xUooaBqT2zr3Xb4CwHJE4UVU78dit1Bxmh": [ + { + "amount": "55.002963865", + "slot": { + "period": 125021, + "thread": 8 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 234875, + "thread": 2 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 466105, + "thread": 22 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 626803, + "thread": 16 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 816374, + "thread": 29 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 881745, + "thread": 15 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1023562, + "thread": 12 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1258075, + "thread": 19 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1319369, + "thread": 28 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1500352, + "thread": 19 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1751467, + "thread": 12 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 1862022, + "thread": 26 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2024967, + "thread": 12 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2256880, + "thread": 17 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2356687, + "thread": 2 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2557540, + "thread": 4 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2669606, + "thread": 30 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 2836416, + "thread": 8 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 3102498, + "thread": 5 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 3144561, + "thread": 25 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 3295336, + "thread": 31 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 3616844, + "thread": 8 + } + }, + { + "amount": "55.002963865", + "slot": { + "period": 3678015, + "thread": 18 + } + }, + { + "amount": "55.002963856", + "slot": { + "period": 3947197, + "thread": 27 + } + } + ], + "AU1VSfdBxRs2bLM4oiX8Xzd9oeZut6U8y5KLLoiNQGxvvZoD52eN": [ + { + "amount": "93.321135176", + "slot": { + "period": 53280, + "thread": 20 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 266569, + "thread": 12 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 480650, + "thread": 14 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 601555, + "thread": 25 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 697974, + "thread": 0 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 877927, + "thread": 5 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 987938, + "thread": 15 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 1272778, + "thread": 26 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 1370468, + "thread": 22 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 1536917, + "thread": 3 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 1756847, + "thread": 25 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 1888175, + "thread": 15 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2015073, + "thread": 6 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2240990, + "thread": 8 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2327971, + "thread": 7 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2571643, + "thread": 8 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2766419, + "thread": 19 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 2804333, + "thread": 10 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 3094911, + "thread": 0 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 3153297, + "thread": 15 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 3334947, + "thread": 11 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 3562402, + "thread": 11 + } + }, + { + "amount": "93.321135176", + "slot": { + "period": 3728978, + "thread": 23 + } + }, + { + "amount": "93.321135170", + "slot": { + "period": 3875280, + "thread": 8 + } + } + ], + "AU1VUCBswCoWbGNmxnZpCGuocFwjniCKoxRCCWFBsGBry2zdvADC": [ + { + "amount": "180.536024335", + "slot": { + "period": 93552, + "thread": 20 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 247226, + "thread": 2 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 405839, + "thread": 27 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 565215, + "thread": 18 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 793135, + "thread": 7 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 941430, + "thread": 22 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1147620, + "thread": 4 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1201548, + "thread": 28 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1472368, + "thread": 3 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1517743, + "thread": 3 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1768760, + "thread": 3 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 1908643, + "thread": 3 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2057792, + "thread": 18 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2204274, + "thread": 29 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2344109, + "thread": 12 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2587426, + "thread": 13 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2723913, + "thread": 30 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2851538, + "thread": 12 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 2964873, + "thread": 15 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 3205460, + "thread": 29 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 3330763, + "thread": 17 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 3522899, + "thread": 12 + } + }, + { + "amount": "180.536024335", + "slot": { + "period": 3676135, + "thread": 26 + } + }, + { + "amount": "180.536024329", + "slot": { + "period": 3812790, + "thread": 9 + } + } + ], + "AU1VUYYJCq2AeuRsTvVYSCk8bHQJueAk1yAgxSrQ298yaMJT1DgR": [ + { + "amount": "561.334256063", + "slot": { + "period": 108433, + "thread": 3 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 251102, + "thread": 7 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 457639, + "thread": 3 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 494443, + "thread": 6 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 669294, + "thread": 19 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 982335, + "thread": 8 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1088468, + "thread": 10 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1251626, + "thread": 20 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1325775, + "thread": 11 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1552162, + "thread": 10 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1780804, + "thread": 9 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 1869484, + "thread": 1 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2049189, + "thread": 7 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2284295, + "thread": 25 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2413923, + "thread": 13 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2599694, + "thread": 27 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2770970, + "thread": 7 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 2914097, + "thread": 27 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 3060838, + "thread": 22 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 3239216, + "thread": 5 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 3353439, + "thread": 4 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 3525268, + "thread": 18 + } + }, + { + "amount": "561.334256063", + "slot": { + "period": 3684600, + "thread": 13 + } + }, + { + "amount": "561.334256055", + "slot": { + "period": 3875602, + "thread": 12 + } + } + ], + "AU1VWdHqyTeuWZ1aGrKBzFueJPtYiJ19NiegsdS3PJ9dabNg5gLz": [ + { + "amount": "1947.859074211", + "slot": { + "period": 30829, + "thread": 14 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 306982, + "thread": 28 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 380871, + "thread": 17 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 523701, + "thread": 5 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 663518, + "thread": 15 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 849038, + "thread": 13 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1022338, + "thread": 12 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1193091, + "thread": 7 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1352322, + "thread": 17 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1583556, + "thread": 16 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1693142, + "thread": 19 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 1915216, + "thread": 11 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2065866, + "thread": 16 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2223029, + "thread": 22 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2460752, + "thread": 19 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2509553, + "thread": 13 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2786742, + "thread": 17 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 2910842, + "thread": 13 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 3032589, + "thread": 10 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 3190309, + "thread": 6 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 3336527, + "thread": 0 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 3460581, + "thread": 17 + } + }, + { + "amount": "1947.859074211", + "slot": { + "period": 3769327, + "thread": 5 + } + }, + { + "amount": "1947.859074224", + "slot": { + "period": 3829640, + "thread": 26 + } + } + ], + "AU1VYAAyQbgkiAoM6UXrzyeaSG9JNWEp97gy1FPYmyT4BufiSaku": [ + { + "amount": "104.080700208", + "slot": { + "period": 45261, + "thread": 28 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 169411, + "thread": 13 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 439166, + "thread": 18 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 509356, + "thread": 23 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 659998, + "thread": 13 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 941338, + "thread": 12 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1062385, + "thread": 18 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1242247, + "thread": 4 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1447482, + "thread": 18 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1580141, + "thread": 28 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1682240, + "thread": 14 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 1941609, + "thread": 11 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2006810, + "thread": 3 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2154741, + "thread": 2 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2362108, + "thread": 20 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2563539, + "thread": 7 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2707474, + "thread": 8 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 2952995, + "thread": 2 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 3064692, + "thread": 8 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 3232394, + "thread": 14 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 3292320, + "thread": 6 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 3563926, + "thread": 9 + } + }, + { + "amount": "104.080700208", + "slot": { + "period": 3661570, + "thread": 21 + } + }, + { + "amount": "104.080700210", + "slot": { + "period": 3894630, + "thread": 1 + } + } + ], + "AU1VYLBkbDBmrKTzqMRFUaDFzA6wgGpt4ZSdWu2aEK8bNpQYJZPv": [ + { + "amount": "136.558335434", + "slot": { + "period": 147909, + "thread": 3 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 207258, + "thread": 23 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 407510, + "thread": 3 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 585473, + "thread": 1 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 680773, + "thread": 3 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 950703, + "thread": 9 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1083362, + "thread": 12 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1207621, + "thread": 29 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1406852, + "thread": 5 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1635848, + "thread": 10 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1783380, + "thread": 9 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 1957412, + "thread": 1 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2064801, + "thread": 1 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2267991, + "thread": 3 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2295357, + "thread": 9 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2594236, + "thread": 29 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2756578, + "thread": 25 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 2881414, + "thread": 26 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3071253, + "thread": 14 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3225091, + "thread": 7 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3411341, + "thread": 9 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3562752, + "thread": 21 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3717903, + "thread": 13 + } + }, + { + "amount": "136.558335434", + "slot": { + "period": 3878984, + "thread": 11 + } + } + ], + "AU1VZG4iyoMAPPr3hvkqqrAM4XwPrFj663A9ZZhXLWukKUxaiFuU": [ + { + "amount": "54.926481472", + "slot": { + "period": 91200, + "thread": 7 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 317624, + "thread": 28 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 473888, + "thread": 27 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 521676, + "thread": 3 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 747485, + "thread": 27 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 877991, + "thread": 18 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1024277, + "thread": 7 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1159753, + "thread": 1 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1431653, + "thread": 3 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1522868, + "thread": 9 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1740515, + "thread": 8 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 1909218, + "thread": 29 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2075193, + "thread": 13 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2178523, + "thread": 2 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2396727, + "thread": 0 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2608354, + "thread": 9 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2693636, + "thread": 28 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 2901858, + "thread": 15 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 3009658, + "thread": 22 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 3165658, + "thread": 15 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 3330054, + "thread": 10 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 3523446, + "thread": 12 + } + }, + { + "amount": "54.926481472", + "slot": { + "period": 3681859, + "thread": 16 + } + }, + { + "amount": "54.926481481", + "slot": { + "period": 3933734, + "thread": 26 + } + } + ], + "AU1VarC8NPKWSf3fsjLZco5wjTMQxj7HYNkpMyxxFUNzToMqWeBM": [ + { + "amount": "87.081790661", + "slot": { + "period": 152469, + "thread": 26 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 205612, + "thread": 0 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 426830, + "thread": 30 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 556336, + "thread": 24 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 760183, + "thread": 19 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 824553, + "thread": 14 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1037549, + "thread": 29 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1238690, + "thread": 11 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1358994, + "thread": 23 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1592654, + "thread": 29 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1655189, + "thread": 20 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 1829888, + "thread": 16 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2098422, + "thread": 23 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2188453, + "thread": 19 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2409938, + "thread": 23 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2593499, + "thread": 25 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2784745, + "thread": 15 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 2848611, + "thread": 29 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 3058344, + "thread": 13 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 3265073, + "thread": 31 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 3365086, + "thread": 29 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 3542255, + "thread": 3 + } + }, + { + "amount": "87.081790661", + "slot": { + "period": 3656202, + "thread": 17 + } + }, + { + "amount": "87.081790662", + "slot": { + "period": 3789912, + "thread": 19 + } + } + ], + "AU1Vb6ZfJwqQbbUeWUTp3Ujra5tfqkqELdmhfox5igLhihBRHAUD": [ + { + "amount": "157.763769732", + "slot": { + "period": 79938, + "thread": 10 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 243222, + "thread": 26 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 345181, + "thread": 9 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 574536, + "thread": 5 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 688266, + "thread": 14 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 893052, + "thread": 21 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1031453, + "thread": 20 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1278754, + "thread": 19 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1351851, + "thread": 1 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1526293, + "thread": 2 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1728692, + "thread": 27 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 1924507, + "thread": 20 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2091852, + "thread": 8 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2249817, + "thread": 12 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2406598, + "thread": 2 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2555773, + "thread": 25 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2784596, + "thread": 1 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 2873788, + "thread": 27 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 3086272, + "thread": 0 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 3180136, + "thread": 30 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 3326829, + "thread": 8 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 3554934, + "thread": 28 + } + }, + { + "amount": "157.763769732", + "slot": { + "period": 3633475, + "thread": 4 + } + }, + { + "amount": "157.763769742", + "slot": { + "period": 3835152, + "thread": 8 + } + } + ], + "AU1VbSvZb3uJvvuu1NXGFEtpqesaVbJt3PBWCRF92TsJWWtPY263": [ + { + "amount": "234.611866912", + "slot": { + "period": 128458, + "thread": 1 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 301845, + "thread": 9 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 404096, + "thread": 30 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 611898, + "thread": 25 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 808007, + "thread": 4 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 967380, + "thread": 23 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1125381, + "thread": 13 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1165305, + "thread": 29 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1373127, + "thread": 20 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1510924, + "thread": 7 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1739396, + "thread": 25 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 1925477, + "thread": 20 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2024124, + "thread": 20 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2202927, + "thread": 5 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2445001, + "thread": 23 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2492974, + "thread": 15 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2625550, + "thread": 17 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 2828359, + "thread": 20 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 3093609, + "thread": 19 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 3208291, + "thread": 21 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 3421594, + "thread": 0 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 3466555, + "thread": 20 + } + }, + { + "amount": "234.611866912", + "slot": { + "period": 3737122, + "thread": 31 + } + }, + { + "amount": "234.611866916", + "slot": { + "period": 3930429, + "thread": 11 + } + } + ], + "AU1VcPGgQj742HHY3DLoERUYmh6MqWPQaMBkPwWg4qLZ3nJ9niba": [ + { + "amount": "418.964424441", + "slot": { + "period": 48202, + "thread": 4 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 310759, + "thread": 30 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 468663, + "thread": 5 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 529665, + "thread": 16 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 750934, + "thread": 29 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 824947, + "thread": 4 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1072898, + "thread": 12 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1302240, + "thread": 22 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1470862, + "thread": 25 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1644080, + "thread": 23 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1798720, + "thread": 21 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 1900801, + "thread": 28 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2073630, + "thread": 14 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2186920, + "thread": 10 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2444192, + "thread": 23 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2565171, + "thread": 15 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2688546, + "thread": 31 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2882482, + "thread": 0 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 2985862, + "thread": 31 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 3285528, + "thread": 24 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 3447917, + "thread": 21 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 3531033, + "thread": 8 + } + }, + { + "amount": "418.964424441", + "slot": { + "period": 3722858, + "thread": 8 + } + }, + { + "amount": "418.964424437", + "slot": { + "period": 3826957, + "thread": 30 + } + } + ], + "AU1VdekHE41FEvi2qU5pKrL9qb48fPGxPHPUFwigHR1VpPK7ikmZ": [ + { + "amount": "5833.333333333", + "slot": { + "period": 129606, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 215951, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 355390, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 641332, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 669429, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 872846, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1131806, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1209762, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1439900, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1499122, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1671255, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1907686, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2040031, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2188225, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2321321, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2541909, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2785482, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2923113, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3018512, + "thread": 26 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3231898, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3345296, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3600634, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3659934, + "thread": 20 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3872643, + "thread": 5 + } + } + ], + "AU1Veac2f5YNKQ14juUcsmnYnMf3bHW3YsCMyqbxaRhkBjFFDKaT": [ + { + "amount": "430.875495351", + "slot": { + "period": 108268, + "thread": 4 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 236879, + "thread": 2 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 417448, + "thread": 15 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 615006, + "thread": 29 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 812636, + "thread": 8 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 831374, + "thread": 12 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1091929, + "thread": 23 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1153712, + "thread": 30 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1439852, + "thread": 12 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1514833, + "thread": 24 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1788823, + "thread": 15 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 1828444, + "thread": 20 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2065444, + "thread": 0 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2260951, + "thread": 17 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2319017, + "thread": 14 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2573649, + "thread": 12 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2730098, + "thread": 24 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 2845652, + "thread": 8 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 3061254, + "thread": 31 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 3208162, + "thread": 5 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 3413464, + "thread": 24 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 3606887, + "thread": 17 + } + }, + { + "amount": "430.875495351", + "slot": { + "period": 3652385, + "thread": 27 + } + }, + { + "amount": "430.875495359", + "slot": { + "period": 3853299, + "thread": 28 + } + } + ], + "AU1VfXYJBvsY3f65EaC2CMc2pfuLqtcvVK45aKDzmz3X7yGFrYmZ": [ + { + "amount": "360.497241908", + "slot": { + "period": 11999, + "thread": 11 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 174711, + "thread": 14 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 485896, + "thread": 0 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 641379, + "thread": 3 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 792403, + "thread": 25 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 966941, + "thread": 3 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1111025, + "thread": 21 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1257954, + "thread": 2 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1411703, + "thread": 6 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1594557, + "thread": 20 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1714079, + "thread": 5 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 1868171, + "thread": 10 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2090555, + "thread": 19 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2231491, + "thread": 22 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2305496, + "thread": 14 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2579892, + "thread": 20 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2734304, + "thread": 25 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 2893402, + "thread": 16 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 3066708, + "thread": 8 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 3223027, + "thread": 7 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 3379368, + "thread": 24 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 3555506, + "thread": 23 + } + }, + { + "amount": "360.497241908", + "slot": { + "period": 3761881, + "thread": 21 + } + }, + { + "amount": "360.497241905", + "slot": { + "period": 3833650, + "thread": 4 + } + } + ], + "AU1Vg6Lh6J1fnHRbZyKHt4KYbNyRoqN4S61EvLr8E8ocL31biBnU": [ + { + "amount": "52.196589695", + "slot": { + "period": 84644, + "thread": 24 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 199874, + "thread": 10 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 438482, + "thread": 5 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 494815, + "thread": 3 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 784214, + "thread": 15 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 841916, + "thread": 17 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1113115, + "thread": 25 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1227493, + "thread": 2 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1361861, + "thread": 10 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1488300, + "thread": 16 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1713801, + "thread": 14 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 1953675, + "thread": 18 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2129086, + "thread": 27 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2218518, + "thread": 28 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2385483, + "thread": 15 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2618497, + "thread": 12 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2788842, + "thread": 5 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 2862715, + "thread": 2 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 3086069, + "thread": 11 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 3139824, + "thread": 7 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 3313280, + "thread": 1 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 3561123, + "thread": 7 + } + }, + { + "amount": "52.196589695", + "slot": { + "period": 3665336, + "thread": 21 + } + }, + { + "amount": "52.196589691", + "slot": { + "period": 3891109, + "thread": 10 + } + } + ], + "AU1VgCpNyd2JJC3PcRznYh13FMHkEXdU7hSBMizSNxyXMRwaWcdQ": [ + { + "amount": "155.164528943", + "slot": { + "period": 146437, + "thread": 3 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 234259, + "thread": 6 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 339738, + "thread": 17 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 532624, + "thread": 7 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 680854, + "thread": 23 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 920561, + "thread": 10 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1026425, + "thread": 28 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1270001, + "thread": 16 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1342422, + "thread": 13 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1492901, + "thread": 29 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1667215, + "thread": 1 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 1952398, + "thread": 26 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2131178, + "thread": 25 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2203307, + "thread": 22 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2403335, + "thread": 25 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2488304, + "thread": 10 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2729140, + "thread": 21 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 2810802, + "thread": 27 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 3085254, + "thread": 14 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 3276534, + "thread": 3 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 3438160, + "thread": 29 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 3605338, + "thread": 23 + } + }, + { + "amount": "155.164528943", + "slot": { + "period": 3633876, + "thread": 27 + } + }, + { + "amount": "155.164528951", + "slot": { + "period": 3941180, + "thread": 2 + } + } + ], + "AU1VgvtVZmegG8YNueYg7hwx9c6jAp2KKpexqqqPUUvQPrtSB7tM": [ + { + "amount": "293.503773132", + "slot": { + "period": 102332, + "thread": 25 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 252955, + "thread": 21 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 346845, + "thread": 23 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 563898, + "thread": 29 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 728397, + "thread": 13 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 903799, + "thread": 19 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1134954, + "thread": 15 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1170249, + "thread": 12 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1400574, + "thread": 1 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1592832, + "thread": 1 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1664255, + "thread": 25 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1887499, + "thread": 13 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 1985745, + "thread": 2 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 2280555, + "thread": 20 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 2437441, + "thread": 7 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 2516127, + "thread": 25 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 2697730, + "thread": 23 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 2921440, + "thread": 20 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 3056860, + "thread": 10 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 3207653, + "thread": 26 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 3363261, + "thread": 11 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 3469201, + "thread": 24 + } + }, + { + "amount": "293.503773132", + "slot": { + "period": 3680332, + "thread": 11 + } + }, + { + "amount": "293.503773133", + "slot": { + "period": 3875817, + "thread": 11 + } + } + ], + "AU1ViAH9oEptznoCAbeA5sWt5ZGPwrVHht31xfa1TaQ7oePGZMQF": [ + { + "amount": "265.655628075", + "slot": { + "period": 60002, + "thread": 30 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 288787, + "thread": 29 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 384658, + "thread": 17 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 632067, + "thread": 0 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 784513, + "thread": 29 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 888142, + "thread": 22 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1031647, + "thread": 13 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1205264, + "thread": 10 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1394673, + "thread": 7 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1603482, + "thread": 4 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1665533, + "thread": 30 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 1855332, + "thread": 31 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2002146, + "thread": 16 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2246662, + "thread": 22 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2404037, + "thread": 18 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2527054, + "thread": 2 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2791472, + "thread": 2 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2900840, + "thread": 7 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 2964169, + "thread": 5 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 3146204, + "thread": 21 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 3370366, + "thread": 19 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 3571127, + "thread": 1 + } + }, + { + "amount": "265.655628075", + "slot": { + "period": 3725316, + "thread": 4 + } + }, + { + "amount": "265.655628064", + "slot": { + "period": 3803525, + "thread": 21 + } + } + ], + "AU1VjgHLwEd6gmJN2gVNemmQJe4Lxb8YSMRAdGWfBqySJV3evmqP": [ + { + "amount": "489.349027628", + "slot": { + "period": 29535, + "thread": 26 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 285677, + "thread": 1 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 434315, + "thread": 28 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 600864, + "thread": 6 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 759096, + "thread": 23 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 826538, + "thread": 16 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1017112, + "thread": 28 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1187291, + "thread": 30 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1366034, + "thread": 2 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1600129, + "thread": 3 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1782310, + "thread": 15 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 1874122, + "thread": 1 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2132012, + "thread": 27 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2291101, + "thread": 6 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2307300, + "thread": 13 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2543923, + "thread": 26 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2677987, + "thread": 23 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 2929948, + "thread": 11 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 3058594, + "thread": 28 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 3262360, + "thread": 14 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 3388956, + "thread": 23 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 3473435, + "thread": 1 + } + }, + { + "amount": "489.349027628", + "slot": { + "period": 3622233, + "thread": 27 + } + }, + { + "amount": "489.349027621", + "slot": { + "period": 3799972, + "thread": 26 + } + } + ], + "AU1VjtDRMsyccF6Uhh7AGtb91jN2t2us73mBZRNoJZ3HhvpTHoZq": [ + { + "amount": "93.142619828", + "slot": { + "period": 51392, + "thread": 21 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 269064, + "thread": 7 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 449062, + "thread": 27 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 531388, + "thread": 18 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 663598, + "thread": 10 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 959040, + "thread": 29 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1048574, + "thread": 5 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1311442, + "thread": 12 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1459166, + "thread": 23 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1585984, + "thread": 4 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1690160, + "thread": 9 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 1955137, + "thread": 8 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2022473, + "thread": 21 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2266782, + "thread": 9 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2388404, + "thread": 28 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2556108, + "thread": 13 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2786115, + "thread": 9 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 2890128, + "thread": 26 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 3056922, + "thread": 30 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 3163955, + "thread": 28 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 3422211, + "thread": 1 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 3465760, + "thread": 23 + } + }, + { + "amount": "93.142619828", + "slot": { + "period": 3706774, + "thread": 19 + } + }, + { + "amount": "93.142619825", + "slot": { + "period": 3856541, + "thread": 5 + } + } + ], + "AU1VkFTMCnEijmzTD5eeQ1raHEQoj1oAcCnNt14xieoHZ26GNAQX": [ + { + "amount": "79.887904433", + "slot": { + "period": 84403, + "thread": 13 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 230244, + "thread": 13 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 487350, + "thread": 21 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 576351, + "thread": 26 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 807572, + "thread": 1 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 859502, + "thread": 3 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1039442, + "thread": 23 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1229000, + "thread": 9 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1352409, + "thread": 13 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1599782, + "thread": 26 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1772703, + "thread": 18 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 1857206, + "thread": 15 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2046209, + "thread": 8 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2246494, + "thread": 11 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2388846, + "thread": 3 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2564380, + "thread": 10 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2676838, + "thread": 17 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 2821161, + "thread": 0 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 3030394, + "thread": 20 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 3265559, + "thread": 24 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 3311162, + "thread": 29 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 3495599, + "thread": 13 + } + }, + { + "amount": "79.887904433", + "slot": { + "period": 3754299, + "thread": 8 + } + }, + { + "amount": "79.887904441", + "slot": { + "period": 3799451, + "thread": 21 + } + } + ], + "AU1VkNGH5UcgjxRqrAhCHDhhbCagduzCPzv1xL2wCazkNoD242Tv": [ + { + "amount": "334.249925422", + "slot": { + "period": 113975, + "thread": 16 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 319836, + "thread": 15 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 446952, + "thread": 21 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 589214, + "thread": 21 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 755874, + "thread": 10 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 834386, + "thread": 29 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1067831, + "thread": 18 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1292933, + "thread": 15 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1325540, + "thread": 16 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1508389, + "thread": 16 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1651955, + "thread": 22 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1957506, + "thread": 17 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 1979266, + "thread": 5 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 2179343, + "thread": 27 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 2374934, + "thread": 29 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 2550412, + "thread": 17 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 2628069, + "thread": 17 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 2792332, + "thread": 1 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 3049035, + "thread": 23 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 3273866, + "thread": 28 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 3349598, + "thread": 17 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 3599925, + "thread": 10 + } + }, + { + "amount": "334.249925422", + "slot": { + "period": 3722829, + "thread": 9 + } + }, + { + "amount": "334.249925416", + "slot": { + "period": 3832971, + "thread": 1 + } + } + ], + "AU1Vmv5GS4BfZhHrZp6h19QBJVcVfmSk2KqAdndFvBn6H4k5XdFj": [ + { + "amount": "83.560695710", + "slot": { + "period": 83541, + "thread": 14 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 262896, + "thread": 1 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 411443, + "thread": 6 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 616670, + "thread": 3 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 761913, + "thread": 18 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 889695, + "thread": 27 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1101083, + "thread": 9 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1293772, + "thread": 7 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1447246, + "thread": 12 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1557200, + "thread": 24 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1730876, + "thread": 21 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 1907636, + "thread": 2 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2058580, + "thread": 29 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2178429, + "thread": 1 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2382931, + "thread": 29 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2478979, + "thread": 24 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2693529, + "thread": 7 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 2816846, + "thread": 10 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 3036332, + "thread": 22 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 3285657, + "thread": 10 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 3354498, + "thread": 20 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 3496569, + "thread": 4 + } + }, + { + "amount": "83.560695710", + "slot": { + "period": 3681583, + "thread": 4 + } + }, + { + "amount": "83.560695722", + "slot": { + "period": 3801988, + "thread": 15 + } + } + ], + "AU1VoEuEuozacS6fqn3JXk7X8p2YgsTNZy5UnRtFLw9zggMMXciL": [ + { + "amount": "180.742129894", + "slot": { + "period": 73659, + "thread": 2 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 289855, + "thread": 19 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 398398, + "thread": 3 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 610964, + "thread": 28 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 746310, + "thread": 13 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 874720, + "thread": 15 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1068957, + "thread": 20 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1311945, + "thread": 2 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1436801, + "thread": 10 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1540598, + "thread": 0 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1729024, + "thread": 11 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 1858436, + "thread": 17 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2010591, + "thread": 9 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2160585, + "thread": 10 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2377032, + "thread": 28 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2518096, + "thread": 22 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2731783, + "thread": 31 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 2858436, + "thread": 7 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 3109570, + "thread": 7 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 3135366, + "thread": 20 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 3361999, + "thread": 23 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 3535595, + "thread": 6 + } + }, + { + "amount": "180.742129894", + "slot": { + "period": 3750842, + "thread": 9 + } + }, + { + "amount": "180.742129904", + "slot": { + "period": 3935144, + "thread": 12 + } + } + ], + "AU1VoeGRXqY8ZwT4KodA2gVK8mujyZ6W8qZ5wyztoeKUx17JHE3A": [ + { + "amount": "107.144626314", + "slot": { + "period": 138109, + "thread": 26 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 278659, + "thread": 28 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 459965, + "thread": 25 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 581670, + "thread": 12 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 682677, + "thread": 14 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 833900, + "thread": 5 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1106229, + "thread": 7 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1306575, + "thread": 26 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1432089, + "thread": 12 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1507481, + "thread": 6 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1751583, + "thread": 25 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 1945745, + "thread": 8 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2065123, + "thread": 19 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2234723, + "thread": 30 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2315159, + "thread": 0 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2498906, + "thread": 9 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2767167, + "thread": 10 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 2850737, + "thread": 7 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 3102883, + "thread": 22 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 3137026, + "thread": 1 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 3404401, + "thread": 27 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 3467483, + "thread": 13 + } + }, + { + "amount": "107.144626314", + "slot": { + "period": 3674712, + "thread": 11 + } + }, + { + "amount": "107.144626305", + "slot": { + "period": 3881469, + "thread": 17 + } + } + ], + "AU1VqBpE6vux1KUy4giVeqb9fpsHrTx6TPFDXkY6HsUNGLxdwuYm": [ + { + "amount": "90.084499594", + "slot": { + "period": 76019, + "thread": 0 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 294041, + "thread": 12 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 358669, + "thread": 7 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 617979, + "thread": 20 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 691592, + "thread": 4 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 953723, + "thread": 19 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1042790, + "thread": 14 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1195109, + "thread": 10 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1371569, + "thread": 1 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1624163, + "thread": 26 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1747075, + "thread": 31 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 1849782, + "thread": 13 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2022236, + "thread": 19 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2153670, + "thread": 5 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2448247, + "thread": 24 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2496093, + "thread": 1 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2725677, + "thread": 1 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2818531, + "thread": 26 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 2996133, + "thread": 27 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 3227702, + "thread": 3 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 3371718, + "thread": 2 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 3575428, + "thread": 10 + } + }, + { + "amount": "90.084499594", + "slot": { + "period": 3766393, + "thread": 3 + } + }, + { + "amount": "90.084499598", + "slot": { + "period": 3893792, + "thread": 15 + } + } + ], + "AU1VqVQmKjVDBmqoibkovBziH2wF2VaQPLy7Ufw5bWgDEkeDg5MP": [ + { + "amount": "86.877338372", + "slot": { + "period": 126707, + "thread": 19 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 261259, + "thread": 11 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 337574, + "thread": 1 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 553978, + "thread": 21 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 802691, + "thread": 22 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 859094, + "thread": 0 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1127196, + "thread": 29 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1165579, + "thread": 19 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1433757, + "thread": 4 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1491255, + "thread": 27 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1711989, + "thread": 29 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1811060, + "thread": 15 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 1995158, + "thread": 22 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2193754, + "thread": 23 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2395437, + "thread": 8 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2594984, + "thread": 27 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2780810, + "thread": 28 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2884535, + "thread": 11 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 2993808, + "thread": 11 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 3123274, + "thread": 4 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 3391685, + "thread": 26 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 3611549, + "thread": 22 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 3778802, + "thread": 10 + } + }, + { + "amount": "86.877338372", + "slot": { + "period": 3784750, + "thread": 9 + } + } + ], + "AU1VrBjgmmkHvsnECSB5LYWkVs9fsjyWX6B2GAGCPLV5s1bdUWPZ": [ + { + "amount": "106.386460080", + "slot": { + "period": 158933, + "thread": 31 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 310619, + "thread": 12 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 475372, + "thread": 31 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 624466, + "thread": 9 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 768671, + "thread": 10 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 863044, + "thread": 24 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1025685, + "thread": 17 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1260476, + "thread": 20 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1400941, + "thread": 8 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1588683, + "thread": 14 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1665061, + "thread": 4 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 1835326, + "thread": 27 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2138814, + "thread": 5 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2277680, + "thread": 28 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2356934, + "thread": 13 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2563737, + "thread": 19 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2696036, + "thread": 21 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 2953262, + "thread": 28 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 3027327, + "thread": 6 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 3169854, + "thread": 25 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 3319323, + "thread": 4 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 3487527, + "thread": 4 + } + }, + { + "amount": "106.386460080", + "slot": { + "period": 3659184, + "thread": 1 + } + }, + { + "amount": "106.386460092", + "slot": { + "period": 3879617, + "thread": 28 + } + } + ], + "AU1VrWvzCYAepHVzY5b8GPPELYR1K3o3353Ao3WEERsvHi9TghKY": [ + { + "amount": "119.412982626", + "slot": { + "period": 167233, + "thread": 30 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 262972, + "thread": 11 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 438141, + "thread": 0 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 573251, + "thread": 20 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 818524, + "thread": 24 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 836983, + "thread": 3 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1026997, + "thread": 23 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1256870, + "thread": 3 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1331227, + "thread": 28 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1496073, + "thread": 26 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1734526, + "thread": 16 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 1846241, + "thread": 24 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2127950, + "thread": 25 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2156883, + "thread": 14 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2377317, + "thread": 16 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2508881, + "thread": 13 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2664628, + "thread": 28 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 2844483, + "thread": 24 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 3110090, + "thread": 2 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 3238617, + "thread": 29 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 3403610, + "thread": 18 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 3526588, + "thread": 15 + } + }, + { + "amount": "119.412982626", + "slot": { + "period": 3642704, + "thread": 26 + } + }, + { + "amount": "119.412982625", + "slot": { + "period": 3888435, + "thread": 0 + } + } + ], + "AU1Vrsff6G66wL2d6fWMr5XT1WHbbFf5s9kRYyXczAk79UduQx4r": [ + { + "amount": "402.363708931", + "slot": { + "period": 79669, + "thread": 27 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 288815, + "thread": 9 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 489827, + "thread": 23 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 591548, + "thread": 10 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 745459, + "thread": 6 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 887464, + "thread": 9 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1013885, + "thread": 19 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1314993, + "thread": 21 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1437362, + "thread": 15 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1605743, + "thread": 26 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1682498, + "thread": 21 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 1947621, + "thread": 11 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2005219, + "thread": 30 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2291857, + "thread": 14 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2295786, + "thread": 9 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2471700, + "thread": 3 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2661370, + "thread": 5 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 2852312, + "thread": 0 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 3098792, + "thread": 5 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 3140940, + "thread": 21 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 3449054, + "thread": 29 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 3555828, + "thread": 4 + } + }, + { + "amount": "402.363708931", + "slot": { + "period": 3733895, + "thread": 5 + } + }, + { + "amount": "402.363708938", + "slot": { + "period": 3848780, + "thread": 31 + } + } + ], + "AU1VsMHYjpA4p82aC6iVoRC6PodirPCBAUfLGioo9yMQ856mTT6G": [ + { + "amount": "54.344616840", + "slot": { + "period": 99738, + "thread": 22 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 291975, + "thread": 25 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 443405, + "thread": 14 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 591730, + "thread": 31 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 804558, + "thread": 9 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 896739, + "thread": 1 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1122185, + "thread": 1 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1176376, + "thread": 7 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1354115, + "thread": 3 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1538344, + "thread": 30 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1672837, + "thread": 1 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 1960280, + "thread": 26 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2103594, + "thread": 24 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2207537, + "thread": 7 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2355759, + "thread": 31 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2598834, + "thread": 23 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2728333, + "thread": 1 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 2886077, + "thread": 11 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 3063610, + "thread": 29 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 3162726, + "thread": 8 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 3359207, + "thread": 25 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 3461702, + "thread": 27 + } + }, + { + "amount": "54.344616840", + "slot": { + "period": 3708981, + "thread": 19 + } + }, + { + "amount": "54.344616829", + "slot": { + "period": 3940585, + "thread": 8 + } + } + ], + "AU1VsxuGVJA8GJdu9KgrMhBvzYXJuKWpDkAqoJkhNrPzYgNjvGcr": [ + { + "amount": "16203.716666667", + "slot": { + "period": 129893, + "thread": 23 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 311142, + "thread": 3 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 482564, + "thread": 1 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 637897, + "thread": 14 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 714797, + "thread": 17 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 874817, + "thread": 15 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1036000, + "thread": 10 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1177686, + "thread": 25 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1441789, + "thread": 15 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1561270, + "thread": 4 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1656465, + "thread": 25 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 1817714, + "thread": 27 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2124838, + "thread": 11 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2249686, + "thread": 19 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2394947, + "thread": 4 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2510526, + "thread": 16 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2786571, + "thread": 25 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2893109, + "thread": 8 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 2987883, + "thread": 3 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3150863, + "thread": 23 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3395386, + "thread": 22 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3506528, + "thread": 10 + } + }, + { + "amount": "16203.716666667", + "slot": { + "period": 3719003, + "thread": 29 + } + }, + { + "amount": "16203.716666659", + "slot": { + "period": 3851534, + "thread": 31 + } + } + ], + "AU1VtzdymvrF8xg38sY8HdFQQ48naHJtfSoAVyEwWpDxPpJ4kyLJ": [ + { + "amount": "107.145584387", + "slot": { + "period": 95554, + "thread": 26 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 193125, + "thread": 4 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 468916, + "thread": 20 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 501211, + "thread": 1 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 742347, + "thread": 4 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 929848, + "thread": 16 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1049261, + "thread": 1 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1277914, + "thread": 31 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1324026, + "thread": 13 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1542105, + "thread": 0 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1673091, + "thread": 3 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1871261, + "thread": 2 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 1981500, + "thread": 6 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 2194677, + "thread": 24 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 2428799, + "thread": 3 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 2491303, + "thread": 6 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 2669003, + "thread": 25 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 2822553, + "thread": 22 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3022464, + "thread": 13 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3168658, + "thread": 26 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3325946, + "thread": 28 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3519655, + "thread": 10 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3739993, + "thread": 29 + } + }, + { + "amount": "107.145584387", + "slot": { + "period": 3793512, + "thread": 20 + } + } + ], + "AU1VukYv3iA3MLZQrkUhdLCUY9GEy1wwcwyDojmAc3Jkw78rrZmT": [ + { + "amount": "553.452460794", + "slot": { + "period": 12589, + "thread": 8 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 219382, + "thread": 12 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 410936, + "thread": 29 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 651490, + "thread": 27 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 744080, + "thread": 30 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 885344, + "thread": 26 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1090797, + "thread": 1 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1163585, + "thread": 1 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1325697, + "thread": 24 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1612157, + "thread": 14 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1704676, + "thread": 16 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 1955751, + "thread": 25 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2088935, + "thread": 0 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2231895, + "thread": 9 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2332804, + "thread": 8 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2623848, + "thread": 2 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2647409, + "thread": 11 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2882086, + "thread": 23 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 2968892, + "thread": 31 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 3239284, + "thread": 1 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 3400069, + "thread": 11 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 3530748, + "thread": 30 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 3762843, + "thread": 11 + } + }, + { + "amount": "553.452460794", + "slot": { + "period": 3885568, + "thread": 11 + } + } + ], + "AU1Vv28xtK8S7Stmj2SedJc5s6PPYN4FrPSNYCPStG4MuJP2VSQZ": [ + { + "amount": "170.599487091", + "slot": { + "period": 20681, + "thread": 6 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 207236, + "thread": 26 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 331257, + "thread": 12 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 613299, + "thread": 20 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 715164, + "thread": 22 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 824017, + "thread": 5 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1034370, + "thread": 30 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1257354, + "thread": 20 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1467776, + "thread": 26 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1541124, + "thread": 12 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1791420, + "thread": 23 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 1854837, + "thread": 17 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2011073, + "thread": 9 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2162066, + "thread": 12 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2432776, + "thread": 28 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2601344, + "thread": 15 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2631137, + "thread": 20 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 2853099, + "thread": 29 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 3032126, + "thread": 17 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 3280617, + "thread": 9 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 3430971, + "thread": 12 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 3488939, + "thread": 27 + } + }, + { + "amount": "170.599487091", + "slot": { + "period": 3696860, + "thread": 14 + } + }, + { + "amount": "170.599487083", + "slot": { + "period": 3927987, + "thread": 0 + } + } + ], + "AU1VvypZuDUuAjdxqvwQCcNAhwKfok86fN8eX4KgmcLUsyxaFTdA": [ + { + "amount": "172.030387313", + "slot": { + "period": 59088, + "thread": 23 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 258371, + "thread": 8 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 426199, + "thread": 30 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 601090, + "thread": 9 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 771174, + "thread": 26 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 948656, + "thread": 6 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 997594, + "thread": 31 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 1267395, + "thread": 2 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 1441977, + "thread": 29 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 1499454, + "thread": 20 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 1654539, + "thread": 8 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 1821385, + "thread": 0 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2123514, + "thread": 14 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2255830, + "thread": 2 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2378207, + "thread": 15 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2509986, + "thread": 28 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2663361, + "thread": 25 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 2793200, + "thread": 2 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3092572, + "thread": 20 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3283246, + "thread": 25 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3318813, + "thread": 23 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3512939, + "thread": 30 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3624883, + "thread": 11 + } + }, + { + "amount": "172.030387313", + "slot": { + "period": 3939214, + "thread": 13 + } + } + ], + "AU1VwgFia5GseDwdJadBfJeZs6bjErog1FB1GYaGD3xcsuJ2KU9F": [ + { + "amount": "58.386011986", + "slot": { + "period": 138270, + "thread": 18 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 264344, + "thread": 29 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 381331, + "thread": 9 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 602221, + "thread": 2 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 696011, + "thread": 29 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 881745, + "thread": 3 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 993396, + "thread": 2 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1156592, + "thread": 7 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1321360, + "thread": 0 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1524293, + "thread": 25 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1704347, + "thread": 15 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1817571, + "thread": 27 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 1989305, + "thread": 20 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 2220283, + "thread": 24 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 2415951, + "thread": 15 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 2552965, + "thread": 0 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 2668776, + "thread": 24 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 2912137, + "thread": 2 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 3095437, + "thread": 27 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 3245892, + "thread": 1 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 3312606, + "thread": 27 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 3575799, + "thread": 23 + } + }, + { + "amount": "58.386011986", + "slot": { + "period": 3666638, + "thread": 2 + } + }, + { + "amount": "58.386011993", + "slot": { + "period": 3879693, + "thread": 30 + } + } + ], + "AU1VxFdtzVsmYs8aT13pBrED22wrVUaD2MqpHvM9bMPLtot8payz": [ + { + "amount": "115.715347064", + "slot": { + "period": 158308, + "thread": 10 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 314954, + "thread": 29 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 485605, + "thread": 2 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 563021, + "thread": 27 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 760866, + "thread": 31 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 941692, + "thread": 26 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1042830, + "thread": 10 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1239754, + "thread": 31 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1368670, + "thread": 27 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1620573, + "thread": 13 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1751452, + "thread": 16 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 1840821, + "thread": 9 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2048832, + "thread": 28 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2240031, + "thread": 2 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2337762, + "thread": 10 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2484658, + "thread": 15 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2767416, + "thread": 25 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 2810360, + "thread": 29 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 3027426, + "thread": 3 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 3228787, + "thread": 1 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 3409560, + "thread": 30 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 3587333, + "thread": 27 + } + }, + { + "amount": "115.715347064", + "slot": { + "period": 3689270, + "thread": 5 + } + }, + { + "amount": "115.715347057", + "slot": { + "period": 3793138, + "thread": 13 + } + } + ], + "AU1VxbJLM8LBeVXvttPbewErxDiQt9rUen5GqccLeLPxzzuZBr6w": [ + { + "amount": "476.371158034", + "slot": { + "period": 116569, + "thread": 8 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 292517, + "thread": 20 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 340200, + "thread": 30 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 498847, + "thread": 17 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 667683, + "thread": 31 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 834204, + "thread": 23 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1103491, + "thread": 4 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1287818, + "thread": 22 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1380451, + "thread": 18 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1627845, + "thread": 28 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1799947, + "thread": 12 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 1926312, + "thread": 1 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2022635, + "thread": 30 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2151057, + "thread": 2 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2323023, + "thread": 26 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2570346, + "thread": 11 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2653669, + "thread": 9 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2827763, + "thread": 3 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 2968573, + "thread": 4 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 3212256, + "thread": 7 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 3302782, + "thread": 17 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 3522963, + "thread": 10 + } + }, + { + "amount": "476.371158034", + "slot": { + "period": 3774973, + "thread": 10 + } + }, + { + "amount": "476.371158039", + "slot": { + "period": 3830605, + "thread": 12 + } + } + ], + "AU1VyJRoiJtFcUBiBhJmPDkzKE3GaaR7RoGrFipJQac5XPSwpHUZ": [ + { + "amount": "534.564366841", + "slot": { + "period": 45007, + "thread": 17 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 170394, + "thread": 12 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 351356, + "thread": 2 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 595203, + "thread": 24 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 664767, + "thread": 15 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 890121, + "thread": 25 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1095312, + "thread": 24 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1186293, + "thread": 14 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1393151, + "thread": 8 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1594527, + "thread": 29 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1807405, + "thread": 4 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 1868197, + "thread": 2 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2078201, + "thread": 1 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2262452, + "thread": 7 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2305548, + "thread": 7 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2496822, + "thread": 0 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2698432, + "thread": 7 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 2825232, + "thread": 29 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 3012004, + "thread": 9 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 3233620, + "thread": 24 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 3392608, + "thread": 8 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 3612142, + "thread": 8 + } + }, + { + "amount": "534.564366841", + "slot": { + "period": 3637072, + "thread": 13 + } + }, + { + "amount": "534.564366842", + "slot": { + "period": 3780284, + "thread": 12 + } + } + ], + "AU1VyTSufmXjiUARzGVGJFcJkj7xcREwJbfQYH3UhoGjBhsm6wS7": [ + { + "amount": "57.868000233", + "slot": { + "period": 52333, + "thread": 17 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 323502, + "thread": 21 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 476002, + "thread": 23 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 519511, + "thread": 19 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 739086, + "thread": 18 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 880937, + "thread": 14 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1046766, + "thread": 26 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1267990, + "thread": 29 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1396519, + "thread": 8 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1644045, + "thread": 25 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1659009, + "thread": 7 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 1851484, + "thread": 20 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2074807, + "thread": 11 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2285304, + "thread": 7 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2330699, + "thread": 18 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2534960, + "thread": 18 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2743919, + "thread": 12 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 2793277, + "thread": 24 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 3052425, + "thread": 27 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 3233289, + "thread": 31 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 3312689, + "thread": 16 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 3563276, + "thread": 17 + } + }, + { + "amount": "57.868000233", + "slot": { + "period": 3698387, + "thread": 29 + } + }, + { + "amount": "57.868000237", + "slot": { + "period": 3793373, + "thread": 13 + } + } + ], + "AU1VysStcwqSftNLX4vqQ6Da8nptj8abjKTrRbANSShz24qMzjn": [ + { + "amount": "367.549177841", + "slot": { + "period": 97104, + "thread": 17 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 275010, + "thread": 14 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 468002, + "thread": 1 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 619677, + "thread": 8 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 729411, + "thread": 2 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 910846, + "thread": 29 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1124219, + "thread": 2 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1183206, + "thread": 5 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1379600, + "thread": 4 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1635489, + "thread": 25 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1791628, + "thread": 18 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 1845458, + "thread": 31 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2064803, + "thread": 10 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2250020, + "thread": 9 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2446507, + "thread": 11 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2493484, + "thread": 15 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2676867, + "thread": 7 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 2926517, + "thread": 27 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 3070711, + "thread": 11 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 3227723, + "thread": 25 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 3358002, + "thread": 7 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 3563777, + "thread": 14 + } + }, + { + "amount": "367.549177841", + "slot": { + "period": 3751258, + "thread": 25 + } + }, + { + "amount": "367.549177852", + "slot": { + "period": 3899751, + "thread": 30 + } + } + ], + "AU1Vz8mhTNzqKgL7Yhg9BspuaVM8vC8NRYuWr457HDw1UzRvkg76": [ + { + "amount": "527.218192852", + "slot": { + "period": 75558, + "thread": 5 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 266890, + "thread": 21 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 358262, + "thread": 24 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 644893, + "thread": 22 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 763432, + "thread": 1 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 947328, + "thread": 11 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1071135, + "thread": 20 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1283898, + "thread": 13 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1461474, + "thread": 26 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1487730, + "thread": 7 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1783448, + "thread": 0 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 1887583, + "thread": 8 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2093271, + "thread": 0 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2177686, + "thread": 24 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2304801, + "thread": 30 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2519047, + "thread": 16 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2739796, + "thread": 9 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 2882931, + "thread": 7 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 3083095, + "thread": 15 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 3224033, + "thread": 22 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 3358517, + "thread": 0 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 3500799, + "thread": 25 + } + }, + { + "amount": "527.218192852", + "slot": { + "period": 3640528, + "thread": 23 + } + }, + { + "amount": "527.218192843", + "slot": { + "period": 3894334, + "thread": 7 + } + } + ], + "AU1VzJssKffXZPFZ1Sq1fvcDNmdpYAFr39U6DJmf2A7AXyE56PQg": [ + { + "amount": "137.161258582", + "slot": { + "period": 165315, + "thread": 15 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 203933, + "thread": 29 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 466227, + "thread": 18 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 496795, + "thread": 7 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 762786, + "thread": 31 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 866853, + "thread": 4 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1042183, + "thread": 22 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1278505, + "thread": 22 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1474328, + "thread": 9 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1483135, + "thread": 22 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1771553, + "thread": 28 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1940423, + "thread": 28 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 1990279, + "thread": 20 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 2204538, + "thread": 13 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 2441710, + "thread": 20 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 2470673, + "thread": 19 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 2718855, + "thread": 29 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 2943775, + "thread": 23 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 3099375, + "thread": 14 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 3126107, + "thread": 28 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 3424121, + "thread": 8 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 3567673, + "thread": 5 + } + }, + { + "amount": "137.161258582", + "slot": { + "period": 3755191, + "thread": 24 + } + }, + { + "amount": "137.161258590", + "slot": { + "period": 3850577, + "thread": 14 + } + } + ], + "AU1VzroPEXbNECJkTafanFrrFn8NdzCVBPm74zshxFMocHDjRXna": [ + { + "amount": "100.184005791", + "slot": { + "period": 65201, + "thread": 14 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 209678, + "thread": 10 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 391686, + "thread": 27 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 650587, + "thread": 16 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 676946, + "thread": 21 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 914147, + "thread": 27 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1065507, + "thread": 3 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1204590, + "thread": 30 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1404212, + "thread": 10 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1578395, + "thread": 3 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1664559, + "thread": 20 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 1971139, + "thread": 9 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2006545, + "thread": 26 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2287035, + "thread": 11 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2444250, + "thread": 12 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2569792, + "thread": 24 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2767388, + "thread": 4 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 2909773, + "thread": 14 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 3116813, + "thread": 4 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 3135032, + "thread": 8 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 3354616, + "thread": 22 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 3557428, + "thread": 12 + } + }, + { + "amount": "100.184005791", + "slot": { + "period": 3695684, + "thread": 19 + } + }, + { + "amount": "100.184005786", + "slot": { + "period": 3946232, + "thread": 9 + } + } + ], + "AU1W1PLak4omb1CYjgYBL8FbUssaitozGmn7UhWZcc8vMTFUDSou": [ + { + "amount": "211.402144522", + "slot": { + "period": 84580, + "thread": 30 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 301487, + "thread": 8 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 405879, + "thread": 27 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 520495, + "thread": 22 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 754689, + "thread": 4 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 977831, + "thread": 30 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1085672, + "thread": 23 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1311734, + "thread": 16 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1442842, + "thread": 21 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1628577, + "thread": 9 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1665908, + "thread": 16 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 1910364, + "thread": 12 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2033562, + "thread": 28 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2276084, + "thread": 14 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2343949, + "thread": 23 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2566372, + "thread": 3 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2729566, + "thread": 6 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 2901617, + "thread": 19 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 3053569, + "thread": 11 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 3255983, + "thread": 8 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 3303622, + "thread": 16 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 3545252, + "thread": 23 + } + }, + { + "amount": "211.402144522", + "slot": { + "period": 3726437, + "thread": 15 + } + }, + { + "amount": "211.402144525", + "slot": { + "period": 3851237, + "thread": 11 + } + } + ], + "AU1W1b64Mkh5zSzvzMbF7KGaFhvuyBCiYpLguxbMYk5XsxxktWBg": [ + { + "amount": "207.222718219", + "slot": { + "period": 141155, + "thread": 26 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 300295, + "thread": 28 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 349133, + "thread": 5 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 577831, + "thread": 22 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 670046, + "thread": 2 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 929147, + "thread": 23 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1034613, + "thread": 21 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1257723, + "thread": 6 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1380289, + "thread": 23 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1618767, + "thread": 27 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1730722, + "thread": 17 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 1905888, + "thread": 7 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2019123, + "thread": 29 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2189638, + "thread": 21 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2433863, + "thread": 15 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2622052, + "thread": 22 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2709268, + "thread": 7 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 2798561, + "thread": 28 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 3024775, + "thread": 2 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 3122179, + "thread": 26 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 3300323, + "thread": 8 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 3598355, + "thread": 31 + } + }, + { + "amount": "207.222718219", + "slot": { + "period": 3737612, + "thread": 18 + } + }, + { + "amount": "207.222718230", + "slot": { + "period": 3813126, + "thread": 15 + } + } + ], + "AU1W1kdYGeoeCco69egZ7xGvRxddHHkMGpXzTArZG9KJGnFmBQUC": [ + { + "amount": "80.477270110", + "slot": { + "period": 109876, + "thread": 25 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 211742, + "thread": 29 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 386893, + "thread": 28 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 497172, + "thread": 26 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 673875, + "thread": 19 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 963421, + "thread": 21 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1014608, + "thread": 1 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1186963, + "thread": 7 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1435343, + "thread": 4 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1529985, + "thread": 31 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1697606, + "thread": 27 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 1908763, + "thread": 16 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2120141, + "thread": 25 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2207246, + "thread": 14 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2307621, + "thread": 4 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2574093, + "thread": 4 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2730090, + "thread": 26 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 2903530, + "thread": 18 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 3058479, + "thread": 5 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 3217386, + "thread": 25 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 3354329, + "thread": 21 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 3452976, + "thread": 15 + } + }, + { + "amount": "80.477270110", + "slot": { + "period": 3740235, + "thread": 26 + } + }, + { + "amount": "80.477270114", + "slot": { + "period": 3819695, + "thread": 15 + } + } + ], + "AU1W1p1PFUbcST2GsFjyDWhAMjhoyY2X4Reh9g6SsvkV98HkV87u": [ + { + "amount": "305.507553255", + "slot": { + "period": 34614, + "thread": 5 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 248310, + "thread": 11 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 398726, + "thread": 27 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 544694, + "thread": 0 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 772263, + "thread": 19 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 957881, + "thread": 31 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1133011, + "thread": 0 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1281015, + "thread": 0 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1363898, + "thread": 19 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1601956, + "thread": 28 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1761722, + "thread": 9 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 1900735, + "thread": 25 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2026773, + "thread": 6 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2270196, + "thread": 9 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2407043, + "thread": 22 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2604601, + "thread": 1 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2663271, + "thread": 4 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 2860216, + "thread": 6 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3022234, + "thread": 3 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3173630, + "thread": 17 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3427960, + "thread": 18 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3594103, + "thread": 13 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3680290, + "thread": 29 + } + }, + { + "amount": "305.507553255", + "slot": { + "period": 3880745, + "thread": 16 + } + } + ], + "AU1W21EHM2tNfr8SiMSCJe4SGGn3815egHRWF7d82KCbLrCz7zJA": [ + { + "amount": "73.715180040", + "slot": { + "period": 12560, + "thread": 17 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 236567, + "thread": 17 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 462802, + "thread": 2 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 537360, + "thread": 25 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 707460, + "thread": 14 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 832185, + "thread": 27 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1055428, + "thread": 28 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1304683, + "thread": 4 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1423717, + "thread": 10 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1590696, + "thread": 20 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1691330, + "thread": 4 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 1864344, + "thread": 26 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2009244, + "thread": 20 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2199797, + "thread": 18 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2401006, + "thread": 27 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2588221, + "thread": 14 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2675218, + "thread": 24 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2802003, + "thread": 17 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 2995892, + "thread": 14 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 3223521, + "thread": 19 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 3425328, + "thread": 30 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 3586303, + "thread": 0 + } + }, + { + "amount": "73.715180040", + "slot": { + "period": 3757388, + "thread": 0 + } + }, + { + "amount": "73.715180044", + "slot": { + "period": 3836634, + "thread": 10 + } + } + ], + "AU1W2ZgnuCYAMr4ZuNmd2LpKsAtahxdZRST5mnmuY53QRdCrn9Uq": [ + { + "amount": "127.702053576", + "slot": { + "period": 156967, + "thread": 6 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 283800, + "thread": 24 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 400901, + "thread": 1 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 650853, + "thread": 20 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 677364, + "thread": 15 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 961515, + "thread": 22 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1016443, + "thread": 10 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1204249, + "thread": 0 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1322803, + "thread": 19 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1628121, + "thread": 27 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1744799, + "thread": 16 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 1852021, + "thread": 6 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2061135, + "thread": 15 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2286936, + "thread": 2 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2458711, + "thread": 29 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2545269, + "thread": 19 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2707202, + "thread": 27 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 2793780, + "thread": 22 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 3078190, + "thread": 20 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 3127084, + "thread": 29 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 3404964, + "thread": 17 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 3566923, + "thread": 0 + } + }, + { + "amount": "127.702053576", + "slot": { + "period": 3663892, + "thread": 27 + } + }, + { + "amount": "127.702053579", + "slot": { + "period": 3875506, + "thread": 8 + } + } + ], + "AU1W2mUQHqyw4EVkGr4B35QzJLMsrR1H8foCmwT6gE42iYDhk7mQ": [ + { + "amount": "310.340941140", + "slot": { + "period": 38654, + "thread": 6 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 304590, + "thread": 1 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 453616, + "thread": 25 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 617554, + "thread": 23 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 808593, + "thread": 12 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 916988, + "thread": 17 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1129554, + "thread": 3 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1159916, + "thread": 13 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1376585, + "thread": 0 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1576910, + "thread": 26 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1669055, + "thread": 11 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 1893371, + "thread": 18 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2099014, + "thread": 13 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2280537, + "thread": 0 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2316271, + "thread": 21 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2483266, + "thread": 9 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2733240, + "thread": 20 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2926698, + "thread": 14 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 2986528, + "thread": 25 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 3164822, + "thread": 1 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 3311896, + "thread": 24 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 3603638, + "thread": 29 + } + }, + { + "amount": "310.340941140", + "slot": { + "period": 3750131, + "thread": 9 + } + }, + { + "amount": "310.340941149", + "slot": { + "period": 3857426, + "thread": 20 + } + } + ], + "AU1W4QcLLmrc8MU5vpLMSWUQvxD6Pzv43g394f84McmxrkRjGHyi": [ + { + "amount": "177.597152175", + "slot": { + "period": 27371, + "thread": 17 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 224899, + "thread": 28 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 379249, + "thread": 9 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 516415, + "thread": 24 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 718163, + "thread": 0 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 855095, + "thread": 27 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1104323, + "thread": 14 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1214303, + "thread": 25 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1416085, + "thread": 1 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1634211, + "thread": 2 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1768672, + "thread": 29 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 1882860, + "thread": 31 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2127654, + "thread": 26 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2150369, + "thread": 9 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2383510, + "thread": 22 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2608334, + "thread": 5 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2763676, + "thread": 4 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2919036, + "thread": 11 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 2990449, + "thread": 2 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 3180822, + "thread": 25 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 3357115, + "thread": 17 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 3498951, + "thread": 11 + } + }, + { + "amount": "177.597152175", + "slot": { + "period": 3751997, + "thread": 11 + } + }, + { + "amount": "177.597152172", + "slot": { + "period": 3824582, + "thread": 16 + } + } + ], + "AU1W4kR9penYWAW25X92mgF8AnbcmmpGx8cP4E4xQAZh9CacN3Am": [ + { + "amount": "199.679584899", + "slot": { + "period": 80855, + "thread": 25 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 262098, + "thread": 23 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 345037, + "thread": 15 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 577611, + "thread": 12 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 667035, + "thread": 22 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 966037, + "thread": 3 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1043531, + "thread": 2 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1232876, + "thread": 29 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1452087, + "thread": 19 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1537410, + "thread": 29 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1773599, + "thread": 30 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 1971538, + "thread": 23 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2078708, + "thread": 18 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2163056, + "thread": 17 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2429687, + "thread": 8 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2576589, + "thread": 21 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2691394, + "thread": 2 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 2885036, + "thread": 15 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3061388, + "thread": 26 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3263028, + "thread": 20 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3394962, + "thread": 3 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3520522, + "thread": 11 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3680027, + "thread": 27 + } + }, + { + "amount": "199.679584899", + "slot": { + "period": 3936617, + "thread": 14 + } + } + ], + "AU1W5A1TNnoTYkaqSGrkrsrHcsXKZC5xNanEr4TBup1b7dBKBRT3": [ + { + "amount": "180.180622660", + "slot": { + "period": 129313, + "thread": 29 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 181627, + "thread": 7 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 430096, + "thread": 21 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 583956, + "thread": 15 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 705712, + "thread": 13 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 854464, + "thread": 8 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1022339, + "thread": 29 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1262893, + "thread": 28 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1463467, + "thread": 15 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1505715, + "thread": 27 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1679061, + "thread": 3 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 1873708, + "thread": 16 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2136842, + "thread": 31 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2163618, + "thread": 26 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2306762, + "thread": 15 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2607759, + "thread": 9 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2762967, + "thread": 23 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 2886026, + "thread": 0 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 3060949, + "thread": 19 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 3229081, + "thread": 21 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 3359219, + "thread": 7 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 3593076, + "thread": 31 + } + }, + { + "amount": "180.180622660", + "slot": { + "period": 3778323, + "thread": 20 + } + }, + { + "amount": "180.180622653", + "slot": { + "period": 3792572, + "thread": 8 + } + } + ], + "AU1W5nh6RiT54bePcKFUcUxUzMsv6kK3cghwdXvKeDQwfbjsjpDE": [ + { + "amount": "72.434123280", + "slot": { + "period": 55229, + "thread": 13 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 312462, + "thread": 17 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 346940, + "thread": 6 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 649264, + "thread": 13 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 717179, + "thread": 30 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 836678, + "thread": 18 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1028939, + "thread": 20 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1277650, + "thread": 22 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1455364, + "thread": 10 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1498688, + "thread": 17 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1670915, + "thread": 24 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 1831397, + "thread": 1 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2018001, + "thread": 3 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2176457, + "thread": 20 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2371328, + "thread": 13 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2572760, + "thread": 17 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2720669, + "thread": 17 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 2904457, + "thread": 28 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 3054276, + "thread": 10 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 3210395, + "thread": 14 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 3326136, + "thread": 23 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 3457996, + "thread": 9 + } + }, + { + "amount": "72.434123280", + "slot": { + "period": 3717003, + "thread": 18 + } + }, + { + "amount": "72.434123288", + "slot": { + "period": 3827026, + "thread": 19 + } + } + ], + "AU1W6AFX8W9gU7cjzK1ezRjYaDkrjVxzP7ti4tLHxM3DsF5Snijs": [ + { + "amount": "263.024796259", + "slot": { + "period": 154714, + "thread": 9 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 249904, + "thread": 24 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 430229, + "thread": 12 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 607392, + "thread": 0 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 791149, + "thread": 8 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 865377, + "thread": 14 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 985808, + "thread": 16 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1201056, + "thread": 6 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1369974, + "thread": 31 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1543069, + "thread": 1 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1778272, + "thread": 2 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1911576, + "thread": 22 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 1992625, + "thread": 30 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 2243592, + "thread": 15 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 2446295, + "thread": 14 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 2486058, + "thread": 9 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 2768855, + "thread": 22 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 2795231, + "thread": 0 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 3010941, + "thread": 0 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 3188245, + "thread": 21 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 3343737, + "thread": 22 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 3531900, + "thread": 25 + } + }, + { + "amount": "263.024796259", + "slot": { + "period": 3705546, + "thread": 14 + } + }, + { + "amount": "263.024796250", + "slot": { + "period": 3924768, + "thread": 28 + } + } + ], + "AU1W78jFizdQGwESFP9iPjAbq2BL5hD1xePQ79uutP285UnmcxS": [ + { + "amount": "432.888745574", + "slot": { + "period": 115204, + "thread": 28 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 184773, + "thread": 11 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 326132, + "thread": 30 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 613233, + "thread": 29 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 754331, + "thread": 9 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 937224, + "thread": 17 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1086273, + "thread": 15 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1245637, + "thread": 22 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1334502, + "thread": 0 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1484524, + "thread": 3 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1694518, + "thread": 5 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 1935359, + "thread": 27 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2130158, + "thread": 28 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2219222, + "thread": 7 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2384411, + "thread": 17 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2495892, + "thread": 17 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2664964, + "thread": 24 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2828236, + "thread": 9 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 2987683, + "thread": 14 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 3240236, + "thread": 30 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 3291594, + "thread": 9 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 3537536, + "thread": 1 + } + }, + { + "amount": "432.888745574", + "slot": { + "period": 3760696, + "thread": 23 + } + }, + { + "amount": "432.888745586", + "slot": { + "period": 3871483, + "thread": 16 + } + } + ], + "AU1W7oWsANhrcgrKh78fFN3AdJj8o6Xp493ZZ84tG1CF3ikn16LL": [ + { + "amount": "386.148848899", + "slot": { + "period": 89599, + "thread": 14 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 283919, + "thread": 10 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 448686, + "thread": 1 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 649605, + "thread": 24 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 741406, + "thread": 5 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 886842, + "thread": 3 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1039186, + "thread": 2 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1188145, + "thread": 19 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1438295, + "thread": 13 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1496225, + "thread": 14 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1704685, + "thread": 28 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1837550, + "thread": 29 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 1984133, + "thread": 7 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 2213649, + "thread": 19 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 2407521, + "thread": 24 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 2557204, + "thread": 10 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 2766260, + "thread": 31 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 2915058, + "thread": 14 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 3079884, + "thread": 23 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 3211863, + "thread": 2 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 3447524, + "thread": 17 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 3598790, + "thread": 15 + } + }, + { + "amount": "386.148848899", + "slot": { + "period": 3654248, + "thread": 21 + } + }, + { + "amount": "386.148848893", + "slot": { + "period": 3857007, + "thread": 17 + } + } + ], + "AU1W7w25SzuovM7meYfuMMUZnzFauofMZL5kbLVh6noDynX3FmqD": [ + { + "amount": "395.574412257", + "slot": { + "period": 36112, + "thread": 4 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 272202, + "thread": 4 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 433835, + "thread": 6 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 614728, + "thread": 15 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 713166, + "thread": 16 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 866779, + "thread": 19 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1115973, + "thread": 1 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1316181, + "thread": 12 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1375235, + "thread": 8 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1486811, + "thread": 12 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1675405, + "thread": 26 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1849827, + "thread": 26 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 1997098, + "thread": 28 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 2166203, + "thread": 0 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 2369009, + "thread": 25 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 2610616, + "thread": 28 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 2669350, + "thread": 29 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 2818992, + "thread": 14 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 3086414, + "thread": 3 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 3170134, + "thread": 23 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 3323152, + "thread": 15 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 3593657, + "thread": 25 + } + }, + { + "amount": "395.574412257", + "slot": { + "period": 3730900, + "thread": 14 + } + }, + { + "amount": "395.574412261", + "slot": { + "period": 3828447, + "thread": 5 + } + } + ], + "AU1W8GhPjxXTZh5yEq2DDvybNDZoEAHgavPqeFBbHtAvTDGF8rHd": [ + { + "amount": "80.958896729", + "slot": { + "period": 159936, + "thread": 12 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 227052, + "thread": 25 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 341143, + "thread": 12 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 510479, + "thread": 6 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 769613, + "thread": 27 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 848509, + "thread": 21 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1055129, + "thread": 6 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1312371, + "thread": 22 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1424048, + "thread": 2 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1480054, + "thread": 5 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1670713, + "thread": 11 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 1811302, + "thread": 11 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2096797, + "thread": 12 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2151692, + "thread": 19 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2305915, + "thread": 16 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2564729, + "thread": 17 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2744746, + "thread": 0 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 2825441, + "thread": 6 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 3094761, + "thread": 3 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 3178249, + "thread": 9 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 3290371, + "thread": 26 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 3508664, + "thread": 1 + } + }, + { + "amount": "80.958896729", + "slot": { + "period": 3756547, + "thread": 14 + } + }, + { + "amount": "80.958896728", + "slot": { + "period": 3829603, + "thread": 22 + } + } + ], + "AU1W9BVXaXhHQHoNN7uE6Ntbk5qV3dMX85HeiGZDfRxbxdCzkyXD": [ + { + "amount": "260.498783371", + "slot": { + "period": 138041, + "thread": 16 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 229630, + "thread": 20 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 380618, + "thread": 5 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 605746, + "thread": 20 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 731979, + "thread": 7 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 836790, + "thread": 12 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1095087, + "thread": 21 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1283417, + "thread": 4 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1319076, + "thread": 21 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1491319, + "thread": 2 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1778878, + "thread": 14 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 1945725, + "thread": 23 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2004691, + "thread": 3 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2238060, + "thread": 9 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2300237, + "thread": 2 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2543641, + "thread": 9 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2705729, + "thread": 31 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2837281, + "thread": 8 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 2969271, + "thread": 29 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 3222604, + "thread": 5 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 3421993, + "thread": 24 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 3459453, + "thread": 1 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 3647533, + "thread": 20 + } + }, + { + "amount": "260.498783371", + "slot": { + "period": 3830402, + "thread": 17 + } + } + ], + "AU1W9m5xP5ztcRdEMPrqbVujyReJUSqj1qpQcserCCrSJ7gggrXH": [ + { + "amount": "129.540108566", + "slot": { + "period": 33843, + "thread": 15 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 295188, + "thread": 8 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 422629, + "thread": 31 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 645963, + "thread": 4 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 704454, + "thread": 17 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 957977, + "thread": 30 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1069884, + "thread": 18 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1200375, + "thread": 24 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1374544, + "thread": 31 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1608142, + "thread": 13 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1788028, + "thread": 28 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 1913814, + "thread": 29 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2009068, + "thread": 31 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2292235, + "thread": 7 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2335842, + "thread": 18 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2530298, + "thread": 13 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2733759, + "thread": 27 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 2906950, + "thread": 16 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 3064699, + "thread": 7 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 3227289, + "thread": 30 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 3334372, + "thread": 27 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 3576292, + "thread": 31 + } + }, + { + "amount": "129.540108566", + "slot": { + "period": 3690333, + "thread": 25 + } + }, + { + "amount": "129.540108555", + "slot": { + "period": 3809109, + "thread": 5 + } + } + ], + "AU1WALKazbySu7MtvspvZ9SH1y59e8YokrKKuyfTeqc4CcATr2Qq": [ + { + "amount": "255.479062494", + "slot": { + "period": 140449, + "thread": 6 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 208319, + "thread": 20 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 412654, + "thread": 10 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 642276, + "thread": 31 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 698709, + "thread": 31 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 837177, + "thread": 1 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 990071, + "thread": 12 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 1227277, + "thread": 30 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 1468710, + "thread": 31 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 1550465, + "thread": 26 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 1770087, + "thread": 4 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 1960550, + "thread": 17 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2012716, + "thread": 4 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2219179, + "thread": 8 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2352604, + "thread": 3 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2466169, + "thread": 4 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2733577, + "thread": 20 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 2940935, + "thread": 25 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 3057448, + "thread": 24 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 3161441, + "thread": 8 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 3440933, + "thread": 3 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 3602556, + "thread": 7 + } + }, + { + "amount": "255.479062494", + "slot": { + "period": 3739786, + "thread": 17 + } + }, + { + "amount": "255.479062486", + "slot": { + "period": 3934528, + "thread": 13 + } + } + ], + "AU1WE4bQAuSzaubxuyJmY76BjjWR9vMwfCgTa1rTmNn6gSScAZvx": [ + { + "amount": "136.585835598", + "slot": { + "period": 82367, + "thread": 26 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 178232, + "thread": 15 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 402331, + "thread": 2 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 587662, + "thread": 7 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 689699, + "thread": 29 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 982227, + "thread": 22 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 983265, + "thread": 5 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 1177575, + "thread": 21 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 1368651, + "thread": 23 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 1532788, + "thread": 9 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 1756205, + "thread": 0 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 1867153, + "thread": 2 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2119744, + "thread": 23 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2282545, + "thread": 28 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2433417, + "thread": 16 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2575090, + "thread": 27 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2642540, + "thread": 22 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 2922410, + "thread": 3 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 3063858, + "thread": 5 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 3228665, + "thread": 30 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 3382480, + "thread": 26 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 3490938, + "thread": 30 + } + }, + { + "amount": "136.585835598", + "slot": { + "period": 3657048, + "thread": 23 + } + }, + { + "amount": "136.585835603", + "slot": { + "period": 3941985, + "thread": 25 + } + } + ], + "AU1WE6CsVkD2iALeH2ZU2xwvCVdAot3CEtyzvgiqyB5CZr7FkgV9": [ + { + "amount": "61.847571641", + "slot": { + "period": 64664, + "thread": 14 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 319255, + "thread": 25 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 460703, + "thread": 12 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 641471, + "thread": 13 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 732585, + "thread": 16 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 925160, + "thread": 9 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1086020, + "thread": 7 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1224951, + "thread": 19 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1393943, + "thread": 5 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1561346, + "thread": 14 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1750520, + "thread": 24 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 1917691, + "thread": 15 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2032857, + "thread": 21 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2237500, + "thread": 3 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2348109, + "thread": 22 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2592267, + "thread": 31 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2724639, + "thread": 2 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 2948261, + "thread": 7 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 3014065, + "thread": 12 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 3121248, + "thread": 15 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 3369876, + "thread": 0 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 3531652, + "thread": 1 + } + }, + { + "amount": "61.847571641", + "slot": { + "period": 3635575, + "thread": 17 + } + }, + { + "amount": "61.847571636", + "slot": { + "period": 3790634, + "thread": 11 + } + } + ], + "AU1WEPrrFBX2HY7J6MgAPQKiquZ77y175JExVTpf5RET9egsp97B": [ + { + "amount": "173.726092916", + "slot": { + "period": 18075, + "thread": 7 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 294458, + "thread": 16 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 387336, + "thread": 30 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 533513, + "thread": 30 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 744449, + "thread": 31 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 944794, + "thread": 16 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1136860, + "thread": 16 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1281700, + "thread": 22 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1340804, + "thread": 20 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1490787, + "thread": 30 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1801952, + "thread": 4 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 1888684, + "thread": 24 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2118840, + "thread": 0 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2146129, + "thread": 4 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2416410, + "thread": 5 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2493049, + "thread": 15 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2710365, + "thread": 23 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2893948, + "thread": 18 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 2976302, + "thread": 12 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 3226637, + "thread": 3 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 3313941, + "thread": 13 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 3505805, + "thread": 10 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 3620701, + "thread": 23 + } + }, + { + "amount": "173.726092916", + "slot": { + "period": 3798011, + "thread": 16 + } + } + ], + "AU1WEuM26vpekUDKVqPZhoPn69eaPfxmqHV5i2yUBfVP2itMXJtc": [ + { + "amount": "81.683984800", + "slot": { + "period": 105388, + "thread": 27 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 208982, + "thread": 31 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 391132, + "thread": 1 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 599172, + "thread": 11 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 688458, + "thread": 29 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 872501, + "thread": 24 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1119078, + "thread": 17 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1273114, + "thread": 10 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1412909, + "thread": 30 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1539251, + "thread": 21 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1679536, + "thread": 28 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1920492, + "thread": 30 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 1980332, + "thread": 26 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 2195138, + "thread": 4 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 2306722, + "thread": 30 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 2575074, + "thread": 1 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 2723073, + "thread": 19 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 2853802, + "thread": 20 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3092171, + "thread": 26 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3122227, + "thread": 19 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3420249, + "thread": 3 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3484306, + "thread": 17 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3759967, + "thread": 24 + } + }, + { + "amount": "81.683984800", + "slot": { + "period": 3870597, + "thread": 25 + } + } + ], + "AU1WFYkzXmyH7ezuqVsqtbaaZPfbuYzdJyUkdmdkuniNY6ZgXqzo": [ + { + "amount": "86.777016909", + "slot": { + "period": 65275, + "thread": 3 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 222727, + "thread": 22 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 345731, + "thread": 5 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 575444, + "thread": 12 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 741556, + "thread": 16 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 902935, + "thread": 22 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1111805, + "thread": 2 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1255808, + "thread": 20 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1392567, + "thread": 4 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1597826, + "thread": 31 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1680923, + "thread": 23 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 1956915, + "thread": 13 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2053077, + "thread": 0 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2220519, + "thread": 4 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2394127, + "thread": 4 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2465393, + "thread": 17 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2636908, + "thread": 10 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 2928003, + "thread": 29 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 3066401, + "thread": 20 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 3212514, + "thread": 26 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 3379015, + "thread": 31 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 3479100, + "thread": 20 + } + }, + { + "amount": "86.777016909", + "slot": { + "period": 3672756, + "thread": 1 + } + }, + { + "amount": "86.777016918", + "slot": { + "period": 3928393, + "thread": 24 + } + } + ], + "AU1WG7oVv6kk3RZataxiDdtWyeJU8XZDKigDYSAmvd15M9zRbDVJ": [ + { + "amount": "394.877637968", + "slot": { + "period": 33215, + "thread": 11 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 184720, + "thread": 3 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 449841, + "thread": 5 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 532194, + "thread": 4 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 701193, + "thread": 31 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 892291, + "thread": 22 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 991625, + "thread": 1 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 1241734, + "thread": 17 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 1318059, + "thread": 20 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 1541531, + "thread": 31 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 1661764, + "thread": 24 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 1867173, + "thread": 24 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2110503, + "thread": 10 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2282826, + "thread": 5 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2446926, + "thread": 28 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2563953, + "thread": 10 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2629028, + "thread": 28 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 2807191, + "thread": 15 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 3049602, + "thread": 7 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 3151838, + "thread": 30 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 3301120, + "thread": 19 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 3515713, + "thread": 26 + } + }, + { + "amount": "394.877637968", + "slot": { + "period": 3719051, + "thread": 23 + } + }, + { + "amount": "394.877637956", + "slot": { + "period": 3932747, + "thread": 28 + } + } + ], + "AU1WGFHoEPJAywaNbyGk2i8DpYP3rg6cAzGmTk2D5LpgjTHfsgrk": [ + { + "amount": "278.606797811", + "slot": { + "period": 87075, + "thread": 10 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 311570, + "thread": 28 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 402470, + "thread": 30 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 650537, + "thread": 6 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 818722, + "thread": 8 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 840835, + "thread": 6 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1045154, + "thread": 14 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1209471, + "thread": 30 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1371390, + "thread": 3 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1481142, + "thread": 30 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1716158, + "thread": 13 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 1948419, + "thread": 2 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2111779, + "thread": 28 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2168282, + "thread": 15 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2410563, + "thread": 25 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2509386, + "thread": 2 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2683064, + "thread": 30 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 2874569, + "thread": 14 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3113086, + "thread": 26 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3180839, + "thread": 14 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3407120, + "thread": 31 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3479575, + "thread": 23 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3695444, + "thread": 6 + } + }, + { + "amount": "278.606797811", + "slot": { + "period": 3889855, + "thread": 16 + } + } + ], + "AU1WH4Y7DwmLeE95V6S3QfKoJdLvBarBgR78zKyyHBsEErKvumwB": [ + { + "amount": "139.860647606", + "slot": { + "period": 130906, + "thread": 5 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 184661, + "thread": 17 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 441346, + "thread": 10 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 627154, + "thread": 1 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 689332, + "thread": 16 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 960389, + "thread": 22 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1098116, + "thread": 24 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1209387, + "thread": 12 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1347786, + "thread": 1 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1532149, + "thread": 11 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1769525, + "thread": 15 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 1877918, + "thread": 18 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2134280, + "thread": 23 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2225493, + "thread": 30 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2428460, + "thread": 0 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2546847, + "thread": 16 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2778992, + "thread": 19 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2838374, + "thread": 2 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 2963793, + "thread": 12 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 3157470, + "thread": 9 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 3385370, + "thread": 22 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 3471483, + "thread": 12 + } + }, + { + "amount": "139.860647606", + "slot": { + "period": 3718578, + "thread": 31 + } + }, + { + "amount": "139.860647609", + "slot": { + "period": 3905739, + "thread": 11 + } + } + ], + "AU1WJMEb7qQRV9832kji6nR4LoY4dkoarPDFynjubqR8wCmH7XD6": [ + { + "amount": "188.452725808", + "slot": { + "period": 66269, + "thread": 27 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 167641, + "thread": 8 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 474412, + "thread": 13 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 494610, + "thread": 22 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 785565, + "thread": 1 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 981765, + "thread": 5 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1039450, + "thread": 18 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1168431, + "thread": 10 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1421353, + "thread": 6 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1480004, + "thread": 16 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1728058, + "thread": 1 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1960844, + "thread": 20 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 1979815, + "thread": 17 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 2267435, + "thread": 20 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 2343590, + "thread": 12 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 2563894, + "thread": 23 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 2631960, + "thread": 26 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 2905382, + "thread": 29 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 3023538, + "thread": 24 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 3222618, + "thread": 3 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 3389432, + "thread": 23 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 3505510, + "thread": 16 + } + }, + { + "amount": "188.452725808", + "slot": { + "period": 3710510, + "thread": 19 + } + }, + { + "amount": "188.452725805", + "slot": { + "period": 3877681, + "thread": 17 + } + } + ], + "AU1WJt5jP756pnGfWVCdfwM92hKvFb83h45Z7mu2aMgAurUpkgcD": [ + { + "amount": "92.056760095", + "slot": { + "period": 66866, + "thread": 27 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 287914, + "thread": 7 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 327393, + "thread": 7 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 498148, + "thread": 27 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 701078, + "thread": 29 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 938153, + "thread": 21 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1037686, + "thread": 25 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1218705, + "thread": 29 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1461246, + "thread": 30 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1522352, + "thread": 2 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1792301, + "thread": 30 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1894930, + "thread": 30 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 1985432, + "thread": 19 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 2147121, + "thread": 8 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 2334403, + "thread": 23 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 2593761, + "thread": 29 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 2663186, + "thread": 25 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 2942368, + "thread": 29 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 3038927, + "thread": 31 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 3201816, + "thread": 3 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 3426291, + "thread": 17 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 3527516, + "thread": 21 + } + }, + { + "amount": "92.056760095", + "slot": { + "period": 3632920, + "thread": 30 + } + }, + { + "amount": "92.056760102", + "slot": { + "period": 3890917, + "thread": 7 + } + } + ], + "AU1WJzk32pQEy5pS8Qqs96ktCUSMqpf42pShmH9Un1GtGjbL7uZA": [ + { + "amount": "195.816798237", + "slot": { + "period": 18512, + "thread": 25 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 191249, + "thread": 3 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 417504, + "thread": 29 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 610746, + "thread": 1 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 735977, + "thread": 13 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 940050, + "thread": 0 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 987092, + "thread": 10 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 1255330, + "thread": 24 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 1406085, + "thread": 14 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 1488356, + "thread": 6 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 1671803, + "thread": 1 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 1848415, + "thread": 24 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2048976, + "thread": 18 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2185454, + "thread": 7 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2355314, + "thread": 24 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2614608, + "thread": 3 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2739987, + "thread": 12 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 2883878, + "thread": 6 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 3030983, + "thread": 21 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 3197760, + "thread": 17 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 3370784, + "thread": 1 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 3526055, + "thread": 15 + } + }, + { + "amount": "195.816798237", + "slot": { + "period": 3770556, + "thread": 6 + } + }, + { + "amount": "195.816798245", + "slot": { + "period": 3945655, + "thread": 7 + } + } + ], + "AU1WLWb6V8QdyK4L5ajfwDH83ZopLfUBYsFKLDsGgiZTEXwNaps9": [ + { + "amount": "152.970911123", + "slot": { + "period": 123577, + "thread": 27 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 305056, + "thread": 2 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 400049, + "thread": 25 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 545099, + "thread": 18 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 752880, + "thread": 25 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 892569, + "thread": 28 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1019536, + "thread": 31 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1308642, + "thread": 23 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1383699, + "thread": 17 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1612883, + "thread": 7 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1685884, + "thread": 1 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 1965522, + "thread": 12 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2143489, + "thread": 23 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2250660, + "thread": 8 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2330258, + "thread": 15 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2585245, + "thread": 5 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2719210, + "thread": 23 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2902290, + "thread": 10 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 2987575, + "thread": 9 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 3146648, + "thread": 19 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 3433453, + "thread": 23 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 3468229, + "thread": 11 + } + }, + { + "amount": "152.970911123", + "slot": { + "period": 3739865, + "thread": 13 + } + }, + { + "amount": "152.970911112", + "slot": { + "period": 3846281, + "thread": 7 + } + } + ], + "AU1WLa9Uqu1RoeYJkvCN1eCbMYCTiaoSsACQUr7YXTJnaf2LjAzv": [ + { + "amount": "138.094450571", + "slot": { + "period": 49124, + "thread": 27 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 210242, + "thread": 31 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 481743, + "thread": 13 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 511114, + "thread": 16 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 688700, + "thread": 1 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 847962, + "thread": 16 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1015530, + "thread": 3 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1209146, + "thread": 5 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1440494, + "thread": 14 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1603098, + "thread": 24 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1667273, + "thread": 0 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 1974340, + "thread": 24 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2004052, + "thread": 7 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2246966, + "thread": 19 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2458204, + "thread": 4 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2579464, + "thread": 19 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2757306, + "thread": 30 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 2944142, + "thread": 10 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 3009991, + "thread": 19 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 3280567, + "thread": 16 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 3311217, + "thread": 30 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 3609783, + "thread": 14 + } + }, + { + "amount": "138.094450571", + "slot": { + "period": 3759477, + "thread": 25 + } + }, + { + "amount": "138.094450570", + "slot": { + "period": 3888732, + "thread": 6 + } + } + ], + "AU1WM8eew2fTGcR7a4jxQnDnr2ZgJnVJXpozW9HbAtNDcbq3iyQz": [ + { + "amount": "229.215854548", + "slot": { + "period": 10827, + "thread": 6 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 254812, + "thread": 0 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 388989, + "thread": 1 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 552445, + "thread": 23 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 787998, + "thread": 3 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 939000, + "thread": 11 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1090648, + "thread": 23 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1307291, + "thread": 10 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1325262, + "thread": 11 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1566382, + "thread": 5 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1757714, + "thread": 21 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1849243, + "thread": 12 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 1978231, + "thread": 4 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 2228487, + "thread": 21 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 2344966, + "thread": 4 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 2586501, + "thread": 31 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 2752679, + "thread": 7 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 2807573, + "thread": 13 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 3021964, + "thread": 22 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 3160648, + "thread": 20 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 3297749, + "thread": 27 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 3548081, + "thread": 3 + } + }, + { + "amount": "229.215854548", + "slot": { + "period": 3771055, + "thread": 2 + } + }, + { + "amount": "229.215854552", + "slot": { + "period": 3889654, + "thread": 7 + } + } + ], + "AU1WMg8miFWRGwzMp6vpyoSTtstFwb13vjjB8PAoi1oUxv5hYoCp": [ + { + "amount": "134.222373439", + "slot": { + "period": 64575, + "thread": 19 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 288972, + "thread": 26 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 426904, + "thread": 27 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 556002, + "thread": 24 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 775690, + "thread": 24 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 862631, + "thread": 6 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1056662, + "thread": 12 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1189666, + "thread": 13 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1393457, + "thread": 18 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1544975, + "thread": 11 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1676734, + "thread": 15 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 1959476, + "thread": 31 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2054488, + "thread": 25 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2281664, + "thread": 29 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2403021, + "thread": 8 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2498606, + "thread": 27 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2745975, + "thread": 25 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 2813287, + "thread": 3 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 3114594, + "thread": 19 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 3270519, + "thread": 26 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 3352183, + "thread": 5 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 3512730, + "thread": 21 + } + }, + { + "amount": "134.222373439", + "slot": { + "period": 3761533, + "thread": 4 + } + }, + { + "amount": "134.222373448", + "slot": { + "period": 3811642, + "thread": 26 + } + } + ], + "AU1WPFU9oLJcuccmC3rbTSFakJd8HrCSUwEYv8FNJVPmLagLb7XU": [ + { + "amount": "75.210425516", + "slot": { + "period": 93066, + "thread": 27 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 196352, + "thread": 22 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 467904, + "thread": 11 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 513439, + "thread": 12 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 665737, + "thread": 0 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 884946, + "thread": 16 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1002756, + "thread": 8 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1194518, + "thread": 31 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1455342, + "thread": 21 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1638005, + "thread": 19 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1721376, + "thread": 2 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 1960385, + "thread": 1 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2123256, + "thread": 21 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2231126, + "thread": 0 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2379773, + "thread": 14 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2485298, + "thread": 10 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2703017, + "thread": 13 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2844631, + "thread": 14 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 2986529, + "thread": 24 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 3246117, + "thread": 25 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 3398441, + "thread": 27 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 3460738, + "thread": 3 + } + }, + { + "amount": "75.210425516", + "slot": { + "period": 3681790, + "thread": 5 + } + }, + { + "amount": "75.210425523", + "slot": { + "period": 3808552, + "thread": 4 + } + } + ], + "AU1WPJEiFdbPFf8stCPGeLqTSm8ewX1R65wsNHUg4fLFLGpWaWw1": [ + { + "amount": "254.796451837", + "slot": { + "period": 134727, + "thread": 1 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 180951, + "thread": 0 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 375972, + "thread": 28 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 512779, + "thread": 25 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 770253, + "thread": 0 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 877823, + "thread": 11 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1129334, + "thread": 17 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1228039, + "thread": 1 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1406383, + "thread": 0 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1582930, + "thread": 10 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1727493, + "thread": 20 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 1840286, + "thread": 14 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2133354, + "thread": 6 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2185932, + "thread": 30 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2339858, + "thread": 10 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2579832, + "thread": 6 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2776150, + "thread": 26 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 2922460, + "thread": 5 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 3002598, + "thread": 30 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 3158527, + "thread": 27 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 3377097, + "thread": 25 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 3487040, + "thread": 25 + } + }, + { + "amount": "254.796451837", + "slot": { + "period": 3773358, + "thread": 20 + } + }, + { + "amount": "254.796451828", + "slot": { + "period": 3805713, + "thread": 10 + } + } + ], + "AU1WPMMtDMTpD6tZ9Q2bfLRQYtNBQjJm8VTDow1VkGpFwtXS63fH": [ + { + "amount": "260.911517200", + "slot": { + "period": 67683, + "thread": 28 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 283186, + "thread": 27 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 344131, + "thread": 23 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 505709, + "thread": 5 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 774172, + "thread": 21 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 957086, + "thread": 13 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1005878, + "thread": 19 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1179375, + "thread": 1 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1351312, + "thread": 20 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1627991, + "thread": 25 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1751921, + "thread": 0 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 1866530, + "thread": 10 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2051095, + "thread": 2 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2236954, + "thread": 29 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2359646, + "thread": 27 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2574246, + "thread": 13 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2738302, + "thread": 30 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2797644, + "thread": 24 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 2999323, + "thread": 17 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 3212045, + "thread": 17 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 3429190, + "thread": 24 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 3462156, + "thread": 6 + } + }, + { + "amount": "260.911517200", + "slot": { + "period": 3718067, + "thread": 26 + } + }, + { + "amount": "260.911517192", + "slot": { + "period": 3854177, + "thread": 21 + } + } + ], + "AU1WPQzAp1JTP7795iEx7tnf4dpmdBuoahBVyEdmGBLGPrmXrtU8": [ + { + "amount": "537.833704332", + "slot": { + "period": 68800, + "thread": 24 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 267945, + "thread": 17 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 336620, + "thread": 14 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 611688, + "thread": 20 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 804438, + "thread": 2 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 958821, + "thread": 23 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1053232, + "thread": 26 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1277485, + "thread": 4 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1346059, + "thread": 21 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1590194, + "thread": 0 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1762495, + "thread": 11 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 1837529, + "thread": 28 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2115260, + "thread": 29 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2159603, + "thread": 20 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2453672, + "thread": 16 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2483708, + "thread": 15 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2773573, + "thread": 16 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2911203, + "thread": 14 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 2985567, + "thread": 26 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 3144083, + "thread": 11 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 3385017, + "thread": 5 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 3586640, + "thread": 23 + } + }, + { + "amount": "537.833704332", + "slot": { + "period": 3771531, + "thread": 28 + } + }, + { + "amount": "537.833704327", + "slot": { + "period": 3822571, + "thread": 22 + } + } + ], + "AU1WPamcuug47Ss2xRsBmYu39ChYtnn7FiA9pMViTzsgZG8ZsyCy": [ + { + "amount": "189.299569285", + "slot": { + "period": 94164, + "thread": 1 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 212645, + "thread": 19 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 343578, + "thread": 17 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 605600, + "thread": 2 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 770147, + "thread": 9 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 861940, + "thread": 8 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1035423, + "thread": 3 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1196264, + "thread": 9 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1343454, + "thread": 15 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1630522, + "thread": 29 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1784637, + "thread": 30 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 1907383, + "thread": 27 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2055924, + "thread": 5 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2170320, + "thread": 5 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2373800, + "thread": 3 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2524598, + "thread": 29 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2672610, + "thread": 7 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2947953, + "thread": 21 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 2985315, + "thread": 14 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 3151211, + "thread": 10 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 3348325, + "thread": 15 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 3612059, + "thread": 0 + } + }, + { + "amount": "189.299569285", + "slot": { + "period": 3702864, + "thread": 31 + } + }, + { + "amount": "189.299569278", + "slot": { + "period": 3941238, + "thread": 16 + } + } + ], + "AU1WRFbmiw6uBXKTQQciNgapu6iU7RARvhNJ4hBGddbUYTK3mfGB": [ + { + "amount": "84.631842285", + "slot": { + "period": 140743, + "thread": 4 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 290339, + "thread": 22 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 409177, + "thread": 24 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 644496, + "thread": 7 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 760554, + "thread": 10 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 854428, + "thread": 11 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1035184, + "thread": 25 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1290742, + "thread": 21 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1344561, + "thread": 14 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1536182, + "thread": 2 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1733497, + "thread": 11 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 1906959, + "thread": 18 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2030887, + "thread": 31 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2171729, + "thread": 28 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2378409, + "thread": 20 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2509840, + "thread": 2 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2716821, + "thread": 10 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2848387, + "thread": 28 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 2968224, + "thread": 24 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 3171709, + "thread": 20 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 3447439, + "thread": 30 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 3605761, + "thread": 31 + } + }, + { + "amount": "84.631842285", + "slot": { + "period": 3706351, + "thread": 5 + } + }, + { + "amount": "84.631842280", + "slot": { + "period": 3908373, + "thread": 3 + } + } + ], + "AU1WSPhKsQJm5MRfNFzve9D89e2cUA8si1ba9mQAcVSdzjZD5Fz7": [ + { + "amount": "131.773955930", + "slot": { + "period": 80500, + "thread": 26 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 307290, + "thread": 15 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 353712, + "thread": 11 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 544521, + "thread": 2 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 730868, + "thread": 5 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 838401, + "thread": 2 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1121273, + "thread": 24 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1234358, + "thread": 26 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1385086, + "thread": 13 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1505875, + "thread": 13 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1773267, + "thread": 13 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 1921369, + "thread": 18 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2059411, + "thread": 12 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2232558, + "thread": 16 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2455204, + "thread": 8 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2474714, + "thread": 17 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2703795, + "thread": 7 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2857996, + "thread": 29 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 2976084, + "thread": 20 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 3123088, + "thread": 19 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 3422175, + "thread": 24 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 3532676, + "thread": 14 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 3679794, + "thread": 18 + } + }, + { + "amount": "131.773955930", + "slot": { + "period": 3916289, + "thread": 17 + } + } + ], + "AU1WSR2LzNwc9UZiVYTFKEDWphRevYuzo2YuBZQiA51co8HuEXqC": [ + { + "amount": "211.627365107", + "slot": { + "period": 91078, + "thread": 30 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 172022, + "thread": 25 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 442685, + "thread": 6 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 616387, + "thread": 25 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 763854, + "thread": 30 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 932233, + "thread": 16 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1030961, + "thread": 21 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1257048, + "thread": 23 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1475899, + "thread": 21 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1571476, + "thread": 1 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1679645, + "thread": 25 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 1949577, + "thread": 7 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2029197, + "thread": 23 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2278597, + "thread": 4 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2303151, + "thread": 22 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2548089, + "thread": 20 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2635577, + "thread": 27 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 2862323, + "thread": 9 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 3010540, + "thread": 23 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 3202927, + "thread": 29 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 3396892, + "thread": 14 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 3455668, + "thread": 5 + } + }, + { + "amount": "211.627365107", + "slot": { + "period": 3634885, + "thread": 21 + } + }, + { + "amount": "211.627365106", + "slot": { + "period": 3886598, + "thread": 17 + } + } + ], + "AU1WSisftLYGLMBqjcuCD99RbLCfGuNccVc5vMXa2ZAratxsnXyh": [ + { + "amount": "60.582442909", + "slot": { + "period": 85545, + "thread": 30 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 318711, + "thread": 2 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 477187, + "thread": 13 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 538780, + "thread": 9 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 681907, + "thread": 30 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 837306, + "thread": 20 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1019568, + "thread": 6 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1272528, + "thread": 11 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1411269, + "thread": 5 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1586028, + "thread": 19 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1726907, + "thread": 28 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 1939171, + "thread": 7 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2142183, + "thread": 27 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2267538, + "thread": 27 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2302631, + "thread": 22 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2621715, + "thread": 20 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2745403, + "thread": 28 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2808421, + "thread": 21 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 2954254, + "thread": 22 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 3164038, + "thread": 19 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 3447133, + "thread": 31 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 3584593, + "thread": 15 + } + }, + { + "amount": "60.582442909", + "slot": { + "period": 3695001, + "thread": 9 + } + }, + { + "amount": "60.582442916", + "slot": { + "period": 3835542, + "thread": 19 + } + } + ], + "AU1WTJjwTidNrn9WVNer5ENp9Q9sLy6um78pZp1jvv8k2Jx7QPC8": [ + { + "amount": "158.952754592", + "slot": { + "period": 113981, + "thread": 12 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 281264, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 428135, + "thread": 28 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 533200, + "thread": 24 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 783846, + "thread": 12 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 854473, + "thread": 26 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1002498, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1245744, + "thread": 30 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1437014, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1594375, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1773057, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 1824899, + "thread": 10 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2028444, + "thread": 11 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2249857, + "thread": 18 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2411500, + "thread": 17 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2582724, + "thread": 6 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2659207, + "thread": 23 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 2917458, + "thread": 29 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 3107097, + "thread": 8 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 3253265, + "thread": 31 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 3420980, + "thread": 2 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 3495276, + "thread": 30 + } + }, + { + "amount": "158.952754592", + "slot": { + "period": 3686210, + "thread": 25 + } + }, + { + "amount": "158.952754597", + "slot": { + "period": 3893428, + "thread": 0 + } + } + ], + "AU1WTWoP81VRmbaG8TrUKxnbs36XWzBTnbi6cUzwMQ1yP2h4qbhz": [ + { + "amount": "320.832490296", + "slot": { + "period": 74105, + "thread": 22 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 222159, + "thread": 9 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 327300, + "thread": 10 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 617236, + "thread": 22 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 796844, + "thread": 17 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 902286, + "thread": 24 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1081593, + "thread": 3 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1212216, + "thread": 10 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1464457, + "thread": 31 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1571388, + "thread": 13 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1731135, + "thread": 29 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 1854015, + "thread": 21 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2088692, + "thread": 18 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2153108, + "thread": 28 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2448333, + "thread": 26 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2499152, + "thread": 5 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2716048, + "thread": 23 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2896905, + "thread": 27 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 2973674, + "thread": 2 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 3159839, + "thread": 26 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 3405451, + "thread": 17 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 3495870, + "thread": 6 + } + }, + { + "amount": "320.832490296", + "slot": { + "period": 3648612, + "thread": 29 + } + }, + { + "amount": "320.832490300", + "slot": { + "period": 3889804, + "thread": 15 + } + } + ], + "AU1WTgTXKL92ySEedMVDP7meWTnq4APZJw6v9iYqyki3cY1HZChs": [ + { + "amount": "532.783895692", + "slot": { + "period": 45529, + "thread": 25 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 209571, + "thread": 14 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 431022, + "thread": 3 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 563141, + "thread": 24 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 655516, + "thread": 9 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 871111, + "thread": 23 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1053517, + "thread": 7 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1250278, + "thread": 28 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1349788, + "thread": 27 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1490170, + "thread": 26 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1673365, + "thread": 24 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 1817016, + "thread": 26 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2006914, + "thread": 0 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2234533, + "thread": 9 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2407745, + "thread": 9 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2570071, + "thread": 18 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2744540, + "thread": 13 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 2881172, + "thread": 28 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 3087284, + "thread": 5 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 3245072, + "thread": 17 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 3436878, + "thread": 1 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 3578085, + "thread": 26 + } + }, + { + "amount": "532.783895692", + "slot": { + "period": 3743973, + "thread": 25 + } + }, + { + "amount": "532.783895686", + "slot": { + "period": 3876093, + "thread": 30 + } + } + ], + "AU1WTqxR5FFKP1inTyTgMG3FWy2Xr1SXASGTA7nZk2CF35nVvUsQ": [ + { + "amount": "166.589104347", + "slot": { + "period": 62274, + "thread": 2 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 246033, + "thread": 26 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 355472, + "thread": 30 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 524820, + "thread": 24 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 762888, + "thread": 6 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 890860, + "thread": 6 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1037939, + "thread": 6 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1203075, + "thread": 30 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1462661, + "thread": 9 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1506043, + "thread": 20 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1656814, + "thread": 29 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 1910232, + "thread": 20 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2129695, + "thread": 12 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2233766, + "thread": 5 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2453621, + "thread": 2 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2590964, + "thread": 18 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2668524, + "thread": 14 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2857834, + "thread": 23 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 2976913, + "thread": 5 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 3134188, + "thread": 19 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 3444277, + "thread": 27 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 3595235, + "thread": 20 + } + }, + { + "amount": "166.589104347", + "slot": { + "period": 3777637, + "thread": 15 + } + }, + { + "amount": "166.589104342", + "slot": { + "period": 3874362, + "thread": 2 + } + } + ], + "AU1WU1DeLoVrEZKvHnc3ANMYh6qib2BCyoCPjiQpb8RkYwYzA2Ne": [ + { + "amount": "437.995760988", + "slot": { + "period": 40817, + "thread": 6 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 263007, + "thread": 0 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 454341, + "thread": 7 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 593632, + "thread": 5 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 778424, + "thread": 1 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 935297, + "thread": 21 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 991089, + "thread": 17 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1253664, + "thread": 10 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1458526, + "thread": 20 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1483560, + "thread": 24 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1667268, + "thread": 29 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1950422, + "thread": 8 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 1987170, + "thread": 23 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2200354, + "thread": 2 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2339819, + "thread": 30 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2469663, + "thread": 13 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2685950, + "thread": 21 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2844356, + "thread": 10 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 2965575, + "thread": 28 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 3245930, + "thread": 5 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 3407852, + "thread": 6 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 3470356, + "thread": 29 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 3775348, + "thread": 7 + } + }, + { + "amount": "437.995760988", + "slot": { + "period": 3889203, + "thread": 24 + } + } + ], + "AU1WUa3UcKrY69XPt88AQk4BQBoZhtkPiVSL4jvUKmYYFmjhszi5": [ + { + "amount": "131.064370983", + "slot": { + "period": 15932, + "thread": 12 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 219923, + "thread": 23 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 455228, + "thread": 16 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 606362, + "thread": 27 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 776492, + "thread": 12 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 859298, + "thread": 31 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1066999, + "thread": 29 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1225665, + "thread": 18 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1457417, + "thread": 12 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1486295, + "thread": 26 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1696128, + "thread": 24 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 1963509, + "thread": 1 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2103315, + "thread": 13 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2268537, + "thread": 5 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2315915, + "thread": 12 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2542250, + "thread": 9 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2626966, + "thread": 13 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 2880099, + "thread": 7 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 3087440, + "thread": 12 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 3245340, + "thread": 7 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 3292467, + "thread": 14 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 3555593, + "thread": 11 + } + }, + { + "amount": "131.064370983", + "slot": { + "period": 3669565, + "thread": 0 + } + }, + { + "amount": "131.064370990", + "slot": { + "period": 3837558, + "thread": 6 + } + } + ], + "AU1WUpngD9rxfGwx659bw5wHZ4WKKjP3qgL12YFETVqujDR7pwJb": [ + { + "amount": "81.646624456", + "slot": { + "period": 14004, + "thread": 13 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 196208, + "thread": 6 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 453425, + "thread": 16 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 578273, + "thread": 28 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 659165, + "thread": 26 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 844895, + "thread": 19 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1128000, + "thread": 15 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1189551, + "thread": 0 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1430630, + "thread": 22 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1541091, + "thread": 4 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1790334, + "thread": 7 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 1944147, + "thread": 0 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2080806, + "thread": 25 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2206648, + "thread": 13 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2337136, + "thread": 13 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2582157, + "thread": 5 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2784383, + "thread": 8 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 2815921, + "thread": 16 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 3117025, + "thread": 1 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 3182555, + "thread": 8 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 3295871, + "thread": 6 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 3566037, + "thread": 28 + } + }, + { + "amount": "81.646624456", + "slot": { + "period": 3693589, + "thread": 10 + } + }, + { + "amount": "81.646624447", + "slot": { + "period": 3846282, + "thread": 1 + } + } + ], + "AU1WWLGtcsmgZ4CGr9YkuzYRXKavt6ndawF97euAN7tzqKKyFPsp": [ + { + "amount": "80.444532702", + "slot": { + "period": 166245, + "thread": 11 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 275521, + "thread": 16 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 391078, + "thread": 1 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 499159, + "thread": 15 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 746134, + "thread": 14 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 949140, + "thread": 27 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1064834, + "thread": 9 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1169558, + "thread": 28 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1370092, + "thread": 11 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1617582, + "thread": 28 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1718094, + "thread": 12 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 1834591, + "thread": 0 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2015379, + "thread": 27 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2281123, + "thread": 26 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2296093, + "thread": 19 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2616457, + "thread": 31 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2659606, + "thread": 17 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2858249, + "thread": 30 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 2979311, + "thread": 8 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 3189230, + "thread": 20 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 3329644, + "thread": 11 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 3501441, + "thread": 22 + } + }, + { + "amount": "80.444532702", + "slot": { + "period": 3721544, + "thread": 15 + } + }, + { + "amount": "80.444532690", + "slot": { + "period": 3875761, + "thread": 8 + } + } + ], + "AU1WWVaVezfMGwjGE5gPTu8xo4AihVmuqiG6y7VNgN2xuMChw8Xh": [ + { + "amount": "140.448602161", + "slot": { + "period": 143036, + "thread": 8 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 176178, + "thread": 11 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 411770, + "thread": 18 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 492917, + "thread": 25 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 670377, + "thread": 13 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 881128, + "thread": 4 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1132118, + "thread": 21 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1161753, + "thread": 3 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1412414, + "thread": 15 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1531979, + "thread": 4 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1752225, + "thread": 24 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 1862456, + "thread": 12 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2109976, + "thread": 15 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2292471, + "thread": 17 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2402643, + "thread": 17 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2509685, + "thread": 1 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2679503, + "thread": 9 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 2820370, + "thread": 4 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 3030331, + "thread": 26 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 3285120, + "thread": 29 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 3435688, + "thread": 30 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 3585830, + "thread": 1 + } + }, + { + "amount": "140.448602161", + "slot": { + "period": 3771596, + "thread": 27 + } + }, + { + "amount": "140.448602150", + "slot": { + "period": 3827683, + "thread": 22 + } + } + ], + "AU1WWWoxudh1uhgebp7fQ5aRsERi51LFRUknXuQrBeqEN7DUm7zz": [ + { + "amount": "57.123648782", + "slot": { + "period": 122626, + "thread": 21 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 305813, + "thread": 1 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 362561, + "thread": 0 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 524783, + "thread": 12 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 800645, + "thread": 8 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 903015, + "thread": 18 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1081505, + "thread": 8 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1180662, + "thread": 3 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1395331, + "thread": 16 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1627840, + "thread": 13 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1709038, + "thread": 8 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 1867214, + "thread": 24 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2102951, + "thread": 12 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2229631, + "thread": 4 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2438687, + "thread": 28 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2616202, + "thread": 19 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2703642, + "thread": 22 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 2832798, + "thread": 10 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 3043146, + "thread": 5 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 3167836, + "thread": 26 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 3420924, + "thread": 31 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 3603298, + "thread": 25 + } + }, + { + "amount": "57.123648782", + "slot": { + "period": 3669583, + "thread": 23 + } + }, + { + "amount": "57.123648776", + "slot": { + "period": 3881592, + "thread": 10 + } + } + ], + "AU1WWuUJGKnTaWuP5fEL4wVqVa6Q7bHFjU9vHKpGqkTkCnJsHzYt": [ + { + "amount": "367.241755104", + "slot": { + "period": 144363, + "thread": 16 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 176220, + "thread": 31 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 334602, + "thread": 26 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 617200, + "thread": 10 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 788895, + "thread": 8 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 964473, + "thread": 21 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1118815, + "thread": 3 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1247135, + "thread": 11 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1355140, + "thread": 9 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1625501, + "thread": 22 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1708116, + "thread": 21 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 1934246, + "thread": 12 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2063895, + "thread": 18 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2229576, + "thread": 13 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2379325, + "thread": 20 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2585363, + "thread": 9 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2731355, + "thread": 5 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2831746, + "thread": 3 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 2978702, + "thread": 7 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 3186904, + "thread": 9 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 3379427, + "thread": 6 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 3461839, + "thread": 8 + } + }, + { + "amount": "367.241755104", + "slot": { + "period": 3675536, + "thread": 12 + } + }, + { + "amount": "367.241755113", + "slot": { + "period": 3872851, + "thread": 27 + } + } + ], + "AU1WXS3u2L9ZoJ4Y76biXPaejA6pVAZnmkXp7UzvEBDNcRNKeqgW": [ + { + "amount": "68.135025217", + "slot": { + "period": 141084, + "thread": 16 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 231921, + "thread": 13 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 430168, + "thread": 22 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 594888, + "thread": 15 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 748977, + "thread": 17 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 907940, + "thread": 7 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1128972, + "thread": 6 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1302669, + "thread": 22 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1333847, + "thread": 3 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1588227, + "thread": 11 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1693650, + "thread": 9 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 1895837, + "thread": 14 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2019883, + "thread": 26 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2164486, + "thread": 1 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2413438, + "thread": 18 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2504062, + "thread": 0 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2641165, + "thread": 6 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 2896195, + "thread": 26 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 3056242, + "thread": 2 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 3234389, + "thread": 7 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 3319017, + "thread": 21 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 3533613, + "thread": 7 + } + }, + { + "amount": "68.135025217", + "slot": { + "period": 3648812, + "thread": 11 + } + }, + { + "amount": "68.135025227", + "slot": { + "period": 3930081, + "thread": 22 + } + } + ], + "AU1WYfWL9fewsYPxtjVaEEKRnDJ4cpM3iXppmA8Z7B1MYmDfvpsj": [ + { + "amount": "143.667084397", + "slot": { + "period": 133492, + "thread": 28 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 227628, + "thread": 6 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 327081, + "thread": 2 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 647335, + "thread": 17 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 715154, + "thread": 2 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 895915, + "thread": 18 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1046382, + "thread": 6 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1293873, + "thread": 16 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1381549, + "thread": 15 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1524005, + "thread": 30 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1655339, + "thread": 23 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 1845035, + "thread": 13 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2008542, + "thread": 14 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2179824, + "thread": 13 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2347805, + "thread": 25 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2485234, + "thread": 10 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2656737, + "thread": 15 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 2801880, + "thread": 20 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 3091402, + "thread": 20 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 3155618, + "thread": 27 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 3293620, + "thread": 11 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 3591694, + "thread": 19 + } + }, + { + "amount": "143.667084397", + "slot": { + "period": 3703483, + "thread": 19 + } + }, + { + "amount": "143.667084402", + "slot": { + "period": 3855582, + "thread": 18 + } + } + ], + "AU1WZgPzLvnetubQGZayWCQqZzbzk9cC5uUGgQ1g9boHr4zkmdVt": [ + { + "amount": "129.537381273", + "slot": { + "period": 118483, + "thread": 16 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 315478, + "thread": 27 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 331184, + "thread": 18 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 653266, + "thread": 8 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 814116, + "thread": 22 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 980654, + "thread": 10 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1002414, + "thread": 30 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1153073, + "thread": 15 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1327362, + "thread": 21 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1621513, + "thread": 29 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1805705, + "thread": 25 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 1892452, + "thread": 26 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2099727, + "thread": 15 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2161926, + "thread": 6 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2394913, + "thread": 17 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2519229, + "thread": 14 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2768185, + "thread": 3 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 2847660, + "thread": 24 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 3098582, + "thread": 7 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 3196994, + "thread": 27 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 3336066, + "thread": 6 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 3571424, + "thread": 11 + } + }, + { + "amount": "129.537381273", + "slot": { + "period": 3699751, + "thread": 9 + } + }, + { + "amount": "129.537381275", + "slot": { + "period": 3945342, + "thread": 9 + } + } + ], + "AU1WaK9iYXij6qq1rw5hETpGE3g6apdVwQYwVQJoPdoSZXNr2Upc": [ + { + "amount": "69.019770647", + "slot": { + "period": 38995, + "thread": 22 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 317431, + "thread": 31 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 327851, + "thread": 17 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 627174, + "thread": 6 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 803499, + "thread": 14 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 842197, + "thread": 23 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1040948, + "thread": 7 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1280755, + "thread": 0 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1424455, + "thread": 14 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1619944, + "thread": 17 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1741806, + "thread": 20 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 1813264, + "thread": 26 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2105490, + "thread": 13 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2167106, + "thread": 31 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2311574, + "thread": 16 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2481373, + "thread": 31 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2715637, + "thread": 12 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2841817, + "thread": 11 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 2983697, + "thread": 31 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 3151978, + "thread": 30 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 3431563, + "thread": 19 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 3539636, + "thread": 28 + } + }, + { + "amount": "69.019770647", + "slot": { + "period": 3683623, + "thread": 14 + } + }, + { + "amount": "69.019770645", + "slot": { + "period": 3902672, + "thread": 22 + } + } + ], + "AU1WaKRjRCA7nz3wtR4Rhd785EFNTUjGjzCVznfRy6L3LRsqRbsR": [ + { + "amount": "58.491156344", + "slot": { + "period": 32756, + "thread": 19 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 224593, + "thread": 21 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 419069, + "thread": 21 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 601365, + "thread": 0 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 704623, + "thread": 6 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 898187, + "thread": 21 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1004816, + "thread": 15 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1230932, + "thread": 30 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1317694, + "thread": 1 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1535937, + "thread": 28 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1744361, + "thread": 27 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 1836354, + "thread": 23 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2121567, + "thread": 6 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2145940, + "thread": 25 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2365208, + "thread": 8 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2609687, + "thread": 27 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2653914, + "thread": 12 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 2800030, + "thread": 9 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 3091399, + "thread": 12 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 3184841, + "thread": 3 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 3400530, + "thread": 3 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 3590212, + "thread": 9 + } + }, + { + "amount": "58.491156344", + "slot": { + "period": 3689783, + "thread": 28 + } + }, + { + "amount": "58.491156356", + "slot": { + "period": 3820161, + "thread": 21 + } + } + ], + "AU1Wai6Yci6xjPk1uEjMCyUD83MkCPYCnsxDGHmu2rdKyjmb6RQ6": [ + { + "amount": "355.717578979", + "slot": { + "period": 79799, + "thread": 4 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 217890, + "thread": 30 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 348355, + "thread": 7 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 615243, + "thread": 19 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 775395, + "thread": 3 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 965572, + "thread": 4 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1004854, + "thread": 9 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1156943, + "thread": 8 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1388395, + "thread": 13 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1618688, + "thread": 4 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1788393, + "thread": 28 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1906401, + "thread": 30 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 1989087, + "thread": 3 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2235980, + "thread": 30 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2342469, + "thread": 18 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2490809, + "thread": 3 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2787358, + "thread": 15 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2836877, + "thread": 2 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 2975256, + "thread": 14 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 3123487, + "thread": 6 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 3399990, + "thread": 30 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 3514824, + "thread": 3 + } + }, + { + "amount": "355.717578979", + "slot": { + "period": 3671578, + "thread": 24 + } + }, + { + "amount": "355.717578969", + "slot": { + "period": 3861242, + "thread": 1 + } + } + ], + "AU1WbDmZDoBxCZvkwXaHaN2rKcWALVjDwqKTZo1Yb1s7ZB45JC8p": [ + { + "amount": "350.632289664", + "slot": { + "period": 88405, + "thread": 16 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 262088, + "thread": 8 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 366313, + "thread": 17 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 560284, + "thread": 0 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 812740, + "thread": 10 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 918846, + "thread": 13 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 988540, + "thread": 2 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 1228087, + "thread": 22 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 1400880, + "thread": 30 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 1517959, + "thread": 24 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 1800579, + "thread": 2 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 1833462, + "thread": 27 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2119151, + "thread": 19 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2146241, + "thread": 12 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2324234, + "thread": 14 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2511914, + "thread": 30 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2634514, + "thread": 19 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 2909954, + "thread": 2 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 3068737, + "thread": 13 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 3256106, + "thread": 7 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 3303462, + "thread": 24 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 3536566, + "thread": 25 + } + }, + { + "amount": "350.632289664", + "slot": { + "period": 3723610, + "thread": 13 + } + }, + { + "amount": "350.632289661", + "slot": { + "period": 3818169, + "thread": 1 + } + } + ], + "AU1WcH8NRpFUTLbvYQTbK5woiXiQ9X8cABro1mhBuKnmqc237vLx": [ + { + "amount": "249.535757027", + "slot": { + "period": 33356, + "thread": 2 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 263858, + "thread": 13 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 459715, + "thread": 2 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 529076, + "thread": 6 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 672003, + "thread": 15 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 883872, + "thread": 5 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1124943, + "thread": 19 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1181902, + "thread": 25 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1329384, + "thread": 6 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1587123, + "thread": 12 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1707165, + "thread": 8 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 1973117, + "thread": 1 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2134270, + "thread": 8 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2173347, + "thread": 0 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2450183, + "thread": 3 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2622384, + "thread": 6 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2721477, + "thread": 28 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 2931042, + "thread": 3 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 3049991, + "thread": 20 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 3200348, + "thread": 12 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 3444354, + "thread": 11 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 3544721, + "thread": 15 + } + }, + { + "amount": "249.535757027", + "slot": { + "period": 3771059, + "thread": 2 + } + }, + { + "amount": "249.535757032", + "slot": { + "period": 3944864, + "thread": 28 + } + } + ], + "AU1WcKCQUWMYhrLf3eCgvEEMS251zeBSMtRajiLtQK4FeasgQ2C": [ + { + "amount": "112.407064677", + "slot": { + "period": 122388, + "thread": 26 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 198815, + "thread": 19 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 355740, + "thread": 9 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 526557, + "thread": 5 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 658654, + "thread": 25 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 854069, + "thread": 10 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1114507, + "thread": 31 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1207547, + "thread": 5 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1351257, + "thread": 20 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1588593, + "thread": 24 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1805310, + "thread": 27 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 1910877, + "thread": 22 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2115374, + "thread": 19 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2248619, + "thread": 14 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2461903, + "thread": 20 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2498926, + "thread": 8 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2782110, + "thread": 24 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 2879508, + "thread": 21 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 3064101, + "thread": 12 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 3288196, + "thread": 22 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 3427034, + "thread": 21 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 3588545, + "thread": 11 + } + }, + { + "amount": "112.407064677", + "slot": { + "period": 3641560, + "thread": 22 + } + }, + { + "amount": "112.407064669", + "slot": { + "period": 3917373, + "thread": 1 + } + } + ], + "AU1WcdRRnnS4NspcbSEg2QsFj6MkbnaSD3Eahg8JMhJvQUtzA19s": [ + { + "amount": "97.628337769", + "slot": { + "period": 26215, + "thread": 18 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 208180, + "thread": 8 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 473963, + "thread": 27 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 499189, + "thread": 3 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 812377, + "thread": 22 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 894972, + "thread": 2 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1082973, + "thread": 0 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1223881, + "thread": 6 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1320083, + "thread": 7 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1609034, + "thread": 18 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1806437, + "thread": 1 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 1931883, + "thread": 28 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2040307, + "thread": 0 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2293196, + "thread": 13 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2335828, + "thread": 17 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2546624, + "thread": 16 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2632226, + "thread": 10 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2910973, + "thread": 23 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 2976154, + "thread": 8 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 3194999, + "thread": 0 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 3354026, + "thread": 30 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 3608855, + "thread": 21 + } + }, + { + "amount": "97.628337769", + "slot": { + "period": 3755065, + "thread": 1 + } + }, + { + "amount": "97.628337765", + "slot": { + "period": 3850599, + "thread": 11 + } + } + ], + "AU1WcfiXgWAFBZ3PiUzY48MmdeRZ9F69FuGUo8UhBAy8HeSMG6zv": [ + { + "amount": "428.699854078", + "slot": { + "period": 130601, + "thread": 11 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 297509, + "thread": 25 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 380831, + "thread": 14 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 507455, + "thread": 16 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 794280, + "thread": 3 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 846073, + "thread": 21 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1025364, + "thread": 23 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1282241, + "thread": 16 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1346463, + "thread": 23 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1546620, + "thread": 30 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1781788, + "thread": 26 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 1958395, + "thread": 25 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2113371, + "thread": 7 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2254284, + "thread": 3 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2304182, + "thread": 25 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2591116, + "thread": 2 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2785509, + "thread": 27 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2903382, + "thread": 15 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 2971658, + "thread": 30 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 3148926, + "thread": 14 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 3351249, + "thread": 13 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 3556216, + "thread": 3 + } + }, + { + "amount": "428.699854078", + "slot": { + "period": 3660168, + "thread": 20 + } + }, + { + "amount": "428.699854075", + "slot": { + "period": 3866985, + "thread": 24 + } + } + ], + "AU1WcoynuHmvPp9edU8WAhe3hEKuaG3mo9sYviaE7P7pCUH4jVgW": [ + { + "amount": "148.766224997", + "slot": { + "period": 125362, + "thread": 11 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 197317, + "thread": 21 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 395098, + "thread": 25 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 579345, + "thread": 8 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 769582, + "thread": 22 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 907407, + "thread": 13 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1112273, + "thread": 1 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1208265, + "thread": 17 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1380064, + "thread": 8 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1559555, + "thread": 10 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1667060, + "thread": 10 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 1926708, + "thread": 3 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2082023, + "thread": 23 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2225911, + "thread": 9 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2325309, + "thread": 11 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2574459, + "thread": 25 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2752251, + "thread": 31 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 2822170, + "thread": 31 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3000298, + "thread": 0 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3280160, + "thread": 3 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3376607, + "thread": 25 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3554245, + "thread": 9 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3698901, + "thread": 13 + } + }, + { + "amount": "148.766224997", + "slot": { + "period": 3793338, + "thread": 7 + } + } + ], + "AU1WcuQA4P5eHZNVQs3AN97M9bhHts6KbPTq2gfMXGAXu3cEXHNA": [ + { + "amount": "490.049731561", + "slot": { + "period": 98307, + "thread": 7 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 313903, + "thread": 0 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 342284, + "thread": 2 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 611366, + "thread": 4 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 777077, + "thread": 30 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 867162, + "thread": 26 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 996335, + "thread": 21 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 1225173, + "thread": 9 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 1430822, + "thread": 27 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 1597865, + "thread": 11 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 1701941, + "thread": 2 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 1827333, + "thread": 19 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2142218, + "thread": 13 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2144246, + "thread": 9 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2329860, + "thread": 11 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2568029, + "thread": 10 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2758459, + "thread": 17 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 2794257, + "thread": 28 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 3061762, + "thread": 29 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 3158840, + "thread": 4 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 3357327, + "thread": 31 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 3571859, + "thread": 20 + } + }, + { + "amount": "490.049731561", + "slot": { + "period": 3670543, + "thread": 29 + } + }, + { + "amount": "490.049731564", + "slot": { + "period": 3865459, + "thread": 29 + } + } + ], + "AU1WcynBZe8DJowXBhWArNKPtUyk2Uy6EEXc13z8SQsFPA2BRwj3": [ + { + "amount": "234.292353569", + "slot": { + "period": 103351, + "thread": 30 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 271635, + "thread": 0 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 425274, + "thread": 14 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 594635, + "thread": 8 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 662755, + "thread": 24 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 954960, + "thread": 17 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1064913, + "thread": 10 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1296618, + "thread": 28 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1438954, + "thread": 17 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1496527, + "thread": 27 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1668264, + "thread": 8 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 1817801, + "thread": 27 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2091480, + "thread": 14 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2282584, + "thread": 12 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2332268, + "thread": 3 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2519329, + "thread": 30 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2781327, + "thread": 11 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 2886337, + "thread": 9 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 3064957, + "thread": 25 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 3181125, + "thread": 24 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 3388088, + "thread": 21 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 3470361, + "thread": 22 + } + }, + { + "amount": "234.292353569", + "slot": { + "period": 3688858, + "thread": 30 + } + }, + { + "amount": "234.292353580", + "slot": { + "period": 3862477, + "thread": 5 + } + } + ], + "AU1WdNnLhKwDtNsgSbvbe4HQtFSrZiz9mEvmsX7FVRrSJ1nG6pkg": [ + { + "amount": "149.774665423", + "slot": { + "period": 163686, + "thread": 6 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 262105, + "thread": 26 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 389746, + "thread": 21 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 546024, + "thread": 17 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 735076, + "thread": 15 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 960112, + "thread": 22 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1060666, + "thread": 18 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1181749, + "thread": 24 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1367657, + "thread": 29 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1586460, + "thread": 19 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1770301, + "thread": 28 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1871540, + "thread": 23 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 1999517, + "thread": 3 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2162407, + "thread": 4 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2333309, + "thread": 17 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2486810, + "thread": 24 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2640097, + "thread": 10 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2834655, + "thread": 7 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 2981789, + "thread": 23 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 3149721, + "thread": 14 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 3386354, + "thread": 7 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 3469106, + "thread": 19 + } + }, + { + "amount": "149.774665423", + "slot": { + "period": 3776783, + "thread": 8 + } + }, + { + "amount": "149.774665427", + "slot": { + "period": 3787462, + "thread": 8 + } + } + ], + "AU1We9ywbGVgwZDyDrX7X197KScdm27LUwMAv6FJfZncNppb76gt": [ + { + "amount": "279.712083361", + "slot": { + "period": 142023, + "thread": 9 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 181354, + "thread": 23 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 374197, + "thread": 24 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 634044, + "thread": 26 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 779028, + "thread": 20 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 972110, + "thread": 10 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1058052, + "thread": 7 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1221930, + "thread": 5 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1426604, + "thread": 0 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1635669, + "thread": 30 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1666622, + "thread": 8 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 1935514, + "thread": 2 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2071020, + "thread": 4 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2172398, + "thread": 10 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2429083, + "thread": 2 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2539606, + "thread": 15 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2739105, + "thread": 25 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 2935506, + "thread": 2 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 3063847, + "thread": 13 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 3159412, + "thread": 0 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 3336417, + "thread": 28 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 3537265, + "thread": 18 + } + }, + { + "amount": "279.712083361", + "slot": { + "period": 3671206, + "thread": 29 + } + }, + { + "amount": "279.712083364", + "slot": { + "period": 3809282, + "thread": 29 + } + } + ], + "AU1WeufJgx1uy8BhmQeSHEVyHChdK3aLkko9gb5oityyL183EFQQ": [ + { + "amount": "75.331087276", + "slot": { + "period": 56334, + "thread": 13 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 274532, + "thread": 9 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 487359, + "thread": 11 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 533870, + "thread": 13 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 818501, + "thread": 0 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 973688, + "thread": 9 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1073106, + "thread": 3 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1310155, + "thread": 12 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1476899, + "thread": 24 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1588807, + "thread": 18 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1698326, + "thread": 20 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1858039, + "thread": 27 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 1981547, + "thread": 21 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 2183975, + "thread": 15 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 2422660, + "thread": 11 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 2503341, + "thread": 6 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 2650865, + "thread": 21 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 2903248, + "thread": 5 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 3013840, + "thread": 27 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 3286238, + "thread": 30 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 3313488, + "thread": 5 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 3548720, + "thread": 6 + } + }, + { + "amount": "75.331087276", + "slot": { + "period": 3704858, + "thread": 3 + } + }, + { + "amount": "75.331087284", + "slot": { + "period": 3843243, + "thread": 19 + } + } + ], + "AU1WfJh18jFtgVQhkQJLu1AMsuHd3ySDywsqQTXZJXuN1m4uRbAk": [ + { + "amount": "29166.666666667", + "slot": { + "period": 143733, + "thread": 14 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 278316, + "thread": 23 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 475575, + "thread": 6 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 494345, + "thread": 19 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 667282, + "thread": 1 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 935628, + "thread": 11 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1140234, + "thread": 16 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1172902, + "thread": 20 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1475485, + "thread": 0 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1543064, + "thread": 5 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1746588, + "thread": 23 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 1886221, + "thread": 0 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2023886, + "thread": 20 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2223399, + "thread": 25 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2389778, + "thread": 20 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2616148, + "thread": 26 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2679441, + "thread": 2 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 2840009, + "thread": 17 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3030124, + "thread": 26 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3182349, + "thread": 22 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3448641, + "thread": 28 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3475034, + "thread": 11 + } + }, + { + "amount": "29166.666666667", + "slot": { + "period": 3725935, + "thread": 16 + } + }, + { + "amount": "29166.666666659", + "slot": { + "period": 3871651, + "thread": 14 + } + } + ], + "AU1WgGT8aZe2ztVFgVNdF14voQtvLx2S6eEkFxPK5DF7wKYeKwWA": [ + { + "amount": "51.626798478", + "slot": { + "period": 87762, + "thread": 23 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 321189, + "thread": 20 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 325233, + "thread": 29 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 499041, + "thread": 6 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 729878, + "thread": 30 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 977704, + "thread": 11 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1019497, + "thread": 23 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1227802, + "thread": 22 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1419322, + "thread": 4 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1612376, + "thread": 6 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1675009, + "thread": 29 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1920685, + "thread": 28 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 1984927, + "thread": 21 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2264023, + "thread": 5 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2324838, + "thread": 30 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2617751, + "thread": 2 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2714400, + "thread": 0 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2950806, + "thread": 1 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 2988900, + "thread": 30 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 3282261, + "thread": 23 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 3420306, + "thread": 10 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 3532591, + "thread": 15 + } + }, + { + "amount": "51.626798478", + "slot": { + "period": 3745437, + "thread": 14 + } + }, + { + "amount": "51.626798468", + "slot": { + "period": 3841911, + "thread": 9 + } + } + ], + "AU1WgL83NqR5Av6jmmDbmiuVMumouPjDo6yDZjQ6wJHPcjZMTnqC": [ + { + "amount": "265.420544241", + "slot": { + "period": 78485, + "thread": 14 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 221045, + "thread": 17 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 474415, + "thread": 16 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 497742, + "thread": 2 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 715081, + "thread": 8 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 920029, + "thread": 8 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1122696, + "thread": 16 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1305146, + "thread": 26 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1342435, + "thread": 30 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1618070, + "thread": 7 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1692455, + "thread": 14 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 1902247, + "thread": 27 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2011603, + "thread": 26 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2239504, + "thread": 30 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2455829, + "thread": 3 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2492953, + "thread": 12 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2748644, + "thread": 18 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 2920738, + "thread": 6 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 3048436, + "thread": 7 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 3178627, + "thread": 31 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 3321549, + "thread": 6 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 3470351, + "thread": 20 + } + }, + { + "amount": "265.420544241", + "slot": { + "period": 3644822, + "thread": 24 + } + }, + { + "amount": "265.420544231", + "slot": { + "period": 3847175, + "thread": 11 + } + } + ], + "AU1Wgksu1N4ZZRqNQxSnRWbMGcfps1UYuoaiEZp83QaSRUN9jtkF": [ + { + "amount": "232.872739338", + "slot": { + "period": 149254, + "thread": 9 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 238815, + "thread": 10 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 466075, + "thread": 28 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 531888, + "thread": 15 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 779735, + "thread": 20 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 955111, + "thread": 23 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1144675, + "thread": 24 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1269656, + "thread": 31 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1372500, + "thread": 17 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1551041, + "thread": 30 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1795047, + "thread": 29 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 1905380, + "thread": 18 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2071321, + "thread": 21 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2207682, + "thread": 20 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2363624, + "thread": 16 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2538377, + "thread": 6 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2655604, + "thread": 5 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2952531, + "thread": 20 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 2973816, + "thread": 21 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 3267650, + "thread": 20 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 3426271, + "thread": 7 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 3590593, + "thread": 26 + } + }, + { + "amount": "232.872739338", + "slot": { + "period": 3722724, + "thread": 14 + } + }, + { + "amount": "232.872739341", + "slot": { + "period": 3799216, + "thread": 11 + } + } + ], + "AU1WgmHaWLXt9yNLndsg8UMVBsDdnrsTvNjhL6Dz9ctBmZpSGx2A": [ + { + "amount": "143.367435186", + "slot": { + "period": 86315, + "thread": 21 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 295317, + "thread": 19 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 424029, + "thread": 29 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 576379, + "thread": 0 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 799988, + "thread": 19 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 952075, + "thread": 24 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1142358, + "thread": 3 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1210429, + "thread": 20 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1450476, + "thread": 0 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1486544, + "thread": 25 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1679729, + "thread": 12 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 1863758, + "thread": 25 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2032142, + "thread": 20 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2288162, + "thread": 4 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2391373, + "thread": 11 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2469403, + "thread": 25 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2782380, + "thread": 6 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 2943079, + "thread": 7 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 3025002, + "thread": 18 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 3273709, + "thread": 19 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 3380415, + "thread": 7 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 3578638, + "thread": 24 + } + }, + { + "amount": "143.367435186", + "slot": { + "period": 3680761, + "thread": 12 + } + }, + { + "amount": "143.367435178", + "slot": { + "period": 3886726, + "thread": 8 + } + } + ], + "AU1WgvSbZBD9c8xixfTgQEhwod1tC1GYRneTKbPrUjF7i9eHZCjx": [ + { + "amount": "120.102482567", + "slot": { + "period": 88690, + "thread": 7 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 252275, + "thread": 24 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 341537, + "thread": 11 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 631203, + "thread": 12 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 763308, + "thread": 23 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 859227, + "thread": 11 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1093971, + "thread": 23 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1313605, + "thread": 28 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1343014, + "thread": 23 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1573393, + "thread": 0 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1726880, + "thread": 12 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 1841736, + "thread": 7 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2090368, + "thread": 29 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2285053, + "thread": 17 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2409475, + "thread": 31 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2495613, + "thread": 17 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2700119, + "thread": 0 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 2863868, + "thread": 2 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 3062459, + "thread": 19 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 3270520, + "thread": 13 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 3291117, + "thread": 12 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 3479384, + "thread": 9 + } + }, + { + "amount": "120.102482567", + "slot": { + "period": 3618611, + "thread": 14 + } + }, + { + "amount": "120.102482575", + "slot": { + "period": 3888085, + "thread": 12 + } + } + ], + "AU1Wi53pvWLZzeVYLKCwBPacvbqZSvFCxRs1gHUqUPnRfFwjMg8Q": [ + { + "amount": "87.546632551", + "slot": { + "period": 148389, + "thread": 8 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 194732, + "thread": 16 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 336159, + "thread": 22 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 563561, + "thread": 4 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 706022, + "thread": 14 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 934162, + "thread": 4 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 992846, + "thread": 12 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 1251300, + "thread": 16 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 1453747, + "thread": 24 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 1625289, + "thread": 6 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 1805507, + "thread": 29 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 1948059, + "thread": 3 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2047570, + "thread": 6 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2217023, + "thread": 29 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2332462, + "thread": 14 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2581407, + "thread": 23 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2758007, + "thread": 19 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 2924766, + "thread": 19 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 3028946, + "thread": 24 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 3198383, + "thread": 17 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 3400374, + "thread": 24 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 3610379, + "thread": 13 + } + }, + { + "amount": "87.546632551", + "slot": { + "period": 3696752, + "thread": 20 + } + }, + { + "amount": "87.546632548", + "slot": { + "period": 3802993, + "thread": 23 + } + } + ], + "AU1WjPf1cWoum3iMuTTY9c1J456uSHGMNxnSRjUB1q2b3iLxRHes": [ + { + "amount": "158.371162707", + "slot": { + "period": 48830, + "thread": 12 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 226447, + "thread": 17 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 355094, + "thread": 25 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 530196, + "thread": 25 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 736100, + "thread": 20 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 841096, + "thread": 27 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1064734, + "thread": 14 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1244764, + "thread": 5 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1387169, + "thread": 12 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1563581, + "thread": 19 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1762716, + "thread": 2 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 1954572, + "thread": 15 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2106035, + "thread": 19 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2289597, + "thread": 19 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2407125, + "thread": 9 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2503232, + "thread": 11 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2732477, + "thread": 12 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2871994, + "thread": 24 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 2975335, + "thread": 11 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 3127153, + "thread": 27 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 3297778, + "thread": 25 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 3487245, + "thread": 29 + } + }, + { + "amount": "158.371162707", + "slot": { + "period": 3662125, + "thread": 19 + } + }, + { + "amount": "158.371162714", + "slot": { + "period": 3822776, + "thread": 1 + } + } + ], + "AU1WkU6h88fQCxc4XDAr1gNanEgHfNzSnJ5xFe7GXGnCeS9jcrr2": [ + { + "amount": "570.127119666", + "slot": { + "period": 132988, + "thread": 21 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 271559, + "thread": 18 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 443771, + "thread": 19 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 561435, + "thread": 21 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 799810, + "thread": 28 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 913239, + "thread": 21 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1050508, + "thread": 0 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1267276, + "thread": 15 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1387945, + "thread": 10 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1634492, + "thread": 0 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1802949, + "thread": 13 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 1868735, + "thread": 28 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2003105, + "thread": 30 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2247118, + "thread": 6 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2369462, + "thread": 17 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2501150, + "thread": 16 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2704532, + "thread": 11 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 2847952, + "thread": 11 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 3029109, + "thread": 28 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 3259722, + "thread": 22 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 3362892, + "thread": 5 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 3489386, + "thread": 8 + } + }, + { + "amount": "570.127119666", + "slot": { + "period": 3765134, + "thread": 1 + } + }, + { + "amount": "570.127119656", + "slot": { + "period": 3904979, + "thread": 23 + } + } + ], + "AU1WmAU5b7U2QzEHpASbjTL934sn3CiPx4ytKzTHYPQfCNFaYHvv": [ + { + "amount": "123.963851718", + "slot": { + "period": 166277, + "thread": 28 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 318709, + "thread": 22 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 490339, + "thread": 15 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 578018, + "thread": 1 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 817742, + "thread": 26 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 911787, + "thread": 12 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1102520, + "thread": 15 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1238551, + "thread": 15 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1473954, + "thread": 31 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1586454, + "thread": 12 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1721549, + "thread": 6 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1975076, + "thread": 30 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 1997298, + "thread": 6 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2206479, + "thread": 26 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2374529, + "thread": 11 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2500763, + "thread": 27 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2714473, + "thread": 8 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2823305, + "thread": 10 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 2990679, + "thread": 18 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 3136237, + "thread": 11 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 3378327, + "thread": 27 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 3451771, + "thread": 0 + } + }, + { + "amount": "123.963851718", + "slot": { + "period": 3626718, + "thread": 21 + } + }, + { + "amount": "123.963851712", + "slot": { + "period": 3867992, + "thread": 12 + } + } + ], + "AU1WnENubDxHtypZff1rRE21nugSQyaVxpUy8EcLePqYE3vCB9Lu": [ + { + "amount": "645.006728654", + "slot": { + "period": 115190, + "thread": 24 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 238438, + "thread": 7 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 424227, + "thread": 16 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 616995, + "thread": 1 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 801129, + "thread": 12 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 968450, + "thread": 19 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1125594, + "thread": 22 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1194519, + "thread": 16 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1401476, + "thread": 21 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1579856, + "thread": 27 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1666833, + "thread": 29 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 1827171, + "thread": 2 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2096886, + "thread": 18 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2196039, + "thread": 7 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2447717, + "thread": 15 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2619747, + "thread": 5 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2729298, + "thread": 19 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 2801099, + "thread": 22 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 3058784, + "thread": 7 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 3181171, + "thread": 27 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 3290920, + "thread": 0 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 3579652, + "thread": 0 + } + }, + { + "amount": "645.006728654", + "slot": { + "period": 3736311, + "thread": 7 + } + }, + { + "amount": "645.006728643", + "slot": { + "period": 3869446, + "thread": 10 + } + } + ], + "AU1WnNWwXow7K8c4MkzaU3RdMg2aaZdV128X5TrjBcSkk5q6mRZ9": [ + { + "amount": "173.951444981", + "slot": { + "period": 148203, + "thread": 18 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 257767, + "thread": 11 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 440180, + "thread": 9 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 587429, + "thread": 24 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 776581, + "thread": 12 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 839114, + "thread": 7 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1067428, + "thread": 27 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1190533, + "thread": 13 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1417056, + "thread": 8 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1531274, + "thread": 2 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1755898, + "thread": 5 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 1817701, + "thread": 10 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2137379, + "thread": 30 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2270369, + "thread": 28 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2347222, + "thread": 19 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2569255, + "thread": 28 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2736097, + "thread": 23 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 2851657, + "thread": 25 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 3091030, + "thread": 21 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 3232867, + "thread": 17 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 3356734, + "thread": 7 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 3597456, + "thread": 22 + } + }, + { + "amount": "173.951444981", + "slot": { + "period": 3628381, + "thread": 3 + } + }, + { + "amount": "173.951444974", + "slot": { + "period": 3839294, + "thread": 21 + } + } + ], + "AU1WnXSuDrSNtXugE8vvGysAKsxwFDiHoVfk4h7ELapwZsYMXC98": [ + { + "amount": "65.391997673", + "slot": { + "period": 32645, + "thread": 22 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 239157, + "thread": 10 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 418132, + "thread": 31 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 530285, + "thread": 30 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 749491, + "thread": 17 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 831081, + "thread": 2 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1000054, + "thread": 1 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1226515, + "thread": 27 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1386722, + "thread": 20 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1612767, + "thread": 11 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1740764, + "thread": 13 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 1822941, + "thread": 10 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2000323, + "thread": 4 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2206560, + "thread": 31 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2353842, + "thread": 10 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2464263, + "thread": 24 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2736541, + "thread": 28 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 2929820, + "thread": 22 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 3026343, + "thread": 21 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 3208378, + "thread": 25 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 3358743, + "thread": 14 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 3534088, + "thread": 18 + } + }, + { + "amount": "65.391997673", + "slot": { + "period": 3706376, + "thread": 14 + } + }, + { + "amount": "65.391997680", + "slot": { + "period": 3841165, + "thread": 10 + } + } + ], + "AU1WnYx2jYjyc8DJHyKPbaDpC2EiMB3y4durWgNnxepmDA3YitSH": [ + { + "amount": "77.124639801", + "slot": { + "period": 19970, + "thread": 22 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 320130, + "thread": 3 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 432747, + "thread": 29 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 595352, + "thread": 6 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 782027, + "thread": 2 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 964051, + "thread": 0 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1035975, + "thread": 11 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1178081, + "thread": 4 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1321724, + "thread": 5 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1598908, + "thread": 23 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1748159, + "thread": 11 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 1823706, + "thread": 17 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2139959, + "thread": 27 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2264955, + "thread": 7 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2308532, + "thread": 17 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2546016, + "thread": 29 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2684297, + "thread": 3 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2839435, + "thread": 23 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 2968626, + "thread": 26 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 3248757, + "thread": 15 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 3301648, + "thread": 3 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 3518747, + "thread": 6 + } + }, + { + "amount": "77.124639801", + "slot": { + "period": 3694991, + "thread": 5 + } + }, + { + "amount": "77.124639796", + "slot": { + "period": 3835039, + "thread": 8 + } + } + ], + "AU1WntcFovHuCMbxZBHcWAcWEtzNnkfvi2ackes3nSqfSYLggfgt": [ + { + "amount": "428.520632401", + "slot": { + "period": 167391, + "thread": 6 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 238672, + "thread": 16 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 446523, + "thread": 2 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 580449, + "thread": 30 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 762789, + "thread": 19 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 980238, + "thread": 10 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1001312, + "thread": 13 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1171316, + "thread": 13 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1431235, + "thread": 31 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1605911, + "thread": 1 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1675650, + "thread": 19 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 1947058, + "thread": 18 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2126300, + "thread": 10 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2292115, + "thread": 27 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2337260, + "thread": 1 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2596344, + "thread": 7 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2667666, + "thread": 20 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2811776, + "thread": 0 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 2999307, + "thread": 28 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 3130282, + "thread": 1 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 3361642, + "thread": 24 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 3451774, + "thread": 3 + } + }, + { + "amount": "428.520632401", + "slot": { + "period": 3725915, + "thread": 2 + } + }, + { + "amount": "428.520632391", + "slot": { + "period": 3821957, + "thread": 13 + } + } + ], + "AU1WovJUhQpYfPb4j7Kj4BXgNZFa6XTCZxPskr2VyTCUU7tMYNpa": [ + { + "amount": "292.457305082", + "slot": { + "period": 115165, + "thread": 16 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 284485, + "thread": 13 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 390260, + "thread": 0 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 536579, + "thread": 19 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 675225, + "thread": 27 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 944818, + "thread": 14 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1109613, + "thread": 22 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1249341, + "thread": 20 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1399040, + "thread": 10 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1640170, + "thread": 12 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1709856, + "thread": 6 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1909066, + "thread": 23 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 1980923, + "thread": 10 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 2253345, + "thread": 2 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 2370743, + "thread": 21 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 2532576, + "thread": 6 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 2639160, + "thread": 27 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 2888639, + "thread": 30 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3081569, + "thread": 17 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3218839, + "thread": 7 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3372875, + "thread": 14 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3537708, + "thread": 29 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3644562, + "thread": 0 + } + }, + { + "amount": "292.457305082", + "slot": { + "period": 3809184, + "thread": 27 + } + } + ], + "AU1WpAJNB2cNFoGdgQKqFYZM9NnJTBCtCGT2fScWyxmiVXZAnRDC": [ + { + "amount": "351.746170620", + "slot": { + "period": 108893, + "thread": 13 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 175323, + "thread": 22 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 384597, + "thread": 16 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 568784, + "thread": 8 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 812953, + "thread": 19 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 874425, + "thread": 28 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1093737, + "thread": 2 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1298384, + "thread": 8 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1473044, + "thread": 28 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1569389, + "thread": 19 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1773673, + "thread": 23 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 1817415, + "thread": 22 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2123820, + "thread": 14 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2281033, + "thread": 14 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2399612, + "thread": 1 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2488101, + "thread": 24 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2749608, + "thread": 21 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 2907065, + "thread": 17 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 3073290, + "thread": 4 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 3285474, + "thread": 10 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 3427005, + "thread": 5 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 3588121, + "thread": 31 + } + }, + { + "amount": "351.746170620", + "slot": { + "period": 3718837, + "thread": 7 + } + }, + { + "amount": "351.746170615", + "slot": { + "period": 3809389, + "thread": 12 + } + } + ], + "AU1WpC8Vqw7XXJEDtjGu4XrZrNDirfjotrJ8gzFirRvAvu8YfiHM": [ + { + "amount": "289.643807194", + "slot": { + "period": 142250, + "thread": 5 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 241743, + "thread": 23 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 445145, + "thread": 26 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 630691, + "thread": 31 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 797509, + "thread": 27 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 870902, + "thread": 29 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1061136, + "thread": 21 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1276030, + "thread": 12 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1340473, + "thread": 10 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1546124, + "thread": 1 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1718881, + "thread": 22 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 1893863, + "thread": 11 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2015659, + "thread": 17 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2280917, + "thread": 26 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2382168, + "thread": 20 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2526131, + "thread": 23 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2641739, + "thread": 11 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 2951414, + "thread": 28 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 3006471, + "thread": 10 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 3261090, + "thread": 29 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 3330986, + "thread": 10 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 3464866, + "thread": 18 + } + }, + { + "amount": "289.643807194", + "slot": { + "period": 3770631, + "thread": 27 + } + }, + { + "amount": "289.643807185", + "slot": { + "period": 3906568, + "thread": 2 + } + } + ], + "AU1WpD75mM1zAkbZJTEra4avqttW8LpDpadYFS2YVr5Q371eQ3Ab": [ + { + "amount": "150.589457174", + "slot": { + "period": 96194, + "thread": 26 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 225585, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 404259, + "thread": 28 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 632676, + "thread": 9 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 814778, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 918236, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1076451, + "thread": 12 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1297395, + "thread": 12 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1322331, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1496557, + "thread": 30 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1766447, + "thread": 20 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 1909442, + "thread": 2 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2085596, + "thread": 7 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2202653, + "thread": 9 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2372438, + "thread": 6 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2518126, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2756961, + "thread": 6 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 2814975, + "thread": 2 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 3022874, + "thread": 12 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 3191990, + "thread": 28 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 3402780, + "thread": 3 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 3497486, + "thread": 2 + } + }, + { + "amount": "150.589457174", + "slot": { + "period": 3754710, + "thread": 27 + } + }, + { + "amount": "150.589457162", + "slot": { + "period": 3914590, + "thread": 29 + } + } + ], + "AU1WpEaGWQzFN6dWtia7Hw2gLHxDeakAD42UhzL14J5i9jzrUoWb": [ + { + "amount": "158.705231522", + "slot": { + "period": 150688, + "thread": 7 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 208337, + "thread": 0 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 328842, + "thread": 17 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 545540, + "thread": 27 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 723226, + "thread": 6 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 869612, + "thread": 9 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1130336, + "thread": 14 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1218257, + "thread": 29 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1332799, + "thread": 7 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1481408, + "thread": 1 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1675959, + "thread": 13 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 1889937, + "thread": 10 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2029364, + "thread": 17 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2187731, + "thread": 9 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2411177, + "thread": 12 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2484164, + "thread": 8 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2752193, + "thread": 3 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 2827062, + "thread": 30 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3010402, + "thread": 15 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3259872, + "thread": 2 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3372945, + "thread": 18 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3472021, + "thread": 31 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3754564, + "thread": 7 + } + }, + { + "amount": "158.705231522", + "slot": { + "period": 3786802, + "thread": 13 + } + } + ], + "AU1WpNy4mjiig29uxEFiTzzLfUnk94eN35beiFEkR1om88FCfzTe": [ + { + "amount": "63.092336037", + "slot": { + "period": 70770, + "thread": 31 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 231915, + "thread": 17 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 453859, + "thread": 7 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 542853, + "thread": 10 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 721559, + "thread": 0 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 875153, + "thread": 29 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1136054, + "thread": 20 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1290736, + "thread": 22 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1323540, + "thread": 29 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1511611, + "thread": 23 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1791756, + "thread": 4 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 1963790, + "thread": 0 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2076197, + "thread": 14 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2267810, + "thread": 24 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2409905, + "thread": 6 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2615898, + "thread": 14 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2702711, + "thread": 22 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2811968, + "thread": 12 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 2995938, + "thread": 0 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 3178257, + "thread": 14 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 3433851, + "thread": 8 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 3473199, + "thread": 1 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 3760357, + "thread": 14 + } + }, + { + "amount": "63.092336037", + "slot": { + "period": 3929883, + "thread": 29 + } + } + ], + "AU1WpU4JaRN6gtbWHWQUjz63ZJFp3Jh8j9Q2eKWKFs4HyCFMBYco": [ + { + "amount": "139.178766619", + "slot": { + "period": 62474, + "thread": 23 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 219620, + "thread": 15 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 359839, + "thread": 9 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 496467, + "thread": 6 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 654840, + "thread": 10 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 975246, + "thread": 3 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1123136, + "thread": 12 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1230394, + "thread": 22 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1451441, + "thread": 8 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1489716, + "thread": 28 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1703827, + "thread": 8 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 1972324, + "thread": 30 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2019724, + "thread": 31 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2208816, + "thread": 24 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2336639, + "thread": 19 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2555926, + "thread": 5 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2773384, + "thread": 7 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 2862863, + "thread": 27 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 3096745, + "thread": 5 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 3227307, + "thread": 22 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 3361053, + "thread": 27 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 3463379, + "thread": 6 + } + }, + { + "amount": "139.178766619", + "slot": { + "period": 3670198, + "thread": 7 + } + }, + { + "amount": "139.178766620", + "slot": { + "period": 3887865, + "thread": 28 + } + } + ], + "AU1WqXXM19amQENX5dmKqwEmfXXLkTFKoWLmVCHmRJuWWFkgqYNC": [ + { + "amount": "631.705544820", + "slot": { + "period": 163123, + "thread": 25 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 288170, + "thread": 25 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 446831, + "thread": 3 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 535243, + "thread": 30 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 701096, + "thread": 30 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 925130, + "thread": 13 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1147324, + "thread": 12 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1296333, + "thread": 14 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1378500, + "thread": 17 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1629731, + "thread": 20 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1779226, + "thread": 21 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 1901961, + "thread": 13 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2126454, + "thread": 5 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2187412, + "thread": 8 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2303388, + "thread": 31 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2581876, + "thread": 11 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2703402, + "thread": 11 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 2814788, + "thread": 4 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 3026642, + "thread": 7 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 3150430, + "thread": 31 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 3369993, + "thread": 30 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 3582313, + "thread": 19 + } + }, + { + "amount": "631.705544820", + "slot": { + "period": 3619711, + "thread": 7 + } + }, + { + "amount": "631.705544813", + "slot": { + "period": 3861621, + "thread": 26 + } + } + ], + "AU1WrPiPxVKbVrf5WUsaujhdpFmvUViYQgbm2hBtqufVGe2iC6pm": [ + { + "amount": "194.759431150", + "slot": { + "period": 59115, + "thread": 10 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 224237, + "thread": 0 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 430892, + "thread": 15 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 556231, + "thread": 8 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 751362, + "thread": 0 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 855037, + "thread": 3 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1015772, + "thread": 2 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1154143, + "thread": 9 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1408480, + "thread": 18 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1549379, + "thread": 6 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1726472, + "thread": 0 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 1914020, + "thread": 17 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2109922, + "thread": 5 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2276213, + "thread": 24 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2319210, + "thread": 17 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2482791, + "thread": 29 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2698174, + "thread": 13 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 2815928, + "thread": 21 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 3072563, + "thread": 10 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 3128821, + "thread": 29 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 3446504, + "thread": 29 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 3615658, + "thread": 23 + } + }, + { + "amount": "194.759431150", + "slot": { + "period": 3619816, + "thread": 31 + } + }, + { + "amount": "194.759431142", + "slot": { + "period": 3905259, + "thread": 0 + } + } + ], + "AU1WrtdRzuAocQxtGLX4H5rVaeai2QXtwzPCrAXPeNvSjWcTd1LC": [ + { + "amount": "62.331697581", + "slot": { + "period": 13345, + "thread": 4 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 198458, + "thread": 21 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 356449, + "thread": 12 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 522061, + "thread": 18 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 654642, + "thread": 25 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 837933, + "thread": 28 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1045218, + "thread": 29 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1271788, + "thread": 15 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1321711, + "thread": 0 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1547888, + "thread": 21 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1752846, + "thread": 16 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 1908678, + "thread": 6 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2112136, + "thread": 21 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2239488, + "thread": 5 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2323220, + "thread": 0 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2615421, + "thread": 2 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2764583, + "thread": 12 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 2817499, + "thread": 16 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 3046556, + "thread": 19 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 3151283, + "thread": 22 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 3301927, + "thread": 9 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 3584336, + "thread": 0 + } + }, + { + "amount": "62.331697581", + "slot": { + "period": 3673514, + "thread": 22 + } + }, + { + "amount": "62.331697574", + "slot": { + "period": 3782788, + "thread": 10 + } + } + ], + "AU1WsAmR7NkkpFMMaM5UuRMxdk8tvQiaAvHx2sfietq5qHJuXcrk": [ + { + "amount": "563.289260756", + "slot": { + "period": 72888, + "thread": 18 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 261792, + "thread": 25 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 398256, + "thread": 20 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 492287, + "thread": 24 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 705493, + "thread": 2 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 883381, + "thread": 31 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1119209, + "thread": 4 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1271166, + "thread": 29 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1413336, + "thread": 28 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1480384, + "thread": 10 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1759397, + "thread": 30 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 1874490, + "thread": 21 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2066124, + "thread": 7 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2165499, + "thread": 14 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2422679, + "thread": 11 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2511364, + "thread": 4 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2728998, + "thread": 31 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 2935428, + "thread": 30 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 3105231, + "thread": 11 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 3250668, + "thread": 2 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 3401352, + "thread": 11 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 3602854, + "thread": 0 + } + }, + { + "amount": "563.289260756", + "slot": { + "period": 3736046, + "thread": 17 + } + }, + { + "amount": "563.289260754", + "slot": { + "period": 3883961, + "thread": 28 + } + } + ], + "AU1Wscgn6jjNNM2hq6u29YLeVRmRbYPGy3GgDwZEpnpEBReatfFa": [ + { + "amount": "521.728634454", + "slot": { + "period": 63680, + "thread": 2 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 224207, + "thread": 13 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 460099, + "thread": 20 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 557586, + "thread": 16 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 665121, + "thread": 17 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 967152, + "thread": 28 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1011425, + "thread": 11 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1295397, + "thread": 26 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1322848, + "thread": 16 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1592348, + "thread": 11 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1672550, + "thread": 14 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 1956629, + "thread": 9 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2050357, + "thread": 20 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2207905, + "thread": 23 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2315381, + "thread": 24 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2567800, + "thread": 0 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2728694, + "thread": 17 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2848650, + "thread": 24 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 2967953, + "thread": 26 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 3283610, + "thread": 1 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 3311874, + "thread": 15 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 3583299, + "thread": 14 + } + }, + { + "amount": "521.728634454", + "slot": { + "period": 3684346, + "thread": 13 + } + }, + { + "amount": "521.728634462", + "slot": { + "period": 3831348, + "thread": 15 + } + } + ], + "AU1WtV86HBWUdu16DwfBJ83UByYGkCB8SvQzTHTGPRHs5znQUChk": [ + { + "amount": "171.001854023", + "slot": { + "period": 138196, + "thread": 24 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 248344, + "thread": 8 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 491299, + "thread": 15 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 576616, + "thread": 23 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 779693, + "thread": 30 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 893925, + "thread": 27 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1027231, + "thread": 8 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1293058, + "thread": 6 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1414627, + "thread": 2 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1486552, + "thread": 12 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1788799, + "thread": 4 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 1811623, + "thread": 0 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2032202, + "thread": 30 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2201574, + "thread": 4 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2367059, + "thread": 18 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2487201, + "thread": 29 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2781081, + "thread": 11 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 2891932, + "thread": 0 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 3072210, + "thread": 6 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 3218267, + "thread": 29 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 3308569, + "thread": 21 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 3463754, + "thread": 17 + } + }, + { + "amount": "171.001854023", + "slot": { + "period": 3741860, + "thread": 29 + } + }, + { + "amount": "171.001854028", + "slot": { + "period": 3846518, + "thread": 30 + } + } + ], + "AU1WtmsqNwK6JmwMTwgLq4uWu3tcCPxQYV9Pnbp66u5815ncr24h": [ + { + "amount": "82.256426087", + "slot": { + "period": 132770, + "thread": 16 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 251820, + "thread": 7 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 324124, + "thread": 7 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 511270, + "thread": 21 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 695182, + "thread": 17 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 901366, + "thread": 20 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 998592, + "thread": 14 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1210161, + "thread": 18 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1394949, + "thread": 14 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1512278, + "thread": 13 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1772892, + "thread": 7 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1884998, + "thread": 23 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 1983686, + "thread": 21 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 2145207, + "thread": 17 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 2312852, + "thread": 8 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 2505482, + "thread": 7 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 2632714, + "thread": 24 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 2921169, + "thread": 30 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 3035547, + "thread": 20 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 3217164, + "thread": 6 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 3382403, + "thread": 28 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 3613558, + "thread": 3 + } + }, + { + "amount": "82.256426087", + "slot": { + "period": 3643306, + "thread": 17 + } + }, + { + "amount": "82.256426091", + "slot": { + "period": 3885073, + "thread": 31 + } + } + ], + "AU1WuL7V2Yih1vvit9x7pjDmemogqLRF9sK3AQxaxTn6kmJBy6G1": [ + { + "amount": "287.185982944", + "slot": { + "period": 52351, + "thread": 31 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 211454, + "thread": 10 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 417220, + "thread": 9 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 515080, + "thread": 31 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 763936, + "thread": 25 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 938018, + "thread": 22 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1080860, + "thread": 0 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1249594, + "thread": 26 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1470005, + "thread": 28 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1616766, + "thread": 20 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1798346, + "thread": 22 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 1966937, + "thread": 8 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2021222, + "thread": 18 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2192176, + "thread": 18 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2412092, + "thread": 7 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2593378, + "thread": 14 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2706455, + "thread": 7 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 2864803, + "thread": 2 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3076253, + "thread": 23 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3145114, + "thread": 26 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3443654, + "thread": 6 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3530265, + "thread": 14 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3715916, + "thread": 14 + } + }, + { + "amount": "287.185982944", + "slot": { + "period": 3844296, + "thread": 19 + } + } + ], + "AU1Wug5ahm7XT7pqcxnFns69XMbustrxM2WTEasnVf9WZcXXdTGH": [ + { + "amount": "448.672207519", + "slot": { + "period": 165297, + "thread": 6 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 208592, + "thread": 16 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 391736, + "thread": 12 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 590427, + "thread": 0 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 698721, + "thread": 22 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 849964, + "thread": 15 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 990747, + "thread": 16 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1213850, + "thread": 31 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1430579, + "thread": 10 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1562492, + "thread": 21 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1759657, + "thread": 18 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1820404, + "thread": 25 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 1992073, + "thread": 16 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2287535, + "thread": 30 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2325393, + "thread": 31 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2599154, + "thread": 8 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2758006, + "thread": 8 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2910619, + "thread": 15 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 2993984, + "thread": 10 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 3204724, + "thread": 15 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 3424563, + "thread": 11 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 3614851, + "thread": 5 + } + }, + { + "amount": "448.672207519", + "slot": { + "period": 3687923, + "thread": 26 + } + }, + { + "amount": "448.672207521", + "slot": { + "period": 3890525, + "thread": 3 + } + } + ], + "AU1WvhVJ1vH56N6qWbDxPrKu6xRKayaprtWnUjbyxuwH8tJw3waZ": [ + { + "amount": "68.139467837", + "slot": { + "period": 71369, + "thread": 4 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 260871, + "thread": 29 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 396984, + "thread": 9 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 517359, + "thread": 18 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 691839, + "thread": 2 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 963113, + "thread": 17 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1125670, + "thread": 20 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1229593, + "thread": 28 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1476571, + "thread": 20 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1610274, + "thread": 14 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1770269, + "thread": 16 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 1836745, + "thread": 31 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2093459, + "thread": 5 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2177218, + "thread": 11 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2419752, + "thread": 15 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2598078, + "thread": 18 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2649834, + "thread": 4 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2869650, + "thread": 8 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 2983903, + "thread": 18 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 3204986, + "thread": 16 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 3434183, + "thread": 22 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 3606859, + "thread": 19 + } + }, + { + "amount": "68.139467837", + "slot": { + "period": 3628900, + "thread": 20 + } + }, + { + "amount": "68.139467845", + "slot": { + "period": 3864210, + "thread": 21 + } + } + ], + "AU1Wvj71GYR8jdh9bknAsP5Ua1jyKCTXhZKpXJAm5s7p4JC3ue4P": [ + { + "amount": "129.129048297", + "slot": { + "period": 89310, + "thread": 0 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 178913, + "thread": 11 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 471667, + "thread": 6 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 545567, + "thread": 6 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 671962, + "thread": 20 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 907815, + "thread": 28 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1138119, + "thread": 17 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1179458, + "thread": 13 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1328945, + "thread": 7 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1517700, + "thread": 21 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1738548, + "thread": 26 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 1916815, + "thread": 29 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2010273, + "thread": 26 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2170306, + "thread": 18 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2392751, + "thread": 21 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2516807, + "thread": 22 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2633303, + "thread": 30 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2943960, + "thread": 10 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 2961392, + "thread": 28 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 3228491, + "thread": 8 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 3296858, + "thread": 20 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 3519449, + "thread": 25 + } + }, + { + "amount": "129.129048297", + "slot": { + "period": 3737946, + "thread": 12 + } + }, + { + "amount": "129.129048292", + "slot": { + "period": 3871556, + "thread": 18 + } + } + ], + "AU1WvppTFGUkSFjJugPaSdiTLx2E5M58utDwpCAenofWE8Usjx3": [ + { + "amount": "239.145959165", + "slot": { + "period": 24521, + "thread": 3 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 312326, + "thread": 3 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 330750, + "thread": 23 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 527797, + "thread": 18 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 802897, + "thread": 27 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 873855, + "thread": 28 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1143723, + "thread": 8 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1193586, + "thread": 31 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1446399, + "thread": 29 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1546089, + "thread": 3 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1726635, + "thread": 14 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 1883132, + "thread": 2 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2099818, + "thread": 1 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2198315, + "thread": 23 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2398645, + "thread": 9 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2584714, + "thread": 2 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2700128, + "thread": 29 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 2866225, + "thread": 23 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 3114524, + "thread": 23 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 3276266, + "thread": 20 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 3354884, + "thread": 21 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 3586601, + "thread": 14 + } + }, + { + "amount": "239.145959165", + "slot": { + "period": 3668018, + "thread": 27 + } + }, + { + "amount": "239.145959161", + "slot": { + "period": 3936807, + "thread": 9 + } + } + ], + "AU1WwHmjGPHvUdQ2ZFLMX3kGMJiwmGLj5ct4oQok5kwYCWnsRTcL": [ + { + "amount": "388.944218131", + "slot": { + "period": 95934, + "thread": 21 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 256613, + "thread": 0 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 471745, + "thread": 29 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 562078, + "thread": 18 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 782595, + "thread": 10 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 954182, + "thread": 17 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1053955, + "thread": 2 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1284017, + "thread": 23 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1440779, + "thread": 2 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1582503, + "thread": 8 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1665198, + "thread": 31 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 1950214, + "thread": 17 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2101643, + "thread": 13 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2224290, + "thread": 28 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2314414, + "thread": 13 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2577313, + "thread": 4 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2735810, + "thread": 30 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 2846248, + "thread": 29 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 3061076, + "thread": 7 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 3219303, + "thread": 20 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 3309624, + "thread": 26 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 3494444, + "thread": 15 + } + }, + { + "amount": "388.944218131", + "slot": { + "period": 3687489, + "thread": 0 + } + }, + { + "amount": "388.944218128", + "slot": { + "period": 3855378, + "thread": 29 + } + } + ], + "AU1Www4CHELmaRSfHqPhJqnEerxMKQzynFEm1oiGBeSLJDxXGfDK": [ + { + "amount": "226.512827291", + "slot": { + "period": 91000, + "thread": 21 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 217987, + "thread": 31 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 348585, + "thread": 15 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 633033, + "thread": 1 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 677926, + "thread": 26 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 888223, + "thread": 6 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1114626, + "thread": 18 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1203230, + "thread": 15 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1413264, + "thread": 10 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1498901, + "thread": 3 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1732479, + "thread": 31 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 1907921, + "thread": 27 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2123390, + "thread": 12 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2253497, + "thread": 6 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2343206, + "thread": 29 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2567498, + "thread": 8 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2725549, + "thread": 1 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 2904763, + "thread": 28 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 3055296, + "thread": 0 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 3262060, + "thread": 3 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 3383745, + "thread": 20 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 3515782, + "thread": 21 + } + }, + { + "amount": "226.512827291", + "slot": { + "period": 3659321, + "thread": 3 + } + }, + { + "amount": "226.512827302", + "slot": { + "period": 3921620, + "thread": 12 + } + } + ], + "AU1Wx22Wz8r5j8Kw3SDDyYAZugCP2VSsFiX5uFbrN1RUset1RPVN": [ + { + "amount": "315.215011560", + "slot": { + "period": 125946, + "thread": 17 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 228909, + "thread": 10 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 370728, + "thread": 16 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 624564, + "thread": 4 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 703800, + "thread": 27 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 902914, + "thread": 1 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1009239, + "thread": 12 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1152785, + "thread": 26 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1418425, + "thread": 29 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1578846, + "thread": 30 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1653746, + "thread": 28 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 1809121, + "thread": 14 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2115925, + "thread": 22 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2196776, + "thread": 3 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2443970, + "thread": 14 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2586363, + "thread": 15 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2700414, + "thread": 6 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 2857595, + "thread": 11 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 3089069, + "thread": 8 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 3264271, + "thread": 25 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 3368218, + "thread": 20 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 3500768, + "thread": 14 + } + }, + { + "amount": "315.215011560", + "slot": { + "period": 3726826, + "thread": 28 + } + }, + { + "amount": "315.215011563", + "slot": { + "period": 3844762, + "thread": 19 + } + } + ], + "AU1WxURt5KmEBgt5KonHKL2PkXdwbHR6RCMNnGt2RV35An3uQU1o": [ + { + "amount": "89.327294747", + "slot": { + "period": 31873, + "thread": 8 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 260475, + "thread": 7 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 431971, + "thread": 8 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 568673, + "thread": 12 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 665138, + "thread": 17 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 842039, + "thread": 5 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1055332, + "thread": 19 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1168098, + "thread": 31 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1331464, + "thread": 4 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1505197, + "thread": 29 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1666105, + "thread": 3 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 1845797, + "thread": 0 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2080617, + "thread": 21 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2171206, + "thread": 2 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2358261, + "thread": 15 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2543782, + "thread": 8 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2747477, + "thread": 26 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 2939093, + "thread": 20 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 3009738, + "thread": 12 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 3258621, + "thread": 20 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 3400303, + "thread": 23 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 3603603, + "thread": 26 + } + }, + { + "amount": "89.327294747", + "slot": { + "period": 3683314, + "thread": 1 + } + }, + { + "amount": "89.327294746", + "slot": { + "period": 3868537, + "thread": 27 + } + } + ], + "AU1Wxh5nPxHSdubCfMeZkyCGRbR9N4x4znXXZLCPm9aRac4FJ3Pz": [ + { + "amount": "625.676450878", + "slot": { + "period": 34004, + "thread": 25 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 277584, + "thread": 0 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 411613, + "thread": 21 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 640447, + "thread": 21 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 745234, + "thread": 25 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 920444, + "thread": 26 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 996884, + "thread": 26 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 1303231, + "thread": 13 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 1318628, + "thread": 7 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 1521454, + "thread": 0 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 1777836, + "thread": 30 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 1815051, + "thread": 5 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2055079, + "thread": 6 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2222262, + "thread": 19 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2309675, + "thread": 7 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2582923, + "thread": 28 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2731763, + "thread": 16 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 2817945, + "thread": 5 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 3080541, + "thread": 18 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 3283307, + "thread": 11 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 3448950, + "thread": 9 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 3552361, + "thread": 13 + } + }, + { + "amount": "625.676450878", + "slot": { + "period": 3697994, + "thread": 16 + } + }, + { + "amount": "625.676450888", + "slot": { + "period": 3846304, + "thread": 13 + } + } + ], + "AU1WxvDnNTDbqetEt4AciPgPytRvJUrpQ4nBop6hAKQX67e3EARe": [ + { + "amount": "521.760231980", + "slot": { + "period": 90938, + "thread": 17 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 219207, + "thread": 20 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 367766, + "thread": 14 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 557536, + "thread": 14 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 719213, + "thread": 30 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 969126, + "thread": 20 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1028893, + "thread": 9 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1188989, + "thread": 29 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1410408, + "thread": 5 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1638607, + "thread": 31 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1773001, + "thread": 16 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 1890278, + "thread": 25 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2044605, + "thread": 7 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2294812, + "thread": 1 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2457886, + "thread": 10 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2586180, + "thread": 1 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2746147, + "thread": 3 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 2862571, + "thread": 18 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 3116166, + "thread": 21 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 3218135, + "thread": 28 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 3364114, + "thread": 29 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 3574769, + "thread": 26 + } + }, + { + "amount": "521.760231980", + "slot": { + "period": 3677807, + "thread": 5 + } + }, + { + "amount": "521.760231989", + "slot": { + "period": 3843682, + "thread": 30 + } + } + ], + "AU1Wy3WeZdMXuPJrNfRbExXKoCTttHiox5aJMT8DKgRPgq76d6CT": [ + { + "amount": "75.825664261", + "slot": { + "period": 117447, + "thread": 9 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 231772, + "thread": 3 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 359488, + "thread": 21 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 503874, + "thread": 0 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 731460, + "thread": 21 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 857922, + "thread": 0 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1042774, + "thread": 7 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1166504, + "thread": 17 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1367857, + "thread": 23 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1587435, + "thread": 22 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1681062, + "thread": 26 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 1889557, + "thread": 6 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2106414, + "thread": 3 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2167839, + "thread": 23 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2302341, + "thread": 9 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2594443, + "thread": 21 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2754875, + "thread": 23 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 2823663, + "thread": 23 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 3094144, + "thread": 30 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 3262052, + "thread": 10 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 3428128, + "thread": 28 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 3523424, + "thread": 15 + } + }, + { + "amount": "75.825664261", + "slot": { + "period": 3759709, + "thread": 18 + } + }, + { + "amount": "75.825664260", + "slot": { + "period": 3896897, + "thread": 5 + } + } + ], + "AU1X1nr1TzyBy3gTc7UHQyR6m7UmkyAM59HwdgsJsSTvdfgjMpMT": [ + { + "amount": "95.868173871", + "slot": { + "period": 85939, + "thread": 26 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 171396, + "thread": 2 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 450839, + "thread": 10 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 581165, + "thread": 4 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 809812, + "thread": 0 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 943081, + "thread": 12 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1066033, + "thread": 31 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1307014, + "thread": 16 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1434420, + "thread": 1 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1546642, + "thread": 20 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1733807, + "thread": 23 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 1876394, + "thread": 12 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2125762, + "thread": 23 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2148635, + "thread": 24 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2451660, + "thread": 12 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2538922, + "thread": 19 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2701429, + "thread": 27 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2928921, + "thread": 7 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 2981867, + "thread": 7 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 3171759, + "thread": 22 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 3363698, + "thread": 20 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 3579450, + "thread": 14 + } + }, + { + "amount": "95.868173871", + "slot": { + "period": 3759873, + "thread": 18 + } + }, + { + "amount": "95.868173865", + "slot": { + "period": 3876280, + "thread": 12 + } + } + ], + "AU1X1y9TfSdqRyT9FqbZm6MAZqY5i2TAC2ioEtqPRt1cwyyie1GL": [ + { + "amount": "61.625752902", + "slot": { + "period": 116133, + "thread": 21 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 192003, + "thread": 22 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 447392, + "thread": 0 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 607347, + "thread": 17 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 803004, + "thread": 0 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 966559, + "thread": 25 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1095062, + "thread": 20 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1263741, + "thread": 18 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1347282, + "thread": 0 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1588681, + "thread": 24 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1775751, + "thread": 20 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 1897585, + "thread": 18 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2071273, + "thread": 25 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2275097, + "thread": 11 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2446880, + "thread": 17 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2593094, + "thread": 31 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2736461, + "thread": 25 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 2940206, + "thread": 7 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 3111765, + "thread": 5 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 3255910, + "thread": 14 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 3365213, + "thread": 28 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 3482408, + "thread": 25 + } + }, + { + "amount": "61.625752902", + "slot": { + "period": 3692101, + "thread": 24 + } + }, + { + "amount": "61.625752892", + "slot": { + "period": 3791573, + "thread": 28 + } + } + ], + "AU1X2LHctaWK4b2Liza2NHCe8CbrTsmVgc2kCRyu3LFc6QVzhG3M": [ + { + "amount": "430.387080495", + "slot": { + "period": 103031, + "thread": 12 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 191154, + "thread": 30 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 449267, + "thread": 2 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 626167, + "thread": 24 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 726275, + "thread": 22 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 953589, + "thread": 20 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1117459, + "thread": 6 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1298021, + "thread": 27 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1413770, + "thread": 3 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1505306, + "thread": 26 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1712613, + "thread": 31 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 1932093, + "thread": 5 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2124804, + "thread": 31 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2178012, + "thread": 30 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2295544, + "thread": 22 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2548100, + "thread": 24 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2773951, + "thread": 6 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 2834470, + "thread": 25 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 3112972, + "thread": 31 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 3208743, + "thread": 4 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 3322256, + "thread": 7 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 3588805, + "thread": 6 + } + }, + { + "amount": "430.387080495", + "slot": { + "period": 3628540, + "thread": 10 + } + }, + { + "amount": "430.387080502", + "slot": { + "period": 3894629, + "thread": 22 + } + } + ], + "AU1X2PxaQu8t8D9fYmwKCfx3LSTpzCJc7EbtZMPQmNQHeE7KBo6E": [ + { + "amount": "486.202651595", + "slot": { + "period": 119259, + "thread": 16 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 306831, + "thread": 20 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 325224, + "thread": 11 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 629327, + "thread": 15 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 809254, + "thread": 1 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 968205, + "thread": 29 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1089285, + "thread": 23 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1179076, + "thread": 19 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1409582, + "thread": 0 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1596418, + "thread": 24 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1772696, + "thread": 8 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 1840787, + "thread": 0 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2107879, + "thread": 21 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2265203, + "thread": 4 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2446934, + "thread": 23 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2522852, + "thread": 6 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2732604, + "thread": 0 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 2878900, + "thread": 24 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 3004914, + "thread": 4 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 3144787, + "thread": 2 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 3305710, + "thread": 24 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 3511091, + "thread": 0 + } + }, + { + "amount": "486.202651595", + "slot": { + "period": 3754333, + "thread": 27 + } + }, + { + "amount": "486.202651598", + "slot": { + "period": 3784614, + "thread": 19 + } + } + ], + "AU1X3hgaaeLhhfVAiTYpsfJ8BHXhJTN3LhGYB9riTu6WALLp9Hbc": [ + { + "amount": "187.195359789", + "slot": { + "period": 139909, + "thread": 31 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 250942, + "thread": 13 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 486597, + "thread": 26 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 535076, + "thread": 7 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 741733, + "thread": 21 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 891763, + "thread": 27 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1005933, + "thread": 0 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1294563, + "thread": 4 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1432330, + "thread": 3 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1641147, + "thread": 10 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1722192, + "thread": 15 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 1813881, + "thread": 7 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2060823, + "thread": 11 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2262814, + "thread": 2 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2442922, + "thread": 26 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2607038, + "thread": 2 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2766034, + "thread": 5 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 2800528, + "thread": 9 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 3074829, + "thread": 0 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 3193807, + "thread": 11 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 3445806, + "thread": 19 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 3494866, + "thread": 3 + } + }, + { + "amount": "187.195359789", + "slot": { + "period": 3669336, + "thread": 0 + } + }, + { + "amount": "187.195359799", + "slot": { + "period": 3907769, + "thread": 18 + } + } + ], + "AU1X3nnPgoyLFj2pFzzUxxwLC5wVo8HxPFdEkKLQm1DovZdhY8Bk": [ + { + "amount": "95.146019672", + "slot": { + "period": 38420, + "thread": 27 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 167413, + "thread": 24 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 396012, + "thread": 24 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 510791, + "thread": 10 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 810967, + "thread": 13 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 856461, + "thread": 15 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1037255, + "thread": 17 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1296712, + "thread": 23 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1351764, + "thread": 31 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1578855, + "thread": 13 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1694963, + "thread": 19 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 1973835, + "thread": 22 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2042175, + "thread": 8 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2209410, + "thread": 20 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2363285, + "thread": 19 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2508796, + "thread": 18 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2681606, + "thread": 4 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 2903034, + "thread": 30 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 3001137, + "thread": 29 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 3253211, + "thread": 3 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 3426561, + "thread": 19 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 3601321, + "thread": 16 + } + }, + { + "amount": "95.146019672", + "slot": { + "period": 3771987, + "thread": 19 + } + }, + { + "amount": "95.146019675", + "slot": { + "period": 3835014, + "thread": 16 + } + } + ], + "AU1X46ULDxG4yGtFKVzjmcDPZyHzxpQ8t7XuzXhG2HEDv91Ftb1J": [ + { + "amount": "215.143092478", + "slot": { + "period": 125444, + "thread": 31 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 264152, + "thread": 12 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 365480, + "thread": 23 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 606349, + "thread": 19 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 730189, + "thread": 3 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 883751, + "thread": 15 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1123194, + "thread": 21 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1290685, + "thread": 15 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1439023, + "thread": 16 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1530983, + "thread": 7 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1791776, + "thread": 0 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 1832236, + "thread": 29 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2027693, + "thread": 5 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2198711, + "thread": 2 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2406056, + "thread": 12 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2504257, + "thread": 23 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2720221, + "thread": 20 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 2840932, + "thread": 30 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 3073310, + "thread": 22 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 3131375, + "thread": 24 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 3315955, + "thread": 6 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 3458681, + "thread": 25 + } + }, + { + "amount": "215.143092478", + "slot": { + "period": 3647567, + "thread": 22 + } + }, + { + "amount": "215.143092473", + "slot": { + "period": 3870006, + "thread": 10 + } + } + ], + "AU1X4bwvAjfNFJzyCgmYonmS4zt5S2pPb73wAM2kEtxqy42X8nBc": [ + { + "amount": "428.094840974", + "slot": { + "period": 101114, + "thread": 27 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 195609, + "thread": 6 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 407101, + "thread": 25 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 511875, + "thread": 4 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 748450, + "thread": 8 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 825851, + "thread": 2 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1126492, + "thread": 27 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1207233, + "thread": 19 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1470224, + "thread": 7 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1641814, + "thread": 28 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1734470, + "thread": 31 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 1905189, + "thread": 18 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2051918, + "thread": 23 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2230204, + "thread": 14 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2318351, + "thread": 3 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2620960, + "thread": 22 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2712133, + "thread": 20 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2892314, + "thread": 9 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 2977045, + "thread": 12 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 3206331, + "thread": 13 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 3349033, + "thread": 0 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 3506580, + "thread": 9 + } + }, + { + "amount": "428.094840974", + "slot": { + "period": 3629000, + "thread": 22 + } + }, + { + "amount": "428.094840983", + "slot": { + "period": 3869112, + "thread": 5 + } + } + ], + "AU1X4nUGvopspDanodTB9wGqZBG57ZSYZKYn9uwMVt5DB629HARZ": [ + { + "amount": "81.701193202", + "slot": { + "period": 41146, + "thread": 6 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 228255, + "thread": 23 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 441789, + "thread": 9 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 631896, + "thread": 6 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 669222, + "thread": 8 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 926627, + "thread": 21 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1137389, + "thread": 16 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1305243, + "thread": 0 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1343159, + "thread": 1 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1500630, + "thread": 17 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1721849, + "thread": 21 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 1837533, + "thread": 2 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2027061, + "thread": 2 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2174223, + "thread": 5 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2393470, + "thread": 1 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2477203, + "thread": 21 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2778845, + "thread": 21 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2868658, + "thread": 18 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 2955544, + "thread": 7 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 3162674, + "thread": 28 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 3397684, + "thread": 1 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 3610445, + "thread": 21 + } + }, + { + "amount": "81.701193202", + "slot": { + "period": 3717291, + "thread": 1 + } + }, + { + "amount": "81.701193205", + "slot": { + "period": 3811757, + "thread": 20 + } + } + ], + "AU1X5SmhMXeEwsWXvNN5ZfbfkEXtLQrTuX1f8XRmzgtipeoDDPcb": [ + { + "amount": "162.078953782", + "slot": { + "period": 121316, + "thread": 20 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 207422, + "thread": 11 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 349512, + "thread": 2 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 598277, + "thread": 8 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 691533, + "thread": 14 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 878721, + "thread": 20 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1005973, + "thread": 0 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1209425, + "thread": 22 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1399447, + "thread": 7 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1493627, + "thread": 12 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1740071, + "thread": 3 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1823001, + "thread": 24 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 1991362, + "thread": 3 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 2180787, + "thread": 10 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 2337710, + "thread": 27 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 2521778, + "thread": 26 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 2718583, + "thread": 2 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 2810212, + "thread": 24 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 3030021, + "thread": 8 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 3179155, + "thread": 13 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 3433433, + "thread": 11 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 3515348, + "thread": 2 + } + }, + { + "amount": "162.078953782", + "slot": { + "period": 3735464, + "thread": 12 + } + }, + { + "amount": "162.078953787", + "slot": { + "period": 3830681, + "thread": 29 + } + } + ], + "AU1X5YpzqJGm7oDP7SaZoBFhUMhJhnJiUbB9UJFVA6gTUUat43Tw": [ + { + "amount": "71.079113648", + "slot": { + "period": 120229, + "thread": 1 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 228229, + "thread": 27 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 474657, + "thread": 18 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 552816, + "thread": 15 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 723572, + "thread": 5 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 932496, + "thread": 25 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1084955, + "thread": 18 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1246781, + "thread": 1 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1456462, + "thread": 14 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1534307, + "thread": 19 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1660155, + "thread": 15 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 1971704, + "thread": 29 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2054237, + "thread": 6 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2183973, + "thread": 3 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2420259, + "thread": 16 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2579746, + "thread": 17 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2636766, + "thread": 3 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2942212, + "thread": 8 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 2962958, + "thread": 18 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 3283756, + "thread": 19 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 3438583, + "thread": 16 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 3581593, + "thread": 4 + } + }, + { + "amount": "71.079113648", + "slot": { + "period": 3661943, + "thread": 7 + } + }, + { + "amount": "71.079113643", + "slot": { + "period": 3919658, + "thread": 23 + } + } + ], + "AU1X5cJ655VDeBJ1U84Femf71vJJS83Q1eBrmTCuEr5xGkSJEnLA": [ + { + "amount": "341.815039110", + "slot": { + "period": 69423, + "thread": 24 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 314507, + "thread": 10 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 367686, + "thread": 5 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 546196, + "thread": 29 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 786886, + "thread": 30 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 944642, + "thread": 10 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1149587, + "thread": 21 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1244131, + "thread": 21 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1450021, + "thread": 31 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1612484, + "thread": 18 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1722080, + "thread": 23 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 1893046, + "thread": 21 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2046040, + "thread": 21 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2213570, + "thread": 3 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2314000, + "thread": 18 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2555663, + "thread": 13 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2739789, + "thread": 7 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2863498, + "thread": 7 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 2972671, + "thread": 19 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 3202492, + "thread": 26 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 3430885, + "thread": 25 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 3473120, + "thread": 15 + } + }, + { + "amount": "341.815039110", + "slot": { + "period": 3771330, + "thread": 22 + } + }, + { + "amount": "341.815039105", + "slot": { + "period": 3817067, + "thread": 31 + } + } + ], + "AU1X685mXWcj2tgn11Eak1wpWrBs9poEjwkkkGXV9rTGBkVRVqKN": [ + { + "amount": "1549.585256092", + "slot": { + "period": 47975, + "thread": 14 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 262900, + "thread": 0 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 466164, + "thread": 8 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 590674, + "thread": 23 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 724138, + "thread": 27 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 979388, + "thread": 3 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1020701, + "thread": 24 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1153557, + "thread": 10 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1453934, + "thread": 16 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1613246, + "thread": 24 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1730749, + "thread": 19 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 1813825, + "thread": 22 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2093443, + "thread": 14 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2267440, + "thread": 9 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2298594, + "thread": 21 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2564800, + "thread": 29 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2624761, + "thread": 23 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2856764, + "thread": 17 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 2987133, + "thread": 7 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 3163155, + "thread": 1 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 3294776, + "thread": 0 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 3473734, + "thread": 4 + } + }, + { + "amount": "1549.585256092", + "slot": { + "period": 3681455, + "thread": 10 + } + }, + { + "amount": "1549.585256083", + "slot": { + "period": 3857108, + "thread": 12 + } + } + ], + "AU1X6AbZmcyjc6biWAyKMfUsnN5MVSdDoti3sL648myE8ewMG5ii": [ + { + "amount": "332.510282289", + "slot": { + "period": 53590, + "thread": 27 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 235507, + "thread": 11 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 422899, + "thread": 3 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 545159, + "thread": 3 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 681672, + "thread": 9 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 953248, + "thread": 17 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1004470, + "thread": 0 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1172364, + "thread": 26 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1389459, + "thread": 7 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1506870, + "thread": 31 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1655639, + "thread": 16 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 1904395, + "thread": 16 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2076904, + "thread": 24 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2269593, + "thread": 22 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2410728, + "thread": 27 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2517129, + "thread": 17 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2711274, + "thread": 18 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 2933141, + "thread": 12 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 3000825, + "thread": 11 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 3171311, + "thread": 26 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 3295989, + "thread": 8 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 3583998, + "thread": 18 + } + }, + { + "amount": "332.510282289", + "slot": { + "period": 3678146, + "thread": 28 + } + }, + { + "amount": "332.510282286", + "slot": { + "period": 3838674, + "thread": 29 + } + } + ], + "AU1X7CTkc4EooqftcAwtT32CnxBpkDmn6tufN7NyJ5Avj9hvECJW": [ + { + "amount": "233.259979941", + "slot": { + "period": 80835, + "thread": 3 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 174397, + "thread": 0 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 357128, + "thread": 30 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 553517, + "thread": 17 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 816534, + "thread": 28 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 963521, + "thread": 27 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1093121, + "thread": 0 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1206859, + "thread": 25 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1403882, + "thread": 8 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1586166, + "thread": 17 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1771553, + "thread": 21 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 1938262, + "thread": 22 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2090743, + "thread": 5 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2237039, + "thread": 25 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2368218, + "thread": 7 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2510973, + "thread": 0 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2680812, + "thread": 18 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2882881, + "thread": 16 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 2985447, + "thread": 2 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 3186306, + "thread": 16 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 3409833, + "thread": 23 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 3465943, + "thread": 24 + } + }, + { + "amount": "233.259979941", + "slot": { + "period": 3774933, + "thread": 1 + } + }, + { + "amount": "233.259979949", + "slot": { + "period": 3824283, + "thread": 31 + } + } + ], + "AU1X7QdKesUP2zbefxUeCmKAFt5PLe8R3MeVsYqyu6dJgCA9qzGY": [ + { + "amount": "425.132642861", + "slot": { + "period": 143860, + "thread": 11 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 261426, + "thread": 13 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 388699, + "thread": 21 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 527137, + "thread": 6 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 711235, + "thread": 4 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 956626, + "thread": 26 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1064434, + "thread": 8 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1193751, + "thread": 2 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1326065, + "thread": 19 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1635550, + "thread": 23 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1792662, + "thread": 7 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 1848601, + "thread": 19 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2122546, + "thread": 14 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2149317, + "thread": 9 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2365847, + "thread": 17 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2532562, + "thread": 26 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2638542, + "thread": 15 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 2870183, + "thread": 27 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 3089704, + "thread": 8 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 3212451, + "thread": 19 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 3340238, + "thread": 18 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 3456499, + "thread": 26 + } + }, + { + "amount": "425.132642861", + "slot": { + "period": 3732156, + "thread": 26 + } + }, + { + "amount": "425.132642851", + "slot": { + "period": 3821956, + "thread": 28 + } + } + ], + "AU1X7a8do2NpsquPgnedByMf2F8SZkVjwFZTj5rMBnoq7FngwCxr": [ + { + "amount": "1333.696453849", + "slot": { + "period": 152171, + "thread": 25 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 318201, + "thread": 3 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 461191, + "thread": 29 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 530453, + "thread": 5 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 781222, + "thread": 14 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 830777, + "thread": 29 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1005051, + "thread": 0 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1250331, + "thread": 2 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1361706, + "thread": 30 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1492457, + "thread": 13 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1733425, + "thread": 14 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 1813852, + "thread": 14 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2041605, + "thread": 30 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2225840, + "thread": 15 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2357698, + "thread": 9 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2525036, + "thread": 1 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2760159, + "thread": 7 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 2883834, + "thread": 27 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 3089574, + "thread": 7 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 3250290, + "thread": 25 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 3304654, + "thread": 19 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 3517991, + "thread": 29 + } + }, + { + "amount": "1333.696453849", + "slot": { + "period": 3644899, + "thread": 10 + } + }, + { + "amount": "1333.696453852", + "slot": { + "period": 3800562, + "thread": 8 + } + } + ], + "AU1X7mjTNruU8EF5AuwzRgW7aXYBeC7mMcRQUa96NJxtXTRn7995": [ + { + "amount": "100.333421526", + "slot": { + "period": 49414, + "thread": 26 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 302396, + "thread": 4 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 343372, + "thread": 23 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 566592, + "thread": 21 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 789492, + "thread": 18 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 892734, + "thread": 26 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 998784, + "thread": 9 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 1158887, + "thread": 22 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 1436165, + "thread": 9 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 1540777, + "thread": 6 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 1773157, + "thread": 21 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 1892168, + "thread": 2 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2025146, + "thread": 3 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2205932, + "thread": 24 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2387121, + "thread": 11 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2554178, + "thread": 19 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2697251, + "thread": 4 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 2921965, + "thread": 31 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 3110175, + "thread": 11 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 3176830, + "thread": 19 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 3296245, + "thread": 8 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 3529671, + "thread": 19 + } + }, + { + "amount": "100.333421526", + "slot": { + "period": 3779025, + "thread": 12 + } + }, + { + "amount": "100.333421524", + "slot": { + "period": 3862879, + "thread": 5 + } + } + ], + "AU1X8bxQJsPoiHdfp62i5H2ExHvLpG2uSrwiESJEEuob7t97xbtn": [ + { + "amount": "329.266067731", + "slot": { + "period": 11785, + "thread": 14 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 297696, + "thread": 2 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 430090, + "thread": 23 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 519255, + "thread": 24 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 793922, + "thread": 14 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 836190, + "thread": 25 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1020495, + "thread": 13 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1235005, + "thread": 21 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1456973, + "thread": 23 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1488962, + "thread": 28 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1667827, + "thread": 16 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 1877941, + "thread": 13 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2092870, + "thread": 13 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2252318, + "thread": 0 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2425246, + "thread": 21 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2512465, + "thread": 28 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2771936, + "thread": 0 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 2805161, + "thread": 18 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 3008676, + "thread": 5 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 3130489, + "thread": 28 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 3294632, + "thread": 14 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 3595566, + "thread": 8 + } + }, + { + "amount": "329.266067731", + "slot": { + "period": 3661503, + "thread": 14 + } + }, + { + "amount": "329.266067738", + "slot": { + "period": 3883542, + "thread": 8 + } + } + ], + "AU1X8xkFhj8YuQU1r6L63RzbvudSibXZZmXbzPwvwHhsseoq7aAa": [ + { + "amount": "125.074625025", + "slot": { + "period": 141541, + "thread": 3 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 280127, + "thread": 28 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 472504, + "thread": 5 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 640422, + "thread": 2 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 795686, + "thread": 10 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 955633, + "thread": 13 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1087184, + "thread": 8 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1317010, + "thread": 29 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1341870, + "thread": 24 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1560779, + "thread": 20 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1727326, + "thread": 24 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 1831099, + "thread": 24 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2046116, + "thread": 21 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2180896, + "thread": 8 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2423732, + "thread": 8 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2509936, + "thread": 14 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2719099, + "thread": 2 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2880183, + "thread": 27 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 2967868, + "thread": 22 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 3284384, + "thread": 13 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 3413579, + "thread": 5 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 3599194, + "thread": 0 + } + }, + { + "amount": "125.074625025", + "slot": { + "period": 3713886, + "thread": 11 + } + }, + { + "amount": "125.074625014", + "slot": { + "period": 3815883, + "thread": 23 + } + } + ], + "AU1XAwXC4ktByXmEk8yLgQxRAysNqNqRAu7VcWUDPiBYpSCu5Z3B": [ + { + "amount": "51.586386270", + "slot": { + "period": 15536, + "thread": 14 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 209918, + "thread": 26 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 483709, + "thread": 20 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 541473, + "thread": 6 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 812673, + "thread": 17 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 969128, + "thread": 5 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1061024, + "thread": 7 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1295861, + "thread": 4 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1426161, + "thread": 15 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1591756, + "thread": 20 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1666500, + "thread": 4 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 1882966, + "thread": 27 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2136933, + "thread": 16 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2160957, + "thread": 12 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2380522, + "thread": 17 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2468520, + "thread": 26 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2685768, + "thread": 11 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2916343, + "thread": 16 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 2989666, + "thread": 31 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 3213199, + "thread": 10 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 3428615, + "thread": 19 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 3605273, + "thread": 15 + } + }, + { + "amount": "51.586386270", + "slot": { + "period": 3623791, + "thread": 7 + } + }, + { + "amount": "51.586386260", + "slot": { + "period": 3887392, + "thread": 18 + } + } + ], + "AU1XBNTEdncHpSnscuTUZKbdsGBJmf3XB51D1rcvHCPJBwqm9crA": [ + { + "amount": "130.483931020", + "slot": { + "period": 134273, + "thread": 6 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 234911, + "thread": 26 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 340486, + "thread": 22 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 621061, + "thread": 28 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 802015, + "thread": 27 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 957557, + "thread": 23 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1136077, + "thread": 3 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1295831, + "thread": 8 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1371754, + "thread": 25 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1524669, + "thread": 10 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1729725, + "thread": 24 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 1954196, + "thread": 8 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2058074, + "thread": 11 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2158677, + "thread": 7 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2407583, + "thread": 22 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2537520, + "thread": 5 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2721382, + "thread": 0 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2844891, + "thread": 3 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 2996764, + "thread": 15 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 3203873, + "thread": 14 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 3325584, + "thread": 1 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 3594726, + "thread": 19 + } + }, + { + "amount": "130.483931020", + "slot": { + "period": 3716913, + "thread": 29 + } + }, + { + "amount": "130.483931030", + "slot": { + "period": 3902504, + "thread": 13 + } + } + ], + "AU1XCzBqwYLu2dd1F2BG5mu1PGCgCpVsPDjQx4UAC2GiHevwUJ8f": [ + { + "amount": "187.582759494", + "slot": { + "period": 66040, + "thread": 17 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 258105, + "thread": 8 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 374497, + "thread": 12 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 496543, + "thread": 15 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 718107, + "thread": 15 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 938591, + "thread": 13 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1102835, + "thread": 19 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1178994, + "thread": 10 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1474771, + "thread": 0 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1578090, + "thread": 7 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1693938, + "thread": 16 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1883852, + "thread": 26 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 1986108, + "thread": 8 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 2238673, + "thread": 2 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 2312383, + "thread": 17 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 2494786, + "thread": 5 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 2651392, + "thread": 18 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 2920281, + "thread": 6 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 3051780, + "thread": 16 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 3145607, + "thread": 15 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 3293865, + "thread": 3 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 3573860, + "thread": 13 + } + }, + { + "amount": "187.582759494", + "slot": { + "period": 3695537, + "thread": 10 + } + }, + { + "amount": "187.582759488", + "slot": { + "period": 3804462, + "thread": 25 + } + } + ], + "AU1XDsNyxQ3x5rAvaz5rUkBwr9wayPnu4sTi14SpCcHXdHeDc1ix": [ + { + "amount": "196.501595604", + "slot": { + "period": 23275, + "thread": 14 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 208253, + "thread": 15 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 350111, + "thread": 27 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 527664, + "thread": 4 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 708678, + "thread": 30 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 979958, + "thread": 18 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1071615, + "thread": 8 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1244875, + "thread": 17 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1341875, + "thread": 6 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1621957, + "thread": 1 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1711501, + "thread": 25 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1845912, + "thread": 16 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 1998110, + "thread": 26 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 2280520, + "thread": 12 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 2416886, + "thread": 30 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 2497401, + "thread": 22 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 2781871, + "thread": 11 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 2952754, + "thread": 11 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 3081595, + "thread": 17 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 3141857, + "thread": 29 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 3369782, + "thread": 15 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 3467984, + "thread": 26 + } + }, + { + "amount": "196.501595604", + "slot": { + "period": 3636490, + "thread": 30 + } + }, + { + "amount": "196.501595608", + "slot": { + "period": 3907016, + "thread": 19 + } + } + ], + "AU1XFPxc6GY6htEjDktwn2o9MNhncVJGuw7tps1ovJYwBb5NL99f": [ + { + "amount": "173.823588964", + "slot": { + "period": 109073, + "thread": 21 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 285271, + "thread": 17 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 382796, + "thread": 3 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 578222, + "thread": 5 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 789316, + "thread": 18 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 977006, + "thread": 30 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1114066, + "thread": 5 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1188662, + "thread": 26 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1442982, + "thread": 11 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1528251, + "thread": 25 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1710599, + "thread": 13 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 1909884, + "thread": 6 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2049754, + "thread": 15 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2200900, + "thread": 26 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2430086, + "thread": 11 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2542359, + "thread": 10 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2782293, + "thread": 2 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 2873792, + "thread": 4 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 3020864, + "thread": 15 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 3225588, + "thread": 11 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 3313125, + "thread": 28 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 3588054, + "thread": 24 + } + }, + { + "amount": "173.823588964", + "slot": { + "period": 3690615, + "thread": 25 + } + }, + { + "amount": "173.823588963", + "slot": { + "period": 3797122, + "thread": 25 + } + } + ], + "AU1XG7VVgqcQddLETimYQAcNSEXvJFbhTaN4SfWYpyB6L2SXKfud": [ + { + "amount": "140.012451464", + "slot": { + "period": 158944, + "thread": 8 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 208616, + "thread": 8 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 392233, + "thread": 2 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 639741, + "thread": 11 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 807988, + "thread": 25 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 885116, + "thread": 9 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1007856, + "thread": 5 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1294580, + "thread": 30 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1411413, + "thread": 7 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1530624, + "thread": 27 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1737114, + "thread": 9 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 1839174, + "thread": 16 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2104911, + "thread": 9 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2224103, + "thread": 7 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2373372, + "thread": 9 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2593613, + "thread": 0 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2733855, + "thread": 1 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 2922093, + "thread": 20 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 3109685, + "thread": 26 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 3189795, + "thread": 12 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 3433065, + "thread": 21 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 3498675, + "thread": 13 + } + }, + { + "amount": "140.012451464", + "slot": { + "period": 3670505, + "thread": 15 + } + }, + { + "amount": "140.012451468", + "slot": { + "period": 3942353, + "thread": 21 + } + } + ], + "AU1XGDh6wMad63vV3yTSBcdngmo2AMpchGaFtVfk76wrEuFQCD8r": [ + { + "amount": "243.803624465", + "slot": { + "period": 14156, + "thread": 16 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 206967, + "thread": 28 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 397591, + "thread": 30 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 573769, + "thread": 11 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 788259, + "thread": 25 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 893149, + "thread": 2 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1114645, + "thread": 3 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1163842, + "thread": 9 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1377331, + "thread": 10 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1479652, + "thread": 17 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1723893, + "thread": 18 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 1952781, + "thread": 10 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2069042, + "thread": 27 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2192043, + "thread": 27 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2348975, + "thread": 0 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2551622, + "thread": 28 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2697465, + "thread": 12 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 2817405, + "thread": 21 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 3055385, + "thread": 26 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 3167780, + "thread": 14 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 3374981, + "thread": 2 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 3547499, + "thread": 21 + } + }, + { + "amount": "243.803624465", + "slot": { + "period": 3642678, + "thread": 6 + } + }, + { + "amount": "243.803624467", + "slot": { + "period": 3846136, + "thread": 2 + } + } + ], + "AU1XGK9x32fxBJXEjcMcQbJvmX7PdP6387XKuwk1F3GjXFhGgsNk": [ + { + "amount": "208.029013009", + "slot": { + "period": 25761, + "thread": 13 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 215935, + "thread": 10 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 453509, + "thread": 7 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 541996, + "thread": 23 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 814255, + "thread": 0 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 891935, + "thread": 17 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1002372, + "thread": 5 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1172801, + "thread": 27 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1379372, + "thread": 29 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1592119, + "thread": 22 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1698322, + "thread": 12 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 1871537, + "thread": 22 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2109217, + "thread": 24 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2166760, + "thread": 11 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2333423, + "thread": 27 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2505228, + "thread": 16 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2643473, + "thread": 26 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2866433, + "thread": 16 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 2968800, + "thread": 23 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 3249801, + "thread": 27 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 3343713, + "thread": 25 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 3498260, + "thread": 19 + } + }, + { + "amount": "208.029013009", + "slot": { + "period": 3754212, + "thread": 22 + } + }, + { + "amount": "208.029013014", + "slot": { + "period": 3834900, + "thread": 14 + } + } + ], + "AU1XGjKNeedhxC2hHZQUmuo73p5iwWTi4G8GFHUBaYdD6NSmTVMc": [ + { + "amount": "418.356729592", + "slot": { + "period": 165427, + "thread": 1 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 203746, + "thread": 18 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 351380, + "thread": 27 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 563107, + "thread": 8 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 667448, + "thread": 4 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 890891, + "thread": 27 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 997125, + "thread": 14 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 1301243, + "thread": 6 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 1472357, + "thread": 10 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 1641505, + "thread": 18 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 1754117, + "thread": 6 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 1930043, + "thread": 1 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2019122, + "thread": 14 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2285535, + "thread": 31 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2329264, + "thread": 19 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2490022, + "thread": 19 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2643097, + "thread": 31 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 2897076, + "thread": 10 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 3087761, + "thread": 15 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 3189759, + "thread": 6 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 3315801, + "thread": 19 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 3605661, + "thread": 27 + } + }, + { + "amount": "418.356729592", + "slot": { + "period": 3678005, + "thread": 3 + } + }, + { + "amount": "418.356729596", + "slot": { + "period": 3916096, + "thread": 19 + } + } + ], + "AU1XH99bafuKooTRVizfjm3FkcfCeLyZ2QjWm3ReUVPaDCrVRgVt": [ + { + "amount": "145.283725928", + "slot": { + "period": 91172, + "thread": 9 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 210826, + "thread": 11 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 444497, + "thread": 4 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 514940, + "thread": 2 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 814986, + "thread": 20 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 966838, + "thread": 14 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 986905, + "thread": 16 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 1248254, + "thread": 4 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 1437709, + "thread": 3 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 1608837, + "thread": 28 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 1792210, + "thread": 28 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 1870402, + "thread": 9 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2065755, + "thread": 24 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2199544, + "thread": 9 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2404170, + "thread": 11 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2588415, + "thread": 10 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2671171, + "thread": 15 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 2947306, + "thread": 20 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 3078803, + "thread": 0 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 3215680, + "thread": 0 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 3327396, + "thread": 23 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 3589569, + "thread": 18 + } + }, + { + "amount": "145.283725928", + "slot": { + "period": 3653424, + "thread": 23 + } + }, + { + "amount": "145.283725917", + "slot": { + "period": 3821469, + "thread": 10 + } + } + ], + "AU1XHQnb8gCTmNWAubNsFae2W5YtbmEYYqx5EGtiL5PFwyiHigVN": [ + { + "amount": "238.758019095", + "slot": { + "period": 13055, + "thread": 16 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 219721, + "thread": 26 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 430117, + "thread": 12 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 567932, + "thread": 15 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 698361, + "thread": 8 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 960743, + "thread": 10 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1127939, + "thread": 14 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1187714, + "thread": 28 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1325896, + "thread": 10 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1586973, + "thread": 28 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1733254, + "thread": 13 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 1860267, + "thread": 0 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2038279, + "thread": 16 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2248765, + "thread": 3 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2379970, + "thread": 22 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2622480, + "thread": 2 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2668030, + "thread": 28 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2891166, + "thread": 12 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 2992959, + "thread": 10 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 3124078, + "thread": 25 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 3303629, + "thread": 13 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 3597190, + "thread": 5 + } + }, + { + "amount": "238.758019095", + "slot": { + "period": 3775700, + "thread": 28 + } + }, + { + "amount": "238.758019105", + "slot": { + "period": 3797639, + "thread": 28 + } + } + ], + "AU1XJgrTnXquo73SjrMe62dFgRJJdcbXgy24XDUVfH1gsS72DpzB": [ + { + "amount": "576.787453620", + "slot": { + "period": 95585, + "thread": 21 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 214361, + "thread": 14 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 352583, + "thread": 12 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 644789, + "thread": 11 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 792548, + "thread": 0 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 928020, + "thread": 5 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1004904, + "thread": 10 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1251810, + "thread": 17 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1390308, + "thread": 13 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1607434, + "thread": 10 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1697631, + "thread": 28 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 1856762, + "thread": 21 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2104477, + "thread": 10 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2182786, + "thread": 23 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2358680, + "thread": 27 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2562041, + "thread": 30 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2670123, + "thread": 20 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 2853456, + "thread": 7 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 3009530, + "thread": 1 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 3271120, + "thread": 28 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 3322635, + "thread": 0 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 3528474, + "thread": 9 + } + }, + { + "amount": "576.787453620", + "slot": { + "period": 3741255, + "thread": 7 + } + }, + { + "amount": "576.787453608", + "slot": { + "period": 3923194, + "thread": 1 + } + } + ], + "AU1XJurnnbTvDUkLzXoKJLWdyehF6MR2sVZKtpwDeFiTgE2CtoaK": [ + { + "amount": "122.082723504", + "slot": { + "period": 138432, + "thread": 30 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 290087, + "thread": 5 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 491028, + "thread": 21 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 572176, + "thread": 17 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 711497, + "thread": 29 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 898216, + "thread": 12 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1148105, + "thread": 7 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1270532, + "thread": 27 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1409639, + "thread": 31 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1501085, + "thread": 17 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1804932, + "thread": 2 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 1810718, + "thread": 26 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2115719, + "thread": 7 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2238392, + "thread": 29 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2331409, + "thread": 23 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2507185, + "thread": 6 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2784946, + "thread": 7 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2858776, + "thread": 22 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 2992449, + "thread": 19 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 3273818, + "thread": 30 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 3436545, + "thread": 24 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 3534407, + "thread": 28 + } + }, + { + "amount": "122.082723504", + "slot": { + "period": 3649483, + "thread": 6 + } + }, + { + "amount": "122.082723507", + "slot": { + "period": 3784174, + "thread": 16 + } + } + ], + "AU1XMqJtmzA5P1XJUME43idKtSFwkW6iVn8baDcs9qHa21jo7Fei": [ + { + "amount": "57.238549617", + "slot": { + "period": 35919, + "thread": 22 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 233396, + "thread": 23 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 354336, + "thread": 28 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 559596, + "thread": 14 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 658847, + "thread": 19 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 837332, + "thread": 30 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1035417, + "thread": 5 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1185381, + "thread": 0 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1458733, + "thread": 17 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1534254, + "thread": 8 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1671849, + "thread": 18 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 1936443, + "thread": 17 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2038071, + "thread": 8 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2198734, + "thread": 26 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2446517, + "thread": 4 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2555683, + "thread": 24 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2729369, + "thread": 30 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 2875162, + "thread": 31 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 3030496, + "thread": 11 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 3207435, + "thread": 15 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 3369603, + "thread": 0 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 3480433, + "thread": 9 + } + }, + { + "amount": "57.238549617", + "slot": { + "period": 3702758, + "thread": 4 + } + }, + { + "amount": "57.238549606", + "slot": { + "period": 3831226, + "thread": 19 + } + } + ], + "AU1XNb7mLXqav4HW9s8d5FVcqUw8CC9p1gW4PjyewNkecTMHm5Sz": [ + { + "amount": "341.073230481", + "slot": { + "period": 131247, + "thread": 4 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 225265, + "thread": 17 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 352780, + "thread": 18 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 602521, + "thread": 8 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 820158, + "thread": 16 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 880003, + "thread": 14 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 986968, + "thread": 4 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 1224823, + "thread": 27 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 1444590, + "thread": 18 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 1576596, + "thread": 17 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 1672071, + "thread": 11 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 1849586, + "thread": 29 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2029784, + "thread": 25 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2178086, + "thread": 18 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2326138, + "thread": 3 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2503376, + "thread": 24 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2720916, + "thread": 26 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 2834321, + "thread": 26 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 3007685, + "thread": 5 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 3246711, + "thread": 20 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 3380157, + "thread": 13 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 3500630, + "thread": 16 + } + }, + { + "amount": "341.073230481", + "slot": { + "period": 3678954, + "thread": 24 + } + }, + { + "amount": "341.073230476", + "slot": { + "period": 3937108, + "thread": 20 + } + } + ], + "AU1XPaLHJMLdP2s5n2HjsxxFi4DqvYFwzaMdye3cpds61G5uKTf8": [ + { + "amount": "134.951750963", + "slot": { + "period": 13556, + "thread": 0 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 182859, + "thread": 31 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 465775, + "thread": 16 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 544380, + "thread": 11 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 818644, + "thread": 30 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 980549, + "thread": 29 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1036403, + "thread": 5 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1216470, + "thread": 23 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1436284, + "thread": 13 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1585675, + "thread": 19 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1667881, + "thread": 29 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 1838493, + "thread": 24 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2000867, + "thread": 12 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2269050, + "thread": 18 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2309954, + "thread": 20 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2577805, + "thread": 17 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2670453, + "thread": 5 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2888658, + "thread": 26 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 2982951, + "thread": 21 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 3263172, + "thread": 31 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 3366978, + "thread": 22 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 3491721, + "thread": 11 + } + }, + { + "amount": "134.951750963", + "slot": { + "period": 3757735, + "thread": 2 + } + }, + { + "amount": "134.951750968", + "slot": { + "period": 3904827, + "thread": 17 + } + } + ], + "AU1XPax4frmQdwN4yhYR97EJeFXva3kcLifY6ioTRg5uffdgkyo3": [ + { + "amount": "100.243144742", + "slot": { + "period": 28943, + "thread": 7 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 226360, + "thread": 14 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 343306, + "thread": 5 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 640911, + "thread": 18 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 679501, + "thread": 6 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 978890, + "thread": 28 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1117982, + "thread": 16 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1310597, + "thread": 12 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1383829, + "thread": 13 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1553972, + "thread": 8 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1743007, + "thread": 17 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 1939442, + "thread": 17 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2084417, + "thread": 7 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2282766, + "thread": 17 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2420825, + "thread": 29 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2510947, + "thread": 25 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2675553, + "thread": 5 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2828482, + "thread": 1 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 2979306, + "thread": 30 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 3176112, + "thread": 10 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 3406171, + "thread": 14 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 3507129, + "thread": 5 + } + }, + { + "amount": "100.243144742", + "slot": { + "period": 3637108, + "thread": 29 + } + }, + { + "amount": "100.243144734", + "slot": { + "period": 3945909, + "thread": 7 + } + } + ], + "AU1XQ4ATeVCLCH1gUeqvcUWhXgcdqyunm5EkatZuqhpPbxSZAVmw": [ + { + "amount": "162.032096825", + "slot": { + "period": 68358, + "thread": 28 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 227563, + "thread": 23 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 448168, + "thread": 0 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 541536, + "thread": 22 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 783837, + "thread": 0 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 919469, + "thread": 13 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1044642, + "thread": 27 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1310993, + "thread": 26 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1464402, + "thread": 7 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1534287, + "thread": 16 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1649646, + "thread": 20 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 1828830, + "thread": 17 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2063403, + "thread": 19 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2161151, + "thread": 31 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2419788, + "thread": 30 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2583608, + "thread": 0 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2696493, + "thread": 14 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 2793462, + "thread": 30 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3072699, + "thread": 27 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3127526, + "thread": 24 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3369305, + "thread": 29 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3601330, + "thread": 10 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3741328, + "thread": 11 + } + }, + { + "amount": "162.032096825", + "slot": { + "period": 3844434, + "thread": 21 + } + } + ], + "AU1XR9aPtdA8ARQXwx7UfRFQBLErAFcGLfoXqgfvCzMFiGZwVdnJ": [ + { + "amount": "63.955085484", + "slot": { + "period": 22768, + "thread": 20 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 280595, + "thread": 26 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 406333, + "thread": 7 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 497344, + "thread": 14 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 675179, + "thread": 1 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 941138, + "thread": 8 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1119068, + "thread": 10 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1278320, + "thread": 26 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1346682, + "thread": 1 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1608345, + "thread": 23 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1781209, + "thread": 3 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 1881446, + "thread": 3 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2009303, + "thread": 25 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2177462, + "thread": 11 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2455098, + "thread": 26 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2514762, + "thread": 5 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2687065, + "thread": 12 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2804671, + "thread": 12 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 2984675, + "thread": 27 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 3170640, + "thread": 27 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 3427911, + "thread": 8 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 3485099, + "thread": 6 + } + }, + { + "amount": "63.955085484", + "slot": { + "period": 3677979, + "thread": 19 + } + }, + { + "amount": "63.955085496", + "slot": { + "period": 3889188, + "thread": 5 + } + } + ], + "AU1XSBwCsZ1ptNBBmsPkaH6FP5rGHhqAT8SMW9Wwt1MEQLsB9Rwm": [ + { + "amount": "488.326590922", + "slot": { + "period": 42555, + "thread": 9 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 288702, + "thread": 5 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 417795, + "thread": 17 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 562606, + "thread": 3 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 752359, + "thread": 23 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 962531, + "thread": 1 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 989594, + "thread": 12 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 1207789, + "thread": 13 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 1475717, + "thread": 26 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 1642561, + "thread": 13 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 1647144, + "thread": 20 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 1961028, + "thread": 21 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2139336, + "thread": 31 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2155205, + "thread": 15 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2310347, + "thread": 7 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2605015, + "thread": 13 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2635221, + "thread": 1 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 2799011, + "thread": 31 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 3111066, + "thread": 26 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 3131709, + "thread": 16 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 3387204, + "thread": 2 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 3594964, + "thread": 11 + } + }, + { + "amount": "488.326590922", + "slot": { + "period": 3639192, + "thread": 16 + } + }, + { + "amount": "488.326590930", + "slot": { + "period": 3859287, + "thread": 24 + } + } + ], + "AU1XSJa3sScuxgimVtDiNT7S74fGwTNGTJZ5kWFanGW8aVfFLi9Y": [ + { + "amount": "459.472067496", + "slot": { + "period": 31483, + "thread": 9 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 192029, + "thread": 26 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 383537, + "thread": 10 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 632633, + "thread": 12 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 777418, + "thread": 16 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 911719, + "thread": 10 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1124108, + "thread": 25 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1211296, + "thread": 8 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1460681, + "thread": 24 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1503986, + "thread": 3 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1772724, + "thread": 0 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 1832764, + "thread": 12 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2015899, + "thread": 11 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2194546, + "thread": 31 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2338763, + "thread": 8 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2466748, + "thread": 24 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2701089, + "thread": 28 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 2840503, + "thread": 10 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 3084184, + "thread": 8 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 3128647, + "thread": 15 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 3342822, + "thread": 29 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 3545180, + "thread": 28 + } + }, + { + "amount": "459.472067496", + "slot": { + "period": 3768741, + "thread": 11 + } + }, + { + "amount": "459.472067489", + "slot": { + "period": 3821076, + "thread": 14 + } + } + ], + "AU1XSKgLv7jA5vwc15xXu5QwAYxn17ZaDfLQgrbWuVE26yaLuVzo": [ + { + "amount": "460.027767384", + "slot": { + "period": 128237, + "thread": 1 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 203844, + "thread": 23 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 447295, + "thread": 13 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 516126, + "thread": 23 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 770657, + "thread": 15 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 828371, + "thread": 26 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1038563, + "thread": 29 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1293550, + "thread": 4 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1402980, + "thread": 20 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1513828, + "thread": 13 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1730599, + "thread": 14 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1942659, + "thread": 3 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 1987680, + "thread": 5 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 2145495, + "thread": 7 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 2312529, + "thread": 4 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 2551287, + "thread": 10 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 2727441, + "thread": 2 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 2842062, + "thread": 7 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 3009593, + "thread": 9 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 3270782, + "thread": 3 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 3388272, + "thread": 10 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 3617928, + "thread": 16 + } + }, + { + "amount": "460.027767384", + "slot": { + "period": 3646255, + "thread": 16 + } + }, + { + "amount": "460.027767393", + "slot": { + "period": 3926089, + "thread": 8 + } + } + ], + "AU1XStVDcseVnUV7YzJa9rSAkHPyWqGPb8udLS9Fesm32LfCw9r": [ + { + "amount": "133.061305003", + "slot": { + "period": 110769, + "thread": 17 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 183654, + "thread": 2 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 408054, + "thread": 16 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 500505, + "thread": 19 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 667920, + "thread": 13 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 826800, + "thread": 20 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1070369, + "thread": 9 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1217143, + "thread": 31 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1430363, + "thread": 20 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1552714, + "thread": 5 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1723200, + "thread": 17 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 1898696, + "thread": 22 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2013469, + "thread": 17 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2185488, + "thread": 21 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2396248, + "thread": 2 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2477901, + "thread": 4 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2656690, + "thread": 21 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 2827111, + "thread": 27 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 3004731, + "thread": 10 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 3158622, + "thread": 1 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 3389155, + "thread": 12 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 3478665, + "thread": 10 + } + }, + { + "amount": "133.061305003", + "slot": { + "period": 3653468, + "thread": 5 + } + }, + { + "amount": "133.061304992", + "slot": { + "period": 3783988, + "thread": 21 + } + } + ], + "AU1XTrmFMn6CKaBsRLLCv9ASjRgvtYaE7yVqM6XVzs4VDxS2U23v": [ + { + "amount": "146.176682314", + "slot": { + "period": 22348, + "thread": 11 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 179448, + "thread": 29 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 446714, + "thread": 24 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 626756, + "thread": 30 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 706338, + "thread": 10 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 942162, + "thread": 5 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1143867, + "thread": 23 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1230334, + "thread": 23 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1366263, + "thread": 3 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1508816, + "thread": 11 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1806579, + "thread": 22 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1868516, + "thread": 10 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 1990389, + "thread": 5 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 2156272, + "thread": 20 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 2412737, + "thread": 23 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 2477633, + "thread": 23 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 2699393, + "thread": 27 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 2832220, + "thread": 27 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 3117611, + "thread": 30 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 3202884, + "thread": 22 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 3347545, + "thread": 1 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 3575198, + "thread": 20 + } + }, + { + "amount": "146.176682314", + "slot": { + "period": 3670052, + "thread": 6 + } + }, + { + "amount": "146.176682317", + "slot": { + "period": 3826349, + "thread": 15 + } + } + ], + "AU1XU7Tk61kiFrPdWbzFhdQuUQ3JvnUcUG6VxZC7AXGJkD3H7szv": [ + { + "amount": "2275.332977771", + "slot": { + "period": 149670, + "thread": 25 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 227230, + "thread": 6 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 450957, + "thread": 17 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 507985, + "thread": 14 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 722005, + "thread": 18 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 950138, + "thread": 30 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1108411, + "thread": 20 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1259607, + "thread": 27 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1362809, + "thread": 11 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1569003, + "thread": 23 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1714833, + "thread": 18 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 1927514, + "thread": 23 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2049570, + "thread": 0 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2158740, + "thread": 16 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2354315, + "thread": 16 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2562703, + "thread": 16 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2762837, + "thread": 8 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2904434, + "thread": 26 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 2997858, + "thread": 8 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 3265866, + "thread": 30 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 3438199, + "thread": 24 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 3538986, + "thread": 13 + } + }, + { + "amount": "2275.332977771", + "slot": { + "period": 3639321, + "thread": 27 + } + }, + { + "amount": "2275.332977782", + "slot": { + "period": 3897226, + "thread": 25 + } + } + ], + "AU1XUGTZRZsuKbYD8EBKnVaKXR2o7ye9wcrkixXwhuFqJViufcin": [ + { + "amount": "128.761144495", + "slot": { + "period": 64556, + "thread": 31 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 263049, + "thread": 22 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 376655, + "thread": 2 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 505145, + "thread": 2 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 712206, + "thread": 31 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 889259, + "thread": 19 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1018272, + "thread": 24 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1286757, + "thread": 7 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1402497, + "thread": 14 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1523183, + "thread": 3 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1731251, + "thread": 29 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 1883681, + "thread": 18 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2058100, + "thread": 21 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2276516, + "thread": 8 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2376832, + "thread": 12 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2619617, + "thread": 15 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2750820, + "thread": 23 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 2838178, + "thread": 16 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 3016247, + "thread": 21 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 3167996, + "thread": 0 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 3377634, + "thread": 31 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 3558846, + "thread": 11 + } + }, + { + "amount": "128.761144495", + "slot": { + "period": 3688209, + "thread": 4 + } + }, + { + "amount": "128.761144491", + "slot": { + "period": 3832241, + "thread": 23 + } + } + ], + "AU1XUeJ2f2kkbnNPQ7fKi2dvFMRS5cXJiRrR1ky7Z1wg8nbSt4rx": [ + { + "amount": "135.615226608", + "slot": { + "period": 55559, + "thread": 19 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 314615, + "thread": 4 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 448118, + "thread": 29 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 521355, + "thread": 0 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 787756, + "thread": 29 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 853904, + "thread": 6 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1048543, + "thread": 12 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1233483, + "thread": 0 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1461228, + "thread": 15 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1641923, + "thread": 24 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1795237, + "thread": 26 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 1945204, + "thread": 12 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2058567, + "thread": 6 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2184131, + "thread": 18 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2442175, + "thread": 29 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2589043, + "thread": 20 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2790989, + "thread": 12 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 2816148, + "thread": 8 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 3037599, + "thread": 28 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 3201604, + "thread": 24 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 3431541, + "thread": 6 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 3548435, + "thread": 8 + } + }, + { + "amount": "135.615226608", + "slot": { + "period": 3754847, + "thread": 30 + } + }, + { + "amount": "135.615226600", + "slot": { + "period": 3929468, + "thread": 20 + } + } + ], + "AU1XVGmeHSm6gNyDqf6xmfApMjgFbQsPNHg1od2CresJU29uC4Ch": [ + { + "amount": "180.275504799", + "slot": { + "period": 87568, + "thread": 2 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 323472, + "thread": 25 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 353099, + "thread": 22 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 527739, + "thread": 16 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 818611, + "thread": 17 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 888866, + "thread": 16 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1149655, + "thread": 13 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1196017, + "thread": 5 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1382070, + "thread": 4 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1544314, + "thread": 20 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1667731, + "thread": 17 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 1835419, + "thread": 16 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2055636, + "thread": 16 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2174452, + "thread": 30 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2394110, + "thread": 31 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2536276, + "thread": 17 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2788851, + "thread": 15 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 2919284, + "thread": 15 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 3107130, + "thread": 28 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 3230634, + "thread": 20 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 3439992, + "thread": 24 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 3523891, + "thread": 4 + } + }, + { + "amount": "180.275504799", + "slot": { + "period": 3733386, + "thread": 15 + } + }, + { + "amount": "180.275504810", + "slot": { + "period": 3929853, + "thread": 22 + } + } + ], + "AU1XWMX4AE4ToUt9h5Nk41BbdK8w3PdmLXcpWGFLGLVg8McppzkP": [ + { + "amount": "67.419395734", + "slot": { + "period": 123304, + "thread": 29 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 277016, + "thread": 23 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 487226, + "thread": 24 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 541316, + "thread": 2 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 771662, + "thread": 25 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 909876, + "thread": 23 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1041825, + "thread": 8 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1231759, + "thread": 30 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1406385, + "thread": 6 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1555869, + "thread": 17 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1683497, + "thread": 11 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 1851249, + "thread": 21 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2060206, + "thread": 4 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2293900, + "thread": 23 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2326918, + "thread": 17 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2564845, + "thread": 17 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2643632, + "thread": 28 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 2857730, + "thread": 4 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 3101660, + "thread": 29 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 3280138, + "thread": 11 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 3334034, + "thread": 8 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 3539120, + "thread": 11 + } + }, + { + "amount": "67.419395734", + "slot": { + "period": 3766974, + "thread": 28 + } + }, + { + "amount": "67.419395746", + "slot": { + "period": 3905547, + "thread": 12 + } + } + ], + "AU1XWnkgEDYAMCh3RgDAQfGc4DQQxqCovTMDaFM5Rn4sZkryF2bE": [ + { + "amount": "614.590024956", + "slot": { + "period": 106922, + "thread": 6 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 273600, + "thread": 10 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 366240, + "thread": 23 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 594408, + "thread": 23 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 796629, + "thread": 21 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 936364, + "thread": 21 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 986174, + "thread": 16 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 1178923, + "thread": 2 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 1459641, + "thread": 19 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 1584814, + "thread": 5 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 1688097, + "thread": 11 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 1955150, + "thread": 20 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2113273, + "thread": 1 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2207476, + "thread": 28 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2383533, + "thread": 12 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2590067, + "thread": 7 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2697066, + "thread": 14 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 2845843, + "thread": 8 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 3091295, + "thread": 0 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 3219484, + "thread": 18 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 3447618, + "thread": 6 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 3544722, + "thread": 13 + } + }, + { + "amount": "614.590024956", + "slot": { + "period": 3761004, + "thread": 0 + } + }, + { + "amount": "614.590024959", + "slot": { + "period": 3821599, + "thread": 24 + } + } + ], + "AU1XXSmJVkCoDxiStygR5uoGKCSE81EQtshHKf93dspXu42d6hcB": [ + { + "amount": "256.876350499", + "slot": { + "period": 115734, + "thread": 23 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 185993, + "thread": 4 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 388624, + "thread": 26 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 623340, + "thread": 29 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 742130, + "thread": 30 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 976171, + "thread": 4 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1149005, + "thread": 27 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1205931, + "thread": 12 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1384660, + "thread": 1 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1519934, + "thread": 15 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1753408, + "thread": 0 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 1929151, + "thread": 6 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2037204, + "thread": 2 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2259589, + "thread": 15 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2341093, + "thread": 2 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2570752, + "thread": 6 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2691331, + "thread": 13 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 2809587, + "thread": 24 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 3058139, + "thread": 31 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 3168844, + "thread": 2 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 3425925, + "thread": 23 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 3459442, + "thread": 13 + } + }, + { + "amount": "256.876350499", + "slot": { + "period": 3728407, + "thread": 18 + } + }, + { + "amount": "256.876350488", + "slot": { + "period": 3795874, + "thread": 8 + } + } + ], + "AU1XXmnuzgLQq7vkMnV7fduWbDQseJJepdfCBkMHp9xk2ereQnWA": [ + { + "amount": "365.090330636", + "slot": { + "period": 49497, + "thread": 3 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 263735, + "thread": 26 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 393870, + "thread": 14 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 626540, + "thread": 23 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 705428, + "thread": 12 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 940996, + "thread": 18 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1001527, + "thread": 26 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1167954, + "thread": 14 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1442866, + "thread": 14 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1588020, + "thread": 4 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1790020, + "thread": 4 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 1915714, + "thread": 5 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2003714, + "thread": 26 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2164212, + "thread": 7 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2325754, + "thread": 26 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2611528, + "thread": 21 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2776522, + "thread": 28 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 2906860, + "thread": 16 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3109282, + "thread": 2 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3218268, + "thread": 2 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3359128, + "thread": 19 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3460633, + "thread": 10 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3680170, + "thread": 27 + } + }, + { + "amount": "365.090330636", + "slot": { + "period": 3908131, + "thread": 23 + } + } + ], + "AU1XXrFZkfrFSrP2ommz2UuDrWrNWuhxbTv2nmCvJ8Cp9MDi1Zw1": [ + { + "amount": "202.681819155", + "slot": { + "period": 100756, + "thread": 3 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 288543, + "thread": 29 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 461964, + "thread": 1 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 611276, + "thread": 8 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 762904, + "thread": 19 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 860822, + "thread": 6 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1079570, + "thread": 5 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1194124, + "thread": 15 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1428531, + "thread": 5 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1630619, + "thread": 9 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1791862, + "thread": 8 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 1840850, + "thread": 6 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2045738, + "thread": 20 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2274378, + "thread": 17 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2374148, + "thread": 20 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2470398, + "thread": 26 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2635085, + "thread": 9 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 2816676, + "thread": 4 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 3116077, + "thread": 23 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 3230332, + "thread": 26 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 3308066, + "thread": 3 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 3602558, + "thread": 14 + } + }, + { + "amount": "202.681819155", + "slot": { + "period": 3639009, + "thread": 21 + } + }, + { + "amount": "202.681819149", + "slot": { + "period": 3946162, + "thread": 24 + } + } + ], + "AU1XZWCGP3cQA1vQqobjqv588oHWQzFwTgJkRuRJFtVrUYQF66hG": [ + { + "amount": "301.630373067", + "slot": { + "period": 64948, + "thread": 0 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 320346, + "thread": 20 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 426718, + "thread": 3 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 585318, + "thread": 17 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 698591, + "thread": 12 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 922148, + "thread": 26 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1132940, + "thread": 28 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1312562, + "thread": 29 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1341749, + "thread": 3 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1609669, + "thread": 17 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1795568, + "thread": 24 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 1814366, + "thread": 31 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2143298, + "thread": 5 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2294871, + "thread": 7 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2394630, + "thread": 8 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2542310, + "thread": 28 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2744831, + "thread": 24 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 2843557, + "thread": 10 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 3037200, + "thread": 14 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 3192640, + "thread": 11 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 3291424, + "thread": 22 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 3452462, + "thread": 31 + } + }, + { + "amount": "301.630373067", + "slot": { + "period": 3704940, + "thread": 5 + } + }, + { + "amount": "301.630373069", + "slot": { + "period": 3910733, + "thread": 19 + } + } + ], + "AU1XZgDSJpQnhLswjaB85tcmU3f19BityB2bj9DRSU9BK2apmRRU": [ + { + "amount": "206.458321563", + "slot": { + "period": 130264, + "thread": 1 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 270862, + "thread": 31 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 463269, + "thread": 29 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 551785, + "thread": 24 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 759831, + "thread": 1 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 938306, + "thread": 31 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1128901, + "thread": 1 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1210734, + "thread": 16 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1441993, + "thread": 17 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1498043, + "thread": 14 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1718602, + "thread": 27 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 1877193, + "thread": 5 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2141536, + "thread": 13 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2251039, + "thread": 24 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2363153, + "thread": 22 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2477671, + "thread": 15 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2746686, + "thread": 26 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 2803028, + "thread": 20 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 3114318, + "thread": 7 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 3169325, + "thread": 13 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 3353319, + "thread": 1 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 3477759, + "thread": 30 + } + }, + { + "amount": "206.458321563", + "slot": { + "period": 3708699, + "thread": 2 + } + }, + { + "amount": "206.458321554", + "slot": { + "period": 3890768, + "thread": 18 + } + } + ], + "AU1XZjVntK4BMfbUJ79nFJRaPYq2xXNVqkJFEyQ94WkUrLxEAQbh": [ + { + "amount": "51.632468063", + "slot": { + "period": 26440, + "thread": 15 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 314485, + "thread": 8 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 429723, + "thread": 9 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 648075, + "thread": 24 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 715901, + "thread": 19 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 970110, + "thread": 3 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1062805, + "thread": 3 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1267489, + "thread": 7 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1439823, + "thread": 14 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1595262, + "thread": 4 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1650441, + "thread": 28 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 1851663, + "thread": 1 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2028474, + "thread": 7 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2196560, + "thread": 22 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2303279, + "thread": 27 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2545279, + "thread": 4 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2668380, + "thread": 0 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 2951806, + "thread": 19 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 3067083, + "thread": 8 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 3183530, + "thread": 4 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 3292456, + "thread": 1 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 3607197, + "thread": 14 + } + }, + { + "amount": "51.632468063", + "slot": { + "period": 3654250, + "thread": 25 + } + }, + { + "amount": "51.632468068", + "slot": { + "period": 3805945, + "thread": 6 + } + } + ], + "AU1Xapv8cAJoMMaMK1yLmUCyXRa6tg3eZ7ta4Kn5gRhyNRZe8uqv": [ + { + "amount": "290.714123232", + "slot": { + "period": 24985, + "thread": 0 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 222910, + "thread": 23 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 469008, + "thread": 11 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 602045, + "thread": 1 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 696538, + "thread": 6 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 830817, + "thread": 23 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1129911, + "thread": 4 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1259386, + "thread": 10 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1374117, + "thread": 28 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1540619, + "thread": 0 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1763419, + "thread": 0 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 1950831, + "thread": 29 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2031322, + "thread": 15 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2270823, + "thread": 23 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2361396, + "thread": 8 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2484076, + "thread": 30 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2743909, + "thread": 5 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 2878430, + "thread": 18 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 3074237, + "thread": 14 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 3185470, + "thread": 2 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 3319297, + "thread": 22 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 3553607, + "thread": 31 + } + }, + { + "amount": "290.714123232", + "slot": { + "period": 3728878, + "thread": 4 + } + }, + { + "amount": "290.714123223", + "slot": { + "period": 3861006, + "thread": 15 + } + } + ], + "AU1Xb7XvkfA6QowaoN9WpfVmvkwVJgntQPT8m1sCyeF7PNoD3BLW": [ + { + "amount": "548.664633290", + "slot": { + "period": 80893, + "thread": 17 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 303053, + "thread": 12 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 334846, + "thread": 16 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 608550, + "thread": 20 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 758180, + "thread": 7 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 913802, + "thread": 0 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1081008, + "thread": 19 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1205637, + "thread": 6 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1474923, + "thread": 6 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1608005, + "thread": 21 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1693957, + "thread": 29 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 1928279, + "thread": 5 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2122745, + "thread": 17 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2144020, + "thread": 14 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2369725, + "thread": 23 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2529042, + "thread": 12 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2715536, + "thread": 18 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 2831415, + "thread": 14 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 3050013, + "thread": 4 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 3164536, + "thread": 10 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 3411726, + "thread": 8 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 3476880, + "thread": 25 + } + }, + { + "amount": "548.664633290", + "slot": { + "period": 3730359, + "thread": 8 + } + }, + { + "amount": "548.664633294", + "slot": { + "period": 3930614, + "thread": 8 + } + } + ], + "AU1XbX2PriM2CCoL1gAbib6zUSnvc81qaaGz4W4Yo9nGDGszypKb": [ + { + "amount": "115.360914343", + "slot": { + "period": 45625, + "thread": 22 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 180706, + "thread": 3 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 398155, + "thread": 26 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 609562, + "thread": 6 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 746826, + "thread": 11 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 905997, + "thread": 27 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 984722, + "thread": 29 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1207404, + "thread": 30 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1438501, + "thread": 27 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1532633, + "thread": 22 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1806915, + "thread": 31 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1960420, + "thread": 30 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 1977324, + "thread": 5 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 2227253, + "thread": 6 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 2311558, + "thread": 29 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 2618541, + "thread": 16 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 2683759, + "thread": 15 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 2918951, + "thread": 29 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 3085383, + "thread": 2 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 3166124, + "thread": 14 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 3396549, + "thread": 5 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 3581496, + "thread": 31 + } + }, + { + "amount": "115.360914343", + "slot": { + "period": 3653948, + "thread": 6 + } + }, + { + "amount": "115.360914338", + "slot": { + "period": 3788163, + "thread": 9 + } + } + ], + "AU1Xbpx6VzHLEzSgjMsUTJvLtaJfyP3XxkGP3AoPPgzKpya4PPYj": [ + { + "amount": "543.544636706", + "slot": { + "period": 34802, + "thread": 19 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 266902, + "thread": 24 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 414097, + "thread": 2 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 509299, + "thread": 0 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 710337, + "thread": 20 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 892520, + "thread": 4 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1138465, + "thread": 14 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1201297, + "thread": 16 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1367877, + "thread": 26 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1559833, + "thread": 25 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1691824, + "thread": 28 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 1875510, + "thread": 7 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2086090, + "thread": 26 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2209638, + "thread": 4 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2362496, + "thread": 17 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2499019, + "thread": 16 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2661038, + "thread": 20 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2827001, + "thread": 25 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 2989072, + "thread": 16 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 3266788, + "thread": 15 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 3301134, + "thread": 29 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 3474196, + "thread": 7 + } + }, + { + "amount": "543.544636706", + "slot": { + "period": 3660856, + "thread": 12 + } + }, + { + "amount": "543.544636698", + "slot": { + "period": 3823919, + "thread": 1 + } + } + ], + "AU1Xe26wdYJhSUBQiAmKv1BYs46zWZN1JJj6vUZDzLCQ6ci4h2D1": [ + { + "amount": "420.198853073", + "slot": { + "period": 110994, + "thread": 27 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 309125, + "thread": 0 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 491188, + "thread": 11 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 641024, + "thread": 7 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 683418, + "thread": 31 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 866512, + "thread": 20 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1055085, + "thread": 20 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1258689, + "thread": 21 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1474318, + "thread": 31 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1558002, + "thread": 20 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1675522, + "thread": 5 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 1865157, + "thread": 10 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2071486, + "thread": 2 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2269514, + "thread": 14 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2419161, + "thread": 30 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2572130, + "thread": 5 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2727707, + "thread": 21 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 2858259, + "thread": 24 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 3071252, + "thread": 25 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 3251366, + "thread": 22 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 3369927, + "thread": 24 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 3513983, + "thread": 4 + } + }, + { + "amount": "420.198853073", + "slot": { + "period": 3731119, + "thread": 13 + } + }, + { + "amount": "420.198853072", + "slot": { + "period": 3915326, + "thread": 29 + } + } + ], + "AU1Xe3bEwZJCnWUM1VPdGtZu3KQUtSbp3ZnPSaGPhRb8SiQN1kaT": [ + { + "amount": "544.316568953", + "slot": { + "period": 82563, + "thread": 11 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 181127, + "thread": 2 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 348512, + "thread": 3 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 496804, + "thread": 6 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 699879, + "thread": 23 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 892597, + "thread": 0 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1127906, + "thread": 13 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1236298, + "thread": 8 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1461953, + "thread": 27 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1578643, + "thread": 16 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1791824, + "thread": 21 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 1837677, + "thread": 19 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2038017, + "thread": 10 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2207757, + "thread": 23 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2406811, + "thread": 5 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2512798, + "thread": 6 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2705959, + "thread": 24 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2810685, + "thread": 15 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 2991291, + "thread": 10 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 3278748, + "thread": 23 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 3339771, + "thread": 12 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 3595560, + "thread": 20 + } + }, + { + "amount": "544.316568953", + "slot": { + "period": 3654763, + "thread": 10 + } + }, + { + "amount": "544.316568952", + "slot": { + "period": 3817770, + "thread": 4 + } + } + ], + "AU1XgQrnq5n5FSpbm3v5dKNRC7z22Gh4DA7ywjjnmcDZS4SEQzBV": [ + { + "amount": "55.662057810", + "slot": { + "period": 120459, + "thread": 16 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 278467, + "thread": 6 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 471441, + "thread": 26 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 603367, + "thread": 26 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 789515, + "thread": 12 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 887934, + "thread": 13 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1115852, + "thread": 6 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1253228, + "thread": 28 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1343836, + "thread": 18 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1496058, + "thread": 30 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1661126, + "thread": 18 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 1877902, + "thread": 2 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2114228, + "thread": 1 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2293266, + "thread": 4 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2445269, + "thread": 26 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2603896, + "thread": 12 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2788199, + "thread": 24 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2834140, + "thread": 31 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 2984849, + "thread": 11 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 3147579, + "thread": 19 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 3372113, + "thread": 0 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 3502017, + "thread": 24 + } + }, + { + "amount": "55.662057810", + "slot": { + "period": 3638128, + "thread": 14 + } + }, + { + "amount": "55.662057802", + "slot": { + "period": 3811368, + "thread": 19 + } + } + ], + "AU1XiJ1Nd16TwqgQyYtn1wSRphTneEyKHa8CdNBLqMcEeC4wFaB1": [ + { + "amount": "357.895346457", + "slot": { + "period": 141436, + "thread": 0 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 173937, + "thread": 13 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 355562, + "thread": 12 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 514785, + "thread": 29 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 735872, + "thread": 31 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 850297, + "thread": 21 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1083015, + "thread": 14 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1272855, + "thread": 1 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1330549, + "thread": 4 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1509980, + "thread": 29 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1728849, + "thread": 25 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 1947021, + "thread": 6 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2028457, + "thread": 31 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2164634, + "thread": 26 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2435637, + "thread": 20 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2545576, + "thread": 28 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2630646, + "thread": 17 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 2895869, + "thread": 28 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 3023460, + "thread": 14 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 3202237, + "thread": 3 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 3398359, + "thread": 28 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 3511289, + "thread": 21 + } + }, + { + "amount": "357.895346457", + "slot": { + "period": 3629048, + "thread": 10 + } + }, + { + "amount": "357.895346449", + "slot": { + "period": 3786452, + "thread": 3 + } + } + ], + "AU1Xieg4y3G69P5HPM9QFJ9fz5NVRHimUdMZ8CKJHwxSLzvBbdMa": [ + { + "amount": "58.976565258", + "slot": { + "period": 59036, + "thread": 9 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 287335, + "thread": 2 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 447803, + "thread": 5 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 563422, + "thread": 14 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 748529, + "thread": 4 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 897912, + "thread": 18 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1038210, + "thread": 14 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1267280, + "thread": 30 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1335704, + "thread": 8 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1638658, + "thread": 17 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1801549, + "thread": 19 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 1904306, + "thread": 10 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2085235, + "thread": 20 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2182603, + "thread": 8 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2413465, + "thread": 3 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2541262, + "thread": 22 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2773682, + "thread": 0 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 2903528, + "thread": 10 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 3055481, + "thread": 8 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 3227517, + "thread": 0 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 3410674, + "thread": 21 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 3482979, + "thread": 8 + } + }, + { + "amount": "58.976565258", + "slot": { + "period": 3671663, + "thread": 18 + } + }, + { + "amount": "58.976565253", + "slot": { + "period": 3883375, + "thread": 15 + } + } + ], + "AU1XkXCbG2ZTG4PjY9r1adU67cpimUMJcnMRJKqGzPdKyDgBfSCh": [ + { + "amount": "123.477625536", + "slot": { + "period": 118177, + "thread": 21 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 306649, + "thread": 21 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 346911, + "thread": 6 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 608344, + "thread": 24 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 801074, + "thread": 31 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 920187, + "thread": 22 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1105386, + "thread": 6 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1308357, + "thread": 10 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1401811, + "thread": 6 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1562369, + "thread": 10 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1678871, + "thread": 13 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 1959233, + "thread": 8 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2026321, + "thread": 5 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2278556, + "thread": 2 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2417365, + "thread": 28 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2504078, + "thread": 8 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2789220, + "thread": 18 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2858139, + "thread": 16 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 2970400, + "thread": 9 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 3181215, + "thread": 22 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 3303263, + "thread": 22 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 3530293, + "thread": 6 + } + }, + { + "amount": "123.477625536", + "slot": { + "period": 3679967, + "thread": 28 + } + }, + { + "amount": "123.477625548", + "slot": { + "period": 3841068, + "thread": 8 + } + } + ], + "AU1XmMNqubfEhiiawV9y4SDFynZzRiH3qBTRJ3298qDDM5rKwRLe": [ + { + "amount": "2916.666666667", + "slot": { + "period": 111083, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 190263, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 461517, + "thread": 5 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 503619, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 686500, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 891199, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1064163, + "thread": 27 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1160165, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1407537, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1631825, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1690744, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1947988, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1999902, + "thread": 0 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2186388, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2415271, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2544657, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2729402, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2911294, + "thread": 3 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2985797, + "thread": 12 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3254316, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3427787, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3536527, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3680293, + "thread": 29 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3829454, + "thread": 31 + } + } + ], + "AU1Xmm7FsBwCoX6UHocoz63Y8h98Gz5DytxV813pWmqQLT5Ky75r": [ + { + "amount": "133.901460103", + "slot": { + "period": 120224, + "thread": 2 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 271607, + "thread": 22 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 339459, + "thread": 9 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 519935, + "thread": 16 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 780096, + "thread": 16 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 917442, + "thread": 27 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1019672, + "thread": 18 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1187205, + "thread": 7 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1411640, + "thread": 1 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1632518, + "thread": 9 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1733251, + "thread": 2 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 1897236, + "thread": 15 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2105823, + "thread": 14 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2175488, + "thread": 2 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2344248, + "thread": 3 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2607436, + "thread": 23 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2764542, + "thread": 24 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2908481, + "thread": 17 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 2978287, + "thread": 3 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 3197329, + "thread": 24 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 3355449, + "thread": 6 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 3534446, + "thread": 9 + } + }, + { + "amount": "133.901460103", + "slot": { + "period": 3742214, + "thread": 19 + } + }, + { + "amount": "133.901460112", + "slot": { + "period": 3863401, + "thread": 6 + } + } + ], + "AU1XmtbfmucFc82NVKyUpsnemmDqinN8D8VxS9jZnrgh51EBFX6H": [ + { + "amount": "245.333012764", + "slot": { + "period": 44461, + "thread": 9 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 305845, + "thread": 30 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 479292, + "thread": 0 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 596159, + "thread": 15 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 721224, + "thread": 6 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 886379, + "thread": 25 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1047791, + "thread": 17 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1270029, + "thread": 13 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1427663, + "thread": 25 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1540328, + "thread": 15 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1655904, + "thread": 1 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 1926118, + "thread": 13 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2139428, + "thread": 0 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2190221, + "thread": 16 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2396632, + "thread": 2 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2568641, + "thread": 16 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2675365, + "thread": 28 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 2807742, + "thread": 16 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 3077133, + "thread": 24 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 3251818, + "thread": 13 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 3439161, + "thread": 17 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 3601895, + "thread": 1 + } + }, + { + "amount": "245.333012764", + "slot": { + "period": 3766051, + "thread": 26 + } + }, + { + "amount": "245.333012762", + "slot": { + "period": 3837501, + "thread": 27 + } + } + ], + "AU1XnULni3PNdZSiQvHuAwbzSm5sA6kwRysGcBYAinNL1HcMXegT": [ + { + "amount": "267.917696714", + "slot": { + "period": 89516, + "thread": 8 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 183349, + "thread": 5 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 489114, + "thread": 13 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 649617, + "thread": 18 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 708090, + "thread": 10 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 869455, + "thread": 6 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 984391, + "thread": 0 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 1170994, + "thread": 7 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 1368150, + "thread": 16 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 1547820, + "thread": 14 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 1723027, + "thread": 2 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 1923629, + "thread": 31 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2075217, + "thread": 28 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2236115, + "thread": 23 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2427595, + "thread": 19 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2498073, + "thread": 0 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2666229, + "thread": 0 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2843013, + "thread": 26 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 2972477, + "thread": 0 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 3160464, + "thread": 25 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 3448701, + "thread": 16 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 3496495, + "thread": 15 + } + }, + { + "amount": "267.917696714", + "slot": { + "period": 3738296, + "thread": 14 + } + }, + { + "amount": "267.917696720", + "slot": { + "period": 3873341, + "thread": 29 + } + } + ], + "AU1XnhQQqNdGfo6LzPbbngp5HXF5TgzESL11FK8okbev5tWp3oBS": [ + { + "amount": "586.793616304", + "slot": { + "period": 67914, + "thread": 16 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 302535, + "thread": 17 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 378640, + "thread": 14 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 575064, + "thread": 11 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 813249, + "thread": 30 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 868756, + "thread": 8 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1006157, + "thread": 3 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1252030, + "thread": 22 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1428639, + "thread": 13 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1525442, + "thread": 6 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1652340, + "thread": 15 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 1827958, + "thread": 19 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2086421, + "thread": 0 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2153067, + "thread": 11 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2409716, + "thread": 27 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2531625, + "thread": 8 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2736682, + "thread": 31 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 2917173, + "thread": 29 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 3047713, + "thread": 10 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 3273517, + "thread": 23 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 3441169, + "thread": 27 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 3572902, + "thread": 5 + } + }, + { + "amount": "586.793616304", + "slot": { + "period": 3742795, + "thread": 9 + } + }, + { + "amount": "586.793616302", + "slot": { + "period": 3849707, + "thread": 19 + } + } + ], + "AU1XniDrvAZn8JjbZrsTuKoLp8qN6HLMmnJ2mn7DVYXScq71ZKAP": [ + { + "amount": "310.082050660", + "slot": { + "period": 103973, + "thread": 23 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 290878, + "thread": 15 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 428205, + "thread": 27 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 554199, + "thread": 12 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 672968, + "thread": 5 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 936972, + "thread": 13 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1015046, + "thread": 22 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1199954, + "thread": 11 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1338773, + "thread": 11 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1547426, + "thread": 29 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1728572, + "thread": 30 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 1904164, + "thread": 11 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2140057, + "thread": 25 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2200569, + "thread": 2 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2383618, + "thread": 23 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2548511, + "thread": 30 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2633329, + "thread": 26 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2863862, + "thread": 20 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 2998158, + "thread": 12 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 3253846, + "thread": 11 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 3377173, + "thread": 23 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 3605117, + "thread": 3 + } + }, + { + "amount": "310.082050660", + "slot": { + "period": 3693103, + "thread": 13 + } + }, + { + "amount": "310.082050652", + "slot": { + "period": 3915450, + "thread": 2 + } + } + ], + "AU1XpPmzmS25mGYHe9ByPRyjq3ykDB1cdMCEzxKogV9ZZWPJYnzE": [ + { + "amount": "463.776845140", + "slot": { + "period": 49030, + "thread": 31 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 238449, + "thread": 2 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 418362, + "thread": 29 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 587235, + "thread": 14 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 731087, + "thread": 1 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 875404, + "thread": 6 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1085112, + "thread": 0 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1258471, + "thread": 24 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1423804, + "thread": 23 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1525367, + "thread": 11 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1698090, + "thread": 15 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 1817955, + "thread": 29 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2138131, + "thread": 20 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2210552, + "thread": 30 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2313374, + "thread": 26 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2571540, + "thread": 5 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2785104, + "thread": 14 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2797703, + "thread": 30 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 2966089, + "thread": 14 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 3255516, + "thread": 4 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 3334595, + "thread": 29 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 3565677, + "thread": 20 + } + }, + { + "amount": "463.776845140", + "slot": { + "period": 3644025, + "thread": 8 + } + }, + { + "amount": "463.776845130", + "slot": { + "period": 3786107, + "thread": 8 + } + } + ], + "AU1XqRuqphSMn7nKPZCBzLjHXCeo84sBEVDYUUhFfM7MoUc6wRcv": [ + { + "amount": "163.776277894", + "slot": { + "period": 57534, + "thread": 22 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 245711, + "thread": 28 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 340836, + "thread": 10 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 495633, + "thread": 24 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 750433, + "thread": 8 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 893936, + "thread": 0 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1128446, + "thread": 31 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1272239, + "thread": 1 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1325547, + "thread": 5 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1570020, + "thread": 17 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1699590, + "thread": 26 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 1927514, + "thread": 9 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2089728, + "thread": 22 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2235463, + "thread": 19 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2455409, + "thread": 4 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2550050, + "thread": 10 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2754003, + "thread": 4 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 2922647, + "thread": 26 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 3106070, + "thread": 9 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 3264652, + "thread": 2 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 3319661, + "thread": 10 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 3522867, + "thread": 6 + } + }, + { + "amount": "163.776277894", + "slot": { + "period": 3718852, + "thread": 3 + } + }, + { + "amount": "163.776277883", + "slot": { + "period": 3908339, + "thread": 7 + } + } + ], + "AU1Xr2axWs6MFZHMtDzKmKdZ7q81k6ffT5AzG6pT8u92dx8w6SUP": [ + { + "amount": "196.283848064", + "slot": { + "period": 117537, + "thread": 17 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 305522, + "thread": 11 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 357164, + "thread": 11 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 492339, + "thread": 19 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 744482, + "thread": 28 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 931137, + "thread": 15 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1148598, + "thread": 27 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1219903, + "thread": 3 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1375845, + "thread": 19 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1492829, + "thread": 6 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1757471, + "thread": 18 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 1956588, + "thread": 4 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2008980, + "thread": 17 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2290647, + "thread": 17 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2317597, + "thread": 23 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2539522, + "thread": 4 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2629573, + "thread": 17 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 2934365, + "thread": 15 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 3033886, + "thread": 21 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 3155504, + "thread": 17 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 3446931, + "thread": 0 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 3472302, + "thread": 0 + } + }, + { + "amount": "196.283848064", + "slot": { + "period": 3726707, + "thread": 20 + } + }, + { + "amount": "196.283848053", + "slot": { + "period": 3794869, + "thread": 1 + } + } + ], + "AU1XrYgtEKmd5WDDGoHh7vbxL9nuAr4GatH9Ymbi6P1Ehp1VUafL": [ + { + "amount": "78.581966081", + "slot": { + "period": 54222, + "thread": 27 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 189851, + "thread": 3 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 359294, + "thread": 6 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 643785, + "thread": 30 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 817793, + "thread": 23 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 877863, + "thread": 25 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1068237, + "thread": 26 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1311988, + "thread": 19 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1354853, + "thread": 9 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1533975, + "thread": 2 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1704944, + "thread": 29 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 1809169, + "thread": 9 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2117401, + "thread": 14 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2240017, + "thread": 12 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2449079, + "thread": 23 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2569209, + "thread": 31 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2664562, + "thread": 2 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 2802643, + "thread": 3 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 3118175, + "thread": 26 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 3136295, + "thread": 10 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 3373901, + "thread": 24 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 3487624, + "thread": 14 + } + }, + { + "amount": "78.581966081", + "slot": { + "period": 3673746, + "thread": 24 + } + }, + { + "amount": "78.581966089", + "slot": { + "period": 3898040, + "thread": 0 + } + } + ], + "AU1XsT9GjFwZ93ChHTpohXetfAn4npUnQNqDbeUPcfevAMHLtPhE": [ + { + "amount": "122.131351711", + "slot": { + "period": 59804, + "thread": 29 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 177904, + "thread": 4 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 350704, + "thread": 15 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 595871, + "thread": 21 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 681204, + "thread": 13 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 917911, + "thread": 16 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1006678, + "thread": 17 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1213918, + "thread": 8 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1471459, + "thread": 5 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1621460, + "thread": 15 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1743576, + "thread": 21 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 1909919, + "thread": 17 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2045683, + "thread": 24 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2263257, + "thread": 21 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2404069, + "thread": 19 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2469437, + "thread": 28 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2698822, + "thread": 23 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2844083, + "thread": 7 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 2964708, + "thread": 19 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 3213624, + "thread": 14 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 3323939, + "thread": 22 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 3510156, + "thread": 29 + } + }, + { + "amount": "122.131351711", + "slot": { + "period": 3674443, + "thread": 2 + } + }, + { + "amount": "122.131351709", + "slot": { + "period": 3831962, + "thread": 12 + } + } + ], + "AU1XsWKQWkif7S19jVzKYvBDYkD8RBYbnjKdsJN4f3DYzRmts3gE": [ + { + "amount": "188.513681687", + "slot": { + "period": 81183, + "thread": 18 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 270916, + "thread": 28 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 470234, + "thread": 23 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 568723, + "thread": 24 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 663406, + "thread": 27 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 878644, + "thread": 15 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1052841, + "thread": 19 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1174386, + "thread": 12 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1354797, + "thread": 3 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1505709, + "thread": 21 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1677563, + "thread": 8 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 1862121, + "thread": 17 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2016241, + "thread": 8 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2232133, + "thread": 8 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2369814, + "thread": 15 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2568621, + "thread": 19 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2711942, + "thread": 1 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 2937726, + "thread": 21 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 3003084, + "thread": 8 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 3180820, + "thread": 24 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 3418450, + "thread": 30 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 3553915, + "thread": 19 + } + }, + { + "amount": "188.513681687", + "slot": { + "period": 3712290, + "thread": 24 + } + }, + { + "amount": "188.513681698", + "slot": { + "period": 3897324, + "thread": 27 + } + } + ], + "AU1Xu4829EZPxt3VxmjobFn2BbgX14NJWU8TFGvBLXC5sk6733iB": [ + { + "amount": "67.934832891", + "slot": { + "period": 126622, + "thread": 31 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 274544, + "thread": 4 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 340328, + "thread": 22 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 525644, + "thread": 17 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 760704, + "thread": 8 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 931732, + "thread": 7 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1031224, + "thread": 31 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1251392, + "thread": 21 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1381271, + "thread": 30 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1642842, + "thread": 15 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1807182, + "thread": 17 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 1904956, + "thread": 29 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2126691, + "thread": 19 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2269359, + "thread": 10 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2321166, + "thread": 5 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2594195, + "thread": 3 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2734348, + "thread": 3 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2927138, + "thread": 25 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 2988656, + "thread": 16 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 3232348, + "thread": 1 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 3423868, + "thread": 3 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 3530995, + "thread": 22 + } + }, + { + "amount": "67.934832891", + "slot": { + "period": 3660994, + "thread": 15 + } + }, + { + "amount": "67.934832896", + "slot": { + "period": 3905989, + "thread": 4 + } + } + ], + "AU1Xv63zANiNujcAEC7RoHhzMV1h7fBU6kXMFVP2WhxUHWghWhzs": [ + { + "amount": "97.365319648", + "slot": { + "period": 132265, + "thread": 8 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 283570, + "thread": 16 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 373396, + "thread": 21 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 629645, + "thread": 14 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 732444, + "thread": 5 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 901296, + "thread": 27 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1111737, + "thread": 3 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1303618, + "thread": 4 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1390943, + "thread": 2 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1528771, + "thread": 30 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1791474, + "thread": 23 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 1857438, + "thread": 31 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2120702, + "thread": 4 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2261994, + "thread": 1 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2459995, + "thread": 10 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2566930, + "thread": 8 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2692666, + "thread": 25 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 2884584, + "thread": 12 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 3064529, + "thread": 18 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 3247720, + "thread": 24 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 3333907, + "thread": 20 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 3595024, + "thread": 20 + } + }, + { + "amount": "97.365319648", + "slot": { + "period": 3756232, + "thread": 25 + } + }, + { + "amount": "97.365319646", + "slot": { + "period": 3871529, + "thread": 5 + } + } + ], + "AU1Xv9An8JYcyzW55r53TLUCYQghF9GxP5Jsk5hvEw7qe1Pw2fdD": [ + { + "amount": "156.843950411", + "slot": { + "period": 129000, + "thread": 10 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 296834, + "thread": 4 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 382715, + "thread": 9 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 494499, + "thread": 21 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 770072, + "thread": 10 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 941977, + "thread": 21 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1029067, + "thread": 23 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1246640, + "thread": 31 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1369677, + "thread": 25 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1623202, + "thread": 25 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1763291, + "thread": 19 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 1836956, + "thread": 29 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2050472, + "thread": 5 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2211558, + "thread": 5 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2354159, + "thread": 3 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2486430, + "thread": 18 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2699688, + "thread": 19 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 2845694, + "thread": 16 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 3010137, + "thread": 1 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 3203137, + "thread": 28 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 3438419, + "thread": 23 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 3482031, + "thread": 26 + } + }, + { + "amount": "156.843950411", + "slot": { + "period": 3697251, + "thread": 13 + } + }, + { + "amount": "156.843950422", + "slot": { + "period": 3942515, + "thread": 1 + } + } + ], + "AU1XxfnXKe43KjA6Wb28hv7d4pQ7smLoX5irzHSiRkHdWL9arSm": [ + { + "amount": "153.657123769", + "slot": { + "period": 62376, + "thread": 1 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 195976, + "thread": 4 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 388847, + "thread": 4 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 635833, + "thread": 25 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 755130, + "thread": 13 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 976114, + "thread": 25 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1006908, + "thread": 14 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1291376, + "thread": 0 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1382779, + "thread": 1 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1623373, + "thread": 10 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1651437, + "thread": 11 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 1927698, + "thread": 3 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2009431, + "thread": 9 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2148345, + "thread": 29 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2397641, + "thread": 0 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2549616, + "thread": 21 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2627932, + "thread": 19 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 2943474, + "thread": 11 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 3106738, + "thread": 25 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 3257101, + "thread": 13 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 3352593, + "thread": 10 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 3577792, + "thread": 4 + } + }, + { + "amount": "153.657123769", + "slot": { + "period": 3683664, + "thread": 15 + } + }, + { + "amount": "153.657123763", + "slot": { + "period": 3904493, + "thread": 6 + } + } + ], + "AU1XxgZBMfKYHascyPnaUytggXL37qHknZvKG4XAv5VXCBz2vvMP": [ + { + "amount": "90.897431773", + "slot": { + "period": 139240, + "thread": 15 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 316140, + "thread": 17 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 426789, + "thread": 12 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 590328, + "thread": 12 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 700843, + "thread": 19 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 962337, + "thread": 0 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1013483, + "thread": 9 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1177742, + "thread": 26 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1412449, + "thread": 28 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1645645, + "thread": 23 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1716365, + "thread": 11 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 1863851, + "thread": 0 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2097603, + "thread": 19 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2212897, + "thread": 23 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2380163, + "thread": 12 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2577929, + "thread": 17 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2754536, + "thread": 24 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2943221, + "thread": 11 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 2961572, + "thread": 2 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 3154364, + "thread": 5 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 3379021, + "thread": 27 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 3544015, + "thread": 27 + } + }, + { + "amount": "90.897431773", + "slot": { + "period": 3654263, + "thread": 26 + } + }, + { + "amount": "90.897431768", + "slot": { + "period": 3909628, + "thread": 28 + } + } + ], + "AU1XyLqtSqjKTHELsy3K8RUXZF1rjJmdpRmr5nm2KPxJtQ4z6mUe": [ + { + "amount": "133.588305692", + "slot": { + "period": 72095, + "thread": 14 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 285169, + "thread": 16 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 481317, + "thread": 15 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 614107, + "thread": 27 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 795533, + "thread": 27 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 844220, + "thread": 26 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1133715, + "thread": 16 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1236380, + "thread": 21 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1396987, + "thread": 1 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1528984, + "thread": 20 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1743243, + "thread": 0 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 1938624, + "thread": 27 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2122789, + "thread": 18 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2171257, + "thread": 21 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2393719, + "thread": 1 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2554025, + "thread": 24 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2773573, + "thread": 27 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2943530, + "thread": 4 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 2987726, + "thread": 8 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 3187801, + "thread": 11 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 3413933, + "thread": 13 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 3587347, + "thread": 18 + } + }, + { + "amount": "133.588305692", + "slot": { + "period": 3778262, + "thread": 28 + } + }, + { + "amount": "133.588305688", + "slot": { + "period": 3899270, + "thread": 1 + } + } + ], + "AU1XyZ78YFfhw4SvA25ovjmV4vpeZ2qoXwwxTDRKs7w2aUqt3B5": [ + { + "amount": "282.750788440", + "slot": { + "period": 161186, + "thread": 27 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 178533, + "thread": 17 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 393406, + "thread": 10 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 576715, + "thread": 0 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 761838, + "thread": 13 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 847495, + "thread": 22 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1021948, + "thread": 16 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1309678, + "thread": 19 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1319514, + "thread": 17 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1580064, + "thread": 22 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1698095, + "thread": 9 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 1879744, + "thread": 25 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2092688, + "thread": 20 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2248546, + "thread": 21 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2409101, + "thread": 30 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2517012, + "thread": 2 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2777633, + "thread": 10 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 2894188, + "thread": 1 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 3030036, + "thread": 27 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 3191573, + "thread": 8 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 3444821, + "thread": 24 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 3553048, + "thread": 24 + } + }, + { + "amount": "282.750788440", + "slot": { + "period": 3764864, + "thread": 12 + } + }, + { + "amount": "282.750788450", + "slot": { + "period": 3870715, + "thread": 26 + } + } + ], + "AU1XzLW7FP7z33f7HpCQSd2Ut2Yavph4qhR7BWoYBEJ6QxnMACR1": [ + { + "amount": "199.681243693", + "slot": { + "period": 43791, + "thread": 15 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 216096, + "thread": 19 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 336185, + "thread": 28 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 511585, + "thread": 14 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 760318, + "thread": 6 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 904874, + "thread": 25 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1092278, + "thread": 9 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1262506, + "thread": 24 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1336529, + "thread": 19 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1496119, + "thread": 12 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1754241, + "thread": 16 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 1890342, + "thread": 28 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2041014, + "thread": 26 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2200788, + "thread": 2 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2356353, + "thread": 5 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2505845, + "thread": 8 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2778617, + "thread": 31 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 2832721, + "thread": 4 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 3030921, + "thread": 3 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 3151764, + "thread": 14 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 3407107, + "thread": 15 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 3577560, + "thread": 28 + } + }, + { + "amount": "199.681243693", + "slot": { + "period": 3625589, + "thread": 10 + } + }, + { + "amount": "199.681243687", + "slot": { + "period": 3921971, + "thread": 7 + } + } + ], + "AU1Y13tESf6zoUJ6de3yjmSWeCmGHetUqcwqes5jSbVWnDkZKkkM": [ + { + "amount": "409.068628137", + "slot": { + "period": 140877, + "thread": 14 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 199814, + "thread": 22 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 475911, + "thread": 6 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 495697, + "thread": 2 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 784429, + "thread": 14 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 827759, + "thread": 1 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1104374, + "thread": 14 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1270576, + "thread": 13 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1445529, + "thread": 7 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1487762, + "thread": 27 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1747747, + "thread": 11 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 1931343, + "thread": 8 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2043826, + "thread": 21 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2170600, + "thread": 21 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2452120, + "thread": 7 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2603407, + "thread": 30 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2643396, + "thread": 16 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 2913491, + "thread": 30 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 3092630, + "thread": 5 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 3180512, + "thread": 25 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 3330077, + "thread": 1 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 3593684, + "thread": 8 + } + }, + { + "amount": "409.068628137", + "slot": { + "period": 3633006, + "thread": 29 + } + }, + { + "amount": "409.068628144", + "slot": { + "period": 3814635, + "thread": 6 + } + } + ], + "AU1Y18e1jDQH5trEVQ4x8qVeqSiS1sFhsJk64FnNo7wx9Vgpy14H": [ + { + "amount": "258.285168042", + "slot": { + "period": 57835, + "thread": 18 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 167875, + "thread": 13 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 416989, + "thread": 25 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 564929, + "thread": 3 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 748602, + "thread": 16 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 835311, + "thread": 11 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1041218, + "thread": 1 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1271248, + "thread": 25 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1442618, + "thread": 11 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1484661, + "thread": 3 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1789734, + "thread": 11 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 1812616, + "thread": 20 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2105279, + "thread": 23 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2204625, + "thread": 31 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2342332, + "thread": 1 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2552562, + "thread": 16 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2628831, + "thread": 15 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 2905519, + "thread": 18 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 3013388, + "thread": 10 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 3170816, + "thread": 24 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 3331631, + "thread": 24 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 3545997, + "thread": 2 + } + }, + { + "amount": "258.285168042", + "slot": { + "period": 3627213, + "thread": 16 + } + }, + { + "amount": "258.285168046", + "slot": { + "period": 3922028, + "thread": 27 + } + } + ], + "AU1Y1J6DnGV4mjBvhMSymaD1BzpEZsWmfJgf2maMWUFYkpCZy1u6": [ + { + "amount": "127.864495698", + "slot": { + "period": 137402, + "thread": 2 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 191053, + "thread": 2 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 477337, + "thread": 24 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 619547, + "thread": 3 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 680012, + "thread": 8 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 902944, + "thread": 9 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1135407, + "thread": 17 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1283659, + "thread": 4 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1461610, + "thread": 18 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1578256, + "thread": 22 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1711215, + "thread": 30 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 1975514, + "thread": 21 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2030441, + "thread": 20 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2294821, + "thread": 4 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2330319, + "thread": 22 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2496007, + "thread": 26 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2732905, + "thread": 10 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2890281, + "thread": 13 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 2991185, + "thread": 21 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 3220357, + "thread": 5 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 3404306, + "thread": 29 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 3485589, + "thread": 25 + } + }, + { + "amount": "127.864495698", + "slot": { + "period": 3678250, + "thread": 24 + } + }, + { + "amount": "127.864495700", + "slot": { + "period": 3847662, + "thread": 15 + } + } + ], + "AU1Y1eAxXyToW9hfKst9sbUQY2Z3n8ypsc5ihC2xEqHfAQeUJNyk": [ + { + "amount": "318.140055265", + "slot": { + "period": 140741, + "thread": 4 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 244356, + "thread": 20 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 441312, + "thread": 8 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 640048, + "thread": 11 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 783825, + "thread": 15 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 936028, + "thread": 18 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1024705, + "thread": 11 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1204495, + "thread": 21 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1471918, + "thread": 30 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1632886, + "thread": 22 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1750483, + "thread": 10 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 1830399, + "thread": 27 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2067871, + "thread": 23 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2257992, + "thread": 27 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2300660, + "thread": 8 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2570675, + "thread": 20 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2722813, + "thread": 11 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 2858387, + "thread": 14 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 3102657, + "thread": 19 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 3209884, + "thread": 7 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 3404994, + "thread": 22 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 3572316, + "thread": 0 + } + }, + { + "amount": "318.140055265", + "slot": { + "period": 3669892, + "thread": 5 + } + }, + { + "amount": "318.140055254", + "slot": { + "period": 3806487, + "thread": 2 + } + } + ], + "AU1Y235BJsCmGFFpUhq8kb1Dnpg5uqcubqrt6APGYNcJEq5fqaDX": [ + { + "amount": "144.713898946", + "slot": { + "period": 98744, + "thread": 23 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 202836, + "thread": 0 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 470536, + "thread": 27 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 595432, + "thread": 8 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 686195, + "thread": 22 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 884117, + "thread": 0 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1007046, + "thread": 15 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1257428, + "thread": 27 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1404083, + "thread": 22 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1577642, + "thread": 12 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1660202, + "thread": 6 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 1915099, + "thread": 19 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2089082, + "thread": 15 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2197658, + "thread": 17 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2418719, + "thread": 2 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2497011, + "thread": 9 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2712929, + "thread": 2 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 2928280, + "thread": 27 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 3035568, + "thread": 15 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 3232829, + "thread": 26 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 3412965, + "thread": 21 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 3503234, + "thread": 14 + } + }, + { + "amount": "144.713898946", + "slot": { + "period": 3717127, + "thread": 17 + } + }, + { + "amount": "144.713898949", + "slot": { + "period": 3922242, + "thread": 3 + } + } + ], + "AU1Y2ACGT9Uiw2zyZDtEys4m2DGLTE9vfv4xCX3W9xWm2oaf7usg": [ + { + "amount": "241.367227462", + "slot": { + "period": 152541, + "thread": 10 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 318749, + "thread": 17 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 377388, + "thread": 3 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 633629, + "thread": 24 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 656591, + "thread": 17 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 916638, + "thread": 29 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1136078, + "thread": 22 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1248707, + "thread": 25 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1402227, + "thread": 16 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1494875, + "thread": 4 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1676719, + "thread": 19 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 1956861, + "thread": 2 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2092250, + "thread": 0 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2197464, + "thread": 5 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2403957, + "thread": 30 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2526483, + "thread": 30 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2754449, + "thread": 31 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 2858485, + "thread": 14 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 3009705, + "thread": 20 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 3182613, + "thread": 9 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 3371722, + "thread": 17 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 3573193, + "thread": 25 + } + }, + { + "amount": "241.367227462", + "slot": { + "period": 3775563, + "thread": 19 + } + }, + { + "amount": "241.367227456", + "slot": { + "period": 3893509, + "thread": 6 + } + } + ], + "AU1Y3NFN53wiBQLXKYkVwPYBUVyLJ9yv7VfBpbBPVTaxBQUEYFZ1": [ + { + "amount": "110.577237947", + "slot": { + "period": 163860, + "thread": 21 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 281530, + "thread": 21 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 336618, + "thread": 27 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 614500, + "thread": 26 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 731729, + "thread": 7 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 881467, + "thread": 16 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1091585, + "thread": 23 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1193790, + "thread": 8 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1342141, + "thread": 19 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1595231, + "thread": 8 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1697410, + "thread": 28 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 1852084, + "thread": 23 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2003421, + "thread": 29 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2258358, + "thread": 28 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2438430, + "thread": 22 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2590980, + "thread": 19 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2640573, + "thread": 24 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2930836, + "thread": 5 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 2997436, + "thread": 6 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 3135988, + "thread": 17 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 3422607, + "thread": 2 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 3471278, + "thread": 28 + } + }, + { + "amount": "110.577237947", + "slot": { + "period": 3727509, + "thread": 12 + } + }, + { + "amount": "110.577237957", + "slot": { + "period": 3860293, + "thread": 7 + } + } + ], + "AU1Y3iugm4v24kKGvqQ2s7Pon6ufsHLyXA9cGZEYFeRCcJ4Vc52j": [ + { + "amount": "471.766148899", + "slot": { + "period": 97933, + "thread": 30 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 209620, + "thread": 1 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 374263, + "thread": 12 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 562024, + "thread": 0 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 789540, + "thread": 30 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 858899, + "thread": 25 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1078702, + "thread": 21 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1249361, + "thread": 6 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1456281, + "thread": 18 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1523357, + "thread": 26 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1758033, + "thread": 9 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1815972, + "thread": 19 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 1990881, + "thread": 15 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 2256544, + "thread": 18 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 2414871, + "thread": 3 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 2544924, + "thread": 22 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 2693112, + "thread": 7 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 2898457, + "thread": 2 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 3066628, + "thread": 7 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 3232146, + "thread": 28 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 3444684, + "thread": 11 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 3607877, + "thread": 3 + } + }, + { + "amount": "471.766148899", + "slot": { + "period": 3635856, + "thread": 25 + } + }, + { + "amount": "471.766148904", + "slot": { + "period": 3945523, + "thread": 19 + } + } + ], + "AU1Y4LFASjbYQwvf5D6a2oyasF3Rc6uj6HmqWhkCwu7xYW4pL5oq": [ + { + "amount": "180.876246240", + "slot": { + "period": 101079, + "thread": 13 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 228613, + "thread": 9 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 474099, + "thread": 21 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 624989, + "thread": 12 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 789477, + "thread": 28 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 863313, + "thread": 18 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1129682, + "thread": 2 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1208187, + "thread": 23 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1402533, + "thread": 25 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1526997, + "thread": 2 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1766943, + "thread": 7 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 1901588, + "thread": 29 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2102347, + "thread": 5 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2233071, + "thread": 15 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2420011, + "thread": 31 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2498613, + "thread": 31 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2743964, + "thread": 0 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 2869488, + "thread": 1 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 3013262, + "thread": 6 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 3129767, + "thread": 10 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 3395814, + "thread": 24 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 3571628, + "thread": 10 + } + }, + { + "amount": "180.876246240", + "slot": { + "period": 3654297, + "thread": 7 + } + }, + { + "amount": "180.876246231", + "slot": { + "period": 3843620, + "thread": 25 + } + } + ], + "AU1Y4Qoaxims6vFsdN63XhdkCXrsLyXuemLB4ze4XtoEqg21i7iT": [ + { + "amount": "55.889491805", + "slot": { + "period": 160249, + "thread": 17 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 250374, + "thread": 24 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 401658, + "thread": 8 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 515581, + "thread": 18 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 800922, + "thread": 23 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 870476, + "thread": 13 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 988118, + "thread": 12 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 1267527, + "thread": 3 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 1455009, + "thread": 13 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 1603428, + "thread": 9 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 1703009, + "thread": 10 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 1928396, + "thread": 0 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2137363, + "thread": 24 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2180892, + "thread": 22 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2366381, + "thread": 27 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2555157, + "thread": 10 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2789001, + "thread": 23 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2833712, + "thread": 16 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 2975435, + "thread": 10 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 3260848, + "thread": 5 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 3329313, + "thread": 26 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 3455181, + "thread": 20 + } + }, + { + "amount": "55.889491805", + "slot": { + "period": 3686690, + "thread": 27 + } + }, + { + "amount": "55.889491809", + "slot": { + "period": 3840826, + "thread": 31 + } + } + ], + "AU1Y4iwQPXG8b2Xu2uwDw3aqJWQjwJhTuxbQ9vYAfUpR7JLeQeBA": [ + { + "amount": "355.860106473", + "slot": { + "period": 98988, + "thread": 4 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 199847, + "thread": 5 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 479091, + "thread": 31 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 520624, + "thread": 6 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 806729, + "thread": 5 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 920964, + "thread": 20 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1037035, + "thread": 30 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1250907, + "thread": 19 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1353236, + "thread": 24 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1646122, + "thread": 20 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1805050, + "thread": 8 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 1891634, + "thread": 9 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2113590, + "thread": 31 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2217665, + "thread": 19 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2425533, + "thread": 14 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2510786, + "thread": 0 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2705528, + "thread": 2 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 2853468, + "thread": 22 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 3090233, + "thread": 12 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 3245469, + "thread": 29 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 3344812, + "thread": 18 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 3609079, + "thread": 9 + } + }, + { + "amount": "355.860106473", + "slot": { + "period": 3659941, + "thread": 26 + } + }, + { + "amount": "355.860106472", + "slot": { + "period": 3854389, + "thread": 20 + } + } + ], + "AU1Y4kCYEUYu2WmXKLAocywKEGHmRwTEEdp6e7QC3cms5Recxg9G": [ + { + "amount": "154.455450900", + "slot": { + "period": 130748, + "thread": 21 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 304242, + "thread": 0 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 447501, + "thread": 24 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 529900, + "thread": 26 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 673693, + "thread": 24 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 838176, + "thread": 19 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1113075, + "thread": 12 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1250134, + "thread": 26 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1352738, + "thread": 4 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1551158, + "thread": 10 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1764521, + "thread": 27 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 1931702, + "thread": 20 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2083237, + "thread": 27 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2245707, + "thread": 6 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2429678, + "thread": 28 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2519414, + "thread": 13 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2642446, + "thread": 21 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 2899263, + "thread": 13 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 3060877, + "thread": 8 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 3241327, + "thread": 14 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 3442549, + "thread": 28 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 3505162, + "thread": 29 + } + }, + { + "amount": "154.455450900", + "slot": { + "period": 3691372, + "thread": 20 + } + }, + { + "amount": "154.455450907", + "slot": { + "period": 3925766, + "thread": 20 + } + } + ], + "AU1Y4pUrbFAAmEMNgegw27Q2zNqiJBsH1wJNRjwHWuxXCYCCFWji": [ + { + "amount": "347.590028725", + "slot": { + "period": 11321, + "thread": 3 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 269889, + "thread": 5 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 447389, + "thread": 23 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 575586, + "thread": 29 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 755142, + "thread": 23 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 923201, + "thread": 8 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1001873, + "thread": 30 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1180029, + "thread": 10 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1383320, + "thread": 16 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1642082, + "thread": 19 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1714313, + "thread": 2 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 1818610, + "thread": 21 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2036391, + "thread": 6 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2154984, + "thread": 11 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2427621, + "thread": 30 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2522992, + "thread": 15 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2657517, + "thread": 25 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 2812683, + "thread": 25 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 3048440, + "thread": 17 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 3274857, + "thread": 13 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 3357935, + "thread": 7 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 3554846, + "thread": 17 + } + }, + { + "amount": "347.590028725", + "slot": { + "period": 3753734, + "thread": 12 + } + }, + { + "amount": "347.590028728", + "slot": { + "period": 3912280, + "thread": 15 + } + } + ], + "AU1Y62X1ydrshPb3K4huNrbTy72TwamwcZiGR7kr8NT3LYZ3uUxb": [ + { + "amount": "323.795233802", + "slot": { + "period": 119174, + "thread": 5 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 270948, + "thread": 4 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 368161, + "thread": 2 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 535316, + "thread": 23 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 788212, + "thread": 26 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 870292, + "thread": 18 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1127012, + "thread": 29 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1206537, + "thread": 14 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1329810, + "thread": 20 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1531870, + "thread": 20 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1783256, + "thread": 17 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 1901875, + "thread": 6 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2057577, + "thread": 29 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2178038, + "thread": 3 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2349470, + "thread": 0 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2490238, + "thread": 7 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2713074, + "thread": 16 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2900460, + "thread": 5 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 2982920, + "thread": 22 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 3248321, + "thread": 19 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 3331671, + "thread": 9 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 3598030, + "thread": 31 + } + }, + { + "amount": "323.795233802", + "slot": { + "period": 3701390, + "thread": 26 + } + }, + { + "amount": "323.795233793", + "slot": { + "period": 3857041, + "thread": 11 + } + } + ], + "AU1Y8JX5naf4bfCejiHauXuTjBfdSKwAywmy5uUC7cmveykzZLzq": [ + { + "amount": "205.841544770", + "slot": { + "period": 28743, + "thread": 24 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 255169, + "thread": 26 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 415016, + "thread": 8 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 554040, + "thread": 31 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 743676, + "thread": 24 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 950101, + "thread": 3 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1096445, + "thread": 10 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1187578, + "thread": 24 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1474633, + "thread": 7 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1561301, + "thread": 28 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1680183, + "thread": 6 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 1928088, + "thread": 0 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2005906, + "thread": 11 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2233680, + "thread": 30 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2304275, + "thread": 5 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2611038, + "thread": 6 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2664205, + "thread": 17 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 2910591, + "thread": 31 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 3119247, + "thread": 18 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 3254094, + "thread": 16 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 3350508, + "thread": 30 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 3565576, + "thread": 13 + } + }, + { + "amount": "205.841544770", + "slot": { + "period": 3673844, + "thread": 4 + } + }, + { + "amount": "205.841544758", + "slot": { + "period": 3819974, + "thread": 10 + } + } + ], + "AU1Y94oVrvJJXZxffQbSxDXXttt4PF5sA2Nv1donVYmgMRp5L9mH": [ + { + "amount": "67.984201186", + "slot": { + "period": 66854, + "thread": 28 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 264726, + "thread": 27 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 381348, + "thread": 28 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 556983, + "thread": 14 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 795472, + "thread": 13 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 878567, + "thread": 27 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 986585, + "thread": 25 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 1171482, + "thread": 25 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 1335406, + "thread": 17 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 1503543, + "thread": 18 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 1675115, + "thread": 30 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 1939796, + "thread": 7 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2096007, + "thread": 16 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2279982, + "thread": 23 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2450414, + "thread": 17 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2607037, + "thread": 0 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2734080, + "thread": 18 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2792827, + "thread": 0 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 2962709, + "thread": 15 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 3132475, + "thread": 23 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 3398842, + "thread": 16 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 3598586, + "thread": 24 + } + }, + { + "amount": "67.984201186", + "slot": { + "period": 3704190, + "thread": 20 + } + }, + { + "amount": "67.984201181", + "slot": { + "period": 3851871, + "thread": 2 + } + } + ], + "AU1Y9F2mUPXA5n5fZkeqc6t5DwLQqHzpuN2mGewsVxA3oZG2UXpi": [ + { + "amount": "178.389602998", + "slot": { + "period": 40726, + "thread": 31 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 187753, + "thread": 28 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 458149, + "thread": 7 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 550740, + "thread": 19 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 795601, + "thread": 31 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 922117, + "thread": 23 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1018427, + "thread": 21 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1183587, + "thread": 16 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1453429, + "thread": 11 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1526691, + "thread": 28 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1780489, + "thread": 31 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 1926717, + "thread": 18 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2133725, + "thread": 5 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2215396, + "thread": 22 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2402963, + "thread": 26 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2479736, + "thread": 31 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2657947, + "thread": 10 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 2902502, + "thread": 16 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 3081174, + "thread": 19 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 3149078, + "thread": 3 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 3445536, + "thread": 0 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 3464453, + "thread": 22 + } + }, + { + "amount": "178.389602998", + "slot": { + "period": 3711030, + "thread": 17 + } + }, + { + "amount": "178.389602987", + "slot": { + "period": 3883853, + "thread": 24 + } + } + ], + "AU1YADu69jb6eWH7jiBjq7VQYSKNAeUurhJDrVffXJTSC9QzhME2": [ + { + "amount": "140.633224848", + "slot": { + "period": 34922, + "thread": 23 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 178810, + "thread": 4 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 489581, + "thread": 30 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 544131, + "thread": 23 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 728023, + "thread": 25 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 919137, + "thread": 30 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1123771, + "thread": 18 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1247019, + "thread": 19 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1459328, + "thread": 26 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1606314, + "thread": 30 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1686665, + "thread": 15 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1863804, + "thread": 29 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 1983636, + "thread": 10 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 2293594, + "thread": 9 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 2393118, + "thread": 16 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 2553717, + "thread": 3 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 2741025, + "thread": 19 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 2887805, + "thread": 26 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 3071742, + "thread": 11 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 3223835, + "thread": 22 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 3398080, + "thread": 21 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 3488975, + "thread": 4 + } + }, + { + "amount": "140.633224848", + "slot": { + "period": 3661538, + "thread": 3 + } + }, + { + "amount": "140.633224849", + "slot": { + "period": 3789596, + "thread": 10 + } + } + ], + "AU1YAXM4nHtCHQe688hPCtzQT7v45B5k4HP6Hk76DJc8kbVXWXGa": [ + { + "amount": "228.775210289", + "slot": { + "period": 147442, + "thread": 2 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 319891, + "thread": 21 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 381213, + "thread": 25 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 610880, + "thread": 26 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 765657, + "thread": 19 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 964268, + "thread": 9 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1079219, + "thread": 28 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1279875, + "thread": 17 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1446437, + "thread": 6 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1540366, + "thread": 20 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1670752, + "thread": 29 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 1958615, + "thread": 30 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2095063, + "thread": 20 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2282162, + "thread": 14 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2404088, + "thread": 28 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2523265, + "thread": 28 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2640079, + "thread": 27 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 2874098, + "thread": 21 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 3110660, + "thread": 4 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 3259080, + "thread": 23 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 3296512, + "thread": 22 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 3590840, + "thread": 0 + } + }, + { + "amount": "228.775210289", + "slot": { + "period": 3657090, + "thread": 14 + } + }, + { + "amount": "228.775210279", + "slot": { + "period": 3784551, + "thread": 14 + } + } + ], + "AU1YBBPLDsUKH8czxppa6xcn33GXRJajpr518bM1QVtjPtWtLrvu": [ + { + "amount": "464.710554478", + "slot": { + "period": 158607, + "thread": 18 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 293871, + "thread": 30 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 334776, + "thread": 10 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 502138, + "thread": 16 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 713442, + "thread": 4 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 867708, + "thread": 28 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1061947, + "thread": 15 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1156729, + "thread": 8 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1382671, + "thread": 21 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1533341, + "thread": 27 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1766136, + "thread": 23 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 1930434, + "thread": 4 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2110361, + "thread": 4 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2178346, + "thread": 8 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2312897, + "thread": 6 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2471244, + "thread": 18 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2692268, + "thread": 8 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2928043, + "thread": 14 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 2963070, + "thread": 4 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 3180273, + "thread": 4 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 3381105, + "thread": 22 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 3453195, + "thread": 29 + } + }, + { + "amount": "464.710554478", + "slot": { + "period": 3672128, + "thread": 30 + } + }, + { + "amount": "464.710554468", + "slot": { + "period": 3807228, + "thread": 30 + } + } + ], + "AU1YBSbFxyK6FeLer5ZzK53yFgeAkqffFWkuUMMVjvHeov3T2AZe": [ + { + "amount": "84.723705801", + "slot": { + "period": 119413, + "thread": 20 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 297294, + "thread": 29 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 461623, + "thread": 22 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 644937, + "thread": 29 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 739068, + "thread": 4 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 912488, + "thread": 28 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1051680, + "thread": 25 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1171503, + "thread": 25 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1407247, + "thread": 5 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1602205, + "thread": 21 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1698288, + "thread": 23 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 1932387, + "thread": 0 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2034387, + "thread": 11 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2227408, + "thread": 4 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2441731, + "thread": 29 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2558163, + "thread": 14 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2725675, + "thread": 9 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 2944543, + "thread": 6 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 3025487, + "thread": 9 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 3243431, + "thread": 20 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 3435397, + "thread": 11 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 3552881, + "thread": 11 + } + }, + { + "amount": "84.723705801", + "slot": { + "period": 3670255, + "thread": 0 + } + }, + { + "amount": "84.723705796", + "slot": { + "period": 3845249, + "thread": 3 + } + } + ], + "AU1YBjy54mNYDKLBMaCHK4hJfyJavJrkrhCs8phNPwsuvmZtnuLq": [ + { + "amount": "482.046547638", + "slot": { + "period": 152118, + "thread": 21 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 283815, + "thread": 5 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 416795, + "thread": 27 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 599695, + "thread": 19 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 720652, + "thread": 31 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 916727, + "thread": 12 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1054728, + "thread": 6 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1300276, + "thread": 4 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1472107, + "thread": 29 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1608701, + "thread": 30 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1656188, + "thread": 4 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 1842782, + "thread": 6 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2045179, + "thread": 23 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2147946, + "thread": 1 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2344574, + "thread": 15 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2507938, + "thread": 15 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2765682, + "thread": 22 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 2797796, + "thread": 28 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 3035882, + "thread": 6 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 3254155, + "thread": 19 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 3356770, + "thread": 7 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 3509951, + "thread": 7 + } + }, + { + "amount": "482.046547638", + "slot": { + "period": 3634431, + "thread": 23 + } + }, + { + "amount": "482.046547645", + "slot": { + "period": 3808084, + "thread": 5 + } + } + ], + "AU1YCGgVmAQqevvmHzJwnxMFmEQG51NeVhLLgyGGQpobnwuq46ty": [ + { + "amount": "122.757258375", + "slot": { + "period": 128457, + "thread": 17 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 286625, + "thread": 23 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 369357, + "thread": 26 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 631132, + "thread": 18 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 731861, + "thread": 6 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 904691, + "thread": 3 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1011314, + "thread": 11 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1174986, + "thread": 30 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1410607, + "thread": 31 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1627361, + "thread": 24 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1741549, + "thread": 15 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 1924833, + "thread": 15 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2071359, + "thread": 0 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2182669, + "thread": 24 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2374471, + "thread": 26 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2478714, + "thread": 21 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2738331, + "thread": 18 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 2804841, + "thread": 4 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 3050154, + "thread": 27 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 3197828, + "thread": 29 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 3330017, + "thread": 16 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 3616541, + "thread": 12 + } + }, + { + "amount": "122.757258375", + "slot": { + "period": 3761385, + "thread": 24 + } + }, + { + "amount": "122.757258379", + "slot": { + "period": 3799008, + "thread": 29 + } + } + ], + "AU1YChACk6WQeYeQwhq8PfD8ytnRdoJWPcjraYBJzn4YmB7qBU9U": [ + { + "amount": "140.961995256", + "slot": { + "period": 81140, + "thread": 31 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 272476, + "thread": 5 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 443911, + "thread": 7 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 540286, + "thread": 13 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 734244, + "thread": 20 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 976945, + "thread": 17 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1039859, + "thread": 4 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1311159, + "thread": 25 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1337818, + "thread": 24 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1630126, + "thread": 29 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1722365, + "thread": 21 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 1876791, + "thread": 19 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2132127, + "thread": 13 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2205607, + "thread": 10 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2443036, + "thread": 9 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2473434, + "thread": 25 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2707127, + "thread": 0 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2833194, + "thread": 2 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 2955472, + "thread": 5 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 3282107, + "thread": 23 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 3358826, + "thread": 16 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 3571922, + "thread": 3 + } + }, + { + "amount": "140.961995256", + "slot": { + "period": 3637824, + "thread": 30 + } + }, + { + "amount": "140.961995255", + "slot": { + "period": 3837516, + "thread": 26 + } + } + ], + "AU1YCsoE9wzXdkryv22rcJ6DRdQdnwJGuz8rfGcKGDFS268wPnYL": [ + { + "amount": "94.019124368", + "slot": { + "period": 66073, + "thread": 24 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 217313, + "thread": 14 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 407759, + "thread": 30 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 594432, + "thread": 1 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 714115, + "thread": 2 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 937120, + "thread": 6 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1133898, + "thread": 21 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1188827, + "thread": 9 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1400945, + "thread": 5 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1506368, + "thread": 31 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1724293, + "thread": 3 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 1867208, + "thread": 7 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2051850, + "thread": 6 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2203981, + "thread": 18 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2418907, + "thread": 15 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2602181, + "thread": 23 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2727830, + "thread": 4 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 2844915, + "thread": 12 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 3028883, + "thread": 31 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 3259907, + "thread": 22 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 3430410, + "thread": 14 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 3509098, + "thread": 6 + } + }, + { + "amount": "94.019124368", + "slot": { + "period": 3768540, + "thread": 4 + } + }, + { + "amount": "94.019124357", + "slot": { + "period": 3918295, + "thread": 8 + } + } + ], + "AU1YD8xARgCTEiWHfttMR4CBhJF1oHtTg61jPTMpAkWMJWPmc6p4": [ + { + "amount": "160.384368711", + "slot": { + "period": 68508, + "thread": 1 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 271658, + "thread": 5 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 484979, + "thread": 23 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 609118, + "thread": 28 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 743810, + "thread": 22 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 909458, + "thread": 31 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1053297, + "thread": 10 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1239329, + "thread": 15 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1365117, + "thread": 20 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1600011, + "thread": 9 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1671544, + "thread": 7 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 1881790, + "thread": 5 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2075663, + "thread": 26 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2278524, + "thread": 31 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2308693, + "thread": 19 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2607120, + "thread": 21 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2675818, + "thread": 22 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 2899197, + "thread": 25 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 3020338, + "thread": 9 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 3132116, + "thread": 29 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 3418350, + "thread": 9 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 3483027, + "thread": 17 + } + }, + { + "amount": "160.384368711", + "slot": { + "period": 3638052, + "thread": 20 + } + }, + { + "amount": "160.384368705", + "slot": { + "period": 3821040, + "thread": 13 + } + } + ], + "AU1YDAoEWE6pX8FtSJKon9DNtt5vPte2s75p8A4d7QtdhVRaKxH5": [ + { + "amount": "150.130642186", + "slot": { + "period": 67678, + "thread": 5 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 167617, + "thread": 20 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 394560, + "thread": 24 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 558159, + "thread": 22 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 736397, + "thread": 31 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 887123, + "thread": 10 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 988075, + "thread": 14 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 1309771, + "thread": 25 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 1413714, + "thread": 20 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 1556070, + "thread": 16 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 1734956, + "thread": 24 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 1967898, + "thread": 19 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2102308, + "thread": 29 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2276045, + "thread": 17 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2400321, + "thread": 9 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2585547, + "thread": 8 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2713882, + "thread": 28 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2829519, + "thread": 8 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 2968151, + "thread": 29 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 3244594, + "thread": 28 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 3337753, + "thread": 7 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 3583741, + "thread": 29 + } + }, + { + "amount": "150.130642186", + "slot": { + "period": 3619222, + "thread": 13 + } + }, + { + "amount": "150.130642187", + "slot": { + "period": 3863152, + "thread": 11 + } + } + ], + "AU1YDQ3yMAL2iuRCwG1E3GezjNCXuskzLrphT2xWwLLSiYVUiQze": [ + { + "amount": "74.730105602", + "slot": { + "period": 96837, + "thread": 18 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 199683, + "thread": 25 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 488522, + "thread": 5 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 538220, + "thread": 27 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 669489, + "thread": 29 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 829676, + "thread": 3 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1134899, + "thread": 21 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1170885, + "thread": 1 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1338828, + "thread": 13 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1568997, + "thread": 0 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1663201, + "thread": 16 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 1833751, + "thread": 1 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2020786, + "thread": 13 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2182456, + "thread": 22 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2461890, + "thread": 5 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2508715, + "thread": 13 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2662873, + "thread": 1 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 2868412, + "thread": 22 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 3031789, + "thread": 13 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 3190474, + "thread": 12 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 3322893, + "thread": 19 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 3532020, + "thread": 5 + } + }, + { + "amount": "74.730105602", + "slot": { + "period": 3731882, + "thread": 10 + } + }, + { + "amount": "74.730105592", + "slot": { + "period": 3785561, + "thread": 19 + } + } + ], + "AU1YE6g68QLJAWBuik6WLkJnjzk7ZRCuoqSsqPXfe3gVL7qcqZsV": [ + { + "amount": "145.088472545", + "slot": { + "period": 72051, + "thread": 6 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 237536, + "thread": 5 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 453024, + "thread": 29 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 541063, + "thread": 31 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 772591, + "thread": 5 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 845953, + "thread": 6 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 984902, + "thread": 25 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 1256587, + "thread": 29 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 1380962, + "thread": 19 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 1600135, + "thread": 18 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 1732757, + "thread": 22 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 1812241, + "thread": 19 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2085424, + "thread": 16 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2163853, + "thread": 3 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2315742, + "thread": 17 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2542649, + "thread": 12 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2791538, + "thread": 1 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 2939894, + "thread": 8 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 3099168, + "thread": 25 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 3144054, + "thread": 14 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 3349935, + "thread": 2 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 3561697, + "thread": 7 + } + }, + { + "amount": "145.088472545", + "slot": { + "period": 3619748, + "thread": 2 + } + }, + { + "amount": "145.088472540", + "slot": { + "period": 3877588, + "thread": 9 + } + } + ], + "AU1YF6hz6uMdWNz1utnxnp5LoEddTR9SwWZibbkfjhMRwWDc65Hd": [ + { + "amount": "372.356528360", + "slot": { + "period": 38514, + "thread": 19 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 281908, + "thread": 13 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 353597, + "thread": 13 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 494604, + "thread": 13 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 795959, + "thread": 30 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 919556, + "thread": 13 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1008397, + "thread": 29 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1273755, + "thread": 31 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1440600, + "thread": 5 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1532113, + "thread": 14 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1717614, + "thread": 21 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 1865024, + "thread": 29 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2108960, + "thread": 6 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2175813, + "thread": 18 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2453163, + "thread": 29 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2535842, + "thread": 6 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2654813, + "thread": 28 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 2930305, + "thread": 8 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 3112518, + "thread": 28 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 3174285, + "thread": 20 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 3348293, + "thread": 16 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 3459413, + "thread": 26 + } + }, + { + "amount": "372.356528360", + "slot": { + "period": 3669000, + "thread": 29 + } + }, + { + "amount": "372.356528364", + "slot": { + "period": 3817391, + "thread": 27 + } + } + ], + "AU1YGVCs8ZsHGpN3JHXHfFCMGVwqC2YkMz8zAXT1gCkb8RFGaee3": [ + { + "amount": "130.132858352", + "slot": { + "period": 139298, + "thread": 18 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 320939, + "thread": 28 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 339190, + "thread": 11 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 606520, + "thread": 17 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 724018, + "thread": 14 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 890257, + "thread": 13 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1074165, + "thread": 7 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1195685, + "thread": 1 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1478825, + "thread": 16 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1635940, + "thread": 23 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1734081, + "thread": 26 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 1859763, + "thread": 17 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2116136, + "thread": 9 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2252284, + "thread": 30 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2314630, + "thread": 5 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2496388, + "thread": 19 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2754329, + "thread": 5 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 2908679, + "thread": 16 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 3074703, + "thread": 19 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 3250598, + "thread": 7 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 3444431, + "thread": 11 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 3605712, + "thread": 0 + } + }, + { + "amount": "130.132858352", + "slot": { + "period": 3704121, + "thread": 24 + } + }, + { + "amount": "130.132858346", + "slot": { + "period": 3783710, + "thread": 17 + } + } + ], + "AU1YGp3N6gH58gAVf7HesVdspu5AcLycSzBN1fMndXGyYKW2vXvb": [ + { + "amount": "202.965147369", + "slot": { + "period": 15529, + "thread": 10 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 235362, + "thread": 27 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 435249, + "thread": 7 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 510070, + "thread": 19 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 800289, + "thread": 24 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 832121, + "thread": 3 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1117115, + "thread": 8 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1210515, + "thread": 25 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1412576, + "thread": 29 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1486964, + "thread": 3 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1727093, + "thread": 11 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 1912141, + "thread": 7 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2105641, + "thread": 14 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2156860, + "thread": 31 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2355940, + "thread": 20 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2523025, + "thread": 27 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2701910, + "thread": 27 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2911864, + "thread": 7 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 2955342, + "thread": 29 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 3278448, + "thread": 23 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 3419962, + "thread": 23 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 3556665, + "thread": 11 + } + }, + { + "amount": "202.965147369", + "slot": { + "period": 3691257, + "thread": 2 + } + }, + { + "amount": "202.965147372", + "slot": { + "period": 3787205, + "thread": 19 + } + } + ], + "AU1YGwPaUbKJ3D3UqRAHWzwXHkqbxrFEsZ6i66BwfpWvbEH3U67E": [ + { + "amount": "191.215935777", + "slot": { + "period": 90015, + "thread": 11 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 246029, + "thread": 30 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 345686, + "thread": 6 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 495805, + "thread": 15 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 779718, + "thread": 6 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 882523, + "thread": 27 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1115058, + "thread": 28 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1256343, + "thread": 25 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1377328, + "thread": 20 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1628622, + "thread": 20 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1662650, + "thread": 26 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 1902194, + "thread": 25 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2015020, + "thread": 2 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2182105, + "thread": 1 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2369361, + "thread": 5 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2473801, + "thread": 25 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2786401, + "thread": 0 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2871545, + "thread": 5 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 2981752, + "thread": 15 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 3204285, + "thread": 17 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 3350266, + "thread": 20 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 3593636, + "thread": 7 + } + }, + { + "amount": "191.215935777", + "slot": { + "period": 3769595, + "thread": 24 + } + }, + { + "amount": "191.215935778", + "slot": { + "period": 3937427, + "thread": 11 + } + } + ], + "AU1YH1EUCSppsXZ48kqbXmG4Pt1KbXSismUtsa1Nr8uZb1F5rwnt": [ + { + "amount": "157.974654163", + "slot": { + "period": 62954, + "thread": 2 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 240419, + "thread": 3 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 448050, + "thread": 27 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 607279, + "thread": 11 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 812661, + "thread": 19 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 873114, + "thread": 10 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1072419, + "thread": 9 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1228797, + "thread": 15 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1375232, + "thread": 1 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1534342, + "thread": 17 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1775554, + "thread": 13 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 1933582, + "thread": 20 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2023228, + "thread": 30 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2244740, + "thread": 24 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2296740, + "thread": 24 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2568227, + "thread": 20 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2705216, + "thread": 16 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 2830873, + "thread": 16 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 3002205, + "thread": 15 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 3197048, + "thread": 5 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 3331072, + "thread": 10 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 3550765, + "thread": 14 + } + }, + { + "amount": "157.974654163", + "slot": { + "period": 3777742, + "thread": 1 + } + }, + { + "amount": "157.974654159", + "slot": { + "period": 3897911, + "thread": 25 + } + } + ], + "AU1YHBVyC3pNVh8sNeL2nWkWtFP8bgsT8swbSTTaf43NyRsPDoDX": [ + { + "amount": "175.942854881", + "slot": { + "period": 16595, + "thread": 27 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 231175, + "thread": 28 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 421023, + "thread": 25 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 495675, + "thread": 12 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 769505, + "thread": 18 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 911872, + "thread": 1 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1005544, + "thread": 19 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1169119, + "thread": 5 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1441630, + "thread": 9 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1537148, + "thread": 9 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1654148, + "thread": 11 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1940014, + "thread": 23 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 1996064, + "thread": 8 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 2151956, + "thread": 13 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 2356727, + "thread": 9 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 2588378, + "thread": 8 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 2757683, + "thread": 11 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 2943887, + "thread": 19 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 3052000, + "thread": 19 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 3207535, + "thread": 14 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 3436890, + "thread": 15 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 3508256, + "thread": 17 + } + }, + { + "amount": "175.942854881", + "slot": { + "period": 3622579, + "thread": 16 + } + }, + { + "amount": "175.942854889", + "slot": { + "period": 3856109, + "thread": 9 + } + } + ], + "AU1YJCkpoiMQAHtfWqZ4iDC3ckBdTqPgDfq5KH1nrq3ennFTLKqw": [ + { + "amount": "373.332150153", + "slot": { + "period": 54960, + "thread": 19 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 259780, + "thread": 23 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 400190, + "thread": 29 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 587821, + "thread": 12 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 787522, + "thread": 9 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 961420, + "thread": 14 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1117966, + "thread": 8 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1274804, + "thread": 16 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1367817, + "thread": 19 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1500951, + "thread": 29 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1666719, + "thread": 9 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1968992, + "thread": 27 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 1990545, + "thread": 27 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2172496, + "thread": 8 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2378513, + "thread": 10 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2569862, + "thread": 15 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2753520, + "thread": 9 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2953541, + "thread": 15 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 2969602, + "thread": 0 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 3276420, + "thread": 29 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 3289417, + "thread": 24 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 3462422, + "thread": 24 + } + }, + { + "amount": "373.332150153", + "slot": { + "period": 3645985, + "thread": 8 + } + }, + { + "amount": "373.332150164", + "slot": { + "period": 3862730, + "thread": 3 + } + } + ], + "AU1YJGyqadfZHCfExLv6vZdgYjBxu4c8VqkjVcqE9a97Bsh3N1hc": [ + { + "amount": "162.789531040", + "slot": { + "period": 85100, + "thread": 11 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 168799, + "thread": 25 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 431495, + "thread": 20 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 613275, + "thread": 5 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 751955, + "thread": 26 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 909703, + "thread": 14 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1059991, + "thread": 22 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1192447, + "thread": 14 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1362906, + "thread": 26 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1570413, + "thread": 20 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1738011, + "thread": 2 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 1883975, + "thread": 1 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2068980, + "thread": 3 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2184010, + "thread": 7 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2418487, + "thread": 27 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2485844, + "thread": 31 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2657806, + "thread": 23 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 2858967, + "thread": 26 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 3098738, + "thread": 28 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 3199817, + "thread": 26 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 3337662, + "thread": 29 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 3555260, + "thread": 19 + } + }, + { + "amount": "162.789531040", + "slot": { + "period": 3732562, + "thread": 11 + } + }, + { + "amount": "162.789531035", + "slot": { + "period": 3784777, + "thread": 4 + } + } + ], + "AU1YJsxA5TDm7D3duYKkEeoaeA8sZ4Cu9eFRrMMRVLEzSXrPUmSh": [ + { + "amount": "340.938419825", + "slot": { + "period": 159183, + "thread": 11 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 304646, + "thread": 17 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 452424, + "thread": 0 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 561171, + "thread": 14 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 806562, + "thread": 17 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 885137, + "thread": 9 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1023916, + "thread": 13 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1291292, + "thread": 25 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1401009, + "thread": 27 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1621678, + "thread": 0 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1775582, + "thread": 30 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 1897280, + "thread": 9 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2061770, + "thread": 24 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2175239, + "thread": 30 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2455008, + "thread": 2 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2476288, + "thread": 0 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2625913, + "thread": 5 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 2799667, + "thread": 28 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 3048992, + "thread": 11 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 3128780, + "thread": 21 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 3410801, + "thread": 2 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 3590373, + "thread": 8 + } + }, + { + "amount": "340.938419825", + "slot": { + "period": 3648070, + "thread": 6 + } + }, + { + "amount": "340.938419833", + "slot": { + "period": 3842001, + "thread": 12 + } + } + ], + "AU1YLRzdXJBHVEbYSq2xGNwd91J95WADnsz5y9xpkF6uRgJbYLB7": [ + { + "amount": "455.510350084", + "slot": { + "period": 74074, + "thread": 21 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 178850, + "thread": 22 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 326101, + "thread": 19 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 571921, + "thread": 15 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 657331, + "thread": 1 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 858610, + "thread": 31 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1010926, + "thread": 16 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1263794, + "thread": 13 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1459441, + "thread": 31 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1501827, + "thread": 1 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1683334, + "thread": 3 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1826741, + "thread": 13 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 1992215, + "thread": 21 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 2260948, + "thread": 30 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 2336256, + "thread": 1 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 2598103, + "thread": 8 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 2738613, + "thread": 12 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 2880735, + "thread": 30 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 3023399, + "thread": 31 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 3218423, + "thread": 22 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 3326246, + "thread": 15 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 3479264, + "thread": 6 + } + }, + { + "amount": "455.510350084", + "slot": { + "period": 3701556, + "thread": 20 + } + }, + { + "amount": "455.510350089", + "slot": { + "period": 3810571, + "thread": 7 + } + } + ], + "AU1YLm1dWSyCYTqcydTG5nmHYFoyTh9TtHUdG2cvL8JWZ6NbSZ7j": [ + { + "amount": "104.168070065", + "slot": { + "period": 115289, + "thread": 28 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 303536, + "thread": 16 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 365908, + "thread": 14 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 643658, + "thread": 8 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 732629, + "thread": 22 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 953115, + "thread": 30 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1023119, + "thread": 22 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1216800, + "thread": 12 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1319305, + "thread": 24 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1640951, + "thread": 1 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1766504, + "thread": 30 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 1868598, + "thread": 9 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2045020, + "thread": 19 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2245272, + "thread": 12 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2416687, + "thread": 6 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2480814, + "thread": 23 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2635468, + "thread": 0 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2943241, + "thread": 5 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 2973100, + "thread": 4 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 3229378, + "thread": 20 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 3358724, + "thread": 11 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 3504232, + "thread": 0 + } + }, + { + "amount": "104.168070065", + "slot": { + "period": 3700105, + "thread": 21 + } + }, + { + "amount": "104.168070076", + "slot": { + "period": 3863235, + "thread": 20 + } + } + ], + "AU1YMGP7fHwp4ozNQe3aJRPNmN8yF9j3mAxMYZfxA6McmrHpqkQD": [ + { + "amount": "467.785109709", + "slot": { + "period": 43132, + "thread": 20 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 286559, + "thread": 20 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 436096, + "thread": 18 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 527901, + "thread": 24 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 657990, + "thread": 14 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 911876, + "thread": 23 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1125359, + "thread": 4 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1194112, + "thread": 26 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1375807, + "thread": 12 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1598697, + "thread": 30 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1664984, + "thread": 4 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 1809825, + "thread": 23 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2002023, + "thread": 28 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2278830, + "thread": 29 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2387933, + "thread": 9 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2530601, + "thread": 31 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2776662, + "thread": 5 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 2819750, + "thread": 21 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 3088201, + "thread": 3 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 3123961, + "thread": 4 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 3419751, + "thread": 26 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 3534534, + "thread": 8 + } + }, + { + "amount": "467.785109709", + "slot": { + "period": 3687611, + "thread": 6 + } + }, + { + "amount": "467.785109714", + "slot": { + "period": 3787376, + "thread": 25 + } + } + ], + "AU1YMKA1N9LyeBcvgFfqhbz2hbFT9mvAbH5edDdeu4v3CSo8uQtA": [ + { + "amount": "201.450564826", + "slot": { + "period": 41322, + "thread": 25 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 303556, + "thread": 3 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 466472, + "thread": 1 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 559404, + "thread": 4 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 699277, + "thread": 26 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 917709, + "thread": 7 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1025494, + "thread": 5 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1216551, + "thread": 2 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1430806, + "thread": 12 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1517377, + "thread": 15 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1699323, + "thread": 29 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1932274, + "thread": 15 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 1982594, + "thread": 15 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 2153865, + "thread": 16 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 2403984, + "thread": 6 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 2483680, + "thread": 18 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 2739535, + "thread": 11 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 2908810, + "thread": 19 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 3064486, + "thread": 24 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 3186640, + "thread": 3 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 3314130, + "thread": 3 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 3572885, + "thread": 12 + } + }, + { + "amount": "201.450564826", + "slot": { + "period": 3777497, + "thread": 6 + } + }, + { + "amount": "201.450564824", + "slot": { + "period": 3891957, + "thread": 11 + } + } + ], + "AU1YMQ2REahyhxdg7D4ddwUpmtewubmbot5NN94LZjuhvr48LC3W": [ + { + "amount": "274.772598169", + "slot": { + "period": 143743, + "thread": 21 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 256886, + "thread": 7 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 364575, + "thread": 13 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 650924, + "thread": 22 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 673890, + "thread": 17 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 958349, + "thread": 20 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1134797, + "thread": 6 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1286562, + "thread": 10 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1436881, + "thread": 23 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1598492, + "thread": 23 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1805702, + "thread": 16 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 1854439, + "thread": 11 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2052758, + "thread": 7 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2276979, + "thread": 17 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2420287, + "thread": 0 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2621582, + "thread": 14 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2730163, + "thread": 11 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2916164, + "thread": 11 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 2969025, + "thread": 30 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 3252091, + "thread": 14 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 3349153, + "thread": 22 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 3552237, + "thread": 27 + } + }, + { + "amount": "274.772598169", + "slot": { + "period": 3639667, + "thread": 20 + } + }, + { + "amount": "274.772598160", + "slot": { + "period": 3809895, + "thread": 4 + } + } + ], + "AU1YNNb7tRLgK8sjWFxa3uzDkxnUBMC9X9QQaVhsG3uP72Po7KJZ": [ + { + "amount": "90.351708906", + "slot": { + "period": 164362, + "thread": 3 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 194284, + "thread": 10 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 350759, + "thread": 28 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 517921, + "thread": 10 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 805127, + "thread": 21 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 925999, + "thread": 19 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 988915, + "thread": 2 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 1307391, + "thread": 20 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 1319342, + "thread": 6 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 1618495, + "thread": 16 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 1678812, + "thread": 13 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 1933337, + "thread": 0 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2028743, + "thread": 28 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2265016, + "thread": 18 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2447055, + "thread": 8 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2509251, + "thread": 6 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2715050, + "thread": 11 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 2797553, + "thread": 8 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 3102927, + "thread": 4 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 3284816, + "thread": 14 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 3419796, + "thread": 9 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 3550629, + "thread": 15 + } + }, + { + "amount": "90.351708906", + "slot": { + "period": 3772532, + "thread": 6 + } + }, + { + "amount": "90.351708894", + "slot": { + "period": 3812620, + "thread": 9 + } + } + ], + "AU1YPKg9ZGdS7xoNBWH1JbUhvXXPgVLGeZD5nxnfe53QEYZXeGuS": [ + { + "amount": "528.443711841", + "slot": { + "period": 37706, + "thread": 1 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 291209, + "thread": 1 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 435024, + "thread": 15 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 561328, + "thread": 27 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 801423, + "thread": 7 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 947826, + "thread": 3 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1084512, + "thread": 20 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1297278, + "thread": 3 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1400416, + "thread": 13 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1502594, + "thread": 20 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1748309, + "thread": 23 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 1886007, + "thread": 21 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2117749, + "thread": 18 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2254614, + "thread": 27 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2344550, + "thread": 3 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2601795, + "thread": 30 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2648492, + "thread": 18 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 2909928, + "thread": 21 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 3006946, + "thread": 19 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 3165052, + "thread": 25 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 3312717, + "thread": 3 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 3537696, + "thread": 18 + } + }, + { + "amount": "528.443711841", + "slot": { + "period": 3638000, + "thread": 26 + } + }, + { + "amount": "528.443711852", + "slot": { + "period": 3782936, + "thread": 7 + } + } + ], + "AU1YQ5itamwP2QEHgvLUBhQtsSavUoG1NitQ9SwTyQUJre6SDFPC": [ + { + "amount": "65.274488060", + "slot": { + "period": 68574, + "thread": 2 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 249129, + "thread": 18 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 393898, + "thread": 29 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 618674, + "thread": 27 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 778902, + "thread": 23 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 881769, + "thread": 28 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1139493, + "thread": 18 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1153208, + "thread": 28 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1393691, + "thread": 19 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1596606, + "thread": 4 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1701946, + "thread": 16 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 1938769, + "thread": 30 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2116209, + "thread": 10 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2261136, + "thread": 15 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2391085, + "thread": 1 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2582640, + "thread": 19 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2655735, + "thread": 22 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 2886316, + "thread": 25 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 3006005, + "thread": 4 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 3151092, + "thread": 31 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 3445857, + "thread": 22 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 3558480, + "thread": 11 + } + }, + { + "amount": "65.274488060", + "slot": { + "period": 3758480, + "thread": 3 + } + }, + { + "amount": "65.274488063", + "slot": { + "period": 3933203, + "thread": 30 + } + } + ], + "AU1YQwuG5SBckbvzPGeFp2Cntwd3TuyZEEasi43tHZxKr2Ns4BX1": [ + { + "amount": "110.466792689", + "slot": { + "period": 29028, + "thread": 7 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 259095, + "thread": 27 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 384169, + "thread": 1 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 524355, + "thread": 7 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 812498, + "thread": 7 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 924828, + "thread": 28 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1119306, + "thread": 7 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1152630, + "thread": 22 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1426760, + "thread": 10 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1571256, + "thread": 25 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1735409, + "thread": 14 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 1852229, + "thread": 17 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2133514, + "thread": 29 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2293019, + "thread": 20 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2407541, + "thread": 1 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2489903, + "thread": 22 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2633664, + "thread": 31 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 2918205, + "thread": 1 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 3032029, + "thread": 1 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 3193176, + "thread": 20 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 3339693, + "thread": 8 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 3460364, + "thread": 25 + } + }, + { + "amount": "110.466792689", + "slot": { + "period": 3754707, + "thread": 24 + } + }, + { + "amount": "110.466792683", + "slot": { + "period": 3897854, + "thread": 12 + } + } + ], + "AU1YSuWb13j2u6SDrxxBGfh41gYyp11qSsNhG72AYAXbVh9WnDy8": [ + { + "amount": "171.726039982", + "slot": { + "period": 91881, + "thread": 6 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 230258, + "thread": 6 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 417725, + "thread": 9 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 588059, + "thread": 22 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 807872, + "thread": 6 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 862827, + "thread": 27 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 984775, + "thread": 18 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 1213996, + "thread": 5 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 1438415, + "thread": 7 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 1516905, + "thread": 20 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 1757096, + "thread": 3 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 1910087, + "thread": 0 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2110526, + "thread": 31 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2186714, + "thread": 31 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2352176, + "thread": 10 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2571306, + "thread": 13 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2626019, + "thread": 4 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2798580, + "thread": 0 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 2957291, + "thread": 7 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 3183194, + "thread": 12 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 3356896, + "thread": 30 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 3560221, + "thread": 30 + } + }, + { + "amount": "171.726039982", + "slot": { + "period": 3649265, + "thread": 22 + } + }, + { + "amount": "171.726039984", + "slot": { + "period": 3821544, + "thread": 13 + } + } + ], + "AU1YTNYvb6VxkBWgoa1euZPJux8xoqsNktugDojGWFnpB8xC7RF7": [ + { + "amount": "565.260583072", + "slot": { + "period": 37522, + "thread": 23 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 216977, + "thread": 17 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 442754, + "thread": 15 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 576547, + "thread": 27 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 710842, + "thread": 10 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 962937, + "thread": 7 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1135335, + "thread": 23 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1275740, + "thread": 6 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1472195, + "thread": 5 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1526273, + "thread": 5 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1785307, + "thread": 8 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1857513, + "thread": 13 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 1986051, + "thread": 21 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 2244642, + "thread": 22 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 2364739, + "thread": 3 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 2485909, + "thread": 14 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 2714674, + "thread": 22 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 2800957, + "thread": 26 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 3066761, + "thread": 24 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 3203811, + "thread": 19 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 3380608, + "thread": 28 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 3512640, + "thread": 6 + } + }, + { + "amount": "565.260583072", + "slot": { + "period": 3681973, + "thread": 15 + } + }, + { + "amount": "565.260583076", + "slot": { + "period": 3881978, + "thread": 26 + } + } + ], + "AU1YUQAzxgwgXP2Ev6Lp9CjysPGR4FgKsh3m5QPbD1UHju2xnGQQ": [ + { + "amount": "385.226791675", + "slot": { + "period": 62574, + "thread": 11 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 319313, + "thread": 24 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 429892, + "thread": 28 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 627647, + "thread": 23 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 748227, + "thread": 19 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 875407, + "thread": 13 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1017479, + "thread": 10 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1198252, + "thread": 9 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1471807, + "thread": 3 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1528635, + "thread": 24 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1717360, + "thread": 19 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 1862740, + "thread": 22 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2041963, + "thread": 31 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2174325, + "thread": 24 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2374482, + "thread": 21 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2492196, + "thread": 13 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2701154, + "thread": 15 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2882749, + "thread": 15 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 2996333, + "thread": 15 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 3128117, + "thread": 12 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 3304764, + "thread": 21 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 3529095, + "thread": 0 + } + }, + { + "amount": "385.226791675", + "slot": { + "period": 3618622, + "thread": 15 + } + }, + { + "amount": "385.226791676", + "slot": { + "period": 3921070, + "thread": 2 + } + } + ], + "AU1YUmgqxKSnvDpeY8c841fR9tEQ4ZBfF8y24crgyRqS6SeoCYWh": [ + { + "amount": "134.117600299", + "slot": { + "period": 74153, + "thread": 2 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 310012, + "thread": 3 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 468673, + "thread": 6 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 521888, + "thread": 5 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 692899, + "thread": 0 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 876199, + "thread": 26 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1100419, + "thread": 0 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1312161, + "thread": 4 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1442855, + "thread": 19 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1595539, + "thread": 20 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1798643, + "thread": 3 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 1870233, + "thread": 0 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2107426, + "thread": 27 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2202762, + "thread": 23 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2440752, + "thread": 6 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2603087, + "thread": 8 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2773426, + "thread": 4 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 2925065, + "thread": 7 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 3030405, + "thread": 27 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 3249961, + "thread": 12 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 3412718, + "thread": 12 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 3472250, + "thread": 28 + } + }, + { + "amount": "134.117600299", + "slot": { + "period": 3692412, + "thread": 29 + } + }, + { + "amount": "134.117600297", + "slot": { + "period": 3915845, + "thread": 7 + } + } + ], + "AU1YUoCYUX7cACxgZHAhLC5m8UQUmSgSgaPzBuyv5re7k27X5erx": [ + { + "amount": "79.327724891", + "slot": { + "period": 63334, + "thread": 13 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 192832, + "thread": 5 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 466105, + "thread": 13 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 519213, + "thread": 30 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 678098, + "thread": 28 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 898783, + "thread": 26 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1036568, + "thread": 2 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1214896, + "thread": 7 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1473611, + "thread": 20 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1487131, + "thread": 17 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1733395, + "thread": 26 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 1849538, + "thread": 26 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2029285, + "thread": 19 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2280140, + "thread": 19 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2361002, + "thread": 23 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2624132, + "thread": 13 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2750108, + "thread": 26 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2938146, + "thread": 9 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 2958218, + "thread": 14 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 3184098, + "thread": 18 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 3316713, + "thread": 14 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 3517508, + "thread": 2 + } + }, + { + "amount": "79.327724891", + "slot": { + "period": 3663073, + "thread": 1 + } + }, + { + "amount": "79.327724889", + "slot": { + "period": 3820400, + "thread": 6 + } + } + ], + "AU1YVsEDYbJQ4cqQRzST7ygW3Bs8XqnzNcTjujo7w6EnikDKdZ73": [ + { + "amount": "82.595989676", + "slot": { + "period": 39497, + "thread": 2 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 269694, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 480426, + "thread": 19 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 618081, + "thread": 31 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 740710, + "thread": 8 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 967721, + "thread": 12 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1131429, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1177469, + "thread": 14 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1336168, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1621673, + "thread": 29 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1673437, + "thread": 15 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 1921644, + "thread": 26 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2100570, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2272962, + "thread": 20 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2309626, + "thread": 22 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2485677, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2775680, + "thread": 27 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2797316, + "thread": 26 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 2998007, + "thread": 14 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 3224950, + "thread": 24 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 3394599, + "thread": 0 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 3542494, + "thread": 1 + } + }, + { + "amount": "82.595989676", + "slot": { + "period": 3722258, + "thread": 21 + } + }, + { + "amount": "82.595989670", + "slot": { + "period": 3865625, + "thread": 23 + } + } + ], + "AU1YXjA9xA93MKaWWSZxtBWG5ZhbYgsi3dUXFQ8zPGbfvVBqvED1": [ + { + "amount": "165.765175970", + "slot": { + "period": 74673, + "thread": 4 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 185046, + "thread": 9 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 428350, + "thread": 10 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 581120, + "thread": 1 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 812817, + "thread": 27 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 849933, + "thread": 10 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1050055, + "thread": 27 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1288737, + "thread": 10 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1317619, + "thread": 30 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1504496, + "thread": 18 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1739542, + "thread": 20 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1863003, + "thread": 18 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 1980454, + "thread": 22 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 2160506, + "thread": 28 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 2357454, + "thread": 25 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 2601351, + "thread": 30 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 2725952, + "thread": 12 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 2929329, + "thread": 10 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 3010618, + "thread": 6 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 3180702, + "thread": 28 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 3384404, + "thread": 2 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 3585578, + "thread": 8 + } + }, + { + "amount": "165.765175970", + "slot": { + "period": 3638044, + "thread": 12 + } + }, + { + "amount": "165.765175968", + "slot": { + "period": 3878841, + "thread": 20 + } + } + ], + "AU1YXx3eWo1MfjphLfELq3o8US4CBuzMHSCoePmar46GxhgjibbS": [ + { + "amount": "149.516203757", + "slot": { + "period": 125425, + "thread": 1 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 299325, + "thread": 1 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 328730, + "thread": 10 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 499796, + "thread": 22 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 754054, + "thread": 12 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 899007, + "thread": 1 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1127724, + "thread": 31 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1158985, + "thread": 13 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1371851, + "thread": 17 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1573739, + "thread": 31 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1765607, + "thread": 10 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 1909380, + "thread": 3 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2104577, + "thread": 0 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2189227, + "thread": 20 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2321631, + "thread": 2 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2493966, + "thread": 0 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2632140, + "thread": 28 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 2891507, + "thread": 24 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 3006152, + "thread": 21 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 3282453, + "thread": 17 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 3443540, + "thread": 18 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 3502874, + "thread": 18 + } + }, + { + "amount": "149.516203757", + "slot": { + "period": 3662518, + "thread": 6 + } + }, + { + "amount": "149.516203754", + "slot": { + "period": 3873196, + "thread": 19 + } + } + ], + "AU1YYeAiHr3PUbhHSsNmNyzpA6rSWQtXT97oq2mJ9s43rn1naG5R": [ + { + "amount": "66.492650645", + "slot": { + "period": 165625, + "thread": 11 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 263079, + "thread": 28 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 487599, + "thread": 1 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 617714, + "thread": 1 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 792382, + "thread": 15 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 965322, + "thread": 27 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1107566, + "thread": 0 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1180683, + "thread": 19 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1432956, + "thread": 29 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1628668, + "thread": 30 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1739638, + "thread": 14 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1967085, + "thread": 17 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 1991073, + "thread": 12 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 2209455, + "thread": 8 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 2376420, + "thread": 7 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 2511251, + "thread": 19 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 2665286, + "thread": 19 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 2822611, + "thread": 1 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 3104716, + "thread": 19 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 3212662, + "thread": 31 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 3350634, + "thread": 13 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 3463709, + "thread": 0 + } + }, + { + "amount": "66.492650645", + "slot": { + "period": 3768456, + "thread": 11 + } + }, + { + "amount": "66.492650638", + "slot": { + "period": 3941240, + "thread": 18 + } + } + ], + "AU1YZF3Htwpszd3zem5PLSJoqFTFQSGLiAHRdQJzTo5RRMfhB1ad": [ + { + "amount": "268.071772698", + "slot": { + "period": 84017, + "thread": 31 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 252549, + "thread": 18 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 479508, + "thread": 12 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 565612, + "thread": 22 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 813301, + "thread": 4 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 882600, + "thread": 9 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1128008, + "thread": 7 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1182648, + "thread": 17 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1428749, + "thread": 16 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1642543, + "thread": 25 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1733507, + "thread": 10 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 1860138, + "thread": 14 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2109618, + "thread": 9 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2248206, + "thread": 8 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2457927, + "thread": 26 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2504183, + "thread": 15 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2720151, + "thread": 6 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 2846730, + "thread": 12 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 3027734, + "thread": 0 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 3141935, + "thread": 29 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 3299004, + "thread": 28 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 3597964, + "thread": 7 + } + }, + { + "amount": "268.071772698", + "slot": { + "period": 3709417, + "thread": 15 + } + }, + { + "amount": "268.071772709", + "slot": { + "period": 3839362, + "thread": 7 + } + } + ], + "AU1YZcqKYctb4e54UA8obwUfkTrdrUBr2LNxxYBZVZMrDpApjGxR": [ + { + "amount": "54.370113984", + "slot": { + "period": 162147, + "thread": 27 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 184253, + "thread": 10 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 428163, + "thread": 20 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 568720, + "thread": 31 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 669350, + "thread": 0 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 849978, + "thread": 12 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 984195, + "thread": 29 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 1151379, + "thread": 8 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 1386059, + "thread": 7 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 1638185, + "thread": 11 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 1670156, + "thread": 12 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 1897564, + "thread": 9 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2117789, + "thread": 7 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2236512, + "thread": 10 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2331875, + "thread": 30 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2593349, + "thread": 16 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2646625, + "thread": 19 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2824288, + "thread": 14 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 2954354, + "thread": 21 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 3140457, + "thread": 25 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 3328817, + "thread": 21 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 3580320, + "thread": 26 + } + }, + { + "amount": "54.370113984", + "slot": { + "period": 3718984, + "thread": 13 + } + }, + { + "amount": "54.370113982", + "slot": { + "period": 3943254, + "thread": 15 + } + } + ], + "AU1YZs9q4rpiei4gEVPY2cmg1PLfdJw2fNpzMHrNUZM74xeXTMci": [ + { + "amount": "102.067363347", + "slot": { + "period": 99448, + "thread": 25 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 202491, + "thread": 24 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 473948, + "thread": 0 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 638950, + "thread": 12 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 744430, + "thread": 31 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 958735, + "thread": 4 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 991846, + "thread": 24 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 1304273, + "thread": 6 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 1448789, + "thread": 8 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 1516316, + "thread": 28 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 1677283, + "thread": 29 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 1924396, + "thread": 3 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2130379, + "thread": 7 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2280882, + "thread": 31 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2425882, + "thread": 10 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2527880, + "thread": 31 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2709645, + "thread": 14 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2946982, + "thread": 1 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 2981676, + "thread": 28 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 3154190, + "thread": 30 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 3400381, + "thread": 16 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 3584152, + "thread": 8 + } + }, + { + "amount": "102.067363347", + "slot": { + "period": 3721173, + "thread": 19 + } + }, + { + "amount": "102.067363354", + "slot": { + "period": 3873796, + "thread": 21 + } + } + ], + "AU1YaPMPqdKtHv6MwdBoPztUYdNn6fhE7ScyY6CQ99qGVafcAb94": [ + { + "amount": "498.186194781", + "slot": { + "period": 106954, + "thread": 24 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 277984, + "thread": 10 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 412924, + "thread": 30 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 532239, + "thread": 3 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 743939, + "thread": 3 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 904801, + "thread": 15 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1107734, + "thread": 9 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1233654, + "thread": 11 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1468961, + "thread": 29 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1588756, + "thread": 5 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1737439, + "thread": 23 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 1870047, + "thread": 18 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2103794, + "thread": 11 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2160194, + "thread": 30 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2329069, + "thread": 27 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2582205, + "thread": 19 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2763215, + "thread": 0 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 2808025, + "thread": 29 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 3099225, + "thread": 8 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 3257524, + "thread": 27 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 3442710, + "thread": 30 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 3509255, + "thread": 11 + } + }, + { + "amount": "498.186194781", + "slot": { + "period": 3634742, + "thread": 10 + } + }, + { + "amount": "498.186194789", + "slot": { + "period": 3821854, + "thread": 7 + } + } + ], + "AU1YcdJv93gq7of5irrWzxaq3SmUU5M97SX8LzdBVRpoCez7SrVu": [ + { + "amount": "70.268698359", + "slot": { + "period": 116649, + "thread": 26 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 233203, + "thread": 3 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 425708, + "thread": 24 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 633975, + "thread": 13 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 671350, + "thread": 21 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 917874, + "thread": 8 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1065704, + "thread": 23 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1311312, + "thread": 14 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1452785, + "thread": 31 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1561537, + "thread": 14 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1768633, + "thread": 18 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 1819572, + "thread": 6 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2141896, + "thread": 6 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2176074, + "thread": 4 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2325362, + "thread": 24 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2597511, + "thread": 11 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2725494, + "thread": 1 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 2934940, + "thread": 14 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 3102765, + "thread": 20 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 3264406, + "thread": 0 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 3370938, + "thread": 0 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 3523184, + "thread": 28 + } + }, + { + "amount": "70.268698359", + "slot": { + "period": 3718408, + "thread": 25 + } + }, + { + "amount": "70.268698363", + "slot": { + "period": 3916165, + "thread": 9 + } + } + ], + "AU1YcmcjHcFvXU7QZUu6pAdVYztDytBiN33CAJ43cdhrPPGGRH6Y": [ + { + "amount": "150.564697828", + "slot": { + "period": 164267, + "thread": 26 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 298119, + "thread": 16 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 380765, + "thread": 14 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 618535, + "thread": 24 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 785851, + "thread": 16 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 901325, + "thread": 5 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1018393, + "thread": 31 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1190938, + "thread": 11 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1432437, + "thread": 31 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1575664, + "thread": 12 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1782254, + "thread": 12 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 1882027, + "thread": 3 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2086689, + "thread": 29 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2179404, + "thread": 12 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2416250, + "thread": 23 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2464900, + "thread": 24 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2776737, + "thread": 8 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 2947134, + "thread": 11 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 3002644, + "thread": 3 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 3134393, + "thread": 23 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 3324275, + "thread": 24 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 3563063, + "thread": 5 + } + }, + { + "amount": "150.564697828", + "slot": { + "period": 3641379, + "thread": 1 + } + }, + { + "amount": "150.564697833", + "slot": { + "period": 3863920, + "thread": 6 + } + } + ], + "AU1Yd47xxfWJwPV2LGacTHWoXKNDSxTynAfQWoxhwJY16Rtuyz9R": [ + { + "amount": "446.772234339", + "slot": { + "period": 35071, + "thread": 10 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 320049, + "thread": 7 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 385307, + "thread": 12 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 529532, + "thread": 1 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 777365, + "thread": 10 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 921646, + "thread": 3 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 996708, + "thread": 19 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 1157160, + "thread": 22 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 1320074, + "thread": 10 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 1536969, + "thread": 1 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 1677481, + "thread": 2 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 1963817, + "thread": 20 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2069447, + "thread": 13 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2210640, + "thread": 9 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2411524, + "thread": 25 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2567029, + "thread": 6 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2648178, + "thread": 26 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2930997, + "thread": 31 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 2972405, + "thread": 5 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 3250534, + "thread": 18 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 3342105, + "thread": 24 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 3599798, + "thread": 28 + } + }, + { + "amount": "446.772234339", + "slot": { + "period": 3777350, + "thread": 3 + } + }, + { + "amount": "446.772234328", + "slot": { + "period": 3801523, + "thread": 13 + } + } + ], + "AU1YeLD6jwnB7eNu64HpRDixVyMqQ6QvRpGSGTb3eNorhUScRxss": [ + { + "amount": "195.968156538", + "slot": { + "period": 44528, + "thread": 9 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 312929, + "thread": 26 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 392245, + "thread": 4 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 601917, + "thread": 21 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 743806, + "thread": 2 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 976502, + "thread": 13 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1131205, + "thread": 7 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1293262, + "thread": 13 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1430063, + "thread": 3 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1568738, + "thread": 14 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1710017, + "thread": 14 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 1873333, + "thread": 7 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2036483, + "thread": 4 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2159085, + "thread": 11 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2458065, + "thread": 16 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2475723, + "thread": 31 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2678562, + "thread": 31 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 2812660, + "thread": 24 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 3034236, + "thread": 14 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 3125481, + "thread": 28 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 3366492, + "thread": 21 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 3526133, + "thread": 27 + } + }, + { + "amount": "195.968156538", + "slot": { + "period": 3632824, + "thread": 28 + } + }, + { + "amount": "195.968156542", + "slot": { + "period": 3815805, + "thread": 3 + } + } + ], + "AU1YfU31CWqnHc958YxzwWySeZvQJUPPwgMZAVc38DZx1A4hfMPv": [ + { + "amount": "81.058677432", + "slot": { + "period": 158345, + "thread": 12 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 239798, + "thread": 27 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 405707, + "thread": 12 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 507938, + "thread": 8 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 786887, + "thread": 20 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 934327, + "thread": 31 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1117382, + "thread": 24 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1160288, + "thread": 13 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1393957, + "thread": 16 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1543060, + "thread": 14 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1722306, + "thread": 16 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 1975147, + "thread": 14 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2080882, + "thread": 9 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2212916, + "thread": 26 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2434157, + "thread": 3 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2473519, + "thread": 8 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2688846, + "thread": 1 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 2931426, + "thread": 10 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 3113506, + "thread": 25 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 3187739, + "thread": 30 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 3335934, + "thread": 30 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 3594762, + "thread": 6 + } + }, + { + "amount": "81.058677432", + "slot": { + "period": 3623732, + "thread": 6 + } + }, + { + "amount": "81.058677423", + "slot": { + "period": 3843965, + "thread": 1 + } + } + ], + "AU1YibKxMiPeCfqavCKCJoVHcmEx8t2DhKkMoWZ6C6fyHbPCvfqy": [ + { + "amount": "640.239847256", + "slot": { + "period": 139885, + "thread": 8 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 291224, + "thread": 29 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 428292, + "thread": 29 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 520049, + "thread": 25 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 754033, + "thread": 0 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 890048, + "thread": 18 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1059884, + "thread": 22 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1168243, + "thread": 1 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1386230, + "thread": 13 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1554893, + "thread": 31 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1789573, + "thread": 14 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 1968656, + "thread": 22 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2115568, + "thread": 0 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2171004, + "thread": 29 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2373389, + "thread": 22 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2533021, + "thread": 19 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2647768, + "thread": 9 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 2805200, + "thread": 26 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 3114783, + "thread": 5 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 3272361, + "thread": 31 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 3313397, + "thread": 6 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 3591850, + "thread": 19 + } + }, + { + "amount": "640.239847256", + "slot": { + "period": 3709799, + "thread": 13 + } + }, + { + "amount": "640.239847264", + "slot": { + "period": 3791786, + "thread": 12 + } + } + ], + "AU1YidmigTKGvGLmDHJ2xc7gpHVHL8gXCSfniFUZToCjhVcyNMQ9": [ + { + "amount": "97.006351760", + "slot": { + "period": 88297, + "thread": 6 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 219286, + "thread": 9 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 405586, + "thread": 6 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 564577, + "thread": 20 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 712778, + "thread": 21 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 823396, + "thread": 8 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1074148, + "thread": 24 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1300301, + "thread": 2 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1428541, + "thread": 29 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1489430, + "thread": 11 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1713002, + "thread": 5 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 1844193, + "thread": 19 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2058491, + "thread": 1 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2294095, + "thread": 9 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2356844, + "thread": 0 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2490975, + "thread": 19 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2642227, + "thread": 26 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 2843805, + "thread": 8 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 3105002, + "thread": 20 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 3169732, + "thread": 18 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 3431886, + "thread": 28 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 3596984, + "thread": 8 + } + }, + { + "amount": "97.006351760", + "slot": { + "period": 3633092, + "thread": 25 + } + }, + { + "amount": "97.006351752", + "slot": { + "period": 3933243, + "thread": 26 + } + } + ], + "AU1Yjs3kTnPBXcg7Wx95tjj5uNvFycdA1QA95KHaYGj413tN5Tf7": [ + { + "amount": "149.961895654", + "slot": { + "period": 129972, + "thread": 23 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 276557, + "thread": 19 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 348914, + "thread": 12 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 554225, + "thread": 22 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 754900, + "thread": 20 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 936796, + "thread": 1 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1052114, + "thread": 16 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1264992, + "thread": 25 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1428914, + "thread": 7 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1641057, + "thread": 11 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1781854, + "thread": 30 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1886306, + "thread": 15 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 1985932, + "thread": 3 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 2290090, + "thread": 5 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 2383655, + "thread": 9 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 2586212, + "thread": 0 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 2749556, + "thread": 13 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 2864455, + "thread": 23 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 3014108, + "thread": 8 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 3252567, + "thread": 5 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 3378480, + "thread": 24 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 3475788, + "thread": 9 + } + }, + { + "amount": "149.961895654", + "slot": { + "period": 3685715, + "thread": 20 + } + }, + { + "amount": "149.961895662", + "slot": { + "period": 3942563, + "thread": 1 + } + } + ], + "AU1YkNvjUhYxrQmbDEdKj7peqihy7YKcNuqwehjLnsf697qDxcrH": [ + { + "amount": "144.149262230", + "slot": { + "period": 98573, + "thread": 31 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 185995, + "thread": 16 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 373679, + "thread": 4 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 569767, + "thread": 26 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 698291, + "thread": 31 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 932526, + "thread": 12 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1041879, + "thread": 19 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1297075, + "thread": 0 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1345332, + "thread": 25 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1641502, + "thread": 20 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1714080, + "thread": 25 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 1931449, + "thread": 0 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2110589, + "thread": 30 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2253887, + "thread": 25 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2349559, + "thread": 15 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2518508, + "thread": 11 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2756144, + "thread": 11 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 2883283, + "thread": 10 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 3117102, + "thread": 14 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 3129553, + "thread": 6 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 3422718, + "thread": 2 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 3596904, + "thread": 17 + } + }, + { + "amount": "144.149262230", + "slot": { + "period": 3755923, + "thread": 0 + } + }, + { + "amount": "144.149262226", + "slot": { + "period": 3835375, + "thread": 9 + } + } + ], + "AU1YkPYSvAvyYqfBDQyJjxAkoDgxwWDD9NAcLEpz2923AMYfuce5": [ + { + "amount": "179.974093877", + "slot": { + "period": 68471, + "thread": 24 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 290655, + "thread": 1 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 415037, + "thread": 31 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 568775, + "thread": 7 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 657910, + "thread": 3 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 978610, + "thread": 0 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1014067, + "thread": 0 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1155070, + "thread": 6 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1387099, + "thread": 27 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1596887, + "thread": 10 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1674777, + "thread": 26 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1868937, + "thread": 7 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 1981569, + "thread": 16 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2219912, + "thread": 0 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2367720, + "thread": 15 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2596625, + "thread": 14 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2703490, + "thread": 2 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2901614, + "thread": 25 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 2990745, + "thread": 18 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 3250065, + "thread": 31 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 3422490, + "thread": 22 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 3457883, + "thread": 21 + } + }, + { + "amount": "179.974093877", + "slot": { + "period": 3659508, + "thread": 19 + } + }, + { + "amount": "179.974093887", + "slot": { + "period": 3820610, + "thread": 10 + } + } + ], + "AU1YkkFFgnjYjTMFnWiEUkQnjUDPzY3Q3QswLSRZPwFN7gupJW6s": [ + { + "amount": "114.737253916", + "slot": { + "period": 79879, + "thread": 21 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 197465, + "thread": 18 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 446605, + "thread": 2 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 588982, + "thread": 20 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 668189, + "thread": 15 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 929222, + "thread": 28 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1065704, + "thread": 9 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1302311, + "thread": 2 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1466749, + "thread": 3 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1595231, + "thread": 27 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1661382, + "thread": 30 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 1884468, + "thread": 27 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2143714, + "thread": 22 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2172186, + "thread": 22 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2330323, + "thread": 14 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2545565, + "thread": 28 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2742251, + "thread": 10 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 2909160, + "thread": 15 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 3076262, + "thread": 22 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 3193365, + "thread": 12 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 3319619, + "thread": 3 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 3589479, + "thread": 18 + } + }, + { + "amount": "114.737253916", + "slot": { + "period": 3744016, + "thread": 5 + } + }, + { + "amount": "114.737253923", + "slot": { + "period": 3831090, + "thread": 10 + } + } + ], + "AU1YktN2JyjZ4sH38QrFdqSHgAH8kjzunzX2YT85FTj7vLokPAY2": [ + { + "amount": "155.945023367", + "slot": { + "period": 79896, + "thread": 3 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 275165, + "thread": 5 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 480780, + "thread": 27 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 503141, + "thread": 20 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 716867, + "thread": 21 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 934936, + "thread": 29 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 992939, + "thread": 7 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 1193517, + "thread": 28 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 1414015, + "thread": 8 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 1622726, + "thread": 25 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 1745809, + "thread": 28 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 1928003, + "thread": 16 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2116560, + "thread": 0 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2218704, + "thread": 28 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2335355, + "thread": 13 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2524033, + "thread": 7 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2706714, + "thread": 22 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 2940269, + "thread": 29 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 3019626, + "thread": 26 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 3268915, + "thread": 23 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 3432269, + "thread": 28 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 3482187, + "thread": 15 + } + }, + { + "amount": "155.945023367", + "slot": { + "period": 3626548, + "thread": 1 + } + }, + { + "amount": "155.945023368", + "slot": { + "period": 3832826, + "thread": 7 + } + } + ], + "AU1YnMM2iUqN9it9f91Cxy1eVAXN3ZCNgAW4iisopVceXcb1DA9j": [ + { + "amount": "181.303179346", + "slot": { + "period": 146226, + "thread": 18 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 199040, + "thread": 30 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 467174, + "thread": 9 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 590469, + "thread": 25 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 682573, + "thread": 8 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 870235, + "thread": 4 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1134754, + "thread": 17 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1255178, + "thread": 19 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1432689, + "thread": 18 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1545480, + "thread": 26 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1663839, + "thread": 27 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1952691, + "thread": 14 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 1987006, + "thread": 27 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 2291752, + "thread": 21 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 2403832, + "thread": 8 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 2557268, + "thread": 8 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 2763058, + "thread": 15 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 2888317, + "thread": 24 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 3017237, + "thread": 16 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 3277904, + "thread": 26 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 3448047, + "thread": 22 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 3597898, + "thread": 20 + } + }, + { + "amount": "181.303179346", + "slot": { + "period": 3762470, + "thread": 9 + } + }, + { + "amount": "181.303179349", + "slot": { + "period": 3879324, + "thread": 1 + } + } + ], + "AU1YoAMgzfgYQsQD9k4NUrQtZcHsk72QV1kqoqvyTYf6BBDXSn8A": [ + { + "amount": "145.817753671", + "slot": { + "period": 74657, + "thread": 28 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 236660, + "thread": 8 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 417629, + "thread": 8 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 568653, + "thread": 24 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 734839, + "thread": 31 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 980722, + "thread": 14 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1114412, + "thread": 31 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1277218, + "thread": 5 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1426363, + "thread": 29 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1553793, + "thread": 25 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1699086, + "thread": 4 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 1865375, + "thread": 27 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2106278, + "thread": 18 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2250041, + "thread": 4 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2344938, + "thread": 12 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2558978, + "thread": 18 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2755583, + "thread": 31 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 2855501, + "thread": 3 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 3060095, + "thread": 20 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 3204201, + "thread": 24 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 3363532, + "thread": 2 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 3539849, + "thread": 10 + } + }, + { + "amount": "145.817753671", + "slot": { + "period": 3658973, + "thread": 10 + } + }, + { + "amount": "145.817753670", + "slot": { + "period": 3910185, + "thread": 3 + } + } + ], + "AU1YoqHPFtEgfnbMV2Y2h4vGbWN6ds6P43ioAZhvEHoQHAR9pJ8r": [ + { + "amount": "58.691917999", + "slot": { + "period": 60027, + "thread": 24 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 272996, + "thread": 25 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 447917, + "thread": 31 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 511862, + "thread": 10 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 814657, + "thread": 15 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 863467, + "thread": 8 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1123738, + "thread": 6 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1241809, + "thread": 0 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1457369, + "thread": 19 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1614343, + "thread": 23 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1721430, + "thread": 11 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 1813267, + "thread": 2 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2085066, + "thread": 1 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2196101, + "thread": 13 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2432051, + "thread": 22 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2528532, + "thread": 16 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2650576, + "thread": 20 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 2858590, + "thread": 3 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 3042951, + "thread": 7 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 3148650, + "thread": 21 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 3433992, + "thread": 1 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 3529175, + "thread": 2 + } + }, + { + "amount": "58.691917999", + "slot": { + "period": 3688517, + "thread": 27 + } + }, + { + "amount": "58.691918008", + "slot": { + "period": 3823133, + "thread": 24 + } + } + ], + "AU1YpjqckA3pt4LLfyodx3QbWnXqC4S7PPXuXiU6Vh7AjG6CTnFK": [ + { + "amount": "56.708138947", + "slot": { + "period": 126801, + "thread": 0 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 189996, + "thread": 11 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 349581, + "thread": 3 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 500895, + "thread": 28 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 712216, + "thread": 23 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 970465, + "thread": 29 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1072936, + "thread": 0 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1189411, + "thread": 11 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1401121, + "thread": 28 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1608160, + "thread": 19 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1754205, + "thread": 1 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 1926905, + "thread": 16 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2083551, + "thread": 8 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2216604, + "thread": 26 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2452245, + "thread": 16 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2499070, + "thread": 29 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2768729, + "thread": 25 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 2823039, + "thread": 5 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 3013188, + "thread": 17 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 3150331, + "thread": 18 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 3327197, + "thread": 14 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 3461851, + "thread": 8 + } + }, + { + "amount": "56.708138947", + "slot": { + "period": 3657353, + "thread": 0 + } + }, + { + "amount": "56.708138954", + "slot": { + "period": 3836556, + "thread": 17 + } + } + ], + "AU1YqQWzoYhFBytrTCVZbc5G8wSt2QnuEocMaocendLsCp7EyN7k": [ + { + "amount": "55.342478805", + "slot": { + "period": 70749, + "thread": 30 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 240949, + "thread": 17 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 394684, + "thread": 6 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 565789, + "thread": 17 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 790610, + "thread": 6 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 829859, + "thread": 29 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1058927, + "thread": 5 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1251174, + "thread": 26 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1454057, + "thread": 28 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1536005, + "thread": 21 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1758325, + "thread": 22 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 1965843, + "thread": 30 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2050668, + "thread": 13 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2282781, + "thread": 7 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2343315, + "thread": 4 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2490068, + "thread": 17 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2786791, + "thread": 1 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 2900018, + "thread": 20 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 3118473, + "thread": 2 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 3189615, + "thread": 7 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 3417910, + "thread": 23 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 3573851, + "thread": 6 + } + }, + { + "amount": "55.342478805", + "slot": { + "period": 3740425, + "thread": 17 + } + }, + { + "amount": "55.342478794", + "slot": { + "period": 3918701, + "thread": 9 + } + } + ], + "AU1Yr9mMmwBSwWHhoayrVzYe9SYZzVtBLuBBnHZ13hso7LSU8Pjt": [ + { + "amount": "353.100562857", + "slot": { + "period": 140702, + "thread": 7 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 218433, + "thread": 13 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 343982, + "thread": 2 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 642563, + "thread": 23 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 802735, + "thread": 15 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 846142, + "thread": 24 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1007788, + "thread": 11 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1201829, + "thread": 14 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1374969, + "thread": 10 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1517941, + "thread": 30 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1776034, + "thread": 19 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 1915059, + "thread": 13 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2067713, + "thread": 17 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2288358, + "thread": 0 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2369509, + "thread": 31 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2468183, + "thread": 17 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2745462, + "thread": 6 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 2930384, + "thread": 17 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 3116592, + "thread": 19 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 3259773, + "thread": 18 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 3395435, + "thread": 3 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 3502049, + "thread": 30 + } + }, + { + "amount": "353.100562857", + "slot": { + "period": 3658073, + "thread": 22 + } + }, + { + "amount": "353.100562854", + "slot": { + "period": 3937288, + "thread": 20 + } + } + ], + "AU1YrVeyZMHz2agDKKCGanwZYocdnG14Bxkegs26q3t7HmudvPaE": [ + { + "amount": "58.237785869", + "slot": { + "period": 137415, + "thread": 20 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 284295, + "thread": 11 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 339326, + "thread": 29 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 565015, + "thread": 13 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 779375, + "thread": 18 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 920831, + "thread": 31 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 991834, + "thread": 27 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 1301979, + "thread": 19 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 1464849, + "thread": 14 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 1635953, + "thread": 22 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 1783256, + "thread": 1 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 1865751, + "thread": 17 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2076072, + "thread": 24 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2206372, + "thread": 14 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2383517, + "thread": 28 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2580685, + "thread": 18 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2636015, + "thread": 9 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2946387, + "thread": 26 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 2995090, + "thread": 4 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 3180796, + "thread": 1 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 3354745, + "thread": 16 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 3544189, + "thread": 11 + } + }, + { + "amount": "58.237785869", + "slot": { + "period": 3716372, + "thread": 27 + } + }, + { + "amount": "58.237785868", + "slot": { + "period": 3807017, + "thread": 5 + } + } + ], + "AU1YsByuAGXrzVhQ3dNB1w6FDkYGkxweS69ZxgrerPVLeMNRgEKu": [ + { + "amount": "134.149459231", + "slot": { + "period": 100953, + "thread": 30 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 178789, + "thread": 3 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 489701, + "thread": 2 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 601353, + "thread": 25 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 795654, + "thread": 18 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 886477, + "thread": 12 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 986659, + "thread": 10 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 1298938, + "thread": 28 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 1325764, + "thread": 7 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 1607853, + "thread": 3 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 1678691, + "thread": 24 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 1857377, + "thread": 22 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2030674, + "thread": 5 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2174421, + "thread": 22 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2458584, + "thread": 4 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2517953, + "thread": 15 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2772041, + "thread": 16 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 2804191, + "thread": 25 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 3088153, + "thread": 8 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 3144489, + "thread": 16 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 3296804, + "thread": 31 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 3467092, + "thread": 5 + } + }, + { + "amount": "134.149459231", + "slot": { + "period": 3750286, + "thread": 19 + } + }, + { + "amount": "134.149459234", + "slot": { + "period": 3816476, + "thread": 28 + } + } + ], + "AU1YstJ2Dm2sSppiHMJpQqL1L5Qt7k1DKuHL1HANF8vDbvBky8Wm": [ + { + "amount": "32407.433333333", + "slot": { + "period": 22343, + "thread": 2 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 186880, + "thread": 9 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 428164, + "thread": 22 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 497566, + "thread": 18 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 677996, + "thread": 18 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 979113, + "thread": 27 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1028944, + "thread": 26 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1224489, + "thread": 23 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1461246, + "thread": 26 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1481575, + "thread": 6 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1685043, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1841148, + "thread": 23 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2015119, + "thread": 7 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2157325, + "thread": 28 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2368776, + "thread": 17 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2473274, + "thread": 22 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2748088, + "thread": 7 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2842030, + "thread": 11 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3061005, + "thread": 8 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3193116, + "thread": 21 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3432748, + "thread": 25 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3499874, + "thread": 18 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3656369, + "thread": 29 + } + }, + { + "amount": "32407.433333341", + "slot": { + "period": 3783815, + "thread": 2 + } + } + ], + "AU1YsthUdimeXFNiqv165wQ6Y5soCEA82Jg2BtSDFuDA4oobdJNw": [ + { + "amount": "312.082042910", + "slot": { + "period": 92352, + "thread": 18 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 255271, + "thread": 20 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 340243, + "thread": 28 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 508838, + "thread": 7 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 794481, + "thread": 24 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 926592, + "thread": 18 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1058466, + "thread": 1 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1317594, + "thread": 6 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1380931, + "thread": 19 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1626097, + "thread": 14 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1725290, + "thread": 24 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 1814701, + "thread": 29 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2119800, + "thread": 30 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2223177, + "thread": 26 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2376390, + "thread": 14 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2548801, + "thread": 1 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2705586, + "thread": 1 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2828270, + "thread": 1 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 2973987, + "thread": 11 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 3134806, + "thread": 21 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 3321527, + "thread": 5 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 3539775, + "thread": 14 + } + }, + { + "amount": "312.082042910", + "slot": { + "period": 3775334, + "thread": 11 + } + }, + { + "amount": "312.082042912", + "slot": { + "period": 3833994, + "thread": 9 + } + } + ], + "AU1YtS3HVaoqK9ustWJDR6LECREtqo4qjmni7wX28MotskjsKGnW": [ + { + "amount": "92.757981704", + "slot": { + "period": 26347, + "thread": 10 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 238864, + "thread": 10 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 436527, + "thread": 31 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 552138, + "thread": 20 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 735628, + "thread": 9 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 947393, + "thread": 0 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1013715, + "thread": 14 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1167032, + "thread": 21 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1460153, + "thread": 28 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1618793, + "thread": 23 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1730002, + "thread": 29 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 1922272, + "thread": 9 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2059580, + "thread": 24 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2234534, + "thread": 14 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2354006, + "thread": 23 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2612038, + "thread": 12 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2641571, + "thread": 24 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2897640, + "thread": 1 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 2979765, + "thread": 10 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 3244975, + "thread": 28 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 3390040, + "thread": 0 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 3540463, + "thread": 9 + } + }, + { + "amount": "92.757981704", + "slot": { + "period": 3699730, + "thread": 17 + } + }, + { + "amount": "92.757981693", + "slot": { + "period": 3941990, + "thread": 0 + } + } + ], + "AU1YumqzHbJmhFi9yztpseTTU1dE7sp799nm3Y4FK9vwmBdswC2A": [ + { + "amount": "569.295798992", + "slot": { + "period": 71591, + "thread": 1 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 308402, + "thread": 2 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 400090, + "thread": 15 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 535093, + "thread": 27 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 696528, + "thread": 20 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 971844, + "thread": 21 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1088492, + "thread": 11 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1178045, + "thread": 11 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1465901, + "thread": 11 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1538123, + "thread": 27 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1741824, + "thread": 21 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 1878693, + "thread": 2 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2122563, + "thread": 31 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2283611, + "thread": 4 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2335914, + "thread": 19 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2539952, + "thread": 22 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2732590, + "thread": 27 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 2823292, + "thread": 31 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 3086272, + "thread": 18 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 3207310, + "thread": 3 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 3383093, + "thread": 2 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 3601916, + "thread": 1 + } + }, + { + "amount": "569.295798992", + "slot": { + "period": 3631989, + "thread": 5 + } + }, + { + "amount": "569.295798983", + "slot": { + "period": 3808680, + "thread": 26 + } + } + ], + "AU1YvmUKYcmBjz7Q7EcStV125T2nJvfPhzrRuYWKt15ENk1eskVw": [ + { + "amount": "219.318862608", + "slot": { + "period": 144718, + "thread": 6 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 285808, + "thread": 19 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 438657, + "thread": 18 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 527984, + "thread": 17 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 744117, + "thread": 25 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 889736, + "thread": 6 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1018449, + "thread": 23 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1262787, + "thread": 27 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1342935, + "thread": 27 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1589764, + "thread": 19 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1734877, + "thread": 8 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1908646, + "thread": 30 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 1993580, + "thread": 10 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 2191344, + "thread": 24 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 2325831, + "thread": 1 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 2594988, + "thread": 30 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 2696983, + "thread": 22 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 2861435, + "thread": 22 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 3008074, + "thread": 13 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 3124160, + "thread": 2 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 3401374, + "thread": 12 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 3607967, + "thread": 19 + } + }, + { + "amount": "219.318862608", + "slot": { + "period": 3689326, + "thread": 23 + } + }, + { + "amount": "219.318862607", + "slot": { + "period": 3889206, + "thread": 14 + } + } + ], + "AU1YvqJStwV6726M49jxpf7Fr1gp2Stkrr6eoh5ioEN7jhThZyJV": [ + { + "amount": "570.119282638", + "slot": { + "period": 86438, + "thread": 18 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 315672, + "thread": 31 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 421819, + "thread": 24 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 532014, + "thread": 20 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 816397, + "thread": 2 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 845012, + "thread": 24 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1114567, + "thread": 17 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1227209, + "thread": 30 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1471156, + "thread": 4 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1572500, + "thread": 4 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1689613, + "thread": 10 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 1854195, + "thread": 11 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2115774, + "thread": 10 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2232252, + "thread": 13 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2413523, + "thread": 28 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2559149, + "thread": 3 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2739975, + "thread": 23 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2952952, + "thread": 0 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 2994324, + "thread": 24 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 3147451, + "thread": 10 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 3439568, + "thread": 1 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 3494198, + "thread": 2 + } + }, + { + "amount": "570.119282638", + "slot": { + "period": 3648456, + "thread": 17 + } + }, + { + "amount": "570.119282644", + "slot": { + "period": 3783280, + "thread": 18 + } + } + ], + "AU1YvyokixovihGyn4FxdQ8yKeihjrMerCvCP7k9FW1YW9ZjrmcV": [ + { + "amount": "76.144588329", + "slot": { + "period": 160083, + "thread": 24 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 182142, + "thread": 30 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 361783, + "thread": 22 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 525600, + "thread": 15 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 725033, + "thread": 8 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 824446, + "thread": 8 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1120806, + "thread": 8 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1296364, + "thread": 6 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1330652, + "thread": 29 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1578975, + "thread": 14 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1719620, + "thread": 20 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 1911467, + "thread": 4 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2117179, + "thread": 17 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2160148, + "thread": 14 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2314194, + "thread": 26 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2496824, + "thread": 9 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2723917, + "thread": 21 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2921289, + "thread": 4 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 2956395, + "thread": 15 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 3181972, + "thread": 17 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 3289892, + "thread": 12 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 3559406, + "thread": 22 + } + }, + { + "amount": "76.144588329", + "slot": { + "period": 3763789, + "thread": 8 + } + }, + { + "amount": "76.144588335", + "slot": { + "period": 3798732, + "thread": 31 + } + } + ], + "AU1YyzqC7o7RdYPZrNoYCfey3EjA8mnCU1L4Ved3vi5DDZqXZaEb": [ + { + "amount": "209.503362919", + "slot": { + "period": 73889, + "thread": 6 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 231317, + "thread": 11 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 358133, + "thread": 28 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 633632, + "thread": 18 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 705868, + "thread": 31 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 982498, + "thread": 27 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1143179, + "thread": 30 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1241107, + "thread": 2 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1375282, + "thread": 18 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1639396, + "thread": 12 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1649216, + "thread": 19 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 1851942, + "thread": 19 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2027506, + "thread": 0 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2283895, + "thread": 23 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2320118, + "thread": 22 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2617507, + "thread": 30 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2714523, + "thread": 22 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 2893030, + "thread": 11 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 3065803, + "thread": 29 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 3282026, + "thread": 6 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 3366179, + "thread": 29 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 3458883, + "thread": 26 + } + }, + { + "amount": "209.503362919", + "slot": { + "period": 3763495, + "thread": 29 + } + }, + { + "amount": "209.503362918", + "slot": { + "period": 3870760, + "thread": 31 + } + } + ], + "AU1YzAsWK8825b91e6tKwt5D2VnpSvxRge2b4Aif1uXpuTKJaDrA": [ + { + "amount": "388.491592432", + "slot": { + "period": 72773, + "thread": 4 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 311835, + "thread": 0 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 341686, + "thread": 2 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 595122, + "thread": 14 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 808402, + "thread": 5 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 888032, + "thread": 8 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1067994, + "thread": 19 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1178681, + "thread": 14 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1326982, + "thread": 21 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1594520, + "thread": 5 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1775702, + "thread": 0 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 1834590, + "thread": 26 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2035222, + "thread": 12 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2216061, + "thread": 26 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2300631, + "thread": 4 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2582405, + "thread": 1 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2742158, + "thread": 23 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 2803458, + "thread": 3 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 3087716, + "thread": 25 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 3252165, + "thread": 2 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 3297197, + "thread": 17 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 3581535, + "thread": 4 + } + }, + { + "amount": "388.491592432", + "slot": { + "period": 3734589, + "thread": 17 + } + }, + { + "amount": "388.491592435", + "slot": { + "period": 3807100, + "thread": 23 + } + } + ], + "AU1YzZa1uYmSSMQDac3X1C1K8VbrYwpipGRLtHME6Dj9aqtQAhpN": [ + { + "amount": "58.596116250", + "slot": { + "period": 108997, + "thread": 9 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 218641, + "thread": 24 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 414003, + "thread": 20 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 595679, + "thread": 20 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 728824, + "thread": 12 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 943775, + "thread": 6 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1063009, + "thread": 18 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1192791, + "thread": 6 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1317843, + "thread": 6 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1544373, + "thread": 14 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1653709, + "thread": 8 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 1888710, + "thread": 19 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2071136, + "thread": 5 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2206717, + "thread": 4 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2447753, + "thread": 10 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2564845, + "thread": 11 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2769084, + "thread": 20 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2822647, + "thread": 22 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 2964177, + "thread": 21 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 3173874, + "thread": 6 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 3448167, + "thread": 19 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 3455850, + "thread": 7 + } + }, + { + "amount": "58.596116250", + "slot": { + "period": 3744025, + "thread": 14 + } + }, + { + "amount": "58.596116242", + "slot": { + "period": 3815861, + "thread": 17 + } + } + ], + "AU1Yzohj4gS3dEFi2MeYtYv5VQbzypLiJgJ4ef2fZfW2Hh5govcD": [ + { + "amount": "471.522540790", + "slot": { + "period": 113485, + "thread": 29 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 271056, + "thread": 0 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 324853, + "thread": 5 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 562161, + "thread": 28 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 684765, + "thread": 25 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 846432, + "thread": 8 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1017772, + "thread": 21 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1176850, + "thread": 20 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1354807, + "thread": 18 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1502637, + "thread": 18 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1733641, + "thread": 5 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1962512, + "thread": 6 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 1990695, + "thread": 23 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2200210, + "thread": 8 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2395147, + "thread": 28 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2574398, + "thread": 21 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2718894, + "thread": 30 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2843185, + "thread": 23 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 2972318, + "thread": 29 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 3235845, + "thread": 31 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 3320746, + "thread": 0 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 3527397, + "thread": 8 + } + }, + { + "amount": "471.522540790", + "slot": { + "period": 3664419, + "thread": 30 + } + }, + { + "amount": "471.522540789", + "slot": { + "period": 3918436, + "thread": 7 + } + } + ], + "AU1YzyMQSsQ7aUJuS8T6ijN9VPLeFgZP26yV1cJjP5NJSAkwefZZ": [ + { + "amount": "173.766636859", + "slot": { + "period": 129088, + "thread": 10 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 215448, + "thread": 27 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 327512, + "thread": 22 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 652328, + "thread": 5 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 686316, + "thread": 8 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 961987, + "thread": 30 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1078965, + "thread": 25 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1259835, + "thread": 3 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1394689, + "thread": 21 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1633554, + "thread": 23 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1673225, + "thread": 31 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 1950186, + "thread": 7 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2080795, + "thread": 30 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2247557, + "thread": 4 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2412985, + "thread": 28 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2474629, + "thread": 10 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2649064, + "thread": 2 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2927040, + "thread": 14 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 2965494, + "thread": 25 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 3229236, + "thread": 26 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 3319426, + "thread": 12 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 3490963, + "thread": 1 + } + }, + { + "amount": "173.766636859", + "slot": { + "period": 3768529, + "thread": 22 + } + }, + { + "amount": "173.766636851", + "slot": { + "period": 3916333, + "thread": 30 + } + } + ], + "AU1Z22jMdkpB2YE8CnmfvWy1xVNXcgc8JUYWn7kCBHFBREZupygU": [ + { + "amount": "99.183720125", + "slot": { + "period": 152256, + "thread": 3 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 192419, + "thread": 25 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 369430, + "thread": 21 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 624714, + "thread": 3 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 776469, + "thread": 25 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 832028, + "thread": 5 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1012665, + "thread": 26 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1274839, + "thread": 2 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1406402, + "thread": 8 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1639566, + "thread": 4 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1752840, + "thread": 14 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 1863129, + "thread": 21 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2098451, + "thread": 17 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2181412, + "thread": 13 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2375375, + "thread": 17 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2597469, + "thread": 14 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2630947, + "thread": 16 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2952106, + "thread": 12 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 2992924, + "thread": 1 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 3254475, + "thread": 0 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 3419058, + "thread": 25 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 3519312, + "thread": 6 + } + }, + { + "amount": "99.183720125", + "slot": { + "period": 3736025, + "thread": 17 + } + }, + { + "amount": "99.183720133", + "slot": { + "period": 3924262, + "thread": 16 + } + } + ], + "AU1Z2Dr1e5p32bu91tvA1Ekna83NqChVvjREVC3c9CqeT7FjdLSL": [ + { + "amount": "85.678546422", + "slot": { + "period": 139984, + "thread": 10 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 196403, + "thread": 18 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 364676, + "thread": 8 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 603091, + "thread": 5 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 767272, + "thread": 6 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 838668, + "thread": 25 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1067890, + "thread": 20 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1286822, + "thread": 16 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1438983, + "thread": 9 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1585846, + "thread": 11 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1734097, + "thread": 23 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 1971838, + "thread": 3 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2073355, + "thread": 17 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2245773, + "thread": 24 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2437005, + "thread": 12 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2535398, + "thread": 6 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2714306, + "thread": 22 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 2919794, + "thread": 11 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 3067569, + "thread": 1 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 3162808, + "thread": 17 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 3333997, + "thread": 3 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 3523550, + "thread": 4 + } + }, + { + "amount": "85.678546422", + "slot": { + "period": 3692616, + "thread": 2 + } + }, + { + "amount": "85.678546432", + "slot": { + "period": 3794702, + "thread": 20 + } + } + ], + "AU1Z46V1L4b2GUr3qJxT3B7yo5Kkb5BbrhRJqrmSf8jMxro24GCo": [ + { + "amount": "128.361630073", + "slot": { + "period": 39092, + "thread": 2 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 303332, + "thread": 30 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 379260, + "thread": 25 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 622902, + "thread": 23 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 699362, + "thread": 13 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 876161, + "thread": 22 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 994720, + "thread": 21 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1291781, + "thread": 23 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1424363, + "thread": 31 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1608731, + "thread": 14 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1650162, + "thread": 18 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1823502, + "thread": 0 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 1982198, + "thread": 27 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 2163691, + "thread": 0 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 2315637, + "thread": 1 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 2493607, + "thread": 6 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 2727343, + "thread": 18 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 2828535, + "thread": 4 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 3066956, + "thread": 18 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 3175603, + "thread": 20 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 3404953, + "thread": 31 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 3541818, + "thread": 9 + } + }, + { + "amount": "128.361630073", + "slot": { + "period": 3637921, + "thread": 3 + } + }, + { + "amount": "128.361630075", + "slot": { + "period": 3860685, + "thread": 4 + } + } + ], + "AU1Z4gDYfpnwXS2nxekkhvw4cGnAhvrQogB9DRVtwp5vjoeHSGKA": [ + { + "amount": "170.525221761", + "slot": { + "period": 72393, + "thread": 9 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 290427, + "thread": 21 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 363717, + "thread": 9 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 498269, + "thread": 8 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 818167, + "thread": 19 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 927081, + "thread": 12 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1035297, + "thread": 12 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1215252, + "thread": 2 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1477632, + "thread": 12 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1513660, + "thread": 28 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1705986, + "thread": 27 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 1878520, + "thread": 4 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2040554, + "thread": 12 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2239231, + "thread": 30 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2446478, + "thread": 26 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2559545, + "thread": 28 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2767258, + "thread": 9 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 2933753, + "thread": 27 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 3039272, + "thread": 9 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 3241855, + "thread": 20 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 3379616, + "thread": 17 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 3497174, + "thread": 29 + } + }, + { + "amount": "170.525221761", + "slot": { + "period": 3691948, + "thread": 25 + } + }, + { + "amount": "170.525221754", + "slot": { + "period": 3809741, + "thread": 8 + } + } + ], + "AU1Z4hL37FJgBi5TKDnJHQQj3BYtVwumsGnVaRiP2dWKwrq6hRmA": [ + { + "amount": "370.653721508", + "slot": { + "period": 84377, + "thread": 6 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 229408, + "thread": 30 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 389953, + "thread": 4 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 607581, + "thread": 15 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 681305, + "thread": 19 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 847428, + "thread": 22 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1059003, + "thread": 1 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1161604, + "thread": 25 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1396455, + "thread": 4 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1528296, + "thread": 17 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1793171, + "thread": 21 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 1885892, + "thread": 25 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2002214, + "thread": 23 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2225298, + "thread": 16 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2453245, + "thread": 22 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2470761, + "thread": 5 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2673385, + "thread": 11 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 2884441, + "thread": 25 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 3079001, + "thread": 16 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 3171313, + "thread": 22 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 3450497, + "thread": 23 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 3525939, + "thread": 15 + } + }, + { + "amount": "370.653721508", + "slot": { + "period": 3709651, + "thread": 10 + } + }, + { + "amount": "370.653721519", + "slot": { + "period": 3817853, + "thread": 10 + } + } + ], + "AU1Z5YfocGC196Sb2RMG51Y9PzvRNZWAgA3yrNLswMAkbxWBfsmR": [ + { + "amount": "128.398986056", + "slot": { + "period": 78898, + "thread": 10 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 254278, + "thread": 30 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 336887, + "thread": 12 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 532051, + "thread": 17 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 739394, + "thread": 10 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 920798, + "thread": 8 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 995654, + "thread": 7 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 1196046, + "thread": 27 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 1350778, + "thread": 13 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 1596016, + "thread": 9 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 1776816, + "thread": 4 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 1878827, + "thread": 3 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2077315, + "thread": 26 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2224584, + "thread": 24 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2368329, + "thread": 1 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2579880, + "thread": 5 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2712171, + "thread": 3 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2868789, + "thread": 21 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 2979065, + "thread": 18 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 3188861, + "thread": 31 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 3404093, + "thread": 6 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 3482263, + "thread": 11 + } + }, + { + "amount": "128.398986056", + "slot": { + "period": 3699754, + "thread": 7 + } + }, + { + "amount": "128.398986046", + "slot": { + "period": 3866188, + "thread": 10 + } + } + ], + "AU1Z63ivJAdnUQDgrfvuBAx4vZrn7WaqxhFmRoBXe4xf9ohveWDu": [ + { + "amount": "268.559594585", + "slot": { + "period": 126606, + "thread": 26 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 306622, + "thread": 10 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 488229, + "thread": 20 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 571331, + "thread": 8 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 682890, + "thread": 22 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 822331, + "thread": 29 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1075707, + "thread": 12 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1156084, + "thread": 18 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1428870, + "thread": 17 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1645135, + "thread": 23 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1750361, + "thread": 2 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 1828897, + "thread": 5 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2086870, + "thread": 28 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2232606, + "thread": 1 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2342060, + "thread": 26 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2490922, + "thread": 7 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2626137, + "thread": 0 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 2890879, + "thread": 13 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 3055347, + "thread": 23 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 3263626, + "thread": 9 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 3408485, + "thread": 5 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 3560002, + "thread": 2 + } + }, + { + "amount": "268.559594585", + "slot": { + "period": 3732439, + "thread": 8 + } + }, + { + "amount": "268.559594590", + "slot": { + "period": 3784866, + "thread": 22 + } + } + ], + "AU1Z65hcmCsMBhRY9HxuJp2Qrm1wmF9qU4YQCvcL5QcESe61TXQs": [ + { + "amount": "55.299306216", + "slot": { + "period": 28429, + "thread": 14 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 252173, + "thread": 20 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 385920, + "thread": 21 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 610968, + "thread": 9 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 703268, + "thread": 10 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 851237, + "thread": 30 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1043361, + "thread": 20 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1187686, + "thread": 1 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1439653, + "thread": 11 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1642704, + "thread": 10 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1713265, + "thread": 7 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1922959, + "thread": 2 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 1989565, + "thread": 13 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 2193083, + "thread": 26 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 2390246, + "thread": 19 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 2622376, + "thread": 24 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 2754174, + "thread": 8 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 2939605, + "thread": 6 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 3023347, + "thread": 16 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 3213313, + "thread": 26 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 3297469, + "thread": 17 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 3533487, + "thread": 9 + } + }, + { + "amount": "55.299306216", + "slot": { + "period": 3643406, + "thread": 19 + } + }, + { + "amount": "55.299306227", + "slot": { + "period": 3806280, + "thread": 2 + } + } + ], + "AU1Z6WpPGaAC3RLcujtFFZFjyjAznezhoKSpaZta9vrhMccSgLcA": [ + { + "amount": "173.553809452", + "slot": { + "period": 82191, + "thread": 3 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 190154, + "thread": 5 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 432270, + "thread": 20 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 632219, + "thread": 28 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 782656, + "thread": 10 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 865331, + "thread": 29 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1075414, + "thread": 2 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1285583, + "thread": 6 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1429163, + "thread": 22 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1531172, + "thread": 0 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1670731, + "thread": 5 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 1906384, + "thread": 9 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2068628, + "thread": 22 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2218176, + "thread": 17 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2372614, + "thread": 12 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2473470, + "thread": 11 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2747822, + "thread": 16 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 2901418, + "thread": 9 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 3064026, + "thread": 22 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 3123491, + "thread": 1 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 3410592, + "thread": 27 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 3531172, + "thread": 10 + } + }, + { + "amount": "173.553809452", + "slot": { + "period": 3695296, + "thread": 22 + } + }, + { + "amount": "173.553809445", + "slot": { + "period": 3818538, + "thread": 31 + } + } + ], + "AU1Z6YAM1suGXYAyYdHUXRB4RscWDXyFrqSHf6WPkEoyCrjdRM76": [ + { + "amount": "1512.148798134", + "slot": { + "period": 89868, + "thread": 31 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 182992, + "thread": 2 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 456362, + "thread": 25 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 597551, + "thread": 5 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 669538, + "thread": 18 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 854358, + "thread": 18 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1089343, + "thread": 5 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1251894, + "thread": 1 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1389013, + "thread": 29 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1502262, + "thread": 5 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1707822, + "thread": 4 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 1919177, + "thread": 18 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2045273, + "thread": 24 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2233724, + "thread": 5 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2414652, + "thread": 23 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2468171, + "thread": 5 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2630972, + "thread": 10 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 2823875, + "thread": 21 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 3002696, + "thread": 23 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 3122259, + "thread": 3 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 3393928, + "thread": 21 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 3485973, + "thread": 30 + } + }, + { + "amount": "1512.148798134", + "slot": { + "period": 3652666, + "thread": 28 + } + }, + { + "amount": "1512.148798150", + "slot": { + "period": 3838369, + "thread": 31 + } + } + ], + "AU1Z6kpMEgCPzg1uUJaSM7tSbX6MHgf1Qa4iLtaG6KDjC7XbHYTE": [ + { + "amount": "537.201624250", + "slot": { + "period": 112255, + "thread": 20 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 250796, + "thread": 11 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 441491, + "thread": 23 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 498815, + "thread": 21 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 695153, + "thread": 0 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 906855, + "thread": 26 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1111138, + "thread": 30 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1246440, + "thread": 8 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1465546, + "thread": 24 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1528565, + "thread": 24 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1690516, + "thread": 7 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 1830342, + "thread": 24 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2119038, + "thread": 25 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2145071, + "thread": 14 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2363572, + "thread": 21 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2502348, + "thread": 22 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2757561, + "thread": 23 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 2881187, + "thread": 25 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 3087950, + "thread": 10 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 3234790, + "thread": 14 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 3418878, + "thread": 11 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 3612049, + "thread": 10 + } + }, + { + "amount": "537.201624250", + "slot": { + "period": 3668240, + "thread": 29 + } + }, + { + "amount": "537.201624260", + "slot": { + "period": 3854017, + "thread": 27 + } + } + ], + "AU1Z7QAT98nwcM6zXjUJ7Mk9sFSXUGJiw6MqDNB12HkUz1LvECr6": [ + { + "amount": "74.266832030", + "slot": { + "period": 47329, + "thread": 17 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 256945, + "thread": 17 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 348419, + "thread": 6 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 524572, + "thread": 13 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 713870, + "thread": 4 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 852551, + "thread": 15 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1092804, + "thread": 7 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1209076, + "thread": 6 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1452146, + "thread": 11 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1605956, + "thread": 24 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1805094, + "thread": 1 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 1968026, + "thread": 21 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2056655, + "thread": 31 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2216226, + "thread": 7 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2364366, + "thread": 4 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2536545, + "thread": 24 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2736224, + "thread": 24 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2919592, + "thread": 29 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 2990293, + "thread": 18 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 3124262, + "thread": 17 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 3350942, + "thread": 14 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 3538816, + "thread": 29 + } + }, + { + "amount": "74.266832030", + "slot": { + "period": 3715001, + "thread": 1 + } + }, + { + "amount": "74.266832040", + "slot": { + "period": 3814916, + "thread": 10 + } + } + ], + "AU1Z7r6W9oRqi64dyoJe4SoqgNqEuMGCUdnhmjDd7ewM7xNEFXpD": [ + { + "amount": "149.839707888", + "slot": { + "period": 125384, + "thread": 0 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 201151, + "thread": 1 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 403921, + "thread": 4 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 630731, + "thread": 7 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 778793, + "thread": 8 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 852334, + "thread": 26 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1120714, + "thread": 6 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1207753, + "thread": 0 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1422657, + "thread": 17 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1596539, + "thread": 13 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1657491, + "thread": 20 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 1955847, + "thread": 19 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2011872, + "thread": 23 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2173712, + "thread": 6 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2297163, + "thread": 6 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2482469, + "thread": 16 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2719567, + "thread": 2 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 2828317, + "thread": 9 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 3109192, + "thread": 10 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 3151964, + "thread": 13 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 3315408, + "thread": 30 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 3583650, + "thread": 20 + } + }, + { + "amount": "149.839707888", + "slot": { + "period": 3647990, + "thread": 30 + } + }, + { + "amount": "149.839707889", + "slot": { + "period": 3795264, + "thread": 10 + } + } + ], + "AU1Z8YwxWvncgf8unvtJCtoVe3ymEY9dLTVbU45yJgRGUsGjmQhX": [ + { + "amount": "12437.833333333", + "slot": { + "period": 32633, + "thread": 8 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 194213, + "thread": 24 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 355736, + "thread": 0 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 562129, + "thread": 1 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 763952, + "thread": 15 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 851659, + "thread": 8 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1018913, + "thread": 16 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1209423, + "thread": 22 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1349578, + "thread": 22 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1574356, + "thread": 16 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1725917, + "thread": 29 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 1953525, + "thread": 3 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2030110, + "thread": 0 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2174032, + "thread": 23 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2364844, + "thread": 30 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2583325, + "thread": 30 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2670363, + "thread": 5 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 2953082, + "thread": 22 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 3007218, + "thread": 9 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 3138564, + "thread": 16 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 3362831, + "thread": 10 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 3458397, + "thread": 12 + } + }, + { + "amount": "12437.833333333", + "slot": { + "period": 3736887, + "thread": 5 + } + }, + { + "amount": "12437.833333341", + "slot": { + "period": 3837043, + "thread": 13 + } + } + ], + "AU1Z9MYtPPASTCZPp2vCL6LbnNhZdurSVKsxkt8iUFW1h79XFjQK": [ + { + "amount": "144.371703529", + "slot": { + "period": 95089, + "thread": 3 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 171526, + "thread": 29 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 362679, + "thread": 9 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 496650, + "thread": 0 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 802867, + "thread": 29 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 941601, + "thread": 26 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1126404, + "thread": 12 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1240109, + "thread": 1 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1353021, + "thread": 28 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1625693, + "thread": 0 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1727494, + "thread": 24 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 1872180, + "thread": 6 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2137412, + "thread": 21 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2276979, + "thread": 15 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2440619, + "thread": 8 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2529588, + "thread": 21 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2624905, + "thread": 9 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 2942948, + "thread": 28 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 3103312, + "thread": 23 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 3236296, + "thread": 2 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 3299270, + "thread": 15 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 3544822, + "thread": 7 + } + }, + { + "amount": "144.371703529", + "slot": { + "period": 3692247, + "thread": 19 + } + }, + { + "amount": "144.371703528", + "slot": { + "period": 3943357, + "thread": 23 + } + } + ], + "AU1Z9ddb5LtpiUUSRN6VJauFHkLVT7Fus2z8H5bDa8NNKLPGMVfU": [ + { + "amount": "310.762064145", + "slot": { + "period": 54580, + "thread": 16 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 261943, + "thread": 5 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 452594, + "thread": 16 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 630540, + "thread": 9 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 718944, + "thread": 23 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 940363, + "thread": 13 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 984980, + "thread": 26 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 1176586, + "thread": 13 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 1423536, + "thread": 6 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 1579030, + "thread": 15 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 1769524, + "thread": 20 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 1859428, + "thread": 31 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2089834, + "thread": 14 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2186002, + "thread": 4 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2343674, + "thread": 5 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2477708, + "thread": 5 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2677192, + "thread": 3 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2950317, + "thread": 14 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 2989798, + "thread": 27 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 3241044, + "thread": 20 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 3419623, + "thread": 1 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 3516056, + "thread": 9 + } + }, + { + "amount": "310.762064145", + "slot": { + "period": 3705090, + "thread": 2 + } + }, + { + "amount": "310.762064156", + "slot": { + "period": 3915830, + "thread": 27 + } + } + ], + "AU1Z9dwL1yveXiqXC6x9evS8c39PgqsqY9YQ4Wag579RcCmRaCWk": [ + { + "amount": "231.051789200", + "slot": { + "period": 130311, + "thread": 18 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 307902, + "thread": 4 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 473122, + "thread": 7 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 585357, + "thread": 20 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 731948, + "thread": 23 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 867845, + "thread": 17 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1057759, + "thread": 14 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1261436, + "thread": 12 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1351995, + "thread": 23 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1530509, + "thread": 4 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1766241, + "thread": 9 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 1852703, + "thread": 5 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2074904, + "thread": 14 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2152184, + "thread": 3 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2342389, + "thread": 21 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2510801, + "thread": 8 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2704872, + "thread": 27 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 2948863, + "thread": 8 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 3097718, + "thread": 26 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 3268420, + "thread": 28 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 3330971, + "thread": 18 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 3461843, + "thread": 31 + } + }, + { + "amount": "231.051789200", + "slot": { + "period": 3681236, + "thread": 12 + } + }, + { + "amount": "231.051789196", + "slot": { + "period": 3796783, + "thread": 0 + } + } + ], + "AU1Z9zFHaChuFcwc7HgD6AkVTs6NvaKH7UYxeeyRe1fQc5og13SC": [ + { + "amount": "256.691178849", + "slot": { + "period": 42327, + "thread": 20 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 234817, + "thread": 10 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 382989, + "thread": 28 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 582312, + "thread": 0 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 726978, + "thread": 25 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 934928, + "thread": 8 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1064165, + "thread": 21 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1156572, + "thread": 30 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1344108, + "thread": 10 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1596361, + "thread": 15 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1701278, + "thread": 20 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 1919613, + "thread": 18 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2042573, + "thread": 14 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2169793, + "thread": 23 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2315331, + "thread": 6 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2521536, + "thread": 28 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2782901, + "thread": 14 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2872544, + "thread": 13 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 2962290, + "thread": 25 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 3145422, + "thread": 18 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 3392192, + "thread": 17 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 3470992, + "thread": 0 + } + }, + { + "amount": "256.691178849", + "slot": { + "period": 3738563, + "thread": 5 + } + }, + { + "amount": "256.691178852", + "slot": { + "period": 3899003, + "thread": 6 + } + } + ], + "AU1ZB4t18rkFwRwKtSUZa3mrsTFJbG38z4yv48hznNKacukSHUkg": [ + { + "amount": "208.137115987", + "slot": { + "period": 125456, + "thread": 17 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 217826, + "thread": 0 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 405218, + "thread": 17 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 626170, + "thread": 11 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 713525, + "thread": 25 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 975446, + "thread": 29 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1082311, + "thread": 11 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1277922, + "thread": 2 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1406019, + "thread": 22 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1498252, + "thread": 19 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1721911, + "thread": 18 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1964270, + "thread": 6 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 1996514, + "thread": 0 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2217575, + "thread": 19 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2404538, + "thread": 15 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2472761, + "thread": 18 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2727686, + "thread": 14 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2800926, + "thread": 17 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 2962549, + "thread": 25 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 3270157, + "thread": 26 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 3448449, + "thread": 2 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 3612906, + "thread": 9 + } + }, + { + "amount": "208.137115987", + "slot": { + "period": 3692977, + "thread": 28 + } + }, + { + "amount": "208.137115984", + "slot": { + "period": 3843853, + "thread": 26 + } + } + ], + "AU1ZDPkjibYJAnEzT4CZLseATNPgqY41ES9o1AYbsn9zL7A5QQ73": [ + { + "amount": "246.415513815", + "slot": { + "period": 14346, + "thread": 10 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 311897, + "thread": 25 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 486818, + "thread": 7 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 604797, + "thread": 22 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 679448, + "thread": 10 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 832562, + "thread": 20 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1056323, + "thread": 30 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1255318, + "thread": 18 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1420357, + "thread": 24 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1536757, + "thread": 14 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1696468, + "thread": 10 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 1916273, + "thread": 27 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2084342, + "thread": 13 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2281087, + "thread": 23 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2427156, + "thread": 0 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2467238, + "thread": 3 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2695211, + "thread": 13 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 2916362, + "thread": 10 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 3111804, + "thread": 21 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 3178885, + "thread": 31 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 3358286, + "thread": 31 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 3488638, + "thread": 15 + } + }, + { + "amount": "246.415513815", + "slot": { + "period": 3724623, + "thread": 2 + } + }, + { + "amount": "246.415513808", + "slot": { + "period": 3878711, + "thread": 2 + } + } + ], + "AU1ZE345hGtQh39vVy7PXh1sPt6ZWBZEdAvkkA53qm2k8Wxck8u8": [ + { + "amount": "110.438228810", + "slot": { + "period": 112298, + "thread": 31 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 195167, + "thread": 8 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 352147, + "thread": 0 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 525514, + "thread": 1 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 744391, + "thread": 26 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 927330, + "thread": 6 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1076647, + "thread": 15 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1310449, + "thread": 13 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1462905, + "thread": 10 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1494970, + "thread": 23 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1802077, + "thread": 31 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 1877654, + "thread": 30 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2005707, + "thread": 23 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2150474, + "thread": 4 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2433522, + "thread": 5 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2522533, + "thread": 16 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2747937, + "thread": 16 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 2900067, + "thread": 22 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 3031612, + "thread": 23 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 3229711, + "thread": 1 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 3425777, + "thread": 28 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 3603232, + "thread": 4 + } + }, + { + "amount": "110.438228810", + "slot": { + "period": 3638987, + "thread": 3 + } + }, + { + "amount": "110.438228805", + "slot": { + "period": 3926026, + "thread": 10 + } + } + ], + "AU1ZE4MF24uAHfQRdc5qKrca5vfgWochUXHbHN4j36TvmpFzx7YT": [ + { + "amount": "119.079523867", + "slot": { + "period": 158645, + "thread": 27 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 234519, + "thread": 8 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 341433, + "thread": 20 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 536702, + "thread": 7 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 676346, + "thread": 24 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 972369, + "thread": 4 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1031488, + "thread": 15 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1276490, + "thread": 26 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1324615, + "thread": 6 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1643333, + "thread": 9 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1754623, + "thread": 16 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 1969184, + "thread": 17 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2030794, + "thread": 25 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2240120, + "thread": 2 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2412921, + "thread": 23 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2518748, + "thread": 13 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2716165, + "thread": 4 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 2795201, + "thread": 13 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 3016293, + "thread": 12 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 3262708, + "thread": 31 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 3344910, + "thread": 8 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 3604124, + "thread": 1 + } + }, + { + "amount": "119.079523867", + "slot": { + "period": 3646661, + "thread": 1 + } + }, + { + "amount": "119.079523877", + "slot": { + "period": 3836030, + "thread": 9 + } + } + ], + "AU1ZE7Wrs9pBwnGKu6SqS86vSXz8cannrKNfTUUqKVpvDQwvT3Pe": [ + { + "amount": "646.515119617", + "slot": { + "period": 73301, + "thread": 25 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 181900, + "thread": 31 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 361441, + "thread": 27 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 535968, + "thread": 24 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 797056, + "thread": 23 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 956680, + "thread": 8 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1125396, + "thread": 1 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1208576, + "thread": 0 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1380329, + "thread": 1 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1562238, + "thread": 25 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1754804, + "thread": 29 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 1931381, + "thread": 13 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2102884, + "thread": 14 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2266646, + "thread": 8 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2321675, + "thread": 20 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2615685, + "thread": 27 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2749530, + "thread": 18 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2876796, + "thread": 11 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 2955952, + "thread": 4 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 3121283, + "thread": 29 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 3320010, + "thread": 19 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 3520670, + "thread": 29 + } + }, + { + "amount": "646.515119617", + "slot": { + "period": 3654820, + "thread": 25 + } + }, + { + "amount": "646.515119616", + "slot": { + "period": 3792028, + "thread": 14 + } + } + ], + "AU1ZEVJHakPKWum6wBbjShJGn8DRRBCQXeEvDqj5wBCXgm9LKPsr": [ + { + "amount": "165.265330947", + "slot": { + "period": 47180, + "thread": 8 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 320808, + "thread": 28 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 403233, + "thread": 31 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 644807, + "thread": 23 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 658097, + "thread": 25 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 859095, + "thread": 5 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1072241, + "thread": 22 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1314696, + "thread": 3 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1387395, + "thread": 0 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1549597, + "thread": 3 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1721317, + "thread": 15 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 1826630, + "thread": 21 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2067822, + "thread": 30 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2264886, + "thread": 17 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2319563, + "thread": 24 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2550036, + "thread": 27 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2714769, + "thread": 16 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 2816786, + "thread": 11 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 3097093, + "thread": 8 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 3181915, + "thread": 22 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 3417477, + "thread": 27 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 3558747, + "thread": 4 + } + }, + { + "amount": "165.265330947", + "slot": { + "period": 3770204, + "thread": 29 + } + }, + { + "amount": "165.265330944", + "slot": { + "period": 3894433, + "thread": 27 + } + } + ], + "AU1ZEp7YQMcanNUuQJaY5BNzxurJkMYfEuNLwJHtFVRuHDqZVtwj": [ + { + "amount": "202.710752447", + "slot": { + "period": 58480, + "thread": 1 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 207586, + "thread": 20 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 405922, + "thread": 0 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 507525, + "thread": 14 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 664173, + "thread": 24 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 890585, + "thread": 26 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1024310, + "thread": 5 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1155146, + "thread": 16 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1448725, + "thread": 20 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1601895, + "thread": 2 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1758619, + "thread": 16 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 1925937, + "thread": 13 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2129202, + "thread": 4 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2239120, + "thread": 18 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2304086, + "thread": 18 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2536361, + "thread": 20 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2759013, + "thread": 9 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 2820208, + "thread": 17 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 3091556, + "thread": 23 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 3124144, + "thread": 16 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 3367044, + "thread": 27 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 3592393, + "thread": 22 + } + }, + { + "amount": "202.710752447", + "slot": { + "period": 3642208, + "thread": 28 + } + }, + { + "amount": "202.710752448", + "slot": { + "period": 3894807, + "thread": 26 + } + } + ], + "AU1ZEqfQQrhLB6VkTuue5cA45htxPNM1ad4oAagnnuHiZ5XEuWCg": [ + { + "amount": "298.152700433", + "slot": { + "period": 47938, + "thread": 25 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 295161, + "thread": 4 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 443497, + "thread": 30 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 652565, + "thread": 6 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 768850, + "thread": 2 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 899107, + "thread": 24 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1024762, + "thread": 29 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1156142, + "thread": 1 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1473028, + "thread": 0 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1615026, + "thread": 29 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1734716, + "thread": 0 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 1953466, + "thread": 18 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2075616, + "thread": 23 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2261643, + "thread": 29 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2394107, + "thread": 26 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2534797, + "thread": 18 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2660404, + "thread": 3 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2822282, + "thread": 9 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 2960522, + "thread": 25 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 3261006, + "thread": 29 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 3312562, + "thread": 27 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 3542825, + "thread": 25 + } + }, + { + "amount": "298.152700433", + "slot": { + "period": 3641929, + "thread": 25 + } + }, + { + "amount": "298.152700438", + "slot": { + "period": 3839695, + "thread": 1 + } + } + ], + "AU1ZFXkJLc41RmHQMPeascTJ9BKAf9byNe82MqTmcjuhUcdsGx3x": [ + { + "amount": "144.056523300", + "slot": { + "period": 30336, + "thread": 19 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 296322, + "thread": 5 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 339802, + "thread": 22 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 530316, + "thread": 14 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 809053, + "thread": 30 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 883408, + "thread": 27 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 991837, + "thread": 31 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 1267974, + "thread": 25 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 1348427, + "thread": 0 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 1562365, + "thread": 4 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 1780634, + "thread": 16 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 1913713, + "thread": 25 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2012956, + "thread": 17 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2189170, + "thread": 24 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2295469, + "thread": 2 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2566868, + "thread": 25 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2785184, + "thread": 29 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 2837309, + "thread": 17 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 3117579, + "thread": 3 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 3206112, + "thread": 14 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 3331974, + "thread": 9 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 3530199, + "thread": 1 + } + }, + { + "amount": "144.056523300", + "slot": { + "period": 3635484, + "thread": 1 + } + }, + { + "amount": "144.056523289", + "slot": { + "period": 3851576, + "thread": 31 + } + } + ], + "AU1ZJzVyXoWxmTs4qmXoFjwp1kxJ8JpjN2Rg8RUPJkStLsJwenVf": [ + { + "amount": "164.077425501", + "slot": { + "period": 36783, + "thread": 29 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 259053, + "thread": 26 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 469680, + "thread": 29 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 560004, + "thread": 12 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 806173, + "thread": 30 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 841145, + "thread": 19 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1006576, + "thread": 10 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1220773, + "thread": 23 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1461023, + "thread": 20 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1631836, + "thread": 1 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1684530, + "thread": 7 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1957643, + "thread": 22 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 1981920, + "thread": 28 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2205960, + "thread": 29 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2380503, + "thread": 25 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2485763, + "thread": 29 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2700261, + "thread": 4 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2815825, + "thread": 3 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 2979104, + "thread": 26 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 3153923, + "thread": 16 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 3324841, + "thread": 24 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 3558484, + "thread": 3 + } + }, + { + "amount": "164.077425501", + "slot": { + "period": 3717544, + "thread": 18 + } + }, + { + "amount": "164.077425496", + "slot": { + "period": 3900394, + "thread": 9 + } + } + ], + "AU1ZKyB5Lv8rGNomLjwPjqieXPyuS8U3UsAowXmLLpSqxo7zjjxW": [ + { + "amount": "234.409922393", + "slot": { + "period": 18301, + "thread": 26 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 212614, + "thread": 18 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 340820, + "thread": 12 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 584537, + "thread": 4 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 792640, + "thread": 31 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 848323, + "thread": 30 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1055751, + "thread": 19 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1171942, + "thread": 2 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1327873, + "thread": 23 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1643110, + "thread": 3 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1706432, + "thread": 5 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 1953135, + "thread": 7 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2009118, + "thread": 7 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2212041, + "thread": 14 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2429269, + "thread": 3 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2567387, + "thread": 6 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2697432, + "thread": 26 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 2901801, + "thread": 5 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 3036538, + "thread": 13 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 3275299, + "thread": 12 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 3395450, + "thread": 7 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 3533804, + "thread": 8 + } + }, + { + "amount": "234.409922393", + "slot": { + "period": 3769641, + "thread": 7 + } + }, + { + "amount": "234.409922391", + "slot": { + "period": 3870271, + "thread": 15 + } + } + ], + "AU1ZMAMwv5UDabLyvCwdVRZGSdgm5QmQAkAeZADuNaGZvENnyYHs": [ + { + "amount": "342.558237347", + "slot": { + "period": 151784, + "thread": 29 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 192915, + "thread": 21 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 326521, + "thread": 10 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 510470, + "thread": 12 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 815821, + "thread": 23 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 882740, + "thread": 0 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1095197, + "thread": 9 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1251694, + "thread": 9 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1397913, + "thread": 13 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1588694, + "thread": 14 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1737675, + "thread": 29 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 1948185, + "thread": 3 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2080492, + "thread": 30 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2282000, + "thread": 6 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2356149, + "thread": 21 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2482603, + "thread": 27 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2640634, + "thread": 21 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 2939738, + "thread": 2 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 3039473, + "thread": 8 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 3257125, + "thread": 28 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 3435092, + "thread": 3 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 3587185, + "thread": 18 + } + }, + { + "amount": "342.558237347", + "slot": { + "period": 3719358, + "thread": 26 + } + }, + { + "amount": "342.558237355", + "slot": { + "period": 3854749, + "thread": 6 + } + } + ], + "AU1ZMyjnp4bGAEhrbzEGniJw9pZEaCmda9tguxwjJn2AUjEheJBf": [ + { + "amount": "148.377652703", + "slot": { + "period": 131932, + "thread": 11 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 198062, + "thread": 26 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 368570, + "thread": 15 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 646785, + "thread": 9 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 766516, + "thread": 14 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 852690, + "thread": 15 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1090998, + "thread": 20 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1169216, + "thread": 22 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1410085, + "thread": 25 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1489604, + "thread": 15 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1662133, + "thread": 17 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 1927671, + "thread": 15 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2020774, + "thread": 0 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2223601, + "thread": 4 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2395915, + "thread": 2 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2512418, + "thread": 27 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2730469, + "thread": 5 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2897924, + "thread": 6 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 2973056, + "thread": 21 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 3270050, + "thread": 29 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 3342697, + "thread": 11 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 3579252, + "thread": 26 + } + }, + { + "amount": "148.377652703", + "slot": { + "period": 3660067, + "thread": 7 + } + }, + { + "amount": "148.377652697", + "slot": { + "period": 3891882, + "thread": 11 + } + } + ], + "AU1ZNZh9EJwrKFdwhpMbFWfcRSdWf2UdxV4usKQDJ9ynWzhdhxac": [ + { + "amount": "78.843891401", + "slot": { + "period": 67891, + "thread": 27 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 191544, + "thread": 20 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 405082, + "thread": 21 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 496837, + "thread": 15 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 819861, + "thread": 17 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 854479, + "thread": 24 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1138231, + "thread": 16 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1266998, + "thread": 9 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1321947, + "thread": 30 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1551341, + "thread": 27 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1683550, + "thread": 2 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 1850627, + "thread": 31 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2143672, + "thread": 11 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2224166, + "thread": 30 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2328409, + "thread": 13 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2501596, + "thread": 23 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2717231, + "thread": 0 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 2932344, + "thread": 8 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 3037179, + "thread": 12 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 3241769, + "thread": 4 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 3430344, + "thread": 12 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 3491882, + "thread": 26 + } + }, + { + "amount": "78.843891401", + "slot": { + "period": 3751379, + "thread": 0 + } + }, + { + "amount": "78.843891402", + "slot": { + "period": 3942100, + "thread": 0 + } + } + ], + "AU1ZNvh8NeUM88Y3Mae141dKdMfq2skU7NDRMXvtQYsvJ4pJsRCg": [ + { + "amount": "58.858152574", + "slot": { + "period": 78250, + "thread": 9 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 211266, + "thread": 6 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 325642, + "thread": 1 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 585912, + "thread": 26 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 715797, + "thread": 28 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 829768, + "thread": 12 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1082110, + "thread": 14 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1208791, + "thread": 13 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1413764, + "thread": 18 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1598871, + "thread": 22 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1653060, + "thread": 19 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 1898275, + "thread": 25 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2096040, + "thread": 14 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2255286, + "thread": 1 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2445374, + "thread": 21 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2559134, + "thread": 15 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2745109, + "thread": 2 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 2833256, + "thread": 19 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 3119523, + "thread": 1 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 3177458, + "thread": 13 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 3437953, + "thread": 15 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 3532329, + "thread": 5 + } + }, + { + "amount": "58.858152574", + "slot": { + "period": 3660000, + "thread": 22 + } + }, + { + "amount": "58.858152563", + "slot": { + "period": 3914158, + "thread": 12 + } + } + ], + "AU1ZQ2VUepBZY5XJYLXuXYG98gdLKDnqzbB8SFxqvBGg6fB11yBn": [ + { + "amount": "196.509942513", + "slot": { + "period": 95772, + "thread": 16 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 275380, + "thread": 17 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 342428, + "thread": 16 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 566331, + "thread": 5 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 812247, + "thread": 17 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 864037, + "thread": 6 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1112279, + "thread": 12 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1251965, + "thread": 6 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1375668, + "thread": 20 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1481657, + "thread": 23 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1698238, + "thread": 17 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1929900, + "thread": 8 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 1990445, + "thread": 19 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 2228089, + "thread": 11 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 2362619, + "thread": 29 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 2593807, + "thread": 9 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 2775239, + "thread": 31 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 2811166, + "thread": 13 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 3020349, + "thread": 20 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 3202789, + "thread": 28 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 3328856, + "thread": 7 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 3461654, + "thread": 19 + } + }, + { + "amount": "196.509942513", + "slot": { + "period": 3689936, + "thread": 26 + } + }, + { + "amount": "196.509942510", + "slot": { + "period": 3935385, + "thread": 7 + } + } + ], + "AU1ZQGD3cg7Ly2wXLbN9G23h1kK8qCaDAMVc3TR8pEry8PFRTA1V": [ + { + "amount": "193.089504277", + "slot": { + "period": 159584, + "thread": 23 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 268084, + "thread": 23 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 440895, + "thread": 10 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 632715, + "thread": 19 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 712769, + "thread": 8 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 913714, + "thread": 1 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1142895, + "thread": 31 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1267137, + "thread": 21 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1477025, + "thread": 30 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1539247, + "thread": 1 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1786932, + "thread": 7 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 1835437, + "thread": 23 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2032225, + "thread": 9 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2202621, + "thread": 16 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2408853, + "thread": 22 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2476454, + "thread": 18 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2735536, + "thread": 18 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 2867066, + "thread": 29 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 3115876, + "thread": 30 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 3209095, + "thread": 9 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 3390859, + "thread": 29 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 3601545, + "thread": 12 + } + }, + { + "amount": "193.089504277", + "slot": { + "period": 3629884, + "thread": 21 + } + }, + { + "amount": "193.089504287", + "slot": { + "period": 3854775, + "thread": 16 + } + } + ], + "AU1ZRCURh6f6WYTBM47XXZ6mb9VoQdPFAQc1dp6ytgkS4722JPqy": [ + { + "amount": "190.957217738", + "slot": { + "period": 16737, + "thread": 21 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 175903, + "thread": 17 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 438791, + "thread": 25 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 533424, + "thread": 23 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 755474, + "thread": 6 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 949504, + "thread": 12 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1043436, + "thread": 26 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1252745, + "thread": 23 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1367636, + "thread": 1 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1585687, + "thread": 31 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1684361, + "thread": 2 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 1836077, + "thread": 27 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2068672, + "thread": 23 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2255269, + "thread": 1 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2347248, + "thread": 5 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2608718, + "thread": 1 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2676695, + "thread": 9 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 2867666, + "thread": 2 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 3039376, + "thread": 9 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 3242330, + "thread": 1 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 3295812, + "thread": 11 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 3460506, + "thread": 16 + } + }, + { + "amount": "190.957217738", + "slot": { + "period": 3779604, + "thread": 26 + } + }, + { + "amount": "190.957217744", + "slot": { + "period": 3908921, + "thread": 2 + } + } + ], + "AU1ZRVP6Gn3sN37ofQcMKRXERvbCH9LXa1wJJYJP2HBCDzjHNDT8": [ + { + "amount": "146.060579334", + "slot": { + "period": 48292, + "thread": 24 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 228754, + "thread": 4 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 337172, + "thread": 8 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 536652, + "thread": 7 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 803613, + "thread": 26 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 846650, + "thread": 11 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 986632, + "thread": 2 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 1172369, + "thread": 10 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 1356507, + "thread": 7 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 1587837, + "thread": 30 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 1801839, + "thread": 28 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 1960206, + "thread": 12 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2127240, + "thread": 27 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2184744, + "thread": 10 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2423519, + "thread": 21 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2571655, + "thread": 9 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2632612, + "thread": 11 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 2795732, + "thread": 9 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 3015540, + "thread": 9 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 3269005, + "thread": 26 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 3371078, + "thread": 20 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 3465496, + "thread": 2 + } + }, + { + "amount": "146.060579334", + "slot": { + "period": 3767478, + "thread": 23 + } + }, + { + "amount": "146.060579325", + "slot": { + "period": 3805152, + "thread": 14 + } + } + ], + "AU1ZSmMo8KaCLZXJ8wGgCoHwc7sUq9B9gqPV2ooUSrE41R4DLsnd": [ + { + "amount": "80.453869831", + "slot": { + "period": 26385, + "thread": 17 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 242511, + "thread": 4 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 480801, + "thread": 25 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 547684, + "thread": 27 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 700562, + "thread": 29 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 931896, + "thread": 30 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1092108, + "thread": 4 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1254258, + "thread": 7 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1468213, + "thread": 20 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1620715, + "thread": 28 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1748870, + "thread": 23 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 1816268, + "thread": 27 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2002194, + "thread": 19 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2198302, + "thread": 21 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2395528, + "thread": 20 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2474104, + "thread": 2 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2687821, + "thread": 16 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 2865278, + "thread": 31 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 3008151, + "thread": 29 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 3177719, + "thread": 0 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 3445555, + "thread": 1 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 3596391, + "thread": 15 + } + }, + { + "amount": "80.453869831", + "slot": { + "period": 3689339, + "thread": 8 + } + }, + { + "amount": "80.453869824", + "slot": { + "period": 3871098, + "thread": 8 + } + } + ], + "AU1ZSmYp6mUMzQghGCSwGYp5PYLS23di5JQwJ28s6TEKRb9PdM3B": [ + { + "amount": "629.951264449", + "slot": { + "period": 107969, + "thread": 26 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 283386, + "thread": 6 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 378994, + "thread": 16 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 639654, + "thread": 20 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 783211, + "thread": 18 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 853356, + "thread": 15 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1149970, + "thread": 14 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1177266, + "thread": 24 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1472055, + "thread": 22 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1525979, + "thread": 24 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1678557, + "thread": 11 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 1971145, + "thread": 26 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2007575, + "thread": 12 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2229615, + "thread": 28 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2358740, + "thread": 1 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2560081, + "thread": 9 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2685994, + "thread": 19 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 2851191, + "thread": 28 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3046156, + "thread": 0 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3263058, + "thread": 25 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3405894, + "thread": 3 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3538469, + "thread": 24 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3698545, + "thread": 9 + } + }, + { + "amount": "629.951264449", + "slot": { + "period": 3903956, + "thread": 29 + } + } + ], + "AU1ZTxy2EfoVB4HzBSQS41f8KYhENLUGWD4uRrTf3X8RL4jAMVg5": [ + { + "amount": "227.131981429", + "slot": { + "period": 95804, + "thread": 19 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 262089, + "thread": 0 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 485860, + "thread": 9 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 638727, + "thread": 30 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 771513, + "thread": 23 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 839699, + "thread": 30 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1078738, + "thread": 9 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1253140, + "thread": 13 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1402486, + "thread": 12 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1488066, + "thread": 16 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1775794, + "thread": 7 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 1949817, + "thread": 31 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2092756, + "thread": 2 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2197246, + "thread": 2 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2388919, + "thread": 4 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2556163, + "thread": 4 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2783726, + "thread": 9 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 2874070, + "thread": 17 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 3055033, + "thread": 24 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 3223620, + "thread": 12 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 3310436, + "thread": 11 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 3573792, + "thread": 5 + } + }, + { + "amount": "227.131981429", + "slot": { + "period": 3733021, + "thread": 3 + } + }, + { + "amount": "227.131981428", + "slot": { + "period": 3784791, + "thread": 28 + } + } + ], + "AU1ZU515zdm7Z2d9KgCxXYkHCPFej9MssQVMpVVWPJKU7o8zyU7u": [ + { + "amount": "106.129006612", + "slot": { + "period": 70602, + "thread": 25 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 271549, + "thread": 24 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 464301, + "thread": 6 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 609613, + "thread": 28 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 680911, + "thread": 13 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 873270, + "thread": 15 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1000920, + "thread": 22 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1246971, + "thread": 1 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1456881, + "thread": 14 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1490634, + "thread": 9 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1746845, + "thread": 9 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 1896233, + "thread": 15 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2141166, + "thread": 13 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2277050, + "thread": 0 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2326202, + "thread": 15 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2479914, + "thread": 3 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2692143, + "thread": 14 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2898512, + "thread": 3 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 2969429, + "thread": 26 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 3269515, + "thread": 10 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 3381551, + "thread": 0 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 3469310, + "thread": 1 + } + }, + { + "amount": "106.129006612", + "slot": { + "period": 3674264, + "thread": 11 + } + }, + { + "amount": "106.129006621", + "slot": { + "period": 3834754, + "thread": 27 + } + } + ], + "AU1ZU6iVdUegxHXEfRLD8hmT4EZ9NgAnKPFAo4AcpGuCNZWrUXfY": [ + { + "amount": "406.719523400", + "slot": { + "period": 71992, + "thread": 23 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 294449, + "thread": 31 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 441663, + "thread": 10 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 500543, + "thread": 15 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 754898, + "thread": 13 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 932469, + "thread": 25 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 988547, + "thread": 10 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1169065, + "thread": 15 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1371235, + "thread": 7 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1491213, + "thread": 4 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1800976, + "thread": 16 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1827136, + "thread": 18 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 1978704, + "thread": 8 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 2220597, + "thread": 19 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 2298065, + "thread": 15 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 2464398, + "thread": 24 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 2641516, + "thread": 4 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 2914389, + "thread": 15 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 3008158, + "thread": 3 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 3286286, + "thread": 4 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 3407469, + "thread": 19 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 3543100, + "thread": 14 + } + }, + { + "amount": "406.719523400", + "slot": { + "period": 3643704, + "thread": 13 + } + }, + { + "amount": "406.719523403", + "slot": { + "period": 3931183, + "thread": 9 + } + } + ], + "AU1ZUc5DAJ9p7KYo4fCLpHi1EULRuiBqaj1WstVfoKLdy5KFrSK9": [ + { + "amount": "331.399568905", + "slot": { + "period": 61482, + "thread": 14 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 226404, + "thread": 14 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 467215, + "thread": 5 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 616717, + "thread": 1 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 786929, + "thread": 9 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 971384, + "thread": 4 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1088002, + "thread": 22 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1305246, + "thread": 12 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1395110, + "thread": 14 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1537323, + "thread": 7 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1677564, + "thread": 31 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 1975960, + "thread": 1 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2113027, + "thread": 16 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2265284, + "thread": 13 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2450115, + "thread": 21 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2495086, + "thread": 23 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2714390, + "thread": 2 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 2872029, + "thread": 29 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 3023170, + "thread": 15 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 3230569, + "thread": 11 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 3317510, + "thread": 2 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 3493644, + "thread": 16 + } + }, + { + "amount": "331.399568905", + "slot": { + "period": 3749362, + "thread": 0 + } + }, + { + "amount": "331.399568894", + "slot": { + "period": 3893588, + "thread": 1 + } + } + ], + "AU1ZUz1XDJVDykPaw86FHzcsKet9hD7aoDmXYh4rUaXYSgqyjkXV": [ + { + "amount": "55.247548707", + "slot": { + "period": 125168, + "thread": 12 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 221532, + "thread": 29 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 463085, + "thread": 31 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 567034, + "thread": 29 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 745220, + "thread": 22 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 894875, + "thread": 27 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1025364, + "thread": 1 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1199624, + "thread": 3 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1384669, + "thread": 31 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1595048, + "thread": 26 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1658866, + "thread": 22 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 1871040, + "thread": 4 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2053131, + "thread": 27 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2194044, + "thread": 21 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2333763, + "thread": 29 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2506429, + "thread": 1 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2710560, + "thread": 9 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 2928334, + "thread": 26 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 3061858, + "thread": 0 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 3197308, + "thread": 22 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 3395883, + "thread": 0 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 3510215, + "thread": 26 + } + }, + { + "amount": "55.247548707", + "slot": { + "period": 3745277, + "thread": 10 + } + }, + { + "amount": "55.247548710", + "slot": { + "period": 3838882, + "thread": 4 + } + } + ], + "AU1ZVBZvUxQpKANywUDUMsEvthzYiG7HDmPViR3uxBr7NY3Y4man": [ + { + "amount": "71.557376024", + "slot": { + "period": 96126, + "thread": 12 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 252319, + "thread": 8 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 387582, + "thread": 21 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 541423, + "thread": 3 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 697094, + "thread": 7 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 923909, + "thread": 9 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1043090, + "thread": 25 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1295668, + "thread": 13 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1341249, + "thread": 29 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1512055, + "thread": 11 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1759806, + "thread": 16 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 1848241, + "thread": 11 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2106152, + "thread": 28 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2175617, + "thread": 3 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2347778, + "thread": 24 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2484660, + "thread": 0 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2707221, + "thread": 11 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2794832, + "thread": 11 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 2996455, + "thread": 21 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 3240543, + "thread": 20 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 3323499, + "thread": 24 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 3511127, + "thread": 4 + } + }, + { + "amount": "71.557376024", + "slot": { + "period": 3726752, + "thread": 6 + } + }, + { + "amount": "71.557376013", + "slot": { + "period": 3837503, + "thread": 12 + } + } + ], + "AU1ZVruQDfXVPt8ACLasbTDp59zKWXUHR1srFHLYtNQKxBV6VuzY": [ + { + "amount": "166.939623741", + "slot": { + "period": 83538, + "thread": 17 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 265677, + "thread": 12 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 447911, + "thread": 7 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 498218, + "thread": 13 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 741212, + "thread": 1 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 882146, + "thread": 26 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1059346, + "thread": 26 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1192148, + "thread": 19 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1376400, + "thread": 22 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1632974, + "thread": 22 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1721710, + "thread": 2 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1967023, + "thread": 26 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 1998248, + "thread": 5 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2278618, + "thread": 30 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2443216, + "thread": 18 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2492279, + "thread": 17 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2718800, + "thread": 6 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2940912, + "thread": 3 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 2966152, + "thread": 24 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 3254750, + "thread": 9 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 3421026, + "thread": 19 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 3561403, + "thread": 5 + } + }, + { + "amount": "166.939623741", + "slot": { + "period": 3773007, + "thread": 28 + } + }, + { + "amount": "166.939623745", + "slot": { + "period": 3909291, + "thread": 28 + } + } + ], + "AU1ZW5LAUpvHjmn9YnKBawAcLRuYHBNHyh8GYhTXwgEfGLUbDRaR": [ + { + "amount": "376.169983651", + "slot": { + "period": 23922, + "thread": 31 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 193412, + "thread": 19 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 481692, + "thread": 5 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 521067, + "thread": 12 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 810195, + "thread": 10 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 846532, + "thread": 9 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1044076, + "thread": 17 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1281127, + "thread": 10 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1427783, + "thread": 13 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1501755, + "thread": 26 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1692409, + "thread": 16 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 1810228, + "thread": 29 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2133854, + "thread": 19 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2152939, + "thread": 2 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2314922, + "thread": 1 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2615991, + "thread": 23 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2756540, + "thread": 23 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 2818138, + "thread": 21 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 3074097, + "thread": 19 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 3157227, + "thread": 6 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 3342275, + "thread": 7 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 3566095, + "thread": 19 + } + }, + { + "amount": "376.169983651", + "slot": { + "period": 3652575, + "thread": 6 + } + }, + { + "amount": "376.169983659", + "slot": { + "period": 3868479, + "thread": 21 + } + } + ], + "AU1ZWAVkopnPev9PgUouj7n3AtdXM8H1QX619XFD5oSkuEZdbSZA": [ + { + "amount": "1704.574468982", + "slot": { + "period": 46715, + "thread": 18 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 203148, + "thread": 24 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 472362, + "thread": 17 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 544927, + "thread": 2 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 819895, + "thread": 15 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 856496, + "thread": 11 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 996361, + "thread": 20 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1302053, + "thread": 12 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1387240, + "thread": 19 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1638334, + "thread": 2 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1653799, + "thread": 7 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1835612, + "thread": 19 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 1982638, + "thread": 10 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 2202122, + "thread": 1 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 2425620, + "thread": 11 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 2615685, + "thread": 30 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 2745912, + "thread": 24 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 2827949, + "thread": 8 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 3057303, + "thread": 17 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 3141847, + "thread": 25 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 3392347, + "thread": 21 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 3460210, + "thread": 19 + } + }, + { + "amount": "1704.574468982", + "slot": { + "period": 3666566, + "thread": 20 + } + }, + { + "amount": "1704.574468974", + "slot": { + "period": 3833446, + "thread": 6 + } + } + ], + "AU1ZX7hsyzBe12RnbPrCfQsK29BRHHuRMitY5QPbWHzwRH1RDJpE": [ + { + "amount": "318.286772745", + "slot": { + "period": 64337, + "thread": 11 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 169791, + "thread": 1 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 450833, + "thread": 6 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 571239, + "thread": 29 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 819341, + "thread": 20 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 846828, + "thread": 28 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1118987, + "thread": 7 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1208789, + "thread": 1 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1430542, + "thread": 17 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1603924, + "thread": 7 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1708659, + "thread": 31 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 1809892, + "thread": 26 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2002561, + "thread": 20 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2249900, + "thread": 28 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2428385, + "thread": 24 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2623495, + "thread": 13 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2728680, + "thread": 6 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 2798681, + "thread": 1 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 3018446, + "thread": 17 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 3196780, + "thread": 3 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 3391401, + "thread": 23 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 3591924, + "thread": 2 + } + }, + { + "amount": "318.286772745", + "slot": { + "period": 3717624, + "thread": 8 + } + }, + { + "amount": "318.286772746", + "slot": { + "period": 3902484, + "thread": 10 + } + } + ], + "AU1ZXWX5g9DaCQHq6dy9kXPA1Y6rS2NwV1uxYfRuVd8xyKGrQCCv": [ + { + "amount": "188.404734806", + "slot": { + "period": 40401, + "thread": 18 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 296030, + "thread": 23 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 347470, + "thread": 24 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 605078, + "thread": 8 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 775754, + "thread": 19 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 829681, + "thread": 30 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1093786, + "thread": 31 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1173669, + "thread": 27 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1340350, + "thread": 25 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1624329, + "thread": 7 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1669337, + "thread": 16 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 1908791, + "thread": 12 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2088754, + "thread": 5 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2241307, + "thread": 0 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2373404, + "thread": 3 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2555397, + "thread": 27 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2762918, + "thread": 11 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 2868074, + "thread": 16 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 3098339, + "thread": 9 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 3162535, + "thread": 11 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 3376761, + "thread": 22 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 3506931, + "thread": 24 + } + }, + { + "amount": "188.404734806", + "slot": { + "period": 3709256, + "thread": 27 + } + }, + { + "amount": "188.404734805", + "slot": { + "period": 3809747, + "thread": 26 + } + } + ], + "AU1ZXa7se9rXw9PouCJhfKBy2tutfD7Di67iVGH2TSMS671xTE2a": [ + { + "amount": "229.267042179", + "slot": { + "period": 68539, + "thread": 22 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 321839, + "thread": 3 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 367897, + "thread": 31 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 507496, + "thread": 20 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 753532, + "thread": 10 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 966142, + "thread": 12 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1054869, + "thread": 29 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1163403, + "thread": 8 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1422205, + "thread": 13 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1560467, + "thread": 2 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1651304, + "thread": 5 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 1841947, + "thread": 0 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2077916, + "thread": 17 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2208397, + "thread": 4 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2439548, + "thread": 18 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2573870, + "thread": 27 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2654491, + "thread": 11 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 2916919, + "thread": 19 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 3085083, + "thread": 17 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 3124075, + "thread": 0 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 3362058, + "thread": 26 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 3513260, + "thread": 11 + } + }, + { + "amount": "229.267042179", + "slot": { + "period": 3724558, + "thread": 31 + } + }, + { + "amount": "229.267042176", + "slot": { + "period": 3833939, + "thread": 20 + } + } + ], + "AU1ZY6ybmM74tysSCcM6MedP7XQS3txY3JRKm7fmu17AaDpc88qA": [ + { + "amount": "70.460543531", + "slot": { + "period": 86253, + "thread": 17 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 188000, + "thread": 2 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 340558, + "thread": 24 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 619962, + "thread": 4 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 697501, + "thread": 8 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 966721, + "thread": 24 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1099451, + "thread": 22 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1222545, + "thread": 4 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1362705, + "thread": 21 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1541304, + "thread": 13 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1727628, + "thread": 0 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1868008, + "thread": 25 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 1986859, + "thread": 30 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 2228140, + "thread": 8 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 2400906, + "thread": 4 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 2548644, + "thread": 18 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 2770220, + "thread": 31 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 2866871, + "thread": 12 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 3063050, + "thread": 23 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 3130799, + "thread": 22 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 3401975, + "thread": 23 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 3505738, + "thread": 27 + } + }, + { + "amount": "70.460543531", + "slot": { + "period": 3713323, + "thread": 22 + } + }, + { + "amount": "70.460543536", + "slot": { + "period": 3893767, + "thread": 29 + } + } + ], + "AU1ZYQHRgTgh3JvSSoDHTz7iJGczt7LFe5pjuzoUYSCjqeotNwoK": [ + { + "amount": "143.599554463", + "slot": { + "period": 142258, + "thread": 27 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 198937, + "thread": 22 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 356923, + "thread": 27 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 539603, + "thread": 11 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 793936, + "thread": 17 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 899514, + "thread": 19 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1071903, + "thread": 25 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1193723, + "thread": 31 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1347182, + "thread": 7 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1543607, + "thread": 22 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1647290, + "thread": 17 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 1916268, + "thread": 14 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2028540, + "thread": 29 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2226179, + "thread": 7 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2407136, + "thread": 19 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2593179, + "thread": 30 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2728909, + "thread": 31 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 2899665, + "thread": 5 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 3106566, + "thread": 0 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 3168503, + "thread": 27 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 3360913, + "thread": 4 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 3453899, + "thread": 30 + } + }, + { + "amount": "143.599554463", + "slot": { + "period": 3622359, + "thread": 13 + } + }, + { + "amount": "143.599554456", + "slot": { + "period": 3893308, + "thread": 24 + } + } + ], + "AU1ZYUEKKv7Fsy8n8DJgEC5BusD8EqrbRiuBJEAFmXcdA7GScUUn": [ + { + "amount": "77.815668664", + "slot": { + "period": 56122, + "thread": 13 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 259859, + "thread": 0 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 421016, + "thread": 3 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 508036, + "thread": 4 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 765104, + "thread": 7 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 834971, + "thread": 9 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1108199, + "thread": 21 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1213980, + "thread": 23 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1407742, + "thread": 16 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1484287, + "thread": 28 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1728281, + "thread": 12 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 1855096, + "thread": 15 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2028811, + "thread": 13 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2267254, + "thread": 5 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2359326, + "thread": 29 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2479287, + "thread": 3 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2671146, + "thread": 25 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 2864553, + "thread": 3 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 3065324, + "thread": 9 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 3139296, + "thread": 20 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 3335890, + "thread": 29 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 3453966, + "thread": 25 + } + }, + { + "amount": "77.815668664", + "slot": { + "period": 3622292, + "thread": 2 + } + }, + { + "amount": "77.815668659", + "slot": { + "period": 3812244, + "thread": 11 + } + } + ], + "AU1ZZ8xmVVtByP4wZch2VcMCYV8a3uE3bjDikZE54LaYuwmU8Qc4": [ + { + "amount": "602.905948050", + "slot": { + "period": 101397, + "thread": 22 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 277563, + "thread": 5 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 464471, + "thread": 23 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 542467, + "thread": 1 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 689127, + "thread": 24 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 831635, + "thread": 8 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1087197, + "thread": 31 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1199267, + "thread": 25 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1426683, + "thread": 21 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1564581, + "thread": 26 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1654945, + "thread": 9 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1971270, + "thread": 16 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 1992589, + "thread": 10 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2218751, + "thread": 22 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2402254, + "thread": 30 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2563002, + "thread": 3 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2741444, + "thread": 17 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2835635, + "thread": 24 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 2975684, + "thread": 30 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 3145553, + "thread": 2 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 3394693, + "thread": 2 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 3615930, + "thread": 27 + } + }, + { + "amount": "602.905948050", + "slot": { + "period": 3635955, + "thread": 15 + } + }, + { + "amount": "602.905948039", + "slot": { + "period": 3844158, + "thread": 26 + } + } + ], + "AU1ZavYPAUkqjvY1PjbHM9N2BJjLSLuiA5fPGSX1dUXiDdhvNPK2": [ + { + "amount": "166.970506621", + "slot": { + "period": 158555, + "thread": 14 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 215542, + "thread": 0 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 486202, + "thread": 20 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 523468, + "thread": 6 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 802892, + "thread": 22 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 951662, + "thread": 8 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1075293, + "thread": 3 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1293399, + "thread": 10 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1369364, + "thread": 1 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1625166, + "thread": 27 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1656331, + "thread": 26 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 1870026, + "thread": 10 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2131488, + "thread": 27 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2221609, + "thread": 10 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2304433, + "thread": 24 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2502352, + "thread": 13 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2776966, + "thread": 1 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 2809831, + "thread": 13 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3029539, + "thread": 19 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3170338, + "thread": 16 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3310102, + "thread": 11 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3566097, + "thread": 20 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3630108, + "thread": 25 + } + }, + { + "amount": "166.970506621", + "slot": { + "period": 3929676, + "thread": 21 + } + } + ], + "AU1Zb6S6Hx9fuiqgaE5LM8nigHfEW9va2ZUrwmja9GC7ncxZVx1k": [ + { + "amount": "100.298681321", + "slot": { + "period": 157200, + "thread": 21 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 229058, + "thread": 18 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 387773, + "thread": 19 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 626682, + "thread": 12 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 745254, + "thread": 3 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 884760, + "thread": 8 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 987087, + "thread": 23 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 1172864, + "thread": 28 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 1423446, + "thread": 15 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 1532949, + "thread": 8 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 1808456, + "thread": 23 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 1921558, + "thread": 11 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2105679, + "thread": 29 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2266150, + "thread": 19 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2322696, + "thread": 22 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2477463, + "thread": 4 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2778098, + "thread": 0 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 2862024, + "thread": 27 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 3086647, + "thread": 27 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 3125843, + "thread": 17 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 3314169, + "thread": 3 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 3460482, + "thread": 18 + } + }, + { + "amount": "100.298681321", + "slot": { + "period": 3725589, + "thread": 9 + } + }, + { + "amount": "100.298681312", + "slot": { + "period": 3796548, + "thread": 1 + } + } + ], + "AU1ZbgXzHiy9R8FP6kzCXSJ3ZyPPi4vm296RGSsb9eCi2iQ6qxFs": [ + { + "amount": "179.827876445", + "slot": { + "period": 136007, + "thread": 13 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 244813, + "thread": 22 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 448649, + "thread": 4 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 556273, + "thread": 4 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 776134, + "thread": 22 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 837681, + "thread": 3 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1136537, + "thread": 16 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1315892, + "thread": 11 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1468797, + "thread": 22 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1588418, + "thread": 23 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1744225, + "thread": 22 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 1867524, + "thread": 11 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2043970, + "thread": 18 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2236809, + "thread": 12 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2296799, + "thread": 25 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2509612, + "thread": 19 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2755755, + "thread": 11 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 2841177, + "thread": 1 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 3117931, + "thread": 13 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 3260754, + "thread": 7 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 3323824, + "thread": 6 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 3605804, + "thread": 6 + } + }, + { + "amount": "179.827876445", + "slot": { + "period": 3727973, + "thread": 9 + } + }, + { + "amount": "179.827876434", + "slot": { + "period": 3852766, + "thread": 10 + } + } + ], + "AU1Zc3pqyAo252FQfaDvdMvGetWCA8GkX8Ys7QCrXkYo8XRHivet": [ + { + "amount": "271.598622480", + "slot": { + "period": 141402, + "thread": 8 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 170373, + "thread": 29 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 387204, + "thread": 2 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 555589, + "thread": 22 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 769386, + "thread": 26 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 969769, + "thread": 5 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1055057, + "thread": 24 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1175639, + "thread": 14 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1330652, + "thread": 31 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1488476, + "thread": 15 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1705228, + "thread": 6 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 1819564, + "thread": 6 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2106692, + "thread": 28 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2152381, + "thread": 30 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2336520, + "thread": 15 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2574986, + "thread": 16 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2698763, + "thread": 24 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 2901418, + "thread": 15 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 3027594, + "thread": 26 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 3134457, + "thread": 3 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 3435356, + "thread": 17 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 3586209, + "thread": 28 + } + }, + { + "amount": "271.598622480", + "slot": { + "period": 3771829, + "thread": 15 + } + }, + { + "amount": "271.598622478", + "slot": { + "period": 3818194, + "thread": 15 + } + } + ], + "AU1ZcNC7RYuabupMEKbntHaJUxqPQ8ZhrM2LnqDqygNatorcjwMh": [ + { + "amount": "149.629602460", + "slot": { + "period": 115305, + "thread": 10 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 317523, + "thread": 13 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 364534, + "thread": 6 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 630418, + "thread": 14 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 691779, + "thread": 26 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 823590, + "thread": 24 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1093295, + "thread": 10 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1172887, + "thread": 17 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1473274, + "thread": 24 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1621329, + "thread": 12 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1656569, + "thread": 0 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 1843835, + "thread": 27 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2084346, + "thread": 17 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2263849, + "thread": 31 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2338268, + "thread": 17 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2623646, + "thread": 21 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2766744, + "thread": 0 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 2941980, + "thread": 26 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 3101668, + "thread": 29 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 3143103, + "thread": 3 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 3337273, + "thread": 20 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 3589977, + "thread": 28 + } + }, + { + "amount": "149.629602460", + "slot": { + "period": 3689746, + "thread": 14 + } + }, + { + "amount": "149.629602451", + "slot": { + "period": 3801871, + "thread": 20 + } + } + ], + "AU1ZcbB4s3HZSies3aomeHCSQizPqBXiJXWrMQsBMBk1txasi3oS": [ + { + "amount": "138.212355964", + "slot": { + "period": 153020, + "thread": 3 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 243469, + "thread": 10 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 473328, + "thread": 18 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 638226, + "thread": 28 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 747016, + "thread": 21 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 972116, + "thread": 18 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1117987, + "thread": 19 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1256305, + "thread": 3 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1403183, + "thread": 24 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1582390, + "thread": 31 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1749615, + "thread": 14 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 1934319, + "thread": 28 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2080189, + "thread": 10 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2199107, + "thread": 8 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2346074, + "thread": 27 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2490613, + "thread": 8 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2790053, + "thread": 8 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2929501, + "thread": 15 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 2962107, + "thread": 24 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 3167394, + "thread": 28 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 3410433, + "thread": 31 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 3496618, + "thread": 9 + } + }, + { + "amount": "138.212355964", + "slot": { + "period": 3768528, + "thread": 0 + } + }, + { + "amount": "138.212355960", + "slot": { + "period": 3844489, + "thread": 28 + } + } + ], + "AU1Zcn14G3b672sMtd22UnZdoNUEHC7wL6Radw3KYMQAFNc3BSrk": [ + { + "amount": "145.912396125", + "slot": { + "period": 55984, + "thread": 10 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 221596, + "thread": 10 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 344804, + "thread": 22 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 565230, + "thread": 22 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 672915, + "thread": 21 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 906984, + "thread": 26 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1056526, + "thread": 13 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1236087, + "thread": 29 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1398454, + "thread": 30 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1611317, + "thread": 9 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1738238, + "thread": 8 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 1912142, + "thread": 8 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2064995, + "thread": 10 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2200919, + "thread": 5 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2344847, + "thread": 24 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2558384, + "thread": 12 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2736224, + "thread": 22 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 2863709, + "thread": 21 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 3044454, + "thread": 29 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 3156511, + "thread": 26 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 3351476, + "thread": 28 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 3530620, + "thread": 7 + } + }, + { + "amount": "145.912396125", + "slot": { + "period": 3714609, + "thread": 15 + } + }, + { + "amount": "145.912396132", + "slot": { + "period": 3851664, + "thread": 10 + } + } + ], + "AU1ZcqyD3QATiHr7DM7UMeenGRby97vQ5Uk8Pbz5JUw1hybYz2sx": [ + { + "amount": "217.032601826", + "slot": { + "period": 145768, + "thread": 14 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 168653, + "thread": 26 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 462768, + "thread": 8 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 651035, + "thread": 29 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 691047, + "thread": 10 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 934215, + "thread": 26 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1016436, + "thread": 15 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1239694, + "thread": 17 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1404505, + "thread": 30 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1549944, + "thread": 2 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1682503, + "thread": 4 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1878174, + "thread": 30 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 1993719, + "thread": 28 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 2286044, + "thread": 30 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 2297207, + "thread": 0 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 2588413, + "thread": 14 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 2683971, + "thread": 11 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 2950471, + "thread": 24 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 3087188, + "thread": 8 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 3186762, + "thread": 20 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 3409009, + "thread": 7 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 3586618, + "thread": 31 + } + }, + { + "amount": "217.032601826", + "slot": { + "period": 3749338, + "thread": 17 + } + }, + { + "amount": "217.032601816", + "slot": { + "period": 3894782, + "thread": 3 + } + } + ], + "AU1ZdDDVnoKKByYHbA8DvFvkjBS9MrmJNhvGpinK8juiYhBjejaq": [ + { + "amount": "76.752753327", + "slot": { + "period": 55656, + "thread": 25 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 296733, + "thread": 25 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 394334, + "thread": 25 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 647806, + "thread": 22 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 789817, + "thread": 3 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 856829, + "thread": 8 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1089237, + "thread": 21 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1180122, + "thread": 0 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1342326, + "thread": 24 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1504766, + "thread": 14 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1799299, + "thread": 10 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 1842273, + "thread": 23 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2048797, + "thread": 19 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2181350, + "thread": 14 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2371047, + "thread": 6 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2551913, + "thread": 16 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2769339, + "thread": 15 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2869775, + "thread": 22 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 2964715, + "thread": 11 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 3254018, + "thread": 7 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 3416396, + "thread": 6 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 3480510, + "thread": 22 + } + }, + { + "amount": "76.752753327", + "slot": { + "period": 3676874, + "thread": 20 + } + }, + { + "amount": "76.752753319", + "slot": { + "period": 3923058, + "thread": 6 + } + } + ], + "AU1Zdx2XvAw8nUF5pagb6szHQHZMNJbMAMBBB1Mcd5UveQRc1YiP": [ + { + "amount": "141.840066248", + "slot": { + "period": 132774, + "thread": 28 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 306767, + "thread": 8 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 483787, + "thread": 5 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 648374, + "thread": 14 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 750080, + "thread": 24 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 950904, + "thread": 7 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 992865, + "thread": 12 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 1312912, + "thread": 1 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 1456117, + "thread": 25 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 1505176, + "thread": 4 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 1710421, + "thread": 7 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 1902365, + "thread": 2 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2058665, + "thread": 29 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2165909, + "thread": 24 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2456493, + "thread": 5 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2562549, + "thread": 5 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2762291, + "thread": 14 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 2875387, + "thread": 18 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 3087268, + "thread": 27 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 3170256, + "thread": 17 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 3443997, + "thread": 15 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 3466745, + "thread": 29 + } + }, + { + "amount": "141.840066248", + "slot": { + "period": 3756823, + "thread": 20 + } + }, + { + "amount": "141.840066259", + "slot": { + "period": 3885343, + "thread": 1 + } + } + ], + "AU1ZfdovuRxwFMiPUqARGDswC99QxJSESY54t7844tyiUQWhB9Zi": [ + { + "amount": "311.625105047", + "slot": { + "period": 156723, + "thread": 30 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 247340, + "thread": 9 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 382664, + "thread": 15 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 646170, + "thread": 18 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 657889, + "thread": 11 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 946135, + "thread": 23 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1029461, + "thread": 11 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1231877, + "thread": 16 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1432850, + "thread": 18 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1572704, + "thread": 23 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1745093, + "thread": 21 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 1894966, + "thread": 10 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2058807, + "thread": 6 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2269167, + "thread": 30 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2411830, + "thread": 21 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2489076, + "thread": 10 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2714494, + "thread": 8 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 2947460, + "thread": 19 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 3085957, + "thread": 2 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 3179878, + "thread": 27 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 3409672, + "thread": 8 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 3460378, + "thread": 12 + } + }, + { + "amount": "311.625105047", + "slot": { + "period": 3637675, + "thread": 9 + } + }, + { + "amount": "311.625105044", + "slot": { + "period": 3884597, + "thread": 14 + } + } + ], + "AU1ZjNoVc8QJYCgw4raigheprVxZ4KtTiMDbN7AfQG8A7u14fyPf": [ + { + "amount": "515.177447541", + "slot": { + "period": 160532, + "thread": 17 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 252875, + "thread": 14 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 366887, + "thread": 3 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 617686, + "thread": 11 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 703449, + "thread": 9 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 979047, + "thread": 25 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1100830, + "thread": 29 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1219138, + "thread": 25 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1320381, + "thread": 12 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1503629, + "thread": 13 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1748599, + "thread": 17 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 1827777, + "thread": 31 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2005113, + "thread": 13 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2182917, + "thread": 7 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2322552, + "thread": 23 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2475307, + "thread": 29 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2673416, + "thread": 10 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2808132, + "thread": 4 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 2980678, + "thread": 31 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 3178420, + "thread": 8 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 3341149, + "thread": 4 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 3548799, + "thread": 26 + } + }, + { + "amount": "515.177447541", + "slot": { + "period": 3718056, + "thread": 0 + } + }, + { + "amount": "515.177447548", + "slot": { + "period": 3828356, + "thread": 7 + } + } + ], + "AU1ZjrBnEa2GrT96FnjWyMx1Du747wah2iSCg9eeubK9JCgo84M6": [ + { + "amount": "90.638197231", + "slot": { + "period": 88638, + "thread": 2 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 206122, + "thread": 23 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 451504, + "thread": 10 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 515339, + "thread": 9 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 756932, + "thread": 15 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 887236, + "thread": 0 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1048656, + "thread": 11 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1264393, + "thread": 28 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1453529, + "thread": 3 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1584423, + "thread": 13 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1710307, + "thread": 14 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 1860124, + "thread": 10 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2133554, + "thread": 29 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2279180, + "thread": 28 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2403876, + "thread": 4 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2575203, + "thread": 4 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2626193, + "thread": 8 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 2881669, + "thread": 11 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 3030799, + "thread": 3 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 3127232, + "thread": 30 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 3399808, + "thread": 2 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 3590695, + "thread": 5 + } + }, + { + "amount": "90.638197231", + "slot": { + "period": 3756607, + "thread": 24 + } + }, + { + "amount": "90.638197222", + "slot": { + "period": 3918947, + "thread": 30 + } + } + ], + "AU1ZkcvWtyAwcsPHgRx4W1yY5BKRvJdYgHDP4KkeKWBEmD4CW8HR": [ + { + "amount": "236.934683282", + "slot": { + "period": 132570, + "thread": 22 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 182641, + "thread": 15 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 425817, + "thread": 22 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 608779, + "thread": 27 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 745717, + "thread": 20 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 981595, + "thread": 1 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1009506, + "thread": 30 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1208570, + "thread": 14 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1381218, + "thread": 28 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1555459, + "thread": 27 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1794323, + "thread": 12 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 1843626, + "thread": 18 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2125981, + "thread": 10 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2281259, + "thread": 23 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2365167, + "thread": 22 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2575330, + "thread": 11 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2716833, + "thread": 14 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 2880057, + "thread": 3 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 3004659, + "thread": 5 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 3270755, + "thread": 22 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 3386491, + "thread": 27 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 3501418, + "thread": 11 + } + }, + { + "amount": "236.934683282", + "slot": { + "period": 3638188, + "thread": 3 + } + }, + { + "amount": "236.934683275", + "slot": { + "period": 3800677, + "thread": 2 + } + } + ], + "AU1ZmEtdCPdX9ouqE3xVsEdM7R5nDzB1M2NbfgWE13Az2KRCxPUt": [ + { + "amount": "79.731435147", + "slot": { + "period": 71307, + "thread": 10 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 218308, + "thread": 24 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 442949, + "thread": 10 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 502148, + "thread": 11 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 797121, + "thread": 12 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 976533, + "thread": 12 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1017670, + "thread": 8 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1232452, + "thread": 10 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1360224, + "thread": 24 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1635504, + "thread": 30 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1671821, + "thread": 14 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 1880934, + "thread": 12 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2036032, + "thread": 14 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2286839, + "thread": 2 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2460842, + "thread": 9 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2536840, + "thread": 5 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2738374, + "thread": 25 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 2902089, + "thread": 3 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 3119916, + "thread": 12 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 3273199, + "thread": 1 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 3366319, + "thread": 12 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 3479567, + "thread": 19 + } + }, + { + "amount": "79.731435147", + "slot": { + "period": 3628007, + "thread": 0 + } + }, + { + "amount": "79.731435158", + "slot": { + "period": 3852424, + "thread": 1 + } + } + ], + "AU1ZmFWRE85QKMp5KqRrRW97VD7WLEnF3Hbw5J8dhwLXWmdPhknu": [ + { + "amount": "519.480640545", + "slot": { + "period": 63330, + "thread": 14 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 181742, + "thread": 14 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 367433, + "thread": 17 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 539613, + "thread": 3 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 713180, + "thread": 27 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 945427, + "thread": 26 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1132178, + "thread": 9 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1315188, + "thread": 29 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1430628, + "thread": 10 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1635594, + "thread": 29 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1698241, + "thread": 8 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 1833127, + "thread": 18 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2003387, + "thread": 20 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2184372, + "thread": 13 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2358049, + "thread": 27 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2468173, + "thread": 1 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2788105, + "thread": 11 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2934274, + "thread": 12 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 2956789, + "thread": 4 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 3260215, + "thread": 0 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 3440332, + "thread": 24 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 3525185, + "thread": 20 + } + }, + { + "amount": "519.480640545", + "slot": { + "period": 3639522, + "thread": 3 + } + }, + { + "amount": "519.480640556", + "slot": { + "period": 3921248, + "thread": 3 + } + } + ], + "AU1ZnDUieAuaGgCoVWKhY8R8WoX3BJutnA6oFJSXDQ8JA8QbFQwA": [ + { + "amount": "136.994476371", + "slot": { + "period": 153056, + "thread": 24 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 301227, + "thread": 5 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 406237, + "thread": 21 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 545332, + "thread": 28 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 779327, + "thread": 13 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 953915, + "thread": 4 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1008715, + "thread": 22 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1282514, + "thread": 30 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1362205, + "thread": 1 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1573690, + "thread": 10 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1772181, + "thread": 15 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 1860071, + "thread": 27 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2140493, + "thread": 30 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2277194, + "thread": 15 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2314842, + "thread": 27 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2570870, + "thread": 11 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2721059, + "thread": 7 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2893477, + "thread": 3 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 2958361, + "thread": 14 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 3131906, + "thread": 17 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 3393508, + "thread": 3 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 3501374, + "thread": 26 + } + }, + { + "amount": "136.994476371", + "slot": { + "period": 3647229, + "thread": 17 + } + }, + { + "amount": "136.994476382", + "slot": { + "period": 3786325, + "thread": 5 + } + } + ], + "AU1ZnmeUygkre6y1e68UyrBXBwTqBmuQ5WyysjTSLn3Qqe3dfZYE": [ + { + "amount": "70.875883202", + "slot": { + "period": 11621, + "thread": 19 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 217882, + "thread": 5 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 475188, + "thread": 24 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 497570, + "thread": 7 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 671609, + "thread": 0 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 886914, + "thread": 1 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1055131, + "thread": 16 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1212422, + "thread": 20 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1358757, + "thread": 3 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1498091, + "thread": 23 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1778511, + "thread": 10 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 1973652, + "thread": 19 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2105004, + "thread": 28 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2235187, + "thread": 28 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2346189, + "thread": 11 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2484276, + "thread": 5 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2658267, + "thread": 3 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 2866302, + "thread": 16 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 3096856, + "thread": 25 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 3149603, + "thread": 13 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 3324256, + "thread": 14 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 3489174, + "thread": 2 + } + }, + { + "amount": "70.875883202", + "slot": { + "period": 3618783, + "thread": 1 + } + }, + { + "amount": "70.875883205", + "slot": { + "period": 3834903, + "thread": 19 + } + } + ], + "AU1Znst1vAShvf696PRSE1UeQTEY1vNi4wxyzxEWSMs4TjL1GxtZ": [ + { + "amount": "78.895026684", + "slot": { + "period": 152263, + "thread": 24 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 213890, + "thread": 26 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 405853, + "thread": 5 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 564881, + "thread": 25 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 655232, + "thread": 7 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 925463, + "thread": 31 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1005006, + "thread": 0 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1236803, + "thread": 4 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1371193, + "thread": 16 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1590780, + "thread": 6 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1764446, + "thread": 21 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 1832232, + "thread": 22 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2129753, + "thread": 28 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2183180, + "thread": 27 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2441497, + "thread": 4 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2526607, + "thread": 5 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2758541, + "thread": 2 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2918516, + "thread": 18 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 2975141, + "thread": 28 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 3240689, + "thread": 3 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 3362223, + "thread": 29 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 3601708, + "thread": 28 + } + }, + { + "amount": "78.895026684", + "slot": { + "period": 3702718, + "thread": 31 + } + }, + { + "amount": "78.895026686", + "slot": { + "period": 3906620, + "thread": 20 + } + } + ], + "AU1ZoTLBPoNvdiJ6ESwmUdyn5272DDETyE8P4TRMiVc51PLAYFNX": [ + { + "amount": "225.170546267", + "slot": { + "period": 39550, + "thread": 2 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 300809, + "thread": 31 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 343089, + "thread": 9 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 602363, + "thread": 1 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 687282, + "thread": 27 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 872262, + "thread": 16 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1149623, + "thread": 26 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1211827, + "thread": 22 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1329236, + "thread": 9 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1489714, + "thread": 10 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1742815, + "thread": 23 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 1878707, + "thread": 31 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2093136, + "thread": 31 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2233314, + "thread": 31 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2369792, + "thread": 27 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2484111, + "thread": 23 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2654305, + "thread": 28 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2899070, + "thread": 9 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 2974057, + "thread": 23 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 3251269, + "thread": 8 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 3437438, + "thread": 11 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 3538878, + "thread": 8 + } + }, + { + "amount": "225.170546267", + "slot": { + "period": 3743675, + "thread": 10 + } + }, + { + "amount": "225.170546257", + "slot": { + "period": 3946301, + "thread": 7 + } + } + ], + "AU1ZpNju2XL1uCp5dLwXy4rD84YzCwHREtJGcZvnhT7ptd6sMQg1": [ + { + "amount": "226.695655306", + "slot": { + "period": 129195, + "thread": 3 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 226017, + "thread": 11 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 474498, + "thread": 15 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 558818, + "thread": 5 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 755651, + "thread": 19 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 928778, + "thread": 20 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 987995, + "thread": 2 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 1252546, + "thread": 9 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 1356045, + "thread": 17 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 1589654, + "thread": 15 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 1701675, + "thread": 14 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 1909446, + "thread": 2 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2045130, + "thread": 23 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2281917, + "thread": 29 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2454565, + "thread": 21 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2499097, + "thread": 24 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2758095, + "thread": 20 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 2937976, + "thread": 18 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 3099138, + "thread": 7 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 3278192, + "thread": 8 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 3327963, + "thread": 2 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 3603371, + "thread": 3 + } + }, + { + "amount": "226.695655306", + "slot": { + "period": 3658862, + "thread": 3 + } + }, + { + "amount": "226.695655309", + "slot": { + "period": 3919463, + "thread": 18 + } + } + ], + "AU1Zqdzf11vZf9aFHp77fy9tenxcKPSttYTXmJxE9gAqUfvxHPsz": [ + { + "amount": "219.979396102", + "slot": { + "period": 82732, + "thread": 27 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 214307, + "thread": 19 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 436387, + "thread": 17 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 604848, + "thread": 30 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 686124, + "thread": 22 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 933705, + "thread": 29 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1125368, + "thread": 0 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1179401, + "thread": 12 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1464907, + "thread": 16 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1504896, + "thread": 27 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1771368, + "thread": 19 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 1946522, + "thread": 6 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2094253, + "thread": 11 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2165155, + "thread": 1 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2425573, + "thread": 19 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2468331, + "thread": 0 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2745486, + "thread": 29 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 2871532, + "thread": 14 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 3017602, + "thread": 17 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 3262355, + "thread": 0 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 3314452, + "thread": 1 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 3612211, + "thread": 26 + } + }, + { + "amount": "219.979396102", + "slot": { + "period": 3716818, + "thread": 17 + } + }, + { + "amount": "219.979396112", + "slot": { + "period": 3917575, + "thread": 14 + } + } + ], + "AU1Zr5ta211JaWWLNLUWwobuk8V291WkSVUZebE7h7aT3pM9NE6h": [ + { + "amount": "272.117820435", + "slot": { + "period": 90739, + "thread": 0 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 176021, + "thread": 14 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 451404, + "thread": 17 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 523070, + "thread": 23 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 818316, + "thread": 25 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 978502, + "thread": 26 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1000853, + "thread": 14 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1302773, + "thread": 10 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1475417, + "thread": 19 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1566491, + "thread": 21 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1754104, + "thread": 11 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 1858915, + "thread": 13 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2031765, + "thread": 21 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2247315, + "thread": 10 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2426002, + "thread": 16 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2502583, + "thread": 11 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2727865, + "thread": 5 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2799852, + "thread": 28 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 2955923, + "thread": 7 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 3223215, + "thread": 10 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 3319194, + "thread": 27 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 3579378, + "thread": 30 + } + }, + { + "amount": "272.117820435", + "slot": { + "period": 3626029, + "thread": 12 + } + }, + { + "amount": "272.117820432", + "slot": { + "period": 3944277, + "thread": 3 + } + } + ], + "AU1ZriYCCHEYGP8GmQja7r3Up5ZZQHkYovt7sc4kpjme9T39p2vu": [ + { + "amount": "159.872221511", + "slot": { + "period": 43140, + "thread": 22 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 295847, + "thread": 29 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 432502, + "thread": 18 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 578818, + "thread": 22 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 793449, + "thread": 14 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 859915, + "thread": 8 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1096857, + "thread": 17 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1274835, + "thread": 14 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1420108, + "thread": 2 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1509402, + "thread": 9 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1673498, + "thread": 19 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 1899748, + "thread": 12 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2054609, + "thread": 4 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2166538, + "thread": 14 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2397099, + "thread": 25 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2547131, + "thread": 9 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2780295, + "thread": 3 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 2863474, + "thread": 20 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 3089010, + "thread": 23 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 3267106, + "thread": 15 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 3411459, + "thread": 19 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 3521957, + "thread": 26 + } + }, + { + "amount": "159.872221511", + "slot": { + "period": 3738183, + "thread": 29 + } + }, + { + "amount": "159.872221519", + "slot": { + "period": 3824805, + "thread": 16 + } + } + ], + "AU1Zs4W4SwbTGoEZaS3HejZ4SCQK3Yw9p37nnhPPu4S5pUG7phex": [ + { + "amount": "128.355067009", + "slot": { + "period": 55418, + "thread": 10 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 198242, + "thread": 23 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 427979, + "thread": 3 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 493344, + "thread": 4 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 669087, + "thread": 22 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 880174, + "thread": 22 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1015418, + "thread": 14 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1280427, + "thread": 30 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1320438, + "thread": 0 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1552245, + "thread": 5 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1739737, + "thread": 30 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 1909662, + "thread": 15 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2116535, + "thread": 15 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2246896, + "thread": 30 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2428736, + "thread": 11 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2535227, + "thread": 10 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2627365, + "thread": 11 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 2926731, + "thread": 10 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 3020727, + "thread": 20 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 3198792, + "thread": 5 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 3366850, + "thread": 14 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 3481390, + "thread": 17 + } + }, + { + "amount": "128.355067009", + "slot": { + "period": 3654049, + "thread": 0 + } + }, + { + "amount": "128.355067018", + "slot": { + "period": 3901329, + "thread": 19 + } + } + ], + "AU1ZsLxv47rfnzRGwJXZbmfLk8mmb4m8C4cyprxfdcbyff6SNoYG": [ + { + "amount": "154.589549912", + "slot": { + "period": 36842, + "thread": 18 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 316448, + "thread": 22 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 326894, + "thread": 25 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 579969, + "thread": 21 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 783132, + "thread": 25 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 977379, + "thread": 8 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1105804, + "thread": 10 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1246776, + "thread": 7 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1456610, + "thread": 26 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1510570, + "thread": 25 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1745280, + "thread": 7 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 1879912, + "thread": 27 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2141594, + "thread": 23 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2237989, + "thread": 1 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2425984, + "thread": 15 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2566700, + "thread": 12 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2641591, + "thread": 27 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 2897977, + "thread": 0 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 3083424, + "thread": 8 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 3198336, + "thread": 11 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 3358646, + "thread": 26 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 3583804, + "thread": 9 + } + }, + { + "amount": "154.589549912", + "slot": { + "period": 3672255, + "thread": 30 + } + }, + { + "amount": "154.589549909", + "slot": { + "period": 3908646, + "thread": 25 + } + } + ], + "AU1Zshvbk4q219kt4eQGosd2CQVgAWUmD8dGwWmbjkwd5MxZ8k8K": [ + { + "amount": "469.634585463", + "slot": { + "period": 79696, + "thread": 28 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 233017, + "thread": 11 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 364513, + "thread": 22 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 591178, + "thread": 13 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 726525, + "thread": 22 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 871879, + "thread": 29 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1122430, + "thread": 15 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1187873, + "thread": 30 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1381167, + "thread": 28 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1573614, + "thread": 6 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1757255, + "thread": 4 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 1912448, + "thread": 22 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2028287, + "thread": 12 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2255002, + "thread": 29 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2450626, + "thread": 3 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2607907, + "thread": 16 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2716877, + "thread": 9 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 2874877, + "thread": 0 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 3031632, + "thread": 10 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 3172748, + "thread": 4 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 3345592, + "thread": 29 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 3476345, + "thread": 1 + } + }, + { + "amount": "469.634585463", + "slot": { + "period": 3624469, + "thread": 16 + } + }, + { + "amount": "469.634585459", + "slot": { + "period": 3785086, + "thread": 16 + } + } + ], + "AU1ZtEEXP1gFc5cmvTMSTYxTDAUcKYWhSrZ523RkUgdbeAqJM1A5": [ + { + "amount": "53.842315044", + "slot": { + "period": 102622, + "thread": 25 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 220533, + "thread": 28 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 415584, + "thread": 14 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 549478, + "thread": 1 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 731744, + "thread": 17 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 963311, + "thread": 7 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1070173, + "thread": 8 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1195768, + "thread": 0 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1392365, + "thread": 3 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1570262, + "thread": 5 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1670778, + "thread": 18 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1878549, + "thread": 12 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 1984115, + "thread": 8 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 2186685, + "thread": 27 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 2388936, + "thread": 28 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 2610979, + "thread": 6 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 2738512, + "thread": 28 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 2870992, + "thread": 28 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 3089452, + "thread": 28 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 3226389, + "thread": 13 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 3428892, + "thread": 20 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 3533608, + "thread": 18 + } + }, + { + "amount": "53.842315044", + "slot": { + "period": 3739739, + "thread": 3 + } + }, + { + "amount": "53.842315051", + "slot": { + "period": 3819284, + "thread": 30 + } + } + ], + "AU1ZtcKoYBGwBzLZYPtSTmNXgFgpVjHsoFFgiHHLEsbd2gRFxP1V": [ + { + "amount": "103.475488394", + "slot": { + "period": 163929, + "thread": 19 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 303685, + "thread": 25 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 462124, + "thread": 8 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 497898, + "thread": 29 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 812273, + "thread": 31 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 939900, + "thread": 21 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1002910, + "thread": 28 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1207575, + "thread": 14 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1369589, + "thread": 13 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1637636, + "thread": 23 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1650356, + "thread": 18 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 1856797, + "thread": 20 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2087396, + "thread": 26 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2285486, + "thread": 6 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2405377, + "thread": 9 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2565567, + "thread": 28 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2742671, + "thread": 14 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2924270, + "thread": 0 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 2988351, + "thread": 0 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 3255466, + "thread": 29 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 3394847, + "thread": 23 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 3476382, + "thread": 25 + } + }, + { + "amount": "103.475488394", + "slot": { + "period": 3746239, + "thread": 30 + } + }, + { + "amount": "103.475488406", + "slot": { + "period": 3781252, + "thread": 19 + } + } + ], + "AU1ZtjEC2PDiQSzGeRUR8N5vgp486sVn8i8Ne4y2xiN6iqAmT4r3": [ + { + "amount": "115.325773153", + "slot": { + "period": 126708, + "thread": 5 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 251719, + "thread": 25 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 422440, + "thread": 20 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 594216, + "thread": 27 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 772427, + "thread": 11 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 859532, + "thread": 30 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1022728, + "thread": 6 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1197672, + "thread": 12 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1335585, + "thread": 6 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1554823, + "thread": 26 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1712719, + "thread": 14 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 1890748, + "thread": 28 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2136308, + "thread": 20 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2159336, + "thread": 11 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2329921, + "thread": 30 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2574632, + "thread": 10 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2641604, + "thread": 10 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 2939341, + "thread": 25 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 3106775, + "thread": 23 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 3144327, + "thread": 29 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 3424836, + "thread": 21 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 3508492, + "thread": 16 + } + }, + { + "amount": "115.325773153", + "slot": { + "period": 3681641, + "thread": 17 + } + }, + { + "amount": "115.325773149", + "slot": { + "period": 3830169, + "thread": 5 + } + } + ], + "AU1ZuA6WWAEUmg9wfbcryuso1D1AgcVQdZ7zRTm191BZjP7KGYLc": [ + { + "amount": "367.094104778", + "slot": { + "period": 18035, + "thread": 9 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 202067, + "thread": 28 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 428888, + "thread": 10 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 620801, + "thread": 16 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 683528, + "thread": 22 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 938976, + "thread": 0 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1039895, + "thread": 21 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1172426, + "thread": 21 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1357470, + "thread": 3 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1549095, + "thread": 0 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1772033, + "thread": 31 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 1881770, + "thread": 23 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2062414, + "thread": 31 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2235373, + "thread": 29 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2328009, + "thread": 2 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2553161, + "thread": 20 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2700220, + "thread": 2 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2909256, + "thread": 21 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 2980359, + "thread": 8 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 3270839, + "thread": 26 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 3390752, + "thread": 22 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 3523719, + "thread": 22 + } + }, + { + "amount": "367.094104778", + "slot": { + "period": 3708411, + "thread": 23 + } + }, + { + "amount": "367.094104774", + "slot": { + "period": 3860207, + "thread": 13 + } + } + ], + "AU1ZuKoBvdRpbGyZDTxPstEEJbZWuQumCJvWYUxX9t5KLoqAibAy": [ + { + "amount": "88.315285717", + "slot": { + "period": 138436, + "thread": 20 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 249018, + "thread": 19 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 438200, + "thread": 1 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 598539, + "thread": 4 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 679818, + "thread": 11 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 892643, + "thread": 13 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1045422, + "thread": 8 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1221136, + "thread": 16 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1408237, + "thread": 20 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1627487, + "thread": 5 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1711559, + "thread": 9 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1909256, + "thread": 17 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 1986138, + "thread": 15 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 2204825, + "thread": 27 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 2431297, + "thread": 15 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 2506556, + "thread": 13 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 2788675, + "thread": 28 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 2916833, + "thread": 5 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 3081040, + "thread": 26 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 3277582, + "thread": 11 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 3294090, + "thread": 12 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 3588534, + "thread": 28 + } + }, + { + "amount": "88.315285717", + "slot": { + "period": 3685315, + "thread": 1 + } + }, + { + "amount": "88.315285711", + "slot": { + "period": 3902189, + "thread": 15 + } + } + ], + "AU1Zuvg4M5sRtt6Jfu2pRa1SyLhAcpdWpCZRNtpfQr9TRYAU6YYY": [ + { + "amount": "160.779726805", + "slot": { + "period": 154274, + "thread": 11 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 192366, + "thread": 24 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 464770, + "thread": 31 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 574894, + "thread": 1 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 761303, + "thread": 12 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 886035, + "thread": 26 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1037973, + "thread": 21 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1310812, + "thread": 10 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1412399, + "thread": 20 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1578911, + "thread": 9 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1707105, + "thread": 26 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 1919204, + "thread": 5 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2076061, + "thread": 27 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2168209, + "thread": 23 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2412887, + "thread": 3 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2540377, + "thread": 25 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2672094, + "thread": 19 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 2873951, + "thread": 26 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 3050329, + "thread": 31 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 3204832, + "thread": 25 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 3303100, + "thread": 16 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 3550654, + "thread": 24 + } + }, + { + "amount": "160.779726805", + "slot": { + "period": 3682116, + "thread": 29 + } + }, + { + "amount": "160.779726816", + "slot": { + "period": 3817837, + "thread": 22 + } + } + ], + "AU1Zx5gVe3ui5bRsNCsHiEbW4enmgQGQ9Z5v4Me83AATPMgQWZ2h": [ + { + "amount": "170.382950736", + "slot": { + "period": 141109, + "thread": 8 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 207025, + "thread": 29 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 367511, + "thread": 0 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 519787, + "thread": 27 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 748858, + "thread": 23 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 853626, + "thread": 8 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1075787, + "thread": 9 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1210891, + "thread": 8 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1352470, + "thread": 29 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1606850, + "thread": 18 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1654249, + "thread": 13 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 1843727, + "thread": 5 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2087218, + "thread": 1 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2169441, + "thread": 0 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2393435, + "thread": 6 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2566572, + "thread": 10 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2784844, + "thread": 10 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 2910696, + "thread": 14 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 3067352, + "thread": 3 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 3272300, + "thread": 11 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 3305530, + "thread": 0 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 3608746, + "thread": 9 + } + }, + { + "amount": "170.382950736", + "slot": { + "period": 3675941, + "thread": 30 + } + }, + { + "amount": "170.382950739", + "slot": { + "period": 3789356, + "thread": 17 + } + } + ], + "AU1Zx8r7q2z6CypqsGQpzkkZcyDqgvV17JXwC3peJxvj7y8Vgzfj": [ + { + "amount": "132.784661065", + "slot": { + "period": 75912, + "thread": 29 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 200170, + "thread": 6 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 408696, + "thread": 14 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 553932, + "thread": 18 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 774111, + "thread": 18 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 845496, + "thread": 9 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1079515, + "thread": 26 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1227240, + "thread": 26 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1466433, + "thread": 27 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1520659, + "thread": 3 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1761213, + "thread": 16 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 1830772, + "thread": 11 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2037232, + "thread": 10 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2211732, + "thread": 15 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2449896, + "thread": 24 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2549320, + "thread": 24 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2714139, + "thread": 15 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2901404, + "thread": 3 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 2961135, + "thread": 29 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 3214992, + "thread": 24 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 3323298, + "thread": 17 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 3509750, + "thread": 27 + } + }, + { + "amount": "132.784661065", + "slot": { + "period": 3726169, + "thread": 30 + } + }, + { + "amount": "132.784661071", + "slot": { + "period": 3910933, + "thread": 12 + } + } + ], + "AU1Zxu2AMzQ2VK3AsK7qLX1PuX6mWEMWfETQaoWA6gD4wL4k7h6y": [ + { + "amount": "294.334203042", + "slot": { + "period": 146255, + "thread": 7 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 252706, + "thread": 2 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 447624, + "thread": 18 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 562480, + "thread": 9 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 690127, + "thread": 24 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 862993, + "thread": 13 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1115080, + "thread": 28 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1190358, + "thread": 9 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1476123, + "thread": 19 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1621522, + "thread": 11 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1673038, + "thread": 12 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1881543, + "thread": 22 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 1992654, + "thread": 14 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2165541, + "thread": 23 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2459575, + "thread": 0 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2580574, + "thread": 18 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2755103, + "thread": 8 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2863050, + "thread": 27 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 2978443, + "thread": 12 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 3164726, + "thread": 15 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 3440012, + "thread": 18 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 3574191, + "thread": 20 + } + }, + { + "amount": "294.334203042", + "slot": { + "period": 3623103, + "thread": 12 + } + }, + { + "amount": "294.334203039", + "slot": { + "period": 3800326, + "thread": 2 + } + } + ], + "AU1ZyNkwgamj5TH7QKpjSwsxmteQVvXVqYTkQmYTijiBoXeaQ996": [ + { + "amount": "116.458040429", + "slot": { + "period": 41648, + "thread": 26 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 238682, + "thread": 4 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 358170, + "thread": 14 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 548692, + "thread": 17 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 812998, + "thread": 8 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 836973, + "thread": 5 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 989535, + "thread": 31 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1286420, + "thread": 18 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1450881, + "thread": 13 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1489209, + "thread": 6 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1741244, + "thread": 1 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1872593, + "thread": 5 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 1978108, + "thread": 6 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 2242815, + "thread": 4 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 2365482, + "thread": 11 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 2580922, + "thread": 10 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 2710556, + "thread": 21 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 2906152, + "thread": 11 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 3049768, + "thread": 6 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 3226570, + "thread": 11 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 3401481, + "thread": 28 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 3549828, + "thread": 21 + } + }, + { + "amount": "116.458040429", + "slot": { + "period": 3769654, + "thread": 3 + } + }, + { + "amount": "116.458040419", + "slot": { + "period": 3842119, + "thread": 8 + } + } + ], + "AU1ZyUyweNxJkUq8y9aCssbN2B4oYCkZM9kwy7cuqRRrBK2v1e83": [ + { + "amount": "517.405869288", + "slot": { + "period": 123143, + "thread": 28 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 246525, + "thread": 1 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 394261, + "thread": 14 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 576742, + "thread": 7 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 805834, + "thread": 15 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 884005, + "thread": 5 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1112061, + "thread": 17 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1277302, + "thread": 5 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1478198, + "thread": 13 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1646426, + "thread": 10 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1792108, + "thread": 19 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1953948, + "thread": 4 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 1977013, + "thread": 9 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2261465, + "thread": 27 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2408527, + "thread": 30 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2518395, + "thread": 8 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2752661, + "thread": 25 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2827604, + "thread": 25 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 2969279, + "thread": 9 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 3219974, + "thread": 0 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 3353530, + "thread": 30 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 3543929, + "thread": 8 + } + }, + { + "amount": "517.405869288", + "slot": { + "period": 3715291, + "thread": 28 + } + }, + { + "amount": "517.405869294", + "slot": { + "period": 3905819, + "thread": 22 + } + } + ], + "AU1ZyZj9q98zowBtazN2g33P2M1tQDzxopc6NZJLNzay4PnkQ7Dn": [ + { + "amount": "109.865337690", + "slot": { + "period": 45788, + "thread": 2 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 232714, + "thread": 12 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 421915, + "thread": 17 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 545728, + "thread": 16 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 682472, + "thread": 7 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 907175, + "thread": 25 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1019562, + "thread": 3 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1217010, + "thread": 27 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1319579, + "thread": 7 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1586549, + "thread": 0 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1669346, + "thread": 12 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 1940255, + "thread": 10 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2007638, + "thread": 6 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2191375, + "thread": 20 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2391583, + "thread": 27 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2600476, + "thread": 12 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2719762, + "thread": 20 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2883544, + "thread": 28 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 2958898, + "thread": 16 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 3215567, + "thread": 7 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 3341347, + "thread": 5 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 3588394, + "thread": 17 + } + }, + { + "amount": "109.865337690", + "slot": { + "period": 3670245, + "thread": 7 + } + }, + { + "amount": "109.865337681", + "slot": { + "period": 3805410, + "thread": 5 + } + } + ], + "AU1a2SPB2RNtpHhVS1vPHY3TP22DpEaRq4mUdi6gzUFMdQCJ8p2": [ + { + "amount": "234.187723635", + "slot": { + "period": 83503, + "thread": 27 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 227707, + "thread": 10 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 383350, + "thread": 7 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 592461, + "thread": 9 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 732410, + "thread": 5 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 824541, + "thread": 10 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1112675, + "thread": 22 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1275076, + "thread": 7 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1363746, + "thread": 12 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1603550, + "thread": 21 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1774884, + "thread": 7 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1892360, + "thread": 21 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 1977726, + "thread": 31 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2234480, + "thread": 1 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2296966, + "thread": 0 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2609985, + "thread": 0 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2753371, + "thread": 9 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2950942, + "thread": 22 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 2990203, + "thread": 18 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 3121802, + "thread": 0 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 3389884, + "thread": 26 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 3587454, + "thread": 27 + } + }, + { + "amount": "234.187723635", + "slot": { + "period": 3650315, + "thread": 19 + } + }, + { + "amount": "234.187723630", + "slot": { + "period": 3921889, + "thread": 27 + } + } + ], + "AU1a2mNGy3azDcetVy41NZ9C7ynkMH5U2kY9bAj7yBPEwVGZvq54": [ + { + "amount": "364.036494570", + "slot": { + "period": 114377, + "thread": 31 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 293061, + "thread": 13 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 340065, + "thread": 8 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 559653, + "thread": 21 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 766970, + "thread": 26 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 884709, + "thread": 28 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1061122, + "thread": 6 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1161202, + "thread": 12 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1436109, + "thread": 26 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1534748, + "thread": 24 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1699955, + "thread": 20 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 1852338, + "thread": 10 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2104286, + "thread": 24 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2214390, + "thread": 15 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2451951, + "thread": 0 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2612283, + "thread": 8 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2768816, + "thread": 30 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2896893, + "thread": 26 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 2992398, + "thread": 24 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 3229721, + "thread": 7 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 3370060, + "thread": 26 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 3498726, + "thread": 15 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 3681458, + "thread": 20 + } + }, + { + "amount": "364.036494570", + "slot": { + "period": 3933061, + "thread": 1 + } + } + ], + "AU1a3CDPfRVzN93oSAzMKXmAGvGqxn3U4B5GUZtknHLqiKNouvkh": [ + { + "amount": "516.215164322", + "slot": { + "period": 44041, + "thread": 31 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 203854, + "thread": 5 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 333877, + "thread": 12 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 590131, + "thread": 20 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 808107, + "thread": 13 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 955832, + "thread": 19 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1102846, + "thread": 18 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1276609, + "thread": 6 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1378406, + "thread": 30 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1504279, + "thread": 20 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1767511, + "thread": 8 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 1885836, + "thread": 3 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2088838, + "thread": 30 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2276997, + "thread": 7 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2325090, + "thread": 17 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2543322, + "thread": 28 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2789283, + "thread": 10 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 2874994, + "thread": 4 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 3097045, + "thread": 27 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 3162366, + "thread": 17 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 3311307, + "thread": 12 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 3462294, + "thread": 20 + } + }, + { + "amount": "516.215164322", + "slot": { + "period": 3669626, + "thread": 1 + } + }, + { + "amount": "516.215164323", + "slot": { + "period": 3800107, + "thread": 9 + } + } + ], + "AU1a3VY1CMFoZRmRFNADTibfsskchxnLde5Gtb1qAXjnaMPVb6Z3": [ + { + "amount": "81.875173574", + "slot": { + "period": 26630, + "thread": 18 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 233582, + "thread": 19 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 372003, + "thread": 19 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 592304, + "thread": 14 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 810109, + "thread": 6 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 885404, + "thread": 26 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1046819, + "thread": 7 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1241468, + "thread": 13 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1405850, + "thread": 24 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1631582, + "thread": 28 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1775204, + "thread": 7 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 1864377, + "thread": 4 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2019069, + "thread": 7 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2249238, + "thread": 14 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2416216, + "thread": 0 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2466072, + "thread": 22 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2742765, + "thread": 12 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 2938626, + "thread": 31 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 3080270, + "thread": 1 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 3238777, + "thread": 24 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 3295797, + "thread": 31 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 3586629, + "thread": 12 + } + }, + { + "amount": "81.875173574", + "slot": { + "period": 3767979, + "thread": 3 + } + }, + { + "amount": "81.875173581", + "slot": { + "period": 3835208, + "thread": 14 + } + } + ], + "AU1a3bKXArzQxGMQuGgQbadB8omg7zeG1wUqQQEfs1TNMH8pm8L5": [ + { + "amount": "378.651462033", + "slot": { + "period": 133976, + "thread": 30 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 174688, + "thread": 5 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 447751, + "thread": 13 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 624403, + "thread": 15 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 775849, + "thread": 19 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 829225, + "thread": 23 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1005348, + "thread": 10 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1183238, + "thread": 25 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1372129, + "thread": 1 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1522360, + "thread": 8 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1716101, + "thread": 22 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 1810845, + "thread": 24 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2129060, + "thread": 13 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2281436, + "thread": 6 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2344261, + "thread": 18 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2611223, + "thread": 16 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2785822, + "thread": 18 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 2952390, + "thread": 12 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 3067934, + "thread": 25 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 3142379, + "thread": 3 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 3341591, + "thread": 4 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 3499896, + "thread": 30 + } + }, + { + "amount": "378.651462033", + "slot": { + "period": 3747878, + "thread": 19 + } + }, + { + "amount": "378.651462044", + "slot": { + "period": 3920316, + "thread": 25 + } + } + ], + "AU1a3sPXr7TbbzZ2ZcXYTuSoWrjVFT9PwPDJXwRxF8yyn3Jjvj7Z": [ + { + "amount": "174.743391695", + "slot": { + "period": 144644, + "thread": 30 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 282059, + "thread": 0 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 432254, + "thread": 14 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 634956, + "thread": 20 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 799931, + "thread": 14 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 823246, + "thread": 23 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1118015, + "thread": 11 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1264235, + "thread": 22 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1330109, + "thread": 3 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1492324, + "thread": 14 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1808294, + "thread": 9 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1933296, + "thread": 26 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 1993409, + "thread": 15 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2266406, + "thread": 21 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2380549, + "thread": 27 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2600428, + "thread": 30 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2732170, + "thread": 22 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2826505, + "thread": 16 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 2978709, + "thread": 18 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 3184642, + "thread": 7 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 3361207, + "thread": 21 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 3610398, + "thread": 8 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 3718613, + "thread": 26 + } + }, + { + "amount": "174.743391695", + "slot": { + "period": 3820140, + "thread": 22 + } + } + ], + "AU1a4C81ud8wyCK3pmtYSyLqeF4LtgBAHRCXiUh2HWCnMPnFv1t9": [ + { + "amount": "554.686660139", + "slot": { + "period": 61383, + "thread": 16 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 208009, + "thread": 3 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 441683, + "thread": 5 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 575492, + "thread": 0 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 721531, + "thread": 10 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 823137, + "thread": 27 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1069595, + "thread": 17 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1222822, + "thread": 9 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1408100, + "thread": 23 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1550320, + "thread": 4 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1792129, + "thread": 30 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 1838607, + "thread": 27 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2120967, + "thread": 16 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2255762, + "thread": 27 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2343683, + "thread": 29 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2521351, + "thread": 17 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2642709, + "thread": 27 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 2880307, + "thread": 31 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 3118631, + "thread": 0 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 3284316, + "thread": 9 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 3401603, + "thread": 10 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 3609423, + "thread": 24 + } + }, + { + "amount": "554.686660139", + "slot": { + "period": 3640219, + "thread": 17 + } + }, + { + "amount": "554.686660137", + "slot": { + "period": 3879321, + "thread": 4 + } + } + ], + "AU1a4UDsX8kwTHpmFSf4EmB4W1BHcz7PoPpDye2ZxN6K1i9Yk14d": [ + { + "amount": "320.305009597", + "slot": { + "period": 35864, + "thread": 24 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 182618, + "thread": 2 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 329775, + "thread": 9 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 536631, + "thread": 5 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 750496, + "thread": 17 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 853259, + "thread": 8 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1048817, + "thread": 14 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1168462, + "thread": 27 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1352210, + "thread": 12 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1493004, + "thread": 17 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1700393, + "thread": 22 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 1910912, + "thread": 7 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2079098, + "thread": 10 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2224354, + "thread": 4 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2329702, + "thread": 24 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2515564, + "thread": 23 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2697121, + "thread": 23 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 2886357, + "thread": 22 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 3049597, + "thread": 31 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 3220473, + "thread": 13 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 3344456, + "thread": 26 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 3575871, + "thread": 26 + } + }, + { + "amount": "320.305009597", + "slot": { + "period": 3711295, + "thread": 15 + } + }, + { + "amount": "320.305009595", + "slot": { + "period": 3936385, + "thread": 15 + } + } + ], + "AU1a5Hs8aqdG2JCh7PkpP1HQ8M5zCFTkNWUyJpXYWrnb28orwJ2D": [ + { + "amount": "90.042376626", + "slot": { + "period": 138552, + "thread": 25 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 241645, + "thread": 0 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 355479, + "thread": 19 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 637278, + "thread": 17 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 813059, + "thread": 6 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 857233, + "thread": 6 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1032695, + "thread": 21 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1170753, + "thread": 23 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1357792, + "thread": 1 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1572963, + "thread": 1 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1657247, + "thread": 17 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 1929431, + "thread": 31 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2113559, + "thread": 24 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2278202, + "thread": 11 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2395224, + "thread": 9 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2623417, + "thread": 8 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2648086, + "thread": 9 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 2815381, + "thread": 28 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 3008351, + "thread": 11 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 3236987, + "thread": 3 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 3304964, + "thread": 5 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 3592628, + "thread": 11 + } + }, + { + "amount": "90.042376626", + "slot": { + "period": 3748888, + "thread": 9 + } + }, + { + "amount": "90.042376619", + "slot": { + "period": 3877970, + "thread": 8 + } + } + ], + "AU1a5UpQB7fDke4Mr73ADEGiJymnYT46r35i47o9Q5CbjPdHXrJ2": [ + { + "amount": "169.071336094", + "slot": { + "period": 131330, + "thread": 8 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 240611, + "thread": 29 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 367182, + "thread": 19 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 535718, + "thread": 16 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 757100, + "thread": 26 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 831190, + "thread": 10 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 998477, + "thread": 19 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 1213609, + "thread": 20 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 1385622, + "thread": 26 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 1578964, + "thread": 16 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 1790878, + "thread": 3 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 1937864, + "thread": 19 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2138862, + "thread": 9 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2242520, + "thread": 24 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2355697, + "thread": 31 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2590854, + "thread": 5 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2767951, + "thread": 14 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2844926, + "thread": 9 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 2971742, + "thread": 11 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 3159102, + "thread": 21 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 3375384, + "thread": 25 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 3587541, + "thread": 1 + } + }, + { + "amount": "169.071336094", + "slot": { + "period": 3696902, + "thread": 26 + } + }, + { + "amount": "169.071336088", + "slot": { + "period": 3803605, + "thread": 4 + } + } + ], + "AU1a6nt4DUhpYCEYfcBf6gHq3nidCiUmXgBigNnSwvmUFSrbN8Fu": [ + { + "amount": "407.253797986", + "slot": { + "period": 65115, + "thread": 26 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 281037, + "thread": 17 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 434160, + "thread": 10 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 620609, + "thread": 30 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 771497, + "thread": 4 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 966781, + "thread": 5 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1118263, + "thread": 7 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1291476, + "thread": 5 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1449079, + "thread": 19 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1516627, + "thread": 29 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1777411, + "thread": 4 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 1946273, + "thread": 0 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2094580, + "thread": 24 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2155167, + "thread": 12 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2339172, + "thread": 8 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2510046, + "thread": 8 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2685164, + "thread": 12 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 2889960, + "thread": 13 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 3045544, + "thread": 15 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 3242475, + "thread": 12 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 3353215, + "thread": 27 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 3508912, + "thread": 14 + } + }, + { + "amount": "407.253797986", + "slot": { + "period": 3743319, + "thread": 10 + } + }, + { + "amount": "407.253797987", + "slot": { + "period": 3907788, + "thread": 22 + } + } + ], + "AU1a7mXTPr2XJNTkUcdXB6NucrBsBngwHRwEhiUUBrqGMsgzALe8": [ + { + "amount": "136.446376247", + "slot": { + "period": 42208, + "thread": 21 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 239102, + "thread": 20 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 388088, + "thread": 5 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 523392, + "thread": 22 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 793054, + "thread": 21 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 920858, + "thread": 29 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1099627, + "thread": 7 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1160007, + "thread": 26 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1467568, + "thread": 23 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1485128, + "thread": 17 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1723847, + "thread": 1 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 1834908, + "thread": 8 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2020993, + "thread": 21 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2244304, + "thread": 28 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2361848, + "thread": 3 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2616447, + "thread": 5 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2647934, + "thread": 0 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2894919, + "thread": 18 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 2985180, + "thread": 19 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 3287214, + "thread": 19 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 3345151, + "thread": 5 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 3496253, + "thread": 24 + } + }, + { + "amount": "136.446376247", + "slot": { + "period": 3742095, + "thread": 25 + } + }, + { + "amount": "136.446376251", + "slot": { + "period": 3896147, + "thread": 12 + } + } + ], + "AU1a8PDv7dBNFURQ33Y47TeBewvnrxQrufEg7Jjgac1oPjMicJHP": [ + { + "amount": "157.359398495", + "slot": { + "period": 40184, + "thread": 17 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 225642, + "thread": 8 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 453485, + "thread": 29 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 644832, + "thread": 22 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 688376, + "thread": 17 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 963031, + "thread": 24 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1032331, + "thread": 21 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1194685, + "thread": 21 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1421364, + "thread": 29 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1496361, + "thread": 18 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1658908, + "thread": 8 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 1934107, + "thread": 4 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2042312, + "thread": 16 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2195802, + "thread": 12 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2340939, + "thread": 5 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2577967, + "thread": 15 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2625566, + "thread": 25 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2918178, + "thread": 26 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 2996335, + "thread": 22 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 3199143, + "thread": 11 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 3345743, + "thread": 23 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 3506944, + "thread": 3 + } + }, + { + "amount": "157.359398495", + "slot": { + "period": 3745315, + "thread": 9 + } + }, + { + "amount": "157.359398486", + "slot": { + "period": 3816711, + "thread": 7 + } + } + ], + "AU1a9QcAvTUSDzZ1xqYCpYsk4qm588VgKzc4cnJaMViHWBEPL8Yi": [ + { + "amount": "195.432857670", + "slot": { + "period": 88623, + "thread": 31 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 167951, + "thread": 18 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 439699, + "thread": 10 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 601701, + "thread": 21 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 719307, + "thread": 31 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 882694, + "thread": 28 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1099132, + "thread": 2 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1192336, + "thread": 13 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1364104, + "thread": 13 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1619957, + "thread": 1 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1719243, + "thread": 12 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 1957119, + "thread": 28 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2088650, + "thread": 11 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2163298, + "thread": 23 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2400957, + "thread": 14 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2496863, + "thread": 4 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2767134, + "thread": 8 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 2866703, + "thread": 6 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 3047872, + "thread": 19 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 3231903, + "thread": 24 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 3308966, + "thread": 1 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 3482081, + "thread": 24 + } + }, + { + "amount": "195.432857670", + "slot": { + "period": 3687052, + "thread": 13 + } + }, + { + "amount": "195.432857663", + "slot": { + "period": 3847024, + "thread": 24 + } + } + ], + "AU1a9dhrTCevMBeiv1cC1bcPWkszXVJs2nbnMW2ojP1LrpWGUrTz": [ + { + "amount": "141.464087507", + "slot": { + "period": 92087, + "thread": 8 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 314128, + "thread": 17 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 449270, + "thread": 25 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 578010, + "thread": 22 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 708010, + "thread": 29 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 824702, + "thread": 12 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1000150, + "thread": 7 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1314932, + "thread": 13 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1375452, + "thread": 17 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1499997, + "thread": 11 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1712544, + "thread": 31 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 1843829, + "thread": 29 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2133127, + "thread": 3 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2293997, + "thread": 29 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2425756, + "thread": 2 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2525683, + "thread": 1 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2648485, + "thread": 13 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 2894055, + "thread": 3 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 3113808, + "thread": 26 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 3124528, + "thread": 27 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 3301270, + "thread": 28 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 3605325, + "thread": 13 + } + }, + { + "amount": "141.464087507", + "slot": { + "period": 3673928, + "thread": 24 + } + }, + { + "amount": "141.464087498", + "slot": { + "period": 3885434, + "thread": 11 + } + } + ], + "AU1a9sXWbtMU6fyr9h7fprtmY6rdeRppW2z12ZMCEmgCzMr5N81U": [ + { + "amount": "310.973944893", + "slot": { + "period": 137707, + "thread": 2 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 222323, + "thread": 10 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 423713, + "thread": 16 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 650209, + "thread": 11 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 674711, + "thread": 5 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 845487, + "thread": 23 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1028581, + "thread": 14 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1187020, + "thread": 22 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1392422, + "thread": 19 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1585299, + "thread": 20 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1725611, + "thread": 12 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 1906779, + "thread": 25 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2130988, + "thread": 8 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2238207, + "thread": 26 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2301700, + "thread": 30 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2543744, + "thread": 20 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2629555, + "thread": 23 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 2916537, + "thread": 23 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3092721, + "thread": 23 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3218049, + "thread": 12 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3309151, + "thread": 18 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3514071, + "thread": 8 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3698969, + "thread": 20 + } + }, + { + "amount": "310.973944893", + "slot": { + "period": 3870843, + "thread": 18 + } + } + ], + "AU1aA6VM7xp1Knij2c4SZePqAGHayehkwLJVZamUw48GYAGwaCns": [ + { + "amount": "179.821025691", + "slot": { + "period": 98232, + "thread": 7 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 312905, + "thread": 0 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 467265, + "thread": 25 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 585264, + "thread": 14 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 724896, + "thread": 28 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 965537, + "thread": 27 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1000967, + "thread": 16 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1263846, + "thread": 31 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1476344, + "thread": 30 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1484537, + "thread": 9 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1724159, + "thread": 23 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 1961532, + "thread": 11 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2040909, + "thread": 26 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2230570, + "thread": 12 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2339381, + "thread": 14 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2590038, + "thread": 28 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2692196, + "thread": 29 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2861695, + "thread": 17 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 2994788, + "thread": 31 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 3146673, + "thread": 28 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 3414637, + "thread": 12 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 3506049, + "thread": 16 + } + }, + { + "amount": "179.821025691", + "slot": { + "period": 3743521, + "thread": 7 + } + }, + { + "amount": "179.821025696", + "slot": { + "period": 3891113, + "thread": 23 + } + } + ], + "AU1aAcnmhwTemMeLaY1ukNwyiKwn6oU4vD5AAvgK8vNqRVB1Je4y": [ + { + "amount": "735.316526713", + "slot": { + "period": 56034, + "thread": 12 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 183481, + "thread": 1 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 366514, + "thread": 9 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 519910, + "thread": 5 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 807471, + "thread": 17 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 880391, + "thread": 31 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1034769, + "thread": 13 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1250455, + "thread": 23 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1411883, + "thread": 2 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1497093, + "thread": 21 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1705236, + "thread": 26 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 1942226, + "thread": 10 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2106770, + "thread": 28 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2158692, + "thread": 30 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2446626, + "thread": 23 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2478730, + "thread": 11 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2688792, + "thread": 30 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2809745, + "thread": 0 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 2957547, + "thread": 1 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 3158431, + "thread": 0 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 3291985, + "thread": 30 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 3475426, + "thread": 14 + } + }, + { + "amount": "735.316526713", + "slot": { + "period": 3738107, + "thread": 19 + } + }, + { + "amount": "735.316526705", + "slot": { + "period": 3808398, + "thread": 31 + } + } + ], + "AU1aBwatVcj9D41m7MAs3rQjxkdM65himMNCXdU8s62j14SFGmEN": [ + { + "amount": "148.018482317", + "slot": { + "period": 128685, + "thread": 24 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 190467, + "thread": 1 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 363856, + "thread": 10 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 504214, + "thread": 6 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 703388, + "thread": 4 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 974467, + "thread": 28 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1080061, + "thread": 4 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1260997, + "thread": 30 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1411922, + "thread": 3 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1584594, + "thread": 7 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1802510, + "thread": 28 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1866446, + "thread": 10 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 1985499, + "thread": 21 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2168504, + "thread": 8 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2314395, + "thread": 10 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2495077, + "thread": 26 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2687831, + "thread": 28 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2872609, + "thread": 20 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 2954739, + "thread": 27 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 3267033, + "thread": 31 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 3436011, + "thread": 26 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 3535886, + "thread": 22 + } + }, + { + "amount": "148.018482317", + "slot": { + "period": 3736501, + "thread": 25 + } + }, + { + "amount": "148.018482313", + "slot": { + "period": 3881260, + "thread": 0 + } + } + ], + "AU1aC12bgpVp32LuJrMYwG3zdqH9H33mGDSXpYmh3wAC6Habhqm4": [ + { + "amount": "79.624021804", + "slot": { + "period": 98179, + "thread": 1 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 283936, + "thread": 2 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 398631, + "thread": 30 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 551901, + "thread": 2 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 675335, + "thread": 24 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 929052, + "thread": 21 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1129008, + "thread": 28 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1272820, + "thread": 19 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1424051, + "thread": 29 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1565348, + "thread": 18 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1719681, + "thread": 11 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1818947, + "thread": 0 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 1978237, + "thread": 23 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 2207517, + "thread": 16 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 2434186, + "thread": 17 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 2469633, + "thread": 3 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 2762992, + "thread": 23 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 2924391, + "thread": 28 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 3030414, + "thread": 24 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 3270314, + "thread": 3 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 3321651, + "thread": 17 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 3590599, + "thread": 0 + } + }, + { + "amount": "79.624021804", + "slot": { + "period": 3768971, + "thread": 0 + } + }, + { + "amount": "79.624021810", + "slot": { + "period": 3909576, + "thread": 24 + } + } + ], + "AU1aEMftq26ZmX5bM2RCbVsZMQ6T1L5aKJTyZiKFKKR4kY4rQgfA": [ + { + "amount": "55.796953070", + "slot": { + "period": 132433, + "thread": 14 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 306486, + "thread": 29 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 460402, + "thread": 2 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 615993, + "thread": 11 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 697094, + "thread": 20 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 838096, + "thread": 10 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 983272, + "thread": 11 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 1151038, + "thread": 3 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 1353558, + "thread": 19 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 1561999, + "thread": 30 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 1702691, + "thread": 28 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 1893080, + "thread": 12 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2029252, + "thread": 10 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2236234, + "thread": 9 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2313451, + "thread": 29 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2613965, + "thread": 17 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2668395, + "thread": 2 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2950314, + "thread": 25 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 2992600, + "thread": 6 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 3182764, + "thread": 14 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 3297904, + "thread": 5 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 3557370, + "thread": 16 + } + }, + { + "amount": "55.796953070", + "slot": { + "period": 3650181, + "thread": 4 + } + }, + { + "amount": "55.796953062", + "slot": { + "period": 3938948, + "thread": 22 + } + } + ], + "AU1aGcUiD7Ne7dRFSdtNYvTs4Aehh4UEhn2FMdKAQuyg8qyZe1pE": [ + { + "amount": "1405.937060921", + "slot": { + "period": 30460, + "thread": 3 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 187360, + "thread": 30 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 345782, + "thread": 1 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 564039, + "thread": 21 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 820167, + "thread": 14 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 888274, + "thread": 15 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1072508, + "thread": 14 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1259003, + "thread": 18 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1327972, + "thread": 31 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1532775, + "thread": 0 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1715951, + "thread": 22 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1859889, + "thread": 12 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 1993922, + "thread": 21 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 2220104, + "thread": 10 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 2439852, + "thread": 14 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 2471006, + "thread": 3 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 2692884, + "thread": 30 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 2938846, + "thread": 9 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 3070621, + "thread": 14 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 3225055, + "thread": 3 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 3334974, + "thread": 8 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 3582461, + "thread": 4 + } + }, + { + "amount": "1405.937060921", + "slot": { + "period": 3736837, + "thread": 8 + } + }, + { + "amount": "1405.937060927", + "slot": { + "period": 3843536, + "thread": 0 + } + } + ], + "AU1aGwQXDEr5QYgvwLdEVzNd4s6aidsmviBQ9tXm12hfkp4u4dB4": [ + { + "amount": "77.255124201", + "slot": { + "period": 39975, + "thread": 24 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 257328, + "thread": 4 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 398400, + "thread": 27 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 505980, + "thread": 23 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 704438, + "thread": 8 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 961344, + "thread": 11 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1055995, + "thread": 2 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1226059, + "thread": 29 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1438496, + "thread": 2 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1507423, + "thread": 20 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1664993, + "thread": 13 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 1812692, + "thread": 6 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2091536, + "thread": 11 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2182421, + "thread": 18 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2351681, + "thread": 6 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2602896, + "thread": 16 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2722037, + "thread": 23 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 2901262, + "thread": 10 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 3090591, + "thread": 30 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 3205280, + "thread": 21 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 3330894, + "thread": 12 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 3608693, + "thread": 29 + } + }, + { + "amount": "77.255124201", + "slot": { + "period": 3741383, + "thread": 18 + } + }, + { + "amount": "77.255124196", + "slot": { + "period": 3925995, + "thread": 10 + } + } + ], + "AU1aHsWSzyxjNtH87QW5iTgvgDp4eYv3WPxpisQAapHC6tn3rzNP": [ + { + "amount": "239.571837314", + "slot": { + "period": 53068, + "thread": 6 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 317894, + "thread": 0 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 420586, + "thread": 26 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 545041, + "thread": 21 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 773169, + "thread": 30 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 850935, + "thread": 24 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1069592, + "thread": 15 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1168458, + "thread": 5 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1331679, + "thread": 23 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1582394, + "thread": 19 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1750182, + "thread": 16 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 1919259, + "thread": 17 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2076168, + "thread": 27 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2209196, + "thread": 14 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2457759, + "thread": 10 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2615930, + "thread": 1 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2684056, + "thread": 19 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 2919403, + "thread": 24 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 3000618, + "thread": 6 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 3264523, + "thread": 28 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 3321698, + "thread": 21 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 3571213, + "thread": 6 + } + }, + { + "amount": "239.571837314", + "slot": { + "period": 3619284, + "thread": 26 + } + }, + { + "amount": "239.571837316", + "slot": { + "period": 3923541, + "thread": 18 + } + } + ], + "AU1aJA4ddnqYgurrCeSXNteiDM2gtyPzoZ3Cusy7sktc9Ene67N4": [ + { + "amount": "87.825573640", + "slot": { + "period": 13873, + "thread": 12 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 320291, + "thread": 13 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 396748, + "thread": 28 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 544796, + "thread": 12 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 658337, + "thread": 13 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 921823, + "thread": 20 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1124841, + "thread": 16 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1309066, + "thread": 25 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1380645, + "thread": 28 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1528731, + "thread": 13 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1705022, + "thread": 25 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 1830190, + "thread": 14 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2083212, + "thread": 30 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2259563, + "thread": 3 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2353279, + "thread": 1 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2529096, + "thread": 25 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2730943, + "thread": 8 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 2896039, + "thread": 15 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3014062, + "thread": 8 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3240958, + "thread": 4 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3391405, + "thread": 1 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3571936, + "thread": 2 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3618287, + "thread": 28 + } + }, + { + "amount": "87.825573640", + "slot": { + "period": 3805487, + "thread": 21 + } + } + ], + "AU1aJaATgNHm9Z3FYmmCZqYu2yP3KH45m4EDJ3XU3qAG76sVVb7v": [ + { + "amount": "73.979428808", + "slot": { + "period": 132602, + "thread": 21 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 276791, + "thread": 8 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 463548, + "thread": 3 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 528080, + "thread": 8 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 793216, + "thread": 3 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 909439, + "thread": 19 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1056860, + "thread": 10 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1307453, + "thread": 2 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1370662, + "thread": 25 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1615162, + "thread": 18 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1759668, + "thread": 17 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 1915724, + "thread": 24 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2114289, + "thread": 5 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2171126, + "thread": 8 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2419552, + "thread": 10 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2502919, + "thread": 15 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2722913, + "thread": 0 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2795879, + "thread": 3 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 2995892, + "thread": 4 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 3155308, + "thread": 11 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 3427170, + "thread": 8 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 3588984, + "thread": 14 + } + }, + { + "amount": "73.979428808", + "slot": { + "period": 3719706, + "thread": 26 + } + }, + { + "amount": "73.979428818", + "slot": { + "period": 3890603, + "thread": 23 + } + } + ], + "AU1aLFaom4cyS5ifjGBoSAs8RdD3ZQ4WNykU6sNhaAZbdLXGnmwG": [ + { + "amount": "151.655899082", + "slot": { + "period": 54805, + "thread": 6 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 182120, + "thread": 12 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 455275, + "thread": 25 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 577867, + "thread": 29 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 764615, + "thread": 13 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 917704, + "thread": 15 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1036631, + "thread": 18 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1159289, + "thread": 25 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1353289, + "thread": 24 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1528672, + "thread": 24 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1752285, + "thread": 25 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 1911994, + "thread": 18 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2076211, + "thread": 5 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2225532, + "thread": 16 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2334818, + "thread": 29 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2480505, + "thread": 11 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2786158, + "thread": 30 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2849622, + "thread": 1 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 2966489, + "thread": 1 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 3249947, + "thread": 28 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 3387409, + "thread": 26 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 3463614, + "thread": 24 + } + }, + { + "amount": "151.655899082", + "slot": { + "period": 3693303, + "thread": 2 + } + }, + { + "amount": "151.655899090", + "slot": { + "period": 3810728, + "thread": 18 + } + } + ], + "AU1aLZYGpo39JWVQtM6qGzQq9YvqmotYfJgAwgi5P9pjQiBA59YP": [ + { + "amount": "375.802861882", + "slot": { + "period": 103583, + "thread": 11 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 179303, + "thread": 31 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 397229, + "thread": 27 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 569830, + "thread": 14 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 766919, + "thread": 16 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 884884, + "thread": 17 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1039926, + "thread": 23 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1166010, + "thread": 24 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1342581, + "thread": 4 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1636711, + "thread": 27 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1778901, + "thread": 22 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1858086, + "thread": 18 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 1987745, + "thread": 25 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 2229268, + "thread": 26 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 2335358, + "thread": 11 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 2559368, + "thread": 28 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 2710732, + "thread": 22 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 2867235, + "thread": 25 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 3016836, + "thread": 22 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 3249055, + "thread": 11 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 3318549, + "thread": 24 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 3524985, + "thread": 8 + } + }, + { + "amount": "375.802861882", + "slot": { + "period": 3777434, + "thread": 20 + } + }, + { + "amount": "375.802861874", + "slot": { + "period": 3878313, + "thread": 1 + } + } + ], + "AU1aLgtSRob3w9xxPp6Eu5xoWCuGRNgL9HtNTmz9k3kzKo4S9ZTe": [ + { + "amount": "388.592594813", + "slot": { + "period": 15203, + "thread": 12 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 317359, + "thread": 9 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 395319, + "thread": 3 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 600790, + "thread": 30 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 751576, + "thread": 1 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 911778, + "thread": 17 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1025418, + "thread": 21 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1163162, + "thread": 14 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1427538, + "thread": 22 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1618024, + "thread": 13 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1773448, + "thread": 9 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 1865154, + "thread": 20 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2100189, + "thread": 11 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2293300, + "thread": 24 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2387491, + "thread": 17 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2514822, + "thread": 3 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2700475, + "thread": 31 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 2928209, + "thread": 29 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 3010749, + "thread": 10 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 3232118, + "thread": 16 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 3366653, + "thread": 20 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 3611141, + "thread": 25 + } + }, + { + "amount": "388.592594813", + "slot": { + "period": 3777654, + "thread": 21 + } + }, + { + "amount": "388.592594816", + "slot": { + "period": 3853083, + "thread": 11 + } + } + ], + "AU1aLveVeY22cMZF1xzfG65yemKkh2DZQPriCeZtXc77q9qJDbGK": [ + { + "amount": "122.406226222", + "slot": { + "period": 120850, + "thread": 24 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 287020, + "thread": 12 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 434869, + "thread": 2 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 539674, + "thread": 28 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 711737, + "thread": 11 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 938440, + "thread": 11 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1030577, + "thread": 23 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1158993, + "thread": 21 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1422026, + "thread": 18 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1570462, + "thread": 9 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1776744, + "thread": 1 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 1962810, + "thread": 20 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2055105, + "thread": 1 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2198489, + "thread": 18 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2302537, + "thread": 0 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2613673, + "thread": 2 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2663789, + "thread": 12 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 2860900, + "thread": 6 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 3108988, + "thread": 9 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 3140301, + "thread": 29 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 3354214, + "thread": 5 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 3558612, + "thread": 26 + } + }, + { + "amount": "122.406226222", + "slot": { + "period": 3661474, + "thread": 28 + } + }, + { + "amount": "122.406226216", + "slot": { + "period": 3833111, + "thread": 10 + } + } + ], + "AU1aMiwmuAkk8bHHCM2EpZcM1eyFQsV3yD3Jk9EnB9EsSXGVBxmf": [ + { + "amount": "212.255501548", + "slot": { + "period": 122598, + "thread": 28 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 228641, + "thread": 21 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 470676, + "thread": 18 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 501247, + "thread": 3 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 677231, + "thread": 10 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 924697, + "thread": 22 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1075502, + "thread": 23 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1193871, + "thread": 18 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1339365, + "thread": 17 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1613545, + "thread": 13 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1679193, + "thread": 26 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 1974045, + "thread": 10 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2117263, + "thread": 5 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2286247, + "thread": 3 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2386677, + "thread": 21 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2578155, + "thread": 6 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2712604, + "thread": 26 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2871521, + "thread": 22 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 2983718, + "thread": 13 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 3251323, + "thread": 9 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 3361878, + "thread": 10 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 3473698, + "thread": 24 + } + }, + { + "amount": "212.255501548", + "slot": { + "period": 3625740, + "thread": 14 + } + }, + { + "amount": "212.255501540", + "slot": { + "period": 3878789, + "thread": 27 + } + } + ], + "AU1aMsSLJfee2D4LGHodMg7Vgkq17ns4qT5GERQCVxBLPFGALg7f": [ + { + "amount": "363.399044870", + "slot": { + "period": 143089, + "thread": 7 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 281863, + "thread": 13 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 472612, + "thread": 25 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 619465, + "thread": 21 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 805500, + "thread": 19 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 961578, + "thread": 26 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1074080, + "thread": 10 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1188477, + "thread": 18 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1399524, + "thread": 16 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1643513, + "thread": 9 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1801336, + "thread": 11 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 1832191, + "thread": 26 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2074398, + "thread": 11 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2202553, + "thread": 0 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2329365, + "thread": 2 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2543690, + "thread": 16 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2724921, + "thread": 19 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 2819467, + "thread": 13 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 3002029, + "thread": 17 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 3241079, + "thread": 20 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 3310322, + "thread": 13 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 3616434, + "thread": 19 + } + }, + { + "amount": "363.399044870", + "slot": { + "period": 3630551, + "thread": 23 + } + }, + { + "amount": "363.399044860", + "slot": { + "period": 3838108, + "thread": 4 + } + } + ], + "AU1aNWoYYVk4Z1BMNQES4zoBfrhRkxC5q4WHBTpTZuqfKdWXaMAK": [ + { + "amount": "697.660269629", + "slot": { + "period": 141532, + "thread": 11 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 220836, + "thread": 16 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 415323, + "thread": 18 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 653364, + "thread": 19 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 757212, + "thread": 19 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 867509, + "thread": 28 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1002667, + "thread": 28 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1151403, + "thread": 28 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1366066, + "thread": 19 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1597270, + "thread": 0 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1765311, + "thread": 30 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1899109, + "thread": 21 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 1985846, + "thread": 20 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2155627, + "thread": 29 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2403045, + "thread": 31 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2558873, + "thread": 7 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2781202, + "thread": 12 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2939745, + "thread": 16 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 2981062, + "thread": 18 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 3246175, + "thread": 0 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 3426038, + "thread": 13 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 3572114, + "thread": 17 + } + }, + { + "amount": "697.660269629", + "slot": { + "period": 3723256, + "thread": 6 + } + }, + { + "amount": "697.660269633", + "slot": { + "period": 3797678, + "thread": 23 + } + } + ], + "AU1aNbBok7pdW7og1pDVhyoF2pJGyZ3uF3msfc3RZzG47YtAPsYS": [ + { + "amount": "293.421929679", + "slot": { + "period": 89060, + "thread": 16 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 265780, + "thread": 19 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 327843, + "thread": 18 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 542198, + "thread": 10 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 679142, + "thread": 10 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 896644, + "thread": 7 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1014345, + "thread": 5 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1292673, + "thread": 16 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1435545, + "thread": 17 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1557149, + "thread": 12 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1735758, + "thread": 26 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1924909, + "thread": 20 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 1993394, + "thread": 4 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2229318, + "thread": 13 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2432413, + "thread": 28 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2607277, + "thread": 14 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2766215, + "thread": 15 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2861503, + "thread": 30 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 2985040, + "thread": 8 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 3258545, + "thread": 23 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 3342312, + "thread": 17 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 3533263, + "thread": 11 + } + }, + { + "amount": "293.421929679", + "slot": { + "period": 3753896, + "thread": 8 + } + }, + { + "amount": "293.421929681", + "slot": { + "period": 3837972, + "thread": 19 + } + } + ], + "AU1aNgvZBd9uWNPoB7NTCsA3TB9rYpx1ehXH1GVcKiePaHwStpgA": [ + { + "amount": "177.949903131", + "slot": { + "period": 128197, + "thread": 21 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 233049, + "thread": 26 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 416195, + "thread": 9 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 517637, + "thread": 14 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 656818, + "thread": 27 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 842845, + "thread": 31 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1100054, + "thread": 1 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1239559, + "thread": 0 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1468152, + "thread": 29 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1574289, + "thread": 7 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1711869, + "thread": 16 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 1947587, + "thread": 28 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2072631, + "thread": 13 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2279546, + "thread": 23 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2423866, + "thread": 17 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2569245, + "thread": 19 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2705906, + "thread": 15 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 2896276, + "thread": 6 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 3027957, + "thread": 5 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 3164912, + "thread": 5 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 3326814, + "thread": 5 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 3501510, + "thread": 16 + } + }, + { + "amount": "177.949903131", + "slot": { + "period": 3663969, + "thread": 5 + } + }, + { + "amount": "177.949903137", + "slot": { + "period": 3879637, + "thread": 20 + } + } + ], + "AU1aNkRJtwb7tMqPnFqfQBX12S4XYbE8zYAXvz5DV2kxJaN4TW7z": [ + { + "amount": "233.917701119", + "slot": { + "period": 41038, + "thread": 26 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 245387, + "thread": 2 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 348174, + "thread": 11 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 500786, + "thread": 30 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 784411, + "thread": 18 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 833385, + "thread": 29 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1108569, + "thread": 11 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1193834, + "thread": 4 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1326710, + "thread": 3 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1510823, + "thread": 0 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1651447, + "thread": 0 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 1820426, + "thread": 20 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2033969, + "thread": 28 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2273330, + "thread": 24 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2319616, + "thread": 9 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2508190, + "thread": 10 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2737941, + "thread": 7 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 2953211, + "thread": 0 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 3029188, + "thread": 23 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 3262598, + "thread": 31 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 3301294, + "thread": 9 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 3567846, + "thread": 2 + } + }, + { + "amount": "233.917701119", + "slot": { + "period": 3722108, + "thread": 31 + } + }, + { + "amount": "233.917701108", + "slot": { + "period": 3891762, + "thread": 2 + } + } + ], + "AU1aNkSYkTsELHQBZz9MWeH2MCPq4F2Y4SEr8Gc7FWnpeWm9fsEj": [ + { + "amount": "359.315829504", + "slot": { + "period": 78548, + "thread": 18 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 246094, + "thread": 24 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 382074, + "thread": 26 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 587811, + "thread": 13 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 743898, + "thread": 27 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 923610, + "thread": 14 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1011530, + "thread": 24 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1258242, + "thread": 9 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1335756, + "thread": 3 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1566548, + "thread": 15 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1656426, + "thread": 2 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1906126, + "thread": 15 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 1989443, + "thread": 15 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 2229747, + "thread": 23 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 2383208, + "thread": 25 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 2501839, + "thread": 24 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 2704187, + "thread": 17 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 2901738, + "thread": 3 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 3000140, + "thread": 13 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 3284051, + "thread": 25 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 3375344, + "thread": 9 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 3538652, + "thread": 20 + } + }, + { + "amount": "359.315829504", + "slot": { + "period": 3674864, + "thread": 30 + } + }, + { + "amount": "359.315829501", + "slot": { + "period": 3938009, + "thread": 30 + } + } + ], + "AU1aPbVmgA12JegzGFFAiu81ibAwRTQvYQuFmYxDATsDwGS7dQng": [ + { + "amount": "135.062901555", + "slot": { + "period": 104697, + "thread": 7 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 241239, + "thread": 14 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 338462, + "thread": 14 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 533713, + "thread": 9 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 712276, + "thread": 10 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 835651, + "thread": 13 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1054638, + "thread": 24 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1217648, + "thread": 12 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1393002, + "thread": 4 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1642435, + "thread": 14 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1701227, + "thread": 11 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 1912070, + "thread": 18 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2036919, + "thread": 4 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2192316, + "thread": 7 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2388403, + "thread": 28 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2499433, + "thread": 5 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2779740, + "thread": 20 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 2879898, + "thread": 1 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 3048174, + "thread": 29 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 3208927, + "thread": 23 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 3427350, + "thread": 7 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 3513748, + "thread": 6 + } + }, + { + "amount": "135.062901555", + "slot": { + "period": 3723342, + "thread": 24 + } + }, + { + "amount": "135.062901561", + "slot": { + "period": 3784701, + "thread": 28 + } + } + ], + "AU1aQiSfDicFoA64Sw47h1tyEq714BFPRSKjiA8n6DFjzNmgdybz": [ + { + "amount": "92.671337884", + "slot": { + "period": 110896, + "thread": 26 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 174154, + "thread": 21 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 336667, + "thread": 5 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 631371, + "thread": 30 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 798953, + "thread": 0 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 948649, + "thread": 1 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1080930, + "thread": 15 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1167998, + "thread": 19 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1454338, + "thread": 21 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1605580, + "thread": 31 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1718661, + "thread": 5 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 1821845, + "thread": 0 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2024832, + "thread": 20 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2174207, + "thread": 23 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2333997, + "thread": 8 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2579744, + "thread": 24 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2631508, + "thread": 3 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2829981, + "thread": 26 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 2969107, + "thread": 0 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 3203923, + "thread": 0 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 3330872, + "thread": 8 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 3460075, + "thread": 27 + } + }, + { + "amount": "92.671337884", + "slot": { + "period": 3629473, + "thread": 2 + } + }, + { + "amount": "92.671337889", + "slot": { + "period": 3806889, + "thread": 0 + } + } + ], + "AU1aQtX5UvZS8KYRuzRjTYWcvAiL9wbcEvPHbCrLfDYXec1hJMYf": [ + { + "amount": "482.271608811", + "slot": { + "period": 51568, + "thread": 12 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 321629, + "thread": 25 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 377446, + "thread": 0 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 625800, + "thread": 20 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 816578, + "thread": 9 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 925192, + "thread": 24 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1122533, + "thread": 8 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1219448, + "thread": 21 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1423102, + "thread": 12 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1535192, + "thread": 8 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1729031, + "thread": 21 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1844104, + "thread": 0 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 1978365, + "thread": 25 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2291505, + "thread": 17 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2323755, + "thread": 25 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2587817, + "thread": 5 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2772602, + "thread": 29 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2878002, + "thread": 8 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 2959497, + "thread": 23 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 3284061, + "thread": 22 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 3344247, + "thread": 4 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 3568508, + "thread": 20 + } + }, + { + "amount": "482.271608811", + "slot": { + "period": 3727191, + "thread": 3 + } + }, + { + "amount": "482.271608801", + "slot": { + "period": 3784370, + "thread": 6 + } + } + ], + "AU1aR5oV4uGpaTuwX3c1SDGwCJjY4NqFxExa7PAVmt3ig9VBeEwj": [ + { + "amount": "71.162645910", + "slot": { + "period": 117938, + "thread": 19 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 244331, + "thread": 2 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 412389, + "thread": 23 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 642923, + "thread": 31 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 720277, + "thread": 28 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 845589, + "thread": 22 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 985114, + "thread": 24 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 1207195, + "thread": 13 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 1358277, + "thread": 26 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 1626976, + "thread": 12 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 1717261, + "thread": 18 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 1859141, + "thread": 29 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2111771, + "thread": 26 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2289282, + "thread": 11 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2382896, + "thread": 4 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2512201, + "thread": 24 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2752232, + "thread": 23 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 2914965, + "thread": 13 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 3111573, + "thread": 31 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 3267258, + "thread": 24 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 3337726, + "thread": 21 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 3481122, + "thread": 25 + } + }, + { + "amount": "71.162645910", + "slot": { + "period": 3621997, + "thread": 10 + } + }, + { + "amount": "71.162645918", + "slot": { + "period": 3826546, + "thread": 16 + } + } + ], + "AU1aRG2hqdFyopS5V6oBdgx4b494cDYvSEhnMeVNdTSXX31ayhHi": [ + { + "amount": "421.553377073", + "slot": { + "period": 106420, + "thread": 23 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 267946, + "thread": 11 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 332171, + "thread": 18 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 545420, + "thread": 10 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 691733, + "thread": 14 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 857421, + "thread": 16 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 986606, + "thread": 29 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 1249673, + "thread": 21 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 1475300, + "thread": 14 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 1554613, + "thread": 5 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 1675673, + "thread": 2 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 1867895, + "thread": 12 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2093838, + "thread": 21 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2176703, + "thread": 1 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2419847, + "thread": 31 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2612178, + "thread": 1 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2749397, + "thread": 17 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 2834036, + "thread": 25 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 3044295, + "thread": 22 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 3278247, + "thread": 16 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 3379603, + "thread": 4 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 3454785, + "thread": 6 + } + }, + { + "amount": "421.553377073", + "slot": { + "period": 3727242, + "thread": 6 + } + }, + { + "amount": "421.553377076", + "slot": { + "period": 3933528, + "thread": 14 + } + } + ], + "AU1aSW8gpceV2GZg3aaiKDnAh35M3DzMFWGwMHZTvk2n3UJCvi4u": [ + { + "amount": "60.123001473", + "slot": { + "period": 113195, + "thread": 18 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 194981, + "thread": 1 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 338393, + "thread": 10 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 588543, + "thread": 2 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 800627, + "thread": 3 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 950131, + "thread": 31 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1105482, + "thread": 19 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1193507, + "thread": 7 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1358523, + "thread": 20 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1635988, + "thread": 14 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1761373, + "thread": 14 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1864633, + "thread": 18 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 1984379, + "thread": 8 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 2157534, + "thread": 1 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 2354293, + "thread": 30 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 2572153, + "thread": 6 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 2695206, + "thread": 10 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 2864735, + "thread": 31 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 3063439, + "thread": 25 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 3251903, + "thread": 11 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 3305593, + "thread": 3 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 3616588, + "thread": 5 + } + }, + { + "amount": "60.123001473", + "slot": { + "period": 3685218, + "thread": 2 + } + }, + { + "amount": "60.123001484", + "slot": { + "period": 3814544, + "thread": 30 + } + } + ], + "AU1aTVaL24YfkiFJHcgaDcXQsjZvPtWP3FgPMSe1CLTR9vB5ZAVu": [ + { + "amount": "107.474835370", + "slot": { + "period": 65792, + "thread": 10 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 250648, + "thread": 2 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 412258, + "thread": 21 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 561132, + "thread": 4 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 673104, + "thread": 28 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 982161, + "thread": 17 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1060093, + "thread": 28 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1213397, + "thread": 31 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1356927, + "thread": 27 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1607779, + "thread": 12 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1730571, + "thread": 26 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1830202, + "thread": 2 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 1986063, + "thread": 23 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2199396, + "thread": 0 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2327325, + "thread": 31 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2506299, + "thread": 0 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2669956, + "thread": 15 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2907579, + "thread": 1 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 2986481, + "thread": 18 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 3211551, + "thread": 6 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 3417760, + "thread": 18 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 3521735, + "thread": 8 + } + }, + { + "amount": "107.474835370", + "slot": { + "period": 3646553, + "thread": 15 + } + }, + { + "amount": "107.474835362", + "slot": { + "period": 3842715, + "thread": 15 + } + } + ], + "AU1aUggBdKgRmGjzFWYNx7vU6Eh9sZSf6kCysAMHT6A8X9PauHz1": [ + { + "amount": "392.409347390", + "slot": { + "period": 68888, + "thread": 8 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 278984, + "thread": 11 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 480091, + "thread": 22 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 543430, + "thread": 1 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 672597, + "thread": 2 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 970781, + "thread": 4 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1093766, + "thread": 0 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1224831, + "thread": 19 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1374363, + "thread": 9 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1564408, + "thread": 18 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1744127, + "thread": 22 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 1955401, + "thread": 27 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2133328, + "thread": 16 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2219199, + "thread": 0 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2430733, + "thread": 29 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2522401, + "thread": 17 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2707509, + "thread": 1 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 2907395, + "thread": 1 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 3121056, + "thread": 28 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 3162897, + "thread": 19 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 3356580, + "thread": 14 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 3501683, + "thread": 26 + } + }, + { + "amount": "392.409347390", + "slot": { + "period": 3641963, + "thread": 7 + } + }, + { + "amount": "392.409347401", + "slot": { + "period": 3839033, + "thread": 20 + } + } + ], + "AU1aV7U2mFzo6Ckoiv9LP19zkv93TwnhvaE3upcWX7iSCvA6aWjM": [ + { + "amount": "250.796831999", + "slot": { + "period": 25804, + "thread": 19 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 189598, + "thread": 30 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 353229, + "thread": 14 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 645864, + "thread": 8 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 703342, + "thread": 8 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 925030, + "thread": 24 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1084052, + "thread": 12 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1202571, + "thread": 17 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1390049, + "thread": 13 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1513752, + "thread": 19 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1807881, + "thread": 12 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 1852759, + "thread": 30 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2034968, + "thread": 24 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2159471, + "thread": 0 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2414689, + "thread": 12 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2564125, + "thread": 5 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2648753, + "thread": 1 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 2881678, + "thread": 26 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 3101693, + "thread": 20 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 3150501, + "thread": 25 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 3377253, + "thread": 9 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 3490011, + "thread": 29 + } + }, + { + "amount": "250.796831999", + "slot": { + "period": 3750824, + "thread": 4 + } + }, + { + "amount": "250.796832001", + "slot": { + "period": 3786168, + "thread": 5 + } + } + ], + "AU1aVjgHgbPDmh3qnhSW8WuydoFAGybknfnmp9JmHNxaAnPEVRVz": [ + { + "amount": "405.317830082", + "slot": { + "period": 21939, + "thread": 24 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 249364, + "thread": 24 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 482610, + "thread": 16 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 575400, + "thread": 0 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 667370, + "thread": 13 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 909872, + "thread": 29 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1064955, + "thread": 20 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1314472, + "thread": 7 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1401585, + "thread": 15 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1630611, + "thread": 11 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1745074, + "thread": 21 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 1943784, + "thread": 20 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2095311, + "thread": 30 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2286179, + "thread": 15 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2302342, + "thread": 12 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2551169, + "thread": 31 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2658846, + "thread": 16 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 2817657, + "thread": 20 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 3051709, + "thread": 1 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 3174543, + "thread": 16 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 3420070, + "thread": 30 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 3522276, + "thread": 27 + } + }, + { + "amount": "405.317830082", + "slot": { + "period": 3646344, + "thread": 23 + } + }, + { + "amount": "405.317830092", + "slot": { + "period": 3793929, + "thread": 25 + } + } + ], + "AU1aVvwAJktjskV8yJCt82SyecV8bYvqz9FS7gzKkgQXnhhooXQd": [ + { + "amount": "141.734616485", + "slot": { + "period": 100682, + "thread": 29 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 240683, + "thread": 21 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 464476, + "thread": 9 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 621467, + "thread": 20 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 806297, + "thread": 10 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 872737, + "thread": 7 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1148442, + "thread": 28 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1221309, + "thread": 18 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1421619, + "thread": 13 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1640906, + "thread": 14 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1729978, + "thread": 7 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 1901332, + "thread": 20 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2041219, + "thread": 2 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2175763, + "thread": 30 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2374563, + "thread": 4 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2519168, + "thread": 29 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2783412, + "thread": 21 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 2795766, + "thread": 6 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 3020402, + "thread": 16 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 3149100, + "thread": 13 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 3298003, + "thread": 8 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 3585491, + "thread": 22 + } + }, + { + "amount": "141.734616485", + "slot": { + "period": 3620066, + "thread": 3 + } + }, + { + "amount": "141.734616496", + "slot": { + "period": 3844379, + "thread": 16 + } + } + ], + "AU1aWKphHPjdgSzL19VPg2h27bjYfBQBqQYwtxxNZkBjpYi8JLYR": [ + { + "amount": "126.535863774", + "slot": { + "period": 60934, + "thread": 4 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 252320, + "thread": 10 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 399291, + "thread": 17 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 542851, + "thread": 2 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 818105, + "thread": 6 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 855414, + "thread": 3 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1109625, + "thread": 28 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1239508, + "thread": 30 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1416204, + "thread": 2 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1625993, + "thread": 18 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1743306, + "thread": 13 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 1907009, + "thread": 18 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2054086, + "thread": 16 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2269980, + "thread": 7 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2440155, + "thread": 18 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2551802, + "thread": 15 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2716988, + "thread": 25 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 2869549, + "thread": 29 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 3055184, + "thread": 6 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 3264248, + "thread": 22 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 3316807, + "thread": 19 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 3518605, + "thread": 11 + } + }, + { + "amount": "126.535863774", + "slot": { + "period": 3642143, + "thread": 31 + } + }, + { + "amount": "126.535863772", + "slot": { + "period": 3879414, + "thread": 14 + } + } + ], + "AU1aWNFgv6NWDgzL8BbSZfH79yNivBaVpeeNRfAnVdJeNnJP8eeG": [ + { + "amount": "168.354506497", + "slot": { + "period": 15678, + "thread": 18 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 314181, + "thread": 2 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 480684, + "thread": 17 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 645155, + "thread": 9 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 723451, + "thread": 2 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 921704, + "thread": 19 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1063529, + "thread": 30 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1237919, + "thread": 19 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1399027, + "thread": 22 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1597097, + "thread": 14 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1693064, + "thread": 16 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 1903489, + "thread": 27 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2000983, + "thread": 16 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2247731, + "thread": 29 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2413570, + "thread": 2 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2539235, + "thread": 11 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2760336, + "thread": 9 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 2933507, + "thread": 12 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 3079887, + "thread": 6 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 3139957, + "thread": 30 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 3298738, + "thread": 16 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 3552932, + "thread": 15 + } + }, + { + "amount": "168.354506497", + "slot": { + "period": 3734429, + "thread": 29 + } + }, + { + "amount": "168.354506508", + "slot": { + "period": 3897668, + "thread": 18 + } + } + ], + "AU1aWWvb2oLojdsKVSapi9V9aSirez6Tao9yjFrbxccKeN9dKVck": [ + { + "amount": "357.033846657", + "slot": { + "period": 95648, + "thread": 31 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 215229, + "thread": 4 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 391814, + "thread": 23 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 495731, + "thread": 13 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 676934, + "thread": 25 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 885578, + "thread": 30 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1122820, + "thread": 24 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1282998, + "thread": 19 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1392100, + "thread": 3 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1516272, + "thread": 4 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1664843, + "thread": 1 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 1975810, + "thread": 20 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2003116, + "thread": 9 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2164849, + "thread": 22 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2311638, + "thread": 27 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2497348, + "thread": 4 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2783955, + "thread": 20 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 2886258, + "thread": 28 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 3086500, + "thread": 0 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 3253667, + "thread": 25 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 3303029, + "thread": 2 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 3546754, + "thread": 4 + } + }, + { + "amount": "357.033846657", + "slot": { + "period": 3776119, + "thread": 29 + } + }, + { + "amount": "357.033846666", + "slot": { + "period": 3850768, + "thread": 29 + } + } + ], + "AU1aXGy8NCSfemBfwGKDgVsEYYWvCpBduTRs9h8w33JN6By6m5D4": [ + { + "amount": "500.946672871", + "slot": { + "period": 70195, + "thread": 3 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 318807, + "thread": 14 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 474054, + "thread": 14 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 580631, + "thread": 14 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 793178, + "thread": 18 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 916273, + "thread": 17 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1028023, + "thread": 4 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1167682, + "thread": 17 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1339673, + "thread": 31 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1566063, + "thread": 5 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1764497, + "thread": 19 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1830345, + "thread": 11 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 1998647, + "thread": 11 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 2253670, + "thread": 22 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 2430945, + "thread": 3 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 2590848, + "thread": 25 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 2755920, + "thread": 23 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 2854051, + "thread": 27 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 3039535, + "thread": 15 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 3278789, + "thread": 14 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 3382077, + "thread": 30 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 3480374, + "thread": 26 + } + }, + { + "amount": "500.946672871", + "slot": { + "period": 3718663, + "thread": 27 + } + }, + { + "amount": "500.946672867", + "slot": { + "period": 3936420, + "thread": 31 + } + } + ], + "AU1aXZ2CYhjdroz5pa8bRyi9t7MV49KuggeZkgD1NpPXHdXbHCAR": [ + { + "amount": "198.949584634", + "slot": { + "period": 55749, + "thread": 30 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 236059, + "thread": 31 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 405037, + "thread": 28 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 499774, + "thread": 18 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 787934, + "thread": 20 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 965246, + "thread": 10 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1049333, + "thread": 15 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1305198, + "thread": 17 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1434918, + "thread": 7 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1590795, + "thread": 17 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1721593, + "thread": 4 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1913567, + "thread": 16 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 1988328, + "thread": 24 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 2200169, + "thread": 15 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 2388065, + "thread": 22 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 2580389, + "thread": 11 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 2770903, + "thread": 18 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 2816900, + "thread": 19 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 3076336, + "thread": 8 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 3178985, + "thread": 17 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 3345203, + "thread": 31 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 3604386, + "thread": 12 + } + }, + { + "amount": "198.949584634", + "slot": { + "period": 3759653, + "thread": 10 + } + }, + { + "amount": "198.949584624", + "slot": { + "period": 3814752, + "thread": 5 + } + } + ], + "AU1aYNQykazsc51HLm8trfqiSwuT8EgKyxZ7BMaqE3jvafAHnS6V": [ + { + "amount": "309.993949261", + "slot": { + "period": 58336, + "thread": 0 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 184326, + "thread": 9 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 434552, + "thread": 22 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 547913, + "thread": 4 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 681458, + "thread": 4 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 976250, + "thread": 26 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 999508, + "thread": 26 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 1299944, + "thread": 27 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 1412193, + "thread": 4 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 1575331, + "thread": 7 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 1791638, + "thread": 18 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 1973963, + "thread": 29 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2007072, + "thread": 30 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2194147, + "thread": 28 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2367133, + "thread": 2 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2550967, + "thread": 2 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2761171, + "thread": 31 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 2818769, + "thread": 23 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 3021166, + "thread": 26 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 3168192, + "thread": 17 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 3403999, + "thread": 7 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 3593305, + "thread": 27 + } + }, + { + "amount": "309.993949261", + "slot": { + "period": 3765610, + "thread": 20 + } + }, + { + "amount": "309.993949257", + "slot": { + "period": 3817092, + "thread": 30 + } + } + ], + "AU1aYyVQL1joMUywpnz5euivZtKZVoye6LpnucxFdT7vLiHAjgJz": [ + { + "amount": "136.067387402", + "slot": { + "period": 147012, + "thread": 26 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 214296, + "thread": 9 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 487654, + "thread": 0 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 626028, + "thread": 31 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 720000, + "thread": 12 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 882843, + "thread": 11 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1110349, + "thread": 23 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1151881, + "thread": 21 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1396200, + "thread": 16 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1634123, + "thread": 14 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1770992, + "thread": 26 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 1946136, + "thread": 22 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2123720, + "thread": 7 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2293128, + "thread": 20 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2453696, + "thread": 21 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2613354, + "thread": 9 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2730344, + "thread": 11 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 2910028, + "thread": 13 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 3117318, + "thread": 22 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 3208833, + "thread": 21 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 3314785, + "thread": 4 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 3486457, + "thread": 6 + } + }, + { + "amount": "136.067387402", + "slot": { + "period": 3638090, + "thread": 0 + } + }, + { + "amount": "136.067387396", + "slot": { + "period": 3940506, + "thread": 27 + } + } + ], + "AU1aZRC1Y7p9AEBWyn3vseNoVyLyMhzuqQWjfMWzYzPEh91peBWD": [ + { + "amount": "138.590830967", + "slot": { + "period": 83722, + "thread": 31 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 303296, + "thread": 0 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 433681, + "thread": 21 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 641396, + "thread": 7 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 777310, + "thread": 2 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 937622, + "thread": 18 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1041240, + "thread": 22 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1207658, + "thread": 20 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1429487, + "thread": 15 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1544398, + "thread": 27 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1690196, + "thread": 24 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 1919729, + "thread": 25 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2029447, + "thread": 30 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2163658, + "thread": 16 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2307511, + "thread": 27 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2574963, + "thread": 15 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2688987, + "thread": 6 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 2800790, + "thread": 29 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 3084722, + "thread": 14 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 3137136, + "thread": 15 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 3298640, + "thread": 6 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 3524641, + "thread": 1 + } + }, + { + "amount": "138.590830967", + "slot": { + "period": 3648670, + "thread": 31 + } + }, + { + "amount": "138.590830956", + "slot": { + "period": 3896942, + "thread": 6 + } + } + ], + "AU1aask9FCTBkLcMeeAAdRYWA2ZLRn62nAX2vf44BWFdVD9Ct1ZM": [ + { + "amount": "282.734625754", + "slot": { + "period": 74579, + "thread": 23 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 179515, + "thread": 13 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 337394, + "thread": 12 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 508967, + "thread": 6 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 803490, + "thread": 24 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 957617, + "thread": 20 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1080718, + "thread": 12 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1198302, + "thread": 12 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1447751, + "thread": 30 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1553679, + "thread": 10 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1673727, + "thread": 27 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 1853739, + "thread": 25 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2024684, + "thread": 11 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2236333, + "thread": 5 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2412881, + "thread": 18 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2499896, + "thread": 11 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2695833, + "thread": 23 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 2812940, + "thread": 18 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 3031382, + "thread": 29 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 3256650, + "thread": 0 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 3317028, + "thread": 20 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 3514564, + "thread": 7 + } + }, + { + "amount": "282.734625754", + "slot": { + "period": 3643714, + "thread": 30 + } + }, + { + "amount": "282.734625765", + "slot": { + "period": 3868523, + "thread": 25 + } + } + ], + "AU1abANWtqjCixYHndu2hkkwdhsMoLoAMBFHoJ4mvFFpavBvsDt8": [ + { + "amount": "300.232134485", + "slot": { + "period": 114602, + "thread": 7 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 173093, + "thread": 4 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 325239, + "thread": 15 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 491710, + "thread": 28 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 740796, + "thread": 29 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 855682, + "thread": 26 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1062653, + "thread": 23 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1243011, + "thread": 1 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1321393, + "thread": 8 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1622993, + "thread": 30 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1699630, + "thread": 30 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 1830377, + "thread": 8 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2113402, + "thread": 20 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2152674, + "thread": 2 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2308560, + "thread": 20 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2527525, + "thread": 4 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2727435, + "thread": 27 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2909910, + "thread": 19 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 2971825, + "thread": 16 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 3279738, + "thread": 30 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 3392406, + "thread": 16 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 3532045, + "thread": 13 + } + }, + { + "amount": "300.232134485", + "slot": { + "period": 3730550, + "thread": 13 + } + }, + { + "amount": "300.232134489", + "slot": { + "period": 3891863, + "thread": 14 + } + } + ], + "AU1acDdLYkhGvn16SdoGdZdBBmbqd5iBqcLffETxyG3FE2v3M8jZ": [ + { + "amount": "125.550096098", + "slot": { + "period": 144111, + "thread": 3 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 285746, + "thread": 25 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 342175, + "thread": 13 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 508308, + "thread": 16 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 766850, + "thread": 11 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 872052, + "thread": 24 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1093872, + "thread": 24 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1255982, + "thread": 24 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1456848, + "thread": 0 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1583944, + "thread": 27 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1678595, + "thread": 29 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1933938, + "thread": 21 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 1991455, + "thread": 9 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 2221362, + "thread": 4 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 2384185, + "thread": 5 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 2541479, + "thread": 17 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 2722044, + "thread": 8 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 2908110, + "thread": 25 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 3100786, + "thread": 24 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 3288065, + "thread": 22 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 3335253, + "thread": 24 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 3503441, + "thread": 18 + } + }, + { + "amount": "125.550096098", + "slot": { + "period": 3661502, + "thread": 9 + } + }, + { + "amount": "125.550096102", + "slot": { + "period": 3899756, + "thread": 20 + } + } + ], + "AU1acH7KqFzVNyVTKgGdxikZUafc3KzTixNNC4busaLCQnVkADPw": [ + { + "amount": "145.101359583", + "slot": { + "period": 93562, + "thread": 16 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 303388, + "thread": 24 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 452246, + "thread": 0 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 645894, + "thread": 17 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 713738, + "thread": 2 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 903741, + "thread": 4 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1060794, + "thread": 18 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1235077, + "thread": 6 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1453223, + "thread": 20 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1510362, + "thread": 25 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1749991, + "thread": 14 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1819844, + "thread": 25 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 1977708, + "thread": 7 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 2281239, + "thread": 19 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 2423001, + "thread": 12 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 2494058, + "thread": 7 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 2714926, + "thread": 5 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 2914636, + "thread": 14 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 3029412, + "thread": 2 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 3254782, + "thread": 18 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 3426305, + "thread": 4 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 3517657, + "thread": 2 + } + }, + { + "amount": "145.101359583", + "slot": { + "period": 3618176, + "thread": 19 + } + }, + { + "amount": "145.101359578", + "slot": { + "period": 3898449, + "thread": 29 + } + } + ], + "AU1acNNAFKR1bXoY5EAHsFTXcy3xxBoyQesQCqrrEx2WxewwTATV": [ + { + "amount": "175.613902845", + "slot": { + "period": 110910, + "thread": 14 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 204279, + "thread": 0 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 368686, + "thread": 3 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 528333, + "thread": 25 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 797625, + "thread": 31 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 951481, + "thread": 28 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1088188, + "thread": 27 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1233707, + "thread": 19 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1479490, + "thread": 3 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1582141, + "thread": 22 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1807398, + "thread": 13 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 1814338, + "thread": 26 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2049823, + "thread": 31 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2252713, + "thread": 3 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2374886, + "thread": 23 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2587250, + "thread": 8 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2661638, + "thread": 9 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 2850385, + "thread": 3 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 3044508, + "thread": 4 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 3215741, + "thread": 9 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 3293179, + "thread": 30 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 3614092, + "thread": 2 + } + }, + { + "amount": "175.613902845", + "slot": { + "period": 3759147, + "thread": 21 + } + }, + { + "amount": "175.613902838", + "slot": { + "period": 3802540, + "thread": 23 + } + } + ], + "AU1acgx3cDR79uNNGFHnUB9L215sEZgNezt6vn4ivqWeCPvkAqVw": [ + { + "amount": "173.238876528", + "slot": { + "period": 54500, + "thread": 30 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 301216, + "thread": 11 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 428841, + "thread": 10 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 633620, + "thread": 24 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 803023, + "thread": 31 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 870684, + "thread": 26 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1083511, + "thread": 31 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1284972, + "thread": 23 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1438230, + "thread": 0 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1511900, + "thread": 1 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1658288, + "thread": 24 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 1939919, + "thread": 15 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2039608, + "thread": 31 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2219161, + "thread": 16 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2418902, + "thread": 4 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2584040, + "thread": 21 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2778269, + "thread": 20 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2840565, + "thread": 28 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 2997220, + "thread": 3 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 3204897, + "thread": 22 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 3350725, + "thread": 6 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 3589068, + "thread": 23 + } + }, + { + "amount": "173.238876528", + "slot": { + "period": 3629030, + "thread": 28 + } + }, + { + "amount": "173.238876539", + "slot": { + "period": 3810339, + "thread": 8 + } + } + ], + "AU1adVVmpLfGPqPCMiNoskKVYG2KMu1Hr7hDvCHk9ticV6SK9BVG": [ + { + "amount": "65.664393742", + "slot": { + "period": 14843, + "thread": 18 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 305424, + "thread": 27 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 368562, + "thread": 14 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 525089, + "thread": 31 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 741092, + "thread": 4 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 948670, + "thread": 30 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1127568, + "thread": 7 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1274545, + "thread": 11 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1432259, + "thread": 28 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1611660, + "thread": 1 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1710381, + "thread": 12 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 1827769, + "thread": 8 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2078045, + "thread": 21 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2232530, + "thread": 30 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2450563, + "thread": 6 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2520625, + "thread": 31 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2779456, + "thread": 25 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 2932693, + "thread": 13 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 3058085, + "thread": 23 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 3197711, + "thread": 23 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 3311505, + "thread": 11 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 3546685, + "thread": 7 + } + }, + { + "amount": "65.664393742", + "slot": { + "period": 3622362, + "thread": 14 + } + }, + { + "amount": "65.664393752", + "slot": { + "period": 3851224, + "thread": 16 + } + } + ], + "AU1advPnU9tfxJRt19DS3r9gPZaCy75KNQ5XRXb7VrkyNy7PgaxZ": [ + { + "amount": "90.531110629", + "slot": { + "period": 95289, + "thread": 29 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 306008, + "thread": 21 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 487638, + "thread": 28 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 651865, + "thread": 12 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 695724, + "thread": 18 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 938814, + "thread": 28 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1054197, + "thread": 17 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1247863, + "thread": 25 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1428408, + "thread": 9 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1502803, + "thread": 16 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1686095, + "thread": 13 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 1914390, + "thread": 18 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2029547, + "thread": 24 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2294920, + "thread": 9 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2391272, + "thread": 19 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2546476, + "thread": 1 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2730811, + "thread": 5 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 2893468, + "thread": 7 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 3050194, + "thread": 6 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 3259131, + "thread": 1 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 3350307, + "thread": 31 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 3488045, + "thread": 12 + } + }, + { + "amount": "90.531110629", + "slot": { + "period": 3749911, + "thread": 28 + } + }, + { + "amount": "90.531110627", + "slot": { + "period": 3851259, + "thread": 23 + } + } + ], + "AU1aeMv34YuQmzJkV1TUPjQ9L7qrAziP7A12x5yBuvnTDz94xFmT": [ + { + "amount": "190.326399917", + "slot": { + "period": 148610, + "thread": 9 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 194125, + "thread": 10 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 364950, + "thread": 13 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 572604, + "thread": 19 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 772802, + "thread": 26 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 956955, + "thread": 21 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1147253, + "thread": 6 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1162628, + "thread": 8 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1429995, + "thread": 31 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1551740, + "thread": 8 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1765673, + "thread": 31 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 1912962, + "thread": 7 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2116903, + "thread": 29 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2290947, + "thread": 26 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2304093, + "thread": 8 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2616638, + "thread": 16 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2678963, + "thread": 0 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 2916597, + "thread": 10 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 3004445, + "thread": 5 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 3208830, + "thread": 0 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 3411681, + "thread": 4 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 3572605, + "thread": 1 + } + }, + { + "amount": "190.326399917", + "slot": { + "period": 3723751, + "thread": 17 + } + }, + { + "amount": "190.326399909", + "slot": { + "period": 3923057, + "thread": 27 + } + } + ], + "AU1aeNgnzShP7CTWhsczv5Qemx1RcuLg396VAoY1af3ticsR1Evm": [ + { + "amount": "141.968138766", + "slot": { + "period": 135603, + "thread": 1 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 206363, + "thread": 21 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 336980, + "thread": 0 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 647914, + "thread": 12 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 712242, + "thread": 7 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 959594, + "thread": 16 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1131306, + "thread": 9 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1242144, + "thread": 14 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1324051, + "thread": 2 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1635248, + "thread": 12 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1659465, + "thread": 30 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 1891200, + "thread": 30 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2128828, + "thread": 1 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2240592, + "thread": 4 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2349660, + "thread": 29 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2517465, + "thread": 17 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2636727, + "thread": 1 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2821646, + "thread": 15 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 2959305, + "thread": 24 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 3283792, + "thread": 7 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 3434735, + "thread": 30 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 3601022, + "thread": 11 + } + }, + { + "amount": "141.968138766", + "slot": { + "period": 3775713, + "thread": 18 + } + }, + { + "amount": "141.968138769", + "slot": { + "period": 3946885, + "thread": 14 + } + } + ], + "AU1aexxwz8AJtpLuhPUZDpr4U1PzPeFPkGP2zU9hBBqxLDSRoUQW": [ + { + "amount": "119.137860646", + "slot": { + "period": 154646, + "thread": 25 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 178066, + "thread": 6 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 441073, + "thread": 5 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 591148, + "thread": 8 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 803498, + "thread": 17 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 905311, + "thread": 0 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1085480, + "thread": 17 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1270281, + "thread": 20 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1441593, + "thread": 20 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1643247, + "thread": 7 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1768318, + "thread": 10 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1826732, + "thread": 0 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 1991859, + "thread": 28 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 2278190, + "thread": 4 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 2440407, + "thread": 19 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 2570252, + "thread": 16 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 2772904, + "thread": 28 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 2913439, + "thread": 29 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 3034405, + "thread": 31 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 3286466, + "thread": 20 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 3322740, + "thread": 17 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 3578147, + "thread": 17 + } + }, + { + "amount": "119.137860646", + "slot": { + "period": 3736538, + "thread": 1 + } + }, + { + "amount": "119.137860651", + "slot": { + "period": 3791870, + "thread": 3 + } + } + ], + "AU1af6JQaBgXyXU3AocpskzFW4vxedMPK1RHez3kpXGhvapzBJ8Z": [ + { + "amount": "152.819344536", + "slot": { + "period": 121543, + "thread": 0 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 259221, + "thread": 16 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 388830, + "thread": 21 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 589508, + "thread": 28 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 787629, + "thread": 19 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 930693, + "thread": 12 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1012360, + "thread": 24 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1294761, + "thread": 23 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1472754, + "thread": 22 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1525882, + "thread": 26 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1740826, + "thread": 31 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1943387, + "thread": 2 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 1994129, + "thread": 2 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 2152534, + "thread": 14 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 2402812, + "thread": 31 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 2594210, + "thread": 15 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 2771595, + "thread": 6 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 2805706, + "thread": 11 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 3073161, + "thread": 6 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 3250267, + "thread": 29 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 3373875, + "thread": 22 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 3503368, + "thread": 10 + } + }, + { + "amount": "152.819344536", + "slot": { + "period": 3618934, + "thread": 10 + } + }, + { + "amount": "152.819344525", + "slot": { + "period": 3841368, + "thread": 29 + } + } + ], + "AU1afQ6hQ354c4gW6nmZvBaczWfwnGQdX9mb26VB5dJLMmkZsJfe": [ + { + "amount": "158.546029254", + "slot": { + "period": 45732, + "thread": 5 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 173007, + "thread": 18 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 438751, + "thread": 3 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 555140, + "thread": 11 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 669027, + "thread": 4 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 925253, + "thread": 18 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1062225, + "thread": 31 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1212807, + "thread": 14 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1352983, + "thread": 26 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1607827, + "thread": 11 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1692059, + "thread": 24 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1890702, + "thread": 29 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 1990964, + "thread": 31 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 2193020, + "thread": 18 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 2307506, + "thread": 23 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 2466698, + "thread": 4 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 2662480, + "thread": 23 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 2800884, + "thread": 29 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 3054900, + "thread": 7 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 3172677, + "thread": 3 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 3347411, + "thread": 8 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 3616332, + "thread": 4 + } + }, + { + "amount": "158.546029254", + "slot": { + "period": 3775116, + "thread": 5 + } + }, + { + "amount": "158.546029247", + "slot": { + "period": 3916643, + "thread": 4 + } + } + ], + "AU1ag9ywQHme8RvhBA8Yrkub2xaAGbcwMWc5HW3kbGH8TA4kqasX": [ + { + "amount": "287.672917562", + "slot": { + "period": 47495, + "thread": 11 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 185539, + "thread": 25 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 477476, + "thread": 25 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 601998, + "thread": 31 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 661422, + "thread": 11 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 955656, + "thread": 24 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1016560, + "thread": 11 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1152804, + "thread": 23 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1439395, + "thread": 9 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1556671, + "thread": 18 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1665296, + "thread": 14 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 1914447, + "thread": 9 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2049207, + "thread": 1 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2209988, + "thread": 11 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2370154, + "thread": 2 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2484550, + "thread": 19 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2688234, + "thread": 10 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 2862355, + "thread": 19 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 3059178, + "thread": 25 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 3286104, + "thread": 9 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 3410103, + "thread": 30 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 3599444, + "thread": 0 + } + }, + { + "amount": "287.672917562", + "slot": { + "period": 3682208, + "thread": 28 + } + }, + { + "amount": "287.672917567", + "slot": { + "period": 3901337, + "thread": 10 + } + } + ], + "AU1agAzEtFAtM6cgqmyYkJqRQZqubhSYEk7Py7dNi1RnJJYi3zSG": [ + { + "amount": "53.283185087", + "slot": { + "period": 51896, + "thread": 31 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 269619, + "thread": 22 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 473165, + "thread": 1 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 574779, + "thread": 24 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 688846, + "thread": 30 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 870910, + "thread": 22 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1043826, + "thread": 17 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1281757, + "thread": 16 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1426315, + "thread": 9 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1553376, + "thread": 31 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1723813, + "thread": 1 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 1950927, + "thread": 11 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2059901, + "thread": 0 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2272256, + "thread": 16 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2369298, + "thread": 4 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2596496, + "thread": 31 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2787245, + "thread": 14 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 2816543, + "thread": 30 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 3063473, + "thread": 10 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 3282337, + "thread": 15 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 3420102, + "thread": 0 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 3515513, + "thread": 7 + } + }, + { + "amount": "53.283185087", + "slot": { + "period": 3709584, + "thread": 3 + } + }, + { + "amount": "53.283185085", + "slot": { + "period": 3808167, + "thread": 0 + } + } + ], + "AU1agpdwm93vgNxUFC67FAP7LGWM79JqmFA2NcgUKPy61Na2GeLr": [ + { + "amount": "93.645313664", + "slot": { + "period": 60901, + "thread": 16 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 259687, + "thread": 3 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 409622, + "thread": 14 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 543600, + "thread": 22 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 677703, + "thread": 3 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 909968, + "thread": 16 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1024923, + "thread": 7 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1304975, + "thread": 10 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1441625, + "thread": 6 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1579027, + "thread": 6 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1741045, + "thread": 20 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 1869273, + "thread": 29 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2106873, + "thread": 30 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2273037, + "thread": 11 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2448218, + "thread": 13 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2564476, + "thread": 8 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2727196, + "thread": 28 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2806700, + "thread": 26 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 2987696, + "thread": 15 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 3133104, + "thread": 4 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 3409774, + "thread": 26 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 3614424, + "thread": 5 + } + }, + { + "amount": "93.645313664", + "slot": { + "period": 3776519, + "thread": 31 + } + }, + { + "amount": "93.645313663", + "slot": { + "period": 3938636, + "thread": 10 + } + } + ], + "AU1ahFzQrezkHcJVS9pV5FdFRLkrubz7hWek6D1qAFsqXXFJqNTP": [ + { + "amount": "169.893167731", + "slot": { + "period": 136884, + "thread": 19 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 319245, + "thread": 17 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 458271, + "thread": 9 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 644405, + "thread": 31 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 766294, + "thread": 17 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 948844, + "thread": 16 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1017653, + "thread": 31 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1264294, + "thread": 24 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1360670, + "thread": 18 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1621379, + "thread": 4 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1799623, + "thread": 16 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 1874646, + "thread": 28 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2017423, + "thread": 12 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2205706, + "thread": 29 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2430051, + "thread": 18 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2536912, + "thread": 24 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2766734, + "thread": 23 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 2864003, + "thread": 9 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 3040058, + "thread": 16 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 3194775, + "thread": 2 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 3328662, + "thread": 11 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 3593186, + "thread": 11 + } + }, + { + "amount": "169.893167731", + "slot": { + "period": 3631079, + "thread": 27 + } + }, + { + "amount": "169.893167727", + "slot": { + "period": 3828887, + "thread": 29 + } + } + ], + "AU1airz9JTwvAZi1WfVbsFPczLxrwJU5EU9RTQSnFJf7JuTkmwwV": [ + { + "amount": "268.302646653", + "slot": { + "period": 154952, + "thread": 3 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 241508, + "thread": 26 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 430194, + "thread": 6 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 554594, + "thread": 14 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 778275, + "thread": 22 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 829411, + "thread": 12 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1071605, + "thread": 5 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1242193, + "thread": 9 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1470214, + "thread": 0 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1514511, + "thread": 29 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1720521, + "thread": 16 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 1894996, + "thread": 26 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2130730, + "thread": 13 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2230910, + "thread": 8 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2409268, + "thread": 13 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2527342, + "thread": 6 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2717104, + "thread": 2 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 2791871, + "thread": 21 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 3017027, + "thread": 21 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 3177703, + "thread": 10 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 3324712, + "thread": 26 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 3467835, + "thread": 8 + } + }, + { + "amount": "268.302646653", + "slot": { + "period": 3758635, + "thread": 10 + } + }, + { + "amount": "268.302646650", + "slot": { + "period": 3789279, + "thread": 25 + } + } + ], + "AU1aj9ofGf6VrFmNQomZQNxDNNpikH127FVHY7b8E3q7sJGsHMEA": [ + { + "amount": "762.873021875", + "slot": { + "period": 16981, + "thread": 1 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 207003, + "thread": 28 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 452387, + "thread": 31 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 643157, + "thread": 11 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 670436, + "thread": 0 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 907865, + "thread": 29 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1028435, + "thread": 29 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1233348, + "thread": 16 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1355872, + "thread": 24 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1614606, + "thread": 6 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1753023, + "thread": 0 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 1952333, + "thread": 15 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2102888, + "thread": 14 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2213675, + "thread": 6 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2415680, + "thread": 26 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2607609, + "thread": 10 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2691485, + "thread": 29 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 2902978, + "thread": 15 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 3000128, + "thread": 20 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 3279280, + "thread": 20 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 3339917, + "thread": 5 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 3590370, + "thread": 15 + } + }, + { + "amount": "762.873021875", + "slot": { + "period": 3743881, + "thread": 13 + } + }, + { + "amount": "762.873021865", + "slot": { + "period": 3855163, + "thread": 12 + } + } + ], + "AU1ajQASGifzw4zJZfZ4WjjtY2y5S4LgSZZvnUhkWrfymmbGmt37": [ + { + "amount": "93.761253451", + "slot": { + "period": 15056, + "thread": 31 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 287136, + "thread": 7 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 471628, + "thread": 28 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 612011, + "thread": 14 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 765002, + "thread": 4 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 859950, + "thread": 17 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1106617, + "thread": 26 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1233016, + "thread": 17 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1328467, + "thread": 28 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1633325, + "thread": 21 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1675053, + "thread": 14 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 1910257, + "thread": 24 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2081545, + "thread": 24 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2214683, + "thread": 0 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2386684, + "thread": 13 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2510954, + "thread": 27 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2693071, + "thread": 2 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 2918643, + "thread": 9 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 3082254, + "thread": 21 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 3203104, + "thread": 17 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 3372520, + "thread": 26 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 3605757, + "thread": 24 + } + }, + { + "amount": "93.761253451", + "slot": { + "period": 3632986, + "thread": 23 + } + }, + { + "amount": "93.761253453", + "slot": { + "period": 3939139, + "thread": 28 + } + } + ], + "AU1aji3tnGAPMHDsTPH2yhFRrF49ZuUtj4RUN1EeQdsChZKsYhRd": [ + { + "amount": "200.200772523", + "slot": { + "period": 56237, + "thread": 14 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 192544, + "thread": 15 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 376769, + "thread": 21 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 639909, + "thread": 29 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 668370, + "thread": 8 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 869992, + "thread": 29 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1101389, + "thread": 29 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1205411, + "thread": 20 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1406573, + "thread": 8 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1513578, + "thread": 15 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1742022, + "thread": 30 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 1878979, + "thread": 4 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2095371, + "thread": 0 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2258941, + "thread": 15 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2404888, + "thread": 9 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2614679, + "thread": 27 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2667622, + "thread": 27 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 2932760, + "thread": 27 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 3085038, + "thread": 3 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 3164599, + "thread": 17 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 3401154, + "thread": 1 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 3487332, + "thread": 13 + } + }, + { + "amount": "200.200772523", + "slot": { + "period": 3733008, + "thread": 0 + } + }, + { + "amount": "200.200772516", + "slot": { + "period": 3842495, + "thread": 6 + } + } + ], + "AU1akBMt8zvq1bh9eLTjBkxYm1S756eRea74aCrH19UHK63rvhBv": [ + { + "amount": "149.715254446", + "slot": { + "period": 156805, + "thread": 30 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 318870, + "thread": 22 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 475762, + "thread": 2 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 493505, + "thread": 29 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 781143, + "thread": 0 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 981824, + "thread": 19 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1081156, + "thread": 18 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1191537, + "thread": 9 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1401195, + "thread": 12 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1527495, + "thread": 19 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1685764, + "thread": 14 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 1893273, + "thread": 19 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2137686, + "thread": 12 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2242343, + "thread": 5 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2368601, + "thread": 24 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2502646, + "thread": 30 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2741914, + "thread": 21 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 2831217, + "thread": 22 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 3092062, + "thread": 30 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 3153785, + "thread": 7 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 3366256, + "thread": 25 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 3502985, + "thread": 14 + } + }, + { + "amount": "149.715254446", + "slot": { + "period": 3729932, + "thread": 8 + } + }, + { + "amount": "149.715254444", + "slot": { + "period": 3925116, + "thread": 0 + } + } + ], + "AU1amQymhNWRgFu7VeBnT3QtBLmb5Xers8XLHrcHMHXZ79SXfP2d": [ + { + "amount": "355.742133706", + "slot": { + "period": 94632, + "thread": 0 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 274151, + "thread": 11 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 456252, + "thread": 28 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 532366, + "thread": 7 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 805704, + "thread": 25 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 967073, + "thread": 2 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1148922, + "thread": 15 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1238546, + "thread": 3 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1372813, + "thread": 19 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1569460, + "thread": 9 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1789221, + "thread": 20 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1894918, + "thread": 27 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 1998609, + "thread": 7 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 2246778, + "thread": 12 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 2310337, + "thread": 13 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 2571411, + "thread": 17 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 2760745, + "thread": 27 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 2794758, + "thread": 23 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 3018272, + "thread": 6 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 3137978, + "thread": 11 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 3384577, + "thread": 12 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 3564159, + "thread": 12 + } + }, + { + "amount": "355.742133706", + "slot": { + "period": 3645200, + "thread": 28 + } + }, + { + "amount": "355.742133718", + "slot": { + "period": 3940176, + "thread": 21 + } + } + ], + "AU1anRJZwyzKRsuUWBmJ4i6c2fS3J5hnE8EVy4VzV9bzJvREptqt": [ + { + "amount": "445.380145376", + "slot": { + "period": 99609, + "thread": 14 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 213684, + "thread": 3 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 351956, + "thread": 20 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 603059, + "thread": 26 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 765328, + "thread": 27 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 849843, + "thread": 26 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1108391, + "thread": 9 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1251289, + "thread": 10 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1329554, + "thread": 24 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1582802, + "thread": 9 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1725502, + "thread": 11 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1872748, + "thread": 28 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 1983761, + "thread": 1 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 2287941, + "thread": 14 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 2337423, + "thread": 1 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 2617261, + "thread": 7 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 2643058, + "thread": 10 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 2830199, + "thread": 10 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 3087495, + "thread": 4 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 3263798, + "thread": 12 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 3366103, + "thread": 8 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 3577023, + "thread": 20 + } + }, + { + "amount": "445.380145376", + "slot": { + "period": 3708203, + "thread": 5 + } + }, + { + "amount": "445.380145366", + "slot": { + "period": 3816408, + "thread": 21 + } + } + ], + "AU1anVyEa4Ntoy5a6qdZgLKjxgMMy1ghkptpEinaB9o7yW2yUWkA": [ + { + "amount": "225.324476039", + "slot": { + "period": 156800, + "thread": 29 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 216394, + "thread": 24 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 331728, + "thread": 4 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 521941, + "thread": 19 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 775179, + "thread": 8 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 860945, + "thread": 20 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1035875, + "thread": 25 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1316325, + "thread": 25 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1342469, + "thread": 8 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1613841, + "thread": 31 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1658008, + "thread": 17 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 1839504, + "thread": 23 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2030204, + "thread": 29 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2258426, + "thread": 7 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2375722, + "thread": 18 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2545404, + "thread": 4 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2673269, + "thread": 4 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 2816069, + "thread": 13 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 3116953, + "thread": 21 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 3258355, + "thread": 4 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 3378228, + "thread": 4 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 3468889, + "thread": 28 + } + }, + { + "amount": "225.324476039", + "slot": { + "period": 3728981, + "thread": 17 + } + }, + { + "amount": "225.324476030", + "slot": { + "period": 3925241, + "thread": 25 + } + } + ], + "AU1ang92Kky1jYPJagnqSW21fQQtxE3p2kWxE8pwCSLfsy6PvSaG": [ + { + "amount": "172.665505413", + "slot": { + "period": 148913, + "thread": 22 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 184679, + "thread": 22 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 468540, + "thread": 27 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 592868, + "thread": 3 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 793847, + "thread": 8 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 946142, + "thread": 25 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1052366, + "thread": 23 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1294760, + "thread": 23 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1437814, + "thread": 1 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1544314, + "thread": 7 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1762021, + "thread": 13 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 1932202, + "thread": 30 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2027348, + "thread": 30 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2181017, + "thread": 27 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2349512, + "thread": 21 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2527178, + "thread": 6 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2783090, + "thread": 17 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 2838550, + "thread": 15 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 3106960, + "thread": 21 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 3152091, + "thread": 4 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 3369313, + "thread": 26 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 3606374, + "thread": 24 + } + }, + { + "amount": "172.665505413", + "slot": { + "period": 3704899, + "thread": 7 + } + }, + { + "amount": "172.665505422", + "slot": { + "period": 3891345, + "thread": 5 + } + } + ], + "AU1apFEaDCZLgGHSAiSk8WT26YBmxGahBPvZ4GbLKpo7vr1GK8ZY": [ + { + "amount": "180.066398717", + "slot": { + "period": 23970, + "thread": 16 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 286917, + "thread": 14 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 439767, + "thread": 16 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 627611, + "thread": 0 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 808400, + "thread": 16 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 912854, + "thread": 27 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1064132, + "thread": 16 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1265799, + "thread": 19 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1358959, + "thread": 14 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1592905, + "thread": 7 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1754104, + "thread": 5 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 1844606, + "thread": 6 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2066712, + "thread": 26 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2166628, + "thread": 8 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2404052, + "thread": 3 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2464261, + "thread": 18 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2724798, + "thread": 31 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 2805522, + "thread": 0 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 3000799, + "thread": 9 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 3282246, + "thread": 2 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 3374780, + "thread": 20 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 3576964, + "thread": 16 + } + }, + { + "amount": "180.066398717", + "slot": { + "period": 3772358, + "thread": 13 + } + }, + { + "amount": "180.066398708", + "slot": { + "period": 3819791, + "thread": 3 + } + } + ], + "AU1apdoak8T8rt2QnKTbw25kkQxx86sfjUUcbSRinNbko2U99MET": [ + { + "amount": "32407.433333333", + "slot": { + "period": 34372, + "thread": 11 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 175660, + "thread": 13 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 365472, + "thread": 2 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 579033, + "thread": 21 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 716350, + "thread": 28 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 821876, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1145359, + "thread": 23 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1150395, + "thread": 6 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1346271, + "thread": 20 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1592167, + "thread": 31 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1790393, + "thread": 18 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1923664, + "thread": 27 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2133808, + "thread": 7 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2221237, + "thread": 15 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2339611, + "thread": 7 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2607431, + "thread": 10 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2632264, + "thread": 0 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2805211, + "thread": 16 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2972210, + "thread": 9 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3197056, + "thread": 31 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3376170, + "thread": 23 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3462232, + "thread": 30 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3772245, + "thread": 24 + } + }, + { + "amount": "32407.433333341", + "slot": { + "period": 3942492, + "thread": 13 + } + } + ], + "AU1apeiwmKWBNfocjsd8ruVix56aVCNsQC4cc5MBCYGNDamKQ8EH": [ + { + "amount": "265.950203416", + "slot": { + "period": 13345, + "thread": 25 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 282575, + "thread": 17 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 325792, + "thread": 9 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 616831, + "thread": 31 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 791771, + "thread": 3 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 838736, + "thread": 5 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1117096, + "thread": 19 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1284789, + "thread": 26 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1423136, + "thread": 12 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1543542, + "thread": 1 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1755489, + "thread": 15 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 1817684, + "thread": 18 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2066431, + "thread": 14 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2218123, + "thread": 21 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2364039, + "thread": 10 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2555928, + "thread": 27 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2659947, + "thread": 2 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 2911503, + "thread": 15 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 3024206, + "thread": 15 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 3272182, + "thread": 26 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 3354850, + "thread": 2 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 3526614, + "thread": 20 + } + }, + { + "amount": "265.950203416", + "slot": { + "period": 3747589, + "thread": 23 + } + }, + { + "amount": "265.950203412", + "slot": { + "period": 3918443, + "thread": 29 + } + } + ], + "AU1apga3THrTmkTLzy4abCjKVQMMu5oGvPeRyuh4Z6Kw1ekfaR2z": [ + { + "amount": "186.547255421", + "slot": { + "period": 147761, + "thread": 6 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 204202, + "thread": 4 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 465963, + "thread": 8 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 579096, + "thread": 1 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 722623, + "thread": 29 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 964560, + "thread": 16 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1002871, + "thread": 17 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1274534, + "thread": 1 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1357588, + "thread": 5 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1608493, + "thread": 8 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1688899, + "thread": 1 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 1876697, + "thread": 12 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2138479, + "thread": 25 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2252272, + "thread": 25 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2384954, + "thread": 29 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2615295, + "thread": 19 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2703279, + "thread": 15 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2950646, + "thread": 18 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 2972947, + "thread": 30 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 3158079, + "thread": 11 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 3417257, + "thread": 28 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 3480045, + "thread": 31 + } + }, + { + "amount": "186.547255421", + "slot": { + "period": 3657233, + "thread": 10 + } + }, + { + "amount": "186.547255429", + "slot": { + "period": 3946557, + "thread": 22 + } + } + ], + "AU1apiL7wcHwr5mJQsmGVmJmC8xh2YE5VTQgsqGTxywfmaXZQUJ": [ + { + "amount": "332.642131847", + "slot": { + "period": 161831, + "thread": 7 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 277666, + "thread": 6 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 462250, + "thread": 22 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 538408, + "thread": 1 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 713144, + "thread": 10 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 917488, + "thread": 0 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1023297, + "thread": 31 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1311019, + "thread": 26 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1401378, + "thread": 31 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1569135, + "thread": 24 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1806856, + "thread": 17 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 1875178, + "thread": 13 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2138005, + "thread": 20 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2188771, + "thread": 1 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2434887, + "thread": 16 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2511741, + "thread": 14 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2727590, + "thread": 6 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 2811630, + "thread": 5 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 3118918, + "thread": 6 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 3270857, + "thread": 22 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 3431739, + "thread": 23 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 3484783, + "thread": 4 + } + }, + { + "amount": "332.642131847", + "slot": { + "period": 3763637, + "thread": 13 + } + }, + { + "amount": "332.642131852", + "slot": { + "period": 3790731, + "thread": 22 + } + } + ], + "AU1aq7DXYWUMhBkniXwde1HXgUjwRugTt4SADrgJvU5YrXN7mfeA": [ + { + "amount": "52.279231233", + "slot": { + "period": 127515, + "thread": 18 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 220884, + "thread": 15 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 437763, + "thread": 10 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 587457, + "thread": 31 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 756865, + "thread": 1 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 971414, + "thread": 23 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1076793, + "thread": 12 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1292786, + "thread": 25 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1335835, + "thread": 25 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1522355, + "thread": 7 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1658220, + "thread": 10 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 1912895, + "thread": 11 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2128560, + "thread": 4 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2208392, + "thread": 1 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2318427, + "thread": 3 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2583402, + "thread": 29 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2662654, + "thread": 13 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 2943358, + "thread": 13 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 3071598, + "thread": 14 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 3174180, + "thread": 29 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 3427103, + "thread": 21 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 3535344, + "thread": 25 + } + }, + { + "amount": "52.279231233", + "slot": { + "period": 3659238, + "thread": 22 + } + }, + { + "amount": "52.279231228", + "slot": { + "period": 3784325, + "thread": 25 + } + } + ], + "AU1aqmJm3uYskGMVpb6r3mtREkv2HLuTf7zrjw2hxLfx3n9bMpqR": [ + { + "amount": "80.591227102", + "slot": { + "period": 46900, + "thread": 18 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 191468, + "thread": 6 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 341274, + "thread": 22 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 609738, + "thread": 14 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 801359, + "thread": 13 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 889112, + "thread": 11 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1044953, + "thread": 24 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1184556, + "thread": 27 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1445050, + "thread": 30 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1573797, + "thread": 31 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1650492, + "thread": 17 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 1832840, + "thread": 27 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2064725, + "thread": 17 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2289893, + "thread": 22 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2400296, + "thread": 11 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2578662, + "thread": 14 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2713314, + "thread": 5 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 2839659, + "thread": 5 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 3034701, + "thread": 15 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 3158979, + "thread": 21 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 3322398, + "thread": 13 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 3469244, + "thread": 6 + } + }, + { + "amount": "80.591227102", + "slot": { + "period": 3641670, + "thread": 21 + } + }, + { + "amount": "80.591227100", + "slot": { + "period": 3785711, + "thread": 18 + } + } + ], + "AU1aqvKxdyHz5ZYLUPvir9QUXMhEgwQVSdPh97fsiGmjMpmazZVX": [ + { + "amount": "93.241564882", + "slot": { + "period": 93033, + "thread": 7 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 299307, + "thread": 24 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 363696, + "thread": 21 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 559547, + "thread": 16 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 691595, + "thread": 10 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 981772, + "thread": 29 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1125324, + "thread": 11 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1276116, + "thread": 25 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1428130, + "thread": 31 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1491081, + "thread": 13 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1780916, + "thread": 3 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 1974807, + "thread": 29 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2030749, + "thread": 15 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2178866, + "thread": 9 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2392986, + "thread": 1 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2464243, + "thread": 29 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2627521, + "thread": 7 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 2890874, + "thread": 6 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 3010628, + "thread": 5 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 3148677, + "thread": 26 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 3336242, + "thread": 8 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 3600947, + "thread": 17 + } + }, + { + "amount": "93.241564882", + "slot": { + "period": 3700210, + "thread": 13 + } + }, + { + "amount": "93.241564888", + "slot": { + "period": 3884902, + "thread": 20 + } + } + ], + "AU1arS39hkgNxme2RXzqRMX5dVw6EWAAASnDv76d1XoMh2vHR98h": [ + { + "amount": "136.958242662", + "slot": { + "period": 153099, + "thread": 8 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 316151, + "thread": 9 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 390764, + "thread": 31 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 493083, + "thread": 7 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 673032, + "thread": 23 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 834417, + "thread": 23 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1063017, + "thread": 4 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1238231, + "thread": 3 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1368995, + "thread": 14 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1639121, + "thread": 15 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1723322, + "thread": 2 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 1820525, + "thread": 17 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2026872, + "thread": 17 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2266317, + "thread": 2 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2327524, + "thread": 17 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2526817, + "thread": 31 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2648654, + "thread": 13 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2806512, + "thread": 19 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 2992389, + "thread": 15 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 3209879, + "thread": 0 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 3403196, + "thread": 20 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 3464319, + "thread": 3 + } + }, + { + "amount": "136.958242662", + "slot": { + "period": 3712097, + "thread": 0 + } + }, + { + "amount": "136.958242663", + "slot": { + "period": 3789600, + "thread": 31 + } + } + ], + "AU1arVH21WDNr2XAdEbb9NH9KzF6dH43L9GZ8LqfEtZTZyfUxCdA": [ + { + "amount": "141.208812154", + "slot": { + "period": 117119, + "thread": 3 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 296702, + "thread": 6 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 394794, + "thread": 4 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 513960, + "thread": 10 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 811814, + "thread": 4 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 860565, + "thread": 11 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1073353, + "thread": 4 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1296943, + "thread": 2 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1459261, + "thread": 21 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1569245, + "thread": 24 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1742833, + "thread": 31 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 1900472, + "thread": 2 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2044453, + "thread": 17 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2267675, + "thread": 30 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2453623, + "thread": 12 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2557553, + "thread": 11 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2631545, + "thread": 18 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 2886126, + "thread": 10 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 3119024, + "thread": 24 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 3168140, + "thread": 11 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 3438648, + "thread": 13 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 3534911, + "thread": 27 + } + }, + { + "amount": "141.208812154", + "slot": { + "period": 3755004, + "thread": 31 + } + }, + { + "amount": "141.208812153", + "slot": { + "period": 3884020, + "thread": 30 + } + } + ], + "AU1arwSmhprzvLNpQpBGLWPy7myjjmd7dee88w1S1vo1RLFTHgXH": [ + { + "amount": "353.469748817", + "slot": { + "period": 145374, + "thread": 9 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 269760, + "thread": 1 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 368407, + "thread": 30 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 526313, + "thread": 20 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 763776, + "thread": 12 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 967772, + "thread": 18 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1118999, + "thread": 11 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1150394, + "thread": 5 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1422907, + "thread": 14 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1492985, + "thread": 7 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1689747, + "thread": 9 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 1886549, + "thread": 14 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2036974, + "thread": 9 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2279579, + "thread": 16 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2413239, + "thread": 5 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2514119, + "thread": 28 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2782309, + "thread": 25 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 2880822, + "thread": 27 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 3068732, + "thread": 23 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 3179017, + "thread": 10 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 3288692, + "thread": 20 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 3518507, + "thread": 24 + } + }, + { + "amount": "353.469748817", + "slot": { + "period": 3689968, + "thread": 17 + } + }, + { + "amount": "353.469748821", + "slot": { + "period": 3899410, + "thread": 18 + } + } + ], + "AU1as8P3JuFWGrXmzi3h1911r9xaK1pkcqQU2MQL6qGxGW8mWBuG": [ + { + "amount": "109.614514517", + "slot": { + "period": 123004, + "thread": 8 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 225159, + "thread": 15 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 356232, + "thread": 3 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 643357, + "thread": 25 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 663654, + "thread": 23 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 932658, + "thread": 15 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 991908, + "thread": 14 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 1243605, + "thread": 19 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 1479366, + "thread": 1 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 1492641, + "thread": 20 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 1659373, + "thread": 28 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 1883161, + "thread": 10 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2131039, + "thread": 3 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2266125, + "thread": 6 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2418943, + "thread": 20 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2553975, + "thread": 24 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2639445, + "thread": 13 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2953501, + "thread": 2 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 2954391, + "thread": 23 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 3179938, + "thread": 19 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 3357285, + "thread": 15 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 3577918, + "thread": 8 + } + }, + { + "amount": "109.614514517", + "slot": { + "period": 3777223, + "thread": 0 + } + }, + { + "amount": "109.614514520", + "slot": { + "period": 3891006, + "thread": 12 + } + } + ], + "AU1asLoQnn2sBhGoTQQegHWmoaE574nYFbx3ZrmaLJNjT4YZ1XPQ": [ + { + "amount": "132.295156620", + "slot": { + "period": 22716, + "thread": 10 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 285187, + "thread": 27 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 468528, + "thread": 17 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 582930, + "thread": 29 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 801773, + "thread": 28 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 836874, + "thread": 18 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 995519, + "thread": 30 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 1264854, + "thread": 29 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 1391352, + "thread": 30 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 1548108, + "thread": 13 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 1743953, + "thread": 15 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 1830325, + "thread": 26 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2070518, + "thread": 2 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2202757, + "thread": 22 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2447393, + "thread": 7 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2521089, + "thread": 9 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2689437, + "thread": 19 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2849292, + "thread": 12 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 2965362, + "thread": 24 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 3223284, + "thread": 17 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 3408930, + "thread": 7 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 3612124, + "thread": 1 + } + }, + { + "amount": "132.295156620", + "slot": { + "period": 3674737, + "thread": 19 + } + }, + { + "amount": "132.295156625", + "slot": { + "period": 3835722, + "thread": 4 + } + } + ], + "AU1asR4aNaj5cNoxfZqNy4sGTDdLKEttSHpHZdQxHkQ6ApvLXzRs": [ + { + "amount": "63.098606459", + "slot": { + "period": 91360, + "thread": 8 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 199237, + "thread": 10 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 486977, + "thread": 9 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 598360, + "thread": 24 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 659038, + "thread": 2 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 937649, + "thread": 15 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 988586, + "thread": 11 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 1176030, + "thread": 4 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 1398430, + "thread": 23 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 1487330, + "thread": 27 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 1772106, + "thread": 30 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 1853852, + "thread": 0 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2045471, + "thread": 27 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2178970, + "thread": 27 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2342187, + "thread": 25 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2489963, + "thread": 21 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2645326, + "thread": 16 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 2841075, + "thread": 27 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 3067916, + "thread": 0 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 3126408, + "thread": 20 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 3332833, + "thread": 1 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 3536283, + "thread": 10 + } + }, + { + "amount": "63.098606459", + "slot": { + "period": 3735270, + "thread": 20 + } + }, + { + "amount": "63.098606470", + "slot": { + "period": 3894961, + "thread": 7 + } + } + ], + "AU1auDAn1SidMjcqBWpT2agHtdEiuYM5yyKzdba4jkAk2yjQtQWD": [ + { + "amount": "2121.002662505", + "slot": { + "period": 104777, + "thread": 17 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 281647, + "thread": 18 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 430244, + "thread": 17 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 555987, + "thread": 16 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 798543, + "thread": 29 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 847557, + "thread": 2 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1097984, + "thread": 23 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1172878, + "thread": 4 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1321139, + "thread": 31 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1560555, + "thread": 31 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1778272, + "thread": 9 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 1899869, + "thread": 23 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2063586, + "thread": 13 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2232315, + "thread": 30 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2387900, + "thread": 19 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2600863, + "thread": 21 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2699278, + "thread": 4 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2829672, + "thread": 18 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 2987219, + "thread": 22 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 3207467, + "thread": 3 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 3337769, + "thread": 12 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 3495504, + "thread": 19 + } + }, + { + "amount": "2121.002662505", + "slot": { + "period": 3697672, + "thread": 0 + } + }, + { + "amount": "2121.002662509", + "slot": { + "period": 3794735, + "thread": 27 + } + } + ], + "AU1aubpwc4Fd17XbXob6u8csjxJbF821KpQDPGPoUSCMBfTPPaFw": [ + { + "amount": "603.864603179", + "slot": { + "period": 93767, + "thread": 21 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 197728, + "thread": 29 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 392466, + "thread": 15 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 539351, + "thread": 11 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 672834, + "thread": 11 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 822679, + "thread": 27 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1019362, + "thread": 1 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1305006, + "thread": 20 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1464265, + "thread": 5 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1603802, + "thread": 30 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1727273, + "thread": 0 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 1876283, + "thread": 12 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2017329, + "thread": 14 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2284919, + "thread": 3 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2451476, + "thread": 5 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2558267, + "thread": 6 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2702344, + "thread": 26 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 2915818, + "thread": 16 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 3097639, + "thread": 30 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 3131944, + "thread": 2 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 3363950, + "thread": 2 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 3592242, + "thread": 23 + } + }, + { + "amount": "603.864603179", + "slot": { + "period": 3660924, + "thread": 20 + } + }, + { + "amount": "603.864603174", + "slot": { + "period": 3794821, + "thread": 17 + } + } + ], + "AU1aujP8fGvg5G7vhAKbAZQCYTEuAP8pCpPy2Ua1Be2mDTDouc7H": [ + { + "amount": "56.168748659", + "slot": { + "period": 22485, + "thread": 19 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 267683, + "thread": 12 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 407890, + "thread": 16 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 524760, + "thread": 25 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 760744, + "thread": 3 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 934179, + "thread": 31 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1008953, + "thread": 11 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1215198, + "thread": 13 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1384798, + "thread": 3 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1501981, + "thread": 20 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1674041, + "thread": 19 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1878749, + "thread": 4 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 1986556, + "thread": 29 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 2226997, + "thread": 7 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 2330452, + "thread": 22 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 2523883, + "thread": 7 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 2668200, + "thread": 17 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 2917613, + "thread": 3 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3082411, + "thread": 31 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3201352, + "thread": 14 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3432952, + "thread": 15 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3529868, + "thread": 9 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3760442, + "thread": 7 + } + }, + { + "amount": "56.168748659", + "slot": { + "period": 3862423, + "thread": 29 + } + } + ], + "AU1ax5BEMnL1dauoohLPUFEUZThvT8y4r7yjGmPeWaUCTnCRsjf": [ + { + "amount": "84.829825826", + "slot": { + "period": 91294, + "thread": 15 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 206754, + "thread": 14 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 330326, + "thread": 1 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 521522, + "thread": 24 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 711099, + "thread": 27 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 841043, + "thread": 6 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1130783, + "thread": 9 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1221824, + "thread": 20 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1407852, + "thread": 26 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1496256, + "thread": 8 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1698758, + "thread": 7 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 1854475, + "thread": 11 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2076617, + "thread": 19 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2239194, + "thread": 30 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2455990, + "thread": 8 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2489117, + "thread": 16 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2748306, + "thread": 21 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 2820458, + "thread": 30 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 3088120, + "thread": 29 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 3176297, + "thread": 6 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 3436924, + "thread": 28 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 3484541, + "thread": 12 + } + }, + { + "amount": "84.829825826", + "slot": { + "period": 3743202, + "thread": 16 + } + }, + { + "amount": "84.829825830", + "slot": { + "period": 3897712, + "thread": 9 + } + } + ], + "AU1ayYsdPos1j7EHxNG91esTKVYCZDzqaSNtzK1dZh3Jx8n3u7Xi": [ + { + "amount": "218.655168850", + "slot": { + "period": 161858, + "thread": 9 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 272658, + "thread": 22 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 459881, + "thread": 12 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 652287, + "thread": 1 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 653986, + "thread": 19 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 947258, + "thread": 9 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1093733, + "thread": 8 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1180697, + "thread": 29 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1325820, + "thread": 19 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1584454, + "thread": 12 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1718227, + "thread": 13 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 1855152, + "thread": 24 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2034315, + "thread": 3 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2205053, + "thread": 30 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2416541, + "thread": 15 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2574255, + "thread": 22 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2667447, + "thread": 30 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 2856427, + "thread": 18 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 3038913, + "thread": 15 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 3189977, + "thread": 6 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 3296779, + "thread": 31 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 3469448, + "thread": 3 + } + }, + { + "amount": "218.655168850", + "slot": { + "period": 3644380, + "thread": 23 + } + }, + { + "amount": "218.655168842", + "slot": { + "period": 3911946, + "thread": 0 + } + } + ], + "AU1ayoP5ALiThxXzPPdDxHHcPxU3W5hbCUFU7GJri2kKcR7zr6Mc": [ + { + "amount": "269.529569831", + "slot": { + "period": 67058, + "thread": 19 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 321563, + "thread": 15 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 367058, + "thread": 9 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 578311, + "thread": 12 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 715091, + "thread": 23 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 975388, + "thread": 2 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1011951, + "thread": 10 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1165989, + "thread": 22 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1476700, + "thread": 17 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1635741, + "thread": 15 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1669269, + "thread": 30 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 1878806, + "thread": 12 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2017150, + "thread": 23 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2180565, + "thread": 10 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2311155, + "thread": 7 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2484177, + "thread": 26 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2636993, + "thread": 18 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2838736, + "thread": 2 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 2959910, + "thread": 1 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 3168780, + "thread": 6 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 3415876, + "thread": 31 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 3558971, + "thread": 13 + } + }, + { + "amount": "269.529569831", + "slot": { + "period": 3757766, + "thread": 11 + } + }, + { + "amount": "269.529569837", + "slot": { + "period": 3899325, + "thread": 7 + } + } + ], + "AU1azCzX5YfGgMuWFA3LQCWFwWQgfxxzHzWj7U6dHX2dipubrTSb": [ + { + "amount": "78.820695412", + "slot": { + "period": 18792, + "thread": 17 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 171048, + "thread": 1 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 429113, + "thread": 29 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 603696, + "thread": 24 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 656910, + "thread": 15 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 939438, + "thread": 3 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1014681, + "thread": 2 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1229005, + "thread": 26 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1375525, + "thread": 19 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1604807, + "thread": 29 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1729762, + "thread": 12 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 1876259, + "thread": 9 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2048024, + "thread": 13 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2272481, + "thread": 3 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2371262, + "thread": 9 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2475833, + "thread": 4 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2720521, + "thread": 16 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 2953454, + "thread": 2 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 3003747, + "thread": 21 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 3178656, + "thread": 27 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 3351435, + "thread": 15 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 3572980, + "thread": 2 + } + }, + { + "amount": "78.820695412", + "slot": { + "period": 3763111, + "thread": 12 + } + }, + { + "amount": "78.820695411", + "slot": { + "period": 3878212, + "thread": 25 + } + } + ], + "AU1azyXcHvb1NNsJJKxVGVoUytGFCiLgVeXdKU6J1VRUTiK39SSx": [ + { + "amount": "193.017588139", + "slot": { + "period": 36304, + "thread": 30 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 279019, + "thread": 28 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 325801, + "thread": 6 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 521677, + "thread": 16 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 728761, + "thread": 1 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 903820, + "thread": 25 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1107680, + "thread": 12 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1263163, + "thread": 10 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1334712, + "thread": 23 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1569576, + "thread": 23 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1716796, + "thread": 22 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 1861999, + "thread": 10 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2068384, + "thread": 10 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2252699, + "thread": 0 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2401833, + "thread": 29 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2493479, + "thread": 16 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2764549, + "thread": 6 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 2827174, + "thread": 5 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 3075218, + "thread": 2 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 3213211, + "thread": 31 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 3431984, + "thread": 13 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 3567993, + "thread": 28 + } + }, + { + "amount": "193.017588139", + "slot": { + "period": 3719229, + "thread": 27 + } + }, + { + "amount": "193.017588146", + "slot": { + "period": 3832779, + "thread": 13 + } + } + ], + "AU1b1KKRUmbkca7pK1DcYHJiXGa6Gd6ESizMJnss3RypfDMeMxBa": [ + { + "amount": "465.368940667", + "slot": { + "period": 22078, + "thread": 19 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 313138, + "thread": 29 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 473090, + "thread": 2 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 591155, + "thread": 8 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 738730, + "thread": 15 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 916324, + "thread": 29 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1111320, + "thread": 16 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1215552, + "thread": 11 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1351984, + "thread": 24 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1620139, + "thread": 27 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1699205, + "thread": 11 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 1825612, + "thread": 31 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2037113, + "thread": 22 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2289447, + "thread": 0 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2339137, + "thread": 0 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2501458, + "thread": 20 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2736940, + "thread": 24 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 2873495, + "thread": 14 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 3100715, + "thread": 4 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 3169471, + "thread": 5 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 3421234, + "thread": 4 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 3549697, + "thread": 17 + } + }, + { + "amount": "465.368940667", + "slot": { + "period": 3719167, + "thread": 6 + } + }, + { + "amount": "465.368940670", + "slot": { + "period": 3852880, + "thread": 27 + } + } + ], + "AU1b1sTELwoUaNDuDvqxr6feoefmG9LFdmkb1pFSPg7jugftYfZf": [ + { + "amount": "183.727051719", + "slot": { + "period": 37463, + "thread": 16 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 316952, + "thread": 5 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 369103, + "thread": 7 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 543265, + "thread": 25 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 689105, + "thread": 1 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 839277, + "thread": 30 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1068620, + "thread": 28 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1152616, + "thread": 12 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1458261, + "thread": 4 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1579401, + "thread": 27 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1747504, + "thread": 10 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 1873842, + "thread": 19 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2067202, + "thread": 19 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2221163, + "thread": 24 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2433187, + "thread": 28 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2486913, + "thread": 26 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2773793, + "thread": 25 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 2953543, + "thread": 24 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 3112640, + "thread": 11 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 3143235, + "thread": 30 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 3311663, + "thread": 1 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 3493990, + "thread": 20 + } + }, + { + "amount": "183.727051719", + "slot": { + "period": 3658122, + "thread": 11 + } + }, + { + "amount": "183.727051713", + "slot": { + "period": 3809535, + "thread": 25 + } + } + ], + "AU1b2ygoBPvbyDDbP8kDMfyGaJPzqnE5ALfSpGnVhqiuW7TUDVS4": [ + { + "amount": "70.736499834", + "slot": { + "period": 56621, + "thread": 19 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 206868, + "thread": 12 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 460081, + "thread": 29 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 594093, + "thread": 17 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 701723, + "thread": 29 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 850156, + "thread": 29 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1065192, + "thread": 1 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1286191, + "thread": 13 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1436946, + "thread": 10 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1505421, + "thread": 12 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1781031, + "thread": 18 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1816182, + "thread": 10 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 1994858, + "thread": 17 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 2272589, + "thread": 3 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 2417949, + "thread": 20 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 2478805, + "thread": 18 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 2650055, + "thread": 0 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 2830334, + "thread": 10 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 3098115, + "thread": 31 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 3283611, + "thread": 22 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 3418979, + "thread": 0 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 3613226, + "thread": 0 + } + }, + { + "amount": "70.736499834", + "slot": { + "period": 3711980, + "thread": 26 + } + }, + { + "amount": "70.736499825", + "slot": { + "period": 3841694, + "thread": 0 + } + } + ], + "AU1b3R3gF92WmueCCHNRqwPXBRWBTQxSaKS45YqyPru1HssXY8zv": [ + { + "amount": "264.065752327", + "slot": { + "period": 62535, + "thread": 22 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 322660, + "thread": 29 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 450691, + "thread": 0 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 589445, + "thread": 7 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 721116, + "thread": 0 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 926727, + "thread": 22 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1049503, + "thread": 2 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1259978, + "thread": 10 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1370648, + "thread": 9 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1523230, + "thread": 4 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1745869, + "thread": 4 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 1899399, + "thread": 1 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2007615, + "thread": 3 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2203605, + "thread": 4 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2391081, + "thread": 18 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2497643, + "thread": 29 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2715258, + "thread": 18 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 2948787, + "thread": 15 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 3076295, + "thread": 31 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 3129677, + "thread": 18 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 3416247, + "thread": 18 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 3552650, + "thread": 27 + } + }, + { + "amount": "264.065752327", + "slot": { + "period": 3668035, + "thread": 19 + } + }, + { + "amount": "264.065752323", + "slot": { + "period": 3922156, + "thread": 26 + } + } + ], + "AU1b3UEiiKUFEN41vXzM1SN7yMPbVx9cHp5J6JEkkHwKjfUtnFL3": [ + { + "amount": "182.517019121", + "slot": { + "period": 58261, + "thread": 15 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 210325, + "thread": 22 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 487837, + "thread": 5 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 575372, + "thread": 20 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 727783, + "thread": 24 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 886651, + "thread": 27 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1090468, + "thread": 7 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1186413, + "thread": 0 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1387856, + "thread": 16 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1520694, + "thread": 23 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1719231, + "thread": 3 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 1944791, + "thread": 16 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2099704, + "thread": 4 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2236631, + "thread": 1 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2320157, + "thread": 14 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2513569, + "thread": 11 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2665244, + "thread": 13 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 2866910, + "thread": 16 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 3111109, + "thread": 23 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 3254536, + "thread": 20 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 3333086, + "thread": 17 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 3610638, + "thread": 13 + } + }, + { + "amount": "182.517019121", + "slot": { + "period": 3641451, + "thread": 2 + } + }, + { + "amount": "182.517019127", + "slot": { + "period": 3891424, + "thread": 14 + } + } + ], + "AU1b3irQyJq8MCYfchjyZ1S2aXVdy3Bv7zsqnYuKrwGpF8nztdTN": [ + { + "amount": "422.753590264", + "slot": { + "period": 94314, + "thread": 22 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 183638, + "thread": 2 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 426799, + "thread": 27 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 607179, + "thread": 19 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 737696, + "thread": 0 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 827877, + "thread": 8 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1150185, + "thread": 8 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1244731, + "thread": 17 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1419950, + "thread": 31 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1529682, + "thread": 3 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1785662, + "thread": 0 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 1918611, + "thread": 0 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2058349, + "thread": 26 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2237411, + "thread": 30 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2438488, + "thread": 11 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2535029, + "thread": 15 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2731836, + "thread": 8 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 2897949, + "thread": 7 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 3098750, + "thread": 2 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 3191142, + "thread": 18 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 3425101, + "thread": 30 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 3476262, + "thread": 3 + } + }, + { + "amount": "422.753590264", + "slot": { + "period": 3684955, + "thread": 8 + } + }, + { + "amount": "422.753590259", + "slot": { + "period": 3929434, + "thread": 5 + } + } + ], + "AU1b53mwCCRmf7CakF3y4XWYQN3gyLK6SH12xAoXNEDsASt6zFXW": [ + { + "amount": "138.038522048", + "slot": { + "period": 136359, + "thread": 31 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 223194, + "thread": 7 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 384714, + "thread": 21 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 531930, + "thread": 24 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 713335, + "thread": 23 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 957697, + "thread": 17 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 989894, + "thread": 5 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 1295408, + "thread": 11 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 1421061, + "thread": 30 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 1610461, + "thread": 15 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 1784891, + "thread": 14 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 1944175, + "thread": 25 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2137135, + "thread": 8 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2255937, + "thread": 1 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2428706, + "thread": 17 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2491262, + "thread": 5 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2689269, + "thread": 25 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2915772, + "thread": 0 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 2985358, + "thread": 20 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 3230813, + "thread": 28 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 3423122, + "thread": 21 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 3612177, + "thread": 22 + } + }, + { + "amount": "138.038522048", + "slot": { + "period": 3690636, + "thread": 9 + } + }, + { + "amount": "138.038522037", + "slot": { + "period": 3817886, + "thread": 7 + } + } + ], + "AU1b5rr62hg4img5fnNPEVKZhPyfE1VyRBYJd2WYQVkSP6L5rRyZ": [ + { + "amount": "376.870782507", + "slot": { + "period": 117285, + "thread": 20 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 214310, + "thread": 23 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 342666, + "thread": 29 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 646685, + "thread": 31 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 705702, + "thread": 27 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 855584, + "thread": 23 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1112868, + "thread": 19 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1232970, + "thread": 8 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1391037, + "thread": 0 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1495561, + "thread": 21 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1736211, + "thread": 12 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 1873154, + "thread": 31 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2130294, + "thread": 11 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2243709, + "thread": 27 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2316773, + "thread": 8 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2624382, + "thread": 10 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2761033, + "thread": 3 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 2939247, + "thread": 18 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 3110547, + "thread": 31 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 3237111, + "thread": 19 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 3438558, + "thread": 5 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 3597244, + "thread": 22 + } + }, + { + "amount": "376.870782507", + "slot": { + "period": 3725558, + "thread": 12 + } + }, + { + "amount": "376.870782515", + "slot": { + "period": 3810899, + "thread": 28 + } + } + ], + "AU1b6ZbC5qWRjhLmemTZFvX3Mw2N6c5rmDQNRdTE77GeBqqXE2an": [ + { + "amount": "350.278859662", + "slot": { + "period": 35625, + "thread": 11 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 303195, + "thread": 23 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 428344, + "thread": 16 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 575113, + "thread": 20 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 747963, + "thread": 17 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 877546, + "thread": 4 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 988896, + "thread": 9 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 1266028, + "thread": 25 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 1428422, + "thread": 18 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 1501202, + "thread": 12 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 1752008, + "thread": 27 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 1953350, + "thread": 1 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2024823, + "thread": 7 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2157999, + "thread": 29 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2304837, + "thread": 30 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2524996, + "thread": 30 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2723277, + "thread": 13 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 2889786, + "thread": 15 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 3091321, + "thread": 0 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 3200219, + "thread": 14 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 3399526, + "thread": 6 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 3509806, + "thread": 2 + } + }, + { + "amount": "350.278859662", + "slot": { + "period": 3741998, + "thread": 19 + } + }, + { + "amount": "350.278859650", + "slot": { + "period": 3818463, + "thread": 21 + } + } + ], + "AU1b6v5xcQ2LZx5bTYYXY7XJjJgWmczNgAFKr9pKJSME9ZGE6o8i": [ + { + "amount": "160.175766997", + "slot": { + "period": 115517, + "thread": 22 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 239712, + "thread": 6 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 361293, + "thread": 28 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 540823, + "thread": 23 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 688326, + "thread": 14 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 889644, + "thread": 27 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1103952, + "thread": 2 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1206185, + "thread": 9 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1474435, + "thread": 0 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1601520, + "thread": 2 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1738686, + "thread": 28 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 1911585, + "thread": 18 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2112017, + "thread": 10 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2189947, + "thread": 24 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2447701, + "thread": 12 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2584210, + "thread": 14 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2779051, + "thread": 29 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 2915263, + "thread": 24 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 3038968, + "thread": 28 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 3273659, + "thread": 23 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 3416238, + "thread": 31 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 3454393, + "thread": 23 + } + }, + { + "amount": "160.175766997", + "slot": { + "period": 3626134, + "thread": 23 + } + }, + { + "amount": "160.175766996", + "slot": { + "period": 3867144, + "thread": 7 + } + } + ], + "AU1b6x3jednb5pFKuYBtydTo6dPBMpeg8Vvdw1hFwiHPT87mZs8M": [ + { + "amount": "125.512477544", + "slot": { + "period": 98224, + "thread": 16 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 279183, + "thread": 20 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 407682, + "thread": 4 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 599399, + "thread": 16 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 805678, + "thread": 16 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 910964, + "thread": 0 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1122610, + "thread": 6 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1196869, + "thread": 18 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1390975, + "thread": 13 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1584902, + "thread": 1 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1697153, + "thread": 28 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 1842310, + "thread": 20 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2100844, + "thread": 17 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2164336, + "thread": 9 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2450051, + "thread": 29 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2466877, + "thread": 22 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2646110, + "thread": 22 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 2941943, + "thread": 0 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 3011830, + "thread": 4 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 3231569, + "thread": 28 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 3442863, + "thread": 16 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 3559788, + "thread": 1 + } + }, + { + "amount": "125.512477544", + "slot": { + "period": 3725828, + "thread": 24 + } + }, + { + "amount": "125.512477543", + "slot": { + "period": 3934177, + "thread": 16 + } + } + ], + "AU1b6xVHoPJaijbmjmtzCjY5Q4GoXe2jiR85qVPSiyHWCMBE5ze7": [ + { + "amount": "356.312137116", + "slot": { + "period": 23214, + "thread": 15 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 301865, + "thread": 7 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 411259, + "thread": 15 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 536675, + "thread": 1 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 770554, + "thread": 22 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 949714, + "thread": 19 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 988379, + "thread": 4 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 1253235, + "thread": 2 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 1381184, + "thread": 3 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 1492661, + "thread": 28 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 1765156, + "thread": 6 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 1823293, + "thread": 22 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2050585, + "thread": 21 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2196840, + "thread": 3 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2311644, + "thread": 13 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2584374, + "thread": 15 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2772488, + "thread": 14 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 2880668, + "thread": 16 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 3055221, + "thread": 29 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 3145429, + "thread": 30 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 3296644, + "thread": 30 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 3594153, + "thread": 28 + } + }, + { + "amount": "356.312137116", + "slot": { + "period": 3678100, + "thread": 24 + } + }, + { + "amount": "356.312137122", + "slot": { + "period": 3834290, + "thread": 29 + } + } + ], + "AU1b86CT1tJBNq61tUJwkDHbhU9dHdCRTnmGDuSvALf9s5riCnKg": [ + { + "amount": "88.316381646", + "slot": { + "period": 77433, + "thread": 10 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 323124, + "thread": 8 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 456147, + "thread": 25 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 492201, + "thread": 28 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 660219, + "thread": 13 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 967173, + "thread": 8 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1038449, + "thread": 4 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1213496, + "thread": 0 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1427676, + "thread": 17 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1509880, + "thread": 8 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1705418, + "thread": 14 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1867385, + "thread": 20 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 1996051, + "thread": 2 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2143862, + "thread": 18 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2397333, + "thread": 31 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2616994, + "thread": 27 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2769091, + "thread": 13 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2890592, + "thread": 13 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 2968279, + "thread": 13 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 3170841, + "thread": 4 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 3421747, + "thread": 31 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 3506623, + "thread": 15 + } + }, + { + "amount": "88.316381646", + "slot": { + "period": 3649394, + "thread": 20 + } + }, + { + "amount": "88.316381641", + "slot": { + "period": 3812556, + "thread": 30 + } + } + ], + "AU1b9FB17MU4VeN1FGVjw643Fiji8HSHpVZR2Fg4GXrPgYkwFcyG": [ + { + "amount": "538.217425167", + "slot": { + "period": 114388, + "thread": 10 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 227065, + "thread": 0 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 491364, + "thread": 9 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 652438, + "thread": 0 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 817959, + "thread": 0 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 840854, + "thread": 8 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1008264, + "thread": 20 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1190694, + "thread": 28 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1453603, + "thread": 28 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1481987, + "thread": 19 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1695066, + "thread": 31 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 1839161, + "thread": 10 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2076235, + "thread": 0 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2234951, + "thread": 29 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2333186, + "thread": 3 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2483814, + "thread": 7 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2624554, + "thread": 18 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 2913833, + "thread": 31 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 3095945, + "thread": 7 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 3164495, + "thread": 10 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 3362054, + "thread": 7 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 3571120, + "thread": 30 + } + }, + { + "amount": "538.217425167", + "slot": { + "period": 3666941, + "thread": 12 + } + }, + { + "amount": "538.217425176", + "slot": { + "period": 3893826, + "thread": 6 + } + } + ], + "AU1bAHPWuKerfu2XbV9YfcunPjkQwDMhhAiFmaMfdQHDHkEDzR9i": [ + { + "amount": "181.000952678", + "slot": { + "period": 44407, + "thread": 18 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 225991, + "thread": 30 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 403082, + "thread": 23 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 591573, + "thread": 12 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 664231, + "thread": 22 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 868567, + "thread": 10 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1006271, + "thread": 17 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1280201, + "thread": 7 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1415178, + "thread": 3 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1539714, + "thread": 29 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1777971, + "thread": 3 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 1895945, + "thread": 17 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2141388, + "thread": 15 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2244589, + "thread": 25 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2337051, + "thread": 5 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2518183, + "thread": 22 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2712522, + "thread": 16 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 2853398, + "thread": 4 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 3045906, + "thread": 17 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 3213125, + "thread": 20 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 3422697, + "thread": 22 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 3605478, + "thread": 28 + } + }, + { + "amount": "181.000952678", + "slot": { + "period": 3706247, + "thread": 8 + } + }, + { + "amount": "181.000952685", + "slot": { + "period": 3820521, + "thread": 1 + } + } + ], + "AU1bAK4c4BuUP9QFnZjBiiPH47phgvH4t6evbPwRfEHHmfNmeKZi": [ + { + "amount": "531.262847035", + "slot": { + "period": 44395, + "thread": 13 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 295493, + "thread": 9 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 394230, + "thread": 28 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 606237, + "thread": 30 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 661511, + "thread": 29 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 837265, + "thread": 9 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1086904, + "thread": 13 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1264978, + "thread": 20 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1395635, + "thread": 7 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1535650, + "thread": 21 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1732446, + "thread": 22 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 1840809, + "thread": 31 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2079315, + "thread": 19 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2183656, + "thread": 20 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2408656, + "thread": 4 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2623730, + "thread": 13 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2666554, + "thread": 12 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 2922300, + "thread": 17 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 3110465, + "thread": 3 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 3154101, + "thread": 12 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 3416706, + "thread": 10 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 3600529, + "thread": 14 + } + }, + { + "amount": "531.262847035", + "slot": { + "period": 3705968, + "thread": 8 + } + }, + { + "amount": "531.262847034", + "slot": { + "period": 3827927, + "thread": 21 + } + } + ], + "AU1bAWRbUYUyAEgZMURdQ75VJBj8QauQqMZ1E4By5NBRctXVRx8V": [ + { + "amount": "562.211825424", + "slot": { + "period": 45706, + "thread": 15 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 204569, + "thread": 3 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 375415, + "thread": 17 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 621349, + "thread": 3 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 816975, + "thread": 6 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 909705, + "thread": 31 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1144762, + "thread": 14 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1285712, + "thread": 19 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1378784, + "thread": 1 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1627521, + "thread": 5 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1760174, + "thread": 8 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 1882459, + "thread": 10 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2096091, + "thread": 24 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2171034, + "thread": 8 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2349242, + "thread": 4 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2528702, + "thread": 16 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2744667, + "thread": 31 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2872990, + "thread": 12 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 2968681, + "thread": 28 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 3123113, + "thread": 9 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 3349802, + "thread": 7 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 3563589, + "thread": 19 + } + }, + { + "amount": "562.211825424", + "slot": { + "period": 3751656, + "thread": 1 + } + }, + { + "amount": "562.211825425", + "slot": { + "period": 3793024, + "thread": 25 + } + } + ], + "AU1bBFKRqgZhfcnvJ4zFgsFyMusYPZHUm4WBqSc15KHHb93y9nxs": [ + { + "amount": "64.515621967", + "slot": { + "period": 30583, + "thread": 19 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 251732, + "thread": 15 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 363758, + "thread": 26 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 539713, + "thread": 28 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 706843, + "thread": 21 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 908445, + "thread": 26 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1135424, + "thread": 4 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1315856, + "thread": 18 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1430281, + "thread": 10 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1634503, + "thread": 3 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1651344, + "thread": 1 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 1835805, + "thread": 6 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2012459, + "thread": 18 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2287307, + "thread": 21 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2400369, + "thread": 9 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2592390, + "thread": 11 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2688337, + "thread": 6 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 2806648, + "thread": 20 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 3057833, + "thread": 24 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 3232570, + "thread": 17 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 3314587, + "thread": 9 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 3550129, + "thread": 14 + } + }, + { + "amount": "64.515621967", + "slot": { + "period": 3663358, + "thread": 16 + } + }, + { + "amount": "64.515621974", + "slot": { + "period": 3853267, + "thread": 19 + } + } + ], + "AU1bBeFBCTe7SYowMKvqRHR3HrcHWyCHUNMYJycWEAUBDZtEBdr8": [ + { + "amount": "545.526530626", + "slot": { + "period": 103372, + "thread": 10 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 188829, + "thread": 4 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 406797, + "thread": 28 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 543821, + "thread": 2 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 724616, + "thread": 27 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 834162, + "thread": 0 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1076924, + "thread": 15 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1289593, + "thread": 11 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1478669, + "thread": 10 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1552964, + "thread": 10 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1672626, + "thread": 13 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 1879294, + "thread": 1 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2072449, + "thread": 28 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2218948, + "thread": 4 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2423591, + "thread": 20 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2475588, + "thread": 18 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2709157, + "thread": 16 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 2906823, + "thread": 16 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 3058121, + "thread": 22 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 3150370, + "thread": 15 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 3290385, + "thread": 1 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 3545356, + "thread": 16 + } + }, + { + "amount": "545.526530626", + "slot": { + "period": 3774324, + "thread": 16 + } + }, + { + "amount": "545.526530625", + "slot": { + "period": 3939293, + "thread": 29 + } + } + ], + "AU1bD6fjTcRLvUbDYyeXuCq3x48ZdCWMa7WSYL3RcLdikGuTsxbh": [ + { + "amount": "421.042725533", + "slot": { + "period": 37453, + "thread": 2 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 271063, + "thread": 26 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 447240, + "thread": 28 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 603244, + "thread": 8 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 665037, + "thread": 25 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 884695, + "thread": 19 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1020684, + "thread": 3 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1167929, + "thread": 5 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1438457, + "thread": 27 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1644226, + "thread": 21 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1722361, + "thread": 6 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 1892841, + "thread": 15 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2066567, + "thread": 5 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2199242, + "thread": 29 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2356038, + "thread": 19 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2583013, + "thread": 26 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2701960, + "thread": 29 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 2950093, + "thread": 10 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 3007197, + "thread": 18 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 3184561, + "thread": 2 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 3384930, + "thread": 22 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 3560055, + "thread": 31 + } + }, + { + "amount": "421.042725533", + "slot": { + "period": 3653973, + "thread": 1 + } + }, + { + "amount": "421.042725542", + "slot": { + "period": 3813828, + "thread": 29 + } + } + ], + "AU1bDhGKqLXk2qdwEjpWBthEnxgMoXAh7y4stR9E1Nd5n4n2kknG": [ + { + "amount": "331.570008012", + "slot": { + "period": 46473, + "thread": 15 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 233200, + "thread": 23 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 450482, + "thread": 11 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 583853, + "thread": 4 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 677974, + "thread": 5 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 866142, + "thread": 30 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1106126, + "thread": 29 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1313778, + "thread": 3 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1330042, + "thread": 14 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1593229, + "thread": 12 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1742337, + "thread": 5 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 1875012, + "thread": 13 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2032764, + "thread": 1 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2215858, + "thread": 15 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2297869, + "thread": 0 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2481381, + "thread": 29 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2646732, + "thread": 2 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 2860921, + "thread": 6 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 3002473, + "thread": 26 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 3188266, + "thread": 22 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 3383927, + "thread": 21 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 3479924, + "thread": 2 + } + }, + { + "amount": "331.570008012", + "slot": { + "period": 3660075, + "thread": 5 + } + }, + { + "amount": "331.570008017", + "slot": { + "period": 3835919, + "thread": 20 + } + } + ], + "AU1bDjF6m17u2DbBYqyxbCSk4vZgZBjkvRN6SiffqWPcYMMPm6zk": [ + { + "amount": "396.049365225", + "slot": { + "period": 109227, + "thread": 28 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 225156, + "thread": 2 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 356439, + "thread": 27 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 629334, + "thread": 11 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 806850, + "thread": 21 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 957836, + "thread": 8 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1000334, + "thread": 31 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1222220, + "thread": 7 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1407762, + "thread": 11 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1606914, + "thread": 7 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1652412, + "thread": 14 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 1847106, + "thread": 10 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2131783, + "thread": 15 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2146486, + "thread": 7 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2330144, + "thread": 3 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2485944, + "thread": 12 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2704387, + "thread": 12 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 2824019, + "thread": 10 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 3106682, + "thread": 13 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 3274672, + "thread": 8 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 3405727, + "thread": 25 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 3520207, + "thread": 24 + } + }, + { + "amount": "396.049365225", + "slot": { + "period": 3641507, + "thread": 8 + } + }, + { + "amount": "396.049365222", + "slot": { + "period": 3800800, + "thread": 28 + } + } + ], + "AU1bEJ5UG9o8CymrDJWNmTHk9dQAimdkFKzW8X3Ptsj9iaxL76VD": [ + { + "amount": "119.576915043", + "slot": { + "period": 35582, + "thread": 18 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 244717, + "thread": 15 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 347768, + "thread": 8 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 520117, + "thread": 23 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 744831, + "thread": 16 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 942232, + "thread": 21 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 994455, + "thread": 21 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 1299789, + "thread": 21 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 1403064, + "thread": 5 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 1497282, + "thread": 30 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 1655899, + "thread": 4 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 1927236, + "thread": 5 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2028310, + "thread": 13 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2213334, + "thread": 15 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2317224, + "thread": 17 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2586399, + "thread": 31 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2769640, + "thread": 30 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 2885683, + "thread": 20 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 3012654, + "thread": 21 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 3169698, + "thread": 10 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 3393410, + "thread": 28 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 3581830, + "thread": 3 + } + }, + { + "amount": "119.576915043", + "slot": { + "period": 3727081, + "thread": 5 + } + }, + { + "amount": "119.576915032", + "slot": { + "period": 3944691, + "thread": 14 + } + } + ], + "AU1bFKUqJCNCk5st5e5ioDHR5anqqBw6JzYQTg1Z92XWrsMs62j5": [ + { + "amount": "465.167913130", + "slot": { + "period": 64610, + "thread": 16 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 264353, + "thread": 1 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 386495, + "thread": 14 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 505088, + "thread": 14 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 741130, + "thread": 15 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 920181, + "thread": 12 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1131061, + "thread": 31 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1164252, + "thread": 9 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1374914, + "thread": 13 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1554682, + "thread": 11 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1674099, + "thread": 11 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 1965884, + "thread": 22 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2094528, + "thread": 25 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2153845, + "thread": 28 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2371775, + "thread": 12 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2593578, + "thread": 10 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2706746, + "thread": 25 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2897453, + "thread": 31 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 2976238, + "thread": 14 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 3257553, + "thread": 27 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 3416196, + "thread": 16 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 3481165, + "thread": 23 + } + }, + { + "amount": "465.167913130", + "slot": { + "period": 3737296, + "thread": 17 + } + }, + { + "amount": "465.167913140", + "slot": { + "period": 3862728, + "thread": 20 + } + } + ], + "AU1bFhB7R4dupbNknQnAZ9KcicFPPPzEq9vhcMXHBhfysHqsdLsL": [ + { + "amount": "256.893986588", + "slot": { + "period": 41594, + "thread": 27 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 206369, + "thread": 18 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 399194, + "thread": 5 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 652239, + "thread": 10 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 811247, + "thread": 2 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 980425, + "thread": 20 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1056587, + "thread": 0 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1160372, + "thread": 26 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1331086, + "thread": 30 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1505364, + "thread": 4 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1739622, + "thread": 20 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 1962005, + "thread": 30 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2116729, + "thread": 20 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2275074, + "thread": 31 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2437906, + "thread": 5 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2491601, + "thread": 12 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2683540, + "thread": 13 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 2859127, + "thread": 20 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3080757, + "thread": 14 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3189250, + "thread": 23 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3304758, + "thread": 11 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3522661, + "thread": 11 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3766410, + "thread": 18 + } + }, + { + "amount": "256.893986588", + "slot": { + "period": 3888033, + "thread": 30 + } + } + ], + "AU1bHEAULECgo4p9h8CmhmwdN2KahDywufKkZckW3AaiYtUyET3k": [ + { + "amount": "150.202988255", + "slot": { + "period": 124272, + "thread": 12 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 282816, + "thread": 15 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 450288, + "thread": 21 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 591487, + "thread": 19 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 691465, + "thread": 23 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 961206, + "thread": 19 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1100872, + "thread": 11 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1153794, + "thread": 2 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1454344, + "thread": 29 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1507955, + "thread": 26 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1779738, + "thread": 0 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 1945849, + "thread": 2 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2098236, + "thread": 2 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2200027, + "thread": 8 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2371569, + "thread": 30 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2502572, + "thread": 26 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2660391, + "thread": 6 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2825470, + "thread": 18 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 2960865, + "thread": 31 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 3235355, + "thread": 5 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 3356394, + "thread": 17 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 3519022, + "thread": 5 + } + }, + { + "amount": "150.202988255", + "slot": { + "period": 3727610, + "thread": 7 + } + }, + { + "amount": "150.202988252", + "slot": { + "period": 3801211, + "thread": 14 + } + } + ], + "AU1bHViXqQaKAcQEtUsVeybRua5RvPcTjJ2xnww6nmcp9MQZA4so": [ + { + "amount": "227.819725815", + "slot": { + "period": 63013, + "thread": 30 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 247123, + "thread": 26 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 406066, + "thread": 21 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 632774, + "thread": 1 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 733303, + "thread": 1 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 923984, + "thread": 18 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1046988, + "thread": 15 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1269505, + "thread": 20 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1323677, + "thread": 20 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1594173, + "thread": 21 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1665594, + "thread": 29 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 1920500, + "thread": 6 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2123255, + "thread": 0 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2237365, + "thread": 4 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2405342, + "thread": 19 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2519334, + "thread": 14 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2726641, + "thread": 12 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2905965, + "thread": 14 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 2996073, + "thread": 28 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 3228453, + "thread": 31 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 3341490, + "thread": 9 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 3589900, + "thread": 20 + } + }, + { + "amount": "227.819725815", + "slot": { + "period": 3743204, + "thread": 5 + } + }, + { + "amount": "227.819725823", + "slot": { + "period": 3864833, + "thread": 11 + } + } + ], + "AU1bJjM9H3Joqpj8FeiFVKc8vQA8tLEFMpytnmCq45zGxg2LtXNG": [ + { + "amount": "51.764548602", + "slot": { + "period": 38944, + "thread": 23 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 254298, + "thread": 31 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 458528, + "thread": 30 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 552840, + "thread": 26 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 709583, + "thread": 26 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 970709, + "thread": 2 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1134502, + "thread": 16 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1317210, + "thread": 9 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1430693, + "thread": 7 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1607486, + "thread": 10 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1720689, + "thread": 3 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 1917192, + "thread": 8 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2028030, + "thread": 4 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2208302, + "thread": 1 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2387555, + "thread": 8 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2497677, + "thread": 17 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2745951, + "thread": 15 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2872427, + "thread": 31 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 2994464, + "thread": 27 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 3171970, + "thread": 6 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 3404298, + "thread": 17 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 3602499, + "thread": 11 + } + }, + { + "amount": "51.764548602", + "slot": { + "period": 3642115, + "thread": 10 + } + }, + { + "amount": "51.764548596", + "slot": { + "period": 3821461, + "thread": 18 + } + } + ], + "AU1bJjSnoggRUra3SCtj8ANcLr2aXSZ1uCaYraDAYJiGXdEvQN57": [ + { + "amount": "213.022560419", + "slot": { + "period": 58545, + "thread": 1 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 203333, + "thread": 8 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 348154, + "thread": 20 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 608625, + "thread": 6 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 662318, + "thread": 23 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 908626, + "thread": 22 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1149244, + "thread": 28 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1270449, + "thread": 19 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1378351, + "thread": 10 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1525505, + "thread": 28 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1647123, + "thread": 25 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 1940840, + "thread": 24 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2099465, + "thread": 4 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2203153, + "thread": 1 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2422412, + "thread": 27 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2492885, + "thread": 10 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2650414, + "thread": 23 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2927837, + "thread": 28 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 2975199, + "thread": 1 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 3227634, + "thread": 10 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 3349024, + "thread": 16 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 3558511, + "thread": 29 + } + }, + { + "amount": "213.022560419", + "slot": { + "period": 3682364, + "thread": 13 + } + }, + { + "amount": "213.022560415", + "slot": { + "period": 3901334, + "thread": 4 + } + } + ], + "AU1bL8XEE4vYnw3rRucv3RhahGsp5j3bTuA8mrdHwsA56rHRnuyh": [ + { + "amount": "148.540346346", + "slot": { + "period": 61617, + "thread": 22 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 216217, + "thread": 1 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 441625, + "thread": 21 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 559807, + "thread": 25 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 669040, + "thread": 16 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 843065, + "thread": 27 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1109154, + "thread": 19 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1227247, + "thread": 29 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1420987, + "thread": 12 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1557839, + "thread": 20 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1687447, + "thread": 25 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 1843903, + "thread": 8 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2054693, + "thread": 29 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2161049, + "thread": 25 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2450178, + "thread": 20 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2619691, + "thread": 31 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2669537, + "thread": 4 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 2843566, + "thread": 30 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 3075803, + "thread": 31 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 3239427, + "thread": 15 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 3403896, + "thread": 25 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 3551596, + "thread": 20 + } + }, + { + "amount": "148.540346346", + "slot": { + "period": 3686628, + "thread": 18 + } + }, + { + "amount": "148.540346334", + "slot": { + "period": 3852253, + "thread": 27 + } + } + ], + "AU1bLkKhk68dAnBeadJq5vgEZazXv6WVtxzuFBroQed5qfXSmsbY": [ + { + "amount": "290.037915804", + "slot": { + "period": 105786, + "thread": 31 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 211550, + "thread": 5 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 453537, + "thread": 23 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 528344, + "thread": 30 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 775114, + "thread": 24 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 824781, + "thread": 7 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1061427, + "thread": 15 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1185337, + "thread": 31 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1426711, + "thread": 0 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1632761, + "thread": 20 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1799016, + "thread": 8 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 1903006, + "thread": 16 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2095037, + "thread": 9 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2165375, + "thread": 10 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2459541, + "thread": 16 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2477164, + "thread": 7 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2682970, + "thread": 2 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 2949631, + "thread": 2 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 3074311, + "thread": 23 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 3226200, + "thread": 5 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 3323652, + "thread": 7 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 3599674, + "thread": 2 + } + }, + { + "amount": "290.037915804", + "slot": { + "period": 3703810, + "thread": 13 + } + }, + { + "amount": "290.037915802", + "slot": { + "period": 3946726, + "thread": 1 + } + } + ], + "AU1bMWtMFNXUdxQYmceEJotWpkqMx7sRiYhk7uC1kQ2h7aE9SuGT": [ + { + "amount": "346.683204974", + "slot": { + "period": 107107, + "thread": 16 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 189882, + "thread": 30 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 440565, + "thread": 31 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 581977, + "thread": 4 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 793643, + "thread": 8 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 936092, + "thread": 18 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1009450, + "thread": 22 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1232828, + "thread": 5 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1341896, + "thread": 29 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1535591, + "thread": 25 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1719719, + "thread": 30 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 1859215, + "thread": 28 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2016970, + "thread": 30 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2190629, + "thread": 9 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2377736, + "thread": 13 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2505129, + "thread": 13 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2717374, + "thread": 29 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2917024, + "thread": 4 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 2966137, + "thread": 0 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 3222070, + "thread": 5 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 3356329, + "thread": 19 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 3520436, + "thread": 11 + } + }, + { + "amount": "346.683204974", + "slot": { + "period": 3700066, + "thread": 29 + } + }, + { + "amount": "346.683204986", + "slot": { + "period": 3926722, + "thread": 3 + } + } + ], + "AU1bMfpGydGHczf5d6nN3VNysxC5FiKQbYWGnVF3ZX1jvBUCeA1h": [ + { + "amount": "205.226809441", + "slot": { + "period": 71674, + "thread": 30 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 172456, + "thread": 24 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 451144, + "thread": 13 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 558707, + "thread": 15 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 771813, + "thread": 30 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 897716, + "thread": 8 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1098126, + "thread": 11 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1194896, + "thread": 12 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1374306, + "thread": 14 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1556089, + "thread": 20 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1806296, + "thread": 1 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 1962116, + "thread": 23 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2057173, + "thread": 29 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2283800, + "thread": 18 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2323301, + "thread": 31 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2545226, + "thread": 26 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2653343, + "thread": 19 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2906929, + "thread": 0 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 2997950, + "thread": 14 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 3149834, + "thread": 1 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 3326844, + "thread": 19 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 3470506, + "thread": 24 + } + }, + { + "amount": "205.226809441", + "slot": { + "period": 3756436, + "thread": 14 + } + }, + { + "amount": "205.226809442", + "slot": { + "period": 3839481, + "thread": 5 + } + } + ], + "AU1bNZhzHaLQG13TukRfWu2kwBfxR8L41NPdLinbccVqNZgdHQbf": [ + { + "amount": "219.408323958", + "slot": { + "period": 158177, + "thread": 19 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 267558, + "thread": 9 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 359934, + "thread": 24 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 647114, + "thread": 10 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 770087, + "thread": 18 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 892081, + "thread": 31 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1030741, + "thread": 22 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1262646, + "thread": 21 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1445877, + "thread": 6 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1583669, + "thread": 23 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1746505, + "thread": 29 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1834838, + "thread": 30 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 1984430, + "thread": 30 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 2254983, + "thread": 11 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 2423008, + "thread": 31 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 2582958, + "thread": 6 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 2764946, + "thread": 4 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 2886983, + "thread": 23 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 3097451, + "thread": 27 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 3182625, + "thread": 27 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 3342806, + "thread": 21 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 3491451, + "thread": 15 + } + }, + { + "amount": "219.408323958", + "slot": { + "period": 3757238, + "thread": 11 + } + }, + { + "amount": "219.408323959", + "slot": { + "period": 3896977, + "thread": 28 + } + } + ], + "AU1bNaghi8ZX3nySnag4XWkTNfSHwmM9Mbvq5J3aDju1yyfKbfyA": [ + { + "amount": "159.018203694", + "slot": { + "period": 24312, + "thread": 23 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 199368, + "thread": 5 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 386030, + "thread": 17 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 537033, + "thread": 17 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 729798, + "thread": 22 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 946065, + "thread": 19 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1136909, + "thread": 17 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1199115, + "thread": 23 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1365067, + "thread": 2 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1497871, + "thread": 0 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1798338, + "thread": 29 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1894531, + "thread": 18 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 1978149, + "thread": 16 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2276831, + "thread": 9 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2399467, + "thread": 27 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2591512, + "thread": 0 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2726534, + "thread": 8 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2931738, + "thread": 5 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 2985506, + "thread": 29 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 3122258, + "thread": 2 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 3447886, + "thread": 16 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 3512978, + "thread": 22 + } + }, + { + "amount": "159.018203694", + "slot": { + "period": 3736462, + "thread": 16 + } + }, + { + "amount": "159.018203689", + "slot": { + "period": 3902718, + "thread": 9 + } + } + ], + "AU1bNiLsytGXhczKfPafTbEwUpLrCc9N5txQ8tTCzeKnLAkXZhbx": [ + { + "amount": "352.965553871", + "slot": { + "period": 132554, + "thread": 9 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 222512, + "thread": 27 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 330892, + "thread": 14 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 622869, + "thread": 0 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 679036, + "thread": 6 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 924261, + "thread": 5 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1095051, + "thread": 6 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1230830, + "thread": 18 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1469837, + "thread": 5 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1615109, + "thread": 2 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1741422, + "thread": 12 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1848850, + "thread": 23 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 1982252, + "thread": 4 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 2210203, + "thread": 26 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 2407437, + "thread": 9 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 2489384, + "thread": 1 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 2711864, + "thread": 14 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 2887430, + "thread": 4 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 3045380, + "thread": 24 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 3166978, + "thread": 18 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 3441967, + "thread": 23 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 3589375, + "thread": 1 + } + }, + { + "amount": "352.965553871", + "slot": { + "period": 3768681, + "thread": 4 + } + }, + { + "amount": "352.965553877", + "slot": { + "period": 3905872, + "thread": 26 + } + } + ], + "AU1bP4kTqKan13aTozzGp84Z7aWVqvfBzatoYz8b4YDtFBoXgByT": [ + { + "amount": "165.035886309", + "slot": { + "period": 50334, + "thread": 20 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 243619, + "thread": 7 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 475916, + "thread": 19 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 643187, + "thread": 22 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 764577, + "thread": 27 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 858682, + "thread": 0 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1005681, + "thread": 6 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1225551, + "thread": 2 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1416941, + "thread": 27 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1588654, + "thread": 4 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1715045, + "thread": 22 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 1840105, + "thread": 11 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2035560, + "thread": 23 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2147887, + "thread": 0 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2411838, + "thread": 4 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2482826, + "thread": 9 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2660658, + "thread": 31 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 2887226, + "thread": 19 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 3061212, + "thread": 5 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 3162838, + "thread": 2 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 3296647, + "thread": 13 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 3466218, + "thread": 7 + } + }, + { + "amount": "165.035886309", + "slot": { + "period": 3648140, + "thread": 29 + } + }, + { + "amount": "165.035886301", + "slot": { + "period": 3917675, + "thread": 16 + } + } + ], + "AU1bQ7LSPmK63rpXJiosXjSUN1WZRZD8PDBUTTwNpG5FSKiQSPj7": [ + { + "amount": "404.285071899", + "slot": { + "period": 26605, + "thread": 13 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 317306, + "thread": 18 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 352700, + "thread": 27 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 622220, + "thread": 12 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 684024, + "thread": 21 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 887346, + "thread": 1 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 982900, + "thread": 28 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 1229406, + "thread": 8 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 1394360, + "thread": 15 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 1515264, + "thread": 8 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 1653392, + "thread": 9 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 1824591, + "thread": 21 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2077632, + "thread": 1 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2288729, + "thread": 23 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2379777, + "thread": 15 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2588783, + "thread": 7 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2655024, + "thread": 23 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 2899807, + "thread": 15 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 3073698, + "thread": 22 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 3187991, + "thread": 13 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 3313008, + "thread": 12 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 3460312, + "thread": 31 + } + }, + { + "amount": "404.285071899", + "slot": { + "period": 3652646, + "thread": 23 + } + }, + { + "amount": "404.285071908", + "slot": { + "period": 3796523, + "thread": 14 + } + } + ], + "AU1bQYPAicqCNu7NDy4ate2QZy2WvCNbqQYarXkFuQyXDLynqXfX": [ + { + "amount": "79.701475039", + "slot": { + "period": 140111, + "thread": 7 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 199096, + "thread": 20 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 460454, + "thread": 27 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 565022, + "thread": 8 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 713143, + "thread": 0 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 971810, + "thread": 9 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1129053, + "thread": 4 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1194620, + "thread": 20 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1434455, + "thread": 20 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1604213, + "thread": 23 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1731196, + "thread": 2 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 1851323, + "thread": 17 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2015068, + "thread": 13 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2225695, + "thread": 19 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2423411, + "thread": 7 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2553436, + "thread": 17 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2649865, + "thread": 17 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2847388, + "thread": 4 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 2956188, + "thread": 11 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 3259440, + "thread": 31 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 3407273, + "thread": 20 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 3561772, + "thread": 12 + } + }, + { + "amount": "79.701475039", + "slot": { + "period": 3704520, + "thread": 23 + } + }, + { + "amount": "79.701475033", + "slot": { + "period": 3912835, + "thread": 19 + } + } + ], + "AU1bQuRyd8AWuyMqThoEEVKZRzVLSUSf1AbugA4EZSWjBL3XBKQT": [ + { + "amount": "110.909937254", + "slot": { + "period": 157706, + "thread": 2 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 174839, + "thread": 31 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 480923, + "thread": 27 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 638977, + "thread": 23 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 808351, + "thread": 26 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 979046, + "thread": 25 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1103231, + "thread": 6 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1274720, + "thread": 21 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1364232, + "thread": 15 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1500952, + "thread": 22 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1711422, + "thread": 6 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 1878056, + "thread": 24 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2068746, + "thread": 13 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2248619, + "thread": 19 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2377264, + "thread": 21 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2466482, + "thread": 22 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2648305, + "thread": 20 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 2923060, + "thread": 24 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 3069838, + "thread": 23 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 3167468, + "thread": 24 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 3327853, + "thread": 2 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 3522063, + "thread": 31 + } + }, + { + "amount": "110.909937254", + "slot": { + "period": 3751342, + "thread": 0 + } + }, + { + "amount": "110.909937260", + "slot": { + "period": 3843612, + "thread": 21 + } + } + ], + "AU1bRLw18EZPoRh37hhfRZEvjM4AbEZpxngQXCJGTmUpVaYZuKey": [ + { + "amount": "137.687797451", + "slot": { + "period": 162196, + "thread": 14 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 176487, + "thread": 20 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 366202, + "thread": 7 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 606345, + "thread": 8 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 693819, + "thread": 26 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 861596, + "thread": 9 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1045706, + "thread": 11 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1284274, + "thread": 11 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1342864, + "thread": 2 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1556843, + "thread": 3 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1706635, + "thread": 9 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 1905119, + "thread": 7 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2026849, + "thread": 26 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2160510, + "thread": 4 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2432594, + "thread": 29 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2488438, + "thread": 16 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2759683, + "thread": 9 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 2936714, + "thread": 0 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 3018788, + "thread": 5 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 3252693, + "thread": 6 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 3435063, + "thread": 29 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 3456601, + "thread": 4 + } + }, + { + "amount": "137.687797451", + "slot": { + "period": 3637625, + "thread": 23 + } + }, + { + "amount": "137.687797441", + "slot": { + "period": 3939290, + "thread": 6 + } + } + ], + "AU1bRwWJnZU4sRSkM1dH4fB68CMG28vPy3eTn9eFxH3iSiJLtMPS": [ + { + "amount": "79.289516612", + "slot": { + "period": 25741, + "thread": 17 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 210357, + "thread": 30 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 428756, + "thread": 0 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 502925, + "thread": 28 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 775239, + "thread": 25 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 971348, + "thread": 25 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1138839, + "thread": 3 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1181299, + "thread": 6 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1433507, + "thread": 21 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1619058, + "thread": 10 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1789062, + "thread": 29 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 1934692, + "thread": 1 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2091509, + "thread": 10 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2244236, + "thread": 13 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2456860, + "thread": 29 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2492939, + "thread": 4 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2658193, + "thread": 0 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 2853006, + "thread": 11 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 3057630, + "thread": 19 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 3185262, + "thread": 26 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 3404971, + "thread": 9 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 3604256, + "thread": 30 + } + }, + { + "amount": "79.289516612", + "slot": { + "period": 3757582, + "thread": 5 + } + }, + { + "amount": "79.289516618", + "slot": { + "period": 3879920, + "thread": 19 + } + } + ], + "AU1bRyzdijKPg13esYrNb1t6AzipLJK3JoPphL347E8dheakvi98": [ + { + "amount": "212.942859743", + "slot": { + "period": 58666, + "thread": 11 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 319949, + "thread": 6 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 348751, + "thread": 9 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 636676, + "thread": 22 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 802523, + "thread": 17 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 854364, + "thread": 10 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 987934, + "thread": 25 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 1163569, + "thread": 24 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 1416152, + "thread": 27 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 1547417, + "thread": 7 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 1787986, + "thread": 16 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 1855122, + "thread": 22 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2041717, + "thread": 10 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2246546, + "thread": 13 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2386858, + "thread": 22 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2567977, + "thread": 4 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2764801, + "thread": 10 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 2808202, + "thread": 3 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 3005926, + "thread": 6 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 3229087, + "thread": 14 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 3396213, + "thread": 30 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 3588723, + "thread": 4 + } + }, + { + "amount": "212.942859743", + "slot": { + "period": 3734755, + "thread": 3 + } + }, + { + "amount": "212.942859752", + "slot": { + "period": 3858449, + "thread": 8 + } + } + ], + "AU1bSHjm3RXRPsCgPaYtco3G3xBvgAqk5RZKET2M2ekdZHSsXojs": [ + { + "amount": "647.798433937", + "slot": { + "period": 69840, + "thread": 18 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 263967, + "thread": 16 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 342898, + "thread": 6 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 545145, + "thread": 29 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 694880, + "thread": 24 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 820815, + "thread": 1 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1094969, + "thread": 8 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1260156, + "thread": 3 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1471387, + "thread": 25 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1505593, + "thread": 27 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1706289, + "thread": 2 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 1851529, + "thread": 25 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2070474, + "thread": 12 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2276800, + "thread": 29 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2425580, + "thread": 16 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2618946, + "thread": 27 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2732005, + "thread": 25 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2850887, + "thread": 11 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 2993355, + "thread": 5 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 3191992, + "thread": 31 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 3350060, + "thread": 31 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 3600735, + "thread": 6 + } + }, + { + "amount": "647.798433937", + "slot": { + "period": 3756901, + "thread": 9 + } + }, + { + "amount": "647.798433939", + "slot": { + "period": 3803519, + "thread": 11 + } + } + ], + "AU1bSpR7B6Qg16FUAfus1vzyaeFMmhLAtbyMPPGyh599XwmxkEbg": [ + { + "amount": "139.118107062", + "slot": { + "period": 13867, + "thread": 30 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 244720, + "thread": 31 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 338989, + "thread": 3 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 518831, + "thread": 1 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 724546, + "thread": 11 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 953940, + "thread": 2 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1109367, + "thread": 8 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1179577, + "thread": 5 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1375406, + "thread": 4 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1542396, + "thread": 25 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1724210, + "thread": 5 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 1910428, + "thread": 2 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2012959, + "thread": 2 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2274477, + "thread": 0 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2361591, + "thread": 20 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2510000, + "thread": 28 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2692370, + "thread": 23 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 2915204, + "thread": 16 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 3094892, + "thread": 27 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 3175185, + "thread": 17 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 3291024, + "thread": 12 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 3481935, + "thread": 27 + } + }, + { + "amount": "139.118107062", + "slot": { + "period": 3693103, + "thread": 20 + } + }, + { + "amount": "139.118107057", + "slot": { + "period": 3787727, + "thread": 24 + } + } + ], + "AU1bTNjQ2TBpLGiKoHbcMdX32d6iCyoEw5u4MTPkCU7prsnqjhcz": [ + { + "amount": "486.135953986", + "slot": { + "period": 158000, + "thread": 0 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 245996, + "thread": 16 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 327890, + "thread": 20 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 536449, + "thread": 6 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 804666, + "thread": 22 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 936579, + "thread": 6 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1127763, + "thread": 19 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1283550, + "thread": 26 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1318161, + "thread": 8 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1510629, + "thread": 29 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1667859, + "thread": 27 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 1892933, + "thread": 17 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2065697, + "thread": 26 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2149917, + "thread": 18 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2433903, + "thread": 26 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2567385, + "thread": 12 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2633256, + "thread": 17 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2880453, + "thread": 14 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 2982774, + "thread": 7 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 3173155, + "thread": 18 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 3350146, + "thread": 31 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 3488782, + "thread": 17 + } + }, + { + "amount": "486.135953986", + "slot": { + "period": 3723224, + "thread": 9 + } + }, + { + "amount": "486.135953984", + "slot": { + "period": 3882141, + "thread": 6 + } + } + ], + "AU1bTj6tGGzV8Jfg38Mf9tnDThXBNWPhiKW7nbYvnUKyL1X4qEpG": [ + { + "amount": "139.589737255", + "slot": { + "period": 17905, + "thread": 13 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 269927, + "thread": 20 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 396688, + "thread": 3 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 521905, + "thread": 4 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 776815, + "thread": 2 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 863529, + "thread": 1 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1131998, + "thread": 27 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1214134, + "thread": 12 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1460262, + "thread": 18 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1582499, + "thread": 16 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1705249, + "thread": 6 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 1856035, + "thread": 18 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2011625, + "thread": 8 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2245475, + "thread": 1 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2374696, + "thread": 13 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2608754, + "thread": 27 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2741892, + "thread": 17 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 2902343, + "thread": 26 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 3035611, + "thread": 29 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 3147490, + "thread": 31 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 3294253, + "thread": 10 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 3485859, + "thread": 19 + } + }, + { + "amount": "139.589737255", + "slot": { + "period": 3778653, + "thread": 7 + } + }, + { + "amount": "139.589737257", + "slot": { + "period": 3794189, + "thread": 22 + } + } + ], + "AU1bU8ZpsR9jWdRRmPk1ED1FgZ5t1q86TMnhne6sTMYjyLyRjxEJ": [ + { + "amount": "376.950025492", + "slot": { + "period": 24387, + "thread": 18 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 235238, + "thread": 2 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 340020, + "thread": 12 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 575098, + "thread": 11 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 673138, + "thread": 13 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 859176, + "thread": 21 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1074373, + "thread": 27 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1222620, + "thread": 4 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1377372, + "thread": 22 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1567798, + "thread": 17 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1736243, + "thread": 31 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1825983, + "thread": 1 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 1986319, + "thread": 10 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 2210947, + "thread": 31 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 2437541, + "thread": 23 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 2484040, + "thread": 8 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 2764339, + "thread": 5 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 2923194, + "thread": 6 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 3078187, + "thread": 2 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 3251978, + "thread": 14 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 3325951, + "thread": 9 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 3585788, + "thread": 13 + } + }, + { + "amount": "376.950025492", + "slot": { + "period": 3708180, + "thread": 3 + } + }, + { + "amount": "376.950025499", + "slot": { + "period": 3865781, + "thread": 24 + } + } + ], + "AU1bUD9ZUbjTjLeewNbqKJ3X8DQjkwZzLekDw7j6oxpnvy2xgfG9": [ + { + "amount": "645.568002717", + "slot": { + "period": 33188, + "thread": 9 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 177746, + "thread": 30 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 331224, + "thread": 26 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 493783, + "thread": 31 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 813800, + "thread": 3 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 950454, + "thread": 12 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1032541, + "thread": 13 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1209516, + "thread": 18 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1334137, + "thread": 26 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1499345, + "thread": 3 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1673129, + "thread": 11 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 1870691, + "thread": 14 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2022697, + "thread": 24 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2162137, + "thread": 29 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2437368, + "thread": 20 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2591360, + "thread": 31 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2681626, + "thread": 28 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2904220, + "thread": 26 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 2987778, + "thread": 18 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 3219712, + "thread": 7 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 3440096, + "thread": 21 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 3552222, + "thread": 14 + } + }, + { + "amount": "645.568002717", + "slot": { + "period": 3685018, + "thread": 23 + } + }, + { + "amount": "645.568002713", + "slot": { + "period": 3900929, + "thread": 29 + } + } + ], + "AU1bVZJCpFq1dSoL5cAqWBK8v2EZ6hVCyhhJpFmthiiW2yQm6HJE": [ + { + "amount": "262.183313133", + "slot": { + "period": 44387, + "thread": 17 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 258327, + "thread": 2 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 349856, + "thread": 18 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 544114, + "thread": 15 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 708758, + "thread": 28 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 833263, + "thread": 10 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1139955, + "thread": 10 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1218994, + "thread": 29 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1350992, + "thread": 24 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1557813, + "thread": 9 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1679609, + "thread": 17 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 1920165, + "thread": 11 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2138145, + "thread": 22 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2170013, + "thread": 9 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2336046, + "thread": 20 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2566315, + "thread": 23 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2640326, + "thread": 2 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 2858503, + "thread": 2 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 3069576, + "thread": 22 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 3177485, + "thread": 17 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 3347179, + "thread": 10 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 3537177, + "thread": 1 + } + }, + { + "amount": "262.183313133", + "slot": { + "period": 3635341, + "thread": 13 + } + }, + { + "amount": "262.183313139", + "slot": { + "period": 3881266, + "thread": 8 + } + } + ], + "AU1bVt1K1pSF2xbFxxRQPTxd3XJrDggMeNAxpWiKjkrnN77xoL6Q": [ + { + "amount": "273.958244032", + "slot": { + "period": 28110, + "thread": 23 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 235283, + "thread": 18 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 474227, + "thread": 12 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 623661, + "thread": 0 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 760030, + "thread": 23 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 940741, + "thread": 29 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1065631, + "thread": 16 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1274839, + "thread": 29 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1449746, + "thread": 13 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1516208, + "thread": 11 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1758746, + "thread": 3 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 1968217, + "thread": 11 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2119304, + "thread": 8 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2203449, + "thread": 20 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2448622, + "thread": 18 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2601434, + "thread": 28 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2776243, + "thread": 9 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2890182, + "thread": 27 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 2987418, + "thread": 6 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 3149604, + "thread": 31 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 3398172, + "thread": 26 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 3497288, + "thread": 31 + } + }, + { + "amount": "273.958244032", + "slot": { + "period": 3659105, + "thread": 1 + } + }, + { + "amount": "273.958244035", + "slot": { + "period": 3807571, + "thread": 24 + } + } + ], + "AU1bWZ99K9Ti2EXqqWiAzdS3MiTLDnugmcPcWuKCAMRif3mCfxMo": [ + { + "amount": "308.434712910", + "slot": { + "period": 95491, + "thread": 19 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 178759, + "thread": 5 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 384091, + "thread": 5 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 500050, + "thread": 27 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 674589, + "thread": 20 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 921901, + "thread": 31 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1136800, + "thread": 27 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1183010, + "thread": 2 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1426941, + "thread": 22 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1496891, + "thread": 18 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1737101, + "thread": 1 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 1885873, + "thread": 7 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2109903, + "thread": 10 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2283966, + "thread": 10 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2368606, + "thread": 10 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2568674, + "thread": 29 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2683012, + "thread": 11 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2801393, + "thread": 15 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 2956237, + "thread": 0 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 3247581, + "thread": 30 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 3423765, + "thread": 31 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 3552341, + "thread": 25 + } + }, + { + "amount": "308.434712910", + "slot": { + "period": 3694580, + "thread": 3 + } + }, + { + "amount": "308.434712907", + "slot": { + "period": 3918584, + "thread": 5 + } + } + ], + "AU1bYVqLz2K2KFrr5MmvBd4RRArub6xdgCLTdcVsNwgDfzZLDNd3": [ + { + "amount": "98.945591270", + "slot": { + "period": 102022, + "thread": 29 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 267868, + "thread": 20 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 379330, + "thread": 29 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 570819, + "thread": 31 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 737009, + "thread": 31 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 848970, + "thread": 17 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1104882, + "thread": 7 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1215421, + "thread": 30 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1365827, + "thread": 26 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1539125, + "thread": 6 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1691901, + "thread": 31 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1860999, + "thread": 21 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 1985437, + "thread": 26 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 2179573, + "thread": 18 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 2458247, + "thread": 16 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 2503520, + "thread": 19 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 2734592, + "thread": 20 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 2845954, + "thread": 1 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 3047317, + "thread": 26 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 3162675, + "thread": 12 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 3394334, + "thread": 9 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 3610685, + "thread": 23 + } + }, + { + "amount": "98.945591270", + "slot": { + "period": 3714216, + "thread": 5 + } + }, + { + "amount": "98.945591266", + "slot": { + "period": 3937628, + "thread": 29 + } + } + ], + "AU1bZ8zSkcPo1MiBVQzJ6F2DxNnwJoJxDmG4CCCQr9YdowVPFSXH": [ + { + "amount": "244.064957066", + "slot": { + "period": 85613, + "thread": 26 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 227499, + "thread": 28 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 394232, + "thread": 1 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 498849, + "thread": 21 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 810744, + "thread": 7 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 836279, + "thread": 2 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1030687, + "thread": 3 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1170667, + "thread": 30 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1339777, + "thread": 25 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1580527, + "thread": 20 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1651798, + "thread": 30 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1970550, + "thread": 1 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 1981017, + "thread": 25 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2198762, + "thread": 23 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2386538, + "thread": 8 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2595127, + "thread": 4 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2671094, + "thread": 18 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2947210, + "thread": 18 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 2994051, + "thread": 30 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 3268011, + "thread": 6 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 3302269, + "thread": 13 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 3521659, + "thread": 13 + } + }, + { + "amount": "244.064957066", + "slot": { + "period": 3618157, + "thread": 28 + } + }, + { + "amount": "244.064957055", + "slot": { + "period": 3848252, + "thread": 24 + } + } + ], + "AU1bZ9UXX79K5bAR7CfJUPQoNBgWuhnrswWHdLd45FszDiXjoZXe": [ + { + "amount": "73.911042022", + "slot": { + "period": 111445, + "thread": 6 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 175616, + "thread": 13 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 344194, + "thread": 4 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 569272, + "thread": 29 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 811054, + "thread": 17 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 910983, + "thread": 17 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1049202, + "thread": 23 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1233826, + "thread": 8 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1392122, + "thread": 29 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1498527, + "thread": 14 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1724765, + "thread": 9 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 1929027, + "thread": 2 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2094775, + "thread": 17 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2237504, + "thread": 27 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2326787, + "thread": 7 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2507924, + "thread": 27 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2759160, + "thread": 18 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 2949651, + "thread": 18 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 3103135, + "thread": 29 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 3271148, + "thread": 20 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 3400944, + "thread": 19 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 3538787, + "thread": 29 + } + }, + { + "amount": "73.911042022", + "slot": { + "period": 3735700, + "thread": 19 + } + }, + { + "amount": "73.911042032", + "slot": { + "period": 3894093, + "thread": 0 + } + } + ], + "AU1baXZhKwzD8jB1BxfQ55xGxvusSXMYYqjbUu2aoVTLftJwrJXX": [ + { + "amount": "313.776564946", + "slot": { + "period": 36690, + "thread": 14 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 285642, + "thread": 16 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 398843, + "thread": 22 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 564276, + "thread": 12 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 729746, + "thread": 14 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 918358, + "thread": 0 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1120292, + "thread": 31 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1274010, + "thread": 1 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1408490, + "thread": 29 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1558448, + "thread": 2 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1758426, + "thread": 16 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 1972058, + "thread": 20 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2125489, + "thread": 21 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2187506, + "thread": 26 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2331344, + "thread": 28 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2547370, + "thread": 14 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2642250, + "thread": 2 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2891288, + "thread": 18 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 2989531, + "thread": 31 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 3185564, + "thread": 17 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 3404522, + "thread": 5 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 3524537, + "thread": 22 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 3625266, + "thread": 22 + } + }, + { + "amount": "313.776564946", + "slot": { + "period": 3787708, + "thread": 21 + } + } + ], + "AU1bavhG6qwsAxC5xiVfUZq8zYZWcHMSKZ2JpHw9RK5jR9SDRRDK": [ + { + "amount": "241.779063080", + "slot": { + "period": 111099, + "thread": 4 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 167449, + "thread": 14 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 484105, + "thread": 31 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 573364, + "thread": 15 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 757557, + "thread": 10 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 842437, + "thread": 30 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1088353, + "thread": 27 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1256487, + "thread": 11 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1473012, + "thread": 13 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1537076, + "thread": 10 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1686587, + "thread": 30 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 1835383, + "thread": 31 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2004992, + "thread": 12 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2244066, + "thread": 18 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2316353, + "thread": 9 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2587236, + "thread": 30 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2757204, + "thread": 29 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2843582, + "thread": 9 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 2974597, + "thread": 31 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 3176489, + "thread": 5 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 3294764, + "thread": 2 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 3492585, + "thread": 19 + } + }, + { + "amount": "241.779063080", + "slot": { + "period": 3773234, + "thread": 27 + } + }, + { + "amount": "241.779063074", + "slot": { + "period": 3944707, + "thread": 8 + } + } + ], + "AU1bawoGMHw7bCdaiCC5bTg4xiLuT1y4LU82kKNpHyVMCjpq1Eoo": [ + { + "amount": "198.497383407", + "slot": { + "period": 153087, + "thread": 24 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 207906, + "thread": 29 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 395504, + "thread": 28 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 596250, + "thread": 24 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 681120, + "thread": 4 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 940651, + "thread": 21 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1025004, + "thread": 17 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1176612, + "thread": 26 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1373480, + "thread": 14 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1621380, + "thread": 20 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1733665, + "thread": 18 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 1925733, + "thread": 5 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2036637, + "thread": 19 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2223414, + "thread": 4 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2403004, + "thread": 10 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2477157, + "thread": 24 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2761095, + "thread": 5 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 2805087, + "thread": 12 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 3008325, + "thread": 2 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 3238263, + "thread": 0 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 3406920, + "thread": 5 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 3498379, + "thread": 17 + } + }, + { + "amount": "198.497383407", + "slot": { + "period": 3622650, + "thread": 0 + } + }, + { + "amount": "198.497383405", + "slot": { + "period": 3931639, + "thread": 12 + } + } + ], + "AU1bbLouR9WbsU34EPJWuS3KFp72H11Ni5oAbYBPCV1xHcsHU5Ux": [ + { + "amount": "185.114978105", + "slot": { + "period": 154651, + "thread": 30 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 273857, + "thread": 29 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 403545, + "thread": 3 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 569914, + "thread": 4 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 736648, + "thread": 13 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 842113, + "thread": 14 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1070872, + "thread": 6 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1244444, + "thread": 29 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1470452, + "thread": 15 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1632635, + "thread": 29 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1774039, + "thread": 14 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 1850293, + "thread": 18 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2045731, + "thread": 14 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2281044, + "thread": 0 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2367386, + "thread": 9 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2622683, + "thread": 14 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2758895, + "thread": 15 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 2944531, + "thread": 0 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 3016049, + "thread": 3 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 3211900, + "thread": 30 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 3394778, + "thread": 22 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 3468033, + "thread": 18 + } + }, + { + "amount": "185.114978105", + "slot": { + "period": 3713434, + "thread": 14 + } + }, + { + "amount": "185.114978113", + "slot": { + "period": 3786276, + "thread": 1 + } + } + ], + "AU1bdHJ1E9LDuNJiQf6rjDXn2MoKMy8kL484c62eqpQtjq3mF6GA": [ + { + "amount": "114.083581953", + "slot": { + "period": 142318, + "thread": 10 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 253694, + "thread": 2 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 356526, + "thread": 18 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 598560, + "thread": 14 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 730881, + "thread": 20 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 825437, + "thread": 6 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1025726, + "thread": 15 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1164302, + "thread": 2 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1352006, + "thread": 18 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1493985, + "thread": 29 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1787396, + "thread": 1 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1958408, + "thread": 6 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 1982455, + "thread": 15 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2193149, + "thread": 4 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2351471, + "thread": 10 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2485114, + "thread": 23 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2685253, + "thread": 9 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2936791, + "thread": 20 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 2962597, + "thread": 2 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 3189403, + "thread": 25 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 3422607, + "thread": 20 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 3497456, + "thread": 27 + } + }, + { + "amount": "114.083581953", + "slot": { + "period": 3749652, + "thread": 22 + } + }, + { + "amount": "114.083581951", + "slot": { + "period": 3894600, + "thread": 15 + } + } + ], + "AU1bfESyPYBPPnEYreXRb2ToABZofYt3n4ABb8HAxWCjUsw9fLpj": [ + { + "amount": "515.879758050", + "slot": { + "period": 66345, + "thread": 8 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 173361, + "thread": 6 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 449405, + "thread": 30 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 527977, + "thread": 4 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 735323, + "thread": 0 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 875637, + "thread": 2 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1010992, + "thread": 21 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1266626, + "thread": 18 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1376194, + "thread": 5 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1574893, + "thread": 4 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1758009, + "thread": 20 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1916019, + "thread": 25 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 1987029, + "thread": 14 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 2220160, + "thread": 1 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 2389989, + "thread": 5 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 2508694, + "thread": 31 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 2710155, + "thread": 0 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 2934254, + "thread": 18 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 3049946, + "thread": 4 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 3276392, + "thread": 13 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 3337950, + "thread": 0 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 3463803, + "thread": 27 + } + }, + { + "amount": "515.879758050", + "slot": { + "period": 3670353, + "thread": 23 + } + }, + { + "amount": "515.879758059", + "slot": { + "period": 3798937, + "thread": 23 + } + } + ], + "AU1bhE71bm3YNsDE7ZDmdkLeMrxZbqzkDVCqurJoydr83dTqgNfC": [ + { + "amount": "1900.817648481", + "slot": { + "period": 109604, + "thread": 17 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 320405, + "thread": 22 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 409618, + "thread": 2 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 515376, + "thread": 12 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 785390, + "thread": 7 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 853219, + "thread": 20 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1121937, + "thread": 19 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1194520, + "thread": 31 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1412302, + "thread": 15 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1645238, + "thread": 29 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1652496, + "thread": 16 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 1857276, + "thread": 29 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2119007, + "thread": 2 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2214570, + "thread": 20 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2324227, + "thread": 9 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2564483, + "thread": 6 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2628434, + "thread": 3 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 2934209, + "thread": 7 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 3052595, + "thread": 30 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 3123184, + "thread": 17 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 3387853, + "thread": 25 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 3500406, + "thread": 6 + } + }, + { + "amount": "1900.817648481", + "slot": { + "period": 3729403, + "thread": 13 + } + }, + { + "amount": "1900.817648491", + "slot": { + "period": 3814161, + "thread": 29 + } + } + ], + "AU1bhRXokMW9qo1y9PXEhBwWWsHbPGj9N6yxHmeqLvPFfsDkgnTD": [ + { + "amount": "172.443676802", + "slot": { + "period": 79885, + "thread": 6 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 216609, + "thread": 7 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 346638, + "thread": 0 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 627268, + "thread": 0 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 748718, + "thread": 20 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 854124, + "thread": 18 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 993147, + "thread": 22 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 1225096, + "thread": 1 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 1319784, + "thread": 29 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 1520194, + "thread": 23 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 1741457, + "thread": 19 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 1943636, + "thread": 21 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2120764, + "thread": 20 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2216577, + "thread": 21 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2448535, + "thread": 31 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2573908, + "thread": 24 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2686189, + "thread": 14 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 2854801, + "thread": 23 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 3093598, + "thread": 24 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 3247000, + "thread": 3 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 3443654, + "thread": 7 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 3512847, + "thread": 0 + } + }, + { + "amount": "172.443676802", + "slot": { + "period": 3637497, + "thread": 6 + } + }, + { + "amount": "172.443676814", + "slot": { + "period": 3932883, + "thread": 7 + } + } + ], + "AU1bhn1pwBDXFpBLcgKbZqK7278hXjfFfeBkUR5QqgiXRkTivQSz": [ + { + "amount": "222.642264795", + "slot": { + "period": 41484, + "thread": 28 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 304147, + "thread": 14 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 418369, + "thread": 28 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 555704, + "thread": 13 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 797805, + "thread": 29 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 860459, + "thread": 11 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1002644, + "thread": 0 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1199132, + "thread": 21 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1383081, + "thread": 26 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1563938, + "thread": 14 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1722153, + "thread": 28 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 1825225, + "thread": 27 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2101735, + "thread": 20 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2202994, + "thread": 8 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2394778, + "thread": 8 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2582854, + "thread": 7 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2746210, + "thread": 7 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2951375, + "thread": 23 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 2990700, + "thread": 21 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 3204547, + "thread": 17 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 3431113, + "thread": 24 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 3506020, + "thread": 24 + } + }, + { + "amount": "222.642264795", + "slot": { + "period": 3749800, + "thread": 11 + } + }, + { + "amount": "222.642264789", + "slot": { + "period": 3872260, + "thread": 31 + } + } + ], + "AU1bmjXNrMkHE7pjHzNS87RcsG512AvSF6AobdrbaB14T5wEwMSf": [ + { + "amount": "210.618640809", + "slot": { + "period": 13178, + "thread": 21 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 181280, + "thread": 11 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 441189, + "thread": 20 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 650083, + "thread": 10 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 750078, + "thread": 18 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 951858, + "thread": 30 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1125633, + "thread": 22 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1293738, + "thread": 20 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1408979, + "thread": 15 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1593736, + "thread": 25 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1706235, + "thread": 20 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 1954132, + "thread": 28 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2040042, + "thread": 28 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2163621, + "thread": 29 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2446097, + "thread": 14 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2575990, + "thread": 24 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2628571, + "thread": 24 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 2875945, + "thread": 13 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 3092631, + "thread": 2 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 3157530, + "thread": 5 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 3367642, + "thread": 4 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 3524213, + "thread": 5 + } + }, + { + "amount": "210.618640809", + "slot": { + "period": 3705588, + "thread": 29 + } + }, + { + "amount": "210.618640810", + "slot": { + "period": 3922616, + "thread": 5 + } + } + ], + "AU1bmqrKj1zRw61C1xNqYaisxdkYdg6eXUx5DmotT1jUHfE9fVLG": [ + { + "amount": "112.421896319", + "slot": { + "period": 137153, + "thread": 20 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 182975, + "thread": 4 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 457042, + "thread": 6 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 616138, + "thread": 14 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 654705, + "thread": 0 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 833021, + "thread": 4 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1018236, + "thread": 27 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1290643, + "thread": 29 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1463289, + "thread": 2 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1486766, + "thread": 16 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1669860, + "thread": 16 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1832866, + "thread": 12 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 1981364, + "thread": 12 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2195902, + "thread": 6 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2317712, + "thread": 19 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2540493, + "thread": 8 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2763782, + "thread": 0 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2792419, + "thread": 29 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 2983087, + "thread": 4 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 3281971, + "thread": 18 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 3364063, + "thread": 11 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 3551594, + "thread": 1 + } + }, + { + "amount": "112.421896319", + "slot": { + "period": 3703645, + "thread": 0 + } + }, + { + "amount": "112.421896313", + "slot": { + "period": 3816182, + "thread": 8 + } + } + ], + "AU1bnkoT3EKvg4N9bnHoQiDaAJq87f1q427xZ3ai8DXhKr3YQsjb": [ + { + "amount": "130.679159770", + "slot": { + "period": 138083, + "thread": 30 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 272713, + "thread": 20 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 448277, + "thread": 24 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 648424, + "thread": 4 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 764786, + "thread": 27 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 860483, + "thread": 24 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1027519, + "thread": 7 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1255828, + "thread": 23 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1453286, + "thread": 9 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1602999, + "thread": 20 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1780029, + "thread": 18 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 1832393, + "thread": 28 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2024566, + "thread": 19 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2187566, + "thread": 18 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2399322, + "thread": 4 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2586072, + "thread": 4 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2752407, + "thread": 9 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 2816779, + "thread": 14 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 3008589, + "thread": 13 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 3169707, + "thread": 11 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 3325514, + "thread": 4 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 3538882, + "thread": 24 + } + }, + { + "amount": "130.679159770", + "slot": { + "period": 3664196, + "thread": 22 + } + }, + { + "amount": "130.679159775", + "slot": { + "period": 3794970, + "thread": 20 + } + } + ], + "AU1boasYiE4jvV5qpzudGX8qEwvFAWpCqNn2udxQz9ZXPoUJYZ2U": [ + { + "amount": "128.590097893", + "slot": { + "period": 155497, + "thread": 14 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 288110, + "thread": 20 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 398016, + "thread": 10 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 620213, + "thread": 1 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 694197, + "thread": 4 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 926906, + "thread": 8 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1061682, + "thread": 22 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1312756, + "thread": 26 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1423913, + "thread": 25 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1486343, + "thread": 8 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1724493, + "thread": 29 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 1937722, + "thread": 6 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2035044, + "thread": 22 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2178670, + "thread": 5 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2447007, + "thread": 0 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2558821, + "thread": 8 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2770706, + "thread": 10 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 2854384, + "thread": 29 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 3095885, + "thread": 23 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 3264798, + "thread": 11 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 3359115, + "thread": 22 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 3470383, + "thread": 0 + } + }, + { + "amount": "128.590097893", + "slot": { + "period": 3650504, + "thread": 26 + } + }, + { + "amount": "128.590097902", + "slot": { + "period": 3793309, + "thread": 4 + } + } + ], + "AU1boihaBMMvL9Pg9AzmkXqBRYHCmg4YMggNVcRkovLCiNTAJGQp": [ + { + "amount": "95.380342691", + "slot": { + "period": 48378, + "thread": 20 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 216127, + "thread": 15 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 472135, + "thread": 6 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 557518, + "thread": 30 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 736183, + "thread": 7 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 849546, + "thread": 28 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 999253, + "thread": 7 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 1167153, + "thread": 12 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 1437420, + "thread": 14 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 1615216, + "thread": 9 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 1785741, + "thread": 2 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 1940861, + "thread": 26 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2109953, + "thread": 28 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2223566, + "thread": 29 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2428441, + "thread": 18 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2502138, + "thread": 7 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2724635, + "thread": 28 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 2949105, + "thread": 15 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 3060424, + "thread": 22 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 3230197, + "thread": 17 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 3305790, + "thread": 13 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 3485254, + "thread": 8 + } + }, + { + "amount": "95.380342691", + "slot": { + "period": 3664109, + "thread": 13 + } + }, + { + "amount": "95.380342687", + "slot": { + "period": 3801160, + "thread": 19 + } + } + ], + "AU1bp9w8w9xnDVniYEunJtc9pGagUgCaw9P2pGKbMajTJESXZsBv": [ + { + "amount": "255.033595949", + "slot": { + "period": 108462, + "thread": 28 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 318518, + "thread": 12 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 415963, + "thread": 27 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 648171, + "thread": 16 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 784227, + "thread": 4 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 823528, + "thread": 21 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1119220, + "thread": 28 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1313773, + "thread": 9 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1436246, + "thread": 2 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1645669, + "thread": 30 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1679986, + "thread": 31 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 1821616, + "thread": 13 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2074842, + "thread": 25 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2234497, + "thread": 16 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2390274, + "thread": 27 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2602693, + "thread": 21 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2789095, + "thread": 9 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 2817402, + "thread": 18 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 3017372, + "thread": 20 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 3148873, + "thread": 24 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 3368282, + "thread": 15 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 3471697, + "thread": 30 + } + }, + { + "amount": "255.033595949", + "slot": { + "period": 3742151, + "thread": 20 + } + }, + { + "amount": "255.033595953", + "slot": { + "period": 3819197, + "thread": 26 + } + } + ], + "AU1bpB4YV4kmf6XfvCC3zE1s6CWAh7FXkQm64ryXuFo6m1bm7Pzn": [ + { + "amount": "249.090126669", + "slot": { + "period": 162798, + "thread": 8 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 233936, + "thread": 4 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 376305, + "thread": 19 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 500927, + "thread": 11 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 789908, + "thread": 11 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 827040, + "thread": 7 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1087584, + "thread": 22 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1153140, + "thread": 3 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1448735, + "thread": 9 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1496956, + "thread": 18 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1697580, + "thread": 30 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 1895339, + "thread": 5 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2042398, + "thread": 12 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2203777, + "thread": 23 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2350998, + "thread": 15 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2564895, + "thread": 30 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2702165, + "thread": 27 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 2940544, + "thread": 24 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 3117706, + "thread": 22 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 3283087, + "thread": 25 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 3312492, + "thread": 29 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 3472015, + "thread": 26 + } + }, + { + "amount": "249.090126669", + "slot": { + "period": 3722650, + "thread": 4 + } + }, + { + "amount": "249.090126679", + "slot": { + "period": 3823930, + "thread": 3 + } + } + ], + "AU1bqKErXurMDwUdqBWYV6dMmcHfAFPxrywYdurjD6jhHAXwoVcG": [ + { + "amount": "100.950524780", + "slot": { + "period": 19996, + "thread": 25 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 218371, + "thread": 17 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 402856, + "thread": 26 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 600867, + "thread": 25 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 736411, + "thread": 25 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 895631, + "thread": 8 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1011370, + "thread": 4 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1235620, + "thread": 8 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1366661, + "thread": 8 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1526006, + "thread": 9 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1763746, + "thread": 11 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 1937502, + "thread": 12 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2080754, + "thread": 18 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2226820, + "thread": 4 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2323657, + "thread": 2 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2524402, + "thread": 0 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2644941, + "thread": 27 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2878811, + "thread": 20 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 2987100, + "thread": 11 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 3138412, + "thread": 1 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 3298767, + "thread": 5 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 3451028, + "thread": 29 + } + }, + { + "amount": "100.950524780", + "slot": { + "period": 3665920, + "thread": 17 + } + }, + { + "amount": "100.950524791", + "slot": { + "period": 3901838, + "thread": 25 + } + } + ], + "AU1bqNdxMdeucjdUc49uBhgmgta3xSz1LWEsFqaKJQTzc4u7c3FJ": [ + { + "amount": "137.329858002", + "slot": { + "period": 89703, + "thread": 11 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 243884, + "thread": 5 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 466127, + "thread": 1 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 600499, + "thread": 4 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 746869, + "thread": 7 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 908172, + "thread": 30 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1146872, + "thread": 6 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1187452, + "thread": 23 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1463277, + "thread": 4 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1514182, + "thread": 18 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1673951, + "thread": 28 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1869311, + "thread": 7 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 1998113, + "thread": 1 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2223440, + "thread": 20 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2455539, + "thread": 8 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2530530, + "thread": 10 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2757225, + "thread": 5 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2945790, + "thread": 13 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 2957410, + "thread": 22 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 3152892, + "thread": 8 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 3304520, + "thread": 21 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 3536210, + "thread": 25 + } + }, + { + "amount": "137.329858002", + "slot": { + "period": 3664098, + "thread": 3 + } + }, + { + "amount": "137.329858014", + "slot": { + "period": 3891178, + "thread": 11 + } + } + ], + "AU1bqQkT4AFFKNvQ8VGuEAk3qMSqKSnhVF1CSNZE1EKPXN3CD1FT": [ + { + "amount": "260.588110237", + "slot": { + "period": 19125, + "thread": 1 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 189197, + "thread": 27 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 435602, + "thread": 26 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 494330, + "thread": 23 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 769126, + "thread": 25 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 845399, + "thread": 12 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1041279, + "thread": 19 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1316046, + "thread": 7 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1410630, + "thread": 31 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1606974, + "thread": 14 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1673094, + "thread": 15 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 1971287, + "thread": 12 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2128262, + "thread": 28 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2223157, + "thread": 4 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2338559, + "thread": 2 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2490640, + "thread": 7 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2724621, + "thread": 9 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 2801509, + "thread": 2 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 3108050, + "thread": 3 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 3174412, + "thread": 10 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 3400816, + "thread": 10 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 3475126, + "thread": 7 + } + }, + { + "amount": "260.588110237", + "slot": { + "period": 3697507, + "thread": 8 + } + }, + { + "amount": "260.588110229", + "slot": { + "period": 3891184, + "thread": 19 + } + } + ], + "AU1brHEVEwgAFBdagc4rtwf775v5hyaXY7cG1FdoZYB9ipRqcWVM": [ + { + "amount": "99.597039338", + "slot": { + "period": 151799, + "thread": 28 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 229516, + "thread": 4 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 466810, + "thread": 5 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 562060, + "thread": 1 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 733720, + "thread": 20 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 839303, + "thread": 17 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1089450, + "thread": 8 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1205726, + "thread": 29 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1365293, + "thread": 2 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1521415, + "thread": 3 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1691216, + "thread": 14 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 1834419, + "thread": 29 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2120032, + "thread": 14 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2197419, + "thread": 15 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2401374, + "thread": 10 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2544372, + "thread": 19 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2765950, + "thread": 26 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2828463, + "thread": 6 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 2968713, + "thread": 19 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 3206572, + "thread": 9 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 3378646, + "thread": 15 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 3609901, + "thread": 17 + } + }, + { + "amount": "99.597039338", + "slot": { + "period": 3745282, + "thread": 5 + } + }, + { + "amount": "99.597039343", + "slot": { + "period": 3891021, + "thread": 25 + } + } + ], + "AU1brx9RFMV8tRwsKATF7uWDWuygmjSbQwsk6drrvs5FZed13GvZ": [ + { + "amount": "116.045546962", + "slot": { + "period": 56853, + "thread": 9 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 178219, + "thread": 14 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 350810, + "thread": 17 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 615630, + "thread": 11 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 781372, + "thread": 2 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 913437, + "thread": 22 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1107369, + "thread": 21 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1316370, + "thread": 31 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1386624, + "thread": 7 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1528976, + "thread": 4 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1665376, + "thread": 14 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 1955419, + "thread": 8 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2062741, + "thread": 3 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2158690, + "thread": 8 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2416458, + "thread": 7 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2590889, + "thread": 8 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2707562, + "thread": 12 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 2943041, + "thread": 0 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 3111665, + "thread": 4 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 3169026, + "thread": 2 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 3444183, + "thread": 23 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 3561061, + "thread": 4 + } + }, + { + "amount": "116.045546962", + "slot": { + "period": 3699576, + "thread": 29 + } + }, + { + "amount": "116.045546950", + "slot": { + "period": 3819953, + "thread": 9 + } + } + ], + "AU1bs5vExnPpYJtsk7t4M6ecEdhgKNU94NtJzRJshXf4gKjPmzs8": [ + { + "amount": "108.739850642", + "slot": { + "period": 68213, + "thread": 13 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 194106, + "thread": 25 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 440826, + "thread": 4 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 627402, + "thread": 0 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 818919, + "thread": 1 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 922065, + "thread": 15 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1071279, + "thread": 17 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1155431, + "thread": 11 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1431231, + "thread": 8 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1588704, + "thread": 12 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1667119, + "thread": 24 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1824416, + "thread": 19 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 1980787, + "thread": 19 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 2285207, + "thread": 17 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 2346494, + "thread": 18 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 2517247, + "thread": 6 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 2772648, + "thread": 10 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 2880187, + "thread": 2 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 3058551, + "thread": 11 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 3155077, + "thread": 15 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 3370915, + "thread": 9 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 3451260, + "thread": 13 + } + }, + { + "amount": "108.739850642", + "slot": { + "period": 3766021, + "thread": 10 + } + }, + { + "amount": "108.739850648", + "slot": { + "period": 3904646, + "thread": 16 + } + } + ], + "AU1bsjJ9u5BVsAu2D7ya34vFaznre4Rj1CAiQ9J6DFriSCXenFHH": [ + { + "amount": "136.423277707", + "slot": { + "period": 93619, + "thread": 18 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 207413, + "thread": 15 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 333438, + "thread": 7 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 643709, + "thread": 2 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 798737, + "thread": 28 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 906924, + "thread": 13 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1018969, + "thread": 23 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1315058, + "thread": 7 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1362511, + "thread": 31 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1491857, + "thread": 8 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1693853, + "thread": 30 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 1971804, + "thread": 12 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2134023, + "thread": 13 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2219058, + "thread": 8 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2404221, + "thread": 10 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2525195, + "thread": 13 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2759578, + "thread": 23 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 2947335, + "thread": 30 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 3008227, + "thread": 12 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 3209926, + "thread": 24 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 3317203, + "thread": 24 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 3556269, + "thread": 14 + } + }, + { + "amount": "136.423277707", + "slot": { + "period": 3751475, + "thread": 1 + } + }, + { + "amount": "136.423277708", + "slot": { + "period": 3926894, + "thread": 0 + } + } + ], + "AU1btEDfvVUTKcAdXAVjG48im7v51FUeg2P1jhwXTci3hvauchhg": [ + { + "amount": "536.016046061", + "slot": { + "period": 77896, + "thread": 0 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 280056, + "thread": 15 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 390778, + "thread": 23 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 564952, + "thread": 17 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 688259, + "thread": 5 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 891810, + "thread": 7 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1126226, + "thread": 15 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1178767, + "thread": 25 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1379677, + "thread": 14 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1643733, + "thread": 26 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1731134, + "thread": 8 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 1829825, + "thread": 12 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2002207, + "thread": 22 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2202605, + "thread": 13 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2428527, + "thread": 23 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2517810, + "thread": 13 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2727551, + "thread": 4 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 2861759, + "thread": 21 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 3108965, + "thread": 29 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 3165878, + "thread": 29 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 3300833, + "thread": 9 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 3526238, + "thread": 8 + } + }, + { + "amount": "536.016046061", + "slot": { + "period": 3652015, + "thread": 30 + } + }, + { + "amount": "536.016046055", + "slot": { + "period": 3929545, + "thread": 20 + } + } + ], + "AU1bvaAKDQsL1RavreKtv1dnN5zJojUnowpSgeCaUdzrKRmcVBxz": [ + { + "amount": "101.090929800", + "slot": { + "period": 135359, + "thread": 1 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 188665, + "thread": 28 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 354555, + "thread": 0 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 645848, + "thread": 7 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 757484, + "thread": 2 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 920410, + "thread": 1 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1063678, + "thread": 17 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1268427, + "thread": 18 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1343912, + "thread": 18 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1631647, + "thread": 30 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1679917, + "thread": 18 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 1891045, + "thread": 29 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2029842, + "thread": 12 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2256392, + "thread": 17 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2390864, + "thread": 2 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2481323, + "thread": 22 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2722224, + "thread": 11 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2865518, + "thread": 15 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 2999015, + "thread": 17 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 3203039, + "thread": 16 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 3313957, + "thread": 13 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 3530824, + "thread": 21 + } + }, + { + "amount": "101.090929800", + "slot": { + "period": 3679937, + "thread": 30 + } + }, + { + "amount": "101.090929797", + "slot": { + "period": 3785480, + "thread": 20 + } + } + ], + "AU1bvkRyqp29K4xwm1dSPbJZc6MTXirN1TgufondKxKeLLsK6kyu": [ + { + "amount": "136.879847078", + "slot": { + "period": 148805, + "thread": 22 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 239479, + "thread": 9 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 468958, + "thread": 22 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 554467, + "thread": 5 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 792956, + "thread": 7 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 958684, + "thread": 1 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1095215, + "thread": 4 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1159707, + "thread": 5 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1477075, + "thread": 17 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1579980, + "thread": 21 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1766080, + "thread": 24 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 1903904, + "thread": 20 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2059151, + "thread": 24 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2269189, + "thread": 8 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2300906, + "thread": 19 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2596882, + "thread": 18 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2713110, + "thread": 28 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 2811175, + "thread": 31 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 3031106, + "thread": 23 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 3257858, + "thread": 22 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 3318411, + "thread": 1 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 3547422, + "thread": 12 + } + }, + { + "amount": "136.879847078", + "slot": { + "period": 3729427, + "thread": 29 + } + }, + { + "amount": "136.879847086", + "slot": { + "period": 3805783, + "thread": 11 + } + } + ], + "AU1bwx3xrvKTJZGQkvBc4eznXpi7QeGjHA1qu1BLfxQ4cphfvDqK": [ + { + "amount": "105.117914427", + "slot": { + "period": 23432, + "thread": 19 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 241989, + "thread": 25 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 398400, + "thread": 0 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 600415, + "thread": 6 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 813272, + "thread": 24 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 848309, + "thread": 13 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1104630, + "thread": 13 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1220569, + "thread": 7 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1460465, + "thread": 15 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1545542, + "thread": 11 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1802583, + "thread": 29 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 1847217, + "thread": 4 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2005242, + "thread": 21 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2277148, + "thread": 28 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2354909, + "thread": 2 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2475264, + "thread": 26 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2693396, + "thread": 29 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2933984, + "thread": 25 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 2986548, + "thread": 15 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 3222825, + "thread": 1 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 3319347, + "thread": 25 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 3489045, + "thread": 5 + } + }, + { + "amount": "105.117914427", + "slot": { + "period": 3673371, + "thread": 0 + } + }, + { + "amount": "105.117914426", + "slot": { + "period": 3826985, + "thread": 17 + } + } + ], + "AU1bxVA9VaThhzxLp4NuSuog9ntejro6DS2RGEMn7gvCbCEs4RFA": [ + { + "amount": "55.948865142", + "slot": { + "period": 122621, + "thread": 23 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 229685, + "thread": 9 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 477907, + "thread": 12 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 497096, + "thread": 14 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 679551, + "thread": 2 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 977836, + "thread": 4 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1145002, + "thread": 1 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1223543, + "thread": 18 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1474058, + "thread": 15 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1559814, + "thread": 9 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1764823, + "thread": 27 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 1943519, + "thread": 26 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2089645, + "thread": 28 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2286685, + "thread": 16 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2442467, + "thread": 3 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2473459, + "thread": 27 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2672586, + "thread": 16 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 2882820, + "thread": 17 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 3098198, + "thread": 11 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 3213981, + "thread": 12 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 3388813, + "thread": 11 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 3595991, + "thread": 6 + } + }, + { + "amount": "55.948865142", + "slot": { + "period": 3708314, + "thread": 3 + } + }, + { + "amount": "55.948865137", + "slot": { + "period": 3928996, + "thread": 26 + } + } + ], + "AU1bxdSybejJG7e9uEvWA1y8BucJE1a3mFZD63MBtP8cqvrE7LeV": [ + { + "amount": "125.937597624", + "slot": { + "period": 92225, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 321277, + "thread": 29 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 421332, + "thread": 8 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 601346, + "thread": 25 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 715285, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 876201, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1090504, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1162047, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1395158, + "thread": 26 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1519447, + "thread": 5 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1774307, + "thread": 6 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1840806, + "thread": 27 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 1999611, + "thread": 18 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 2265992, + "thread": 23 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 2324220, + "thread": 24 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 2600166, + "thread": 31 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 2775205, + "thread": 27 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 2865990, + "thread": 19 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 3093407, + "thread": 5 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 3252840, + "thread": 18 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 3415893, + "thread": 15 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 3547821, + "thread": 23 + } + }, + { + "amount": "125.937597624", + "slot": { + "period": 3756345, + "thread": 31 + } + }, + { + "amount": "125.937597618", + "slot": { + "period": 3859965, + "thread": 28 + } + } + ], + "AU1bxvaV8HwfwbSbbzqfCA3mm4rKDdT5Tore3GvTE8LQK4yeVJs9": [ + { + "amount": "76.767560757", + "slot": { + "period": 102685, + "thread": 20 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 207362, + "thread": 23 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 470086, + "thread": 4 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 502985, + "thread": 9 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 658848, + "thread": 19 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 933802, + "thread": 19 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1040227, + "thread": 10 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1216793, + "thread": 30 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1446906, + "thread": 29 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1643193, + "thread": 6 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1708593, + "thread": 4 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 1819736, + "thread": 12 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2012832, + "thread": 22 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2169950, + "thread": 6 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2405765, + "thread": 18 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2580783, + "thread": 7 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2661840, + "thread": 23 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 2806238, + "thread": 10 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 3006114, + "thread": 1 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 3146490, + "thread": 17 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 3393086, + "thread": 14 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 3614787, + "thread": 28 + } + }, + { + "amount": "76.767560757", + "slot": { + "period": 3669208, + "thread": 2 + } + }, + { + "amount": "76.767560768", + "slot": { + "period": 3864334, + "thread": 1 + } + } + ], + "AU1byb2Pijnz6tGkvcrA9swevjr6tnfkAf2JG96oMy87jUM2WYfp": [ + { + "amount": "255.053790850", + "slot": { + "period": 41056, + "thread": 18 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 246003, + "thread": 8 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 341514, + "thread": 18 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 550830, + "thread": 8 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 794362, + "thread": 16 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 893467, + "thread": 26 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1115074, + "thread": 14 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1232146, + "thread": 22 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1322928, + "thread": 0 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1592235, + "thread": 25 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1666164, + "thread": 31 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 1915408, + "thread": 11 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2095528, + "thread": 27 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2294335, + "thread": 27 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2326199, + "thread": 29 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2535782, + "thread": 26 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2659711, + "thread": 17 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 2807623, + "thread": 28 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 3035133, + "thread": 6 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 3216576, + "thread": 7 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 3310789, + "thread": 24 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 3534585, + "thread": 22 + } + }, + { + "amount": "255.053790850", + "slot": { + "period": 3644581, + "thread": 24 + } + }, + { + "amount": "255.053790859", + "slot": { + "period": 3881569, + "thread": 0 + } + } + ], + "AU1bzeJPvWtJDsizy1gU3yFWRD9aLrSA5LSYkJNkH5bQ2Fr2XZvs": [ + { + "amount": "126.723290169", + "slot": { + "period": 118383, + "thread": 18 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 315690, + "thread": 25 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 333764, + "thread": 25 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 644702, + "thread": 2 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 664531, + "thread": 5 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 875991, + "thread": 18 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1017139, + "thread": 19 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1307347, + "thread": 2 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1387410, + "thread": 13 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1630143, + "thread": 2 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1656324, + "thread": 18 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 1873007, + "thread": 26 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2108816, + "thread": 13 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2263957, + "thread": 2 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2388231, + "thread": 22 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2590510, + "thread": 6 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2783955, + "thread": 20 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2883012, + "thread": 1 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 2974065, + "thread": 29 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 3264175, + "thread": 7 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 3315067, + "thread": 16 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 3598547, + "thread": 20 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 3645116, + "thread": 14 + } + }, + { + "amount": "126.723290169", + "slot": { + "period": 3937069, + "thread": 29 + } + } + ], + "AU1c1xK27QYRPKdbWGwNEPtFeZtB5quuGWhE9V6RHR5xAKnNUUE7": [ + { + "amount": "564.028813579", + "slot": { + "period": 90913, + "thread": 10 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 283952, + "thread": 7 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 328940, + "thread": 22 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 651331, + "thread": 8 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 717416, + "thread": 26 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 928110, + "thread": 0 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1045838, + "thread": 9 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1265533, + "thread": 19 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1400026, + "thread": 29 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1582057, + "thread": 13 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1659757, + "thread": 17 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 1946345, + "thread": 16 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2103273, + "thread": 19 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2192265, + "thread": 16 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2434596, + "thread": 11 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2529948, + "thread": 9 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2674847, + "thread": 20 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2936143, + "thread": 10 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 2957194, + "thread": 9 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 3218308, + "thread": 29 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 3393296, + "thread": 5 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 3529254, + "thread": 18 + } + }, + { + "amount": "564.028813579", + "slot": { + "period": 3652051, + "thread": 11 + } + }, + { + "amount": "564.028813577", + "slot": { + "period": 3796229, + "thread": 5 + } + } + ], + "AU1c2tq2a187dkKqqrWthfdTZ7o5cGad1XZTAbkfw5ATTPi8Wpwt": [ + { + "amount": "53.827135572", + "slot": { + "period": 54082, + "thread": 9 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 286095, + "thread": 24 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 462779, + "thread": 21 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 642748, + "thread": 17 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 673955, + "thread": 7 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 950896, + "thread": 11 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1109225, + "thread": 21 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1260197, + "thread": 20 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1378942, + "thread": 31 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1525501, + "thread": 17 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1675986, + "thread": 6 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 1889746, + "thread": 27 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2122535, + "thread": 20 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2294869, + "thread": 29 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2451946, + "thread": 29 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2620117, + "thread": 14 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2765030, + "thread": 2 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2928897, + "thread": 10 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 2997100, + "thread": 19 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 3235985, + "thread": 1 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 3319300, + "thread": 14 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 3498251, + "thread": 9 + } + }, + { + "amount": "53.827135572", + "slot": { + "period": 3631162, + "thread": 19 + } + }, + { + "amount": "53.827135566", + "slot": { + "period": 3923112, + "thread": 30 + } + } + ], + "AU1c5aeULxoDkX41RisCME3xUaryVqrsN9wE9csYHPTCDK3PcgmC": [ + { + "amount": "118.784722111", + "slot": { + "period": 72186, + "thread": 12 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 180442, + "thread": 4 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 327261, + "thread": 13 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 624600, + "thread": 24 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 680893, + "thread": 27 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 882182, + "thread": 30 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1034069, + "thread": 16 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1155154, + "thread": 2 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1328402, + "thread": 22 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1611655, + "thread": 19 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1689182, + "thread": 13 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 1848512, + "thread": 27 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2032022, + "thread": 26 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2261509, + "thread": 12 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2378256, + "thread": 6 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2482786, + "thread": 25 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2758088, + "thread": 24 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2830136, + "thread": 26 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 2999865, + "thread": 30 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 3210887, + "thread": 0 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 3410830, + "thread": 20 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 3557876, + "thread": 2 + } + }, + { + "amount": "118.784722111", + "slot": { + "period": 3752510, + "thread": 22 + } + }, + { + "amount": "118.784722105", + "slot": { + "period": 3938700, + "thread": 2 + } + } + ], + "AU1c5bdcvWoEFHtiX4G4TaqG4LEP9LxbYPU329r5Lxc6kjP9UqXx": [ + { + "amount": "154.823092693", + "slot": { + "period": 158672, + "thread": 15 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 204125, + "thread": 0 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 431411, + "thread": 28 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 551178, + "thread": 11 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 809415, + "thread": 6 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 896118, + "thread": 30 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1074928, + "thread": 25 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1310338, + "thread": 24 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1348298, + "thread": 3 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1542107, + "thread": 6 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1675060, + "thread": 16 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 1898245, + "thread": 0 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2017032, + "thread": 1 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2265953, + "thread": 7 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2399181, + "thread": 14 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2478820, + "thread": 16 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2760364, + "thread": 22 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 2863642, + "thread": 10 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 3011929, + "thread": 19 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 3161265, + "thread": 14 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 3395131, + "thread": 14 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 3566162, + "thread": 0 + } + }, + { + "amount": "154.823092693", + "slot": { + "period": 3644722, + "thread": 14 + } + }, + { + "amount": "154.823092690", + "slot": { + "period": 3864346, + "thread": 11 + } + } + ], + "AU1c5pprJ2e9kJGU1X2f4gu8PwWRP1h2u8h9u2o18zF71FKjwPSo": [ + { + "amount": "162.964496603", + "slot": { + "period": 86931, + "thread": 6 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 309378, + "thread": 25 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 485510, + "thread": 16 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 590820, + "thread": 4 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 752685, + "thread": 23 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 895445, + "thread": 30 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1091655, + "thread": 18 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1228581, + "thread": 5 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1471545, + "thread": 9 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1627885, + "thread": 10 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1780959, + "thread": 0 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 1960296, + "thread": 9 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2059666, + "thread": 2 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2266721, + "thread": 3 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2351644, + "thread": 1 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2592445, + "thread": 2 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2698501, + "thread": 21 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 2879039, + "thread": 8 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 3091216, + "thread": 3 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 3241654, + "thread": 22 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 3291424, + "thread": 10 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 3576921, + "thread": 5 + } + }, + { + "amount": "162.964496603", + "slot": { + "period": 3621884, + "thread": 7 + } + }, + { + "amount": "162.964496605", + "slot": { + "period": 3824099, + "thread": 27 + } + } + ], + "AU1c685uu5uL8fjqTxDz1TgzFjLzTUStW8N4cicKuHEwQ8dA753m": [ + { + "amount": "221.796388397", + "slot": { + "period": 11593, + "thread": 31 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 179149, + "thread": 6 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 406199, + "thread": 20 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 494729, + "thread": 17 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 758584, + "thread": 21 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 910668, + "thread": 15 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1018005, + "thread": 10 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1260107, + "thread": 5 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1452387, + "thread": 27 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1559480, + "thread": 10 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1684516, + "thread": 31 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1835999, + "thread": 16 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 1996927, + "thread": 6 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2160494, + "thread": 13 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2450451, + "thread": 26 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2613537, + "thread": 10 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2635189, + "thread": 4 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2823170, + "thread": 12 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 2988978, + "thread": 3 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 3204784, + "thread": 23 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 3300260, + "thread": 29 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 3480768, + "thread": 17 + } + }, + { + "amount": "221.796388397", + "slot": { + "period": 3684203, + "thread": 8 + } + }, + { + "amount": "221.796388388", + "slot": { + "period": 3894129, + "thread": 27 + } + } + ], + "AU1c6bocPsrCg2AhB57dpBnEjaAyGGRg7CRtg5Dgm2uDnCqt7Bbf": [ + { + "amount": "85.290596604", + "slot": { + "period": 111646, + "thread": 28 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 236095, + "thread": 10 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 372315, + "thread": 12 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 513005, + "thread": 13 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 671004, + "thread": 19 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 872571, + "thread": 30 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1010794, + "thread": 24 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1183066, + "thread": 4 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1321503, + "thread": 28 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1487231, + "thread": 15 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1657141, + "thread": 22 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 1869974, + "thread": 14 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2134395, + "thread": 19 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2148239, + "thread": 24 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2444859, + "thread": 29 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2518020, + "thread": 22 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2640459, + "thread": 12 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 2826082, + "thread": 18 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3072191, + "thread": 29 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3129082, + "thread": 23 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3442222, + "thread": 22 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3610169, + "thread": 25 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3657966, + "thread": 3 + } + }, + { + "amount": "85.290596604", + "slot": { + "period": 3838183, + "thread": 25 + } + } + ], + "AU1c6wZCCea3gacrsbmjyDeNxGKTjBd7jx7JPU9vcAwTbJdhRRuQ": [ + { + "amount": "225.389490354", + "slot": { + "period": 92232, + "thread": 24 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 218873, + "thread": 19 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 443820, + "thread": 6 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 607060, + "thread": 10 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 742255, + "thread": 5 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 951409, + "thread": 18 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1060634, + "thread": 9 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1194642, + "thread": 27 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1390323, + "thread": 18 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1490062, + "thread": 12 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1744309, + "thread": 1 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 1891819, + "thread": 9 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2061370, + "thread": 5 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2294218, + "thread": 18 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2382097, + "thread": 26 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2590638, + "thread": 12 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2674398, + "thread": 11 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 2927491, + "thread": 3 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 3016220, + "thread": 2 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 3216590, + "thread": 5 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 3363438, + "thread": 29 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 3514600, + "thread": 16 + } + }, + { + "amount": "225.389490354", + "slot": { + "period": 3633863, + "thread": 29 + } + }, + { + "amount": "225.389490352", + "slot": { + "period": 3873955, + "thread": 11 + } + } + ], + "AU1c9akGrQ4KQ3bNVo4Hx1HYHMPXNC5PNynTSwzgy4HgWZwQgCyV": [ + { + "amount": "257.934747212", + "slot": { + "period": 69479, + "thread": 8 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 297216, + "thread": 14 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 346977, + "thread": 17 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 555092, + "thread": 24 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 662856, + "thread": 11 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 831745, + "thread": 18 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1035901, + "thread": 1 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1171069, + "thread": 27 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1343319, + "thread": 26 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1533265, + "thread": 4 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1776536, + "thread": 7 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 1847267, + "thread": 21 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2038642, + "thread": 17 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2204138, + "thread": 9 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2362777, + "thread": 13 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2614407, + "thread": 20 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2752071, + "thread": 6 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 2932473, + "thread": 7 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 3015253, + "thread": 9 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 3267814, + "thread": 7 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 3421307, + "thread": 7 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 3540753, + "thread": 13 + } + }, + { + "amount": "257.934747212", + "slot": { + "period": 3686407, + "thread": 6 + } + }, + { + "amount": "257.934747221", + "slot": { + "period": 3791364, + "thread": 5 + } + } + ], + "AU1c9bUB5eNNvFygjCZ2FRy2HXdK6iCNCdFKDcx7YjY4v2qC7zHq": [ + { + "amount": "290.921430541", + "slot": { + "period": 116466, + "thread": 1 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 264044, + "thread": 8 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 440158, + "thread": 24 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 513796, + "thread": 10 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 805114, + "thread": 18 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 928545, + "thread": 17 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1110480, + "thread": 13 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1182635, + "thread": 12 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1372319, + "thread": 25 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1543532, + "thread": 19 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1727594, + "thread": 4 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 1898885, + "thread": 16 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2045039, + "thread": 8 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2194862, + "thread": 17 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2311502, + "thread": 16 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2527350, + "thread": 1 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2706118, + "thread": 18 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 2881961, + "thread": 7 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 3098223, + "thread": 26 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 3265524, + "thread": 13 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 3319252, + "thread": 24 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 3482476, + "thread": 30 + } + }, + { + "amount": "290.921430541", + "slot": { + "period": 3655276, + "thread": 12 + } + }, + { + "amount": "290.921430549", + "slot": { + "period": 3901908, + "thread": 31 + } + } + ], + "AU1c9cAEHPighn4kewqiRvv9z2jpKTAVQdpuQ9RW96Q5ppHTwvg8": [ + { + "amount": "232.710490706", + "slot": { + "period": 99565, + "thread": 29 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 239626, + "thread": 5 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 436084, + "thread": 26 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 545340, + "thread": 23 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 731746, + "thread": 10 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 836554, + "thread": 11 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1003052, + "thread": 29 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1217091, + "thread": 28 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1365846, + "thread": 28 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1548820, + "thread": 7 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1690002, + "thread": 30 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 1820187, + "thread": 25 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2031957, + "thread": 29 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2278933, + "thread": 17 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2359682, + "thread": 7 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2546535, + "thread": 9 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2781990, + "thread": 13 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 2896560, + "thread": 0 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 3090407, + "thread": 13 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 3200348, + "thread": 29 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 3434593, + "thread": 10 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 3567101, + "thread": 27 + } + }, + { + "amount": "232.710490706", + "slot": { + "period": 3666998, + "thread": 5 + } + }, + { + "amount": "232.710490703", + "slot": { + "period": 3944896, + "thread": 3 + } + } + ], + "AU1cAzQdWYgUuZ1pQRbSc1biqcvNqQePh75VwKA8jHmmxyMW8CBg": [ + { + "amount": "160.861821990", + "slot": { + "period": 150460, + "thread": 25 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 227263, + "thread": 9 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 416198, + "thread": 19 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 533064, + "thread": 7 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 733407, + "thread": 9 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 925301, + "thread": 15 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1104048, + "thread": 13 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1205670, + "thread": 15 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1394241, + "thread": 29 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1642469, + "thread": 16 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1732194, + "thread": 25 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 1909747, + "thread": 19 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2093448, + "thread": 13 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2261076, + "thread": 21 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2350673, + "thread": 25 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2467559, + "thread": 31 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2734034, + "thread": 22 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 2813951, + "thread": 7 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 3024546, + "thread": 16 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 3238770, + "thread": 2 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 3339716, + "thread": 7 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 3492925, + "thread": 31 + } + }, + { + "amount": "160.861821990", + "slot": { + "period": 3696530, + "thread": 15 + } + }, + { + "amount": "160.861822001", + "slot": { + "period": 3868816, + "thread": 24 + } + } + ], + "AU1cB6ySKbKTo8HHuUzsV7DCZgmAJ5rQPbmjKrpYq2JiTRSAH5PC": [ + { + "amount": "105.384817704", + "slot": { + "period": 101721, + "thread": 31 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 285540, + "thread": 22 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 487919, + "thread": 15 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 566771, + "thread": 22 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 694220, + "thread": 29 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 967937, + "thread": 20 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1056400, + "thread": 23 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1210314, + "thread": 19 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1366839, + "thread": 27 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1590153, + "thread": 0 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1782874, + "thread": 12 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 1819477, + "thread": 24 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2059560, + "thread": 11 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2149628, + "thread": 31 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2376411, + "thread": 30 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2536933, + "thread": 18 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2672298, + "thread": 12 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2817519, + "thread": 1 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 2978761, + "thread": 0 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 3182522, + "thread": 24 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 3321169, + "thread": 16 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 3572112, + "thread": 3 + } + }, + { + "amount": "105.384817704", + "slot": { + "period": 3642005, + "thread": 14 + } + }, + { + "amount": "105.384817709", + "slot": { + "period": 3783298, + "thread": 4 + } + } + ], + "AU1cBe1Q9kwnWRZNg6FUKoyTtR4ci7a4FpuxhLoQGsGE1MXK2FhT": [ + { + "amount": "376.484422868", + "slot": { + "period": 81718, + "thread": 26 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 266713, + "thread": 25 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 415133, + "thread": 1 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 643203, + "thread": 23 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 760479, + "thread": 30 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 878117, + "thread": 26 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 993536, + "thread": 10 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1283302, + "thread": 10 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1473386, + "thread": 26 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1490979, + "thread": 0 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1724071, + "thread": 7 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1895985, + "thread": 28 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 1997365, + "thread": 0 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 2180738, + "thread": 5 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 2447270, + "thread": 28 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 2571518, + "thread": 0 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 2786516, + "thread": 9 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 2947340, + "thread": 31 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 3045242, + "thread": 14 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 3189348, + "thread": 18 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 3444862, + "thread": 27 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 3494124, + "thread": 21 + } + }, + { + "amount": "376.484422868", + "slot": { + "period": 3633431, + "thread": 20 + } + }, + { + "amount": "376.484422878", + "slot": { + "period": 3813398, + "thread": 17 + } + } + ], + "AU1cBfGroKy6UJg5BW1rggu2MZXj5dQbRFaNsX7VZbGxVzCAQrje": [ + { + "amount": "102.220965728", + "slot": { + "period": 80737, + "thread": 6 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 247830, + "thread": 27 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 334644, + "thread": 8 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 541821, + "thread": 0 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 710087, + "thread": 21 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 860146, + "thread": 5 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 990469, + "thread": 15 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 1248363, + "thread": 20 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 1340109, + "thread": 21 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 1495247, + "thread": 22 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 1708414, + "thread": 5 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 1962564, + "thread": 17 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2065074, + "thread": 8 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2254030, + "thread": 7 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2416034, + "thread": 8 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2527720, + "thread": 27 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2773764, + "thread": 0 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 2849008, + "thread": 9 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 3070341, + "thread": 20 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 3209714, + "thread": 18 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 3423691, + "thread": 29 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 3466757, + "thread": 5 + } + }, + { + "amount": "102.220965728", + "slot": { + "period": 3724845, + "thread": 30 + } + }, + { + "amount": "102.220965736", + "slot": { + "period": 3946105, + "thread": 9 + } + } + ], + "AU1cBgd8QCgPA9YcsSa4YJMjNyczKTEdakkEh5tJrdQJwU4kZZ3b": [ + { + "amount": "242.126520904", + "slot": { + "period": 118250, + "thread": 26 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 183484, + "thread": 15 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 385534, + "thread": 6 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 651785, + "thread": 27 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 670829, + "thread": 22 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 963440, + "thread": 7 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1116621, + "thread": 7 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1314716, + "thread": 15 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1331123, + "thread": 7 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1561224, + "thread": 28 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1739968, + "thread": 5 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 1836038, + "thread": 20 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2138131, + "thread": 13 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2279053, + "thread": 29 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2428309, + "thread": 7 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2615156, + "thread": 1 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2712350, + "thread": 18 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2893078, + "thread": 15 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 2995789, + "thread": 5 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 3242528, + "thread": 23 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 3316044, + "thread": 3 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 3609082, + "thread": 12 + } + }, + { + "amount": "242.126520904", + "slot": { + "period": 3680090, + "thread": 27 + } + }, + { + "amount": "242.126520916", + "slot": { + "period": 3919875, + "thread": 7 + } + } + ], + "AU1cBmiGsZ49dxDUxPsaAacx3ucTUUZ58HXQNx6Nv5vXfEtogNS9": [ + { + "amount": "219.995648071", + "slot": { + "period": 138777, + "thread": 18 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 309965, + "thread": 7 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 432736, + "thread": 4 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 560400, + "thread": 14 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 795003, + "thread": 26 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 838428, + "thread": 25 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1013085, + "thread": 12 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1177520, + "thread": 10 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1465710, + "thread": 1 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1547024, + "thread": 21 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1731851, + "thread": 10 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1919172, + "thread": 5 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 1978143, + "thread": 2 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 2188582, + "thread": 4 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 2339651, + "thread": 5 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 2568501, + "thread": 16 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 2777190, + "thread": 14 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 2861902, + "thread": 26 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 3111658, + "thread": 6 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 3242133, + "thread": 30 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 3431346, + "thread": 20 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 3569777, + "thread": 18 + } + }, + { + "amount": "219.995648071", + "slot": { + "period": 3757289, + "thread": 9 + } + }, + { + "amount": "219.995648072", + "slot": { + "period": 3945476, + "thread": 3 + } + } + ], + "AU1cCAGHSbyPNCideK7KK47LPddqxBcMY6P3xKmXsyE1vVjHUMHS": [ + { + "amount": "117.110326935", + "slot": { + "period": 160445, + "thread": 0 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 305619, + "thread": 27 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 335354, + "thread": 4 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 610715, + "thread": 24 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 768841, + "thread": 20 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 982063, + "thread": 12 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1132463, + "thread": 17 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1219680, + "thread": 1 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1457556, + "thread": 15 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1482304, + "thread": 11 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1715672, + "thread": 31 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 1922676, + "thread": 12 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2086976, + "thread": 23 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2281971, + "thread": 20 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2299711, + "thread": 31 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2592006, + "thread": 0 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2760437, + "thread": 26 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 2818352, + "thread": 13 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 3098068, + "thread": 27 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 3179490, + "thread": 18 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 3344751, + "thread": 17 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 3554271, + "thread": 28 + } + }, + { + "amount": "117.110326935", + "slot": { + "period": 3748377, + "thread": 11 + } + }, + { + "amount": "117.110326930", + "slot": { + "period": 3895130, + "thread": 28 + } + } + ], + "AU1cCQ5zuzU78zHicXLvHZsaSv5KGjNamG7sGfnNGEz8J372hbYZ": [ + { + "amount": "376.997194861", + "slot": { + "period": 121089, + "thread": 19 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 224360, + "thread": 15 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 427390, + "thread": 24 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 497778, + "thread": 5 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 754863, + "thread": 13 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 934039, + "thread": 14 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1073158, + "thread": 20 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1247535, + "thread": 4 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1318801, + "thread": 15 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1635484, + "thread": 7 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1687146, + "thread": 14 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 1813047, + "thread": 22 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2089144, + "thread": 9 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2157742, + "thread": 20 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2400294, + "thread": 7 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2609120, + "thread": 26 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2768888, + "thread": 27 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 2831502, + "thread": 11 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 3063093, + "thread": 20 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 3260014, + "thread": 17 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 3408847, + "thread": 5 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 3473734, + "thread": 15 + } + }, + { + "amount": "376.997194861", + "slot": { + "period": 3702836, + "thread": 28 + } + }, + { + "amount": "376.997194853", + "slot": { + "period": 3894282, + "thread": 21 + } + } + ], + "AU1cCjBoMT7DYagqZ3WRqBmHHugovJJi6T8r2eUyFczekCPT42zk": [ + { + "amount": "93.561136343", + "slot": { + "period": 167287, + "thread": 13 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 202740, + "thread": 24 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 339935, + "thread": 24 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 511476, + "thread": 0 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 768486, + "thread": 3 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 860171, + "thread": 4 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1026711, + "thread": 6 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1299931, + "thread": 11 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1467071, + "thread": 28 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1539372, + "thread": 28 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1800885, + "thread": 30 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 1894635, + "thread": 8 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2084963, + "thread": 21 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2193147, + "thread": 14 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2355055, + "thread": 2 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2560428, + "thread": 5 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2748811, + "thread": 23 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2832945, + "thread": 23 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 2974674, + "thread": 24 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 3261767, + "thread": 20 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 3376352, + "thread": 9 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 3598120, + "thread": 2 + } + }, + { + "amount": "93.561136343", + "slot": { + "period": 3630095, + "thread": 20 + } + }, + { + "amount": "93.561136349", + "slot": { + "period": 3881477, + "thread": 0 + } + } + ], + "AU1cDGG5NW34jfPwamBEuBsTCv5SBVVstnQiDSiyBvpQMN2SsXUC": [ + { + "amount": "54.632931122", + "slot": { + "period": 138248, + "thread": 30 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 245419, + "thread": 7 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 365618, + "thread": 25 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 534914, + "thread": 12 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 796574, + "thread": 24 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 887337, + "thread": 15 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1019636, + "thread": 24 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1264124, + "thread": 9 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1321626, + "thread": 11 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1576755, + "thread": 7 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1660957, + "thread": 8 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 1890868, + "thread": 9 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2110107, + "thread": 9 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2207525, + "thread": 23 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2342170, + "thread": 31 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2520521, + "thread": 29 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2750327, + "thread": 2 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2888866, + "thread": 30 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 2966861, + "thread": 8 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 3170156, + "thread": 26 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 3355924, + "thread": 2 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 3605159, + "thread": 16 + } + }, + { + "amount": "54.632931122", + "slot": { + "period": 3779129, + "thread": 15 + } + }, + { + "amount": "54.632931128", + "slot": { + "period": 3825868, + "thread": 20 + } + } + ], + "AU1cDGumHQ9u6yTc7K5sGcrG3WQ28pLHJstL2fdTL37e6UnKXZzg": [ + { + "amount": "146.801933936", + "slot": { + "period": 23601, + "thread": 10 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 296605, + "thread": 24 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 478158, + "thread": 4 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 599995, + "thread": 3 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 734111, + "thread": 28 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 830730, + "thread": 16 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1042947, + "thread": 13 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1200215, + "thread": 18 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1416445, + "thread": 15 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1553434, + "thread": 25 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1697034, + "thread": 26 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 1859747, + "thread": 5 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2029815, + "thread": 14 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2253966, + "thread": 4 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2419758, + "thread": 4 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2524025, + "thread": 5 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2733842, + "thread": 2 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 2894127, + "thread": 31 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 3043464, + "thread": 21 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 3275296, + "thread": 2 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 3449038, + "thread": 26 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 3566754, + "thread": 17 + } + }, + { + "amount": "146.801933936", + "slot": { + "period": 3637892, + "thread": 20 + } + }, + { + "amount": "146.801933946", + "slot": { + "period": 3781074, + "thread": 4 + } + } + ], + "AU1cEKjDpc9E9vdFPLVssD61aTn4v9fFWhE9skobp4Apkngg9kPn": [ + { + "amount": "277.207092625", + "slot": { + "period": 124174, + "thread": 9 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 176278, + "thread": 16 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 375251, + "thread": 6 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 494011, + "thread": 18 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 752731, + "thread": 27 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 878450, + "thread": 25 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1030377, + "thread": 19 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1315041, + "thread": 9 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1342317, + "thread": 30 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1495144, + "thread": 13 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1685751, + "thread": 19 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 1829530, + "thread": 19 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2128390, + "thread": 10 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2157796, + "thread": 19 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2401285, + "thread": 26 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2566851, + "thread": 8 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2704690, + "thread": 17 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2898752, + "thread": 10 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 2993344, + "thread": 26 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 3219452, + "thread": 24 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 3395931, + "thread": 18 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 3505411, + "thread": 4 + } + }, + { + "amount": "277.207092625", + "slot": { + "period": 3713695, + "thread": 26 + } + }, + { + "amount": "277.207092630", + "slot": { + "period": 3842288, + "thread": 9 + } + } + ], + "AU1cELTWXMrmC89U2cVvy5p15Me6XLFkbSDHh5g14ZAbiD2XAZ93": [ + { + "amount": "218.795383151", + "slot": { + "period": 34082, + "thread": 2 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 285129, + "thread": 18 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 488686, + "thread": 1 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 566700, + "thread": 2 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 691383, + "thread": 7 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 979063, + "thread": 28 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1110704, + "thread": 2 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1170232, + "thread": 19 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1352155, + "thread": 7 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1628833, + "thread": 20 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1746251, + "thread": 28 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 1889227, + "thread": 31 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2015065, + "thread": 27 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2159881, + "thread": 25 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2314861, + "thread": 31 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2568772, + "thread": 29 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2657730, + "thread": 31 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 2921882, + "thread": 1 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 3046147, + "thread": 9 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 3124228, + "thread": 8 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 3290745, + "thread": 9 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 3610421, + "thread": 20 + } + }, + { + "amount": "218.795383151", + "slot": { + "period": 3689029, + "thread": 14 + } + }, + { + "amount": "218.795383143", + "slot": { + "period": 3827865, + "thread": 26 + } + } + ], + "AU1cEUCSygbukHtJPMvwUTs67qe6R9aKvmKHHVGWdQTLbS4H3Vzm": [ + { + "amount": "96.499643157", + "slot": { + "period": 142622, + "thread": 31 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 303412, + "thread": 24 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 439047, + "thread": 10 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 545010, + "thread": 19 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 815212, + "thread": 4 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 874833, + "thread": 30 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1099855, + "thread": 13 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1315922, + "thread": 5 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1454096, + "thread": 18 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1572439, + "thread": 9 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1688006, + "thread": 13 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 1901418, + "thread": 22 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2109249, + "thread": 22 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2160902, + "thread": 28 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2300176, + "thread": 18 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2560499, + "thread": 1 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2649194, + "thread": 0 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 2826890, + "thread": 5 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 3120934, + "thread": 11 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 3214385, + "thread": 27 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 3364057, + "thread": 9 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 3534046, + "thread": 11 + } + }, + { + "amount": "96.499643157", + "slot": { + "period": 3764804, + "thread": 23 + } + }, + { + "amount": "96.499643162", + "slot": { + "period": 3869998, + "thread": 4 + } + } + ], + "AU1cEd2zzgpQZeJdxjrvAjX5y1tG39JJ9e9YWeoMtQzwQduiKVXo": [ + { + "amount": "275.197510778", + "slot": { + "period": 33076, + "thread": 21 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 200866, + "thread": 22 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 438848, + "thread": 14 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 574832, + "thread": 19 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 765394, + "thread": 17 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 870171, + "thread": 25 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1091348, + "thread": 10 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1239172, + "thread": 12 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1465250, + "thread": 8 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1522183, + "thread": 24 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1802959, + "thread": 29 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 1849724, + "thread": 19 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2141968, + "thread": 30 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2287442, + "thread": 31 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2460444, + "thread": 29 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2569549, + "thread": 15 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2700498, + "thread": 22 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 2902933, + "thread": 14 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 3048283, + "thread": 10 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 3265448, + "thread": 29 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 3349313, + "thread": 7 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 3512579, + "thread": 24 + } + }, + { + "amount": "275.197510778", + "slot": { + "period": 3632168, + "thread": 17 + } + }, + { + "amount": "275.197510782", + "slot": { + "period": 3831214, + "thread": 13 + } + } + ], + "AU1cEkvpf4WVCqrsXVLjRsyU72tFAB81cxTzaBYg9Xhy1Jx5csWw": [ + { + "amount": "209.209531368", + "slot": { + "period": 19154, + "thread": 1 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 213783, + "thread": 0 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 402806, + "thread": 20 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 552788, + "thread": 26 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 784723, + "thread": 29 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 920045, + "thread": 22 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1015651, + "thread": 7 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1197219, + "thread": 19 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1466629, + "thread": 19 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1554488, + "thread": 18 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1719469, + "thread": 29 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 1904620, + "thread": 0 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2110117, + "thread": 10 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2259906, + "thread": 13 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2445578, + "thread": 22 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2510003, + "thread": 3 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2724596, + "thread": 26 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2799644, + "thread": 1 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 2962865, + "thread": 16 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 3189706, + "thread": 15 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 3296210, + "thread": 9 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 3475092, + "thread": 19 + } + }, + { + "amount": "209.209531368", + "slot": { + "period": 3704186, + "thread": 23 + } + }, + { + "amount": "209.209531371", + "slot": { + "period": 3899223, + "thread": 2 + } + } + ], + "AU1cG3EBzeUPjt89U7tBBjRi1VoE5RGM755jnZi8E7MKNvDG243E": [ + { + "amount": "203.977674513", + "slot": { + "period": 56252, + "thread": 3 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 265152, + "thread": 1 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 460589, + "thread": 23 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 557659, + "thread": 13 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 769474, + "thread": 27 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 966530, + "thread": 28 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1014488, + "thread": 3 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1278281, + "thread": 19 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1428544, + "thread": 10 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1587905, + "thread": 17 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1712607, + "thread": 3 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 1829376, + "thread": 22 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2067497, + "thread": 19 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2248061, + "thread": 5 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2442502, + "thread": 11 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2545085, + "thread": 8 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2675613, + "thread": 18 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 2847380, + "thread": 19 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 3116899, + "thread": 23 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 3140872, + "thread": 9 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 3441926, + "thread": 26 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 3489376, + "thread": 8 + } + }, + { + "amount": "203.977674513", + "slot": { + "period": 3689945, + "thread": 19 + } + }, + { + "amount": "203.977674512", + "slot": { + "period": 3850303, + "thread": 7 + } + } + ], + "AU1cJTeaBU8WS137yW1QvhoCSotF2oR2LGKVYSbuLHGoEiKz35au": [ + { + "amount": "140.359644927", + "slot": { + "period": 154832, + "thread": 15 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 289262, + "thread": 18 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 478213, + "thread": 5 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 497058, + "thread": 30 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 764789, + "thread": 10 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 902700, + "thread": 9 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1121849, + "thread": 23 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1160197, + "thread": 22 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1377824, + "thread": 21 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1560302, + "thread": 12 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1801497, + "thread": 7 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 1898633, + "thread": 15 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2073547, + "thread": 8 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2279491, + "thread": 13 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2391521, + "thread": 8 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2607300, + "thread": 12 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2746311, + "thread": 16 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 2890599, + "thread": 4 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 3100009, + "thread": 11 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 3250044, + "thread": 11 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 3367470, + "thread": 15 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 3468303, + "thread": 20 + } + }, + { + "amount": "140.359644927", + "slot": { + "period": 3649310, + "thread": 8 + } + }, + { + "amount": "140.359644924", + "slot": { + "period": 3946423, + "thread": 22 + } + } + ], + "AU1cJjDEtBgdn8fffVNNkk2TCpZz78gRSzHLpWjhXFp4nREeDaRB": [ + { + "amount": "331.217732213", + "slot": { + "period": 112961, + "thread": 4 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 272002, + "thread": 30 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 335440, + "thread": 3 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 599313, + "thread": 21 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 670102, + "thread": 24 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 888867, + "thread": 6 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1139633, + "thread": 19 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1231248, + "thread": 12 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1358148, + "thread": 9 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1626077, + "thread": 20 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1775866, + "thread": 24 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 1854820, + "thread": 30 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2133475, + "thread": 5 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2214094, + "thread": 23 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2449653, + "thread": 8 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2544898, + "thread": 25 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2776575, + "thread": 18 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2929504, + "thread": 29 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 2988195, + "thread": 24 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 3199927, + "thread": 16 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 3358430, + "thread": 21 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 3582501, + "thread": 25 + } + }, + { + "amount": "331.217732213", + "slot": { + "period": 3626906, + "thread": 5 + } + }, + { + "amount": "331.217732223", + "slot": { + "period": 3932928, + "thread": 28 + } + } + ], + "AU1cJwKj9CVp2GKXNgevbbR3kYDNZLD2i4QcMYtsa1ouo6L9b3ve": [ + { + "amount": "251.891474344", + "slot": { + "period": 36541, + "thread": 14 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 320954, + "thread": 26 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 338510, + "thread": 26 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 603753, + "thread": 20 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 763663, + "thread": 10 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 978408, + "thread": 22 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1059061, + "thread": 16 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1178684, + "thread": 23 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1434794, + "thread": 31 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1556873, + "thread": 13 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1737823, + "thread": 15 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 1876540, + "thread": 28 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2099371, + "thread": 21 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2221146, + "thread": 21 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2358579, + "thread": 21 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2609600, + "thread": 1 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2647420, + "thread": 22 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2941528, + "thread": 19 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 2955920, + "thread": 29 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 3194291, + "thread": 6 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 3366603, + "thread": 1 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 3524092, + "thread": 13 + } + }, + { + "amount": "251.891474344", + "slot": { + "period": 3733052, + "thread": 24 + } + }, + { + "amount": "251.891474354", + "slot": { + "period": 3839782, + "thread": 1 + } + } + ], + "AU1cKaY7ADCAVy5AuUEFGx5fRUo6rqzS5XcbTZanZHxzS62Exzv8": [ + { + "amount": "250.070908686", + "slot": { + "period": 89871, + "thread": 9 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 168619, + "thread": 31 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 369341, + "thread": 14 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 498587, + "thread": 14 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 810146, + "thread": 12 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 821222, + "thread": 26 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1076817, + "thread": 0 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1307165, + "thread": 21 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1366055, + "thread": 22 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1616326, + "thread": 17 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1780972, + "thread": 10 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1966465, + "thread": 10 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 1978341, + "thread": 24 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 2270319, + "thread": 30 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 2420096, + "thread": 27 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 2601608, + "thread": 29 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 2680548, + "thread": 22 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 2897927, + "thread": 14 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 3115026, + "thread": 24 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 3131973, + "thread": 18 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 3337089, + "thread": 16 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 3497977, + "thread": 9 + } + }, + { + "amount": "250.070908686", + "slot": { + "period": 3741886, + "thread": 22 + } + }, + { + "amount": "250.070908674", + "slot": { + "period": 3867307, + "thread": 12 + } + } + ], + "AU1cLr8sixd6gBqYZzqZbKqNGGZyYMwabHTQjkXVhaZtrXFVDZrJ": [ + { + "amount": "119.221268693", + "slot": { + "period": 128407, + "thread": 12 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 321174, + "thread": 8 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 360413, + "thread": 16 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 630156, + "thread": 31 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 792882, + "thread": 10 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 860327, + "thread": 8 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1064915, + "thread": 26 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1246000, + "thread": 19 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1477750, + "thread": 22 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1646443, + "thread": 16 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1697372, + "thread": 9 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 1828041, + "thread": 23 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2056812, + "thread": 20 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2270117, + "thread": 28 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2412200, + "thread": 13 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2472113, + "thread": 26 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2734678, + "thread": 10 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 2802585, + "thread": 6 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 3072118, + "thread": 29 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 3143690, + "thread": 10 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 3404185, + "thread": 29 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 3535078, + "thread": 20 + } + }, + { + "amount": "119.221268693", + "slot": { + "period": 3762605, + "thread": 8 + } + }, + { + "amount": "119.221268690", + "slot": { + "period": 3832280, + "thread": 0 + } + } + ], + "AU1cMycS87dfAENTXiKP2bT5EmxwbexMPk97h7d6t7eSvVCtU1pe": [ + { + "amount": "174.000289769", + "slot": { + "period": 49481, + "thread": 9 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 266742, + "thread": 3 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 402889, + "thread": 3 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 539531, + "thread": 25 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 773430, + "thread": 14 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 870765, + "thread": 13 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1124909, + "thread": 21 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1305199, + "thread": 3 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1354825, + "thread": 6 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1558870, + "thread": 23 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1651563, + "thread": 28 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1859018, + "thread": 20 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 1984310, + "thread": 2 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 2280397, + "thread": 18 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 2295261, + "thread": 23 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 2590801, + "thread": 5 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 2727280, + "thread": 12 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 2900293, + "thread": 12 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3064519, + "thread": 0 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3178470, + "thread": 25 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3361363, + "thread": 15 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3458187, + "thread": 18 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3732771, + "thread": 11 + } + }, + { + "amount": "174.000289769", + "slot": { + "period": 3817720, + "thread": 19 + } + } + ], + "AU1cNLowginPK2JqkjVdrzCyefhimBE4g9EcSyZsYM6q1QVL2YEX": [ + { + "amount": "231.443941104", + "slot": { + "period": 26185, + "thread": 7 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 237856, + "thread": 19 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 489824, + "thread": 27 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 635706, + "thread": 17 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 701739, + "thread": 16 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 841493, + "thread": 18 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1028942, + "thread": 27 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1274953, + "thread": 29 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1346837, + "thread": 0 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1560780, + "thread": 29 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1770731, + "thread": 2 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 1844620, + "thread": 21 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2049648, + "thread": 13 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2205496, + "thread": 17 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2422921, + "thread": 21 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2570339, + "thread": 21 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2668569, + "thread": 9 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 2842849, + "thread": 7 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 3109889, + "thread": 30 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 3232247, + "thread": 24 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 3428120, + "thread": 18 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 3486712, + "thread": 0 + } + }, + { + "amount": "231.443941104", + "slot": { + "period": 3637264, + "thread": 8 + } + }, + { + "amount": "231.443941108", + "slot": { + "period": 3853669, + "thread": 27 + } + } + ], + "AU1cNLspg3sCDjRycM4Nt4v1pGtxUfqNojmFXj9azGSKHdjxEkwu": [ + { + "amount": "263.926693141", + "slot": { + "period": 125906, + "thread": 2 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 167718, + "thread": 16 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 406755, + "thread": 14 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 561353, + "thread": 31 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 797270, + "thread": 12 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 975869, + "thread": 20 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1063531, + "thread": 6 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1284441, + "thread": 28 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1401854, + "thread": 30 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1558652, + "thread": 14 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1680431, + "thread": 7 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 1875119, + "thread": 31 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2056164, + "thread": 6 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2163370, + "thread": 26 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2380167, + "thread": 17 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2547039, + "thread": 13 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2746967, + "thread": 2 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2902646, + "thread": 31 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 2974867, + "thread": 10 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 3210800, + "thread": 17 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 3317087, + "thread": 21 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 3539872, + "thread": 21 + } + }, + { + "amount": "263.926693141", + "slot": { + "period": 3647287, + "thread": 9 + } + }, + { + "amount": "263.926693140", + "slot": { + "period": 3847478, + "thread": 20 + } + } + ], + "AU1cNc1S8bm4dB2C8wzL579aY6KEdsPipwuMpNLfVtBgy8EKW9n8": [ + { + "amount": "207.535046335", + "slot": { + "period": 38261, + "thread": 20 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 190097, + "thread": 23 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 360636, + "thread": 31 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 555036, + "thread": 7 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 665316, + "thread": 10 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 882158, + "thread": 28 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1038716, + "thread": 9 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1272800, + "thread": 6 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1358721, + "thread": 4 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1534414, + "thread": 26 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1696870, + "thread": 25 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 1902040, + "thread": 19 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2111107, + "thread": 17 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2224367, + "thread": 10 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2412814, + "thread": 26 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2486049, + "thread": 14 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2752031, + "thread": 4 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 2881978, + "thread": 27 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 3033908, + "thread": 22 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 3179156, + "thread": 27 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 3305140, + "thread": 12 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 3523808, + "thread": 22 + } + }, + { + "amount": "207.535046335", + "slot": { + "period": 3725705, + "thread": 31 + } + }, + { + "amount": "207.535046333", + "slot": { + "period": 3932989, + "thread": 18 + } + } + ], + "AU1cPZh9u8QyAZBn5igcwQAyaeUfWctYpNhjKAogxM3capjKqFb8": [ + { + "amount": "111.105032170", + "slot": { + "period": 162584, + "thread": 14 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 241464, + "thread": 18 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 325600, + "thread": 16 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 555376, + "thread": 25 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 768065, + "thread": 26 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 880157, + "thread": 22 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1056473, + "thread": 26 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1220780, + "thread": 3 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1416682, + "thread": 2 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1626517, + "thread": 31 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1696194, + "thread": 12 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 1918393, + "thread": 24 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2066485, + "thread": 9 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2248379, + "thread": 25 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2386020, + "thread": 12 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2510813, + "thread": 28 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2703100, + "thread": 11 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 2937554, + "thread": 7 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 3121074, + "thread": 6 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 3273669, + "thread": 11 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 3337894, + "thread": 9 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 3596596, + "thread": 29 + } + }, + { + "amount": "111.105032170", + "slot": { + "period": 3678193, + "thread": 25 + } + }, + { + "amount": "111.105032165", + "slot": { + "period": 3860108, + "thread": 9 + } + } + ], + "AU1cPdTpfGtPBm5miidoP9PkfcTcuGhPTVhXsSd5cWUqJhX7dLHc": [ + { + "amount": "134.461932300", + "slot": { + "period": 66813, + "thread": 13 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 183282, + "thread": 25 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 444885, + "thread": 30 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 527185, + "thread": 3 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 672062, + "thread": 14 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 881592, + "thread": 4 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1092855, + "thread": 12 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1213695, + "thread": 12 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1402696, + "thread": 5 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1571502, + "thread": 28 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1791904, + "thread": 7 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 1915161, + "thread": 1 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2063428, + "thread": 3 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2208206, + "thread": 22 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2413109, + "thread": 26 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2530244, + "thread": 29 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2674248, + "thread": 14 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 2881975, + "thread": 31 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 3028660, + "thread": 15 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 3163206, + "thread": 15 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 3441848, + "thread": 14 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 3520648, + "thread": 7 + } + }, + { + "amount": "134.461932300", + "slot": { + "period": 3715643, + "thread": 17 + } + }, + { + "amount": "134.461932298", + "slot": { + "period": 3870730, + "thread": 2 + } + } + ], + "AU1cQ7JpPcV1eErfTCqQMNgEaVGsAgmcJQCzeBcbTsQTrenYUdnh": [ + { + "amount": "484.525820797", + "slot": { + "period": 118464, + "thread": 10 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 226384, + "thread": 23 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 359090, + "thread": 22 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 554184, + "thread": 12 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 758739, + "thread": 18 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 925342, + "thread": 5 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1104031, + "thread": 26 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1277756, + "thread": 12 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1356138, + "thread": 14 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1544471, + "thread": 16 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1739394, + "thread": 6 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 1976097, + "thread": 13 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2051175, + "thread": 20 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2202432, + "thread": 26 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2409400, + "thread": 8 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2571874, + "thread": 8 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2744470, + "thread": 6 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2910925, + "thread": 26 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 2986274, + "thread": 4 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 3258552, + "thread": 4 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 3386781, + "thread": 14 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 3485890, + "thread": 19 + } + }, + { + "amount": "484.525820797", + "slot": { + "period": 3693974, + "thread": 5 + } + }, + { + "amount": "484.525820798", + "slot": { + "period": 3828439, + "thread": 29 + } + } + ], + "AU1cQDRFNiD6p1zVeoBAYRF8f3DheWJUBirJxhiouLwWpdzUok1Z": [ + { + "amount": "428.936943576", + "slot": { + "period": 20783, + "thread": 23 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 208933, + "thread": 14 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 360422, + "thread": 15 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 641145, + "thread": 15 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 799225, + "thread": 25 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 900633, + "thread": 25 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1078378, + "thread": 24 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1189496, + "thread": 31 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1404612, + "thread": 23 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1553466, + "thread": 5 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1699770, + "thread": 24 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 1813896, + "thread": 28 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2138332, + "thread": 7 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2207066, + "thread": 19 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2393608, + "thread": 31 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2578012, + "thread": 25 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2722364, + "thread": 18 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 2940078, + "thread": 0 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 3039708, + "thread": 12 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 3164425, + "thread": 29 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 3411500, + "thread": 8 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 3549455, + "thread": 25 + } + }, + { + "amount": "428.936943576", + "slot": { + "period": 3766457, + "thread": 31 + } + }, + { + "amount": "428.936943586", + "slot": { + "period": 3876678, + "thread": 2 + } + } + ], + "AU1cQSjBESu9Ai17HR4TUtUvr8KoeKh9UhaVoZ65hg93qfp87fqT": [ + { + "amount": "153.861452764", + "slot": { + "period": 138801, + "thread": 29 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 192452, + "thread": 29 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 368089, + "thread": 8 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 513263, + "thread": 19 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 743205, + "thread": 12 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 840206, + "thread": 16 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1080746, + "thread": 17 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1224090, + "thread": 27 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1449734, + "thread": 11 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1539554, + "thread": 22 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1760922, + "thread": 26 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1961601, + "thread": 31 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 1981489, + "thread": 1 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 2279010, + "thread": 16 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 2460640, + "thread": 26 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 2558548, + "thread": 26 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 2667547, + "thread": 23 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 2813059, + "thread": 6 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 3091054, + "thread": 7 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 3236185, + "thread": 28 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 3405809, + "thread": 2 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 3580398, + "thread": 26 + } + }, + { + "amount": "153.861452764", + "slot": { + "period": 3699262, + "thread": 19 + } + }, + { + "amount": "153.861452772", + "slot": { + "period": 3804524, + "thread": 7 + } + } + ], + "AU1cQYLWiBmVrpSUHVGTSfFbqAfqg81RUWS6xEYxEiUMGYgnuCxG": [ + { + "amount": "149.086511282", + "slot": { + "period": 80428, + "thread": 9 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 190252, + "thread": 19 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 399366, + "thread": 26 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 653318, + "thread": 13 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 723766, + "thread": 1 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 910038, + "thread": 3 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1069307, + "thread": 27 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1187440, + "thread": 18 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1419511, + "thread": 15 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1507512, + "thread": 4 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1721941, + "thread": 11 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1891645, + "thread": 27 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 1991038, + "thread": 6 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2270820, + "thread": 23 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2356065, + "thread": 19 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2479054, + "thread": 31 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2741989, + "thread": 26 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2853929, + "thread": 21 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 2988503, + "thread": 24 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 3185964, + "thread": 19 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 3440698, + "thread": 16 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 3525474, + "thread": 24 + } + }, + { + "amount": "149.086511282", + "slot": { + "period": 3728296, + "thread": 1 + } + }, + { + "amount": "149.086511271", + "slot": { + "period": 3914615, + "thread": 29 + } + } + ], + "AU1cQrjB5QxvAtpMamgY9QQDj5G5ieQQWK2XUBN3Fs5f8RPNZWtt": [ + { + "amount": "95.420923000", + "slot": { + "period": 157609, + "thread": 10 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 213900, + "thread": 30 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 437300, + "thread": 9 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 601521, + "thread": 10 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 725312, + "thread": 30 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 899673, + "thread": 9 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1082140, + "thread": 12 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1249176, + "thread": 10 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1385105, + "thread": 1 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1553011, + "thread": 29 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1683909, + "thread": 3 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 1908519, + "thread": 19 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2031196, + "thread": 12 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2271290, + "thread": 10 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2307885, + "thread": 5 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2573912, + "thread": 31 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2717709, + "thread": 0 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 2888552, + "thread": 23 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 3075324, + "thread": 16 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 3124287, + "thread": 11 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 3430696, + "thread": 8 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 3536737, + "thread": 19 + } + }, + { + "amount": "95.420923000", + "slot": { + "period": 3746434, + "thread": 27 + } + }, + { + "amount": "95.420923005", + "slot": { + "period": 3883593, + "thread": 28 + } + } + ], + "AU1cSDyJU2FZNr54mzRAoTrSMfk6PpJ57zfLFqTLpkBY7VSKwwX4": [ + { + "amount": "452.485547544", + "slot": { + "period": 106234, + "thread": 5 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 267273, + "thread": 11 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 390166, + "thread": 11 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 506665, + "thread": 9 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 704144, + "thread": 1 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 877904, + "thread": 1 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1043824, + "thread": 14 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1266175, + "thread": 13 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1415667, + "thread": 27 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1512963, + "thread": 12 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1755870, + "thread": 15 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 1913342, + "thread": 23 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2094715, + "thread": 6 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2155704, + "thread": 19 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2460119, + "thread": 14 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2572711, + "thread": 4 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2752097, + "thread": 25 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2857472, + "thread": 21 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 2985363, + "thread": 5 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 3124688, + "thread": 10 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 3373682, + "thread": 17 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 3544919, + "thread": 31 + } + }, + { + "amount": "452.485547544", + "slot": { + "period": 3650397, + "thread": 24 + } + }, + { + "amount": "452.485547551", + "slot": { + "period": 3806235, + "thread": 31 + } + } + ], + "AU1cT8MKuXiET8MrZRiAw5KMrFCGkRxJSvkfFtzdvAkvbZXHv9Fz": [ + { + "amount": "149.328467492", + "slot": { + "period": 28450, + "thread": 31 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 205493, + "thread": 26 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 405977, + "thread": 29 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 513797, + "thread": 0 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 692101, + "thread": 1 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 852366, + "thread": 3 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1068732, + "thread": 5 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1283371, + "thread": 11 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1446583, + "thread": 22 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1547495, + "thread": 9 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1705492, + "thread": 18 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 1853713, + "thread": 15 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2141846, + "thread": 20 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2218482, + "thread": 13 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2429195, + "thread": 5 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2484110, + "thread": 31 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2646749, + "thread": 21 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 2820071, + "thread": 1 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 3038000, + "thread": 9 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 3153885, + "thread": 27 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 3322433, + "thread": 9 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 3492603, + "thread": 2 + } + }, + { + "amount": "149.328467492", + "slot": { + "period": 3722840, + "thread": 15 + } + }, + { + "amount": "149.328467499", + "slot": { + "period": 3928658, + "thread": 21 + } + } + ], + "AU1cTe7A32UdT8weraqZDn1mb8S4V6JMfKYYx52u43SeEj43ZYEd": [ + { + "amount": "444.967712388", + "slot": { + "period": 133591, + "thread": 11 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 255342, + "thread": 20 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 411710, + "thread": 24 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 527119, + "thread": 2 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 674880, + "thread": 21 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 903881, + "thread": 17 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1045844, + "thread": 11 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1156421, + "thread": 28 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1409951, + "thread": 9 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1551001, + "thread": 14 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1792148, + "thread": 22 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 1915987, + "thread": 9 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2011841, + "thread": 1 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2276809, + "thread": 9 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2406931, + "thread": 29 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2471962, + "thread": 30 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2635966, + "thread": 8 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 2894470, + "thread": 29 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 3103113, + "thread": 21 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 3180744, + "thread": 16 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 3365515, + "thread": 19 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 3581763, + "thread": 5 + } + }, + { + "amount": "444.967712388", + "slot": { + "period": 3661236, + "thread": 15 + } + }, + { + "amount": "444.967712381", + "slot": { + "period": 3881949, + "thread": 26 + } + } + ], + "AU1cTgGenQNti5qyutAK3z3gqjddxBM9h23ahghKx6F8NmQNF5qv": [ + { + "amount": "372.455483534", + "slot": { + "period": 56084, + "thread": 14 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 262700, + "thread": 14 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 327651, + "thread": 1 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 542320, + "thread": 28 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 789972, + "thread": 31 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 930879, + "thread": 28 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1108340, + "thread": 29 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1201595, + "thread": 3 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1371347, + "thread": 11 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1496928, + "thread": 30 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1699412, + "thread": 19 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1945538, + "thread": 12 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 1990053, + "thread": 20 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 2143817, + "thread": 6 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 2416168, + "thread": 7 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 2537754, + "thread": 2 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 2662898, + "thread": 6 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 2888388, + "thread": 12 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 3013559, + "thread": 28 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 3147301, + "thread": 13 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 3374138, + "thread": 8 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 3518702, + "thread": 0 + } + }, + { + "amount": "372.455483534", + "slot": { + "period": 3653185, + "thread": 30 + } + }, + { + "amount": "372.455483546", + "slot": { + "period": 3798191, + "thread": 13 + } + } + ], + "AU1cUJCx4NnNRgjdvkr28SCdchbgGo3CNZgoLd8AuyEdGG17ieXp": [ + { + "amount": "170.720106747", + "slot": { + "period": 78594, + "thread": 2 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 264688, + "thread": 5 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 371001, + "thread": 22 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 594247, + "thread": 4 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 679641, + "thread": 31 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 929802, + "thread": 15 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1107479, + "thread": 23 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1171140, + "thread": 0 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1352669, + "thread": 14 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1525282, + "thread": 8 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1775018, + "thread": 19 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 1838174, + "thread": 25 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2073820, + "thread": 25 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2283360, + "thread": 8 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2395306, + "thread": 20 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2576082, + "thread": 23 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2735682, + "thread": 5 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 2873959, + "thread": 4 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 3039883, + "thread": 18 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 3173064, + "thread": 7 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 3382119, + "thread": 7 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 3486611, + "thread": 27 + } + }, + { + "amount": "170.720106747", + "slot": { + "period": 3705425, + "thread": 28 + } + }, + { + "amount": "170.720106758", + "slot": { + "period": 3783754, + "thread": 28 + } + } + ], + "AU1cVtPLVB69QLze43nqM863LwktM45xTNDVLTDTV86YRjipgHi7": [ + { + "amount": "189.099949598", + "slot": { + "period": 48719, + "thread": 7 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 291610, + "thread": 28 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 424615, + "thread": 9 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 652415, + "thread": 17 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 728703, + "thread": 27 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 963016, + "thread": 29 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1144049, + "thread": 17 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1150468, + "thread": 4 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1341208, + "thread": 17 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1554974, + "thread": 9 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1698211, + "thread": 29 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 1912183, + "thread": 2 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2091388, + "thread": 25 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2235572, + "thread": 31 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2426586, + "thread": 17 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2559437, + "thread": 12 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2678248, + "thread": 12 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 2825784, + "thread": 0 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 3056358, + "thread": 16 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 3231962, + "thread": 2 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 3302725, + "thread": 25 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 3614591, + "thread": 6 + } + }, + { + "amount": "189.099949598", + "slot": { + "period": 3765193, + "thread": 23 + } + }, + { + "amount": "189.099949586", + "slot": { + "period": 3923412, + "thread": 30 + } + } + ], + "AU1cVzTJE3HEUePn5baUgi7ohy5Zw4ZVEN6EzMzTHoEXVrMacm91": [ + { + "amount": "96.080224673", + "slot": { + "period": 91175, + "thread": 26 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 180579, + "thread": 24 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 429281, + "thread": 18 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 506209, + "thread": 30 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 739014, + "thread": 9 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 941845, + "thread": 16 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1139836, + "thread": 28 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1235731, + "thread": 2 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1466364, + "thread": 4 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1569517, + "thread": 18 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1801758, + "thread": 3 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 1921246, + "thread": 5 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2035882, + "thread": 27 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2261548, + "thread": 11 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2333502, + "thread": 20 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2479841, + "thread": 21 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2754021, + "thread": 2 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2844833, + "thread": 22 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 2960851, + "thread": 17 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 3278680, + "thread": 16 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 3399880, + "thread": 30 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 3556718, + "thread": 31 + } + }, + { + "amount": "96.080224673", + "slot": { + "period": 3682032, + "thread": 15 + } + }, + { + "amount": "96.080224672", + "slot": { + "period": 3786900, + "thread": 4 + } + } + ], + "AU1cWCnSnrrwAtydFjEGuYJazyiNTmNCq1oLC5xKBB2zyysDd5Lq": [ + { + "amount": "428.517942583", + "slot": { + "period": 28644, + "thread": 7 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 207251, + "thread": 13 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 344185, + "thread": 13 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 499882, + "thread": 21 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 781988, + "thread": 11 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 836150, + "thread": 25 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1121315, + "thread": 3 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1268441, + "thread": 13 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1338476, + "thread": 0 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1551499, + "thread": 13 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1691644, + "thread": 4 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 1855121, + "thread": 17 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2143414, + "thread": 13 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2242218, + "thread": 14 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2316715, + "thread": 30 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2574422, + "thread": 15 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2705159, + "thread": 23 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2890244, + "thread": 21 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 2974008, + "thread": 25 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 3253757, + "thread": 22 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 3342655, + "thread": 14 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 3506202, + "thread": 5 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 3637896, + "thread": 5 + } + }, + { + "amount": "428.517942583", + "slot": { + "period": 3868687, + "thread": 9 + } + } + ], + "AU1cWou3N9RxpBTgU8HeNkwBa4MLqH59WJYCeJw8BJjBvzaMjaPG": [ + { + "amount": "556.617440337", + "slot": { + "period": 60604, + "thread": 14 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 278519, + "thread": 3 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 484145, + "thread": 12 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 533439, + "thread": 11 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 703308, + "thread": 4 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 946290, + "thread": 6 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1121636, + "thread": 4 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1181858, + "thread": 1 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1356876, + "thread": 31 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1490450, + "thread": 20 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1671033, + "thread": 30 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1910166, + "thread": 13 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 1997084, + "thread": 8 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 2250312, + "thread": 27 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 2322107, + "thread": 27 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 2593665, + "thread": 10 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 2667635, + "thread": 0 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 2883462, + "thread": 5 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 3084010, + "thread": 14 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 3215852, + "thread": 23 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 3345678, + "thread": 2 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 3481424, + "thread": 12 + } + }, + { + "amount": "556.617440337", + "slot": { + "period": 3722627, + "thread": 16 + } + }, + { + "amount": "556.617440334", + "slot": { + "period": 3864186, + "thread": 10 + } + } + ], + "AU1cXDp5ybEcrRbN6pE8Z7RYPitGMpxq4yjqCu3WDbzvdZnu4npV": [ + { + "amount": "213.270883283", + "slot": { + "period": 108196, + "thread": 18 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 225721, + "thread": 0 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 477427, + "thread": 29 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 594649, + "thread": 4 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 669081, + "thread": 17 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 879026, + "thread": 14 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 993062, + "thread": 17 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 1245206, + "thread": 23 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 1420508, + "thread": 21 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 1615023, + "thread": 31 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 1729852, + "thread": 12 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 1955649, + "thread": 5 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2042268, + "thread": 7 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2215316, + "thread": 27 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2320614, + "thread": 24 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2465887, + "thread": 14 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2664062, + "thread": 19 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 2924508, + "thread": 1 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 3059165, + "thread": 13 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 3129091, + "thread": 10 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 3307269, + "thread": 28 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 3529651, + "thread": 25 + } + }, + { + "amount": "213.270883283", + "slot": { + "period": 3724826, + "thread": 21 + } + }, + { + "amount": "213.270883292", + "slot": { + "period": 3926141, + "thread": 21 + } + } + ], + "AU1cY2difZZ4YGyviF3yasrc4mXhXHK67eoGQhQr8TDNnNUnffc6": [ + { + "amount": "105.023243189", + "slot": { + "period": 44601, + "thread": 17 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 194964, + "thread": 13 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 435759, + "thread": 5 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 548117, + "thread": 26 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 772293, + "thread": 18 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 920873, + "thread": 9 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1069313, + "thread": 23 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1305034, + "thread": 9 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1447587, + "thread": 17 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1610741, + "thread": 29 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1759055, + "thread": 30 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 1850957, + "thread": 5 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2010510, + "thread": 15 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2292006, + "thread": 18 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2441059, + "thread": 0 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2530006, + "thread": 22 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2655588, + "thread": 30 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2841421, + "thread": 8 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 2995277, + "thread": 26 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 3279670, + "thread": 4 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 3308455, + "thread": 29 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 3545376, + "thread": 9 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 3624576, + "thread": 0 + } + }, + { + "amount": "105.023243189", + "slot": { + "period": 3930561, + "thread": 30 + } + } + ], + "AU1cZTnjcc5FNtByPegiLc6bua31vMRV5WXV5TAy8aYAP5b3DBKT": [ + { + "amount": "503.939261579", + "slot": { + "period": 98894, + "thread": 10 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 217227, + "thread": 18 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 432436, + "thread": 2 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 555575, + "thread": 30 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 777711, + "thread": 17 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 981820, + "thread": 12 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1139198, + "thread": 21 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1184427, + "thread": 13 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1340723, + "thread": 26 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1565600, + "thread": 17 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1706975, + "thread": 9 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 1934391, + "thread": 8 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2036103, + "thread": 21 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2186415, + "thread": 5 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2451269, + "thread": 19 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2580349, + "thread": 11 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2659565, + "thread": 9 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2819001, + "thread": 24 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 2969431, + "thread": 5 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 3162213, + "thread": 1 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 3400580, + "thread": 24 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 3536875, + "thread": 9 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 3651122, + "thread": 5 + } + }, + { + "amount": "503.939261579", + "slot": { + "period": 3872048, + "thread": 23 + } + } + ], + "AU1ca45MtHA1muaU4Q2xngu3JxqbJRHDZQX1ssFrX3SewSTK4HBu": [ + { + "amount": "257.612260311", + "slot": { + "period": 29825, + "thread": 16 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 299632, + "thread": 5 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 475187, + "thread": 7 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 606853, + "thread": 16 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 680430, + "thread": 27 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 879578, + "thread": 27 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1047471, + "thread": 3 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1251804, + "thread": 24 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1364904, + "thread": 6 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1537747, + "thread": 9 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1769306, + "thread": 25 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 1845872, + "thread": 2 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2025686, + "thread": 28 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2220411, + "thread": 11 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2370192, + "thread": 23 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2525268, + "thread": 15 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2765797, + "thread": 0 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2817575, + "thread": 0 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 2973013, + "thread": 0 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 3236796, + "thread": 9 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 3371126, + "thread": 14 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 3462836, + "thread": 0 + } + }, + { + "amount": "257.612260311", + "slot": { + "period": 3623405, + "thread": 23 + } + }, + { + "amount": "257.612260304", + "slot": { + "period": 3946446, + "thread": 24 + } + } + ], + "AU1cdNaE9WkhK1AwcJyns9mEGFXYeXfqJ7z53PRqK6WC6wxMrXZK": [ + { + "amount": "143.663721832", + "slot": { + "period": 34253, + "thread": 28 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 179670, + "thread": 25 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 476937, + "thread": 9 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 636555, + "thread": 27 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 780768, + "thread": 29 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 919189, + "thread": 8 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1061423, + "thread": 13 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1180727, + "thread": 15 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1321447, + "thread": 15 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1643083, + "thread": 8 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1657380, + "thread": 8 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 1875743, + "thread": 25 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2068481, + "thread": 11 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2260873, + "thread": 24 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2442581, + "thread": 24 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2584922, + "thread": 2 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2775542, + "thread": 22 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2951376, + "thread": 15 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 2982625, + "thread": 28 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 3235077, + "thread": 26 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 3320567, + "thread": 28 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 3609367, + "thread": 23 + } + }, + { + "amount": "143.663721832", + "slot": { + "period": 3687150, + "thread": 27 + } + }, + { + "amount": "143.663721822", + "slot": { + "period": 3867578, + "thread": 14 + } + } + ], + "AU1cdRXLeGs9vEs3tz6NM5DmCk3RCKGmVA2orL9X26HWVx89GYLZ": [ + { + "amount": "115.848090251", + "slot": { + "period": 55281, + "thread": 11 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 281274, + "thread": 9 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 368097, + "thread": 2 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 564661, + "thread": 8 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 770789, + "thread": 12 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 872428, + "thread": 31 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1025990, + "thread": 22 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1252514, + "thread": 26 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1425473, + "thread": 21 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1543338, + "thread": 25 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1791694, + "thread": 18 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 1941555, + "thread": 5 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2136429, + "thread": 0 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2183724, + "thread": 4 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2439572, + "thread": 14 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2543339, + "thread": 2 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2776643, + "thread": 27 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 2895483, + "thread": 28 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 3078950, + "thread": 18 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 3171452, + "thread": 7 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 3349117, + "thread": 12 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 3564609, + "thread": 12 + } + }, + { + "amount": "115.848090251", + "slot": { + "period": 3716495, + "thread": 13 + } + }, + { + "amount": "115.848090256", + "slot": { + "period": 3918971, + "thread": 17 + } + } + ], + "AU1cf6xYobtoXxGU2sX4Q5o5nTT6qKH7odYe9v7WFmf1hCx714xx": [ + { + "amount": "71.933351439", + "slot": { + "period": 112418, + "thread": 2 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 285059, + "thread": 6 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 456581, + "thread": 19 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 626197, + "thread": 7 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 695429, + "thread": 9 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 942128, + "thread": 17 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1098628, + "thread": 1 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1222756, + "thread": 5 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1354404, + "thread": 16 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1561465, + "thread": 11 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1655100, + "thread": 6 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 1814064, + "thread": 3 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2132364, + "thread": 12 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2272379, + "thread": 7 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2329839, + "thread": 1 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2564654, + "thread": 1 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2690621, + "thread": 25 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 2919798, + "thread": 2 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3012956, + "thread": 19 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3250706, + "thread": 26 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3301733, + "thread": 13 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3462251, + "thread": 10 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3776152, + "thread": 8 + } + }, + { + "amount": "71.933351439", + "slot": { + "period": 3820264, + "thread": 29 + } + } + ], + "AU1ch4UzokebBY11gWpsznvJQG5vTdzbP9euKmB7UdbY8WDX66wT": [ + { + "amount": "81.507226505", + "slot": { + "period": 160902, + "thread": 7 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 195688, + "thread": 9 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 339811, + "thread": 7 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 507121, + "thread": 22 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 705994, + "thread": 18 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 903395, + "thread": 22 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1137276, + "thread": 30 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1171643, + "thread": 3 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1359592, + "thread": 20 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1579565, + "thread": 22 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1649665, + "thread": 15 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 1972035, + "thread": 15 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2009214, + "thread": 24 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2205278, + "thread": 7 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2313967, + "thread": 2 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2586852, + "thread": 9 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2668582, + "thread": 30 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2933917, + "thread": 1 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 2954181, + "thread": 9 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 3232741, + "thread": 30 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 3436183, + "thread": 24 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 3555654, + "thread": 6 + } + }, + { + "amount": "81.507226505", + "slot": { + "period": 3691242, + "thread": 11 + } + }, + { + "amount": "81.507226507", + "slot": { + "period": 3925410, + "thread": 6 + } + } + ], + "AU1ch7CkZghLen6D9UWksVLjBuCwQp7Zf9NaUmz9ZLLsHKCnw1HZ": [ + { + "amount": "137.439602033", + "slot": { + "period": 59154, + "thread": 5 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 307232, + "thread": 15 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 370524, + "thread": 24 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 556525, + "thread": 12 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 789935, + "thread": 16 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 853410, + "thread": 18 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1085687, + "thread": 9 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1214751, + "thread": 12 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1427886, + "thread": 9 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1515642, + "thread": 10 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1749109, + "thread": 29 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 1973813, + "thread": 23 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2102066, + "thread": 9 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2269792, + "thread": 1 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2336503, + "thread": 13 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2568524, + "thread": 9 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2664460, + "thread": 13 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 2855921, + "thread": 3 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 3028338, + "thread": 6 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 3183968, + "thread": 7 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 3378840, + "thread": 18 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 3577303, + "thread": 21 + } + }, + { + "amount": "137.439602033", + "slot": { + "period": 3753160, + "thread": 21 + } + }, + { + "amount": "137.439602028", + "slot": { + "period": 3887355, + "thread": 23 + } + } + ], + "AU1ci6ZZ2u4YPsnABudMb5S3QEPqF1Sd75wjaT3vTqaCQXpDBhSb": [ + { + "amount": "133.909923406", + "slot": { + "period": 79937, + "thread": 24 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 208204, + "thread": 12 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 366312, + "thread": 16 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 600447, + "thread": 19 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 795378, + "thread": 20 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 862123, + "thread": 9 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1108487, + "thread": 7 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1160349, + "thread": 21 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1402695, + "thread": 8 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1602800, + "thread": 2 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1757618, + "thread": 21 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 1847631, + "thread": 24 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2052684, + "thread": 22 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2214212, + "thread": 19 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2382889, + "thread": 24 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2553963, + "thread": 24 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2786507, + "thread": 26 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 2796754, + "thread": 11 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 3047006, + "thread": 27 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 3207673, + "thread": 22 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 3392729, + "thread": 30 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 3539464, + "thread": 4 + } + }, + { + "amount": "133.909923406", + "slot": { + "period": 3694065, + "thread": 11 + } + }, + { + "amount": "133.909923408", + "slot": { + "period": 3912462, + "thread": 26 + } + } + ], + "AU1ciewzNrXZaRyRug5mZgBnDkNjgwujxNhvBsedEc8tQM1i9ZwX": [ + { + "amount": "84.878731628", + "slot": { + "period": 16980, + "thread": 19 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 244712, + "thread": 11 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 473599, + "thread": 0 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 574417, + "thread": 31 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 739730, + "thread": 4 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 848454, + "thread": 0 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1112838, + "thread": 12 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1267558, + "thread": 4 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1453207, + "thread": 23 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1523201, + "thread": 30 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1649839, + "thread": 13 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 1908601, + "thread": 14 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2000828, + "thread": 17 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2144085, + "thread": 24 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2450803, + "thread": 0 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2583966, + "thread": 25 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2661701, + "thread": 14 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 2796593, + "thread": 23 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 3031005, + "thread": 20 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 3223815, + "thread": 1 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 3342405, + "thread": 11 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 3609539, + "thread": 24 + } + }, + { + "amount": "84.878731628", + "slot": { + "period": 3621122, + "thread": 10 + } + }, + { + "amount": "84.878731632", + "slot": { + "period": 3879529, + "thread": 9 + } + } + ], + "AU1cjftFxoZJsrYCUU93CvixQ1uDRE9buszyhvHNznhMG1xXPKEV": [ + { + "amount": "76.524482327", + "slot": { + "period": 130946, + "thread": 14 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 177895, + "thread": 23 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 416329, + "thread": 23 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 591416, + "thread": 3 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 745912, + "thread": 30 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 960408, + "thread": 4 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 989750, + "thread": 4 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 1256139, + "thread": 21 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 1437514, + "thread": 16 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 1594371, + "thread": 31 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 1697400, + "thread": 14 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 1966000, + "thread": 10 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2085890, + "thread": 20 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2286732, + "thread": 16 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2374014, + "thread": 26 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2550727, + "thread": 1 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2777045, + "thread": 17 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2833369, + "thread": 6 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 2995074, + "thread": 11 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 3272678, + "thread": 14 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 3389481, + "thread": 4 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 3556093, + "thread": 31 + } + }, + { + "amount": "76.524482327", + "slot": { + "period": 3773734, + "thread": 15 + } + }, + { + "amount": "76.524482332", + "slot": { + "period": 3916682, + "thread": 6 + } + } + ], + "AU1cjfw7AusrpaBHHcDxQJgxwGScDSrMQ9ZcRtXAAs9Y9Frqbhkq": [ + { + "amount": "137.678499607", + "slot": { + "period": 153528, + "thread": 2 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 196970, + "thread": 0 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 404784, + "thread": 29 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 615978, + "thread": 7 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 764182, + "thread": 10 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 825067, + "thread": 12 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1123641, + "thread": 29 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1308618, + "thread": 23 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1322618, + "thread": 26 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1504897, + "thread": 19 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1670627, + "thread": 2 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 1905443, + "thread": 7 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2072264, + "thread": 9 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2256896, + "thread": 27 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2300418, + "thread": 7 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2498734, + "thread": 0 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2737603, + "thread": 29 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2945475, + "thread": 20 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 2983630, + "thread": 14 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 3219383, + "thread": 20 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 3331136, + "thread": 13 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 3564020, + "thread": 6 + } + }, + { + "amount": "137.678499607", + "slot": { + "period": 3647713, + "thread": 7 + } + }, + { + "amount": "137.678499613", + "slot": { + "period": 3847234, + "thread": 17 + } + } + ], + "AU1cjnFGzcrX1KKz2PdnNuvnbg5uaAUSsf3cvyE1g3CXv4irp39M": [ + { + "amount": "104.871936928", + "slot": { + "period": 118601, + "thread": 31 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 321384, + "thread": 8 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 473567, + "thread": 27 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 629510, + "thread": 9 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 819499, + "thread": 15 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 897541, + "thread": 16 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1009887, + "thread": 26 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1290859, + "thread": 2 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1441441, + "thread": 14 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1635326, + "thread": 9 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1687165, + "thread": 20 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 1880494, + "thread": 22 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2120311, + "thread": 6 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2264359, + "thread": 17 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2355465, + "thread": 19 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2592505, + "thread": 15 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2687179, + "thread": 8 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 2837413, + "thread": 0 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 3038704, + "thread": 13 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 3258896, + "thread": 11 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 3441664, + "thread": 10 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 3609678, + "thread": 29 + } + }, + { + "amount": "104.871936928", + "slot": { + "period": 3656278, + "thread": 24 + } + }, + { + "amount": "104.871936923", + "slot": { + "period": 3871258, + "thread": 11 + } + } + ], + "AU1cjvswrwfkEny6Tkgu5hfH9Arh2Yoe7Yp8jUq58RENSoqvVWzN": [ + { + "amount": "246.222686530", + "slot": { + "period": 126176, + "thread": 30 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 219392, + "thread": 10 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 458713, + "thread": 19 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 621329, + "thread": 23 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 777056, + "thread": 1 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 852379, + "thread": 30 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1082315, + "thread": 9 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1248669, + "thread": 2 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1371848, + "thread": 23 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1482990, + "thread": 28 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1803438, + "thread": 5 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 1896367, + "thread": 19 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2018326, + "thread": 27 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2176149, + "thread": 7 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2348603, + "thread": 27 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2545776, + "thread": 7 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2772754, + "thread": 27 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 2910741, + "thread": 28 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 3020270, + "thread": 18 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 3238041, + "thread": 31 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 3392867, + "thread": 27 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 3468713, + "thread": 26 + } + }, + { + "amount": "246.222686530", + "slot": { + "period": 3644417, + "thread": 24 + } + }, + { + "amount": "246.222686527", + "slot": { + "period": 3882100, + "thread": 4 + } + } + ], + "AU1cm4kz1pMWx2MKMwjzAgS7mZQ16VMSfHx13V61YJJrDxAVUBA7": [ + { + "amount": "239.085439584", + "slot": { + "period": 33101, + "thread": 19 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 318893, + "thread": 28 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 435430, + "thread": 18 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 595875, + "thread": 28 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 734674, + "thread": 15 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 948042, + "thread": 25 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1079135, + "thread": 31 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1176016, + "thread": 23 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1401624, + "thread": 4 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1575588, + "thread": 19 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1696039, + "thread": 29 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 1891254, + "thread": 27 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2118567, + "thread": 2 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2250076, + "thread": 22 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2450506, + "thread": 3 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2552811, + "thread": 14 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2667759, + "thread": 0 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 2803062, + "thread": 5 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 3090713, + "thread": 3 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 3253219, + "thread": 25 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 3302910, + "thread": 20 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 3579505, + "thread": 18 + } + }, + { + "amount": "239.085439584", + "slot": { + "period": 3706259, + "thread": 31 + } + }, + { + "amount": "239.085439591", + "slot": { + "period": 3864011, + "thread": 29 + } + } + ], + "AU1cmUeN7vUc58VKVQUVnzgVukmPgkwUhnVUprmshCzJpmJopZMy": [ + { + "amount": "148.696083131", + "slot": { + "period": 32603, + "thread": 0 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 273089, + "thread": 8 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 329233, + "thread": 12 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 509358, + "thread": 10 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 695882, + "thread": 13 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 973084, + "thread": 9 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1134272, + "thread": 9 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1292304, + "thread": 12 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1456425, + "thread": 28 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1614418, + "thread": 3 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1684279, + "thread": 27 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 1901078, + "thread": 23 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2118565, + "thread": 28 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2161764, + "thread": 17 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2424027, + "thread": 12 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2527285, + "thread": 12 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2770399, + "thread": 2 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 2860635, + "thread": 17 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 3111026, + "thread": 14 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 3225705, + "thread": 24 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 3393718, + "thread": 3 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 3536213, + "thread": 8 + } + }, + { + "amount": "148.696083131", + "slot": { + "period": 3692122, + "thread": 28 + } + }, + { + "amount": "148.696083136", + "slot": { + "period": 3823270, + "thread": 29 + } + } + ], + "AU1cmbPJBuSWsG4Vqg1VM7cND7fZFdjrVQrj98McBeFwCytB3oGn": [ + { + "amount": "5833.333333333", + "slot": { + "period": 166989, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 275222, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 475155, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 566604, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 708596, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 921065, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1002732, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1151290, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1380769, + "thread": 18 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1483213, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1713526, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1953917, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1994472, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2253242, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2372373, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2531748, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2768443, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2791807, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3014705, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3170266, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3296496, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3605956, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3753425, + "thread": 25 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3919832, + "thread": 16 + } + } + ], + "AU1cmzyyJhDQBanLLQGfL2TiRT8BjtNZpWKbjwfqCQ8mYBhyVftw": [ + { + "amount": "335.857731276", + "slot": { + "period": 87407, + "thread": 31 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 172059, + "thread": 7 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 332825, + "thread": 2 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 588250, + "thread": 8 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 768675, + "thread": 29 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 929165, + "thread": 11 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1101947, + "thread": 18 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1217658, + "thread": 25 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1376325, + "thread": 2 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1610031, + "thread": 28 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1709289, + "thread": 22 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 1866167, + "thread": 4 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2101423, + "thread": 19 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2200642, + "thread": 21 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2412556, + "thread": 25 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2507211, + "thread": 4 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2695507, + "thread": 23 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 2843729, + "thread": 14 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 3070801, + "thread": 20 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 3222244, + "thread": 26 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 3316716, + "thread": 26 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 3591138, + "thread": 1 + } + }, + { + "amount": "335.857731276", + "slot": { + "period": 3690963, + "thread": 10 + } + }, + { + "amount": "335.857731277", + "slot": { + "period": 3938366, + "thread": 8 + } + } + ], + "AU1cn35uyFutMXJ8p4556RMjjWagQ5x2Yv71NWa67NdgvooUAydi": [ + { + "amount": "193.592685798", + "slot": { + "period": 69018, + "thread": 4 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 199498, + "thread": 14 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 379545, + "thread": 9 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 551798, + "thread": 31 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 658906, + "thread": 4 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 903933, + "thread": 15 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1099442, + "thread": 22 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1177637, + "thread": 17 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1323636, + "thread": 25 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1572960, + "thread": 5 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1803087, + "thread": 27 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 1839444, + "thread": 29 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2141921, + "thread": 1 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2266506, + "thread": 20 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2300023, + "thread": 12 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2528019, + "thread": 28 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2719966, + "thread": 23 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 2829655, + "thread": 3 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 3066425, + "thread": 17 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 3163521, + "thread": 30 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 3423813, + "thread": 14 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 3555887, + "thread": 5 + } + }, + { + "amount": "193.592685798", + "slot": { + "period": 3736822, + "thread": 5 + } + }, + { + "amount": "193.592685791", + "slot": { + "period": 3908100, + "thread": 29 + } + } + ], + "AU1cnVtdmrJBx3q7Xq8FBpDJ2tchyR9Kwt6fBm4TqAPjMSCFNyYj": [ + { + "amount": "69.661885630", + "slot": { + "period": 61775, + "thread": 9 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 176876, + "thread": 15 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 466049, + "thread": 26 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 539853, + "thread": 22 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 768778, + "thread": 8 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 922516, + "thread": 14 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1072912, + "thread": 26 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1192207, + "thread": 16 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1321466, + "thread": 14 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1604335, + "thread": 4 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1688694, + "thread": 0 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 1870114, + "thread": 20 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2113414, + "thread": 10 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2227508, + "thread": 3 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2311808, + "thread": 19 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2468288, + "thread": 19 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2765115, + "thread": 25 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2846062, + "thread": 16 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 2970305, + "thread": 25 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 3258207, + "thread": 12 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 3383825, + "thread": 21 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 3570311, + "thread": 28 + } + }, + { + "amount": "69.661885630", + "slot": { + "period": 3734001, + "thread": 16 + } + }, + { + "amount": "69.661885626", + "slot": { + "period": 3862225, + "thread": 15 + } + } + ], + "AU1cnbmvZ2acTknZEbpppDUPSrttx8xzWN7fxgqFJASAxE6kgUCL": [ + { + "amount": "258.781152687", + "slot": { + "period": 117419, + "thread": 21 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 290516, + "thread": 8 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 429813, + "thread": 23 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 494991, + "thread": 19 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 687644, + "thread": 9 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 847151, + "thread": 26 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1011780, + "thread": 8 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1297829, + "thread": 22 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1428205, + "thread": 9 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1560438, + "thread": 25 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1761018, + "thread": 20 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 1851012, + "thread": 13 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2103669, + "thread": 4 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2263417, + "thread": 8 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2420361, + "thread": 14 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2578477, + "thread": 31 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2772190, + "thread": 21 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2890577, + "thread": 18 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 2974270, + "thread": 6 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 3183095, + "thread": 24 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 3416981, + "thread": 26 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 3580845, + "thread": 24 + } + }, + { + "amount": "258.781152687", + "slot": { + "period": 3702983, + "thread": 22 + } + }, + { + "amount": "258.781152696", + "slot": { + "period": 3789657, + "thread": 9 + } + } + ], + "AU1cp6KfGj58TpPdxk5NSC4psPDKXSQFK4YrteLfECp2S9FqF4mq": [ + { + "amount": "139.145003323", + "slot": { + "period": 88109, + "thread": 4 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 232785, + "thread": 30 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 331071, + "thread": 29 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 561130, + "thread": 10 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 741244, + "thread": 23 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 949120, + "thread": 6 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1009673, + "thread": 31 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1200639, + "thread": 14 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1340677, + "thread": 28 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1534667, + "thread": 25 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1793169, + "thread": 24 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 1829291, + "thread": 24 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2094886, + "thread": 27 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2292666, + "thread": 31 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2298553, + "thread": 16 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2542154, + "thread": 28 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2649044, + "thread": 0 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 2909233, + "thread": 6 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3091867, + "thread": 7 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3210764, + "thread": 31 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3371162, + "thread": 26 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3616586, + "thread": 21 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3726096, + "thread": 14 + } + }, + { + "amount": "139.145003323", + "slot": { + "period": 3848349, + "thread": 20 + } + } + ], + "AU1cpD6KaKhb9a8AkxXjptFCkm5EoF4UsNhuedd6QHHNxAvNXDdG": [ + { + "amount": "142.529429749", + "slot": { + "period": 23204, + "thread": 14 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 313665, + "thread": 18 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 461193, + "thread": 29 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 513860, + "thread": 21 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 759495, + "thread": 12 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 884278, + "thread": 4 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1132342, + "thread": 30 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1226489, + "thread": 11 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1384495, + "thread": 17 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1642272, + "thread": 8 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1683686, + "thread": 20 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1950335, + "thread": 0 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 1991313, + "thread": 3 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 2258947, + "thread": 21 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 2383262, + "thread": 16 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 2465162, + "thread": 8 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 2697101, + "thread": 17 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 2934731, + "thread": 6 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 3102625, + "thread": 29 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 3183407, + "thread": 28 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 3322911, + "thread": 0 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 3461259, + "thread": 3 + } + }, + { + "amount": "142.529429749", + "slot": { + "period": 3667919, + "thread": 26 + } + }, + { + "amount": "142.529429750", + "slot": { + "period": 3798053, + "thread": 11 + } + } + ], + "AU1cpUE6xt9MW8ftVfVS9R8B6ppKkv27sZRmfdjykoBiHBgdoQah": [ + { + "amount": "118.487137803", + "slot": { + "period": 82540, + "thread": 23 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 189514, + "thread": 18 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 460194, + "thread": 16 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 509684, + "thread": 1 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 672421, + "thread": 23 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 831912, + "thread": 4 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1034681, + "thread": 26 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1195330, + "thread": 29 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1377395, + "thread": 24 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1532853, + "thread": 9 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1730478, + "thread": 13 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 1956396, + "thread": 6 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2142404, + "thread": 17 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2170265, + "thread": 31 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2371609, + "thread": 10 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2546510, + "thread": 25 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2772340, + "thread": 3 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 2941970, + "thread": 5 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 3111750, + "thread": 10 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 3197729, + "thread": 6 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 3348379, + "thread": 4 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 3554322, + "thread": 9 + } + }, + { + "amount": "118.487137803", + "slot": { + "period": 3761854, + "thread": 24 + } + }, + { + "amount": "118.487137807", + "slot": { + "period": 3946363, + "thread": 5 + } + } + ], + "AU1cpa5oBcVCJ1jdGaZhU4vE7zkMVkcQAa5PruPFuTYiiTJfSzJN": [ + { + "amount": "162.388978676", + "slot": { + "period": 79086, + "thread": 16 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 262078, + "thread": 1 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 423060, + "thread": 30 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 562065, + "thread": 29 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 654928, + "thread": 8 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 938874, + "thread": 21 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1006887, + "thread": 14 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1151187, + "thread": 5 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1335190, + "thread": 1 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1499520, + "thread": 17 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1748584, + "thread": 9 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 1928496, + "thread": 11 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2136246, + "thread": 16 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2213626, + "thread": 22 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2350105, + "thread": 1 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2463800, + "thread": 5 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2766103, + "thread": 7 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2879375, + "thread": 24 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 2961984, + "thread": 31 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 3143361, + "thread": 13 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 3427834, + "thread": 4 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 3539786, + "thread": 24 + } + }, + { + "amount": "162.388978676", + "slot": { + "period": 3727827, + "thread": 21 + } + }, + { + "amount": "162.388978672", + "slot": { + "period": 3805726, + "thread": 25 + } + } + ], + "AU1cpr77DbkmY9Gv6hcyWTZabs5pDPawN2ttREZLAheY475c5Ttr": [ + { + "amount": "218.930928824", + "slot": { + "period": 142115, + "thread": 0 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 205068, + "thread": 31 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 351420, + "thread": 4 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 513992, + "thread": 7 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 744112, + "thread": 7 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 939709, + "thread": 5 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1149641, + "thread": 23 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1241470, + "thread": 17 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1400901, + "thread": 17 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1574487, + "thread": 29 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1773761, + "thread": 17 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 1853934, + "thread": 15 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2071292, + "thread": 5 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2148942, + "thread": 14 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2348726, + "thread": 4 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2500296, + "thread": 7 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2744721, + "thread": 25 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 2883345, + "thread": 1 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 3038275, + "thread": 5 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 3181569, + "thread": 16 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 3325496, + "thread": 15 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 3562032, + "thread": 25 + } + }, + { + "amount": "218.930928824", + "slot": { + "period": 3712555, + "thread": 22 + } + }, + { + "amount": "218.930928821", + "slot": { + "period": 3849004, + "thread": 21 + } + } + ], + "AU1cqnSTEQcwm5Y1S3fFTy7u14jwqCBDjCjWXsrc6hrwsm6Xwmw3": [ + { + "amount": "353.368647921", + "slot": { + "period": 65295, + "thread": 17 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 211664, + "thread": 18 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 432751, + "thread": 0 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 573480, + "thread": 12 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 717905, + "thread": 25 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 952939, + "thread": 15 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1075045, + "thread": 4 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1251461, + "thread": 0 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1455600, + "thread": 4 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1568665, + "thread": 20 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1695568, + "thread": 30 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 1865262, + "thread": 31 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2054133, + "thread": 19 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2154028, + "thread": 16 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2365122, + "thread": 27 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2564776, + "thread": 17 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2644103, + "thread": 30 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 2942071, + "thread": 5 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 3039259, + "thread": 23 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 3171590, + "thread": 8 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 3380571, + "thread": 5 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 3572280, + "thread": 6 + } + }, + { + "amount": "353.368647921", + "slot": { + "period": 3723822, + "thread": 14 + } + }, + { + "amount": "353.368647913", + "slot": { + "period": 3877986, + "thread": 26 + } + } + ], + "AU1crknXGFs8HJSz9Xztur2kFBGLrzQ8LAFiYmt1RGhw8HWqeVem": [ + { + "amount": "133.586794867", + "slot": { + "period": 64349, + "thread": 27 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 314194, + "thread": 24 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 438101, + "thread": 3 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 589714, + "thread": 20 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 693122, + "thread": 21 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 864874, + "thread": 7 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1133533, + "thread": 6 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1244589, + "thread": 0 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1406035, + "thread": 6 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1618371, + "thread": 22 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1681555, + "thread": 27 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 1888410, + "thread": 30 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2049608, + "thread": 23 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2282945, + "thread": 27 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2378997, + "thread": 24 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2536712, + "thread": 5 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2773028, + "thread": 19 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 2863647, + "thread": 19 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 3118614, + "thread": 21 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 3281853, + "thread": 3 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 3319777, + "thread": 27 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 3510981, + "thread": 21 + } + }, + { + "amount": "133.586794867", + "slot": { + "period": 3689999, + "thread": 4 + } + }, + { + "amount": "133.586794864", + "slot": { + "period": 3797123, + "thread": 19 + } + } + ], + "AU1crw4PNJxxGvYvttxhko23st8Tb19zExjtWNwv5bUdpPYoggrh": [ + { + "amount": "103.377423396", + "slot": { + "period": 97710, + "thread": 30 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 231312, + "thread": 20 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 399055, + "thread": 4 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 509953, + "thread": 3 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 659662, + "thread": 8 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 877855, + "thread": 21 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1099885, + "thread": 31 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1233139, + "thread": 24 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1345245, + "thread": 30 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1600908, + "thread": 19 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1794869, + "thread": 16 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 1858959, + "thread": 11 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2024466, + "thread": 10 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2223050, + "thread": 31 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2351660, + "thread": 16 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2608570, + "thread": 17 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2743366, + "thread": 28 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 2941872, + "thread": 6 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 3001172, + "thread": 25 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 3199587, + "thread": 30 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 3357710, + "thread": 0 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 3553631, + "thread": 18 + } + }, + { + "amount": "103.377423396", + "slot": { + "period": 3656180, + "thread": 6 + } + }, + { + "amount": "103.377423385", + "slot": { + "period": 3879926, + "thread": 27 + } + } + ], + "AU1csX8WXcSER2iFpjsgJJHeNiUHoBVERvQu9ZnTKEgrUaYp4oGm": [ + { + "amount": "142.951362728", + "slot": { + "period": 55705, + "thread": 15 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 282115, + "thread": 17 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 380235, + "thread": 1 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 650778, + "thread": 13 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 733797, + "thread": 29 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 925243, + "thread": 27 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1117637, + "thread": 1 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1188629, + "thread": 26 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1419735, + "thread": 22 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1638796, + "thread": 18 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1782432, + "thread": 5 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 1863646, + "thread": 0 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2088060, + "thread": 10 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2282761, + "thread": 4 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2461218, + "thread": 14 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2468265, + "thread": 23 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2696801, + "thread": 17 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2821519, + "thread": 22 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 2973374, + "thread": 28 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 3283919, + "thread": 0 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 3405333, + "thread": 21 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 3476734, + "thread": 30 + } + }, + { + "amount": "142.951362728", + "slot": { + "period": 3752117, + "thread": 27 + } + }, + { + "amount": "142.951362725", + "slot": { + "period": 3804082, + "thread": 17 + } + } + ], + "AU1cseHSWYjPgTRVcE8SDWL1TvxKf71cUibKSuyHn99DYGcghvFn": [ + { + "amount": "93.121765137", + "slot": { + "period": 62856, + "thread": 22 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 288499, + "thread": 26 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 443184, + "thread": 27 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 535520, + "thread": 3 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 779755, + "thread": 26 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 957158, + "thread": 23 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1101296, + "thread": 20 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1173874, + "thread": 26 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1380782, + "thread": 13 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1523435, + "thread": 12 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1774344, + "thread": 9 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 1844229, + "thread": 3 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2108535, + "thread": 6 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2181034, + "thread": 5 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2390159, + "thread": 27 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2467800, + "thread": 31 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2670251, + "thread": 10 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 2826068, + "thread": 27 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 3008794, + "thread": 30 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 3198409, + "thread": 7 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 3401543, + "thread": 2 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 3526193, + "thread": 18 + } + }, + { + "amount": "93.121765137", + "slot": { + "period": 3757734, + "thread": 25 + } + }, + { + "amount": "93.121765130", + "slot": { + "period": 3860754, + "thread": 9 + } + } + ], + "AU1cseKQf58LKdqLxkXT17MjtbAT3PApvGGXA234MUPKY61f1ztd": [ + { + "amount": "145.780556756", + "slot": { + "period": 68879, + "thread": 24 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 222862, + "thread": 3 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 370710, + "thread": 9 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 598941, + "thread": 11 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 733676, + "thread": 7 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 926943, + "thread": 19 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1092889, + "thread": 9 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1195835, + "thread": 6 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1429658, + "thread": 27 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1511289, + "thread": 26 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1667945, + "thread": 28 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 1918449, + "thread": 19 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2050976, + "thread": 13 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2248782, + "thread": 21 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2363339, + "thread": 22 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2497041, + "thread": 21 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2681995, + "thread": 16 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 2943022, + "thread": 10 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 3028520, + "thread": 15 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 3246753, + "thread": 3 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 3314377, + "thread": 28 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 3478057, + "thread": 18 + } + }, + { + "amount": "145.780556756", + "slot": { + "period": 3744989, + "thread": 5 + } + }, + { + "amount": "145.780556758", + "slot": { + "period": 3864610, + "thread": 22 + } + } + ], + "AU1cuiFGPVwuh7MQRuth2dYzg8xvGp73UUmS8LedvAmbg1iMCgrx": [ + { + "amount": "291.415011637", + "slot": { + "period": 37389, + "thread": 30 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 301221, + "thread": 8 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 462095, + "thread": 13 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 524618, + "thread": 0 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 701132, + "thread": 27 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 927029, + "thread": 2 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 984474, + "thread": 28 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1274401, + "thread": 28 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1391495, + "thread": 8 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1588586, + "thread": 26 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1787418, + "thread": 26 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1860081, + "thread": 8 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 1999993, + "thread": 1 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 2244691, + "thread": 10 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 2312778, + "thread": 9 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 2477541, + "thread": 16 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 2739105, + "thread": 15 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 2853447, + "thread": 22 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 3003612, + "thread": 4 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 3184194, + "thread": 3 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 3308279, + "thread": 13 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 3507164, + "thread": 19 + } + }, + { + "amount": "291.415011637", + "slot": { + "period": 3620854, + "thread": 30 + } + }, + { + "amount": "291.415011633", + "slot": { + "period": 3793236, + "thread": 6 + } + } + ], + "AU1cujwBiD7ACigYcsrzDEuH4vm1TERBabQ3twCWLQs21eDJ5PUR": [ + { + "amount": "131.692044378", + "slot": { + "period": 46574, + "thread": 28 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 189674, + "thread": 15 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 396737, + "thread": 7 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 560636, + "thread": 16 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 777765, + "thread": 29 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 978727, + "thread": 19 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1109334, + "thread": 16 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1227804, + "thread": 17 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1322873, + "thread": 17 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1482260, + "thread": 6 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1746783, + "thread": 8 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 1918905, + "thread": 28 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2044220, + "thread": 19 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2274720, + "thread": 5 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2398962, + "thread": 21 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2479028, + "thread": 17 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2760050, + "thread": 4 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2944625, + "thread": 16 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 2985097, + "thread": 15 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 3279820, + "thread": 22 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 3359429, + "thread": 9 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 3486250, + "thread": 23 + } + }, + { + "amount": "131.692044378", + "slot": { + "period": 3743700, + "thread": 13 + } + }, + { + "amount": "131.692044385", + "slot": { + "period": 3839588, + "thread": 20 + } + } + ], + "AU1cusNiFqZqVEeE2fHgKMKsH6xjyjDQ8WkQv9vEqj1BHRqtMBSD": [ + { + "amount": "442.532578172", + "slot": { + "period": 43475, + "thread": 7 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 300644, + "thread": 23 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 450609, + "thread": 1 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 545500, + "thread": 26 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 760125, + "thread": 17 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 973387, + "thread": 4 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1118974, + "thread": 24 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1293720, + "thread": 23 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1461181, + "thread": 18 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1562779, + "thread": 5 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1702543, + "thread": 6 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 1859340, + "thread": 31 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2056198, + "thread": 17 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2249005, + "thread": 20 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2460858, + "thread": 26 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2590482, + "thread": 6 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2708527, + "thread": 2 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 2861555, + "thread": 14 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 3009758, + "thread": 11 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 3201887, + "thread": 19 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 3350838, + "thread": 7 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 3604233, + "thread": 15 + } + }, + { + "amount": "442.532578172", + "slot": { + "period": 3742567, + "thread": 12 + } + }, + { + "amount": "442.532578162", + "slot": { + "period": 3941455, + "thread": 21 + } + } + ], + "AU1cvPEjrD2d61Kym9VzLFYw1M5JfQxDKELXbkpQTjAXqi89UXyV": [ + { + "amount": "423.542473974", + "slot": { + "period": 51720, + "thread": 0 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 205712, + "thread": 26 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 357609, + "thread": 30 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 581907, + "thread": 21 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 794191, + "thread": 2 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 852721, + "thread": 21 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 984641, + "thread": 31 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 1270590, + "thread": 25 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 1360790, + "thread": 23 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 1483546, + "thread": 2 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 1765469, + "thread": 19 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 1970953, + "thread": 28 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2098170, + "thread": 24 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2284318, + "thread": 16 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2436967, + "thread": 3 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2583282, + "thread": 25 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2700323, + "thread": 1 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 2824445, + "thread": 27 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 3055241, + "thread": 15 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 3171338, + "thread": 24 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 3345905, + "thread": 17 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 3601148, + "thread": 25 + } + }, + { + "amount": "423.542473974", + "slot": { + "period": 3762992, + "thread": 22 + } + }, + { + "amount": "423.542473970", + "slot": { + "period": 3854792, + "thread": 9 + } + } + ], + "AU1cvQcFn5r8VKFizkbDpFRqnJ1Rf3H3nWJbaLWioFyTteSCD6To": [ + { + "amount": "269.004584865", + "slot": { + "period": 98876, + "thread": 16 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 171033, + "thread": 25 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 347993, + "thread": 31 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 520939, + "thread": 7 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 665541, + "thread": 0 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 849426, + "thread": 29 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1059720, + "thread": 24 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1237617, + "thread": 9 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1341052, + "thread": 2 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1611737, + "thread": 20 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1784629, + "thread": 29 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 1874312, + "thread": 9 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2087692, + "thread": 30 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2257567, + "thread": 2 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2392560, + "thread": 15 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2609743, + "thread": 20 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2789205, + "thread": 16 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 2801327, + "thread": 26 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 3058962, + "thread": 30 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 3253944, + "thread": 31 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 3325149, + "thread": 21 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 3506244, + "thread": 7 + } + }, + { + "amount": "269.004584865", + "slot": { + "period": 3775065, + "thread": 24 + } + }, + { + "amount": "269.004584874", + "slot": { + "period": 3928678, + "thread": 12 + } + } + ], + "AU1cvaFncyWkVbcnHe3Tk3vTXXr7iYYyu9o8PtMBxZdK2MedHH8S": [ + { + "amount": "130.646747069", + "slot": { + "period": 76849, + "thread": 28 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 270133, + "thread": 9 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 375007, + "thread": 25 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 527649, + "thread": 0 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 736463, + "thread": 2 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 907402, + "thread": 20 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1058626, + "thread": 19 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1254401, + "thread": 23 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1392820, + "thread": 0 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1605035, + "thread": 17 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1741606, + "thread": 29 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 1931518, + "thread": 13 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2007227, + "thread": 6 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2245956, + "thread": 30 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2301580, + "thread": 16 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2490775, + "thread": 20 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2668411, + "thread": 9 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 2794603, + "thread": 25 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 3052945, + "thread": 31 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 3189275, + "thread": 31 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 3443190, + "thread": 21 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 3483063, + "thread": 11 + } + }, + { + "amount": "130.646747069", + "slot": { + "period": 3646254, + "thread": 0 + } + }, + { + "amount": "130.646747070", + "slot": { + "period": 3853074, + "thread": 23 + } + } + ], + "AU1cwDwP6Agb7vELq7xheDVM8xpiZiCZNEVuhKp5WTEMUZpPxZJ4": [ + { + "amount": "209.988645129", + "slot": { + "period": 152424, + "thread": 15 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 178433, + "thread": 26 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 479143, + "thread": 5 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 539463, + "thread": 31 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 664826, + "thread": 20 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 946931, + "thread": 16 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1041989, + "thread": 26 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1315071, + "thread": 15 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1435537, + "thread": 14 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1559786, + "thread": 18 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1708456, + "thread": 12 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 1937170, + "thread": 9 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2081735, + "thread": 2 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2191982, + "thread": 8 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2402240, + "thread": 6 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2565502, + "thread": 30 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2676893, + "thread": 29 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2836623, + "thread": 22 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 2997046, + "thread": 3 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 3146857, + "thread": 9 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 3306267, + "thread": 27 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 3560549, + "thread": 27 + } + }, + { + "amount": "209.988645129", + "slot": { + "period": 3688129, + "thread": 13 + } + }, + { + "amount": "209.988645127", + "slot": { + "period": 3780985, + "thread": 31 + } + } + ], + "AU1cxcMci572bA9FSzMJxvJ9YRPTdczPH2SCuphiMMAx5twBt2vm": [ + { + "amount": "334.988506516", + "slot": { + "period": 129074, + "thread": 12 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 199411, + "thread": 22 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 430089, + "thread": 10 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 579864, + "thread": 0 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 786723, + "thread": 25 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 946937, + "thread": 8 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1044178, + "thread": 8 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1223639, + "thread": 28 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1330424, + "thread": 19 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1549542, + "thread": 28 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1656142, + "thread": 19 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 1925839, + "thread": 19 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2115352, + "thread": 16 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2279986, + "thread": 15 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2379001, + "thread": 3 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2576407, + "thread": 0 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2652435, + "thread": 13 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 2798337, + "thread": 1 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 3027096, + "thread": 21 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 3146292, + "thread": 3 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 3297251, + "thread": 25 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 3555364, + "thread": 21 + } + }, + { + "amount": "334.988506516", + "slot": { + "period": 3699390, + "thread": 2 + } + }, + { + "amount": "334.988506522", + "slot": { + "period": 3790386, + "thread": 24 + } + } + ], + "AU1cxfEJZkVCHMNWMbbzTzMKEg4mcg2sPpDih7H9CzLHemT32s8U": [ + { + "amount": "194.027137121", + "slot": { + "period": 166635, + "thread": 1 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 296518, + "thread": 7 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 413401, + "thread": 9 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 492948, + "thread": 13 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 666652, + "thread": 7 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 911797, + "thread": 13 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 989264, + "thread": 18 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 1277400, + "thread": 1 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 1440637, + "thread": 25 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 1539628, + "thread": 16 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 1742658, + "thread": 29 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 1825527, + "thread": 31 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2073848, + "thread": 11 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2252375, + "thread": 24 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2334512, + "thread": 5 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2593753, + "thread": 20 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2739069, + "thread": 19 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2803747, + "thread": 3 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 2970748, + "thread": 27 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 3232498, + "thread": 5 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 3416937, + "thread": 6 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 3566141, + "thread": 8 + } + }, + { + "amount": "194.027137121", + "slot": { + "period": 3756487, + "thread": 22 + } + }, + { + "amount": "194.027137111", + "slot": { + "period": 3944589, + "thread": 6 + } + } + ], + "AU1cy5RWnHsj4SsfwA6tiYPdCk4znXNMFUSKngKWckayXaM16xFq": [ + { + "amount": "201.204113416", + "slot": { + "period": 29934, + "thread": 9 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 193558, + "thread": 10 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 329797, + "thread": 21 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 557327, + "thread": 28 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 759983, + "thread": 31 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 885048, + "thread": 1 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1081138, + "thread": 19 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1247571, + "thread": 30 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1439367, + "thread": 30 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1515825, + "thread": 20 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1688818, + "thread": 8 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 1836531, + "thread": 9 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2028680, + "thread": 15 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2191966, + "thread": 16 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2447591, + "thread": 17 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2528323, + "thread": 27 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2641775, + "thread": 1 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 2876855, + "thread": 6 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 3112458, + "thread": 30 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 3234724, + "thread": 15 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 3422187, + "thread": 2 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 3563713, + "thread": 10 + } + }, + { + "amount": "201.204113416", + "slot": { + "period": 3769519, + "thread": 10 + } + }, + { + "amount": "201.204113408", + "slot": { + "period": 3870600, + "thread": 5 + } + } + ], + "AU1czrdB5VBNYpjg3BziGPPbbjZastfYa1BcPzEKcsXuNNrwVuqp": [ + { + "amount": "115.692132970", + "slot": { + "period": 148584, + "thread": 2 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 282155, + "thread": 5 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 369954, + "thread": 25 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 509401, + "thread": 19 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 818536, + "thread": 22 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 848717, + "thread": 4 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1044647, + "thread": 10 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1274515, + "thread": 18 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1327001, + "thread": 7 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1593868, + "thread": 1 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1655103, + "thread": 20 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 1821303, + "thread": 18 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2034300, + "thread": 11 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2281937, + "thread": 17 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2334859, + "thread": 12 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2619995, + "thread": 30 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2790633, + "thread": 14 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 2919870, + "thread": 16 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 3030844, + "thread": 10 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 3255515, + "thread": 18 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 3293975, + "thread": 16 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 3461812, + "thread": 25 + } + }, + { + "amount": "115.692132970", + "slot": { + "period": 3704104, + "thread": 5 + } + }, + { + "amount": "115.692132974", + "slot": { + "period": 3781812, + "thread": 2 + } + } + ], + "AU1czuyMKk4Etqvi4kddDvdUPnmG67Hza8X1Z7xqL3LJ6oLGmYEu": [ + { + "amount": "260.209946758", + "slot": { + "period": 156414, + "thread": 1 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 198840, + "thread": 19 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 406523, + "thread": 16 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 517811, + "thread": 4 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 720487, + "thread": 27 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 919309, + "thread": 20 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1114886, + "thread": 2 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1154621, + "thread": 15 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1463325, + "thread": 2 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1601149, + "thread": 11 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1715958, + "thread": 25 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 1960378, + "thread": 9 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2104065, + "thread": 17 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2188218, + "thread": 14 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2330758, + "thread": 17 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2533067, + "thread": 29 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2773132, + "thread": 19 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 2843963, + "thread": 5 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 3100147, + "thread": 6 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 3146222, + "thread": 14 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 3293426, + "thread": 7 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 3463770, + "thread": 4 + } + }, + { + "amount": "260.209946758", + "slot": { + "period": 3651948, + "thread": 20 + } + }, + { + "amount": "260.209946767", + "slot": { + "period": 3790870, + "thread": 20 + } + } + ], + "AU1czwBmmaGBYajHGeiSavHTsBb4R1XfmqhJSowQ1WyDkDhhCKr5": [ + { + "amount": "145.107905469", + "slot": { + "period": 94169, + "thread": 16 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 188043, + "thread": 1 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 351878, + "thread": 29 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 493491, + "thread": 12 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 728936, + "thread": 19 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 859804, + "thread": 8 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1040385, + "thread": 22 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1301997, + "thread": 18 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1424853, + "thread": 28 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1530280, + "thread": 0 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1777480, + "thread": 23 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 1971422, + "thread": 15 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2106599, + "thread": 29 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2278321, + "thread": 28 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2319755, + "thread": 1 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2473367, + "thread": 7 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2700345, + "thread": 8 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 2876986, + "thread": 2 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 3083483, + "thread": 31 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 3213545, + "thread": 9 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 3357763, + "thread": 1 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 3582297, + "thread": 13 + } + }, + { + "amount": "145.107905469", + "slot": { + "period": 3756813, + "thread": 11 + } + }, + { + "amount": "145.107905464", + "slot": { + "period": 3855187, + "thread": 16 + } + } + ], + "AU1d2b1yomezqAQ8J7nNPikYjJ36kNhUKBWJbUgg5Sq8cnd6vsQo": [ + { + "amount": "195.221305152", + "slot": { + "period": 67068, + "thread": 30 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 210482, + "thread": 25 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 451916, + "thread": 28 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 645596, + "thread": 16 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 729532, + "thread": 29 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 936292, + "thread": 9 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1070386, + "thread": 3 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1286574, + "thread": 16 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1436238, + "thread": 19 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1513071, + "thread": 11 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1751149, + "thread": 25 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 1854388, + "thread": 16 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2098780, + "thread": 21 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2229848, + "thread": 25 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2447030, + "thread": 23 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2487556, + "thread": 1 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2745609, + "thread": 8 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 2792141, + "thread": 21 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 3007558, + "thread": 2 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 3170192, + "thread": 22 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 3409975, + "thread": 4 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 3594168, + "thread": 22 + } + }, + { + "amount": "195.221305152", + "slot": { + "period": 3739819, + "thread": 2 + } + }, + { + "amount": "195.221305163", + "slot": { + "period": 3875607, + "thread": 21 + } + } + ], + "AU1d2gKcbMaM6jUQN2DXf7AJ9qxXPHcr1ZjrMWp4PXkFiodHDzu3": [ + { + "amount": "486.933607730", + "slot": { + "period": 146673, + "thread": 20 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 197730, + "thread": 30 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 478272, + "thread": 3 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 508701, + "thread": 5 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 778661, + "thread": 22 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 861977, + "thread": 21 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1123975, + "thread": 9 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1313265, + "thread": 23 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1402627, + "thread": 2 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1635751, + "thread": 5 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1703465, + "thread": 27 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 1925298, + "thread": 4 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2091550, + "thread": 31 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2191943, + "thread": 17 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2405218, + "thread": 19 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2519449, + "thread": 7 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2694988, + "thread": 4 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2948317, + "thread": 13 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 2987331, + "thread": 25 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 3261828, + "thread": 13 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 3306720, + "thread": 27 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 3530713, + "thread": 20 + } + }, + { + "amount": "486.933607730", + "slot": { + "period": 3777701, + "thread": 14 + } + }, + { + "amount": "486.933607723", + "slot": { + "period": 3887979, + "thread": 28 + } + } + ], + "AU1d3UbqwETJM88gJnRUjMsVGxxypgA4PZjBCu3iSykbvZ9kdU4r": [ + { + "amount": "108.021626152", + "slot": { + "period": 105158, + "thread": 7 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 296915, + "thread": 30 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 461413, + "thread": 3 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 566667, + "thread": 22 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 802870, + "thread": 11 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 868967, + "thread": 16 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1106434, + "thread": 10 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1317517, + "thread": 10 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1351790, + "thread": 11 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1624433, + "thread": 4 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1666499, + "thread": 7 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 1913255, + "thread": 11 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2059894, + "thread": 14 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2212003, + "thread": 8 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2297592, + "thread": 29 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2597469, + "thread": 18 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2666851, + "thread": 1 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 2792256, + "thread": 6 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 3106754, + "thread": 9 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 3141492, + "thread": 3 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 3386764, + "thread": 10 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 3490849, + "thread": 14 + } + }, + { + "amount": "108.021626152", + "slot": { + "period": 3706470, + "thread": 28 + } + }, + { + "amount": "108.021626158", + "slot": { + "period": 3899724, + "thread": 27 + } + } + ], + "AU1d4QacMgnzpBWfkVXpQ3uT2pGQDPH1UX2GLDAftUcEqNpMqXin": [ + { + "amount": "461.241305614", + "slot": { + "period": 78131, + "thread": 3 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 296966, + "thread": 20 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 381834, + "thread": 16 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 589575, + "thread": 9 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 766460, + "thread": 9 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 872824, + "thread": 7 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1121622, + "thread": 16 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1301823, + "thread": 6 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1326500, + "thread": 10 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1614449, + "thread": 11 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1788017, + "thread": 14 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 1888507, + "thread": 5 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2127007, + "thread": 9 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2218626, + "thread": 9 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2446513, + "thread": 6 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2567675, + "thread": 13 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2741362, + "thread": 11 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 2830365, + "thread": 30 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 3023230, + "thread": 29 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 3216273, + "thread": 16 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 3449722, + "thread": 14 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 3478660, + "thread": 19 + } + }, + { + "amount": "461.241305614", + "slot": { + "period": 3720189, + "thread": 23 + } + }, + { + "amount": "461.241305615", + "slot": { + "period": 3942720, + "thread": 13 + } + } + ], + "AU1d69UiW8HPXPDHqPJ2QWpw4NGA6wchMv7TLaLKhGkiBJxLBvSM": [ + { + "amount": "327.000195533", + "slot": { + "period": 134385, + "thread": 14 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 244056, + "thread": 23 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 394085, + "thread": 22 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 507058, + "thread": 7 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 703788, + "thread": 24 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 851548, + "thread": 25 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1106848, + "thread": 9 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1246487, + "thread": 18 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1461004, + "thread": 0 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1645557, + "thread": 12 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1762659, + "thread": 28 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 1854328, + "thread": 5 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2041543, + "thread": 31 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2155383, + "thread": 12 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2429769, + "thread": 9 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2524108, + "thread": 10 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2732438, + "thread": 20 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 2893756, + "thread": 16 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 3101559, + "thread": 7 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 3202638, + "thread": 19 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 3396772, + "thread": 30 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 3504236, + "thread": 2 + } + }, + { + "amount": "327.000195533", + "slot": { + "period": 3715716, + "thread": 15 + } + }, + { + "amount": "327.000195523", + "slot": { + "period": 3830156, + "thread": 21 + } + } + ], + "AU1d6RrAZxQq6YB8yfeVgbbhTRAud26BekkrRE8SBHGeW1UL6bXE": [ + { + "amount": "57.169118885", + "slot": { + "period": 109200, + "thread": 14 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 304122, + "thread": 21 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 436278, + "thread": 9 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 544357, + "thread": 5 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 692138, + "thread": 9 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 975983, + "thread": 20 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1051047, + "thread": 10 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1164636, + "thread": 31 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1400687, + "thread": 23 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1520401, + "thread": 16 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1715279, + "thread": 23 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 1814457, + "thread": 16 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2073277, + "thread": 18 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2227689, + "thread": 21 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2413633, + "thread": 5 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2526059, + "thread": 8 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2687657, + "thread": 17 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 2825790, + "thread": 21 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 3055234, + "thread": 27 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 3215852, + "thread": 3 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 3307635, + "thread": 9 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 3547753, + "thread": 31 + } + }, + { + "amount": "57.169118885", + "slot": { + "period": 3665439, + "thread": 31 + } + }, + { + "amount": "57.169118896", + "slot": { + "period": 3844420, + "thread": 14 + } + } + ], + "AU1d6yuj9uDt2KAYAQmH9So6WvZwYmZBvBdqFNiTCpADsbHmTQqH": [ + { + "amount": "235.622722381", + "slot": { + "period": 11641, + "thread": 2 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 302759, + "thread": 12 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 402396, + "thread": 20 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 596365, + "thread": 7 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 783702, + "thread": 11 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 892787, + "thread": 17 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1136310, + "thread": 13 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1166762, + "thread": 7 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1427563, + "thread": 6 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1598373, + "thread": 31 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1792156, + "thread": 14 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 1967850, + "thread": 17 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2076356, + "thread": 22 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2273256, + "thread": 1 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2452106, + "thread": 4 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2597615, + "thread": 21 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2653852, + "thread": 8 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2806120, + "thread": 21 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 2984103, + "thread": 3 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 3285891, + "thread": 16 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 3340119, + "thread": 24 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 3545699, + "thread": 24 + } + }, + { + "amount": "235.622722381", + "slot": { + "period": 3675456, + "thread": 30 + } + }, + { + "amount": "235.622722371", + "slot": { + "period": 3859274, + "thread": 14 + } + } + ], + "AU1d7LwLRZHyThzN2mY7MBNxeSn1AFXaYgTKNTRb3FAKsiTB7Fpc": [ + { + "amount": "74.091781970", + "slot": { + "period": 163685, + "thread": 16 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 236033, + "thread": 24 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 373478, + "thread": 3 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 640361, + "thread": 2 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 705312, + "thread": 31 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 836150, + "thread": 31 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1044355, + "thread": 15 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1281771, + "thread": 1 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1376775, + "thread": 15 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1557087, + "thread": 14 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1663505, + "thread": 3 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 1959556, + "thread": 15 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2128282, + "thread": 24 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2197818, + "thread": 15 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2308484, + "thread": 27 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2511256, + "thread": 27 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2759678, + "thread": 4 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2791941, + "thread": 5 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 2956481, + "thread": 30 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 3124606, + "thread": 29 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 3428934, + "thread": 13 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 3540756, + "thread": 3 + } + }, + { + "amount": "74.091781970", + "slot": { + "period": 3668325, + "thread": 18 + } + }, + { + "amount": "74.091781964", + "slot": { + "period": 3790232, + "thread": 30 + } + } + ], + "AU1d7SPR4RPG4bQdh759b3wtxW6CuiKHTqB6wYhT3XZLjEumJPVb": [ + { + "amount": "197.386945491", + "slot": { + "period": 157488, + "thread": 1 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 298071, + "thread": 4 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 485712, + "thread": 16 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 652684, + "thread": 18 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 798090, + "thread": 1 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 909783, + "thread": 26 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1005835, + "thread": 22 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1165401, + "thread": 6 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1423128, + "thread": 31 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1645927, + "thread": 21 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1728882, + "thread": 1 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 1830709, + "thread": 18 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2119495, + "thread": 16 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2192144, + "thread": 0 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2449183, + "thread": 19 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2509237, + "thread": 27 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2686074, + "thread": 31 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 2895153, + "thread": 2 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 3083067, + "thread": 12 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 3242725, + "thread": 17 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 3362344, + "thread": 25 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 3529953, + "thread": 12 + } + }, + { + "amount": "197.386945491", + "slot": { + "period": 3649730, + "thread": 0 + } + }, + { + "amount": "197.386945496", + "slot": { + "period": 3915726, + "thread": 25 + } + } + ], + "AU1d7rDPwgLaWNaMaTUoNzCCzA1Kus4XdDzjLrp3GvHhmZXR3zz2": [ + { + "amount": "173.322764391", + "slot": { + "period": 75374, + "thread": 2 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 321439, + "thread": 15 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 453097, + "thread": 31 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 510968, + "thread": 12 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 819736, + "thread": 21 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 935102, + "thread": 7 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1090358, + "thread": 25 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1243684, + "thread": 26 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1357130, + "thread": 22 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1524649, + "thread": 30 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1709247, + "thread": 5 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 1934855, + "thread": 2 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2141735, + "thread": 17 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2207118, + "thread": 30 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2371274, + "thread": 2 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2514030, + "thread": 0 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2744678, + "thread": 9 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2921777, + "thread": 14 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 2971465, + "thread": 29 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 3210019, + "thread": 26 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 3364122, + "thread": 5 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 3511114, + "thread": 6 + } + }, + { + "amount": "173.322764391", + "slot": { + "period": 3730174, + "thread": 31 + } + }, + { + "amount": "173.322764399", + "slot": { + "period": 3837907, + "thread": 28 + } + } + ], + "AU1d8n3R6zBdJ6QzbLJmUhTVYnopLvY4Jy9AHwqA9rEDxTnkJeYG": [ + { + "amount": "268.459027945", + "slot": { + "period": 96352, + "thread": 1 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 251212, + "thread": 31 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 326572, + "thread": 13 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 526488, + "thread": 1 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 670261, + "thread": 24 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 848730, + "thread": 31 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1083971, + "thread": 4 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1194118, + "thread": 24 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1427222, + "thread": 31 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1527457, + "thread": 2 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1750938, + "thread": 18 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 1830876, + "thread": 8 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2009754, + "thread": 3 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2156031, + "thread": 11 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2366471, + "thread": 16 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2620781, + "thread": 7 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2689222, + "thread": 22 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2794378, + "thread": 8 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 2958267, + "thread": 0 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 3254353, + "thread": 31 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 3347036, + "thread": 22 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 3465332, + "thread": 16 + } + }, + { + "amount": "268.459027945", + "slot": { + "period": 3693757, + "thread": 31 + } + }, + { + "amount": "268.459027944", + "slot": { + "period": 3920532, + "thread": 13 + } + } + ], + "AU1d9LmNcqwxZCLCLcgKipo1VKmtd623kigomKcQUQ5S8K7zu8B9": [ + { + "amount": "202.550599307", + "slot": { + "period": 103555, + "thread": 23 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 212849, + "thread": 27 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 380013, + "thread": 18 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 651997, + "thread": 13 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 715319, + "thread": 16 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 971726, + "thread": 15 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1115847, + "thread": 16 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1179955, + "thread": 27 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1419083, + "thread": 9 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1574424, + "thread": 20 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1764756, + "thread": 4 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 1903453, + "thread": 21 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2100537, + "thread": 21 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2270074, + "thread": 11 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2340379, + "thread": 0 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2544588, + "thread": 8 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2760351, + "thread": 6 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 2902912, + "thread": 14 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 3074596, + "thread": 13 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 3181051, + "thread": 15 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 3380678, + "thread": 8 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 3562232, + "thread": 25 + } + }, + { + "amount": "202.550599307", + "slot": { + "period": 3715045, + "thread": 13 + } + }, + { + "amount": "202.550599305", + "slot": { + "period": 3802587, + "thread": 31 + } + } + ], + "AU1dA4oYa4sZQWgK2yMSiWKx2WdWYo8SdbgFUKVJARfbyzCU9LPY": [ + { + "amount": "367.898188821", + "slot": { + "period": 30050, + "thread": 6 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 251488, + "thread": 16 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 425616, + "thread": 16 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 649940, + "thread": 15 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 689730, + "thread": 1 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 843122, + "thread": 17 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1045882, + "thread": 9 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1261301, + "thread": 28 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1424665, + "thread": 28 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1549622, + "thread": 29 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1791402, + "thread": 25 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 1816528, + "thread": 19 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2141347, + "thread": 31 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2180651, + "thread": 9 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2371610, + "thread": 15 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2564377, + "thread": 2 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2762260, + "thread": 15 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 2809663, + "thread": 29 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3020781, + "thread": 10 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3194576, + "thread": 14 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3308248, + "thread": 11 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3525154, + "thread": 27 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3727557, + "thread": 16 + } + }, + { + "amount": "367.898188821", + "slot": { + "period": 3824579, + "thread": 1 + } + } + ], + "AU1dA8RDu6qG2YCh5sr6uzcUxAi4z4oaeTjWKRbXp197Bvk1EEDY": [ + { + "amount": "356.506139808", + "slot": { + "period": 91130, + "thread": 11 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 305826, + "thread": 10 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 387765, + "thread": 20 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 558427, + "thread": 23 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 727646, + "thread": 18 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 936947, + "thread": 27 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1036701, + "thread": 10 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1163928, + "thread": 13 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1378265, + "thread": 26 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1635781, + "thread": 2 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1780727, + "thread": 28 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 1886716, + "thread": 1 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2056793, + "thread": 0 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2178103, + "thread": 6 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2401926, + "thread": 15 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2474003, + "thread": 17 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2781447, + "thread": 1 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 2917487, + "thread": 31 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 3088112, + "thread": 12 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 3229396, + "thread": 1 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 3422343, + "thread": 10 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 3484323, + "thread": 28 + } + }, + { + "amount": "356.506139808", + "slot": { + "period": 3724870, + "thread": 19 + } + }, + { + "amount": "356.506139811", + "slot": { + "period": 3820601, + "thread": 30 + } + } + ], + "AU1dB7RxQR1dFW8URxHDoDrYmC6s5gZkU6BrexNqTm8fQfaaJaEy": [ + { + "amount": "134.848187673", + "slot": { + "period": 106516, + "thread": 20 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 186015, + "thread": 1 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 426596, + "thread": 12 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 528749, + "thread": 14 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 769145, + "thread": 18 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 978098, + "thread": 30 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 997339, + "thread": 6 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 1302528, + "thread": 11 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 1467392, + "thread": 14 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 1508619, + "thread": 7 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 1742847, + "thread": 9 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 1830536, + "thread": 14 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2135965, + "thread": 2 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2199509, + "thread": 23 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2393475, + "thread": 2 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2545235, + "thread": 1 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2701621, + "thread": 21 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 2926712, + "thread": 31 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 3020601, + "thread": 16 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 3143205, + "thread": 24 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 3364313, + "thread": 25 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 3456210, + "thread": 1 + } + }, + { + "amount": "134.848187673", + "slot": { + "period": 3720043, + "thread": 24 + } + }, + { + "amount": "134.848187684", + "slot": { + "period": 3879431, + "thread": 10 + } + } + ], + "AU1dC28bn3vdoHiP6ua5KTkgCoQQq1tc5RNdEdmwQvTESiEGZJfJ": [ + { + "amount": "92.652173103", + "slot": { + "period": 47283, + "thread": 4 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 236138, + "thread": 4 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 358804, + "thread": 14 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 580297, + "thread": 16 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 670754, + "thread": 26 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 923903, + "thread": 21 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1107776, + "thread": 21 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1192379, + "thread": 27 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1452748, + "thread": 21 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1498937, + "thread": 6 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1760065, + "thread": 17 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 1951362, + "thread": 18 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2124666, + "thread": 16 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2154116, + "thread": 26 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2367854, + "thread": 1 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2554010, + "thread": 0 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2776921, + "thread": 9 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 2833755, + "thread": 17 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 3088147, + "thread": 15 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 3210588, + "thread": 6 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 3407338, + "thread": 23 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 3497547, + "thread": 4 + } + }, + { + "amount": "92.652173103", + "slot": { + "period": 3707439, + "thread": 11 + } + }, + { + "amount": "92.652173111", + "slot": { + "period": 3912760, + "thread": 6 + } + } + ], + "AU1dCDpBRDQxNV39XZ3iJpLsHysB3H6qoy9h9G9sf4XWPMy5NRHv": [ + { + "amount": "154.615584186", + "slot": { + "period": 67122, + "thread": 12 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 199929, + "thread": 10 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 431861, + "thread": 14 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 540382, + "thread": 21 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 752100, + "thread": 31 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 840424, + "thread": 23 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1035715, + "thread": 17 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1224614, + "thread": 1 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1467671, + "thread": 23 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1553720, + "thread": 5 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1775102, + "thread": 21 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 1845784, + "thread": 0 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2125501, + "thread": 0 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2227262, + "thread": 14 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2405927, + "thread": 26 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2547254, + "thread": 19 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2673378, + "thread": 15 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2941487, + "thread": 11 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 2981071, + "thread": 21 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 3265545, + "thread": 2 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 3432358, + "thread": 22 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 3617660, + "thread": 15 + } + }, + { + "amount": "154.615584186", + "slot": { + "period": 3689248, + "thread": 21 + } + }, + { + "amount": "154.615584183", + "slot": { + "period": 3836430, + "thread": 1 + } + } + ], + "AU1dCwdU7m77AiBuXng1ymCrzEMhSdAj6GB7mZCmM8kWcmpYgks9": [ + { + "amount": "133.833865204", + "slot": { + "period": 146316, + "thread": 16 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 219986, + "thread": 18 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 430281, + "thread": 20 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 605059, + "thread": 26 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 729214, + "thread": 10 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 955231, + "thread": 2 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1017453, + "thread": 15 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1157742, + "thread": 14 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1404750, + "thread": 3 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1613046, + "thread": 0 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1747888, + "thread": 26 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 1810597, + "thread": 13 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2127245, + "thread": 24 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2277398, + "thread": 3 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2416171, + "thread": 28 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2584162, + "thread": 25 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2776556, + "thread": 10 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 2844784, + "thread": 22 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 3110138, + "thread": 30 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 3165508, + "thread": 28 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 3371229, + "thread": 20 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 3537283, + "thread": 27 + } + }, + { + "amount": "133.833865204", + "slot": { + "period": 3744861, + "thread": 16 + } + }, + { + "amount": "133.833865214", + "slot": { + "period": 3937779, + "thread": 23 + } + } + ], + "AU1dDcoxx84wdiwpLtawsxY2rmo37Df1y8uUQeAQEtxFUfUTAwrh": [ + { + "amount": "62.452068742", + "slot": { + "period": 34461, + "thread": 20 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 323469, + "thread": 15 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 441792, + "thread": 12 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 527500, + "thread": 29 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 679928, + "thread": 26 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 830329, + "thread": 10 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1139233, + "thread": 16 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1190448, + "thread": 16 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1329870, + "thread": 21 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1490569, + "thread": 22 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1808141, + "thread": 21 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 1894071, + "thread": 23 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2076279, + "thread": 24 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2290087, + "thread": 5 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2372634, + "thread": 12 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2563260, + "thread": 17 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2629703, + "thread": 20 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 2796347, + "thread": 1 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 3012230, + "thread": 25 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 3141184, + "thread": 14 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 3384070, + "thread": 4 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 3505856, + "thread": 8 + } + }, + { + "amount": "62.452068742", + "slot": { + "period": 3746840, + "thread": 28 + } + }, + { + "amount": "62.452068731", + "slot": { + "period": 3935777, + "thread": 17 + } + } + ], + "AU1dE9TGsbpdQdz8bptBMHGU8mE2aDjbGVTkWU5CDPZqvibErq3G": [ + { + "amount": "339.905702289", + "slot": { + "period": 105582, + "thread": 12 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 273124, + "thread": 12 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 448301, + "thread": 30 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 581975, + "thread": 17 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 709730, + "thread": 21 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 935552, + "thread": 19 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1060181, + "thread": 28 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1245347, + "thread": 12 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1417419, + "thread": 3 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1561744, + "thread": 26 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1769504, + "thread": 22 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 1943850, + "thread": 16 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2070882, + "thread": 25 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2147525, + "thread": 14 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2307559, + "thread": 15 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2572099, + "thread": 1 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2684240, + "thread": 15 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 2841428, + "thread": 30 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 3120716, + "thread": 14 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 3179454, + "thread": 28 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 3406012, + "thread": 18 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 3527815, + "thread": 2 + } + }, + { + "amount": "339.905702289", + "slot": { + "period": 3713397, + "thread": 30 + } + }, + { + "amount": "339.905702298", + "slot": { + "period": 3882023, + "thread": 0 + } + } + ], + "AU1dER7XJiiB6XhpjeXyyBh4cxBT1YSG7JN1uQpP754Cbsqtgtkz": [ + { + "amount": "68.719558536", + "slot": { + "period": 92118, + "thread": 6 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 290574, + "thread": 5 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 401308, + "thread": 3 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 617771, + "thread": 27 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 656104, + "thread": 5 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 896026, + "thread": 11 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1089361, + "thread": 1 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1265122, + "thread": 3 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1476248, + "thread": 28 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1574591, + "thread": 5 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1774840, + "thread": 19 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 1949357, + "thread": 15 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2140646, + "thread": 16 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2145632, + "thread": 26 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2338687, + "thread": 28 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2465130, + "thread": 25 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2744200, + "thread": 10 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 2806336, + "thread": 2 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 3059982, + "thread": 9 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 3147904, + "thread": 22 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 3313405, + "thread": 4 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 3585872, + "thread": 29 + } + }, + { + "amount": "68.719558536", + "slot": { + "period": 3738434, + "thread": 1 + } + }, + { + "amount": "68.719558529", + "slot": { + "period": 3807743, + "thread": 14 + } + } + ], + "AU1dEUN8WZxrjwJRfWn7Pp9AHF7VoGuQrEZybP1mEjjG3wGnVYqb": [ + { + "amount": "133.025256803", + "slot": { + "period": 37123, + "thread": 27 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 273652, + "thread": 29 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 385943, + "thread": 7 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 617618, + "thread": 18 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 738874, + "thread": 27 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 943152, + "thread": 22 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 989536, + "thread": 17 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 1316688, + "thread": 1 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 1385560, + "thread": 10 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 1599772, + "thread": 13 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 1725314, + "thread": 2 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 1954555, + "thread": 14 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2138151, + "thread": 27 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2188171, + "thread": 1 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2349120, + "thread": 3 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2607992, + "thread": 22 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2718604, + "thread": 11 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 2866293, + "thread": 26 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 3050676, + "thread": 18 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 3258886, + "thread": 6 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 3382673, + "thread": 5 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 3512057, + "thread": 3 + } + }, + { + "amount": "133.025256803", + "slot": { + "period": 3629385, + "thread": 28 + } + }, + { + "amount": "133.025256806", + "slot": { + "period": 3882949, + "thread": 12 + } + } + ], + "AU1dEZFfYDr9QbH4F47kfU3k9jhd8uC19sC8eQnRtH4cKd9Wo1zP": [ + { + "amount": "79.998536076", + "slot": { + "period": 87815, + "thread": 16 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 272669, + "thread": 31 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 411939, + "thread": 9 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 618940, + "thread": 29 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 769014, + "thread": 17 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 957518, + "thread": 22 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1036325, + "thread": 3 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1252455, + "thread": 7 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1361450, + "thread": 0 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1479828, + "thread": 10 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1801078, + "thread": 17 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 1864062, + "thread": 24 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2003222, + "thread": 7 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2236364, + "thread": 26 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2317998, + "thread": 2 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2534452, + "thread": 10 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2701862, + "thread": 17 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 2865529, + "thread": 26 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 3037893, + "thread": 25 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 3276002, + "thread": 13 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 3300713, + "thread": 28 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 3587417, + "thread": 21 + } + }, + { + "amount": "79.998536076", + "slot": { + "period": 3735412, + "thread": 28 + } + }, + { + "amount": "79.998536068", + "slot": { + "period": 3915748, + "thread": 3 + } + } + ], + "AU1dF6gjtQirp1XaT6Zyho8JRp4uvo1mGVqeHvBfV2aHtmNadxg8": [ + { + "amount": "192.529100708", + "slot": { + "period": 35739, + "thread": 24 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 321459, + "thread": 18 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 335479, + "thread": 30 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 593663, + "thread": 27 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 672539, + "thread": 28 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 843701, + "thread": 0 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1052124, + "thread": 10 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1262472, + "thread": 28 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1377138, + "thread": 28 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1491004, + "thread": 23 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1779437, + "thread": 26 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 1871467, + "thread": 19 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2058724, + "thread": 30 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2207052, + "thread": 27 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2344642, + "thread": 19 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2473946, + "thread": 19 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2703037, + "thread": 28 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 2934808, + "thread": 31 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 3099637, + "thread": 4 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 3227089, + "thread": 0 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 3441953, + "thread": 17 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 3591041, + "thread": 4 + } + }, + { + "amount": "192.529100708", + "slot": { + "period": 3633894, + "thread": 8 + } + }, + { + "amount": "192.529100697", + "slot": { + "period": 3861384, + "thread": 9 + } + } + ], + "AU1dFZxfWRwJ1DCbkJfBPS7sBjMAt83wVidXsdmPTbka2se45r31": [ + { + "amount": "127.541388877", + "slot": { + "period": 83983, + "thread": 20 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 270849, + "thread": 7 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 399824, + "thread": 7 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 563098, + "thread": 4 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 785425, + "thread": 28 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 822322, + "thread": 30 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1148893, + "thread": 30 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1285036, + "thread": 7 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1450938, + "thread": 1 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1542944, + "thread": 17 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1785221, + "thread": 27 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 1916740, + "thread": 20 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2006744, + "thread": 26 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2269431, + "thread": 4 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2408802, + "thread": 12 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2568610, + "thread": 25 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2641687, + "thread": 6 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2905684, + "thread": 16 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 2987471, + "thread": 23 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 3281888, + "thread": 19 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 3370138, + "thread": 3 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 3486735, + "thread": 14 + } + }, + { + "amount": "127.541388877", + "slot": { + "period": 3767174, + "thread": 11 + } + }, + { + "amount": "127.541388885", + "slot": { + "period": 3920868, + "thread": 18 + } + } + ], + "AU1dGAdKfRAEYJrjp54ccFq4Vz1EKDCKwtVSAd95n7RjGRvBJS7Q": [ + { + "amount": "75.743558306", + "slot": { + "period": 147101, + "thread": 3 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 179626, + "thread": 19 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 430334, + "thread": 17 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 593906, + "thread": 5 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 717065, + "thread": 20 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 845093, + "thread": 21 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1021096, + "thread": 19 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1216656, + "thread": 31 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1351126, + "thread": 19 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1501339, + "thread": 31 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1760127, + "thread": 15 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 1961516, + "thread": 14 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2001567, + "thread": 26 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2250203, + "thread": 14 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2440468, + "thread": 30 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2606749, + "thread": 17 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2725406, + "thread": 28 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 2798591, + "thread": 16 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 3085422, + "thread": 22 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 3209661, + "thread": 28 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 3423170, + "thread": 29 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 3590090, + "thread": 1 + } + }, + { + "amount": "75.743558306", + "slot": { + "period": 3651029, + "thread": 15 + } + }, + { + "amount": "75.743558310", + "slot": { + "period": 3870411, + "thread": 30 + } + } + ], + "AU1dGyoQp6k3FZUa8qvcQFW4uZeJcJenxXdL33qe5xaAtFvHkBuU": [ + { + "amount": "473.520984131", + "slot": { + "period": 85221, + "thread": 9 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 256975, + "thread": 0 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 410757, + "thread": 1 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 644873, + "thread": 20 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 812533, + "thread": 21 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 867375, + "thread": 17 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1124377, + "thread": 20 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1305792, + "thread": 15 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1394483, + "thread": 13 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1554579, + "thread": 30 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1736071, + "thread": 8 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1829087, + "thread": 17 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 1978471, + "thread": 26 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 2233888, + "thread": 24 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 2423760, + "thread": 9 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 2537217, + "thread": 14 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 2657347, + "thread": 2 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 2800478, + "thread": 25 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 3046045, + "thread": 17 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 3240584, + "thread": 20 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 3448442, + "thread": 0 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 3475276, + "thread": 16 + } + }, + { + "amount": "473.520984131", + "slot": { + "period": 3692524, + "thread": 18 + } + }, + { + "amount": "473.520984129", + "slot": { + "period": 3853412, + "thread": 14 + } + } + ], + "AU1dHw4UQY2VWdvexLYchPSVPLG7eEgkQ6H83YMB1Lr8R2UamZxd": [ + { + "amount": "11002.182074953", + "slot": { + "period": 32573, + "thread": 2 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 213364, + "thread": 10 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 378801, + "thread": 10 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 547945, + "thread": 20 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 774908, + "thread": 23 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 929795, + "thread": 8 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1058945, + "thread": 24 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1300725, + "thread": 27 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1442350, + "thread": 10 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1563891, + "thread": 0 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1793295, + "thread": 15 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 1944121, + "thread": 13 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2073587, + "thread": 9 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2266581, + "thread": 4 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2414012, + "thread": 10 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2584042, + "thread": 22 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2712720, + "thread": 18 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 2901241, + "thread": 29 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 3096534, + "thread": 23 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 3217558, + "thread": 15 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 3309620, + "thread": 6 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 3488639, + "thread": 9 + } + }, + { + "amount": "11002.182074953", + "slot": { + "period": 3622423, + "thread": 31 + } + }, + { + "amount": "11002.182074948", + "slot": { + "period": 3837361, + "thread": 3 + } + } + ], + "AU1dJt94nqfTAEUYiz4vka6xSLXZeSQgD4XdXCnkducpRdSizjnF": [ + { + "amount": "149.754893347", + "slot": { + "period": 94328, + "thread": 19 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 265764, + "thread": 8 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 368673, + "thread": 28 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 628071, + "thread": 11 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 795725, + "thread": 25 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 906937, + "thread": 16 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 992443, + "thread": 0 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 1200248, + "thread": 25 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 1390395, + "thread": 4 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 1596175, + "thread": 12 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 1777150, + "thread": 19 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 1901839, + "thread": 24 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2057964, + "thread": 28 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2266887, + "thread": 8 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2358003, + "thread": 21 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2463324, + "thread": 19 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2782249, + "thread": 15 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 2890643, + "thread": 29 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 3046667, + "thread": 6 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 3252869, + "thread": 15 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 3408815, + "thread": 23 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 3488493, + "thread": 28 + } + }, + { + "amount": "149.754893347", + "slot": { + "period": 3766071, + "thread": 12 + } + }, + { + "amount": "149.754893353", + "slot": { + "period": 3943229, + "thread": 23 + } + } + ], + "AU1dK4xTCZw16CNmiWoy18wk5Z71LKvMkYmGmAecr1GJNamhemoN": [ + { + "amount": "148.855958171", + "slot": { + "period": 72140, + "thread": 2 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 280958, + "thread": 8 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 457223, + "thread": 6 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 569677, + "thread": 17 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 811670, + "thread": 22 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 845955, + "thread": 18 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 986481, + "thread": 8 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 1159783, + "thread": 2 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 1430963, + "thread": 31 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 1491110, + "thread": 11 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 1788524, + "thread": 5 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 1914924, + "thread": 19 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2069568, + "thread": 25 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2273317, + "thread": 4 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2323432, + "thread": 30 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2585003, + "thread": 28 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2647326, + "thread": 20 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 2801838, + "thread": 6 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 3120886, + "thread": 28 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 3170153, + "thread": 28 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 3402109, + "thread": 20 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 3531852, + "thread": 25 + } + }, + { + "amount": "148.855958171", + "slot": { + "period": 3645562, + "thread": 20 + } + }, + { + "amount": "148.855958176", + "slot": { + "period": 3824075, + "thread": 5 + } + } + ], + "AU1dPg4fQWqcFgFHAntigcuRmxLAqn2NNRZcj2Mvg6dJaRQYdP6q": [ + { + "amount": "75.789305091", + "slot": { + "period": 71700, + "thread": 11 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 184024, + "thread": 21 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 336218, + "thread": 1 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 575643, + "thread": 24 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 727609, + "thread": 20 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 906798, + "thread": 10 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1146716, + "thread": 10 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1235417, + "thread": 14 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1356092, + "thread": 20 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1498259, + "thread": 14 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1736443, + "thread": 15 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 1968558, + "thread": 24 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2071681, + "thread": 14 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2273346, + "thread": 9 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2314449, + "thread": 31 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2570757, + "thread": 28 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2633530, + "thread": 13 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 2897333, + "thread": 27 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 3075991, + "thread": 22 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 3204094, + "thread": 16 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 3406137, + "thread": 19 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 3526869, + "thread": 4 + } + }, + { + "amount": "75.789305091", + "slot": { + "period": 3722553, + "thread": 5 + } + }, + { + "amount": "75.789305081", + "slot": { + "period": 3877724, + "thread": 18 + } + } + ], + "AU1dQ6VRKA3YRudSnTcwn8tpe7KNGVUn2WvNG41NTRTURKoURJUi": [ + { + "amount": "86.641989523", + "slot": { + "period": 129728, + "thread": 29 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 200399, + "thread": 5 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 460155, + "thread": 28 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 513233, + "thread": 2 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 711875, + "thread": 14 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 933614, + "thread": 14 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 998744, + "thread": 27 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1311339, + "thread": 25 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1411946, + "thread": 20 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1546442, + "thread": 28 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1725120, + "thread": 24 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1822561, + "thread": 11 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 1984288, + "thread": 13 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2156236, + "thread": 22 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2453364, + "thread": 20 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2490084, + "thread": 26 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2749364, + "thread": 11 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2851738, + "thread": 17 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 2986903, + "thread": 6 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 3152953, + "thread": 0 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 3340387, + "thread": 10 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 3611724, + "thread": 12 + } + }, + { + "amount": "86.641989523", + "slot": { + "period": 3651515, + "thread": 7 + } + }, + { + "amount": "86.641989513", + "slot": { + "period": 3939088, + "thread": 17 + } + } + ], + "AU1dRb91XeQ5ykHJVtSy8RWB4Cxr2QBu5ZEb7onuqnQV28gEn1nT": [ + { + "amount": "154.107019597", + "slot": { + "period": 99153, + "thread": 25 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 288947, + "thread": 2 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 483627, + "thread": 24 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 496198, + "thread": 30 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 791743, + "thread": 14 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 895533, + "thread": 28 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 995676, + "thread": 15 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 1218334, + "thread": 6 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 1453178, + "thread": 25 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 1564948, + "thread": 16 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 1682375, + "thread": 27 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 1857816, + "thread": 4 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2031298, + "thread": 29 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2253480, + "thread": 22 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2322514, + "thread": 21 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2479470, + "thread": 26 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2700857, + "thread": 11 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 2893657, + "thread": 22 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 3031385, + "thread": 23 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 3251656, + "thread": 7 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 3421193, + "thread": 17 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 3521844, + "thread": 24 + } + }, + { + "amount": "154.107019597", + "slot": { + "period": 3620321, + "thread": 26 + } + }, + { + "amount": "154.107019602", + "slot": { + "period": 3929175, + "thread": 0 + } + } + ], + "AU1dRrZs9J6cMNEfVzHFpCmo2zraXpdSRkfYNbXxRm6YF5jtzouA": [ + { + "amount": "181.973688753", + "slot": { + "period": 119620, + "thread": 12 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 272265, + "thread": 2 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 390222, + "thread": 4 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 511439, + "thread": 29 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 663430, + "thread": 28 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 849697, + "thread": 10 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1010699, + "thread": 22 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1297497, + "thread": 10 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1445833, + "thread": 19 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1485237, + "thread": 2 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1680060, + "thread": 7 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 1860008, + "thread": 11 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2050051, + "thread": 31 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2204049, + "thread": 2 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2377850, + "thread": 27 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2549872, + "thread": 0 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2688847, + "thread": 15 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2814814, + "thread": 9 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 2996936, + "thread": 5 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 3180647, + "thread": 11 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 3329923, + "thread": 31 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 3589140, + "thread": 4 + } + }, + { + "amount": "181.973688753", + "slot": { + "period": 3708596, + "thread": 20 + } + }, + { + "amount": "181.973688745", + "slot": { + "period": 3800538, + "thread": 14 + } + } + ], + "AU1dSkQUonk7EDVMetN7Yv8rYs1CK1sQySsJnLdK2XovedRvUKMT": [ + { + "amount": "94.522590034", + "slot": { + "period": 114336, + "thread": 2 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 279537, + "thread": 10 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 490474, + "thread": 13 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 546919, + "thread": 2 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 803923, + "thread": 20 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 903218, + "thread": 18 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 994682, + "thread": 9 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 1263238, + "thread": 28 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 1468215, + "thread": 22 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 1483478, + "thread": 27 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 1653071, + "thread": 1 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 1944884, + "thread": 4 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2030246, + "thread": 4 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2243945, + "thread": 26 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2400635, + "thread": 2 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2502914, + "thread": 18 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2738390, + "thread": 23 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 2882893, + "thread": 8 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3089662, + "thread": 27 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3163134, + "thread": 28 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3301396, + "thread": 17 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3586874, + "thread": 13 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3656997, + "thread": 3 + } + }, + { + "amount": "94.522590034", + "slot": { + "period": 3813472, + "thread": 3 + } + } + ], + "AU1dUSvLFX4j1vfeT3G93nDRDFuUhQvyfy3nQN1SwtZQKyE2ECG9": [ + { + "amount": "93.913922317", + "slot": { + "period": 20291, + "thread": 30 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 198229, + "thread": 28 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 349338, + "thread": 5 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 596084, + "thread": 27 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 772691, + "thread": 13 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 865881, + "thread": 10 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1041002, + "thread": 7 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1293657, + "thread": 21 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1361540, + "thread": 26 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1534294, + "thread": 29 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1796321, + "thread": 12 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1811174, + "thread": 15 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 1989739, + "thread": 28 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 2273289, + "thread": 28 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 2411947, + "thread": 24 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 2497035, + "thread": 12 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 2694567, + "thread": 23 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 2919785, + "thread": 4 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 3080285, + "thread": 10 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 3158860, + "thread": 31 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 3316508, + "thread": 0 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 3593324, + "thread": 4 + } + }, + { + "amount": "93.913922317", + "slot": { + "period": 3675469, + "thread": 21 + } + }, + { + "amount": "93.913922323", + "slot": { + "period": 3934839, + "thread": 18 + } + } + ], + "AU1dUfesjPjZEA1u8HbWLCmNMQM72et6L15kGhFyopM3Yf3nmPki": [ + { + "amount": "158.455945522", + "slot": { + "period": 106761, + "thread": 10 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 206628, + "thread": 9 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 450986, + "thread": 6 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 625857, + "thread": 31 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 671973, + "thread": 18 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 834948, + "thread": 19 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1136025, + "thread": 30 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1177576, + "thread": 8 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1365103, + "thread": 13 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1490753, + "thread": 11 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1741676, + "thread": 17 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 1899605, + "thread": 12 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2096305, + "thread": 0 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2155644, + "thread": 6 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2430999, + "thread": 19 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2584438, + "thread": 10 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2720477, + "thread": 8 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 2793610, + "thread": 24 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 3101710, + "thread": 14 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 3207253, + "thread": 14 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 3336906, + "thread": 11 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 3550886, + "thread": 6 + } + }, + { + "amount": "158.455945522", + "slot": { + "period": 3628452, + "thread": 26 + } + }, + { + "amount": "158.455945518", + "slot": { + "period": 3946048, + "thread": 22 + } + } + ], + "AU1dV3623fuH6Wn4nrSJUYFxDfHqE3P2UntxVqMhh2nVAmC6TvHV": [ + { + "amount": "134.530643250", + "slot": { + "period": 105584, + "thread": 31 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 244774, + "thread": 4 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 459699, + "thread": 30 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 500762, + "thread": 24 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 704345, + "thread": 13 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 921713, + "thread": 3 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1000019, + "thread": 21 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1240524, + "thread": 13 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1379012, + "thread": 31 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1533125, + "thread": 22 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1745119, + "thread": 15 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 1842377, + "thread": 9 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2106916, + "thread": 16 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2157890, + "thread": 24 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2412932, + "thread": 13 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2525752, + "thread": 18 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2672236, + "thread": 3 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 2938015, + "thread": 22 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 3031531, + "thread": 29 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 3240119, + "thread": 25 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 3437452, + "thread": 20 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 3544797, + "thread": 24 + } + }, + { + "amount": "134.530643250", + "slot": { + "period": 3725288, + "thread": 30 + } + }, + { + "amount": "134.530643253", + "slot": { + "period": 3939630, + "thread": 22 + } + } + ], + "AU1dVf1P7zLSTFz3p38UP263UgkBtRYAZB12U5FZmuECCofKcghz": [ + { + "amount": "173.429930509", + "slot": { + "period": 147791, + "thread": 11 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 236766, + "thread": 27 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 445167, + "thread": 21 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 499844, + "thread": 13 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 718362, + "thread": 1 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 961687, + "thread": 2 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 985811, + "thread": 6 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 1251290, + "thread": 15 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 1324325, + "thread": 11 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 1625940, + "thread": 11 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 1647674, + "thread": 18 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 1955296, + "thread": 28 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2129198, + "thread": 15 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2198122, + "thread": 24 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2311719, + "thread": 28 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2576132, + "thread": 26 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2708013, + "thread": 0 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 2822462, + "thread": 1 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 3102360, + "thread": 16 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 3179843, + "thread": 16 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 3334068, + "thread": 30 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 3454762, + "thread": 10 + } + }, + { + "amount": "173.429930509", + "slot": { + "period": 3701280, + "thread": 5 + } + }, + { + "amount": "173.429930499", + "slot": { + "period": 3862543, + "thread": 7 + } + } + ], + "AU1dVwFVoeQ59LaFBxG78oZgnmyxYNJLYmZtCB1NmPCJbWRWZAtp": [ + { + "amount": "72.900199877", + "slot": { + "period": 110580, + "thread": 12 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 285781, + "thread": 8 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 345119, + "thread": 12 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 643200, + "thread": 21 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 702495, + "thread": 26 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 892509, + "thread": 19 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1037942, + "thread": 5 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1182454, + "thread": 17 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1339148, + "thread": 21 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1602454, + "thread": 29 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1732640, + "thread": 9 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1941865, + "thread": 6 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 1976482, + "thread": 17 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2238348, + "thread": 6 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2424301, + "thread": 26 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2590840, + "thread": 28 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2736251, + "thread": 12 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2824575, + "thread": 27 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 2996317, + "thread": 1 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 3182384, + "thread": 2 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 3311589, + "thread": 5 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 3551786, + "thread": 5 + } + }, + { + "amount": "72.900199877", + "slot": { + "period": 3698267, + "thread": 15 + } + }, + { + "amount": "72.900199885", + "slot": { + "period": 3808255, + "thread": 3 + } + } + ], + "AU1dWWK3UTDt2NHayuXU9m6SYm6K6Qkk2CWzrDyNNggwPjsVEwKH": [ + { + "amount": "109.907290851", + "slot": { + "period": 104407, + "thread": 9 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 235015, + "thread": 28 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 356421, + "thread": 20 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 519263, + "thread": 14 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 798137, + "thread": 15 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 842375, + "thread": 17 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 990368, + "thread": 20 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1230636, + "thread": 4 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1391758, + "thread": 26 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1615665, + "thread": 2 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1689642, + "thread": 26 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1927419, + "thread": 28 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 1986518, + "thread": 2 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 2204094, + "thread": 30 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 2347926, + "thread": 1 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 2619507, + "thread": 29 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 2676612, + "thread": 21 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 2885398, + "thread": 1 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 3074460, + "thread": 13 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 3266884, + "thread": 5 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 3325217, + "thread": 5 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 3470391, + "thread": 0 + } + }, + { + "amount": "109.907290851", + "slot": { + "period": 3690241, + "thread": 9 + } + }, + { + "amount": "109.907290844", + "slot": { + "period": 3897817, + "thread": 25 + } + } + ], + "AU1dXevqXM4uoqgCqazxftuTzqyzEgMw9sAmMacjEnMuhc9K9NJw": [ + { + "amount": "595.424875151", + "slot": { + "period": 78346, + "thread": 24 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 190234, + "thread": 3 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 394100, + "thread": 8 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 502373, + "thread": 6 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 748770, + "thread": 14 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 878953, + "thread": 0 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1021203, + "thread": 20 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1190312, + "thread": 6 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1396565, + "thread": 10 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1613400, + "thread": 20 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1795400, + "thread": 23 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 1933043, + "thread": 27 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2107433, + "thread": 16 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2270455, + "thread": 17 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2401194, + "thread": 26 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2520030, + "thread": 2 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2775130, + "thread": 19 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2861372, + "thread": 19 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 2965625, + "thread": 8 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 3142077, + "thread": 5 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 3293904, + "thread": 9 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 3590367, + "thread": 11 + } + }, + { + "amount": "595.424875151", + "slot": { + "period": 3696764, + "thread": 8 + } + }, + { + "amount": "595.424875153", + "slot": { + "period": 3927978, + "thread": 6 + } + } + ], + "AU1dXoc9QstFLdNDDyonUCxnNoYE2uP4e9gZ3E8NX2i9a8N28tNn": [ + { + "amount": "105.270749586", + "slot": { + "period": 43683, + "thread": 21 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 282687, + "thread": 28 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 342371, + "thread": 13 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 556472, + "thread": 7 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 740548, + "thread": 7 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 894204, + "thread": 17 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1058605, + "thread": 23 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1180170, + "thread": 26 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1458130, + "thread": 31 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1621365, + "thread": 24 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1717966, + "thread": 15 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 1941047, + "thread": 5 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2003526, + "thread": 29 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2278045, + "thread": 15 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2440949, + "thread": 30 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2527388, + "thread": 18 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2640862, + "thread": 5 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 2922332, + "thread": 18 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 3113555, + "thread": 11 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 3141144, + "thread": 18 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 3339835, + "thread": 3 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 3532554, + "thread": 27 + } + }, + { + "amount": "105.270749586", + "slot": { + "period": 3642522, + "thread": 31 + } + }, + { + "amount": "105.270749583", + "slot": { + "period": 3928384, + "thread": 13 + } + } + ], + "AU1dYCjgb3qEvUSeVbCJsjU61UnhzJDHkin5W6YeVXfBfSC4AAzq": [ + { + "amount": "122.549924108", + "slot": { + "period": 93469, + "thread": 12 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 211451, + "thread": 23 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 400924, + "thread": 7 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 522367, + "thread": 18 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 776621, + "thread": 23 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 829195, + "thread": 9 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1018854, + "thread": 28 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1317104, + "thread": 4 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1369369, + "thread": 15 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1583221, + "thread": 18 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1789688, + "thread": 3 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 1975751, + "thread": 20 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2142455, + "thread": 7 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2254733, + "thread": 16 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2460645, + "thread": 10 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2497657, + "thread": 10 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2718839, + "thread": 13 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 2838267, + "thread": 1 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 3115314, + "thread": 31 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 3121703, + "thread": 21 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 3348892, + "thread": 2 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 3593636, + "thread": 5 + } + }, + { + "amount": "122.549924108", + "slot": { + "period": 3719148, + "thread": 7 + } + }, + { + "amount": "122.549924096", + "slot": { + "period": 3815724, + "thread": 28 + } + } + ], + "AU1dZ1Rv5gbqx6xJTrvWetZzwS6NrXxjfyAdp1DXTRNtetrZvTeF": [ + { + "amount": "348.787756423", + "slot": { + "period": 74860, + "thread": 5 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 318396, + "thread": 23 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 331070, + "thread": 27 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 620537, + "thread": 11 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 789150, + "thread": 21 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 967053, + "thread": 3 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1074864, + "thread": 24 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1222443, + "thread": 7 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1339041, + "thread": 22 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1555452, + "thread": 14 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1670312, + "thread": 1 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 1891952, + "thread": 26 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2051395, + "thread": 26 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2227585, + "thread": 8 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2412893, + "thread": 29 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2498135, + "thread": 3 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2712558, + "thread": 29 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 2867154, + "thread": 28 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3009025, + "thread": 28 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3181031, + "thread": 9 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3300021, + "thread": 0 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3537747, + "thread": 22 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3652864, + "thread": 20 + } + }, + { + "amount": "348.787756423", + "slot": { + "period": 3887895, + "thread": 29 + } + } + ], + "AU1dZL7r4irbehW4D2cTebo6XpzDt3GH7BEDAX2tenwxwx6EHp1w": [ + { + "amount": "139.703729625", + "slot": { + "period": 107196, + "thread": 17 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 262475, + "thread": 29 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 420241, + "thread": 11 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 580777, + "thread": 3 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 663671, + "thread": 28 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 888770, + "thread": 20 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1150118, + "thread": 30 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1200792, + "thread": 16 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1425501, + "thread": 29 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1618386, + "thread": 16 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1673748, + "thread": 0 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 1855670, + "thread": 20 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2141899, + "thread": 19 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2203714, + "thread": 7 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2381683, + "thread": 8 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2568891, + "thread": 7 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2709495, + "thread": 10 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 2822211, + "thread": 30 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 3100032, + "thread": 27 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 3219692, + "thread": 31 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 3388194, + "thread": 11 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 3549800, + "thread": 14 + } + }, + { + "amount": "139.703729625", + "slot": { + "period": 3719373, + "thread": 12 + } + }, + { + "amount": "139.703729628", + "slot": { + "period": 3831721, + "thread": 12 + } + } + ], + "AU1dZwWKE1qGk1oD4X13xsiGXTMz5dPdsESTtMZei5it6VurTAvg": [ + { + "amount": "269.602143946", + "slot": { + "period": 17948, + "thread": 2 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 302609, + "thread": 24 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 423760, + "thread": 3 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 547264, + "thread": 4 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 702708, + "thread": 14 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 972144, + "thread": 22 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1045377, + "thread": 22 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1202886, + "thread": 18 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1450273, + "thread": 29 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1528664, + "thread": 30 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1742391, + "thread": 13 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 1896735, + "thread": 28 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2104748, + "thread": 21 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2184111, + "thread": 20 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2459855, + "thread": 13 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2543113, + "thread": 3 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2649325, + "thread": 15 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2871991, + "thread": 14 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 2964248, + "thread": 23 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 3166023, + "thread": 18 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 3367914, + "thread": 20 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 3587312, + "thread": 13 + } + }, + { + "amount": "269.602143946", + "slot": { + "period": 3683925, + "thread": 25 + } + }, + { + "amount": "269.602143952", + "slot": { + "period": 3860116, + "thread": 13 + } + } + ], + "AU1daBDqurvtLWm8feFVueFL7tFrBreEqe61uNpdB3ArPcbQBc7t": [ + { + "amount": "310.890948337", + "slot": { + "period": 77076, + "thread": 23 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 224583, + "thread": 1 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 489575, + "thread": 8 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 645648, + "thread": 5 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 719150, + "thread": 2 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 950097, + "thread": 15 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1014318, + "thread": 9 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1304792, + "thread": 31 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1351396, + "thread": 14 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1501640, + "thread": 26 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1700086, + "thread": 7 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 1824541, + "thread": 20 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2042526, + "thread": 21 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2287804, + "thread": 26 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2460940, + "thread": 4 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2485129, + "thread": 8 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2785713, + "thread": 26 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 2883465, + "thread": 6 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 3110119, + "thread": 25 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 3123540, + "thread": 22 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 3405922, + "thread": 10 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 3566543, + "thread": 17 + } + }, + { + "amount": "310.890948337", + "slot": { + "period": 3665209, + "thread": 9 + } + }, + { + "amount": "310.890948347", + "slot": { + "period": 3806436, + "thread": 14 + } + } + ], + "AU1daquYxwEtzgMU1xqfXJQg4ApoohHNpeA7xr4GCnEEtp5gBusX": [ + { + "amount": "81.625404066", + "slot": { + "period": 76297, + "thread": 11 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 211662, + "thread": 2 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 469337, + "thread": 22 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 529959, + "thread": 7 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 768537, + "thread": 29 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 977867, + "thread": 6 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1012158, + "thread": 8 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1197876, + "thread": 24 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1375416, + "thread": 19 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1487396, + "thread": 9 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1666727, + "thread": 25 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 1899237, + "thread": 25 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2014505, + "thread": 6 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2168923, + "thread": 4 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2375275, + "thread": 25 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2483082, + "thread": 31 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2716364, + "thread": 14 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 2889812, + "thread": 6 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 3106601, + "thread": 18 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 3141796, + "thread": 24 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 3298730, + "thread": 3 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 3454814, + "thread": 15 + } + }, + { + "amount": "81.625404066", + "slot": { + "period": 3757202, + "thread": 26 + } + }, + { + "amount": "81.625404070", + "slot": { + "period": 3806883, + "thread": 2 + } + } + ], + "AU1dbuftfNUcsKF9SfgU6aUhoKMPCL7cisnbMX7QzJjfy6xNoxFX": [ + { + "amount": "134.714948967", + "slot": { + "period": 155246, + "thread": 6 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 226375, + "thread": 11 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 398364, + "thread": 11 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 554145, + "thread": 26 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 744823, + "thread": 28 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 894700, + "thread": 26 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 986131, + "thread": 31 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 1303005, + "thread": 18 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 1399874, + "thread": 28 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 1645484, + "thread": 26 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 1807250, + "thread": 29 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 1959366, + "thread": 22 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2033020, + "thread": 2 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2195879, + "thread": 14 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2347669, + "thread": 19 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2558181, + "thread": 21 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2646383, + "thread": 24 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2883576, + "thread": 16 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 2961616, + "thread": 5 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 3142742, + "thread": 7 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 3392099, + "thread": 0 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 3546913, + "thread": 24 + } + }, + { + "amount": "134.714948967", + "slot": { + "period": 3672787, + "thread": 9 + } + }, + { + "amount": "134.714948976", + "slot": { + "period": 3812600, + "thread": 31 + } + } + ], + "AU1dc7FyCojEbRcDvcGcPn4mZizN9ui36mL6QtRK26FrcmrYR1W2": [ + { + "amount": "117.560795658", + "slot": { + "period": 98940, + "thread": 14 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 271087, + "thread": 23 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 339674, + "thread": 2 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 539771, + "thread": 12 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 781618, + "thread": 21 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 943636, + "thread": 4 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1076686, + "thread": 2 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1193913, + "thread": 20 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1453254, + "thread": 25 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1620044, + "thread": 27 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1717725, + "thread": 3 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1923227, + "thread": 9 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 1978630, + "thread": 16 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 2233837, + "thread": 3 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 2299710, + "thread": 11 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 2533703, + "thread": 12 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 2675546, + "thread": 17 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 2845813, + "thread": 11 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 3102051, + "thread": 30 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 3208093, + "thread": 12 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 3370288, + "thread": 2 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 3608162, + "thread": 13 + } + }, + { + "amount": "117.560795658", + "slot": { + "period": 3637257, + "thread": 6 + } + }, + { + "amount": "117.560795662", + "slot": { + "period": 3877559, + "thread": 16 + } + } + ], + "AU1dcDDjRXr6KQBhHafS8ixSq3xZT1oGnaXAb8hnBiG195omwgvU": [ + { + "amount": "64.184795421", + "slot": { + "period": 101300, + "thread": 22 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 170568, + "thread": 22 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 334763, + "thread": 11 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 556624, + "thread": 11 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 666887, + "thread": 21 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 847538, + "thread": 16 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 994954, + "thread": 26 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 1293492, + "thread": 27 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 1475029, + "thread": 3 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 1608209, + "thread": 4 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 1736310, + "thread": 27 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 1926330, + "thread": 13 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2006445, + "thread": 25 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2147411, + "thread": 12 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2411854, + "thread": 7 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2545665, + "thread": 25 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2624778, + "thread": 12 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 2875909, + "thread": 1 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 3110939, + "thread": 24 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 3203673, + "thread": 7 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 3432800, + "thread": 16 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 3500253, + "thread": 18 + } + }, + { + "amount": "64.184795421", + "slot": { + "period": 3644177, + "thread": 20 + } + }, + { + "amount": "64.184795414", + "slot": { + "period": 3823340, + "thread": 30 + } + } + ], + "AU1dcX3n2nvDuRQXgvDtEHpmKvFR8wMsJutVQLMgKvgXRnThvRBw": [ + { + "amount": "211.705129100", + "slot": { + "period": 35788, + "thread": 19 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 283917, + "thread": 25 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 477365, + "thread": 31 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 620600, + "thread": 14 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 810993, + "thread": 29 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 851208, + "thread": 30 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1040416, + "thread": 10 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1216739, + "thread": 23 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1328953, + "thread": 10 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1485196, + "thread": 26 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1783901, + "thread": 30 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 1934472, + "thread": 23 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2031652, + "thread": 10 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2200099, + "thread": 14 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2338909, + "thread": 14 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2504398, + "thread": 1 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2629804, + "thread": 5 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2932820, + "thread": 5 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 2981245, + "thread": 21 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 3137373, + "thread": 24 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 3395041, + "thread": 19 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 3531385, + "thread": 18 + } + }, + { + "amount": "211.705129100", + "slot": { + "period": 3675873, + "thread": 27 + } + }, + { + "amount": "211.705129092", + "slot": { + "period": 3820754, + "thread": 21 + } + } + ], + "AU1dd5cFMKbNzahq5wCi9aTfFpUNKk5K59Czq2r1fUhKHP9gAkiz": [ + { + "amount": "2077.291391233", + "slot": { + "period": 149758, + "thread": 29 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 220643, + "thread": 11 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 445896, + "thread": 31 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 573519, + "thread": 7 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 687516, + "thread": 15 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 837349, + "thread": 14 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1028488, + "thread": 19 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1287723, + "thread": 2 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1447586, + "thread": 0 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1556080, + "thread": 29 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1677262, + "thread": 12 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 1898871, + "thread": 4 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2007645, + "thread": 8 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2257575, + "thread": 12 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2346365, + "thread": 8 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2482896, + "thread": 1 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2697389, + "thread": 5 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 2934133, + "thread": 31 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 3034128, + "thread": 0 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 3183187, + "thread": 13 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 3308075, + "thread": 4 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 3582176, + "thread": 28 + } + }, + { + "amount": "2077.291391233", + "slot": { + "period": 3667746, + "thread": 11 + } + }, + { + "amount": "2077.291391251", + "slot": { + "period": 3908115, + "thread": 14 + } + } + ], + "AU1ddU1sr3D7bLcHQqf4TAcKJTz2rux41CoUdcVi6i2pqHbQQVzL": [ + { + "amount": "135.631130182", + "slot": { + "period": 129801, + "thread": 9 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 291042, + "thread": 8 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 468174, + "thread": 9 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 636379, + "thread": 8 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 700123, + "thread": 7 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 894633, + "thread": 7 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1070108, + "thread": 6 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1315269, + "thread": 31 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1380840, + "thread": 2 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1495409, + "thread": 4 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1649671, + "thread": 1 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 1871781, + "thread": 28 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2084854, + "thread": 9 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2192881, + "thread": 16 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2368622, + "thread": 8 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2524328, + "thread": 8 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2745612, + "thread": 23 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 2853174, + "thread": 21 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 3072464, + "thread": 12 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 3141059, + "thread": 2 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 3313437, + "thread": 17 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 3463862, + "thread": 8 + } + }, + { + "amount": "135.631130182", + "slot": { + "period": 3767353, + "thread": 0 + } + }, + { + "amount": "135.631130184", + "slot": { + "period": 3918696, + "thread": 20 + } + } + ], + "AU1dekXRuHTwJ47mJ6jyfMtwpM8BZoYzWNHVU98qzMqGxvHs9VZ8": [ + { + "amount": "331.509257632", + "slot": { + "period": 163402, + "thread": 12 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 214746, + "thread": 12 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 365366, + "thread": 9 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 546763, + "thread": 15 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 734641, + "thread": 29 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 981948, + "thread": 9 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1117630, + "thread": 17 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1249791, + "thread": 30 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1338964, + "thread": 14 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1619753, + "thread": 21 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1662084, + "thread": 19 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 1847727, + "thread": 6 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2074700, + "thread": 12 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2169786, + "thread": 22 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2301391, + "thread": 13 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2508012, + "thread": 7 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2632617, + "thread": 25 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2828281, + "thread": 20 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 2982863, + "thread": 8 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 3171633, + "thread": 22 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 3415649, + "thread": 19 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 3455143, + "thread": 10 + } + }, + { + "amount": "331.509257632", + "slot": { + "period": 3697287, + "thread": 2 + } + }, + { + "amount": "331.509257641", + "slot": { + "period": 3793373, + "thread": 7 + } + } + ], + "AU1dfBkjet3RoauBsA4adGZtuqAE68xEeqSqy721VZrrNbmsugTa": [ + { + "amount": "359.808646960", + "slot": { + "period": 30250, + "thread": 30 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 223389, + "thread": 1 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 480662, + "thread": 25 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 647462, + "thread": 14 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 666422, + "thread": 19 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 829401, + "thread": 24 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1101247, + "thread": 19 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1205273, + "thread": 6 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1430786, + "thread": 29 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1643909, + "thread": 28 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1768065, + "thread": 1 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 1828104, + "thread": 13 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2034465, + "thread": 14 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2220227, + "thread": 19 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2391219, + "thread": 20 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2495773, + "thread": 7 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2669566, + "thread": 26 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 2928254, + "thread": 24 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 3032023, + "thread": 4 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 3187644, + "thread": 1 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 3380321, + "thread": 21 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 3581017, + "thread": 9 + } + }, + { + "amount": "359.808646960", + "slot": { + "period": 3711790, + "thread": 15 + } + }, + { + "amount": "359.808646954", + "slot": { + "period": 3801862, + "thread": 20 + } + } + ], + "AU1dfn1Rz8qhTKTb2uWzz9S8bWUPevoV2E1GzyXz9pNCtHnsqjC": [ + { + "amount": "248.808580578", + "slot": { + "period": 96383, + "thread": 4 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 312358, + "thread": 21 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 409070, + "thread": 1 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 514353, + "thread": 11 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 756659, + "thread": 9 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 924233, + "thread": 26 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1083511, + "thread": 1 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1159411, + "thread": 19 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1423758, + "thread": 26 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1620708, + "thread": 15 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1790061, + "thread": 18 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 1882604, + "thread": 1 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2076293, + "thread": 16 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2281611, + "thread": 15 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2409687, + "thread": 0 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2514519, + "thread": 16 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2754414, + "thread": 12 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 2919279, + "thread": 18 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 3081062, + "thread": 11 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 3275227, + "thread": 11 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 3422715, + "thread": 30 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 3515599, + "thread": 2 + } + }, + { + "amount": "248.808580578", + "slot": { + "period": 3778338, + "thread": 25 + } + }, + { + "amount": "248.808580566", + "slot": { + "period": 3878862, + "thread": 1 + } + } + ], + "AU1dgqeft1XL2eVSJg9ezisFmzoVnbn5iZAfizB1zJzuSGTJ1hSE": [ + { + "amount": "85.959108633", + "slot": { + "period": 13001, + "thread": 3 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 261485, + "thread": 14 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 404205, + "thread": 29 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 531433, + "thread": 0 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 701528, + "thread": 6 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 921822, + "thread": 26 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1071710, + "thread": 18 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1251202, + "thread": 7 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1476931, + "thread": 8 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1575527, + "thread": 26 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1778237, + "thread": 24 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 1895999, + "thread": 0 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2028569, + "thread": 28 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2155142, + "thread": 8 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2338139, + "thread": 7 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2528325, + "thread": 15 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2725082, + "thread": 16 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2823239, + "thread": 23 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 2954478, + "thread": 24 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 3279191, + "thread": 27 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 3377754, + "thread": 30 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 3577108, + "thread": 18 + } + }, + { + "amount": "85.959108633", + "slot": { + "period": 3629284, + "thread": 4 + } + }, + { + "amount": "85.959108637", + "slot": { + "period": 3920890, + "thread": 0 + } + } + ], + "AU1dgrJ5ESVok96fZfoG1CgAWd4PtHDxHRL1gpKta9c7kp4oNQoe": [ + { + "amount": "494.072063289", + "slot": { + "period": 133700, + "thread": 6 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 276897, + "thread": 15 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 443414, + "thread": 27 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 640470, + "thread": 16 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 754923, + "thread": 7 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 948427, + "thread": 27 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 998536, + "thread": 26 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 1274505, + "thread": 24 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 1377918, + "thread": 9 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 1621670, + "thread": 22 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 1708605, + "thread": 27 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 1839160, + "thread": 23 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2099095, + "thread": 19 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2294986, + "thread": 19 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2370390, + "thread": 18 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2551067, + "thread": 22 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2730252, + "thread": 16 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 2869942, + "thread": 23 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 3118514, + "thread": 23 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 3196294, + "thread": 14 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 3361777, + "thread": 7 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 3499144, + "thread": 19 + } + }, + { + "amount": "494.072063289", + "slot": { + "period": 3690015, + "thread": 31 + } + }, + { + "amount": "494.072063292", + "slot": { + "period": 3911755, + "thread": 15 + } + } + ], + "AU1dhpH5om1jMXQEz1ZzpEY5wHvNaiEKndNvrB7E4nAGcxoYuY91": [ + { + "amount": "110.423509502", + "slot": { + "period": 87210, + "thread": 3 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 284261, + "thread": 19 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 397210, + "thread": 15 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 532696, + "thread": 29 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 656101, + "thread": 2 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 924073, + "thread": 14 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1106954, + "thread": 19 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1151037, + "thread": 5 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1384810, + "thread": 25 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1617442, + "thread": 26 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1781652, + "thread": 10 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 1903788, + "thread": 11 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2022758, + "thread": 21 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2201562, + "thread": 7 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2454479, + "thread": 17 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2585436, + "thread": 18 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2774511, + "thread": 0 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 2925104, + "thread": 28 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 3051449, + "thread": 10 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 3128457, + "thread": 22 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 3431102, + "thread": 17 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 3553953, + "thread": 29 + } + }, + { + "amount": "110.423509502", + "slot": { + "period": 3720432, + "thread": 10 + } + }, + { + "amount": "110.423509496", + "slot": { + "period": 3927806, + "thread": 15 + } + } + ], + "AU1di1ma3fCKmeidhp43f5GWG1j9S7Y1asxGQ7gGEEdC69RUr1mQ": [ + { + "amount": "330.798095967", + "slot": { + "period": 40061, + "thread": 4 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 189776, + "thread": 14 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 421483, + "thread": 12 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 514208, + "thread": 23 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 712933, + "thread": 11 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 854289, + "thread": 14 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1073052, + "thread": 13 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1173246, + "thread": 16 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1438467, + "thread": 22 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1552929, + "thread": 9 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1779505, + "thread": 14 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 1827906, + "thread": 2 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2063415, + "thread": 15 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2153669, + "thread": 25 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2300270, + "thread": 19 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2595882, + "thread": 25 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2765080, + "thread": 3 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2849425, + "thread": 4 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 2980983, + "thread": 14 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 3149011, + "thread": 18 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 3433953, + "thread": 4 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 3586999, + "thread": 4 + } + }, + { + "amount": "330.798095967", + "slot": { + "period": 3717065, + "thread": 23 + } + }, + { + "amount": "330.798095973", + "slot": { + "period": 3784261, + "thread": 1 + } + } + ], + "AU1diJZJP37RHNCxTnSuCptTkGtcp9z1NA2n3LfPTM52JMtfr2mQ": [ + { + "amount": "148.026252861", + "slot": { + "period": 82936, + "thread": 31 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 287872, + "thread": 29 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 390033, + "thread": 8 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 605473, + "thread": 19 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 719225, + "thread": 22 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 835285, + "thread": 26 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1077053, + "thread": 17 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1286374, + "thread": 31 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1461442, + "thread": 24 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1628803, + "thread": 3 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1696312, + "thread": 9 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 1868429, + "thread": 31 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2099549, + "thread": 2 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2201398, + "thread": 11 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2398109, + "thread": 19 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2471840, + "thread": 22 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2767589, + "thread": 26 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 2946820, + "thread": 11 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 3063219, + "thread": 30 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 3244599, + "thread": 29 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 3293749, + "thread": 20 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 3571738, + "thread": 23 + } + }, + { + "amount": "148.026252861", + "slot": { + "period": 3647624, + "thread": 4 + } + }, + { + "amount": "148.026252860", + "slot": { + "period": 3893127, + "thread": 25 + } + } + ], + "AU1diWSYQWxfqFquB6FC72eC147byQqEJPGCyJ4Jud9QYybzWb5f": [ + { + "amount": "88.119829172", + "slot": { + "period": 101763, + "thread": 11 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 178915, + "thread": 28 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 401887, + "thread": 8 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 573820, + "thread": 6 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 677286, + "thread": 1 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 945123, + "thread": 15 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1075831, + "thread": 10 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1174891, + "thread": 8 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1340968, + "thread": 23 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1523988, + "thread": 2 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1708866, + "thread": 18 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 1960610, + "thread": 19 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2141189, + "thread": 20 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2182009, + "thread": 25 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2385221, + "thread": 28 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2560212, + "thread": 28 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2644430, + "thread": 11 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 2932776, + "thread": 1 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 3055896, + "thread": 17 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 3154633, + "thread": 9 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 3337580, + "thread": 7 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 3576038, + "thread": 22 + } + }, + { + "amount": "88.119829172", + "slot": { + "period": 3657212, + "thread": 27 + } + }, + { + "amount": "88.119829169", + "slot": { + "period": 3849065, + "thread": 20 + } + } + ], + "AU1dj1vErMCEmQSBxvAvU8uLfpfkasGCKm8A3PKXgBYczPMJx44": [ + { + "amount": "131.667884046", + "slot": { + "period": 47640, + "thread": 9 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 250119, + "thread": 0 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 444738, + "thread": 13 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 548136, + "thread": 28 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 757146, + "thread": 7 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 979092, + "thread": 18 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1124430, + "thread": 1 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1259151, + "thread": 0 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1391508, + "thread": 11 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1535933, + "thread": 9 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1780624, + "thread": 11 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 1827414, + "thread": 8 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2093682, + "thread": 7 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2274903, + "thread": 3 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2361505, + "thread": 2 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2606748, + "thread": 9 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2724982, + "thread": 20 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 2843788, + "thread": 13 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 3119732, + "thread": 8 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 3164401, + "thread": 16 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 3407980, + "thread": 7 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 3581853, + "thread": 16 + } + }, + { + "amount": "131.667884046", + "slot": { + "period": 3773522, + "thread": 15 + } + }, + { + "amount": "131.667884056", + "slot": { + "period": 3795326, + "thread": 0 + } + } + ], + "AU1djuKxW8VCNLGCQNe88whcYxoXWwgiTX3KtwFecjrCGy8Z1rRB": [ + { + "amount": "446.685965048", + "slot": { + "period": 81620, + "thread": 15 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 255461, + "thread": 2 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 344934, + "thread": 27 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 584242, + "thread": 6 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 781624, + "thread": 15 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 867880, + "thread": 10 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1042625, + "thread": 9 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1310033, + "thread": 31 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1441813, + "thread": 2 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1598978, + "thread": 27 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1701391, + "thread": 29 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 1840933, + "thread": 24 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2141172, + "thread": 2 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2280192, + "thread": 5 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2377066, + "thread": 4 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2516119, + "thread": 8 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2750043, + "thread": 5 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2899490, + "thread": 18 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 2956623, + "thread": 1 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 3206418, + "thread": 12 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 3320788, + "thread": 5 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 3495142, + "thread": 23 + } + }, + { + "amount": "446.685965048", + "slot": { + "period": 3621824, + "thread": 15 + } + }, + { + "amount": "446.685965060", + "slot": { + "period": 3933277, + "thread": 6 + } + } + ], + "AU1dk8MpHAu9WTvC4DjKMNpsqFDsdrGzLvT22NPW3hbaWRqKrQRJ": [ + { + "amount": "66.467502120", + "slot": { + "period": 111174, + "thread": 0 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 240413, + "thread": 26 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 468506, + "thread": 19 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 549067, + "thread": 11 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 723146, + "thread": 31 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 930221, + "thread": 9 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1075007, + "thread": 18 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1156435, + "thread": 1 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1449664, + "thread": 6 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1513779, + "thread": 20 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1732750, + "thread": 19 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 1845853, + "thread": 8 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2024126, + "thread": 6 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2184787, + "thread": 22 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2348702, + "thread": 9 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2490028, + "thread": 26 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2632286, + "thread": 25 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2865744, + "thread": 14 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 2972999, + "thread": 22 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 3279442, + "thread": 19 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 3437998, + "thread": 1 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 3579653, + "thread": 1 + } + }, + { + "amount": "66.467502120", + "slot": { + "period": 3624757, + "thread": 26 + } + }, + { + "amount": "66.467502127", + "slot": { + "period": 3791414, + "thread": 23 + } + } + ], + "AU1dkiHGHPYikujvSqiiPgav2MoaaLXmhMSDEBLkykm7VQmAEPGj": [ + { + "amount": "527.867862561", + "slot": { + "period": 26997, + "thread": 1 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 231629, + "thread": 17 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 393744, + "thread": 22 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 599941, + "thread": 5 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 680913, + "thread": 21 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 881982, + "thread": 30 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1093684, + "thread": 11 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1277052, + "thread": 0 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1430644, + "thread": 16 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1645923, + "thread": 23 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1737550, + "thread": 14 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 1948193, + "thread": 15 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2063635, + "thread": 26 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2276605, + "thread": 13 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2439179, + "thread": 19 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2509633, + "thread": 10 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2656623, + "thread": 16 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 2937684, + "thread": 25 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 3099992, + "thread": 10 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 3131493, + "thread": 19 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 3440107, + "thread": 21 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 3598715, + "thread": 0 + } + }, + { + "amount": "527.867862561", + "slot": { + "period": 3645891, + "thread": 23 + } + }, + { + "amount": "527.867862554", + "slot": { + "period": 3854535, + "thread": 14 + } + } + ], + "AU1dkjZhPCcwv4QuH7RoDw3AwQC3g5SrZ5NitTKCTwVahhmRYvgJ": [ + { + "amount": "155.245462718", + "slot": { + "period": 151649, + "thread": 8 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 317777, + "thread": 12 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 335652, + "thread": 25 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 533313, + "thread": 24 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 738036, + "thread": 25 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 834301, + "thread": 14 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1008253, + "thread": 12 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1228258, + "thread": 27 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1435954, + "thread": 28 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1483974, + "thread": 7 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1799990, + "thread": 20 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 1899300, + "thread": 31 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2141950, + "thread": 19 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2206900, + "thread": 30 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2403986, + "thread": 24 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2529184, + "thread": 17 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2652579, + "thread": 1 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 2813717, + "thread": 19 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 3044133, + "thread": 13 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 3177084, + "thread": 1 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 3398921, + "thread": 19 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 3464815, + "thread": 5 + } + }, + { + "amount": "155.245462718", + "slot": { + "period": 3671801, + "thread": 30 + } + }, + { + "amount": "155.245462725", + "slot": { + "period": 3817395, + "thread": 20 + } + } + ], + "AU1dktnB5ze6v54rHgr28cBG9w2zNGoLWQg3RYR1LEBKGrB2JZsJ": [ + { + "amount": "184.369413013", + "slot": { + "period": 54749, + "thread": 3 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 203759, + "thread": 9 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 409212, + "thread": 11 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 504615, + "thread": 27 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 712732, + "thread": 21 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 944287, + "thread": 17 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1049304, + "thread": 18 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1229433, + "thread": 23 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1400998, + "thread": 8 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1492859, + "thread": 31 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1710307, + "thread": 4 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 1829194, + "thread": 6 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2043521, + "thread": 6 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2266774, + "thread": 25 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2331541, + "thread": 24 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2512260, + "thread": 2 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2724800, + "thread": 3 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 2920359, + "thread": 26 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 3011237, + "thread": 13 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 3240914, + "thread": 28 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 3442287, + "thread": 2 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 3494460, + "thread": 27 + } + }, + { + "amount": "184.369413013", + "slot": { + "period": 3757623, + "thread": 14 + } + }, + { + "amount": "184.369413007", + "slot": { + "period": 3804028, + "thread": 14 + } + } + ], + "AU1dm4cHz78DGoyrrsnX2wfyJU9SZDG3CoUJR9TotRxCMV3rwuvd": [ + { + "amount": "111.280208274", + "slot": { + "period": 30322, + "thread": 2 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 235909, + "thread": 9 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 385668, + "thread": 6 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 552011, + "thread": 18 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 681934, + "thread": 29 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 978570, + "thread": 0 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1106881, + "thread": 5 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1311647, + "thread": 19 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1347375, + "thread": 15 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1484856, + "thread": 1 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1716377, + "thread": 11 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 1949075, + "thread": 12 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2116137, + "thread": 23 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2167179, + "thread": 28 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2352090, + "thread": 2 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2508565, + "thread": 12 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2686999, + "thread": 18 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 2943815, + "thread": 16 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 3041311, + "thread": 15 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 3184952, + "thread": 1 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 3351770, + "thread": 11 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 3544921, + "thread": 13 + } + }, + { + "amount": "111.280208274", + "slot": { + "period": 3691531, + "thread": 22 + } + }, + { + "amount": "111.280208265", + "slot": { + "period": 3916209, + "thread": 9 + } + } + ], + "AU1dmbRyjC9RLs7HTmQUsqAw4bMja8LsapgJBecqKeYUqzuMmoek": [ + { + "amount": "61.441378169", + "slot": { + "period": 104101, + "thread": 15 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 232310, + "thread": 5 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 352825, + "thread": 6 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 524094, + "thread": 23 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 744465, + "thread": 18 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 903124, + "thread": 11 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1074408, + "thread": 5 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1265100, + "thread": 11 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1439851, + "thread": 18 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1601169, + "thread": 27 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1720329, + "thread": 21 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 1960785, + "thread": 30 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2084785, + "thread": 0 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2250715, + "thread": 23 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2384360, + "thread": 7 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2607626, + "thread": 16 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2788776, + "thread": 13 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 2916870, + "thread": 3 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 3049932, + "thread": 20 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 3241446, + "thread": 17 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 3352651, + "thread": 6 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 3500734, + "thread": 17 + } + }, + { + "amount": "61.441378169", + "slot": { + "period": 3670952, + "thread": 7 + } + }, + { + "amount": "61.441378161", + "slot": { + "period": 3864138, + "thread": 14 + } + } + ], + "AU1dmthYktWdzX37u1dD2XJPX5G4u9c1uAYBWezttTocoZuwt56V": [ + { + "amount": "91.679824802", + "slot": { + "period": 113278, + "thread": 19 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 266082, + "thread": 13 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 442659, + "thread": 16 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 586814, + "thread": 13 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 702088, + "thread": 7 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 975292, + "thread": 0 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1135764, + "thread": 14 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1201088, + "thread": 5 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1367830, + "thread": 6 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1539266, + "thread": 11 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1771092, + "thread": 12 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 1874392, + "thread": 18 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2046306, + "thread": 26 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2143867, + "thread": 23 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2443728, + "thread": 5 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2499690, + "thread": 23 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2691969, + "thread": 8 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 2836059, + "thread": 8 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 3087020, + "thread": 12 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 3153451, + "thread": 1 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 3335272, + "thread": 16 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 3569681, + "thread": 29 + } + }, + { + "amount": "91.679824802", + "slot": { + "period": 3640967, + "thread": 5 + } + }, + { + "amount": "91.679824798", + "slot": { + "period": 3813258, + "thread": 2 + } + } + ], + "AU1dpAgGKVRXdMVCihYxgXCWa7KQifAfVMyP9YtXYAhNd7MhZsSN": [ + { + "amount": "361.713910999", + "slot": { + "period": 60113, + "thread": 12 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 309912, + "thread": 23 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 425616, + "thread": 11 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 632366, + "thread": 4 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 752844, + "thread": 13 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 877581, + "thread": 1 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1049442, + "thread": 12 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1245211, + "thread": 14 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1381686, + "thread": 19 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1583501, + "thread": 12 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1714422, + "thread": 13 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 1897524, + "thread": 11 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2007684, + "thread": 21 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2273145, + "thread": 7 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2428576, + "thread": 3 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2540937, + "thread": 28 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2654102, + "thread": 9 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2847286, + "thread": 17 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 2956152, + "thread": 26 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 3172051, + "thread": 11 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 3317157, + "thread": 29 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 3502205, + "thread": 24 + } + }, + { + "amount": "361.713910999", + "slot": { + "period": 3760227, + "thread": 28 + } + }, + { + "amount": "361.713911001", + "slot": { + "period": 3921457, + "thread": 8 + } + } + ], + "AU1dpvUpSDQxWU5kLyGF7NmgpaZsWDREkhqA8adyfKaoM3sBTocS": [ + { + "amount": "456.763702099", + "slot": { + "period": 79759, + "thread": 21 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 234214, + "thread": 29 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 484314, + "thread": 17 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 535449, + "thread": 1 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 804145, + "thread": 16 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 851296, + "thread": 30 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1098594, + "thread": 11 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1290284, + "thread": 22 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1322708, + "thread": 31 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1533141, + "thread": 4 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1707683, + "thread": 16 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 1913350, + "thread": 18 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2005999, + "thread": 7 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2209393, + "thread": 11 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2391141, + "thread": 14 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2529657, + "thread": 12 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2687639, + "thread": 15 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 2793227, + "thread": 31 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 3040993, + "thread": 16 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 3157146, + "thread": 19 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 3369073, + "thread": 29 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 3614539, + "thread": 22 + } + }, + { + "amount": "456.763702099", + "slot": { + "period": 3727425, + "thread": 22 + } + }, + { + "amount": "456.763702102", + "slot": { + "period": 3805550, + "thread": 7 + } + } + ], + "AU1dqEnBwuDwfHmuikpwQy1cedrnHFTTFCDgB6834c6P3PXjwuFh": [ + { + "amount": "75.070543437", + "slot": { + "period": 58799, + "thread": 9 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 255562, + "thread": 11 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 458775, + "thread": 21 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 577879, + "thread": 9 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 733997, + "thread": 2 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 945780, + "thread": 29 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1130804, + "thread": 2 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1240487, + "thread": 26 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1358784, + "thread": 2 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1529364, + "thread": 8 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1657191, + "thread": 8 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 1945506, + "thread": 17 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2009902, + "thread": 29 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2171618, + "thread": 24 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2369970, + "thread": 29 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2556798, + "thread": 26 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2656155, + "thread": 22 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 2946745, + "thread": 18 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 3020953, + "thread": 8 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 3239314, + "thread": 2 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 3443316, + "thread": 23 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 3558855, + "thread": 26 + } + }, + { + "amount": "75.070543437", + "slot": { + "period": 3663127, + "thread": 21 + } + }, + { + "amount": "75.070543430", + "slot": { + "period": 3863163, + "thread": 2 + } + } + ], + "AU1dqiKnWrQ4PE5U5VDC2V2Ng8itSKasaDx72ERk7u7s23quf5Xn": [ + { + "amount": "329.994607938", + "slot": { + "period": 53453, + "thread": 21 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 318222, + "thread": 12 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 408923, + "thread": 10 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 610391, + "thread": 12 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 708152, + "thread": 30 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 944825, + "thread": 27 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1139488, + "thread": 0 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1241254, + "thread": 21 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1331111, + "thread": 27 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1490883, + "thread": 8 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1666666, + "thread": 5 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 1921256, + "thread": 9 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2125263, + "thread": 29 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2169576, + "thread": 31 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2317555, + "thread": 21 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2614498, + "thread": 8 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2658178, + "thread": 7 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 2796634, + "thread": 11 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 3104523, + "thread": 28 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 3217061, + "thread": 22 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 3407513, + "thread": 15 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 3452422, + "thread": 4 + } + }, + { + "amount": "329.994607938", + "slot": { + "period": 3775688, + "thread": 11 + } + }, + { + "amount": "329.994607934", + "slot": { + "period": 3832796, + "thread": 25 + } + } + ], + "AU1dqx6sper4BU3ZmwmRvPk5n92P3a8T9Hwz2FVouXjueJd5fU5K": [ + { + "amount": "131.641456313", + "slot": { + "period": 55392, + "thread": 6 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 185237, + "thread": 2 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 382433, + "thread": 8 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 637441, + "thread": 14 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 685002, + "thread": 3 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 928736, + "thread": 18 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1149166, + "thread": 20 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1162467, + "thread": 20 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1459974, + "thread": 6 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1625244, + "thread": 27 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1733583, + "thread": 5 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 1831975, + "thread": 22 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2143747, + "thread": 1 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2276683, + "thread": 28 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2302460, + "thread": 26 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2582985, + "thread": 22 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2677905, + "thread": 11 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 2836084, + "thread": 11 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 3073577, + "thread": 26 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 3241034, + "thread": 25 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 3449726, + "thread": 9 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 3461616, + "thread": 12 + } + }, + { + "amount": "131.641456313", + "slot": { + "period": 3734285, + "thread": 25 + } + }, + { + "amount": "131.641456307", + "slot": { + "period": 3809771, + "thread": 12 + } + } + ], + "AU1dqybsDGiVEjo5Ky2HBkRZUDErrCSGC1BpXtpdcnhfxFw5buLu": [ + { + "amount": "314.581265826", + "slot": { + "period": 50811, + "thread": 13 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 308797, + "thread": 3 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 357297, + "thread": 13 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 581776, + "thread": 4 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 755361, + "thread": 5 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 893374, + "thread": 21 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1113648, + "thread": 22 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1293959, + "thread": 15 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1326150, + "thread": 15 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1643503, + "thread": 22 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1768678, + "thread": 20 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 1878285, + "thread": 7 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2110415, + "thread": 30 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2282394, + "thread": 30 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2448841, + "thread": 15 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2580221, + "thread": 18 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2628517, + "thread": 8 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 2872741, + "thread": 0 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 3050601, + "thread": 9 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 3121500, + "thread": 30 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 3449605, + "thread": 8 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 3590815, + "thread": 22 + } + }, + { + "amount": "314.581265826", + "slot": { + "period": 3627662, + "thread": 0 + } + }, + { + "amount": "314.581265814", + "slot": { + "period": 3888461, + "thread": 25 + } + } + ], + "AU1drJUWZnL56RsHmBgvmecRLhQaozY37HF3ZytJ3y4LZQhcpyaL": [ + { + "amount": "142.407184674", + "slot": { + "period": 35579, + "thread": 2 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 282340, + "thread": 11 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 469786, + "thread": 26 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 584865, + "thread": 23 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 708637, + "thread": 15 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 916040, + "thread": 13 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1036325, + "thread": 17 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1311138, + "thread": 9 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1373742, + "thread": 14 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1592319, + "thread": 6 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1720708, + "thread": 26 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 1948356, + "thread": 23 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2109441, + "thread": 19 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2294741, + "thread": 5 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2438640, + "thread": 6 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2471848, + "thread": 6 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2783371, + "thread": 19 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 2897182, + "thread": 17 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 3103288, + "thread": 29 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 3138921, + "thread": 2 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 3412871, + "thread": 15 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 3501489, + "thread": 26 + } + }, + { + "amount": "142.407184674", + "slot": { + "period": 3753534, + "thread": 24 + } + }, + { + "amount": "142.407184669", + "slot": { + "period": 3838567, + "thread": 24 + } + } + ], + "AU1drfdXRQaUAvVwdNtHAkZi4oERumttzXuq1X6fft46eB8iHM75": [ + { + "amount": "538.360586718", + "slot": { + "period": 140562, + "thread": 19 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 196804, + "thread": 7 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 443316, + "thread": 20 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 524992, + "thread": 6 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 726886, + "thread": 28 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 930009, + "thread": 14 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1113369, + "thread": 5 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1240139, + "thread": 9 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1442027, + "thread": 16 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1522401, + "thread": 23 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1767914, + "thread": 18 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1878542, + "thread": 15 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 1976624, + "thread": 12 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 2148530, + "thread": 16 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 2399884, + "thread": 31 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 2526102, + "thread": 13 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 2673190, + "thread": 20 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 2897344, + "thread": 20 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 3012485, + "thread": 7 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 3236966, + "thread": 21 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 3312492, + "thread": 18 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 3568958, + "thread": 18 + } + }, + { + "amount": "538.360586718", + "slot": { + "period": 3675446, + "thread": 13 + } + }, + { + "amount": "538.360586727", + "slot": { + "period": 3840892, + "thread": 1 + } + } + ], + "AU1drvWyspZEGKQDLyiJczHpAoCKeuFe5CAcEaoeUbVwsi9LXU9C": [ + { + "amount": "260.559865134", + "slot": { + "period": 115158, + "thread": 2 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 305952, + "thread": 14 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 342945, + "thread": 31 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 643608, + "thread": 19 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 735833, + "thread": 11 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 900351, + "thread": 17 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1029258, + "thread": 28 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1156356, + "thread": 20 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1421802, + "thread": 11 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1584473, + "thread": 13 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1682312, + "thread": 8 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 1944382, + "thread": 20 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2040295, + "thread": 11 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2149493, + "thread": 23 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2445435, + "thread": 13 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2546372, + "thread": 8 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2710616, + "thread": 28 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 2891750, + "thread": 10 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 3100206, + "thread": 11 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 3222072, + "thread": 8 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 3305498, + "thread": 28 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 3561410, + "thread": 1 + } + }, + { + "amount": "260.559865134", + "slot": { + "period": 3681624, + "thread": 1 + } + }, + { + "amount": "260.559865144", + "slot": { + "period": 3792434, + "thread": 30 + } + } + ], + "AU1dsQodBHuS1xMd1wzBbZmAphsViASAhq4ZB8hF7E7g8MdqWea": [ + { + "amount": "513.400721933", + "slot": { + "period": 108246, + "thread": 30 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 196861, + "thread": 8 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 438214, + "thread": 19 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 496668, + "thread": 12 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 720019, + "thread": 26 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 920098, + "thread": 31 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 989717, + "thread": 7 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 1162717, + "thread": 7 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 1322948, + "thread": 20 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 1623827, + "thread": 8 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 1659025, + "thread": 17 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 1841421, + "thread": 21 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2058628, + "thread": 3 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2258328, + "thread": 17 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2343916, + "thread": 12 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2565453, + "thread": 10 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2772408, + "thread": 31 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 2923396, + "thread": 10 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 3087337, + "thread": 20 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 3250514, + "thread": 29 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 3336270, + "thread": 27 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 3487941, + "thread": 11 + } + }, + { + "amount": "513.400721933", + "slot": { + "period": 3739595, + "thread": 9 + } + }, + { + "amount": "513.400721925", + "slot": { + "period": 3876066, + "thread": 15 + } + } + ], + "AU1dscth9qDjsyXVGv31nwbZTvdiwyMauGArLGp5X9QWKsUmazxS": [ + { + "amount": "175.138026492", + "slot": { + "period": 118653, + "thread": 12 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 313788, + "thread": 21 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 368036, + "thread": 22 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 651304, + "thread": 11 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 671106, + "thread": 9 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 898254, + "thread": 4 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1122912, + "thread": 15 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1271444, + "thread": 24 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1350830, + "thread": 27 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1639134, + "thread": 20 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1690410, + "thread": 7 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 1949618, + "thread": 16 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2059961, + "thread": 29 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2150009, + "thread": 10 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2350261, + "thread": 14 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2553280, + "thread": 20 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2775080, + "thread": 23 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 2879173, + "thread": 1 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 3117600, + "thread": 12 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 3201549, + "thread": 23 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 3365627, + "thread": 27 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 3464960, + "thread": 3 + } + }, + { + "amount": "175.138026492", + "slot": { + "period": 3670003, + "thread": 11 + } + }, + { + "amount": "175.138026501", + "slot": { + "period": 3915192, + "thread": 18 + } + } + ], + "AU1dtCqBRuiid6SnRotYbGGiTPQLq1htQHMZysvaCuQRFPY46BXo": [ + { + "amount": "155.404255132", + "slot": { + "period": 69343, + "thread": 26 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 181812, + "thread": 5 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 352741, + "thread": 2 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 634910, + "thread": 10 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 684273, + "thread": 31 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 892866, + "thread": 19 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1079684, + "thread": 21 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1259083, + "thread": 28 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1370040, + "thread": 27 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1581712, + "thread": 9 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1686072, + "thread": 30 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 1814967, + "thread": 5 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2091636, + "thread": 21 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2281145, + "thread": 5 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2316180, + "thread": 3 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2531867, + "thread": 12 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2728670, + "thread": 27 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2951296, + "thread": 28 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 2999317, + "thread": 6 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 3248051, + "thread": 14 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 3383853, + "thread": 25 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 3546590, + "thread": 25 + } + }, + { + "amount": "155.404255132", + "slot": { + "period": 3708894, + "thread": 28 + } + }, + { + "amount": "155.404255122", + "slot": { + "period": 3897754, + "thread": 12 + } + } + ], + "AU1dtD9VmQ4zAF7xnaLXRT4iYf8k32jkLedhL6Fnz2dRR7JkBiHy": [ + { + "amount": "244.564523458", + "slot": { + "period": 40086, + "thread": 31 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 197969, + "thread": 15 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 344217, + "thread": 12 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 610560, + "thread": 16 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 658954, + "thread": 8 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 827105, + "thread": 25 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1028085, + "thread": 28 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1159027, + "thread": 16 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1325789, + "thread": 17 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1555901, + "thread": 9 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1792997, + "thread": 10 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 1928556, + "thread": 31 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2038191, + "thread": 13 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2245896, + "thread": 31 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2297937, + "thread": 29 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2527598, + "thread": 19 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2777670, + "thread": 22 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2859847, + "thread": 25 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 2987947, + "thread": 17 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 3278475, + "thread": 7 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 3391969, + "thread": 22 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 3554622, + "thread": 28 + } + }, + { + "amount": "244.564523458", + "slot": { + "period": 3760205, + "thread": 29 + } + }, + { + "amount": "244.564523453", + "slot": { + "period": 3910663, + "thread": 6 + } + } + ], + "AU1dtbSrEhdiagGURgUanCrNkHC1iqurLvMnZ1JtzK3yaepETqVs": [ + { + "amount": "226.803768758", + "slot": { + "period": 150907, + "thread": 31 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 282855, + "thread": 29 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 416619, + "thread": 15 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 616194, + "thread": 4 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 799546, + "thread": 27 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 837728, + "thread": 22 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1002005, + "thread": 25 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1238182, + "thread": 18 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1419157, + "thread": 2 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1482526, + "thread": 25 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1738554, + "thread": 22 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 1852899, + "thread": 24 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2070731, + "thread": 23 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2202201, + "thread": 15 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2363542, + "thread": 22 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2543740, + "thread": 30 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2757942, + "thread": 16 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 2861453, + "thread": 28 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 3024257, + "thread": 15 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 3219102, + "thread": 21 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 3426871, + "thread": 18 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 3612338, + "thread": 5 + } + }, + { + "amount": "226.803768758", + "slot": { + "period": 3766602, + "thread": 21 + } + }, + { + "amount": "226.803768757", + "slot": { + "period": 3934471, + "thread": 25 + } + } + ], + "AU1dtzNnxBUciRE9UQAJz2DFtrj64MueXPxjRvFmGgdRvyHDtm2j": [ + { + "amount": "133.843753495", + "slot": { + "period": 45902, + "thread": 15 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 178029, + "thread": 2 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 386473, + "thread": 7 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 527902, + "thread": 20 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 751332, + "thread": 24 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 931620, + "thread": 15 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1021111, + "thread": 6 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1161359, + "thread": 1 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1347761, + "thread": 11 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1539016, + "thread": 0 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1655275, + "thread": 6 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1956135, + "thread": 10 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 1979132, + "thread": 24 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 2249959, + "thread": 17 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 2402919, + "thread": 12 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 2494356, + "thread": 8 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 2653771, + "thread": 5 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 2814511, + "thread": 15 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 3082902, + "thread": 3 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 3139838, + "thread": 8 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 3300494, + "thread": 11 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 3592245, + "thread": 26 + } + }, + { + "amount": "133.843753495", + "slot": { + "period": 3652531, + "thread": 26 + } + }, + { + "amount": "133.843753500", + "slot": { + "period": 3834849, + "thread": 15 + } + } + ], + "AU1duqUWwo97Pg6rtGDNfFninAjqPv8ZREY32nxYkb2uBAVXmmm3": [ + { + "amount": "103.503774476", + "slot": { + "period": 28926, + "thread": 2 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 194181, + "thread": 30 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 427821, + "thread": 29 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 552357, + "thread": 25 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 671163, + "thread": 27 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 829951, + "thread": 26 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1026303, + "thread": 10 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1171237, + "thread": 16 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1450557, + "thread": 3 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1525699, + "thread": 6 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1754076, + "thread": 23 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 1946183, + "thread": 10 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2042506, + "thread": 26 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2167592, + "thread": 10 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2312861, + "thread": 21 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2475455, + "thread": 5 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2743865, + "thread": 28 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 2905765, + "thread": 19 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 3029415, + "thread": 7 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 3125459, + "thread": 31 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 3398798, + "thread": 2 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 3519752, + "thread": 15 + } + }, + { + "amount": "103.503774476", + "slot": { + "period": 3775528, + "thread": 24 + } + }, + { + "amount": "103.503774469", + "slot": { + "period": 3810188, + "thread": 19 + } + } + ], + "AU1dvXRDQmPEgnuhNjT988ijg7fJxM8VvNpi8W4Jbd46rSudQFNX": [ + { + "amount": "230.885241650", + "slot": { + "period": 50006, + "thread": 8 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 298924, + "thread": 14 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 444923, + "thread": 12 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 639601, + "thread": 24 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 792095, + "thread": 31 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 894067, + "thread": 18 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1046795, + "thread": 11 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1218790, + "thread": 27 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1326582, + "thread": 8 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1604360, + "thread": 1 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1750144, + "thread": 15 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 1932104, + "thread": 22 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2016953, + "thread": 14 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2190593, + "thread": 15 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2299578, + "thread": 22 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2523723, + "thread": 2 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2728062, + "thread": 8 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2836544, + "thread": 20 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 2997930, + "thread": 24 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 3141810, + "thread": 15 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 3341484, + "thread": 19 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 3598558, + "thread": 29 + } + }, + { + "amount": "230.885241650", + "slot": { + "period": 3698410, + "thread": 31 + } + }, + { + "amount": "230.885241660", + "slot": { + "period": 3939759, + "thread": 24 + } + } + ], + "AU1dxFVC34ap6fBLBAQWkmmzV28PRmYh2VCsbxuYvxeQJbPstNtE": [ + { + "amount": "159.580690030", + "slot": { + "period": 25194, + "thread": 25 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 208411, + "thread": 23 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 396935, + "thread": 4 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 580871, + "thread": 14 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 804398, + "thread": 25 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 867990, + "thread": 15 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1053645, + "thread": 30 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1244312, + "thread": 3 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1464659, + "thread": 4 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1623655, + "thread": 16 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1760125, + "thread": 23 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 1811887, + "thread": 6 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2045040, + "thread": 31 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2181184, + "thread": 18 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2432265, + "thread": 16 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2531043, + "thread": 26 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2712140, + "thread": 20 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 2829723, + "thread": 14 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 3068922, + "thread": 25 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 3142583, + "thread": 12 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 3416800, + "thread": 8 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 3478362, + "thread": 28 + } + }, + { + "amount": "159.580690030", + "slot": { + "period": 3646017, + "thread": 12 + } + }, + { + "amount": "159.580690020", + "slot": { + "period": 3923123, + "thread": 29 + } + } + ], + "AU1dxmRcFA7RnSoxH4stU65tur8GGq1NkrPs4jafbqT76vvhQW2h": [ + { + "amount": "76.985891358", + "slot": { + "period": 93995, + "thread": 25 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 260702, + "thread": 10 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 337345, + "thread": 1 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 573460, + "thread": 29 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 819061, + "thread": 12 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 943337, + "thread": 1 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1127316, + "thread": 18 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1197405, + "thread": 13 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1410912, + "thread": 19 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1521732, + "thread": 6 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1793933, + "thread": 10 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 1814017, + "thread": 8 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2067448, + "thread": 15 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2160379, + "thread": 20 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2409255, + "thread": 9 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2480262, + "thread": 11 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2676304, + "thread": 29 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2820063, + "thread": 11 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 2995879, + "thread": 16 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 3285609, + "thread": 29 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 3371333, + "thread": 6 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 3513180, + "thread": 4 + } + }, + { + "amount": "76.985891358", + "slot": { + "period": 3687296, + "thread": 19 + } + }, + { + "amount": "76.985891353", + "slot": { + "period": 3836817, + "thread": 28 + } + } + ], + "AU1dxviKvm3fg8gimi7ydteDQogTFhP1i6n56En5SyBGFKPEHfxL": [ + { + "amount": "51.368181765", + "slot": { + "period": 57648, + "thread": 16 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 260278, + "thread": 13 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 435053, + "thread": 9 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 603819, + "thread": 14 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 680394, + "thread": 23 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 943833, + "thread": 29 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1020311, + "thread": 31 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1274632, + "thread": 9 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1440055, + "thread": 2 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1558388, + "thread": 3 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1739200, + "thread": 6 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 1907220, + "thread": 24 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2001882, + "thread": 15 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2253640, + "thread": 21 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2321775, + "thread": 20 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2541015, + "thread": 13 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2782624, + "thread": 22 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2829504, + "thread": 11 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 2959355, + "thread": 27 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 3213329, + "thread": 13 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 3340479, + "thread": 5 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 3561894, + "thread": 21 + } + }, + { + "amount": "51.368181765", + "slot": { + "period": 3628978, + "thread": 13 + } + }, + { + "amount": "51.368181763", + "slot": { + "period": 3799658, + "thread": 30 + } + } + ], + "AU1dyM3fNrD5PYV9xa2BGtRRHeKt3Hkcyp2a2AEN3Tehs1iU8rZx": [ + { + "amount": "366.784423621", + "slot": { + "period": 26716, + "thread": 11 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 317667, + "thread": 24 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 334065, + "thread": 12 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 547833, + "thread": 10 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 705110, + "thread": 1 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 971665, + "thread": 3 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1129493, + "thread": 1 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1181774, + "thread": 31 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1354895, + "thread": 25 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1499317, + "thread": 14 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1738625, + "thread": 30 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 1849349, + "thread": 2 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2046569, + "thread": 29 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2209275, + "thread": 2 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2314852, + "thread": 12 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2621142, + "thread": 28 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2767462, + "thread": 16 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 2799749, + "thread": 20 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 3054089, + "thread": 21 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 3181789, + "thread": 30 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 3446941, + "thread": 17 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 3576825, + "thread": 10 + } + }, + { + "amount": "366.784423621", + "slot": { + "period": 3741674, + "thread": 29 + } + }, + { + "amount": "366.784423625", + "slot": { + "period": 3814629, + "thread": 29 + } + } + ], + "AU1dySSUFhLKk4yR9mPAq5LUnfy9iLGtFF9AULB18ZsHz96VzqxK": [ + { + "amount": "178.048745806", + "slot": { + "period": 145222, + "thread": 18 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 216336, + "thread": 23 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 454738, + "thread": 0 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 600063, + "thread": 17 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 800912, + "thread": 22 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 907830, + "thread": 26 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1140043, + "thread": 25 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1311844, + "thread": 10 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1380751, + "thread": 5 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1556583, + "thread": 0 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1651761, + "thread": 27 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 1835693, + "thread": 27 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2053796, + "thread": 19 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2149526, + "thread": 9 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2318446, + "thread": 2 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2514605, + "thread": 2 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2785344, + "thread": 16 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2815131, + "thread": 7 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 2971657, + "thread": 1 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 3145197, + "thread": 28 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 3431990, + "thread": 23 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 3493677, + "thread": 27 + } + }, + { + "amount": "178.048745806", + "slot": { + "period": 3762392, + "thread": 24 + } + }, + { + "amount": "178.048745807", + "slot": { + "period": 3922164, + "thread": 20 + } + } + ], + "AU1dzKK2dbZcXh7WttgCEPQToKdsWmygKCyVgTb1s4pnifjRHDtS": [ + { + "amount": "225.418579219", + "slot": { + "period": 86877, + "thread": 1 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 186568, + "thread": 6 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 387003, + "thread": 12 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 558570, + "thread": 8 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 720831, + "thread": 17 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 859260, + "thread": 4 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1074417, + "thread": 10 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1272853, + "thread": 20 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1443918, + "thread": 11 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1499702, + "thread": 31 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1769133, + "thread": 13 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 1902892, + "thread": 9 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2139610, + "thread": 22 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2269632, + "thread": 12 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2372647, + "thread": 9 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2559142, + "thread": 0 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2722599, + "thread": 10 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2905507, + "thread": 21 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 2958600, + "thread": 12 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 3197249, + "thread": 8 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 3329206, + "thread": 1 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 3521658, + "thread": 21 + } + }, + { + "amount": "225.418579219", + "slot": { + "period": 3777117, + "thread": 21 + } + }, + { + "amount": "225.418579212", + "slot": { + "period": 3921143, + "thread": 10 + } + } + ], + "AU1dzT6QPLuZ12Qb59VZV9WLd4SqCNm4wWcEgyoEgA4a7Z7pKzmN": [ + { + "amount": "365.854987598", + "slot": { + "period": 42321, + "thread": 25 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 255091, + "thread": 16 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 326974, + "thread": 28 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 533137, + "thread": 5 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 693908, + "thread": 0 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 932363, + "thread": 3 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1008921, + "thread": 9 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1279132, + "thread": 9 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1441905, + "thread": 28 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1598093, + "thread": 2 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1707209, + "thread": 28 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 1831725, + "thread": 14 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2007585, + "thread": 23 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2259032, + "thread": 7 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2298971, + "thread": 27 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2486804, + "thread": 25 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2734131, + "thread": 1 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 2830345, + "thread": 26 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 3040452, + "thread": 2 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 3131860, + "thread": 7 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 3395499, + "thread": 28 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 3499796, + "thread": 19 + } + }, + { + "amount": "365.854987598", + "slot": { + "period": 3741417, + "thread": 17 + } + }, + { + "amount": "365.854987591", + "slot": { + "period": 3827962, + "thread": 8 + } + } + ], + "AU1dzo7eoKTBnw3J5FuToBUprLyxhJ8xRjDw1rxXzMdG5Wr7abiV": [ + { + "amount": "218.044732873", + "slot": { + "period": 22032, + "thread": 2 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 218855, + "thread": 5 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 488102, + "thread": 9 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 632316, + "thread": 28 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 762076, + "thread": 26 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 840539, + "thread": 10 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1026022, + "thread": 20 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1287372, + "thread": 20 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1335124, + "thread": 5 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1519268, + "thread": 11 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1802983, + "thread": 30 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1844752, + "thread": 4 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 1998792, + "thread": 30 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 2242876, + "thread": 15 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 2363016, + "thread": 31 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 2501806, + "thread": 19 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 2711341, + "thread": 20 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 2858591, + "thread": 9 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 3102340, + "thread": 11 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 3144552, + "thread": 21 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 3288771, + "thread": 22 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 3477649, + "thread": 29 + } + }, + { + "amount": "218.044732873", + "slot": { + "period": 3618738, + "thread": 17 + } + }, + { + "amount": "218.044732866", + "slot": { + "period": 3921320, + "thread": 13 + } + } + ], + "AU1e19uoKuCKXBB9ya7ozJbnHMYYjzzYhbCyePg2Dw42az58wR2e": [ + { + "amount": "393.978649059", + "slot": { + "period": 12758, + "thread": 24 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 193532, + "thread": 9 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 349621, + "thread": 29 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 559358, + "thread": 3 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 729153, + "thread": 13 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 855717, + "thread": 1 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1097396, + "thread": 20 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1207250, + "thread": 5 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1439328, + "thread": 27 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1554694, + "thread": 18 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1685851, + "thread": 22 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 1906568, + "thread": 29 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2121166, + "thread": 3 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2262688, + "thread": 26 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2361406, + "thread": 0 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2549448, + "thread": 16 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2782104, + "thread": 8 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 2801433, + "thread": 3 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 3074540, + "thread": 11 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 3223422, + "thread": 8 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 3427997, + "thread": 5 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 3477060, + "thread": 31 + } + }, + { + "amount": "393.978649059", + "slot": { + "period": 3702155, + "thread": 12 + } + }, + { + "amount": "393.978649050", + "slot": { + "period": 3862149, + "thread": 6 + } + } + ], + "AU1e1cUHooKYymThmeBNiUGDuRgexCjXJ6Wto8wbyr1Z4Tz2xUZ7": [ + { + "amount": "61.409695346", + "slot": { + "period": 85062, + "thread": 3 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 278149, + "thread": 9 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 464140, + "thread": 4 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 560681, + "thread": 26 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 665338, + "thread": 8 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 957238, + "thread": 21 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1035000, + "thread": 12 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1230262, + "thread": 20 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1465296, + "thread": 3 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1601197, + "thread": 28 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1782576, + "thread": 23 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 1825823, + "thread": 5 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2065888, + "thread": 24 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2232293, + "thread": 11 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2453437, + "thread": 16 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2545225, + "thread": 29 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2751633, + "thread": 19 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2819783, + "thread": 6 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 2979104, + "thread": 6 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 3254078, + "thread": 21 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 3313866, + "thread": 14 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 3525880, + "thread": 29 + } + }, + { + "amount": "61.409695346", + "slot": { + "period": 3642647, + "thread": 29 + } + }, + { + "amount": "61.409695341", + "slot": { + "period": 3927139, + "thread": 17 + } + } + ], + "AU1e1vUSitujByENokgFeucCvhYhQK4WKPCVjHuxb3vCuantA3m2": [ + { + "amount": "150.611060350", + "slot": { + "period": 38259, + "thread": 2 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 239590, + "thread": 6 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 421492, + "thread": 4 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 549258, + "thread": 24 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 801416, + "thread": 29 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 942915, + "thread": 9 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 990281, + "thread": 12 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 1226089, + "thread": 23 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 1357985, + "thread": 10 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 1628105, + "thread": 29 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 1655579, + "thread": 18 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 1966896, + "thread": 8 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2069483, + "thread": 16 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2173961, + "thread": 2 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2462081, + "thread": 10 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2505074, + "thread": 31 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2671126, + "thread": 12 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 2941061, + "thread": 21 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 3110191, + "thread": 3 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 3160367, + "thread": 18 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 3384355, + "thread": 13 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 3501702, + "thread": 3 + } + }, + { + "amount": "150.611060350", + "slot": { + "period": 3686642, + "thread": 28 + } + }, + { + "amount": "150.611060356", + "slot": { + "period": 3883936, + "thread": 27 + } + } + ], + "AU1e2ycsE7QvxEJVtgtuVFooY1MUe3X7w6VjoMjkT5NNyn47rv87": [ + { + "amount": "491.633247548", + "slot": { + "period": 83470, + "thread": 16 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 289712, + "thread": 2 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 451892, + "thread": 24 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 563425, + "thread": 16 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 812808, + "thread": 23 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 971753, + "thread": 31 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1046187, + "thread": 2 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1227563, + "thread": 14 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1453931, + "thread": 31 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1526580, + "thread": 13 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1807617, + "thread": 14 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 1941080, + "thread": 30 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2073962, + "thread": 20 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2259008, + "thread": 17 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2304890, + "thread": 14 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2535217, + "thread": 19 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2681163, + "thread": 29 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 2844709, + "thread": 30 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 3029216, + "thread": 24 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 3219781, + "thread": 11 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 3295398, + "thread": 0 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 3587446, + "thread": 18 + } + }, + { + "amount": "491.633247548", + "slot": { + "period": 3640497, + "thread": 2 + } + }, + { + "amount": "491.633247558", + "slot": { + "period": 3889374, + "thread": 7 + } + } + ], + "AU1e3fFvFBMhBUcT16FJXC7BdzZwhoYnD9NpdLjKEmqGM6woJe46": [ + { + "amount": "244.704029690", + "slot": { + "period": 76721, + "thread": 24 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 289351, + "thread": 23 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 383903, + "thread": 25 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 646547, + "thread": 24 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 794502, + "thread": 11 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 947576, + "thread": 19 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1100983, + "thread": 8 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1153628, + "thread": 8 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1416522, + "thread": 1 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1605644, + "thread": 19 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1741538, + "thread": 25 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 1916573, + "thread": 24 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2011598, + "thread": 11 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2274304, + "thread": 13 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2414926, + "thread": 21 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2588461, + "thread": 25 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2722430, + "thread": 15 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2841343, + "thread": 24 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 2986289, + "thread": 26 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 3207210, + "thread": 5 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 3380809, + "thread": 7 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 3452657, + "thread": 30 + } + }, + { + "amount": "244.704029690", + "slot": { + "period": 3664895, + "thread": 22 + } + }, + { + "amount": "244.704029679", + "slot": { + "period": 3787847, + "thread": 10 + } + } + ], + "AU1e3pC2werRANjW6bLHL8stta3gKexH23yyS1ce4hGL85Jo6eCG": [ + { + "amount": "134.155060930", + "slot": { + "period": 37126, + "thread": 1 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 311432, + "thread": 29 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 384381, + "thread": 23 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 622439, + "thread": 23 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 725845, + "thread": 7 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 871290, + "thread": 23 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1029972, + "thread": 18 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1216326, + "thread": 18 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1333917, + "thread": 17 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1489806, + "thread": 15 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1648059, + "thread": 26 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 1854890, + "thread": 25 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2031402, + "thread": 15 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2163997, + "thread": 28 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2366363, + "thread": 11 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2517926, + "thread": 18 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2710502, + "thread": 15 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2816830, + "thread": 25 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 2972546, + "thread": 8 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 3144267, + "thread": 16 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 3342024, + "thread": 9 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 3566956, + "thread": 1 + } + }, + { + "amount": "134.155060930", + "slot": { + "period": 3672010, + "thread": 19 + } + }, + { + "amount": "134.155060921", + "slot": { + "period": 3923527, + "thread": 18 + } + } + ], + "AU1e59w5AoahMZGSTkcXmqBFdSbN2ArD1P2fSwB7gCxB4iE2bann": [ + { + "amount": "296.101113701", + "slot": { + "period": 55116, + "thread": 25 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 261884, + "thread": 12 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 368669, + "thread": 26 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 593294, + "thread": 5 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 793674, + "thread": 7 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 923744, + "thread": 22 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 997560, + "thread": 3 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 1241054, + "thread": 16 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 1360660, + "thread": 23 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 1558545, + "thread": 20 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 1710721, + "thread": 1 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 1928611, + "thread": 10 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2124727, + "thread": 20 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2227556, + "thread": 19 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2321473, + "thread": 20 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2515666, + "thread": 27 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2656213, + "thread": 5 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 2876562, + "thread": 17 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 3012077, + "thread": 7 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 3200631, + "thread": 22 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 3353149, + "thread": 3 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 3606648, + "thread": 4 + } + }, + { + "amount": "296.101113701", + "slot": { + "period": 3711078, + "thread": 4 + } + }, + { + "amount": "296.101113707", + "slot": { + "period": 3921313, + "thread": 10 + } + } + ], + "AU1e6bgTj1JJJyLeXF6CXGNgKcpihSe7y43GoD1hYCo5VQHF6tpW": [ + { + "amount": "445.321696172", + "slot": { + "period": 111634, + "thread": 11 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 274177, + "thread": 15 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 414721, + "thread": 7 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 622118, + "thread": 26 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 780499, + "thread": 14 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 824290, + "thread": 28 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1093782, + "thread": 10 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1295656, + "thread": 14 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1323121, + "thread": 8 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1523100, + "thread": 28 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1792928, + "thread": 4 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 1905120, + "thread": 10 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2082150, + "thread": 16 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2223005, + "thread": 10 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2371589, + "thread": 3 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2467291, + "thread": 7 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2785254, + "thread": 31 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 2828339, + "thread": 27 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 3024212, + "thread": 4 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 3191585, + "thread": 7 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 3351276, + "thread": 10 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 3533888, + "thread": 29 + } + }, + { + "amount": "445.321696172", + "slot": { + "period": 3642326, + "thread": 26 + } + }, + { + "amount": "445.321696181", + "slot": { + "period": 3917067, + "thread": 22 + } + } + ], + "AU1e7RRjBW5i2a3huecq2cpDeidCJHtxzcs5ih4a4rJnCBWtpTCW": [ + { + "amount": "121.497231200", + "slot": { + "period": 22399, + "thread": 25 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 298308, + "thread": 16 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 397363, + "thread": 8 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 501428, + "thread": 2 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 691715, + "thread": 26 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 948914, + "thread": 23 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1041334, + "thread": 24 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1247018, + "thread": 25 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1382821, + "thread": 21 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1608750, + "thread": 27 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1732663, + "thread": 3 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 1855891, + "thread": 27 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2028358, + "thread": 23 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2150253, + "thread": 24 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2316490, + "thread": 23 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2486395, + "thread": 14 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2737890, + "thread": 24 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 2890617, + "thread": 7 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 3044787, + "thread": 13 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 3252270, + "thread": 26 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 3445603, + "thread": 4 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 3454173, + "thread": 6 + } + }, + { + "amount": "121.497231200", + "slot": { + "period": 3693212, + "thread": 29 + } + }, + { + "amount": "121.497231204", + "slot": { + "period": 3886696, + "thread": 25 + } + } + ], + "AU1e7VfTUZqkZ3dP4kah3iK42bXmqXZKe23uK2hKZH1CULNGr1jw": [ + { + "amount": "361.755241017", + "slot": { + "period": 119380, + "thread": 7 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 267858, + "thread": 8 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 379376, + "thread": 26 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 641948, + "thread": 16 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 762992, + "thread": 15 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 860262, + "thread": 1 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1075104, + "thread": 28 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1240305, + "thread": 15 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1397323, + "thread": 28 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1573952, + "thread": 17 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1667120, + "thread": 7 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 1844621, + "thread": 20 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2094598, + "thread": 25 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2271311, + "thread": 31 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2300697, + "thread": 18 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2552915, + "thread": 20 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2768173, + "thread": 15 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2895352, + "thread": 20 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 2962148, + "thread": 31 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 3181394, + "thread": 4 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 3385283, + "thread": 15 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 3570383, + "thread": 13 + } + }, + { + "amount": "361.755241017", + "slot": { + "period": 3652839, + "thread": 12 + } + }, + { + "amount": "361.755241018", + "slot": { + "period": 3928755, + "thread": 18 + } + } + ], + "AU1e7gdLr2tKxhqjqc7BjGooUpcvY4xJ4d5266t4wFeLMjqjj1nt": [ + { + "amount": "354.117450344", + "slot": { + "period": 44183, + "thread": 8 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 193081, + "thread": 6 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 487704, + "thread": 15 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 501041, + "thread": 21 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 682769, + "thread": 27 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 978833, + "thread": 1 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1090721, + "thread": 2 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1201850, + "thread": 13 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1348897, + "thread": 0 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1559424, + "thread": 29 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1751909, + "thread": 2 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 1837480, + "thread": 11 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2029609, + "thread": 27 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2184404, + "thread": 23 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2348580, + "thread": 18 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2529458, + "thread": 15 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2634159, + "thread": 5 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 2865877, + "thread": 6 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 3024411, + "thread": 17 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 3218524, + "thread": 2 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 3410122, + "thread": 20 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 3551813, + "thread": 5 + } + }, + { + "amount": "354.117450344", + "slot": { + "period": 3682305, + "thread": 13 + } + }, + { + "amount": "354.117450339", + "slot": { + "period": 3805605, + "thread": 15 + } + } + ], + "AU1e9AKwYBWj5rj8VtLgSEu3M2Xr1vJAxuTRUr8Z1GED3f5pkKZZ": [ + { + "amount": "276.643159509", + "slot": { + "period": 143791, + "thread": 3 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 310744, + "thread": 18 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 450295, + "thread": 17 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 533016, + "thread": 24 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 790999, + "thread": 10 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 932403, + "thread": 27 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1105234, + "thread": 22 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1176627, + "thread": 18 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1463999, + "thread": 0 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1587006, + "thread": 27 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1732549, + "thread": 23 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 1819739, + "thread": 7 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2007338, + "thread": 24 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2145708, + "thread": 5 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2343378, + "thread": 8 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2530319, + "thread": 1 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2629516, + "thread": 23 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2878543, + "thread": 18 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 2970216, + "thread": 30 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 3228726, + "thread": 4 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 3391734, + "thread": 0 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 3451941, + "thread": 9 + } + }, + { + "amount": "276.643159509", + "slot": { + "period": 3655329, + "thread": 9 + } + }, + { + "amount": "276.643159499", + "slot": { + "period": 3796696, + "thread": 6 + } + } + ], + "AU1eA7F1Zeo15pN7B6oVmShFKswUPM8Jgfxqu9dEkNNRLSYumSro": [ + { + "amount": "258.125645109", + "slot": { + "period": 71364, + "thread": 15 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 168642, + "thread": 17 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 477951, + "thread": 13 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 554045, + "thread": 8 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 727020, + "thread": 15 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 914530, + "thread": 3 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 988688, + "thread": 2 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 1228063, + "thread": 4 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 1431358, + "thread": 28 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 1579741, + "thread": 20 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 1793778, + "thread": 27 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 1832380, + "thread": 29 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2022546, + "thread": 18 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2238737, + "thread": 18 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2421223, + "thread": 17 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2577344, + "thread": 2 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2630886, + "thread": 31 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 2916614, + "thread": 9 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 3089788, + "thread": 31 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 3161092, + "thread": 24 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 3356528, + "thread": 11 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 3452861, + "thread": 12 + } + }, + { + "amount": "258.125645109", + "slot": { + "period": 3635454, + "thread": 23 + } + }, + { + "amount": "258.125645118", + "slot": { + "period": 3813882, + "thread": 12 + } + } + ], + "AU1eADs9tRyTULHGR5WLGccMZLA8UnqLqW276EcPaq1cGWcUr7NQ": [ + { + "amount": "159.782262365", + "slot": { + "period": 94736, + "thread": 6 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 219776, + "thread": 20 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 400298, + "thread": 28 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 525581, + "thread": 3 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 794015, + "thread": 11 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 888444, + "thread": 22 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1080561, + "thread": 28 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1313086, + "thread": 0 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1403715, + "thread": 27 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1619372, + "thread": 12 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1656042, + "thread": 12 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 1913235, + "thread": 25 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2114836, + "thread": 1 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2275886, + "thread": 22 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2378649, + "thread": 21 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2492762, + "thread": 18 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2642200, + "thread": 2 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2829045, + "thread": 9 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 2985079, + "thread": 26 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 3285044, + "thread": 13 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 3409400, + "thread": 28 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 3476017, + "thread": 25 + } + }, + { + "amount": "159.782262365", + "slot": { + "period": 3663505, + "thread": 0 + } + }, + { + "amount": "159.782262375", + "slot": { + "period": 3853809, + "thread": 17 + } + } + ], + "AU1eAQ3sBqK1x7DkqckbAVmux4xqfADfpgfPGTkxTdeWA6cNsoCh": [ + { + "amount": "146.842432534", + "slot": { + "period": 52923, + "thread": 0 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 223407, + "thread": 7 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 402947, + "thread": 3 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 619013, + "thread": 3 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 740028, + "thread": 30 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 980779, + "thread": 1 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1129631, + "thread": 28 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1150747, + "thread": 20 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1345852, + "thread": 21 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1641898, + "thread": 18 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1703422, + "thread": 0 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1972661, + "thread": 24 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 1977714, + "thread": 18 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 2292323, + "thread": 19 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 2409468, + "thread": 6 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 2567598, + "thread": 21 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 2671416, + "thread": 15 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 2943539, + "thread": 27 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 3104639, + "thread": 15 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 3185643, + "thread": 25 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 3390494, + "thread": 6 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 3454180, + "thread": 2 + } + }, + { + "amount": "146.842432534", + "slot": { + "period": 3764204, + "thread": 27 + } + }, + { + "amount": "146.842432544", + "slot": { + "period": 3811288, + "thread": 22 + } + } + ], + "AU1eAU7J69YoQD7UqW8qVUNec2zJa9p9MifZhpu2KcZ48K3YEEXU": [ + { + "amount": "167.249935152", + "slot": { + "period": 44501, + "thread": 6 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 191069, + "thread": 21 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 463465, + "thread": 24 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 589677, + "thread": 28 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 702600, + "thread": 0 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 892792, + "thread": 25 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1103057, + "thread": 3 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1181741, + "thread": 29 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1449963, + "thread": 2 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1609063, + "thread": 0 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1788305, + "thread": 13 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 1961766, + "thread": 26 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2057241, + "thread": 9 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2223536, + "thread": 9 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2393160, + "thread": 5 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2518096, + "thread": 25 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2693387, + "thread": 10 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 2866468, + "thread": 14 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 3019496, + "thread": 9 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 3287771, + "thread": 24 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 3299626, + "thread": 17 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 3555387, + "thread": 31 + } + }, + { + "amount": "167.249935152", + "slot": { + "period": 3648495, + "thread": 5 + } + }, + { + "amount": "167.249935159", + "slot": { + "period": 3885534, + "thread": 19 + } + } + ], + "AU1eB3LAh1DMwfmkZUNCSYEkYguDfM4EyyMy4mZxTTqfSmN31MSy": [ + { + "amount": "225.730254049", + "slot": { + "period": 37649, + "thread": 0 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 268653, + "thread": 23 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 433334, + "thread": 12 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 519957, + "thread": 10 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 670050, + "thread": 15 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 908519, + "thread": 4 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1008481, + "thread": 7 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1249179, + "thread": 14 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1323932, + "thread": 3 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1571730, + "thread": 24 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1767366, + "thread": 23 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 1863949, + "thread": 8 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2027220, + "thread": 15 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2259680, + "thread": 26 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2415581, + "thread": 10 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2484003, + "thread": 3 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2773509, + "thread": 7 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2885070, + "thread": 0 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 2998892, + "thread": 2 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 3201235, + "thread": 20 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 3387467, + "thread": 19 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 3481405, + "thread": 0 + } + }, + { + "amount": "225.730254049", + "slot": { + "period": 3629998, + "thread": 29 + } + }, + { + "amount": "225.730254060", + "slot": { + "period": 3800177, + "thread": 26 + } + } + ], + "AU1eBvW58UFvaR8GX1EKR6q4WY2Hx1qqQh7EBTYsjaV6qj9GnGSV": [ + { + "amount": "73.829625652", + "slot": { + "period": 133289, + "thread": 27 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 272195, + "thread": 4 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 366410, + "thread": 31 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 635155, + "thread": 19 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 769745, + "thread": 9 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 821113, + "thread": 17 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1101722, + "thread": 29 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1190752, + "thread": 24 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1360487, + "thread": 27 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1484375, + "thread": 19 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1691702, + "thread": 31 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 1813026, + "thread": 10 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2006718, + "thread": 24 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2184264, + "thread": 21 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2372419, + "thread": 7 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2505228, + "thread": 16 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2632131, + "thread": 1 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 2916059, + "thread": 4 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 3093172, + "thread": 29 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 3171972, + "thread": 14 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 3309773, + "thread": 0 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 3606329, + "thread": 31 + } + }, + { + "amount": "73.829625652", + "slot": { + "period": 3753207, + "thread": 28 + } + }, + { + "amount": "73.829625655", + "slot": { + "period": 3944298, + "thread": 28 + } + } + ], + "AU1eCpk7oPubFuoNnPQQiWudA6zjo8TVSST6ZLWCrV91rThk4YsU": [ + { + "amount": "425.532387779", + "slot": { + "period": 112909, + "thread": 15 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 249598, + "thread": 8 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 399291, + "thread": 14 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 504741, + "thread": 28 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 714893, + "thread": 28 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 892778, + "thread": 2 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1036610, + "thread": 25 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1193433, + "thread": 8 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1410522, + "thread": 9 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1510194, + "thread": 4 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1753468, + "thread": 17 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 1960359, + "thread": 2 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2041082, + "thread": 3 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2259264, + "thread": 25 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2384833, + "thread": 15 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2572359, + "thread": 7 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2759480, + "thread": 10 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 2920841, + "thread": 22 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 3102063, + "thread": 2 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 3128778, + "thread": 2 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 3352893, + "thread": 27 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 3492700, + "thread": 24 + } + }, + { + "amount": "425.532387779", + "slot": { + "period": 3625321, + "thread": 8 + } + }, + { + "amount": "425.532387781", + "slot": { + "period": 3933749, + "thread": 9 + } + } + ], + "AU1eE4nnnuEGSfs4g1KfpSHhbDo3SwELa9DonKTdfoXP5yYpx4EW": [ + { + "amount": "107.028411502", + "slot": { + "period": 69218, + "thread": 0 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 219465, + "thread": 13 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 481332, + "thread": 29 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 598775, + "thread": 17 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 706222, + "thread": 9 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 973419, + "thread": 31 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1078085, + "thread": 26 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1305974, + "thread": 18 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1323990, + "thread": 2 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1638432, + "thread": 0 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1808388, + "thread": 17 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 1863289, + "thread": 0 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2100822, + "thread": 16 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2194458, + "thread": 22 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2393357, + "thread": 24 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2521519, + "thread": 15 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2632959, + "thread": 13 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 2937740, + "thread": 8 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 3011407, + "thread": 0 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 3130403, + "thread": 6 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 3400369, + "thread": 7 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 3567822, + "thread": 2 + } + }, + { + "amount": "107.028411502", + "slot": { + "period": 3702418, + "thread": 31 + } + }, + { + "amount": "107.028411490", + "slot": { + "period": 3812305, + "thread": 5 + } + } + ], + "AU1eF9Qivdkgor4aapCj3CU1drJRPrrq6nvadqAUnEFi7q4U66BM": [ + { + "amount": "167.456899977", + "slot": { + "period": 28515, + "thread": 13 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 277944, + "thread": 9 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 384441, + "thread": 20 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 538417, + "thread": 4 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 809272, + "thread": 9 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 854585, + "thread": 9 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1020556, + "thread": 30 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1159159, + "thread": 22 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1438279, + "thread": 6 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1505191, + "thread": 0 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1742421, + "thread": 26 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 1908652, + "thread": 3 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2121730, + "thread": 8 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2178808, + "thread": 5 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2430105, + "thread": 17 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2607398, + "thread": 22 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2782192, + "thread": 25 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 2934955, + "thread": 16 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 3116426, + "thread": 20 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 3263783, + "thread": 1 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 3327270, + "thread": 20 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 3600594, + "thread": 2 + } + }, + { + "amount": "167.456899977", + "slot": { + "period": 3704077, + "thread": 2 + } + }, + { + "amount": "167.456899968", + "slot": { + "period": 3849080, + "thread": 20 + } + } + ], + "AU1eFvr8snUsKBGXLJN6LPKT7D5SEUqrCc17eeaEp7z762EdgBZc": [ + { + "amount": "286.708662445", + "slot": { + "period": 35643, + "thread": 0 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 302338, + "thread": 14 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 469300, + "thread": 17 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 563203, + "thread": 12 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 664326, + "thread": 30 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 821000, + "thread": 8 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1126622, + "thread": 5 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1215272, + "thread": 28 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1330826, + "thread": 19 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1539061, + "thread": 29 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1802719, + "thread": 14 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 1851148, + "thread": 15 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2120756, + "thread": 13 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2187603, + "thread": 17 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2445436, + "thread": 9 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2501205, + "thread": 15 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2723321, + "thread": 2 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 2899658, + "thread": 24 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 3101170, + "thread": 9 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 3280189, + "thread": 26 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 3365355, + "thread": 8 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 3613752, + "thread": 7 + } + }, + { + "amount": "286.708662445", + "slot": { + "period": 3627987, + "thread": 16 + } + }, + { + "amount": "286.708662440", + "slot": { + "period": 3938073, + "thread": 8 + } + } + ], + "AU1eFwgwWCbcHGrrmR4iJ8tRuYcKGYji5HJYES3dX4iYKUQUrp3J": [ + { + "amount": "53.603556810", + "slot": { + "period": 143398, + "thread": 14 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 170031, + "thread": 11 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 436020, + "thread": 28 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 504634, + "thread": 17 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 677795, + "thread": 8 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 838212, + "thread": 7 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1086499, + "thread": 8 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1208459, + "thread": 1 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1462493, + "thread": 26 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1488560, + "thread": 22 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1750796, + "thread": 13 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 1825043, + "thread": 12 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2012703, + "thread": 3 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2290821, + "thread": 20 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2337629, + "thread": 1 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2552715, + "thread": 2 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2735429, + "thread": 10 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 2874838, + "thread": 15 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 3008599, + "thread": 22 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 3122875, + "thread": 4 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 3333194, + "thread": 1 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 3527822, + "thread": 12 + } + }, + { + "amount": "53.603556810", + "slot": { + "period": 3764986, + "thread": 5 + } + }, + { + "amount": "53.603556798", + "slot": { + "period": 3792937, + "thread": 9 + } + } + ], + "AU1eHHFh4DKm9AbYwk77y25gPXbpYyj5ViVn5pFJAFkuxadJdRa": [ + { + "amount": "216.830999068", + "slot": { + "period": 67738, + "thread": 9 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 251706, + "thread": 22 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 333387, + "thread": 20 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 557905, + "thread": 21 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 819303, + "thread": 21 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 935341, + "thread": 1 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1019616, + "thread": 10 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1308565, + "thread": 29 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1412164, + "thread": 20 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1555070, + "thread": 30 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1684301, + "thread": 6 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 1930266, + "thread": 8 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2041920, + "thread": 23 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2234834, + "thread": 20 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2303658, + "thread": 20 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2584413, + "thread": 9 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2719469, + "thread": 25 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 2877553, + "thread": 16 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3098249, + "thread": 16 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3244132, + "thread": 4 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3372274, + "thread": 5 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3591689, + "thread": 9 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3745839, + "thread": 18 + } + }, + { + "amount": "216.830999068", + "slot": { + "period": 3781326, + "thread": 1 + } + } + ], + "AU1eJArAQSR8AMSjn5v6RCB74n1rUAJePtAJjYekaKEQ5HkTG8eo": [ + { + "amount": "71.506110658", + "slot": { + "period": 152409, + "thread": 2 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 238904, + "thread": 14 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 465897, + "thread": 18 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 541485, + "thread": 5 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 672541, + "thread": 12 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 982602, + "thread": 23 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1007471, + "thread": 13 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1315450, + "thread": 14 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1346282, + "thread": 2 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1615214, + "thread": 4 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1665089, + "thread": 2 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 1914998, + "thread": 24 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2002265, + "thread": 29 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2260828, + "thread": 14 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2455439, + "thread": 1 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2574913, + "thread": 21 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2625210, + "thread": 31 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 2837070, + "thread": 16 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 3049712, + "thread": 20 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 3226743, + "thread": 0 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 3365583, + "thread": 31 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 3598319, + "thread": 4 + } + }, + { + "amount": "71.506110658", + "slot": { + "period": 3744947, + "thread": 15 + } + }, + { + "amount": "71.506110648", + "slot": { + "period": 3907713, + "thread": 4 + } + } + ], + "AU1eJHLqmUX2na8xEbzR3qdRamqYKHAZtzFh9cHdhx5CwyMdnxzS": [ + { + "amount": "196.568521995", + "slot": { + "period": 80713, + "thread": 28 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 312629, + "thread": 11 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 428461, + "thread": 13 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 592870, + "thread": 13 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 671266, + "thread": 6 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 859245, + "thread": 14 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1039037, + "thread": 24 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1247446, + "thread": 0 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1400416, + "thread": 8 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1629702, + "thread": 24 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1670067, + "thread": 4 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 1939936, + "thread": 9 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2125035, + "thread": 24 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2290586, + "thread": 30 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2460740, + "thread": 4 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2502425, + "thread": 20 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2764874, + "thread": 24 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2860292, + "thread": 11 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 2985103, + "thread": 7 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 3209232, + "thread": 31 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 3355496, + "thread": 0 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 3565517, + "thread": 13 + } + }, + { + "amount": "196.568521995", + "slot": { + "period": 3748484, + "thread": 22 + } + }, + { + "amount": "196.568521994", + "slot": { + "period": 3865385, + "thread": 26 + } + } + ], + "AU1eJZLqEdBj6vKnw1Y5Nn1mG93Bmh7a29HTqaSbFzD2BUYSdazz": [ + { + "amount": "203.931599383", + "slot": { + "period": 70413, + "thread": 15 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 254387, + "thread": 4 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 338547, + "thread": 16 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 504977, + "thread": 27 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 707590, + "thread": 3 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 874300, + "thread": 13 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 987575, + "thread": 0 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 1234221, + "thread": 25 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 1361512, + "thread": 18 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 1639829, + "thread": 4 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 1782272, + "thread": 0 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 1858882, + "thread": 10 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2091497, + "thread": 14 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2275799, + "thread": 4 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2359236, + "thread": 12 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2509794, + "thread": 21 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2764808, + "thread": 18 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 2795536, + "thread": 22 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 3061749, + "thread": 6 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 3136550, + "thread": 30 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 3374004, + "thread": 13 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 3585399, + "thread": 17 + } + }, + { + "amount": "203.931599383", + "slot": { + "period": 3703887, + "thread": 28 + } + }, + { + "amount": "203.931599376", + "slot": { + "period": 3796037, + "thread": 22 + } + } + ], + "AU1eJeZdzLywbejVeXWWqCcxysm46jr2GNtbNLkaqdXrbGP8cWmb": [ + { + "amount": "320.776715217", + "slot": { + "period": 16195, + "thread": 5 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 216453, + "thread": 13 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 400336, + "thread": 7 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 614819, + "thread": 26 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 699499, + "thread": 26 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 894860, + "thread": 1 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1037758, + "thread": 3 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1244951, + "thread": 13 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1431183, + "thread": 20 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1518364, + "thread": 5 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1689770, + "thread": 7 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 1927975, + "thread": 14 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2027478, + "thread": 11 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2158564, + "thread": 14 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2420446, + "thread": 6 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2556914, + "thread": 31 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2662092, + "thread": 19 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 2904196, + "thread": 21 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 3102193, + "thread": 9 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 3227571, + "thread": 2 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 3378667, + "thread": 11 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 3530946, + "thread": 1 + } + }, + { + "amount": "320.776715217", + "slot": { + "period": 3711876, + "thread": 8 + } + }, + { + "amount": "320.776715228", + "slot": { + "period": 3781079, + "thread": 26 + } + } + ], + "AU1eKnsU3r5uKciXkbf3K1qcyEgUocymMdjKvyyrNqWMsNTeFegs": [ + { + "amount": "161.348535331", + "slot": { + "period": 65772, + "thread": 2 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 273353, + "thread": 7 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 409183, + "thread": 10 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 563247, + "thread": 7 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 753503, + "thread": 5 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 932097, + "thread": 21 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 987871, + "thread": 14 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 1221889, + "thread": 10 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 1381233, + "thread": 12 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 1492684, + "thread": 30 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 1717178, + "thread": 13 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 1845067, + "thread": 21 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2075750, + "thread": 26 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2289801, + "thread": 30 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2413459, + "thread": 10 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2565066, + "thread": 9 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2643587, + "thread": 18 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2855563, + "thread": 4 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 2971153, + "thread": 4 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 3193844, + "thread": 8 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 3396502, + "thread": 27 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 3541110, + "thread": 1 + } + }, + { + "amount": "161.348535331", + "slot": { + "period": 3685907, + "thread": 10 + } + }, + { + "amount": "161.348535342", + "slot": { + "period": 3899751, + "thread": 17 + } + } + ], + "AU1eLrsf7wkT78e7yzUfPRvXt4xTsr8Q1GzZ741eqXpvHktEow7z": [ + { + "amount": "191.593697837", + "slot": { + "period": 35563, + "thread": 12 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 290276, + "thread": 10 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 397240, + "thread": 29 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 599400, + "thread": 7 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 715591, + "thread": 4 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 900445, + "thread": 18 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1049321, + "thread": 9 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1168922, + "thread": 13 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1400464, + "thread": 5 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1615889, + "thread": 26 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1728458, + "thread": 16 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1957427, + "thread": 15 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 1979386, + "thread": 31 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2229388, + "thread": 22 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2410911, + "thread": 6 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2483575, + "thread": 27 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2762955, + "thread": 24 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2946438, + "thread": 15 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 2985875, + "thread": 15 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 3179333, + "thread": 5 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 3315235, + "thread": 11 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 3571101, + "thread": 15 + } + }, + { + "amount": "191.593697837", + "slot": { + "period": 3660290, + "thread": 19 + } + }, + { + "amount": "191.593697838", + "slot": { + "period": 3831259, + "thread": 1 + } + } + ], + "AU1eLsZr4ihbsoMKQ6VVgL9ZU1ZHJHxRGjjci4A7LPRnorJMLdHi": [ + { + "amount": "339.095785035", + "slot": { + "period": 129520, + "thread": 10 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 264760, + "thread": 24 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 487943, + "thread": 3 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 625649, + "thread": 1 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 673395, + "thread": 11 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 889680, + "thread": 19 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1010240, + "thread": 22 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1261096, + "thread": 22 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1420302, + "thread": 25 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1535438, + "thread": 23 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1793849, + "thread": 24 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 1817253, + "thread": 1 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2008551, + "thread": 18 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2235592, + "thread": 0 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2331947, + "thread": 23 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2567145, + "thread": 2 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2741593, + "thread": 24 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2900395, + "thread": 20 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 2989134, + "thread": 12 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 3235852, + "thread": 2 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 3352641, + "thread": 1 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 3561855, + "thread": 1 + } + }, + { + "amount": "339.095785035", + "slot": { + "period": 3629663, + "thread": 14 + } + }, + { + "amount": "339.095785046", + "slot": { + "period": 3795206, + "thread": 21 + } + } + ], + "AU1eM7ff4YqninHHPE8FaPUo4Bk7a3aPhCc157Cdhu96ksnR9yWR": [ + { + "amount": "278.699591002", + "slot": { + "period": 82352, + "thread": 4 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 227385, + "thread": 20 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 461239, + "thread": 27 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 558369, + "thread": 0 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 718037, + "thread": 18 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 881865, + "thread": 1 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1048398, + "thread": 29 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1166758, + "thread": 9 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1379806, + "thread": 30 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1637073, + "thread": 25 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1655529, + "thread": 30 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 1897152, + "thread": 15 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2031449, + "thread": 28 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2244352, + "thread": 2 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2316401, + "thread": 12 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2618570, + "thread": 11 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2640735, + "thread": 4 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 2884451, + "thread": 0 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 3118816, + "thread": 7 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 3171682, + "thread": 22 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 3353616, + "thread": 7 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 3581589, + "thread": 17 + } + }, + { + "amount": "278.699591002", + "slot": { + "period": 3683994, + "thread": 14 + } + }, + { + "amount": "278.699591010", + "slot": { + "period": 3780497, + "thread": 26 + } + } + ], + "AU1eMp9L1o2D6bfBBq8RQZbwz12jWdhgtx7qRQYqBVijYn7fWXaD": [ + { + "amount": "399.193432861", + "slot": { + "period": 22250, + "thread": 0 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 303794, + "thread": 24 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 334078, + "thread": 19 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 586742, + "thread": 21 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 777599, + "thread": 19 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 979065, + "thread": 14 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1032962, + "thread": 30 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1169469, + "thread": 15 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1395266, + "thread": 22 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1596932, + "thread": 0 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1794693, + "thread": 21 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1903028, + "thread": 17 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 1983692, + "thread": 27 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 2218664, + "thread": 9 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 2348743, + "thread": 2 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 2468493, + "thread": 4 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 2632017, + "thread": 13 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 2953390, + "thread": 30 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 3029357, + "thread": 29 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 3122616, + "thread": 12 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 3385111, + "thread": 28 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 3563766, + "thread": 29 + } + }, + { + "amount": "399.193432861", + "slot": { + "period": 3737029, + "thread": 15 + } + }, + { + "amount": "399.193432866", + "slot": { + "period": 3817485, + "thread": 27 + } + } + ], + "AU1eND7nyswjDJTgNLVS8zL1RKmC5uCwcE95RznRWD8sBsCyBNSB": [ + { + "amount": "172.886067852", + "slot": { + "period": 86357, + "thread": 15 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 178746, + "thread": 19 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 347928, + "thread": 16 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 597338, + "thread": 23 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 670565, + "thread": 17 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 958798, + "thread": 0 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 990638, + "thread": 25 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 1203737, + "thread": 22 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 1356454, + "thread": 20 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 1519982, + "thread": 3 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 1770251, + "thread": 8 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 1940703, + "thread": 24 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2139153, + "thread": 4 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2155007, + "thread": 18 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2338587, + "thread": 3 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2622657, + "thread": 0 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2771613, + "thread": 11 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2842360, + "thread": 12 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 2975055, + "thread": 14 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 3217569, + "thread": 23 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 3355212, + "thread": 26 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 3547843, + "thread": 13 + } + }, + { + "amount": "172.886067852", + "slot": { + "period": 3718552, + "thread": 12 + } + }, + { + "amount": "172.886067846", + "slot": { + "period": 3886885, + "thread": 5 + } + } + ], + "AU1ePrjLuF5jcG1wQxXwrB2rVCQdDAVEjABRZp5G1KrH2CGbMioQ": [ + { + "amount": "279.145730047", + "slot": { + "period": 73048, + "thread": 11 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 228103, + "thread": 28 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 433491, + "thread": 28 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 578719, + "thread": 6 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 729929, + "thread": 29 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 914780, + "thread": 11 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1078345, + "thread": 17 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1209998, + "thread": 20 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1358462, + "thread": 19 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1633996, + "thread": 25 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1747321, + "thread": 14 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 1920065, + "thread": 27 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2005708, + "thread": 28 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2167824, + "thread": 27 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2435270, + "thread": 3 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2550255, + "thread": 2 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2677977, + "thread": 22 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2950191, + "thread": 9 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 2983428, + "thread": 5 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 3158003, + "thread": 24 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 3355072, + "thread": 18 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 3503099, + "thread": 15 + } + }, + { + "amount": "279.145730047", + "slot": { + "period": 3749849, + "thread": 16 + } + }, + { + "amount": "279.145730040", + "slot": { + "period": 3878481, + "thread": 21 + } + } + ], + "AU1ePuzZNC3pY7n8UHEFGmfkVpFkeRFsH6cMyWxSiMpqh2qW1diZ": [ + { + "amount": "532.187630510", + "slot": { + "period": 167110, + "thread": 20 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 313367, + "thread": 31 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 426124, + "thread": 6 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 517596, + "thread": 16 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 756895, + "thread": 27 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 847107, + "thread": 15 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1115829, + "thread": 11 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1232485, + "thread": 31 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1409505, + "thread": 10 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1551399, + "thread": 14 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1703886, + "thread": 0 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 1817748, + "thread": 0 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2098940, + "thread": 5 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2177489, + "thread": 11 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2331439, + "thread": 4 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2571532, + "thread": 17 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2783001, + "thread": 18 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 2864278, + "thread": 14 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 3086666, + "thread": 6 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 3223263, + "thread": 16 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 3386443, + "thread": 31 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 3562359, + "thread": 22 + } + }, + { + "amount": "532.187630510", + "slot": { + "period": 3776856, + "thread": 5 + } + }, + { + "amount": "532.187630513", + "slot": { + "period": 3861633, + "thread": 21 + } + } + ], + "AU1ePwh961VMMe9qixFhnR5PrJpa39FbEoBYYRNs3ei6B1BDrEsr": [ + { + "amount": "227.519025964", + "slot": { + "period": 71264, + "thread": 28 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 213586, + "thread": 7 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 382792, + "thread": 25 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 644314, + "thread": 19 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 791876, + "thread": 4 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 879203, + "thread": 10 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1121791, + "thread": 31 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1254895, + "thread": 24 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1389909, + "thread": 19 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1633810, + "thread": 12 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1806729, + "thread": 4 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 1856492, + "thread": 17 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2067886, + "thread": 6 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2279447, + "thread": 21 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2297832, + "thread": 14 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2599259, + "thread": 12 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2735254, + "thread": 21 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2912009, + "thread": 18 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 2976690, + "thread": 22 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 3233722, + "thread": 2 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 3327898, + "thread": 25 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 3565059, + "thread": 19 + } + }, + { + "amount": "227.519025964", + "slot": { + "period": 3683218, + "thread": 0 + } + }, + { + "amount": "227.519025968", + "slot": { + "period": 3854599, + "thread": 2 + } + } + ], + "AU1eSqLEx2zfyK3WMc3wv6GVpEvK65JvnS7mpptXkA4MMDai33YX": [ + { + "amount": "102.339287797", + "slot": { + "period": 163304, + "thread": 23 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 197548, + "thread": 7 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 411585, + "thread": 28 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 640143, + "thread": 7 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 708472, + "thread": 8 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 887777, + "thread": 14 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1094819, + "thread": 14 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1150220, + "thread": 28 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1407722, + "thread": 14 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1482675, + "thread": 7 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1647370, + "thread": 21 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 1956655, + "thread": 11 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2143132, + "thread": 14 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2216600, + "thread": 26 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2317168, + "thread": 4 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2598295, + "thread": 4 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2716263, + "thread": 28 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 2865371, + "thread": 0 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3059874, + "thread": 11 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3275641, + "thread": 13 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3405148, + "thread": 27 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3613384, + "thread": 5 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3713503, + "thread": 0 + } + }, + { + "amount": "102.339287797", + "slot": { + "period": 3942949, + "thread": 2 + } + } + ], + "AU1eSvTRMjsvRtEHZcRNsdWejFARsgddngef491NMKF9sotrVGPB": [ + { + "amount": "342.744712020", + "slot": { + "period": 27589, + "thread": 11 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 211370, + "thread": 5 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 441178, + "thread": 15 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 586009, + "thread": 23 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 654505, + "thread": 25 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 850290, + "thread": 17 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1012044, + "thread": 17 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1202978, + "thread": 28 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1460108, + "thread": 10 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1539036, + "thread": 16 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1801477, + "thread": 7 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 1809104, + "thread": 22 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2110212, + "thread": 17 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2220891, + "thread": 29 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2379273, + "thread": 18 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2490257, + "thread": 1 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2665188, + "thread": 18 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 2936254, + "thread": 24 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 3018655, + "thread": 6 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 3121852, + "thread": 1 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 3411424, + "thread": 11 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 3563403, + "thread": 29 + } + }, + { + "amount": "342.744712020", + "slot": { + "period": 3683623, + "thread": 27 + } + }, + { + "amount": "342.744712009", + "slot": { + "period": 3926437, + "thread": 10 + } + } + ], + "AU1eUXm3KXhTYPJYNPp2B3sKBxVsVrFK8SQY73YLanTjxKb4DG2h": [ + { + "amount": "313.884383213", + "slot": { + "period": 31734, + "thread": 28 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 313768, + "thread": 16 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 368095, + "thread": 15 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 568450, + "thread": 18 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 722722, + "thread": 14 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 864006, + "thread": 16 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1027513, + "thread": 28 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1280208, + "thread": 16 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1352821, + "thread": 1 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1499732, + "thread": 25 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1708983, + "thread": 1 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 1852818, + "thread": 18 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2065712, + "thread": 18 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2282647, + "thread": 25 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2434661, + "thread": 26 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2497484, + "thread": 21 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2773675, + "thread": 9 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 2848526, + "thread": 7 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 3081702, + "thread": 15 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 3242838, + "thread": 23 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 3341220, + "thread": 7 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 3525405, + "thread": 25 + } + }, + { + "amount": "313.884383213", + "slot": { + "period": 3708552, + "thread": 18 + } + }, + { + "amount": "313.884383202", + "slot": { + "period": 3813078, + "thread": 9 + } + } + ], + "AU1eVLLBZThenYkXkGJf5YpYvsrpWiuzxjG7bHt4VbfDEgkdhKVA": [ + { + "amount": "209.499193735", + "slot": { + "period": 73877, + "thread": 12 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 202047, + "thread": 19 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 376692, + "thread": 29 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 598088, + "thread": 22 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 695738, + "thread": 16 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 973813, + "thread": 15 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1107813, + "thread": 1 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1286105, + "thread": 8 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1329165, + "thread": 12 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1646195, + "thread": 9 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1741185, + "thread": 18 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 1954437, + "thread": 31 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2012234, + "thread": 30 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2262583, + "thread": 1 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2367987, + "thread": 13 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2594593, + "thread": 25 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2640357, + "thread": 14 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 2940381, + "thread": 1 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 3042278, + "thread": 9 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 3251507, + "thread": 27 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 3357626, + "thread": 28 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 3612239, + "thread": 2 + } + }, + { + "amount": "209.499193735", + "slot": { + "period": 3778659, + "thread": 16 + } + }, + { + "amount": "209.499193736", + "slot": { + "period": 3870357, + "thread": 6 + } + } + ], + "AU1eVhBvJpurj8YKUCC1uDxd1HSxPajaqL3NxBZjv5gBQRW749CZ": [ + { + "amount": "128.700565937", + "slot": { + "period": 54354, + "thread": 0 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 277765, + "thread": 18 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 352681, + "thread": 30 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 575608, + "thread": 7 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 738335, + "thread": 0 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 854647, + "thread": 12 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1127861, + "thread": 18 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1167434, + "thread": 17 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1478194, + "thread": 8 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1519756, + "thread": 25 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1708101, + "thread": 18 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 1900839, + "thread": 20 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2016905, + "thread": 20 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2239054, + "thread": 22 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2406631, + "thread": 25 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2563174, + "thread": 24 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2692565, + "thread": 0 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 2884836, + "thread": 30 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 3121030, + "thread": 7 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 3281558, + "thread": 18 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 3435362, + "thread": 12 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 3570123, + "thread": 26 + } + }, + { + "amount": "128.700565937", + "slot": { + "period": 3775218, + "thread": 24 + } + }, + { + "amount": "128.700565944", + "slot": { + "period": 3947395, + "thread": 3 + } + } + ], + "AU1eVy7U1pkRqqrhPapXaxTVA6xU2eFbUraoMEP1E2Dazy8GZHP7": [ + { + "amount": "65.855128533", + "slot": { + "period": 134023, + "thread": 9 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 305413, + "thread": 26 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 450627, + "thread": 2 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 618621, + "thread": 18 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 760224, + "thread": 13 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 872134, + "thread": 0 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1123008, + "thread": 13 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1194980, + "thread": 2 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1443242, + "thread": 10 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1577865, + "thread": 1 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1700153, + "thread": 6 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 1954701, + "thread": 17 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2049268, + "thread": 10 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2236486, + "thread": 2 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2420107, + "thread": 21 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2522018, + "thread": 25 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2738855, + "thread": 18 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 2816665, + "thread": 4 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 3088502, + "thread": 10 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 3133121, + "thread": 16 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 3393804, + "thread": 27 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 3480790, + "thread": 28 + } + }, + { + "amount": "65.855128533", + "slot": { + "period": 3644584, + "thread": 9 + } + }, + { + "amount": "65.855128526", + "slot": { + "period": 3911230, + "thread": 18 + } + } + ], + "AU1eWfqydZ1gq4TMBnikBJD6t7t4C2eiKZcMHRySxdzGGm2ja3oT": [ + { + "amount": "273.993847041", + "slot": { + "period": 42726, + "thread": 14 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 193166, + "thread": 4 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 470833, + "thread": 3 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 604465, + "thread": 14 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 717850, + "thread": 28 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 891505, + "thread": 0 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 993489, + "thread": 3 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 1297833, + "thread": 26 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 1464336, + "thread": 3 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 1603787, + "thread": 31 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 1704912, + "thread": 15 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 1874210, + "thread": 27 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2040344, + "thread": 6 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2207338, + "thread": 20 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2410598, + "thread": 4 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2599489, + "thread": 29 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2734188, + "thread": 30 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2918148, + "thread": 31 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 2957610, + "thread": 10 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 3127789, + "thread": 2 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 3324865, + "thread": 14 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 3602598, + "thread": 24 + } + }, + { + "amount": "273.993847041", + "slot": { + "period": 3768696, + "thread": 17 + } + }, + { + "amount": "273.993847048", + "slot": { + "period": 3836738, + "thread": 25 + } + } + ], + "AU1eWrtVgPVD2R5FGnXHLLPyxmLQZ54jZQoBw8cVis4ufahDJYQK": [ + { + "amount": "539.983884295", + "slot": { + "period": 145433, + "thread": 25 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 283879, + "thread": 25 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 409885, + "thread": 16 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 496710, + "thread": 16 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 704025, + "thread": 18 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 917888, + "thread": 18 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1017750, + "thread": 25 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1297924, + "thread": 30 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1340750, + "thread": 22 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1519142, + "thread": 10 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1796820, + "thread": 9 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 1899211, + "thread": 9 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2053129, + "thread": 18 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2214602, + "thread": 5 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2399781, + "thread": 30 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2558798, + "thread": 9 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2640926, + "thread": 13 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2834950, + "thread": 21 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 2982016, + "thread": 12 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 3160835, + "thread": 18 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 3376805, + "thread": 29 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 3520555, + "thread": 5 + } + }, + { + "amount": "539.983884295", + "slot": { + "period": 3636826, + "thread": 6 + } + }, + { + "amount": "539.983884288", + "slot": { + "period": 3837676, + "thread": 14 + } + } + ], + "AU1eWwnkuPN742ckqg4Pkx9PUQn7pARUopN6w2nZ8ShLc6XHfnnE": [ + { + "amount": "193.781428596", + "slot": { + "period": 98419, + "thread": 13 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 217964, + "thread": 30 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 463039, + "thread": 10 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 637499, + "thread": 24 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 706328, + "thread": 9 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 906540, + "thread": 31 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1134757, + "thread": 23 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1238288, + "thread": 12 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1472619, + "thread": 15 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1638918, + "thread": 26 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1711661, + "thread": 26 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 1829093, + "thread": 3 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2090295, + "thread": 23 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2204682, + "thread": 13 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2438813, + "thread": 8 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2575058, + "thread": 19 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2771832, + "thread": 6 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2817184, + "thread": 23 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 2997328, + "thread": 18 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 3238970, + "thread": 16 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 3301598, + "thread": 27 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 3566259, + "thread": 8 + } + }, + { + "amount": "193.781428596", + "slot": { + "period": 3622652, + "thread": 27 + } + }, + { + "amount": "193.781428598", + "slot": { + "period": 3850521, + "thread": 31 + } + } + ], + "AU1eXLJm8Vg5tsB8uhdmMGMp2oc2uTxeRVNaJ85ibGmjaiBwqXSM": [ + { + "amount": "512.065389021", + "slot": { + "period": 78909, + "thread": 3 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 187359, + "thread": 18 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 418269, + "thread": 31 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 583735, + "thread": 8 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 767550, + "thread": 23 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 839793, + "thread": 23 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1106863, + "thread": 26 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1249820, + "thread": 25 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1364926, + "thread": 4 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1503876, + "thread": 19 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1683757, + "thread": 20 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1823752, + "thread": 29 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 1981430, + "thread": 8 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2259967, + "thread": 29 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2349226, + "thread": 16 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2601767, + "thread": 18 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2678319, + "thread": 23 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2934131, + "thread": 12 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 2984357, + "thread": 20 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 3127745, + "thread": 17 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 3417480, + "thread": 31 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 3506063, + "thread": 26 + } + }, + { + "amount": "512.065389021", + "slot": { + "period": 3690182, + "thread": 21 + } + }, + { + "amount": "512.065389027", + "slot": { + "period": 3832420, + "thread": 14 + } + } + ], + "AU1eYd4NStkQ1te8vieDbz9Jb8ud1cwmVv3nsXpfmJd6ESn35RZg": [ + { + "amount": "112.754042809", + "slot": { + "period": 95849, + "thread": 11 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 289609, + "thread": 24 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 430734, + "thread": 17 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 530193, + "thread": 30 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 696675, + "thread": 18 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 949074, + "thread": 19 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1019609, + "thread": 1 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1203221, + "thread": 9 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1387118, + "thread": 0 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1626580, + "thread": 12 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1775338, + "thread": 23 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 1918667, + "thread": 16 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2133588, + "thread": 26 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2146990, + "thread": 22 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2419532, + "thread": 12 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2527889, + "thread": 31 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2782300, + "thread": 5 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2940989, + "thread": 0 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 2965597, + "thread": 8 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 3193381, + "thread": 4 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 3291460, + "thread": 11 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 3527996, + "thread": 10 + } + }, + { + "amount": "112.754042809", + "slot": { + "period": 3635602, + "thread": 18 + } + }, + { + "amount": "112.754042817", + "slot": { + "period": 3788115, + "thread": 1 + } + } + ], + "AU1eZ3Scjn4TUoZyP3UBQDDsA1MyvrLaD9wyz8NkkkTb6co6QbsC": [ + { + "amount": "421.247739737", + "slot": { + "period": 155506, + "thread": 14 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 174221, + "thread": 19 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 349442, + "thread": 13 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 537672, + "thread": 0 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 794519, + "thread": 4 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 854935, + "thread": 19 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1117971, + "thread": 27 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1178387, + "thread": 8 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1471389, + "thread": 17 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1479629, + "thread": 23 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1735257, + "thread": 9 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 1869990, + "thread": 1 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2048622, + "thread": 4 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2236663, + "thread": 10 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2444469, + "thread": 16 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2581852, + "thread": 8 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2635821, + "thread": 20 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 2884037, + "thread": 12 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 3072844, + "thread": 24 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 3238110, + "thread": 5 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 3303942, + "thread": 30 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 3457530, + "thread": 4 + } + }, + { + "amount": "421.247739737", + "slot": { + "period": 3654571, + "thread": 28 + } + }, + { + "amount": "421.247739734", + "slot": { + "period": 3869035, + "thread": 28 + } + } + ], + "AU1eZ924MuTekWDpmdZnikqPFHKqdFj6Yy2Qk1ckni571gtjbizw": [ + { + "amount": "328.317991757", + "slot": { + "period": 102381, + "thread": 3 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 259870, + "thread": 29 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 476276, + "thread": 4 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 649441, + "thread": 17 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 760044, + "thread": 30 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 852668, + "thread": 11 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1014657, + "thread": 5 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1280971, + "thread": 22 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1454520, + "thread": 4 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1583619, + "thread": 14 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1757972, + "thread": 29 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 1927711, + "thread": 11 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2067094, + "thread": 14 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2163758, + "thread": 7 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2412765, + "thread": 14 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2576133, + "thread": 4 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2751369, + "thread": 2 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 2903792, + "thread": 31 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 3068285, + "thread": 0 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 3214510, + "thread": 25 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 3304391, + "thread": 8 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 3617203, + "thread": 1 + } + }, + { + "amount": "328.317991757", + "slot": { + "period": 3768270, + "thread": 12 + } + }, + { + "amount": "328.317991754", + "slot": { + "period": 3827850, + "thread": 8 + } + } + ], + "AU1eaEaeKpHe9UBW3e2RNEo6QeDMFZFiZRh3BdLNqAA2UKExmd4y": [ + { + "amount": "240.902531330", + "slot": { + "period": 49077, + "thread": 0 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 227622, + "thread": 9 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 329897, + "thread": 30 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 652109, + "thread": 26 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 750327, + "thread": 19 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 849829, + "thread": 8 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1089945, + "thread": 7 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1311641, + "thread": 30 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1336309, + "thread": 30 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1518645, + "thread": 2 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1697661, + "thread": 27 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 1953486, + "thread": 19 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2029846, + "thread": 17 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2277113, + "thread": 0 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2356451, + "thread": 13 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2468512, + "thread": 27 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2733165, + "thread": 9 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 2950090, + "thread": 31 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 3111499, + "thread": 1 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 3152540, + "thread": 5 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 3389063, + "thread": 20 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 3562149, + "thread": 23 + } + }, + { + "amount": "240.902531330", + "slot": { + "period": 3702908, + "thread": 11 + } + }, + { + "amount": "240.902531331", + "slot": { + "period": 3842852, + "thread": 23 + } + } + ], + "AU1eaWAawSK1kfzVfDdas8xfSZ42ugjoDr3SdErZYzvjQSnapYbj": [ + { + "amount": "201.009852161", + "slot": { + "period": 160390, + "thread": 15 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 193712, + "thread": 24 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 326147, + "thread": 27 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 598855, + "thread": 28 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 806532, + "thread": 7 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 949793, + "thread": 28 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1041241, + "thread": 24 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1295074, + "thread": 28 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1355415, + "thread": 4 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1643087, + "thread": 12 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1737829, + "thread": 16 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 1827566, + "thread": 12 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2099675, + "thread": 9 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2247676, + "thread": 13 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2441500, + "thread": 20 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2468455, + "thread": 30 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2687070, + "thread": 8 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 2823170, + "thread": 6 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 3005800, + "thread": 11 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 3274379, + "thread": 26 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 3342951, + "thread": 25 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 3463518, + "thread": 5 + } + }, + { + "amount": "201.009852161", + "slot": { + "period": 3671949, + "thread": 30 + } + }, + { + "amount": "201.009852153", + "slot": { + "period": 3877104, + "thread": 8 + } + } + ], + "AU1eaXXhBwPcaRorE9bGNhSHPSCiAE733tV1mhcC1jmg34bpCXPh": [ + { + "amount": "63.037405945", + "slot": { + "period": 46431, + "thread": 14 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 226708, + "thread": 4 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 368428, + "thread": 22 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 627393, + "thread": 28 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 718665, + "thread": 9 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 949262, + "thread": 13 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1026652, + "thread": 8 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1219052, + "thread": 22 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1443801, + "thread": 16 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1490669, + "thread": 26 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1714425, + "thread": 29 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1843466, + "thread": 16 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 1994546, + "thread": 1 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2218276, + "thread": 1 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2303928, + "thread": 0 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2554960, + "thread": 10 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2786759, + "thread": 19 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2890274, + "thread": 23 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 2957053, + "thread": 12 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 3287448, + "thread": 8 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 3434579, + "thread": 14 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 3532534, + "thread": 29 + } + }, + { + "amount": "63.037405945", + "slot": { + "period": 3635286, + "thread": 1 + } + }, + { + "amount": "63.037405956", + "slot": { + "period": 3903714, + "thread": 2 + } + } + ], + "AU1eb7YPwkmL8R1qrt1SeKLcjQrwPcufKJ1C8KhXonoT8R6t9Bro": [ + { + "amount": "242.617348155", + "slot": { + "period": 162224, + "thread": 20 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 177771, + "thread": 24 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 359185, + "thread": 9 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 539087, + "thread": 3 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 811974, + "thread": 16 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 879572, + "thread": 16 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1005959, + "thread": 5 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1295518, + "thread": 6 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1361711, + "thread": 16 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1623493, + "thread": 14 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1752064, + "thread": 9 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 1968209, + "thread": 17 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2023000, + "thread": 5 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2259071, + "thread": 2 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2396248, + "thread": 5 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2618197, + "thread": 26 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2692141, + "thread": 14 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2815634, + "thread": 31 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 2971780, + "thread": 8 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 3238008, + "thread": 4 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 3444037, + "thread": 3 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 3538341, + "thread": 24 + } + }, + { + "amount": "242.617348155", + "slot": { + "period": 3737682, + "thread": 8 + } + }, + { + "amount": "242.617348165", + "slot": { + "period": 3879423, + "thread": 29 + } + } + ], + "AU1ecpc9iaDyjwBMUwU7nnAErpr7xsFmeTNksP8uapdGz66axhCC": [ + { + "amount": "54.268309203", + "slot": { + "period": 139155, + "thread": 30 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 310711, + "thread": 29 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 476273, + "thread": 15 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 525744, + "thread": 2 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 720085, + "thread": 24 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 827414, + "thread": 12 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1050093, + "thread": 13 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1267008, + "thread": 5 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1319481, + "thread": 0 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1494721, + "thread": 3 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1711333, + "thread": 6 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 1826684, + "thread": 17 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2068883, + "thread": 20 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2237673, + "thread": 27 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2336463, + "thread": 18 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2490856, + "thread": 30 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2752663, + "thread": 22 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2950340, + "thread": 2 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 2976134, + "thread": 10 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 3238855, + "thread": 28 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 3407353, + "thread": 17 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 3595455, + "thread": 30 + } + }, + { + "amount": "54.268309203", + "slot": { + "period": 3625259, + "thread": 14 + } + }, + { + "amount": "54.268309201", + "slot": { + "period": 3807790, + "thread": 20 + } + } + ], + "AU1ecvSqgZuoqKQXbspfWL9hQX3ZnjNXeJcUnhsA6ob5WKCdhfot": [ + { + "amount": "328.711986337", + "slot": { + "period": 24500, + "thread": 10 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 302456, + "thread": 9 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 474545, + "thread": 22 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 615716, + "thread": 14 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 687933, + "thread": 29 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 971069, + "thread": 5 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1008997, + "thread": 18 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1295873, + "thread": 27 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1377640, + "thread": 13 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1531255, + "thread": 5 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1770261, + "thread": 11 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 1924416, + "thread": 23 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2043359, + "thread": 16 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2220595, + "thread": 18 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2446145, + "thread": 14 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2543097, + "thread": 3 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2691514, + "thread": 23 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2851925, + "thread": 27 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 2962816, + "thread": 28 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 3234232, + "thread": 1 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 3442661, + "thread": 22 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 3608070, + "thread": 8 + } + }, + { + "amount": "328.711986337", + "slot": { + "period": 3741628, + "thread": 14 + } + }, + { + "amount": "328.711986338", + "slot": { + "period": 3832997, + "thread": 27 + } + } + ], + "AU1edeozADyUka9ju9AsKuS7Dr2kfYcjXvVesoynAHGUjUXNMm4e": [ + { + "amount": "378.388221072", + "slot": { + "period": 135691, + "thread": 1 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 213784, + "thread": 31 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 468271, + "thread": 29 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 574776, + "thread": 22 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 657150, + "thread": 26 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 931252, + "thread": 5 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 991521, + "thread": 24 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 1181693, + "thread": 8 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 1368627, + "thread": 9 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 1644514, + "thread": 7 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 1649460, + "thread": 23 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 1910979, + "thread": 4 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2040632, + "thread": 31 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2237364, + "thread": 22 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2348263, + "thread": 25 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2535794, + "thread": 20 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2739567, + "thread": 17 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2894147, + "thread": 17 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 2960477, + "thread": 30 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 3240506, + "thread": 7 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 3348078, + "thread": 29 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 3477183, + "thread": 31 + } + }, + { + "amount": "378.388221072", + "slot": { + "period": 3626932, + "thread": 13 + } + }, + { + "amount": "378.388221083", + "slot": { + "period": 3882598, + "thread": 11 + } + } + ], + "AU1ee4rbbcdrcGLtF7tvRZ3hvx9MVHTQpFEQZgwrE19URrJWPf6b": [ + { + "amount": "165.051018676", + "slot": { + "period": 155288, + "thread": 29 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 321657, + "thread": 31 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 376490, + "thread": 4 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 551372, + "thread": 1 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 802085, + "thread": 18 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 875431, + "thread": 2 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1147927, + "thread": 19 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1288121, + "thread": 26 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1321292, + "thread": 26 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1617789, + "thread": 23 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1758034, + "thread": 30 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 1914687, + "thread": 15 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2107301, + "thread": 14 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2199897, + "thread": 27 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2324976, + "thread": 31 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2486669, + "thread": 12 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2721286, + "thread": 2 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2920520, + "thread": 9 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 2993413, + "thread": 12 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 3188301, + "thread": 3 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 3335309, + "thread": 29 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 3605316, + "thread": 22 + } + }, + { + "amount": "165.051018676", + "slot": { + "period": 3755053, + "thread": 20 + } + }, + { + "amount": "165.051018683", + "slot": { + "period": 3906871, + "thread": 15 + } + } + ], + "AU1ee7fzmSExfjDabyx4pGZte3mY9wcf4Gkwx1PREaaGLUBDx1RD": [ + { + "amount": "521.444120363", + "slot": { + "period": 33371, + "thread": 21 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 249402, + "thread": 18 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 367534, + "thread": 10 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 500700, + "thread": 4 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 749985, + "thread": 4 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 971947, + "thread": 12 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1022378, + "thread": 21 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1258742, + "thread": 21 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1333084, + "thread": 24 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1613045, + "thread": 25 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1704640, + "thread": 1 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 1893835, + "thread": 12 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2037317, + "thread": 3 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2195062, + "thread": 10 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2358684, + "thread": 7 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2594345, + "thread": 9 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2749895, + "thread": 10 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 2940058, + "thread": 0 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 3030412, + "thread": 15 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 3196391, + "thread": 20 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 3382202, + "thread": 22 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 3471214, + "thread": 12 + } + }, + { + "amount": "521.444120363", + "slot": { + "period": 3703091, + "thread": 30 + } + }, + { + "amount": "521.444120366", + "slot": { + "period": 3873800, + "thread": 21 + } + } + ], + "AU1egU9FtGS66Sht77FqaawHfXcjpDhm7s4upPCqdwGPyUE4zBSc": [ + { + "amount": "138.096754302", + "slot": { + "period": 161944, + "thread": 2 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 215007, + "thread": 3 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 483714, + "thread": 16 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 580704, + "thread": 29 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 715311, + "thread": 30 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 980343, + "thread": 14 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1045403, + "thread": 28 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1216318, + "thread": 4 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1395032, + "thread": 17 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1635655, + "thread": 27 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1782473, + "thread": 31 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 1958815, + "thread": 7 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2134908, + "thread": 18 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2238683, + "thread": 4 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2409532, + "thread": 29 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2564115, + "thread": 13 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2631119, + "thread": 14 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 2800860, + "thread": 11 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 3081299, + "thread": 15 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 3240714, + "thread": 4 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 3334734, + "thread": 29 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 3584508, + "thread": 23 + } + }, + { + "amount": "138.096754302", + "slot": { + "period": 3743809, + "thread": 15 + } + }, + { + "amount": "138.096754292", + "slot": { + "period": 3832383, + "thread": 5 + } + } + ], + "AU1eiwnjVqF9s6RJcADp1qThh38t1wAdrzFzRR8o3dEkHWmGoqfS": [ + { + "amount": "135.348301321", + "slot": { + "period": 20520, + "thread": 29 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 272608, + "thread": 19 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 472711, + "thread": 24 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 555036, + "thread": 5 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 792868, + "thread": 5 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 950123, + "thread": 13 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1103917, + "thread": 16 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1166296, + "thread": 22 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1380003, + "thread": 15 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1573690, + "thread": 17 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1698550, + "thread": 18 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 1956102, + "thread": 11 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2120238, + "thread": 9 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2280978, + "thread": 17 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2397734, + "thread": 8 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2541753, + "thread": 11 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2627573, + "thread": 9 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 2839754, + "thread": 15 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 3002925, + "thread": 18 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 3123946, + "thread": 16 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 3449870, + "thread": 23 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 3573758, + "thread": 31 + } + }, + { + "amount": "135.348301321", + "slot": { + "period": 3720102, + "thread": 10 + } + }, + { + "amount": "135.348301327", + "slot": { + "period": 3871361, + "thread": 30 + } + } + ], + "AU1ejoxmBD7mw3UnYKBBRib7j8daHMKoF6xi49jykNMdmDpf4iJR": [ + { + "amount": "285.567644709", + "slot": { + "period": 166341, + "thread": 25 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 304822, + "thread": 4 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 353348, + "thread": 6 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 562677, + "thread": 4 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 670333, + "thread": 8 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 974082, + "thread": 14 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1122316, + "thread": 30 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1151462, + "thread": 21 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1361298, + "thread": 0 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1588677, + "thread": 27 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1728074, + "thread": 24 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 1868792, + "thread": 3 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2100972, + "thread": 24 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2171037, + "thread": 7 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2302544, + "thread": 20 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2615385, + "thread": 7 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2638806, + "thread": 28 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 2944523, + "thread": 17 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 3013553, + "thread": 20 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 3206910, + "thread": 0 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 3302975, + "thread": 16 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 3605785, + "thread": 20 + } + }, + { + "amount": "285.567644709", + "slot": { + "period": 3715925, + "thread": 1 + } + }, + { + "amount": "285.567644700", + "slot": { + "period": 3862728, + "thread": 6 + } + } + ], + "AU1ek8kEkVcTaQH6uZJWZKPwkGZDx2m3PW1zScRJyvGCoKRrDqqW": [ + { + "amount": "303.765790733", + "slot": { + "period": 117258, + "thread": 25 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 178258, + "thread": 1 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 383360, + "thread": 22 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 624075, + "thread": 26 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 812074, + "thread": 13 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 827928, + "thread": 11 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1053752, + "thread": 7 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1279177, + "thread": 25 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1377692, + "thread": 9 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1493374, + "thread": 25 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1777058, + "thread": 8 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 1922094, + "thread": 23 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2022879, + "thread": 31 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2187959, + "thread": 14 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2434945, + "thread": 26 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2561809, + "thread": 28 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2769227, + "thread": 27 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 2909947, + "thread": 24 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 3099815, + "thread": 9 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 3209977, + "thread": 26 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 3443102, + "thread": 16 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 3495170, + "thread": 13 + } + }, + { + "amount": "303.765790733", + "slot": { + "period": 3645024, + "thread": 22 + } + }, + { + "amount": "303.765790731", + "slot": { + "period": 3850091, + "thread": 9 + } + } + ], + "AU1em2rmVj6XWdB94dSaDp9uVY2x8RZosP5Q2EocLLycVMB7QR7F": [ + { + "amount": "378.477154123", + "slot": { + "period": 157265, + "thread": 1 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 212962, + "thread": 8 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 325339, + "thread": 5 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 508844, + "thread": 1 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 694698, + "thread": 8 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 928624, + "thread": 18 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1015925, + "thread": 7 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1162300, + "thread": 1 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1370845, + "thread": 16 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1547279, + "thread": 5 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1711628, + "thread": 28 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 1845541, + "thread": 15 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2056510, + "thread": 15 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2198095, + "thread": 0 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2366084, + "thread": 25 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2617969, + "thread": 3 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2626602, + "thread": 9 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 2827715, + "thread": 7 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 3021098, + "thread": 9 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 3213793, + "thread": 13 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 3333237, + "thread": 29 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 3488549, + "thread": 20 + } + }, + { + "amount": "378.477154123", + "slot": { + "period": 3712470, + "thread": 27 + } + }, + { + "amount": "378.477154132", + "slot": { + "period": 3907083, + "thread": 15 + } + } + ], + "AU1emKPiYZ8ftad5QQPR2j98kTF2YD7rYvPDyv2BMEoJ9XvRZtoA": [ + { + "amount": "486.315283741", + "slot": { + "period": 20883, + "thread": 19 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 265819, + "thread": 29 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 359329, + "thread": 5 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 533093, + "thread": 7 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 766111, + "thread": 15 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 867686, + "thread": 18 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1051719, + "thread": 1 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1298815, + "thread": 7 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1336341, + "thread": 9 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1597304, + "thread": 11 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1685882, + "thread": 10 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1848884, + "thread": 0 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 1986351, + "thread": 23 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 2294016, + "thread": 3 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 2346417, + "thread": 20 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 2606031, + "thread": 0 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 2779149, + "thread": 26 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 2868259, + "thread": 13 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 3005626, + "thread": 11 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 3223230, + "thread": 15 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 3413796, + "thread": 31 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 3500236, + "thread": 14 + } + }, + { + "amount": "486.315283741", + "slot": { + "period": 3766913, + "thread": 2 + } + }, + { + "amount": "486.315283743", + "slot": { + "period": 3890809, + "thread": 13 + } + } + ], + "AU1emiC7aKyMh92WyYF8VNQnRvAn94AkU7hGJpuWZPLTSfQ4Tzrb": [ + { + "amount": "278.888029687", + "slot": { + "period": 160533, + "thread": 14 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 289349, + "thread": 13 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 482400, + "thread": 28 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 612669, + "thread": 15 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 655581, + "thread": 18 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 887758, + "thread": 30 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1035819, + "thread": 11 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1220096, + "thread": 30 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1361264, + "thread": 16 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1552793, + "thread": 29 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1765210, + "thread": 28 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 1810691, + "thread": 30 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2142315, + "thread": 23 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2151475, + "thread": 5 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2424644, + "thread": 21 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2607788, + "thread": 18 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2667743, + "thread": 11 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 2889762, + "thread": 22 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 3061523, + "thread": 9 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 3274170, + "thread": 20 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 3450477, + "thread": 15 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 3599875, + "thread": 28 + } + }, + { + "amount": "278.888029687", + "slot": { + "period": 3682825, + "thread": 19 + } + }, + { + "amount": "278.888029693", + "slot": { + "period": 3780644, + "thread": 20 + } + } + ], + "AU1emkNgk5puXXYpM4Su8y6j4GYoW1DrMhcbzPsruNxJwc4BuX33": [ + { + "amount": "377.120221058", + "slot": { + "period": 67626, + "thread": 5 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 219736, + "thread": 25 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 388864, + "thread": 23 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 556237, + "thread": 5 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 721112, + "thread": 0 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 970554, + "thread": 11 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1127385, + "thread": 10 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1306378, + "thread": 21 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1447741, + "thread": 16 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1512846, + "thread": 9 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1674285, + "thread": 1 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 1809883, + "thread": 6 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2018033, + "thread": 22 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2237294, + "thread": 29 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2391698, + "thread": 25 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2466740, + "thread": 16 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2668677, + "thread": 14 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 2949622, + "thread": 20 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 3014534, + "thread": 28 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 3182276, + "thread": 18 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 3372853, + "thread": 13 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 3493843, + "thread": 17 + } + }, + { + "amount": "377.120221058", + "slot": { + "period": 3695324, + "thread": 13 + } + }, + { + "amount": "377.120221069", + "slot": { + "period": 3886007, + "thread": 17 + } + } + ], + "AU1emqPXsVf41WesnZ9fT8ePQhjfV8nmm2HGoi12D1zrHnwHASLb": [ + { + "amount": "258.748522438", + "slot": { + "period": 145221, + "thread": 18 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 258216, + "thread": 12 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 478747, + "thread": 26 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 516847, + "thread": 4 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 748506, + "thread": 4 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 891477, + "thread": 4 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 989739, + "thread": 26 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 1307856, + "thread": 12 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 1323145, + "thread": 0 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 1546210, + "thread": 14 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 1664303, + "thread": 5 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 1823042, + "thread": 14 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2050785, + "thread": 3 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2272449, + "thread": 23 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2366704, + "thread": 17 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2513912, + "thread": 15 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2779116, + "thread": 27 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 2899812, + "thread": 2 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 3039715, + "thread": 10 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 3185259, + "thread": 30 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 3289716, + "thread": 26 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 3594784, + "thread": 24 + } + }, + { + "amount": "258.748522438", + "slot": { + "period": 3770992, + "thread": 16 + } + }, + { + "amount": "258.748522444", + "slot": { + "period": 3909127, + "thread": 17 + } + } + ], + "AU1emtYtuPKHEDpJzoPUYBLfdAXaTXE8UsTedqwZu9oUeWxybMce": [ + { + "amount": "122.523180077", + "slot": { + "period": 31793, + "thread": 2 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 168648, + "thread": 2 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 325416, + "thread": 21 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 496545, + "thread": 23 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 819520, + "thread": 7 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 912228, + "thread": 30 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1043190, + "thread": 15 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1314766, + "thread": 4 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1381859, + "thread": 20 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1535593, + "thread": 17 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1673787, + "thread": 28 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 1839942, + "thread": 25 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2058185, + "thread": 10 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2187799, + "thread": 0 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2454241, + "thread": 28 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2525836, + "thread": 15 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2732622, + "thread": 0 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 2931887, + "thread": 18 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 3048479, + "thread": 12 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 3182982, + "thread": 7 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 3325269, + "thread": 21 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 3486728, + "thread": 25 + } + }, + { + "amount": "122.523180077", + "slot": { + "period": 3753715, + "thread": 31 + } + }, + { + "amount": "122.523180071", + "slot": { + "period": 3896971, + "thread": 24 + } + } + ], + "AU1enEgVuhZVPWJbgDcsSRMjLFmYj4ABkx9extBSpiNpZZGZAHGK": [ + { + "amount": "135.167252826", + "slot": { + "period": 28093, + "thread": 6 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 264265, + "thread": 20 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 446097, + "thread": 3 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 540457, + "thread": 23 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 802309, + "thread": 14 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 955563, + "thread": 8 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1124312, + "thread": 22 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1314047, + "thread": 23 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1408861, + "thread": 19 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1485267, + "thread": 28 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1756730, + "thread": 11 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1974966, + "thread": 28 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 1978964, + "thread": 5 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2253100, + "thread": 26 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2371916, + "thread": 21 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2541683, + "thread": 1 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2627864, + "thread": 13 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2826379, + "thread": 18 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 2964135, + "thread": 19 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 3213011, + "thread": 22 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 3407601, + "thread": 29 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 3601770, + "thread": 26 + } + }, + { + "amount": "135.167252826", + "slot": { + "period": 3777910, + "thread": 19 + } + }, + { + "amount": "135.167252830", + "slot": { + "period": 3943816, + "thread": 30 + } + } + ], + "AU1enehuuJrAdHvwzjWQ9kanfbbRmN1snWoQ2qUfefDHNJfScfKU": [ + { + "amount": "161.989645244", + "slot": { + "period": 89016, + "thread": 21 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 213300, + "thread": 1 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 452035, + "thread": 24 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 622241, + "thread": 24 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 653689, + "thread": 19 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 961367, + "thread": 19 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1033155, + "thread": 16 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1242606, + "thread": 23 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1372899, + "thread": 27 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1542340, + "thread": 17 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1757629, + "thread": 7 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 1845116, + "thread": 25 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2068285, + "thread": 1 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2216116, + "thread": 20 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2427300, + "thread": 21 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2475860, + "thread": 1 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2692139, + "thread": 6 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 2939938, + "thread": 10 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 3047759, + "thread": 17 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 3166466, + "thread": 25 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 3389358, + "thread": 27 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 3522202, + "thread": 2 + } + }, + { + "amount": "161.989645244", + "slot": { + "period": 3643420, + "thread": 14 + } + }, + { + "amount": "161.989645255", + "slot": { + "period": 3806825, + "thread": 27 + } + } + ], + "AU1ensViGvcMEQpf36vHXgF7YXGJx27fEzvkHutZZK8cXHEg73T": [ + { + "amount": "454.886125214", + "slot": { + "period": 61089, + "thread": 5 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 293457, + "thread": 21 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 444348, + "thread": 31 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 641580, + "thread": 16 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 696145, + "thread": 28 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 973709, + "thread": 1 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1111395, + "thread": 12 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1295555, + "thread": 21 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1335655, + "thread": 21 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1516536, + "thread": 17 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1805309, + "thread": 25 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 1956485, + "thread": 26 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2023307, + "thread": 21 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2209906, + "thread": 13 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2417889, + "thread": 12 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2496758, + "thread": 19 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2627333, + "thread": 30 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 2804202, + "thread": 31 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 3086878, + "thread": 26 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 3122339, + "thread": 14 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 3400560, + "thread": 22 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 3537784, + "thread": 1 + } + }, + { + "amount": "454.886125214", + "slot": { + "period": 3771763, + "thread": 24 + } + }, + { + "amount": "454.886125215", + "slot": { + "period": 3938868, + "thread": 17 + } + } + ], + "AU1enuspK5gW9URwPwUVQMgu3QeGzQGzR6yFvMDDqtsbg72katve": [ + { + "amount": "164.085375731", + "slot": { + "period": 14195, + "thread": 14 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 254180, + "thread": 29 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 335273, + "thread": 0 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 525089, + "thread": 5 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 777671, + "thread": 5 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 981459, + "thread": 27 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1080638, + "thread": 17 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1237861, + "thread": 2 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1349189, + "thread": 5 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1537432, + "thread": 27 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1650622, + "thread": 21 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 1925673, + "thread": 31 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2071530, + "thread": 13 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2234600, + "thread": 7 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2444927, + "thread": 1 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2553873, + "thread": 31 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2654825, + "thread": 21 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 2935102, + "thread": 30 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 3054973, + "thread": 28 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 3287422, + "thread": 30 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 3312466, + "thread": 5 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 3512116, + "thread": 29 + } + }, + { + "amount": "164.085375731", + "slot": { + "period": 3682336, + "thread": 0 + } + }, + { + "amount": "164.085375738", + "slot": { + "period": 3897037, + "thread": 7 + } + } + ], + "AU1epHAQGvdLjr8uBb45vTqsDeAGwuano4NuF78ienszHS4SBhXm": [ + { + "amount": "144.247361994", + "slot": { + "period": 151241, + "thread": 21 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 229895, + "thread": 19 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 337309, + "thread": 10 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 620242, + "thread": 1 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 747093, + "thread": 22 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 905401, + "thread": 7 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1133452, + "thread": 15 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1253154, + "thread": 23 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1349796, + "thread": 14 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1515881, + "thread": 2 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1683438, + "thread": 0 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 1825790, + "thread": 25 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2116110, + "thread": 21 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2263457, + "thread": 18 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2455352, + "thread": 31 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2569409, + "thread": 1 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2715416, + "thread": 9 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 2809966, + "thread": 2 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 3073556, + "thread": 15 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 3164506, + "thread": 7 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 3423752, + "thread": 18 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 3595153, + "thread": 2 + } + }, + { + "amount": "144.247361994", + "slot": { + "period": 3672479, + "thread": 8 + } + }, + { + "amount": "144.247361986", + "slot": { + "period": 3928347, + "thread": 18 + } + } + ], + "AU1eqZ71VXWjiHpz3as2sScVu6bn98QY2FUpgXcjT5aHMQQjjTnG": [ + { + "amount": "176.813578636", + "slot": { + "period": 77002, + "thread": 6 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 321263, + "thread": 21 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 343110, + "thread": 1 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 561210, + "thread": 4 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 727543, + "thread": 15 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 955150, + "thread": 20 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1051511, + "thread": 10 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1190053, + "thread": 9 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1425829, + "thread": 21 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1483461, + "thread": 11 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1698853, + "thread": 23 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 1812366, + "thread": 29 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2065924, + "thread": 3 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2249523, + "thread": 21 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2331219, + "thread": 9 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2595020, + "thread": 24 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2685252, + "thread": 30 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 2887082, + "thread": 20 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 3021235, + "thread": 25 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 3175417, + "thread": 19 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 3390538, + "thread": 24 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 3576675, + "thread": 5 + } + }, + { + "amount": "176.813578636", + "slot": { + "period": 3625960, + "thread": 0 + } + }, + { + "amount": "176.813578641", + "slot": { + "period": 3923775, + "thread": 14 + } + } + ], + "AU1etq4FAJ1b5hkKnZENzi3mGyzeGdxN6KStEjf8jdwv2tj3b83F": [ + { + "amount": "228.950960025", + "slot": { + "period": 74732, + "thread": 13 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 252068, + "thread": 4 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 368559, + "thread": 3 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 651284, + "thread": 8 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 781046, + "thread": 19 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 959114, + "thread": 13 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 989222, + "thread": 26 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 1281982, + "thread": 2 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 1465051, + "thread": 9 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 1554812, + "thread": 31 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 1785630, + "thread": 25 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 1946747, + "thread": 15 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2136200, + "thread": 20 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2189574, + "thread": 31 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2338443, + "thread": 22 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2598823, + "thread": 27 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2641164, + "thread": 12 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2808787, + "thread": 9 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 2973517, + "thread": 26 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 3177979, + "thread": 1 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 3447252, + "thread": 5 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 3496015, + "thread": 14 + } + }, + { + "amount": "228.950960025", + "slot": { + "period": 3664348, + "thread": 12 + } + }, + { + "amount": "228.950960030", + "slot": { + "period": 3793417, + "thread": 29 + } + } + ], + "AU1evYXoHfEDQZcbvHhysuaszMFVFwaUhzsqdgPBzWWVtD73E7FT": [ + { + "amount": "369.668350217", + "slot": { + "period": 141568, + "thread": 9 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 185686, + "thread": 14 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 411224, + "thread": 5 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 553649, + "thread": 31 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 714737, + "thread": 26 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 888660, + "thread": 2 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1091960, + "thread": 16 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1308856, + "thread": 3 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1429246, + "thread": 15 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1627016, + "thread": 29 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1659399, + "thread": 20 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 1892490, + "thread": 17 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2139995, + "thread": 31 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2198098, + "thread": 10 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2398551, + "thread": 8 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2588631, + "thread": 4 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2681172, + "thread": 2 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 2950171, + "thread": 11 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 3085587, + "thread": 25 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 3275508, + "thread": 4 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 3323206, + "thread": 15 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 3568666, + "thread": 21 + } + }, + { + "amount": "369.668350217", + "slot": { + "period": 3738858, + "thread": 19 + } + }, + { + "amount": "369.668350220", + "slot": { + "period": 3863181, + "thread": 10 + } + } + ], + "AU1evqgo4xktGgRTUXm3actyN5bZQAtMsD9WNQZGEJZnUNqAp37w": [ + { + "amount": "128.673368679", + "slot": { + "period": 66236, + "thread": 18 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 211651, + "thread": 9 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 408669, + "thread": 5 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 583091, + "thread": 30 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 661289, + "thread": 7 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 831402, + "thread": 1 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1100071, + "thread": 26 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1211935, + "thread": 9 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1405978, + "thread": 19 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1604574, + "thread": 11 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1735224, + "thread": 6 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 1953760, + "thread": 23 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2094732, + "thread": 7 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2289137, + "thread": 30 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2406505, + "thread": 19 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2519485, + "thread": 12 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2636887, + "thread": 29 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2894630, + "thread": 17 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 2957124, + "thread": 11 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 3137441, + "thread": 4 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 3343187, + "thread": 5 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 3538723, + "thread": 16 + } + }, + { + "amount": "128.673368679", + "slot": { + "period": 3767923, + "thread": 27 + } + }, + { + "amount": "128.673368680", + "slot": { + "period": 3786876, + "thread": 2 + } + } + ], + "AU1ewazmhZAsBCtun4BsehDyKZKeGVQDXZKtngLcpfbftEcfBxPJ": [ + { + "amount": "215.041118316", + "slot": { + "period": 97895, + "thread": 18 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 170111, + "thread": 7 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 472433, + "thread": 19 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 594983, + "thread": 24 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 682755, + "thread": 8 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 940715, + "thread": 26 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1080990, + "thread": 10 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1274984, + "thread": 5 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1435139, + "thread": 16 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1579698, + "thread": 15 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1779982, + "thread": 11 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 1837458, + "thread": 29 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2009711, + "thread": 1 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2174524, + "thread": 12 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2301512, + "thread": 6 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2620464, + "thread": 31 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2782092, + "thread": 24 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 2921973, + "thread": 17 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 3039869, + "thread": 5 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 3220093, + "thread": 22 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 3299676, + "thread": 23 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 3509939, + "thread": 2 + } + }, + { + "amount": "215.041118316", + "slot": { + "period": 3753623, + "thread": 30 + } + }, + { + "amount": "215.041118319", + "slot": { + "period": 3946502, + "thread": 4 + } + } + ], + "AU1exQkooxkAB5XfLfZbWHAh9Z15RFfx1JpUP1wjQ9hhjterGyjK": [ + { + "amount": "246.422565028", + "slot": { + "period": 63564, + "thread": 9 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 209275, + "thread": 27 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 384736, + "thread": 0 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 605111, + "thread": 29 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 734239, + "thread": 23 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 865545, + "thread": 2 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1097004, + "thread": 0 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1295068, + "thread": 6 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1323637, + "thread": 29 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1613212, + "thread": 3 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1654870, + "thread": 1 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 1963602, + "thread": 23 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2077825, + "thread": 12 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2251229, + "thread": 15 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2324961, + "thread": 16 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2502198, + "thread": 27 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2709551, + "thread": 29 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2921605, + "thread": 24 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 2999983, + "thread": 13 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 3147769, + "thread": 30 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 3353770, + "thread": 4 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 3502869, + "thread": 30 + } + }, + { + "amount": "246.422565028", + "slot": { + "period": 3623872, + "thread": 23 + } + }, + { + "amount": "246.422565039", + "slot": { + "period": 3877720, + "thread": 11 + } + } + ], + "AU1exZ4Ai5FNNbd526Rdo2s6HvZM9wuNMB9FKA9Jjqh4YmT1obau": [ + { + "amount": "339.563741531", + "slot": { + "period": 77861, + "thread": 10 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 269735, + "thread": 6 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 445526, + "thread": 21 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 523547, + "thread": 26 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 721453, + "thread": 15 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 896980, + "thread": 25 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1058614, + "thread": 0 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1288613, + "thread": 28 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1462311, + "thread": 16 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1590769, + "thread": 26 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1668366, + "thread": 24 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 1916665, + "thread": 19 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2062922, + "thread": 5 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2173246, + "thread": 22 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2421879, + "thread": 20 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2543446, + "thread": 24 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2642436, + "thread": 15 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2952115, + "thread": 9 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 2967092, + "thread": 12 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 3256157, + "thread": 0 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 3324492, + "thread": 0 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 3479012, + "thread": 1 + } + }, + { + "amount": "339.563741531", + "slot": { + "period": 3727308, + "thread": 3 + } + }, + { + "amount": "339.563741530", + "slot": { + "period": 3797397, + "thread": 10 + } + } + ], + "AU1excnmb9FUi9KEeswTQ26qEu3e8soRam69gGtiV5qit23wViGK": [ + { + "amount": "134.572021769", + "slot": { + "period": 43395, + "thread": 20 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 317406, + "thread": 16 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 485910, + "thread": 3 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 505347, + "thread": 9 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 674723, + "thread": 26 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 841472, + "thread": 16 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1102773, + "thread": 27 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1209536, + "thread": 30 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1454473, + "thread": 18 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1594959, + "thread": 24 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1771830, + "thread": 6 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 1920380, + "thread": 22 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2123546, + "thread": 29 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2172882, + "thread": 25 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2334895, + "thread": 9 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2487160, + "thread": 20 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2626092, + "thread": 23 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 2809900, + "thread": 29 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 3077457, + "thread": 5 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 3271683, + "thread": 11 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 3435021, + "thread": 9 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 3451366, + "thread": 26 + } + }, + { + "amount": "134.572021769", + "slot": { + "period": 3751721, + "thread": 26 + } + }, + { + "amount": "134.572021760", + "slot": { + "period": 3850746, + "thread": 0 + } + } + ], + "AU1eyHW9WbCuguTwXgqGF64hZGimx1dwvkZg6rs4YUQtW3NTicSC": [ + { + "amount": "111.125452624", + "slot": { + "period": 29569, + "thread": 24 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 205666, + "thread": 21 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 443524, + "thread": 26 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 630195, + "thread": 16 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 718490, + "thread": 2 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 823735, + "thread": 4 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1091994, + "thread": 2 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1176798, + "thread": 12 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1471779, + "thread": 16 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1489590, + "thread": 4 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1767049, + "thread": 7 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 1914259, + "thread": 6 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2012489, + "thread": 11 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2217300, + "thread": 30 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2392585, + "thread": 6 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2472187, + "thread": 18 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2684358, + "thread": 12 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 2891571, + "thread": 6 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 3071126, + "thread": 4 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 3144788, + "thread": 11 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 3349424, + "thread": 21 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 3593289, + "thread": 1 + } + }, + { + "amount": "111.125452624", + "slot": { + "period": 3698030, + "thread": 19 + } + }, + { + "amount": "111.125452612", + "slot": { + "period": 3924626, + "thread": 15 + } + } + ], + "AU1eyP9Kw7FUpZ95rGPky31obvcg3Y4bXnXiUWDasmEv9zQev6WC": [ + { + "amount": "54.381352943", + "slot": { + "period": 25116, + "thread": 22 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 244565, + "thread": 26 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 440490, + "thread": 16 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 536529, + "thread": 23 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 814715, + "thread": 15 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 952757, + "thread": 3 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1078693, + "thread": 7 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1287690, + "thread": 12 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1327123, + "thread": 2 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1601364, + "thread": 19 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1715496, + "thread": 26 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 1823233, + "thread": 5 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2129881, + "thread": 21 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2193117, + "thread": 11 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2347651, + "thread": 3 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2497345, + "thread": 12 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2715993, + "thread": 25 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2893143, + "thread": 15 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 2971637, + "thread": 13 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 3136017, + "thread": 11 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 3381742, + "thread": 11 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 3462222, + "thread": 3 + } + }, + { + "amount": "54.381352943", + "slot": { + "period": 3678865, + "thread": 16 + } + }, + { + "amount": "54.381352942", + "slot": { + "period": 3794745, + "thread": 25 + } + } + ], + "AU1ez69UTAzvTaV5JFv9LzGbF1asALxZ3DGMgoce7uzy35sNpYRd": [ + { + "amount": "70.188849632", + "slot": { + "period": 15285, + "thread": 15 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 200273, + "thread": 25 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 373088, + "thread": 4 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 505835, + "thread": 11 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 796396, + "thread": 24 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 822769, + "thread": 26 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1019923, + "thread": 29 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1306570, + "thread": 12 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1402167, + "thread": 28 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1549609, + "thread": 3 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1729704, + "thread": 9 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1846168, + "thread": 12 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 1984399, + "thread": 18 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 2285889, + "thread": 24 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 2313452, + "thread": 31 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 2571210, + "thread": 3 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 2688384, + "thread": 2 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 2946681, + "thread": 28 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 3006421, + "thread": 0 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 3192224, + "thread": 20 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 3381598, + "thread": 7 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 3596732, + "thread": 30 + } + }, + { + "amount": "70.188849632", + "slot": { + "period": 3777381, + "thread": 9 + } + }, + { + "amount": "70.188849627", + "slot": { + "period": 3833506, + "thread": 14 + } + } + ], + "AU1ezf3ty67b9R7jgy6xGz4QsqK7qT4ni6T27ay9JcVoN5F1gh8n": [ + { + "amount": "335.019351244", + "slot": { + "period": 16151, + "thread": 19 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 313829, + "thread": 30 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 440398, + "thread": 10 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 553928, + "thread": 1 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 771128, + "thread": 19 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 873732, + "thread": 18 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1064022, + "thread": 9 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1295839, + "thread": 29 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1318207, + "thread": 22 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1629789, + "thread": 28 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1739890, + "thread": 7 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 1923243, + "thread": 12 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2069794, + "thread": 23 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2294264, + "thread": 20 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2382626, + "thread": 3 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2618833, + "thread": 3 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2694195, + "thread": 3 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2876352, + "thread": 13 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 2989008, + "thread": 5 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 3228108, + "thread": 30 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 3385368, + "thread": 3 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 3503888, + "thread": 11 + } + }, + { + "amount": "335.019351244", + "slot": { + "period": 3671269, + "thread": 5 + } + }, + { + "amount": "335.019351239", + "slot": { + "period": 3898936, + "thread": 30 + } + } + ], + "AU1ezkuKWxtJZi61ZJbCigwMTf9PoecagiAeUDT2Yo8aHEAeeg5U": [ + { + "amount": "183.132739065", + "slot": { + "period": 116713, + "thread": 9 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 237955, + "thread": 13 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 414240, + "thread": 4 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 625887, + "thread": 26 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 808702, + "thread": 23 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 867375, + "thread": 17 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1105972, + "thread": 29 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1246202, + "thread": 1 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1431918, + "thread": 31 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1525965, + "thread": 0 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1668938, + "thread": 12 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 1906096, + "thread": 27 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2067989, + "thread": 5 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2285395, + "thread": 7 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2347911, + "thread": 7 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2620834, + "thread": 1 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2729032, + "thread": 29 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 2814027, + "thread": 13 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 3000028, + "thread": 6 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 3263618, + "thread": 11 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 3337060, + "thread": 22 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 3523912, + "thread": 9 + } + }, + { + "amount": "183.132739065", + "slot": { + "period": 3693099, + "thread": 19 + } + }, + { + "amount": "183.132739069", + "slot": { + "period": 3906804, + "thread": 31 + } + } + ], + "AU1f1CYcyA1297ChgeKFfkE61cd5QaSc6oa7q4k7U69QJ4SvtPm3": [ + { + "amount": "96.419872631", + "slot": { + "period": 29771, + "thread": 19 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 235806, + "thread": 8 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 326757, + "thread": 25 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 621361, + "thread": 16 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 692331, + "thread": 24 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 836689, + "thread": 28 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1047534, + "thread": 5 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1281629, + "thread": 9 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1378473, + "thread": 30 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1596038, + "thread": 12 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1802323, + "thread": 8 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 1963677, + "thread": 19 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2117710, + "thread": 1 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2232258, + "thread": 22 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2409475, + "thread": 19 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2513519, + "thread": 12 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2726009, + "thread": 13 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2943987, + "thread": 31 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 2985915, + "thread": 8 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 3127873, + "thread": 8 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 3314902, + "thread": 20 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 3583093, + "thread": 22 + } + }, + { + "amount": "96.419872631", + "slot": { + "period": 3726489, + "thread": 14 + } + }, + { + "amount": "96.419872641", + "slot": { + "period": 3943938, + "thread": 4 + } + } + ], + "AU1f2oNRtmHF51VhCY2fwXk7di31Z3TDkUyeh4BxGfEA8tnhWHoZ": [ + { + "amount": "112.102982388", + "slot": { + "period": 163887, + "thread": 18 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 192913, + "thread": 23 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 464681, + "thread": 23 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 492150, + "thread": 10 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 660308, + "thread": 4 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 881731, + "thread": 3 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1102638, + "thread": 30 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1193763, + "thread": 27 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1462692, + "thread": 2 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1553275, + "thread": 19 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1777664, + "thread": 1 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 1831275, + "thread": 17 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2054578, + "thread": 12 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2177023, + "thread": 27 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2313910, + "thread": 24 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2525317, + "thread": 2 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2769481, + "thread": 22 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 2855342, + "thread": 22 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 3051703, + "thread": 7 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 3261383, + "thread": 27 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 3397878, + "thread": 19 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 3468794, + "thread": 30 + } + }, + { + "amount": "112.102982388", + "slot": { + "period": 3760969, + "thread": 25 + } + }, + { + "amount": "112.102982376", + "slot": { + "period": 3870748, + "thread": 13 + } + } + ], + "AU1f2zdbxZLsNTfwVMaJygtcsdG6JJqw8CPPEQpCTV3BMu1Tc9Fm": [ + { + "amount": "204.982946340", + "slot": { + "period": 39495, + "thread": 16 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 275358, + "thread": 17 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 488055, + "thread": 19 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 617081, + "thread": 20 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 747762, + "thread": 14 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 945088, + "thread": 30 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1113856, + "thread": 17 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1180285, + "thread": 29 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1357484, + "thread": 23 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1493702, + "thread": 24 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1690357, + "thread": 29 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 1901115, + "thread": 13 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2027373, + "thread": 12 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2158013, + "thread": 7 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2457903, + "thread": 6 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2543105, + "thread": 12 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2773620, + "thread": 29 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 2818188, + "thread": 28 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 3098946, + "thread": 7 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 3180893, + "thread": 17 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 3361475, + "thread": 8 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 3464214, + "thread": 7 + } + }, + { + "amount": "204.982946340", + "slot": { + "period": 3649501, + "thread": 12 + } + }, + { + "amount": "204.982946336", + "slot": { + "period": 3784113, + "thread": 7 + } + } + ], + "AU1f3PYysXAuwxWkZR4f9ASPYMN4mnFqnBnCQicqZgtzQozTjL3b": [ + { + "amount": "97.239129537", + "slot": { + "period": 136273, + "thread": 10 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 285871, + "thread": 15 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 475300, + "thread": 3 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 582559, + "thread": 18 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 658216, + "thread": 18 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 836442, + "thread": 4 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 985780, + "thread": 10 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1312233, + "thread": 28 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1365324, + "thread": 3 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1611544, + "thread": 23 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1755887, + "thread": 13 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1954250, + "thread": 20 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 1976510, + "thread": 21 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2184425, + "thread": 1 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2447003, + "thread": 28 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2519275, + "thread": 3 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2771920, + "thread": 19 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2833955, + "thread": 8 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 2964658, + "thread": 4 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 3142941, + "thread": 24 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 3293930, + "thread": 12 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 3490145, + "thread": 31 + } + }, + { + "amount": "97.239129537", + "slot": { + "period": 3677842, + "thread": 15 + } + }, + { + "amount": "97.239129530", + "slot": { + "period": 3842216, + "thread": 12 + } + } + ], + "AU1f3STYksaCo4d1kMtLdnKauEGg7poded66A76xwT467GfumU18": [ + { + "amount": "348.308940865", + "slot": { + "period": 38185, + "thread": 28 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 170514, + "thread": 27 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 483160, + "thread": 15 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 501483, + "thread": 2 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 663648, + "thread": 6 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 948393, + "thread": 7 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1071173, + "thread": 2 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1295155, + "thread": 3 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1407917, + "thread": 15 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1628722, + "thread": 13 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1790600, + "thread": 8 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1829473, + "thread": 28 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 1990818, + "thread": 11 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 2269411, + "thread": 2 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 2346346, + "thread": 18 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 2560954, + "thread": 10 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 2653270, + "thread": 31 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 2915636, + "thread": 25 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 3080209, + "thread": 27 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 3234694, + "thread": 4 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 3380081, + "thread": 27 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 3576944, + "thread": 29 + } + }, + { + "amount": "348.308940865", + "slot": { + "period": 3686524, + "thread": 20 + } + }, + { + "amount": "348.308940864", + "slot": { + "period": 3845161, + "thread": 26 + } + } + ], + "AU1f3pFEqWBEG9H2o1xGH4mHsTiWTQzUiXAkz68vCndfb2geWBrr": [ + { + "amount": "61.611849746", + "slot": { + "period": 19421, + "thread": 26 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 188270, + "thread": 28 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 346445, + "thread": 25 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 641698, + "thread": 30 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 685963, + "thread": 0 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 829961, + "thread": 29 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1110895, + "thread": 11 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1243636, + "thread": 2 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1345706, + "thread": 20 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1559162, + "thread": 2 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1805797, + "thread": 16 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1905466, + "thread": 13 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 1976859, + "thread": 29 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2250546, + "thread": 3 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2299229, + "thread": 6 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2487979, + "thread": 19 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2744414, + "thread": 17 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2909773, + "thread": 12 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 2979398, + "thread": 1 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 3162334, + "thread": 22 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 3362180, + "thread": 12 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 3607611, + "thread": 12 + } + }, + { + "amount": "61.611849746", + "slot": { + "period": 3721182, + "thread": 23 + } + }, + { + "amount": "61.611849750", + "slot": { + "period": 3865593, + "thread": 17 + } + } + ], + "AU1f4aBXF2pvdfjyjL7ZQSpLQK7e1kH4p9GfhTSH8vmpbxbxfkGX": [ + { + "amount": "474.391306702", + "slot": { + "period": 151979, + "thread": 10 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 227340, + "thread": 13 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 334375, + "thread": 0 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 511608, + "thread": 11 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 729001, + "thread": 12 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 883074, + "thread": 15 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1094638, + "thread": 2 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1183051, + "thread": 26 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1330125, + "thread": 10 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1643185, + "thread": 16 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1717421, + "thread": 15 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 1934984, + "thread": 14 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2088418, + "thread": 4 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2183800, + "thread": 9 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2369304, + "thread": 27 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2545657, + "thread": 5 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2770511, + "thread": 5 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2918935, + "thread": 6 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 2977043, + "thread": 29 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 3211573, + "thread": 18 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 3394411, + "thread": 2 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 3494244, + "thread": 7 + } + }, + { + "amount": "474.391306702", + "slot": { + "period": 3661763, + "thread": 8 + } + }, + { + "amount": "474.391306708", + "slot": { + "period": 3882251, + "thread": 10 + } + } + ], + "AU1f4jP4BnVrPXjUMQxFuFsUQs7fD17eM3AWMrzyPN2drnTG35h6": [ + { + "amount": "206.927813663", + "slot": { + "period": 68462, + "thread": 20 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 215838, + "thread": 23 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 444874, + "thread": 0 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 615914, + "thread": 21 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 726731, + "thread": 4 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 848300, + "thread": 13 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1089181, + "thread": 18 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1181112, + "thread": 17 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1458929, + "thread": 28 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1635751, + "thread": 18 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1664043, + "thread": 7 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 1916785, + "thread": 26 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2000064, + "thread": 29 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2147307, + "thread": 23 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2424557, + "thread": 31 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2608441, + "thread": 7 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2714502, + "thread": 9 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 2880322, + "thread": 11 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 3102522, + "thread": 5 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 3178649, + "thread": 30 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 3329095, + "thread": 9 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 3540816, + "thread": 16 + } + }, + { + "amount": "206.927813663", + "slot": { + "period": 3702829, + "thread": 16 + } + }, + { + "amount": "206.927813659", + "slot": { + "period": 3794437, + "thread": 29 + } + } + ], + "AU1f5ZcE9hZqAvQrt81Nm5ny8nMKo9zvrzrn6aFHLT9WPJUtRpEY": [ + { + "amount": "159.524328169", + "slot": { + "period": 136915, + "thread": 24 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 206123, + "thread": 17 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 408102, + "thread": 11 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 571931, + "thread": 1 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 721713, + "thread": 26 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 860083, + "thread": 1 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1082855, + "thread": 20 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1299191, + "thread": 28 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1321063, + "thread": 10 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1540924, + "thread": 4 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1698361, + "thread": 29 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 1885330, + "thread": 20 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2020560, + "thread": 29 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2279530, + "thread": 11 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2452741, + "thread": 13 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2527160, + "thread": 0 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2770234, + "thread": 6 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 2892029, + "thread": 24 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 3050327, + "thread": 15 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 3174369, + "thread": 8 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 3307517, + "thread": 26 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 3495419, + "thread": 13 + } + }, + { + "amount": "159.524328169", + "slot": { + "period": 3749398, + "thread": 11 + } + }, + { + "amount": "159.524328164", + "slot": { + "period": 3799741, + "thread": 8 + } + } + ], + "AU1f5oxiicpTy2z4JMyNwpa1AKzyngp5a8zkoBGLBrCxKSWdyqHF": [ + { + "amount": "100.770803946", + "slot": { + "period": 117946, + "thread": 20 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 217898, + "thread": 20 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 388942, + "thread": 11 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 571445, + "thread": 16 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 735291, + "thread": 17 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 933290, + "thread": 10 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1026635, + "thread": 8 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1172612, + "thread": 14 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1470146, + "thread": 29 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1522233, + "thread": 26 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1755614, + "thread": 25 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 1962411, + "thread": 19 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2034952, + "thread": 18 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2288791, + "thread": 1 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2383373, + "thread": 26 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2617171, + "thread": 7 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2758837, + "thread": 21 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 2857736, + "thread": 19 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 3070985, + "thread": 30 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 3207183, + "thread": 11 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 3420030, + "thread": 24 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 3560800, + "thread": 19 + } + }, + { + "amount": "100.770803946", + "slot": { + "period": 3654886, + "thread": 26 + } + }, + { + "amount": "100.770803949", + "slot": { + "period": 3830765, + "thread": 11 + } + } + ], + "AU1f6DNreJ4i3qWGA4ijEjDeQYmxF7KZC6EPb32jt1vpywUuxbeC": [ + { + "amount": "294.983136459", + "slot": { + "period": 55801, + "thread": 21 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 259520, + "thread": 27 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 401552, + "thread": 1 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 589248, + "thread": 29 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 751009, + "thread": 5 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 863655, + "thread": 16 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1127075, + "thread": 16 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1159117, + "thread": 0 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1437062, + "thread": 31 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1628153, + "thread": 22 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1691694, + "thread": 4 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 1832449, + "thread": 20 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2038718, + "thread": 18 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2286065, + "thread": 13 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2341831, + "thread": 18 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2543638, + "thread": 28 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2749523, + "thread": 9 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 2913585, + "thread": 15 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 3043439, + "thread": 28 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 3140917, + "thread": 25 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 3429543, + "thread": 28 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 3500336, + "thread": 17 + } + }, + { + "amount": "294.983136459", + "slot": { + "period": 3628849, + "thread": 27 + } + }, + { + "amount": "294.983136448", + "slot": { + "period": 3855757, + "thread": 12 + } + } + ], + "AU1f6JSknMeBaAGVghXZsb5NxcjoSYBpDJrMBQ8ELxcg4fpTVj1U": [ + { + "amount": "340.285235584", + "slot": { + "period": 145949, + "thread": 14 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 316157, + "thread": 8 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 416052, + "thread": 23 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 574627, + "thread": 10 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 793789, + "thread": 4 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 906596, + "thread": 16 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1038151, + "thread": 30 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1207233, + "thread": 25 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1430191, + "thread": 20 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1640915, + "thread": 26 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1806633, + "thread": 11 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1902826, + "thread": 15 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 1981840, + "thread": 7 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 2262163, + "thread": 14 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 2382709, + "thread": 17 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 2575519, + "thread": 3 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 2742886, + "thread": 28 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 2807387, + "thread": 30 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 3005603, + "thread": 25 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 3272047, + "thread": 3 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 3406788, + "thread": 10 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 3458675, + "thread": 22 + } + }, + { + "amount": "340.285235584", + "slot": { + "period": 3735285, + "thread": 9 + } + }, + { + "amount": "340.285235581", + "slot": { + "period": 3908092, + "thread": 29 + } + } + ], + "AU1f7qSFUyYrrpj4DpLA1B3R8cgyRVN1V4sVhmVsZ7TuHtfRC6NA": [ + { + "amount": "59.615778780", + "slot": { + "period": 51423, + "thread": 5 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 199373, + "thread": 29 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 448458, + "thread": 4 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 561716, + "thread": 5 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 740252, + "thread": 6 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 838953, + "thread": 11 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1011642, + "thread": 13 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1252926, + "thread": 9 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1473668, + "thread": 12 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1491646, + "thread": 23 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1805236, + "thread": 22 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 1965048, + "thread": 26 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2001923, + "thread": 28 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2240066, + "thread": 28 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2377038, + "thread": 14 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2611397, + "thread": 16 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2719782, + "thread": 16 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2892022, + "thread": 10 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 2995916, + "thread": 7 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 3235314, + "thread": 26 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 3395942, + "thread": 7 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 3517826, + "thread": 11 + } + }, + { + "amount": "59.615778780", + "slot": { + "period": 3657200, + "thread": 14 + } + }, + { + "amount": "59.615778768", + "slot": { + "period": 3882468, + "thread": 18 + } + } + ], + "AU1f8F3FV9ArGrW38sgSsAvcAm7HW6YEtrexD3oNg22p9Y5hLq1W": [ + { + "amount": "234.466719087", + "slot": { + "period": 157190, + "thread": 10 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 199058, + "thread": 15 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 470954, + "thread": 8 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 521565, + "thread": 28 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 698700, + "thread": 7 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 966694, + "thread": 28 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1076475, + "thread": 18 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1291925, + "thread": 8 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1344168, + "thread": 24 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1576414, + "thread": 16 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1787880, + "thread": 11 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 1860868, + "thread": 31 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2073424, + "thread": 3 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2160277, + "thread": 13 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2460180, + "thread": 26 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2546724, + "thread": 1 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2649387, + "thread": 0 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 2929028, + "thread": 14 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 3110511, + "thread": 25 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 3197593, + "thread": 6 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 3434921, + "thread": 22 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 3561840, + "thread": 4 + } + }, + { + "amount": "234.466719087", + "slot": { + "period": 3725022, + "thread": 13 + } + }, + { + "amount": "234.466719085", + "slot": { + "period": 3920337, + "thread": 0 + } + } + ], + "AU1f9TNd9a2pyxaFuHG6k9cewp7148wRY2rY1uYso3ho1W1BtNSV": [ + { + "amount": "82.719073480", + "slot": { + "period": 144725, + "thread": 12 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 259506, + "thread": 11 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 482954, + "thread": 4 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 582209, + "thread": 8 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 720683, + "thread": 11 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 971981, + "thread": 31 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1046025, + "thread": 8 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1272625, + "thread": 19 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1414810, + "thread": 27 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1598461, + "thread": 7 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1743742, + "thread": 13 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 1883024, + "thread": 24 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2011220, + "thread": 28 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2158496, + "thread": 15 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2323422, + "thread": 31 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2513498, + "thread": 29 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2723824, + "thread": 27 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 2938525, + "thread": 14 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 3076485, + "thread": 5 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 3165828, + "thread": 8 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 3439145, + "thread": 1 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 3498609, + "thread": 17 + } + }, + { + "amount": "82.719073480", + "slot": { + "period": 3676152, + "thread": 31 + } + }, + { + "amount": "82.719073488", + "slot": { + "period": 3847525, + "thread": 22 + } + } + ], + "AU1f9dt1FTdRbb9FvvdsJM7hdRdNZVG99z6zbEURXoSxWDpEDQzp": [ + { + "amount": "426.817101799", + "slot": { + "period": 14874, + "thread": 26 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 196997, + "thread": 23 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 348247, + "thread": 22 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 539745, + "thread": 28 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 753319, + "thread": 31 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 904360, + "thread": 15 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1071472, + "thread": 26 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1227789, + "thread": 4 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1460361, + "thread": 31 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1604699, + "thread": 16 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1712936, + "thread": 4 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 1818747, + "thread": 20 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2080915, + "thread": 23 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2165244, + "thread": 20 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2327493, + "thread": 30 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2485568, + "thread": 12 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2779623, + "thread": 11 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 2838305, + "thread": 2 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 3114667, + "thread": 7 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 3165307, + "thread": 31 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 3373102, + "thread": 13 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 3464281, + "thread": 11 + } + }, + { + "amount": "426.817101799", + "slot": { + "period": 3636689, + "thread": 22 + } + }, + { + "amount": "426.817101789", + "slot": { + "period": 3813742, + "thread": 18 + } + } + ], + "AU1fAQvkGR6618wVCGkN8ZGtYTyXw6J6uxQoaWyKmBZQ4Y7x1dwH": [ + { + "amount": "140.616046040", + "slot": { + "period": 29293, + "thread": 17 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 176761, + "thread": 25 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 483408, + "thread": 11 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 600594, + "thread": 28 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 809908, + "thread": 9 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 870445, + "thread": 21 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1093833, + "thread": 14 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1192331, + "thread": 8 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1341045, + "thread": 21 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1582426, + "thread": 29 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1730467, + "thread": 5 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 1875387, + "thread": 26 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2047579, + "thread": 0 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2240237, + "thread": 3 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2435234, + "thread": 25 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2549832, + "thread": 31 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2726035, + "thread": 7 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 2820063, + "thread": 19 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 3058780, + "thread": 16 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 3276215, + "thread": 7 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 3326800, + "thread": 28 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 3454877, + "thread": 0 + } + }, + { + "amount": "140.616046040", + "slot": { + "period": 3737618, + "thread": 1 + } + }, + { + "amount": "140.616046033", + "slot": { + "period": 3822005, + "thread": 19 + } + } + ], + "AU1fAdCeGZFcLtfGwZLePYyLQpRrTFWtsP73nBj2BZTv4zPzqhCX": [ + { + "amount": "225.855248947", + "slot": { + "period": 129361, + "thread": 17 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 183670, + "thread": 14 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 431533, + "thread": 1 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 639154, + "thread": 14 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 715946, + "thread": 4 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 856663, + "thread": 2 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1011541, + "thread": 7 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1194503, + "thread": 3 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1477551, + "thread": 7 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1509085, + "thread": 6 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1680406, + "thread": 28 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 1910515, + "thread": 15 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2037839, + "thread": 8 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2291404, + "thread": 17 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2338533, + "thread": 1 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2573977, + "thread": 23 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2649536, + "thread": 1 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 2944543, + "thread": 4 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 3083279, + "thread": 29 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 3173637, + "thread": 2 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 3293182, + "thread": 31 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 3536697, + "thread": 18 + } + }, + { + "amount": "225.855248947", + "slot": { + "period": 3750207, + "thread": 21 + } + }, + { + "amount": "225.855248944", + "slot": { + "period": 3875090, + "thread": 0 + } + } + ], + "AU1fCYVrcukifAr7HX9GerosKhntGVfrDBpAPXTvvJcr2bWGHbhW": [ + { + "amount": "97.372517835", + "slot": { + "period": 39512, + "thread": 10 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 245077, + "thread": 18 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 461001, + "thread": 21 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 642809, + "thread": 19 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 771087, + "thread": 16 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 893620, + "thread": 0 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1073231, + "thread": 0 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1180650, + "thread": 7 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1381608, + "thread": 31 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1593240, + "thread": 29 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1647051, + "thread": 27 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 1865488, + "thread": 2 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2097872, + "thread": 19 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2242201, + "thread": 28 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2314247, + "thread": 9 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2527401, + "thread": 16 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2776046, + "thread": 25 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2894624, + "thread": 7 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 2980219, + "thread": 30 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 3123993, + "thread": 17 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 3333180, + "thread": 17 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 3466478, + "thread": 6 + } + }, + { + "amount": "97.372517835", + "slot": { + "period": 3713553, + "thread": 7 + } + }, + { + "amount": "97.372517842", + "slot": { + "period": 3832212, + "thread": 27 + } + } + ], + "AU1fCisQJ2eizKq55Thakqt6T3HkspMDNrLwp6S1gx5L22TtH1an": [ + { + "amount": "239.144573705", + "slot": { + "period": 145160, + "thread": 30 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 192855, + "thread": 22 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 332109, + "thread": 13 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 600639, + "thread": 23 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 741899, + "thread": 28 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 932578, + "thread": 8 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1122706, + "thread": 18 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1314681, + "thread": 18 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1363113, + "thread": 14 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1640208, + "thread": 25 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1730735, + "thread": 23 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 1902566, + "thread": 31 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2129322, + "thread": 16 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2175165, + "thread": 8 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2331532, + "thread": 9 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2574433, + "thread": 31 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2693135, + "thread": 30 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2918545, + "thread": 30 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 2955906, + "thread": 30 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 3148321, + "thread": 7 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 3359467, + "thread": 19 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 3522286, + "thread": 18 + } + }, + { + "amount": "239.144573705", + "slot": { + "period": 3711314, + "thread": 20 + } + }, + { + "amount": "239.144573694", + "slot": { + "period": 3943024, + "thread": 2 + } + } + ], + "AU1fCv5mm5A1FHNocFYJVP1uEdDEckZyg6bePHutQKkg6vVJVQJ4": [ + { + "amount": "444.024690546", + "slot": { + "period": 64447, + "thread": 31 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 283013, + "thread": 0 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 332501, + "thread": 4 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 631526, + "thread": 23 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 670161, + "thread": 1 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 873277, + "thread": 1 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1012964, + "thread": 12 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1267069, + "thread": 5 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1453241, + "thread": 16 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1527132, + "thread": 20 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1775949, + "thread": 25 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 1912710, + "thread": 23 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2013939, + "thread": 28 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2214132, + "thread": 22 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2377775, + "thread": 16 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2484176, + "thread": 17 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2687504, + "thread": 11 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2848220, + "thread": 30 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 2982158, + "thread": 28 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 3234311, + "thread": 17 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 3405644, + "thread": 10 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 3544649, + "thread": 21 + } + }, + { + "amount": "444.024690546", + "slot": { + "period": 3657727, + "thread": 30 + } + }, + { + "amount": "444.024690554", + "slot": { + "period": 3864934, + "thread": 3 + } + } + ], + "AU1fD9qJVbRYze9mmTVycKDV4AEiRb5ZAu2WJEghGSx7Yxya4FVP": [ + { + "amount": "106.992007453", + "slot": { + "period": 113221, + "thread": 9 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 238491, + "thread": 5 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 380029, + "thread": 14 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 636481, + "thread": 4 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 711716, + "thread": 27 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 976212, + "thread": 3 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1068981, + "thread": 11 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1205846, + "thread": 9 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1470344, + "thread": 27 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1544216, + "thread": 23 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1795044, + "thread": 24 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1943857, + "thread": 11 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 1981592, + "thread": 18 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 2186606, + "thread": 0 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 2361346, + "thread": 24 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 2573225, + "thread": 6 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 2738586, + "thread": 24 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 2869031, + "thread": 4 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 3103508, + "thread": 28 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 3250453, + "thread": 12 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 3306752, + "thread": 28 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 3535887, + "thread": 22 + } + }, + { + "amount": "106.992007453", + "slot": { + "period": 3640426, + "thread": 31 + } + }, + { + "amount": "106.992007444", + "slot": { + "period": 3924577, + "thread": 7 + } + } + ], + "AU1fDPJ6r7xoWJoWy11xCNgXi5HxQAA1aaGJWxtB5v7NZCuPSRuZ": [ + { + "amount": "148.629094295", + "slot": { + "period": 97252, + "thread": 27 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 180269, + "thread": 1 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 453781, + "thread": 5 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 632293, + "thread": 5 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 809376, + "thread": 0 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 880882, + "thread": 0 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1000682, + "thread": 29 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1214599, + "thread": 19 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1477203, + "thread": 5 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1626133, + "thread": 20 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1710481, + "thread": 3 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 1948433, + "thread": 21 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2087255, + "thread": 30 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2175161, + "thread": 14 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2353741, + "thread": 16 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2507236, + "thread": 15 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2755671, + "thread": 15 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 2940762, + "thread": 6 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 3014656, + "thread": 11 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 3181710, + "thread": 27 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 3419929, + "thread": 13 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 3462437, + "thread": 0 + } + }, + { + "amount": "148.629094295", + "slot": { + "period": 3689562, + "thread": 9 + } + }, + { + "amount": "148.629094296", + "slot": { + "period": 3789075, + "thread": 25 + } + } + ], + "AU1fDnpVaGdDbCAx4X42iom6ZyLzZGygRRtN1BV3rEA9ojJo8goj": [ + { + "amount": "170.328012018", + "slot": { + "period": 32131, + "thread": 10 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 309779, + "thread": 10 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 326094, + "thread": 2 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 520457, + "thread": 21 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 655188, + "thread": 22 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 931679, + "thread": 11 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1017303, + "thread": 16 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1288690, + "thread": 6 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1475375, + "thread": 16 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1555601, + "thread": 16 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1723447, + "thread": 21 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 1825547, + "thread": 7 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2122010, + "thread": 24 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2204085, + "thread": 6 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2370556, + "thread": 11 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2522294, + "thread": 0 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2731681, + "thread": 10 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 2883431, + "thread": 15 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 3012845, + "thread": 16 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 3285897, + "thread": 25 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 3437412, + "thread": 26 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 3552864, + "thread": 20 + } + }, + { + "amount": "170.328012018", + "slot": { + "period": 3756406, + "thread": 14 + } + }, + { + "amount": "170.328012030", + "slot": { + "period": 3915388, + "thread": 17 + } + } + ], + "AU1fDvWokht1ZegqHgFvEvXW69XKX46Uc9xrtzSqeVM358aZfL9q": [ + { + "amount": "244.383724273", + "slot": { + "period": 142530, + "thread": 30 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 201841, + "thread": 3 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 447816, + "thread": 5 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 647832, + "thread": 28 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 696185, + "thread": 2 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 954682, + "thread": 9 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1005594, + "thread": 16 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1198384, + "thread": 29 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1424347, + "thread": 18 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1485005, + "thread": 0 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1797324, + "thread": 8 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 1904417, + "thread": 26 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2114172, + "thread": 1 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2228474, + "thread": 13 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2371833, + "thread": 4 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2536637, + "thread": 26 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2628056, + "thread": 9 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 2898832, + "thread": 2 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 3073758, + "thread": 3 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 3143435, + "thread": 7 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 3353473, + "thread": 0 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 3500008, + "thread": 17 + } + }, + { + "amount": "244.383724273", + "slot": { + "period": 3755219, + "thread": 1 + } + }, + { + "amount": "244.383724279", + "slot": { + "period": 3808241, + "thread": 15 + } + } + ], + "AU1fE2i1eHEmwf5NawDfh8aAQEkMDWyqsobH6ppDXWZKz82o4iyn": [ + { + "amount": "244.963204417", + "slot": { + "period": 44852, + "thread": 10 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 198744, + "thread": 9 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 450985, + "thread": 13 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 553045, + "thread": 13 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 681453, + "thread": 24 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 857834, + "thread": 26 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1147543, + "thread": 5 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1206292, + "thread": 6 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1404787, + "thread": 26 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1517476, + "thread": 16 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1686771, + "thread": 31 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 1857173, + "thread": 13 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2022267, + "thread": 10 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2196954, + "thread": 0 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2402835, + "thread": 13 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2511475, + "thread": 6 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2636579, + "thread": 5 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 2799695, + "thread": 15 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 3097027, + "thread": 17 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 3255010, + "thread": 27 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 3356483, + "thread": 17 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 3453778, + "thread": 19 + } + }, + { + "amount": "244.963204417", + "slot": { + "period": 3699622, + "thread": 10 + } + }, + { + "amount": "244.963204420", + "slot": { + "period": 3918959, + "thread": 1 + } + } + ], + "AU1fEHu3AYvQpFSDStDbkvYFz1CASdauWUtFMFhEG64nC9YjAwxn": [ + { + "amount": "341.239719823", + "slot": { + "period": 24180, + "thread": 17 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 228914, + "thread": 22 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 375428, + "thread": 27 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 575387, + "thread": 29 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 772710, + "thread": 10 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 940700, + "thread": 8 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1130989, + "thread": 20 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1285728, + "thread": 17 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1467827, + "thread": 11 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1588647, + "thread": 0 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1658341, + "thread": 10 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 1859112, + "thread": 15 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2084575, + "thread": 15 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2201228, + "thread": 30 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2427101, + "thread": 27 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2500788, + "thread": 18 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2765079, + "thread": 27 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 2852553, + "thread": 23 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 3027691, + "thread": 18 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 3123697, + "thread": 7 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 3449487, + "thread": 6 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 3536142, + "thread": 9 + } + }, + { + "amount": "341.239719823", + "slot": { + "period": 3752288, + "thread": 21 + } + }, + { + "amount": "341.239719818", + "slot": { + "period": 3918425, + "thread": 0 + } + } + ], + "AU1fEZ8HyBRcgfhmkFFXTwAbmoFsRPxyYoTWgeURqNSoZ1eJWv8K": [ + { + "amount": "166.319902799", + "slot": { + "period": 52935, + "thread": 9 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 288470, + "thread": 10 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 403108, + "thread": 20 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 580821, + "thread": 31 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 791943, + "thread": 7 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 895016, + "thread": 7 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1067192, + "thread": 6 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1235753, + "thread": 15 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1354725, + "thread": 2 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1597240, + "thread": 1 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1788000, + "thread": 27 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1857483, + "thread": 6 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 1978104, + "thread": 17 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 2145250, + "thread": 19 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 2415440, + "thread": 16 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 2583020, + "thread": 29 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 2711154, + "thread": 8 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 2889028, + "thread": 3 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 3097661, + "thread": 12 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 3257141, + "thread": 21 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 3363099, + "thread": 30 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 3453190, + "thread": 19 + } + }, + { + "amount": "166.319902799", + "slot": { + "period": 3714980, + "thread": 12 + } + }, + { + "amount": "166.319902810", + "slot": { + "period": 3837317, + "thread": 7 + } + } + ], + "AU1fFAnc73bDvG4ERJFdXHKNchCiWStSGqnFxZxgDyJVNxRV7yYQ": [ + { + "amount": "75.055735708", + "slot": { + "period": 54210, + "thread": 27 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 217069, + "thread": 1 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 464528, + "thread": 9 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 551700, + "thread": 9 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 718606, + "thread": 31 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 827825, + "thread": 14 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1066215, + "thread": 31 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1222244, + "thread": 18 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1323119, + "thread": 29 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1640598, + "thread": 6 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1730741, + "thread": 25 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 1945512, + "thread": 28 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2106984, + "thread": 2 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2241144, + "thread": 23 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2433877, + "thread": 11 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2623146, + "thread": 4 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2721085, + "thread": 5 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 2842883, + "thread": 8 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 3051754, + "thread": 29 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 3132572, + "thread": 24 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 3441562, + "thread": 26 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 3591650, + "thread": 8 + } + }, + { + "amount": "75.055735708", + "slot": { + "period": 3755614, + "thread": 0 + } + }, + { + "amount": "75.055735706", + "slot": { + "period": 3791630, + "thread": 1 + } + } + ], + "AU1fFS8rNuo9HbPuVz6ZueTWYk29JuYKiuJN8eUmooY63aCEMDnk": [ + { + "amount": "79.053629973", + "slot": { + "period": 70693, + "thread": 25 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 171885, + "thread": 9 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 439486, + "thread": 31 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 523529, + "thread": 28 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 761042, + "thread": 6 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 898486, + "thread": 3 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1093991, + "thread": 6 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1162760, + "thread": 31 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1354089, + "thread": 9 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1488745, + "thread": 12 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1647642, + "thread": 26 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 1930504, + "thread": 25 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2102973, + "thread": 15 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2155435, + "thread": 30 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2407449, + "thread": 11 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2604915, + "thread": 3 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2746949, + "thread": 19 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 2897293, + "thread": 3 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 3083197, + "thread": 12 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 3268646, + "thread": 29 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 3417209, + "thread": 5 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 3592358, + "thread": 19 + } + }, + { + "amount": "79.053629973", + "slot": { + "period": 3726171, + "thread": 11 + } + }, + { + "amount": "79.053629965", + "slot": { + "period": 3916628, + "thread": 12 + } + } + ], + "AU1fFi8DZSHAFA1F4qAzPdd5TXCBrkU7hLFik98BALkehTRNUhZp": [ + { + "amount": "84.915870282", + "slot": { + "period": 88026, + "thread": 25 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 284806, + "thread": 11 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 442683, + "thread": 25 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 566205, + "thread": 2 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 750612, + "thread": 27 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 905907, + "thread": 8 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 996849, + "thread": 17 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 1156044, + "thread": 18 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 1340522, + "thread": 5 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 1556257, + "thread": 11 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 1691664, + "thread": 27 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 1879562, + "thread": 5 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2031596, + "thread": 5 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2186714, + "thread": 26 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2406587, + "thread": 8 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2467750, + "thread": 1 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2644333, + "thread": 4 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 2795349, + "thread": 19 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 3023341, + "thread": 8 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 3159244, + "thread": 27 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 3289010, + "thread": 19 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 3503902, + "thread": 6 + } + }, + { + "amount": "84.915870282", + "slot": { + "period": 3652949, + "thread": 10 + } + }, + { + "amount": "84.915870271", + "slot": { + "period": 3872758, + "thread": 23 + } + } + ], + "AU1fHYnGYMqUWZm9vaK7Z5Kwf45VAuWxKUkzS53faBL2ZHfTp38P": [ + { + "amount": "344.313502422", + "slot": { + "period": 165913, + "thread": 15 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 230969, + "thread": 1 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 398791, + "thread": 4 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 598066, + "thread": 13 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 788034, + "thread": 14 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 873048, + "thread": 28 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1107610, + "thread": 8 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1173646, + "thread": 16 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1475397, + "thread": 28 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1558312, + "thread": 30 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1758098, + "thread": 17 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 1918928, + "thread": 28 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2014686, + "thread": 15 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2235710, + "thread": 25 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2343667, + "thread": 5 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2464822, + "thread": 17 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2697095, + "thread": 6 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 2887584, + "thread": 14 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 3073887, + "thread": 27 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 3158202, + "thread": 8 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 3319548, + "thread": 20 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 3527613, + "thread": 10 + } + }, + { + "amount": "344.313502422", + "slot": { + "period": 3646627, + "thread": 8 + } + }, + { + "amount": "344.313502431", + "slot": { + "period": 3798146, + "thread": 6 + } + } + ], + "AU1fLuxZyZqDmkgaXjQaUVKvmArSKg4tKPNPdtAuFY1Lujj86arz": [ + { + "amount": "51.891339125", + "slot": { + "period": 140782, + "thread": 27 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 269602, + "thread": 25 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 470158, + "thread": 10 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 602377, + "thread": 24 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 688063, + "thread": 16 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 960808, + "thread": 14 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1077729, + "thread": 0 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1280153, + "thread": 25 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1353793, + "thread": 12 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1631463, + "thread": 25 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1671591, + "thread": 18 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1814540, + "thread": 9 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 1982838, + "thread": 27 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2254261, + "thread": 14 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2420230, + "thread": 2 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2573689, + "thread": 5 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2681298, + "thread": 13 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2836368, + "thread": 1 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 2996665, + "thread": 4 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 3154573, + "thread": 19 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 3399409, + "thread": 21 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 3588996, + "thread": 1 + } + }, + { + "amount": "51.891339125", + "slot": { + "period": 3640499, + "thread": 29 + } + }, + { + "amount": "51.891339136", + "slot": { + "period": 3894900, + "thread": 9 + } + } + ], + "AU1fM3KbC12TsUtDHtpMbBsuTxQnKY5X4yvw3mEBS5bFAZxUto1w": [ + { + "amount": "82.085130648", + "slot": { + "period": 25742, + "thread": 21 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 203105, + "thread": 18 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 384092, + "thread": 18 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 571223, + "thread": 11 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 733827, + "thread": 15 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 845098, + "thread": 0 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1131621, + "thread": 21 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1216690, + "thread": 23 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1322940, + "thread": 23 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1596787, + "thread": 14 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1656697, + "thread": 17 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 1900311, + "thread": 23 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2077955, + "thread": 28 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2162280, + "thread": 10 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2450384, + "thread": 3 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2546386, + "thread": 0 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2704974, + "thread": 27 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 2797375, + "thread": 15 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 3119661, + "thread": 25 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 3268392, + "thread": 5 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 3341283, + "thread": 31 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 3456104, + "thread": 19 + } + }, + { + "amount": "82.085130648", + "slot": { + "period": 3670285, + "thread": 14 + } + }, + { + "amount": "82.085130657", + "slot": { + "period": 3894805, + "thread": 24 + } + } + ], + "AU1fMRWL1roWPDhcRg1t2WvRv2LWoUxrwGvxpNvdByvMzynn2r97": [ + { + "amount": "393.018075259", + "slot": { + "period": 63652, + "thread": 26 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 304436, + "thread": 23 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 394738, + "thread": 16 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 592111, + "thread": 2 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 691015, + "thread": 21 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 969995, + "thread": 3 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1135324, + "thread": 13 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1273160, + "thread": 18 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1376177, + "thread": 31 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1552609, + "thread": 16 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1683000, + "thread": 20 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 1872316, + "thread": 8 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2079699, + "thread": 24 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2286296, + "thread": 16 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2442143, + "thread": 14 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2485277, + "thread": 27 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2755995, + "thread": 8 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 2796936, + "thread": 16 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 3102587, + "thread": 8 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 3132179, + "thread": 19 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 3343423, + "thread": 3 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 3528585, + "thread": 19 + } + }, + { + "amount": "393.018075259", + "slot": { + "period": 3660926, + "thread": 24 + } + }, + { + "amount": "393.018075250", + "slot": { + "period": 3939653, + "thread": 28 + } + } + ], + "AU1fMsQ7ZxMszW236jviYenQ7ttBUwp4YfLuuy2WjjvDQm65dQpF": [ + { + "amount": "103.164819971", + "slot": { + "period": 160748, + "thread": 7 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 202268, + "thread": 19 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 334087, + "thread": 18 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 640724, + "thread": 5 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 772208, + "thread": 30 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 900160, + "thread": 30 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1062494, + "thread": 31 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1205668, + "thread": 11 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1374008, + "thread": 23 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1526437, + "thread": 29 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1761635, + "thread": 7 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 1895528, + "thread": 28 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2142969, + "thread": 29 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2281292, + "thread": 25 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2448232, + "thread": 4 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2475801, + "thread": 28 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2674191, + "thread": 7 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 2847050, + "thread": 1 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 3038263, + "thread": 30 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 3191988, + "thread": 18 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 3293059, + "thread": 0 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 3533141, + "thread": 16 + } + }, + { + "amount": "103.164819971", + "slot": { + "period": 3680220, + "thread": 23 + } + }, + { + "amount": "103.164819970", + "slot": { + "period": 3808735, + "thread": 7 + } + } + ], + "AU1fNCvTRUyVyTWSWPRa2rdF2qRLwPSESx3svTa1jwETcZcataPa": [ + { + "amount": "144.771714969", + "slot": { + "period": 160183, + "thread": 5 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 234617, + "thread": 19 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 363410, + "thread": 14 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 516379, + "thread": 3 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 746965, + "thread": 16 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 877783, + "thread": 9 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1116399, + "thread": 10 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1277330, + "thread": 9 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1379707, + "thread": 3 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1496148, + "thread": 16 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1761667, + "thread": 22 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 1914365, + "thread": 11 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2043133, + "thread": 18 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2174424, + "thread": 30 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2391910, + "thread": 24 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2577210, + "thread": 1 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2753181, + "thread": 24 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 2838604, + "thread": 20 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 3006362, + "thread": 25 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 3227837, + "thread": 31 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 3391965, + "thread": 26 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 3547846, + "thread": 29 + } + }, + { + "amount": "144.771714969", + "slot": { + "period": 3748663, + "thread": 26 + } + }, + { + "amount": "144.771714961", + "slot": { + "period": 3833521, + "thread": 27 + } + } + ], + "AU1fRJXjyunUp3ew5dEui2sJu2ffeiM4kRza28pyGU3VGYNL4a5W": [ + { + "amount": "530.119646701", + "slot": { + "period": 161899, + "thread": 9 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 269588, + "thread": 9 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 412959, + "thread": 30 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 520922, + "thread": 13 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 659388, + "thread": 18 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 960511, + "thread": 30 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1075124, + "thread": 30 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1173492, + "thread": 22 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1383388, + "thread": 0 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1613013, + "thread": 24 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1784849, + "thread": 12 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 1965798, + "thread": 15 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2125710, + "thread": 17 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2256723, + "thread": 11 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2370212, + "thread": 13 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2586462, + "thread": 1 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2660636, + "thread": 10 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2859284, + "thread": 11 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 2975885, + "thread": 29 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 3181005, + "thread": 28 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 3340683, + "thread": 10 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 3484525, + "thread": 26 + } + }, + { + "amount": "530.119646701", + "slot": { + "period": 3768466, + "thread": 11 + } + }, + { + "amount": "530.119646690", + "slot": { + "period": 3825237, + "thread": 4 + } + } + ], + "AU1fRRwhCZTBhdTLhEYC2SrLmTFF3bGybYVDAiU7QJDLDo5EMAAN": [ + { + "amount": "53.367735593", + "slot": { + "period": 16573, + "thread": 26 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 259073, + "thread": 6 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 382507, + "thread": 8 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 621286, + "thread": 10 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 712643, + "thread": 1 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 862646, + "thread": 26 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1040815, + "thread": 10 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1196932, + "thread": 4 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1470587, + "thread": 6 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1573316, + "thread": 0 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1717672, + "thread": 15 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1973838, + "thread": 9 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 1986052, + "thread": 1 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 2291085, + "thread": 21 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 2448967, + "thread": 11 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 2611915, + "thread": 14 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 2628754, + "thread": 24 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 2910308, + "thread": 18 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 3054470, + "thread": 17 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 3143461, + "thread": 9 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 3304829, + "thread": 25 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 3512280, + "thread": 22 + } + }, + { + "amount": "53.367735593", + "slot": { + "period": 3671144, + "thread": 12 + } + }, + { + "amount": "53.367735589", + "slot": { + "period": 3811732, + "thread": 12 + } + } + ], + "AU1fSaAGiP3bpUdTyzSZswhgfKektDNMKR8fzUVoLmBrPWDx3f5m": [ + { + "amount": "308.783442851", + "slot": { + "period": 165503, + "thread": 10 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 217665, + "thread": 12 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 395104, + "thread": 16 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 616939, + "thread": 2 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 692722, + "thread": 5 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 956996, + "thread": 22 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1148484, + "thread": 1 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1207946, + "thread": 0 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1454100, + "thread": 5 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1641080, + "thread": 15 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1713835, + "thread": 3 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 1836585, + "thread": 2 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2112997, + "thread": 4 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2157932, + "thread": 8 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2332624, + "thread": 2 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2560689, + "thread": 17 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2645669, + "thread": 4 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 2810887, + "thread": 0 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 3011918, + "thread": 15 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 3210181, + "thread": 27 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 3357141, + "thread": 9 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 3455434, + "thread": 12 + } + }, + { + "amount": "308.783442851", + "slot": { + "period": 3653489, + "thread": 6 + } + }, + { + "amount": "308.783442841", + "slot": { + "period": 3829199, + "thread": 29 + } + } + ], + "AU1fTxEJBF2wAvW1uLEHqHdmeactLonzaPKjHhGhbtp5AzvYTGS4": [ + { + "amount": "147.562251139", + "slot": { + "period": 131238, + "thread": 27 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 205643, + "thread": 3 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 368053, + "thread": 14 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 575699, + "thread": 18 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 767752, + "thread": 26 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 931119, + "thread": 28 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1044878, + "thread": 6 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1293230, + "thread": 18 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1427109, + "thread": 10 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1597409, + "thread": 13 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1718126, + "thread": 19 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 1844131, + "thread": 24 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2123883, + "thread": 31 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2292205, + "thread": 19 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2358204, + "thread": 7 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2553518, + "thread": 29 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2699193, + "thread": 16 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2813626, + "thread": 21 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 2955674, + "thread": 1 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 3232930, + "thread": 5 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 3304656, + "thread": 21 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 3575888, + "thread": 17 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 3657233, + "thread": 23 + } + }, + { + "amount": "147.562251139", + "slot": { + "period": 3913377, + "thread": 12 + } + } + ], + "AU1fUskXYVgRXpBdFeNBmJrHVgVqE6Z8sipSRcLmkhAgfjGJiEAi": [ + { + "amount": "113.231417096", + "slot": { + "period": 123280, + "thread": 11 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 260072, + "thread": 1 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 477987, + "thread": 2 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 496522, + "thread": 5 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 763220, + "thread": 16 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 959211, + "thread": 10 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1097732, + "thread": 26 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1316219, + "thread": 22 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1474051, + "thread": 17 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1503969, + "thread": 19 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1672496, + "thread": 5 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 1959284, + "thread": 20 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2092635, + "thread": 22 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2235346, + "thread": 5 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2368726, + "thread": 3 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2560653, + "thread": 6 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2753570, + "thread": 22 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 2947944, + "thread": 9 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 3067931, + "thread": 22 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 3137417, + "thread": 23 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 3419322, + "thread": 18 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 3464576, + "thread": 18 + } + }, + { + "amount": "113.231417096", + "slot": { + "period": 3626554, + "thread": 20 + } + }, + { + "amount": "113.231417097", + "slot": { + "period": 3793697, + "thread": 31 + } + } + ], + "AU1fWGg39wbTwikSAdSV54BpFTTuDiS9sHcTRyuS9AFpn1ji7XAA": [ + { + "amount": "132.595150530", + "slot": { + "period": 15903, + "thread": 19 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 227898, + "thread": 17 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 476766, + "thread": 6 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 491637, + "thread": 26 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 717758, + "thread": 15 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 870016, + "thread": 15 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1101106, + "thread": 5 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1312841, + "thread": 9 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1452281, + "thread": 8 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1528686, + "thread": 7 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1649467, + "thread": 1 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 1951068, + "thread": 9 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2087973, + "thread": 16 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2252452, + "thread": 15 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2382084, + "thread": 11 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2523016, + "thread": 6 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2637965, + "thread": 1 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 2924372, + "thread": 24 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 3071896, + "thread": 5 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 3246204, + "thread": 6 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 3313972, + "thread": 29 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 3516949, + "thread": 28 + } + }, + { + "amount": "132.595150530", + "slot": { + "period": 3624107, + "thread": 7 + } + }, + { + "amount": "132.595150522", + "slot": { + "period": 3806097, + "thread": 13 + } + } + ], + "AU1fWGoRsEqkPKAFRqYvVHFJAJbEAGnsdoejyAHwRQkyW2qk6faj": [ + { + "amount": "554.582677081", + "slot": { + "period": 119056, + "thread": 10 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 286041, + "thread": 19 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 349394, + "thread": 12 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 531943, + "thread": 29 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 796352, + "thread": 4 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 919559, + "thread": 5 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1126213, + "thread": 27 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1317172, + "thread": 1 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1347509, + "thread": 27 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1510410, + "thread": 30 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1647325, + "thread": 9 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 1894535, + "thread": 0 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2035060, + "thread": 10 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2233009, + "thread": 25 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2440944, + "thread": 0 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2603586, + "thread": 20 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2629882, + "thread": 8 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2876070, + "thread": 23 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 2998752, + "thread": 23 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 3218451, + "thread": 2 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 3303234, + "thread": 17 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 3586971, + "thread": 27 + } + }, + { + "amount": "554.582677081", + "slot": { + "period": 3740313, + "thread": 15 + } + }, + { + "amount": "554.582677079", + "slot": { + "period": 3796107, + "thread": 2 + } + } + ], + "AU1fWQtagNuDwcD9eQx6rk1Kj4xxDm47VT9dm2dqgde2BuFdVhgc": [ + { + "amount": "55.407591361", + "slot": { + "period": 16355, + "thread": 19 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 212247, + "thread": 24 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 422164, + "thread": 3 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 603554, + "thread": 27 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 763668, + "thread": 10 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 938985, + "thread": 24 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1122491, + "thread": 23 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1224422, + "thread": 17 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1437704, + "thread": 25 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1615141, + "thread": 21 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1739726, + "thread": 23 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 1818780, + "thread": 22 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2117404, + "thread": 3 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2193643, + "thread": 16 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2420036, + "thread": 21 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2581649, + "thread": 30 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2776372, + "thread": 2 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2944427, + "thread": 11 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 2961497, + "thread": 20 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 3261325, + "thread": 8 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 3369139, + "thread": 19 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 3513186, + "thread": 19 + } + }, + { + "amount": "55.407591361", + "slot": { + "period": 3678509, + "thread": 24 + } + }, + { + "amount": "55.407591367", + "slot": { + "period": 3803162, + "thread": 29 + } + } + ], + "AU1fXQTCFtefbvoC8wMR4NjKiZm97fCBEAKv1Bvyy6jqK9VpF72m": [ + { + "amount": "110.928276650", + "slot": { + "period": 96862, + "thread": 18 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 286060, + "thread": 22 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 420660, + "thread": 31 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 620835, + "thread": 25 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 702354, + "thread": 11 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 958687, + "thread": 7 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1113491, + "thread": 11 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1266905, + "thread": 12 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1381186, + "thread": 9 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1497512, + "thread": 26 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1720259, + "thread": 15 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 1956955, + "thread": 25 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2059373, + "thread": 20 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2186720, + "thread": 3 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2299523, + "thread": 30 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2484566, + "thread": 21 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2652519, + "thread": 28 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 2857628, + "thread": 18 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 3092211, + "thread": 3 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 3230830, + "thread": 7 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 3326371, + "thread": 27 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 3462427, + "thread": 22 + } + }, + { + "amount": "110.928276650", + "slot": { + "period": 3665083, + "thread": 10 + } + }, + { + "amount": "110.928276641", + "slot": { + "period": 3925046, + "thread": 2 + } + } + ], + "AU1fazo6FgWAtVHyHiS5o8wtMa4SSBVFVZztbZanZoADMpaVBTms": [ + { + "amount": "175.430254714", + "slot": { + "period": 111663, + "thread": 15 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 252134, + "thread": 4 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 432342, + "thread": 23 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 491649, + "thread": 22 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 720414, + "thread": 25 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 951364, + "thread": 7 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1149161, + "thread": 27 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1235282, + "thread": 15 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1460354, + "thread": 31 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1493768, + "thread": 30 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1650137, + "thread": 22 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 1877831, + "thread": 24 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2113205, + "thread": 26 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2166915, + "thread": 14 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2339358, + "thread": 24 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2586009, + "thread": 18 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2691139, + "thread": 27 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 2937189, + "thread": 25 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 3006737, + "thread": 4 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 3152975, + "thread": 11 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 3359352, + "thread": 24 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 3517139, + "thread": 8 + } + }, + { + "amount": "175.430254714", + "slot": { + "period": 3724867, + "thread": 11 + } + }, + { + "amount": "175.430254705", + "slot": { + "period": 3784845, + "thread": 29 + } + } + ], + "AU1fb9HytQEgZnxx8EuXPqbYgHRiWaKkEDA1beREpCnSumGoHpiZ": [ + { + "amount": "216.471634136", + "slot": { + "period": 65469, + "thread": 10 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 229787, + "thread": 28 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 433735, + "thread": 31 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 595116, + "thread": 20 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 791061, + "thread": 2 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 905158, + "thread": 15 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 983480, + "thread": 1 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 1164343, + "thread": 15 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 1472254, + "thread": 3 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 1587143, + "thread": 7 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 1731177, + "thread": 25 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 1824732, + "thread": 24 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2038750, + "thread": 6 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2147689, + "thread": 7 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2425829, + "thread": 17 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2504682, + "thread": 0 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2661714, + "thread": 11 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 2793309, + "thread": 0 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 3046478, + "thread": 6 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 3230628, + "thread": 25 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 3410572, + "thread": 20 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 3513635, + "thread": 25 + } + }, + { + "amount": "216.471634136", + "slot": { + "period": 3652407, + "thread": 2 + } + }, + { + "amount": "216.471634143", + "slot": { + "period": 3833988, + "thread": 14 + } + } + ], + "AU1fcHjvxkttMnRCmn9MH6MfSQ81vGB8qLuQv8gNH6eFmPZTieYW": [ + { + "amount": "196.038744274", + "slot": { + "period": 162204, + "thread": 23 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 272765, + "thread": 6 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 343449, + "thread": 19 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 513801, + "thread": 18 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 720348, + "thread": 24 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 872912, + "thread": 30 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1081968, + "thread": 6 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1214287, + "thread": 23 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1359579, + "thread": 17 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1519963, + "thread": 5 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1678288, + "thread": 10 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 1881076, + "thread": 8 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2006951, + "thread": 23 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2229668, + "thread": 3 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2456456, + "thread": 19 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2489362, + "thread": 4 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2722300, + "thread": 9 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 2934293, + "thread": 27 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 3048691, + "thread": 4 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 3285814, + "thread": 13 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 3349575, + "thread": 7 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 3465507, + "thread": 20 + } + }, + { + "amount": "196.038744274", + "slot": { + "period": 3685962, + "thread": 21 + } + }, + { + "amount": "196.038744262", + "slot": { + "period": 3811296, + "thread": 15 + } + } + ], + "AU1fcuXzAx82Vv5Fkn8CtUagAx7wcgDtoawVKByonqWtJ1gbhoTm": [ + { + "amount": "129.457223041", + "slot": { + "period": 121265, + "thread": 27 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 217958, + "thread": 9 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 440458, + "thread": 20 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 568050, + "thread": 12 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 766968, + "thread": 28 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 965263, + "thread": 16 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1115240, + "thread": 14 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1199054, + "thread": 0 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1333763, + "thread": 7 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1485458, + "thread": 27 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1698601, + "thread": 10 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 1921597, + "thread": 2 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2134808, + "thread": 17 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2228094, + "thread": 17 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2380615, + "thread": 24 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2508184, + "thread": 18 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2658171, + "thread": 5 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2928009, + "thread": 4 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 2960311, + "thread": 3 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 3258320, + "thread": 9 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 3363814, + "thread": 4 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 3587644, + "thread": 25 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 3662968, + "thread": 9 + } + }, + { + "amount": "129.457223041", + "slot": { + "period": 3813453, + "thread": 2 + } + } + ], + "AU1fcy8ZFEvsGeaCH7SHiCcstr6KdRiqobHqG9zcEfSkL15GcMGT": [ + { + "amount": "546.181626107", + "slot": { + "period": 31535, + "thread": 18 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 197445, + "thread": 19 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 381191, + "thread": 8 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 501923, + "thread": 22 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 705929, + "thread": 1 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 882196, + "thread": 17 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1104241, + "thread": 31 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1158926, + "thread": 17 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1373515, + "thread": 6 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1621010, + "thread": 9 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1803813, + "thread": 27 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 1956893, + "thread": 30 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2103121, + "thread": 11 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2176249, + "thread": 9 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2308221, + "thread": 14 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2509310, + "thread": 10 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2765354, + "thread": 0 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 2897215, + "thread": 7 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 3043556, + "thread": 20 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 3282314, + "thread": 5 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 3358179, + "thread": 0 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 3579538, + "thread": 28 + } + }, + { + "amount": "546.181626107", + "slot": { + "period": 3707131, + "thread": 23 + } + }, + { + "amount": "546.181626112", + "slot": { + "period": 3901564, + "thread": 18 + } + } + ], + "AU1fePnWULA4vDTbzJ2HuNtJpquMs72TZxTkEobMJoS86DZpeKME": [ + { + "amount": "181.622205496", + "slot": { + "period": 101736, + "thread": 26 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 305691, + "thread": 4 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 476542, + "thread": 20 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 526306, + "thread": 11 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 761261, + "thread": 8 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 933363, + "thread": 13 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 999917, + "thread": 2 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 1173679, + "thread": 23 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 1365631, + "thread": 20 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 1527434, + "thread": 2 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 1788263, + "thread": 24 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 1931977, + "thread": 27 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2112506, + "thread": 9 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2148533, + "thread": 7 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2387058, + "thread": 2 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2609243, + "thread": 5 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2626557, + "thread": 7 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 2814433, + "thread": 21 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 3103063, + "thread": 11 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 3221752, + "thread": 8 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 3375815, + "thread": 6 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 3527954, + "thread": 27 + } + }, + { + "amount": "181.622205496", + "slot": { + "period": 3773346, + "thread": 27 + } + }, + { + "amount": "181.622205491", + "slot": { + "period": 3826294, + "thread": 6 + } + } + ], + "AU1ffKCpynxg8xxviPXZRNA24Kxpyhq5WHvpasgssRpv5f1XXjwp": [ + { + "amount": "282.924817738", + "slot": { + "period": 165955, + "thread": 7 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 305864, + "thread": 14 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 365363, + "thread": 25 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 609652, + "thread": 28 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 658242, + "thread": 0 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 919617, + "thread": 20 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 984570, + "thread": 27 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1252936, + "thread": 14 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1384889, + "thread": 1 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1635431, + "thread": 2 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1759385, + "thread": 3 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1816924, + "thread": 8 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 1997645, + "thread": 4 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 2283059, + "thread": 17 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 2415069, + "thread": 25 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 2617864, + "thread": 17 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 2734734, + "thread": 5 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 2863444, + "thread": 5 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 3046350, + "thread": 1 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 3126838, + "thread": 3 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 3446077, + "thread": 30 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 3547999, + "thread": 11 + } + }, + { + "amount": "282.924817738", + "slot": { + "period": 3753851, + "thread": 16 + } + }, + { + "amount": "282.924817749", + "slot": { + "period": 3936618, + "thread": 18 + } + } + ], + "AU1ffTY8JymXST3vKijBGH5ysiF75cahxR3BHGd31VZHoaM2dB2B": [ + { + "amount": "244.212298826", + "slot": { + "period": 150674, + "thread": 19 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 220749, + "thread": 23 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 433757, + "thread": 4 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 559598, + "thread": 7 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 775528, + "thread": 31 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 966667, + "thread": 6 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1135695, + "thread": 30 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1212072, + "thread": 29 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1462356, + "thread": 0 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1554410, + "thread": 24 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1678325, + "thread": 26 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 1820587, + "thread": 20 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2081748, + "thread": 18 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2280172, + "thread": 21 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2313173, + "thread": 10 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2511629, + "thread": 8 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2723857, + "thread": 0 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 2812537, + "thread": 21 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 3074664, + "thread": 2 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 3164814, + "thread": 4 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 3397121, + "thread": 1 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 3468980, + "thread": 17 + } + }, + { + "amount": "244.212298826", + "slot": { + "period": 3639672, + "thread": 3 + } + }, + { + "amount": "244.212298832", + "slot": { + "period": 3869457, + "thread": 28 + } + } + ], + "AU1ffWQchv6xVQ2jqkFhuF5skwzSTJHyWuDpPgBfhVQzwrMJ4EbT": [ + { + "amount": "141.597944164", + "slot": { + "period": 50519, + "thread": 24 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 250836, + "thread": 5 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 416849, + "thread": 6 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 596305, + "thread": 18 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 755529, + "thread": 7 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 961248, + "thread": 22 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 991968, + "thread": 22 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 1252812, + "thread": 19 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 1439252, + "thread": 26 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 1498808, + "thread": 2 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 1664504, + "thread": 20 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 1826589, + "thread": 31 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2120272, + "thread": 23 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2148501, + "thread": 4 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2401877, + "thread": 10 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2604812, + "thread": 11 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2659358, + "thread": 17 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 2794336, + "thread": 2 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 3047649, + "thread": 20 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 3154392, + "thread": 23 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 3309809, + "thread": 2 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 3494262, + "thread": 11 + } + }, + { + "amount": "141.597944164", + "slot": { + "period": 3685569, + "thread": 5 + } + }, + { + "amount": "141.597944154", + "slot": { + "period": 3787995, + "thread": 7 + } + } + ], + "AU1fhJHfUTjTdksUvTc76uMBCgAJ3Gu8onUTcxy6VoLF3XhtKKaJ": [ + { + "amount": "500.988044360", + "slot": { + "period": 63710, + "thread": 3 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 250555, + "thread": 21 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 488431, + "thread": 19 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 500633, + "thread": 27 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 658895, + "thread": 12 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 963015, + "thread": 9 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1052382, + "thread": 8 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1247995, + "thread": 24 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1422887, + "thread": 10 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1506136, + "thread": 25 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1686593, + "thread": 6 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 1880983, + "thread": 0 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2098008, + "thread": 23 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2167922, + "thread": 3 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2439823, + "thread": 6 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2479752, + "thread": 24 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2644125, + "thread": 29 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 2878081, + "thread": 22 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 3102934, + "thread": 30 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 3256269, + "thread": 27 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 3308563, + "thread": 30 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 3515258, + "thread": 5 + } + }, + { + "amount": "500.988044360", + "slot": { + "period": 3622201, + "thread": 22 + } + }, + { + "amount": "500.988044350", + "slot": { + "period": 3910569, + "thread": 7 + } + } + ], + "AU1fhMGHhNbZyyVrJDvP8kAyJEok7EauXEfZAxzr4VEPK7bWRbCi": [ + { + "amount": "62.246772263", + "slot": { + "period": 78359, + "thread": 13 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 185034, + "thread": 21 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 462781, + "thread": 16 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 629880, + "thread": 30 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 709346, + "thread": 21 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 942047, + "thread": 31 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1059415, + "thread": 0 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1174673, + "thread": 11 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1351256, + "thread": 11 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1632228, + "thread": 15 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1681295, + "thread": 30 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 1884077, + "thread": 29 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2012501, + "thread": 11 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2207678, + "thread": 18 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2321051, + "thread": 9 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2557041, + "thread": 9 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2738686, + "thread": 16 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 2853001, + "thread": 10 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 3110131, + "thread": 24 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 3181150, + "thread": 5 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 3359758, + "thread": 17 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 3611252, + "thread": 24 + } + }, + { + "amount": "62.246772263", + "slot": { + "period": 3638470, + "thread": 11 + } + }, + { + "amount": "62.246772268", + "slot": { + "period": 3822420, + "thread": 20 + } + } + ], + "AU1fiASQ2iQEBMDCYYS8vsJHTNY2HdGF5h6fK9FQSdo7QX4E4y6w": [ + { + "amount": "247.943409172", + "slot": { + "period": 13213, + "thread": 22 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 317007, + "thread": 8 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 482193, + "thread": 28 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 585760, + "thread": 23 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 811646, + "thread": 18 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 830205, + "thread": 24 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1105205, + "thread": 9 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1178119, + "thread": 9 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1448755, + "thread": 15 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1595852, + "thread": 7 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1797018, + "thread": 28 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 1909752, + "thread": 13 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2132568, + "thread": 26 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2149754, + "thread": 25 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2398959, + "thread": 20 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2487345, + "thread": 20 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2712145, + "thread": 13 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 2877099, + "thread": 19 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 3084583, + "thread": 1 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 3250183, + "thread": 16 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 3415475, + "thread": 7 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 3577923, + "thread": 30 + } + }, + { + "amount": "247.943409172", + "slot": { + "period": 3748246, + "thread": 11 + } + }, + { + "amount": "247.943409166", + "slot": { + "period": 3880728, + "thread": 27 + } + } + ], + "AU1fiC47mcLm2mYEe3xP2yWGtbd2Q8jPf9T66P1MWpbd1TPU1rqe": [ + { + "amount": "258.170344468", + "slot": { + "period": 155495, + "thread": 26 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 200341, + "thread": 12 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 346400, + "thread": 18 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 519257, + "thread": 19 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 766488, + "thread": 31 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 858511, + "thread": 2 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1123264, + "thread": 1 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1316844, + "thread": 24 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1461061, + "thread": 18 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1558852, + "thread": 30 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1701396, + "thread": 23 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 1913468, + "thread": 8 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2058431, + "thread": 12 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2276441, + "thread": 14 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2417738, + "thread": 6 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2520030, + "thread": 10 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2782500, + "thread": 23 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2807957, + "thread": 25 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 2997980, + "thread": 1 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 3141561, + "thread": 2 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 3351717, + "thread": 4 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 3594962, + "thread": 5 + } + }, + { + "amount": "258.170344468", + "slot": { + "period": 3762214, + "thread": 6 + } + }, + { + "amount": "258.170344472", + "slot": { + "period": 3859500, + "thread": 16 + } + } + ], + "AU1fiLFVUH4DAVxFGTA5AechNAgLpFAioHmBTicETditXch7GZ6y": [ + { + "amount": "119.913960792", + "slot": { + "period": 117660, + "thread": 2 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 259356, + "thread": 31 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 480591, + "thread": 17 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 524392, + "thread": 7 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 793529, + "thread": 4 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 952147, + "thread": 26 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1121096, + "thread": 5 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1153338, + "thread": 20 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1375894, + "thread": 30 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1572974, + "thread": 30 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1793762, + "thread": 26 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 1915450, + "thread": 7 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2095236, + "thread": 2 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2286876, + "thread": 15 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2363045, + "thread": 8 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2577051, + "thread": 29 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2749229, + "thread": 14 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 2819223, + "thread": 13 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 3112554, + "thread": 9 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 3175871, + "thread": 2 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 3404574, + "thread": 5 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 3488767, + "thread": 10 + } + }, + { + "amount": "119.913960792", + "slot": { + "period": 3635727, + "thread": 4 + } + }, + { + "amount": "119.913960791", + "slot": { + "period": 3819995, + "thread": 25 + } + } + ], + "AU1fjCpob1vmN4YDtnGSsfgsMVaUzLFN9rr9pvmJBTxgBPdnPVf9": [ + { + "amount": "132.251255900", + "slot": { + "period": 140768, + "thread": 8 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 312552, + "thread": 16 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 457065, + "thread": 16 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 564032, + "thread": 1 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 655536, + "thread": 13 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 842892, + "thread": 19 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1062215, + "thread": 18 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1260759, + "thread": 24 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1346353, + "thread": 21 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1565608, + "thread": 29 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1711241, + "thread": 6 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 1855437, + "thread": 1 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2017269, + "thread": 3 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2256257, + "thread": 2 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2391820, + "thread": 1 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2617259, + "thread": 24 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2730183, + "thread": 12 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 2947802, + "thread": 0 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 3068813, + "thread": 17 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 3285129, + "thread": 25 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 3357676, + "thread": 15 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 3480155, + "thread": 14 + } + }, + { + "amount": "132.251255900", + "slot": { + "period": 3629298, + "thread": 6 + } + }, + { + "amount": "132.251255908", + "slot": { + "period": 3875127, + "thread": 10 + } + } + ], + "AU1fjtvwmfvke5qZBy3hBb2qtYGKWeCW9bxxVKJ3RLRznMpmZPHz": [ + { + "amount": "185.058094952", + "slot": { + "period": 107266, + "thread": 8 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 199673, + "thread": 28 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 461111, + "thread": 9 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 508508, + "thread": 14 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 786429, + "thread": 4 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 917736, + "thread": 22 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1147497, + "thread": 24 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1301892, + "thread": 28 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1378200, + "thread": 20 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1568146, + "thread": 6 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1736926, + "thread": 30 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 1960976, + "thread": 6 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2019869, + "thread": 27 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2204793, + "thread": 31 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2314365, + "thread": 15 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2580148, + "thread": 11 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2750485, + "thread": 6 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 2847223, + "thread": 21 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 3087327, + "thread": 16 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 3166131, + "thread": 22 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 3447884, + "thread": 17 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 3520575, + "thread": 11 + } + }, + { + "amount": "185.058094952", + "slot": { + "period": 3772956, + "thread": 16 + } + }, + { + "amount": "185.058094964", + "slot": { + "period": 3892525, + "thread": 30 + } + } + ], + "AU1fm2XPaasvAq9DebQKj5SXMNsAaLf2dG8ciAnjEjHiCvGFmQR2": [ + { + "amount": "295.982717955", + "slot": { + "period": 21319, + "thread": 3 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 273737, + "thread": 22 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 453580, + "thread": 11 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 491767, + "thread": 20 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 817839, + "thread": 6 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 894583, + "thread": 13 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1051111, + "thread": 22 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1264464, + "thread": 17 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1411298, + "thread": 13 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1484386, + "thread": 5 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1757960, + "thread": 23 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 1955021, + "thread": 22 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2041603, + "thread": 27 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2249708, + "thread": 17 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2296034, + "thread": 4 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2586543, + "thread": 30 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2702640, + "thread": 20 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 2890366, + "thread": 3 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 3028763, + "thread": 9 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 3284768, + "thread": 10 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 3345280, + "thread": 20 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 3603764, + "thread": 30 + } + }, + { + "amount": "295.982717955", + "slot": { + "period": 3623261, + "thread": 1 + } + }, + { + "amount": "295.982717958", + "slot": { + "period": 3818880, + "thread": 9 + } + } + ], + "AU1fmLBs3gq4YQprymZpPzPmB1FkjHGq4amEE23mRHmvMjGyc9FR": [ + { + "amount": "182.980235468", + "slot": { + "period": 112909, + "thread": 10 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 183055, + "thread": 14 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 358303, + "thread": 13 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 572030, + "thread": 15 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 654887, + "thread": 19 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 944261, + "thread": 24 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1017214, + "thread": 19 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1285299, + "thread": 19 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1409042, + "thread": 17 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1646360, + "thread": 29 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1714135, + "thread": 22 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 1876158, + "thread": 16 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2046211, + "thread": 28 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2293463, + "thread": 10 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2395434, + "thread": 13 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2574787, + "thread": 24 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2769372, + "thread": 18 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 2856747, + "thread": 5 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 3115518, + "thread": 22 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 3172315, + "thread": 4 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 3375197, + "thread": 6 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 3522234, + "thread": 13 + } + }, + { + "amount": "182.980235468", + "slot": { + "period": 3712209, + "thread": 15 + } + }, + { + "amount": "182.980235464", + "slot": { + "period": 3940966, + "thread": 4 + } + } + ], + "AU1fmgMPim2RY7gyuuCoX347VQzVSg31fhPamz9L6zDDxxD7gNBx": [ + { + "amount": "547.446857262", + "slot": { + "period": 80590, + "thread": 30 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 299919, + "thread": 2 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 490561, + "thread": 5 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 499308, + "thread": 20 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 684088, + "thread": 24 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 965021, + "thread": 5 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1023941, + "thread": 28 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1245066, + "thread": 4 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1328375, + "thread": 13 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1631654, + "thread": 11 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1667322, + "thread": 19 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 1951157, + "thread": 23 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2084255, + "thread": 27 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2285152, + "thread": 7 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2423557, + "thread": 14 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2532918, + "thread": 2 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2775788, + "thread": 0 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 2924054, + "thread": 7 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 3111455, + "thread": 5 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 3248501, + "thread": 30 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 3420898, + "thread": 16 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 3591350, + "thread": 13 + } + }, + { + "amount": "547.446857262", + "slot": { + "period": 3625518, + "thread": 18 + } + }, + { + "amount": "547.446857254", + "slot": { + "period": 3787795, + "thread": 6 + } + } + ], + "AU1fn1YiLwC4RGKRoX6MGbfrkCsH2Ja8vNTwKSJmEaq1TQuxoP7G": [ + { + "amount": "91.543779201", + "slot": { + "period": 70005, + "thread": 11 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 253749, + "thread": 29 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 415974, + "thread": 24 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 562943, + "thread": 4 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 806027, + "thread": 2 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 826284, + "thread": 31 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1107496, + "thread": 25 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1227148, + "thread": 21 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1467378, + "thread": 27 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1565208, + "thread": 16 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1731101, + "thread": 2 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 1845020, + "thread": 14 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2103844, + "thread": 25 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2265776, + "thread": 16 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2423270, + "thread": 21 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2490603, + "thread": 13 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2768444, + "thread": 2 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 2899744, + "thread": 3 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 3018123, + "thread": 1 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 3130461, + "thread": 18 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 3329816, + "thread": 31 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 3453348, + "thread": 22 + } + }, + { + "amount": "91.543779201", + "slot": { + "period": 3692424, + "thread": 27 + } + }, + { + "amount": "91.543779196", + "slot": { + "period": 3809464, + "thread": 24 + } + } + ], + "AU1fnY9934azS6eiiu5RdGWi3nLmSmZoZAS6eNEcXnLc2bwVD4ux": [ + { + "amount": "180.050543089", + "slot": { + "period": 127399, + "thread": 1 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 280192, + "thread": 28 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 392052, + "thread": 21 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 635591, + "thread": 11 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 666511, + "thread": 6 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 936994, + "thread": 24 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1100366, + "thread": 16 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1296585, + "thread": 23 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1379894, + "thread": 31 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1596043, + "thread": 21 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1797067, + "thread": 19 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 1848127, + "thread": 22 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2005556, + "thread": 4 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2164274, + "thread": 25 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2353701, + "thread": 28 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2550023, + "thread": 12 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2714777, + "thread": 28 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 2842429, + "thread": 7 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 3083902, + "thread": 14 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 3182691, + "thread": 17 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 3299564, + "thread": 3 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 3516813, + "thread": 13 + } + }, + { + "amount": "180.050543089", + "slot": { + "period": 3746421, + "thread": 15 + } + }, + { + "amount": "180.050543097", + "slot": { + "period": 3847738, + "thread": 27 + } + } + ], + "AU1foLUXe7Vjmxfj1VVuJMJ4ScGFWMN6YA79yLZ5B7sU4dNQRq6o": [ + { + "amount": "137.703565822", + "slot": { + "period": 91548, + "thread": 13 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 265994, + "thread": 9 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 404535, + "thread": 12 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 585775, + "thread": 10 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 712073, + "thread": 28 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 861605, + "thread": 18 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1057639, + "thread": 4 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1217960, + "thread": 13 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1328154, + "thread": 26 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1642176, + "thread": 29 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1802575, + "thread": 13 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 1877950, + "thread": 23 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2074042, + "thread": 5 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2240791, + "thread": 5 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2306802, + "thread": 31 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2611288, + "thread": 26 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2682979, + "thread": 0 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 2845633, + "thread": 28 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 3071190, + "thread": 20 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 3249153, + "thread": 21 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 3314070, + "thread": 16 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 3461882, + "thread": 9 + } + }, + { + "amount": "137.703565822", + "slot": { + "period": 3707221, + "thread": 5 + } + }, + { + "amount": "137.703565811", + "slot": { + "period": 3859607, + "thread": 16 + } + } + ], + "AU1foeaFrmRJTbUhTmrnuQdyTgNbhw748zim8ed1T3MXjfYZZNYz": [ + { + "amount": "681.014828708", + "slot": { + "period": 74347, + "thread": 29 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 294363, + "thread": 4 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 366733, + "thread": 31 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 624248, + "thread": 31 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 761898, + "thread": 4 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 868789, + "thread": 4 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 999551, + "thread": 23 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 1297718, + "thread": 6 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 1432540, + "thread": 24 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 1484458, + "thread": 10 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 1680411, + "thread": 21 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 1815631, + "thread": 16 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2142852, + "thread": 21 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2187633, + "thread": 0 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2371578, + "thread": 16 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2587679, + "thread": 20 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2764844, + "thread": 15 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2916742, + "thread": 29 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 2962480, + "thread": 8 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 3262870, + "thread": 4 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 3354466, + "thread": 25 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 3486794, + "thread": 26 + } + }, + { + "amount": "681.014828708", + "slot": { + "period": 3656694, + "thread": 11 + } + }, + { + "amount": "681.014828702", + "slot": { + "period": 3805673, + "thread": 15 + } + } + ], + "AU1foke7ie5kCPCirzBSaAR2gP41eT58yMKMcJcueVVNxdaSxZ3M": [ + { + "amount": "368.638368815", + "slot": { + "period": 57739, + "thread": 11 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 224088, + "thread": 26 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 416386, + "thread": 9 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 651138, + "thread": 12 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 785801, + "thread": 16 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 847275, + "thread": 31 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 986570, + "thread": 21 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 1227840, + "thread": 8 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 1334808, + "thread": 21 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 1565536, + "thread": 26 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 1720193, + "thread": 18 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 1962605, + "thread": 24 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2055339, + "thread": 14 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2287098, + "thread": 24 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2386892, + "thread": 7 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2462497, + "thread": 28 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2779885, + "thread": 27 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2901400, + "thread": 17 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 2968648, + "thread": 29 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 3251229, + "thread": 19 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 3374195, + "thread": 22 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 3539811, + "thread": 2 + } + }, + { + "amount": "368.638368815", + "slot": { + "period": 3759898, + "thread": 23 + } + }, + { + "amount": "368.638368811", + "slot": { + "period": 3913350, + "thread": 26 + } + } + ], + "AU1fp42ERbDpTpRkNEraW6QithNFE9bBwdzTF2xBNc1PsbYAGFYc": [ + { + "amount": "192.556593092", + "slot": { + "period": 42804, + "thread": 10 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 195885, + "thread": 12 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 363680, + "thread": 12 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 643931, + "thread": 28 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 692782, + "thread": 20 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 827685, + "thread": 1 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1139703, + "thread": 31 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1304484, + "thread": 16 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1471929, + "thread": 26 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1545389, + "thread": 20 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1739708, + "thread": 4 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 1909065, + "thread": 7 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2026748, + "thread": 25 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2175895, + "thread": 16 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2306598, + "thread": 27 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2568193, + "thread": 2 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2661952, + "thread": 6 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2919832, + "thread": 25 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 2970351, + "thread": 28 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 3202934, + "thread": 15 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 3289779, + "thread": 20 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 3454414, + "thread": 24 + } + }, + { + "amount": "192.556593092", + "slot": { + "period": 3676760, + "thread": 23 + } + }, + { + "amount": "192.556593100", + "slot": { + "period": 3834959, + "thread": 30 + } + } + ], + "AU1fpNo9zbDcLJwSw9n4qgfyrX1UWhX8m4sPquUExzfjpHMdBjGX": [ + { + "amount": "225.126073307", + "slot": { + "period": 157120, + "thread": 3 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 215639, + "thread": 30 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 419965, + "thread": 25 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 568276, + "thread": 7 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 687995, + "thread": 20 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 844290, + "thread": 12 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1028619, + "thread": 27 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1168759, + "thread": 24 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1322162, + "thread": 28 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1547101, + "thread": 23 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1685824, + "thread": 13 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 1814718, + "thread": 3 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2133737, + "thread": 1 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2216634, + "thread": 20 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2361247, + "thread": 2 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2470487, + "thread": 7 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2703139, + "thread": 14 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2886024, + "thread": 22 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 2965752, + "thread": 25 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 3224238, + "thread": 7 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 3430112, + "thread": 27 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 3598978, + "thread": 6 + } + }, + { + "amount": "225.126073307", + "slot": { + "period": 3714203, + "thread": 4 + } + }, + { + "amount": "225.126073302", + "slot": { + "period": 3883292, + "thread": 27 + } + } + ], + "AU1fsYtTs6imbxodu8Rz61s9w75KoqCuuqyc6KXDhizGueAX8cGd": [ + { + "amount": "323.049455403", + "slot": { + "period": 31286, + "thread": 17 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 225630, + "thread": 23 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 478015, + "thread": 18 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 493000, + "thread": 3 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 778649, + "thread": 30 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 829341, + "thread": 12 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1103531, + "thread": 9 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1236719, + "thread": 10 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1406078, + "thread": 20 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1645957, + "thread": 25 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1670977, + "thread": 22 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 1867919, + "thread": 3 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2012314, + "thread": 21 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2203823, + "thread": 31 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2361992, + "thread": 24 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2524932, + "thread": 17 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2782175, + "thread": 25 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2942539, + "thread": 17 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 2969151, + "thread": 7 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 3242635, + "thread": 20 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 3345720, + "thread": 12 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 3591116, + "thread": 16 + } + }, + { + "amount": "323.049455403", + "slot": { + "period": 3744428, + "thread": 25 + } + }, + { + "amount": "323.049455402", + "slot": { + "period": 3848640, + "thread": 14 + } + } + ], + "AU1ft4kAg9cSTwhGN6FsX3Zfq93NhbW7gooVZTAqptvbUd36hwHK": [ + { + "amount": "338.433895011", + "slot": { + "period": 143395, + "thread": 15 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 287705, + "thread": 12 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 371301, + "thread": 11 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 614558, + "thread": 22 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 768173, + "thread": 28 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 956217, + "thread": 28 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1005057, + "thread": 2 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1234011, + "thread": 24 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1463835, + "thread": 31 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1622874, + "thread": 2 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1758287, + "thread": 3 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 1941566, + "thread": 16 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2130562, + "thread": 5 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2196274, + "thread": 16 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2342859, + "thread": 5 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2466498, + "thread": 25 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2642180, + "thread": 29 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 2944235, + "thread": 19 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 3097339, + "thread": 14 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 3169857, + "thread": 4 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 3373842, + "thread": 20 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 3531586, + "thread": 20 + } + }, + { + "amount": "338.433895011", + "slot": { + "period": 3647022, + "thread": 5 + } + }, + { + "amount": "338.433895012", + "slot": { + "period": 3865878, + "thread": 13 + } + } + ], + "AU1ftYMBdRjwFGwEX9AaVNqusSnGbvBXMi74MwjJGMYYE7QWF2P4": [ + { + "amount": "98.894453990", + "slot": { + "period": 98410, + "thread": 0 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 211760, + "thread": 18 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 428984, + "thread": 24 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 559864, + "thread": 23 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 816493, + "thread": 25 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 982767, + "thread": 1 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1068773, + "thread": 8 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1229192, + "thread": 18 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1347660, + "thread": 13 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1629315, + "thread": 6 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1770136, + "thread": 5 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 1823950, + "thread": 27 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2115239, + "thread": 27 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2214665, + "thread": 22 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2349718, + "thread": 11 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2471726, + "thread": 12 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2697356, + "thread": 17 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 2816273, + "thread": 7 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 3040982, + "thread": 7 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 3274900, + "thread": 7 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 3345978, + "thread": 13 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 3510954, + "thread": 18 + } + }, + { + "amount": "98.894453990", + "slot": { + "period": 3740193, + "thread": 1 + } + }, + { + "amount": "98.894453982", + "slot": { + "period": 3882633, + "thread": 25 + } + } + ], + "AU1ftZBoKH6MWWR3WBpBDnQuMPZDGYKZti4ru99qBDHY5NSTxJ1V": [ + { + "amount": "184.656835069", + "slot": { + "period": 132815, + "thread": 31 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 201800, + "thread": 2 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 482155, + "thread": 1 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 598295, + "thread": 4 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 729125, + "thread": 21 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 979725, + "thread": 14 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1068173, + "thread": 12 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1239265, + "thread": 25 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1465970, + "thread": 21 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1631988, + "thread": 17 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1701536, + "thread": 1 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 1935801, + "thread": 3 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2134525, + "thread": 15 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2221467, + "thread": 28 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2413029, + "thread": 2 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2535122, + "thread": 11 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2764857, + "thread": 1 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2814156, + "thread": 20 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 2986924, + "thread": 0 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 3285255, + "thread": 0 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 3428660, + "thread": 7 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 3502379, + "thread": 11 + } + }, + { + "amount": "184.656835069", + "slot": { + "period": 3661256, + "thread": 22 + } + }, + { + "amount": "184.656835075", + "slot": { + "period": 3940358, + "thread": 12 + } + } + ], + "AU1ftazDLCbXjCXscMQsq7sS1apxKJEi5LpebMHvsNoQXqLfn58r": [ + { + "amount": "380.838834194", + "slot": { + "period": 114589, + "thread": 24 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 322759, + "thread": 7 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 343467, + "thread": 3 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 580929, + "thread": 5 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 712260, + "thread": 22 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 842111, + "thread": 23 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1094476, + "thread": 24 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1157034, + "thread": 9 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1453255, + "thread": 13 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1482115, + "thread": 8 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1795020, + "thread": 2 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 1828342, + "thread": 25 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2003389, + "thread": 12 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2246999, + "thread": 26 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2386687, + "thread": 9 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2511990, + "thread": 14 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2779316, + "thread": 19 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2806490, + "thread": 27 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 2993770, + "thread": 31 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 3210339, + "thread": 17 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 3445556, + "thread": 27 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 3473985, + "thread": 11 + } + }, + { + "amount": "380.838834194", + "slot": { + "period": 3710948, + "thread": 28 + } + }, + { + "amount": "380.838834186", + "slot": { + "period": 3926748, + "thread": 27 + } + } + ], + "AU1ftm28N5LeZymzhhf6vsqaDDoPMvQXct1sh4WzJkFeip759f8Y": [ + { + "amount": "70.756851585", + "slot": { + "period": 160195, + "thread": 5 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 169373, + "thread": 23 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 362955, + "thread": 30 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 553358, + "thread": 20 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 757459, + "thread": 31 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 932937, + "thread": 3 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1107269, + "thread": 29 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1209797, + "thread": 20 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1375763, + "thread": 29 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1479964, + "thread": 12 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1721151, + "thread": 7 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 1855207, + "thread": 10 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2079912, + "thread": 26 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2214454, + "thread": 13 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2394336, + "thread": 20 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2478201, + "thread": 18 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2701269, + "thread": 27 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 2798808, + "thread": 21 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 3000791, + "thread": 2 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 3209348, + "thread": 29 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 3322809, + "thread": 28 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 3548014, + "thread": 25 + } + }, + { + "amount": "70.756851585", + "slot": { + "period": 3619629, + "thread": 8 + } + }, + { + "amount": "70.756851575", + "slot": { + "period": 3921878, + "thread": 20 + } + } + ], + "AU1ftsDTzcUQiJRz1nFqvgZnyVzXRgYJcq3N2QsjSdaJARi97XZ2": [ + { + "amount": "154.500870161", + "slot": { + "period": 13097, + "thread": 7 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 318266, + "thread": 8 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 326379, + "thread": 17 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 556093, + "thread": 18 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 802768, + "thread": 17 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 828943, + "thread": 19 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1000587, + "thread": 11 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1239170, + "thread": 25 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1372089, + "thread": 4 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1528665, + "thread": 11 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1694093, + "thread": 26 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 1880403, + "thread": 26 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2134826, + "thread": 29 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2182740, + "thread": 12 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2308197, + "thread": 21 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2469948, + "thread": 9 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2654828, + "thread": 1 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 2873649, + "thread": 8 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 3030238, + "thread": 28 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 3244920, + "thread": 15 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 3379638, + "thread": 1 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 3490000, + "thread": 17 + } + }, + { + "amount": "154.500870161", + "slot": { + "period": 3640498, + "thread": 8 + } + }, + { + "amount": "154.500870156", + "slot": { + "period": 3900943, + "thread": 11 + } + } + ], + "AU1ftwbcnZftEDrbkANLT4vHUM6RgKB2umSh5gEUFsmVtVhNJhNV": [ + { + "amount": "434.157888028", + "slot": { + "period": 114528, + "thread": 26 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 296719, + "thread": 12 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 481862, + "thread": 26 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 570130, + "thread": 9 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 767494, + "thread": 6 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 952935, + "thread": 5 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1009378, + "thread": 4 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1297005, + "thread": 25 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1458667, + "thread": 10 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1543193, + "thread": 12 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1805692, + "thread": 22 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 1831949, + "thread": 6 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2014160, + "thread": 0 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2225353, + "thread": 13 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2384434, + "thread": 9 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2478469, + "thread": 15 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2720162, + "thread": 12 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 2797718, + "thread": 30 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 3121158, + "thread": 4 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 3140032, + "thread": 12 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 3312244, + "thread": 18 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 3605425, + "thread": 23 + } + }, + { + "amount": "434.157888028", + "slot": { + "period": 3743075, + "thread": 28 + } + }, + { + "amount": "434.157888024", + "slot": { + "period": 3814158, + "thread": 5 + } + } + ], + "AU1fuAEiYTtJQ3pyvomyy84Mir7u3LoTHh8w6xDpyiaT42XjcH6t": [ + { + "amount": "55.837028323", + "slot": { + "period": 75801, + "thread": 23 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 239995, + "thread": 1 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 481782, + "thread": 14 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 623650, + "thread": 1 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 697178, + "thread": 15 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 908339, + "thread": 23 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1086306, + "thread": 3 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1208304, + "thread": 1 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1333000, + "thread": 23 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1645795, + "thread": 31 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1804865, + "thread": 23 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 1834460, + "thread": 9 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2034836, + "thread": 8 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2201053, + "thread": 14 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2447923, + "thread": 6 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2491675, + "thread": 30 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2715265, + "thread": 26 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2922590, + "thread": 6 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 2985794, + "thread": 2 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 3279324, + "thread": 11 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 3371146, + "thread": 13 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 3463289, + "thread": 9 + } + }, + { + "amount": "55.837028323", + "slot": { + "period": 3756864, + "thread": 13 + } + }, + { + "amount": "55.837028325", + "slot": { + "period": 3826910, + "thread": 21 + } + } + ], + "AU1fvPkpHEsyWirG5RofgUvajsdPMrf281GbA11QruvLrzojBDoS": [ + { + "amount": "477.430009975", + "slot": { + "period": 163750, + "thread": 18 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 218722, + "thread": 19 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 411034, + "thread": 22 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 509798, + "thread": 29 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 769143, + "thread": 11 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 863078, + "thread": 7 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1139298, + "thread": 21 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1160320, + "thread": 8 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1450310, + "thread": 9 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1552074, + "thread": 18 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1721356, + "thread": 13 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 1892355, + "thread": 29 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2017742, + "thread": 14 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2212599, + "thread": 5 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2307624, + "thread": 5 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2545186, + "thread": 14 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2655700, + "thread": 10 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 2852616, + "thread": 22 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 3021328, + "thread": 27 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 3141275, + "thread": 30 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 3348892, + "thread": 24 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 3461464, + "thread": 20 + } + }, + { + "amount": "477.430009975", + "slot": { + "period": 3692583, + "thread": 11 + } + }, + { + "amount": "477.430009982", + "slot": { + "period": 3917525, + "thread": 13 + } + } + ], + "AU1fw524Mc18BnLGUAuBjcASzpmp2wnggMmJxdLXUCSf6SHV7rS5": [ + { + "amount": "218.646292044", + "slot": { + "period": 130314, + "thread": 24 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 217812, + "thread": 27 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 398243, + "thread": 10 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 500590, + "thread": 3 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 671788, + "thread": 28 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 959176, + "thread": 31 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1008018, + "thread": 20 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1285712, + "thread": 13 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1358476, + "thread": 13 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1577976, + "thread": 27 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1659127, + "thread": 8 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 1874399, + "thread": 24 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2103573, + "thread": 2 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2146292, + "thread": 9 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2431110, + "thread": 29 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2501870, + "thread": 2 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2645257, + "thread": 23 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 2936766, + "thread": 4 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 3014654, + "thread": 12 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 3197077, + "thread": 10 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 3310885, + "thread": 20 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 3605531, + "thread": 5 + } + }, + { + "amount": "218.646292044", + "slot": { + "period": 3620780, + "thread": 11 + } + }, + { + "amount": "218.646292043", + "slot": { + "period": 3869819, + "thread": 21 + } + } + ], + "AU1fw5jjijCf6MjgesqZWVsJxskABeEgEGVmue8yePuzTKg7bscS": [ + { + "amount": "168.215987892", + "slot": { + "period": 112622, + "thread": 29 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 198506, + "thread": 14 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 395076, + "thread": 2 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 496650, + "thread": 1 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 671481, + "thread": 30 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 973309, + "thread": 4 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1124365, + "thread": 9 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1186215, + "thread": 28 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1435160, + "thread": 15 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1618179, + "thread": 31 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1694558, + "thread": 10 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1862914, + "thread": 16 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 1993110, + "thread": 1 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 2172511, + "thread": 0 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 2347348, + "thread": 29 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 2492807, + "thread": 2 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 2643789, + "thread": 23 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 2891013, + "thread": 10 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 3077125, + "thread": 7 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 3272411, + "thread": 29 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 3406112, + "thread": 26 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 3565801, + "thread": 12 + } + }, + { + "amount": "168.215987892", + "slot": { + "period": 3735441, + "thread": 19 + } + }, + { + "amount": "168.215987902", + "slot": { + "period": 3923506, + "thread": 28 + } + } + ], + "AU1fwL5eenLcjjG1SFKvqvFKA5SKu4LbdB4reyujtPM5VYWiyZZq": [ + { + "amount": "91.040620564", + "slot": { + "period": 108741, + "thread": 10 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 261406, + "thread": 1 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 359758, + "thread": 20 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 646959, + "thread": 24 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 757967, + "thread": 6 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 852353, + "thread": 29 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1052839, + "thread": 26 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1203679, + "thread": 8 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1474597, + "thread": 23 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1535323, + "thread": 24 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1749403, + "thread": 28 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 1972721, + "thread": 2 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2134627, + "thread": 17 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2244802, + "thread": 14 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2426786, + "thread": 5 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2462806, + "thread": 10 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2665043, + "thread": 20 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 2890275, + "thread": 23 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 3114949, + "thread": 3 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 3236703, + "thread": 16 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 3370775, + "thread": 28 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 3607351, + "thread": 23 + } + }, + { + "amount": "91.040620564", + "slot": { + "period": 3690051, + "thread": 24 + } + }, + { + "amount": "91.040620568", + "slot": { + "period": 3842075, + "thread": 29 + } + } + ], + "AU1fwutiwWa2rgmBa7xScogBwnst8ukxw1RyW6m2KAXDrA91mkGJ": [ + { + "amount": "144.559332788", + "slot": { + "period": 77267, + "thread": 31 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 216529, + "thread": 13 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 487360, + "thread": 11 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 625674, + "thread": 19 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 660846, + "thread": 10 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 956811, + "thread": 11 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1136090, + "thread": 15 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1221225, + "thread": 5 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1436216, + "thread": 5 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1533923, + "thread": 10 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1777852, + "thread": 25 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 1907313, + "thread": 12 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2015023, + "thread": 13 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2235157, + "thread": 28 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2364316, + "thread": 0 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2572513, + "thread": 4 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2765119, + "thread": 30 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 2919039, + "thread": 26 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 3045735, + "thread": 25 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 3155604, + "thread": 21 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 3384691, + "thread": 12 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 3587735, + "thread": 17 + } + }, + { + "amount": "144.559332788", + "slot": { + "period": 3645664, + "thread": 8 + } + }, + { + "amount": "144.559332792", + "slot": { + "period": 3944758, + "thread": 27 + } + } + ], + "AU1fx7cbMvyNY83wgfTQHt4N279Np2w3Kz5uFaD5zbiQwYdXXpoo": [ + { + "amount": "166.035519745", + "slot": { + "period": 23572, + "thread": 20 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 293639, + "thread": 24 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 488720, + "thread": 24 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 616977, + "thread": 23 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 781356, + "thread": 2 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 952962, + "thread": 18 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1013357, + "thread": 14 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1315608, + "thread": 21 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1433192, + "thread": 19 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1536856, + "thread": 29 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1694823, + "thread": 19 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 1881383, + "thread": 25 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2004532, + "thread": 28 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2181764, + "thread": 7 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2403941, + "thread": 8 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2532070, + "thread": 29 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2699314, + "thread": 4 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2945554, + "thread": 0 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 2982944, + "thread": 28 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 3250679, + "thread": 23 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 3352537, + "thread": 31 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 3478847, + "thread": 5 + } + }, + { + "amount": "166.035519745", + "slot": { + "period": 3718768, + "thread": 16 + } + }, + { + "amount": "166.035519755", + "slot": { + "period": 3791943, + "thread": 0 + } + } + ], + "AU1fxSiR4VtxTPF6igpJtt1hRb5mswtJkASJY78cicUxZZDEKz9E": [ + { + "amount": "170.191781621", + "slot": { + "period": 82817, + "thread": 22 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 257969, + "thread": 11 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 427469, + "thread": 16 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 509170, + "thread": 13 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 814673, + "thread": 14 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 823920, + "thread": 11 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1003874, + "thread": 13 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1215452, + "thread": 22 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1436804, + "thread": 9 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1566586, + "thread": 24 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1782515, + "thread": 3 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 1894546, + "thread": 6 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2088169, + "thread": 10 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2207860, + "thread": 4 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2454325, + "thread": 17 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2466331, + "thread": 1 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2686368, + "thread": 20 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2919470, + "thread": 23 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 2980540, + "thread": 24 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 3122652, + "thread": 8 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 3348182, + "thread": 29 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 3519948, + "thread": 2 + } + }, + { + "amount": "170.191781621", + "slot": { + "period": 3761733, + "thread": 1 + } + }, + { + "amount": "170.191781612", + "slot": { + "period": 3942017, + "thread": 27 + } + } + ], + "AU1fypHNSM3xRE7zEYgQknEFDPwgyA6uyrUDsSiV2HtDvGzTquwG": [ + { + "amount": "75.140585790", + "slot": { + "period": 14236, + "thread": 12 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 237606, + "thread": 11 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 334033, + "thread": 4 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 625740, + "thread": 6 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 672055, + "thread": 18 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 857294, + "thread": 2 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1124410, + "thread": 6 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1232085, + "thread": 1 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1368151, + "thread": 18 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1510755, + "thread": 27 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1675018, + "thread": 21 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 1888361, + "thread": 13 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2052464, + "thread": 6 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2278220, + "thread": 27 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2349281, + "thread": 6 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2565492, + "thread": 31 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2653840, + "thread": 20 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2847091, + "thread": 0 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 2965459, + "thread": 23 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 3189816, + "thread": 11 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 3321704, + "thread": 21 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 3487124, + "thread": 19 + } + }, + { + "amount": "75.140585790", + "slot": { + "period": 3678407, + "thread": 26 + } + }, + { + "amount": "75.140585800", + "slot": { + "period": 3943294, + "thread": 29 + } + } + ], + "AU1fzYJxTBAqyy55rZMzAaGJ5dhUxfCFEFbacJf3ueYWdXh4qxKn": [ + { + "amount": "55.525804688", + "slot": { + "period": 44325, + "thread": 3 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 267288, + "thread": 23 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 419636, + "thread": 30 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 634763, + "thread": 16 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 658638, + "thread": 30 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 953358, + "thread": 30 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1146320, + "thread": 10 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1303470, + "thread": 7 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1440283, + "thread": 26 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1583120, + "thread": 1 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1699591, + "thread": 14 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 1959609, + "thread": 29 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2086108, + "thread": 2 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2170325, + "thread": 10 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2371674, + "thread": 4 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2499500, + "thread": 25 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2788562, + "thread": 28 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 2811117, + "thread": 3 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 3099830, + "thread": 28 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 3152467, + "thread": 11 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 3422056, + "thread": 12 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 3572703, + "thread": 25 + } + }, + { + "amount": "55.525804688", + "slot": { + "period": 3629429, + "thread": 6 + } + }, + { + "amount": "55.525804691", + "slot": { + "period": 3845436, + "thread": 11 + } + } + ], + "AU1fzfMLnJ65vk7hc6LLgZz7BZkuj9pnfcmecEwZfxKQJF7cZ4Y3": [ + { + "amount": "88.144203766", + "slot": { + "period": 154548, + "thread": 19 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 191173, + "thread": 10 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 420471, + "thread": 5 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 652262, + "thread": 29 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 814064, + "thread": 3 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 883172, + "thread": 0 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1015567, + "thread": 3 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1201040, + "thread": 7 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1476946, + "thread": 5 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1480868, + "thread": 15 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1791484, + "thread": 14 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 1922017, + "thread": 23 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2086836, + "thread": 20 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2273176, + "thread": 8 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2462215, + "thread": 4 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2623984, + "thread": 20 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2765398, + "thread": 16 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 2855616, + "thread": 6 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 3099011, + "thread": 10 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 3190300, + "thread": 20 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 3359638, + "thread": 7 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 3459157, + "thread": 18 + } + }, + { + "amount": "88.144203766", + "slot": { + "period": 3736211, + "thread": 26 + } + }, + { + "amount": "88.144203776", + "slot": { + "period": 3805573, + "thread": 8 + } + } + ], + "AU1g1cPSFQe7NrCKHyqMXZDFqWivSMrbqgWMwhcxgokkMYuVJ9dD": [ + { + "amount": "82.269017648", + "slot": { + "period": 110287, + "thread": 15 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 172946, + "thread": 19 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 443230, + "thread": 28 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 552227, + "thread": 30 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 813438, + "thread": 8 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 913078, + "thread": 11 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1046701, + "thread": 12 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1173783, + "thread": 25 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1342837, + "thread": 24 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1498061, + "thread": 13 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1685641, + "thread": 16 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 1864085, + "thread": 1 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2090445, + "thread": 29 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2270216, + "thread": 6 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2385517, + "thread": 10 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2499986, + "thread": 19 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2662658, + "thread": 29 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 2804457, + "thread": 27 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 3100723, + "thread": 7 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 3286971, + "thread": 23 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 3399523, + "thread": 27 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 3595616, + "thread": 18 + } + }, + { + "amount": "82.269017648", + "slot": { + "period": 3778030, + "thread": 14 + } + }, + { + "amount": "82.269017653", + "slot": { + "period": 3821373, + "thread": 8 + } + } + ], + "AU1g1n7TaHM22PkS8WP1qV8NG3xXkUHBkvR1brepr9PMioCgww4y": [ + { + "amount": "347.858187550", + "slot": { + "period": 14589, + "thread": 28 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 291239, + "thread": 29 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 346119, + "thread": 30 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 605424, + "thread": 13 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 657525, + "thread": 7 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 944405, + "thread": 25 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 990564, + "thread": 30 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 1225313, + "thread": 2 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 1350190, + "thread": 6 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 1489717, + "thread": 23 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 1780845, + "thread": 11 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 1852295, + "thread": 31 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2103859, + "thread": 19 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2145611, + "thread": 24 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2355318, + "thread": 28 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2542299, + "thread": 28 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2739543, + "thread": 9 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2834212, + "thread": 9 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 2992164, + "thread": 25 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 3180767, + "thread": 21 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 3346110, + "thread": 13 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 3475270, + "thread": 22 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 3754303, + "thread": 19 + } + }, + { + "amount": "347.858187550", + "slot": { + "period": 3792275, + "thread": 31 + } + } + ], + "AU1g2YQpgf9BrFvC46dj3YumqPZY4c1XgNsoJs5LZHFi92bTXEVN": [ + { + "amount": "224.481122815", + "slot": { + "period": 98407, + "thread": 2 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 241079, + "thread": 15 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 445524, + "thread": 20 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 633500, + "thread": 21 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 697574, + "thread": 22 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 945685, + "thread": 23 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1129117, + "thread": 29 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1290708, + "thread": 20 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1448316, + "thread": 5 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1611413, + "thread": 19 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1652122, + "thread": 5 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1873844, + "thread": 23 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 1993182, + "thread": 31 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2169270, + "thread": 5 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2451515, + "thread": 27 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2583485, + "thread": 3 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2725990, + "thread": 19 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2908448, + "thread": 11 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 2966139, + "thread": 23 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 3286394, + "thread": 0 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 3434820, + "thread": 7 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 3574996, + "thread": 30 + } + }, + { + "amount": "224.481122815", + "slot": { + "period": 3773642, + "thread": 16 + } + }, + { + "amount": "224.481122816", + "slot": { + "period": 3917879, + "thread": 20 + } + } + ], + "AU1g2dKsisFUc78GksRjLZn2zSQeZtGYtN1GA5NvJSDk7CQGFyhA": [ + { + "amount": "572.897985886", + "slot": { + "period": 93092, + "thread": 10 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 199610, + "thread": 6 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 462845, + "thread": 7 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 558397, + "thread": 22 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 763857, + "thread": 18 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 897857, + "thread": 21 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1090108, + "thread": 4 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1205722, + "thread": 25 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1442041, + "thread": 4 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1529305, + "thread": 31 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1654937, + "thread": 30 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 1899457, + "thread": 11 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2003008, + "thread": 0 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2154255, + "thread": 3 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2417012, + "thread": 16 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2568378, + "thread": 9 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2627292, + "thread": 28 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 2941716, + "thread": 10 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 3094902, + "thread": 3 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 3191204, + "thread": 9 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 3423730, + "thread": 31 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 3487903, + "thread": 9 + } + }, + { + "amount": "572.897985886", + "slot": { + "period": 3749497, + "thread": 14 + } + }, + { + "amount": "572.897985888", + "slot": { + "period": 3942667, + "thread": 26 + } + } + ], + "AU1g2qvvAtfqVJsVbPdCfQ4hP7Pxy6GWsPiLxQJvdnFVVLYs6QS8": [ + { + "amount": "337.373257846", + "slot": { + "period": 127247, + "thread": 16 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 313950, + "thread": 7 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 449670, + "thread": 3 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 509859, + "thread": 31 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 765706, + "thread": 26 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 830084, + "thread": 7 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1084543, + "thread": 20 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1251873, + "thread": 10 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1434272, + "thread": 5 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1487608, + "thread": 11 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1684258, + "thread": 11 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 1827645, + "thread": 6 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2126295, + "thread": 22 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2179796, + "thread": 12 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2410369, + "thread": 17 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2470410, + "thread": 15 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2670538, + "thread": 18 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 2910713, + "thread": 10 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 3048555, + "thread": 26 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 3255411, + "thread": 13 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 3333480, + "thread": 8 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 3456774, + "thread": 24 + } + }, + { + "amount": "337.373257846", + "slot": { + "period": 3702759, + "thread": 30 + } + }, + { + "amount": "337.373257839", + "slot": { + "period": 3885015, + "thread": 12 + } + } + ], + "AU1g2y9oypnNApZEG7c4aaQsX6Wymbd71usCyPMrmvEQXCKYFM4R": [ + { + "amount": "430.703917292", + "slot": { + "period": 167224, + "thread": 25 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 241104, + "thread": 20 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 424294, + "thread": 4 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 624544, + "thread": 22 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 657506, + "thread": 9 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 898431, + "thread": 26 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1097017, + "thread": 4 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1197393, + "thread": 29 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1409034, + "thread": 1 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1525275, + "thread": 23 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1738487, + "thread": 14 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 1935256, + "thread": 30 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2088753, + "thread": 26 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2261336, + "thread": 20 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2461384, + "thread": 16 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2612478, + "thread": 8 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2661345, + "thread": 1 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 2803563, + "thread": 29 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 3102359, + "thread": 10 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 3263769, + "thread": 9 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 3363349, + "thread": 13 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 3461332, + "thread": 28 + } + }, + { + "amount": "430.703917292", + "slot": { + "period": 3693850, + "thread": 8 + } + }, + { + "amount": "430.703917283", + "slot": { + "period": 3829424, + "thread": 28 + } + } + ], + "AU1g3CvE7ah5WDShQRYdwVNqD5QZrmA2LY8ttbraahBZmg7PiYUZ": [ + { + "amount": "506.834052499", + "slot": { + "period": 61249, + "thread": 2 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 226348, + "thread": 10 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 483498, + "thread": 23 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 595627, + "thread": 8 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 767531, + "thread": 25 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 961415, + "thread": 17 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1080313, + "thread": 20 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1276257, + "thread": 1 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1383318, + "thread": 12 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1625330, + "thread": 27 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1714531, + "thread": 2 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 1916975, + "thread": 16 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2086120, + "thread": 19 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2277776, + "thread": 16 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2447523, + "thread": 17 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2568362, + "thread": 0 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2641019, + "thread": 1 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 2816700, + "thread": 31 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 3120105, + "thread": 18 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 3258547, + "thread": 17 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 3448316, + "thread": 10 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 3611586, + "thread": 13 + } + }, + { + "amount": "506.834052499", + "slot": { + "period": 3662493, + "thread": 22 + } + }, + { + "amount": "506.834052501", + "slot": { + "period": 3908801, + "thread": 22 + } + } + ], + "AU1g3PLV5r8vRoaHYHMBouzyDchgZniYc9jtMYQVav9UoU4EdwaA": [ + { + "amount": "67.080796619", + "slot": { + "period": 106542, + "thread": 25 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 281238, + "thread": 11 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 430543, + "thread": 18 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 631319, + "thread": 6 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 700517, + "thread": 28 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 896903, + "thread": 14 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1009079, + "thread": 12 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1187883, + "thread": 4 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1339542, + "thread": 7 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1643239, + "thread": 11 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1671114, + "thread": 8 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 1839796, + "thread": 20 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2069301, + "thread": 16 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2151337, + "thread": 24 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2321690, + "thread": 11 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2554514, + "thread": 15 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2724779, + "thread": 19 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 2928290, + "thread": 29 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 3081762, + "thread": 3 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 3164367, + "thread": 15 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 3303007, + "thread": 9 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 3523026, + "thread": 22 + } + }, + { + "amount": "67.080796619", + "slot": { + "period": 3696248, + "thread": 9 + } + }, + { + "amount": "67.080796610", + "slot": { + "period": 3907402, + "thread": 22 + } + } + ], + "AU1g3imZ58hukAoauio9kuHjcFcT9taiwNLjodsJxjNZPKpFo8qh": [ + { + "amount": "150.978310513", + "slot": { + "period": 37763, + "thread": 18 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 215059, + "thread": 3 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 468654, + "thread": 20 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 620531, + "thread": 0 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 698452, + "thread": 12 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 929249, + "thread": 16 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1013261, + "thread": 31 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1182695, + "thread": 21 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1412129, + "thread": 12 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1539493, + "thread": 21 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1777199, + "thread": 23 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 1918361, + "thread": 28 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2012072, + "thread": 17 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2211102, + "thread": 14 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2354691, + "thread": 10 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2578506, + "thread": 1 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2737554, + "thread": 21 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 2882022, + "thread": 27 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3066875, + "thread": 22 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3199317, + "thread": 21 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3300698, + "thread": 16 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3528923, + "thread": 17 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3759753, + "thread": 16 + } + }, + { + "amount": "150.978310513", + "slot": { + "period": 3904780, + "thread": 31 + } + } + ], + "AU1g7SmaXJcBBZV5fmj4h66sqfYcNCudyU9YUMzmv6s4AFFEUQii": [ + { + "amount": "133.525982780", + "slot": { + "period": 17522, + "thread": 28 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 168809, + "thread": 28 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 359432, + "thread": 6 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 649703, + "thread": 18 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 751286, + "thread": 22 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 905922, + "thread": 11 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1023369, + "thread": 22 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1186814, + "thread": 23 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1443435, + "thread": 23 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1484521, + "thread": 16 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1765294, + "thread": 26 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 1863119, + "thread": 22 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2036149, + "thread": 25 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2204053, + "thread": 23 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2299503, + "thread": 4 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2471104, + "thread": 15 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2717639, + "thread": 9 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2940053, + "thread": 25 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 2979556, + "thread": 28 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 3279378, + "thread": 1 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 3318386, + "thread": 16 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 3559000, + "thread": 29 + } + }, + { + "amount": "133.525982780", + "slot": { + "period": 3645989, + "thread": 15 + } + }, + { + "amount": "133.525982773", + "slot": { + "period": 3829077, + "thread": 17 + } + } + ], + "AU1g7Zvor3xTYiEkxiVERdFygCrvcGb7sm9ukm3YhuCEH2DfQ5WJ": [ + { + "amount": "224.610393955", + "slot": { + "period": 42204, + "thread": 10 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 304083, + "thread": 5 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 459513, + "thread": 3 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 508008, + "thread": 13 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 744792, + "thread": 0 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 858647, + "thread": 30 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1100423, + "thread": 26 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1246888, + "thread": 31 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1437679, + "thread": 9 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1552640, + "thread": 31 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1786850, + "thread": 1 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 1913748, + "thread": 26 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2134035, + "thread": 14 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2269885, + "thread": 2 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2387847, + "thread": 22 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2536322, + "thread": 8 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2624830, + "thread": 9 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 2846627, + "thread": 29 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 3048822, + "thread": 15 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 3270139, + "thread": 4 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 3301496, + "thread": 24 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 3457492, + "thread": 20 + } + }, + { + "amount": "224.610393955", + "slot": { + "period": 3702307, + "thread": 28 + } + }, + { + "amount": "224.610393959", + "slot": { + "period": 3902405, + "thread": 10 + } + } + ], + "AU1g8FfSAPLW33C1CdSA7jqD7csD5o8SxGbKaPSTkXFhcqH1Turf": [ + { + "amount": "213.539699201", + "slot": { + "period": 140862, + "thread": 5 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 323142, + "thread": 1 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 334565, + "thread": 11 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 569798, + "thread": 21 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 809721, + "thread": 6 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 905010, + "thread": 2 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1114713, + "thread": 23 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1285467, + "thread": 22 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1400609, + "thread": 21 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1576733, + "thread": 14 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1744944, + "thread": 28 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 1926307, + "thread": 11 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2022400, + "thread": 5 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2207221, + "thread": 1 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2371166, + "thread": 2 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2601251, + "thread": 7 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2640118, + "thread": 16 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 2856980, + "thread": 12 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 3089142, + "thread": 12 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 3212520, + "thread": 21 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 3366685, + "thread": 18 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 3469473, + "thread": 0 + } + }, + { + "amount": "213.539699201", + "slot": { + "period": 3674115, + "thread": 24 + } + }, + { + "amount": "213.539699209", + "slot": { + "period": 3859145, + "thread": 11 + } + } + ], + "AU1g9ru8QMQPUNGThEdSoCh23cCJbjVnRuAg2J1VZtaeFp6xZGnw": [ + { + "amount": "351.532480110", + "slot": { + "period": 41575, + "thread": 5 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 208703, + "thread": 24 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 408982, + "thread": 2 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 633439, + "thread": 18 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 819936, + "thread": 22 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 933191, + "thread": 24 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1000653, + "thread": 4 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1305668, + "thread": 7 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1445519, + "thread": 31 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1589081, + "thread": 8 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1756193, + "thread": 12 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 1851073, + "thread": 4 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2109676, + "thread": 2 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2255477, + "thread": 7 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2331692, + "thread": 4 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2491606, + "thread": 17 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2693439, + "thread": 27 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 2838348, + "thread": 10 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 3109530, + "thread": 4 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 3252608, + "thread": 0 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 3326829, + "thread": 24 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 3505860, + "thread": 26 + } + }, + { + "amount": "351.532480110", + "slot": { + "period": 3777043, + "thread": 17 + } + }, + { + "amount": "351.532480111", + "slot": { + "period": 3855302, + "thread": 10 + } + } + ], + "AU1gAH8PfJUZbjFsduXKv3HCM8Q1ZQsNu36pAKLynHnEmocQYoZM": [ + { + "amount": "363.931658384", + "slot": { + "period": 60858, + "thread": 4 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 218360, + "thread": 3 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 351128, + "thread": 2 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 579397, + "thread": 15 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 669073, + "thread": 25 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 970879, + "thread": 10 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1147272, + "thread": 20 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1218277, + "thread": 12 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1367029, + "thread": 15 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1641737, + "thread": 7 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1751002, + "thread": 17 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 1925929, + "thread": 17 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2074504, + "thread": 26 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2265344, + "thread": 17 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2460016, + "thread": 29 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2609014, + "thread": 11 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2754565, + "thread": 31 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2812983, + "thread": 21 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 2980116, + "thread": 25 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 3212225, + "thread": 27 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 3429536, + "thread": 8 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 3527326, + "thread": 1 + } + }, + { + "amount": "363.931658384", + "slot": { + "period": 3732135, + "thread": 2 + } + }, + { + "amount": "363.931658391", + "slot": { + "period": 3876173, + "thread": 13 + } + } + ], + "AU1gAerzkyx4ZwspWZ2cDpxZZXN1ojX73E8ENGbW1quWmXVYNJnR": [ + { + "amount": "322.263744050", + "slot": { + "period": 18890, + "thread": 27 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 202417, + "thread": 17 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 362667, + "thread": 26 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 592077, + "thread": 7 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 713740, + "thread": 9 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 844048, + "thread": 8 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1083700, + "thread": 6 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1285112, + "thread": 29 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1327852, + "thread": 24 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1517192, + "thread": 27 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1691341, + "thread": 4 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1824348, + "thread": 14 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 1988414, + "thread": 31 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2275156, + "thread": 29 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2395793, + "thread": 5 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2539156, + "thread": 18 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2650502, + "thread": 10 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2862050, + "thread": 30 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 2991560, + "thread": 24 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 3137173, + "thread": 13 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 3406662, + "thread": 0 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 3578811, + "thread": 8 + } + }, + { + "amount": "322.263744050", + "slot": { + "period": 3675229, + "thread": 14 + } + }, + { + "amount": "322.263744044", + "slot": { + "period": 3933003, + "thread": 25 + } + } + ], + "AU1gBPd12TihRQ4WjiEGn7mstgbyG4Cyz6DdyTFohrKg3m4fuJ28": [ + { + "amount": "11666.666666667", + "slot": { + "period": 15274, + "thread": 19 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 242488, + "thread": 17 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 372149, + "thread": 26 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 633528, + "thread": 1 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 653666, + "thread": 20 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 965088, + "thread": 16 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1085870, + "thread": 11 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1259874, + "thread": 8 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1442880, + "thread": 27 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1558489, + "thread": 23 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1773534, + "thread": 30 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1828401, + "thread": 30 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2014859, + "thread": 27 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2220524, + "thread": 9 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2398451, + "thread": 6 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2520427, + "thread": 4 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2734664, + "thread": 6 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2835254, + "thread": 15 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3049653, + "thread": 22 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3240144, + "thread": 8 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3298664, + "thread": 27 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3479988, + "thread": 3 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3697911, + "thread": 26 + } + }, + { + "amount": "11666.666666659", + "slot": { + "period": 3832398, + "thread": 2 + } + } + ], + "AU1gC3uzoP6EcdZgbUNWMmm4mGtYaLcHYs4rgjRvZz5RZXmkR6YC": [ + { + "amount": "55.000357771", + "slot": { + "period": 153653, + "thread": 28 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 247472, + "thread": 31 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 470801, + "thread": 22 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 559788, + "thread": 0 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 706072, + "thread": 22 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 830024, + "thread": 24 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1105367, + "thread": 12 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1170152, + "thread": 13 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1454717, + "thread": 6 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1531310, + "thread": 11 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1687373, + "thread": 2 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 1946521, + "thread": 7 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2133466, + "thread": 28 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2267076, + "thread": 26 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2320853, + "thread": 29 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2520109, + "thread": 4 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2747704, + "thread": 19 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 2927532, + "thread": 2 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 3047939, + "thread": 23 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 3172035, + "thread": 2 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 3428092, + "thread": 16 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 3542697, + "thread": 15 + } + }, + { + "amount": "55.000357771", + "slot": { + "period": 3755181, + "thread": 31 + } + }, + { + "amount": "55.000357775", + "slot": { + "period": 3883419, + "thread": 22 + } + } + ], + "AU1gD7f4N9JuJ4Y14Zm99DCFrAY8kJ8qt4TaJc6icpTqEJFEH8yg": [ + { + "amount": "334.665662181", + "slot": { + "period": 78396, + "thread": 31 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 260963, + "thread": 16 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 387819, + "thread": 27 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 504384, + "thread": 29 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 714863, + "thread": 13 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 961611, + "thread": 2 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1122247, + "thread": 4 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1170863, + "thread": 10 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1348281, + "thread": 17 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1583908, + "thread": 16 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1678697, + "thread": 28 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 1890803, + "thread": 0 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2070489, + "thread": 18 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2219360, + "thread": 4 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2311377, + "thread": 17 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2551485, + "thread": 5 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2781834, + "thread": 18 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 2940223, + "thread": 11 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 3026534, + "thread": 19 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 3240281, + "thread": 8 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 3355781, + "thread": 31 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 3469834, + "thread": 24 + } + }, + { + "amount": "334.665662181", + "slot": { + "period": 3709454, + "thread": 27 + } + }, + { + "amount": "334.665662170", + "slot": { + "period": 3862603, + "thread": 2 + } + } + ], + "AU1gE3ixjKg7Hc6jykYZ4i2A4Hg9rFipSyHweo2rkDdBy2xu6Fht": [ + { + "amount": "107.696407142", + "slot": { + "period": 65113, + "thread": 15 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 264278, + "thread": 2 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 463860, + "thread": 19 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 521688, + "thread": 25 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 668586, + "thread": 2 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 970797, + "thread": 7 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1108202, + "thread": 10 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1184577, + "thread": 31 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1478712, + "thread": 18 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1551920, + "thread": 10 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1664375, + "thread": 17 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 1891932, + "thread": 31 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2018677, + "thread": 29 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2175160, + "thread": 16 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2446247, + "thread": 28 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2491279, + "thread": 31 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2791147, + "thread": 14 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2830622, + "thread": 10 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 2972535, + "thread": 21 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 3256751, + "thread": 5 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 3401687, + "thread": 12 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 3603327, + "thread": 15 + } + }, + { + "amount": "107.696407142", + "slot": { + "period": 3648987, + "thread": 15 + } + }, + { + "amount": "107.696407135", + "slot": { + "period": 3852783, + "thread": 9 + } + } + ], + "AU1gEUMCTJsTJj6m9HiuYQHqLq8FKhvddVt7UhZRuKeNLgjcKcLr": [ + { + "amount": "129.237850818", + "slot": { + "period": 106952, + "thread": 2 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 317263, + "thread": 23 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 382579, + "thread": 6 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 587784, + "thread": 13 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 661630, + "thread": 3 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 967371, + "thread": 12 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1038795, + "thread": 6 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1282054, + "thread": 0 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1413821, + "thread": 28 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1542353, + "thread": 20 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1773177, + "thread": 4 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 1830522, + "thread": 9 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2000388, + "thread": 25 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2197802, + "thread": 15 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2298985, + "thread": 27 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2472100, + "thread": 3 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2756810, + "thread": 10 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 2894185, + "thread": 22 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 3003246, + "thread": 13 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 3248919, + "thread": 19 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 3357552, + "thread": 15 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 3527659, + "thread": 27 + } + }, + { + "amount": "129.237850818", + "slot": { + "period": 3671611, + "thread": 30 + } + }, + { + "amount": "129.237850814", + "slot": { + "period": 3818453, + "thread": 1 + } + } + ], + "AU1gG2pm6c5xuEMHyS6DuxShY5qNfgLvAE8BLNHMUmJfAFfDWmWj": [ + { + "amount": "522.552417420", + "slot": { + "period": 117642, + "thread": 25 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 281963, + "thread": 17 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 343975, + "thread": 14 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 555916, + "thread": 10 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 733069, + "thread": 18 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 849781, + "thread": 29 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1068314, + "thread": 20 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1223977, + "thread": 5 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1359192, + "thread": 9 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1483231, + "thread": 5 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1698317, + "thread": 12 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 1935505, + "thread": 26 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2002830, + "thread": 0 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2256152, + "thread": 22 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2398552, + "thread": 27 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2515058, + "thread": 18 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2642945, + "thread": 20 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 2825540, + "thread": 6 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 3030673, + "thread": 2 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 3223709, + "thread": 7 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 3381374, + "thread": 5 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 3566921, + "thread": 11 + } + }, + { + "amount": "522.552417420", + "slot": { + "period": 3720938, + "thread": 31 + } + }, + { + "amount": "522.552417409", + "slot": { + "period": 3872611, + "thread": 21 + } + } + ], + "AU1gGjYsaGsF6SmRXhws1LS1Y2UcUfzjotKg7wvWqrr9N8WKiXwL": [ + { + "amount": "446.411653679", + "slot": { + "period": 115042, + "thread": 0 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 308616, + "thread": 7 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 372309, + "thread": 24 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 612206, + "thread": 10 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 740813, + "thread": 12 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 840919, + "thread": 6 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1130772, + "thread": 15 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1174463, + "thread": 29 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1394220, + "thread": 18 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1628156, + "thread": 3 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1802762, + "thread": 11 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1885216, + "thread": 28 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 1993035, + "thread": 17 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 2253627, + "thread": 22 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 2296097, + "thread": 5 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 2544525, + "thread": 13 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 2685328, + "thread": 14 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 2803308, + "thread": 23 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 3041782, + "thread": 13 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 3187892, + "thread": 1 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 3351448, + "thread": 7 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 3567909, + "thread": 16 + } + }, + { + "amount": "446.411653679", + "slot": { + "period": 3748216, + "thread": 6 + } + }, + { + "amount": "446.411653686", + "slot": { + "period": 3799656, + "thread": 4 + } + } + ], + "AU1gGxcDUUQ253tYmgMQJcuzSMs8PjtTESU7nuz8HZFJrvS7Epzr": [ + { + "amount": "178.874485462", + "slot": { + "period": 148210, + "thread": 3 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 203607, + "thread": 31 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 462261, + "thread": 20 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 606524, + "thread": 27 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 799514, + "thread": 11 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 841972, + "thread": 30 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1008065, + "thread": 28 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1253303, + "thread": 1 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1321318, + "thread": 2 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1503439, + "thread": 18 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1785719, + "thread": 12 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 1854858, + "thread": 23 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2024918, + "thread": 21 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2225974, + "thread": 2 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2452968, + "thread": 17 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2587382, + "thread": 3 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2746109, + "thread": 26 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 2886199, + "thread": 17 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 3097137, + "thread": 11 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 3264369, + "thread": 31 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 3367300, + "thread": 27 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 3588287, + "thread": 5 + } + }, + { + "amount": "178.874485462", + "slot": { + "period": 3777104, + "thread": 15 + } + }, + { + "amount": "178.874485451", + "slot": { + "period": 3925232, + "thread": 13 + } + } + ], + "AU1gH7xHgtyaTgyjMf5Nr7iw5ALXrZmwy2KyQ2Hv5dDK4Cjp4YEz": [ + { + "amount": "135.980362221", + "slot": { + "period": 110629, + "thread": 27 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 225499, + "thread": 12 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 392135, + "thread": 3 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 642472, + "thread": 17 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 755699, + "thread": 13 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 883511, + "thread": 5 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1140178, + "thread": 14 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1175377, + "thread": 4 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1372526, + "thread": 12 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1589711, + "thread": 18 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1776837, + "thread": 27 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1825281, + "thread": 14 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 1993544, + "thread": 12 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2144784, + "thread": 17 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2401606, + "thread": 19 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2555225, + "thread": 19 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2724605, + "thread": 14 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2940871, + "thread": 0 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 2959487, + "thread": 15 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 3278168, + "thread": 5 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 3396502, + "thread": 25 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 3593765, + "thread": 28 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 3620095, + "thread": 0 + } + }, + { + "amount": "135.980362221", + "slot": { + "period": 3945345, + "thread": 19 + } + } + ], + "AU1gHDyBKCb7XeBKbiMfzEuZYCE8q2xCdLjREFuV326LPzncz6G8": [ + { + "amount": "331.143129850", + "slot": { + "period": 155456, + "thread": 14 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 245799, + "thread": 28 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 383120, + "thread": 23 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 630507, + "thread": 10 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 739230, + "thread": 23 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 881464, + "thread": 1 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1130863, + "thread": 7 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1218498, + "thread": 19 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1317770, + "thread": 0 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1536912, + "thread": 23 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1727241, + "thread": 11 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 1936434, + "thread": 2 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2022353, + "thread": 4 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2163958, + "thread": 12 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2333341, + "thread": 10 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2490181, + "thread": 19 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2639448, + "thread": 30 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 2815047, + "thread": 9 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 3079376, + "thread": 23 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 3142881, + "thread": 17 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 3381706, + "thread": 28 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 3579722, + "thread": 22 + } + }, + { + "amount": "331.143129850", + "slot": { + "period": 3701688, + "thread": 21 + } + }, + { + "amount": "331.143129845", + "slot": { + "period": 3816316, + "thread": 9 + } + } + ], + "AU1gHSJfH4nU5TPGwrqBBVEojrCrEGqKvK4cYGSK7tNbwnWH92t9": [ + { + "amount": "147.871464928", + "slot": { + "period": 70454, + "thread": 16 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 189923, + "thread": 29 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 397678, + "thread": 1 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 628271, + "thread": 16 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 674306, + "thread": 18 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 925577, + "thread": 15 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 990974, + "thread": 7 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 1291058, + "thread": 21 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 1461137, + "thread": 2 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 1632745, + "thread": 0 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 1651643, + "thread": 24 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 1858039, + "thread": 19 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2000891, + "thread": 12 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2232824, + "thread": 13 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2370490, + "thread": 29 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2520658, + "thread": 15 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2744596, + "thread": 26 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2817692, + "thread": 4 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 2982911, + "thread": 1 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 3238198, + "thread": 28 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 3397875, + "thread": 25 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 3481836, + "thread": 31 + } + }, + { + "amount": "147.871464928", + "slot": { + "period": 3654319, + "thread": 15 + } + }, + { + "amount": "147.871464926", + "slot": { + "period": 3911571, + "thread": 7 + } + } + ], + "AU1gHh1X9RVNKC92KK5hp3sVdti6U86MCQSuBDXJ3p7RLCVyFstF": [ + { + "amount": "504.674360542", + "slot": { + "period": 45736, + "thread": 28 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 223228, + "thread": 18 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 384773, + "thread": 14 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 615799, + "thread": 11 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 792579, + "thread": 11 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 979172, + "thread": 28 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1125845, + "thread": 4 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1194669, + "thread": 30 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1436809, + "thread": 6 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1547010, + "thread": 8 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1772587, + "thread": 11 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 1826499, + "thread": 13 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2035659, + "thread": 24 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2156397, + "thread": 23 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2441271, + "thread": 19 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2508378, + "thread": 12 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2664835, + "thread": 18 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2905720, + "thread": 10 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 2966145, + "thread": 3 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 3248331, + "thread": 14 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 3321249, + "thread": 3 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 3574194, + "thread": 23 + } + }, + { + "amount": "504.674360542", + "slot": { + "period": 3646778, + "thread": 24 + } + }, + { + "amount": "504.674360549", + "slot": { + "period": 3799906, + "thread": 21 + } + } + ], + "AU1gHk9XiJpVadbWGncpBgSUVc9gtQ2zDEfot9fhn41YA2eRkzRH": [ + { + "amount": "129.666522817", + "slot": { + "period": 166845, + "thread": 5 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 234703, + "thread": 15 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 399375, + "thread": 18 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 498073, + "thread": 13 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 754230, + "thread": 25 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 914363, + "thread": 25 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1074004, + "thread": 4 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1184106, + "thread": 17 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1377627, + "thread": 21 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1580689, + "thread": 16 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1799002, + "thread": 14 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 1937710, + "thread": 14 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2017238, + "thread": 5 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2155017, + "thread": 31 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2346228, + "thread": 27 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2509917, + "thread": 9 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2746808, + "thread": 18 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 2849095, + "thread": 7 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 3023694, + "thread": 19 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 3184840, + "thread": 15 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 3368344, + "thread": 13 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 3601820, + "thread": 7 + } + }, + { + "amount": "129.666522817", + "slot": { + "period": 3753663, + "thread": 26 + } + }, + { + "amount": "129.666522827", + "slot": { + "period": 3936375, + "thread": 28 + } + } + ], + "AU1gHtztT78tUu7Fx3THzFRDnQRh8YUKyofVYG6rRGmfRt1BQeZb": [ + { + "amount": "66.800766093", + "slot": { + "period": 72585, + "thread": 4 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 168971, + "thread": 21 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 431237, + "thread": 25 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 560046, + "thread": 17 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 682245, + "thread": 8 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 929329, + "thread": 2 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1088911, + "thread": 2 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1216399, + "thread": 30 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1329341, + "thread": 7 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1574134, + "thread": 5 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1749266, + "thread": 23 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 1901003, + "thread": 25 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2049464, + "thread": 0 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2245044, + "thread": 30 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2442266, + "thread": 4 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2622699, + "thread": 17 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2638334, + "thread": 9 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 2879733, + "thread": 6 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 3103620, + "thread": 6 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 3198114, + "thread": 17 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 3340516, + "thread": 16 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 3531876, + "thread": 25 + } + }, + { + "amount": "66.800766093", + "slot": { + "period": 3666071, + "thread": 29 + } + }, + { + "amount": "66.800766100", + "slot": { + "period": 3873461, + "thread": 6 + } + } + ], + "AU1gJr3fobWpT4Hxw4PGC81uTfHaB6C3ezTimtwWaGFKTqoMNTKE": [ + { + "amount": "235.321888738", + "slot": { + "period": 25662, + "thread": 11 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 315467, + "thread": 16 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 424322, + "thread": 24 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 502976, + "thread": 31 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 662651, + "thread": 17 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 903855, + "thread": 12 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 991008, + "thread": 2 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 1193476, + "thread": 17 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 1432704, + "thread": 9 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 1644868, + "thread": 19 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 1742298, + "thread": 17 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 1854137, + "thread": 28 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2037808, + "thread": 20 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2271690, + "thread": 25 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2302501, + "thread": 10 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2562558, + "thread": 11 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2761844, + "thread": 24 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 2876779, + "thread": 4 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 3109820, + "thread": 20 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 3128022, + "thread": 16 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 3334979, + "thread": 22 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 3585051, + "thread": 9 + } + }, + { + "amount": "235.321888738", + "slot": { + "period": 3756777, + "thread": 4 + } + }, + { + "amount": "235.321888740", + "slot": { + "period": 3896417, + "thread": 13 + } + } + ], + "AU1gK4R7hFc6mo3GkNtVP2BueTji86PBZhkckmsyX5EK6KLhPcFR": [ + { + "amount": "349.280098656", + "slot": { + "period": 86599, + "thread": 18 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 193231, + "thread": 23 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 435163, + "thread": 17 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 538185, + "thread": 18 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 718677, + "thread": 9 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 864493, + "thread": 21 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1091563, + "thread": 21 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1262661, + "thread": 18 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1351703, + "thread": 25 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1615065, + "thread": 18 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1801800, + "thread": 30 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 1942289, + "thread": 6 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2093622, + "thread": 14 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2184075, + "thread": 24 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2414905, + "thread": 2 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2607501, + "thread": 3 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2739200, + "thread": 15 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 2792584, + "thread": 22 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 3028976, + "thread": 5 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 3238012, + "thread": 1 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 3447933, + "thread": 28 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 3604812, + "thread": 31 + } + }, + { + "amount": "349.280098656", + "slot": { + "period": 3712288, + "thread": 13 + } + }, + { + "amount": "349.280098647", + "slot": { + "period": 3817214, + "thread": 17 + } + } + ], + "AU1gKcef9x4fWRP8jWYsmEENsGsjYcQHZVj5nqFDQFYU8D8nj2Qt": [ + { + "amount": "270.843843541", + "slot": { + "period": 74219, + "thread": 0 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 221824, + "thread": 23 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 417924, + "thread": 2 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 574693, + "thread": 9 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 688060, + "thread": 14 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 928263, + "thread": 17 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1085830, + "thread": 13 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1235715, + "thread": 23 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1418508, + "thread": 4 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1564124, + "thread": 23 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1678332, + "thread": 2 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 1900857, + "thread": 9 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2086231, + "thread": 4 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2258350, + "thread": 5 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2458675, + "thread": 27 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2545449, + "thread": 4 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2689555, + "thread": 5 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 2875437, + "thread": 27 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 3080680, + "thread": 20 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 3210229, + "thread": 25 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 3355369, + "thread": 19 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 3483178, + "thread": 18 + } + }, + { + "amount": "270.843843541", + "slot": { + "period": 3660940, + "thread": 29 + } + }, + { + "amount": "270.843843550", + "slot": { + "period": 3840432, + "thread": 13 + } + } + ], + "AU1gKyQggB6xj23KgTF2oZdTG3nomoSqBFGp54uSvHbNct7sBxUx": [ + { + "amount": "225.340642561", + "slot": { + "period": 104671, + "thread": 25 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 303804, + "thread": 12 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 409470, + "thread": 9 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 582651, + "thread": 18 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 738754, + "thread": 19 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 981754, + "thread": 10 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1086306, + "thread": 29 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1233495, + "thread": 24 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1425268, + "thread": 29 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1590762, + "thread": 23 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1748780, + "thread": 10 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1859264, + "thread": 14 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 1982027, + "thread": 21 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 2270489, + "thread": 11 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 2354361, + "thread": 10 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 2537583, + "thread": 10 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 2733714, + "thread": 12 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 2909174, + "thread": 11 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 3099212, + "thread": 31 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 3176420, + "thread": 5 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 3322495, + "thread": 26 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 3606742, + "thread": 25 + } + }, + { + "amount": "225.340642561", + "slot": { + "period": 3756632, + "thread": 5 + } + }, + { + "amount": "225.340642551", + "slot": { + "period": 3870265, + "thread": 1 + } + } + ], + "AU1gL95p9k8iVts8uHyRndB3AiGyY5TpLYh7BgFAPE7y7nZyjUfq": [ + { + "amount": "60.107992800", + "slot": { + "period": 53952, + "thread": 2 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 261471, + "thread": 30 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 464495, + "thread": 15 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 592312, + "thread": 25 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 798830, + "thread": 17 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 902243, + "thread": 5 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1048480, + "thread": 3 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1269582, + "thread": 28 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1463556, + "thread": 15 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1525474, + "thread": 9 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1798393, + "thread": 24 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 1908686, + "thread": 17 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2104403, + "thread": 0 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2247523, + "thread": 18 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2316287, + "thread": 7 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2580150, + "thread": 31 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2644895, + "thread": 14 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2824961, + "thread": 20 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 2957707, + "thread": 31 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 3277244, + "thread": 29 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 3395291, + "thread": 22 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 3608827, + "thread": 7 + } + }, + { + "amount": "60.107992800", + "slot": { + "period": 3685325, + "thread": 19 + } + }, + { + "amount": "60.107992793", + "slot": { + "period": 3810069, + "thread": 27 + } + } + ], + "AU1gLMZQAgrfxC1qTLbmfUnuuPpvE7Xkp6jD2azRLwb7djQ9qe7w": [ + { + "amount": "156.775239726", + "slot": { + "period": 153046, + "thread": 9 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 323190, + "thread": 26 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 430081, + "thread": 15 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 648532, + "thread": 15 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 729642, + "thread": 28 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 863246, + "thread": 15 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1140341, + "thread": 25 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1217819, + "thread": 29 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1341148, + "thread": 0 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1564022, + "thread": 29 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1742993, + "thread": 22 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 1885985, + "thread": 28 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2049743, + "thread": 6 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2253445, + "thread": 15 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2425550, + "thread": 17 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2543687, + "thread": 12 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2644640, + "thread": 18 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 2801546, + "thread": 20 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 3028159, + "thread": 3 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 3185734, + "thread": 9 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 3356420, + "thread": 19 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 3468553, + "thread": 13 + } + }, + { + "amount": "156.775239726", + "slot": { + "period": 3728041, + "thread": 14 + } + }, + { + "amount": "156.775239734", + "slot": { + "period": 3817013, + "thread": 31 + } + } + ], + "AU1gLWSEcTjmAnUHRDxwgCsh43sZdbSZr53x15L2dso1mnHqqnNT": [ + { + "amount": "281.327500648", + "slot": { + "period": 156109, + "thread": 29 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 239017, + "thread": 2 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 367771, + "thread": 3 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 610778, + "thread": 15 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 735889, + "thread": 5 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 939416, + "thread": 31 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1072678, + "thread": 13 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1200705, + "thread": 26 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1380919, + "thread": 29 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1500965, + "thread": 16 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1657555, + "thread": 4 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1963162, + "thread": 24 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 1983480, + "thread": 12 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2207529, + "thread": 25 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2453705, + "thread": 5 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2581658, + "thread": 7 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2629988, + "thread": 19 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2824796, + "thread": 4 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 2974495, + "thread": 26 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 3138432, + "thread": 11 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 3328371, + "thread": 20 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 3494026, + "thread": 7 + } + }, + { + "amount": "281.327500648", + "slot": { + "period": 3759736, + "thread": 10 + } + }, + { + "amount": "281.327500646", + "slot": { + "period": 3876555, + "thread": 13 + } + } + ], + "AU1gLprnMp75fdwfqwE34sUxvHBRAC4AmT3n9zBaPwmDCLNmpejo": [ + { + "amount": "74.306181451", + "slot": { + "period": 100622, + "thread": 13 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 305427, + "thread": 15 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 402192, + "thread": 27 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 551366, + "thread": 0 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 718656, + "thread": 24 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 899261, + "thread": 7 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1109460, + "thread": 1 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1273489, + "thread": 12 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1361101, + "thread": 10 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1510420, + "thread": 28 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1804803, + "thread": 12 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 1924396, + "thread": 6 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2033576, + "thread": 5 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2190504, + "thread": 28 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2330190, + "thread": 19 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2544406, + "thread": 28 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2788223, + "thread": 6 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 2897887, + "thread": 12 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 3097827, + "thread": 7 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 3220107, + "thread": 11 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 3363974, + "thread": 3 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 3517792, + "thread": 23 + } + }, + { + "amount": "74.306181451", + "slot": { + "period": 3624860, + "thread": 18 + } + }, + { + "amount": "74.306181440", + "slot": { + "period": 3932238, + "thread": 21 + } + } + ], + "AU1gM2bgVQc95pH8vwrpqUqVfr7imXrSGmqJTUNkpDEJGs4ZuJbA": [ + { + "amount": "207.120757899", + "slot": { + "period": 43914, + "thread": 3 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 262945, + "thread": 2 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 340507, + "thread": 6 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 539120, + "thread": 31 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 713875, + "thread": 31 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 875266, + "thread": 23 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1146554, + "thread": 7 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1219040, + "thread": 26 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1342432, + "thread": 11 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1483103, + "thread": 3 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1739022, + "thread": 25 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 1837054, + "thread": 31 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2042564, + "thread": 31 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2150086, + "thread": 8 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2395158, + "thread": 23 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2477692, + "thread": 16 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2756812, + "thread": 26 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2891034, + "thread": 29 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 2977054, + "thread": 11 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 3264844, + "thread": 7 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 3327903, + "thread": 19 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 3544498, + "thread": 23 + } + }, + { + "amount": "207.120757899", + "slot": { + "period": 3714309, + "thread": 9 + } + }, + { + "amount": "207.120757889", + "slot": { + "period": 3797715, + "thread": 6 + } + } + ], + "AU1gN2neURE22gPRzaZd3aLjSBXoarJm5KHiYxXbVHEW1uqJ7Sx2": [ + { + "amount": "671.073210953", + "slot": { + "period": 84385, + "thread": 20 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 262026, + "thread": 28 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 433791, + "thread": 0 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 516419, + "thread": 28 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 815415, + "thread": 9 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 831867, + "thread": 26 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1130613, + "thread": 6 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1235635, + "thread": 24 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1332684, + "thread": 0 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1588780, + "thread": 29 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1674179, + "thread": 5 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 1933446, + "thread": 1 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2101702, + "thread": 1 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2222856, + "thread": 23 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2362342, + "thread": 1 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2536877, + "thread": 18 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2695004, + "thread": 10 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 2802383, + "thread": 17 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 3108018, + "thread": 29 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 3191730, + "thread": 13 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 3330714, + "thread": 6 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 3464668, + "thread": 7 + } + }, + { + "amount": "671.073210953", + "slot": { + "period": 3701938, + "thread": 13 + } + }, + { + "amount": "671.073210960", + "slot": { + "period": 3884896, + "thread": 30 + } + } + ], + "AU1gN3NgMFCkgUuMP4nnjQkgFDFxN9ETj8ZQ8YFhVPtYaD2zrasP": [ + { + "amount": "276.946120228", + "slot": { + "period": 136454, + "thread": 25 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 241024, + "thread": 26 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 466232, + "thread": 30 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 534428, + "thread": 22 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 731073, + "thread": 22 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 848809, + "thread": 29 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1033645, + "thread": 6 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1167127, + "thread": 3 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1346651, + "thread": 26 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1549778, + "thread": 10 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1769448, + "thread": 19 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 1975468, + "thread": 11 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2070393, + "thread": 1 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2176664, + "thread": 6 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2353213, + "thread": 2 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2566110, + "thread": 26 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2671942, + "thread": 7 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 2923041, + "thread": 14 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 3005403, + "thread": 30 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 3180750, + "thread": 5 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 3397863, + "thread": 21 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 3575240, + "thread": 2 + } + }, + { + "amount": "276.946120228", + "slot": { + "period": 3713133, + "thread": 28 + } + }, + { + "amount": "276.946120236", + "slot": { + "period": 3944202, + "thread": 24 + } + } + ], + "AU1gNWa1XgWdd1RaKboGKa1Zh287yMVYTXeFZRDpRdMASF591VWA": [ + { + "amount": "350.885011628", + "slot": { + "period": 15134, + "thread": 3 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 219541, + "thread": 12 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 348995, + "thread": 21 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 629843, + "thread": 27 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 798699, + "thread": 12 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 945757, + "thread": 5 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1038237, + "thread": 20 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1202771, + "thread": 25 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1325810, + "thread": 25 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1539968, + "thread": 13 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1648946, + "thread": 20 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1878142, + "thread": 13 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 1993859, + "thread": 8 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 2219105, + "thread": 16 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 2460394, + "thread": 3 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 2579300, + "thread": 3 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 2666235, + "thread": 23 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 2896563, + "thread": 9 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 3011470, + "thread": 3 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 3237221, + "thread": 12 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 3355819, + "thread": 6 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 3589980, + "thread": 30 + } + }, + { + "amount": "350.885011628", + "slot": { + "period": 3633398, + "thread": 2 + } + }, + { + "amount": "350.885011629", + "slot": { + "period": 3877859, + "thread": 26 + } + } + ], + "AU1gNapYLX8Bq8CkLZL9BwYBHXwvdYhWi7jHdCi4spmz3afFspME": [ + { + "amount": "493.351066943", + "slot": { + "period": 98344, + "thread": 7 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 305443, + "thread": 4 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 326010, + "thread": 10 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 518809, + "thread": 11 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 757344, + "thread": 23 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 886211, + "thread": 15 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1117609, + "thread": 29 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1315978, + "thread": 12 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1355386, + "thread": 3 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1566594, + "thread": 8 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1703257, + "thread": 6 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 1937875, + "thread": 5 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2136362, + "thread": 8 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2192480, + "thread": 25 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2418343, + "thread": 16 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2495596, + "thread": 12 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2671745, + "thread": 14 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2887126, + "thread": 0 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 2993765, + "thread": 1 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 3236012, + "thread": 26 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 3338995, + "thread": 17 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 3490134, + "thread": 20 + } + }, + { + "amount": "493.351066943", + "slot": { + "period": 3726560, + "thread": 10 + } + }, + { + "amount": "493.351066934", + "slot": { + "period": 3871889, + "thread": 17 + } + } + ], + "AU1gNv68yaFRexMycA7b8Eijo5XQhaRrou6nKLQV4JQ82aaYRybH": [ + { + "amount": "69.351558812", + "slot": { + "period": 157296, + "thread": 12 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 245128, + "thread": 20 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 363838, + "thread": 28 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 537155, + "thread": 25 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 665912, + "thread": 19 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 831359, + "thread": 3 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1102363, + "thread": 9 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1194845, + "thread": 31 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1317984, + "thread": 14 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1590519, + "thread": 0 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1742834, + "thread": 31 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 1893320, + "thread": 12 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2018454, + "thread": 28 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2162347, + "thread": 17 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2341129, + "thread": 22 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2476219, + "thread": 11 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2778225, + "thread": 12 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 2837676, + "thread": 23 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 3102165, + "thread": 13 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 3271287, + "thread": 30 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 3336354, + "thread": 19 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 3581752, + "thread": 12 + } + }, + { + "amount": "69.351558812", + "slot": { + "period": 3727675, + "thread": 28 + } + }, + { + "amount": "69.351558816", + "slot": { + "period": 3905527, + "thread": 16 + } + } + ], + "AU1gQ4CWkpQcfFtv5uEXfJ7tNNofr8ec63gb1DHSRUmeCkC36NV2": [ + { + "amount": "209.610178731", + "slot": { + "period": 29270, + "thread": 18 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 216383, + "thread": 26 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 442287, + "thread": 9 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 605766, + "thread": 25 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 812560, + "thread": 0 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 846526, + "thread": 9 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 997864, + "thread": 26 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 1232940, + "thread": 16 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 1435969, + "thread": 31 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 1517223, + "thread": 19 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 1735993, + "thread": 12 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 1930589, + "thread": 26 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2009774, + "thread": 8 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2203329, + "thread": 28 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2318685, + "thread": 12 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2608438, + "thread": 5 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2742065, + "thread": 19 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 2822922, + "thread": 4 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 3112799, + "thread": 31 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 3192321, + "thread": 30 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 3427414, + "thread": 29 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 3475207, + "thread": 4 + } + }, + { + "amount": "209.610178731", + "slot": { + "period": 3634257, + "thread": 6 + } + }, + { + "amount": "209.610178737", + "slot": { + "period": 3815622, + "thread": 3 + } + } + ], + "AU1gSDEJCdqpfvPkRKAGEa65TSLEJFRKKHkPPzJkaLUbCiwBpErR": [ + { + "amount": "109.627536430", + "slot": { + "period": 73555, + "thread": 24 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 310231, + "thread": 4 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 327018, + "thread": 12 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 604282, + "thread": 26 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 689678, + "thread": 28 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 924975, + "thread": 3 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1102541, + "thread": 11 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1231407, + "thread": 11 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1351109, + "thread": 22 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1521453, + "thread": 16 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1751368, + "thread": 31 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1860790, + "thread": 0 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 1999143, + "thread": 27 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2232744, + "thread": 14 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2332726, + "thread": 15 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2533666, + "thread": 28 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2657427, + "thread": 9 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2825019, + "thread": 22 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 2982003, + "thread": 29 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 3130298, + "thread": 21 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 3414602, + "thread": 18 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 3542255, + "thread": 23 + } + }, + { + "amount": "109.627536430", + "slot": { + "period": 3681006, + "thread": 27 + } + }, + { + "amount": "109.627536439", + "slot": { + "period": 3853959, + "thread": 23 + } + } + ], + "AU1gTaSzwpAwWB2vxKbs662qA3GXwka5jotLLLvEwedfsPnedbs5": [ + { + "amount": "253.034688932", + "slot": { + "period": 20138, + "thread": 21 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 219354, + "thread": 5 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 489650, + "thread": 7 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 583306, + "thread": 12 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 744352, + "thread": 6 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 934573, + "thread": 2 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1126977, + "thread": 30 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1159048, + "thread": 25 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1350888, + "thread": 4 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1496855, + "thread": 6 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1794587, + "thread": 10 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 1899431, + "thread": 12 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2067799, + "thread": 18 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2176090, + "thread": 18 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2443557, + "thread": 24 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2486359, + "thread": 31 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2629396, + "thread": 27 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 2831595, + "thread": 23 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 3031873, + "thread": 12 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 3209696, + "thread": 31 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 3289483, + "thread": 13 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 3616538, + "thread": 4 + } + }, + { + "amount": "253.034688932", + "slot": { + "period": 3693576, + "thread": 22 + } + }, + { + "amount": "253.034688944", + "slot": { + "period": 3895709, + "thread": 10 + } + } + ], + "AU1gTc6CWgwgf5tKwxHL9FLLvjvaPXN4iAmKiJRq69oNYg5eMQus": [ + { + "amount": "520.871842147", + "slot": { + "period": 165828, + "thread": 31 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 235435, + "thread": 16 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 434294, + "thread": 17 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 579852, + "thread": 30 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 774753, + "thread": 2 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 941616, + "thread": 0 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1022365, + "thread": 21 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1177727, + "thread": 0 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1469749, + "thread": 12 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1585675, + "thread": 23 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1802026, + "thread": 8 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 1831582, + "thread": 18 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2067974, + "thread": 28 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2156748, + "thread": 27 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2344109, + "thread": 20 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2563054, + "thread": 13 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2694589, + "thread": 6 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2924553, + "thread": 23 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 2981512, + "thread": 1 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 3221271, + "thread": 18 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 3429120, + "thread": 1 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 3468027, + "thread": 14 + } + }, + { + "amount": "520.871842147", + "slot": { + "period": 3654191, + "thread": 6 + } + }, + { + "amount": "520.871842140", + "slot": { + "period": 3931739, + "thread": 23 + } + } + ], + "AU1gUY6JgdLga9ALNtLYCLLy1T2v479u8bACqCbxpuaYYYfxKAg3": [ + { + "amount": "98.456142563", + "slot": { + "period": 74528, + "thread": 14 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 280774, + "thread": 20 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 406526, + "thread": 18 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 620279, + "thread": 7 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 749209, + "thread": 24 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 979119, + "thread": 17 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1040208, + "thread": 16 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1265427, + "thread": 28 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1454172, + "thread": 29 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1625157, + "thread": 31 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1784873, + "thread": 1 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 1829064, + "thread": 19 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2142967, + "thread": 10 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2220484, + "thread": 14 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2368547, + "thread": 5 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2560170, + "thread": 4 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2768260, + "thread": 22 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 2806431, + "thread": 9 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 3078102, + "thread": 28 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 3209102, + "thread": 18 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 3312119, + "thread": 15 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 3472220, + "thread": 0 + } + }, + { + "amount": "98.456142563", + "slot": { + "period": 3655035, + "thread": 10 + } + }, + { + "amount": "98.456142572", + "slot": { + "period": 3895387, + "thread": 18 + } + } + ], + "AU1gVXbfeyXcdVCmfAiaMgn71XiQLvhNkE72zC8Smc1q85WX2gi5": [ + { + "amount": "223.234126278", + "slot": { + "period": 134935, + "thread": 30 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 201635, + "thread": 0 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 390794, + "thread": 7 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 542460, + "thread": 8 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 675229, + "thread": 6 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 841835, + "thread": 15 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1051667, + "thread": 15 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1177383, + "thread": 7 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1402465, + "thread": 17 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1572231, + "thread": 21 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1735772, + "thread": 10 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 1853491, + "thread": 1 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2000029, + "thread": 9 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2169363, + "thread": 8 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2326965, + "thread": 30 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2560086, + "thread": 22 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2769057, + "thread": 22 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 2940293, + "thread": 24 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 3024639, + "thread": 17 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 3231695, + "thread": 25 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 3381810, + "thread": 22 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 3498635, + "thread": 11 + } + }, + { + "amount": "223.234126278", + "slot": { + "period": 3753262, + "thread": 13 + } + }, + { + "amount": "223.234126266", + "slot": { + "period": 3795484, + "thread": 14 + } + } + ], + "AU1gW2oqz9vqmm1gPwKzoDTSuqnAx6JbrENt7MGcWMT1GQoyQdWu": [ + { + "amount": "82.623156084", + "slot": { + "period": 81650, + "thread": 3 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 313744, + "thread": 3 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 421514, + "thread": 16 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 544686, + "thread": 10 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 751387, + "thread": 1 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 904839, + "thread": 20 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1003297, + "thread": 27 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1155414, + "thread": 25 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1326739, + "thread": 2 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1582885, + "thread": 13 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1655665, + "thread": 7 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 1871758, + "thread": 9 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2116698, + "thread": 20 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2294420, + "thread": 24 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2345971, + "thread": 19 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2607721, + "thread": 1 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2674086, + "thread": 30 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2940970, + "thread": 5 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 2955716, + "thread": 1 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 3264135, + "thread": 4 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 3431551, + "thread": 10 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 3565646, + "thread": 5 + } + }, + { + "amount": "82.623156084", + "slot": { + "period": 3772943, + "thread": 20 + } + }, + { + "amount": "82.623156076", + "slot": { + "period": 3883351, + "thread": 16 + } + } + ], + "AU1gWtMXz5P4GfeV8RzkWyrThkDx8mgE8iwFrDL2Qs8JiaGYpi83": [ + { + "amount": "228.801617227", + "slot": { + "period": 94549, + "thread": 10 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 306058, + "thread": 11 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 411329, + "thread": 6 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 578891, + "thread": 1 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 792169, + "thread": 6 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 854831, + "thread": 24 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1028002, + "thread": 3 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1171089, + "thread": 7 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1471893, + "thread": 5 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1487384, + "thread": 18 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1793911, + "thread": 10 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 1934990, + "thread": 8 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2029059, + "thread": 5 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2190299, + "thread": 6 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2443372, + "thread": 22 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2497800, + "thread": 14 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2756947, + "thread": 30 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 2857491, + "thread": 27 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 3010602, + "thread": 22 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 3133125, + "thread": 16 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 3290524, + "thread": 10 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 3590931, + "thread": 30 + } + }, + { + "amount": "228.801617227", + "slot": { + "period": 3628642, + "thread": 26 + } + }, + { + "amount": "228.801617231", + "slot": { + "period": 3816553, + "thread": 4 + } + } + ], + "AU1gXSneKeV5tmjADZ2FtEHqNxcp7zjS42GfksUx6Q7YBGvBsrMk": [ + { + "amount": "186.053245976", + "slot": { + "period": 36719, + "thread": 22 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 240558, + "thread": 8 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 365179, + "thread": 4 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 630515, + "thread": 19 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 682589, + "thread": 29 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 945755, + "thread": 14 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 991339, + "thread": 23 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 1210222, + "thread": 4 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 1381125, + "thread": 13 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 1637053, + "thread": 31 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 1719762, + "thread": 31 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 1863711, + "thread": 9 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2058897, + "thread": 20 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2266704, + "thread": 1 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2440597, + "thread": 28 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2533618, + "thread": 7 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2746900, + "thread": 9 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 2948564, + "thread": 31 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 3041127, + "thread": 25 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 3215024, + "thread": 0 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 3339974, + "thread": 24 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 3584048, + "thread": 17 + } + }, + { + "amount": "186.053245976", + "slot": { + "period": 3651499, + "thread": 24 + } + }, + { + "amount": "186.053245966", + "slot": { + "period": 3845509, + "thread": 3 + } + } + ], + "AU1gXd1KPGx5i8adUdZxtbiCwEntgvcVZ4HSB8rtkVMXgFNEc7uB": [ + { + "amount": "469.604083686", + "slot": { + "period": 112283, + "thread": 10 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 224457, + "thread": 21 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 457730, + "thread": 2 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 537278, + "thread": 23 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 785057, + "thread": 14 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 931827, + "thread": 22 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1017983, + "thread": 5 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1273541, + "thread": 26 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1432977, + "thread": 0 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1573952, + "thread": 2 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1681594, + "thread": 14 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 1876386, + "thread": 30 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2100162, + "thread": 8 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2194143, + "thread": 5 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2363308, + "thread": 20 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2569134, + "thread": 28 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2773555, + "thread": 9 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 2794774, + "thread": 16 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 3109656, + "thread": 21 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 3169025, + "thread": 8 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 3418919, + "thread": 26 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 3492489, + "thread": 16 + } + }, + { + "amount": "469.604083686", + "slot": { + "period": 3767178, + "thread": 26 + } + }, + { + "amount": "469.604083679", + "slot": { + "period": 3873439, + "thread": 29 + } + } + ], + "AU1gXfGN2Gb1KvM16B268HtbXrZiT9kpCGgSxH2m4w3hQw5CwZu7": [ + { + "amount": "195.398028436", + "slot": { + "period": 100499, + "thread": 14 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 232473, + "thread": 31 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 407585, + "thread": 27 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 494430, + "thread": 28 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 712766, + "thread": 3 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 852042, + "thread": 21 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1056651, + "thread": 2 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1175074, + "thread": 5 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1447708, + "thread": 25 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1547222, + "thread": 26 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1665882, + "thread": 11 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 1974241, + "thread": 3 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2141696, + "thread": 6 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2204279, + "thread": 27 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2311285, + "thread": 16 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2477863, + "thread": 9 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2725574, + "thread": 29 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 2926901, + "thread": 30 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 3041742, + "thread": 14 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 3213855, + "thread": 29 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 3327271, + "thread": 1 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 3584797, + "thread": 27 + } + }, + { + "amount": "195.398028436", + "slot": { + "period": 3724472, + "thread": 20 + } + }, + { + "amount": "195.398028425", + "slot": { + "period": 3829669, + "thread": 18 + } + } + ], + "AU1gYfXLt98H7ZV2A82RdxAXNGHxXmYbz1314npi2GUQ3EEWCHtb": [ + { + "amount": "417.980233211", + "slot": { + "period": 65725, + "thread": 7 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 172591, + "thread": 19 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 482520, + "thread": 27 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 519158, + "thread": 2 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 814479, + "thread": 9 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 924376, + "thread": 2 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1114014, + "thread": 1 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1186050, + "thread": 27 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1409247, + "thread": 22 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1501454, + "thread": 0 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1660872, + "thread": 23 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 1954204, + "thread": 13 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2090076, + "thread": 11 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2168804, + "thread": 0 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2295786, + "thread": 26 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2514369, + "thread": 19 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2689526, + "thread": 28 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 2825786, + "thread": 25 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 3035994, + "thread": 20 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 3190484, + "thread": 18 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 3448189, + "thread": 15 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 3503645, + "thread": 15 + } + }, + { + "amount": "417.980233211", + "slot": { + "period": 3621500, + "thread": 12 + } + }, + { + "amount": "417.980233220", + "slot": { + "period": 3856349, + "thread": 23 + } + } + ], + "AU1gYviUvbpXFK5k9iAyZP4x8TbM91DZ9V2mKv5CHd8Tc2bYv85R": [ + { + "amount": "107.825480966", + "slot": { + "period": 12804, + "thread": 23 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 193686, + "thread": 21 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 423805, + "thread": 29 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 511726, + "thread": 16 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 780362, + "thread": 25 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 974696, + "thread": 2 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1002459, + "thread": 9 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1293273, + "thread": 0 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1472718, + "thread": 15 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1525142, + "thread": 30 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1808735, + "thread": 23 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1934636, + "thread": 29 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 1990745, + "thread": 9 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 2212178, + "thread": 29 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 2305339, + "thread": 30 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 2474533, + "thread": 31 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 2729724, + "thread": 16 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 2837717, + "thread": 22 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 3081202, + "thread": 25 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 3243003, + "thread": 27 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 3441369, + "thread": 20 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 3467212, + "thread": 7 + } + }, + { + "amount": "107.825480966", + "slot": { + "period": 3744649, + "thread": 23 + } + }, + { + "amount": "107.825480971", + "slot": { + "period": 3803750, + "thread": 4 + } + } + ], + "AU1gZ7fiMm4QEgnWYs3f2xkRokWEWSn35sA4Kn3H9xJnE1e8KYsZ": [ + { + "amount": "428.917134327", + "slot": { + "period": 100811, + "thread": 31 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 278190, + "thread": 30 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 480341, + "thread": 27 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 543942, + "thread": 18 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 780161, + "thread": 20 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 949134, + "thread": 6 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1032854, + "thread": 11 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1180815, + "thread": 3 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1336212, + "thread": 7 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1552712, + "thread": 31 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1790905, + "thread": 4 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1967570, + "thread": 5 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 1980488, + "thread": 13 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2245981, + "thread": 19 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2413630, + "thread": 28 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2578159, + "thread": 27 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2625029, + "thread": 31 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2817667, + "thread": 18 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 2997614, + "thread": 26 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 3269210, + "thread": 3 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 3367151, + "thread": 9 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 3570703, + "thread": 26 + } + }, + { + "amount": "428.917134327", + "slot": { + "period": 3762170, + "thread": 15 + } + }, + { + "amount": "428.917134324", + "slot": { + "period": 3816804, + "thread": 22 + } + } + ], + "AU1gZB47hicQXCt3DTwm1aWS3PwkWqe5ovA59ovYuGi45eKM7N3p": [ + { + "amount": "69.556707744", + "slot": { + "period": 155326, + "thread": 8 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 238761, + "thread": 28 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 341820, + "thread": 3 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 582070, + "thread": 1 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 790873, + "thread": 7 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 976533, + "thread": 1 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1094796, + "thread": 18 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1241195, + "thread": 2 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1409190, + "thread": 29 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1639331, + "thread": 2 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1691169, + "thread": 6 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 1877666, + "thread": 30 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2114528, + "thread": 25 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2197007, + "thread": 2 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2324621, + "thread": 20 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2489492, + "thread": 10 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2732748, + "thread": 30 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2879459, + "thread": 27 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 2974904, + "thread": 31 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 3186926, + "thread": 13 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 3327982, + "thread": 23 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 3542743, + "thread": 15 + } + }, + { + "amount": "69.556707744", + "slot": { + "period": 3772695, + "thread": 15 + } + }, + { + "amount": "69.556707737", + "slot": { + "period": 3887228, + "thread": 24 + } + } + ], + "AU1gZJkULaDGMkjyNHYeQC5hHrdvXzcNg259AfwuLpxMpRVP4XY7": [ + { + "amount": "131.086081132", + "slot": { + "period": 125772, + "thread": 4 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 289102, + "thread": 13 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 456400, + "thread": 7 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 635570, + "thread": 28 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 673724, + "thread": 5 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 910285, + "thread": 20 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1093948, + "thread": 21 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1214802, + "thread": 1 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1441118, + "thread": 28 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1494292, + "thread": 26 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1785856, + "thread": 23 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 1943694, + "thread": 26 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2108249, + "thread": 26 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2162629, + "thread": 30 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2428601, + "thread": 11 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2621884, + "thread": 8 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2714399, + "thread": 6 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 2852279, + "thread": 20 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 3046170, + "thread": 7 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 3166875, + "thread": 1 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 3445444, + "thread": 14 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 3568789, + "thread": 15 + } + }, + { + "amount": "131.086081132", + "slot": { + "period": 3685326, + "thread": 17 + } + }, + { + "amount": "131.086081139", + "slot": { + "period": 3912155, + "thread": 16 + } + } + ], + "AU1gZMU49N6jtoQpetRFRUtkAukuWeRvJZEzJwZf2K2SuKxX8WiK": [ + { + "amount": "271.654299071", + "slot": { + "period": 60106, + "thread": 12 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 169580, + "thread": 5 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 324269, + "thread": 10 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 604449, + "thread": 29 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 750779, + "thread": 16 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 834597, + "thread": 9 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1004482, + "thread": 15 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1167916, + "thread": 28 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1380520, + "thread": 15 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1631403, + "thread": 17 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1762641, + "thread": 4 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1899494, + "thread": 28 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 1993170, + "thread": 19 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2154971, + "thread": 2 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2434873, + "thread": 21 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2581931, + "thread": 12 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2710278, + "thread": 6 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2938998, + "thread": 17 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 2998618, + "thread": 27 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 3201299, + "thread": 14 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 3387580, + "thread": 1 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 3552457, + "thread": 7 + } + }, + { + "amount": "271.654299071", + "slot": { + "period": 3763716, + "thread": 20 + } + }, + { + "amount": "271.654299074", + "slot": { + "period": 3822658, + "thread": 31 + } + } + ], + "AU1gaVTquDfjkYgvn8PzmLxfRTd8vmcCSSwvFSe58PWpTrTUDQxN": [ + { + "amount": "429.102678417", + "slot": { + "period": 45378, + "thread": 20 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 239090, + "thread": 6 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 402856, + "thread": 14 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 619577, + "thread": 17 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 796200, + "thread": 31 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 840645, + "thread": 25 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1095030, + "thread": 3 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1188133, + "thread": 3 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1404601, + "thread": 12 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1543994, + "thread": 28 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1788731, + "thread": 18 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1836794, + "thread": 28 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 1979220, + "thread": 26 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 2239299, + "thread": 1 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 2444757, + "thread": 20 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 2561951, + "thread": 29 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 2758736, + "thread": 16 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 2838555, + "thread": 23 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 3010408, + "thread": 22 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 3123113, + "thread": 8 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 3363449, + "thread": 21 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 3584355, + "thread": 4 + } + }, + { + "amount": "429.102678417", + "slot": { + "period": 3623997, + "thread": 8 + } + }, + { + "amount": "429.102678409", + "slot": { + "period": 3892501, + "thread": 12 + } + } + ], + "AU1gaxH1B5mrMD9B5iaipDeKxTTazXHP9fbsAJQeBv3L3D42NegN": [ + { + "amount": "448.697101674", + "slot": { + "period": 45566, + "thread": 29 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 249179, + "thread": 21 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 434575, + "thread": 11 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 553390, + "thread": 14 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 671036, + "thread": 8 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 923705, + "thread": 10 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1117726, + "thread": 18 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1272128, + "thread": 6 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1349519, + "thread": 16 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1578060, + "thread": 8 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1731463, + "thread": 14 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1932772, + "thread": 8 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 1988078, + "thread": 22 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 2245862, + "thread": 15 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 2349320, + "thread": 12 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 2472633, + "thread": 20 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 2718044, + "thread": 2 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 2814521, + "thread": 24 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 3067066, + "thread": 5 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 3143009, + "thread": 1 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 3403695, + "thread": 0 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 3586753, + "thread": 15 + } + }, + { + "amount": "448.697101674", + "slot": { + "period": 3645359, + "thread": 28 + } + }, + { + "amount": "448.697101677", + "slot": { + "period": 3780022, + "thread": 31 + } + } + ], + "AU1gbmKdKbk7j7jpQ6jRfQBpYUqwgxUpLxWdHVoJWWt9o1nTqp8u": [ + { + "amount": "58.501766072", + "slot": { + "period": 120036, + "thread": 30 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 231503, + "thread": 24 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 388029, + "thread": 18 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 576337, + "thread": 28 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 696538, + "thread": 11 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 979269, + "thread": 23 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1011942, + "thread": 14 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1157808, + "thread": 22 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1326193, + "thread": 5 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1557714, + "thread": 6 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1758663, + "thread": 24 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 1848598, + "thread": 22 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2032887, + "thread": 10 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2168205, + "thread": 0 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2397730, + "thread": 5 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2579217, + "thread": 17 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2661755, + "thread": 29 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 2846061, + "thread": 14 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 3071140, + "thread": 6 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 3162438, + "thread": 27 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 3314247, + "thread": 5 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 3592146, + "thread": 22 + } + }, + { + "amount": "58.501766072", + "slot": { + "period": 3656992, + "thread": 24 + } + }, + { + "amount": "58.501766078", + "slot": { + "period": 3815288, + "thread": 8 + } + } + ], + "AU1gc33qDNAuJTHy3mUxAun1AZ4X78tKseSTJJLk3E3pNPggLMis": [ + { + "amount": "146.279521752", + "slot": { + "period": 77322, + "thread": 5 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 196742, + "thread": 1 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 471315, + "thread": 13 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 492174, + "thread": 8 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 774804, + "thread": 4 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 914582, + "thread": 10 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1019036, + "thread": 14 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1225693, + "thread": 20 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1414451, + "thread": 5 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1482232, + "thread": 7 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1755457, + "thread": 21 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 1973782, + "thread": 4 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2133788, + "thread": 5 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2246453, + "thread": 23 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2327033, + "thread": 22 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2613224, + "thread": 25 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2788756, + "thread": 18 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 2882216, + "thread": 17 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 3040664, + "thread": 5 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 3180898, + "thread": 16 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 3312747, + "thread": 18 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 3478913, + "thread": 11 + } + }, + { + "amount": "146.279521752", + "slot": { + "period": 3740059, + "thread": 5 + } + }, + { + "amount": "146.279521747", + "slot": { + "period": 3909228, + "thread": 3 + } + } + ], + "AU1gcv7VYek5QDGUWbqxjzd7KTDhMbtKx9HrTo8NvUWxSCwHDNPZ": [ + { + "amount": "58.732627339", + "slot": { + "period": 155154, + "thread": 3 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 197258, + "thread": 7 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 417324, + "thread": 26 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 495158, + "thread": 26 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 764634, + "thread": 5 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 860036, + "thread": 15 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1118106, + "thread": 14 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1252721, + "thread": 3 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1386704, + "thread": 4 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1549710, + "thread": 16 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1670735, + "thread": 26 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 1844238, + "thread": 30 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2002698, + "thread": 24 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2157020, + "thread": 12 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2384136, + "thread": 25 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2509211, + "thread": 21 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2749430, + "thread": 5 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2803015, + "thread": 23 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 2965799, + "thread": 15 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 3168012, + "thread": 26 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 3397725, + "thread": 4 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 3454204, + "thread": 6 + } + }, + { + "amount": "58.732627339", + "slot": { + "period": 3654156, + "thread": 0 + } + }, + { + "amount": "58.732627346", + "slot": { + "period": 3896584, + "thread": 25 + } + } + ], + "AU1gdd2CTSee1uAzdCxaxScTowi8wkYheb2h3guGxFMUthekrAfg": [ + { + "amount": "497.584947581", + "slot": { + "period": 64479, + "thread": 1 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 267725, + "thread": 9 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 386467, + "thread": 30 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 511120, + "thread": 10 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 677239, + "thread": 24 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 904841, + "thread": 15 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1055636, + "thread": 28 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1249386, + "thread": 9 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1461536, + "thread": 0 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1525139, + "thread": 21 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1755601, + "thread": 19 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 1819416, + "thread": 9 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2130154, + "thread": 16 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2209378, + "thread": 27 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2428089, + "thread": 7 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2491565, + "thread": 19 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2641221, + "thread": 10 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 2867482, + "thread": 14 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 3040649, + "thread": 26 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 3252137, + "thread": 29 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 3446380, + "thread": 21 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 3561972, + "thread": 15 + } + }, + { + "amount": "497.584947581", + "slot": { + "period": 3738037, + "thread": 12 + } + }, + { + "amount": "497.584947585", + "slot": { + "period": 3904136, + "thread": 0 + } + } + ], + "AU1gdmw1WbnyXPcc44U4yidP7tu6P4EHz4bY783oU1W22WjSXiH3": [ + { + "amount": "58.978720199", + "slot": { + "period": 131716, + "thread": 19 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 173715, + "thread": 31 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 460108, + "thread": 23 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 523336, + "thread": 0 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 757116, + "thread": 31 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 866115, + "thread": 24 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1048804, + "thread": 17 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1171544, + "thread": 30 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1407486, + "thread": 27 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1538187, + "thread": 10 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1700717, + "thread": 24 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 1951089, + "thread": 21 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2000805, + "thread": 11 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2221095, + "thread": 11 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2328470, + "thread": 20 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2615266, + "thread": 1 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2790264, + "thread": 16 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 2813228, + "thread": 9 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 3119146, + "thread": 12 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 3177967, + "thread": 8 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 3306792, + "thread": 16 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 3554752, + "thread": 0 + } + }, + { + "amount": "58.978720199", + "slot": { + "period": 3635944, + "thread": 1 + } + }, + { + "amount": "58.978720192", + "slot": { + "period": 3862475, + "thread": 27 + } + } + ], + "AU1gdwNWgjcM5ydVzWFW4djAfnL2whCbpLem8pizgdCccMtQFDfs": [ + { + "amount": "77.148224616", + "slot": { + "period": 64333, + "thread": 27 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 262434, + "thread": 7 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 356538, + "thread": 3 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 650034, + "thread": 27 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 745448, + "thread": 29 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 845590, + "thread": 10 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1077667, + "thread": 21 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1189610, + "thread": 31 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1378752, + "thread": 14 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1556824, + "thread": 21 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1706468, + "thread": 4 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 1935986, + "thread": 6 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2042172, + "thread": 31 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2193848, + "thread": 25 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2319168, + "thread": 10 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2494625, + "thread": 19 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2742444, + "thread": 15 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2948875, + "thread": 6 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 2967244, + "thread": 3 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 3189513, + "thread": 25 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 3415269, + "thread": 7 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 3513811, + "thread": 19 + } + }, + { + "amount": "77.148224616", + "slot": { + "period": 3696628, + "thread": 14 + } + }, + { + "amount": "77.148224623", + "slot": { + "period": 3845607, + "thread": 25 + } + } + ], + "AU1geeiLKE8mrUUXwkqsJuNB1PbTQnBqkijoQ51b37cnPx2UkCZX": [ + { + "amount": "301.786596439", + "slot": { + "period": 72247, + "thread": 16 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 200924, + "thread": 25 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 342939, + "thread": 17 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 589975, + "thread": 7 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 698676, + "thread": 14 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 842454, + "thread": 1 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1081111, + "thread": 20 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1300184, + "thread": 3 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1426238, + "thread": 21 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1553163, + "thread": 0 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1712285, + "thread": 27 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1813601, + "thread": 3 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 1983282, + "thread": 14 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 2241451, + "thread": 12 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 2429014, + "thread": 27 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 2464027, + "thread": 16 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 2754861, + "thread": 5 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 2923616, + "thread": 10 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 3113556, + "thread": 11 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 3160940, + "thread": 25 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 3445034, + "thread": 4 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 3564010, + "thread": 24 + } + }, + { + "amount": "301.786596439", + "slot": { + "period": 3677847, + "thread": 30 + } + }, + { + "amount": "301.786596444", + "slot": { + "period": 3878239, + "thread": 31 + } + } + ], + "AU1geyJhEQSNm7eUrP7gqHN29yTqg72ViCduHRXGTLg6hS1puaHH": [ + { + "amount": "563.345503699", + "slot": { + "period": 108034, + "thread": 29 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 284941, + "thread": 1 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 433319, + "thread": 19 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 501337, + "thread": 8 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 778858, + "thread": 7 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 905486, + "thread": 17 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1102910, + "thread": 16 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1289606, + "thread": 3 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1465241, + "thread": 14 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1547557, + "thread": 22 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1664734, + "thread": 4 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 1825019, + "thread": 15 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2091673, + "thread": 6 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2275511, + "thread": 26 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2396373, + "thread": 23 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2525388, + "thread": 15 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2752334, + "thread": 14 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 2805495, + "thread": 0 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 3008789, + "thread": 28 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 3253642, + "thread": 23 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 3339881, + "thread": 15 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 3585299, + "thread": 28 + } + }, + { + "amount": "563.345503699", + "slot": { + "period": 3704507, + "thread": 4 + } + }, + { + "amount": "563.345503706", + "slot": { + "period": 3781746, + "thread": 18 + } + } + ], + "AU1gfG1UD6M9dXYUQbd7jjR2MBdUniqGkQFTqXqAnppRqQFkJbhq": [ + { + "amount": "73.383458374", + "slot": { + "period": 109625, + "thread": 14 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 320565, + "thread": 26 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 445272, + "thread": 20 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 513902, + "thread": 14 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 664295, + "thread": 17 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 953193, + "thread": 29 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1115773, + "thread": 3 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1223784, + "thread": 30 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1400001, + "thread": 23 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1606194, + "thread": 29 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1782329, + "thread": 25 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 1857916, + "thread": 15 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2015462, + "thread": 21 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2277648, + "thread": 22 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2312755, + "thread": 17 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2611089, + "thread": 8 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2659675, + "thread": 0 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 2947176, + "thread": 6 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 3025255, + "thread": 3 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 3195481, + "thread": 28 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 3416505, + "thread": 2 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 3547125, + "thread": 29 + } + }, + { + "amount": "73.383458374", + "slot": { + "period": 3643201, + "thread": 10 + } + }, + { + "amount": "73.383458362", + "slot": { + "period": 3804139, + "thread": 17 + } + } + ], + "AU1ggmuzbTHpKQZVDnbzwcgYVWpYx7RyTAaCPbjc5demzdS8y8eL": [ + { + "amount": "76.078393285", + "slot": { + "period": 138443, + "thread": 5 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 228584, + "thread": 24 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 483828, + "thread": 21 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 633417, + "thread": 20 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 722660, + "thread": 18 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 949817, + "thread": 21 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1012310, + "thread": 10 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1294029, + "thread": 7 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1397630, + "thread": 20 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1624849, + "thread": 11 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1710410, + "thread": 16 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1813913, + "thread": 20 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 1992054, + "thread": 8 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 2172294, + "thread": 29 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 2449383, + "thread": 20 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 2480452, + "thread": 16 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 2730644, + "thread": 9 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 2794121, + "thread": 26 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 3102909, + "thread": 18 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 3251170, + "thread": 17 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 3366470, + "thread": 24 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 3459335, + "thread": 31 + } + }, + { + "amount": "76.078393285", + "slot": { + "period": 3772069, + "thread": 25 + } + }, + { + "amount": "76.078393287", + "slot": { + "period": 3861065, + "thread": 7 + } + } + ], + "AU1ggoipkX42VHzaHBa7HRin5GjRT8YHADLSGejtiP9rxGmpEKKP": [ + { + "amount": "309.818511413", + "slot": { + "period": 113873, + "thread": 24 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 280730, + "thread": 8 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 354329, + "thread": 13 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 511091, + "thread": 23 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 730226, + "thread": 7 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 895443, + "thread": 0 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1057834, + "thread": 29 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1315781, + "thread": 19 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1433065, + "thread": 8 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1558140, + "thread": 13 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1729258, + "thread": 2 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 1836947, + "thread": 27 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2000365, + "thread": 2 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2258488, + "thread": 21 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2425491, + "thread": 17 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2587338, + "thread": 19 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2628748, + "thread": 4 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 2936602, + "thread": 4 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 3087175, + "thread": 28 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 3179714, + "thread": 20 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 3346647, + "thread": 23 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 3561278, + "thread": 7 + } + }, + { + "amount": "309.818511413", + "slot": { + "period": 3750094, + "thread": 18 + } + }, + { + "amount": "309.818511414", + "slot": { + "period": 3879359, + "thread": 6 + } + } + ], + "AU1ggvrxNyByLeFsmLZMKcjvQiR8cUV16C64aNzZPTfuT8Td6d1m": [ + { + "amount": "154.671305777", + "slot": { + "period": 104331, + "thread": 6 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 286344, + "thread": 20 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 402124, + "thread": 23 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 571564, + "thread": 21 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 687358, + "thread": 9 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 922399, + "thread": 19 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1021927, + "thread": 1 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1185471, + "thread": 17 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1408159, + "thread": 25 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1490237, + "thread": 12 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1681961, + "thread": 18 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 1902020, + "thread": 28 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2089225, + "thread": 14 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2177943, + "thread": 4 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2437839, + "thread": 4 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2530125, + "thread": 25 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2739717, + "thread": 8 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 2820794, + "thread": 25 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 3107337, + "thread": 0 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 3274298, + "thread": 31 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 3358869, + "thread": 16 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 3528082, + "thread": 18 + } + }, + { + "amount": "154.671305777", + "slot": { + "period": 3748534, + "thread": 13 + } + }, + { + "amount": "154.671305779", + "slot": { + "period": 3816077, + "thread": 2 + } + } + ], + "AU1ghLPPZ2h9EP7wzzTfFdrAu7hqBPhNLP8cT9wSUuvVbizBqWfd": [ + { + "amount": "67.956221471", + "slot": { + "period": 42563, + "thread": 12 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 211983, + "thread": 5 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 371158, + "thread": 3 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 631290, + "thread": 31 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 684104, + "thread": 27 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 897738, + "thread": 31 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 999758, + "thread": 26 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1299197, + "thread": 18 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1381374, + "thread": 22 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1622940, + "thread": 27 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1737646, + "thread": 31 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1876463, + "thread": 20 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 1992153, + "thread": 17 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2153633, + "thread": 1 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2461075, + "thread": 28 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2570242, + "thread": 13 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2737245, + "thread": 4 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2812716, + "thread": 22 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 2974687, + "thread": 6 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 3242758, + "thread": 12 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 3431204, + "thread": 16 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 3581480, + "thread": 7 + } + }, + { + "amount": "67.956221471", + "slot": { + "period": 3687169, + "thread": 9 + } + }, + { + "amount": "67.956221466", + "slot": { + "period": 3889131, + "thread": 23 + } + } + ], + "AU1ghjPhSKxVNy86rnup3TrdJjaiGrbW7e7xsHWHYr8uRSFQc4od": [ + { + "amount": "132.860268649", + "slot": { + "period": 16003, + "thread": 9 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 311467, + "thread": 1 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 432979, + "thread": 6 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 643589, + "thread": 21 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 750334, + "thread": 27 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 898704, + "thread": 30 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1026551, + "thread": 11 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1180586, + "thread": 28 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1383192, + "thread": 19 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1531661, + "thread": 16 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1727300, + "thread": 20 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 1886202, + "thread": 16 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2032863, + "thread": 25 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2195534, + "thread": 28 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2367953, + "thread": 28 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2498186, + "thread": 7 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2720757, + "thread": 17 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 2922481, + "thread": 11 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 3013317, + "thread": 11 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 3235195, + "thread": 14 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 3368434, + "thread": 30 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 3487692, + "thread": 15 + } + }, + { + "amount": "132.860268649", + "slot": { + "period": 3763893, + "thread": 19 + } + }, + { + "amount": "132.860268654", + "slot": { + "period": 3820198, + "thread": 25 + } + } + ], + "AU1gi9RnUxr4bCMcBpXcUtvTAUNciep6dZPpTbru7MRpNwXd4yei": [ + { + "amount": "183.921602005", + "slot": { + "period": 53586, + "thread": 29 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 268376, + "thread": 5 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 447181, + "thread": 12 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 625590, + "thread": 28 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 682379, + "thread": 24 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 886692, + "thread": 13 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1138426, + "thread": 8 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1237017, + "thread": 25 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1365649, + "thread": 5 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1506943, + "thread": 8 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1657923, + "thread": 15 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 1867774, + "thread": 28 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2099525, + "thread": 30 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2240284, + "thread": 21 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2302354, + "thread": 3 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2564365, + "thread": 14 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2718394, + "thread": 4 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 2885848, + "thread": 26 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 3099692, + "thread": 27 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 3179952, + "thread": 8 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 3308831, + "thread": 27 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 3511635, + "thread": 23 + } + }, + { + "amount": "183.921602005", + "slot": { + "period": 3744308, + "thread": 27 + } + }, + { + "amount": "183.921602003", + "slot": { + "period": 3943089, + "thread": 23 + } + } + ], + "AU1gimxo7NLJsUAxLHU6sXhjTRgLEfcTHhBN9ixkfLgE84fLVYua": [ + { + "amount": "160.767406918", + "slot": { + "period": 59755, + "thread": 9 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 216714, + "thread": 3 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 458701, + "thread": 10 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 622365, + "thread": 7 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 677628, + "thread": 4 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 939872, + "thread": 17 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1142877, + "thread": 14 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1155954, + "thread": 9 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1352640, + "thread": 18 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1589771, + "thread": 18 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1800004, + "thread": 16 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 1927702, + "thread": 10 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2108218, + "thread": 30 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2187714, + "thread": 3 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2323014, + "thread": 17 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2565482, + "thread": 3 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2780194, + "thread": 20 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 2912297, + "thread": 9 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 3051775, + "thread": 6 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 3121945, + "thread": 24 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 3365687, + "thread": 8 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 3517704, + "thread": 24 + } + }, + { + "amount": "160.767406918", + "slot": { + "period": 3640535, + "thread": 21 + } + }, + { + "amount": "160.767406923", + "slot": { + "period": 3859363, + "thread": 19 + } + } + ], + "AU1gjvW2FNEkjS3einAb9dqyh9ZhMiyVv4QwEA5BTdToDYSiCzyu": [ + { + "amount": "65.370916068", + "slot": { + "period": 166224, + "thread": 17 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 278892, + "thread": 29 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 354062, + "thread": 17 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 569523, + "thread": 12 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 741582, + "thread": 2 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 871765, + "thread": 22 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1060205, + "thread": 7 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1210567, + "thread": 25 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1472831, + "thread": 21 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1549665, + "thread": 16 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1797719, + "thread": 13 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 1835437, + "thread": 12 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2057322, + "thread": 3 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2245851, + "thread": 0 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2337459, + "thread": 16 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2533248, + "thread": 16 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2727042, + "thread": 23 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 2886431, + "thread": 2 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 3088813, + "thread": 25 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 3199607, + "thread": 18 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 3430025, + "thread": 10 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 3540093, + "thread": 29 + } + }, + { + "amount": "65.370916068", + "slot": { + "period": 3666045, + "thread": 8 + } + }, + { + "amount": "65.370916057", + "slot": { + "period": 3894187, + "thread": 27 + } + } + ], + "AU1gkwqfjcPH7JDnsDxsiDzw36kv5GC6eH5XAmXUe7V7XRA6nmwE": [ + { + "amount": "81.745212829", + "slot": { + "period": 66184, + "thread": 26 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 188067, + "thread": 0 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 382843, + "thread": 30 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 612735, + "thread": 28 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 653673, + "thread": 17 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 973817, + "thread": 27 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 996924, + "thread": 14 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1273196, + "thread": 25 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1365484, + "thread": 21 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1530156, + "thread": 0 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1806373, + "thread": 3 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1896378, + "thread": 26 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 1995574, + "thread": 11 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2188185, + "thread": 23 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2380082, + "thread": 29 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2502313, + "thread": 21 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2786609, + "thread": 5 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2903816, + "thread": 31 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 2968278, + "thread": 13 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 3191392, + "thread": 5 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 3364530, + "thread": 11 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 3547583, + "thread": 2 + } + }, + { + "amount": "81.745212829", + "slot": { + "period": 3737642, + "thread": 17 + } + }, + { + "amount": "81.745212837", + "slot": { + "period": 3883345, + "thread": 31 + } + } + ], + "AU1gm35KY4FACLoiVmSSBGmmih5GaW3qhnFcJJzinADedBfLdjs3": [ + { + "amount": "99.435765495", + "slot": { + "period": 21076, + "thread": 31 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 267813, + "thread": 7 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 425346, + "thread": 9 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 553094, + "thread": 2 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 793537, + "thread": 29 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 981234, + "thread": 27 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1054562, + "thread": 26 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1208875, + "thread": 4 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1461828, + "thread": 10 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1637091, + "thread": 18 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1760396, + "thread": 14 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1898446, + "thread": 10 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 1978503, + "thread": 3 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 2232497, + "thread": 15 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 2361129, + "thread": 31 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 2522416, + "thread": 14 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 2752360, + "thread": 5 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 2941731, + "thread": 28 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 3022634, + "thread": 20 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 3244019, + "thread": 28 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 3353232, + "thread": 30 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 3585569, + "thread": 16 + } + }, + { + "amount": "99.435765495", + "slot": { + "period": 3670166, + "thread": 30 + } + }, + { + "amount": "99.435765487", + "slot": { + "period": 3791667, + "thread": 0 + } + } + ], + "AU1go2bL2mA4ediAWygz32NXKHQnJLDbMAfHXVwgFYrioFHgMfhi": [ + { + "amount": "182.743940271", + "slot": { + "period": 51377, + "thread": 3 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 315974, + "thread": 21 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 490590, + "thread": 7 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 618138, + "thread": 30 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 728750, + "thread": 3 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 950540, + "thread": 13 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1058713, + "thread": 2 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1218351, + "thread": 6 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1401562, + "thread": 16 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1481614, + "thread": 19 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1701009, + "thread": 10 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1875441, + "thread": 26 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 1977168, + "thread": 27 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 2160737, + "thread": 12 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 2371996, + "thread": 25 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 2485692, + "thread": 13 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 2637776, + "thread": 17 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 2824254, + "thread": 4 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 3081197, + "thread": 14 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 3215235, + "thread": 3 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 3294969, + "thread": 31 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 3537808, + "thread": 2 + } + }, + { + "amount": "182.743940271", + "slot": { + "period": 3665352, + "thread": 7 + } + }, + { + "amount": "182.743940273", + "slot": { + "period": 3890617, + "thread": 22 + } + } + ], + "AU1go9mLHjiJzMc4mHYQkwwNpi4Q3b2nbqSLfcVpZULhPJTRViAt": [ + { + "amount": "53.963450687", + "slot": { + "period": 68358, + "thread": 1 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 177221, + "thread": 7 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 410383, + "thread": 6 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 634879, + "thread": 24 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 767455, + "thread": 26 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 966440, + "thread": 4 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1108936, + "thread": 16 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1157060, + "thread": 12 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1329657, + "thread": 24 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1491525, + "thread": 17 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1721557, + "thread": 28 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1857338, + "thread": 10 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 1979159, + "thread": 5 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2148981, + "thread": 4 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2457906, + "thread": 11 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2600383, + "thread": 31 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2663876, + "thread": 29 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2889712, + "thread": 5 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 2962569, + "thread": 17 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 3209668, + "thread": 11 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 3296234, + "thread": 31 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 3502460, + "thread": 7 + } + }, + { + "amount": "53.963450687", + "slot": { + "period": 3683668, + "thread": 17 + } + }, + { + "amount": "53.963450691", + "slot": { + "period": 3813701, + "thread": 9 + } + } + ], + "AU1goxmVWFTvbzK55YTc36ts77AQyEmTA7Lkyv6HN6WT2TSw9etH": [ + { + "amount": "410.163271935", + "slot": { + "period": 131471, + "thread": 2 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 189104, + "thread": 13 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 464267, + "thread": 21 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 603011, + "thread": 26 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 796052, + "thread": 31 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 890582, + "thread": 29 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1069182, + "thread": 21 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1254924, + "thread": 18 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1448670, + "thread": 8 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1565236, + "thread": 17 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1766639, + "thread": 12 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 1915433, + "thread": 1 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2035039, + "thread": 4 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2189915, + "thread": 6 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2398094, + "thread": 25 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2558149, + "thread": 10 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2655378, + "thread": 23 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 2897087, + "thread": 0 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 3013000, + "thread": 8 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 3187495, + "thread": 17 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 3355841, + "thread": 25 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 3600326, + "thread": 16 + } + }, + { + "amount": "410.163271935", + "slot": { + "period": 3666546, + "thread": 9 + } + }, + { + "amount": "410.163271934", + "slot": { + "period": 3930762, + "thread": 21 + } + } + ], + "AU1gqZVbpP74UoDKHv1mW8Wmkcgrpqy9DSMD53quAbmAEfAc63Km": [ + { + "amount": "132.806278598", + "slot": { + "period": 46895, + "thread": 21 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 322561, + "thread": 26 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 336543, + "thread": 7 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 578491, + "thread": 25 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 699625, + "thread": 2 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 944387, + "thread": 19 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1124701, + "thread": 13 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1205007, + "thread": 16 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1383228, + "thread": 3 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1529528, + "thread": 13 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1685663, + "thread": 15 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 1812455, + "thread": 6 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2096345, + "thread": 12 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2192920, + "thread": 25 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2381228, + "thread": 1 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2623669, + "thread": 23 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2768062, + "thread": 0 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 2813561, + "thread": 5 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 3070320, + "thread": 17 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 3236857, + "thread": 31 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 3448929, + "thread": 8 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 3605255, + "thread": 19 + } + }, + { + "amount": "132.806278598", + "slot": { + "period": 3660861, + "thread": 25 + } + }, + { + "amount": "132.806278590", + "slot": { + "period": 3804024, + "thread": 28 + } + } + ], + "AU1grCKPJUTrZQ3G4oWD8DhvQnBJSM6Z3HH8iPyQLX16t33spffS": [ + { + "amount": "408.882520923", + "slot": { + "period": 100999, + "thread": 14 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 311893, + "thread": 25 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 489221, + "thread": 23 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 603662, + "thread": 12 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 702999, + "thread": 14 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 968535, + "thread": 23 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1104627, + "thread": 8 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1168796, + "thread": 8 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1406357, + "thread": 1 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1603841, + "thread": 9 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1756928, + "thread": 26 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 1881398, + "thread": 18 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2064324, + "thread": 16 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2202830, + "thread": 25 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2448341, + "thread": 15 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2547406, + "thread": 26 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2787501, + "thread": 31 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 2819583, + "thread": 1 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 3104395, + "thread": 4 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 3193466, + "thread": 12 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 3376215, + "thread": 23 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 3569500, + "thread": 16 + } + }, + { + "amount": "408.882520923", + "slot": { + "period": 3740539, + "thread": 25 + } + }, + { + "amount": "408.882520934", + "slot": { + "period": 3882959, + "thread": 0 + } + } + ], + "AU1grGAaRCTa4QeUmj1ijBn9pUbxhKtVKc2WuFRzJ3hSWALi55LE": [ + { + "amount": "155.676824876", + "slot": { + "period": 161557, + "thread": 15 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 187281, + "thread": 24 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 468930, + "thread": 17 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 582938, + "thread": 11 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 790023, + "thread": 21 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 823752, + "thread": 0 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1090648, + "thread": 18 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1152678, + "thread": 13 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1350517, + "thread": 20 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1551319, + "thread": 10 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1805235, + "thread": 1 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 1969624, + "thread": 7 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2010539, + "thread": 20 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2202412, + "thread": 7 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2334055, + "thread": 29 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2585865, + "thread": 1 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2703478, + "thread": 20 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 2835421, + "thread": 26 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 3020209, + "thread": 30 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 3282031, + "thread": 23 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 3297195, + "thread": 23 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 3509155, + "thread": 4 + } + }, + { + "amount": "155.676824876", + "slot": { + "period": 3691641, + "thread": 24 + } + }, + { + "amount": "155.676824871", + "slot": { + "period": 3932583, + "thread": 27 + } + } + ], + "AU1gsBcUjwexf1RkQUgCovbNVyoyXbMfbYmmAXRzo8reQmRcWDHb": [ + { + "amount": "122.119600966", + "slot": { + "period": 124800, + "thread": 9 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 206989, + "thread": 10 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 349719, + "thread": 6 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 511303, + "thread": 12 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 682346, + "thread": 7 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 980282, + "thread": 3 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1039709, + "thread": 23 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1180946, + "thread": 22 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1365035, + "thread": 10 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1584500, + "thread": 26 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1778855, + "thread": 4 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 1864298, + "thread": 9 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2118714, + "thread": 27 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2277913, + "thread": 15 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2303638, + "thread": 2 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2473736, + "thread": 22 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2727626, + "thread": 26 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 2799394, + "thread": 12 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 3044761, + "thread": 20 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 3171342, + "thread": 6 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 3317388, + "thread": 31 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 3549559, + "thread": 2 + } + }, + { + "amount": "122.119600966", + "slot": { + "period": 3655311, + "thread": 19 + } + }, + { + "amount": "122.119600961", + "slot": { + "period": 3844858, + "thread": 0 + } + } + ], + "AU1gsPsrFtBnjcJhja6xtBXBAEHcK1GMEYkZxfdQQKDcedqhkKmH": [ + { + "amount": "168.371156237", + "slot": { + "period": 51348, + "thread": 22 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 245833, + "thread": 19 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 478367, + "thread": 28 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 611322, + "thread": 20 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 740480, + "thread": 14 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 958638, + "thread": 18 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1117487, + "thread": 2 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1262224, + "thread": 23 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1323928, + "thread": 2 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1616175, + "thread": 24 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1695768, + "thread": 15 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 1903774, + "thread": 0 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2061565, + "thread": 1 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2149450, + "thread": 29 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2300634, + "thread": 16 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2569713, + "thread": 16 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2671521, + "thread": 0 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2947188, + "thread": 30 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 2986700, + "thread": 10 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 3240724, + "thread": 15 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 3388201, + "thread": 0 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 3560847, + "thread": 22 + } + }, + { + "amount": "168.371156237", + "slot": { + "period": 3716712, + "thread": 2 + } + }, + { + "amount": "168.371156242", + "slot": { + "period": 3886420, + "thread": 13 + } + } + ], + "AU1gtRYHrkNjpvWCMhrpvnmtTu8CVxDmMGpcjqQuTLvVeHMRSouk": [ + { + "amount": "396.502295950", + "slot": { + "period": 53880, + "thread": 16 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 306204, + "thread": 6 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 332064, + "thread": 11 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 581025, + "thread": 16 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 814186, + "thread": 16 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 905094, + "thread": 25 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1059708, + "thread": 14 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1173098, + "thread": 31 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1334951, + "thread": 30 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1631812, + "thread": 31 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1806885, + "thread": 1 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 1945828, + "thread": 31 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2040097, + "thread": 19 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2277896, + "thread": 23 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2385541, + "thread": 2 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2537621, + "thread": 3 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2655731, + "thread": 3 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2927529, + "thread": 31 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 2987457, + "thread": 3 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 3138868, + "thread": 31 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 3372077, + "thread": 20 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 3606274, + "thread": 24 + } + }, + { + "amount": "396.502295950", + "slot": { + "period": 3758321, + "thread": 2 + } + }, + { + "amount": "396.502295958", + "slot": { + "period": 3818878, + "thread": 18 + } + } + ], + "AU1gu1HcvRcZdfeBeKFnEnRQNJNXnByipY9YBJ1NBWHBrVFSTX2x": [ + { + "amount": "722.200748434", + "slot": { + "period": 85904, + "thread": 23 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 294671, + "thread": 30 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 377606, + "thread": 13 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 603119, + "thread": 22 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 739154, + "thread": 14 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 974743, + "thread": 26 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1048329, + "thread": 23 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1221277, + "thread": 2 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1440848, + "thread": 30 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1512719, + "thread": 28 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1656409, + "thread": 25 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 1865747, + "thread": 24 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2106695, + "thread": 16 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2228579, + "thread": 4 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2376587, + "thread": 29 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2606411, + "thread": 22 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2733891, + "thread": 30 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2931523, + "thread": 21 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 2989267, + "thread": 6 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 3123242, + "thread": 31 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 3439863, + "thread": 6 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 3612076, + "thread": 14 + } + }, + { + "amount": "722.200748434", + "slot": { + "period": 3725609, + "thread": 2 + } + }, + { + "amount": "722.200748425", + "slot": { + "period": 3792875, + "thread": 3 + } + } + ], + "AU1gwGgrFfUzWZ9Y8chuDfGKwmoycasjFU2jjrJvJcqeVfQuV2Hz": [ + { + "amount": "57.402009260", + "slot": { + "period": 69311, + "thread": 26 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 236636, + "thread": 22 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 329947, + "thread": 6 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 607131, + "thread": 3 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 691935, + "thread": 24 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 885496, + "thread": 15 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1050773, + "thread": 0 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1167388, + "thread": 14 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1478911, + "thread": 13 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1626642, + "thread": 4 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1677400, + "thread": 5 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 1813893, + "thread": 31 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2006525, + "thread": 9 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2160755, + "thread": 23 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2437945, + "thread": 1 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2536886, + "thread": 3 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2696336, + "thread": 29 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 2927300, + "thread": 2 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 3053544, + "thread": 13 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 3279950, + "thread": 18 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 3309574, + "thread": 9 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 3515730, + "thread": 12 + } + }, + { + "amount": "57.402009260", + "slot": { + "period": 3735253, + "thread": 30 + } + }, + { + "amount": "57.402009264", + "slot": { + "period": 3821804, + "thread": 17 + } + } + ], + "AU1gwWVfkZGejk8VguQN7dJA6T17SYoJFWHg68P7NHTjqTCp9DzV": [ + { + "amount": "138.353695556", + "slot": { + "period": 149617, + "thread": 2 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 169478, + "thread": 21 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 355286, + "thread": 12 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 545286, + "thread": 7 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 668357, + "thread": 19 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 849775, + "thread": 7 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1065235, + "thread": 25 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1152761, + "thread": 11 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1329719, + "thread": 14 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1513388, + "thread": 22 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1774521, + "thread": 4 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 1865746, + "thread": 24 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2119255, + "thread": 18 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2162909, + "thread": 18 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2419518, + "thread": 30 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2586668, + "thread": 8 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2783701, + "thread": 1 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 2805899, + "thread": 10 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 3089602, + "thread": 20 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 3249390, + "thread": 23 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 3403165, + "thread": 9 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 3587925, + "thread": 17 + } + }, + { + "amount": "138.353695556", + "slot": { + "period": 3775339, + "thread": 15 + } + }, + { + "amount": "138.353695558", + "slot": { + "period": 3851627, + "thread": 3 + } + } + ], + "AU1gwcsbvQvJbgCzWDfMJx99yUYbeYE1cXHMk781tbopKDY82N6f": [ + { + "amount": "148.798177109", + "slot": { + "period": 97476, + "thread": 16 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 228300, + "thread": 3 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 456604, + "thread": 31 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 539296, + "thread": 24 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 659287, + "thread": 31 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 898736, + "thread": 17 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1056154, + "thread": 30 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1292794, + "thread": 13 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1337747, + "thread": 18 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1489107, + "thread": 3 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1713893, + "thread": 10 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 1902793, + "thread": 14 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2032337, + "thread": 16 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2274465, + "thread": 10 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2404586, + "thread": 8 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2582913, + "thread": 4 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2680074, + "thread": 12 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2838386, + "thread": 7 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 2954050, + "thread": 16 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 3122450, + "thread": 24 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 3385114, + "thread": 26 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 3466790, + "thread": 29 + } + }, + { + "amount": "148.798177109", + "slot": { + "period": 3672807, + "thread": 9 + } + }, + { + "amount": "148.798177119", + "slot": { + "period": 3803851, + "thread": 4 + } + } + ], + "AU1gxacNRTsk8u1rWbLUmro1jgWsfbk1rpPX8AkkgQP6K6qfuotJ": [ + { + "amount": "560.626784241", + "slot": { + "period": 125322, + "thread": 23 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 218268, + "thread": 26 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 387556, + "thread": 12 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 540253, + "thread": 22 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 798006, + "thread": 10 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 963099, + "thread": 14 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1113712, + "thread": 31 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1223832, + "thread": 30 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1366026, + "thread": 5 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1504039, + "thread": 13 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1702044, + "thread": 11 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 1916154, + "thread": 14 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2062035, + "thread": 12 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2281108, + "thread": 5 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2399584, + "thread": 15 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2506451, + "thread": 27 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2776110, + "thread": 25 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2941388, + "thread": 16 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 2993044, + "thread": 19 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 3138766, + "thread": 3 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 3334972, + "thread": 10 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 3609669, + "thread": 1 + } + }, + { + "amount": "560.626784241", + "slot": { + "period": 3693531, + "thread": 20 + } + }, + { + "amount": "560.626784238", + "slot": { + "period": 3827552, + "thread": 23 + } + } + ], + "AU1gzqhWEDURDXLsBvWXyJheVAndke6Tkp1Fp3UiKfZCFJJ5ozaw": [ + { + "amount": "378.827600370", + "slot": { + "period": 139387, + "thread": 20 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 232995, + "thread": 13 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 450957, + "thread": 0 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 545037, + "thread": 19 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 780256, + "thread": 22 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 859917, + "thread": 30 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1148076, + "thread": 19 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1288699, + "thread": 31 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1429145, + "thread": 16 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1627985, + "thread": 6 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1779541, + "thread": 11 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 1871499, + "thread": 0 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2034819, + "thread": 27 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2241640, + "thread": 15 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2326869, + "thread": 28 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2528723, + "thread": 16 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2777040, + "thread": 20 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 2885983, + "thread": 29 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 3047213, + "thread": 1 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 3136954, + "thread": 22 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 3315860, + "thread": 20 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 3477763, + "thread": 18 + } + }, + { + "amount": "378.827600370", + "slot": { + "period": 3674158, + "thread": 1 + } + }, + { + "amount": "378.827600377", + "slot": { + "period": 3922447, + "thread": 15 + } + } + ], + "AU1h1BtyCLXK5wKKTLYTZuRDGi8Pk6ZhUxPnJJAM5aaBzs5nVouH": [ + { + "amount": "227.060707546", + "slot": { + "period": 150725, + "thread": 10 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 201283, + "thread": 12 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 413013, + "thread": 18 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 505229, + "thread": 1 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 784677, + "thread": 22 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 916434, + "thread": 8 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1031932, + "thread": 6 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1286568, + "thread": 2 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1346295, + "thread": 15 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1589667, + "thread": 12 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1679578, + "thread": 5 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 1884653, + "thread": 3 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2090575, + "thread": 19 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2251033, + "thread": 25 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2369193, + "thread": 28 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2539016, + "thread": 7 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2703527, + "thread": 15 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 2911114, + "thread": 4 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 3057189, + "thread": 0 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 3197727, + "thread": 5 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 3436485, + "thread": 13 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 3450746, + "thread": 15 + } + }, + { + "amount": "227.060707546", + "slot": { + "period": 3748349, + "thread": 25 + } + }, + { + "amount": "227.060707557", + "slot": { + "period": 3794059, + "thread": 7 + } + } + ], + "AU1h1axv3Vyc5tJ8szBDXQwu6UbH7Q33XEWLMVTmcpYPoKMFoB4y": [ + { + "amount": "179.118888328", + "slot": { + "period": 116209, + "thread": 6 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 258751, + "thread": 30 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 435961, + "thread": 2 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 593192, + "thread": 3 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 751280, + "thread": 21 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 947776, + "thread": 30 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1149481, + "thread": 1 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1199563, + "thread": 17 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1338081, + "thread": 18 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1617940, + "thread": 25 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1777963, + "thread": 31 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 1948533, + "thread": 17 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2051166, + "thread": 15 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2212079, + "thread": 19 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2313383, + "thread": 2 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2593735, + "thread": 30 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2728897, + "thread": 16 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 2832575, + "thread": 20 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 3055085, + "thread": 17 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 3131007, + "thread": 19 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 3344829, + "thread": 29 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 3498418, + "thread": 4 + } + }, + { + "amount": "179.118888328", + "slot": { + "period": 3765614, + "thread": 24 + } + }, + { + "amount": "179.118888316", + "slot": { + "period": 3852900, + "thread": 18 + } + } + ], + "AU1h1rbs6ftzEqyXQFYVVstEA2RZYaBUrqBiiT3xzckaCWLT5acg": [ + { + "amount": "162.616564561", + "slot": { + "period": 110764, + "thread": 28 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 307977, + "thread": 10 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 340398, + "thread": 10 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 550939, + "thread": 0 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 762717, + "thread": 4 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 964146, + "thread": 15 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1025794, + "thread": 24 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1295469, + "thread": 16 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1336014, + "thread": 20 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1500496, + "thread": 15 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1703624, + "thread": 17 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 1894082, + "thread": 2 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2121756, + "thread": 4 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2147950, + "thread": 1 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2370995, + "thread": 11 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2529328, + "thread": 24 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2739183, + "thread": 18 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 2803066, + "thread": 22 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 3101761, + "thread": 13 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 3257807, + "thread": 27 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 3344426, + "thread": 31 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 3560710, + "thread": 29 + } + }, + { + "amount": "162.616564561", + "slot": { + "period": 3768757, + "thread": 24 + } + }, + { + "amount": "162.616564556", + "slot": { + "period": 3795433, + "thread": 12 + } + } + ], + "AU1h2KFNEaFvPAa3DjCRh3uqZZboBYKG5jAxgA25av1evMovbbVp": [ + { + "amount": "77.830852254", + "slot": { + "period": 40447, + "thread": 22 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 282858, + "thread": 8 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 386948, + "thread": 20 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 558212, + "thread": 1 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 761045, + "thread": 31 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 973636, + "thread": 1 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1022375, + "thread": 1 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1257203, + "thread": 27 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1420710, + "thread": 31 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1529841, + "thread": 26 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1716377, + "thread": 14 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 1901384, + "thread": 11 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2141684, + "thread": 3 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2152296, + "thread": 23 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2358091, + "thread": 14 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2543394, + "thread": 21 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2667056, + "thread": 9 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 2862306, + "thread": 23 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 3072092, + "thread": 5 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 3122167, + "thread": 13 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 3329088, + "thread": 4 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 3529208, + "thread": 21 + } + }, + { + "amount": "77.830852254", + "slot": { + "period": 3677800, + "thread": 15 + } + }, + { + "amount": "77.830852257", + "slot": { + "period": 3803376, + "thread": 26 + } + } + ], + "AU1h31bXvfkeWVh89JuSwRLGNgHVvzMjGKjQgcUCUWZVywiLWtgz": [ + { + "amount": "83.446440514", + "slot": { + "period": 152425, + "thread": 18 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 235300, + "thread": 24 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 465855, + "thread": 25 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 605435, + "thread": 18 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 743840, + "thread": 5 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 909407, + "thread": 17 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1091638, + "thread": 1 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1271275, + "thread": 11 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1444120, + "thread": 18 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1564803, + "thread": 7 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1670930, + "thread": 14 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 1939919, + "thread": 21 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2073197, + "thread": 27 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2183269, + "thread": 0 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2379981, + "thread": 15 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2520606, + "thread": 3 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2633389, + "thread": 9 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 2827404, + "thread": 16 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 3062279, + "thread": 28 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 3203886, + "thread": 3 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 3404507, + "thread": 5 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 3584771, + "thread": 21 + } + }, + { + "amount": "83.446440514", + "slot": { + "period": 3735571, + "thread": 6 + } + }, + { + "amount": "83.446440512", + "slot": { + "period": 3885833, + "thread": 18 + } + } + ], + "AU1h3uv52EN4HdhACGy8sZSj1ZZp1i5iwrzuq7LnhLDCRDS6c6yq": [ + { + "amount": "121.817445459", + "slot": { + "period": 153285, + "thread": 30 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 252447, + "thread": 18 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 411856, + "thread": 18 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 583115, + "thread": 26 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 717554, + "thread": 7 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 886277, + "thread": 29 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1143928, + "thread": 22 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1164142, + "thread": 17 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1462610, + "thread": 18 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1574444, + "thread": 17 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1661493, + "thread": 15 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 1892088, + "thread": 3 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2064422, + "thread": 15 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2162605, + "thread": 11 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2317356, + "thread": 18 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2482038, + "thread": 28 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2740665, + "thread": 25 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 2849903, + "thread": 14 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 3002251, + "thread": 13 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 3283027, + "thread": 8 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 3428096, + "thread": 23 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 3593387, + "thread": 31 + } + }, + { + "amount": "121.817445459", + "slot": { + "period": 3685331, + "thread": 10 + } + }, + { + "amount": "121.817445468", + "slot": { + "period": 3899235, + "thread": 13 + } + } + ], + "AU1h43AhfeAG6QoRw11oHd8ox2C3yajKFqPousV6hqxAqUSpZoVu": [ + { + "amount": "562.313130830", + "slot": { + "period": 53088, + "thread": 18 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 217320, + "thread": 11 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 450592, + "thread": 16 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 616749, + "thread": 25 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 660625, + "thread": 24 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 918968, + "thread": 12 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1018539, + "thread": 28 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1205169, + "thread": 26 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1326704, + "thread": 3 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1572041, + "thread": 27 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1758030, + "thread": 22 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 1950423, + "thread": 6 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2133788, + "thread": 6 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2286711, + "thread": 11 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2366986, + "thread": 16 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2614147, + "thread": 5 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2719843, + "thread": 28 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2858671, + "thread": 8 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 2993166, + "thread": 30 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 3245268, + "thread": 28 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 3362842, + "thread": 1 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 3469361, + "thread": 29 + } + }, + { + "amount": "562.313130830", + "slot": { + "period": 3714539, + "thread": 7 + } + }, + { + "amount": "562.313130831", + "slot": { + "period": 3803723, + "thread": 22 + } + } + ], + "AU1h4Sg75iiYCYdXvh5QwjFsxBFfmmVEyU4fFXMYXWBZ95NQSjZ2": [ + { + "amount": "178.562334550", + "slot": { + "period": 159842, + "thread": 1 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 168207, + "thread": 22 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 447471, + "thread": 30 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 508526, + "thread": 19 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 813696, + "thread": 23 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 926448, + "thread": 10 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1125517, + "thread": 30 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1307754, + "thread": 1 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1391330, + "thread": 24 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1585233, + "thread": 28 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1760286, + "thread": 18 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1892662, + "thread": 14 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 1998240, + "thread": 25 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 2167038, + "thread": 16 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 2375401, + "thread": 7 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 2498017, + "thread": 9 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 2743911, + "thread": 2 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 2807061, + "thread": 20 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 3048280, + "thread": 24 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 3276367, + "thread": 6 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 3401564, + "thread": 0 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 3469247, + "thread": 21 + } + }, + { + "amount": "178.562334550", + "slot": { + "period": 3628496, + "thread": 29 + } + }, + { + "amount": "178.562334559", + "slot": { + "period": 3797827, + "thread": 1 + } + } + ], + "AU1h52DeLHobj1PuhBskzDUpe71mvmLkL1wZm2zRFEVsmNX7jnQt": [ + { + "amount": "89.485935565", + "slot": { + "period": 127621, + "thread": 7 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 206713, + "thread": 19 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 382472, + "thread": 3 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 534918, + "thread": 24 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 803305, + "thread": 8 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 846949, + "thread": 15 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1023837, + "thread": 13 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1201103, + "thread": 2 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1471139, + "thread": 19 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1634663, + "thread": 16 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1798322, + "thread": 5 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 1874091, + "thread": 24 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2063604, + "thread": 31 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2191484, + "thread": 6 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2420148, + "thread": 13 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2564318, + "thread": 16 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2699372, + "thread": 27 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 2884263, + "thread": 19 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3082089, + "thread": 16 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3141773, + "thread": 14 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3310808, + "thread": 1 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3498482, + "thread": 6 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3756847, + "thread": 9 + } + }, + { + "amount": "89.485935565", + "slot": { + "period": 3917024, + "thread": 24 + } + } + ], + "AU1h5L9P4k4bDUdpi1zoUYKsFtcxHVRcsCEVuYPRiiqc4BG3uNJM": [ + { + "amount": "90.110367137", + "slot": { + "period": 161525, + "thread": 5 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 286264, + "thread": 26 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 407936, + "thread": 12 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 514039, + "thread": 6 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 781560, + "thread": 17 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 871144, + "thread": 25 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1113518, + "thread": 10 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1205102, + "thread": 12 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1454211, + "thread": 31 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1629553, + "thread": 8 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1745471, + "thread": 8 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 1877499, + "thread": 25 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2034035, + "thread": 11 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2283344, + "thread": 9 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2426498, + "thread": 2 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2538649, + "thread": 13 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2730339, + "thread": 31 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 2825427, + "thread": 18 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 3006078, + "thread": 21 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 3123718, + "thread": 15 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 3327642, + "thread": 1 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 3526199, + "thread": 3 + } + }, + { + "amount": "90.110367137", + "slot": { + "period": 3652976, + "thread": 22 + } + }, + { + "amount": "90.110367135", + "slot": { + "period": 3866600, + "thread": 3 + } + } + ], + "AU1h5djCQFWocbXdCeqtdMVnEc68LnMX5ZBybj5fdCxWWsqnosPi": [ + { + "amount": "163.002757310", + "slot": { + "period": 105138, + "thread": 2 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 320622, + "thread": 28 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 384791, + "thread": 11 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 649964, + "thread": 8 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 798876, + "thread": 5 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 949938, + "thread": 23 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1123104, + "thread": 27 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1270396, + "thread": 26 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1324055, + "thread": 20 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1565511, + "thread": 29 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1779903, + "thread": 21 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 1814340, + "thread": 24 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2134404, + "thread": 2 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2233357, + "thread": 6 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2451803, + "thread": 0 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2513029, + "thread": 2 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2727012, + "thread": 15 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 2822989, + "thread": 9 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 3095369, + "thread": 30 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 3157078, + "thread": 22 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 3439400, + "thread": 3 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 3463711, + "thread": 15 + } + }, + { + "amount": "163.002757310", + "slot": { + "period": 3741010, + "thread": 10 + } + }, + { + "amount": "163.002757317", + "slot": { + "period": 3827575, + "thread": 29 + } + } + ], + "AU1h6dH1HdNr1kAM4neN39i7dyZdTgJsFzK5Kmax4A9RLBVy2i7j": [ + { + "amount": "220.179263096", + "slot": { + "period": 131900, + "thread": 0 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 301887, + "thread": 20 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 335428, + "thread": 31 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 618974, + "thread": 19 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 817949, + "thread": 0 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 827869, + "thread": 13 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1038680, + "thread": 27 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1186250, + "thread": 3 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1375020, + "thread": 27 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1580762, + "thread": 24 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1766454, + "thread": 30 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1871061, + "thread": 13 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 1976984, + "thread": 10 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 2278267, + "thread": 19 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 2355838, + "thread": 16 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 2606921, + "thread": 20 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 2770427, + "thread": 0 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 2905485, + "thread": 26 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 3041360, + "thread": 19 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 3257700, + "thread": 0 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 3334279, + "thread": 19 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 3603067, + "thread": 23 + } + }, + { + "amount": "220.179263096", + "slot": { + "period": 3704250, + "thread": 1 + } + }, + { + "amount": "220.179263093", + "slot": { + "period": 3785313, + "thread": 13 + } + } + ], + "AU1h7HtB4UXSQdusioHk1ZCqSi5az59GzDDwnTUW9virH3GFBAYF": [ + { + "amount": "92.398365096", + "slot": { + "period": 11779, + "thread": 17 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 197711, + "thread": 31 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 346659, + "thread": 1 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 549963, + "thread": 11 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 707365, + "thread": 9 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 900415, + "thread": 10 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1142171, + "thread": 18 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1229709, + "thread": 15 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1337400, + "thread": 7 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1529237, + "thread": 2 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1808981, + "thread": 16 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 1931656, + "thread": 1 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2107823, + "thread": 17 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2168111, + "thread": 23 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2306952, + "thread": 25 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2493444, + "thread": 25 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2646180, + "thread": 10 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 2805897, + "thread": 18 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 3107341, + "thread": 9 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 3199729, + "thread": 6 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 3444905, + "thread": 11 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 3529954, + "thread": 13 + } + }, + { + "amount": "92.398365096", + "slot": { + "period": 3738996, + "thread": 1 + } + }, + { + "amount": "92.398365105", + "slot": { + "period": 3827048, + "thread": 3 + } + } + ], + "AU1h7Qnc3uLpzz6Mmbg1yc2RNPdQPXZy4wzPsajhPoYiyRq7Hp4X": [ + { + "amount": "149.405445049", + "slot": { + "period": 83609, + "thread": 15 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 241229, + "thread": 2 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 377836, + "thread": 12 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 554522, + "thread": 30 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 703893, + "thread": 21 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 884445, + "thread": 8 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1054315, + "thread": 15 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1234076, + "thread": 23 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1430586, + "thread": 31 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1500747, + "thread": 0 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1687433, + "thread": 26 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1893930, + "thread": 18 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 1998821, + "thread": 26 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 2191014, + "thread": 27 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 2339885, + "thread": 9 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 2522191, + "thread": 12 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 2680275, + "thread": 27 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 2825678, + "thread": 12 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 3095917, + "thread": 2 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 3122717, + "thread": 23 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 3342902, + "thread": 12 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 3598945, + "thread": 30 + } + }, + { + "amount": "149.405445049", + "slot": { + "period": 3684345, + "thread": 31 + } + }, + { + "amount": "149.405445050", + "slot": { + "period": 3784561, + "thread": 16 + } + } + ], + "AU1h7UGJzeJEv9hLt7GitvhzNaHQpgz1PzAFPbKPGTFo5aVpYTgE": [ + { + "amount": "141.525492867", + "slot": { + "period": 92214, + "thread": 4 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 281036, + "thread": 7 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 337912, + "thread": 19 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 541092, + "thread": 17 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 787451, + "thread": 20 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 827290, + "thread": 19 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1035263, + "thread": 5 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1168772, + "thread": 31 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1424951, + "thread": 27 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1642212, + "thread": 14 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1755392, + "thread": 28 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 1934314, + "thread": 21 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2040725, + "thread": 17 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2186693, + "thread": 3 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2422551, + "thread": 8 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2522452, + "thread": 31 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2683296, + "thread": 23 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 2942273, + "thread": 2 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 3054480, + "thread": 19 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 3149051, + "thread": 27 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 3410036, + "thread": 25 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 3563309, + "thread": 13 + } + }, + { + "amount": "141.525492867", + "slot": { + "period": 3762505, + "thread": 6 + } + }, + { + "amount": "141.525492858", + "slot": { + "period": 3899240, + "thread": 20 + } + } + ], + "AU1h7tD5b5CHec6FUsG9XifJbmgC7MUbLZTfYe1gHAHuY9gfn8d7": [ + { + "amount": "225.172844808", + "slot": { + "period": 87059, + "thread": 1 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 315926, + "thread": 14 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 333113, + "thread": 15 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 650059, + "thread": 18 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 797867, + "thread": 1 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 871002, + "thread": 29 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1111599, + "thread": 28 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1308141, + "thread": 14 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1355994, + "thread": 21 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1499657, + "thread": 6 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1702966, + "thread": 17 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 1951205, + "thread": 28 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2019643, + "thread": 0 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2179645, + "thread": 12 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2386972, + "thread": 20 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2475679, + "thread": 19 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2683263, + "thread": 5 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 2814616, + "thread": 11 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 3092687, + "thread": 5 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 3189831, + "thread": 9 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 3391811, + "thread": 23 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 3515532, + "thread": 8 + } + }, + { + "amount": "225.172844808", + "slot": { + "period": 3674514, + "thread": 26 + } + }, + { + "amount": "225.172844817", + "slot": { + "period": 3867993, + "thread": 15 + } + } + ], + "AU1hAPnspH2xrmkCFJwr8uPM1bgfrDGCJxPnczsrkrR6B5Y5SZAr": [ + { + "amount": "96.772347813", + "slot": { + "period": 44071, + "thread": 2 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 215255, + "thread": 26 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 387861, + "thread": 30 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 529873, + "thread": 30 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 777333, + "thread": 29 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 973474, + "thread": 7 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1035662, + "thread": 12 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1185858, + "thread": 0 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1463101, + "thread": 11 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1579882, + "thread": 24 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1762013, + "thread": 30 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 1817577, + "thread": 24 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2037843, + "thread": 15 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2165110, + "thread": 4 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2429154, + "thread": 30 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2542011, + "thread": 23 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2751902, + "thread": 0 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 2835865, + "thread": 17 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 3027922, + "thread": 15 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 3122446, + "thread": 28 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 3315495, + "thread": 15 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 3565161, + "thread": 28 + } + }, + { + "amount": "96.772347813", + "slot": { + "period": 3686896, + "thread": 3 + } + }, + { + "amount": "96.772347807", + "slot": { + "period": 3783543, + "thread": 30 + } + } + ], + "AU1hAkGpm6strPPXWcxR3X1ssX8yf36sCsnUeMFs6uxeBFzXAPD4": [ + { + "amount": "261.060759121", + "slot": { + "period": 61483, + "thread": 20 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 212432, + "thread": 1 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 352273, + "thread": 18 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 570923, + "thread": 28 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 690205, + "thread": 26 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 885751, + "thread": 24 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1139985, + "thread": 18 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1241236, + "thread": 6 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1449763, + "thread": 21 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1485587, + "thread": 30 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1793481, + "thread": 10 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 1825518, + "thread": 6 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2077599, + "thread": 4 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2200284, + "thread": 18 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2375077, + "thread": 28 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2570277, + "thread": 17 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2684815, + "thread": 24 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 2934934, + "thread": 13 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 3054410, + "thread": 24 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 3157021, + "thread": 29 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 3422446, + "thread": 4 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 3481169, + "thread": 15 + } + }, + { + "amount": "261.060759121", + "slot": { + "period": 3620236, + "thread": 12 + } + }, + { + "amount": "261.060759114", + "slot": { + "period": 3849090, + "thread": 31 + } + } + ], + "AU1hAxzkcjhst1C5xiUi5W2RBdSX3P5dS8agipubHCxJJwNNf4DZ": [ + { + "amount": "135.616928492", + "slot": { + "period": 150873, + "thread": 23 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 224124, + "thread": 2 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 358392, + "thread": 29 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 597386, + "thread": 4 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 793375, + "thread": 19 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 832665, + "thread": 28 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 987484, + "thread": 16 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 1239347, + "thread": 16 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 1420542, + "thread": 13 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 1514047, + "thread": 4 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 1696382, + "thread": 22 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 1835207, + "thread": 7 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2089468, + "thread": 15 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2272620, + "thread": 24 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2421723, + "thread": 21 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2593741, + "thread": 10 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2738872, + "thread": 16 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 2844218, + "thread": 27 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 3035387, + "thread": 14 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 3163939, + "thread": 8 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 3304847, + "thread": 15 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 3554601, + "thread": 26 + } + }, + { + "amount": "135.616928492", + "slot": { + "period": 3755141, + "thread": 16 + } + }, + { + "amount": "135.616928489", + "slot": { + "period": 3859470, + "thread": 19 + } + } + ], + "AU1hBjiVzuNHbCo565Dou8Yn6WKHMiVtSLaqK36hUdB7YqapWQGt": [ + { + "amount": "197.106219462", + "slot": { + "period": 15432, + "thread": 17 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 189028, + "thread": 15 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 397300, + "thread": 26 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 612100, + "thread": 27 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 761122, + "thread": 19 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 896094, + "thread": 17 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 988494, + "thread": 8 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 1290868, + "thread": 26 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 1466506, + "thread": 19 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 1507358, + "thread": 5 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 1805644, + "thread": 4 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 1962474, + "thread": 7 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2075725, + "thread": 8 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2216276, + "thread": 31 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2331949, + "thread": 28 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2493581, + "thread": 26 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2642203, + "thread": 25 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2879788, + "thread": 13 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 2963634, + "thread": 31 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 3147417, + "thread": 1 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 3402773, + "thread": 23 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 3478156, + "thread": 6 + } + }, + { + "amount": "197.106219462", + "slot": { + "period": 3645286, + "thread": 16 + } + }, + { + "amount": "197.106219457", + "slot": { + "period": 3786434, + "thread": 17 + } + } + ], + "AU1hBw89Mb5kjLxqenJhduRcCvci2tx9fMPApeboi9vk2Tyb2Gu3": [ + { + "amount": "330.102679286", + "slot": { + "period": 135735, + "thread": 18 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 235334, + "thread": 14 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 472510, + "thread": 2 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 619153, + "thread": 23 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 763226, + "thread": 25 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 978497, + "thread": 28 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1113586, + "thread": 29 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1292757, + "thread": 15 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1442266, + "thread": 9 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1560898, + "thread": 23 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1727189, + "thread": 17 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 1815068, + "thread": 16 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2123489, + "thread": 20 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2220960, + "thread": 28 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2364391, + "thread": 20 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2538989, + "thread": 12 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2715049, + "thread": 15 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2831126, + "thread": 22 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 2954855, + "thread": 26 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 3149547, + "thread": 20 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 3433351, + "thread": 11 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 3569857, + "thread": 7 + } + }, + { + "amount": "330.102679286", + "slot": { + "period": 3708828, + "thread": 15 + } + }, + { + "amount": "330.102679290", + "slot": { + "period": 3874090, + "thread": 24 + } + } + ], + "AU1hC6HmAE1MVbeutB4cVokUHGJdyEvDBwHqp2fzknFx4tdS4v6s": [ + { + "amount": "176.732329870", + "slot": { + "period": 20528, + "thread": 12 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 236901, + "thread": 14 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 416002, + "thread": 9 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 532056, + "thread": 4 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 714119, + "thread": 7 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 870486, + "thread": 31 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1037152, + "thread": 9 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1251633, + "thread": 19 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1375723, + "thread": 25 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1484260, + "thread": 14 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1662322, + "thread": 4 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 1847066, + "thread": 19 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2055792, + "thread": 4 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2288317, + "thread": 19 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2361089, + "thread": 9 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2592872, + "thread": 10 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2670432, + "thread": 5 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 2878629, + "thread": 10 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 3109241, + "thread": 27 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 3177164, + "thread": 12 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 3448381, + "thread": 13 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 3555003, + "thread": 24 + } + }, + { + "amount": "176.732329870", + "slot": { + "period": 3626725, + "thread": 1 + } + }, + { + "amount": "176.732329868", + "slot": { + "period": 3827729, + "thread": 18 + } + } + ], + "AU1hCBfh8jYeVddabNYTMZGTHimdHbBar18fy235fKNN3UUXxnup": [ + { + "amount": "510.640441744", + "slot": { + "period": 142016, + "thread": 12 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 298539, + "thread": 12 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 443893, + "thread": 2 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 590426, + "thread": 28 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 796431, + "thread": 16 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 883067, + "thread": 0 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1048766, + "thread": 0 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1214712, + "thread": 17 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1360318, + "thread": 3 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1640704, + "thread": 27 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1730799, + "thread": 16 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 1928589, + "thread": 22 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2121686, + "thread": 22 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2270043, + "thread": 14 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2307980, + "thread": 16 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2537195, + "thread": 11 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2788025, + "thread": 6 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 2905737, + "thread": 3 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 3042240, + "thread": 23 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 3200064, + "thread": 7 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 3360898, + "thread": 27 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 3481925, + "thread": 14 + } + }, + { + "amount": "510.640441744", + "slot": { + "period": 3644427, + "thread": 22 + } + }, + { + "amount": "510.640441742", + "slot": { + "period": 3910528, + "thread": 10 + } + } + ], + "AU1hCKZoXvEc2SrFfYayMyCRrFzikVdt56BxZQe1WbxYYD4HXvTm": [ + { + "amount": "91.437465426", + "slot": { + "period": 64435, + "thread": 31 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 222525, + "thread": 16 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 362587, + "thread": 8 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 560988, + "thread": 10 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 785583, + "thread": 12 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 918927, + "thread": 18 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1061551, + "thread": 4 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1220941, + "thread": 9 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1474316, + "thread": 10 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1588914, + "thread": 3 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1779569, + "thread": 0 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 1948664, + "thread": 10 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2101640, + "thread": 10 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2291621, + "thread": 3 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2441449, + "thread": 3 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2599463, + "thread": 13 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2786930, + "thread": 21 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2795155, + "thread": 23 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 2981764, + "thread": 23 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 3141188, + "thread": 3 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 3385252, + "thread": 13 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 3504985, + "thread": 0 + } + }, + { + "amount": "91.437465426", + "slot": { + "period": 3685679, + "thread": 24 + } + }, + { + "amount": "91.437465421", + "slot": { + "period": 3926347, + "thread": 27 + } + } + ], + "AU1hCUR3pNfCKZUpV8ebv2CSp2ojDTTeFgVH85gioo8R7H9CAKDr": [ + { + "amount": "226.212540840", + "slot": { + "period": 24117, + "thread": 6 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 299437, + "thread": 28 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 464389, + "thread": 22 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 589998, + "thread": 10 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 673642, + "thread": 9 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 978199, + "thread": 26 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1004240, + "thread": 12 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1167563, + "thread": 23 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1446431, + "thread": 21 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1637041, + "thread": 15 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1686519, + "thread": 25 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 1839426, + "thread": 28 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2128231, + "thread": 4 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2235225, + "thread": 9 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2436720, + "thread": 11 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2610852, + "thread": 2 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2766695, + "thread": 8 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2938354, + "thread": 21 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 2987265, + "thread": 19 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 3200197, + "thread": 15 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 3294710, + "thread": 10 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 3489020, + "thread": 26 + } + }, + { + "amount": "226.212540840", + "slot": { + "period": 3718813, + "thread": 25 + } + }, + { + "amount": "226.212540841", + "slot": { + "period": 3888516, + "thread": 11 + } + } + ], + "AU1hCakFY2cW2WbWURZjXbC3LNFAMXcCq8yxt8yJsuoa4iGPvZoL": [ + { + "amount": "5833.333333333", + "slot": { + "period": 25218, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 214965, + "thread": 7 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 459755, + "thread": 14 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 599457, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 678228, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 821180, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1059111, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1171846, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1393038, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1557028, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1779899, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1891157, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2097336, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2224587, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2341310, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2468965, + "thread": 9 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2646668, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2836445, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3116326, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3215683, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3404250, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3601771, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3741496, + "thread": 5 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3851825, + "thread": 10 + } + } + ], + "AU1hCakJ1GDRCxrm1q4bqTwvytTQZrC3e2y5AfeBH5rAhheKBdMY": [ + { + "amount": "544.454200403", + "slot": { + "period": 78583, + "thread": 24 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 178251, + "thread": 24 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 398498, + "thread": 15 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 631198, + "thread": 27 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 801732, + "thread": 27 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 840324, + "thread": 26 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1146242, + "thread": 21 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1278704, + "thread": 4 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1340846, + "thread": 24 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1563660, + "thread": 31 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1725079, + "thread": 25 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 1845660, + "thread": 13 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2084342, + "thread": 23 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2272953, + "thread": 0 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2334346, + "thread": 26 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2463563, + "thread": 29 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2704547, + "thread": 29 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 2805440, + "thread": 5 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 3004246, + "thread": 1 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 3171896, + "thread": 27 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 3403494, + "thread": 23 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 3475011, + "thread": 18 + } + }, + { + "amount": "544.454200403", + "slot": { + "period": 3682534, + "thread": 20 + } + }, + { + "amount": "544.454200399", + "slot": { + "period": 3802311, + "thread": 2 + } + } + ], + "AU1hDLN7FTjb3kwH651S38oYyJzsodK3YD1jZKeSnKPPnLZu8ie": [ + { + "amount": "190.431846756", + "slot": { + "period": 114463, + "thread": 27 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 222664, + "thread": 9 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 425615, + "thread": 13 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 548223, + "thread": 15 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 681454, + "thread": 16 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 859008, + "thread": 3 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1117169, + "thread": 29 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1297221, + "thread": 12 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1462034, + "thread": 4 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1548572, + "thread": 11 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1705415, + "thread": 4 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 1884945, + "thread": 2 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2033899, + "thread": 15 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2238864, + "thread": 27 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2410462, + "thread": 30 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2603172, + "thread": 12 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2783961, + "thread": 10 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 2884276, + "thread": 28 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 3102362, + "thread": 12 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 3226111, + "thread": 3 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 3303389, + "thread": 30 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 3575153, + "thread": 21 + } + }, + { + "amount": "190.431846756", + "slot": { + "period": 3618331, + "thread": 31 + } + }, + { + "amount": "190.431846748", + "slot": { + "period": 3786352, + "thread": 17 + } + } + ], + "AU1hE1QKtN8xVKeetQxWDz4wGSb9XZGtaJntGf2WCfv2byQQWrnf": [ + { + "amount": "124.480474960", + "slot": { + "period": 106449, + "thread": 31 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 211449, + "thread": 20 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 403418, + "thread": 21 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 526858, + "thread": 3 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 811492, + "thread": 24 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 926378, + "thread": 12 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1003928, + "thread": 9 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1196521, + "thread": 8 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1325875, + "thread": 16 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1502404, + "thread": 9 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1714074, + "thread": 25 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 1826909, + "thread": 19 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2087622, + "thread": 5 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2294277, + "thread": 4 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2360968, + "thread": 13 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2598707, + "thread": 30 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2689501, + "thread": 24 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 2952935, + "thread": 18 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 3108717, + "thread": 2 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 3179654, + "thread": 12 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 3439074, + "thread": 23 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 3475490, + "thread": 20 + } + }, + { + "amount": "124.480474960", + "slot": { + "period": 3659309, + "thread": 27 + } + }, + { + "amount": "124.480474956", + "slot": { + "period": 3939001, + "thread": 25 + } + } + ], + "AU1hFSRJrsEsuMVbbGCakM3ZKBRLXHti41nvQEp94Qa5CKhFv387": [ + { + "amount": "326.402987299", + "slot": { + "period": 146907, + "thread": 16 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 255088, + "thread": 12 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 480355, + "thread": 2 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 530106, + "thread": 21 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 815552, + "thread": 11 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 954407, + "thread": 25 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1047160, + "thread": 28 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1276320, + "thread": 27 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1369030, + "thread": 28 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1633990, + "thread": 24 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1677290, + "thread": 29 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 1819971, + "thread": 1 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2117132, + "thread": 4 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2293505, + "thread": 4 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2362116, + "thread": 24 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2469781, + "thread": 3 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2721417, + "thread": 24 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 2914981, + "thread": 3 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 3054864, + "thread": 7 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 3142978, + "thread": 14 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 3398061, + "thread": 25 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 3548921, + "thread": 24 + } + }, + { + "amount": "326.402987299", + "slot": { + "period": 3643783, + "thread": 26 + } + }, + { + "amount": "326.402987306", + "slot": { + "period": 3839510, + "thread": 10 + } + } + ], + "AU1hFduG4VRqv89juqDpoKguZvZxuixoTHUpNjx2kVC5T62MWNer": [ + { + "amount": "126.115799588", + "slot": { + "period": 38626, + "thread": 16 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 285549, + "thread": 26 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 429810, + "thread": 1 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 507659, + "thread": 31 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 700506, + "thread": 5 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 946668, + "thread": 20 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1010582, + "thread": 9 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1243332, + "thread": 3 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1381456, + "thread": 7 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1545842, + "thread": 10 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1792938, + "thread": 2 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 1832476, + "thread": 1 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2135472, + "thread": 11 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2281243, + "thread": 21 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2438806, + "thread": 12 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2552684, + "thread": 18 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2709478, + "thread": 18 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 2832085, + "thread": 17 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 3025059, + "thread": 15 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 3261276, + "thread": 18 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 3301940, + "thread": 16 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 3565043, + "thread": 11 + } + }, + { + "amount": "126.115799588", + "slot": { + "period": 3636448, + "thread": 26 + } + }, + { + "amount": "126.115799579", + "slot": { + "period": 3892293, + "thread": 27 + } + } + ], + "AU1hG982VEM2TLhXyNuHtfpNBDJ92kkM2WbpXdtbwjmW5vR6kDxB": [ + { + "amount": "105.950370518", + "slot": { + "period": 137593, + "thread": 28 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 234145, + "thread": 8 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 487435, + "thread": 31 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 520254, + "thread": 1 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 707772, + "thread": 31 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 893347, + "thread": 17 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1061978, + "thread": 16 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1286647, + "thread": 31 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1331076, + "thread": 5 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1535929, + "thread": 3 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1739577, + "thread": 0 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 1881761, + "thread": 18 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2022921, + "thread": 6 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2160502, + "thread": 1 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2297086, + "thread": 2 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2582987, + "thread": 22 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2768285, + "thread": 29 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 2951265, + "thread": 21 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 3066428, + "thread": 19 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 3258587, + "thread": 23 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 3306169, + "thread": 17 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 3519452, + "thread": 2 + } + }, + { + "amount": "105.950370518", + "slot": { + "period": 3774801, + "thread": 29 + } + }, + { + "amount": "105.950370513", + "slot": { + "period": 3925478, + "thread": 31 + } + } + ], + "AU1hGbMAjLkQgdBLu8BEXDgGPLngN9Y32865gEnSB8MbQD969Uuk": [ + { + "amount": "69.884264799", + "slot": { + "period": 87662, + "thread": 2 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 240540, + "thread": 9 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 343415, + "thread": 10 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 639145, + "thread": 25 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 789831, + "thread": 11 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 959356, + "thread": 2 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1136534, + "thread": 17 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1274918, + "thread": 8 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1350881, + "thread": 29 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1535300, + "thread": 17 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1748653, + "thread": 10 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 1953676, + "thread": 18 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2021814, + "thread": 19 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2181482, + "thread": 24 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2445037, + "thread": 12 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2548628, + "thread": 10 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2770730, + "thread": 6 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 2873894, + "thread": 2 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 3052010, + "thread": 27 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 3268053, + "thread": 11 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 3397847, + "thread": 13 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 3548460, + "thread": 31 + } + }, + { + "amount": "69.884264799", + "slot": { + "period": 3762705, + "thread": 9 + } + }, + { + "amount": "69.884264796", + "slot": { + "period": 3830195, + "thread": 4 + } + } + ], + "AU1hGmvHuE6BFPsU1u1tooxAAaWJDiA9s7FXbGxo41tAL7rCNaGf": [ + { + "amount": "522.487366277", + "slot": { + "period": 144733, + "thread": 20 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 292944, + "thread": 23 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 468918, + "thread": 26 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 601557, + "thread": 30 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 716294, + "thread": 11 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 893604, + "thread": 0 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1013836, + "thread": 8 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1213828, + "thread": 25 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1437945, + "thread": 14 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1614653, + "thread": 12 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1774332, + "thread": 30 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 1861169, + "thread": 13 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2017612, + "thread": 7 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2209265, + "thread": 3 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2438451, + "thread": 28 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2593543, + "thread": 7 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2648305, + "thread": 12 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 2883000, + "thread": 13 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 3103767, + "thread": 24 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 3136366, + "thread": 24 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 3395946, + "thread": 25 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 3563387, + "thread": 27 + } + }, + { + "amount": "522.487366277", + "slot": { + "period": 3776304, + "thread": 10 + } + }, + { + "amount": "522.487366272", + "slot": { + "period": 3918155, + "thread": 1 + } + } + ], + "AU1hGtFNJVcDSWLNGFsBDJumvTxsmq4cFVbf24TYPKoHttmL5x1c": [ + { + "amount": "95.337964674", + "slot": { + "period": 150043, + "thread": 8 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 303744, + "thread": 15 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 398103, + "thread": 28 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 652065, + "thread": 8 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 810394, + "thread": 26 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 882841, + "thread": 3 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1136701, + "thread": 13 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1196518, + "thread": 8 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1345760, + "thread": 18 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1527764, + "thread": 15 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1788324, + "thread": 11 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1954017, + "thread": 1 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 1981800, + "thread": 4 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 2240321, + "thread": 1 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 2413274, + "thread": 7 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 2590398, + "thread": 11 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 2746200, + "thread": 25 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 2949475, + "thread": 8 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 3016991, + "thread": 10 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 3185950, + "thread": 31 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 3361032, + "thread": 19 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 3524618, + "thread": 1 + } + }, + { + "amount": "95.337964674", + "slot": { + "period": 3700144, + "thread": 3 + } + }, + { + "amount": "95.337964665", + "slot": { + "period": 3809067, + "thread": 23 + } + } + ], + "AU1hHtBRJCkFEE3xir6PrCBPYsmNvvMyS9ExEzSECgVoATdATRHb": [ + { + "amount": "58.407687621", + "slot": { + "period": 24673, + "thread": 1 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 205468, + "thread": 7 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 457630, + "thread": 5 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 598351, + "thread": 29 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 665279, + "thread": 5 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 837815, + "thread": 8 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1141410, + "thread": 24 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1181371, + "thread": 26 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1468009, + "thread": 25 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1561938, + "thread": 8 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1719308, + "thread": 2 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 1955811, + "thread": 28 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2102409, + "thread": 10 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2242227, + "thread": 11 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2299428, + "thread": 0 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2536210, + "thread": 10 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2678469, + "thread": 23 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 2879757, + "thread": 7 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 3029368, + "thread": 15 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 3162836, + "thread": 16 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 3427625, + "thread": 18 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 3510578, + "thread": 9 + } + }, + { + "amount": "58.407687621", + "slot": { + "period": 3721805, + "thread": 21 + } + }, + { + "amount": "58.407687625", + "slot": { + "period": 3784819, + "thread": 2 + } + } + ], + "AU1hHvEkXqjtzdjFr8r2Rt2ETJkoAmptq6Pko5HUb4A4RDTgDEQq": [ + { + "amount": "238.323998335", + "slot": { + "period": 50470, + "thread": 2 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 205435, + "thread": 8 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 346275, + "thread": 29 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 625684, + "thread": 8 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 657987, + "thread": 27 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 957032, + "thread": 8 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1101397, + "thread": 21 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1241044, + "thread": 2 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1345732, + "thread": 30 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1579895, + "thread": 8 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1779272, + "thread": 21 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1839389, + "thread": 7 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 1981627, + "thread": 28 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2194074, + "thread": 9 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2395206, + "thread": 28 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2504155, + "thread": 29 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2651931, + "thread": 14 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2821865, + "thread": 6 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 2989486, + "thread": 29 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 3160288, + "thread": 30 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 3384056, + "thread": 31 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 3594647, + "thread": 26 + } + }, + { + "amount": "238.323998335", + "slot": { + "period": 3751654, + "thread": 6 + } + }, + { + "amount": "238.323998344", + "slot": { + "period": 3815848, + "thread": 18 + } + } + ], + "AU1hJN9zeTeD6cwdK113VUivAFzzN23a39Do5yKqyLqJFgxiT3jy": [ + { + "amount": "197.876447205", + "slot": { + "period": 55041, + "thread": 12 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 207325, + "thread": 7 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 411391, + "thread": 1 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 516812, + "thread": 11 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 705928, + "thread": 5 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 931196, + "thread": 24 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 989849, + "thread": 30 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 1285676, + "thread": 6 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 1353144, + "thread": 2 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 1479938, + "thread": 10 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 1671070, + "thread": 30 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 1812211, + "thread": 20 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2100091, + "thread": 5 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2206788, + "thread": 28 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2359888, + "thread": 25 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2470290, + "thread": 9 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2757648, + "thread": 11 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 2825296, + "thread": 25 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 3067569, + "thread": 8 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 3199060, + "thread": 0 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 3359546, + "thread": 15 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 3462230, + "thread": 1 + } + }, + { + "amount": "197.876447205", + "slot": { + "period": 3642728, + "thread": 6 + } + }, + { + "amount": "197.876447212", + "slot": { + "period": 3914060, + "thread": 20 + } + } + ], + "AU1hJpvYKNMqbxTQTr7EppgqeFje4MU2XPHUWY7PLvaor2C9qprU": [ + { + "amount": "80.850910422", + "slot": { + "period": 82644, + "thread": 19 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 216586, + "thread": 25 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 397855, + "thread": 14 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 508088, + "thread": 4 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 724729, + "thread": 7 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 865322, + "thread": 6 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1119633, + "thread": 15 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1215416, + "thread": 2 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1335564, + "thread": 24 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1597889, + "thread": 12 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1655983, + "thread": 27 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 1848128, + "thread": 8 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2048834, + "thread": 29 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2252498, + "thread": 21 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2443450, + "thread": 29 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2621720, + "thread": 13 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2667503, + "thread": 16 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 2859924, + "thread": 31 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 3018771, + "thread": 25 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 3223383, + "thread": 23 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 3392719, + "thread": 18 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 3472488, + "thread": 13 + } + }, + { + "amount": "80.850910422", + "slot": { + "period": 3726054, + "thread": 0 + } + }, + { + "amount": "80.850910432", + "slot": { + "period": 3807546, + "thread": 21 + } + } + ], + "AU1hK4nTpwzb9qKSZsLbEaWmERtptPESFWeQTnH5rSKGiLiPuvNy": [ + { + "amount": "201.297550923", + "slot": { + "period": 151584, + "thread": 26 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 308652, + "thread": 9 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 394193, + "thread": 20 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 510520, + "thread": 4 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 670197, + "thread": 18 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 894388, + "thread": 6 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 983150, + "thread": 29 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 1293654, + "thread": 9 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 1396576, + "thread": 29 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 1508543, + "thread": 20 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 1751284, + "thread": 25 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 1933280, + "thread": 13 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2021784, + "thread": 20 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2156139, + "thread": 21 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2339458, + "thread": 26 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2468723, + "thread": 27 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2725741, + "thread": 23 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2917962, + "thread": 11 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 2961663, + "thread": 10 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 3279637, + "thread": 5 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 3305722, + "thread": 27 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 3590633, + "thread": 0 + } + }, + { + "amount": "201.297550923", + "slot": { + "period": 3637787, + "thread": 22 + } + }, + { + "amount": "201.297550931", + "slot": { + "period": 3906216, + "thread": 15 + } + } + ], + "AU1hKELgCkjFUtvVX6JA7dBpTiLcPsWx4BdoXg9HkvbXF5zdpHSb": [ + { + "amount": "105.273758237", + "slot": { + "period": 30345, + "thread": 16 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 177296, + "thread": 5 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 329884, + "thread": 5 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 574251, + "thread": 3 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 718729, + "thread": 10 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 847841, + "thread": 6 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 990717, + "thread": 14 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 1246137, + "thread": 27 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 1420758, + "thread": 6 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 1483783, + "thread": 12 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 1697110, + "thread": 0 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 1973729, + "thread": 18 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2078108, + "thread": 12 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2157175, + "thread": 8 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2417867, + "thread": 11 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2591643, + "thread": 3 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2670580, + "thread": 21 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2880983, + "thread": 18 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 2962292, + "thread": 19 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 3263214, + "thread": 14 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 3425664, + "thread": 6 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 3572928, + "thread": 10 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 3674099, + "thread": 4 + } + }, + { + "amount": "105.273758237", + "slot": { + "period": 3835908, + "thread": 12 + } + } + ], + "AU1hKFis2NXfEsvZfYzBvgbGEXiViXgVti8xZbr3RxCrUEnBjpM": [ + { + "amount": "302.101329211", + "slot": { + "period": 36408, + "thread": 0 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 303725, + "thread": 24 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 423995, + "thread": 22 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 620959, + "thread": 21 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 810954, + "thread": 15 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 846494, + "thread": 14 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1055953, + "thread": 1 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1185119, + "thread": 17 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1399749, + "thread": 21 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1607068, + "thread": 19 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1667879, + "thread": 5 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 1828731, + "thread": 15 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2088285, + "thread": 18 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2239548, + "thread": 28 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2451145, + "thread": 21 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2538884, + "thread": 13 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2720373, + "thread": 25 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 2925824, + "thread": 20 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 3120660, + "thread": 21 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 3190922, + "thread": 29 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 3428084, + "thread": 20 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 3494769, + "thread": 8 + } + }, + { + "amount": "302.101329211", + "slot": { + "period": 3651648, + "thread": 2 + } + }, + { + "amount": "302.101329217", + "slot": { + "period": 3826654, + "thread": 26 + } + } + ], + "AU1hMBr3yBj56CYT99yRNXUz17SWvYhPAPHy9jGESTq643i48aPW": [ + { + "amount": "171.720205409", + "slot": { + "period": 28014, + "thread": 23 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 248469, + "thread": 22 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 441059, + "thread": 8 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 634534, + "thread": 3 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 743666, + "thread": 23 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 868021, + "thread": 24 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1109476, + "thread": 31 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1229674, + "thread": 20 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1471611, + "thread": 4 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1614562, + "thread": 18 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1686708, + "thread": 25 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 1839334, + "thread": 9 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2087612, + "thread": 5 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2286998, + "thread": 29 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2419984, + "thread": 30 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2470116, + "thread": 30 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2790188, + "thread": 4 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2816775, + "thread": 14 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 2966230, + "thread": 30 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 3220246, + "thread": 21 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 3349609, + "thread": 26 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 3553593, + "thread": 9 + } + }, + { + "amount": "171.720205409", + "slot": { + "period": 3723102, + "thread": 29 + } + }, + { + "amount": "171.720205403", + "slot": { + "period": 3798283, + "thread": 23 + } + } + ], + "AU1hMKMJRzPzJQuVAW5mhdz317ahKLtzUCuAFY3nX5Dtt5ds5JZj": [ + { + "amount": "421.920582106", + "slot": { + "period": 156468, + "thread": 16 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 179675, + "thread": 4 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 464598, + "thread": 26 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 592946, + "thread": 9 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 734401, + "thread": 9 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 872604, + "thread": 14 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1105444, + "thread": 18 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1240813, + "thread": 11 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1409377, + "thread": 31 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1571810, + "thread": 15 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1748888, + "thread": 14 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1816332, + "thread": 1 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 1999833, + "thread": 4 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 2149103, + "thread": 14 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 2310582, + "thread": 24 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 2583492, + "thread": 24 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 2754859, + "thread": 20 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 2793792, + "thread": 21 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 3071267, + "thread": 16 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 3253786, + "thread": 18 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 3365096, + "thread": 12 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 3507070, + "thread": 27 + } + }, + { + "amount": "421.920582106", + "slot": { + "period": 3641919, + "thread": 3 + } + }, + { + "amount": "421.920582115", + "slot": { + "period": 3805089, + "thread": 18 + } + } + ], + "AU1hMgdJFmAXWVDy8YiQjHZkfnkdPFGRmT6ZgQD6uURqFeErXiyU": [ + { + "amount": "116.013896440", + "slot": { + "period": 155921, + "thread": 14 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 235196, + "thread": 25 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 347379, + "thread": 7 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 516868, + "thread": 17 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 766643, + "thread": 15 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 909989, + "thread": 7 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1047321, + "thread": 31 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1259868, + "thread": 23 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1411407, + "thread": 19 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1620908, + "thread": 0 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1668051, + "thread": 25 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 1811509, + "thread": 26 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2101402, + "thread": 6 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2288984, + "thread": 15 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2379927, + "thread": 21 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2542440, + "thread": 8 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2687407, + "thread": 4 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2938665, + "thread": 5 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 2997845, + "thread": 26 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 3233724, + "thread": 3 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 3314168, + "thread": 16 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 3598648, + "thread": 10 + } + }, + { + "amount": "116.013896440", + "slot": { + "period": 3727063, + "thread": 15 + } + }, + { + "amount": "116.013896429", + "slot": { + "period": 3805892, + "thread": 4 + } + } + ], + "AU1hMm3EgErZXpwmj4URSyfH2y7qxajpmJNcqpmpTdXRs9xZ8qBX": [ + { + "amount": "71.314316924", + "slot": { + "period": 32968, + "thread": 4 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 220917, + "thread": 31 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 488642, + "thread": 11 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 603901, + "thread": 19 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 731487, + "thread": 3 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 977356, + "thread": 24 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1058361, + "thread": 24 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1289189, + "thread": 17 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1425592, + "thread": 13 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1490582, + "thread": 7 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1665956, + "thread": 31 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 1912918, + "thread": 17 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2038373, + "thread": 11 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2233928, + "thread": 9 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2454421, + "thread": 8 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2487751, + "thread": 11 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2663555, + "thread": 6 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 2805765, + "thread": 31 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3030707, + "thread": 24 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3148519, + "thread": 21 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3386376, + "thread": 5 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3530319, + "thread": 30 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3695201, + "thread": 31 + } + }, + { + "amount": "71.314316924", + "slot": { + "period": 3873412, + "thread": 22 + } + } + ], + "AU1hNH9S3uX88iE86VrzP51ttKaxJKSHcWoTRdLnGwpd5Zcq2STG": [ + { + "amount": "179.175838855", + "slot": { + "period": 31872, + "thread": 28 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 226410, + "thread": 0 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 428791, + "thread": 28 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 537015, + "thread": 17 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 748787, + "thread": 14 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 885028, + "thread": 25 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1028401, + "thread": 15 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1226339, + "thread": 14 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1355375, + "thread": 2 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1618531, + "thread": 5 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1773227, + "thread": 4 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1875937, + "thread": 0 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 1983068, + "thread": 9 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 2292660, + "thread": 13 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 2448741, + "thread": 3 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 2525224, + "thread": 27 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 2715514, + "thread": 23 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 2829877, + "thread": 3 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 3018807, + "thread": 8 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 3254460, + "thread": 31 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 3428923, + "thread": 29 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 3555331, + "thread": 24 + } + }, + { + "amount": "179.175838855", + "slot": { + "period": 3727802, + "thread": 19 + } + }, + { + "amount": "179.175838861", + "slot": { + "period": 3891311, + "thread": 31 + } + } + ], + "AU1hRpQvj9GNai6V9o1fFBT3qv5ntH7KKxFHcJeCdv2QKoJhoeRU": [ + { + "amount": "4848312.717252474", + "slot": { + "period": 167400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 324000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 491400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 653400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 820800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 982800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1150200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1317600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1479600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1647000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1809000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 1976400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2143800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2295000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2462400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2624400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2791800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 2953800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3121200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3288600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3450600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3618000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3780000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 3947400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4114800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4266000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4433400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4595400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4762800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 4924800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5092200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5259600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5421600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5589000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5751000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 5918400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6085800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6237000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6404400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6566400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6733800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 6895800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7063200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7230600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7392600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7560000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7722000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 7889400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8056800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8213400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8380800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8542800, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8710200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 8872200, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 9039600, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 9207000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 9369000, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 9536400, + "thread": 0 + } + }, + { + "amount": "4848312.717252474", + "slot": { + "period": 9698400, + "thread": 0 + } + }, + { + "amount": "4848312.717252472", + "slot": { + "period": 9865800, + "thread": 0 + } + } + ], + "AU1hS7PujUUCggYLPM1JXVdp8sm6XmaGaYKzg9M8yugV4BZ91zu6": [ + { + "amount": "391.094552867", + "slot": { + "period": 86222, + "thread": 12 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 242992, + "thread": 21 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 356550, + "thread": 4 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 543926, + "thread": 18 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 800886, + "thread": 3 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 943046, + "thread": 2 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1055718, + "thread": 2 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1243357, + "thread": 28 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1429549, + "thread": 7 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1503818, + "thread": 11 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1786035, + "thread": 10 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 1933970, + "thread": 18 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2127056, + "thread": 31 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2251008, + "thread": 23 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2358453, + "thread": 5 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2608427, + "thread": 30 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2683793, + "thread": 11 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 2910665, + "thread": 28 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 3014105, + "thread": 1 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 3208224, + "thread": 17 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 3296713, + "thread": 31 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 3503676, + "thread": 21 + } + }, + { + "amount": "391.094552867", + "slot": { + "period": 3652897, + "thread": 7 + } + }, + { + "amount": "391.094552877", + "slot": { + "period": 3839804, + "thread": 23 + } + } + ], + "AU1hTsViv1qD3e9apdbZTK4hQmQrZ84Ei8yh2FRC3QRn28oiuVWr": [ + { + "amount": "79.654402076", + "slot": { + "period": 166695, + "thread": 3 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 239596, + "thread": 27 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 437164, + "thread": 19 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 510998, + "thread": 21 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 686371, + "thread": 18 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 864751, + "thread": 1 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1032130, + "thread": 1 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1187251, + "thread": 30 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1335774, + "thread": 5 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1637729, + "thread": 13 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1665416, + "thread": 9 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1895538, + "thread": 10 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 1979949, + "thread": 26 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 2182322, + "thread": 10 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 2331690, + "thread": 1 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 2486109, + "thread": 4 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 2669382, + "thread": 24 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 2888988, + "thread": 11 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 3121187, + "thread": 23 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 3214695, + "thread": 31 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 3395834, + "thread": 16 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 3599552, + "thread": 21 + } + }, + { + "amount": "79.654402076", + "slot": { + "period": 3745564, + "thread": 20 + } + }, + { + "amount": "79.654402075", + "slot": { + "period": 3930696, + "thread": 21 + } + } + ], + "AU1hUE6V9jZEouqJAQzMiHE2r7MRDXQapQ7M7Bi6BnRhqEwKSo4x": [ + { + "amount": "194.642493713", + "slot": { + "period": 79372, + "thread": 20 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 264132, + "thread": 5 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 373314, + "thread": 12 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 575803, + "thread": 9 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 805711, + "thread": 20 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 963444, + "thread": 2 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1042070, + "thread": 20 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1303636, + "thread": 5 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1333252, + "thread": 7 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1565214, + "thread": 13 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1715955, + "thread": 21 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 1967459, + "thread": 19 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2079331, + "thread": 0 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2170250, + "thread": 7 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2345780, + "thread": 2 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2577321, + "thread": 3 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2725685, + "thread": 1 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 2836636, + "thread": 6 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 3115590, + "thread": 24 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 3192880, + "thread": 22 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 3376222, + "thread": 25 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 3517524, + "thread": 22 + } + }, + { + "amount": "194.642493713", + "slot": { + "period": 3752602, + "thread": 4 + } + }, + { + "amount": "194.642493703", + "slot": { + "period": 3876871, + "thread": 1 + } + } + ], + "AU1hVnJqQbYsJAhuUhhfXGLqbp4RAdZW1MGTRyh46p8ASYiMX117": [ + { + "amount": "124.837571713", + "slot": { + "period": 104023, + "thread": 3 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 210066, + "thread": 28 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 353464, + "thread": 21 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 555413, + "thread": 26 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 794628, + "thread": 10 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 944007, + "thread": 16 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1015896, + "thread": 25 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1307325, + "thread": 9 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1341982, + "thread": 23 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1614641, + "thread": 8 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1786717, + "thread": 10 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1916082, + "thread": 16 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 1979171, + "thread": 13 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2235243, + "thread": 0 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2371141, + "thread": 15 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2594389, + "thread": 24 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2661724, + "thread": 8 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2889589, + "thread": 20 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 2970895, + "thread": 9 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 3143525, + "thread": 21 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 3356363, + "thread": 18 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 3577199, + "thread": 20 + } + }, + { + "amount": "124.837571713", + "slot": { + "period": 3747616, + "thread": 24 + } + }, + { + "amount": "124.837571723", + "slot": { + "period": 3947302, + "thread": 28 + } + } + ], + "AU1hWW7aXwAfWGsQKRX6kVTVxjpGUs3w9PSvaHBC3gtD5VGUoG6j": [ + { + "amount": "93.405489425", + "slot": { + "period": 120716, + "thread": 5 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 295902, + "thread": 24 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 474952, + "thread": 0 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 532958, + "thread": 28 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 775626, + "thread": 6 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 849144, + "thread": 31 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1146636, + "thread": 8 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1177497, + "thread": 7 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1464814, + "thread": 23 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1630347, + "thread": 8 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1729343, + "thread": 30 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 1813207, + "thread": 0 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2073730, + "thread": 1 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2174648, + "thread": 24 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2349734, + "thread": 24 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2595567, + "thread": 29 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2642326, + "thread": 13 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2934778, + "thread": 19 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 2973131, + "thread": 14 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 3142867, + "thread": 17 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 3371417, + "thread": 14 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 3483013, + "thread": 29 + } + }, + { + "amount": "93.405489425", + "slot": { + "period": 3653108, + "thread": 26 + } + }, + { + "amount": "93.405489430", + "slot": { + "period": 3868212, + "thread": 7 + } + } + ], + "AU1hWdJjtaaeBL8S8uZhSW3SknENWCVdmzSUoRGJbmEzr9uEwT1y": [ + { + "amount": "383.445266181", + "slot": { + "period": 58267, + "thread": 9 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 255655, + "thread": 17 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 439562, + "thread": 24 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 619090, + "thread": 15 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 669036, + "thread": 10 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 850319, + "thread": 28 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 997694, + "thread": 14 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 1288028, + "thread": 17 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 1353245, + "thread": 11 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 1614716, + "thread": 26 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 1708275, + "thread": 29 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 1857021, + "thread": 15 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2107234, + "thread": 20 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2246981, + "thread": 11 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2298939, + "thread": 3 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2536894, + "thread": 6 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2752649, + "thread": 10 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 2836018, + "thread": 20 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 3064206, + "thread": 26 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 3228559, + "thread": 7 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 3343329, + "thread": 4 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 3535006, + "thread": 21 + } + }, + { + "amount": "383.445266181", + "slot": { + "period": 3676495, + "thread": 28 + } + }, + { + "amount": "383.445266170", + "slot": { + "period": 3817200, + "thread": 23 + } + } + ], + "AU1hXEv2Rk3qm4uHEFaDLiMAX6LEuGe6LaqeBQMYLzY48YmJvSck": [ + { + "amount": "238.983478993", + "slot": { + "period": 92885, + "thread": 24 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 260357, + "thread": 5 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 393726, + "thread": 14 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 611358, + "thread": 20 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 721312, + "thread": 30 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 834643, + "thread": 12 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1051880, + "thread": 6 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1274967, + "thread": 14 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1363521, + "thread": 27 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1500507, + "thread": 31 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1756192, + "thread": 27 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 1873504, + "thread": 5 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2057895, + "thread": 1 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2208434, + "thread": 19 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2308052, + "thread": 31 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2570153, + "thread": 1 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2686326, + "thread": 5 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2845049, + "thread": 4 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 2968674, + "thread": 0 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 3163607, + "thread": 14 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 3368688, + "thread": 26 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 3614366, + "thread": 4 + } + }, + { + "amount": "238.983478993", + "slot": { + "period": 3741243, + "thread": 13 + } + }, + { + "amount": "238.983478991", + "slot": { + "period": 3838935, + "thread": 17 + } + } + ], + "AU1hXNfiFKae7SzVGMPCnrCV38PXUw3TPqwJ9njeGAQpMCAQCbMp": [ + { + "amount": "483.568599703", + "slot": { + "period": 107150, + "thread": 24 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 224543, + "thread": 12 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 371922, + "thread": 1 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 610096, + "thread": 12 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 713947, + "thread": 20 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 928717, + "thread": 24 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1143127, + "thread": 7 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1240199, + "thread": 2 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1420669, + "thread": 11 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1591602, + "thread": 24 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1742351, + "thread": 6 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 1896212, + "thread": 19 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2143729, + "thread": 19 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2236752, + "thread": 20 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2307002, + "thread": 24 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2567318, + "thread": 30 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2745405, + "thread": 3 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 2904905, + "thread": 18 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 3016035, + "thread": 13 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 3179633, + "thread": 29 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 3358310, + "thread": 9 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 3499497, + "thread": 1 + } + }, + { + "amount": "483.568599703", + "slot": { + "period": 3698428, + "thread": 21 + } + }, + { + "amount": "483.568599701", + "slot": { + "period": 3814067, + "thread": 9 + } + } + ], + "AU1hZwvHyLph3wHaCuxSZvVcrZDNTjErFRW3YsHaAfQe2r7gF9sQ": [ + { + "amount": "92.885480103", + "slot": { + "period": 54227, + "thread": 14 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 186198, + "thread": 17 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 473953, + "thread": 23 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 625690, + "thread": 3 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 675161, + "thread": 16 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 923790, + "thread": 4 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1006418, + "thread": 6 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1232393, + "thread": 21 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1317814, + "thread": 1 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1618379, + "thread": 22 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1801736, + "thread": 10 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 1865379, + "thread": 10 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2119360, + "thread": 0 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2154915, + "thread": 13 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2300615, + "thread": 11 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2574532, + "thread": 1 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2722822, + "thread": 30 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 2800126, + "thread": 17 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 3088320, + "thread": 0 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 3153972, + "thread": 14 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 3354762, + "thread": 21 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 3505493, + "thread": 19 + } + }, + { + "amount": "92.885480103", + "slot": { + "period": 3668236, + "thread": 9 + } + }, + { + "amount": "92.885480100", + "slot": { + "period": 3805789, + "thread": 24 + } + } + ], + "AU1haR67t9GnZJgvY2ZcgCitM1bwVMQ2dEgqDxxJMQ4xoivnQJv5": [ + { + "amount": "11666.666666667", + "slot": { + "period": 112173, + "thread": 2 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 242164, + "thread": 28 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 362558, + "thread": 12 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 647955, + "thread": 28 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 706145, + "thread": 27 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 824391, + "thread": 17 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1030082, + "thread": 25 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1282328, + "thread": 10 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1372621, + "thread": 14 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1601838, + "thread": 14 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1713889, + "thread": 27 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1914368, + "thread": 10 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 1977949, + "thread": 22 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2233905, + "thread": 8 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2448307, + "thread": 18 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2477254, + "thread": 21 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2697841, + "thread": 0 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 2812604, + "thread": 3 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3093152, + "thread": 21 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3162757, + "thread": 6 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3333860, + "thread": 25 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3497010, + "thread": 30 + } + }, + { + "amount": "11666.666666667", + "slot": { + "period": 3648586, + "thread": 3 + } + }, + { + "amount": "11666.666666659", + "slot": { + "period": 3807964, + "thread": 1 + } + } + ], + "AU1hbE3s2FRPQwNit5ARjvywSt1Qw1M3ai9PRTdHNYX1UdFLU1ZL": [ + { + "amount": "190.304468600", + "slot": { + "period": 106446, + "thread": 23 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 201069, + "thread": 6 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 411534, + "thread": 22 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 521496, + "thread": 1 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 810194, + "thread": 29 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 873364, + "thread": 18 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1015154, + "thread": 14 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1213534, + "thread": 29 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1445169, + "thread": 2 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1488941, + "thread": 6 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1691753, + "thread": 19 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 1838224, + "thread": 30 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2055643, + "thread": 11 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2239017, + "thread": 21 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2423058, + "thread": 28 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2567538, + "thread": 2 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2658164, + "thread": 20 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 2888115, + "thread": 28 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 3045374, + "thread": 6 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 3280796, + "thread": 30 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 3440297, + "thread": 19 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 3518402, + "thread": 16 + } + }, + { + "amount": "190.304468600", + "slot": { + "period": 3753995, + "thread": 22 + } + }, + { + "amount": "190.304468612", + "slot": { + "period": 3893539, + "thread": 2 + } + } + ], + "AU1hbzZCFRJKVeCHWgKL9LyMEAAvrJRgyykCXvvfjzpfZnuNnGJ4": [ + { + "amount": "546.629297592", + "slot": { + "period": 121968, + "thread": 1 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 195407, + "thread": 11 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 455854, + "thread": 17 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 507971, + "thread": 29 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 697992, + "thread": 1 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 906329, + "thread": 1 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1035728, + "thread": 19 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1311677, + "thread": 4 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1373708, + "thread": 13 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1630922, + "thread": 12 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1804071, + "thread": 18 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 1821958, + "thread": 4 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2126416, + "thread": 19 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2208290, + "thread": 3 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2394437, + "thread": 21 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2554801, + "thread": 20 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2683765, + "thread": 30 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2893891, + "thread": 14 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 2953975, + "thread": 12 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 3206607, + "thread": 15 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 3417406, + "thread": 26 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 3516306, + "thread": 26 + } + }, + { + "amount": "546.629297592", + "slot": { + "period": 3710345, + "thread": 16 + } + }, + { + "amount": "546.629297595", + "slot": { + "period": 3905901, + "thread": 18 + } + } + ], + "AU1hcLQSLPpPx1RXHpCcPyPkrueXkbyb8uzveBZGmc4QTJULXkQ3": [ + { + "amount": "372.083887057", + "slot": { + "period": 162076, + "thread": 25 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 242041, + "thread": 9 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 371159, + "thread": 10 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 538964, + "thread": 29 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 734084, + "thread": 11 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 945516, + "thread": 7 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1056140, + "thread": 4 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1285183, + "thread": 25 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1356258, + "thread": 11 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1540317, + "thread": 25 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1762218, + "thread": 5 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 1897211, + "thread": 21 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2045584, + "thread": 11 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2191752, + "thread": 16 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2449502, + "thread": 18 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2601115, + "thread": 13 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2686181, + "thread": 2 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 2861825, + "thread": 28 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 3041837, + "thread": 1 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 3218120, + "thread": 26 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 3324905, + "thread": 1 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 3608089, + "thread": 16 + } + }, + { + "amount": "372.083887057", + "slot": { + "period": 3645625, + "thread": 16 + } + }, + { + "amount": "372.083887047", + "slot": { + "period": 3827351, + "thread": 28 + } + } + ], + "AU1hdTiirHeHsyptoorm2N7kPpBjCptyeDvgx5rimsrZ7W9Uv9na": [ + { + "amount": "94.680468605", + "slot": { + "period": 150653, + "thread": 29 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 258436, + "thread": 20 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 431903, + "thread": 14 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 494002, + "thread": 8 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 715215, + "thread": 5 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 970635, + "thread": 14 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1100088, + "thread": 26 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1203142, + "thread": 2 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1379734, + "thread": 7 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1492249, + "thread": 18 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1770988, + "thread": 27 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 1885147, + "thread": 0 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2133930, + "thread": 8 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2235773, + "thread": 17 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2341612, + "thread": 0 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2570701, + "thread": 4 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2639156, + "thread": 2 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2921926, + "thread": 31 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 2993233, + "thread": 4 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 3221997, + "thread": 13 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 3441557, + "thread": 11 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 3502964, + "thread": 8 + } + }, + { + "amount": "94.680468605", + "slot": { + "period": 3738260, + "thread": 8 + } + }, + { + "amount": "94.680468610", + "slot": { + "period": 3831002, + "thread": 26 + } + } + ], + "AU1hdqNMViKezHdHxxXh3Dw6ro4Njzgscik4toaMwo1kdLRhWkWy": [ + { + "amount": "316.477692677", + "slot": { + "period": 42214, + "thread": 25 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 181101, + "thread": 4 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 419969, + "thread": 30 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 555880, + "thread": 10 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 695175, + "thread": 13 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 915445, + "thread": 7 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1108298, + "thread": 9 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1291132, + "thread": 25 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1328890, + "thread": 12 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1486619, + "thread": 10 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1768465, + "thread": 28 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 1868176, + "thread": 24 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2055673, + "thread": 24 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2230470, + "thread": 24 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2428820, + "thread": 6 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2498436, + "thread": 31 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2696427, + "thread": 22 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 2872977, + "thread": 11 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 3095189, + "thread": 7 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 3273729, + "thread": 16 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 3403100, + "thread": 12 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 3524959, + "thread": 22 + } + }, + { + "amount": "316.477692677", + "slot": { + "period": 3714209, + "thread": 1 + } + }, + { + "amount": "316.477692687", + "slot": { + "period": 3796562, + "thread": 8 + } + } + ], + "AU1hdsok99JiiP6BYzeWLLxyTqV7ERJroJXHncy9r3f8witVyNCS": [ + { + "amount": "183.911452749", + "slot": { + "period": 32058, + "thread": 11 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 254979, + "thread": 5 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 353816, + "thread": 16 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 533871, + "thread": 18 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 657624, + "thread": 4 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 911148, + "thread": 20 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1087249, + "thread": 7 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1185826, + "thread": 29 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1392483, + "thread": 30 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1595549, + "thread": 19 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1683053, + "thread": 12 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 1913737, + "thread": 1 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2037656, + "thread": 21 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2246348, + "thread": 25 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2402479, + "thread": 27 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2521292, + "thread": 1 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2705666, + "thread": 29 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 2898511, + "thread": 18 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 3066030, + "thread": 28 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 3245312, + "thread": 11 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 3295836, + "thread": 24 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 3564330, + "thread": 1 + } + }, + { + "amount": "183.911452749", + "slot": { + "period": 3727186, + "thread": 25 + } + }, + { + "amount": "183.911452744", + "slot": { + "period": 3788884, + "thread": 2 + } + } + ], + "AU1hfAbxDZWENa2mwvPDDBeUJKAdY6aD9asGwo6rdFen3fecjc8w": [ + { + "amount": "306.997848807", + "slot": { + "period": 155089, + "thread": 10 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 191535, + "thread": 6 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 404223, + "thread": 0 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 519326, + "thread": 7 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 727279, + "thread": 21 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 943723, + "thread": 13 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1004823, + "thread": 6 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1150284, + "thread": 12 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1322685, + "thread": 5 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1619353, + "thread": 23 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1660427, + "thread": 21 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1874648, + "thread": 9 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 1984724, + "thread": 27 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 2199727, + "thread": 24 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 2416453, + "thread": 17 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 2509116, + "thread": 20 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 2687708, + "thread": 13 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 2809167, + "thread": 31 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 3003489, + "thread": 13 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 3244607, + "thread": 19 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 3368275, + "thread": 29 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 3452020, + "thread": 27 + } + }, + { + "amount": "306.997848807", + "slot": { + "period": 3725418, + "thread": 20 + } + }, + { + "amount": "306.997848815", + "slot": { + "period": 3850637, + "thread": 11 + } + } + ], + "AU1hfBgMsnFoECYr8Dz5c2diPN2NGDkuLdyPZiHNgwT5Bo36W19s": [ + { + "amount": "87.628476339", + "slot": { + "period": 130009, + "thread": 13 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 249425, + "thread": 7 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 381991, + "thread": 14 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 517826, + "thread": 27 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 734697, + "thread": 30 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 846383, + "thread": 16 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 991481, + "thread": 14 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 1305367, + "thread": 9 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 1435080, + "thread": 18 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 1608333, + "thread": 19 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 1770438, + "thread": 0 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 1827239, + "thread": 16 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2037288, + "thread": 6 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2186968, + "thread": 15 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2413041, + "thread": 24 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2510776, + "thread": 8 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2760732, + "thread": 29 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2822045, + "thread": 17 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 2990025, + "thread": 21 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 3121716, + "thread": 28 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 3298674, + "thread": 16 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 3511115, + "thread": 5 + } + }, + { + "amount": "87.628476339", + "slot": { + "period": 3701955, + "thread": 6 + } + }, + { + "amount": "87.628476334", + "slot": { + "period": 3864400, + "thread": 8 + } + } + ], + "AU1hgCTwNaohYUpwmJndG4jZZ2MxXERBV2qrykNd3cqNTCrgQFLN": [ + { + "amount": "82.208442260", + "slot": { + "period": 15722, + "thread": 20 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 287982, + "thread": 19 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 395692, + "thread": 19 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 626911, + "thread": 28 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 692659, + "thread": 10 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 921728, + "thread": 21 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1086357, + "thread": 8 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1168046, + "thread": 28 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1463218, + "thread": 21 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1528699, + "thread": 30 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1700765, + "thread": 21 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 1965749, + "thread": 22 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2007787, + "thread": 6 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2181787, + "thread": 21 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2461858, + "thread": 26 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2467223, + "thread": 18 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2747433, + "thread": 4 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2822108, + "thread": 5 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 2997296, + "thread": 7 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 3281254, + "thread": 24 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 3372776, + "thread": 26 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 3516556, + "thread": 27 + } + }, + { + "amount": "82.208442260", + "slot": { + "period": 3680696, + "thread": 2 + } + }, + { + "amount": "82.208442255", + "slot": { + "period": 3824500, + "thread": 5 + } + } + ], + "AU1hgNf2CvjtGgqjpL6uq7pEecvWBTuDrwaWRHEhZraZXLhbEJvM": [ + { + "amount": "261.749529621", + "slot": { + "period": 36271, + "thread": 19 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 169883, + "thread": 8 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 447558, + "thread": 20 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 562593, + "thread": 26 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 744403, + "thread": 26 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 821104, + "thread": 23 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 984273, + "thread": 11 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 1296968, + "thread": 4 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 1399716, + "thread": 20 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 1541454, + "thread": 6 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 1803151, + "thread": 4 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 1869615, + "thread": 14 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2071215, + "thread": 31 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2288746, + "thread": 11 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2298369, + "thread": 22 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2592730, + "thread": 24 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2720963, + "thread": 25 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 2842874, + "thread": 22 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 3001473, + "thread": 1 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 3145761, + "thread": 31 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 3343917, + "thread": 11 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 3472462, + "thread": 4 + } + }, + { + "amount": "261.749529621", + "slot": { + "period": 3641188, + "thread": 19 + } + }, + { + "amount": "261.749529632", + "slot": { + "period": 3862654, + "thread": 30 + } + } + ], + "AU1hgnKLm1rUAFgpHn7dUUEU2ubyfqnz9a2JVxsYhXhkC5LDLrZ9": [ + { + "amount": "2916.666666667", + "slot": { + "period": 49504, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 309646, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 365283, + "thread": 19 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 622088, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 820220, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 976566, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1114650, + "thread": 29 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1299927, + "thread": 10 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1382940, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1496292, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1699976, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1958232, + "thread": 4 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1988923, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2232504, + "thread": 27 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2313692, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2481406, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2752090, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2842699, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3073281, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3233362, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3432312, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3498702, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3744823, + "thread": 0 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3850360, + "thread": 15 + } + } + ], + "AU1hhgns5C44xgxwRysmV2jNLWpCQiHKqrzx8oWHmjK5W5LBv6ZH": [ + { + "amount": "172.377817318", + "slot": { + "period": 28490, + "thread": 12 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 235394, + "thread": 19 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 466617, + "thread": 12 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 612058, + "thread": 7 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 674495, + "thread": 19 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 966651, + "thread": 10 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1092780, + "thread": 3 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1176283, + "thread": 26 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1371236, + "thread": 16 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1571035, + "thread": 5 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1696097, + "thread": 13 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 1846405, + "thread": 13 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2066212, + "thread": 7 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2223439, + "thread": 0 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2316397, + "thread": 28 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2568705, + "thread": 30 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2638073, + "thread": 1 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 2913896, + "thread": 6 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 3078603, + "thread": 14 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 3145571, + "thread": 4 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 3356281, + "thread": 20 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 3546285, + "thread": 23 + } + }, + { + "amount": "172.377817318", + "slot": { + "period": 3718523, + "thread": 5 + } + }, + { + "amount": "172.377817319", + "slot": { + "period": 3908019, + "thread": 7 + } + } + ], + "AU1hi9U8W6RUTQYmGcYTitbUcJ9ModgtZS2yt3Q1zUJGLxzBTQTe": [ + { + "amount": "176.506704421", + "slot": { + "period": 17136, + "thread": 23 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 200430, + "thread": 2 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 422913, + "thread": 2 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 549668, + "thread": 8 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 720080, + "thread": 6 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 909270, + "thread": 9 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1126051, + "thread": 12 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1254087, + "thread": 27 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1386160, + "thread": 20 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1621792, + "thread": 22 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1761540, + "thread": 28 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 1938001, + "thread": 21 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2104788, + "thread": 14 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2283316, + "thread": 31 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2461706, + "thread": 21 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2577154, + "thread": 18 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2701584, + "thread": 8 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2922344, + "thread": 11 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 2979507, + "thread": 2 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 3149836, + "thread": 21 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 3434008, + "thread": 6 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 3466825, + "thread": 2 + } + }, + { + "amount": "176.506704421", + "slot": { + "period": 3680399, + "thread": 8 + } + }, + { + "amount": "176.506704420", + "slot": { + "period": 3941818, + "thread": 2 + } + } + ], + "AU1hjf4xZkzMcgcLLeKoKoboFUcbzXKwe4vm9uzLQ37e1tyD9dcj": [ + { + "amount": "62.921898734", + "slot": { + "period": 19678, + "thread": 7 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 206753, + "thread": 4 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 401548, + "thread": 28 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 642595, + "thread": 29 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 659345, + "thread": 0 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 828584, + "thread": 0 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1139597, + "thread": 31 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1290933, + "thread": 1 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1363145, + "thread": 23 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1546396, + "thread": 11 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1751513, + "thread": 14 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 1947035, + "thread": 30 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2123250, + "thread": 26 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2280936, + "thread": 22 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2392427, + "thread": 24 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2617236, + "thread": 30 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2732885, + "thread": 18 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 2808154, + "thread": 30 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 3005382, + "thread": 3 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 3240125, + "thread": 26 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 3360235, + "thread": 5 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 3525342, + "thread": 13 + } + }, + { + "amount": "62.921898734", + "slot": { + "period": 3623485, + "thread": 2 + } + }, + { + "amount": "62.921898726", + "slot": { + "period": 3904664, + "thread": 19 + } + } + ], + "AU1hkVhPK4Fj3JaZdJjxcrzymxmQvbKPdvZdei7S4d7xeBxFjQuS": [ + { + "amount": "140.617132315", + "slot": { + "period": 38501, + "thread": 2 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 301671, + "thread": 10 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 378166, + "thread": 24 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 652534, + "thread": 15 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 806164, + "thread": 26 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 832359, + "thread": 16 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1135532, + "thread": 15 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1312468, + "thread": 31 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1464327, + "thread": 20 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1511302, + "thread": 0 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1659384, + "thread": 26 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 1835393, + "thread": 19 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2136331, + "thread": 9 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2289185, + "thread": 3 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2333798, + "thread": 26 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2599231, + "thread": 14 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2688748, + "thread": 13 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 2938861, + "thread": 25 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 3068692, + "thread": 0 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 3246253, + "thread": 10 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 3379708, + "thread": 13 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 3542693, + "thread": 29 + } + }, + { + "amount": "140.617132315", + "slot": { + "period": 3726515, + "thread": 5 + } + }, + { + "amount": "140.617132325", + "slot": { + "period": 3873548, + "thread": 0 + } + } + ], + "AU1hm1xkFFr4vAnVNsjvccA9kxVpB1isDj9Lw6Mx5Pxf4NLhq3nD": [ + { + "amount": "120.006318158", + "slot": { + "period": 54951, + "thread": 17 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 284877, + "thread": 7 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 431020, + "thread": 24 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 539199, + "thread": 11 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 747789, + "thread": 5 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 934576, + "thread": 26 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1089510, + "thread": 29 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1229850, + "thread": 28 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1442088, + "thread": 7 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1571341, + "thread": 0 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1659181, + "thread": 31 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 1948716, + "thread": 12 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2112597, + "thread": 19 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2233344, + "thread": 15 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2398664, + "thread": 4 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2621079, + "thread": 16 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2658578, + "thread": 13 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2810262, + "thread": 28 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 2958638, + "thread": 23 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 3287151, + "thread": 19 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 3351631, + "thread": 21 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 3560986, + "thread": 21 + } + }, + { + "amount": "120.006318158", + "slot": { + "period": 3718691, + "thread": 29 + } + }, + { + "amount": "120.006318163", + "slot": { + "period": 3781316, + "thread": 10 + } + } + ], + "AU1hntRfUym2wDKgyaCE73ad63hX5QMj9mH4ctTyPagEH7GbnL4p": [ + { + "amount": "339.791257452", + "slot": { + "period": 74783, + "thread": 2 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 273692, + "thread": 8 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 449288, + "thread": 13 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 569231, + "thread": 14 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 787636, + "thread": 25 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 915868, + "thread": 12 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1077806, + "thread": 26 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1151649, + "thread": 31 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1461665, + "thread": 26 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1599891, + "thread": 17 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1736799, + "thread": 4 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 1862110, + "thread": 1 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2061993, + "thread": 0 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2266078, + "thread": 17 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2445235, + "thread": 31 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2536154, + "thread": 9 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2690018, + "thread": 7 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2853569, + "thread": 12 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 2962854, + "thread": 6 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 3177997, + "thread": 9 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 3364885, + "thread": 26 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 3571441, + "thread": 17 + } + }, + { + "amount": "339.791257452", + "slot": { + "period": 3744120, + "thread": 20 + } + }, + { + "amount": "339.791257457", + "slot": { + "period": 3943399, + "thread": 27 + } + } + ], + "AU1hoP2AB3RYnUQXwAKTq11qrxfSNh8RpcZVhCmAky9r14fqv5rA": [ + { + "amount": "199.580274996", + "slot": { + "period": 84587, + "thread": 31 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 208049, + "thread": 26 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 489509, + "thread": 10 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 608922, + "thread": 0 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 674337, + "thread": 19 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 833132, + "thread": 6 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1051413, + "thread": 7 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1252729, + "thread": 25 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1422766, + "thread": 6 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1567112, + "thread": 13 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1672569, + "thread": 2 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 1887308, + "thread": 18 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2082920, + "thread": 17 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2196489, + "thread": 18 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2388399, + "thread": 19 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2562571, + "thread": 14 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2744093, + "thread": 18 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 2940312, + "thread": 29 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 3076904, + "thread": 24 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 3222474, + "thread": 16 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 3439134, + "thread": 25 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 3539451, + "thread": 14 + } + }, + { + "amount": "199.580274996", + "slot": { + "period": 3752376, + "thread": 19 + } + }, + { + "amount": "199.580275004", + "slot": { + "period": 3845358, + "thread": 10 + } + } + ], + "AU1hoag6nEfhJ7YB3AZfyNtiJgKWxiEnVHJFVDe77zWptgP5rams": [ + { + "amount": "188.739237137", + "slot": { + "period": 77484, + "thread": 11 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 204281, + "thread": 29 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 436395, + "thread": 19 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 535889, + "thread": 12 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 697860, + "thread": 14 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 918184, + "thread": 6 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1076051, + "thread": 20 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1302818, + "thread": 4 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1320041, + "thread": 4 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1490605, + "thread": 1 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1673291, + "thread": 23 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 1960394, + "thread": 23 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2116704, + "thread": 21 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2158121, + "thread": 30 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2436905, + "thread": 10 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2622076, + "thread": 24 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2625709, + "thread": 11 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2926580, + "thread": 0 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 2997070, + "thread": 6 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 3210961, + "thread": 4 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 3310220, + "thread": 1 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 3538191, + "thread": 20 + } + }, + { + "amount": "188.739237137", + "slot": { + "period": 3778923, + "thread": 28 + } + }, + { + "amount": "188.739237133", + "slot": { + "period": 3801619, + "thread": 1 + } + } + ], + "AU1hoqqvh5GkCZw7c44KXH5df7vPp8XsN7X1C6MiJtpJ5SU3bcst": [ + { + "amount": "214.879626772", + "slot": { + "period": 53802, + "thread": 23 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 284279, + "thread": 29 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 454249, + "thread": 7 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 630154, + "thread": 15 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 654789, + "thread": 13 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 946409, + "thread": 7 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 992631, + "thread": 6 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 1280749, + "thread": 3 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 1402066, + "thread": 24 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 1482914, + "thread": 7 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 1667084, + "thread": 27 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 1877749, + "thread": 30 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2091272, + "thread": 15 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2165172, + "thread": 25 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2318917, + "thread": 4 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2498865, + "thread": 28 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2788512, + "thread": 5 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 2929766, + "thread": 9 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 3029504, + "thread": 21 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 3200486, + "thread": 1 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 3304885, + "thread": 15 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 3499428, + "thread": 25 + } + }, + { + "amount": "214.879626772", + "slot": { + "period": 3638151, + "thread": 8 + } + }, + { + "amount": "214.879626771", + "slot": { + "period": 3856356, + "thread": 10 + } + } + ], + "AU1hpYGkmCe3iQ76xj2j6U8paHKcBdzEExXnopVqgv2Lgkg2WQGd": [ + { + "amount": "303.927834411", + "slot": { + "period": 54143, + "thread": 21 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 236021, + "thread": 12 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 409483, + "thread": 20 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 533590, + "thread": 9 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 785134, + "thread": 17 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 898612, + "thread": 29 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1049480, + "thread": 1 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1272526, + "thread": 21 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1473849, + "thread": 18 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1507613, + "thread": 24 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1724833, + "thread": 24 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 1940629, + "thread": 1 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2021476, + "thread": 28 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2240722, + "thread": 10 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2360724, + "thread": 26 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2532665, + "thread": 22 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2631791, + "thread": 2 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 2809784, + "thread": 18 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 3038216, + "thread": 19 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 3256588, + "thread": 26 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 3431955, + "thread": 24 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 3522910, + "thread": 8 + } + }, + { + "amount": "303.927834411", + "slot": { + "period": 3632795, + "thread": 12 + } + }, + { + "amount": "303.927834403", + "slot": { + "period": 3846972, + "thread": 7 + } + } + ], + "AU1hphgKaJJL1zbV4PZPXwTTdUVVZiHFiY8VYoRJXFq8wfZH26q1": [ + { + "amount": "278.118359094", + "slot": { + "period": 60372, + "thread": 4 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 204274, + "thread": 26 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 422543, + "thread": 23 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 516095, + "thread": 5 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 690125, + "thread": 26 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 962067, + "thread": 1 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1088232, + "thread": 24 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1280624, + "thread": 23 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1435489, + "thread": 23 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1638694, + "thread": 7 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1680426, + "thread": 21 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 1936819, + "thread": 19 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2071658, + "thread": 20 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2258610, + "thread": 2 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2313686, + "thread": 3 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2467257, + "thread": 0 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2698419, + "thread": 7 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 2945698, + "thread": 3 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3071041, + "thread": 16 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3207267, + "thread": 20 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3358652, + "thread": 8 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3564460, + "thread": 4 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3631981, + "thread": 0 + } + }, + { + "amount": "278.118359094", + "slot": { + "period": 3882365, + "thread": 0 + } + } + ], + "AU1hq6oUjpdrfdRDXfDZKNk5qbADHuqLAR6pVUosLQhQdQosCHk3": [ + { + "amount": "423.517000421", + "slot": { + "period": 106792, + "thread": 19 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 283717, + "thread": 30 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 395947, + "thread": 15 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 561203, + "thread": 31 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 753489, + "thread": 7 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 922724, + "thread": 1 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1059884, + "thread": 11 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1163817, + "thread": 6 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1424630, + "thread": 6 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1509622, + "thread": 17 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1803157, + "thread": 3 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 1944113, + "thread": 24 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2120319, + "thread": 5 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2170992, + "thread": 26 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2295040, + "thread": 7 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2532009, + "thread": 18 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2741432, + "thread": 7 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 2815432, + "thread": 15 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 3117698, + "thread": 12 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 3230506, + "thread": 4 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 3380259, + "thread": 17 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 3605981, + "thread": 26 + } + }, + { + "amount": "423.517000421", + "slot": { + "period": 3690878, + "thread": 8 + } + }, + { + "amount": "423.517000426", + "slot": { + "period": 3867405, + "thread": 20 + } + } + ], + "AU1hrG3hPUnHU3JxmmLhXDryLK4TDqJEvfrUFsAfRuJC7ugBJ4x2": [ + { + "amount": "266.473149459", + "slot": { + "period": 108132, + "thread": 24 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 204566, + "thread": 17 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 419431, + "thread": 11 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 605340, + "thread": 1 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 738836, + "thread": 4 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 976216, + "thread": 9 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1117106, + "thread": 31 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1229518, + "thread": 6 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1347234, + "thread": 12 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1520880, + "thread": 3 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1660114, + "thread": 24 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 1966503, + "thread": 31 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2025839, + "thread": 23 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2196520, + "thread": 25 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2314915, + "thread": 25 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2605222, + "thread": 2 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2743458, + "thread": 19 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 2919224, + "thread": 1 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 3070230, + "thread": 15 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 3252494, + "thread": 23 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 3389216, + "thread": 9 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 3519153, + "thread": 27 + } + }, + { + "amount": "266.473149459", + "slot": { + "period": 3730038, + "thread": 13 + } + }, + { + "amount": "266.473149463", + "slot": { + "period": 3880032, + "thread": 8 + } + } + ], + "AU1hrM1Z2ZwL3oZkYejfE4gUB6iNr2YZpk55DdQoLGX5JhNn5PU": [ + { + "amount": "134.164331514", + "slot": { + "period": 163216, + "thread": 11 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 255180, + "thread": 4 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 383922, + "thread": 3 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 519801, + "thread": 25 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 658517, + "thread": 23 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 872620, + "thread": 15 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1045493, + "thread": 14 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1278734, + "thread": 8 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1319419, + "thread": 29 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1627901, + "thread": 14 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1767208, + "thread": 9 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 1810791, + "thread": 26 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2015656, + "thread": 26 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2169838, + "thread": 22 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2459008, + "thread": 19 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2483529, + "thread": 5 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2634021, + "thread": 14 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 2945970, + "thread": 29 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 3009388, + "thread": 31 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 3197190, + "thread": 8 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 3353275, + "thread": 23 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 3580308, + "thread": 31 + } + }, + { + "amount": "134.164331514", + "slot": { + "period": 3736523, + "thread": 13 + } + }, + { + "amount": "134.164331503", + "slot": { + "period": 3825974, + "thread": 12 + } + } + ], + "AU1hrdoxZrbLndd3p9W6Vm3ezAnoSkWexHZbF87xXWBQRnDv4L36": [ + { + "amount": "92.462059838", + "slot": { + "period": 129136, + "thread": 11 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 281417, + "thread": 27 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 395889, + "thread": 5 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 577657, + "thread": 30 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 710513, + "thread": 15 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 858000, + "thread": 7 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 993475, + "thread": 17 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 1259181, + "thread": 29 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 1332257, + "thread": 0 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 1606966, + "thread": 15 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 1790752, + "thread": 0 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 1885193, + "thread": 17 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2035719, + "thread": 4 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2273899, + "thread": 20 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2299108, + "thread": 23 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2513554, + "thread": 24 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2632669, + "thread": 20 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 2913798, + "thread": 4 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 3082544, + "thread": 12 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 3274677, + "thread": 20 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 3441470, + "thread": 16 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 3531938, + "thread": 31 + } + }, + { + "amount": "92.462059838", + "slot": { + "period": 3727255, + "thread": 3 + } + }, + { + "amount": "92.462059829", + "slot": { + "period": 3944031, + "thread": 12 + } + } + ], + "AU1hrsEymjCxcVJdoBoe3PF3t2mYNZFyVDRgwUuf2H6sdoLtx2WZ": [ + { + "amount": "246.721739471", + "slot": { + "period": 17901, + "thread": 10 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 181068, + "thread": 25 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 331740, + "thread": 12 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 543229, + "thread": 11 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 811097, + "thread": 10 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 958280, + "thread": 0 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1114145, + "thread": 31 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1151877, + "thread": 30 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1323989, + "thread": 19 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1606897, + "thread": 10 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1767919, + "thread": 8 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 1967167, + "thread": 27 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2107317, + "thread": 28 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2145298, + "thread": 10 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2443863, + "thread": 21 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2536859, + "thread": 29 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2661071, + "thread": 15 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 2896585, + "thread": 14 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 3103875, + "thread": 9 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 3246235, + "thread": 27 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 3339493, + "thread": 13 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 3477222, + "thread": 11 + } + }, + { + "amount": "246.721739471", + "slot": { + "period": 3738599, + "thread": 26 + } + }, + { + "amount": "246.721739467", + "slot": { + "period": 3780141, + "thread": 28 + } + } + ], + "AU1htEVGjJSh1qtQWGrS2LxPvpr8Q64Tt3SArowfpTx6SgtwkhXy": [ + { + "amount": "96.853031893", + "slot": { + "period": 146870, + "thread": 18 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 300575, + "thread": 15 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 440510, + "thread": 28 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 593298, + "thread": 30 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 793330, + "thread": 15 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 933413, + "thread": 3 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1129798, + "thread": 31 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1191975, + "thread": 16 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1429768, + "thread": 13 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1615393, + "thread": 9 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1800637, + "thread": 16 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 1934555, + "thread": 26 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2131264, + "thread": 27 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2257048, + "thread": 19 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2434837, + "thread": 27 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2497899, + "thread": 4 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2775775, + "thread": 12 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 2865072, + "thread": 12 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 3105397, + "thread": 4 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 3124277, + "thread": 29 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 3330825, + "thread": 23 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 3492776, + "thread": 30 + } + }, + { + "amount": "96.853031893", + "slot": { + "period": 3632436, + "thread": 3 + } + }, + { + "amount": "96.853031884", + "slot": { + "period": 3936748, + "thread": 15 + } + } + ], + "AU1hv5AbQL6FAFKZnU3cytHeD2DvRfXw6SX7LyFaqCpe4ppKacyh": [ + { + "amount": "304.217702701", + "slot": { + "period": 121482, + "thread": 31 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 241212, + "thread": 28 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 378605, + "thread": 14 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 548511, + "thread": 27 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 663191, + "thread": 20 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 967023, + "thread": 21 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 991566, + "thread": 15 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 1298288, + "thread": 10 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 1327398, + "thread": 2 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 1590545, + "thread": 26 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 1660215, + "thread": 12 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 1928697, + "thread": 6 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2125187, + "thread": 2 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2167726, + "thread": 22 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2444240, + "thread": 3 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2606535, + "thread": 28 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2759736, + "thread": 0 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 2893247, + "thread": 25 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 3095956, + "thread": 27 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 3125467, + "thread": 20 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 3364294, + "thread": 22 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 3543171, + "thread": 13 + } + }, + { + "amount": "304.217702701", + "slot": { + "period": 3622600, + "thread": 19 + } + }, + { + "amount": "304.217702692", + "slot": { + "period": 3859385, + "thread": 31 + } + } + ], + "AU1hvnZASQkJtyafM1kA2iotsNN2tiu1DZSEGUSUj9dTiPBxtV8X": [ + { + "amount": "111.273132856", + "slot": { + "period": 157994, + "thread": 27 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 224350, + "thread": 8 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 339294, + "thread": 8 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 555127, + "thread": 26 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 772723, + "thread": 18 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 928285, + "thread": 30 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1067745, + "thread": 26 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1246598, + "thread": 1 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1379059, + "thread": 9 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1563105, + "thread": 13 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1799562, + "thread": 30 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1879145, + "thread": 23 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 1996814, + "thread": 4 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 2269166, + "thread": 11 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 2433243, + "thread": 29 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 2586422, + "thread": 5 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 2708693, + "thread": 20 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 2950688, + "thread": 27 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 3101699, + "thread": 20 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 3263499, + "thread": 13 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 3433763, + "thread": 20 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 3501364, + "thread": 15 + } + }, + { + "amount": "111.273132856", + "slot": { + "period": 3703611, + "thread": 5 + } + }, + { + "amount": "111.273132865", + "slot": { + "period": 3927578, + "thread": 2 + } + } + ], + "AU1hxEhEjVUznyFpLB7Rjhtq5utiQxsA25EJKohkhZkTfAxyqPKm": [ + { + "amount": "214.422814414", + "slot": { + "period": 15798, + "thread": 21 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 181705, + "thread": 18 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 442542, + "thread": 13 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 629542, + "thread": 16 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 736651, + "thread": 15 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 973087, + "thread": 13 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 985469, + "thread": 8 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 1291330, + "thread": 5 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 1415027, + "thread": 4 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 1601022, + "thread": 3 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 1743869, + "thread": 11 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 1865171, + "thread": 23 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2138310, + "thread": 29 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2175540, + "thread": 8 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2338515, + "thread": 9 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2588050, + "thread": 28 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2735164, + "thread": 7 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2924781, + "thread": 18 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 2986590, + "thread": 0 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 3273412, + "thread": 12 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 3419193, + "thread": 30 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 3546892, + "thread": 13 + } + }, + { + "amount": "214.422814414", + "slot": { + "period": 3771942, + "thread": 21 + } + }, + { + "amount": "214.422814422", + "slot": { + "period": 3922561, + "thread": 29 + } + } + ], + "AU1hxXQY6XfwcijigMYjJzrYrqTfns45EiDekgg8trsjRWhGn1qP": [ + { + "amount": "133.931327065", + "slot": { + "period": 152813, + "thread": 21 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 309882, + "thread": 3 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 430815, + "thread": 16 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 517275, + "thread": 22 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 786522, + "thread": 0 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 942332, + "thread": 30 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1145682, + "thread": 12 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1295116, + "thread": 9 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1364841, + "thread": 2 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1573113, + "thread": 22 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1722129, + "thread": 21 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1886913, + "thread": 14 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 1985430, + "thread": 26 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 2197375, + "thread": 2 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 2440553, + "thread": 31 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 2559135, + "thread": 8 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 2787374, + "thread": 5 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 2833230, + "thread": 10 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 3112876, + "thread": 20 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 3212692, + "thread": 1 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 3291223, + "thread": 17 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 3616089, + "thread": 22 + } + }, + { + "amount": "133.931327065", + "slot": { + "period": 3671157, + "thread": 2 + } + }, + { + "amount": "133.931327063", + "slot": { + "period": 3844075, + "thread": 22 + } + } + ], + "AU1hxhNwkTj8N1vHiDxxDZ524TmRFUdJuVhSfU13qA9N48PhaFEW": [ + { + "amount": "303.448758530", + "slot": { + "period": 59229, + "thread": 26 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 175281, + "thread": 11 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 362723, + "thread": 9 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 567142, + "thread": 26 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 770942, + "thread": 11 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 912877, + "thread": 30 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1094050, + "thread": 28 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1251857, + "thread": 22 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1467339, + "thread": 26 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1528847, + "thread": 31 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1799620, + "thread": 18 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 1944756, + "thread": 10 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2125836, + "thread": 25 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2183317, + "thread": 0 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2403055, + "thread": 12 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2622053, + "thread": 10 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2774901, + "thread": 23 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2882217, + "thread": 31 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 2971447, + "thread": 14 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 3203429, + "thread": 11 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 3415684, + "thread": 26 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 3452786, + "thread": 24 + } + }, + { + "amount": "303.448758530", + "slot": { + "period": 3621468, + "thread": 16 + } + }, + { + "amount": "303.448758521", + "slot": { + "period": 3806767, + "thread": 13 + } + } + ], + "AU1hy7SCbYAx246sc7UfZCFWy28wWxSFXbFXCUcuqkLLvPwgSNJm": [ + { + "amount": "154.836673425", + "slot": { + "period": 75303, + "thread": 9 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 287056, + "thread": 18 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 359498, + "thread": 25 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 580669, + "thread": 21 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 750069, + "thread": 26 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 861112, + "thread": 2 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1059864, + "thread": 6 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1301046, + "thread": 25 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1458259, + "thread": 13 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1541479, + "thread": 15 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1669815, + "thread": 3 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 1946466, + "thread": 17 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2108794, + "thread": 18 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2278593, + "thread": 22 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2418729, + "thread": 8 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2623611, + "thread": 9 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2759382, + "thread": 1 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2914135, + "thread": 3 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 2988360, + "thread": 12 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 3156735, + "thread": 31 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 3319748, + "thread": 2 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 3595960, + "thread": 27 + } + }, + { + "amount": "154.836673425", + "slot": { + "period": 3738750, + "thread": 21 + } + }, + { + "amount": "154.836673435", + "slot": { + "period": 3885774, + "thread": 9 + } + } + ], + "AU1hycbyZ4N8FtMYoW7V4qoErQgqZ4NZad4dQHn8C5GASas8BEFX": [ + { + "amount": "701.213270216", + "slot": { + "period": 154704, + "thread": 14 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 174780, + "thread": 7 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 481516, + "thread": 5 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 503464, + "thread": 4 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 686524, + "thread": 21 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 908777, + "thread": 2 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1035731, + "thread": 25 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1178548, + "thread": 7 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1474518, + "thread": 25 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1508854, + "thread": 20 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1690067, + "thread": 25 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 1919061, + "thread": 14 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2036541, + "thread": 18 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2220528, + "thread": 16 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2314871, + "thread": 3 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2601571, + "thread": 30 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2679196, + "thread": 19 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 2873039, + "thread": 20 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 3094065, + "thread": 26 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 3150945, + "thread": 7 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 3408032, + "thread": 26 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 3593520, + "thread": 23 + } + }, + { + "amount": "701.213270216", + "slot": { + "period": 3729291, + "thread": 10 + } + }, + { + "amount": "701.213270205", + "slot": { + "period": 3845555, + "thread": 2 + } + } + ], + "AU1hzJk94F5hKr6t22Zjwkj7gSffuygmeX1RB61bwBEktVSbAcyp": [ + { + "amount": "75.862867968", + "slot": { + "period": 117087, + "thread": 1 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 319047, + "thread": 2 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 418647, + "thread": 17 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 508887, + "thread": 10 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 758217, + "thread": 25 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 834990, + "thread": 9 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1100739, + "thread": 3 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1289312, + "thread": 7 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1346122, + "thread": 27 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1543881, + "thread": 10 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1696895, + "thread": 6 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 1907400, + "thread": 7 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2124430, + "thread": 4 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2291584, + "thread": 8 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2350062, + "thread": 16 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2563005, + "thread": 4 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2771017, + "thread": 31 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 2803384, + "thread": 2 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 3020006, + "thread": 5 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 3221769, + "thread": 10 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 3355055, + "thread": 23 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 3466523, + "thread": 6 + } + }, + { + "amount": "75.862867968", + "slot": { + "period": 3729881, + "thread": 30 + } + }, + { + "amount": "75.862867972", + "slot": { + "period": 3935118, + "thread": 23 + } + } + ], + "AU1hzRN5kJvx7Cb49cHnJ2Bw34zksmokjUKTeK6t2nCm1GU6tXNX": [ + { + "amount": "206.079484850", + "slot": { + "period": 38169, + "thread": 0 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 177882, + "thread": 19 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 353507, + "thread": 12 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 541121, + "thread": 29 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 783163, + "thread": 25 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 917318, + "thread": 7 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1094394, + "thread": 30 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1255211, + "thread": 31 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1377574, + "thread": 16 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1631922, + "thread": 20 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1763490, + "thread": 14 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 1904051, + "thread": 18 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2037989, + "thread": 4 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2146404, + "thread": 16 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2442513, + "thread": 11 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2488646, + "thread": 0 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2737156, + "thread": 19 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2820612, + "thread": 30 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 2987011, + "thread": 31 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 3177538, + "thread": 6 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 3382238, + "thread": 18 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 3579284, + "thread": 9 + } + }, + { + "amount": "206.079484850", + "slot": { + "period": 3736314, + "thread": 13 + } + }, + { + "amount": "206.079484852", + "slot": { + "period": 3838240, + "thread": 27 + } + } + ], + "AU1hzsnG4Wsiyp788FjGxaVMajr35oTi48vCsndstnVcEhBw6US5": [ + { + "amount": "631.610599040", + "slot": { + "period": 24495, + "thread": 16 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 269706, + "thread": 2 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 351347, + "thread": 1 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 537102, + "thread": 0 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 688711, + "thread": 17 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 890242, + "thread": 14 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1071425, + "thread": 30 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1190305, + "thread": 8 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1420531, + "thread": 13 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1564602, + "thread": 16 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1675447, + "thread": 8 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 1853539, + "thread": 12 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2089784, + "thread": 1 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2181826, + "thread": 12 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2450102, + "thread": 8 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2532970, + "thread": 11 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2777401, + "thread": 21 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 2816503, + "thread": 3 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 3082167, + "thread": 18 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 3209652, + "thread": 2 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 3316608, + "thread": 26 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 3564982, + "thread": 14 + } + }, + { + "amount": "631.610599040", + "slot": { + "period": 3709922, + "thread": 4 + } + }, + { + "amount": "631.610599046", + "slot": { + "period": 3886273, + "thread": 24 + } + } + ], + "AU1i27KWop9gY8bqga9DAqrt2EDNaTpeHqLYGaQCtuqdYNSHx6qU": [ + { + "amount": "116.992227832", + "slot": { + "period": 70817, + "thread": 11 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 224299, + "thread": 5 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 324870, + "thread": 8 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 623799, + "thread": 18 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 731921, + "thread": 21 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 951127, + "thread": 10 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1108165, + "thread": 29 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1168613, + "thread": 20 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1454624, + "thread": 29 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1604904, + "thread": 6 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1744746, + "thread": 8 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 1870258, + "thread": 7 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2128631, + "thread": 12 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2210267, + "thread": 3 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2408550, + "thread": 6 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2489937, + "thread": 26 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2631341, + "thread": 31 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 2823857, + "thread": 29 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 3026124, + "thread": 27 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 3213261, + "thread": 26 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 3371267, + "thread": 4 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 3616890, + "thread": 26 + } + }, + { + "amount": "116.992227832", + "slot": { + "period": 3755188, + "thread": 27 + } + }, + { + "amount": "116.992227826", + "slot": { + "period": 3807139, + "thread": 27 + } + } + ], + "AU1i37iyKfngZ96gw6CHUg1LL76UWdzvecYFkGTmTeJyq69Mw8jC": [ + { + "amount": "103.100540963", + "slot": { + "period": 61412, + "thread": 31 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 241311, + "thread": 31 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 406327, + "thread": 8 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 590265, + "thread": 27 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 793057, + "thread": 3 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 827306, + "thread": 28 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1081593, + "thread": 18 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1178149, + "thread": 20 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1401218, + "thread": 19 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1479707, + "thread": 1 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1769607, + "thread": 20 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 1812281, + "thread": 2 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2055050, + "thread": 1 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2169485, + "thread": 8 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2345751, + "thread": 22 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2463617, + "thread": 20 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2650204, + "thread": 3 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 2816269, + "thread": 24 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 3067790, + "thread": 10 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 3278155, + "thread": 18 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 3301027, + "thread": 18 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 3554579, + "thread": 23 + } + }, + { + "amount": "103.100540963", + "slot": { + "period": 3731981, + "thread": 13 + } + }, + { + "amount": "103.100540971", + "slot": { + "period": 3942558, + "thread": 25 + } + } + ], + "AU1i3TaVnJEud742yyFW7JJ9oQ3eDuM5xuUrbV3phSsjRwLFhpZr": [ + { + "amount": "217.465498888", + "slot": { + "period": 124585, + "thread": 14 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 203254, + "thread": 13 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 332058, + "thread": 26 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 604705, + "thread": 0 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 683495, + "thread": 12 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 907828, + "thread": 3 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1044310, + "thread": 10 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1189360, + "thread": 3 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1357065, + "thread": 10 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1602213, + "thread": 23 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1803269, + "thread": 2 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 1924517, + "thread": 27 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2125430, + "thread": 23 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2232395, + "thread": 6 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2297545, + "thread": 0 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2574394, + "thread": 30 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2714347, + "thread": 2 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 2810006, + "thread": 20 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 3076378, + "thread": 1 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 3217152, + "thread": 4 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 3302477, + "thread": 19 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 3568841, + "thread": 29 + } + }, + { + "amount": "217.465498888", + "slot": { + "period": 3719990, + "thread": 4 + } + }, + { + "amount": "217.465498879", + "slot": { + "period": 3809634, + "thread": 10 + } + } + ], + "AU1i42GxTtFmU92jqn4qrcE2vSzXt6mzBwJkaCYiEj89UxPzG9PZ": [ + { + "amount": "640.375926564", + "slot": { + "period": 150980, + "thread": 17 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 223819, + "thread": 26 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 460313, + "thread": 23 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 524084, + "thread": 16 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 667566, + "thread": 23 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 825835, + "thread": 9 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1126138, + "thread": 27 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1284685, + "thread": 7 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1321236, + "thread": 12 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1613015, + "thread": 25 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1788754, + "thread": 10 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 1946289, + "thread": 11 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2054063, + "thread": 3 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2264122, + "thread": 25 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2346799, + "thread": 24 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2515558, + "thread": 29 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2702345, + "thread": 21 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 2828778, + "thread": 25 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 3058247, + "thread": 0 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 3204298, + "thread": 30 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 3331852, + "thread": 21 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 3511940, + "thread": 26 + } + }, + { + "amount": "640.375926564", + "slot": { + "period": 3633719, + "thread": 1 + } + }, + { + "amount": "640.375926576", + "slot": { + "period": 3809346, + "thread": 30 + } + } + ], + "AU1i6wubRhS6p3Ax84CkDHunkKgQFFMZ8sESgtv16feF9Sp6bx1r": [ + { + "amount": "176.639441823", + "slot": { + "period": 54796, + "thread": 14 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 191994, + "thread": 29 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 332820, + "thread": 15 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 582814, + "thread": 17 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 723616, + "thread": 27 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 837111, + "thread": 31 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1136291, + "thread": 16 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1304675, + "thread": 6 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1341476, + "thread": 12 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1591573, + "thread": 13 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1751154, + "thread": 18 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 1957435, + "thread": 26 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2133102, + "thread": 20 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2244084, + "thread": 0 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2409670, + "thread": 20 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2517178, + "thread": 12 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2668976, + "thread": 19 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2843305, + "thread": 11 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 2969418, + "thread": 14 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 3263283, + "thread": 25 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 3426169, + "thread": 2 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 3599125, + "thread": 21 + } + }, + { + "amount": "176.639441823", + "slot": { + "period": 3703183, + "thread": 12 + } + }, + { + "amount": "176.639441826", + "slot": { + "period": 3853860, + "thread": 23 + } + } + ], + "AU1i7FDw5VArxCX7CM8nRE5sHhih7oMriBuU4VjCC4B9buCecGMr": [ + { + "amount": "216.884955235", + "slot": { + "period": 53972, + "thread": 29 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 207944, + "thread": 16 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 397497, + "thread": 24 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 545736, + "thread": 10 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 682821, + "thread": 4 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 937379, + "thread": 27 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1025596, + "thread": 3 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1315648, + "thread": 7 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1420727, + "thread": 28 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1590698, + "thread": 12 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1803034, + "thread": 2 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 1839371, + "thread": 12 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2070318, + "thread": 12 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2257939, + "thread": 12 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2446508, + "thread": 22 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2478995, + "thread": 17 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2689017, + "thread": 11 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 2857679, + "thread": 11 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 3009032, + "thread": 21 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 3129587, + "thread": 13 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 3427001, + "thread": 12 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 3587770, + "thread": 9 + } + }, + { + "amount": "216.884955235", + "slot": { + "period": 3692991, + "thread": 9 + } + }, + { + "amount": "216.884955245", + "slot": { + "period": 3808724, + "thread": 22 + } + } + ], + "AU1i8pS9pUXjaWWAQZ5CMbm5YMpFYxtN6CoK8uQUYaUc16xLa93F": [ + { + "amount": "132.707546327", + "slot": { + "period": 66542, + "thread": 14 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 193391, + "thread": 25 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 345585, + "thread": 15 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 600831, + "thread": 23 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 779579, + "thread": 16 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 875305, + "thread": 8 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1003913, + "thread": 0 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1310479, + "thread": 23 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1355035, + "thread": 17 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1640448, + "thread": 0 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1790931, + "thread": 25 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 1833650, + "thread": 3 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2088024, + "thread": 17 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2217396, + "thread": 26 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2417713, + "thread": 25 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2536117, + "thread": 11 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2721401, + "thread": 16 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 2798797, + "thread": 8 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 3044213, + "thread": 19 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 3122702, + "thread": 16 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 3328134, + "thread": 9 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 3488202, + "thread": 29 + } + }, + { + "amount": "132.707546327", + "slot": { + "period": 3753277, + "thread": 28 + } + }, + { + "amount": "132.707546336", + "slot": { + "period": 3940987, + "thread": 7 + } + } + ], + "AU1i8xWKtAqpjZuEvdNShZfxZWBDuHKWcsvRwVh4axx3BxzD2YXs": [ + { + "amount": "80.438870864", + "slot": { + "period": 25252, + "thread": 4 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 295799, + "thread": 23 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 414796, + "thread": 23 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 632132, + "thread": 12 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 678898, + "thread": 11 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 941479, + "thread": 2 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1081162, + "thread": 23 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1256809, + "thread": 28 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1388243, + "thread": 16 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1505048, + "thread": 4 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1706574, + "thread": 4 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 1964217, + "thread": 21 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2013126, + "thread": 8 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2249509, + "thread": 31 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2361334, + "thread": 14 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2469001, + "thread": 19 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2725286, + "thread": 24 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 2897517, + "thread": 0 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 3079305, + "thread": 6 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 3286110, + "thread": 29 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 3393279, + "thread": 16 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 3464449, + "thread": 16 + } + }, + { + "amount": "80.438870864", + "slot": { + "period": 3690843, + "thread": 2 + } + }, + { + "amount": "80.438870873", + "slot": { + "period": 3902954, + "thread": 24 + } + } + ], + "AU1i9bBYSU9S7UKxpCuVQGpre7RWW7YCPEDZqf7Mez9hEG7XFRD2": [ + { + "amount": "311.001527670", + "slot": { + "period": 80256, + "thread": 21 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 225959, + "thread": 4 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 375852, + "thread": 24 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 590368, + "thread": 29 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 809187, + "thread": 12 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 876043, + "thread": 6 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1056997, + "thread": 7 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1282183, + "thread": 17 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1469968, + "thread": 15 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1631169, + "thread": 22 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1768695, + "thread": 18 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 1942160, + "thread": 21 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2124153, + "thread": 2 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2187960, + "thread": 26 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2302739, + "thread": 21 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2528838, + "thread": 3 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2788386, + "thread": 28 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 2951210, + "thread": 14 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 3059729, + "thread": 19 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 3181884, + "thread": 14 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 3409392, + "thread": 1 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 3557032, + "thread": 13 + } + }, + { + "amount": "311.001527670", + "slot": { + "period": 3709292, + "thread": 5 + } + }, + { + "amount": "311.001527682", + "slot": { + "period": 3889250, + "thread": 7 + } + } + ], + "AU1iAaLZsPCBekUYC9toDDGQMAbZ8H69hevbUAUM6YpmvPPBrH7o": [ + { + "amount": "621.803999461", + "slot": { + "period": 109413, + "thread": 30 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 297715, + "thread": 19 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 391930, + "thread": 26 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 647231, + "thread": 29 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 755801, + "thread": 16 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 976621, + "thread": 27 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1143457, + "thread": 12 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1203654, + "thread": 21 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1434905, + "thread": 28 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1629936, + "thread": 5 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1671263, + "thread": 17 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1813231, + "thread": 4 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 1979875, + "thread": 31 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 2270823, + "thread": 17 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 2437556, + "thread": 28 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 2474907, + "thread": 3 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 2643424, + "thread": 23 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 2846252, + "thread": 10 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 3111761, + "thread": 12 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 3267320, + "thread": 8 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 3328323, + "thread": 13 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 3479934, + "thread": 25 + } + }, + { + "amount": "621.803999461", + "slot": { + "period": 3710305, + "thread": 27 + } + }, + { + "amount": "621.803999457", + "slot": { + "period": 3857837, + "thread": 25 + } + } + ], + "AU1iAgVzLXsta3Bfa6VsGLki4uysHCpxsF8ifNHN6meH7nsTz6rd": [ + { + "amount": "96.497667904", + "slot": { + "period": 126389, + "thread": 25 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 260415, + "thread": 31 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 344180, + "thread": 14 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 546589, + "thread": 14 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 781305, + "thread": 24 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 900696, + "thread": 18 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1146317, + "thread": 16 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1268386, + "thread": 25 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1380610, + "thread": 29 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1600996, + "thread": 2 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1731138, + "thread": 23 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 1880504, + "thread": 17 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2110548, + "thread": 24 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2254534, + "thread": 0 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2395695, + "thread": 11 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2480022, + "thread": 4 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2718759, + "thread": 18 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 2928145, + "thread": 10 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 3022579, + "thread": 10 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 3155490, + "thread": 24 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 3400177, + "thread": 15 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 3456609, + "thread": 1 + } + }, + { + "amount": "96.497667904", + "slot": { + "period": 3745631, + "thread": 13 + } + }, + { + "amount": "96.497667893", + "slot": { + "period": 3926310, + "thread": 12 + } + } + ], + "AU1iBSF5TVW8eMAF3gSnNDQPvz4Ynbt7bwUADAFTtx1HzR28QSMm": [ + { + "amount": "310.319540102", + "slot": { + "period": 109974, + "thread": 19 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 199973, + "thread": 3 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 436482, + "thread": 29 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 519384, + "thread": 2 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 790742, + "thread": 8 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 964432, + "thread": 23 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1099167, + "thread": 0 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1274270, + "thread": 1 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1365218, + "thread": 21 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1581759, + "thread": 28 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1745496, + "thread": 12 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 1809713, + "thread": 28 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2127989, + "thread": 21 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2147869, + "thread": 11 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2380053, + "thread": 7 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2594395, + "thread": 9 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2769557, + "thread": 16 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2899793, + "thread": 0 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 2961142, + "thread": 24 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 3152142, + "thread": 19 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 3330080, + "thread": 23 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 3567910, + "thread": 25 + } + }, + { + "amount": "310.319540102", + "slot": { + "period": 3754749, + "thread": 1 + } + }, + { + "amount": "310.319540105", + "slot": { + "period": 3863020, + "thread": 1 + } + } + ], + "AU1iBvK169H9Qq7fbiWWgRXGnSsbJeEqxPJeSyVNpBw9yxWYD5cu": [ + { + "amount": "167.098438740", + "slot": { + "period": 116022, + "thread": 17 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 284095, + "thread": 28 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 347300, + "thread": 19 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 642731, + "thread": 13 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 770843, + "thread": 29 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 828522, + "thread": 30 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1041318, + "thread": 29 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1157261, + "thread": 13 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1404660, + "thread": 24 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1589435, + "thread": 30 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1648832, + "thread": 3 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 1917596, + "thread": 27 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2003566, + "thread": 10 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2244616, + "thread": 7 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2409652, + "thread": 6 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2470713, + "thread": 9 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2667142, + "thread": 11 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2844629, + "thread": 30 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 2957850, + "thread": 11 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 3129779, + "thread": 28 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 3352238, + "thread": 26 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 3590596, + "thread": 12 + } + }, + { + "amount": "167.098438740", + "slot": { + "period": 3705857, + "thread": 23 + } + }, + { + "amount": "167.098438743", + "slot": { + "period": 3838153, + "thread": 10 + } + } + ], + "AU1iDVbSYjUrvM9PEdsYK4CjsBUpDAFUZ2ceRRMLsr32mLyev6h6": [ + { + "amount": "267.839415226", + "slot": { + "period": 18597, + "thread": 20 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 181896, + "thread": 11 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 475145, + "thread": 11 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 568192, + "thread": 19 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 721446, + "thread": 9 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 869162, + "thread": 11 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 998807, + "thread": 7 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 1217021, + "thread": 24 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 1343113, + "thread": 19 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 1535702, + "thread": 7 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 1704780, + "thread": 19 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 1917354, + "thread": 22 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2028993, + "thread": 29 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2159956, + "thread": 16 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2322064, + "thread": 28 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2624150, + "thread": 14 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2681291, + "thread": 12 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 2939738, + "thread": 2 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 3058984, + "thread": 20 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 3282520, + "thread": 7 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 3424151, + "thread": 7 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 3517679, + "thread": 30 + } + }, + { + "amount": "267.839415226", + "slot": { + "period": 3732549, + "thread": 23 + } + }, + { + "amount": "267.839415217", + "slot": { + "period": 3940127, + "thread": 19 + } + } + ], + "AU1iDY9X61uarrCQNUkqbS1keqziPdk8fjkcKGioBBZEsqEnRtte": [ + { + "amount": "117.685357170", + "slot": { + "period": 161243, + "thread": 7 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 217933, + "thread": 22 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 444028, + "thread": 26 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 635080, + "thread": 29 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 742577, + "thread": 15 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 866411, + "thread": 18 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1028371, + "thread": 19 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1282626, + "thread": 6 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1478499, + "thread": 3 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1489695, + "thread": 15 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1682335, + "thread": 4 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 1946956, + "thread": 6 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2020598, + "thread": 0 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2246771, + "thread": 0 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2330739, + "thread": 15 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2575482, + "thread": 4 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2637444, + "thread": 7 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2824173, + "thread": 25 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 2986253, + "thread": 0 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 3177994, + "thread": 13 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 3435366, + "thread": 5 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 3514525, + "thread": 26 + } + }, + { + "amount": "117.685357170", + "slot": { + "period": 3711227, + "thread": 31 + } + }, + { + "amount": "117.685357165", + "slot": { + "period": 3795446, + "thread": 13 + } + } + ], + "AU1iDkQcYjBZVLb91txAor6hA23LZFr9KMUbEYey5NPAqFPYyKrq": [ + { + "amount": "204.411419517", + "slot": { + "period": 130611, + "thread": 17 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 257796, + "thread": 12 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 433799, + "thread": 16 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 565315, + "thread": 25 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 693926, + "thread": 24 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 850996, + "thread": 18 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1081809, + "thread": 13 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1231355, + "thread": 28 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1453727, + "thread": 24 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1569110, + "thread": 25 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1712545, + "thread": 19 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 1826118, + "thread": 8 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2049541, + "thread": 4 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2182512, + "thread": 17 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2419135, + "thread": 29 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2509146, + "thread": 8 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2660869, + "thread": 18 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 2881988, + "thread": 9 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 3065973, + "thread": 12 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 3143996, + "thread": 4 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 3306934, + "thread": 10 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 3500738, + "thread": 16 + } + }, + { + "amount": "204.411419517", + "slot": { + "period": 3618996, + "thread": 26 + } + }, + { + "amount": "204.411419522", + "slot": { + "period": 3908360, + "thread": 15 + } + } + ], + "AU1iEk9dRx3E9vokkGNoJYdcZMPwi51eanDi6DqUZqyBSePnTBfR": [ + { + "amount": "122.556820958", + "slot": { + "period": 62369, + "thread": 10 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 218757, + "thread": 22 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 395311, + "thread": 2 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 635334, + "thread": 12 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 668524, + "thread": 28 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 976045, + "thread": 3 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1044944, + "thread": 6 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1233225, + "thread": 17 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1450517, + "thread": 9 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1598093, + "thread": 17 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1741566, + "thread": 0 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 1820003, + "thread": 30 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2054267, + "thread": 22 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2158212, + "thread": 24 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2357683, + "thread": 26 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2594589, + "thread": 16 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2714762, + "thread": 4 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 2869014, + "thread": 16 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 3064406, + "thread": 3 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 3278821, + "thread": 16 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 3320288, + "thread": 22 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 3466362, + "thread": 29 + } + }, + { + "amount": "122.556820958", + "slot": { + "period": 3757704, + "thread": 5 + } + }, + { + "amount": "122.556820947", + "slot": { + "period": 3811057, + "thread": 5 + } + } + ], + "AU1iGXLpmV86uvootP43xJ4uFxrNnWLEQEyvPtHjSDijkHFuU8bH": [ + { + "amount": "458.111974596", + "slot": { + "period": 99099, + "thread": 6 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 199996, + "thread": 30 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 378771, + "thread": 28 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 559712, + "thread": 21 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 813986, + "thread": 5 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 903661, + "thread": 15 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 987286, + "thread": 6 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 1282191, + "thread": 5 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 1425189, + "thread": 30 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 1513984, + "thread": 31 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 1713675, + "thread": 9 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 1931672, + "thread": 12 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2046839, + "thread": 19 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2277631, + "thread": 26 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2441386, + "thread": 13 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2610483, + "thread": 27 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2680834, + "thread": 13 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2820989, + "thread": 17 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 2974154, + "thread": 21 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 3143571, + "thread": 13 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 3399277, + "thread": 14 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 3473656, + "thread": 14 + } + }, + { + "amount": "458.111974596", + "slot": { + "period": 3745680, + "thread": 26 + } + }, + { + "amount": "458.111974607", + "slot": { + "period": 3844503, + "thread": 18 + } + } + ], + "AU1iGeQdgTgjSP3c6F8sn2q8UDJEau9V7jyMJHj9GVGtGkpnQtwo": [ + { + "amount": "165.128279919", + "slot": { + "period": 47050, + "thread": 27 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 283933, + "thread": 2 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 384911, + "thread": 7 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 614681, + "thread": 13 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 792643, + "thread": 17 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 838406, + "thread": 28 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1043036, + "thread": 18 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1210515, + "thread": 13 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1448543, + "thread": 19 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1634902, + "thread": 17 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1681922, + "thread": 26 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 1883870, + "thread": 13 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2057624, + "thread": 5 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2195377, + "thread": 19 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2362016, + "thread": 16 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2505712, + "thread": 28 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2690860, + "thread": 26 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 2909684, + "thread": 27 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 3096480, + "thread": 6 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 3246349, + "thread": 28 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 3334053, + "thread": 21 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 3614205, + "thread": 28 + } + }, + { + "amount": "165.128279919", + "slot": { + "period": 3767836, + "thread": 12 + } + }, + { + "amount": "165.128279909", + "slot": { + "period": 3936550, + "thread": 18 + } + } + ], + "AU1iHE1Y1BvCrFXEc9oViFvBRJRAHWW1ciLAeAy7QU9T68juuV2S": [ + { + "amount": "463.162981864", + "slot": { + "period": 91881, + "thread": 11 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 181768, + "thread": 25 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 353193, + "thread": 6 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 651050, + "thread": 3 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 789611, + "thread": 25 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 823800, + "thread": 15 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1053344, + "thread": 23 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1280398, + "thread": 7 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1384871, + "thread": 12 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1536207, + "thread": 30 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1672378, + "thread": 11 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1875107, + "thread": 28 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 1985006, + "thread": 2 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 2244618, + "thread": 9 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 2369574, + "thread": 25 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 2470626, + "thread": 25 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 2674827, + "thread": 14 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 2835192, + "thread": 25 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 3045106, + "thread": 16 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 3238494, + "thread": 0 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 3360345, + "thread": 23 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 3549747, + "thread": 18 + } + }, + { + "amount": "463.162981864", + "slot": { + "period": 3690331, + "thread": 29 + } + }, + { + "amount": "463.162981870", + "slot": { + "period": 3805087, + "thread": 1 + } + } + ], + "AU1iHN2yY4B2aKjTFPj33x6gQZh3C5L8H4DDcTp6Ac6h2nkVhDxP": [ + { + "amount": "51.438277323", + "slot": { + "period": 26371, + "thread": 14 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 169967, + "thread": 19 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 429660, + "thread": 30 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 510230, + "thread": 3 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 724703, + "thread": 27 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 912034, + "thread": 25 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 991202, + "thread": 10 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 1159381, + "thread": 5 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 1355652, + "thread": 3 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 1588990, + "thread": 12 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 1731901, + "thread": 27 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 1933108, + "thread": 30 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2005353, + "thread": 25 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2222877, + "thread": 1 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2430281, + "thread": 22 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2540833, + "thread": 11 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2757552, + "thread": 8 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 2820936, + "thread": 7 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 3045579, + "thread": 10 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 3186905, + "thread": 24 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 3358827, + "thread": 30 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 3568097, + "thread": 31 + } + }, + { + "amount": "51.438277323", + "slot": { + "period": 3633750, + "thread": 7 + } + }, + { + "amount": "51.438277321", + "slot": { + "period": 3911839, + "thread": 8 + } + } + ], + "AU1iHNwRgAr2n9UVEU81avnXBtex1ppdbuoMY8HToS8LV4Ypyvku": [ + { + "amount": "55902.787500000", + "slot": { + "period": 56651, + "thread": 20 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 208392, + "thread": 6 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 466890, + "thread": 5 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 591904, + "thread": 15 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 781179, + "thread": 1 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 882257, + "thread": 9 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1009756, + "thread": 5 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1286141, + "thread": 11 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1401536, + "thread": 29 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1612844, + "thread": 3 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1807099, + "thread": 20 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 1842667, + "thread": 26 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2078770, + "thread": 21 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2169380, + "thread": 11 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2334032, + "thread": 26 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2531141, + "thread": 16 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2629905, + "thread": 16 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 2896502, + "thread": 27 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3119930, + "thread": 8 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3243172, + "thread": 2 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3421461, + "thread": 11 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3502545, + "thread": 30 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3693493, + "thread": 29 + } + }, + { + "amount": "55902.787500000", + "slot": { + "period": 3924066, + "thread": 13 + } + } + ], + "AU1iHXJN6Euq5NETn36WMcrDJSDdEecNmVgC2U5VSyg1rd72mHYy": [ + { + "amount": "95.643611149", + "slot": { + "period": 142793, + "thread": 0 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 266169, + "thread": 8 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 396519, + "thread": 1 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 557425, + "thread": 13 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 745483, + "thread": 18 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 865882, + "thread": 15 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1121881, + "thread": 15 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1273935, + "thread": 30 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1369288, + "thread": 0 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1480666, + "thread": 31 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1788498, + "thread": 15 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 1974923, + "thread": 18 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2089181, + "thread": 29 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2276088, + "thread": 23 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2396685, + "thread": 0 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2527988, + "thread": 28 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2696590, + "thread": 15 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 2904890, + "thread": 17 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3012782, + "thread": 20 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3188240, + "thread": 13 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3309620, + "thread": 11 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3520802, + "thread": 16 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3704509, + "thread": 30 + } + }, + { + "amount": "95.643611149", + "slot": { + "period": 3850808, + "thread": 3 + } + } + ], + "AU1iJQC7sFHNxdojAytRnB73K6m4KEhdu9xPqDMcY9fXJkbvHJT4": [ + { + "amount": "245.345128252", + "slot": { + "period": 12496, + "thread": 7 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 296314, + "thread": 8 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 391778, + "thread": 10 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 502939, + "thread": 6 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 744527, + "thread": 22 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 953168, + "thread": 6 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1088332, + "thread": 22 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1224383, + "thread": 2 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1447568, + "thread": 5 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1568791, + "thread": 1 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1787591, + "thread": 20 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 1970934, + "thread": 22 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2067677, + "thread": 19 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2271379, + "thread": 23 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2332633, + "thread": 6 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2609380, + "thread": 20 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2669370, + "thread": 24 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 2934282, + "thread": 18 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 3102828, + "thread": 28 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 3204871, + "thread": 3 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 3354296, + "thread": 8 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 3597979, + "thread": 27 + } + }, + { + "amount": "245.345128252", + "slot": { + "period": 3774065, + "thread": 21 + } + }, + { + "amount": "245.345128246", + "slot": { + "period": 3925281, + "thread": 11 + } + } + ], + "AU1iJh5to1whcQdNYvMmLw5Nfb4LLfHpuwqoMK6DEuHW7rCrDX4T": [ + { + "amount": "58.303592028", + "slot": { + "period": 100149, + "thread": 1 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 229671, + "thread": 21 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 420457, + "thread": 24 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 549828, + "thread": 0 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 811831, + "thread": 10 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 977774, + "thread": 25 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1050256, + "thread": 1 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1182308, + "thread": 19 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1441272, + "thread": 22 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1497376, + "thread": 8 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1763708, + "thread": 2 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 1885165, + "thread": 7 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2067000, + "thread": 7 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2146803, + "thread": 23 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2325897, + "thread": 1 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2518364, + "thread": 4 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2703315, + "thread": 7 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 2879459, + "thread": 31 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 3111282, + "thread": 22 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 3152812, + "thread": 18 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 3364691, + "thread": 6 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 3530725, + "thread": 31 + } + }, + { + "amount": "58.303592028", + "slot": { + "period": 3773284, + "thread": 12 + } + }, + { + "amount": "58.303592016", + "slot": { + "period": 3944337, + "thread": 13 + } + } + ], + "AU1iKDBuKSvoGZwNXF8ewY8aDTo8QsMz3tXJqmJqorsh766Pf8r5": [ + { + "amount": "159.897348315", + "slot": { + "period": 155631, + "thread": 14 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 208497, + "thread": 27 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 391933, + "thread": 27 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 586823, + "thread": 9 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 763623, + "thread": 22 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 977624, + "thread": 7 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1068526, + "thread": 14 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1170901, + "thread": 23 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1380427, + "thread": 14 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1562998, + "thread": 20 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1789651, + "thread": 6 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 1955155, + "thread": 29 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2087760, + "thread": 10 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2181506, + "thread": 14 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2425222, + "thread": 3 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2554792, + "thread": 14 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2661274, + "thread": 5 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2862526, + "thread": 27 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 2994607, + "thread": 28 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 3132974, + "thread": 7 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 3327357, + "thread": 24 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 3478017, + "thread": 30 + } + }, + { + "amount": "159.897348315", + "slot": { + "period": 3629931, + "thread": 13 + } + }, + { + "amount": "159.897348326", + "slot": { + "period": 3930737, + "thread": 26 + } + } + ], + "AU1iKqJRJRmmmBDcTPmo39ZgymWvYMrPQUMGCyjN8PXJk5Hi8SCR": [ + { + "amount": "203.255097739", + "slot": { + "period": 78464, + "thread": 24 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 260082, + "thread": 8 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 417037, + "thread": 7 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 528098, + "thread": 28 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 662554, + "thread": 14 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 925054, + "thread": 4 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1140182, + "thread": 16 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1171248, + "thread": 14 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1368358, + "thread": 11 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1600966, + "thread": 21 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1764675, + "thread": 12 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1956600, + "thread": 15 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 1980675, + "thread": 21 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2275680, + "thread": 8 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2300116, + "thread": 25 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2555064, + "thread": 17 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2651431, + "thread": 10 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2881079, + "thread": 10 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 2967804, + "thread": 22 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 3151225, + "thread": 12 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 3294932, + "thread": 22 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 3616395, + "thread": 6 + } + }, + { + "amount": "203.255097739", + "slot": { + "period": 3624525, + "thread": 30 + } + }, + { + "amount": "203.255097732", + "slot": { + "period": 3829409, + "thread": 22 + } + } + ], + "AU1iL4LjQUbNesxQrky3TcKUsuq4HBNT9STJbYXBuLYjujNT1pNu": [ + { + "amount": "648.728443016", + "slot": { + "period": 68408, + "thread": 17 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 314335, + "thread": 14 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 412114, + "thread": 8 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 539149, + "thread": 17 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 657963, + "thread": 28 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 925777, + "thread": 6 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1117574, + "thread": 22 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1196327, + "thread": 5 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1450076, + "thread": 30 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1591779, + "thread": 23 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1662152, + "thread": 24 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 1857476, + "thread": 12 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2009334, + "thread": 30 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2236583, + "thread": 20 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2318286, + "thread": 5 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2502961, + "thread": 18 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2680741, + "thread": 24 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 2899855, + "thread": 21 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 3092635, + "thread": 21 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 3267182, + "thread": 17 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 3355124, + "thread": 21 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 3458228, + "thread": 8 + } + }, + { + "amount": "648.728443016", + "slot": { + "period": 3744656, + "thread": 15 + } + }, + { + "amount": "648.728443014", + "slot": { + "period": 3838863, + "thread": 17 + } + } + ], + "AU1iLewECgeF5wp3MAiADbFQgLUxFKyPWzwtupvoVgkMib3qTrU3": [ + { + "amount": "109.585847047", + "slot": { + "period": 111935, + "thread": 6 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 264871, + "thread": 29 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 400678, + "thread": 14 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 502629, + "thread": 20 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 679835, + "thread": 17 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 895584, + "thread": 16 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1062156, + "thread": 21 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1169799, + "thread": 29 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1331844, + "thread": 15 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1526705, + "thread": 23 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1757628, + "thread": 17 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 1939153, + "thread": 0 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2046718, + "thread": 19 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2147136, + "thread": 29 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2458566, + "thread": 14 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2567097, + "thread": 30 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2744046, + "thread": 12 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2895120, + "thread": 27 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 2999020, + "thread": 30 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 3167230, + "thread": 6 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 3417238, + "thread": 29 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 3564975, + "thread": 23 + } + }, + { + "amount": "109.585847047", + "slot": { + "period": 3757428, + "thread": 7 + } + }, + { + "amount": "109.585847056", + "slot": { + "period": 3836166, + "thread": 25 + } + } + ], + "AU1iLm8rUSw1gR3esF2N5BkGPw6btfAPtBWqn7tQmUVvapg5PRKn": [ + { + "amount": "76.825253088", + "slot": { + "period": 46564, + "thread": 10 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 207746, + "thread": 17 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 331482, + "thread": 18 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 576396, + "thread": 23 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 722093, + "thread": 3 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 978661, + "thread": 11 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1001614, + "thread": 20 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1235260, + "thread": 29 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1388020, + "thread": 7 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1560198, + "thread": 0 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1804942, + "thread": 31 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 1936398, + "thread": 15 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2134436, + "thread": 18 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2269174, + "thread": 7 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2380209, + "thread": 22 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2581105, + "thread": 3 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2712626, + "thread": 7 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 2910381, + "thread": 3 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 3049572, + "thread": 28 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 3160853, + "thread": 30 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 3296689, + "thread": 31 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 3479102, + "thread": 10 + } + }, + { + "amount": "76.825253088", + "slot": { + "period": 3620425, + "thread": 25 + } + }, + { + "amount": "76.825253090", + "slot": { + "period": 3837705, + "thread": 28 + } + } + ], + "AU1iLzeg3C9qML4njxv3ViJ9KjRcaZ1GR17ge5e8UyNoznhFqEzN": [ + { + "amount": "278.366012796", + "slot": { + "period": 86260, + "thread": 9 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 258639, + "thread": 10 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 336274, + "thread": 28 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 520112, + "thread": 25 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 761857, + "thread": 8 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 923153, + "thread": 24 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 991110, + "thread": 22 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 1218603, + "thread": 29 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 1441801, + "thread": 13 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 1564914, + "thread": 31 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 1657366, + "thread": 13 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 1879701, + "thread": 23 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2041775, + "thread": 1 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2259099, + "thread": 29 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2416815, + "thread": 20 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2591978, + "thread": 14 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2743513, + "thread": 18 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2847129, + "thread": 13 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 2969576, + "thread": 13 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 3179343, + "thread": 4 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 3329129, + "thread": 16 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 3611017, + "thread": 4 + } + }, + { + "amount": "278.366012796", + "slot": { + "period": 3765921, + "thread": 15 + } + }, + { + "amount": "278.366012795", + "slot": { + "period": 3824768, + "thread": 21 + } + } + ], + "AU1iMJnSiZLcDJN5ToMafRTgAXesneFDa8VGPnxmLMxiWpG5gjq1": [ + { + "amount": "680.608823614", + "slot": { + "period": 54135, + "thread": 2 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 239046, + "thread": 5 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 407601, + "thread": 6 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 623987, + "thread": 30 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 777559, + "thread": 12 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 832634, + "thread": 9 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1046269, + "thread": 21 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1256935, + "thread": 18 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1357377, + "thread": 28 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1559341, + "thread": 14 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1716892, + "thread": 7 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 1840587, + "thread": 7 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2084282, + "thread": 2 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2147283, + "thread": 7 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2374711, + "thread": 22 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2519003, + "thread": 21 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2774087, + "thread": 0 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 2883167, + "thread": 24 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 3115062, + "thread": 21 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 3146954, + "thread": 13 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 3385154, + "thread": 27 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 3589057, + "thread": 22 + } + }, + { + "amount": "680.608823614", + "slot": { + "period": 3757996, + "thread": 25 + } + }, + { + "amount": "680.608823625", + "slot": { + "period": 3789287, + "thread": 19 + } + } + ], + "AU1iMU8gfSt8GwLcWS7BYxcNkLiGAQDcXXFwRhG8EgMyAXJdiPeE": [ + { + "amount": "560.406940339", + "slot": { + "period": 159565, + "thread": 11 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 248861, + "thread": 25 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 395873, + "thread": 3 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 561569, + "thread": 3 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 699785, + "thread": 3 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 845410, + "thread": 8 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1143839, + "thread": 18 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1201211, + "thread": 24 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1442465, + "thread": 3 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1500771, + "thread": 7 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1741874, + "thread": 2 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 1853070, + "thread": 25 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2043581, + "thread": 18 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2227512, + "thread": 27 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2448309, + "thread": 23 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2476918, + "thread": 24 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2783186, + "thread": 29 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2908649, + "thread": 19 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 2993886, + "thread": 23 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 3129653, + "thread": 26 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 3386544, + "thread": 2 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 3563678, + "thread": 30 + } + }, + { + "amount": "560.406940339", + "slot": { + "period": 3626439, + "thread": 25 + } + }, + { + "amount": "560.406940330", + "slot": { + "period": 3905475, + "thread": 29 + } + } + ], + "AU1iMatxSPUGWXsGrAvBbYR3Wzvtv1g93qFcutR4b8L2th7hTqeT": [ + { + "amount": "372.378834158", + "slot": { + "period": 115993, + "thread": 27 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 187030, + "thread": 30 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 430987, + "thread": 12 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 509926, + "thread": 18 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 684703, + "thread": 25 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 956851, + "thread": 11 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1127260, + "thread": 22 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1190682, + "thread": 20 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1363484, + "thread": 27 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1624671, + "thread": 0 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1719125, + "thread": 23 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 1954577, + "thread": 5 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2095775, + "thread": 26 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2263901, + "thread": 31 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2430261, + "thread": 1 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2506348, + "thread": 26 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2787127, + "thread": 17 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2893682, + "thread": 26 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 2958759, + "thread": 14 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 3281384, + "thread": 6 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 3446644, + "thread": 28 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 3569499, + "thread": 7 + } + }, + { + "amount": "372.378834158", + "slot": { + "period": 3678274, + "thread": 23 + } + }, + { + "amount": "372.378834169", + "slot": { + "period": 3867577, + "thread": 2 + } + } + ], + "AU1iPdJ4KxmQY3sNmja8EKokaPhdGUGwBxZtuwYHrcfBJwkwqBDL": [ + { + "amount": "84.356246723", + "slot": { + "period": 152362, + "thread": 5 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 191720, + "thread": 14 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 350967, + "thread": 22 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 578576, + "thread": 10 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 688046, + "thread": 22 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 877078, + "thread": 9 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1062472, + "thread": 25 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1191598, + "thread": 5 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1355969, + "thread": 27 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1622201, + "thread": 19 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1772420, + "thread": 18 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 1884679, + "thread": 10 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2134988, + "thread": 21 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2262288, + "thread": 11 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2453821, + "thread": 10 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2578719, + "thread": 6 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2774200, + "thread": 20 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 2848654, + "thread": 9 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 3080289, + "thread": 14 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 3221830, + "thread": 24 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 3353917, + "thread": 11 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 3485746, + "thread": 2 + } + }, + { + "amount": "84.356246723", + "slot": { + "period": 3756124, + "thread": 22 + } + }, + { + "amount": "84.356246713", + "slot": { + "period": 3858506, + "thread": 9 + } + } + ], + "AU1iQ4dGDf2hD7Ysdaiw6CVjjNmPjfFDQZ3tXPnirnkJGgTpS7Ew": [ + { + "amount": "88.697713420", + "slot": { + "period": 120894, + "thread": 21 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 320289, + "thread": 6 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 458011, + "thread": 20 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 583319, + "thread": 27 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 661475, + "thread": 3 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 977922, + "thread": 26 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1099394, + "thread": 27 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1232204, + "thread": 4 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1345385, + "thread": 9 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1568123, + "thread": 30 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1684400, + "thread": 28 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 1847046, + "thread": 17 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2036633, + "thread": 18 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2227217, + "thread": 19 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2321190, + "thread": 8 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2488440, + "thread": 31 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2756739, + "thread": 20 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 2940010, + "thread": 25 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 3078448, + "thread": 11 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 3186454, + "thread": 19 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 3427054, + "thread": 7 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 3616826, + "thread": 6 + } + }, + { + "amount": "88.697713420", + "slot": { + "period": 3770746, + "thread": 9 + } + }, + { + "amount": "88.697713424", + "slot": { + "period": 3809876, + "thread": 22 + } + } + ], + "AU1iRNrSGJoiEVhT4AEBbd1iwHPX1rAQ7Z3nYjW8HQpZRUh4BwbL": [ + { + "amount": "245.075031353", + "slot": { + "period": 133265, + "thread": 4 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 283358, + "thread": 4 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 338935, + "thread": 10 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 627908, + "thread": 5 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 806266, + "thread": 26 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 940602, + "thread": 27 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1012498, + "thread": 9 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1232172, + "thread": 7 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1436088, + "thread": 16 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1484320, + "thread": 12 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1711840, + "thread": 1 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1896944, + "thread": 12 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 1981557, + "thread": 5 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 2245136, + "thread": 7 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 2431962, + "thread": 15 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 2528334, + "thread": 4 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 2679821, + "thread": 29 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 2858295, + "thread": 20 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 3078340, + "thread": 11 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 3260573, + "thread": 7 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 3437900, + "thread": 24 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 3506078, + "thread": 17 + } + }, + { + "amount": "245.075031353", + "slot": { + "period": 3751466, + "thread": 29 + } + }, + { + "amount": "245.075031347", + "slot": { + "period": 3822836, + "thread": 6 + } + } + ], + "AU1iRYjENTSYLwKoxusq2FLNHzNTqD4BGfkUdjHye3fspkDuspRs": [ + { + "amount": "164.741737723", + "slot": { + "period": 60524, + "thread": 3 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 190852, + "thread": 15 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 447373, + "thread": 24 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 561931, + "thread": 28 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 703648, + "thread": 20 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 954177, + "thread": 20 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1118561, + "thread": 8 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1211106, + "thread": 24 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1333596, + "thread": 19 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1601273, + "thread": 16 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1772407, + "thread": 28 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 1830814, + "thread": 28 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2115017, + "thread": 3 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2291233, + "thread": 30 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2432879, + "thread": 20 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2513855, + "thread": 22 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2664411, + "thread": 3 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 2860248, + "thread": 15 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 3024882, + "thread": 0 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 3188704, + "thread": 13 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 3434032, + "thread": 10 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 3513438, + "thread": 17 + } + }, + { + "amount": "164.741737723", + "slot": { + "period": 3640779, + "thread": 0 + } + }, + { + "amount": "164.741737734", + "slot": { + "period": 3861458, + "thread": 13 + } + } + ], + "AU1iRdZexe4FKz2SJK5M6ypgk1QASxqDTUQCCQPbCwBJ75449gTz": [ + { + "amount": "116.146639196", + "slot": { + "period": 163074, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 278663, + "thread": 15 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 424086, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 508018, + "thread": 19 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 786435, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 868540, + "thread": 20 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1003850, + "thread": 9 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1198512, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1474899, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1643358, + "thread": 5 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1771697, + "thread": 12 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 1948856, + "thread": 22 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2109145, + "thread": 4 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2150312, + "thread": 27 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2323534, + "thread": 6 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2620658, + "thread": 7 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2744100, + "thread": 4 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 2867139, + "thread": 27 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 3108121, + "thread": 21 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 3122389, + "thread": 25 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 3450157, + "thread": 14 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 3609468, + "thread": 22 + } + }, + { + "amount": "116.146639196", + "slot": { + "period": 3644143, + "thread": 14 + } + }, + { + "amount": "116.146639206", + "slot": { + "period": 3942423, + "thread": 2 + } + } + ], + "AU1iRwPM2dtR4YBPHp3Qzzi3MNfVwZatzMacyoYqogP8avRnYrcq": [ + { + "amount": "109.595943032", + "slot": { + "period": 108951, + "thread": 28 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 173604, + "thread": 20 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 486002, + "thread": 25 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 561433, + "thread": 4 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 674695, + "thread": 6 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 883411, + "thread": 30 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1122954, + "thread": 25 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1286393, + "thread": 8 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1440578, + "thread": 7 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1600332, + "thread": 18 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1677472, + "thread": 1 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 1860855, + "thread": 11 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2125638, + "thread": 27 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2214898, + "thread": 16 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2457732, + "thread": 13 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2507654, + "thread": 21 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2662559, + "thread": 19 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 2953758, + "thread": 6 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 3090771, + "thread": 9 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 3250751, + "thread": 29 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 3312941, + "thread": 18 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 3551357, + "thread": 18 + } + }, + { + "amount": "109.595943032", + "slot": { + "period": 3685612, + "thread": 6 + } + }, + { + "amount": "109.595943038", + "slot": { + "period": 3836558, + "thread": 25 + } + } + ], + "AU1iS6Sm1iLbasd3w79cvdA7TxMNxMAJab5MkbQKy6TGSbc1UF8B": [ + { + "amount": "71.804864684", + "slot": { + "period": 55989, + "thread": 5 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 183441, + "thread": 27 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 390352, + "thread": 25 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 532393, + "thread": 16 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 711200, + "thread": 26 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 906186, + "thread": 1 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1102864, + "thread": 30 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1224736, + "thread": 1 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1354602, + "thread": 19 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1506434, + "thread": 4 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1797219, + "thread": 20 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 1925763, + "thread": 21 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2034959, + "thread": 30 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2228427, + "thread": 21 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2329213, + "thread": 2 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2508073, + "thread": 12 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2689879, + "thread": 15 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 2930063, + "thread": 14 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 3044245, + "thread": 17 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 3138623, + "thread": 9 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 3332779, + "thread": 15 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 3506704, + "thread": 15 + } + }, + { + "amount": "71.804864684", + "slot": { + "period": 3773838, + "thread": 2 + } + }, + { + "amount": "71.804864694", + "slot": { + "period": 3864481, + "thread": 0 + } + } + ], + "AU1iS86NJBh9pjx1jKoAdeRz4F3N1k9rPZuXr6aUBdLA7R7HWhQu": [ + { + "amount": "490.267530196", + "slot": { + "period": 164516, + "thread": 11 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 260742, + "thread": 4 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 410636, + "thread": 15 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 520104, + "thread": 11 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 742334, + "thread": 4 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 903658, + "thread": 18 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1001686, + "thread": 11 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1161934, + "thread": 26 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1326825, + "thread": 26 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1558001, + "thread": 22 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1681580, + "thread": 8 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 1881550, + "thread": 17 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2013465, + "thread": 21 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2210532, + "thread": 3 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2322414, + "thread": 7 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2491763, + "thread": 26 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2727621, + "thread": 21 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 2922393, + "thread": 9 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 3021766, + "thread": 3 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 3150938, + "thread": 17 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 3289513, + "thread": 25 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 3490622, + "thread": 24 + } + }, + { + "amount": "490.267530196", + "slot": { + "period": 3689440, + "thread": 2 + } + }, + { + "amount": "490.267530202", + "slot": { + "period": 3942930, + "thread": 24 + } + } + ], + "AU1iSdcmF3reL83t2R8DYeTtrChyhdFKjd7Guy8m7q6UPxKfPQTY": [ + { + "amount": "59.455430893", + "slot": { + "period": 35521, + "thread": 8 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 258154, + "thread": 29 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 339506, + "thread": 21 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 495386, + "thread": 28 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 663274, + "thread": 26 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 928343, + "thread": 25 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 997636, + "thread": 31 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 1249218, + "thread": 28 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 1361336, + "thread": 21 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 1508305, + "thread": 19 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 1723149, + "thread": 2 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 1939347, + "thread": 6 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2124555, + "thread": 29 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2190692, + "thread": 23 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2295682, + "thread": 27 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2622935, + "thread": 15 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2698789, + "thread": 31 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2953673, + "thread": 11 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 2971818, + "thread": 14 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 3171111, + "thread": 27 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 3302496, + "thread": 1 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 3612983, + "thread": 2 + } + }, + { + "amount": "59.455430893", + "slot": { + "period": 3634844, + "thread": 0 + } + }, + { + "amount": "59.455430884", + "slot": { + "period": 3806653, + "thread": 11 + } + } + ], + "AU1iSj3T5LLdGZjQybJLL6kdJ32jSF73GC3h6MYxSLR8MNPgB1Qf": [ + { + "amount": "138.088917703", + "slot": { + "period": 155365, + "thread": 18 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 305250, + "thread": 24 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 472223, + "thread": 19 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 606755, + "thread": 2 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 667126, + "thread": 3 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 887997, + "thread": 1 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 995271, + "thread": 19 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 1280858, + "thread": 11 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 1449644, + "thread": 21 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 1644231, + "thread": 27 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 1710597, + "thread": 3 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 1847815, + "thread": 31 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2051001, + "thread": 20 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2186317, + "thread": 11 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2360228, + "thread": 2 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2503164, + "thread": 24 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2786860, + "thread": 1 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2949238, + "thread": 13 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 2986690, + "thread": 5 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 3238714, + "thread": 13 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 3398143, + "thread": 26 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 3617930, + "thread": 2 + } + }, + { + "amount": "138.088917703", + "slot": { + "period": 3747575, + "thread": 8 + } + }, + { + "amount": "138.088917709", + "slot": { + "period": 3903582, + "thread": 14 + } + } + ], + "AU1iSkpMcKvguTTxQ29Rf3D2bM9bzhGJz9ZZW8NVKMKaC8ZQFbTW": [ + { + "amount": "143.656733563", + "slot": { + "period": 51747, + "thread": 20 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 262380, + "thread": 1 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 391985, + "thread": 5 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 571874, + "thread": 12 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 679452, + "thread": 5 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 932549, + "thread": 2 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1140006, + "thread": 4 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1308786, + "thread": 18 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1477808, + "thread": 1 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1548962, + "thread": 1 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1804084, + "thread": 20 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 1830914, + "thread": 4 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2032839, + "thread": 28 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2240932, + "thread": 14 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2343779, + "thread": 7 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2470232, + "thread": 19 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2631434, + "thread": 27 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 2802610, + "thread": 18 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 3120371, + "thread": 30 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 3247695, + "thread": 3 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 3357304, + "thread": 1 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 3491950, + "thread": 25 + } + }, + { + "amount": "143.656733563", + "slot": { + "period": 3704092, + "thread": 9 + } + }, + { + "amount": "143.656733561", + "slot": { + "period": 3936164, + "thread": 0 + } + } + ], + "AU1iTkisNLDRy6sYnTdB4gQFA8om7joZfU29Ak6eKpXf1d2c9KUa": [ + { + "amount": "664.737472630", + "slot": { + "period": 40052, + "thread": 17 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 301393, + "thread": 7 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 356955, + "thread": 9 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 639799, + "thread": 21 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 696582, + "thread": 26 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 920410, + "thread": 11 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 989614, + "thread": 0 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 1160410, + "thread": 22 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 1452043, + "thread": 20 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 1594611, + "thread": 6 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 1749163, + "thread": 22 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 1908546, + "thread": 13 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2016432, + "thread": 22 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2218296, + "thread": 28 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2334619, + "thread": 9 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2499606, + "thread": 1 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2695838, + "thread": 28 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 2897911, + "thread": 18 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 3052274, + "thread": 10 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 3166635, + "thread": 18 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 3390482, + "thread": 29 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 3604825, + "thread": 17 + } + }, + { + "amount": "664.737472630", + "slot": { + "period": 3763951, + "thread": 1 + } + }, + { + "amount": "664.737472624", + "slot": { + "period": 3894513, + "thread": 8 + } + } + ], + "AU1iUW5dPoax487knmAgY5Zo1BpvjyS5KWtTg9XZr6WwFpnC1v7q": [ + { + "amount": "93.642613008", + "slot": { + "period": 123917, + "thread": 27 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 313818, + "thread": 18 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 357396, + "thread": 31 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 577872, + "thread": 15 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 812804, + "thread": 5 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 866480, + "thread": 26 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1084721, + "thread": 14 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1284639, + "thread": 10 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1469676, + "thread": 28 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1550137, + "thread": 10 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1724579, + "thread": 1 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1883345, + "thread": 3 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 1996912, + "thread": 8 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 2208836, + "thread": 2 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 2405883, + "thread": 18 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 2579957, + "thread": 27 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 2684379, + "thread": 1 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 2864713, + "thread": 29 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 3073859, + "thread": 22 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 3191154, + "thread": 16 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 3373728, + "thread": 5 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 3535304, + "thread": 2 + } + }, + { + "amount": "93.642613008", + "slot": { + "period": 3688294, + "thread": 16 + } + }, + { + "amount": "93.642613001", + "slot": { + "period": 3883838, + "thread": 16 + } + } + ], + "AU1iUzuHiWLLCy7XjYfsZb9fERkTw6soxaHHVhPCWakoXcp5LpTJ": [ + { + "amount": "245.972448236", + "slot": { + "period": 74664, + "thread": 18 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 219778, + "thread": 20 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 360476, + "thread": 19 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 556534, + "thread": 29 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 754640, + "thread": 10 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 927580, + "thread": 9 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1053222, + "thread": 27 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1289518, + "thread": 28 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1345139, + "thread": 17 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1600920, + "thread": 19 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1745788, + "thread": 22 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1833730, + "thread": 8 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 1996853, + "thread": 10 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 2206645, + "thread": 11 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 2388699, + "thread": 7 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 2522436, + "thread": 5 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 2722756, + "thread": 11 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 2874734, + "thread": 17 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 3094597, + "thread": 8 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 3164923, + "thread": 22 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 3334320, + "thread": 4 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 3531884, + "thread": 20 + } + }, + { + "amount": "245.972448236", + "slot": { + "period": 3735444, + "thread": 27 + } + }, + { + "amount": "245.972448244", + "slot": { + "period": 3787804, + "thread": 20 + } + } + ], + "AU1iViUqQWbypVQp4Ngb8dd5KjqhYbnMMYXYbtEEk849bdakyXJ7": [ + { + "amount": "633.925246221", + "slot": { + "period": 107780, + "thread": 11 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 262915, + "thread": 11 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 390442, + "thread": 18 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 552051, + "thread": 30 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 741313, + "thread": 29 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 941437, + "thread": 5 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1138588, + "thread": 3 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1311342, + "thread": 2 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1333802, + "thread": 3 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1599700, + "thread": 4 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1777719, + "thread": 23 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 1842362, + "thread": 22 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2052490, + "thread": 13 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2193437, + "thread": 0 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2377716, + "thread": 28 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2610806, + "thread": 20 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2658936, + "thread": 24 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 2953776, + "thread": 11 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 3038815, + "thread": 26 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 3146933, + "thread": 10 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 3301277, + "thread": 18 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 3539944, + "thread": 15 + } + }, + { + "amount": "633.925246221", + "slot": { + "period": 3638062, + "thread": 24 + } + }, + { + "amount": "633.925246212", + "slot": { + "period": 3841390, + "thread": 1 + } + } + ], + "AU1iXbGpHFxQuyLRkTJDKEwCJ29wSPkNUEcsTDtPm6UxvE39aP1h": [ + { + "amount": "447.849205326", + "slot": { + "period": 128224, + "thread": 31 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 310159, + "thread": 25 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 331408, + "thread": 8 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 540599, + "thread": 28 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 664860, + "thread": 18 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 890087, + "thread": 9 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1021170, + "thread": 25 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1222709, + "thread": 4 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1400067, + "thread": 9 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1594368, + "thread": 28 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1753829, + "thread": 28 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 1858328, + "thread": 3 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2082469, + "thread": 8 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2259257, + "thread": 29 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2437677, + "thread": 27 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2539829, + "thread": 25 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2729504, + "thread": 7 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 2825567, + "thread": 9 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 3009008, + "thread": 26 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 3266658, + "thread": 12 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 3332328, + "thread": 17 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 3486746, + "thread": 19 + } + }, + { + "amount": "447.849205326", + "slot": { + "period": 3669130, + "thread": 20 + } + }, + { + "amount": "447.849205325", + "slot": { + "period": 3897303, + "thread": 5 + } + } + ], + "AU1iYDyqNGHAefS1574AcLMfgXjpKpywofiSrMXkDzLDAo13GVgE": [ + { + "amount": "118.749488480", + "slot": { + "period": 94207, + "thread": 21 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 299091, + "thread": 15 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 431922, + "thread": 31 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 602349, + "thread": 22 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 762074, + "thread": 30 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 954181, + "thread": 12 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1035515, + "thread": 1 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1165944, + "thread": 22 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1442447, + "thread": 28 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1571007, + "thread": 21 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1655532, + "thread": 0 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 1956514, + "thread": 10 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2019498, + "thread": 27 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2203882, + "thread": 22 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2392512, + "thread": 28 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2587831, + "thread": 11 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2769755, + "thread": 7 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 2852662, + "thread": 7 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 3076752, + "thread": 22 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 3157318, + "thread": 12 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 3374252, + "thread": 22 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 3519229, + "thread": 25 + } + }, + { + "amount": "118.749488480", + "slot": { + "period": 3680659, + "thread": 20 + } + }, + { + "amount": "118.749488487", + "slot": { + "period": 3828322, + "thread": 3 + } + } + ], + "AU1iYuSdXL7o9X1D1nSLHYFGgyotMXfFRFSab7VkmqnUpLu1Yzhe": [ + { + "amount": "165.025962284", + "slot": { + "period": 86697, + "thread": 11 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 210434, + "thread": 24 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 451196, + "thread": 30 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 522426, + "thread": 7 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 791940, + "thread": 9 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 916202, + "thread": 13 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1112164, + "thread": 9 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1167771, + "thread": 31 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1383636, + "thread": 2 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1627486, + "thread": 21 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1807216, + "thread": 13 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1903122, + "thread": 28 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 1982838, + "thread": 31 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 2271926, + "thread": 10 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 2340934, + "thread": 8 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 2468133, + "thread": 3 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 2721585, + "thread": 21 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 2841766, + "thread": 31 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 3085683, + "thread": 11 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 3156717, + "thread": 28 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 3407195, + "thread": 31 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 3458321, + "thread": 24 + } + }, + { + "amount": "165.025962284", + "slot": { + "period": 3680718, + "thread": 9 + } + }, + { + "amount": "165.025962291", + "slot": { + "period": 3789564, + "thread": 6 + } + } + ], + "AU1iZp9MdPA949CrwQ4H6nAQrR7ZZYa9k65nEpaNn5N8XsaL6JiK": [ + { + "amount": "60.680218708", + "slot": { + "period": 41766, + "thread": 17 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 248124, + "thread": 14 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 408918, + "thread": 21 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 497856, + "thread": 25 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 765563, + "thread": 21 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 838049, + "thread": 14 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1127321, + "thread": 10 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1299753, + "thread": 24 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1459680, + "thread": 0 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1548689, + "thread": 7 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1802973, + "thread": 25 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 1835006, + "thread": 4 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2126361, + "thread": 0 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2275696, + "thread": 20 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2401258, + "thread": 1 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2505868, + "thread": 30 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2680395, + "thread": 12 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 2836065, + "thread": 17 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 3104590, + "thread": 31 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 3164113, + "thread": 3 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 3442931, + "thread": 8 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 3587873, + "thread": 24 + } + }, + { + "amount": "60.680218708", + "slot": { + "period": 3755254, + "thread": 15 + } + }, + { + "amount": "60.680218718", + "slot": { + "period": 3907640, + "thread": 21 + } + } + ], + "AU1ibAkkpJ12YT84kdmxCM4WKYf4dhc2dNZnjkQVYEcBDS33xbr": [ + { + "amount": "229.767880617", + "slot": { + "period": 152792, + "thread": 7 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 289871, + "thread": 25 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 439039, + "thread": 12 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 606807, + "thread": 24 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 733507, + "thread": 19 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 926195, + "thread": 31 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1020087, + "thread": 21 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1273393, + "thread": 25 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1404226, + "thread": 16 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1523439, + "thread": 4 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1773796, + "thread": 12 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1957001, + "thread": 17 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 1982953, + "thread": 11 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 2185871, + "thread": 27 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 2405218, + "thread": 6 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 2563588, + "thread": 12 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 2698786, + "thread": 1 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 2901798, + "thread": 21 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 3105630, + "thread": 21 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 3189047, + "thread": 21 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 3399994, + "thread": 4 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 3461197, + "thread": 16 + } + }, + { + "amount": "229.767880617", + "slot": { + "period": 3779322, + "thread": 24 + } + }, + { + "amount": "229.767880616", + "slot": { + "period": 3939104, + "thread": 23 + } + } + ], + "AU1ibEWzsqtdk7m6Y8CJZHtrQYgf1cLiJqWbQBBy4Eu3nmZAhmr1": [ + { + "amount": "70.162020825", + "slot": { + "period": 54424, + "thread": 29 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 194426, + "thread": 19 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 362170, + "thread": 9 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 620221, + "thread": 4 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 752252, + "thread": 4 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 894284, + "thread": 7 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1048884, + "thread": 10 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1165386, + "thread": 28 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1381497, + "thread": 26 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1585838, + "thread": 17 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1651693, + "thread": 24 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 1909922, + "thread": 29 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2070255, + "thread": 5 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2244420, + "thread": 1 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2395841, + "thread": 25 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2528175, + "thread": 27 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2644365, + "thread": 23 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 2887142, + "thread": 25 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 3034372, + "thread": 19 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 3240530, + "thread": 6 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 3369731, + "thread": 1 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 3509470, + "thread": 18 + } + }, + { + "amount": "70.162020825", + "slot": { + "period": 3741419, + "thread": 17 + } + }, + { + "amount": "70.162020828", + "slot": { + "period": 3839562, + "thread": 4 + } + } + ], + "AU1ibV9y7BmBeAqJrRxGm1kY3mKoTCAFuYypqiFJRiCZZqRjFJGt": [ + { + "amount": "149.013473622", + "slot": { + "period": 40112, + "thread": 27 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 255058, + "thread": 9 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 463419, + "thread": 3 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 592472, + "thread": 2 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 808071, + "thread": 23 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 944837, + "thread": 2 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1117793, + "thread": 3 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1225292, + "thread": 1 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1338426, + "thread": 29 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1604755, + "thread": 23 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1756449, + "thread": 6 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 1926748, + "thread": 3 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2055319, + "thread": 30 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2185191, + "thread": 20 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2308026, + "thread": 23 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2512393, + "thread": 30 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2726729, + "thread": 19 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 2823562, + "thread": 3 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 3076966, + "thread": 3 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 3144585, + "thread": 7 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 3329720, + "thread": 19 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 3537281, + "thread": 31 + } + }, + { + "amount": "149.013473622", + "slot": { + "period": 3719651, + "thread": 27 + } + }, + { + "amount": "149.013473634", + "slot": { + "period": 3803246, + "thread": 27 + } + } + ], + "AU1ibpgEVeBEdVGa1nbbuBTqtjjLqGJC6aMjUchXpYsE3Qu7bp6p": [ + { + "amount": "217.763237634", + "slot": { + "period": 153979, + "thread": 12 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 170966, + "thread": 21 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 411465, + "thread": 18 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 528946, + "thread": 16 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 654248, + "thread": 23 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 873894, + "thread": 8 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1035214, + "thread": 31 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1280818, + "thread": 27 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1441285, + "thread": 23 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1592411, + "thread": 18 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1749461, + "thread": 10 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1820448, + "thread": 30 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 1995873, + "thread": 10 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 2148830, + "thread": 16 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 2451696, + "thread": 5 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 2481220, + "thread": 10 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 2722666, + "thread": 22 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 2855405, + "thread": 20 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 3051150, + "thread": 30 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 3227985, + "thread": 13 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 3398720, + "thread": 1 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 3478102, + "thread": 18 + } + }, + { + "amount": "217.763237634", + "slot": { + "period": 3676743, + "thread": 20 + } + }, + { + "amount": "217.763237640", + "slot": { + "period": 3880255, + "thread": 18 + } + } + ], + "AU1ibqc4mtAut11f2vHxGnc9hP3F4MRJY64hi6vGaBJYi16Dx9mF": [ + { + "amount": "94.739327858", + "slot": { + "period": 64685, + "thread": 25 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 277682, + "thread": 25 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 382275, + "thread": 9 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 552514, + "thread": 1 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 769201, + "thread": 27 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 897928, + "thread": 2 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1076201, + "thread": 22 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1264951, + "thread": 0 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1451114, + "thread": 17 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1565986, + "thread": 30 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1788734, + "thread": 25 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 1909247, + "thread": 6 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2050864, + "thread": 19 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2252141, + "thread": 30 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2415295, + "thread": 30 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2614532, + "thread": 21 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2736341, + "thread": 21 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2915872, + "thread": 23 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 2973029, + "thread": 26 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 3266031, + "thread": 29 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 3296580, + "thread": 26 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 3505958, + "thread": 22 + } + }, + { + "amount": "94.739327858", + "slot": { + "period": 3702114, + "thread": 30 + } + }, + { + "amount": "94.739327867", + "slot": { + "period": 3786798, + "thread": 6 + } + } + ], + "AU1icTo8PvV3VQ9J7qCu386xhT4hZ7H5P2PMKhNXJnBwt67Do1MR": [ + { + "amount": "675.564458057", + "slot": { + "period": 21271, + "thread": 30 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 311947, + "thread": 31 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 356387, + "thread": 28 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 503393, + "thread": 1 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 669052, + "thread": 21 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 858187, + "thread": 21 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1107757, + "thread": 14 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1189526, + "thread": 18 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1420158, + "thread": 17 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1555782, + "thread": 11 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1732820, + "thread": 27 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 1820763, + "thread": 10 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2014729, + "thread": 14 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2153930, + "thread": 15 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2312229, + "thread": 29 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2566106, + "thread": 28 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2785639, + "thread": 16 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 2864685, + "thread": 12 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 3024245, + "thread": 21 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 3259773, + "thread": 5 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 3403853, + "thread": 17 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 3456581, + "thread": 6 + } + }, + { + "amount": "675.564458057", + "slot": { + "period": 3758564, + "thread": 22 + } + }, + { + "amount": "675.564458050", + "slot": { + "period": 3915250, + "thread": 2 + } + } + ], + "AU1icg7wVeVskP6vAqM7CTpcEBkQN3TDQRjyoU9DK5Eq2MHmz8f7": [ + { + "amount": "147.901108615", + "slot": { + "period": 157911, + "thread": 15 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 315660, + "thread": 27 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 329163, + "thread": 10 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 540120, + "thread": 18 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 655428, + "thread": 19 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 977657, + "thread": 1 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1054931, + "thread": 6 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1293580, + "thread": 21 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1336736, + "thread": 17 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1553842, + "thread": 28 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1762063, + "thread": 0 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1928329, + "thread": 7 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 1986201, + "thread": 11 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 2162997, + "thread": 17 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 2313318, + "thread": 3 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 2506958, + "thread": 16 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 2698810, + "thread": 15 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 2828223, + "thread": 22 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 3083001, + "thread": 20 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 3219086, + "thread": 24 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 3329218, + "thread": 26 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 3611803, + "thread": 5 + } + }, + { + "amount": "147.901108615", + "slot": { + "period": 3716825, + "thread": 21 + } + }, + { + "amount": "147.901108612", + "slot": { + "period": 3869261, + "thread": 15 + } + } + ], + "AU1icqf7b6V6skPCdfCo2QTZZxyzwoNTf8UWzPhQhC5LBpQDvs4U": [ + { + "amount": "179.408229818", + "slot": { + "period": 73709, + "thread": 19 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 276366, + "thread": 10 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 384698, + "thread": 17 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 496028, + "thread": 14 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 786334, + "thread": 18 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 921703, + "thread": 6 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1001693, + "thread": 24 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1247964, + "thread": 3 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1473714, + "thread": 14 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1510986, + "thread": 15 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1751495, + "thread": 28 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 1932561, + "thread": 10 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2047000, + "thread": 29 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2293279, + "thread": 17 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2431246, + "thread": 14 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2479183, + "thread": 21 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2782635, + "thread": 19 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 2800301, + "thread": 5 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 3106413, + "thread": 2 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 3203074, + "thread": 24 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 3371718, + "thread": 27 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 3569596, + "thread": 18 + } + }, + { + "amount": "179.408229818", + "slot": { + "period": 3664717, + "thread": 21 + } + }, + { + "amount": "179.408229815", + "slot": { + "period": 3842646, + "thread": 27 + } + } + ], + "AU1icyTztm2RwNTc3GW6n9S5DxT7PuGjEdE3LRMdvsLHB7hqbHbu": [ + { + "amount": "112.922143182", + "slot": { + "period": 51825, + "thread": 13 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 276627, + "thread": 1 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 453395, + "thread": 12 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 596357, + "thread": 4 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 819791, + "thread": 6 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 941370, + "thread": 1 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1022745, + "thread": 30 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1245309, + "thread": 6 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1323111, + "thread": 23 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1596859, + "thread": 25 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1757774, + "thread": 23 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1918277, + "thread": 29 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 1997414, + "thread": 9 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2190116, + "thread": 24 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2457492, + "thread": 30 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2481740, + "thread": 13 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2678318, + "thread": 12 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2828451, + "thread": 19 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 2993139, + "thread": 19 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 3248021, + "thread": 23 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 3294264, + "thread": 18 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 3584495, + "thread": 31 + } + }, + { + "amount": "112.922143182", + "slot": { + "period": 3700386, + "thread": 22 + } + }, + { + "amount": "112.922143173", + "slot": { + "period": 3929262, + "thread": 1 + } + } + ], + "AU1id4MsAb7qnvGmKCU8uNxftmZyneaqok9YRVB2yTYJCx5GibhZ": [ + { + "amount": "155.048114225", + "slot": { + "period": 66081, + "thread": 17 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 247619, + "thread": 27 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 433661, + "thread": 4 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 534125, + "thread": 26 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 697131, + "thread": 23 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 965054, + "thread": 11 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1076059, + "thread": 21 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1219570, + "thread": 5 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1390716, + "thread": 8 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1628611, + "thread": 15 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1771234, + "thread": 11 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 1926382, + "thread": 30 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2126182, + "thread": 16 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2175673, + "thread": 26 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2328206, + "thread": 0 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2578906, + "thread": 20 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2690357, + "thread": 14 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2847687, + "thread": 21 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 2980784, + "thread": 25 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 3246251, + "thread": 10 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 3418773, + "thread": 31 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 3508859, + "thread": 17 + } + }, + { + "amount": "155.048114225", + "slot": { + "period": 3660007, + "thread": 12 + } + }, + { + "amount": "155.048114215", + "slot": { + "period": 3864570, + "thread": 26 + } + } + ], + "AU1id7d63CKQT8Kr7CCbknwfQr8mLHJMh4f3ovboZVg2A6LUSK62": [ + { + "amount": "115.506840177", + "slot": { + "period": 80067, + "thread": 2 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 243590, + "thread": 2 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 372346, + "thread": 22 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 637190, + "thread": 13 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 728257, + "thread": 21 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 834898, + "thread": 8 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1100753, + "thread": 3 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1207365, + "thread": 11 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1360255, + "thread": 24 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1497322, + "thread": 22 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1713638, + "thread": 1 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 1883305, + "thread": 0 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2015527, + "thread": 18 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2230511, + "thread": 25 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2373845, + "thread": 7 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2603710, + "thread": 0 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2720519, + "thread": 31 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2799441, + "thread": 19 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 2973298, + "thread": 4 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 3229876, + "thread": 24 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 3422647, + "thread": 7 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 3505689, + "thread": 2 + } + }, + { + "amount": "115.506840177", + "slot": { + "period": 3772369, + "thread": 22 + } + }, + { + "amount": "115.506840166", + "slot": { + "period": 3827515, + "thread": 9 + } + } + ], + "AU1ieECrbiGsYjaGgSXUVMkdpChRAyXxGCeaazTaFJQLNKVo9aeu": [ + { + "amount": "266.094097807", + "slot": { + "period": 156533, + "thread": 25 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 262337, + "thread": 1 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 366894, + "thread": 7 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 518735, + "thread": 31 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 754424, + "thread": 15 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 944657, + "thread": 19 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1053833, + "thread": 25 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1311170, + "thread": 10 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1417919, + "thread": 8 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1539790, + "thread": 27 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1801931, + "thread": 2 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 1968244, + "thread": 12 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2116174, + "thread": 13 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2186331, + "thread": 9 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2371749, + "thread": 22 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2525522, + "thread": 10 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2725026, + "thread": 27 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2814771, + "thread": 23 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 2955615, + "thread": 14 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 3169964, + "thread": 10 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 3296453, + "thread": 30 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 3469886, + "thread": 21 + } + }, + { + "amount": "266.094097807", + "slot": { + "period": 3736251, + "thread": 15 + } + }, + { + "amount": "266.094097810", + "slot": { + "period": 3800013, + "thread": 15 + } + } + ], + "AU1ieN6twikZNQdAFafJRN1Q8CPfK1bYDdA7CUZAWFxpipKphW5y": [ + { + "amount": "127.101807348", + "slot": { + "period": 109035, + "thread": 4 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 174928, + "thread": 31 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 465221, + "thread": 15 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 653151, + "thread": 17 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 686096, + "thread": 24 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 824544, + "thread": 25 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1147244, + "thread": 2 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1236717, + "thread": 22 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1412399, + "thread": 22 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1614452, + "thread": 23 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1682400, + "thread": 15 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 1818087, + "thread": 19 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2062359, + "thread": 14 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2250467, + "thread": 17 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2347360, + "thread": 22 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2568736, + "thread": 26 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2722303, + "thread": 27 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 2853025, + "thread": 21 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 3084647, + "thread": 27 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 3127447, + "thread": 9 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 3374068, + "thread": 21 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 3533204, + "thread": 26 + } + }, + { + "amount": "127.101807348", + "slot": { + "period": 3687354, + "thread": 31 + } + }, + { + "amount": "127.101807351", + "slot": { + "period": 3850891, + "thread": 5 + } + } + ], + "AU1ifovLJLpshPyZ1DniEwMJBNEE971afDCpaUjEgPMuCq3g2HLM": [ + { + "amount": "392.742867550", + "slot": { + "period": 110633, + "thread": 31 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 209466, + "thread": 5 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 338170, + "thread": 27 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 641227, + "thread": 31 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 776318, + "thread": 20 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 968586, + "thread": 11 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1117870, + "thread": 9 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1220714, + "thread": 17 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1467701, + "thread": 16 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1480973, + "thread": 18 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1721422, + "thread": 30 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1894904, + "thread": 28 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 1982146, + "thread": 4 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 2289542, + "thread": 4 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 2371101, + "thread": 5 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 2491178, + "thread": 11 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 2726363, + "thread": 5 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 2831353, + "thread": 19 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 3083683, + "thread": 2 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 3146129, + "thread": 12 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 3446641, + "thread": 29 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 3485976, + "thread": 25 + } + }, + { + "amount": "392.742867550", + "slot": { + "period": 3724590, + "thread": 0 + } + }, + { + "amount": "392.742867553", + "slot": { + "period": 3924506, + "thread": 5 + } + } + ], + "AU1ihk8ZgReMReYAfoLZL5Bz86HFizQGcpfFSQXwDcVZBDU22Wx7": [ + { + "amount": "241.196090208", + "slot": { + "period": 57673, + "thread": 14 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 287448, + "thread": 30 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 330195, + "thread": 22 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 585587, + "thread": 19 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 663262, + "thread": 25 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 907540, + "thread": 15 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1110556, + "thread": 18 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1242191, + "thread": 30 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1346260, + "thread": 19 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1584772, + "thread": 9 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1786983, + "thread": 7 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1935865, + "thread": 31 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 1978614, + "thread": 15 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2261476, + "thread": 7 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2368255, + "thread": 23 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2554410, + "thread": 9 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2729218, + "thread": 5 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2915247, + "thread": 3 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 2968954, + "thread": 26 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 3179858, + "thread": 8 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 3360023, + "thread": 19 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 3493324, + "thread": 8 + } + }, + { + "amount": "241.196090208", + "slot": { + "period": 3744499, + "thread": 11 + } + }, + { + "amount": "241.196090201", + "slot": { + "period": 3826242, + "thread": 14 + } + } + ], + "AU1iiF5qfNUH2CS73MtcC4VGev2YQcK6YESBWJ76oVTSyqgBpCKx": [ + { + "amount": "568.904698511", + "slot": { + "period": 58515, + "thread": 17 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 280606, + "thread": 30 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 364697, + "thread": 26 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 583035, + "thread": 18 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 817491, + "thread": 30 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 855384, + "thread": 23 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1060415, + "thread": 30 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1185114, + "thread": 28 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1433240, + "thread": 6 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1571898, + "thread": 27 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1806574, + "thread": 18 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 1934086, + "thread": 15 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2024979, + "thread": 20 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2270528, + "thread": 21 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2311850, + "thread": 10 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2602106, + "thread": 0 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2717951, + "thread": 5 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2896925, + "thread": 29 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 2972240, + "thread": 7 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 3239693, + "thread": 9 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 3308800, + "thread": 25 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 3451086, + "thread": 9 + } + }, + { + "amount": "568.904698511", + "slot": { + "period": 3664414, + "thread": 28 + } + }, + { + "amount": "568.904698504", + "slot": { + "period": 3815502, + "thread": 4 + } + } + ], + "AU1ijrtayekEWnTmxcRP2THmHtdUGneJXRJ6X5pABrYRqaQhaew4": [ + { + "amount": "100.829893341", + "slot": { + "period": 26225, + "thread": 7 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 252919, + "thread": 8 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 372109, + "thread": 12 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 614984, + "thread": 14 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 732799, + "thread": 4 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 969153, + "thread": 21 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1022148, + "thread": 30 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1163732, + "thread": 27 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1442803, + "thread": 22 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1588623, + "thread": 2 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1681461, + "thread": 6 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 1968346, + "thread": 8 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2084077, + "thread": 17 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2213216, + "thread": 26 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2442237, + "thread": 1 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2598918, + "thread": 23 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2704061, + "thread": 11 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 2913217, + "thread": 10 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 3054779, + "thread": 23 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 3152276, + "thread": 30 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 3385212, + "thread": 21 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 3543804, + "thread": 1 + } + }, + { + "amount": "100.829893341", + "slot": { + "period": 3769891, + "thread": 6 + } + }, + { + "amount": "100.829893350", + "slot": { + "period": 3811641, + "thread": 21 + } + } + ], + "AU1ikFwaMUYM9qMidckBo4MoFoj7NaiDidQnexUsqbJNaebXivLx": [ + { + "amount": "126.429798891", + "slot": { + "period": 47129, + "thread": 29 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 183120, + "thread": 13 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 443755, + "thread": 0 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 593680, + "thread": 7 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 760297, + "thread": 17 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 908854, + "thread": 21 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1008255, + "thread": 5 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1261907, + "thread": 17 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1459823, + "thread": 8 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1546769, + "thread": 8 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1702785, + "thread": 17 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 1894261, + "thread": 31 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2075525, + "thread": 31 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2178054, + "thread": 23 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2336933, + "thread": 29 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2478106, + "thread": 16 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2726602, + "thread": 10 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2800623, + "thread": 29 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 2989116, + "thread": 0 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 3148084, + "thread": 17 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 3393775, + "thread": 11 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 3566602, + "thread": 5 + } + }, + { + "amount": "126.429798891", + "slot": { + "period": 3679631, + "thread": 24 + } + }, + { + "amount": "126.429798886", + "slot": { + "period": 3883794, + "thread": 1 + } + } + ], + "AU1ikKdBDEXQpNPnW5dJZiKiyvihJ2SeePgjXcJ8PWKt74HwEBLH": [ + { + "amount": "351.309194709", + "slot": { + "period": 151232, + "thread": 19 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 195467, + "thread": 27 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 351619, + "thread": 20 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 600633, + "thread": 28 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 657534, + "thread": 7 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 921442, + "thread": 25 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 991746, + "thread": 13 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 1312199, + "thread": 24 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 1379009, + "thread": 9 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 1480791, + "thread": 6 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 1798747, + "thread": 22 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 1906712, + "thread": 7 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2002872, + "thread": 5 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2265414, + "thread": 27 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2380780, + "thread": 3 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2507424, + "thread": 21 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2773081, + "thread": 7 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2947883, + "thread": 16 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 2955454, + "thread": 17 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 3237577, + "thread": 26 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 3378093, + "thread": 4 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 3524551, + "thread": 6 + } + }, + { + "amount": "351.309194709", + "slot": { + "period": 3702567, + "thread": 15 + } + }, + { + "amount": "351.309194702", + "slot": { + "period": 3817079, + "thread": 17 + } + } + ], + "AU1ikZiz1WQMDJaQuL3ykJ9kyabWnR1hy2r5wNUGVvyo9bENeizf": [ + { + "amount": "496.877394968", + "slot": { + "period": 47828, + "thread": 17 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 285628, + "thread": 27 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 383321, + "thread": 26 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 499081, + "thread": 7 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 738037, + "thread": 3 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 978653, + "thread": 2 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1014764, + "thread": 16 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1303979, + "thread": 10 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1437444, + "thread": 2 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1618503, + "thread": 23 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1761376, + "thread": 27 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 1941186, + "thread": 19 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2003866, + "thread": 26 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2206488, + "thread": 29 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2326362, + "thread": 7 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2466015, + "thread": 11 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2673363, + "thread": 10 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 2952581, + "thread": 15 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 3012362, + "thread": 0 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 3231176, + "thread": 16 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 3382538, + "thread": 9 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 3547843, + "thread": 22 + } + }, + { + "amount": "496.877394968", + "slot": { + "period": 3775919, + "thread": 3 + } + }, + { + "amount": "496.877394967", + "slot": { + "period": 3800887, + "thread": 9 + } + } + ], + "AU1ikvYE1bowJ1V4tXdGGdfcrtY2PThfft5RMJaKN5T98wQj1tQW": [ + { + "amount": "265.191148973", + "slot": { + "period": 36772, + "thread": 7 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 186784, + "thread": 19 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 470995, + "thread": 10 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 544755, + "thread": 8 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 752503, + "thread": 13 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 892358, + "thread": 25 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1147030, + "thread": 11 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1292014, + "thread": 9 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1345760, + "thread": 22 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1581510, + "thread": 27 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1711178, + "thread": 8 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 1853775, + "thread": 2 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2099993, + "thread": 17 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2174219, + "thread": 25 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2438408, + "thread": 18 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2585801, + "thread": 3 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2721043, + "thread": 2 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 2846782, + "thread": 20 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 3116081, + "thread": 22 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 3158913, + "thread": 30 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 3449920, + "thread": 28 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 3556506, + "thread": 28 + } + }, + { + "amount": "265.191148973", + "slot": { + "period": 3736368, + "thread": 30 + } + }, + { + "amount": "265.191148975", + "slot": { + "period": 3846501, + "thread": 26 + } + } + ], + "AU1in7NwUTwo1XCpnbnBxrVmzjNA9TRqrBgVToYF8Ayeo4anTYK3": [ + { + "amount": "198.824526110", + "slot": { + "period": 42468, + "thread": 29 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 317086, + "thread": 29 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 396783, + "thread": 6 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 502634, + "thread": 25 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 702053, + "thread": 22 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 948640, + "thread": 13 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1121361, + "thread": 28 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1151145, + "thread": 27 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1412472, + "thread": 17 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1513217, + "thread": 13 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1649279, + "thread": 15 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 1939971, + "thread": 17 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2089504, + "thread": 30 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2208468, + "thread": 8 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2395764, + "thread": 11 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2590729, + "thread": 11 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2728226, + "thread": 14 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2952486, + "thread": 21 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 2976654, + "thread": 12 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 3126885, + "thread": 0 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 3357209, + "thread": 15 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 3510365, + "thread": 25 + } + }, + { + "amount": "198.824526110", + "slot": { + "period": 3657988, + "thread": 23 + } + }, + { + "amount": "198.824526112", + "slot": { + "period": 3867934, + "thread": 6 + } + } + ], + "AU1inzcr9XTPN37np4hi2XUjLyfHbHAq3UcTzqRh4Q87BWLwW9mC": [ + { + "amount": "193.632816297", + "slot": { + "period": 13729, + "thread": 29 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 267442, + "thread": 16 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 489883, + "thread": 3 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 622053, + "thread": 2 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 715502, + "thread": 18 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 855635, + "thread": 12 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1049167, + "thread": 23 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1171536, + "thread": 23 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1380456, + "thread": 28 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1603657, + "thread": 31 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1687291, + "thread": 3 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 1851817, + "thread": 18 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2038141, + "thread": 25 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2237501, + "thread": 9 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2306751, + "thread": 17 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2593345, + "thread": 4 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2786499, + "thread": 6 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2932105, + "thread": 8 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 2972309, + "thread": 29 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 3201495, + "thread": 12 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 3336876, + "thread": 21 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 3595253, + "thread": 29 + } + }, + { + "amount": "193.632816297", + "slot": { + "period": 3705972, + "thread": 4 + } + }, + { + "amount": "193.632816293", + "slot": { + "period": 3888630, + "thread": 27 + } + } + ], + "AU1io1jJ7qdgKdcbRdu6BwKe1UhX5ChZxWi9PhPL7WJe27bfwwQE": [ + { + "amount": "290.294707539", + "slot": { + "period": 144912, + "thread": 30 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 279723, + "thread": 3 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 382005, + "thread": 8 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 494921, + "thread": 8 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 693351, + "thread": 17 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 932161, + "thread": 7 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 987972, + "thread": 0 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 1158703, + "thread": 30 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 1413591, + "thread": 13 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 1563544, + "thread": 4 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 1770272, + "thread": 25 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 1862876, + "thread": 6 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2095702, + "thread": 9 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2235640, + "thread": 16 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2440440, + "thread": 6 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2593915, + "thread": 26 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2747754, + "thread": 8 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2842376, + "thread": 7 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 2985461, + "thread": 8 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 3288592, + "thread": 8 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 3396453, + "thread": 12 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 3496109, + "thread": 27 + } + }, + { + "amount": "290.294707539", + "slot": { + "period": 3716828, + "thread": 21 + } + }, + { + "amount": "290.294707543", + "slot": { + "period": 3922323, + "thread": 12 + } + } + ], + "AU1ioQCicV7v9Jausq1SNACSztz2aFRSYyNE12HZTpqQbkoFTh5i": [ + { + "amount": "119.899082820", + "slot": { + "period": 38099, + "thread": 15 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 198008, + "thread": 14 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 365426, + "thread": 20 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 529700, + "thread": 26 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 698818, + "thread": 9 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 840604, + "thread": 17 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1134594, + "thread": 20 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1249877, + "thread": 7 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1355206, + "thread": 13 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1604743, + "thread": 1 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1741727, + "thread": 22 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1936605, + "thread": 30 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 1986566, + "thread": 10 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2180228, + "thread": 1 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2360759, + "thread": 23 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2547294, + "thread": 8 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2661142, + "thread": 8 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2877811, + "thread": 21 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 2975474, + "thread": 23 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 3261859, + "thread": 12 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 3360532, + "thread": 7 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 3574808, + "thread": 31 + } + }, + { + "amount": "119.899082820", + "slot": { + "period": 3717554, + "thread": 29 + } + }, + { + "amount": "119.899082830", + "slot": { + "period": 3822190, + "thread": 9 + } + } + ], + "AU1ioVBJF17BtbNARMKquCPoRHtZNiPRXHCDXUQzeeoZwy4vRJb5": [ + { + "amount": "87.939940206", + "slot": { + "period": 135266, + "thread": 16 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 169511, + "thread": 27 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 465221, + "thread": 28 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 548189, + "thread": 12 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 774641, + "thread": 10 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 960239, + "thread": 5 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 985588, + "thread": 18 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1184573, + "thread": 21 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1473297, + "thread": 19 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1512003, + "thread": 15 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1664048, + "thread": 19 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1904338, + "thread": 14 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 1999203, + "thread": 10 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2178562, + "thread": 18 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2311877, + "thread": 13 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2493292, + "thread": 17 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2755466, + "thread": 18 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2842908, + "thread": 21 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 2989385, + "thread": 12 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 3201192, + "thread": 1 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 3401501, + "thread": 31 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 3605025, + "thread": 18 + } + }, + { + "amount": "87.939940206", + "slot": { + "period": 3718435, + "thread": 19 + } + }, + { + "amount": "87.939940198", + "slot": { + "period": 3812083, + "thread": 14 + } + } + ], + "AU1iosxyN9DgxtiThjU68h3hJBotd2frt9ukKypNxYRAaxthsQQV": [ + { + "amount": "306.551492690", + "slot": { + "period": 83517, + "thread": 15 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 254189, + "thread": 26 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 472623, + "thread": 1 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 603376, + "thread": 20 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 769772, + "thread": 30 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 945764, + "thread": 15 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1096804, + "thread": 16 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1252411, + "thread": 27 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1470887, + "thread": 11 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1596214, + "thread": 8 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1699199, + "thread": 3 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 1949224, + "thread": 12 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2055088, + "thread": 30 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2204127, + "thread": 4 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2431489, + "thread": 20 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2526157, + "thread": 13 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2655844, + "thread": 16 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 2851278, + "thread": 25 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 3094317, + "thread": 4 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 3223810, + "thread": 7 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 3344795, + "thread": 17 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 3584551, + "thread": 1 + } + }, + { + "amount": "306.551492690", + "slot": { + "period": 3649010, + "thread": 27 + } + }, + { + "amount": "306.551492681", + "slot": { + "period": 3912997, + "thread": 31 + } + } + ], + "AU1ipAtM5NyG9vhRLzsrDQTNQRi4juQ98hwpFQHzRupEeKMgqYUg": [ + { + "amount": "142.320155951", + "slot": { + "period": 80723, + "thread": 14 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 216271, + "thread": 18 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 380537, + "thread": 9 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 588146, + "thread": 24 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 688731, + "thread": 6 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 828063, + "thread": 10 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1143331, + "thread": 22 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1182841, + "thread": 19 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1331855, + "thread": 4 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1545727, + "thread": 7 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1668565, + "thread": 5 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1836882, + "thread": 14 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 1991158, + "thread": 15 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2199607, + "thread": 15 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2303168, + "thread": 0 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2508469, + "thread": 13 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2774531, + "thread": 8 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2917267, + "thread": 31 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 2999332, + "thread": 29 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 3268373, + "thread": 31 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 3345936, + "thread": 26 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 3552790, + "thread": 28 + } + }, + { + "amount": "142.320155951", + "slot": { + "period": 3764466, + "thread": 19 + } + }, + { + "amount": "142.320155956", + "slot": { + "period": 3926445, + "thread": 2 + } + } + ], + "AU1ipcejXfw8A6BUaHEvgYS7zaZ6k3o1S8hedwUh2TUxWgLSiAVs": [ + { + "amount": "163.804135232", + "slot": { + "period": 159735, + "thread": 26 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 258258, + "thread": 3 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 374220, + "thread": 1 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 615619, + "thread": 15 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 797847, + "thread": 12 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 932118, + "thread": 13 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1026964, + "thread": 15 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1301535, + "thread": 12 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1351041, + "thread": 31 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1524218, + "thread": 21 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1782359, + "thread": 10 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 1831211, + "thread": 31 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2075857, + "thread": 10 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2262094, + "thread": 13 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2355540, + "thread": 0 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2549204, + "thread": 27 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2780754, + "thread": 21 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 2952742, + "thread": 25 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 3113638, + "thread": 8 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 3252312, + "thread": 31 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 3422215, + "thread": 1 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 3508310, + "thread": 20 + } + }, + { + "amount": "163.804135232", + "slot": { + "period": 3688238, + "thread": 22 + } + }, + { + "amount": "163.804135238", + "slot": { + "period": 3858078, + "thread": 0 + } + } + ], + "AU1iq3tBHF4GPH8nFN92BXmFZr5bGFoT13XUFxKx9kt5HTNMpW3r": [ + { + "amount": "242.912415276", + "slot": { + "period": 75998, + "thread": 9 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 241584, + "thread": 17 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 429295, + "thread": 11 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 628864, + "thread": 12 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 719276, + "thread": 9 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 905196, + "thread": 21 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1058137, + "thread": 15 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1249985, + "thread": 6 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1339659, + "thread": 23 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1628949, + "thread": 23 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1689307, + "thread": 0 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 1916461, + "thread": 18 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2093903, + "thread": 28 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2180906, + "thread": 20 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2396088, + "thread": 1 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2596656, + "thread": 4 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2658981, + "thread": 4 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 2888765, + "thread": 14 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 3105073, + "thread": 20 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 3254195, + "thread": 2 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 3295347, + "thread": 28 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 3458164, + "thread": 14 + } + }, + { + "amount": "242.912415276", + "slot": { + "period": 3619386, + "thread": 13 + } + }, + { + "amount": "242.912415279", + "slot": { + "period": 3800015, + "thread": 19 + } + } + ], + "AU1iqYTXLmgWGQSMJoikVM5oM95iaxdNz1JW6tyqekErGpEP8QQd": [ + { + "amount": "60.198967170", + "slot": { + "period": 52467, + "thread": 31 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 224216, + "thread": 9 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 347454, + "thread": 27 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 650615, + "thread": 8 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 676932, + "thread": 15 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 858434, + "thread": 24 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1146021, + "thread": 27 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1185982, + "thread": 30 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1327744, + "thread": 24 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1641100, + "thread": 7 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1697101, + "thread": 19 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 1951133, + "thread": 12 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2122511, + "thread": 17 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2260540, + "thread": 31 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2412793, + "thread": 22 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2513083, + "thread": 31 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2666372, + "thread": 16 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 2923687, + "thread": 5 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 3099175, + "thread": 1 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 3242491, + "thread": 2 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 3299057, + "thread": 7 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 3575521, + "thread": 9 + } + }, + { + "amount": "60.198967170", + "slot": { + "period": 3770514, + "thread": 27 + } + }, + { + "amount": "60.198967177", + "slot": { + "period": 3859036, + "thread": 21 + } + } + ], + "AU1iqugp49sGMo3Q9D6dt6CbvrCGJouFynBGEtSxYuLAbjYDDUwo": [ + { + "amount": "489.269825753", + "slot": { + "period": 80104, + "thread": 12 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 187404, + "thread": 19 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 412133, + "thread": 0 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 627412, + "thread": 6 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 771067, + "thread": 26 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 834243, + "thread": 30 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1110603, + "thread": 12 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1225686, + "thread": 26 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1476222, + "thread": 9 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1587084, + "thread": 2 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1690940, + "thread": 11 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 1966094, + "thread": 5 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2105674, + "thread": 28 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2225714, + "thread": 7 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2299271, + "thread": 9 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2508971, + "thread": 20 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2690733, + "thread": 3 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 2910500, + "thread": 13 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 3027595, + "thread": 23 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 3204750, + "thread": 15 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 3384542, + "thread": 14 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 3582806, + "thread": 17 + } + }, + { + "amount": "489.269825753", + "slot": { + "period": 3764714, + "thread": 24 + } + }, + { + "amount": "489.269825745", + "slot": { + "period": 3802012, + "thread": 22 + } + } + ], + "AU1irhcNx9cwUpg2bkgs2VCayZB5jK4TiqMG6gHfSPSuHzr2h2ag": [ + { + "amount": "376.150115549", + "slot": { + "period": 68640, + "thread": 9 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 176122, + "thread": 11 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 425059, + "thread": 29 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 616824, + "thread": 21 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 659169, + "thread": 11 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 858683, + "thread": 20 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1136254, + "thread": 14 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1159095, + "thread": 26 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1390377, + "thread": 30 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1515880, + "thread": 26 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1736267, + "thread": 21 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 1809764, + "thread": 31 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2039024, + "thread": 17 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2238954, + "thread": 19 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2335053, + "thread": 24 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2471481, + "thread": 28 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2738598, + "thread": 18 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 2897359, + "thread": 1 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 3009746, + "thread": 5 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 3281834, + "thread": 2 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 3400784, + "thread": 5 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 3510105, + "thread": 15 + } + }, + { + "amount": "376.150115549", + "slot": { + "period": 3633582, + "thread": 30 + } + }, + { + "amount": "376.150115538", + "slot": { + "period": 3802778, + "thread": 29 + } + } + ], + "AU1is6woggGsUJntS4Nw4H8vUwyoWSBcnkRhFpoqdkVxmf4dkvYT": [ + { + "amount": "118.774848582", + "slot": { + "period": 22354, + "thread": 19 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 234177, + "thread": 25 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 449737, + "thread": 18 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 542560, + "thread": 15 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 797740, + "thread": 30 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 848243, + "thread": 1 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1046832, + "thread": 23 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1224159, + "thread": 5 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1403071, + "thread": 12 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1487671, + "thread": 14 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1682709, + "thread": 7 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 1970979, + "thread": 7 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2091457, + "thread": 5 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2179821, + "thread": 14 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2334456, + "thread": 12 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2473631, + "thread": 24 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2660922, + "thread": 14 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 2923470, + "thread": 3 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 3084437, + "thread": 9 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 3211157, + "thread": 28 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 3360280, + "thread": 3 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 3471383, + "thread": 6 + } + }, + { + "amount": "118.774848582", + "slot": { + "period": 3642660, + "thread": 4 + } + }, + { + "amount": "118.774848580", + "slot": { + "period": 3913629, + "thread": 31 + } + } + ], + "AU1isqA9ZS76SQ4sPmHZkDJqAu4UFc2sC9xeuKD7EYhzneyapA3d": [ + { + "amount": "613.947979679", + "slot": { + "period": 26514, + "thread": 3 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 190442, + "thread": 5 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 325144, + "thread": 25 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 619483, + "thread": 3 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 806527, + "thread": 28 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 978312, + "thread": 21 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1143208, + "thread": 17 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1211628, + "thread": 28 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1475047, + "thread": 22 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1579144, + "thread": 15 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1761248, + "thread": 3 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 1810144, + "thread": 5 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2092753, + "thread": 16 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2228811, + "thread": 13 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2416671, + "thread": 11 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2537760, + "thread": 12 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2762702, + "thread": 8 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 2827085, + "thread": 22 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 3080803, + "thread": 18 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 3202311, + "thread": 21 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 3422916, + "thread": 15 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 3562921, + "thread": 3 + } + }, + { + "amount": "613.947979679", + "slot": { + "period": 3730759, + "thread": 30 + } + }, + { + "amount": "613.947979685", + "slot": { + "period": 3842674, + "thread": 2 + } + } + ], + "AU1iuPwY34mVSL9uaWzJ1WgQWWXE9s33Uy6MQdbSVWTRfi6m9otm": [ + { + "amount": "114.040529637", + "slot": { + "period": 14448, + "thread": 13 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 202737, + "thread": 14 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 441573, + "thread": 1 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 500885, + "thread": 19 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 727690, + "thread": 10 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 876783, + "thread": 22 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1134523, + "thread": 4 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1231592, + "thread": 8 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1329921, + "thread": 27 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1517329, + "thread": 15 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1713331, + "thread": 24 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 1969117, + "thread": 24 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2129566, + "thread": 18 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2175138, + "thread": 24 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2413937, + "thread": 23 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2545420, + "thread": 16 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2647543, + "thread": 25 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2895061, + "thread": 7 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 2960025, + "thread": 2 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 3229062, + "thread": 26 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 3442580, + "thread": 6 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 3562666, + "thread": 16 + } + }, + { + "amount": "114.040529637", + "slot": { + "period": 3739200, + "thread": 6 + } + }, + { + "amount": "114.040529631", + "slot": { + "period": 3851810, + "thread": 4 + } + } + ], + "AU1iuoD6ZaSbweVwY52TvWttZdGSkibqFRrm8f2pT7d1qXvnpi7F": [ + { + "amount": "125.123030165", + "slot": { + "period": 134477, + "thread": 18 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 262912, + "thread": 7 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 483960, + "thread": 10 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 548703, + "thread": 3 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 695199, + "thread": 9 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 846882, + "thread": 25 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1060869, + "thread": 25 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1292536, + "thread": 5 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1334284, + "thread": 12 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1627111, + "thread": 4 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1706816, + "thread": 27 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 1960505, + "thread": 19 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2019363, + "thread": 26 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2277249, + "thread": 23 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2403517, + "thread": 11 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2498095, + "thread": 5 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2683929, + "thread": 3 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 2898603, + "thread": 6 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 3072107, + "thread": 14 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 3233996, + "thread": 31 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 3404056, + "thread": 31 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 3465942, + "thread": 6 + } + }, + { + "amount": "125.123030165", + "slot": { + "period": 3627117, + "thread": 27 + } + }, + { + "amount": "125.123030171", + "slot": { + "period": 3918128, + "thread": 21 + } + } + ], + "AU1iw35gXQ5f8pVwbCiWktDokL3BP7ySboDA11Pg9aKuSD5mji1m": [ + { + "amount": "124.271462966", + "slot": { + "period": 126255, + "thread": 1 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 246727, + "thread": 21 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 408081, + "thread": 16 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 499009, + "thread": 12 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 739921, + "thread": 28 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 916180, + "thread": 11 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1149466, + "thread": 4 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1174026, + "thread": 12 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1452838, + "thread": 3 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1495316, + "thread": 31 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1682083, + "thread": 13 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 1873372, + "thread": 10 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2078464, + "thread": 12 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2190517, + "thread": 25 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2312318, + "thread": 7 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2613335, + "thread": 4 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2746478, + "thread": 18 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2825138, + "thread": 27 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 2990044, + "thread": 10 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 3128056, + "thread": 17 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 3362496, + "thread": 10 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 3499059, + "thread": 30 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 3764762, + "thread": 17 + } + }, + { + "amount": "124.271462966", + "slot": { + "period": 3873976, + "thread": 9 + } + } + ], + "AU1iyLtQzzKJArF2e5p7ufP5rvghxyHTwWDve9SfHv7mjFVNYW7D": [ + { + "amount": "163.864478089", + "slot": { + "period": 39034, + "thread": 20 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 253268, + "thread": 16 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 412945, + "thread": 15 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 620326, + "thread": 29 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 666130, + "thread": 9 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 854532, + "thread": 15 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1087192, + "thread": 1 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1188741, + "thread": 23 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1433024, + "thread": 13 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1612706, + "thread": 11 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1757453, + "thread": 12 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 1861971, + "thread": 5 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2114637, + "thread": 17 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2181251, + "thread": 29 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2326890, + "thread": 13 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2563123, + "thread": 7 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2651530, + "thread": 19 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2810412, + "thread": 15 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 2992174, + "thread": 24 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 3224302, + "thread": 11 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 3449775, + "thread": 5 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 3531877, + "thread": 1 + } + }, + { + "amount": "163.864478089", + "slot": { + "period": 3692846, + "thread": 14 + } + }, + { + "amount": "163.864478094", + "slot": { + "period": 3882624, + "thread": 28 + } + } + ], + "AU1izJ9MSpiiqUs1CvvuCgTaeanZySe4R2MMg9LrTDF7hmRQEUrU": [ + { + "amount": "60.094766420", + "slot": { + "period": 14958, + "thread": 16 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 186666, + "thread": 11 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 476136, + "thread": 22 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 635644, + "thread": 14 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 692035, + "thread": 7 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 905578, + "thread": 24 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1003759, + "thread": 19 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1193384, + "thread": 8 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1463595, + "thread": 11 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1545479, + "thread": 29 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1805416, + "thread": 6 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 1958261, + "thread": 23 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2063665, + "thread": 9 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2195281, + "thread": 11 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2460670, + "thread": 12 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2543093, + "thread": 29 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2758839, + "thread": 23 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 2796328, + "thread": 25 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 3083993, + "thread": 8 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 3123043, + "thread": 22 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 3416180, + "thread": 15 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 3615922, + "thread": 26 + } + }, + { + "amount": "60.094766420", + "slot": { + "period": 3670777, + "thread": 14 + } + }, + { + "amount": "60.094766410", + "slot": { + "period": 3801232, + "thread": 18 + } + } + ], + "AU1izL6c5W1wUQVLrvvaSRruvd3FEE6uLwmo48NsPdVfe3zizmRe": [ + { + "amount": "133.598734966", + "slot": { + "period": 99756, + "thread": 20 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 205948, + "thread": 17 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 372511, + "thread": 0 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 585671, + "thread": 29 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 659597, + "thread": 21 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 949995, + "thread": 29 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1075495, + "thread": 24 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1269921, + "thread": 15 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1439502, + "thread": 13 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1511685, + "thread": 28 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1704695, + "thread": 23 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1817688, + "thread": 25 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 1999211, + "thread": 3 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 2250895, + "thread": 14 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 2345711, + "thread": 29 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 2492425, + "thread": 26 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 2711264, + "thread": 11 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 2838668, + "thread": 31 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 3079064, + "thread": 13 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 3155210, + "thread": 21 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 3364397, + "thread": 5 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 3504529, + "thread": 0 + } + }, + { + "amount": "133.598734966", + "slot": { + "period": 3665574, + "thread": 10 + } + }, + { + "amount": "133.598734969", + "slot": { + "period": 3892735, + "thread": 0 + } + } + ], + "AU1izRrJ47MvWCDrgHjZbe4bY7aAvB2wTxk49mB2kXS141CNbNB1": [ + { + "amount": "187.006400083", + "slot": { + "period": 26873, + "thread": 24 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 190797, + "thread": 4 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 464901, + "thread": 11 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 533851, + "thread": 8 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 740845, + "thread": 9 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 934690, + "thread": 19 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1092107, + "thread": 9 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1208798, + "thread": 17 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1358796, + "thread": 4 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1568072, + "thread": 18 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1804143, + "thread": 28 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 1869696, + "thread": 14 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2056315, + "thread": 21 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2227696, + "thread": 20 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2332496, + "thread": 30 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2536293, + "thread": 3 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2783021, + "thread": 24 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2842880, + "thread": 31 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 2958367, + "thread": 12 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 3122696, + "thread": 21 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 3386179, + "thread": 26 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 3566160, + "thread": 17 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 3769336, + "thread": 25 + } + }, + { + "amount": "187.006400083", + "slot": { + "period": 3862607, + "thread": 30 + } + } + ], + "AU1j19tEykqY3nWHq7MEAciAbwGjndbtTAzH69Yg9dcVZV5S3eev": [ + { + "amount": "63.743950609", + "slot": { + "period": 56507, + "thread": 28 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 238645, + "thread": 3 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 440365, + "thread": 19 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 615587, + "thread": 30 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 763099, + "thread": 8 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 891831, + "thread": 7 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1003893, + "thread": 25 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1253083, + "thread": 7 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1377843, + "thread": 28 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1568750, + "thread": 4 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1804698, + "thread": 13 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 1968095, + "thread": 23 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2129902, + "thread": 27 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2244183, + "thread": 0 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2337468, + "thread": 7 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2623886, + "thread": 20 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2710467, + "thread": 5 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 2899158, + "thread": 8 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 3026123, + "thread": 0 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 3236474, + "thread": 20 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 3330994, + "thread": 11 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 3496568, + "thread": 22 + } + }, + { + "amount": "63.743950609", + "slot": { + "period": 3638711, + "thread": 8 + } + }, + { + "amount": "63.743950602", + "slot": { + "period": 3796000, + "thread": 9 + } + } + ], + "AU1j1gD65F7wp1ttzDDM68Ux49onEuj6z7N3wQTDvqyHoEvWDeWk": [ + { + "amount": "204.514081361", + "slot": { + "period": 138106, + "thread": 13 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 244745, + "thread": 11 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 346048, + "thread": 9 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 603374, + "thread": 18 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 767484, + "thread": 28 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 952995, + "thread": 7 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1072880, + "thread": 22 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1210385, + "thread": 2 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1379403, + "thread": 19 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1574573, + "thread": 1 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1663155, + "thread": 11 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 1907247, + "thread": 25 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2002002, + "thread": 29 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2293832, + "thread": 25 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2384900, + "thread": 7 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2531625, + "thread": 3 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2684478, + "thread": 18 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2923382, + "thread": 5 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 2989577, + "thread": 17 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 3223102, + "thread": 30 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 3382311, + "thread": 8 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 3527824, + "thread": 7 + } + }, + { + "amount": "204.514081361", + "slot": { + "period": 3667724, + "thread": 22 + } + }, + { + "amount": "204.514081362", + "slot": { + "period": 3873392, + "thread": 26 + } + } + ], + "AU1j2MCsSj9fAE5T7sAYspyxN2ZtdfgXqWUGEPSLvQdTBf53EVE7": [ + { + "amount": "261.006998186", + "slot": { + "period": 32777, + "thread": 22 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 181399, + "thread": 5 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 411668, + "thread": 13 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 531820, + "thread": 7 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 726534, + "thread": 14 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 845913, + "thread": 14 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1066329, + "thread": 30 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1193894, + "thread": 30 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1399697, + "thread": 17 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1502248, + "thread": 22 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1793257, + "thread": 7 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 1880912, + "thread": 29 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2069991, + "thread": 27 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2258538, + "thread": 15 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2316277, + "thread": 10 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2491381, + "thread": 18 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2771458, + "thread": 12 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 2937545, + "thread": 8 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 3113719, + "thread": 22 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 3186888, + "thread": 28 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 3293642, + "thread": 9 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 3556516, + "thread": 13 + } + }, + { + "amount": "261.006998186", + "slot": { + "period": 3737767, + "thread": 10 + } + }, + { + "amount": "261.006998187", + "slot": { + "period": 3790692, + "thread": 29 + } + } + ], + "AU1j2XmrGWKtmzhCHxTTMjogX1oXfXXhPX8fwFe72c4WKWHM6M65": [ + { + "amount": "146.736051267", + "slot": { + "period": 25471, + "thread": 12 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 202346, + "thread": 25 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 370373, + "thread": 20 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 635867, + "thread": 31 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 740569, + "thread": 10 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 946405, + "thread": 2 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1144432, + "thread": 25 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1219220, + "thread": 11 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1406678, + "thread": 29 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1569159, + "thread": 17 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1694922, + "thread": 31 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 1863127, + "thread": 10 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2011481, + "thread": 5 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2197324, + "thread": 8 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2388766, + "thread": 25 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2507047, + "thread": 12 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2692593, + "thread": 11 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 2800183, + "thread": 27 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 3067501, + "thread": 17 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 3236888, + "thread": 12 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 3318231, + "thread": 25 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 3615823, + "thread": 28 + } + }, + { + "amount": "146.736051267", + "slot": { + "period": 3665797, + "thread": 26 + } + }, + { + "amount": "146.736051276", + "slot": { + "period": 3932896, + "thread": 27 + } + } + ], + "AU1j2dC6QsmG4nHXCHYQT6kPDxVXe8oDxJAwVkhe44sLpUVMmjq8": [ + { + "amount": "198.004131725", + "slot": { + "period": 104513, + "thread": 30 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 263505, + "thread": 31 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 345174, + "thread": 2 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 556189, + "thread": 13 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 735410, + "thread": 19 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 976778, + "thread": 23 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1028865, + "thread": 11 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1212507, + "thread": 6 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1419166, + "thread": 10 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1588435, + "thread": 4 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1772734, + "thread": 10 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 1863517, + "thread": 19 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2008017, + "thread": 4 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2147362, + "thread": 0 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2415956, + "thread": 18 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2532729, + "thread": 7 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2781952, + "thread": 19 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 2905201, + "thread": 14 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 3087815, + "thread": 2 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 3280752, + "thread": 30 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 3442512, + "thread": 22 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 3578857, + "thread": 21 + } + }, + { + "amount": "198.004131725", + "slot": { + "period": 3618053, + "thread": 2 + } + }, + { + "amount": "198.004131733", + "slot": { + "period": 3910432, + "thread": 7 + } + } + ], + "AU1j2ey1dqJ2KyG5EUn2Epw8L8GF8wnVgTN6dxAgwwqYrekryH2X": [ + { + "amount": "217.028985906", + "slot": { + "period": 35013, + "thread": 12 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 311584, + "thread": 31 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 388529, + "thread": 31 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 540136, + "thread": 12 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 803415, + "thread": 12 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 826321, + "thread": 11 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1013208, + "thread": 13 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1215728, + "thread": 8 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1475415, + "thread": 10 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1591364, + "thread": 11 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1757231, + "thread": 26 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 1976117, + "thread": 30 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2055253, + "thread": 11 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2156104, + "thread": 9 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2312168, + "thread": 2 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2523948, + "thread": 26 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2641830, + "thread": 2 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 2907269, + "thread": 24 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 3053870, + "thread": 5 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 3273076, + "thread": 23 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 3327442, + "thread": 14 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 3491286, + "thread": 3 + } + }, + { + "amount": "217.028985906", + "slot": { + "period": 3769516, + "thread": 4 + } + }, + { + "amount": "217.028985902", + "slot": { + "period": 3811406, + "thread": 27 + } + } + ], + "AU1j3g9DLHoGR5SQqikJ54xJbks3spqBKwH4JEqFzuq9LBZrj4ub": [ + { + "amount": "98.174224527", + "slot": { + "period": 136894, + "thread": 10 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 300036, + "thread": 15 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 419071, + "thread": 21 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 616906, + "thread": 12 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 804533, + "thread": 5 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 829035, + "thread": 23 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 987600, + "thread": 0 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 1308458, + "thread": 5 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 1406220, + "thread": 28 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 1493698, + "thread": 21 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 1697410, + "thread": 7 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 1958396, + "thread": 5 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2133449, + "thread": 21 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2241285, + "thread": 21 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2318282, + "thread": 2 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2552856, + "thread": 8 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2666137, + "thread": 24 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 2850750, + "thread": 16 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 3104259, + "thread": 11 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 3170424, + "thread": 27 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 3356547, + "thread": 3 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 3555506, + "thread": 15 + } + }, + { + "amount": "98.174224527", + "slot": { + "period": 3772611, + "thread": 6 + } + }, + { + "amount": "98.174224524", + "slot": { + "period": 3909256, + "thread": 11 + } + } + ], + "AU1j3m6BL26FWaLaQtY8AXXCjCV8uQvJiQDkk4F97aATsKKK5224": [ + { + "amount": "454.913640017", + "slot": { + "period": 37510, + "thread": 25 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 209947, + "thread": 31 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 367351, + "thread": 14 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 536542, + "thread": 10 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 671567, + "thread": 27 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 826681, + "thread": 24 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1148717, + "thread": 23 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1270968, + "thread": 11 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1413949, + "thread": 23 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1580459, + "thread": 12 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1706437, + "thread": 6 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 1876789, + "thread": 8 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2074593, + "thread": 18 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2197698, + "thread": 16 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2295626, + "thread": 22 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2478217, + "thread": 16 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2627515, + "thread": 21 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 2932829, + "thread": 19 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 3031308, + "thread": 10 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 3281292, + "thread": 13 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 3424152, + "thread": 15 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 3534683, + "thread": 14 + } + }, + { + "amount": "454.913640017", + "slot": { + "period": 3709152, + "thread": 27 + } + }, + { + "amount": "454.913640006", + "slot": { + "period": 3828087, + "thread": 8 + } + } + ], + "AU1j5N6kaaKvVexTAvatnwdJrybpBWEbm46jCCEH3M6PgYFdH4Rh": [ + { + "amount": "188.824128176", + "slot": { + "period": 29724, + "thread": 22 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 199780, + "thread": 27 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 328199, + "thread": 25 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 502225, + "thread": 3 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 783934, + "thread": 23 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 951485, + "thread": 19 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1021952, + "thread": 25 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1186741, + "thread": 25 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1352499, + "thread": 26 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1502835, + "thread": 0 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1713014, + "thread": 7 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 1841178, + "thread": 13 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2109917, + "thread": 31 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2240021, + "thread": 7 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2355614, + "thread": 3 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2477561, + "thread": 22 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2736555, + "thread": 16 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2814959, + "thread": 11 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 2960710, + "thread": 26 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 3173555, + "thread": 4 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 3402970, + "thread": 2 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 3450758, + "thread": 12 + } + }, + { + "amount": "188.824128176", + "slot": { + "period": 3739453, + "thread": 26 + } + }, + { + "amount": "188.824128171", + "slot": { + "period": 3823994, + "thread": 31 + } + } + ], + "AU1j6MGAGYjSQAGC6DbuXFmZxaHp8MPBVH2m4DtbZxjnn63ufN1k": [ + { + "amount": "62.463315551", + "slot": { + "period": 44055, + "thread": 4 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 311886, + "thread": 21 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 432503, + "thread": 1 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 615358, + "thread": 18 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 673259, + "thread": 19 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 959245, + "thread": 6 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1047260, + "thread": 2 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1233476, + "thread": 7 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1380913, + "thread": 11 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1629687, + "thread": 29 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1724694, + "thread": 2 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 1870046, + "thread": 28 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2033855, + "thread": 20 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2195479, + "thread": 10 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2326982, + "thread": 22 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2530561, + "thread": 31 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2651786, + "thread": 7 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2920356, + "thread": 21 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 2964382, + "thread": 12 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 3246748, + "thread": 30 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 3341975, + "thread": 29 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 3456494, + "thread": 19 + } + }, + { + "amount": "62.463315551", + "slot": { + "period": 3629171, + "thread": 24 + } + }, + { + "amount": "62.463315554", + "slot": { + "period": 3942326, + "thread": 20 + } + } + ], + "AU1j6tkjDb1j7JnB2cGsSB8YQAxomeXyQW92v8VoQk1ci5N5kWkx": [ + { + "amount": "64.988134061", + "slot": { + "period": 166836, + "thread": 10 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 185286, + "thread": 24 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 454856, + "thread": 19 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 519293, + "thread": 27 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 694987, + "thread": 3 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 884058, + "thread": 28 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1011038, + "thread": 7 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1284072, + "thread": 17 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1475784, + "thread": 12 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1558545, + "thread": 15 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1792956, + "thread": 2 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 1857276, + "thread": 24 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2068277, + "thread": 10 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2189589, + "thread": 26 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2403088, + "thread": 30 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2617872, + "thread": 19 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2653407, + "thread": 28 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 2939727, + "thread": 7 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 3112805, + "thread": 31 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 3230813, + "thread": 11 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 3345497, + "thread": 0 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 3480389, + "thread": 5 + } + }, + { + "amount": "64.988134061", + "slot": { + "period": 3715106, + "thread": 16 + } + }, + { + "amount": "64.988134072", + "slot": { + "period": 3889830, + "thread": 7 + } + } + ], + "AU1j726XNjSXS8nQ7BcSyTctVTWDS195dcyge2xRYatFmBoCenuo": [ + { + "amount": "275.756806174", + "slot": { + "period": 26929, + "thread": 11 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 272816, + "thread": 1 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 333319, + "thread": 30 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 636604, + "thread": 22 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 733411, + "thread": 25 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 886942, + "thread": 24 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1100205, + "thread": 2 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1278096, + "thread": 23 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1341990, + "thread": 24 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1587194, + "thread": 8 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1782761, + "thread": 3 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 1928053, + "thread": 20 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2096471, + "thread": 10 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2191773, + "thread": 21 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2380859, + "thread": 20 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2544741, + "thread": 14 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2664616, + "thread": 23 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2917637, + "thread": 19 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 2962810, + "thread": 23 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 3218274, + "thread": 3 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 3318252, + "thread": 20 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 3503979, + "thread": 24 + } + }, + { + "amount": "275.756806174", + "slot": { + "period": 3734706, + "thread": 11 + } + }, + { + "amount": "275.756806172", + "slot": { + "period": 3946179, + "thread": 29 + } + } + ], + "AU1j8F4KhL9cZ3cqhKj2bCd9pRFEDbHCr7bo6P1jkPMUoLVcqusV": [ + { + "amount": "76.103922241", + "slot": { + "period": 95010, + "thread": 28 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 306235, + "thread": 14 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 436902, + "thread": 3 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 558688, + "thread": 15 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 664666, + "thread": 28 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 885020, + "thread": 9 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1083382, + "thread": 31 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1268816, + "thread": 29 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1425893, + "thread": 6 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1587770, + "thread": 28 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1658041, + "thread": 19 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 1942488, + "thread": 15 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2092499, + "thread": 28 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2178834, + "thread": 25 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2443151, + "thread": 30 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2521972, + "thread": 18 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2686118, + "thread": 3 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 2829303, + "thread": 18 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 3073556, + "thread": 14 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 3242199, + "thread": 6 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 3403267, + "thread": 30 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 3573848, + "thread": 21 + } + }, + { + "amount": "76.103922241", + "slot": { + "period": 3756869, + "thread": 1 + } + }, + { + "amount": "76.103922231", + "slot": { + "period": 3906532, + "thread": 21 + } + } + ], + "AU1j8xXVypG4bFgsn41fKP8FbrvNTdVMEHvH53oSbVoYj6i9PBhs": [ + { + "amount": "432.844782866", + "slot": { + "period": 64755, + "thread": 21 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 214115, + "thread": 29 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 398707, + "thread": 25 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 646470, + "thread": 22 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 706948, + "thread": 6 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 926770, + "thread": 23 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1045428, + "thread": 10 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1214418, + "thread": 11 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1421112, + "thread": 13 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1618398, + "thread": 2 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1804838, + "thread": 7 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1974711, + "thread": 1 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 1995532, + "thread": 9 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 2247005, + "thread": 30 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 2343367, + "thread": 2 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 2474020, + "thread": 9 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 2737457, + "thread": 21 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 2825918, + "thread": 27 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 3068730, + "thread": 13 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 3277922, + "thread": 18 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 3377507, + "thread": 22 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 3485474, + "thread": 6 + } + }, + { + "amount": "432.844782866", + "slot": { + "period": 3747291, + "thread": 0 + } + }, + { + "amount": "432.844782874", + "slot": { + "period": 3841218, + "thread": 26 + } + } + ], + "AU1j8yenUJFAreYwaibhN5UuQK8r2MoWjX2WT1tsJjAUL6cbfR2E": [ + { + "amount": "129.045452642", + "slot": { + "period": 127488, + "thread": 21 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 169750, + "thread": 2 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 467513, + "thread": 6 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 536622, + "thread": 21 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 806588, + "thread": 27 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 952606, + "thread": 4 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1123414, + "thread": 14 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1268140, + "thread": 27 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1391281, + "thread": 4 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1537088, + "thread": 8 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1731399, + "thread": 8 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 1937792, + "thread": 31 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2055204, + "thread": 5 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2189878, + "thread": 21 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2376865, + "thread": 17 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2523346, + "thread": 1 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2664682, + "thread": 22 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 2893708, + "thread": 18 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 3007276, + "thread": 21 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 3163540, + "thread": 9 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 3374778, + "thread": 10 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 3551430, + "thread": 28 + } + }, + { + "amount": "129.045452642", + "slot": { + "period": 3650421, + "thread": 21 + } + }, + { + "amount": "129.045452648", + "slot": { + "period": 3884047, + "thread": 25 + } + } + ], + "AU1j93R7VwUrpic1b1SoE96suLLvEx2JoSz7AqsCZaFy6oaEewtP": [ + { + "amount": "141.805824198", + "slot": { + "period": 74499, + "thread": 31 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 169601, + "thread": 29 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 348723, + "thread": 24 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 525820, + "thread": 12 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 749758, + "thread": 7 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 848843, + "thread": 24 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1021232, + "thread": 6 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1281233, + "thread": 31 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1463724, + "thread": 6 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1588482, + "thread": 1 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1764923, + "thread": 2 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 1887566, + "thread": 24 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2059173, + "thread": 11 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2288995, + "thread": 30 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2401996, + "thread": 12 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2511497, + "thread": 10 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2689919, + "thread": 9 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 2942680, + "thread": 13 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3112644, + "thread": 13 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3278094, + "thread": 18 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3330793, + "thread": 12 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3521602, + "thread": 1 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3707248, + "thread": 27 + } + }, + { + "amount": "141.805824198", + "slot": { + "period": 3866656, + "thread": 26 + } + } + ], + "AU1j9BXFgkpBZvYcqqVcCHwetjiyxViz5HT899kJUpU9uuZxeVXH": [ + { + "amount": "104.457337183", + "slot": { + "period": 81026, + "thread": 3 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 200799, + "thread": 5 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 390182, + "thread": 6 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 534740, + "thread": 14 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 698192, + "thread": 21 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 854678, + "thread": 5 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 992242, + "thread": 14 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 1177786, + "thread": 7 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 1364737, + "thread": 10 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 1631552, + "thread": 3 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 1740325, + "thread": 29 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 1901921, + "thread": 13 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2136456, + "thread": 7 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2213623, + "thread": 20 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2415909, + "thread": 3 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2508423, + "thread": 30 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2769016, + "thread": 28 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 2870484, + "thread": 16 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 3015585, + "thread": 1 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 3260446, + "thread": 16 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 3382964, + "thread": 3 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 3532660, + "thread": 7 + } + }, + { + "amount": "104.457337183", + "slot": { + "period": 3772526, + "thread": 3 + } + }, + { + "amount": "104.457337184", + "slot": { + "period": 3782796, + "thread": 22 + } + } + ], + "AU1j9MVe5yxU7nngUtuYcEpJGXsnUeVmx28QwNfD4vUeSwznngvK": [ + { + "amount": "107.401214140", + "slot": { + "period": 37798, + "thread": 17 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 173498, + "thread": 31 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 339263, + "thread": 25 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 538783, + "thread": 9 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 751342, + "thread": 24 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 977265, + "thread": 1 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1106377, + "thread": 25 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1260609, + "thread": 24 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1359365, + "thread": 16 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1633928, + "thread": 8 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1798436, + "thread": 3 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 1857500, + "thread": 24 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2063747, + "thread": 23 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2146373, + "thread": 25 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2313989, + "thread": 4 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2491577, + "thread": 18 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2638825, + "thread": 16 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 2878225, + "thread": 8 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 3088364, + "thread": 4 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 3163563, + "thread": 24 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 3445941, + "thread": 2 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 3547176, + "thread": 8 + } + }, + { + "amount": "107.401214140", + "slot": { + "period": 3762194, + "thread": 14 + } + }, + { + "amount": "107.401214146", + "slot": { + "period": 3895479, + "thread": 1 + } + } + ], + "AU1j9VQ1a2NNBZ8kVkt3e3WoyBWyG1DJKKkarJTWU7o7MrEoEtFp": [ + { + "amount": "222.665322727", + "slot": { + "period": 55501, + "thread": 13 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 237653, + "thread": 24 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 490023, + "thread": 16 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 634334, + "thread": 4 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 784390, + "thread": 22 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 853518, + "thread": 3 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1103490, + "thread": 20 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1215234, + "thread": 15 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1458213, + "thread": 2 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1636600, + "thread": 27 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1662855, + "thread": 24 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 1875439, + "thread": 12 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2066994, + "thread": 16 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2280120, + "thread": 4 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2416062, + "thread": 11 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2548235, + "thread": 12 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2708344, + "thread": 25 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 2806814, + "thread": 25 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 3036613, + "thread": 3 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 3196610, + "thread": 17 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 3445419, + "thread": 30 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 3461546, + "thread": 23 + } + }, + { + "amount": "222.665322727", + "slot": { + "period": 3675321, + "thread": 21 + } + }, + { + "amount": "222.665322720", + "slot": { + "period": 3796431, + "thread": 26 + } + } + ], + "AU1jAZ5FTRwwthzbPqeB8Qht4Vb7HMi8w3GQvb8aRvFWrtH2BPUa": [ + { + "amount": "513.170122788", + "slot": { + "period": 67061, + "thread": 17 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 277904, + "thread": 15 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 424739, + "thread": 24 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 509208, + "thread": 22 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 750963, + "thread": 24 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 901368, + "thread": 3 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1035549, + "thread": 3 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1163139, + "thread": 30 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1452943, + "thread": 20 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1506585, + "thread": 11 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1651218, + "thread": 18 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 1938018, + "thread": 7 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2014382, + "thread": 7 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2269009, + "thread": 13 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2398196, + "thread": 8 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2531161, + "thread": 7 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2703314, + "thread": 7 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 2855710, + "thread": 12 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 3008389, + "thread": 4 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 3205028, + "thread": 20 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 3344172, + "thread": 4 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 3535824, + "thread": 31 + } + }, + { + "amount": "513.170122788", + "slot": { + "period": 3639508, + "thread": 31 + } + }, + { + "amount": "513.170122778", + "slot": { + "period": 3845173, + "thread": 1 + } + } + ], + "AU1jBHDZbsCoDaPGNHs9nskm5YYuu8Ch2sJCoP3uYbhXpnMQ7JXN": [ + { + "amount": "86.183088813", + "slot": { + "period": 14930, + "thread": 9 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 285380, + "thread": 1 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 380446, + "thread": 3 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 618035, + "thread": 1 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 694232, + "thread": 17 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 930809, + "thread": 3 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1040063, + "thread": 24 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1310602, + "thread": 26 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1449903, + "thread": 8 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1634578, + "thread": 21 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1680169, + "thread": 23 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 1819907, + "thread": 18 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2085721, + "thread": 11 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2290474, + "thread": 28 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2449123, + "thread": 31 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2465244, + "thread": 22 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2740785, + "thread": 11 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 2900445, + "thread": 28 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 3056638, + "thread": 25 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 3263326, + "thread": 14 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 3383355, + "thread": 31 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 3504950, + "thread": 18 + } + }, + { + "amount": "86.183088813", + "slot": { + "period": 3632644, + "thread": 29 + } + }, + { + "amount": "86.183088807", + "slot": { + "period": 3926167, + "thread": 30 + } + } + ], + "AU1jCzeJnVGwND8uwnzTZdbKw24nxmdaLigjyWPGeSJp49EndWP2": [ + { + "amount": "546.351886917", + "slot": { + "period": 72061, + "thread": 9 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 308752, + "thread": 18 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 423942, + "thread": 30 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 535146, + "thread": 1 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 680157, + "thread": 3 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 921326, + "thread": 22 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1129081, + "thread": 12 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1178494, + "thread": 3 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1412688, + "thread": 4 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1541741, + "thread": 11 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1729314, + "thread": 5 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 1849526, + "thread": 2 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2085723, + "thread": 29 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2290384, + "thread": 7 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2440277, + "thread": 11 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2477535, + "thread": 6 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2659794, + "thread": 25 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 2899597, + "thread": 6 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 3094198, + "thread": 27 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 3173199, + "thread": 0 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 3407999, + "thread": 5 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 3554279, + "thread": 18 + } + }, + { + "amount": "546.351886917", + "slot": { + "period": 3757766, + "thread": 3 + } + }, + { + "amount": "546.351886906", + "slot": { + "period": 3853659, + "thread": 12 + } + } + ], + "AU1jENWDTHNLWUuhg2WsZ4Uef4GKJuHshZVWoxFdatP4aC1foBhE": [ + { + "amount": "53.950358203", + "slot": { + "period": 14968, + "thread": 5 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 178176, + "thread": 6 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 399889, + "thread": 25 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 520168, + "thread": 19 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 778358, + "thread": 30 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 843285, + "thread": 2 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1036384, + "thread": 5 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1253297, + "thread": 6 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1434805, + "thread": 4 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1574796, + "thread": 2 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1775053, + "thread": 20 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 1955230, + "thread": 2 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2069270, + "thread": 16 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2292468, + "thread": 11 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2440272, + "thread": 1 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2497644, + "thread": 14 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2786865, + "thread": 6 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 2879795, + "thread": 24 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 3011761, + "thread": 27 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 3237723, + "thread": 10 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 3308886, + "thread": 25 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 3554477, + "thread": 31 + } + }, + { + "amount": "53.950358203", + "slot": { + "period": 3643136, + "thread": 15 + } + }, + { + "amount": "53.950358214", + "slot": { + "period": 3914711, + "thread": 17 + } + } + ], + "AU1jEjYvudKFZroERDkYikVYBsvfMEaop2auLMdkDdTfRPPKSJdr": [ + { + "amount": "316.952720462", + "slot": { + "period": 74049, + "thread": 31 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 266347, + "thread": 14 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 330465, + "thread": 22 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 633328, + "thread": 18 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 696393, + "thread": 21 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 857834, + "thread": 1 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1125329, + "thread": 23 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1230173, + "thread": 24 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1458501, + "thread": 13 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1623396, + "thread": 8 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1687126, + "thread": 12 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 1949152, + "thread": 30 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2073663, + "thread": 8 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2290496, + "thread": 30 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2414271, + "thread": 16 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2557025, + "thread": 27 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2633995, + "thread": 28 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2905892, + "thread": 20 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 2965363, + "thread": 28 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 3174189, + "thread": 18 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 3356050, + "thread": 26 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 3582918, + "thread": 30 + } + }, + { + "amount": "316.952720462", + "slot": { + "period": 3768460, + "thread": 2 + } + }, + { + "amount": "316.952720473", + "slot": { + "period": 3849487, + "thread": 16 + } + } + ], + "AU1jFVaX1Zn7gG6N84Sv6gfnRZBL4G3rR6p1N8ebJtcBUA4auVv6": [ + { + "amount": "270.397827317", + "slot": { + "period": 78178, + "thread": 22 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 289982, + "thread": 6 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 479715, + "thread": 10 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 622724, + "thread": 30 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 774880, + "thread": 7 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 854973, + "thread": 27 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1085761, + "thread": 22 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1182477, + "thread": 15 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1386169, + "thread": 25 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1577459, + "thread": 29 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1726305, + "thread": 12 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 1820999, + "thread": 5 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2002593, + "thread": 7 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2269389, + "thread": 26 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2425466, + "thread": 25 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2594382, + "thread": 17 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2762040, + "thread": 20 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 2949493, + "thread": 7 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 3111753, + "thread": 26 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 3171621, + "thread": 5 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 3415544, + "thread": 18 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 3578249, + "thread": 23 + } + }, + { + "amount": "270.397827317", + "slot": { + "period": 3731939, + "thread": 19 + } + }, + { + "amount": "270.397827325", + "slot": { + "period": 3830431, + "thread": 19 + } + } + ], + "AU1jFWmSXJeuWkZ7d9pQSaTzrnc49zVRfXeDPkAWbh772ozXHgNf": [ + { + "amount": "380.057228367", + "slot": { + "period": 11700, + "thread": 24 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 245142, + "thread": 9 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 344878, + "thread": 6 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 645599, + "thread": 9 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 679185, + "thread": 22 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 981181, + "thread": 30 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 991131, + "thread": 12 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 1212491, + "thread": 23 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 1445729, + "thread": 26 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 1510139, + "thread": 30 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 1698398, + "thread": 31 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 1944071, + "thread": 7 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2084188, + "thread": 22 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2147830, + "thread": 16 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2369439, + "thread": 23 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2474551, + "thread": 27 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2693546, + "thread": 10 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 2874448, + "thread": 13 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 3033776, + "thread": 5 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 3196398, + "thread": 29 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 3401128, + "thread": 19 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 3575186, + "thread": 22 + } + }, + { + "amount": "380.057228367", + "slot": { + "period": 3626954, + "thread": 25 + } + }, + { + "amount": "380.057228369", + "slot": { + "period": 3793317, + "thread": 9 + } + } + ], + "AU1jFpDq1dkSdH53zZaofQ8UEUXE96S6Fod5QbLhQqWc23P1v8xf": [ + { + "amount": "180.235251075", + "slot": { + "period": 81657, + "thread": 19 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 296451, + "thread": 12 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 335700, + "thread": 2 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 588807, + "thread": 20 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 681776, + "thread": 20 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 916566, + "thread": 16 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1136471, + "thread": 16 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1227237, + "thread": 5 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1458729, + "thread": 13 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1570062, + "thread": 3 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1648372, + "thread": 28 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 1845455, + "thread": 11 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2029255, + "thread": 31 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2281475, + "thread": 9 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2327175, + "thread": 17 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2504845, + "thread": 22 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2759161, + "thread": 8 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 2854625, + "thread": 3 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 3060022, + "thread": 23 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 3156741, + "thread": 9 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 3365193, + "thread": 24 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 3535822, + "thread": 14 + } + }, + { + "amount": "180.235251075", + "slot": { + "period": 3684537, + "thread": 31 + } + }, + { + "amount": "180.235251074", + "slot": { + "period": 3915740, + "thread": 23 + } + } + ], + "AU1jG1bHdaimzuJh4Rn7SpYFoa6KyYXkBJZuQquCKBbp7JnZB6jp": [ + { + "amount": "211.983090848", + "slot": { + "period": 120583, + "thread": 30 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 171354, + "thread": 10 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 424794, + "thread": 4 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 533898, + "thread": 9 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 723731, + "thread": 30 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 921022, + "thread": 19 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1063072, + "thread": 11 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1214873, + "thread": 4 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1471008, + "thread": 6 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1585856, + "thread": 15 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1677779, + "thread": 26 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1922053, + "thread": 23 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 1999759, + "thread": 31 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2158627, + "thread": 13 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2405425, + "thread": 10 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2581481, + "thread": 23 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2778580, + "thread": 5 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2900893, + "thread": 4 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 2973919, + "thread": 17 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 3217414, + "thread": 6 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 3371949, + "thread": 7 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 3549235, + "thread": 25 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 3672635, + "thread": 15 + } + }, + { + "amount": "211.983090848", + "slot": { + "period": 3926553, + "thread": 30 + } + } + ], + "AU1jGGYCqNa59TpMp2K7KhRAsyMbayxGoZCu6yWRmrHA8RjJDfmX": [ + { + "amount": "176.574740083", + "slot": { + "period": 93309, + "thread": 19 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 214490, + "thread": 4 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 446138, + "thread": 14 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 516253, + "thread": 4 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 764620, + "thread": 30 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 901289, + "thread": 5 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1084525, + "thread": 15 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1292931, + "thread": 24 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1354515, + "thread": 11 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1630039, + "thread": 21 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1664263, + "thread": 7 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 1839512, + "thread": 4 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2053956, + "thread": 19 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2260304, + "thread": 22 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2356898, + "thread": 30 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2520745, + "thread": 22 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2684024, + "thread": 3 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2869070, + "thread": 17 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 2956830, + "thread": 13 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 3217053, + "thread": 5 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 3374223, + "thread": 28 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 3558293, + "thread": 18 + } + }, + { + "amount": "176.574740083", + "slot": { + "period": 3639626, + "thread": 21 + } + }, + { + "amount": "176.574740092", + "slot": { + "period": 3814811, + "thread": 2 + } + } + ], + "AU1jGPqen6J5dXNrVqRhemywZQtyCWCs7wd4CRRqpZiXE6dcSbng": [ + { + "amount": "93.395921302", + "slot": { + "period": 73514, + "thread": 9 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 318051, + "thread": 7 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 363575, + "thread": 8 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 537732, + "thread": 21 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 749522, + "thread": 9 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 868250, + "thread": 22 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1010965, + "thread": 25 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1271886, + "thread": 24 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1348984, + "thread": 1 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1568205, + "thread": 19 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1763325, + "thread": 21 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 1846136, + "thread": 11 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2092146, + "thread": 29 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2280785, + "thread": 0 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2345296, + "thread": 30 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2581480, + "thread": 12 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2753474, + "thread": 5 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2929820, + "thread": 23 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 2962990, + "thread": 24 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 3125400, + "thread": 0 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 3342566, + "thread": 19 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 3472372, + "thread": 27 + } + }, + { + "amount": "93.395921302", + "slot": { + "period": 3639302, + "thread": 25 + } + }, + { + "amount": "93.395921306", + "slot": { + "period": 3899276, + "thread": 23 + } + } + ], + "AU1jGVmGhzdaTHz68TfLAFWyHy7Tx21uvvWb39HCunUu9XCLSqzT": [ + { + "amount": "458.244879901", + "slot": { + "period": 100574, + "thread": 14 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 215533, + "thread": 12 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 447207, + "thread": 20 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 521140, + "thread": 12 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 761654, + "thread": 16 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 909150, + "thread": 17 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1062359, + "thread": 7 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1196073, + "thread": 23 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1362721, + "thread": 25 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1481847, + "thread": 7 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1716148, + "thread": 15 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1930295, + "thread": 24 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 1991908, + "thread": 18 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 2179853, + "thread": 21 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 2322518, + "thread": 4 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 2565830, + "thread": 17 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 2745476, + "thread": 15 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 2937283, + "thread": 1 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 3079650, + "thread": 28 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 3199479, + "thread": 18 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 3409542, + "thread": 14 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 3484547, + "thread": 21 + } + }, + { + "amount": "458.244879901", + "slot": { + "period": 3722974, + "thread": 2 + } + }, + { + "amount": "458.244879910", + "slot": { + "period": 3880574, + "thread": 26 + } + } + ], + "AU1jGYcUEihfqDNKjNxBYpipd4Ujz5Bmx9eqKJKAhcc5phwTkE51": [ + { + "amount": "248.087099625", + "slot": { + "period": 52042, + "thread": 29 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 207336, + "thread": 19 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 417372, + "thread": 4 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 596882, + "thread": 6 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 706349, + "thread": 11 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 850463, + "thread": 30 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1130099, + "thread": 0 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1296702, + "thread": 24 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1340996, + "thread": 21 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1503573, + "thread": 2 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1749198, + "thread": 19 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 1928348, + "thread": 0 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2050625, + "thread": 15 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2225627, + "thread": 21 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2364578, + "thread": 28 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2503028, + "thread": 30 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2734841, + "thread": 31 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 2823631, + "thread": 26 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 3014870, + "thread": 30 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 3243581, + "thread": 25 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 3358265, + "thread": 25 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 3546642, + "thread": 14 + } + }, + { + "amount": "248.087099625", + "slot": { + "period": 3692499, + "thread": 12 + } + }, + { + "amount": "248.087099631", + "slot": { + "period": 3932743, + "thread": 23 + } + } + ], + "AU1jGi2V8K8WxDd7dzgUDNtQFLyZxN4yVvPQthoKV9qUNAXo8uUG": [ + { + "amount": "235.175377610", + "slot": { + "period": 157055, + "thread": 21 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 272073, + "thread": 24 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 437411, + "thread": 23 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 518685, + "thread": 18 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 809938, + "thread": 11 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 843737, + "thread": 19 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1146948, + "thread": 13 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1304646, + "thread": 1 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1335108, + "thread": 23 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1586605, + "thread": 26 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1793820, + "thread": 31 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 1965103, + "thread": 14 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2033831, + "thread": 9 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2292699, + "thread": 31 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2319286, + "thread": 17 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2514350, + "thread": 9 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2674741, + "thread": 7 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2868468, + "thread": 4 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 2955073, + "thread": 14 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 3224698, + "thread": 2 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 3385735, + "thread": 7 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 3614334, + "thread": 17 + } + }, + { + "amount": "235.175377610", + "slot": { + "period": 3774001, + "thread": 2 + } + }, + { + "amount": "235.175377622", + "slot": { + "period": 3894515, + "thread": 31 + } + } + ], + "AU1jHLu5GTcC79sWXwhuGjcKWE2fAd39pAtnZN6DDYKzq4tN65XA": [ + { + "amount": "560.540504581", + "slot": { + "period": 18001, + "thread": 5 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 320785, + "thread": 14 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 336776, + "thread": 20 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 556714, + "thread": 6 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 677628, + "thread": 1 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 907490, + "thread": 2 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1087502, + "thread": 15 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1227455, + "thread": 23 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1408130, + "thread": 1 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1534608, + "thread": 29 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1804877, + "thread": 20 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 1848160, + "thread": 5 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2035750, + "thread": 7 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2246968, + "thread": 0 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2385796, + "thread": 17 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2489817, + "thread": 29 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2771414, + "thread": 15 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 2823085, + "thread": 7 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 3110910, + "thread": 1 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 3131784, + "thread": 14 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 3365248, + "thread": 0 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 3585678, + "thread": 0 + } + }, + { + "amount": "560.540504581", + "slot": { + "period": 3645183, + "thread": 7 + } + }, + { + "amount": "560.540504591", + "slot": { + "period": 3825167, + "thread": 8 + } + } + ], + "AU1jHZEAb6NpAS68xp8C283WMHysPfx4tnkYRvLXo3onG8K8nXmo": [ + { + "amount": "116.821054917", + "slot": { + "period": 55060, + "thread": 21 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 218187, + "thread": 5 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 438534, + "thread": 2 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 502842, + "thread": 13 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 658976, + "thread": 2 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 922295, + "thread": 3 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 993102, + "thread": 20 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 1199079, + "thread": 6 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 1340056, + "thread": 25 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 1557243, + "thread": 22 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 1705109, + "thread": 29 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 1821584, + "thread": 25 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2064225, + "thread": 26 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2293246, + "thread": 25 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2370797, + "thread": 25 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2518595, + "thread": 8 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2714864, + "thread": 4 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2889768, + "thread": 30 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 2999580, + "thread": 18 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 3211435, + "thread": 27 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 3349845, + "thread": 16 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 3585381, + "thread": 17 + } + }, + { + "amount": "116.821054917", + "slot": { + "period": 3705124, + "thread": 16 + } + }, + { + "amount": "116.821054907", + "slot": { + "period": 3901525, + "thread": 26 + } + } + ], + "AU1jHxvgLfcUVMrpxiE3xKKKzDipX3QgRbXuRvVDSA4wrm2BJj79": [ + { + "amount": "183.259159045", + "slot": { + "period": 114075, + "thread": 29 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 190333, + "thread": 14 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 355016, + "thread": 13 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 565593, + "thread": 26 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 808749, + "thread": 16 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 964171, + "thread": 12 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1145757, + "thread": 5 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1235923, + "thread": 14 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1470588, + "thread": 23 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1530102, + "thread": 12 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1732149, + "thread": 12 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 1968252, + "thread": 25 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2105447, + "thread": 1 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2233697, + "thread": 24 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2380467, + "thread": 25 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2608068, + "thread": 17 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2763719, + "thread": 21 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 2816372, + "thread": 28 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 3077398, + "thread": 12 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 3228484, + "thread": 18 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 3357757, + "thread": 21 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 3554563, + "thread": 20 + } + }, + { + "amount": "183.259159045", + "slot": { + "period": 3691772, + "thread": 31 + } + }, + { + "amount": "183.259159050", + "slot": { + "period": 3848600, + "thread": 13 + } + } + ], + "AU1jHyWKNXSAc5AHhqQpiFPhS7D9WCLziirdZXdzdfPhSgwxA9WK": [ + { + "amount": "374.025367729", + "slot": { + "period": 22300, + "thread": 6 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 210456, + "thread": 6 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 337379, + "thread": 16 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 605900, + "thread": 0 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 667361, + "thread": 16 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 940562, + "thread": 17 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1036028, + "thread": 6 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1151252, + "thread": 23 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1424006, + "thread": 26 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1576775, + "thread": 0 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1717183, + "thread": 19 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 1919648, + "thread": 11 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2127381, + "thread": 27 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2191448, + "thread": 12 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2412062, + "thread": 20 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2576989, + "thread": 30 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2671213, + "thread": 23 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2867181, + "thread": 1 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 2954167, + "thread": 28 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 3203126, + "thread": 20 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 3395626, + "thread": 24 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 3457469, + "thread": 2 + } + }, + { + "amount": "374.025367729", + "slot": { + "period": 3731447, + "thread": 8 + } + }, + { + "amount": "374.025367720", + "slot": { + "period": 3808845, + "thread": 11 + } + } + ], + "AU1jJ5NChzW1nJFHXV7Fkkwe9RY9nQFZrgMVmF1EKjEvLXQBSEm6": [ + { + "amount": "298.830010691", + "slot": { + "period": 69772, + "thread": 9 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 257089, + "thread": 14 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 330861, + "thread": 12 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 522526, + "thread": 17 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 767283, + "thread": 24 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 927655, + "thread": 26 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1058638, + "thread": 6 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1206834, + "thread": 13 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1450455, + "thread": 20 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1637492, + "thread": 0 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1649652, + "thread": 16 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 1832491, + "thread": 12 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2089537, + "thread": 12 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2251903, + "thread": 1 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2297001, + "thread": 15 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2588672, + "thread": 1 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2747690, + "thread": 7 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 2839348, + "thread": 24 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 3062233, + "thread": 6 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 3213672, + "thread": 25 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 3439649, + "thread": 31 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 3455722, + "thread": 4 + } + }, + { + "amount": "298.830010691", + "slot": { + "period": 3717904, + "thread": 31 + } + }, + { + "amount": "298.830010696", + "slot": { + "period": 3857815, + "thread": 8 + } + } + ], + "AU1jJAfU5GntML9ibAmB7kNKRKXcp4zLkUB8Pzhb967hyXwSDsmy": [ + { + "amount": "560.701271566", + "slot": { + "period": 56055, + "thread": 21 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 310090, + "thread": 28 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 473379, + "thread": 21 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 564942, + "thread": 3 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 681470, + "thread": 22 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 866384, + "thread": 25 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1028399, + "thread": 20 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1303499, + "thread": 22 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1367763, + "thread": 19 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1598042, + "thread": 21 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1679592, + "thread": 10 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 1878661, + "thread": 18 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2125577, + "thread": 1 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2156249, + "thread": 14 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2359729, + "thread": 22 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2477224, + "thread": 10 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2773145, + "thread": 24 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2947594, + "thread": 16 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 2965641, + "thread": 5 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 3252851, + "thread": 16 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 3298263, + "thread": 2 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 3609247, + "thread": 0 + } + }, + { + "amount": "560.701271566", + "slot": { + "period": 3655459, + "thread": 23 + } + }, + { + "amount": "560.701271571", + "slot": { + "period": 3833935, + "thread": 19 + } + } + ], + "AU1jJDbujkWkMg3TfUwmwKyRpzg6s1sqh6BsZoRUJqPrJFjiaZgs": [ + { + "amount": "100.311049471", + "slot": { + "period": 145578, + "thread": 15 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 181987, + "thread": 0 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 416226, + "thread": 28 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 634864, + "thread": 7 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 700796, + "thread": 26 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 879736, + "thread": 19 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1062730, + "thread": 21 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1221737, + "thread": 29 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1333495, + "thread": 28 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1549562, + "thread": 14 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1775677, + "thread": 24 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 1954685, + "thread": 23 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2129056, + "thread": 21 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2210340, + "thread": 8 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2366153, + "thread": 8 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2477086, + "thread": 3 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2637815, + "thread": 17 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 2870665, + "thread": 28 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 3095886, + "thread": 2 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 3122571, + "thread": 5 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 3308260, + "thread": 19 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 3533450, + "thread": 13 + } + }, + { + "amount": "100.311049471", + "slot": { + "period": 3663194, + "thread": 16 + } + }, + { + "amount": "100.311049470", + "slot": { + "period": 3898884, + "thread": 7 + } + } + ], + "AU1jJab4FtmBSLNTkWk7A93tE9VDZ4Xsq2tXQMrtLzhajavDrfyJ": [ + { + "amount": "283.266039898", + "slot": { + "period": 120534, + "thread": 18 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 308780, + "thread": 24 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 470796, + "thread": 20 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 560178, + "thread": 13 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 808225, + "thread": 16 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 850024, + "thread": 9 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1119675, + "thread": 16 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1169173, + "thread": 2 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1471166, + "thread": 28 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1525393, + "thread": 12 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1756321, + "thread": 21 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 1964434, + "thread": 29 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2141370, + "thread": 25 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2169608, + "thread": 23 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2427996, + "thread": 14 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2527619, + "thread": 17 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2717648, + "thread": 27 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 2843390, + "thread": 9 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 3069614, + "thread": 7 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 3187418, + "thread": 15 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 3368278, + "thread": 3 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 3569782, + "thread": 28 + } + }, + { + "amount": "283.266039898", + "slot": { + "period": 3747349, + "thread": 9 + } + }, + { + "amount": "283.266039888", + "slot": { + "period": 3780097, + "thread": 21 + } + } + ], + "AU1jK8JuNrfzfcwKEG1Bpdg8cVhGLGMvnHrGzHx4ZFcnuNMfxHwK": [ + { + "amount": "99.790401065", + "slot": { + "period": 147706, + "thread": 3 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 192785, + "thread": 0 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 386036, + "thread": 22 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 620233, + "thread": 12 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 702851, + "thread": 13 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 945790, + "thread": 30 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 992413, + "thread": 13 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 1168601, + "thread": 27 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 1350903, + "thread": 28 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 1637236, + "thread": 5 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 1669532, + "thread": 24 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 1894616, + "thread": 6 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2098213, + "thread": 9 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2238933, + "thread": 22 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2302804, + "thread": 12 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2491048, + "thread": 18 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2644990, + "thread": 7 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 2838263, + "thread": 28 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 3120481, + "thread": 29 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 3207231, + "thread": 30 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 3418844, + "thread": 18 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 3508334, + "thread": 17 + } + }, + { + "amount": "99.790401065", + "slot": { + "period": 3680950, + "thread": 14 + } + }, + { + "amount": "99.790401066", + "slot": { + "period": 3840467, + "thread": 22 + } + } + ], + "AU1jKCVndEJjxeqxxvZ2mUeZBXFLNRiKuGyc1eTwnVPMLtN9UBFH": [ + { + "amount": "364.160404527", + "slot": { + "period": 64561, + "thread": 1 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 220703, + "thread": 15 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 456736, + "thread": 25 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 572077, + "thread": 11 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 727992, + "thread": 21 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 895811, + "thread": 27 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1014673, + "thread": 20 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1163866, + "thread": 22 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1399278, + "thread": 24 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1554341, + "thread": 19 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1648644, + "thread": 20 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 1871790, + "thread": 5 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2088625, + "thread": 13 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2212875, + "thread": 12 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2357692, + "thread": 28 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2504902, + "thread": 20 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2702277, + "thread": 27 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2805754, + "thread": 27 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 2964689, + "thread": 28 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 3253310, + "thread": 7 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 3352406, + "thread": 8 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 3468787, + "thread": 26 + } + }, + { + "amount": "364.160404527", + "slot": { + "period": 3645784, + "thread": 10 + } + }, + { + "amount": "364.160404524", + "slot": { + "period": 3801436, + "thread": 30 + } + } + ], + "AU1jL7LJmm3jyQkGWrtUCZnPa2fKsDDDZRuzWr3LZBqocwucDrSH": [ + { + "amount": "476.137532399", + "slot": { + "period": 58610, + "thread": 17 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 234084, + "thread": 26 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 483983, + "thread": 14 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 537089, + "thread": 24 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 690413, + "thread": 25 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 885585, + "thread": 11 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1088176, + "thread": 31 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1186002, + "thread": 21 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1390345, + "thread": 20 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1563013, + "thread": 17 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1679296, + "thread": 25 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 1934606, + "thread": 1 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2021637, + "thread": 13 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2218081, + "thread": 20 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2352606, + "thread": 7 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2596123, + "thread": 3 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2761161, + "thread": 16 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 2834878, + "thread": 16 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 3013347, + "thread": 16 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 3203176, + "thread": 27 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 3432068, + "thread": 9 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 3499489, + "thread": 3 + } + }, + { + "amount": "476.137532399", + "slot": { + "period": 3703477, + "thread": 31 + } + }, + { + "amount": "476.137532400", + "slot": { + "period": 3832699, + "thread": 21 + } + } + ], + "AU1jLKAsMP3vQ8eiTeTqggq5WesgTrt6EURJeWvBNwBztwpCJn6d": [ + { + "amount": "142.925913229", + "slot": { + "period": 76643, + "thread": 14 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 276594, + "thread": 0 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 326660, + "thread": 23 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 557413, + "thread": 13 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 748604, + "thread": 12 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 909105, + "thread": 9 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1081726, + "thread": 30 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1284523, + "thread": 20 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1341083, + "thread": 20 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1537352, + "thread": 20 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1681087, + "thread": 11 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 1824330, + "thread": 22 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2130306, + "thread": 0 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2174810, + "thread": 27 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2431832, + "thread": 6 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2530807, + "thread": 5 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2684075, + "thread": 15 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 2838211, + "thread": 4 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 3053743, + "thread": 15 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 3190771, + "thread": 8 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 3366669, + "thread": 20 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 3505392, + "thread": 26 + } + }, + { + "amount": "142.925913229", + "slot": { + "period": 3620637, + "thread": 8 + } + }, + { + "amount": "142.925913220", + "slot": { + "period": 3796025, + "thread": 14 + } + } + ], + "AU1jLspp61MkWrE5Xzx1L6TVzezbHFqWGNY4P4emrAKPdMn6JHoY": [ + { + "amount": "122.704203255", + "slot": { + "period": 25411, + "thread": 14 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 318550, + "thread": 26 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 462628, + "thread": 12 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 580844, + "thread": 16 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 742988, + "thread": 31 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 890419, + "thread": 18 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1012343, + "thread": 31 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1175915, + "thread": 0 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1402949, + "thread": 29 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1515655, + "thread": 2 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1806035, + "thread": 11 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 1953202, + "thread": 11 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2080720, + "thread": 24 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2219203, + "thread": 6 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2332932, + "thread": 8 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2491060, + "thread": 25 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2724697, + "thread": 24 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2916115, + "thread": 3 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 2991744, + "thread": 16 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 3143704, + "thread": 8 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 3311435, + "thread": 3 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 3572224, + "thread": 18 + } + }, + { + "amount": "122.704203255", + "slot": { + "period": 3693786, + "thread": 17 + } + }, + { + "amount": "122.704203251", + "slot": { + "period": 3946054, + "thread": 2 + } + } + ], + "AU1jM6vWHJdrzVpXPnK6kZU2NP7GHMpqjVLEWwpedZQmBXvvSCDo": [ + { + "amount": "306.242808175", + "slot": { + "period": 77249, + "thread": 17 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 231772, + "thread": 1 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 333384, + "thread": 13 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 494213, + "thread": 19 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 795612, + "thread": 26 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 957788, + "thread": 13 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1003995, + "thread": 18 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1232146, + "thread": 20 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1441023, + "thread": 3 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1567232, + "thread": 0 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1695593, + "thread": 18 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 1969537, + "thread": 15 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2070481, + "thread": 13 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2200130, + "thread": 0 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2370168, + "thread": 31 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2611516, + "thread": 8 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2686704, + "thread": 28 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 2827947, + "thread": 9 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 3081331, + "thread": 10 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 3205861, + "thread": 28 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 3429294, + "thread": 5 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 3479058, + "thread": 4 + } + }, + { + "amount": "306.242808175", + "slot": { + "period": 3725765, + "thread": 22 + } + }, + { + "amount": "306.242808176", + "slot": { + "period": 3809462, + "thread": 7 + } + } + ], + "AU1jMjd8DtDFVGtDuWSHPrJ44RhBWoznWiMNbMqzDrtwFjFkJiBg": [ + { + "amount": "142.401160696", + "slot": { + "period": 124622, + "thread": 21 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 300145, + "thread": 15 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 350244, + "thread": 2 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 556327, + "thread": 19 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 814498, + "thread": 6 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 856259, + "thread": 11 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1042462, + "thread": 22 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1292923, + "thread": 23 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1427721, + "thread": 29 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1641525, + "thread": 7 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1705871, + "thread": 8 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 1869566, + "thread": 29 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2129230, + "thread": 19 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2156846, + "thread": 23 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2346414, + "thread": 9 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2501716, + "thread": 2 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2750763, + "thread": 16 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2945606, + "thread": 17 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 2971818, + "thread": 29 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 3175190, + "thread": 16 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 3401109, + "thread": 3 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 3572480, + "thread": 19 + } + }, + { + "amount": "142.401160696", + "slot": { + "period": 3685759, + "thread": 18 + } + }, + { + "amount": "142.401160689", + "slot": { + "period": 3789210, + "thread": 15 + } + } + ], + "AU1jPAQN3rz74Yq24h4MPjRDNkdCTCzzNLRNsxYFRHmq2kbFSghg": [ + { + "amount": "86.991528108", + "slot": { + "period": 128012, + "thread": 2 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 266288, + "thread": 15 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 387520, + "thread": 3 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 598138, + "thread": 17 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 688121, + "thread": 26 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 843953, + "thread": 3 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1041368, + "thread": 7 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1251222, + "thread": 24 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1325102, + "thread": 31 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1593731, + "thread": 0 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1710128, + "thread": 12 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 1861147, + "thread": 26 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2030732, + "thread": 20 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2257450, + "thread": 29 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2419707, + "thread": 16 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2607041, + "thread": 8 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2724586, + "thread": 15 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2856326, + "thread": 20 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 2995104, + "thread": 15 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 3123974, + "thread": 6 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 3313396, + "thread": 28 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 3610303, + "thread": 29 + } + }, + { + "amount": "86.991528108", + "slot": { + "period": 3778540, + "thread": 29 + } + }, + { + "amount": "86.991528117", + "slot": { + "period": 3808003, + "thread": 1 + } + } + ], + "AU1jPsYFgoYSuD5eoGYV8Vh2XRR1A1nvrv9tGxmc4t183iJ8zsFL": [ + { + "amount": "117.400297713", + "slot": { + "period": 76728, + "thread": 5 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 206202, + "thread": 10 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 349625, + "thread": 31 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 536433, + "thread": 24 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 774009, + "thread": 15 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 864797, + "thread": 3 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1036297, + "thread": 25 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1216563, + "thread": 24 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1322127, + "thread": 27 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1533107, + "thread": 1 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1738641, + "thread": 5 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 1880066, + "thread": 24 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2129479, + "thread": 1 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2274313, + "thread": 8 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2363970, + "thread": 0 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2581559, + "thread": 26 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2687959, + "thread": 20 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 2873667, + "thread": 13 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 3089464, + "thread": 8 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 3176359, + "thread": 23 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 3388140, + "thread": 1 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 3572145, + "thread": 7 + } + }, + { + "amount": "117.400297713", + "slot": { + "period": 3694272, + "thread": 21 + } + }, + { + "amount": "117.400297720", + "slot": { + "period": 3905223, + "thread": 17 + } + } + ], + "AU1jQRHsWmvrTve38tJFTBWx59d8etUbrUNjKS7CShw4d3hnxswF": [ + { + "amount": "154.250173408", + "slot": { + "period": 132479, + "thread": 18 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 282823, + "thread": 8 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 459838, + "thread": 26 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 497368, + "thread": 9 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 748680, + "thread": 0 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 930242, + "thread": 2 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1062233, + "thread": 31 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1239757, + "thread": 27 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1388958, + "thread": 15 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1598353, + "thread": 19 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1744666, + "thread": 11 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 1918760, + "thread": 23 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2111941, + "thread": 29 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2156030, + "thread": 4 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2436958, + "thread": 24 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2482814, + "thread": 27 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2767857, + "thread": 26 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 2899988, + "thread": 18 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 3095854, + "thread": 1 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 3188083, + "thread": 30 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 3429491, + "thread": 20 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 3572174, + "thread": 31 + } + }, + { + "amount": "154.250173408", + "slot": { + "period": 3750806, + "thread": 29 + } + }, + { + "amount": "154.250173399", + "slot": { + "period": 3850990, + "thread": 2 + } + } + ], + "AU1jQVym8QLuYqkKKNggYy82MkCA6XsGAr2bAwsg7nz2U9WBRTpX": [ + { + "amount": "279.529333971", + "slot": { + "period": 146877, + "thread": 8 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 257899, + "thread": 0 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 357504, + "thread": 17 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 620801, + "thread": 20 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 734331, + "thread": 26 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 844524, + "thread": 16 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1033785, + "thread": 5 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1305890, + "thread": 19 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1477879, + "thread": 25 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1532743, + "thread": 5 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1719676, + "thread": 22 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 1892491, + "thread": 23 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2090083, + "thread": 2 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2198670, + "thread": 18 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2312333, + "thread": 12 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2500704, + "thread": 0 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2696647, + "thread": 20 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2832242, + "thread": 28 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 2989880, + "thread": 28 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 3285365, + "thread": 27 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 3368950, + "thread": 16 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 3593417, + "thread": 18 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 3724486, + "thread": 9 + } + }, + { + "amount": "279.529333971", + "slot": { + "period": 3941529, + "thread": 14 + } + } + ], + "AU1jRH2W5iuyYhijepipcnzALzzAaymuSa7aan428SaMt6fsRp4b": [ + { + "amount": "131.561798744", + "slot": { + "period": 120820, + "thread": 25 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 268035, + "thread": 25 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 371228, + "thread": 11 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 648700, + "thread": 26 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 820035, + "thread": 22 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 898522, + "thread": 27 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1003462, + "thread": 12 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1214941, + "thread": 12 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1471953, + "thread": 14 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1565303, + "thread": 15 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1765306, + "thread": 22 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 1836125, + "thread": 16 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2138541, + "thread": 7 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2286249, + "thread": 6 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2324444, + "thread": 18 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2608482, + "thread": 28 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2656524, + "thread": 5 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2835376, + "thread": 0 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 2961762, + "thread": 6 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 3216572, + "thread": 16 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 3404709, + "thread": 27 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 3507232, + "thread": 7 + } + }, + { + "amount": "131.561798744", + "slot": { + "period": 3651013, + "thread": 0 + } + }, + { + "amount": "131.561798739", + "slot": { + "period": 3935988, + "thread": 9 + } + } + ], + "AU1jRHHBAVQfQQmAQyWgdN5epLB4SsYfAdqXjo8h7CciCvkeVjmQ": [ + { + "amount": "144.961896009", + "slot": { + "period": 142554, + "thread": 6 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 172712, + "thread": 16 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 476814, + "thread": 15 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 586669, + "thread": 27 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 790148, + "thread": 11 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 820828, + "thread": 1 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1074341, + "thread": 24 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1170013, + "thread": 22 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1458823, + "thread": 28 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1538184, + "thread": 24 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1713400, + "thread": 9 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 1876009, + "thread": 9 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2080696, + "thread": 20 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2218955, + "thread": 13 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2411537, + "thread": 5 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2578559, + "thread": 2 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2721245, + "thread": 29 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 2850724, + "thread": 16 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 3035500, + "thread": 13 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 3249780, + "thread": 13 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 3373914, + "thread": 10 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 3486952, + "thread": 20 + } + }, + { + "amount": "144.961896009", + "slot": { + "period": 3751920, + "thread": 27 + } + }, + { + "amount": "144.961896005", + "slot": { + "period": 3875097, + "thread": 4 + } + } + ], + "AU1jT2Eq863NSJzNoBHFAgjjkiyDcEbVUDHVm3526z6wuqy3j7Qc": [ + { + "amount": "86.738465452", + "slot": { + "period": 64943, + "thread": 28 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 229489, + "thread": 13 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 422650, + "thread": 24 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 576962, + "thread": 28 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 743642, + "thread": 17 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 918739, + "thread": 5 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1113435, + "thread": 26 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1181766, + "thread": 10 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1441739, + "thread": 12 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1517420, + "thread": 29 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1688459, + "thread": 6 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 1949887, + "thread": 30 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2044396, + "thread": 16 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2199929, + "thread": 29 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2361836, + "thread": 25 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2483203, + "thread": 23 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2652390, + "thread": 20 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 2792995, + "thread": 0 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 3111728, + "thread": 7 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 3180550, + "thread": 20 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 3376179, + "thread": 7 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 3548064, + "thread": 10 + } + }, + { + "amount": "86.738465452", + "slot": { + "period": 3728122, + "thread": 10 + } + }, + { + "amount": "86.738465450", + "slot": { + "period": 3811318, + "thread": 26 + } + } + ], + "AU1jUdKDvW61tZvzKK8d6HcFEVZpyLpqgKy7oF9EPg2UZSTAeBni": [ + { + "amount": "162.945509140", + "slot": { + "period": 90442, + "thread": 19 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 236512, + "thread": 2 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 360133, + "thread": 0 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 572784, + "thread": 5 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 670797, + "thread": 27 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 955700, + "thread": 27 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 992722, + "thread": 29 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 1236170, + "thread": 22 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 1420026, + "thread": 25 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 1625800, + "thread": 23 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 1650791, + "thread": 30 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 1934165, + "thread": 24 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2016358, + "thread": 7 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2189831, + "thread": 25 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2302435, + "thread": 9 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2508143, + "thread": 21 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2747872, + "thread": 8 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2911164, + "thread": 8 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 2982880, + "thread": 31 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 3229261, + "thread": 23 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 3390541, + "thread": 4 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 3585120, + "thread": 9 + } + }, + { + "amount": "162.945509140", + "slot": { + "period": 3739650, + "thread": 4 + } + }, + { + "amount": "162.945509131", + "slot": { + "period": 3882546, + "thread": 7 + } + } + ], + "AU1jUj2ZjPsyv9wBRAE5Xm5RLRw1m8rXucqneRFpKk4tv3vrnaWW": [ + { + "amount": "182.983129352", + "slot": { + "period": 20791, + "thread": 19 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 260876, + "thread": 12 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 361331, + "thread": 7 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 626520, + "thread": 4 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 732706, + "thread": 24 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 877620, + "thread": 21 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1149118, + "thread": 1 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1285433, + "thread": 12 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1352044, + "thread": 8 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1552649, + "thread": 5 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1655896, + "thread": 15 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 1934626, + "thread": 20 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2126100, + "thread": 1 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2266340, + "thread": 26 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2323325, + "thread": 19 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2588367, + "thread": 1 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2655134, + "thread": 4 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2841334, + "thread": 6 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 2977094, + "thread": 27 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 3157509, + "thread": 16 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 3290026, + "thread": 28 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 3588482, + "thread": 27 + } + }, + { + "amount": "182.983129352", + "slot": { + "period": 3699006, + "thread": 8 + } + }, + { + "amount": "182.983129360", + "slot": { + "period": 3934530, + "thread": 18 + } + } + ], + "AU1jVmAW2A9v1Ta88cAkHUUy1hwnwhFxG5j74m89MsLv7mZHZnXR": [ + { + "amount": "358.051670871", + "slot": { + "period": 104409, + "thread": 15 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 245221, + "thread": 0 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 477562, + "thread": 31 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 651453, + "thread": 9 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 681194, + "thread": 15 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 955493, + "thread": 4 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1080517, + "thread": 8 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1269234, + "thread": 10 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1413447, + "thread": 28 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1611221, + "thread": 3 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1691942, + "thread": 18 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 1865528, + "thread": 24 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2104883, + "thread": 13 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2279942, + "thread": 14 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2357756, + "thread": 0 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2620068, + "thread": 1 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2753043, + "thread": 19 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 2886799, + "thread": 15 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 3058311, + "thread": 11 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 3206528, + "thread": 24 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 3418315, + "thread": 28 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 3455044, + "thread": 27 + } + }, + { + "amount": "358.051670871", + "slot": { + "period": 3771562, + "thread": 2 + } + }, + { + "amount": "358.051670873", + "slot": { + "period": 3927026, + "thread": 26 + } + } + ], + "AU1jVtRQ1at6D7fw7nSSkCCaUAvoHEsnzbuJGUoL4guspvcm1fGJ": [ + { + "amount": "382.749716772", + "slot": { + "period": 147868, + "thread": 1 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 308874, + "thread": 5 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 344133, + "thread": 0 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 576235, + "thread": 6 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 702017, + "thread": 20 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 953197, + "thread": 27 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1011308, + "thread": 13 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1178408, + "thread": 1 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1461850, + "thread": 21 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1593320, + "thread": 27 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1665824, + "thread": 23 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1869062, + "thread": 13 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 1980747, + "thread": 9 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 2224469, + "thread": 15 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 2431337, + "thread": 16 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 2589811, + "thread": 26 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 2701029, + "thread": 16 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 2902799, + "thread": 15 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 3080124, + "thread": 11 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 3251106, + "thread": 20 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 3300476, + "thread": 31 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 3482402, + "thread": 1 + } + }, + { + "amount": "382.749716772", + "slot": { + "period": 3631861, + "thread": 27 + } + }, + { + "amount": "382.749716766", + "slot": { + "period": 3912215, + "thread": 13 + } + } + ], + "AU1jYf8LRcQojzv3YAqRp36oKayAwTUfEkUUspyPEWyxSWW2KWc8": [ + { + "amount": "147.184965127", + "slot": { + "period": 78440, + "thread": 24 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 168635, + "thread": 18 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 445347, + "thread": 8 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 546937, + "thread": 18 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 689270, + "thread": 13 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 975535, + "thread": 31 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1022450, + "thread": 26 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1278564, + "thread": 13 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1334608, + "thread": 6 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1593591, + "thread": 7 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1711803, + "thread": 27 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 1961196, + "thread": 24 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2033434, + "thread": 17 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2207285, + "thread": 25 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2429182, + "thread": 25 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2547739, + "thread": 17 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2712178, + "thread": 28 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2832689, + "thread": 23 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 2965440, + "thread": 30 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 3281193, + "thread": 25 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 3432754, + "thread": 22 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 3525402, + "thread": 23 + } + }, + { + "amount": "147.184965127", + "slot": { + "period": 3755224, + "thread": 28 + } + }, + { + "amount": "147.184965122", + "slot": { + "period": 3892432, + "thread": 2 + } + } + ], + "AU1jar3MGRzysxEw5QNPVfTBnQehTYdxW8cwc99jXMnAE3yBE9ER": [ + { + "amount": "118.023572598", + "slot": { + "period": 14343, + "thread": 2 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 289793, + "thread": 9 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 461865, + "thread": 20 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 582355, + "thread": 26 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 810576, + "thread": 26 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 893560, + "thread": 1 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1118992, + "thread": 19 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1226560, + "thread": 1 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1467954, + "thread": 11 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1563305, + "thread": 14 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1719527, + "thread": 29 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1841472, + "thread": 30 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 1990400, + "thread": 20 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2261917, + "thread": 1 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2352884, + "thread": 9 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2531695, + "thread": 17 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2738699, + "thread": 25 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2821895, + "thread": 16 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 2996830, + "thread": 4 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 3278677, + "thread": 30 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 3349691, + "thread": 1 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 3545351, + "thread": 11 + } + }, + { + "amount": "118.023572598", + "slot": { + "period": 3697457, + "thread": 27 + } + }, + { + "amount": "118.023572590", + "slot": { + "period": 3813501, + "thread": 6 + } + } + ], + "AU1jayH8eefUF2hvSLMirTn7pbWLPUhLfgWyksHqSKZ28pQ5QBZZ": [ + { + "amount": "564.134286729", + "slot": { + "period": 94459, + "thread": 11 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 322952, + "thread": 12 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 389846, + "thread": 17 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 494499, + "thread": 23 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 719252, + "thread": 19 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 967626, + "thread": 18 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1078213, + "thread": 30 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1154782, + "thread": 31 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1337099, + "thread": 9 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1519859, + "thread": 27 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1693333, + "thread": 1 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 1896773, + "thread": 21 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2036240, + "thread": 30 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2201852, + "thread": 1 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2331470, + "thread": 26 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2572442, + "thread": 17 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2724465, + "thread": 16 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 2853826, + "thread": 27 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 3046229, + "thread": 17 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 3216439, + "thread": 26 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 3408654, + "thread": 13 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 3460550, + "thread": 16 + } + }, + { + "amount": "564.134286729", + "slot": { + "period": 3626979, + "thread": 30 + } + }, + { + "amount": "564.134286724", + "slot": { + "period": 3803505, + "thread": 5 + } + } + ], + "AU1jazLkyFhp4gREX5W1dnePJbsqS9irSrtDbNNN8VBZ2R7JfpUL": [ + { + "amount": "66.268609432", + "slot": { + "period": 35661, + "thread": 29 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 216902, + "thread": 9 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 424586, + "thread": 20 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 513402, + "thread": 13 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 803777, + "thread": 24 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 874440, + "thread": 1 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1086685, + "thread": 8 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1240702, + "thread": 22 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1410376, + "thread": 10 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1577246, + "thread": 27 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1677935, + "thread": 12 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 1814205, + "thread": 9 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2001890, + "thread": 3 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2171665, + "thread": 5 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2445119, + "thread": 7 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2490992, + "thread": 27 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2672076, + "thread": 4 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 2802760, + "thread": 24 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 3075614, + "thread": 26 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 3239427, + "thread": 27 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 3450023, + "thread": 15 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 3591040, + "thread": 23 + } + }, + { + "amount": "66.268609432", + "slot": { + "period": 3652248, + "thread": 6 + } + }, + { + "amount": "66.268609439", + "slot": { + "period": 3941267, + "thread": 17 + } + } + ], + "AU1jbGu157dDxZTbU69xW3cDcs6q8JUqCuUtMuM1ENAeu3ACRCGH": [ + { + "amount": "572.777728810", + "slot": { + "period": 115320, + "thread": 23 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 311270, + "thread": 29 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 467534, + "thread": 0 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 642129, + "thread": 15 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 762596, + "thread": 26 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 943839, + "thread": 16 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1039419, + "thread": 3 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1231867, + "thread": 16 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1401056, + "thread": 10 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1598925, + "thread": 25 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1759177, + "thread": 14 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1839977, + "thread": 25 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 1988337, + "thread": 11 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 2251297, + "thread": 15 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 2299371, + "thread": 11 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 2594339, + "thread": 11 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 2635750, + "thread": 3 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 2943578, + "thread": 11 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 3094118, + "thread": 8 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 3285928, + "thread": 15 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 3389353, + "thread": 5 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 3538153, + "thread": 28 + } + }, + { + "amount": "572.777728810", + "slot": { + "period": 3627137, + "thread": 26 + } + }, + { + "amount": "572.777728805", + "slot": { + "period": 3789297, + "thread": 19 + } + } + ], + "AU1jcAyiYXYwz3JpvLaLwcRSszEZfZk8ev6EgnzznUEcJcbCYcwJ": [ + { + "amount": "165.162550834", + "slot": { + "period": 154970, + "thread": 17 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 303822, + "thread": 31 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 471626, + "thread": 3 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 555868, + "thread": 14 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 793670, + "thread": 4 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 908845, + "thread": 0 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1031032, + "thread": 6 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1292423, + "thread": 29 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1329925, + "thread": 21 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1584991, + "thread": 10 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1780052, + "thread": 17 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 1884615, + "thread": 16 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2138042, + "thread": 14 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2272793, + "thread": 4 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2408988, + "thread": 29 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2584346, + "thread": 6 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2720985, + "thread": 14 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 2860093, + "thread": 13 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 3090905, + "thread": 12 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 3264259, + "thread": 25 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 3300597, + "thread": 31 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 3464987, + "thread": 2 + } + }, + { + "amount": "165.162550834", + "slot": { + "period": 3743779, + "thread": 31 + } + }, + { + "amount": "165.162550836", + "slot": { + "period": 3858988, + "thread": 16 + } + } + ], + "AU1jd91ELamfcDA3NDaTBSBTQtJdoMV6Vnwy536V9a3voK8udNsT": [ + { + "amount": "716.795860369", + "slot": { + "period": 100863, + "thread": 28 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 235273, + "thread": 29 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 356853, + "thread": 11 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 603603, + "thread": 29 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 762991, + "thread": 20 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 933608, + "thread": 28 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1133552, + "thread": 20 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1235771, + "thread": 30 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1346403, + "thread": 14 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1599889, + "thread": 26 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1649626, + "thread": 18 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 1906046, + "thread": 30 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2006434, + "thread": 21 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2154150, + "thread": 29 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2352031, + "thread": 25 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2471242, + "thread": 19 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2727506, + "thread": 8 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 2912848, + "thread": 7 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 3108472, + "thread": 16 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 3284102, + "thread": 18 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 3334692, + "thread": 28 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 3452572, + "thread": 0 + } + }, + { + "amount": "716.795860369", + "slot": { + "period": 3641342, + "thread": 1 + } + }, + { + "amount": "716.795860372", + "slot": { + "period": 3911080, + "thread": 28 + } + } + ], + "AU1jeQcfoMZK22KBG5Dk6SNdPFs5NCgtLcy2YQZZvbQ5eeGaBNph": [ + { + "amount": "114.353894955", + "slot": { + "period": 43342, + "thread": 29 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 234378, + "thread": 5 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 475154, + "thread": 6 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 518234, + "thread": 24 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 720638, + "thread": 8 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 944275, + "thread": 11 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1018444, + "thread": 18 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1230262, + "thread": 28 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1392494, + "thread": 19 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1644603, + "thread": 15 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1692430, + "thread": 7 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 1936493, + "thread": 12 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2075889, + "thread": 5 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2238094, + "thread": 26 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2338697, + "thread": 16 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2504878, + "thread": 6 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2631114, + "thread": 5 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2905224, + "thread": 19 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 2958603, + "thread": 23 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 3140861, + "thread": 16 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 3326237, + "thread": 17 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 3611306, + "thread": 4 + } + }, + { + "amount": "114.353894955", + "slot": { + "period": 3653341, + "thread": 13 + } + }, + { + "amount": "114.353894948", + "slot": { + "period": 3830900, + "thread": 10 + } + } + ], + "AU1jeRrQWEGGiK84X3tCNPEFuwL5kTtk5mQvX6Mrv6oEpCLUmZSW": [ + { + "amount": "7435.750000000", + "slot": { + "period": 69720, + "thread": 30 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 214777, + "thread": 14 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 358876, + "thread": 31 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 493501, + "thread": 25 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 661920, + "thread": 20 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 902125, + "thread": 10 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1099404, + "thread": 20 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1297712, + "thread": 2 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1410125, + "thread": 23 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1642895, + "thread": 19 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1732827, + "thread": 31 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 1910731, + "thread": 8 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2006807, + "thread": 25 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2148016, + "thread": 19 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2398934, + "thread": 23 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2556724, + "thread": 21 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2770760, + "thread": 8 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 2905383, + "thread": 29 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3029711, + "thread": 17 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3139226, + "thread": 9 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3419767, + "thread": 2 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3605550, + "thread": 1 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3701937, + "thread": 5 + } + }, + { + "amount": "7435.750000000", + "slot": { + "period": 3786806, + "thread": 13 + } + } + ], + "AU1jf4jdjJXPPfdSAyv3YFi6ZDg2FDh1f1gmdJiKQHsKToaXToGd": [ + { + "amount": "55.435020636", + "slot": { + "period": 162760, + "thread": 22 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 182365, + "thread": 9 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 487360, + "thread": 16 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 611747, + "thread": 21 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 772354, + "thread": 31 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 882896, + "thread": 2 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1006909, + "thread": 24 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1167765, + "thread": 9 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1377168, + "thread": 23 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1538644, + "thread": 16 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1712756, + "thread": 14 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 1859541, + "thread": 2 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2042559, + "thread": 0 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2294804, + "thread": 11 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2454079, + "thread": 11 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2565780, + "thread": 28 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2771401, + "thread": 31 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 2800504, + "thread": 12 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 3041835, + "thread": 21 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 3174452, + "thread": 25 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 3319884, + "thread": 0 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 3550851, + "thread": 18 + } + }, + { + "amount": "55.435020636", + "slot": { + "period": 3754414, + "thread": 24 + } + }, + { + "amount": "55.435020645", + "slot": { + "period": 3824096, + "thread": 14 + } + } + ], + "AU1jg7BfiPWFDkPf3EEz5My6D9DPM2jByQsxpfdiSzpABYgta2w": [ + { + "amount": "112.778867541", + "slot": { + "period": 157569, + "thread": 23 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 266068, + "thread": 3 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 485981, + "thread": 31 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 497315, + "thread": 9 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 664570, + "thread": 6 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 947720, + "thread": 29 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1137916, + "thread": 13 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1308762, + "thread": 5 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1362602, + "thread": 0 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1516993, + "thread": 14 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1674196, + "thread": 20 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 1844546, + "thread": 21 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2104387, + "thread": 13 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2204937, + "thread": 7 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2334227, + "thread": 7 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2513528, + "thread": 24 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2694593, + "thread": 13 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 2915308, + "thread": 11 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 3072556, + "thread": 6 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 3123486, + "thread": 16 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 3412065, + "thread": 26 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 3473708, + "thread": 10 + } + }, + { + "amount": "112.778867541", + "slot": { + "period": 3642611, + "thread": 12 + } + }, + { + "amount": "112.778867540", + "slot": { + "period": 3946432, + "thread": 9 + } + } + ], + "AU1jg8ePiuC5EbwUG87yYqW4FYWywL7KbKLPAgh33hTyUE6Ydg6e": [ + { + "amount": "187.178969777", + "slot": { + "period": 112686, + "thread": 3 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 221242, + "thread": 13 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 489880, + "thread": 18 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 584158, + "thread": 25 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 697666, + "thread": 20 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 841902, + "thread": 19 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1038600, + "thread": 14 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1312095, + "thread": 9 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1467104, + "thread": 12 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1538079, + "thread": 29 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1780938, + "thread": 24 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 1943077, + "thread": 15 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2074019, + "thread": 18 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2289225, + "thread": 21 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2389404, + "thread": 10 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2580159, + "thread": 25 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2692297, + "thread": 16 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 2815860, + "thread": 0 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 3030493, + "thread": 20 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 3230597, + "thread": 7 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 3303115, + "thread": 8 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 3558536, + "thread": 0 + } + }, + { + "amount": "187.178969777", + "slot": { + "period": 3723928, + "thread": 6 + } + }, + { + "amount": "187.178969776", + "slot": { + "period": 3893689, + "thread": 18 + } + } + ], + "AU1jgdbwtmjKsYZnWww5QE2QdANDz5uDqgGsJatk48tQiaFjw37v": [ + { + "amount": "122.312089894", + "slot": { + "period": 35261, + "thread": 13 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 177156, + "thread": 29 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 480535, + "thread": 0 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 496727, + "thread": 29 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 743023, + "thread": 13 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 925157, + "thread": 13 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 984507, + "thread": 5 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 1180606, + "thread": 20 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 1385890, + "thread": 18 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 1519501, + "thread": 26 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 1740273, + "thread": 7 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 1839313, + "thread": 10 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2085090, + "thread": 8 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2246942, + "thread": 3 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2414945, + "thread": 19 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2515811, + "thread": 3 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2750493, + "thread": 3 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 2906059, + "thread": 24 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 3042140, + "thread": 5 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 3241367, + "thread": 6 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 3320167, + "thread": 12 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 3512741, + "thread": 31 + } + }, + { + "amount": "122.312089894", + "slot": { + "period": 3665907, + "thread": 15 + } + }, + { + "amount": "122.312089897", + "slot": { + "period": 3908549, + "thread": 1 + } + } + ], + "AU1jhiGSESLnzWHvAmpPkCNofLqoCeXbmGNe67DeeKHxG31Fn6Gi": [ + { + "amount": "185.820145866", + "slot": { + "period": 84337, + "thread": 3 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 187487, + "thread": 11 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 474570, + "thread": 4 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 522529, + "thread": 16 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 687311, + "thread": 27 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 950713, + "thread": 30 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1113969, + "thread": 6 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1191790, + "thread": 14 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1436733, + "thread": 0 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1587814, + "thread": 8 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1726034, + "thread": 30 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1960137, + "thread": 5 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 1989771, + "thread": 26 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 2179254, + "thread": 22 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 2367712, + "thread": 21 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 2615969, + "thread": 5 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 2716119, + "thread": 6 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 2877171, + "thread": 9 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 3050835, + "thread": 30 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 3189594, + "thread": 24 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 3442855, + "thread": 25 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 3454219, + "thread": 13 + } + }, + { + "amount": "185.820145866", + "slot": { + "period": 3767571, + "thread": 25 + } + }, + { + "amount": "185.820145858", + "slot": { + "period": 3800967, + "thread": 5 + } + } + ], + "AU1jhwJM9rVUWi2PA4psc8pkcoqABV71z3gHk9MNjpkPiqCdUdsD": [ + { + "amount": "268.424034245", + "slot": { + "period": 108203, + "thread": 12 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 175065, + "thread": 23 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 490051, + "thread": 17 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 541401, + "thread": 22 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 739456, + "thread": 5 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 843926, + "thread": 8 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1137030, + "thread": 23 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1244657, + "thread": 10 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1327902, + "thread": 17 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1549467, + "thread": 21 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1721145, + "thread": 2 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 1839209, + "thread": 2 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2109670, + "thread": 24 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2234639, + "thread": 20 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2403919, + "thread": 31 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2492893, + "thread": 17 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2631140, + "thread": 4 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 2930882, + "thread": 28 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3079147, + "thread": 17 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3164521, + "thread": 31 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3370683, + "thread": 16 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3615020, + "thread": 21 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3692097, + "thread": 31 + } + }, + { + "amount": "268.424034245", + "slot": { + "period": 3824997, + "thread": 9 + } + } + ], + "AU1jiav3qNSc9vSZbS6sK2sfRHraRchWVj3JfB2pyxtZ6Z3wcQ9Q": [ + { + "amount": "147.655306303", + "slot": { + "period": 142601, + "thread": 10 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 251042, + "thread": 0 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 404879, + "thread": 25 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 622259, + "thread": 3 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 752159, + "thread": 13 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 970054, + "thread": 8 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1044580, + "thread": 0 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1313606, + "thread": 5 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1441061, + "thread": 23 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1595156, + "thread": 9 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1760672, + "thread": 17 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 1873731, + "thread": 26 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2117625, + "thread": 18 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2173872, + "thread": 29 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2308434, + "thread": 7 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2528853, + "thread": 25 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2663797, + "thread": 0 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 2847808, + "thread": 9 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 3003917, + "thread": 0 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 3226590, + "thread": 3 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 3434487, + "thread": 24 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 3532946, + "thread": 12 + } + }, + { + "amount": "147.655306303", + "slot": { + "period": 3772821, + "thread": 4 + } + }, + { + "amount": "147.655306313", + "slot": { + "period": 3815665, + "thread": 26 + } + } + ], + "AU1jitqhieDK8137TNuDfcPD7xk1fL4nsPnGmDXvSoRDsFTn2qxU": [ + { + "amount": "68.457559898", + "slot": { + "period": 119043, + "thread": 0 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 282090, + "thread": 5 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 394108, + "thread": 2 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 562785, + "thread": 15 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 767670, + "thread": 30 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 887555, + "thread": 0 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1095432, + "thread": 22 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1190156, + "thread": 26 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1403533, + "thread": 7 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1517141, + "thread": 29 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1654023, + "thread": 0 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 1957750, + "thread": 17 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2036274, + "thread": 29 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2153329, + "thread": 8 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2450594, + "thread": 9 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2474247, + "thread": 19 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2754232, + "thread": 25 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 2862703, + "thread": 17 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 3089270, + "thread": 4 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 3190172, + "thread": 29 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 3444895, + "thread": 31 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 3497743, + "thread": 7 + } + }, + { + "amount": "68.457559898", + "slot": { + "period": 3713418, + "thread": 2 + } + }, + { + "amount": "68.457559888", + "slot": { + "period": 3938237, + "thread": 17 + } + } + ], + "AU1jj4jJ9DKZc1Gd8mCfsiCSi1dAnyru7dKnkRc3QFi1p4tGTSW1": [ + { + "amount": "595.225005958", + "slot": { + "period": 25459, + "thread": 5 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 183255, + "thread": 8 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 372449, + "thread": 26 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 582034, + "thread": 17 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 707572, + "thread": 12 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 833713, + "thread": 11 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1149331, + "thread": 1 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1244098, + "thread": 23 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1376783, + "thread": 19 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1618475, + "thread": 4 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1688267, + "thread": 29 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 1929476, + "thread": 13 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2059063, + "thread": 6 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2224006, + "thread": 20 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2403776, + "thread": 5 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2545316, + "thread": 4 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2634401, + "thread": 0 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 2950936, + "thread": 28 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 3085855, + "thread": 23 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 3260139, + "thread": 12 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 3310687, + "thread": 7 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 3606717, + "thread": 18 + } + }, + { + "amount": "595.225005958", + "slot": { + "period": 3720433, + "thread": 31 + } + }, + { + "amount": "595.225005955", + "slot": { + "period": 3931790, + "thread": 18 + } + } + ], + "AU1jjACHwfz2tWDy1aZvbKe7CA1obapuRM6HAvpmC6MP1c4wDhqb": [ + { + "amount": "464.254605776", + "slot": { + "period": 42267, + "thread": 13 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 250126, + "thread": 7 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 417451, + "thread": 18 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 505531, + "thread": 27 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 673198, + "thread": 31 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 910021, + "thread": 0 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1118758, + "thread": 4 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1218484, + "thread": 14 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1392904, + "thread": 5 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1574103, + "thread": 27 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1716957, + "thread": 21 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 1945761, + "thread": 10 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2029563, + "thread": 7 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2149247, + "thread": 11 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2335445, + "thread": 9 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2551763, + "thread": 18 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2673380, + "thread": 12 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 2944881, + "thread": 27 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 3107466, + "thread": 18 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 3207667, + "thread": 5 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 3299295, + "thread": 9 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 3468757, + "thread": 14 + } + }, + { + "amount": "464.254605776", + "slot": { + "period": 3767328, + "thread": 14 + } + }, + { + "amount": "464.254605778", + "slot": { + "period": 3879517, + "thread": 29 + } + } + ], + "AU1jjsEC3LXBeo2kSknnuchar3uuXVtfs1hk1YS8xEgYYLLL7FgN": [ + { + "amount": "95.391526013", + "slot": { + "period": 106107, + "thread": 9 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 269230, + "thread": 13 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 487054, + "thread": 29 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 585595, + "thread": 25 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 706812, + "thread": 31 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 844561, + "thread": 14 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1007490, + "thread": 7 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1259921, + "thread": 4 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1395536, + "thread": 16 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1494535, + "thread": 1 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1657761, + "thread": 14 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 1929387, + "thread": 1 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2086163, + "thread": 6 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2176374, + "thread": 14 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2370624, + "thread": 4 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2493224, + "thread": 18 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2751075, + "thread": 16 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 2864484, + "thread": 15 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 3100934, + "thread": 7 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 3128417, + "thread": 17 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 3367834, + "thread": 26 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 3533185, + "thread": 30 + } + }, + { + "amount": "95.391526013", + "slot": { + "period": 3735124, + "thread": 6 + } + }, + { + "amount": "95.391526003", + "slot": { + "period": 3785903, + "thread": 5 + } + } + ], + "AU1jmf5tQNBEyUHq2QKvHopviH3pLUw3HLwzXTDTSmgDsoe21FqT": [ + { + "amount": "208.448399273", + "slot": { + "period": 20002, + "thread": 24 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 237043, + "thread": 8 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 340414, + "thread": 12 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 530412, + "thread": 13 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 654686, + "thread": 6 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 942301, + "thread": 9 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1149275, + "thread": 15 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1299081, + "thread": 21 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1427297, + "thread": 26 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1633787, + "thread": 3 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1696428, + "thread": 27 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 1854746, + "thread": 8 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2111358, + "thread": 22 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2252331, + "thread": 27 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2384111, + "thread": 3 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2513290, + "thread": 31 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2763140, + "thread": 24 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 2939656, + "thread": 15 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 3053408, + "thread": 0 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 3276670, + "thread": 24 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 3329043, + "thread": 9 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 3597734, + "thread": 27 + } + }, + { + "amount": "208.448399273", + "slot": { + "period": 3694859, + "thread": 28 + } + }, + { + "amount": "208.448399266", + "slot": { + "period": 3932757, + "thread": 1 + } + } + ], + "AU1jnm4foPAgaveeUZTk8QScpUCyR2o5m8UNSAmf1kftH2LMkHvm": [ + { + "amount": "180.116429145", + "slot": { + "period": 103827, + "thread": 30 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 257908, + "thread": 8 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 352659, + "thread": 10 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 514036, + "thread": 12 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 813039, + "thread": 12 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 975953, + "thread": 28 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 999752, + "thread": 2 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 1170024, + "thread": 3 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 1390192, + "thread": 0 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 1533180, + "thread": 14 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 1697278, + "thread": 30 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 1948070, + "thread": 12 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2106984, + "thread": 17 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2221114, + "thread": 30 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2316666, + "thread": 23 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2581055, + "thread": 14 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2684845, + "thread": 16 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2831308, + "thread": 29 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 2988388, + "thread": 0 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 3248013, + "thread": 24 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 3428179, + "thread": 27 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 3510816, + "thread": 20 + } + }, + { + "amount": "180.116429145", + "slot": { + "period": 3731654, + "thread": 21 + } + }, + { + "amount": "180.116429136", + "slot": { + "period": 3875341, + "thread": 2 + } + } + ], + "AU1johdbPweaR1XSVFo9hbXsomFNKqhx2tNkiLosWt5Hq835EcRa": [ + { + "amount": "124.382964133", + "slot": { + "period": 46370, + "thread": 9 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 173329, + "thread": 0 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 386954, + "thread": 29 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 617920, + "thread": 21 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 750893, + "thread": 4 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 826617, + "thread": 26 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1031454, + "thread": 4 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1296469, + "thread": 31 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1378724, + "thread": 0 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1612700, + "thread": 11 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1748011, + "thread": 5 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1896687, + "thread": 31 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 1985781, + "thread": 24 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 2193937, + "thread": 26 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 2452582, + "thread": 16 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 2574014, + "thread": 11 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 2776051, + "thread": 0 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 2794598, + "thread": 18 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 3067168, + "thread": 19 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 3150521, + "thread": 31 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 3373122, + "thread": 25 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 3510674, + "thread": 10 + } + }, + { + "amount": "124.382964133", + "slot": { + "period": 3729137, + "thread": 6 + } + }, + { + "amount": "124.382964138", + "slot": { + "period": 3809647, + "thread": 7 + } + } + ], + "AU1jpU2ZQ7bfMmqoYJZ6s4Y8rxc1ND28ua8j2aswQDtex2e9Q9aE": [ + { + "amount": "238.357753177", + "slot": { + "period": 19166, + "thread": 19 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 241299, + "thread": 5 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 329291, + "thread": 13 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 542360, + "thread": 29 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 666260, + "thread": 8 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 955682, + "thread": 23 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1041683, + "thread": 25 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1195072, + "thread": 12 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1478488, + "thread": 0 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1515836, + "thread": 30 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1708560, + "thread": 9 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 1879495, + "thread": 0 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2024675, + "thread": 11 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2177191, + "thread": 10 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2422799, + "thread": 11 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2586552, + "thread": 21 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2770366, + "thread": 5 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2793613, + "thread": 21 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 2969670, + "thread": 20 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 3195537, + "thread": 19 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 3403799, + "thread": 9 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 3452780, + "thread": 14 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 3666071, + "thread": 23 + } + }, + { + "amount": "238.357753177", + "slot": { + "period": 3933055, + "thread": 20 + } + } + ], + "AU1jpUuH4pAsCMqySxWFMGaB16zbZV2iCVeuoXQ8wCXQ2AxxBo3s": [ + { + "amount": "629.615707863", + "slot": { + "period": 139987, + "thread": 4 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 242447, + "thread": 0 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 480819, + "thread": 9 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 505463, + "thread": 24 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 779021, + "thread": 9 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 982287, + "thread": 27 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1074600, + "thread": 0 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1247578, + "thread": 7 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1383879, + "thread": 14 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1641578, + "thread": 27 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1767262, + "thread": 16 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1888744, + "thread": 7 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 1977006, + "thread": 26 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 2212272, + "thread": 30 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 2387129, + "thread": 8 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 2602574, + "thread": 16 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 2639581, + "thread": 7 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 2889641, + "thread": 10 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 3054949, + "thread": 9 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 3171720, + "thread": 2 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 3396035, + "thread": 0 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 3454621, + "thread": 24 + } + }, + { + "amount": "629.615707863", + "slot": { + "period": 3623647, + "thread": 14 + } + }, + { + "amount": "629.615707866", + "slot": { + "period": 3922648, + "thread": 30 + } + } + ], + "AU1jphszgNehVmaM7TysBNrPV432VqnHpR4BLihfLGvFtaPkhGNR": [ + { + "amount": "189.156760463", + "slot": { + "period": 55157, + "thread": 11 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 301049, + "thread": 28 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 430523, + "thread": 24 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 524565, + "thread": 27 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 811356, + "thread": 29 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 968483, + "thread": 17 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1071683, + "thread": 14 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1157339, + "thread": 16 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1471722, + "thread": 30 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1516262, + "thread": 20 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1735533, + "thread": 9 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 1966849, + "thread": 3 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2041276, + "thread": 7 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2146450, + "thread": 20 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2299282, + "thread": 3 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2507304, + "thread": 25 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2685928, + "thread": 4 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2940977, + "thread": 19 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 2988734, + "thread": 22 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 3124495, + "thread": 20 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 3348987, + "thread": 25 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 3606813, + "thread": 23 + } + }, + { + "amount": "189.156760463", + "slot": { + "period": 3739545, + "thread": 1 + } + }, + { + "amount": "189.156760470", + "slot": { + "period": 3784909, + "thread": 18 + } + } + ], + "AU1jpktuyNjCo65gTBhtw8ejNySy5ZfV2gQQShTK48zeWy9RqYfM": [ + { + "amount": "1900.290912252", + "slot": { + "period": 31115, + "thread": 5 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 315080, + "thread": 27 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 400840, + "thread": 19 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 516945, + "thread": 15 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 684852, + "thread": 15 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 851266, + "thread": 4 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1097824, + "thread": 0 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1193293, + "thread": 31 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1333816, + "thread": 1 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1521063, + "thread": 19 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1705061, + "thread": 11 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 1904885, + "thread": 6 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2118318, + "thread": 29 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2208082, + "thread": 4 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2325510, + "thread": 1 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2620684, + "thread": 19 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2773469, + "thread": 6 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 2914073, + "thread": 15 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 3024246, + "thread": 6 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 3188407, + "thread": 14 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 3370327, + "thread": 9 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 3574626, + "thread": 9 + } + }, + { + "amount": "1900.290912252", + "slot": { + "period": 3759820, + "thread": 24 + } + }, + { + "amount": "1900.290912269", + "slot": { + "period": 3895659, + "thread": 0 + } + } + ], + "AU1jpr6oc9TFZW3XoFsyJ7si5zWPzckzsDt9JTXCnp4oTXmpVBgi": [ + { + "amount": "159.841964112", + "slot": { + "period": 71222, + "thread": 27 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 300966, + "thread": 18 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 362025, + "thread": 27 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 636155, + "thread": 21 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 798301, + "thread": 4 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 976188, + "thread": 9 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1051367, + "thread": 13 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1291977, + "thread": 14 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1411192, + "thread": 6 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1507620, + "thread": 23 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1770271, + "thread": 17 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 1812234, + "thread": 31 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2023644, + "thread": 30 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2238897, + "thread": 3 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2331232, + "thread": 10 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2621150, + "thread": 16 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2720763, + "thread": 4 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 2843342, + "thread": 28 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 3097368, + "thread": 6 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 3134975, + "thread": 6 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 3420620, + "thread": 3 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 3611499, + "thread": 18 + } + }, + { + "amount": "159.841964112", + "slot": { + "period": 3720422, + "thread": 11 + } + }, + { + "amount": "159.841964100", + "slot": { + "period": 3862594, + "thread": 14 + } + } + ], + "AU1jpykqdWXrbqmLF9hPTbqzCBuCKGa39LnmqvUNFeBkqzJ4KaDM": [ + { + "amount": "225.805421834", + "slot": { + "period": 55705, + "thread": 8 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 234295, + "thread": 14 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 369376, + "thread": 31 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 510874, + "thread": 22 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 670287, + "thread": 3 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 924593, + "thread": 22 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1124140, + "thread": 3 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1161948, + "thread": 11 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1395623, + "thread": 14 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1493514, + "thread": 13 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1766883, + "thread": 22 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 1970409, + "thread": 25 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2051779, + "thread": 17 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2147404, + "thread": 16 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2438741, + "thread": 9 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2583477, + "thread": 5 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2626590, + "thread": 31 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2907276, + "thread": 11 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 2974328, + "thread": 19 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 3244717, + "thread": 7 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 3371644, + "thread": 31 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 3514481, + "thread": 1 + } + }, + { + "amount": "225.805421834", + "slot": { + "period": 3645645, + "thread": 23 + } + }, + { + "amount": "225.805421833", + "slot": { + "period": 3863586, + "thread": 0 + } + } + ], + "AU1jq9GQT8gaYaCxkDoGzFzQbHebhkmRo5ytdbdSTBuy5gy9Mb9V": [ + { + "amount": "129.937357492", + "slot": { + "period": 153751, + "thread": 6 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 312603, + "thread": 27 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 365256, + "thread": 14 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 618147, + "thread": 28 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 683146, + "thread": 4 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 971356, + "thread": 11 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1042333, + "thread": 29 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1283268, + "thread": 10 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1398565, + "thread": 4 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1622271, + "thread": 21 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1708138, + "thread": 14 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 1946567, + "thread": 25 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2142675, + "thread": 11 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2282467, + "thread": 12 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2454229, + "thread": 25 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2610384, + "thread": 5 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2688831, + "thread": 12 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 2829982, + "thread": 8 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 3028555, + "thread": 5 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 3229377, + "thread": 11 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 3353870, + "thread": 24 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 3470640, + "thread": 2 + } + }, + { + "amount": "129.937357492", + "slot": { + "period": 3752602, + "thread": 27 + } + }, + { + "amount": "129.937357487", + "slot": { + "period": 3816434, + "thread": 21 + } + } + ], + "AU1jqG5tPn9Ej3uZfjktftbnTCdgBSwex7y2botgGV5Qbzp9HWT5": [ + { + "amount": "236.504074873", + "slot": { + "period": 73503, + "thread": 23 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 268897, + "thread": 15 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 449634, + "thread": 15 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 624489, + "thread": 4 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 673862, + "thread": 20 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 865814, + "thread": 5 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1106092, + "thread": 28 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1250963, + "thread": 18 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1415117, + "thread": 18 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1556752, + "thread": 18 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1794668, + "thread": 24 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 1976380, + "thread": 22 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2123393, + "thread": 3 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2222884, + "thread": 26 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2454991, + "thread": 28 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2558413, + "thread": 24 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2668870, + "thread": 12 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 2928587, + "thread": 19 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 3040823, + "thread": 13 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 3216510, + "thread": 2 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 3396270, + "thread": 17 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 3610582, + "thread": 0 + } + }, + { + "amount": "236.504074873", + "slot": { + "period": 3738495, + "thread": 12 + } + }, + { + "amount": "236.504074867", + "slot": { + "period": 3791755, + "thread": 11 + } + } + ], + "AU1jqN5NVezFcjsUzsediEDGAupwpB7ypT3UBQNbCGYex1FyZAEE": [ + { + "amount": "131.808070032", + "slot": { + "period": 130263, + "thread": 6 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 296444, + "thread": 19 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 396467, + "thread": 28 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 607860, + "thread": 20 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 699453, + "thread": 12 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 880658, + "thread": 17 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1051160, + "thread": 27 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1180295, + "thread": 11 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1335537, + "thread": 11 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1485831, + "thread": 27 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1697585, + "thread": 12 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 1844611, + "thread": 25 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2101910, + "thread": 19 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2242087, + "thread": 24 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2419645, + "thread": 24 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2540351, + "thread": 25 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2655061, + "thread": 15 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 2859416, + "thread": 23 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 3011956, + "thread": 1 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 3135360, + "thread": 11 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 3432454, + "thread": 14 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 3596647, + "thread": 0 + } + }, + { + "amount": "131.808070032", + "slot": { + "period": 3689234, + "thread": 25 + } + }, + { + "amount": "131.808070044", + "slot": { + "period": 3856638, + "thread": 16 + } + } + ], + "AU1jqSvsS4BaEmTL59x96DigM6addk4ihj9PtXduc3cTGjW4cjW4": [ + { + "amount": "60.029361141", + "slot": { + "period": 147540, + "thread": 12 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 279521, + "thread": 10 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 371670, + "thread": 3 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 553833, + "thread": 27 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 764787, + "thread": 11 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 833859, + "thread": 0 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1063932, + "thread": 22 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1279665, + "thread": 8 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1377469, + "thread": 22 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1545478, + "thread": 26 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1697415, + "thread": 28 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 1863805, + "thread": 2 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2026526, + "thread": 30 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2200615, + "thread": 3 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2344668, + "thread": 27 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2604870, + "thread": 26 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2756751, + "thread": 29 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 2858089, + "thread": 13 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 3027189, + "thread": 29 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 3136351, + "thread": 8 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 3318656, + "thread": 1 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 3560983, + "thread": 12 + } + }, + { + "amount": "60.029361141", + "slot": { + "period": 3683625, + "thread": 7 + } + }, + { + "amount": "60.029361146", + "slot": { + "period": 3862993, + "thread": 16 + } + } + ], + "AU1jqZGhmHRHjiV2LxPyXGUooYbXPspx2UZ7KVV96ynxnsoJWqr3": [ + { + "amount": "189.030220782", + "slot": { + "period": 119795, + "thread": 13 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 281256, + "thread": 28 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 491076, + "thread": 23 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 493420, + "thread": 8 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 739073, + "thread": 5 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 856550, + "thread": 8 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1027068, + "thread": 23 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1237266, + "thread": 2 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1433863, + "thread": 3 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1633992, + "thread": 0 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1706055, + "thread": 4 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 1887201, + "thread": 25 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2027351, + "thread": 25 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2270248, + "thread": 1 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2394608, + "thread": 6 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2600112, + "thread": 15 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2663763, + "thread": 20 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 2917333, + "thread": 22 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 3055939, + "thread": 11 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 3194457, + "thread": 3 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 3377796, + "thread": 21 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 3518953, + "thread": 16 + } + }, + { + "amount": "189.030220782", + "slot": { + "period": 3656926, + "thread": 20 + } + }, + { + "amount": "189.030220789", + "slot": { + "period": 3790777, + "thread": 8 + } + } + ], + "AU1jqt6UWD8jLGv8DNjLMxFQDwrrfb5VANPNimm6q371oGFs3w2x": [ + { + "amount": "129.700354388", + "slot": { + "period": 101828, + "thread": 10 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 242890, + "thread": 3 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 387804, + "thread": 24 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 504904, + "thread": 26 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 793872, + "thread": 18 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 891533, + "thread": 19 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1055471, + "thread": 6 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1153256, + "thread": 5 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1410036, + "thread": 9 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1497301, + "thread": 1 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1778198, + "thread": 18 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 1871049, + "thread": 31 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2035969, + "thread": 20 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2217753, + "thread": 22 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2366237, + "thread": 26 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2558241, + "thread": 22 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2665377, + "thread": 12 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 2889660, + "thread": 19 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 3110039, + "thread": 31 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 3186699, + "thread": 17 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 3353107, + "thread": 11 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 3476208, + "thread": 27 + } + }, + { + "amount": "129.700354388", + "slot": { + "period": 3744636, + "thread": 18 + } + }, + { + "amount": "129.700354397", + "slot": { + "period": 3811186, + "thread": 5 + } + } + ], + "AU1jr7mqko5kPgYLy7cWo9ondtxKPUQSmRk7MPk34e5dj82WETSL": [ + { + "amount": "293.154668599", + "slot": { + "period": 59840, + "thread": 30 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 229477, + "thread": 26 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 464816, + "thread": 31 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 539075, + "thread": 22 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 791693, + "thread": 20 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 915490, + "thread": 9 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 996617, + "thread": 29 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 1300958, + "thread": 0 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 1475495, + "thread": 19 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 1627660, + "thread": 11 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 1651160, + "thread": 18 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 1897729, + "thread": 19 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2087773, + "thread": 1 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2260899, + "thread": 10 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2416015, + "thread": 6 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2600574, + "thread": 18 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2779126, + "thread": 8 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 2891742, + "thread": 30 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 3016795, + "thread": 1 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 3263468, + "thread": 6 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 3440944, + "thread": 12 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 3466181, + "thread": 29 + } + }, + { + "amount": "293.154668599", + "slot": { + "period": 3638877, + "thread": 10 + } + }, + { + "amount": "293.154668593", + "slot": { + "period": 3860860, + "thread": 26 + } + } + ], + "AU1jrAhyzeYDLW7JNBivHWkRogR3z7opys3iyXMmgadNL4vHtaTA": [ + { + "amount": "253.073578611", + "slot": { + "period": 75355, + "thread": 5 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 172601, + "thread": 11 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 404298, + "thread": 4 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 603310, + "thread": 0 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 785949, + "thread": 3 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 959074, + "thread": 0 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 994963, + "thread": 20 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1196445, + "thread": 21 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1371114, + "thread": 16 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1591385, + "thread": 25 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1773222, + "thread": 23 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1814440, + "thread": 18 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 1990091, + "thread": 25 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 2244493, + "thread": 4 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 2334288, + "thread": 30 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 2528720, + "thread": 6 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 2692384, + "thread": 23 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 2929581, + "thread": 18 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 3026945, + "thread": 20 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 3133902, + "thread": 31 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 3420326, + "thread": 6 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 3523248, + "thread": 7 + } + }, + { + "amount": "253.073578611", + "slot": { + "period": 3670915, + "thread": 26 + } + }, + { + "amount": "253.073578610", + "slot": { + "period": 3897091, + "thread": 29 + } + } + ], + "AU1jrLQh5RcJYFV3dRn7wJfGrXKHnA1ktLZ5YdF6Uffjfknrwr8n": [ + { + "amount": "268.099110120", + "slot": { + "period": 127443, + "thread": 21 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 185692, + "thread": 5 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 466844, + "thread": 4 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 534364, + "thread": 22 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 659596, + "thread": 17 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 930376, + "thread": 30 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1094551, + "thread": 31 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1193212, + "thread": 13 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1384907, + "thread": 24 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1576131, + "thread": 3 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1728254, + "thread": 3 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 1953285, + "thread": 3 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2055816, + "thread": 24 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2288744, + "thread": 25 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2421093, + "thread": 23 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2482049, + "thread": 31 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2656416, + "thread": 9 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 2909384, + "thread": 14 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 3022451, + "thread": 26 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 3191530, + "thread": 3 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 3450097, + "thread": 20 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 3590894, + "thread": 30 + } + }, + { + "amount": "268.099110120", + "slot": { + "period": 3702022, + "thread": 0 + } + }, + { + "amount": "268.099110109", + "slot": { + "period": 3902304, + "thread": 6 + } + } + ], + "AU1jroP4KAySaUhyPg9qLb44Wg26dh8EseFDxvsocDrTwbhiYkXq": [ + { + "amount": "418.776950574", + "slot": { + "period": 38219, + "thread": 20 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 222945, + "thread": 8 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 447929, + "thread": 9 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 497756, + "thread": 15 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 745203, + "thread": 20 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 896394, + "thread": 14 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1090156, + "thread": 15 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1306008, + "thread": 27 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1332617, + "thread": 1 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1626235, + "thread": 31 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1805255, + "thread": 22 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 1916449, + "thread": 18 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2124373, + "thread": 18 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2280727, + "thread": 7 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2418095, + "thread": 14 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2609641, + "thread": 8 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2710106, + "thread": 25 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 2939717, + "thread": 23 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 3019230, + "thread": 18 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 3204293, + "thread": 30 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 3433134, + "thread": 3 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 3500377, + "thread": 13 + } + }, + { + "amount": "418.776950574", + "slot": { + "period": 3686561, + "thread": 27 + } + }, + { + "amount": "418.776950569", + "slot": { + "period": 3915610, + "thread": 11 + } + } + ], + "AU1jsUmaSAMrsmsTmGpsYDKkugoHg7vWuzfYnkNrTyejRMYugV5E": [ + { + "amount": "309.970331736", + "slot": { + "period": 26912, + "thread": 5 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 221090, + "thread": 30 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 342512, + "thread": 8 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 584945, + "thread": 6 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 818456, + "thread": 7 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 960953, + "thread": 27 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1144262, + "thread": 26 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1207657, + "thread": 29 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1319437, + "thread": 3 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1622674, + "thread": 15 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1788781, + "thread": 19 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 1932559, + "thread": 10 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2074581, + "thread": 28 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2186045, + "thread": 0 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2302438, + "thread": 13 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2516870, + "thread": 29 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2708517, + "thread": 30 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 2872818, + "thread": 10 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 3017481, + "thread": 26 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 3247362, + "thread": 29 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 3419871, + "thread": 4 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 3520450, + "thread": 9 + } + }, + { + "amount": "309.970331736", + "slot": { + "period": 3763093, + "thread": 16 + } + }, + { + "amount": "309.970331729", + "slot": { + "period": 3947069, + "thread": 23 + } + } + ], + "AU1jscimDT3A1ENNMQmQL5id8nRMeNGS6YZyEVCMFiK5BTH4kphY": [ + { + "amount": "185.278711620", + "slot": { + "period": 57632, + "thread": 27 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 303680, + "thread": 1 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 350813, + "thread": 10 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 619664, + "thread": 15 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 678407, + "thread": 17 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 955058, + "thread": 26 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1063468, + "thread": 18 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1236779, + "thread": 27 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1357021, + "thread": 6 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1644288, + "thread": 17 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1678369, + "thread": 0 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 1944989, + "thread": 23 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2037981, + "thread": 7 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2243192, + "thread": 14 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2345532, + "thread": 25 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2553179, + "thread": 23 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2692500, + "thread": 15 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 2798048, + "thread": 11 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 3003938, + "thread": 28 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 3205229, + "thread": 25 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 3361101, + "thread": 17 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 3544962, + "thread": 22 + } + }, + { + "amount": "185.278711620", + "slot": { + "period": 3739031, + "thread": 24 + } + }, + { + "amount": "185.278711613", + "slot": { + "period": 3932744, + "thread": 12 + } + } + ], + "AU1jsiBTKJdM42m9fbH1e9miYmGcznZnDx5PBk7wRaYCZtasKrSb": [ + { + "amount": "72.475917199", + "slot": { + "period": 73267, + "thread": 11 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 200488, + "thread": 15 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 475859, + "thread": 31 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 503372, + "thread": 24 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 779271, + "thread": 21 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 941069, + "thread": 3 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1004458, + "thread": 3 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1243410, + "thread": 7 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1426916, + "thread": 18 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1633967, + "thread": 19 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1696354, + "thread": 12 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 1875904, + "thread": 0 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2035666, + "thread": 16 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2181169, + "thread": 15 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2442182, + "thread": 4 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2584472, + "thread": 16 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2639193, + "thread": 0 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 2935743, + "thread": 26 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 3060701, + "thread": 14 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 3233599, + "thread": 5 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 3382703, + "thread": 21 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 3486304, + "thread": 19 + } + }, + { + "amount": "72.475917199", + "slot": { + "period": 3750667, + "thread": 6 + } + }, + { + "amount": "72.475917205", + "slot": { + "period": 3848169, + "thread": 3 + } + } + ], + "AU1jskC5umaVUWY1cSBcb6iWxUjhHSxcBwJVMopSQghfzMsLyFAz": [ + { + "amount": "70.010371585", + "slot": { + "period": 87191, + "thread": 14 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 249730, + "thread": 22 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 431104, + "thread": 13 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 531106, + "thread": 6 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 703807, + "thread": 11 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 874947, + "thread": 11 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1068507, + "thread": 23 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1286881, + "thread": 4 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1338294, + "thread": 30 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1597914, + "thread": 25 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1787015, + "thread": 27 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 1833809, + "thread": 12 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2101854, + "thread": 11 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2277168, + "thread": 3 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2305446, + "thread": 12 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2507078, + "thread": 17 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2706732, + "thread": 30 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 2900597, + "thread": 8 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 3006964, + "thread": 4 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 3236005, + "thread": 7 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 3352569, + "thread": 17 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 3462216, + "thread": 27 + } + }, + { + "amount": "70.010371585", + "slot": { + "period": 3720376, + "thread": 7 + } + }, + { + "amount": "70.010371582", + "slot": { + "period": 3865814, + "thread": 23 + } + } + ], + "AU1jsrsA7tyMirKcsBRvEXjVCLvVkn2bbAxcwwNGbU927auameh6": [ + { + "amount": "127.262112788", + "slot": { + "period": 126841, + "thread": 9 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 183183, + "thread": 16 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 338716, + "thread": 22 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 550315, + "thread": 30 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 736799, + "thread": 30 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 826263, + "thread": 25 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1111226, + "thread": 19 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1271663, + "thread": 25 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1445064, + "thread": 18 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1514179, + "thread": 16 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1800696, + "thread": 20 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 1911475, + "thread": 6 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2125474, + "thread": 7 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2161065, + "thread": 19 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2412343, + "thread": 25 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2598360, + "thread": 17 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2684304, + "thread": 21 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 2947404, + "thread": 31 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 3065770, + "thread": 9 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 3220744, + "thread": 0 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 3376457, + "thread": 24 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 3493829, + "thread": 15 + } + }, + { + "amount": "127.262112788", + "slot": { + "period": 3751831, + "thread": 22 + } + }, + { + "amount": "127.262112791", + "slot": { + "period": 3851071, + "thread": 19 + } + } + ], + "AU1jt1Ej15JP59unWR6uShuoYAeuKB4bC2Bc1iNzYxThk7YjFuXH": [ + { + "amount": "312.601962580", + "slot": { + "period": 158112, + "thread": 27 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 290463, + "thread": 25 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 388589, + "thread": 17 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 626475, + "thread": 26 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 678985, + "thread": 30 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 932042, + "thread": 13 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1130610, + "thread": 15 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1153469, + "thread": 2 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1402683, + "thread": 0 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1508793, + "thread": 31 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1771717, + "thread": 20 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 1849303, + "thread": 19 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2097517, + "thread": 18 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2278642, + "thread": 28 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2361034, + "thread": 6 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2616450, + "thread": 9 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2643027, + "thread": 19 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 2911400, + "thread": 5 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 3045128, + "thread": 14 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 3150359, + "thread": 1 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 3309443, + "thread": 5 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 3565948, + "thread": 16 + } + }, + { + "amount": "312.601962580", + "slot": { + "period": 3774487, + "thread": 24 + } + }, + { + "amount": "312.601962586", + "slot": { + "period": 3792359, + "thread": 26 + } + } + ], + "AU1jtnJLoxHnL7aJjC4FNP5uPh2AbmFDGhB9mPskS1fBV3ELjW4K": [ + { + "amount": "267.785179394", + "slot": { + "period": 90024, + "thread": 16 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 315086, + "thread": 21 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 350093, + "thread": 2 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 558851, + "thread": 9 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 710185, + "thread": 12 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 842521, + "thread": 0 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1007339, + "thread": 11 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1165211, + "thread": 6 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1475191, + "thread": 8 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1509564, + "thread": 3 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1784688, + "thread": 18 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1861886, + "thread": 4 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 1979647, + "thread": 4 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 2163439, + "thread": 1 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 2344306, + "thread": 4 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 2526802, + "thread": 25 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 2636653, + "thread": 30 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 2915025, + "thread": 13 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 3107998, + "thread": 15 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 3194144, + "thread": 4 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 3387774, + "thread": 18 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 3490993, + "thread": 23 + } + }, + { + "amount": "267.785179394", + "slot": { + "period": 3648298, + "thread": 19 + } + }, + { + "amount": "267.785179403", + "slot": { + "period": 3916889, + "thread": 20 + } + } + ], + "AU1ju1eY4TueQec2ArW79QLZMF6YA3Sdmc8LZXwJ3Nhfy14A4hBC": [ + { + "amount": "404.392106851", + "slot": { + "period": 62079, + "thread": 8 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 239463, + "thread": 26 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 422434, + "thread": 28 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 635730, + "thread": 26 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 716796, + "thread": 0 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 869742, + "thread": 8 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1118696, + "thread": 12 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1176820, + "thread": 28 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1400363, + "thread": 18 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1559106, + "thread": 10 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1790429, + "thread": 2 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 1937825, + "thread": 25 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2051540, + "thread": 31 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2275230, + "thread": 20 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2377476, + "thread": 22 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2551712, + "thread": 4 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2690623, + "thread": 26 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 2898449, + "thread": 16 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 3085217, + "thread": 30 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 3179056, + "thread": 19 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 3424776, + "thread": 14 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 3614459, + "thread": 2 + } + }, + { + "amount": "404.392106851", + "slot": { + "period": 3667688, + "thread": 25 + } + }, + { + "amount": "404.392106862", + "slot": { + "period": 3798976, + "thread": 5 + } + } + ], + "AU1jvMvRUMJGDLWysUQ9tidESmZWBRik4DvpUam1YgS4HVLsv167": [ + { + "amount": "287.002313424", + "slot": { + "period": 114346, + "thread": 12 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 194879, + "thread": 30 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 397151, + "thread": 3 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 547516, + "thread": 20 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 659165, + "thread": 6 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 974495, + "thread": 12 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1125445, + "thread": 8 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1227644, + "thread": 21 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1430551, + "thread": 24 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1617759, + "thread": 19 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1764798, + "thread": 11 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 1896223, + "thread": 22 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2097814, + "thread": 23 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2250246, + "thread": 18 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2370186, + "thread": 25 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2613727, + "thread": 18 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2724525, + "thread": 9 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2911283, + "thread": 25 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 2980872, + "thread": 13 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 3225402, + "thread": 7 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 3388254, + "thread": 24 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 3603784, + "thread": 22 + } + }, + { + "amount": "287.002313424", + "slot": { + "period": 3686404, + "thread": 0 + } + }, + { + "amount": "287.002313415", + "slot": { + "period": 3823129, + "thread": 20 + } + } + ], + "AU1jw2AiZGZnmdXVBaJmigqgwDktRPL6YkRbTvJeHDKVJNqCyV3E": [ + { + "amount": "552.773585579", + "slot": { + "period": 102441, + "thread": 18 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 280464, + "thread": 15 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 490347, + "thread": 5 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 611127, + "thread": 25 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 719963, + "thread": 12 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 843284, + "thread": 24 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1147706, + "thread": 0 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1265571, + "thread": 19 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1451578, + "thread": 27 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1636284, + "thread": 10 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1716245, + "thread": 25 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 1948353, + "thread": 9 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2059130, + "thread": 4 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2178247, + "thread": 19 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2435315, + "thread": 5 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2563458, + "thread": 22 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2690266, + "thread": 26 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 2895606, + "thread": 9 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 3042454, + "thread": 19 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 3284038, + "thread": 12 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 3336027, + "thread": 2 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 3555250, + "thread": 23 + } + }, + { + "amount": "552.773585579", + "slot": { + "period": 3695102, + "thread": 8 + } + }, + { + "amount": "552.773585568", + "slot": { + "period": 3884998, + "thread": 30 + } + } + ], + "AU1jw2xcR56xmadB4TLybDJvJY2fUrFNrRuuveZ6GScZXVPX2Y43": [ + { + "amount": "147.068999882", + "slot": { + "period": 161639, + "thread": 2 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 271610, + "thread": 4 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 456598, + "thread": 23 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 616256, + "thread": 8 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 664545, + "thread": 16 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 961740, + "thread": 30 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 984287, + "thread": 0 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 1273995, + "thread": 9 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 1475909, + "thread": 23 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 1587759, + "thread": 11 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 1748866, + "thread": 26 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 1860973, + "thread": 5 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2072763, + "thread": 9 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2159962, + "thread": 26 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2332737, + "thread": 30 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2560826, + "thread": 16 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2714150, + "thread": 15 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 2942369, + "thread": 18 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 3010722, + "thread": 11 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 3131413, + "thread": 9 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 3338290, + "thread": 8 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 3580164, + "thread": 23 + } + }, + { + "amount": "147.068999882", + "slot": { + "period": 3764226, + "thread": 29 + } + }, + { + "amount": "147.068999871", + "slot": { + "period": 3891540, + "thread": 19 + } + } + ], + "AU1jwtnYrJHEFibfu6rJ23Q6qkYpmYke3XFRe9WC2phBLwYmRUEi": [ + { + "amount": "5833.333333333", + "slot": { + "period": 112914, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 223571, + "thread": 8 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 487614, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 635700, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 659718, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 903149, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 996577, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1196178, + "thread": 24 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1344391, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1529607, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1730180, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1912878, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2127200, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2226063, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2383288, + "thread": 21 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2582451, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2760945, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2862103, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3076100, + "thread": 16 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3124816, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3360062, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3480993, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3668950, + "thread": 6 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3855499, + "thread": 17 + } + } + ], + "AU1jyYvfCYBjvMd89mpsybPS8kMWAQXnRXMm7qggoQb8rVaWVJPq": [ + { + "amount": "252.690494414", + "slot": { + "period": 26333, + "thread": 12 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 277847, + "thread": 16 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 479675, + "thread": 28 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 599369, + "thread": 7 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 775951, + "thread": 12 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 935897, + "thread": 8 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1030308, + "thread": 0 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1199959, + "thread": 17 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1422321, + "thread": 6 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1618760, + "thread": 9 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1703253, + "thread": 30 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 1826588, + "thread": 30 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2094220, + "thread": 31 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2222200, + "thread": 18 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2461834, + "thread": 19 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2478182, + "thread": 16 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2674488, + "thread": 9 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 2888221, + "thread": 20 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 3024124, + "thread": 30 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 3228413, + "thread": 17 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 3431466, + "thread": 19 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 3568623, + "thread": 13 + } + }, + { + "amount": "252.690494414", + "slot": { + "period": 3775924, + "thread": 16 + } + }, + { + "amount": "252.690494424", + "slot": { + "period": 3843233, + "thread": 24 + } + } + ], + "AU1jyrecwzT9gVA18hbd9S5rNDprVUc8Hyq6iyvk7XH6rs1DANna": [ + { + "amount": "468.146910110", + "slot": { + "period": 111100, + "thread": 0 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 234818, + "thread": 24 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 332587, + "thread": 8 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 524334, + "thread": 2 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 744426, + "thread": 3 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 875780, + "thread": 30 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1022826, + "thread": 17 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1212615, + "thread": 1 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1355923, + "thread": 30 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1538496, + "thread": 22 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1696343, + "thread": 1 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 1916214, + "thread": 10 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2033599, + "thread": 10 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2187775, + "thread": 6 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2343123, + "thread": 10 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2612485, + "thread": 28 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2628404, + "thread": 3 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 2927461, + "thread": 10 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 3116537, + "thread": 18 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 3164529, + "thread": 19 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 3441194, + "thread": 0 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 3505272, + "thread": 10 + } + }, + { + "amount": "468.146910110", + "slot": { + "period": 3657088, + "thread": 29 + } + }, + { + "amount": "468.146910115", + "slot": { + "period": 3894114, + "thread": 0 + } + } + ], + "AU1jyzUvjCSngSoFvFojLjp5QMw7q3PDRqFHtPjUQce9RhuTijQU": [ + { + "amount": "110.234877375", + "slot": { + "period": 35982, + "thread": 27 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 278623, + "thread": 29 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 428577, + "thread": 4 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 609334, + "thread": 30 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 703103, + "thread": 11 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 865134, + "thread": 23 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1115684, + "thread": 4 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1270807, + "thread": 6 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1345926, + "thread": 22 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1566185, + "thread": 29 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1793210, + "thread": 10 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 1824399, + "thread": 22 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2004587, + "thread": 26 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2197408, + "thread": 4 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2389685, + "thread": 21 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2518854, + "thread": 26 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2729033, + "thread": 11 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 2944084, + "thread": 8 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 3098655, + "thread": 23 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 3206597, + "thread": 31 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 3422086, + "thread": 1 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 3522686, + "thread": 12 + } + }, + { + "amount": "110.234877375", + "slot": { + "period": 3712299, + "thread": 18 + } + }, + { + "amount": "110.234877370", + "slot": { + "period": 3930127, + "thread": 22 + } + } + ], + "AU1jziVu3BsmcBgaNYCFtvw9cVfh8j81etMxf1VKPbkF6ozPvCnh": [ + { + "amount": "492.352320840", + "slot": { + "period": 109008, + "thread": 29 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 219767, + "thread": 12 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 409302, + "thread": 14 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 557840, + "thread": 28 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 757344, + "thread": 24 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 885039, + "thread": 26 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1044049, + "thread": 17 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1167418, + "thread": 25 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1373924, + "thread": 3 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1572426, + "thread": 12 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1664366, + "thread": 22 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 1920688, + "thread": 17 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2002005, + "thread": 7 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2226053, + "thread": 22 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2443750, + "thread": 21 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2587831, + "thread": 30 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2735814, + "thread": 16 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 2830567, + "thread": 15 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 3050929, + "thread": 18 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 3186128, + "thread": 5 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 3449304, + "thread": 14 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 3463205, + "thread": 10 + } + }, + { + "amount": "492.352320840", + "slot": { + "period": 3678824, + "thread": 27 + } + }, + { + "amount": "492.352320849", + "slot": { + "period": 3790528, + "thread": 25 + } + } + ], + "AU1jzsQVa51QA6Yah3jRFb5AAHsN6H5JPsm9JAFifxcs8ukXXbBm": [ + { + "amount": "133.555632446", + "slot": { + "period": 98983, + "thread": 9 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 310299, + "thread": 8 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 484828, + "thread": 6 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 524634, + "thread": 20 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 758749, + "thread": 16 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 948341, + "thread": 23 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 994698, + "thread": 26 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 1284867, + "thread": 9 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 1322677, + "thread": 8 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 1634914, + "thread": 23 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 1797264, + "thread": 2 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 1900587, + "thread": 26 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2123758, + "thread": 15 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2236432, + "thread": 31 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2343244, + "thread": 3 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2565415, + "thread": 14 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2703858, + "thread": 23 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 2922344, + "thread": 0 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 3102436, + "thread": 3 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 3205049, + "thread": 7 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 3442774, + "thread": 31 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 3580256, + "thread": 24 + } + }, + { + "amount": "133.555632446", + "slot": { + "period": 3716866, + "thread": 21 + } + }, + { + "amount": "133.555632435", + "slot": { + "period": 3913198, + "thread": 19 + } + } + ], + "AU1k1AMuaA42FDeDreF2dxjEQbkC3pBMFZ2duRdcN3XbDQjVsA8V": [ + { + "amount": "195.879811974", + "slot": { + "period": 108914, + "thread": 3 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 190433, + "thread": 8 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 334893, + "thread": 28 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 498852, + "thread": 16 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 667617, + "thread": 27 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 955045, + "thread": 29 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1028728, + "thread": 20 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1200574, + "thread": 17 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1474508, + "thread": 0 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1483391, + "thread": 30 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1693795, + "thread": 2 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 1814488, + "thread": 23 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2033152, + "thread": 2 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2172368, + "thread": 27 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2387014, + "thread": 8 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2578845, + "thread": 9 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2770778, + "thread": 24 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 2857666, + "thread": 0 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 3020610, + "thread": 25 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 3268138, + "thread": 3 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 3418745, + "thread": 21 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 3460121, + "thread": 10 + } + }, + { + "amount": "195.879811974", + "slot": { + "period": 3695085, + "thread": 16 + } + }, + { + "amount": "195.879811973", + "slot": { + "period": 3853784, + "thread": 11 + } + } + ], + "AU1k1YV1Xk4So3hYNCxbU9QTpLnvN5yvUDRLBhn5ZQurb4aoveeD": [ + { + "amount": "148.927019506", + "slot": { + "period": 47236, + "thread": 11 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 254356, + "thread": 10 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 450973, + "thread": 17 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 652007, + "thread": 28 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 806555, + "thread": 18 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 886249, + "thread": 15 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1079528, + "thread": 17 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1288766, + "thread": 2 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1330118, + "thread": 0 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1520244, + "thread": 28 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1660948, + "thread": 25 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 1942146, + "thread": 7 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2010309, + "thread": 1 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2261017, + "thread": 5 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2387161, + "thread": 0 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2540083, + "thread": 0 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2643386, + "thread": 4 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2811475, + "thread": 3 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 2955311, + "thread": 30 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 3201469, + "thread": 28 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 3421094, + "thread": 15 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 3560292, + "thread": 21 + } + }, + { + "amount": "148.927019506", + "slot": { + "period": 3681716, + "thread": 7 + } + }, + { + "amount": "148.927019497", + "slot": { + "period": 3820353, + "thread": 16 + } + } + ], + "AU1k2AgpsLsgwiDZpLJCWkdZNQzjCdqSKTuvBegT7TKJQvR1JC7D": [ + { + "amount": "77.578693081", + "slot": { + "period": 15237, + "thread": 16 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 297201, + "thread": 13 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 415287, + "thread": 5 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 585932, + "thread": 11 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 666142, + "thread": 13 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 901737, + "thread": 20 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1092621, + "thread": 10 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1313539, + "thread": 29 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1373268, + "thread": 28 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1579562, + "thread": 26 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1806560, + "thread": 20 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 1814267, + "thread": 13 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2114142, + "thread": 20 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2291771, + "thread": 18 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2438014, + "thread": 27 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2599102, + "thread": 25 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2658799, + "thread": 26 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 2851929, + "thread": 27 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 3027011, + "thread": 3 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 3126425, + "thread": 15 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 3359166, + "thread": 31 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 3544782, + "thread": 0 + } + }, + { + "amount": "77.578693081", + "slot": { + "period": 3753835, + "thread": 26 + } + }, + { + "amount": "77.578693071", + "slot": { + "period": 3825070, + "thread": 19 + } + } + ], + "AU1k2cmhrLFHdDjNmBQR1ZWUvqPDxunxjRfwQiuYHcFC6ondSJ2m": [ + { + "amount": "409.461140735", + "slot": { + "period": 102419, + "thread": 14 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 298111, + "thread": 6 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 411956, + "thread": 30 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 500155, + "thread": 24 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 779252, + "thread": 13 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 967333, + "thread": 12 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1067854, + "thread": 21 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1201749, + "thread": 17 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1366288, + "thread": 27 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1628430, + "thread": 11 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1731490, + "thread": 28 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 1841481, + "thread": 2 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2050335, + "thread": 10 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2248686, + "thread": 16 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2422994, + "thread": 19 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2547412, + "thread": 23 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2752743, + "thread": 9 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2888582, + "thread": 6 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 2954273, + "thread": 6 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 3266687, + "thread": 27 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 3444235, + "thread": 13 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 3457378, + "thread": 1 + } + }, + { + "amount": "409.461140735", + "slot": { + "period": 3619929, + "thread": 11 + } + }, + { + "amount": "409.461140732", + "slot": { + "period": 3827653, + "thread": 6 + } + } + ], + "AU1k2d6BYpoYnwEogKUwgBB8tcKkcs8aFBTUWVhFprckKQVKo98m": [ + { + "amount": "80.383983906", + "slot": { + "period": 153415, + "thread": 19 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 309513, + "thread": 3 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 490444, + "thread": 17 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 574289, + "thread": 14 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 787839, + "thread": 26 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 933516, + "thread": 10 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1108483, + "thread": 14 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1219219, + "thread": 11 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1392142, + "thread": 25 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1505061, + "thread": 15 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1685865, + "thread": 18 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 1917154, + "thread": 6 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2015992, + "thread": 22 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2227265, + "thread": 22 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2425690, + "thread": 21 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2516113, + "thread": 5 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2722005, + "thread": 22 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 2905794, + "thread": 11 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 3021594, + "thread": 25 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 3235085, + "thread": 23 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 3354532, + "thread": 23 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 3552675, + "thread": 30 + } + }, + { + "amount": "80.383983906", + "slot": { + "period": 3639690, + "thread": 10 + } + }, + { + "amount": "80.383983899", + "slot": { + "period": 3864259, + "thread": 12 + } + } + ], + "AU1k2kXXLFgz3Y7ZBPhA4HPjCqaCUuUKpudFUCmJVjTahqxohJHs": [ + { + "amount": "189.665978315", + "slot": { + "period": 131131, + "thread": 23 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 275393, + "thread": 15 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 465264, + "thread": 31 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 577495, + "thread": 29 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 711297, + "thread": 27 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 842705, + "thread": 0 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1117620, + "thread": 24 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1210898, + "thread": 17 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1392917, + "thread": 20 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1571230, + "thread": 26 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1675421, + "thread": 11 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 1826831, + "thread": 14 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2042132, + "thread": 11 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2200024, + "thread": 29 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2322630, + "thread": 21 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2555828, + "thread": 26 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2740930, + "thread": 10 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 2848651, + "thread": 25 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 3036164, + "thread": 18 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 3167205, + "thread": 28 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 3293498, + "thread": 27 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 3595772, + "thread": 19 + } + }, + { + "amount": "189.665978315", + "slot": { + "period": 3755801, + "thread": 21 + } + }, + { + "amount": "189.665978306", + "slot": { + "period": 3813947, + "thread": 14 + } + } + ], + "AU1k3swBist48uNL6pA9cEJt6BGXKB1tdqbiiEVuPCgsuHXoSb9u": [ + { + "amount": "157.136374978", + "slot": { + "period": 67414, + "thread": 4 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 170983, + "thread": 2 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 446075, + "thread": 0 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 649765, + "thread": 29 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 813333, + "thread": 16 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 910223, + "thread": 3 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1008364, + "thread": 19 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1289318, + "thread": 5 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1451597, + "thread": 19 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1544225, + "thread": 12 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1761672, + "thread": 16 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 1874571, + "thread": 16 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2105927, + "thread": 8 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2190042, + "thread": 29 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2306736, + "thread": 11 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2504571, + "thread": 5 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2749275, + "thread": 25 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 2908308, + "thread": 23 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 3026223, + "thread": 19 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 3191096, + "thread": 17 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 3400231, + "thread": 21 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 3507368, + "thread": 21 + } + }, + { + "amount": "157.136374978", + "slot": { + "period": 3741649, + "thread": 0 + } + }, + { + "amount": "157.136374983", + "slot": { + "period": 3914684, + "thread": 26 + } + } + ], + "AU1k3yhfSKYux9Y2eaRUFxiV36QxE9Wk6sdbNFgfGwXfthpc43nZ": [ + { + "amount": "73.357935415", + "slot": { + "period": 62551, + "thread": 14 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 299005, + "thread": 31 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 399930, + "thread": 29 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 580366, + "thread": 0 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 727542, + "thread": 27 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 842402, + "thread": 4 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1147627, + "thread": 25 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1277194, + "thread": 20 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1398531, + "thread": 14 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1579352, + "thread": 24 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1800827, + "thread": 14 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 1939013, + "thread": 9 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2032462, + "thread": 19 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2278577, + "thread": 28 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2314103, + "thread": 13 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2605755, + "thread": 27 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2746883, + "thread": 8 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 2901614, + "thread": 6 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3020557, + "thread": 14 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3242467, + "thread": 31 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3333603, + "thread": 5 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3515481, + "thread": 5 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3712310, + "thread": 21 + } + }, + { + "amount": "73.357935415", + "slot": { + "period": 3924577, + "thread": 23 + } + } + ], + "AU1k4LimMAwr3Gcn9Lii3xt731D3pDtrktW1Cy79V6fwvNE8yxui": [ + { + "amount": "190.379586126", + "slot": { + "period": 136656, + "thread": 21 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 298409, + "thread": 30 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 342243, + "thread": 28 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 623481, + "thread": 16 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 749503, + "thread": 5 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 932362, + "thread": 25 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1057170, + "thread": 18 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1151846, + "thread": 11 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1478251, + "thread": 27 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1504444, + "thread": 2 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1701212, + "thread": 27 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 1887407, + "thread": 3 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2026375, + "thread": 13 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2159972, + "thread": 11 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2375944, + "thread": 12 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2608878, + "thread": 26 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2634248, + "thread": 29 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 2905153, + "thread": 2 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 3092259, + "thread": 13 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 3187393, + "thread": 8 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 3395653, + "thread": 9 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 3560146, + "thread": 15 + } + }, + { + "amount": "190.379586126", + "slot": { + "period": 3723778, + "thread": 15 + } + }, + { + "amount": "190.379586121", + "slot": { + "period": 3821860, + "thread": 12 + } + } + ], + "AU1k5FTNNcGmSeXxKgFnSsVFgzsDiR8eBM5VnQBvzYEQkGwHbSGi": [ + { + "amount": "292.421436736", + "slot": { + "period": 113314, + "thread": 18 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 188572, + "thread": 15 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 348323, + "thread": 10 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 496279, + "thread": 28 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 690592, + "thread": 17 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 966042, + "thread": 10 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1134356, + "thread": 31 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1301901, + "thread": 14 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1404682, + "thread": 5 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1612808, + "thread": 9 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1717463, + "thread": 27 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 1938261, + "thread": 4 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2029092, + "thread": 6 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2183906, + "thread": 14 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2315736, + "thread": 26 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2569159, + "thread": 28 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2696604, + "thread": 9 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 2885010, + "thread": 28 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 3005756, + "thread": 30 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 3275756, + "thread": 4 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 3365075, + "thread": 12 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 3534251, + "thread": 7 + } + }, + { + "amount": "292.421436736", + "slot": { + "period": 3626016, + "thread": 11 + } + }, + { + "amount": "292.421436743", + "slot": { + "period": 3863869, + "thread": 7 + } + } + ], + "AU1k5zkWYwyLNi1EeeJrasXnvjsUsqb92WL6nbzgm4Q8M2yixCL6": [ + { + "amount": "191.803560694", + "slot": { + "period": 17904, + "thread": 23 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 194675, + "thread": 2 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 454191, + "thread": 19 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 577438, + "thread": 20 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 692112, + "thread": 4 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 849654, + "thread": 3 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1038437, + "thread": 1 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1284999, + "thread": 7 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1432776, + "thread": 8 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1510664, + "thread": 25 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1662425, + "thread": 9 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 1874009, + "thread": 11 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2047582, + "thread": 16 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2226981, + "thread": 27 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2328468, + "thread": 16 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2485674, + "thread": 6 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2703239, + "thread": 2 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 2820648, + "thread": 15 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 3002320, + "thread": 26 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 3173689, + "thread": 26 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 3413596, + "thread": 25 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 3557103, + "thread": 25 + } + }, + { + "amount": "191.803560694", + "slot": { + "period": 3636210, + "thread": 18 + } + }, + { + "amount": "191.803560697", + "slot": { + "period": 3805974, + "thread": 10 + } + } + ], + "AU1k6mkEn5q8S1WNQYiNoDqG2dPmHvTDdmpd8JPYJjVf8Ed74uv8": [ + { + "amount": "65.054796903", + "slot": { + "period": 143810, + "thread": 25 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 315091, + "thread": 4 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 369249, + "thread": 21 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 553459, + "thread": 11 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 671486, + "thread": 15 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 924293, + "thread": 25 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1124241, + "thread": 14 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1272209, + "thread": 24 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1451860, + "thread": 21 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1636763, + "thread": 24 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1804748, + "thread": 1 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 1938032, + "thread": 28 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2038402, + "thread": 16 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2163128, + "thread": 21 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2380889, + "thread": 5 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2552498, + "thread": 31 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2658432, + "thread": 19 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 2808868, + "thread": 23 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 3118795, + "thread": 7 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 3149444, + "thread": 20 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 3346967, + "thread": 15 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 3494994, + "thread": 12 + } + }, + { + "amount": "65.054796903", + "slot": { + "period": 3708622, + "thread": 1 + } + }, + { + "amount": "65.054796913", + "slot": { + "period": 3866766, + "thread": 8 + } + } + ], + "AU1k7MEKvNjF3pd8Doi3jaqiKtXCG6R1av6TucRuXfWkCvuSSrUs": [ + { + "amount": "115.820442137", + "slot": { + "period": 45653, + "thread": 26 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 310724, + "thread": 16 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 347193, + "thread": 11 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 538303, + "thread": 31 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 728354, + "thread": 23 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 930523, + "thread": 15 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1058460, + "thread": 9 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1235673, + "thread": 24 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1320747, + "thread": 22 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1492953, + "thread": 25 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1697248, + "thread": 30 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 1839251, + "thread": 9 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2135250, + "thread": 22 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2222955, + "thread": 26 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2302881, + "thread": 29 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2476824, + "thread": 5 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2780340, + "thread": 12 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 2825204, + "thread": 23 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 3112869, + "thread": 18 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 3152647, + "thread": 10 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 3409406, + "thread": 14 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 3513776, + "thread": 17 + } + }, + { + "amount": "115.820442137", + "slot": { + "period": 3677245, + "thread": 27 + } + }, + { + "amount": "115.820442139", + "slot": { + "period": 3892587, + "thread": 23 + } + } + ], + "AU1k7V5bWjnGVx46ykt7WjS1E5JsvMNgP4FWHdpCAjsbNWHyvx4K": [ + { + "amount": "100.479793697", + "slot": { + "period": 99241, + "thread": 27 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 168681, + "thread": 19 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 448461, + "thread": 18 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 556987, + "thread": 24 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 745854, + "thread": 1 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 925981, + "thread": 6 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1109797, + "thread": 14 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1175608, + "thread": 20 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1379735, + "thread": 23 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1553112, + "thread": 29 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1789687, + "thread": 19 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 1881161, + "thread": 22 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2025812, + "thread": 9 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2280615, + "thread": 31 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2394935, + "thread": 14 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2505241, + "thread": 29 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2682787, + "thread": 9 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 2949285, + "thread": 8 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 3091365, + "thread": 6 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 3150252, + "thread": 23 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 3322746, + "thread": 4 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 3588585, + "thread": 16 + } + }, + { + "amount": "100.479793697", + "slot": { + "period": 3624814, + "thread": 24 + } + }, + { + "amount": "100.479793701", + "slot": { + "period": 3838918, + "thread": 10 + } + } + ], + "AU1k7ve6QJBPoywM2RXmuZJDGoByf6YvPBzGtHUuWCtWEwfg79yH": [ + { + "amount": "148.430942599", + "slot": { + "period": 144827, + "thread": 8 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 244962, + "thread": 5 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 449922, + "thread": 23 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 632436, + "thread": 25 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 809699, + "thread": 0 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 959253, + "thread": 24 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 987369, + "thread": 0 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 1297907, + "thread": 8 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 1467129, + "thread": 18 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 1599891, + "thread": 24 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 1697879, + "thread": 2 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 1842006, + "thread": 19 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2117776, + "thread": 9 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2208549, + "thread": 4 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2456686, + "thread": 2 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2518531, + "thread": 7 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2674399, + "thread": 27 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 2900012, + "thread": 17 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 3011355, + "thread": 4 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 3123625, + "thread": 11 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 3367541, + "thread": 8 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 3539019, + "thread": 5 + } + }, + { + "amount": "148.430942599", + "slot": { + "period": 3753240, + "thread": 15 + } + }, + { + "amount": "148.430942588", + "slot": { + "period": 3785283, + "thread": 0 + } + } + ], + "AU1k8TXHiKMQmBiCQqU5Rp6Mn27na7oEbwaYMXwamE8MP3BKVT7a": [ + { + "amount": "286.115980825", + "slot": { + "period": 92311, + "thread": 7 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 220291, + "thread": 11 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 373194, + "thread": 18 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 602195, + "thread": 13 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 668435, + "thread": 19 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 929772, + "thread": 26 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1033358, + "thread": 30 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1179352, + "thread": 14 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1329887, + "thread": 10 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1550785, + "thread": 29 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1649699, + "thread": 6 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 1881708, + "thread": 8 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2093444, + "thread": 30 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2238334, + "thread": 8 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2404991, + "thread": 9 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2622570, + "thread": 31 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2627791, + "thread": 2 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2856587, + "thread": 14 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 2995706, + "thread": 9 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 3239490, + "thread": 28 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 3411314, + "thread": 15 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 3519825, + "thread": 7 + } + }, + { + "amount": "286.115980825", + "slot": { + "period": 3753232, + "thread": 7 + } + }, + { + "amount": "286.115980824", + "slot": { + "period": 3902394, + "thread": 2 + } + } + ], + "AU1k9MH4ubVY1Rn1m4pTKiTddNuwAQELPZJCcycfeE5ctbkmijQD": [ + { + "amount": "124.694293270", + "slot": { + "period": 126710, + "thread": 1 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 185600, + "thread": 29 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 451142, + "thread": 25 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 642924, + "thread": 14 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 769951, + "thread": 17 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 949050, + "thread": 24 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1131127, + "thread": 23 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1178841, + "thread": 23 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1446141, + "thread": 11 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1613016, + "thread": 12 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1699596, + "thread": 4 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 1860386, + "thread": 1 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2115398, + "thread": 11 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2171441, + "thread": 4 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2448238, + "thread": 31 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2591718, + "thread": 3 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2752364, + "thread": 6 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2928198, + "thread": 24 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 2989868, + "thread": 27 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 3229792, + "thread": 10 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 3347987, + "thread": 18 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 3463005, + "thread": 3 + } + }, + { + "amount": "124.694293270", + "slot": { + "period": 3662016, + "thread": 8 + } + }, + { + "amount": "124.694293282", + "slot": { + "period": 3838361, + "thread": 22 + } + } + ], + "AU1k9y25TTUVYxsubqvUNQP5FXzDBJvursESuF5BtpAiETMhydTc": [ + { + "amount": "94.533657403", + "slot": { + "period": 26502, + "thread": 29 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 231204, + "thread": 4 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 370430, + "thread": 2 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 543114, + "thread": 15 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 793176, + "thread": 11 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 825186, + "thread": 11 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1137103, + "thread": 29 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1165797, + "thread": 21 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1476891, + "thread": 3 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1645427, + "thread": 25 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1658676, + "thread": 28 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1965063, + "thread": 17 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 1980380, + "thread": 22 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2260050, + "thread": 24 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2359207, + "thread": 25 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2476207, + "thread": 14 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2676956, + "thread": 25 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2901605, + "thread": 4 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 2977384, + "thread": 14 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 3253035, + "thread": 30 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 3328045, + "thread": 29 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 3514621, + "thread": 25 + } + }, + { + "amount": "94.533657403", + "slot": { + "period": 3725025, + "thread": 10 + } + }, + { + "amount": "94.533657395", + "slot": { + "period": 3920283, + "thread": 19 + } + } + ], + "AU1kAMoRNMdKnxUW8nvzyQNTU8RwUTiKwgQYjXGWSLpzJcZyeCFT": [ + { + "amount": "217.565005056", + "slot": { + "period": 163577, + "thread": 11 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 199163, + "thread": 5 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 381482, + "thread": 1 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 570011, + "thread": 2 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 750881, + "thread": 14 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 978489, + "thread": 1 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1072896, + "thread": 30 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1203639, + "thread": 23 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1465381, + "thread": 7 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1602234, + "thread": 30 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1651795, + "thread": 25 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1911528, + "thread": 4 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 1996928, + "thread": 18 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 2289501, + "thread": 21 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 2394296, + "thread": 18 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 2494199, + "thread": 15 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 2628303, + "thread": 25 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 2933285, + "thread": 19 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 3015017, + "thread": 5 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 3267827, + "thread": 30 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 3313411, + "thread": 3 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 3545032, + "thread": 30 + } + }, + { + "amount": "217.565005056", + "slot": { + "period": 3716303, + "thread": 12 + } + }, + { + "amount": "217.565005063", + "slot": { + "period": 3829482, + "thread": 11 + } + } + ], + "AU1kAbbhabHeCuXJn8Hx3AEBy18qcKDYw5GEAb5mAARbo6Cpjwpf": [ + { + "amount": "122.977162057", + "slot": { + "period": 46318, + "thread": 12 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 319664, + "thread": 11 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 331472, + "thread": 31 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 560051, + "thread": 17 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 806278, + "thread": 8 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 832458, + "thread": 27 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1080150, + "thread": 3 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1270979, + "thread": 19 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1359026, + "thread": 4 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1553942, + "thread": 24 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1669112, + "thread": 20 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 1920486, + "thread": 15 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2029155, + "thread": 30 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2262116, + "thread": 6 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2313124, + "thread": 23 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2510038, + "thread": 4 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2745299, + "thread": 9 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 2802367, + "thread": 31 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 3039706, + "thread": 7 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 3254224, + "thread": 27 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 3366744, + "thread": 14 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 3571903, + "thread": 6 + } + }, + { + "amount": "122.977162057", + "slot": { + "period": 3695641, + "thread": 19 + } + }, + { + "amount": "122.977162055", + "slot": { + "period": 3824540, + "thread": 6 + } + } + ], + "AU1kAscdrqpbMzS2fek1gm5pytkB7hVQMamf7Ge1sgGhhwtfbq8x": [ + { + "amount": "552.300000140", + "slot": { + "period": 166899, + "thread": 5 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 180133, + "thread": 28 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 456887, + "thread": 25 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 505054, + "thread": 1 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 796215, + "thread": 25 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 849588, + "thread": 28 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 990393, + "thread": 6 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 1286761, + "thread": 28 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 1414533, + "thread": 3 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 1581843, + "thread": 29 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 1793570, + "thread": 2 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 1936771, + "thread": 11 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2065196, + "thread": 17 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2204496, + "thread": 28 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2326908, + "thread": 9 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2520139, + "thread": 31 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2745966, + "thread": 17 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2914294, + "thread": 0 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 2989166, + "thread": 19 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 3128389, + "thread": 28 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 3378330, + "thread": 19 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 3614959, + "thread": 30 + } + }, + { + "amount": "552.300000140", + "slot": { + "period": 3747097, + "thread": 19 + } + }, + { + "amount": "552.300000137", + "slot": { + "period": 3930856, + "thread": 30 + } + } + ], + "AU1kBL2opkzBJSeyRUH3atF7Fggv6983xnZUC2R7zFrXYtAZ3TcC": [ + { + "amount": "89.369035003", + "slot": { + "period": 50786, + "thread": 2 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 300008, + "thread": 6 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 491386, + "thread": 19 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 644029, + "thread": 26 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 749510, + "thread": 14 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 853362, + "thread": 9 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1080520, + "thread": 3 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1310929, + "thread": 2 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1468429, + "thread": 5 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1484364, + "thread": 5 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1707102, + "thread": 16 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 1948979, + "thread": 31 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2117682, + "thread": 4 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2249258, + "thread": 17 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2456706, + "thread": 3 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2492007, + "thread": 14 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2669918, + "thread": 16 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 2826333, + "thread": 22 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 3083658, + "thread": 11 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 3177733, + "thread": 30 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 3336200, + "thread": 26 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 3527207, + "thread": 8 + } + }, + { + "amount": "89.369035003", + "slot": { + "period": 3730238, + "thread": 17 + } + }, + { + "amount": "89.369035001", + "slot": { + "period": 3856162, + "thread": 18 + } + } + ], + "AU1kBXCGAt2v6EJb66vVy6C8QxFu67fUopWFMEYAwFZBiytHftfh": [ + { + "amount": "115.619142617", + "slot": { + "period": 116143, + "thread": 13 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 180216, + "thread": 13 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 444799, + "thread": 5 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 532280, + "thread": 17 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 694227, + "thread": 5 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 864857, + "thread": 16 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1025405, + "thread": 17 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1316641, + "thread": 6 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1345058, + "thread": 26 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1535699, + "thread": 0 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1767214, + "thread": 3 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 1885120, + "thread": 29 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2131904, + "thread": 3 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2158833, + "thread": 6 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2461193, + "thread": 1 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2555182, + "thread": 24 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2648000, + "thread": 14 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 2813024, + "thread": 12 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 3112225, + "thread": 22 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 3193385, + "thread": 3 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 3343807, + "thread": 5 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 3465840, + "thread": 5 + } + }, + { + "amount": "115.619142617", + "slot": { + "period": 3649644, + "thread": 5 + } + }, + { + "amount": "115.619142625", + "slot": { + "period": 3931345, + "thread": 1 + } + } + ], + "AU1kBphsG4SA9FUjxTQKgE4uCyKVsCqq9ki1xdDZxuc62XGtjtUm": [ + { + "amount": "145.837630173", + "slot": { + "period": 73834, + "thread": 30 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 270621, + "thread": 23 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 327721, + "thread": 30 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 589069, + "thread": 22 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 817574, + "thread": 24 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 850850, + "thread": 14 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1038067, + "thread": 11 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1266925, + "thread": 6 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1387508, + "thread": 8 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1570784, + "thread": 6 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1654110, + "thread": 11 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1841131, + "thread": 21 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 1991693, + "thread": 17 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 2217863, + "thread": 30 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 2296389, + "thread": 19 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 2563346, + "thread": 30 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 2733506, + "thread": 19 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 2797741, + "thread": 15 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 3020380, + "thread": 20 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 3186486, + "thread": 31 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 3368162, + "thread": 3 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 3465365, + "thread": 9 + } + }, + { + "amount": "145.837630173", + "slot": { + "period": 3624583, + "thread": 0 + } + }, + { + "amount": "145.837630183", + "slot": { + "period": 3938642, + "thread": 18 + } + } + ], + "AU1kBtKVdHYy2RimTWtXbDzP9D4E2vMhA8m4hQnzrZPsWiGEX44x": [ + { + "amount": "103.830941887", + "slot": { + "period": 95055, + "thread": 30 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 271096, + "thread": 12 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 422660, + "thread": 17 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 575074, + "thread": 8 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 793732, + "thread": 17 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 835238, + "thread": 26 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1117869, + "thread": 29 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1275229, + "thread": 21 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1474996, + "thread": 24 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1570320, + "thread": 26 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1653704, + "thread": 24 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 1830631, + "thread": 18 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2033573, + "thread": 10 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2188864, + "thread": 1 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2377578, + "thread": 10 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2546392, + "thread": 13 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2676010, + "thread": 11 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 2845194, + "thread": 19 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 3013221, + "thread": 24 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 3138810, + "thread": 28 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 3320423, + "thread": 16 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 3607353, + "thread": 31 + } + }, + { + "amount": "103.830941887", + "slot": { + "period": 3625920, + "thread": 4 + } + }, + { + "amount": "103.830941880", + "slot": { + "period": 3787140, + "thread": 26 + } + } + ], + "AU1kETnpaMoX44NW1YqUEfdpnv19tMWnRVdfuUNRV2E2NmmJzTT9": [ + { + "amount": "474.626922053", + "slot": { + "period": 79333, + "thread": 21 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 230162, + "thread": 16 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 456448, + "thread": 28 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 606573, + "thread": 13 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 696785, + "thread": 5 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 894607, + "thread": 22 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1046987, + "thread": 10 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1278859, + "thread": 10 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1377379, + "thread": 20 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1592925, + "thread": 13 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1661300, + "thread": 19 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 1918306, + "thread": 6 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2025909, + "thread": 31 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2287535, + "thread": 30 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2315921, + "thread": 23 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2582267, + "thread": 5 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2738461, + "thread": 14 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2876808, + "thread": 29 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 2975303, + "thread": 10 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 3173060, + "thread": 21 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 3444615, + "thread": 18 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 3572677, + "thread": 10 + } + }, + { + "amount": "474.626922053", + "slot": { + "period": 3670516, + "thread": 8 + } + }, + { + "amount": "474.626922046", + "slot": { + "period": 3808987, + "thread": 24 + } + } + ], + "AU1kEZ5rJZvcEB84BSARrUE77GoRBzay6fHgovVSSdquK684RXDu": [ + { + "amount": "313.679392837", + "slot": { + "period": 155557, + "thread": 23 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 279556, + "thread": 24 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 402125, + "thread": 19 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 512001, + "thread": 0 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 783908, + "thread": 21 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 860749, + "thread": 17 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1143336, + "thread": 18 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1231568, + "thread": 12 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1320817, + "thread": 17 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1609178, + "thread": 19 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1788869, + "thread": 1 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 1928448, + "thread": 31 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2055702, + "thread": 18 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2146511, + "thread": 7 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2313953, + "thread": 30 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2504513, + "thread": 11 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2765750, + "thread": 23 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2818548, + "thread": 21 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 2962888, + "thread": 15 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 3155958, + "thread": 9 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 3365307, + "thread": 18 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 3502397, + "thread": 19 + } + }, + { + "amount": "313.679392837", + "slot": { + "period": 3622394, + "thread": 26 + } + }, + { + "amount": "313.679392842", + "slot": { + "period": 3806172, + "thread": 2 + } + } + ], + "AU1kJr4t5HNoNBvwhSqX33wLCrghogWdYJo1SUVbBA44KWS4wahs": [ + { + "amount": "75.603627784", + "slot": { + "period": 164455, + "thread": 17 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 228242, + "thread": 10 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 432411, + "thread": 5 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 611558, + "thread": 5 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 753424, + "thread": 7 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 876575, + "thread": 5 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1008164, + "thread": 19 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1276209, + "thread": 31 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1408545, + "thread": 12 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1483305, + "thread": 1 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1689120, + "thread": 20 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 1822865, + "thread": 25 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2056819, + "thread": 6 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2185500, + "thread": 2 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2353063, + "thread": 31 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2562346, + "thread": 8 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2649323, + "thread": 17 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 2855919, + "thread": 5 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 3016952, + "thread": 8 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 3179079, + "thread": 14 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 3318687, + "thread": 9 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 3503386, + "thread": 20 + } + }, + { + "amount": "75.603627784", + "slot": { + "period": 3629232, + "thread": 29 + } + }, + { + "amount": "75.603627783", + "slot": { + "period": 3816488, + "thread": 10 + } + } + ], + "AU1kK7Nb3WzTTSJRHCp1K3425ZgENT6XJ4W4Avdp7ycxfAFgETXG": [ + { + "amount": "263.863808268", + "slot": { + "period": 11003, + "thread": 29 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 227605, + "thread": 13 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 334577, + "thread": 5 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 608958, + "thread": 4 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 675331, + "thread": 5 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 863624, + "thread": 11 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1123216, + "thread": 1 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1293803, + "thread": 21 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1457694, + "thread": 21 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1498029, + "thread": 19 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1734138, + "thread": 17 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1904751, + "thread": 13 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 1997529, + "thread": 8 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2250450, + "thread": 23 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2336690, + "thread": 21 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2529404, + "thread": 8 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2637219, + "thread": 6 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2815777, + "thread": 19 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 2994693, + "thread": 16 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 3266275, + "thread": 11 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 3444490, + "thread": 8 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 3570073, + "thread": 20 + } + }, + { + "amount": "263.863808268", + "slot": { + "period": 3641453, + "thread": 29 + } + }, + { + "amount": "263.863808256", + "slot": { + "period": 3940978, + "thread": 25 + } + } + ], + "AU1kLFkhZkGLKSVeUcMeF5n856NbVYgss39JkfXkriHmkNKXnuF1": [ + { + "amount": "282.102169274", + "slot": { + "period": 46157, + "thread": 24 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 176687, + "thread": 22 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 428907, + "thread": 26 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 529862, + "thread": 6 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 664368, + "thread": 13 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 968218, + "thread": 25 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1105385, + "thread": 22 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1228394, + "thread": 28 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1336461, + "thread": 0 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1626409, + "thread": 17 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1656951, + "thread": 4 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 1851833, + "thread": 7 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2132340, + "thread": 1 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2266718, + "thread": 2 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2420979, + "thread": 11 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2602188, + "thread": 10 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2749862, + "thread": 30 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 2903428, + "thread": 18 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 3075865, + "thread": 24 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 3124732, + "thread": 16 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 3317693, + "thread": 0 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 3567376, + "thread": 23 + } + }, + { + "amount": "282.102169274", + "slot": { + "period": 3758223, + "thread": 6 + } + }, + { + "amount": "282.102169267", + "slot": { + "period": 3889697, + "thread": 24 + } + } + ], + "AU1kLn1eUJ1E6N59q9t3aUmhcwj9SsTZ6n2FUeMnLtUB2NUqkhiJ": [ + { + "amount": "96.031007529", + "slot": { + "period": 102690, + "thread": 12 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 179367, + "thread": 29 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 424686, + "thread": 15 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 598365, + "thread": 9 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 795792, + "thread": 9 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 900866, + "thread": 19 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 993799, + "thread": 20 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 1263626, + "thread": 29 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 1338607, + "thread": 26 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 1618352, + "thread": 6 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 1800448, + "thread": 8 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 1930892, + "thread": 16 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2140712, + "thread": 16 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2280502, + "thread": 25 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2379765, + "thread": 31 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2559431, + "thread": 18 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2647217, + "thread": 12 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 2830877, + "thread": 9 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 3050686, + "thread": 27 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 3142012, + "thread": 10 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 3350560, + "thread": 7 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 3506908, + "thread": 14 + } + }, + { + "amount": "96.031007529", + "slot": { + "period": 3711966, + "thread": 5 + } + }, + { + "amount": "96.031007537", + "slot": { + "period": 3793305, + "thread": 20 + } + } + ], + "AU1kNfn8FLat8NnKozMBEs6W1hYEtQwj1XHZKszynYULMFCrXHF3": [ + { + "amount": "465.613760131", + "slot": { + "period": 62226, + "thread": 1 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 264339, + "thread": 13 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 362276, + "thread": 25 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 498239, + "thread": 12 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 743139, + "thread": 29 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 930486, + "thread": 0 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1131755, + "thread": 31 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1237499, + "thread": 21 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1382282, + "thread": 12 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1603792, + "thread": 0 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1712888, + "thread": 1 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 1837722, + "thread": 28 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2131603, + "thread": 10 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2214172, + "thread": 16 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2351889, + "thread": 16 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2569571, + "thread": 29 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2698550, + "thread": 30 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 2814784, + "thread": 10 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 3010842, + "thread": 10 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 3148786, + "thread": 11 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 3388625, + "thread": 21 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 3452829, + "thread": 18 + } + }, + { + "amount": "465.613760131", + "slot": { + "period": 3731011, + "thread": 14 + } + }, + { + "amount": "465.613760140", + "slot": { + "period": 3814195, + "thread": 28 + } + } + ], + "AU1kPgQxiDkVyT3MibfHww3WZowHHna7HNiD2GJ8EFv6Wtm84CTM": [ + { + "amount": "320.194531108", + "slot": { + "period": 122406, + "thread": 23 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 168781, + "thread": 19 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 481898, + "thread": 16 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 641544, + "thread": 19 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 725408, + "thread": 23 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 955869, + "thread": 18 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1059753, + "thread": 1 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1237444, + "thread": 20 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1334972, + "thread": 14 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1590613, + "thread": 22 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1796867, + "thread": 18 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1872130, + "thread": 16 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 1977495, + "thread": 27 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 2213493, + "thread": 1 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 2298882, + "thread": 5 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 2581437, + "thread": 0 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 2723983, + "thread": 16 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 2908026, + "thread": 18 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 3014681, + "thread": 30 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 3149829, + "thread": 6 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 3336877, + "thread": 6 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 3502672, + "thread": 24 + } + }, + { + "amount": "320.194531108", + "slot": { + "period": 3630744, + "thread": 30 + } + }, + { + "amount": "320.194531097", + "slot": { + "period": 3849114, + "thread": 17 + } + } + ], + "AU1kQUSWwbAbreyRMsQuqHfzmECgzxgys15xqaMamCn96H597SHo": [ + { + "amount": "329.227142209", + "slot": { + "period": 49301, + "thread": 4 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 321361, + "thread": 6 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 456493, + "thread": 26 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 574541, + "thread": 10 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 794493, + "thread": 3 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 834925, + "thread": 17 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1097402, + "thread": 16 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1187374, + "thread": 28 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1330555, + "thread": 4 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1547816, + "thread": 14 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1683771, + "thread": 1 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 1897374, + "thread": 11 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2025018, + "thread": 25 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2269978, + "thread": 3 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2384533, + "thread": 4 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2574452, + "thread": 1 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2663201, + "thread": 5 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 2878737, + "thread": 3 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 3098420, + "thread": 30 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 3155984, + "thread": 2 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 3420350, + "thread": 13 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 3605599, + "thread": 14 + } + }, + { + "amount": "329.227142209", + "slot": { + "period": 3627989, + "thread": 30 + } + }, + { + "amount": "329.227142214", + "slot": { + "period": 3891346, + "thread": 20 + } + } + ], + "AU1kS1XZMJ4q54bg2u4eTFxeAPjBVnBespaHbSg39d5ksm9tpef7": [ + { + "amount": "307.012148037", + "slot": { + "period": 21963, + "thread": 19 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 183203, + "thread": 20 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 418878, + "thread": 29 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 537274, + "thread": 20 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 772398, + "thread": 6 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 824854, + "thread": 3 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1053921, + "thread": 17 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1271073, + "thread": 24 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1408060, + "thread": 30 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1483628, + "thread": 7 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1677672, + "thread": 23 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 1855917, + "thread": 16 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2137731, + "thread": 29 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2218559, + "thread": 29 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2370590, + "thread": 23 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2500300, + "thread": 6 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2630483, + "thread": 30 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 2914608, + "thread": 28 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 3088601, + "thread": 20 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 3160340, + "thread": 4 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 3343099, + "thread": 15 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 3575945, + "thread": 28 + } + }, + { + "amount": "307.012148037", + "slot": { + "period": 3779038, + "thread": 8 + } + }, + { + "amount": "307.012148034", + "slot": { + "period": 3782172, + "thread": 22 + } + } + ], + "AU1kSdrhHWsC2Ry3bxTc6YTPdYfZTKM5qyTuqiiu5oaaazafBdXg": [ + { + "amount": "94.008050753", + "slot": { + "period": 120659, + "thread": 30 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 302098, + "thread": 15 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 440219, + "thread": 4 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 646415, + "thread": 8 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 809843, + "thread": 12 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 962747, + "thread": 4 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 989966, + "thread": 26 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 1285036, + "thread": 27 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 1425166, + "thread": 30 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 1565038, + "thread": 4 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 1793533, + "thread": 22 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 1844148, + "thread": 20 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2119827, + "thread": 0 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2187238, + "thread": 8 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2300837, + "thread": 4 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2498100, + "thread": 17 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2721274, + "thread": 19 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2849057, + "thread": 23 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 2999921, + "thread": 27 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 3137645, + "thread": 12 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 3326548, + "thread": 17 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 3511399, + "thread": 12 + } + }, + { + "amount": "94.008050753", + "slot": { + "period": 3664902, + "thread": 13 + } + }, + { + "amount": "94.008050749", + "slot": { + "period": 3845698, + "thread": 16 + } + } + ], + "AU1kT3VvQTqUKBcAmdBs44A8F3ey3fhnZpfLiAgUtZx7tFRC9Frq": [ + { + "amount": "101.006113674", + "slot": { + "period": 162295, + "thread": 6 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 225362, + "thread": 22 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 329093, + "thread": 6 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 632564, + "thread": 0 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 759326, + "thread": 28 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 932040, + "thread": 22 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1054086, + "thread": 7 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1184188, + "thread": 19 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1372742, + "thread": 24 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1513116, + "thread": 25 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1704705, + "thread": 11 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 1858665, + "thread": 5 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2038177, + "thread": 16 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2151070, + "thread": 14 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2346020, + "thread": 6 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2613890, + "thread": 15 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2722458, + "thread": 5 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 2842607, + "thread": 23 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 3005312, + "thread": 3 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 3287427, + "thread": 19 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 3296569, + "thread": 22 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 3485357, + "thread": 31 + } + }, + { + "amount": "101.006113674", + "slot": { + "period": 3773811, + "thread": 5 + } + }, + { + "amount": "101.006113679", + "slot": { + "period": 3924592, + "thread": 7 + } + } + ], + "AU1kTD3mLnHVT8c2tCR5sJAjFD5WegcdRJL8Wg4VAYDbwSE1ghLy": [ + { + "amount": "504.672016499", + "slot": { + "period": 107242, + "thread": 17 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 273961, + "thread": 3 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 420315, + "thread": 24 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 635497, + "thread": 25 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 808605, + "thread": 27 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 843808, + "thread": 26 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1002478, + "thread": 5 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1219845, + "thread": 22 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1401822, + "thread": 0 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1549802, + "thread": 21 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1651299, + "thread": 4 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 1852722, + "thread": 29 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2122522, + "thread": 27 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2222496, + "thread": 19 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2322385, + "thread": 2 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2608267, + "thread": 26 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2730576, + "thread": 10 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 2908645, + "thread": 1 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 3054210, + "thread": 23 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 3210191, + "thread": 28 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 3298586, + "thread": 31 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 3490893, + "thread": 14 + } + }, + { + "amount": "504.672016499", + "slot": { + "period": 3650467, + "thread": 26 + } + }, + { + "amount": "504.672016498", + "slot": { + "period": 3787485, + "thread": 30 + } + } + ], + "AU1kTagiqdaAHsCrjeDrb45otA2DkbgXTDboaLA4peYVKrGSEVgA": [ + { + "amount": "153.523283253", + "slot": { + "period": 154130, + "thread": 25 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 297861, + "thread": 15 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 477858, + "thread": 26 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 599822, + "thread": 18 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 731560, + "thread": 4 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 906594, + "thread": 10 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1099052, + "thread": 14 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1227020, + "thread": 31 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1458505, + "thread": 9 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1638717, + "thread": 28 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1723372, + "thread": 25 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1845856, + "thread": 17 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 1989470, + "thread": 2 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 2186204, + "thread": 28 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 2298383, + "thread": 10 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 2585504, + "thread": 0 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 2668467, + "thread": 24 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 2812541, + "thread": 16 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 3075333, + "thread": 10 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 3221598, + "thread": 28 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 3437521, + "thread": 8 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 3615950, + "thread": 1 + } + }, + { + "amount": "153.523283253", + "slot": { + "period": 3621872, + "thread": 27 + } + }, + { + "amount": "153.523283244", + "slot": { + "period": 3942365, + "thread": 25 + } + } + ], + "AU1kTooDuK5rmoVTsmoZFA96MH8g8pBQ9V1M8eJXNM2JT1p25SiZ": [ + { + "amount": "299.291411086", + "slot": { + "period": 59142, + "thread": 25 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 203544, + "thread": 17 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 476974, + "thread": 31 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 642353, + "thread": 1 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 814936, + "thread": 19 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 857742, + "thread": 5 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1041301, + "thread": 2 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1295878, + "thread": 17 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1415110, + "thread": 9 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1612253, + "thread": 14 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1673551, + "thread": 27 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1885170, + "thread": 7 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 1980755, + "thread": 22 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 2171677, + "thread": 24 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 2402818, + "thread": 6 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 2513546, + "thread": 5 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 2637374, + "thread": 12 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 2896793, + "thread": 23 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 3066838, + "thread": 31 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 3155333, + "thread": 11 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 3379948, + "thread": 15 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 3483916, + "thread": 5 + } + }, + { + "amount": "299.291411086", + "slot": { + "period": 3621728, + "thread": 11 + } + }, + { + "amount": "299.291411080", + "slot": { + "period": 3797204, + "thread": 26 + } + } + ], + "AU1kUFfydCRtHHTZdK5K4hEvFvyCkfQZmme5bD2cWUnGqUDGgmDN": [ + { + "amount": "364.461525130", + "slot": { + "period": 160767, + "thread": 0 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 231486, + "thread": 27 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 435170, + "thread": 24 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 608990, + "thread": 4 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 783849, + "thread": 10 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 915651, + "thread": 10 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1108941, + "thread": 10 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1207640, + "thread": 9 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1479197, + "thread": 14 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1605798, + "thread": 23 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1783350, + "thread": 18 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 1886601, + "thread": 9 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2081969, + "thread": 5 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2191228, + "thread": 12 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2417079, + "thread": 3 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2463985, + "thread": 2 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2699754, + "thread": 30 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2831637, + "thread": 4 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 2970324, + "thread": 13 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 3217091, + "thread": 26 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 3364125, + "thread": 19 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 3585859, + "thread": 5 + } + }, + { + "amount": "364.461525130", + "slot": { + "period": 3664008, + "thread": 28 + } + }, + { + "amount": "364.461525129", + "slot": { + "period": 3791681, + "thread": 16 + } + } + ], + "AU1kWH25LF5mJVEUJRaXy5bnnfQ177gLsbDFhcU2gufrmNX96PqE": [ + { + "amount": "116.470644695", + "slot": { + "period": 45329, + "thread": 0 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 253737, + "thread": 27 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 368160, + "thread": 6 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 591835, + "thread": 0 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 815589, + "thread": 7 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 843375, + "thread": 10 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1086398, + "thread": 11 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1153669, + "thread": 15 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1417899, + "thread": 22 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1536597, + "thread": 6 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1756396, + "thread": 29 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 1928487, + "thread": 28 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2103260, + "thread": 26 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2246895, + "thread": 6 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2441629, + "thread": 24 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2550148, + "thread": 29 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2753704, + "thread": 29 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 2912853, + "thread": 10 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 3009556, + "thread": 1 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 3147443, + "thread": 7 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 3423948, + "thread": 3 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 3583217, + "thread": 30 + } + }, + { + "amount": "116.470644695", + "slot": { + "period": 3647264, + "thread": 0 + } + }, + { + "amount": "116.470644701", + "slot": { + "period": 3803308, + "thread": 7 + } + } + ], + "AU1kXKPWQ8HHyXTFcJfAX9aTzmXvuK5J1A3MiBsx5TQ4UUyF7kKG": [ + { + "amount": "90.098763837", + "slot": { + "period": 87180, + "thread": 14 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 252345, + "thread": 22 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 435230, + "thread": 28 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 533544, + "thread": 27 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 724077, + "thread": 10 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 900264, + "thread": 27 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1114951, + "thread": 3 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1228736, + "thread": 26 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1453169, + "thread": 12 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1539294, + "thread": 4 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1653129, + "thread": 25 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 1914288, + "thread": 10 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2044980, + "thread": 22 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2218439, + "thread": 30 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2347009, + "thread": 19 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2493694, + "thread": 23 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2691280, + "thread": 7 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 2902500, + "thread": 19 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 3048835, + "thread": 1 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 3280725, + "thread": 27 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 3365308, + "thread": 20 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 3460411, + "thread": 30 + } + }, + { + "amount": "90.098763837", + "slot": { + "period": 3628956, + "thread": 22 + } + }, + { + "amount": "90.098763844", + "slot": { + "period": 3869971, + "thread": 12 + } + } + ], + "AU1kXc3Yn3M1aytTfG8QBHpxnzbH3ZfxAh62ZPYceeYcovoa2kGE": [ + { + "amount": "400.345587147", + "slot": { + "period": 99064, + "thread": 16 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 300929, + "thread": 24 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 433633, + "thread": 22 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 565946, + "thread": 25 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 814550, + "thread": 9 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 892894, + "thread": 18 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1032180, + "thread": 9 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1185486, + "thread": 18 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1389759, + "thread": 26 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1628442, + "thread": 1 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1648446, + "thread": 16 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 1877357, + "thread": 5 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2061400, + "thread": 8 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2262925, + "thread": 31 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2449152, + "thread": 6 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2544619, + "thread": 28 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2674194, + "thread": 21 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 2816422, + "thread": 10 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 3097165, + "thread": 28 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 3182534, + "thread": 28 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 3429306, + "thread": 18 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 3561073, + "thread": 24 + } + }, + { + "amount": "400.345587147", + "slot": { + "period": 3769678, + "thread": 28 + } + }, + { + "amount": "400.345587140", + "slot": { + "period": 3937650, + "thread": 18 + } + } + ], + "AU1kXi5Z3BYDB2gA9AiZDAMRydKtmxk8H5ukzAp92Dd8D5uGzJ5z": [ + { + "amount": "391.972171139", + "slot": { + "period": 141482, + "thread": 1 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 183837, + "thread": 29 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 431578, + "thread": 27 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 513588, + "thread": 6 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 660280, + "thread": 10 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 835153, + "thread": 8 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1003156, + "thread": 17 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1301690, + "thread": 11 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1427057, + "thread": 29 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1501235, + "thread": 0 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1753889, + "thread": 17 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 1912653, + "thread": 29 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2139057, + "thread": 11 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2222055, + "thread": 1 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2424397, + "thread": 11 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2495990, + "thread": 20 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2756737, + "thread": 4 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2899145, + "thread": 15 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 2982589, + "thread": 1 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 3135884, + "thread": 1 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 3426565, + "thread": 7 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 3550689, + "thread": 14 + } + }, + { + "amount": "391.972171139", + "slot": { + "period": 3686786, + "thread": 8 + } + }, + { + "amount": "391.972171130", + "slot": { + "period": 3862220, + "thread": 21 + } + } + ], + "AU1kY1PMQVGjUPuRq3ZJvNnJa2FskrtnKPagksz4BANYd9hWjhTt": [ + { + "amount": "65.810752330", + "slot": { + "period": 142110, + "thread": 27 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 277726, + "thread": 15 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 335545, + "thread": 27 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 564043, + "thread": 30 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 781096, + "thread": 16 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 863224, + "thread": 23 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1143976, + "thread": 30 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1218845, + "thread": 19 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1339890, + "thread": 14 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1495566, + "thread": 20 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1697788, + "thread": 17 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 1885104, + "thread": 29 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2018333, + "thread": 9 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2146322, + "thread": 9 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2394949, + "thread": 19 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2597574, + "thread": 10 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2677380, + "thread": 3 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 2909773, + "thread": 27 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 3055347, + "thread": 1 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 3142162, + "thread": 22 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 3321083, + "thread": 13 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 3548715, + "thread": 10 + } + }, + { + "amount": "65.810752330", + "slot": { + "period": 3733564, + "thread": 11 + } + }, + { + "amount": "65.810752323", + "slot": { + "period": 3807990, + "thread": 8 + } + } + ], + "AU1kZbhAMYiHqDAUpBzHQXiFc8grP3AXRKZoeSWRXcVLMu9A6xhx": [ + { + "amount": "519.244074589", + "slot": { + "period": 140126, + "thread": 11 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 311172, + "thread": 19 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 458457, + "thread": 7 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 537949, + "thread": 27 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 699928, + "thread": 26 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 980306, + "thread": 16 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1081442, + "thread": 10 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1208720, + "thread": 10 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1379108, + "thread": 27 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1516647, + "thread": 25 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1740176, + "thread": 28 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 1857606, + "thread": 23 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2055660, + "thread": 16 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2283423, + "thread": 13 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2410289, + "thread": 19 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2554257, + "thread": 30 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2626667, + "thread": 30 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2896821, + "thread": 12 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 2976447, + "thread": 21 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 3216166, + "thread": 2 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 3332284, + "thread": 8 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 3499551, + "thread": 25 + } + }, + { + "amount": "519.244074589", + "slot": { + "period": 3680782, + "thread": 28 + } + }, + { + "amount": "519.244074587", + "slot": { + "period": 3942809, + "thread": 17 + } + } + ], + "AU1ka4KMtUH5fzKakMuP6u3zQcUak8r9cTjHZp2BFvRb497fJVYs": [ + { + "amount": "141.495788481", + "slot": { + "period": 137284, + "thread": 8 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 237024, + "thread": 4 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 407078, + "thread": 4 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 569923, + "thread": 7 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 719161, + "thread": 7 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 918904, + "thread": 25 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1026489, + "thread": 10 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1202946, + "thread": 24 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1362180, + "thread": 25 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1615014, + "thread": 17 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1658389, + "thread": 4 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 1871507, + "thread": 13 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2132699, + "thread": 14 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2280956, + "thread": 14 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2315783, + "thread": 30 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2547396, + "thread": 10 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2791406, + "thread": 20 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 2874706, + "thread": 27 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 3092702, + "thread": 15 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 3281174, + "thread": 17 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 3442930, + "thread": 7 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 3589544, + "thread": 10 + } + }, + { + "amount": "141.495788481", + "slot": { + "period": 3768516, + "thread": 5 + } + }, + { + "amount": "141.495788486", + "slot": { + "period": 3934827, + "thread": 31 + } + } + ], + "AU1kaB46abWTALDw1J4s5mxPtJPKQ797SeigdqK37r65DCjZWQdU": [ + { + "amount": "135.497040346", + "slot": { + "period": 147635, + "thread": 8 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 179026, + "thread": 0 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 452361, + "thread": 7 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 647361, + "thread": 23 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 762770, + "thread": 16 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 948950, + "thread": 31 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1088498, + "thread": 28 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1294088, + "thread": 6 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1330687, + "thread": 13 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1573672, + "thread": 28 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1780486, + "thread": 25 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 1883094, + "thread": 16 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2134002, + "thread": 5 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2213885, + "thread": 24 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2418965, + "thread": 10 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2540106, + "thread": 0 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2752900, + "thread": 18 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 2941383, + "thread": 9 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 3027599, + "thread": 0 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 3210998, + "thread": 20 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 3298437, + "thread": 11 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 3559377, + "thread": 25 + } + }, + { + "amount": "135.497040346", + "slot": { + "period": 3635952, + "thread": 23 + } + }, + { + "amount": "135.497040350", + "slot": { + "period": 3944668, + "thread": 5 + } + } + ], + "AU1karZMHYwh11jbP55fW2FShWmy8zqapUopjm1mZHEXN4LiCqn7": [ + { + "amount": "206.858439849", + "slot": { + "period": 79724, + "thread": 20 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 275685, + "thread": 12 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 419328, + "thread": 6 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 551275, + "thread": 5 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 783339, + "thread": 25 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 906833, + "thread": 9 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1102523, + "thread": 12 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1249138, + "thread": 6 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1406755, + "thread": 5 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1569447, + "thread": 24 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1690332, + "thread": 30 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1864875, + "thread": 29 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 1982286, + "thread": 20 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 2227865, + "thread": 8 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 2336763, + "thread": 6 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 2558683, + "thread": 18 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 2670944, + "thread": 14 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 2823277, + "thread": 10 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3046157, + "thread": 8 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3137448, + "thread": 1 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3425468, + "thread": 15 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3589157, + "thread": 5 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3622937, + "thread": 21 + } + }, + { + "amount": "206.858439849", + "slot": { + "period": 3869740, + "thread": 15 + } + } + ], + "AU1kbHFKPPAtABz3KMmTvr5fCyDVW5Dti8TSgBncrkFRzEumi9jC": [ + { + "amount": "272.469479918", + "slot": { + "period": 153740, + "thread": 19 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 277835, + "thread": 24 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 389869, + "thread": 29 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 527043, + "thread": 7 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 684445, + "thread": 15 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 906043, + "thread": 22 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 995892, + "thread": 9 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 1150865, + "thread": 20 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 1343113, + "thread": 7 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 1564148, + "thread": 0 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 1722039, + "thread": 26 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 1823680, + "thread": 21 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2077474, + "thread": 5 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2292174, + "thread": 18 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2393088, + "thread": 20 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2594655, + "thread": 16 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2711554, + "thread": 31 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 2800155, + "thread": 10 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 3092737, + "thread": 9 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 3163710, + "thread": 24 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 3437005, + "thread": 7 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 3485230, + "thread": 21 + } + }, + { + "amount": "272.469479918", + "slot": { + "period": 3659817, + "thread": 10 + } + }, + { + "amount": "272.469479912", + "slot": { + "period": 3871272, + "thread": 17 + } + } + ], + "AU1kbkHQVdRF3JZAF7YVdjEj2zTGfJVKRkRLZfxQQaxXzW9HTH58": [ + { + "amount": "572.385082019", + "slot": { + "period": 78064, + "thread": 16 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 310925, + "thread": 22 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 369748, + "thread": 20 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 501560, + "thread": 15 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 777049, + "thread": 24 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 843518, + "thread": 25 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1078935, + "thread": 27 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1183794, + "thread": 18 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1356251, + "thread": 27 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1498773, + "thread": 15 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1766582, + "thread": 27 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 1822042, + "thread": 14 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2096878, + "thread": 20 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2173647, + "thread": 10 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2372363, + "thread": 4 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2486128, + "thread": 10 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2714313, + "thread": 29 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 2813005, + "thread": 31 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 3097965, + "thread": 28 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 3246401, + "thread": 19 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 3381925, + "thread": 30 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 3481757, + "thread": 10 + } + }, + { + "amount": "572.385082019", + "slot": { + "period": 3772035, + "thread": 2 + } + }, + { + "amount": "572.385082013", + "slot": { + "period": 3819982, + "thread": 29 + } + } + ], + "AU1kcU3nKkXu5ZBa7SfCh4F9cStkDV6oJPmiJvXiKopbyvMVrynL": [ + { + "amount": "526.885222455", + "slot": { + "period": 130408, + "thread": 11 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 203464, + "thread": 29 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 438356, + "thread": 17 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 582321, + "thread": 9 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 668285, + "thread": 17 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 897463, + "thread": 26 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1043086, + "thread": 19 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1233686, + "thread": 28 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1389694, + "thread": 12 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1494716, + "thread": 19 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1706980, + "thread": 24 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 1881739, + "thread": 23 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2132512, + "thread": 9 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2289235, + "thread": 2 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2351007, + "thread": 11 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2569734, + "thread": 10 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2671188, + "thread": 7 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 2865085, + "thread": 22 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 3028090, + "thread": 15 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 3164103, + "thread": 28 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 3311804, + "thread": 16 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 3556002, + "thread": 25 + } + }, + { + "amount": "526.885222455", + "slot": { + "period": 3668104, + "thread": 27 + } + }, + { + "amount": "526.885222465", + "slot": { + "period": 3894164, + "thread": 18 + } + } + ], + "AU1kddBV6hURrwKAP5z3JwB6QEb7jj3rPQdpHrFUXjHA3VftKXjD": [ + { + "amount": "327.386721620", + "slot": { + "period": 105918, + "thread": 2 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 244497, + "thread": 14 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 409654, + "thread": 30 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 581601, + "thread": 6 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 818239, + "thread": 21 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 842462, + "thread": 21 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1139621, + "thread": 12 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1215980, + "thread": 14 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1337572, + "thread": 17 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1526170, + "thread": 15 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1719245, + "thread": 24 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 1908853, + "thread": 19 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2124757, + "thread": 0 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2222686, + "thread": 29 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2409443, + "thread": 24 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2622662, + "thread": 23 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2785578, + "thread": 9 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 2926413, + "thread": 11 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 3113502, + "thread": 17 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 3127173, + "thread": 25 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 3371830, + "thread": 25 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 3542410, + "thread": 4 + } + }, + { + "amount": "327.386721620", + "slot": { + "period": 3670172, + "thread": 31 + } + }, + { + "amount": "327.386721627", + "slot": { + "period": 3935274, + "thread": 15 + } + } + ], + "AU1kdkGXViEYHP5ZGZmJJunYYrKLSjBzSfbxxzXQUcnY7VMca4Rr": [ + { + "amount": "249.565244374", + "slot": { + "period": 123234, + "thread": 5 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 200739, + "thread": 29 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 337688, + "thread": 2 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 537090, + "thread": 7 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 714859, + "thread": 3 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 950728, + "thread": 17 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1044669, + "thread": 17 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1266901, + "thread": 25 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1340584, + "thread": 4 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1646496, + "thread": 13 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1770337, + "thread": 7 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1841751, + "thread": 18 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 1996775, + "thread": 25 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 2234322, + "thread": 19 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 2342923, + "thread": 11 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 2469965, + "thread": 11 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 2731597, + "thread": 8 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 2886397, + "thread": 27 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 3109988, + "thread": 31 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 3186294, + "thread": 28 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 3301964, + "thread": 3 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 3604490, + "thread": 30 + } + }, + { + "amount": "249.565244374", + "slot": { + "period": 3655210, + "thread": 11 + } + }, + { + "amount": "249.565244372", + "slot": { + "period": 3929067, + "thread": 9 + } + } + ], + "AU1kfQex7E2Ff3AopvdXhAksqcjLAUvL6z5UFvsqTkGciD3dVcCo": [ + { + "amount": "324.507124481", + "slot": { + "period": 157055, + "thread": 1 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 221034, + "thread": 1 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 364099, + "thread": 28 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 537309, + "thread": 27 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 789735, + "thread": 6 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 923652, + "thread": 13 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1077963, + "thread": 8 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1282382, + "thread": 13 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1326152, + "thread": 28 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1588086, + "thread": 15 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1773844, + "thread": 11 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 1968266, + "thread": 24 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2032893, + "thread": 23 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2168345, + "thread": 21 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2339319, + "thread": 18 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2521152, + "thread": 29 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2690590, + "thread": 1 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 2919425, + "thread": 26 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 3086586, + "thread": 29 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 3262746, + "thread": 0 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 3299743, + "thread": 14 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 3588694, + "thread": 23 + } + }, + { + "amount": "324.507124481", + "slot": { + "period": 3686680, + "thread": 8 + } + }, + { + "amount": "324.507124483", + "slot": { + "period": 3920530, + "thread": 25 + } + } + ], + "AU1kfkp1QXVbdEWk696sccTEjD8hbuvtwQwri165CPsVXipCpdQK": [ + { + "amount": "122.787892510", + "slot": { + "period": 140444, + "thread": 1 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 246371, + "thread": 1 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 388738, + "thread": 5 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 602632, + "thread": 1 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 767928, + "thread": 15 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 883784, + "thread": 8 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1007565, + "thread": 30 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1251604, + "thread": 28 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1446181, + "thread": 19 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1496180, + "thread": 2 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1697740, + "thread": 3 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 1919603, + "thread": 3 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2106687, + "thread": 22 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2160914, + "thread": 1 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2342058, + "thread": 31 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2624275, + "thread": 12 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2701326, + "thread": 29 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 2863644, + "thread": 24 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 3004279, + "thread": 2 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 3159757, + "thread": 7 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 3438067, + "thread": 11 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 3562472, + "thread": 27 + } + }, + { + "amount": "122.787892510", + "slot": { + "period": 3753191, + "thread": 13 + } + }, + { + "amount": "122.787892516", + "slot": { + "period": 3799434, + "thread": 13 + } + } + ], + "AU1kfrjAP4QYG32yA5dhdzA7FQi5emquBg3kzBywdYorfqN2UYxy": [ + { + "amount": "217.117465203", + "slot": { + "period": 44858, + "thread": 23 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 312203, + "thread": 26 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 343503, + "thread": 1 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 651317, + "thread": 22 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 804662, + "thread": 24 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 912058, + "thread": 21 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1009841, + "thread": 0 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1256074, + "thread": 15 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1465785, + "thread": 11 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1606556, + "thread": 9 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1715858, + "thread": 17 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 1860925, + "thread": 10 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2045781, + "thread": 31 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2169963, + "thread": 13 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2424227, + "thread": 11 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2585211, + "thread": 26 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2759353, + "thread": 27 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2899794, + "thread": 10 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 2963887, + "thread": 3 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 3251070, + "thread": 4 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 3325035, + "thread": 20 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 3588563, + "thread": 3 + } + }, + { + "amount": "217.117465203", + "slot": { + "period": 3717240, + "thread": 2 + } + }, + { + "amount": "217.117465200", + "slot": { + "period": 3843104, + "thread": 29 + } + } + ], + "AU1kgNB2R2bBFfL94yLwLZMM4ffwv2SSUD9Vy7mUJ1iu8gwuiJKv": [ + { + "amount": "205.507056516", + "slot": { + "period": 48574, + "thread": 19 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 234412, + "thread": 14 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 393357, + "thread": 26 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 647882, + "thread": 14 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 679567, + "thread": 28 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 968207, + "thread": 23 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1085185, + "thread": 25 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1262682, + "thread": 8 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1456814, + "thread": 6 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1591366, + "thread": 8 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1672445, + "thread": 13 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 1853229, + "thread": 15 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2141895, + "thread": 17 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2150715, + "thread": 22 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2302202, + "thread": 9 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2472533, + "thread": 20 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2718325, + "thread": 28 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 2867304, + "thread": 0 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 3070305, + "thread": 23 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 3133293, + "thread": 5 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 3408724, + "thread": 6 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 3453010, + "thread": 28 + } + }, + { + "amount": "205.507056516", + "slot": { + "period": 3671275, + "thread": 13 + } + }, + { + "amount": "205.507056514", + "slot": { + "period": 3863962, + "thread": 19 + } + } + ], + "AU1kgkSWf99ULKkzVRGaeiJxkDkeurDBwy9mqDPKfzTM7tG4eFaa": [ + { + "amount": "176.431241832", + "slot": { + "period": 136665, + "thread": 11 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 244781, + "thread": 19 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 475124, + "thread": 16 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 566361, + "thread": 2 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 687303, + "thread": 2 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 883986, + "thread": 28 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1094482, + "thread": 17 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1233378, + "thread": 16 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1408250, + "thread": 29 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1484272, + "thread": 24 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1689479, + "thread": 8 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 1914851, + "thread": 15 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2016779, + "thread": 23 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2286044, + "thread": 8 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2316083, + "thread": 2 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2467655, + "thread": 5 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2679157, + "thread": 27 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 2849637, + "thread": 4 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 3102860, + "thread": 8 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 3171012, + "thread": 10 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 3356734, + "thread": 7 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 3521401, + "thread": 26 + } + }, + { + "amount": "176.431241832", + "slot": { + "period": 3669698, + "thread": 16 + } + }, + { + "amount": "176.431241825", + "slot": { + "period": 3804174, + "thread": 8 + } + } + ], + "AU1kgm9D7C3wNX7xzk3j6JGg8EiuaePQvgLAVN29GVk5fQW2e9AR": [ + { + "amount": "318.554724293", + "slot": { + "period": 94722, + "thread": 15 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 228878, + "thread": 31 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 360010, + "thread": 18 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 627182, + "thread": 12 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 774209, + "thread": 11 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 957554, + "thread": 18 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1139395, + "thread": 26 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1191558, + "thread": 3 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1388171, + "thread": 2 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1482160, + "thread": 28 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1668102, + "thread": 10 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 1905802, + "thread": 11 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2069461, + "thread": 9 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2172991, + "thread": 12 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2320470, + "thread": 9 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2536206, + "thread": 0 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2701004, + "thread": 14 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 2943455, + "thread": 19 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 3088178, + "thread": 0 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 3273505, + "thread": 20 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 3377988, + "thread": 15 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 3482783, + "thread": 22 + } + }, + { + "amount": "318.554724293", + "slot": { + "period": 3622645, + "thread": 30 + } + }, + { + "amount": "318.554724282", + "slot": { + "period": 3832410, + "thread": 2 + } + } + ], + "AU1khhNEsqWSBgymAqHL9WJrjSKWzN6aDv1Tz7ytRTBcANKKvhVa": [ + { + "amount": "51.143699742", + "slot": { + "period": 86183, + "thread": 15 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 218004, + "thread": 30 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 346144, + "thread": 3 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 624161, + "thread": 1 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 814109, + "thread": 31 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 888621, + "thread": 28 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1023661, + "thread": 2 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1264363, + "thread": 28 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1472631, + "thread": 11 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1553724, + "thread": 27 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1692563, + "thread": 6 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1876022, + "thread": 15 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 1980648, + "thread": 14 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2250307, + "thread": 13 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2337535, + "thread": 21 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2480021, + "thread": 7 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2737191, + "thread": 5 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2838847, + "thread": 31 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 2974794, + "thread": 14 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 3251081, + "thread": 21 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 3393443, + "thread": 19 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 3578897, + "thread": 4 + } + }, + { + "amount": "51.143699742", + "slot": { + "period": 3662670, + "thread": 3 + } + }, + { + "amount": "51.143699749", + "slot": { + "period": 3826278, + "thread": 31 + } + } + ], + "AU1kjPKTTgduKfshzUdiS6h9YNkZ37A4PxFCCe3r2ZAHWMsv5GRi": [ + { + "amount": "156.193944608", + "slot": { + "period": 129280, + "thread": 17 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 202456, + "thread": 30 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 354825, + "thread": 29 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 513748, + "thread": 7 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 739579, + "thread": 3 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 845642, + "thread": 9 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1030433, + "thread": 22 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1291998, + "thread": 2 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1347446, + "thread": 27 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1641615, + "thread": 0 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1715017, + "thread": 7 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 1915488, + "thread": 24 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2033683, + "thread": 16 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2283399, + "thread": 31 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2324620, + "thread": 22 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2618847, + "thread": 6 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2647614, + "thread": 7 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 2880434, + "thread": 0 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 3108319, + "thread": 0 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 3249083, + "thread": 27 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 3446060, + "thread": 0 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 3479210, + "thread": 15 + } + }, + { + "amount": "156.193944608", + "slot": { + "period": 3736692, + "thread": 17 + } + }, + { + "amount": "156.193944600", + "slot": { + "period": 3828885, + "thread": 22 + } + } + ], + "AU1kjjVMqyWR5RfGJmNL9Wff2VJU6XioVtK3A6SfY4jQhuWzcU9k": [ + { + "amount": "88.098060713", + "slot": { + "period": 120542, + "thread": 21 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 233300, + "thread": 10 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 474793, + "thread": 11 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 533848, + "thread": 30 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 701817, + "thread": 5 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 974956, + "thread": 25 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1139487, + "thread": 18 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1168726, + "thread": 10 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1353071, + "thread": 29 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1602626, + "thread": 28 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1754933, + "thread": 14 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 1957915, + "thread": 31 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2079814, + "thread": 18 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2293346, + "thread": 9 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2429123, + "thread": 5 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2462575, + "thread": 31 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2789103, + "thread": 27 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 2899726, + "thread": 14 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 3060850, + "thread": 11 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 3231962, + "thread": 30 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 3350870, + "thread": 18 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 3595047, + "thread": 14 + } + }, + { + "amount": "88.098060713", + "slot": { + "period": 3681848, + "thread": 12 + } + }, + { + "amount": "88.098060709", + "slot": { + "period": 3889937, + "thread": 27 + } + } + ], + "AU1kmC3EkyUni5rCKSXTHwhFs5PqewhL5dq5v6S4NcWEM9JQeoV6": [ + { + "amount": "430.047665962", + "slot": { + "period": 127679, + "thread": 25 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 202499, + "thread": 29 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 488974, + "thread": 14 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 579606, + "thread": 6 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 712062, + "thread": 23 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 964909, + "thread": 6 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1069819, + "thread": 6 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1173257, + "thread": 31 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1392641, + "thread": 20 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1628363, + "thread": 23 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1803329, + "thread": 6 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 1904612, + "thread": 20 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2125333, + "thread": 16 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2202586, + "thread": 20 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2411049, + "thread": 1 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2546933, + "thread": 22 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2654182, + "thread": 28 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 2953590, + "thread": 29 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 3038177, + "thread": 27 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 3246890, + "thread": 17 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 3330393, + "thread": 15 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 3583406, + "thread": 31 + } + }, + { + "amount": "430.047665962", + "slot": { + "period": 3676501, + "thread": 3 + } + }, + { + "amount": "430.047665970", + "slot": { + "period": 3831186, + "thread": 25 + } + } + ], + "AU1kmMy5ZM8H7nVPGeqWgnQ6Nr7YRaRJdMrqUNH25mZ2vLDxSsGd": [ + { + "amount": "129.265430510", + "slot": { + "period": 74052, + "thread": 1 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 245609, + "thread": 30 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 382771, + "thread": 29 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 565833, + "thread": 9 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 712964, + "thread": 29 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 920987, + "thread": 13 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1035814, + "thread": 7 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1312105, + "thread": 15 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1354768, + "thread": 25 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1559498, + "thread": 7 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1743558, + "thread": 4 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1859877, + "thread": 15 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 1991921, + "thread": 3 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 2171292, + "thread": 10 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 2310379, + "thread": 23 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 2612545, + "thread": 19 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 2709491, + "thread": 12 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 2860363, + "thread": 25 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 3110695, + "thread": 14 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 3136799, + "thread": 26 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 3353768, + "thread": 21 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 3531102, + "thread": 0 + } + }, + { + "amount": "129.265430510", + "slot": { + "period": 3741663, + "thread": 8 + } + }, + { + "amount": "129.265430506", + "slot": { + "period": 3881297, + "thread": 8 + } + } + ], + "AU1kmRyo2kcbXMq3UcjXjK14pU828HVt4u1TpXpgrvTinAyjNSCZ": [ + { + "amount": "150.448542109", + "slot": { + "period": 163933, + "thread": 30 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 270185, + "thread": 29 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 358861, + "thread": 5 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 575468, + "thread": 17 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 653548, + "thread": 13 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 891495, + "thread": 4 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 988413, + "thread": 9 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 1212975, + "thread": 9 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 1467379, + "thread": 30 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 1532948, + "thread": 10 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 1784407, + "thread": 1 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 1892220, + "thread": 19 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2031996, + "thread": 17 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2210154, + "thread": 28 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2319475, + "thread": 22 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2502511, + "thread": 17 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2746680, + "thread": 1 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 2935370, + "thread": 22 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 3024632, + "thread": 19 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 3191798, + "thread": 22 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 3420793, + "thread": 19 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 3586389, + "thread": 14 + } + }, + { + "amount": "150.448542109", + "slot": { + "period": 3726904, + "thread": 3 + } + }, + { + "amount": "150.448542115", + "slot": { + "period": 3823174, + "thread": 28 + } + } + ], + "AU1ko2rHgvSe2hzo7nnM4HrXMyqjvYFhCumuJ83JerWRZk75m35e": [ + { + "amount": "198.956181197", + "slot": { + "period": 33810, + "thread": 13 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 189524, + "thread": 21 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 369523, + "thread": 22 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 588341, + "thread": 21 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 790362, + "thread": 0 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 862460, + "thread": 5 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1122211, + "thread": 4 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1298015, + "thread": 18 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1339157, + "thread": 12 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1496794, + "thread": 29 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1770088, + "thread": 18 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1837531, + "thread": 22 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 1992798, + "thread": 25 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 2201434, + "thread": 19 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 2318850, + "thread": 18 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 2587317, + "thread": 5 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 2764386, + "thread": 9 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 2896999, + "thread": 24 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 3033203, + "thread": 20 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 3195070, + "thread": 27 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 3420838, + "thread": 12 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 3505214, + "thread": 29 + } + }, + { + "amount": "198.956181197", + "slot": { + "period": 3761601, + "thread": 19 + } + }, + { + "amount": "198.956181204", + "slot": { + "period": 3835019, + "thread": 0 + } + } + ], + "AU1koHXk4iLNNgygUneQQJCevaWx7uJmw4tNwCS194Cbo6it6jLq": [ + { + "amount": "281.143411196", + "slot": { + "period": 115049, + "thread": 20 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 207595, + "thread": 13 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 413510, + "thread": 12 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 546062, + "thread": 24 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 725897, + "thread": 20 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 967653, + "thread": 18 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1042162, + "thread": 30 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1268363, + "thread": 8 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1461324, + "thread": 9 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1528275, + "thread": 22 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1799792, + "thread": 12 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 1968719, + "thread": 23 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2103893, + "thread": 26 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2217487, + "thread": 25 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2396338, + "thread": 28 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2472523, + "thread": 14 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2651445, + "thread": 23 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 2853544, + "thread": 22 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 3062050, + "thread": 14 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 3269700, + "thread": 7 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 3380776, + "thread": 29 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 3564449, + "thread": 17 + } + }, + { + "amount": "281.143411196", + "slot": { + "period": 3644030, + "thread": 29 + } + }, + { + "amount": "281.143411205", + "slot": { + "period": 3881007, + "thread": 17 + } + } + ], + "AU1koXB47V465oodEFrQkUvnpq1woGS5cLaDSJaFS6UpDsc4ghgC": [ + { + "amount": "98.354719372", + "slot": { + "period": 23818, + "thread": 19 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 293388, + "thread": 14 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 375550, + "thread": 9 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 524259, + "thread": 11 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 784163, + "thread": 1 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 937482, + "thread": 28 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1127905, + "thread": 20 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1291812, + "thread": 27 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1400083, + "thread": 21 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1547621, + "thread": 7 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1795728, + "thread": 1 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1891434, + "thread": 19 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 1979214, + "thread": 11 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2204056, + "thread": 27 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2322188, + "thread": 20 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2623401, + "thread": 25 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2764796, + "thread": 14 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2821222, + "thread": 30 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 2987467, + "thread": 2 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 3198044, + "thread": 10 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 3417257, + "thread": 17 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 3559621, + "thread": 26 + } + }, + { + "amount": "98.354719372", + "slot": { + "period": 3633089, + "thread": 22 + } + }, + { + "amount": "98.354719373", + "slot": { + "period": 3789673, + "thread": 24 + } + } + ], + "AU1kpXYQFVqqnoxNStkwHyHz51mXSo1Yh7dGFQUtwdpVwpo6Atv": [ + { + "amount": "164.554580132", + "slot": { + "period": 51889, + "thread": 26 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 225570, + "thread": 11 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 401278, + "thread": 19 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 581842, + "thread": 16 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 678477, + "thread": 9 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 931273, + "thread": 3 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1031052, + "thread": 18 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1269678, + "thread": 28 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1328605, + "thread": 30 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1573969, + "thread": 20 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1675495, + "thread": 2 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 1943837, + "thread": 14 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2044837, + "thread": 19 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2215486, + "thread": 14 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2314831, + "thread": 26 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2476126, + "thread": 26 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2665219, + "thread": 2 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2871547, + "thread": 31 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 2994620, + "thread": 1 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 3148597, + "thread": 2 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 3309060, + "thread": 10 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 3537474, + "thread": 6 + } + }, + { + "amount": "164.554580132", + "slot": { + "period": 3716388, + "thread": 20 + } + }, + { + "amount": "164.554580133", + "slot": { + "period": 3827037, + "thread": 22 + } + } + ], + "AU1kpXqwvwiv4Bkzgj9NL5866uEn2Qho14cj3RPCkA5nZfKPtxwc": [ + { + "amount": "90.801226490", + "slot": { + "period": 122118, + "thread": 15 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 268476, + "thread": 24 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 466909, + "thread": 21 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 619600, + "thread": 6 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 776592, + "thread": 30 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 941528, + "thread": 8 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1098327, + "thread": 24 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1167373, + "thread": 28 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1336891, + "thread": 28 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1629848, + "thread": 4 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1661408, + "thread": 5 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 1851647, + "thread": 6 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2044519, + "thread": 15 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2188272, + "thread": 26 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2406704, + "thread": 15 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2547890, + "thread": 15 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2748687, + "thread": 11 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 2817155, + "thread": 13 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 3114474, + "thread": 21 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 3209121, + "thread": 22 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 3400629, + "thread": 5 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 3528910, + "thread": 11 + } + }, + { + "amount": "90.801226490", + "slot": { + "period": 3767254, + "thread": 12 + } + }, + { + "amount": "90.801226501", + "slot": { + "period": 3876966, + "thread": 25 + } + } + ], + "AU1kqL5sKU25tPtpXvRQAf8GtAso1xy53vxNztwFEL2Ni43WnfvB": [ + { + "amount": "142.770411987", + "slot": { + "period": 37053, + "thread": 8 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 319675, + "thread": 27 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 407651, + "thread": 25 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 565893, + "thread": 27 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 751699, + "thread": 12 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 938908, + "thread": 17 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1085328, + "thread": 24 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1307459, + "thread": 4 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1330488, + "thread": 26 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1509320, + "thread": 23 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1739796, + "thread": 24 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 1822189, + "thread": 4 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2113046, + "thread": 26 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2247444, + "thread": 17 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2460379, + "thread": 14 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2507466, + "thread": 5 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2748253, + "thread": 31 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 2848794, + "thread": 28 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 3034040, + "thread": 2 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 3251726, + "thread": 29 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 3381432, + "thread": 28 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 3498533, + "thread": 15 + } + }, + { + "amount": "142.770411987", + "slot": { + "period": 3691252, + "thread": 25 + } + }, + { + "amount": "142.770411979", + "slot": { + "period": 3807106, + "thread": 8 + } + } + ], + "AU1kqxdLfYbJLv1ve3BH1zks8FSP4V7wzfaprrPpbzLZfJMXyyX6": [ + { + "amount": "329.309666859", + "slot": { + "period": 36070, + "thread": 7 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 321332, + "thread": 7 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 446446, + "thread": 15 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 598208, + "thread": 25 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 734851, + "thread": 26 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 899316, + "thread": 7 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1106998, + "thread": 13 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1174586, + "thread": 11 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1344934, + "thread": 25 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1631529, + "thread": 24 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1771951, + "thread": 6 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 1870656, + "thread": 29 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2018381, + "thread": 1 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2256049, + "thread": 23 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2354482, + "thread": 9 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2526289, + "thread": 7 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2660419, + "thread": 1 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 2843446, + "thread": 14 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 3104529, + "thread": 2 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 3285213, + "thread": 20 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 3387983, + "thread": 0 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 3561630, + "thread": 12 + } + }, + { + "amount": "329.309666859", + "slot": { + "period": 3749125, + "thread": 18 + } + }, + { + "amount": "329.309666861", + "slot": { + "period": 3874960, + "thread": 9 + } + } + ], + "AU1krMahPG5dM2UW2mkJ4QMg3RfKD33KurUCzRN8L7o4ATVUtTBa": [ + { + "amount": "138.846650681", + "slot": { + "period": 152872, + "thread": 17 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 245093, + "thread": 28 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 335132, + "thread": 6 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 634637, + "thread": 17 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 802983, + "thread": 3 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 955999, + "thread": 27 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1087079, + "thread": 11 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1270016, + "thread": 14 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1338581, + "thread": 16 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1544105, + "thread": 18 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1724837, + "thread": 7 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1902763, + "thread": 19 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 1987976, + "thread": 21 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 2263757, + "thread": 8 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 2385594, + "thread": 11 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 2470079, + "thread": 6 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 2776663, + "thread": 21 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 2871159, + "thread": 28 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 3049495, + "thread": 8 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 3179071, + "thread": 9 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 3291581, + "thread": 30 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 3556632, + "thread": 20 + } + }, + { + "amount": "138.846650681", + "slot": { + "period": 3754375, + "thread": 27 + } + }, + { + "amount": "138.846650673", + "slot": { + "period": 3866560, + "thread": 21 + } + } + ], + "AU1ks7xCGU7hmT3VuZE33fDEjHoncKrhfkJazUCGsB8zLbitSZFf": [ + { + "amount": "264.673297163", + "slot": { + "period": 42908, + "thread": 1 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 250474, + "thread": 29 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 374943, + "thread": 25 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 525651, + "thread": 2 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 712409, + "thread": 30 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 939828, + "thread": 28 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1042755, + "thread": 16 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1265581, + "thread": 18 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1465926, + "thread": 22 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1573618, + "thread": 4 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1690685, + "thread": 19 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 1928527, + "thread": 9 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2079579, + "thread": 12 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2279571, + "thread": 26 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2300986, + "thread": 30 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2568787, + "thread": 6 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2747208, + "thread": 7 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2929869, + "thread": 27 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 2964884, + "thread": 26 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 3229000, + "thread": 7 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 3365149, + "thread": 14 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 3596287, + "thread": 24 + } + }, + { + "amount": "264.673297163", + "slot": { + "period": 3719643, + "thread": 11 + } + }, + { + "amount": "264.673297158", + "slot": { + "period": 3940661, + "thread": 27 + } + } + ], + "AU1ks8oGLJVjUR1EE9H25FFMr9p55mtTaixdq9k1D7Cb7so2KFUH": [ + { + "amount": "126.298434757", + "slot": { + "period": 73941, + "thread": 30 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 275617, + "thread": 22 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 431389, + "thread": 7 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 637461, + "thread": 23 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 723506, + "thread": 31 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 966136, + "thread": 3 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 991810, + "thread": 17 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 1240828, + "thread": 19 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 1442692, + "thread": 17 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 1623112, + "thread": 0 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 1759662, + "thread": 7 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 1859391, + "thread": 26 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2142662, + "thread": 16 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2282543, + "thread": 7 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2362947, + "thread": 9 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2589129, + "thread": 19 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2636653, + "thread": 7 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 2927549, + "thread": 20 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 3014759, + "thread": 15 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 3204502, + "thread": 27 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 3447731, + "thread": 27 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 3513491, + "thread": 16 + } + }, + { + "amount": "126.298434757", + "slot": { + "period": 3671239, + "thread": 7 + } + }, + { + "amount": "126.298434766", + "slot": { + "period": 3853974, + "thread": 4 + } + } + ], + "AU1ktXF9MuRDPhzUfBTLFk7daJTmqBgfmJNGdLnAACzHaC48cStH": [ + { + "amount": "140.967973396", + "slot": { + "period": 142289, + "thread": 15 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 243123, + "thread": 2 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 457032, + "thread": 23 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 632417, + "thread": 0 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 736055, + "thread": 19 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 924437, + "thread": 26 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1074134, + "thread": 8 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1289059, + "thread": 19 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1373428, + "thread": 24 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1506939, + "thread": 17 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1665305, + "thread": 26 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 1937659, + "thread": 14 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2023616, + "thread": 29 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2252909, + "thread": 16 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2321963, + "thread": 14 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2516990, + "thread": 9 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2646073, + "thread": 4 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2880604, + "thread": 8 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 2987930, + "thread": 25 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 3161567, + "thread": 3 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 3289868, + "thread": 3 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 3517209, + "thread": 8 + } + }, + { + "amount": "140.967973396", + "slot": { + "period": 3667805, + "thread": 26 + } + }, + { + "amount": "140.967973405", + "slot": { + "period": 3860638, + "thread": 19 + } + } + ], + "AU1kti6iC7PDfD8UoiMK5LPLwnHVoGMFx2RNZ7e34t8q812iHd3U": [ + { + "amount": "158.066761360", + "slot": { + "period": 151159, + "thread": 28 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 283993, + "thread": 2 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 346912, + "thread": 8 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 520696, + "thread": 6 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 779556, + "thread": 29 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 960280, + "thread": 19 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1042416, + "thread": 8 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1165296, + "thread": 19 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1462081, + "thread": 1 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1621682, + "thread": 7 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1774556, + "thread": 6 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1855104, + "thread": 10 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 1995166, + "thread": 0 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2190929, + "thread": 2 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2428928, + "thread": 15 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2509228, + "thread": 15 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2759226, + "thread": 10 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2942199, + "thread": 6 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 2994146, + "thread": 1 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 3141189, + "thread": 9 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 3374253, + "thread": 2 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 3553325, + "thread": 6 + } + }, + { + "amount": "158.066761360", + "slot": { + "period": 3631575, + "thread": 0 + } + }, + { + "amount": "158.066761356", + "slot": { + "period": 3804408, + "thread": 2 + } + } + ], + "AU1kuNrUqpyrzTx5J7ZDmvmbhMmEA4ZwLRCsV3bTgR2aBEE6Abfd": [ + { + "amount": "465.087705079", + "slot": { + "period": 18078, + "thread": 17 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 191166, + "thread": 8 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 470773, + "thread": 26 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 540337, + "thread": 2 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 679253, + "thread": 8 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 979004, + "thread": 26 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1133689, + "thread": 5 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1203132, + "thread": 31 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1350389, + "thread": 25 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1572316, + "thread": 31 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1659764, + "thread": 3 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 1825939, + "thread": 14 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2091255, + "thread": 15 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2257258, + "thread": 18 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2432289, + "thread": 17 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2583259, + "thread": 28 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2748103, + "thread": 5 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 2844992, + "thread": 21 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 3090605, + "thread": 9 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 3225786, + "thread": 31 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 3292473, + "thread": 11 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 3520949, + "thread": 23 + } + }, + { + "amount": "465.087705079", + "slot": { + "period": 3659042, + "thread": 23 + } + }, + { + "amount": "465.087705083", + "slot": { + "period": 3792713, + "thread": 26 + } + } + ], + "AU1kvdPbbWo6rD7sTieHgZPS38LBhNgVRkhCeeW7pyRNJ45k6LmE": [ + { + "amount": "416.639829778", + "slot": { + "period": 45136, + "thread": 15 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 274112, + "thread": 10 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 483789, + "thread": 17 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 577727, + "thread": 11 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 751711, + "thread": 23 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 972759, + "thread": 15 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1015316, + "thread": 21 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1221214, + "thread": 23 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1456268, + "thread": 7 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1537071, + "thread": 9 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1661276, + "thread": 1 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 1925084, + "thread": 30 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2103677, + "thread": 3 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2184557, + "thread": 31 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2371924, + "thread": 23 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2550790, + "thread": 10 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2767018, + "thread": 29 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2915407, + "thread": 30 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 2967844, + "thread": 21 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 3245466, + "thread": 5 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 3312207, + "thread": 17 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 3580749, + "thread": 10 + } + }, + { + "amount": "416.639829778", + "slot": { + "period": 3668420, + "thread": 28 + } + }, + { + "amount": "416.639829772", + "slot": { + "period": 3904026, + "thread": 22 + } + } + ], + "AU1kvgrMm92AZXiFynD1MMLDAKAP85ZxQUhwh2tSPjDraZzzk38y": [ + { + "amount": "475.994734472", + "slot": { + "period": 103849, + "thread": 0 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 244000, + "thread": 12 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 394070, + "thread": 1 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 560811, + "thread": 6 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 793233, + "thread": 25 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 915603, + "thread": 3 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1026317, + "thread": 10 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1197228, + "thread": 2 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1406882, + "thread": 7 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1622304, + "thread": 9 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1802911, + "thread": 5 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 1948351, + "thread": 0 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2047411, + "thread": 5 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2206308, + "thread": 10 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2382087, + "thread": 8 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2464914, + "thread": 20 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2749833, + "thread": 31 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2924988, + "thread": 12 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 2985807, + "thread": 5 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 3209153, + "thread": 16 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 3350986, + "thread": 21 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 3569945, + "thread": 5 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 3694131, + "thread": 8 + } + }, + { + "amount": "475.994734472", + "slot": { + "period": 3830243, + "thread": 21 + } + } + ], + "AU1kxBZWFqNAjeQ92awntYLVkemE6orCuVRBaUoxRyxaQNpqRpi3": [ + { + "amount": "383.158565988", + "slot": { + "period": 161339, + "thread": 4 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 258307, + "thread": 12 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 400271, + "thread": 31 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 492245, + "thread": 6 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 752431, + "thread": 1 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 879990, + "thread": 10 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1113134, + "thread": 31 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1230071, + "thread": 14 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1362761, + "thread": 20 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1488666, + "thread": 14 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1780874, + "thread": 13 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 1937285, + "thread": 25 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2116542, + "thread": 15 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2188892, + "thread": 22 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2428187, + "thread": 21 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2508561, + "thread": 8 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2731237, + "thread": 15 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2795554, + "thread": 24 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 2984157, + "thread": 28 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 3131509, + "thread": 15 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 3378537, + "thread": 9 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 3613862, + "thread": 9 + } + }, + { + "amount": "383.158565988", + "slot": { + "period": 3668854, + "thread": 20 + } + }, + { + "amount": "383.158565981", + "slot": { + "period": 3829615, + "thread": 18 + } + } + ], + "AU1kxbdtFqnZEfBMT6jPdKdZGZ4xXjeGcjc2AEuZXgd6p7qYoVuH": [ + { + "amount": "164.644658706", + "slot": { + "period": 150729, + "thread": 5 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 301204, + "thread": 8 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 440368, + "thread": 1 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 614782, + "thread": 22 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 681968, + "thread": 0 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 933917, + "thread": 14 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 992051, + "thread": 1 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 1162523, + "thread": 26 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 1370420, + "thread": 25 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 1600446, + "thread": 17 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 1694363, + "thread": 23 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 1880016, + "thread": 4 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2128094, + "thread": 15 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2286127, + "thread": 22 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2362687, + "thread": 6 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2477267, + "thread": 19 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2693550, + "thread": 14 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 2794949, + "thread": 26 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 3077837, + "thread": 0 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 3186367, + "thread": 21 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 3401228, + "thread": 17 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 3473148, + "thread": 12 + } + }, + { + "amount": "164.644658706", + "slot": { + "period": 3757766, + "thread": 14 + } + }, + { + "amount": "164.644658715", + "slot": { + "period": 3835010, + "thread": 1 + } + } + ], + "AU1kxdLbJz3qCWqXLpdt7H6jP8JoVagcKyTCKbaNyoiF6px55qAa": [ + { + "amount": "108.453058930", + "slot": { + "period": 73905, + "thread": 28 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 251861, + "thread": 11 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 377435, + "thread": 27 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 571293, + "thread": 2 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 706087, + "thread": 26 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 938517, + "thread": 5 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1021200, + "thread": 29 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1239772, + "thread": 22 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1466914, + "thread": 9 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1484337, + "thread": 16 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1781692, + "thread": 22 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1845236, + "thread": 4 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 1979422, + "thread": 27 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 2284218, + "thread": 10 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 2416504, + "thread": 18 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 2525383, + "thread": 21 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 2699650, + "thread": 12 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 2929372, + "thread": 7 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 3035703, + "thread": 9 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 3238526, + "thread": 10 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 3327322, + "thread": 28 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 3551803, + "thread": 18 + } + }, + { + "amount": "108.453058930", + "slot": { + "period": 3773573, + "thread": 2 + } + }, + { + "amount": "108.453058929", + "slot": { + "period": 3870047, + "thread": 13 + } + } + ], + "AU1ky7TomqTsFBgir5nTsMYTLEWzwZgU7JEAWYwQSnLBDVXNQ8ky": [ + { + "amount": "626.514802437", + "slot": { + "period": 47352, + "thread": 29 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 255553, + "thread": 29 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 335387, + "thread": 9 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 600477, + "thread": 15 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 689386, + "thread": 2 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 823429, + "thread": 20 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1014148, + "thread": 4 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1257306, + "thread": 31 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1411580, + "thread": 10 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1524988, + "thread": 19 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1789868, + "thread": 28 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 1903332, + "thread": 9 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2074081, + "thread": 29 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2291043, + "thread": 26 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2424987, + "thread": 18 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2589354, + "thread": 12 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2790125, + "thread": 28 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 2896278, + "thread": 2 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 3074063, + "thread": 23 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 3246901, + "thread": 14 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 3429214, + "thread": 27 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 3508696, + "thread": 13 + } + }, + { + "amount": "626.514802437", + "slot": { + "period": 3705568, + "thread": 19 + } + }, + { + "amount": "626.514802444", + "slot": { + "period": 3890197, + "thread": 21 + } + } + ], + "AU1ky8mZuzPhFuiR3wFpCQkgvqFNWuJeQ3B1y5dpzZQS517ayRN3": [ + { + "amount": "156.101911065", + "slot": { + "period": 119766, + "thread": 22 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 280879, + "thread": 13 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 395419, + "thread": 7 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 492205, + "thread": 3 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 708900, + "thread": 2 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 877999, + "thread": 5 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1147327, + "thread": 23 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1274312, + "thread": 24 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1399181, + "thread": 20 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1517044, + "thread": 12 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1732995, + "thread": 30 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 1840974, + "thread": 20 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2075854, + "thread": 30 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2178987, + "thread": 0 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2389575, + "thread": 6 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2551646, + "thread": 0 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2724401, + "thread": 11 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 2801909, + "thread": 12 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 3006340, + "thread": 4 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 3220811, + "thread": 17 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 3384301, + "thread": 10 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 3586222, + "thread": 20 + } + }, + { + "amount": "156.101911065", + "slot": { + "period": 3657877, + "thread": 12 + } + }, + { + "amount": "156.101911060", + "slot": { + "period": 3836655, + "thread": 23 + } + } + ], + "AU1kyEUw4oeuo6PEAffMQx1AMdPywvpTerVcn7FYRVgfZ39Ju4Cm": [ + { + "amount": "86.618656036", + "slot": { + "period": 124759, + "thread": 19 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 301035, + "thread": 21 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 356598, + "thread": 21 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 632629, + "thread": 28 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 788710, + "thread": 8 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 831134, + "thread": 11 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1059669, + "thread": 0 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1164485, + "thread": 22 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1474048, + "thread": 5 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1557096, + "thread": 12 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1677570, + "thread": 11 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 1828671, + "thread": 18 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2117771, + "thread": 5 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2161015, + "thread": 25 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2445823, + "thread": 22 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2541687, + "thread": 4 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2776828, + "thread": 6 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 2846163, + "thread": 0 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 3043085, + "thread": 7 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 3282709, + "thread": 24 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 3387216, + "thread": 10 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 3573967, + "thread": 14 + } + }, + { + "amount": "86.618656036", + "slot": { + "period": 3679852, + "thread": 8 + } + }, + { + "amount": "86.618656029", + "slot": { + "period": 3827098, + "thread": 30 + } + } + ], + "AU1kyEbsskckikX8zP1PM5zjMkkRWnuFuKQWt5dM9HDRegrRN2va": [ + { + "amount": "54.918451634", + "slot": { + "period": 120699, + "thread": 16 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 214035, + "thread": 2 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 474165, + "thread": 22 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 501941, + "thread": 19 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 660693, + "thread": 13 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 842290, + "thread": 20 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1067426, + "thread": 23 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1189343, + "thread": 22 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1394050, + "thread": 0 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1588299, + "thread": 7 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1695838, + "thread": 21 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 1948829, + "thread": 1 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2126915, + "thread": 19 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2215360, + "thread": 3 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2334508, + "thread": 9 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2575245, + "thread": 1 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2659209, + "thread": 1 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 2896157, + "thread": 28 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 3010183, + "thread": 29 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 3220595, + "thread": 19 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 3415709, + "thread": 9 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 3565325, + "thread": 27 + } + }, + { + "amount": "54.918451634", + "slot": { + "period": 3621890, + "thread": 30 + } + }, + { + "amount": "54.918451624", + "slot": { + "period": 3855405, + "thread": 2 + } + } + ], + "AU1kzhBoG6bVkZzd9YS9JWoznJGcksbMyzwoyeXD9SmCVffbcfzy": [ + { + "amount": "169.979653798", + "slot": { + "period": 57470, + "thread": 6 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 182433, + "thread": 24 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 422443, + "thread": 4 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 553778, + "thread": 28 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 779746, + "thread": 22 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 896726, + "thread": 0 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1065295, + "thread": 10 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1174475, + "thread": 20 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1324729, + "thread": 18 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1612611, + "thread": 5 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1795592, + "thread": 16 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 1953328, + "thread": 9 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2060082, + "thread": 12 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2158796, + "thread": 31 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2357969, + "thread": 27 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2565643, + "thread": 23 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2763510, + "thread": 26 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 2852927, + "thread": 5 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 3114859, + "thread": 24 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 3220447, + "thread": 4 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 3386625, + "thread": 28 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 3554812, + "thread": 9 + } + }, + { + "amount": "169.979653798", + "slot": { + "period": 3700488, + "thread": 19 + } + }, + { + "amount": "169.979653808", + "slot": { + "period": 3856953, + "thread": 21 + } + } + ], + "AU1m1ChZExg7JZx4ejkAJHMy27Zj8wZw11KkAHLrFv2wDNLvE5pV": [ + { + "amount": "70.484156609", + "slot": { + "period": 116109, + "thread": 6 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 235801, + "thread": 6 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 428505, + "thread": 21 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 535635, + "thread": 8 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 790586, + "thread": 25 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 854875, + "thread": 27 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1147866, + "thread": 31 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1197552, + "thread": 5 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1363167, + "thread": 5 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1511434, + "thread": 31 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1757400, + "thread": 23 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 1827241, + "thread": 14 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2054794, + "thread": 5 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2150220, + "thread": 6 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2340610, + "thread": 2 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2504711, + "thread": 9 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2743186, + "thread": 1 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 2814126, + "thread": 31 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 3075122, + "thread": 3 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 3172690, + "thread": 3 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 3322767, + "thread": 26 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 3599216, + "thread": 30 + } + }, + { + "amount": "70.484156609", + "slot": { + "period": 3732595, + "thread": 23 + } + }, + { + "amount": "70.484156616", + "slot": { + "period": 3908636, + "thread": 18 + } + } + ], + "AU1m1eypzykqLjeNDJDtTSZd41TLLzypUZaXbMHdU6rsvLzWG9jC": [ + { + "amount": "186.873255122", + "slot": { + "period": 154977, + "thread": 3 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 203204, + "thread": 23 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 470602, + "thread": 5 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 515814, + "thread": 21 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 711563, + "thread": 1 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 934790, + "thread": 10 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 991444, + "thread": 14 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 1185585, + "thread": 4 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 1406833, + "thread": 12 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 1570898, + "thread": 5 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 1770527, + "thread": 14 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 1900022, + "thread": 2 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2018005, + "thread": 11 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2280143, + "thread": 13 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2415923, + "thread": 11 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2567393, + "thread": 9 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2740201, + "thread": 7 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2862326, + "thread": 0 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 2975661, + "thread": 13 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 3147682, + "thread": 19 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 3294207, + "thread": 7 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 3584759, + "thread": 2 + } + }, + { + "amount": "186.873255122", + "slot": { + "period": 3762374, + "thread": 10 + } + }, + { + "amount": "186.873255132", + "slot": { + "period": 3799732, + "thread": 6 + } + } + ], + "AU1m1vu3RbixwzfXYdowWHF61PfpnjiDDu3V6kJCADLp53hNfvic": [ + { + "amount": "392.233756132", + "slot": { + "period": 122682, + "thread": 9 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 178829, + "thread": 11 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 354564, + "thread": 11 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 569366, + "thread": 27 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 656393, + "thread": 15 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 835868, + "thread": 5 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1066976, + "thread": 12 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1207920, + "thread": 0 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1426000, + "thread": 31 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1597503, + "thread": 12 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1692231, + "thread": 12 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 1898694, + "thread": 13 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2023816, + "thread": 19 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2149134, + "thread": 22 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2441609, + "thread": 11 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2604509, + "thread": 23 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2646912, + "thread": 12 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 2929609, + "thread": 21 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 3030861, + "thread": 13 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 3191280, + "thread": 30 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 3336947, + "thread": 16 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 3494265, + "thread": 17 + } + }, + { + "amount": "392.233756132", + "slot": { + "period": 3654156, + "thread": 5 + } + }, + { + "amount": "392.233756121", + "slot": { + "period": 3858022, + "thread": 9 + } + } + ], + "AU1m2PRY1mZc9cbXUFJyd7wLTx3UK8EatPhoPREMZ6EDz5G53xuY": [ + { + "amount": "227.398790956", + "slot": { + "period": 40999, + "thread": 3 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 307376, + "thread": 19 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 331354, + "thread": 20 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 538807, + "thread": 9 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 785046, + "thread": 21 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 858743, + "thread": 18 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1015310, + "thread": 26 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1208567, + "thread": 3 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1437349, + "thread": 25 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1597136, + "thread": 17 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1794958, + "thread": 1 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 1841744, + "thread": 16 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2054929, + "thread": 20 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2234009, + "thread": 3 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2456919, + "thread": 27 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2505462, + "thread": 17 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2736721, + "thread": 3 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 2824001, + "thread": 12 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 3050223, + "thread": 13 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 3253366, + "thread": 21 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 3338650, + "thread": 2 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 3472505, + "thread": 31 + } + }, + { + "amount": "227.398790956", + "slot": { + "period": 3712368, + "thread": 16 + } + }, + { + "amount": "227.398790953", + "slot": { + "period": 3938292, + "thread": 8 + } + } + ], + "AU1m2yVuo1wdtVc3F7aBmrbiTk9fbiPDTdrJ6kfcRrK1oukyTE7x": [ + { + "amount": "213.412273289", + "slot": { + "period": 118611, + "thread": 17 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 287098, + "thread": 17 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 463604, + "thread": 2 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 538339, + "thread": 8 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 771257, + "thread": 3 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 831687, + "thread": 17 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1091384, + "thread": 10 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1224247, + "thread": 26 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1378299, + "thread": 30 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1533640, + "thread": 20 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1647415, + "thread": 4 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 1907226, + "thread": 22 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2050713, + "thread": 28 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2152935, + "thread": 17 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2386406, + "thread": 9 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2585504, + "thread": 16 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2625608, + "thread": 10 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2934068, + "thread": 0 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 2992915, + "thread": 26 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 3223772, + "thread": 9 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 3416942, + "thread": 9 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 3597696, + "thread": 0 + } + }, + { + "amount": "213.412273289", + "slot": { + "period": 3689984, + "thread": 23 + } + }, + { + "amount": "213.412273296", + "slot": { + "period": 3829526, + "thread": 24 + } + } + ], + "AU1m3MiVKcHuhXLpewMqUqgPgAakbukHPVaJg3VJsriub9M2LK2g": [ + { + "amount": "133.424964779", + "slot": { + "period": 99140, + "thread": 6 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 226498, + "thread": 7 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 330244, + "thread": 30 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 628679, + "thread": 7 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 653779, + "thread": 7 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 832855, + "thread": 18 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1052732, + "thread": 8 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1270087, + "thread": 4 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1353795, + "thread": 19 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1558040, + "thread": 25 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1731223, + "thread": 14 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 1815627, + "thread": 5 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2005620, + "thread": 5 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2187694, + "thread": 5 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2304814, + "thread": 17 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2576968, + "thread": 8 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2758926, + "thread": 11 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 2793204, + "thread": 7 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 3117608, + "thread": 28 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 3169465, + "thread": 8 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 3320039, + "thread": 2 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 3606540, + "thread": 30 + } + }, + { + "amount": "133.424964779", + "slot": { + "period": 3724923, + "thread": 29 + } + }, + { + "amount": "133.424964777", + "slot": { + "period": 3918329, + "thread": 26 + } + } + ], + "AU1m3YmmDeFfhGs4e9PM9u92tBnWNLg2TcTPa3T2VM9jDmBsJWJj": [ + { + "amount": "69.350119683", + "slot": { + "period": 111765, + "thread": 28 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 222962, + "thread": 7 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 454961, + "thread": 9 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 593117, + "thread": 20 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 655721, + "thread": 17 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 850171, + "thread": 25 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1112613, + "thread": 0 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1276034, + "thread": 31 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1343024, + "thread": 6 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1492651, + "thread": 3 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1755796, + "thread": 20 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 1905215, + "thread": 22 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2108703, + "thread": 28 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2174005, + "thread": 8 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2385138, + "thread": 16 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2472185, + "thread": 8 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2637369, + "thread": 20 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2925457, + "thread": 30 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 2982059, + "thread": 11 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 3140144, + "thread": 27 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 3363354, + "thread": 17 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 3497709, + "thread": 22 + } + }, + { + "amount": "69.350119683", + "slot": { + "period": 3733255, + "thread": 27 + } + }, + { + "amount": "69.350119674", + "slot": { + "period": 3813331, + "thread": 0 + } + } + ], + "AU1m51cfNJGy8P5iSp8UR44AofPZh6T1vjkrEeFUWjKQbkKaR8G2": [ + { + "amount": "146.215233805", + "slot": { + "period": 155900, + "thread": 31 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 249647, + "thread": 10 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 413686, + "thread": 20 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 525923, + "thread": 6 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 710757, + "thread": 5 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 955770, + "thread": 14 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1107546, + "thread": 15 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1188435, + "thread": 4 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1372372, + "thread": 0 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1572431, + "thread": 9 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1703889, + "thread": 3 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 1929765, + "thread": 29 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2100814, + "thread": 23 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2240613, + "thread": 2 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2365804, + "thread": 11 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2549859, + "thread": 28 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2700619, + "thread": 8 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 2835053, + "thread": 3 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 3107459, + "thread": 31 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 3248574, + "thread": 13 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 3399684, + "thread": 3 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 3595978, + "thread": 2 + } + }, + { + "amount": "146.215233805", + "slot": { + "period": 3748823, + "thread": 0 + } + }, + { + "amount": "146.215233796", + "slot": { + "period": 3906119, + "thread": 10 + } + } + ], + "AU1m5TT2mxqez3vvrvp7K1AnHQSkY7i2gDaax4Uw5NRirJ4gdb5A": [ + { + "amount": "74.349392750", + "slot": { + "period": 157426, + "thread": 15 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 233751, + "thread": 13 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 420437, + "thread": 28 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 555204, + "thread": 1 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 703614, + "thread": 22 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 862227, + "thread": 4 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1087282, + "thread": 14 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1269429, + "thread": 0 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1378503, + "thread": 16 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1593521, + "thread": 3 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1756362, + "thread": 19 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 1809042, + "thread": 27 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2120866, + "thread": 10 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2214529, + "thread": 21 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2408072, + "thread": 25 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2595608, + "thread": 1 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2695834, + "thread": 16 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 2896727, + "thread": 10 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 3054938, + "thread": 17 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 3242168, + "thread": 2 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 3331592, + "thread": 18 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 3565062, + "thread": 17 + } + }, + { + "amount": "74.349392750", + "slot": { + "period": 3645500, + "thread": 17 + } + }, + { + "amount": "74.349392740", + "slot": { + "period": 3826958, + "thread": 19 + } + } + ], + "AU1m5hX135fsiR39jE9gPkfhpEKJNnU6UAGERjdkJ2an34b8HyBH": [ + { + "amount": "177.263978909", + "slot": { + "period": 89393, + "thread": 23 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 189895, + "thread": 2 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 438539, + "thread": 27 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 565669, + "thread": 27 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 761564, + "thread": 4 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 910647, + "thread": 8 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1121862, + "thread": 17 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1211425, + "thread": 21 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1423047, + "thread": 29 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1578746, + "thread": 4 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1725119, + "thread": 9 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 1829960, + "thread": 13 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2086366, + "thread": 31 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2213447, + "thread": 15 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2334057, + "thread": 7 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2542108, + "thread": 13 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2734448, + "thread": 25 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 2897923, + "thread": 20 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 3106364, + "thread": 26 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 3149692, + "thread": 4 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 3292759, + "thread": 19 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 3532884, + "thread": 15 + } + }, + { + "amount": "177.263978909", + "slot": { + "period": 3688193, + "thread": 11 + } + }, + { + "amount": "177.263978908", + "slot": { + "period": 3922915, + "thread": 26 + } + } + ], + "AU1m5mddeCVgaC57HJ5vXtoVCvWsxCPh1aXUtQMwiZkPcvm8UAUr": [ + { + "amount": "65.357873866", + "slot": { + "period": 69754, + "thread": 8 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 195927, + "thread": 17 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 342116, + "thread": 21 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 588966, + "thread": 10 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 783589, + "thread": 8 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 908117, + "thread": 7 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1038740, + "thread": 1 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1247379, + "thread": 1 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1437286, + "thread": 19 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1490338, + "thread": 30 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1706831, + "thread": 3 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 1814610, + "thread": 4 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2102226, + "thread": 22 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2249961, + "thread": 0 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2335575, + "thread": 5 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2559098, + "thread": 2 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2679110, + "thread": 31 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 2822544, + "thread": 10 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 3107822, + "thread": 18 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 3153277, + "thread": 26 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 3417158, + "thread": 19 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 3487822, + "thread": 9 + } + }, + { + "amount": "65.357873866", + "slot": { + "period": 3723973, + "thread": 14 + } + }, + { + "amount": "65.357873878", + "slot": { + "period": 3813548, + "thread": 20 + } + } + ], + "AU1m6T3Eo1Aj6LGxvVobNkLjnSEGCKMawmEsk4ki9xhZkyKYFbRw": [ + { + "amount": "519.100575229", + "slot": { + "period": 139902, + "thread": 10 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 175158, + "thread": 21 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 462707, + "thread": 3 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 583244, + "thread": 22 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 766963, + "thread": 31 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 968709, + "thread": 10 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1077748, + "thread": 2 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1202859, + "thread": 16 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1347105, + "thread": 8 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1576038, + "thread": 6 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1800694, + "thread": 21 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 1874679, + "thread": 26 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2068915, + "thread": 13 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2259138, + "thread": 15 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2439427, + "thread": 1 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2575182, + "thread": 9 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2743066, + "thread": 26 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2820086, + "thread": 2 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 2985939, + "thread": 11 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 3123412, + "thread": 4 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 3387932, + "thread": 17 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 3457308, + "thread": 15 + } + }, + { + "amount": "519.100575229", + "slot": { + "period": 3693419, + "thread": 6 + } + }, + { + "amount": "519.100575228", + "slot": { + "period": 3928633, + "thread": 5 + } + } + ], + "AU1m6u3hhfetvtU7oXCir59erCcyU6d5qqaqNorsz6Am6vegUS95": [ + { + "amount": "201.117732234", + "slot": { + "period": 134594, + "thread": 17 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 220120, + "thread": 3 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 406709, + "thread": 6 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 650983, + "thread": 29 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 726534, + "thread": 30 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 926144, + "thread": 13 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1110228, + "thread": 26 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1247063, + "thread": 20 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1374370, + "thread": 20 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1501293, + "thread": 17 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1754126, + "thread": 17 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1826569, + "thread": 9 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 1989534, + "thread": 2 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 2199635, + "thread": 20 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 2405216, + "thread": 19 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 2472145, + "thread": 27 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 2737871, + "thread": 4 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 2830211, + "thread": 23 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 3038401, + "thread": 7 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 3210973, + "thread": 24 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 3434009, + "thread": 12 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 3600225, + "thread": 25 + } + }, + { + "amount": "201.117732234", + "slot": { + "period": 3680160, + "thread": 8 + } + }, + { + "amount": "201.117732227", + "slot": { + "period": 3886379, + "thread": 19 + } + } + ], + "AU1m88oMVR8Er2ztWNk255nnoEaTo4X18X8x5NfbBqHADmF5Af9d": [ + { + "amount": "195.890884905", + "slot": { + "period": 44585, + "thread": 2 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 272389, + "thread": 21 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 436637, + "thread": 30 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 570618, + "thread": 8 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 820176, + "thread": 17 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 956017, + "thread": 18 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1026092, + "thread": 29 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1201783, + "thread": 24 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1460916, + "thread": 30 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1530972, + "thread": 15 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1748557, + "thread": 17 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 1930811, + "thread": 25 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2141735, + "thread": 1 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2166341, + "thread": 22 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2349161, + "thread": 22 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2484685, + "thread": 9 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2751396, + "thread": 31 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 2815403, + "thread": 11 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 3016772, + "thread": 10 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 3147560, + "thread": 8 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 3437940, + "thread": 9 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 3487297, + "thread": 13 + } + }, + { + "amount": "195.890884905", + "slot": { + "period": 3772983, + "thread": 30 + } + }, + { + "amount": "195.890884913", + "slot": { + "period": 3847678, + "thread": 25 + } + } + ], + "AU1m8PjkkBkyiZMHefVsSR3MEvDT4RGoVJDUmuRTseVcpa6JeM74": [ + { + "amount": "138.996923942", + "slot": { + "period": 58133, + "thread": 2 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 232158, + "thread": 24 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 473342, + "thread": 2 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 585170, + "thread": 16 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 778691, + "thread": 2 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 934761, + "thread": 31 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1106716, + "thread": 7 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1151073, + "thread": 13 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1451172, + "thread": 28 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1627245, + "thread": 12 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1803877, + "thread": 7 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 1941495, + "thread": 17 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2044382, + "thread": 0 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2203183, + "thread": 14 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2331320, + "thread": 18 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2485101, + "thread": 12 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2687822, + "thread": 1 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 2879812, + "thread": 7 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 3068713, + "thread": 18 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 3275627, + "thread": 16 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 3356269, + "thread": 16 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 3596179, + "thread": 22 + } + }, + { + "amount": "138.996923942", + "slot": { + "period": 3632408, + "thread": 20 + } + }, + { + "amount": "138.996923935", + "slot": { + "period": 3918277, + "thread": 2 + } + } + ], + "AU1m92TMjwFZEWFM5nAV9xTwzqkoRsubq3xvRSJFVT77Lw7Mr7kb": [ + { + "amount": "113.898204269", + "slot": { + "period": 59685, + "thread": 30 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 241223, + "thread": 26 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 338343, + "thread": 21 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 529851, + "thread": 9 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 683437, + "thread": 27 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 872211, + "thread": 3 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1045147, + "thread": 22 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1238496, + "thread": 8 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1443304, + "thread": 15 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1500135, + "thread": 24 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1806135, + "thread": 15 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 1837682, + "thread": 25 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2033694, + "thread": 23 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2270184, + "thread": 14 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2377950, + "thread": 22 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2463238, + "thread": 27 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2736121, + "thread": 13 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2794975, + "thread": 12 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 2979060, + "thread": 20 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 3129193, + "thread": 1 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 3340953, + "thread": 27 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 3613248, + "thread": 22 + } + }, + { + "amount": "113.898204269", + "slot": { + "period": 3653131, + "thread": 20 + } + }, + { + "amount": "113.898204276", + "slot": { + "period": 3928623, + "thread": 16 + } + } + ], + "AU1mAegXWiotGkcV2msRo7pPwmQt4CnQjC5JrCnjxSxHdW4aumN5": [ + { + "amount": "247.176885478", + "slot": { + "period": 43987, + "thread": 29 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 238886, + "thread": 30 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 406263, + "thread": 1 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 609371, + "thread": 29 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 721043, + "thread": 1 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 823630, + "thread": 28 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1014329, + "thread": 21 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1280363, + "thread": 29 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1464815, + "thread": 28 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1501012, + "thread": 26 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1795826, + "thread": 8 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1944455, + "thread": 30 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 1998848, + "thread": 12 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2178530, + "thread": 16 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2410349, + "thread": 0 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2531731, + "thread": 24 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2625629, + "thread": 16 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2839549, + "thread": 17 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 2993256, + "thread": 30 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 3194312, + "thread": 22 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 3366151, + "thread": 8 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 3576010, + "thread": 6 + } + }, + { + "amount": "247.176885478", + "slot": { + "period": 3777076, + "thread": 25 + } + }, + { + "amount": "247.176885467", + "slot": { + "period": 3816538, + "thread": 7 + } + } + ], + "AU1mAyFdVaEntFHoYTnaGdGdksVPA6Qyx283JuB6qZjdks5ZdDCh": [ + { + "amount": "57.372612331", + "slot": { + "period": 98216, + "thread": 29 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 199436, + "thread": 15 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 377876, + "thread": 20 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 508925, + "thread": 5 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 702777, + "thread": 27 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 917206, + "thread": 8 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1014505, + "thread": 18 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1312465, + "thread": 4 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1397466, + "thread": 18 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1508762, + "thread": 5 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1701101, + "thread": 29 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 1940163, + "thread": 14 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2107686, + "thread": 8 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2224915, + "thread": 17 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2444308, + "thread": 14 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2541296, + "thread": 14 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2633593, + "thread": 28 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 2887277, + "thread": 19 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 3010552, + "thread": 18 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 3158229, + "thread": 6 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 3332852, + "thread": 21 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 3528022, + "thread": 16 + } + }, + { + "amount": "57.372612331", + "slot": { + "period": 3751956, + "thread": 12 + } + }, + { + "amount": "57.372612330", + "slot": { + "period": 3913149, + "thread": 1 + } + } + ], + "AU1mBi5CgmAoxigAQ5ATSp5dqG8kpDqgfAkERFYdWfQ6NWy95G7E": [ + { + "amount": "353.915717864", + "slot": { + "period": 28396, + "thread": 5 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 255837, + "thread": 0 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 470246, + "thread": 27 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 492565, + "thread": 19 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 667139, + "thread": 0 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 980141, + "thread": 21 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1079371, + "thread": 27 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1291608, + "thread": 1 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1440051, + "thread": 23 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1615234, + "thread": 23 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1656331, + "thread": 7 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 1892991, + "thread": 28 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2121115, + "thread": 1 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2189237, + "thread": 29 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2325802, + "thread": 8 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2615657, + "thread": 24 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2785009, + "thread": 8 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 2835657, + "thread": 21 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 3070982, + "thread": 4 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 3272075, + "thread": 19 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 3300854, + "thread": 13 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 3475848, + "thread": 1 + } + }, + { + "amount": "353.915717864", + "slot": { + "period": 3750573, + "thread": 25 + } + }, + { + "amount": "353.915717855", + "slot": { + "period": 3923182, + "thread": 12 + } + } + ], + "AU1mDaGdUUZAPHqNiuphofmNz8aXBCehMec1DDFsqNeDeywXQFwo": [ + { + "amount": "139.067504997", + "slot": { + "period": 149071, + "thread": 30 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 215727, + "thread": 29 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 397419, + "thread": 3 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 610240, + "thread": 7 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 720423, + "thread": 5 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 836446, + "thread": 24 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1114801, + "thread": 8 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1263208, + "thread": 31 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1420026, + "thread": 2 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1613133, + "thread": 1 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1740588, + "thread": 18 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 1867873, + "thread": 6 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2072514, + "thread": 10 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2176908, + "thread": 22 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2335837, + "thread": 23 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2479365, + "thread": 20 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2770807, + "thread": 7 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 2887868, + "thread": 17 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 3003128, + "thread": 30 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 3274724, + "thread": 29 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 3289765, + "thread": 5 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 3592205, + "thread": 12 + } + }, + { + "amount": "139.067504997", + "slot": { + "period": 3753251, + "thread": 25 + } + }, + { + "amount": "139.067504990", + "slot": { + "period": 3882322, + "thread": 5 + } + } + ], + "AU1mDc1rGSFRciwcq7cCy6x1JrHPqH4UCBdpWozTCn92NTwsdw44": [ + { + "amount": "90.589283686", + "slot": { + "period": 43426, + "thread": 29 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 267133, + "thread": 29 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 463484, + "thread": 14 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 515029, + "thread": 22 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 808576, + "thread": 23 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 898127, + "thread": 19 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1148248, + "thread": 19 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1239835, + "thread": 12 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1368914, + "thread": 20 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1632434, + "thread": 6 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1725569, + "thread": 26 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1907933, + "thread": 11 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 1976525, + "thread": 5 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 2282158, + "thread": 25 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 2455276, + "thread": 31 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 2549623, + "thread": 20 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 2778767, + "thread": 20 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 2864500, + "thread": 26 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 3052400, + "thread": 31 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 3132471, + "thread": 27 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 3291678, + "thread": 31 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 3514293, + "thread": 22 + } + }, + { + "amount": "90.589283686", + "slot": { + "period": 3697274, + "thread": 21 + } + }, + { + "amount": "90.589283696", + "slot": { + "period": 3922862, + "thread": 23 + } + } + ], + "AU1mDjrvS2MGVXvGxzrqZj9mUfCaTsTszC9xRXNWxTpW85pCZ8Bk": [ + { + "amount": "341.641875800", + "slot": { + "period": 25260, + "thread": 13 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 240674, + "thread": 11 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 421955, + "thread": 3 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 520235, + "thread": 8 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 701918, + "thread": 6 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 948516, + "thread": 23 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1114793, + "thread": 24 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1253397, + "thread": 15 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1414506, + "thread": 8 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1543001, + "thread": 12 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1756806, + "thread": 27 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 1907836, + "thread": 6 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2087867, + "thread": 1 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2289077, + "thread": 31 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2320187, + "thread": 5 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2487508, + "thread": 20 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2724696, + "thread": 21 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 2947815, + "thread": 12 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 3039771, + "thread": 18 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 3273897, + "thread": 23 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 3293528, + "thread": 9 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 3551068, + "thread": 10 + } + }, + { + "amount": "341.641875800", + "slot": { + "period": 3668467, + "thread": 27 + } + }, + { + "amount": "341.641875804", + "slot": { + "period": 3838064, + "thread": 22 + } + } + ], + "AU1mFwbj5Fjgb1STfpUrS6ce3NSu8vVQLUBWFrWhUHus2Y1Qv6Ck": [ + { + "amount": "251.916033134", + "slot": { + "period": 107350, + "thread": 0 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 236485, + "thread": 31 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 454728, + "thread": 10 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 575661, + "thread": 7 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 755177, + "thread": 4 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 832861, + "thread": 21 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1060395, + "thread": 4 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1264191, + "thread": 10 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1474303, + "thread": 29 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1545114, + "thread": 13 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1768950, + "thread": 27 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 1951593, + "thread": 0 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2096322, + "thread": 19 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2268745, + "thread": 24 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2314900, + "thread": 1 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2590112, + "thread": 8 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2761524, + "thread": 18 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 2913693, + "thread": 1 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 3098182, + "thread": 7 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 3229085, + "thread": 6 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 3303681, + "thread": 0 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 3550362, + "thread": 13 + } + }, + { + "amount": "251.916033134", + "slot": { + "period": 3744022, + "thread": 30 + } + }, + { + "amount": "251.916033126", + "slot": { + "period": 3793901, + "thread": 4 + } + } + ], + "AU1mG3ZqGLaAh48sEUpJEctosSk5QJ6CBLTdxiwNvXee8hNikFEx": [ + { + "amount": "410.354481175", + "slot": { + "period": 67146, + "thread": 10 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 212391, + "thread": 28 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 397658, + "thread": 20 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 519834, + "thread": 18 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 726666, + "thread": 26 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 888676, + "thread": 12 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1114867, + "thread": 16 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1215515, + "thread": 9 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1459738, + "thread": 18 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1557632, + "thread": 3 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1741074, + "thread": 24 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 1955767, + "thread": 20 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2029754, + "thread": 21 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2259951, + "thread": 9 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2371149, + "thread": 25 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2614028, + "thread": 8 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2653747, + "thread": 26 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 2816129, + "thread": 21 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 3010520, + "thread": 22 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 3127207, + "thread": 23 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 3401458, + "thread": 12 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 3544576, + "thread": 9 + } + }, + { + "amount": "410.354481175", + "slot": { + "period": 3752060, + "thread": 25 + } + }, + { + "amount": "410.354481174", + "slot": { + "period": 3826179, + "thread": 24 + } + } + ], + "AU1mGS9rQTddSrwdXsfmqU41CGfkodk6oJEbnYoDAvu92rReVFuK": [ + { + "amount": "186.248663009", + "slot": { + "period": 22506, + "thread": 2 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 243181, + "thread": 10 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 377904, + "thread": 22 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 590798, + "thread": 23 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 661288, + "thread": 14 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 951703, + "thread": 9 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1006703, + "thread": 15 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1254730, + "thread": 25 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1467038, + "thread": 27 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1571471, + "thread": 25 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1699697, + "thread": 17 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 1931787, + "thread": 12 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2137983, + "thread": 28 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2197892, + "thread": 21 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2453189, + "thread": 5 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2599037, + "thread": 26 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2692451, + "thread": 15 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 2907769, + "thread": 24 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3029886, + "thread": 26 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3127952, + "thread": 11 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3384294, + "thread": 2 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3465449, + "thread": 10 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3760911, + "thread": 17 + } + }, + { + "amount": "186.248663009", + "slot": { + "period": 3814212, + "thread": 27 + } + } + ], + "AU1mHYSh77gSKg2jDLM559f76AgBus31fdEaJwoXCT2X3bbUt9CN": [ + { + "amount": "160.359312928", + "slot": { + "period": 95358, + "thread": 5 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 276229, + "thread": 14 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 425475, + "thread": 12 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 504021, + "thread": 13 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 760399, + "thread": 4 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 962848, + "thread": 17 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1071162, + "thread": 12 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1283864, + "thread": 21 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1453296, + "thread": 8 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1597980, + "thread": 30 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1715165, + "thread": 28 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 1873814, + "thread": 16 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2022013, + "thread": 13 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2212085, + "thread": 25 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2445103, + "thread": 17 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2479083, + "thread": 8 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2671501, + "thread": 30 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 2795462, + "thread": 14 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3060347, + "thread": 21 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3225344, + "thread": 29 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3399785, + "thread": 5 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3606962, + "thread": 22 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3648848, + "thread": 31 + } + }, + { + "amount": "160.359312928", + "slot": { + "period": 3793657, + "thread": 9 + } + } + ], + "AU1mHcfhDQtPYzDVrkDK4DPxYMD7dQmHViYoF6eGffA2f15ijKUU": [ + { + "amount": "607.025455136", + "slot": { + "period": 61574, + "thread": 20 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 249223, + "thread": 10 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 341904, + "thread": 10 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 556774, + "thread": 13 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 693519, + "thread": 16 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 949484, + "thread": 23 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1097588, + "thread": 0 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1222555, + "thread": 10 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1362926, + "thread": 19 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1549748, + "thread": 23 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1793609, + "thread": 15 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 1908294, + "thread": 18 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2079508, + "thread": 6 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2270437, + "thread": 3 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2334198, + "thread": 27 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2528887, + "thread": 20 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2634604, + "thread": 9 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 2876910, + "thread": 18 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3112685, + "thread": 0 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3146951, + "thread": 15 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3389923, + "thread": 2 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3532261, + "thread": 19 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3773883, + "thread": 6 + } + }, + { + "amount": "607.025455136", + "slot": { + "period": 3940790, + "thread": 0 + } + } + ], + "AU1mHdw67awrrJCvhfHkrgYL6kAq5hDQjAkc33muBVPoXy81it2o": [ + { + "amount": "112.045240031", + "slot": { + "period": 78547, + "thread": 28 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 265405, + "thread": 0 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 359245, + "thread": 3 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 558175, + "thread": 22 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 750361, + "thread": 16 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 962172, + "thread": 1 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1038239, + "thread": 27 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1223127, + "thread": 5 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1425305, + "thread": 1 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1495702, + "thread": 15 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1757830, + "thread": 1 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 1916331, + "thread": 20 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2062032, + "thread": 25 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2284194, + "thread": 9 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2352178, + "thread": 8 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2586040, + "thread": 22 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2730009, + "thread": 2 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 2868466, + "thread": 13 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 3108926, + "thread": 25 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 3234503, + "thread": 23 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 3445085, + "thread": 1 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 3479393, + "thread": 11 + } + }, + { + "amount": "112.045240031", + "slot": { + "period": 3632099, + "thread": 15 + } + }, + { + "amount": "112.045240023", + "slot": { + "period": 3828144, + "thread": 0 + } + } + ], + "AU1mJFQb3wj4j99y9su532vzJnzU1G3aaiJxgqkPjoH3v3hSHvgt": [ + { + "amount": "202.659745394", + "slot": { + "period": 138725, + "thread": 22 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 287025, + "thread": 16 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 444684, + "thread": 9 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 520834, + "thread": 8 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 696638, + "thread": 21 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 953809, + "thread": 17 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1003925, + "thread": 23 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1165135, + "thread": 23 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1434748, + "thread": 25 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1590105, + "thread": 21 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1780274, + "thread": 7 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 1873656, + "thread": 10 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2075812, + "thread": 4 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2199164, + "thread": 13 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2366435, + "thread": 6 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2578424, + "thread": 21 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2788227, + "thread": 30 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 2857607, + "thread": 17 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 3076944, + "thread": 25 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 3137785, + "thread": 15 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 3412124, + "thread": 11 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 3479338, + "thread": 18 + } + }, + { + "amount": "202.659745394", + "slot": { + "period": 3726176, + "thread": 13 + } + }, + { + "amount": "202.659745400", + "slot": { + "period": 3786513, + "thread": 22 + } + } + ], + "AU1mJPcosaJ6s6an9seNPcjwQjuQmuJvrXwW83zMY2YdVEmdptwv": [ + { + "amount": "86.142804333", + "slot": { + "period": 78182, + "thread": 14 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 235423, + "thread": 31 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 396941, + "thread": 2 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 581071, + "thread": 2 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 768052, + "thread": 28 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 961222, + "thread": 22 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1133652, + "thread": 30 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1164517, + "thread": 31 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1400934, + "thread": 1 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1487252, + "thread": 11 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1653395, + "thread": 31 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 1825551, + "thread": 14 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2114181, + "thread": 23 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2198841, + "thread": 22 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2303378, + "thread": 2 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2474655, + "thread": 26 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2675594, + "thread": 27 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 2843607, + "thread": 0 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 3031460, + "thread": 9 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 3265418, + "thread": 24 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 3442900, + "thread": 20 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 3477224, + "thread": 4 + } + }, + { + "amount": "86.142804333", + "slot": { + "period": 3687486, + "thread": 28 + } + }, + { + "amount": "86.142804322", + "slot": { + "period": 3934492, + "thread": 23 + } + } + ], + "AU1mJi3NnPV9Lci4QHGqB1ec4Xj2zAfBSCrFcvkpVGzNmPjaVF8w": [ + { + "amount": "131.287349310", + "slot": { + "period": 158014, + "thread": 2 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 201427, + "thread": 25 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 374213, + "thread": 20 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 563111, + "thread": 29 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 735478, + "thread": 9 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 954232, + "thread": 14 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1023240, + "thread": 8 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1183872, + "thread": 24 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1339232, + "thread": 29 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1556838, + "thread": 10 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1653688, + "thread": 31 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 1916633, + "thread": 10 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2049714, + "thread": 4 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2186394, + "thread": 15 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2451041, + "thread": 30 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2478984, + "thread": 10 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2700984, + "thread": 6 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 2858175, + "thread": 11 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 3027003, + "thread": 1 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 3155274, + "thread": 0 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 3371189, + "thread": 18 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 3608865, + "thread": 1 + } + }, + { + "amount": "131.287349310", + "slot": { + "period": 3707416, + "thread": 11 + } + }, + { + "amount": "131.287349321", + "slot": { + "period": 3902285, + "thread": 11 + } + } + ], + "AU1mKmhMaiY8ZdKTuLNv4Uy58xncZgqMs8aHiAXijcaVpGqk8mP1": [ + { + "amount": "372.737919206", + "slot": { + "period": 89640, + "thread": 26 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 187061, + "thread": 6 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 440558, + "thread": 24 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 571280, + "thread": 28 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 693826, + "thread": 8 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 940282, + "thread": 5 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1122896, + "thread": 13 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1156395, + "thread": 17 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1416829, + "thread": 20 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1498077, + "thread": 23 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1773311, + "thread": 17 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 1828532, + "thread": 31 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2020450, + "thread": 26 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2286708, + "thread": 30 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2337730, + "thread": 15 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2601305, + "thread": 6 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2764331, + "thread": 13 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 2927940, + "thread": 27 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 3102709, + "thread": 15 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 3285898, + "thread": 5 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 3430328, + "thread": 12 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 3605107, + "thread": 18 + } + }, + { + "amount": "372.737919206", + "slot": { + "period": 3690451, + "thread": 4 + } + }, + { + "amount": "372.737919218", + "slot": { + "period": 3850970, + "thread": 3 + } + } + ], + "AU1mLpT9hJArAcLsv54r4vYLQcPtaawR2D5jeBTFpVhKvkEjCNXK": [ + { + "amount": "154.722086397", + "slot": { + "period": 160394, + "thread": 15 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 308991, + "thread": 6 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 470983, + "thread": 29 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 617472, + "thread": 30 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 792446, + "thread": 31 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 854848, + "thread": 25 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1071007, + "thread": 16 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1265308, + "thread": 11 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1469435, + "thread": 11 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1530600, + "thread": 22 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1731188, + "thread": 14 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 1862620, + "thread": 27 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2056104, + "thread": 28 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2283181, + "thread": 15 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2418769, + "thread": 23 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2528871, + "thread": 11 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2673608, + "thread": 11 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 2859177, + "thread": 9 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 3115219, + "thread": 10 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 3225044, + "thread": 2 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 3317326, + "thread": 21 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 3471061, + "thread": 22 + } + }, + { + "amount": "154.722086397", + "slot": { + "period": 3664454, + "thread": 8 + } + }, + { + "amount": "154.722086391", + "slot": { + "period": 3932133, + "thread": 18 + } + } + ], + "AU1mLzHKozsU88FPxPJYERDEBBDTrJMSYctj5DxUBtoE7JdLiYNe": [ + { + "amount": "363.994817534", + "slot": { + "period": 126934, + "thread": 12 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 175745, + "thread": 10 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 397065, + "thread": 31 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 501693, + "thread": 11 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 816309, + "thread": 22 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 908461, + "thread": 7 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1031675, + "thread": 30 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1257923, + "thread": 5 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1470973, + "thread": 16 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1490262, + "thread": 23 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1777698, + "thread": 23 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 1818497, + "thread": 30 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2120032, + "thread": 2 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2291509, + "thread": 15 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2409368, + "thread": 10 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2533090, + "thread": 27 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2628073, + "thread": 5 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 2919796, + "thread": 26 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 3047942, + "thread": 23 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 3179836, + "thread": 6 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 3349594, + "thread": 14 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 3460532, + "thread": 2 + } + }, + { + "amount": "363.994817534", + "slot": { + "period": 3720166, + "thread": 16 + } + }, + { + "amount": "363.994817523", + "slot": { + "period": 3833187, + "thread": 2 + } + } + ], + "AU1mMmNYLnBMkSzBRRDgLpyQWKWdG3mRoQeBpxE8gTrFjhWrHzew": [ + { + "amount": "230.910497838", + "slot": { + "period": 66973, + "thread": 29 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 180724, + "thread": 28 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 369318, + "thread": 12 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 504397, + "thread": 20 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 801347, + "thread": 15 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 866862, + "thread": 24 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1034084, + "thread": 30 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1292052, + "thread": 4 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1377742, + "thread": 0 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1479898, + "thread": 12 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1765179, + "thread": 20 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 1971851, + "thread": 25 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2029771, + "thread": 30 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2152972, + "thread": 4 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2360078, + "thread": 31 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2572147, + "thread": 17 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2677577, + "thread": 28 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 2793215, + "thread": 17 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 3089193, + "thread": 16 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 3282478, + "thread": 4 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 3439377, + "thread": 27 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 3548825, + "thread": 26 + } + }, + { + "amount": "230.910497838", + "slot": { + "period": 3726262, + "thread": 26 + } + }, + { + "amount": "230.910497842", + "slot": { + "period": 3843112, + "thread": 20 + } + } + ], + "AU1mNEhgBRJfLunsYuTtCRrzxY4ALnsrKuLkrZeQTGTGhem4LKiQ": [ + { + "amount": "84.749985584", + "slot": { + "period": 11969, + "thread": 25 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 308226, + "thread": 6 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 392963, + "thread": 12 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 618897, + "thread": 15 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 683105, + "thread": 23 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 877891, + "thread": 15 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1084279, + "thread": 29 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1183787, + "thread": 30 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1322159, + "thread": 5 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1620307, + "thread": 20 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1668962, + "thread": 19 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1952141, + "thread": 14 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 1978632, + "thread": 21 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 2154823, + "thread": 2 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 2390581, + "thread": 6 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 2581908, + "thread": 14 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 2781524, + "thread": 19 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 2855602, + "thread": 14 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 3089609, + "thread": 31 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 3125222, + "thread": 27 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 3411585, + "thread": 29 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 3592891, + "thread": 1 + } + }, + { + "amount": "84.749985584", + "slot": { + "period": 3668613, + "thread": 9 + } + }, + { + "amount": "84.749985590", + "slot": { + "period": 3839985, + "thread": 30 + } + } + ], + "AU1mNRa2P3Wa1uwU2AFhcUijHQyL7EXGVDtwrL8XkqWtG893TbtV": [ + { + "amount": "147.321343509", + "slot": { + "period": 107457, + "thread": 16 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 204554, + "thread": 22 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 481779, + "thread": 6 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 645112, + "thread": 16 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 684379, + "thread": 8 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 930344, + "thread": 26 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1010305, + "thread": 22 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1314279, + "thread": 19 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1446955, + "thread": 11 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1496497, + "thread": 16 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1754194, + "thread": 17 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 1852723, + "thread": 18 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2123944, + "thread": 16 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2263911, + "thread": 0 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2341031, + "thread": 4 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2600986, + "thread": 20 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2687380, + "thread": 8 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2915678, + "thread": 12 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 2969743, + "thread": 23 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 3158200, + "thread": 6 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 3391978, + "thread": 21 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 3458293, + "thread": 20 + } + }, + { + "amount": "147.321343509", + "slot": { + "period": 3705914, + "thread": 31 + } + }, + { + "amount": "147.321343510", + "slot": { + "period": 3785854, + "thread": 14 + } + } + ], + "AU1mNdz9H54Z1hwn3wVSfpBacWs5UBGuN4JoWqT2TsNb7jcKVhML": [ + { + "amount": "349.841563413", + "slot": { + "period": 25193, + "thread": 26 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 288918, + "thread": 1 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 387408, + "thread": 23 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 497926, + "thread": 15 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 788870, + "thread": 2 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 854181, + "thread": 2 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1130657, + "thread": 16 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1216789, + "thread": 26 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1471722, + "thread": 25 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1626644, + "thread": 1 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1742905, + "thread": 20 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 1883760, + "thread": 24 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2098721, + "thread": 9 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2291784, + "thread": 6 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2445567, + "thread": 25 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2614309, + "thread": 19 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2786548, + "thread": 2 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 2903617, + "thread": 30 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 3046777, + "thread": 17 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 3283208, + "thread": 12 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 3422897, + "thread": 26 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 3501508, + "thread": 15 + } + }, + { + "amount": "349.841563413", + "slot": { + "period": 3728960, + "thread": 17 + } + }, + { + "amount": "349.841563422", + "slot": { + "period": 3782460, + "thread": 5 + } + } + ], + "AU1mPEvQQLTd53QVv9WU5z3iiHAUqcW4wHoExxaPCDYzvZ1YSzT3": [ + { + "amount": "175.333428372", + "slot": { + "period": 107619, + "thread": 4 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 258325, + "thread": 9 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 440238, + "thread": 8 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 650074, + "thread": 26 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 671099, + "thread": 24 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 928187, + "thread": 25 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1051936, + "thread": 18 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1237382, + "thread": 7 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1439548, + "thread": 2 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1526462, + "thread": 8 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1781088, + "thread": 22 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 1896429, + "thread": 11 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2016952, + "thread": 12 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2260167, + "thread": 29 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2304167, + "thread": 3 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2485146, + "thread": 14 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2748075, + "thread": 5 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 2897972, + "thread": 24 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 3008627, + "thread": 9 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 3220409, + "thread": 21 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 3416498, + "thread": 28 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 3502405, + "thread": 9 + } + }, + { + "amount": "175.333428372", + "slot": { + "period": 3721873, + "thread": 15 + } + }, + { + "amount": "175.333428379", + "slot": { + "period": 3845693, + "thread": 5 + } + } + ], + "AU1mR5yyvVtiJrjJSjSPFUnkQBBVXAArAPrkr3dAc4563GQvdw2w": [ + { + "amount": "54.149986850", + "slot": { + "period": 70837, + "thread": 6 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 239416, + "thread": 23 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 340048, + "thread": 14 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 563737, + "thread": 16 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 658789, + "thread": 16 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 981740, + "thread": 23 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1077383, + "thread": 6 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1151128, + "thread": 8 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1363571, + "thread": 8 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1480071, + "thread": 25 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1671701, + "thread": 3 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 1937202, + "thread": 13 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2035080, + "thread": 28 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2249785, + "thread": 10 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2353045, + "thread": 17 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2617218, + "thread": 23 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2714517, + "thread": 1 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 2942845, + "thread": 6 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 3097551, + "thread": 31 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 3126634, + "thread": 16 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 3399448, + "thread": 21 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 3474951, + "thread": 27 + } + }, + { + "amount": "54.149986850", + "slot": { + "period": 3630465, + "thread": 0 + } + }, + { + "amount": "54.149986858", + "slot": { + "period": 3798316, + "thread": 22 + } + } + ], + "AU1mSKEos3QsTMFw76Aa1DsFDXg32PozaCdHea4t87SvSA6Vr3x": [ + { + "amount": "242.085749375", + "slot": { + "period": 140633, + "thread": 13 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 175359, + "thread": 27 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 450069, + "thread": 31 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 598329, + "thread": 20 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 788005, + "thread": 21 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 910244, + "thread": 2 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1101822, + "thread": 4 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1255000, + "thread": 27 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1475191, + "thread": 2 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1610559, + "thread": 12 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1800436, + "thread": 27 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1831361, + "thread": 1 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 1985123, + "thread": 29 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2258641, + "thread": 15 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2448775, + "thread": 12 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2513871, + "thread": 4 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2779838, + "thread": 9 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2814010, + "thread": 17 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 2964950, + "thread": 16 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 3270243, + "thread": 5 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 3311166, + "thread": 29 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 3507238, + "thread": 11 + } + }, + { + "amount": "242.085749375", + "slot": { + "period": 3702114, + "thread": 27 + } + }, + { + "amount": "242.085749376", + "slot": { + "period": 3807007, + "thread": 31 + } + } + ], + "AU1mST4b9EMgWbSdjEfa8kz26GvZB5AjJs4MSkcF5JvGEbY7EnNS": [ + { + "amount": "107.566752242", + "slot": { + "period": 69845, + "thread": 12 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 240031, + "thread": 9 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 445360, + "thread": 0 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 617111, + "thread": 3 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 666315, + "thread": 13 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 903085, + "thread": 12 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1137857, + "thread": 25 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1251021, + "thread": 5 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1348842, + "thread": 15 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1509552, + "thread": 28 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1765864, + "thread": 27 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 1851857, + "thread": 27 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2109246, + "thread": 26 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2261046, + "thread": 16 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2345811, + "thread": 7 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2490575, + "thread": 3 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2701960, + "thread": 29 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2804224, + "thread": 6 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 2996914, + "thread": 24 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 3127513, + "thread": 14 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 3436968, + "thread": 18 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 3554707, + "thread": 18 + } + }, + { + "amount": "107.566752242", + "slot": { + "period": 3648177, + "thread": 23 + } + }, + { + "amount": "107.566752244", + "slot": { + "period": 3939443, + "thread": 14 + } + } + ], + "AU1mStjZ735ycyi3q4JVQNfKcL8pD9W6gvsPx26AYqQUCxP418YX": [ + { + "amount": "104.888955646", + "slot": { + "period": 162513, + "thread": 14 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 257858, + "thread": 25 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 489760, + "thread": 13 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 563210, + "thread": 8 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 749307, + "thread": 16 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 937761, + "thread": 2 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 988281, + "thread": 2 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 1246789, + "thread": 26 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 1439601, + "thread": 31 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 1526363, + "thread": 4 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 1699939, + "thread": 0 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 1952000, + "thread": 0 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2117083, + "thread": 1 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2147589, + "thread": 5 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2350989, + "thread": 3 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2599928, + "thread": 5 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2757688, + "thread": 16 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 2866836, + "thread": 16 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 3065209, + "thread": 10 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 3269652, + "thread": 11 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 3436125, + "thread": 3 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 3548394, + "thread": 29 + } + }, + { + "amount": "104.888955646", + "slot": { + "period": 3766579, + "thread": 24 + } + }, + { + "amount": "104.888955636", + "slot": { + "period": 3833636, + "thread": 10 + } + } + ], + "AU1mTmysFgy4AjrkWuXLQLaH2vdMdacYFTtiWXpJV3qZnvJ9gvvP": [ + { + "amount": "76.218307351", + "slot": { + "period": 94729, + "thread": 9 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 216276, + "thread": 22 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 433689, + "thread": 6 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 572057, + "thread": 10 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 781165, + "thread": 30 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 846285, + "thread": 8 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1006470, + "thread": 19 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1178179, + "thread": 21 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1348250, + "thread": 9 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1641694, + "thread": 20 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1702490, + "thread": 5 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 1814765, + "thread": 14 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2068954, + "thread": 16 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2276067, + "thread": 25 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2374471, + "thread": 16 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2501593, + "thread": 31 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2746502, + "thread": 15 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 2903079, + "thread": 16 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 3118594, + "thread": 13 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 3128999, + "thread": 12 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 3291658, + "thread": 25 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 3616690, + "thread": 26 + } + }, + { + "amount": "76.218307351", + "slot": { + "period": 3697365, + "thread": 6 + } + }, + { + "amount": "76.218307361", + "slot": { + "period": 3898682, + "thread": 3 + } + } + ], + "AU1mUWGE7VepjGfo49pwhhxxq8YyTpKKUftoQ5hRVCkAqq9eDWRu": [ + { + "amount": "57.231392072", + "slot": { + "period": 150923, + "thread": 30 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 272856, + "thread": 29 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 341912, + "thread": 8 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 532675, + "thread": 8 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 751926, + "thread": 10 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 939920, + "thread": 12 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 989314, + "thread": 2 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 1264702, + "thread": 24 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 1339431, + "thread": 25 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 1544658, + "thread": 15 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 1749216, + "thread": 23 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 1943998, + "thread": 12 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2126859, + "thread": 10 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2176689, + "thread": 25 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2445280, + "thread": 13 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2528950, + "thread": 25 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2631380, + "thread": 6 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 2806578, + "thread": 19 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 3087066, + "thread": 7 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 3257218, + "thread": 13 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 3353959, + "thread": 15 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 3453318, + "thread": 16 + } + }, + { + "amount": "57.231392072", + "slot": { + "period": 3698776, + "thread": 27 + } + }, + { + "amount": "57.231392063", + "slot": { + "period": 3912160, + "thread": 29 + } + } + ], + "AU1mUqafJmiH5krzL6igZ2WQRXkk1s72TUdAFpjsoK2HSBjN6smW": [ + { + "amount": "326.967288384", + "slot": { + "period": 98866, + "thread": 15 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 287127, + "thread": 6 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 420819, + "thread": 2 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 521347, + "thread": 7 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 760429, + "thread": 24 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 851976, + "thread": 23 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1059503, + "thread": 13 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1151748, + "thread": 18 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1370028, + "thread": 0 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1641618, + "thread": 17 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1660296, + "thread": 4 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 1873586, + "thread": 2 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2009003, + "thread": 12 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2181783, + "thread": 14 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2400569, + "thread": 17 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2544985, + "thread": 2 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2693218, + "thread": 29 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 2928464, + "thread": 8 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3028174, + "thread": 20 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3191395, + "thread": 6 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3305603, + "thread": 20 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3563311, + "thread": 1 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3689203, + "thread": 7 + } + }, + { + "amount": "326.967288384", + "slot": { + "period": 3845940, + "thread": 13 + } + } + ], + "AU1mVDYNjU8txV62ovsLKBzzmBoRGxm2bJmWSyGbNU5oeKsuB2Yv": [ + { + "amount": "317.037349692", + "slot": { + "period": 152552, + "thread": 28 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 248260, + "thread": 19 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 414302, + "thread": 5 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 637339, + "thread": 3 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 657802, + "thread": 24 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 916368, + "thread": 29 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1034397, + "thread": 15 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1263612, + "thread": 8 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1460419, + "thread": 28 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1592965, + "thread": 10 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1669921, + "thread": 31 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 1851025, + "thread": 0 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2041657, + "thread": 23 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2275353, + "thread": 6 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2457184, + "thread": 31 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2598121, + "thread": 4 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2728579, + "thread": 24 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 2906868, + "thread": 16 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 3034191, + "thread": 25 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 3271046, + "thread": 16 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 3303492, + "thread": 30 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 3473211, + "thread": 17 + } + }, + { + "amount": "317.037349692", + "slot": { + "period": 3757998, + "thread": 4 + } + }, + { + "amount": "317.037349686", + "slot": { + "period": 3897405, + "thread": 14 + } + } + ], + "AU1mWEGopZqnwNchcujMzfWZJuxbGxjWDwtsh2NfzqcyNxYUS4VQ": [ + { + "amount": "120.946535825", + "slot": { + "period": 38995, + "thread": 27 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 171884, + "thread": 25 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 398135, + "thread": 29 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 625098, + "thread": 24 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 752508, + "thread": 3 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 876519, + "thread": 13 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1117217, + "thread": 15 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1214957, + "thread": 4 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1474187, + "thread": 18 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1493165, + "thread": 12 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1783000, + "thread": 28 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 1894796, + "thread": 20 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2125301, + "thread": 24 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2271516, + "thread": 15 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2347001, + "thread": 20 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2605413, + "thread": 27 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2783774, + "thread": 27 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 2800396, + "thread": 24 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 3103715, + "thread": 14 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 3269972, + "thread": 19 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 3398689, + "thread": 31 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 3460381, + "thread": 4 + } + }, + { + "amount": "120.946535825", + "slot": { + "period": 3681689, + "thread": 3 + } + }, + { + "amount": "120.946535827", + "slot": { + "period": 3935920, + "thread": 16 + } + } + ], + "AU1mWJcttp2XMpNHmihDvqiM4WPdkkJTiwVmkjYLnAoZeUxYc5SK": [ + { + "amount": "166.122944108", + "slot": { + "period": 59005, + "thread": 8 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 260222, + "thread": 14 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 434552, + "thread": 29 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 522798, + "thread": 9 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 741904, + "thread": 24 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 954251, + "thread": 2 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1055126, + "thread": 13 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1163238, + "thread": 6 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1403349, + "thread": 8 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1560785, + "thread": 16 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1717133, + "thread": 16 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 1834023, + "thread": 13 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2004950, + "thread": 30 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2160246, + "thread": 25 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2341351, + "thread": 13 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2538091, + "thread": 16 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2665261, + "thread": 29 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 2944559, + "thread": 16 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 3078926, + "thread": 0 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 3184234, + "thread": 14 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 3383607, + "thread": 4 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 3535351, + "thread": 0 + } + }, + { + "amount": "166.122944108", + "slot": { + "period": 3683514, + "thread": 31 + } + }, + { + "amount": "166.122944110", + "slot": { + "period": 3877570, + "thread": 10 + } + } + ], + "AU1mWRL6VSi8bMTZS8QVSB78wUVNx8J8P1RRVfGN2s6oPSpBqnDK": [ + { + "amount": "112.805829233", + "slot": { + "period": 46417, + "thread": 2 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 255995, + "thread": 29 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 488412, + "thread": 31 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 554131, + "thread": 8 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 745883, + "thread": 29 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 922139, + "thread": 13 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1141889, + "thread": 26 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1254673, + "thread": 8 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1368365, + "thread": 12 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1600122, + "thread": 1 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1651427, + "thread": 31 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 1809266, + "thread": 17 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2051546, + "thread": 29 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2277890, + "thread": 31 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2435221, + "thread": 14 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2472415, + "thread": 14 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2648318, + "thread": 5 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 2801114, + "thread": 7 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 3040182, + "thread": 21 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 3216129, + "thread": 24 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 3363594, + "thread": 21 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 3477234, + "thread": 18 + } + }, + { + "amount": "112.805829233", + "slot": { + "period": 3633694, + "thread": 7 + } + }, + { + "amount": "112.805829222", + "slot": { + "period": 3854397, + "thread": 28 + } + } + ], + "AU1mX9q5yjS5ndmGQ3X8FUouk3muuqpmbqzhSrrY44WnaH7pTJ5b": [ + { + "amount": "550.598776444", + "slot": { + "period": 154337, + "thread": 15 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 247701, + "thread": 17 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 486355, + "thread": 1 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 607213, + "thread": 22 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 681592, + "thread": 2 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 831134, + "thread": 11 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1082409, + "thread": 20 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1271957, + "thread": 3 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1416124, + "thread": 0 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1531771, + "thread": 30 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1739199, + "thread": 29 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 1896814, + "thread": 10 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2057455, + "thread": 13 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2152633, + "thread": 23 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2387112, + "thread": 1 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2551669, + "thread": 30 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2773190, + "thread": 16 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 2903927, + "thread": 2 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 3062211, + "thread": 5 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 3206688, + "thread": 25 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 3313893, + "thread": 25 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 3523227, + "thread": 29 + } + }, + { + "amount": "550.598776444", + "slot": { + "period": 3626444, + "thread": 18 + } + }, + { + "amount": "550.598776443", + "slot": { + "period": 3906528, + "thread": 10 + } + } + ], + "AU1mXMzrsVL5rp4cvxqMEUTYUmWqG4XfKLVqiLcHmsnZVYqzaZCw": [ + { + "amount": "1238.390053141", + "slot": { + "period": 143857, + "thread": 22 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 311939, + "thread": 4 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 327153, + "thread": 29 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 617501, + "thread": 25 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 804726, + "thread": 14 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 836422, + "thread": 29 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 984289, + "thread": 29 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 1204873, + "thread": 6 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 1461541, + "thread": 9 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 1646609, + "thread": 28 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 1728317, + "thread": 24 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 1840639, + "thread": 6 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2094694, + "thread": 16 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2249892, + "thread": 16 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2368746, + "thread": 15 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2542722, + "thread": 18 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2734675, + "thread": 3 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 2944300, + "thread": 20 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 3044673, + "thread": 30 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 3255212, + "thread": 26 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 3316445, + "thread": 12 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 3509598, + "thread": 17 + } + }, + { + "amount": "1238.390053141", + "slot": { + "period": 3653067, + "thread": 2 + } + }, + { + "amount": "1238.390053124", + "slot": { + "period": 3916067, + "thread": 20 + } + } + ], + "AU1mXc3F5B7sHwsU8y1QeV1udmTM3WUxe7mM6cuHkqqMhbomhxVs": [ + { + "amount": "648.910252331", + "slot": { + "period": 51420, + "thread": 24 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 263105, + "thread": 16 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 382128, + "thread": 8 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 540242, + "thread": 16 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 703992, + "thread": 28 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 977914, + "thread": 15 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1022017, + "thread": 18 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1222641, + "thread": 19 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1409330, + "thread": 28 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1577692, + "thread": 2 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1679755, + "thread": 7 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 1936807, + "thread": 21 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2034120, + "thread": 31 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2206896, + "thread": 1 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2407236, + "thread": 23 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2476917, + "thread": 30 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2777454, + "thread": 1 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 2944735, + "thread": 11 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 3089847, + "thread": 9 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 3279873, + "thread": 18 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 3299299, + "thread": 6 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 3520458, + "thread": 26 + } + }, + { + "amount": "648.910252331", + "slot": { + "period": 3630856, + "thread": 16 + } + }, + { + "amount": "648.910252323", + "slot": { + "period": 3801346, + "thread": 12 + } + } + ], + "AU1mYFbicJjLnyxSpmAtKZRvK7VYNUauwqyqPpEATqtspSx6Up5T": [ + { + "amount": "125.712121904", + "slot": { + "period": 70830, + "thread": 18 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 224450, + "thread": 16 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 464064, + "thread": 12 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 614717, + "thread": 8 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 714734, + "thread": 6 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 954509, + "thread": 23 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1094799, + "thread": 18 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1269885, + "thread": 8 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1453576, + "thread": 22 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1502351, + "thread": 31 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1780240, + "thread": 16 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 1965063, + "thread": 30 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2056641, + "thread": 30 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2274379, + "thread": 8 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2321162, + "thread": 2 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2509566, + "thread": 4 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2733608, + "thread": 8 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2890947, + "thread": 22 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 2964956, + "thread": 11 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 3123961, + "thread": 6 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 3430230, + "thread": 8 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 3486384, + "thread": 14 + } + }, + { + "amount": "125.712121904", + "slot": { + "period": 3682878, + "thread": 21 + } + }, + { + "amount": "125.712121910", + "slot": { + "period": 3932641, + "thread": 23 + } + } + ], + "AU1mZfYZSacY63hHHev3rDAPdqBrzZXPAduxRXVtqWo6D5Wkbfqq": [ + { + "amount": "182.658321717", + "slot": { + "period": 37413, + "thread": 5 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 181506, + "thread": 6 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 467623, + "thread": 0 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 592362, + "thread": 17 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 718699, + "thread": 7 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 841813, + "thread": 4 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1117809, + "thread": 14 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1256044, + "thread": 6 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1440149, + "thread": 10 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1523829, + "thread": 26 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1695762, + "thread": 17 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1853719, + "thread": 30 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 1984441, + "thread": 29 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 2178948, + "thread": 1 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 2451039, + "thread": 24 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 2488340, + "thread": 3 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 2788807, + "thread": 1 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 2921008, + "thread": 30 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 3105754, + "thread": 2 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 3167952, + "thread": 1 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 3363868, + "thread": 26 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 3604364, + "thread": 31 + } + }, + { + "amount": "182.658321717", + "slot": { + "period": 3758255, + "thread": 13 + } + }, + { + "amount": "182.658321728", + "slot": { + "period": 3915511, + "thread": 5 + } + } + ], + "AU1maDyRDKBuLYSJPENDCzWhWpi8cQACBjd11kbPc1na7KaqF57y": [ + { + "amount": "100.768678884", + "slot": { + "period": 16917, + "thread": 28 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 218504, + "thread": 18 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 372590, + "thread": 13 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 637631, + "thread": 23 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 674970, + "thread": 9 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 833732, + "thread": 20 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 985497, + "thread": 31 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 1264166, + "thread": 13 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 1392630, + "thread": 5 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 1513392, + "thread": 29 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 1688622, + "thread": 30 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 1971677, + "thread": 8 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2052057, + "thread": 21 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2150507, + "thread": 3 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2405354, + "thread": 26 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2467840, + "thread": 29 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2761552, + "thread": 27 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 2858221, + "thread": 15 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 3108117, + "thread": 30 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 3136536, + "thread": 26 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 3332443, + "thread": 15 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 3598988, + "thread": 29 + } + }, + { + "amount": "100.768678884", + "slot": { + "period": 3765646, + "thread": 19 + } + }, + { + "amount": "100.768678888", + "slot": { + "period": 3824181, + "thread": 13 + } + } + ], + "AU1mbfGhwfYhGxcnfMp9hyGxD5bX3pgXn2sAjm7s147Ywd2Ez3o9": [ + { + "amount": "132.571650487", + "slot": { + "period": 86867, + "thread": 14 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 237669, + "thread": 29 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 424496, + "thread": 29 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 649486, + "thread": 4 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 761076, + "thread": 4 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 867349, + "thread": 30 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1029490, + "thread": 21 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1289124, + "thread": 6 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1387202, + "thread": 7 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1626797, + "thread": 25 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1743361, + "thread": 0 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 1963459, + "thread": 0 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2082850, + "thread": 19 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2162835, + "thread": 7 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2363474, + "thread": 17 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2478797, + "thread": 17 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2743320, + "thread": 6 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 2828711, + "thread": 27 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 3092365, + "thread": 29 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 3214913, + "thread": 1 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 3398376, + "thread": 30 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 3491190, + "thread": 12 + } + }, + { + "amount": "132.571650487", + "slot": { + "period": 3760348, + "thread": 14 + } + }, + { + "amount": "132.571650481", + "slot": { + "period": 3916408, + "thread": 29 + } + } + ], + "AU1mbgPkWm4rotXbGThVrgoEPa6ZyEdE7vHtUrZcpdQPQT59k7au": [ + { + "amount": "487.132931944", + "slot": { + "period": 33488, + "thread": 10 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 306614, + "thread": 13 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 420816, + "thread": 22 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 506245, + "thread": 19 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 672857, + "thread": 4 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 849802, + "thread": 20 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1129165, + "thread": 12 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1235874, + "thread": 2 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1331485, + "thread": 1 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1499070, + "thread": 19 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1686948, + "thread": 29 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 1890995, + "thread": 9 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2097600, + "thread": 22 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2283689, + "thread": 10 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2332343, + "thread": 2 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2477190, + "thread": 6 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2705660, + "thread": 25 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 2898738, + "thread": 7 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 3012994, + "thread": 11 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 3131274, + "thread": 28 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 3311232, + "thread": 2 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 3571744, + "thread": 30 + } + }, + { + "amount": "487.132931944", + "slot": { + "period": 3765089, + "thread": 26 + } + }, + { + "amount": "487.132931953", + "slot": { + "period": 3848780, + "thread": 17 + } + } + ], + "AU1mbzpr1gzAC7HqKBqbq3ZDUGo1CcEQCmnwNnmXy3RWVbDVRNFt": [ + { + "amount": "57.751307985", + "slot": { + "period": 111645, + "thread": 15 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 268872, + "thread": 2 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 343424, + "thread": 16 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 588666, + "thread": 9 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 723659, + "thread": 8 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 838698, + "thread": 0 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1141538, + "thread": 9 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1302112, + "thread": 24 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1444180, + "thread": 7 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1608475, + "thread": 17 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1709719, + "thread": 9 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 1835978, + "thread": 26 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2077442, + "thread": 27 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2294544, + "thread": 7 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2295961, + "thread": 10 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2552957, + "thread": 18 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2736459, + "thread": 15 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 2906341, + "thread": 6 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 3096391, + "thread": 18 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 3146098, + "thread": 7 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 3331676, + "thread": 0 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 3570010, + "thread": 17 + } + }, + { + "amount": "57.751307985", + "slot": { + "period": 3763464, + "thread": 20 + } + }, + { + "amount": "57.751307974", + "slot": { + "period": 3924645, + "thread": 29 + } + } + ], + "AU1mc1mVkxQBM9GrGZsebFBUVQHLKcV3NtqrNXEXjZ8e3ZYyRntd": [ + { + "amount": "201.339132328", + "slot": { + "period": 116915, + "thread": 19 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 279800, + "thread": 4 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 478034, + "thread": 4 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 504523, + "thread": 20 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 664385, + "thread": 9 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 951413, + "thread": 21 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1140491, + "thread": 0 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1245386, + "thread": 19 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1406541, + "thread": 2 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1635729, + "thread": 6 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1777075, + "thread": 15 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 1814674, + "thread": 22 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2033066, + "thread": 26 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2233975, + "thread": 13 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2331554, + "thread": 6 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2617895, + "thread": 25 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2780266, + "thread": 18 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 2800325, + "thread": 25 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 3091921, + "thread": 4 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 3221164, + "thread": 11 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 3352737, + "thread": 10 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 3500701, + "thread": 18 + } + }, + { + "amount": "201.339132328", + "slot": { + "period": 3625535, + "thread": 30 + } + }, + { + "amount": "201.339132337", + "slot": { + "period": 3805872, + "thread": 11 + } + } + ], + "AU1mdMZ2xtGZ2cg69BgU9tGacPDgy2xEvHHwqgBasZmpipd2dFQE": [ + { + "amount": "60.640885748", + "slot": { + "period": 60190, + "thread": 21 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 306422, + "thread": 21 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 331299, + "thread": 6 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 517155, + "thread": 29 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 800380, + "thread": 5 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 830336, + "thread": 1 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1127872, + "thread": 2 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1213198, + "thread": 25 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1421306, + "thread": 6 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1595775, + "thread": 11 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1726651, + "thread": 23 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 1834429, + "thread": 28 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2050012, + "thread": 5 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2226498, + "thread": 18 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2422097, + "thread": 8 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2479323, + "thread": 30 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2764495, + "thread": 10 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 2921795, + "thread": 1 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 3102360, + "thread": 2 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 3238187, + "thread": 25 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 3297257, + "thread": 10 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 3481430, + "thread": 16 + } + }, + { + "amount": "60.640885748", + "slot": { + "period": 3661991, + "thread": 1 + } + }, + { + "amount": "60.640885756", + "slot": { + "period": 3889723, + "thread": 27 + } + } + ], + "AU1mdYyozHvcQtepLVWKgaVgzuhdfNkc8G4A62Zu7Ha6p9dPN8hN": [ + { + "amount": "69.546940555", + "slot": { + "period": 14185, + "thread": 6 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 300731, + "thread": 8 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 353220, + "thread": 3 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 639615, + "thread": 23 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 738512, + "thread": 7 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 978922, + "thread": 18 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1103501, + "thread": 6 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1205862, + "thread": 18 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1391001, + "thread": 25 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1618642, + "thread": 16 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1759963, + "thread": 13 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 1834052, + "thread": 3 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2004380, + "thread": 15 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2233076, + "thread": 1 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2303827, + "thread": 26 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2467681, + "thread": 23 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2715649, + "thread": 19 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 2809306, + "thread": 5 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 3071891, + "thread": 29 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 3274925, + "thread": 15 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 3434084, + "thread": 12 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 3451289, + "thread": 19 + } + }, + { + "amount": "69.546940555", + "slot": { + "period": 3646306, + "thread": 16 + } + }, + { + "amount": "69.546940551", + "slot": { + "period": 3888548, + "thread": 29 + } + } + ], + "AU1mefxZig17wCWaCpRJZ5cyFpTay63mSggyHwGYehLYDMrCTPXb": [ + { + "amount": "235.556076062", + "slot": { + "period": 77266, + "thread": 9 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 181301, + "thread": 11 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 420991, + "thread": 13 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 533502, + "thread": 13 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 756026, + "thread": 6 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 981100, + "thread": 25 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1086468, + "thread": 27 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1151494, + "thread": 26 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1352563, + "thread": 21 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1491606, + "thread": 2 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1789182, + "thread": 21 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1886821, + "thread": 9 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 1990384, + "thread": 9 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 2163742, + "thread": 12 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 2345602, + "thread": 0 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 2568051, + "thread": 26 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 2708230, + "thread": 25 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 2831239, + "thread": 14 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 3025829, + "thread": 12 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 3245931, + "thread": 7 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 3330789, + "thread": 19 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 3583509, + "thread": 6 + } + }, + { + "amount": "235.556076062", + "slot": { + "period": 3740507, + "thread": 11 + } + }, + { + "amount": "235.556076067", + "slot": { + "period": 3804684, + "thread": 7 + } + } + ], + "AU1meoS1ohPZ69f5rNTC8EKvxfEnTaodnPDmPY9QJuoAZTKyq5iL": [ + { + "amount": "104.791512440", + "slot": { + "period": 108958, + "thread": 22 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 284424, + "thread": 31 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 345160, + "thread": 19 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 597788, + "thread": 17 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 810642, + "thread": 26 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 965951, + "thread": 27 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1052820, + "thread": 3 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1179995, + "thread": 22 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1354542, + "thread": 23 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1522361, + "thread": 5 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1677898, + "thread": 11 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 1819788, + "thread": 11 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2020801, + "thread": 18 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2258253, + "thread": 23 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2385315, + "thread": 11 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2462730, + "thread": 24 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2782329, + "thread": 26 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 2848825, + "thread": 10 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 3053894, + "thread": 7 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 3234441, + "thread": 14 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 3303019, + "thread": 23 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 3502260, + "thread": 10 + } + }, + { + "amount": "104.791512440", + "slot": { + "period": 3761445, + "thread": 19 + } + }, + { + "amount": "104.791512430", + "slot": { + "period": 3894123, + "thread": 6 + } + } + ], + "AU1meqMSvmH3tgvyQLZbwzQVbR5utrXPxDLxw2bYjbcqPcYr5nQc": [ + { + "amount": "209.701887602", + "slot": { + "period": 127759, + "thread": 24 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 252007, + "thread": 7 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 469559, + "thread": 11 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 544580, + "thread": 28 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 815665, + "thread": 27 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 942783, + "thread": 8 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1143997, + "thread": 14 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1247409, + "thread": 5 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1365614, + "thread": 24 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1545396, + "thread": 21 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1650698, + "thread": 11 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 1975441, + "thread": 10 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2007967, + "thread": 28 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2165760, + "thread": 13 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2319202, + "thread": 31 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2493297, + "thread": 2 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2646732, + "thread": 7 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 2814827, + "thread": 25 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 3094257, + "thread": 29 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 3148460, + "thread": 30 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 3343300, + "thread": 22 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 3472742, + "thread": 21 + } + }, + { + "amount": "209.701887602", + "slot": { + "period": 3689197, + "thread": 6 + } + }, + { + "amount": "209.701887603", + "slot": { + "period": 3886958, + "thread": 17 + } + } + ], + "AU1mfBMeG9DRwE15eVuT4ZH4BNsQAr1h8ZN2xfPPq2BCaaZFBUGG": [ + { + "amount": "183.516171325", + "slot": { + "period": 30479, + "thread": 18 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 283836, + "thread": 8 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 411543, + "thread": 9 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 593362, + "thread": 3 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 707145, + "thread": 3 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 851193, + "thread": 10 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 985365, + "thread": 15 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 1221825, + "thread": 14 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 1431294, + "thread": 14 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 1515856, + "thread": 11 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 1673933, + "thread": 3 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 1961929, + "thread": 25 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2071379, + "thread": 7 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2146663, + "thread": 12 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2340016, + "thread": 24 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2584942, + "thread": 0 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2660231, + "thread": 18 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 2931927, + "thread": 24 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 3052825, + "thread": 5 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 3211461, + "thread": 25 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 3325787, + "thread": 27 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 3552867, + "thread": 18 + } + }, + { + "amount": "183.516171325", + "slot": { + "period": 3663527, + "thread": 31 + } + }, + { + "amount": "183.516171323", + "slot": { + "period": 3871832, + "thread": 1 + } + } + ], + "AU1mgdcodiwX1JRwT5hkUemQPyvok2yuqoyKXU1xAdwPdcLiHfLY": [ + { + "amount": "486.358660049", + "slot": { + "period": 24668, + "thread": 20 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 263118, + "thread": 1 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 351147, + "thread": 7 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 629065, + "thread": 10 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 797113, + "thread": 12 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 897692, + "thread": 20 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1056569, + "thread": 3 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1225001, + "thread": 2 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1430262, + "thread": 7 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1562047, + "thread": 4 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1753373, + "thread": 25 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 1819619, + "thread": 25 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2114133, + "thread": 10 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2253898, + "thread": 10 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2320095, + "thread": 2 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2485125, + "thread": 22 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2789272, + "thread": 30 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2802163, + "thread": 27 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 2980995, + "thread": 7 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 3172694, + "thread": 4 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 3333458, + "thread": 9 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 3470848, + "thread": 0 + } + }, + { + "amount": "486.358660049", + "slot": { + "period": 3725253, + "thread": 24 + } + }, + { + "amount": "486.358660041", + "slot": { + "period": 3936066, + "thread": 3 + } + } + ], + "AU1mgqxzFsfMBCbC7XrqqbDLSQtNUXLtbhMdX9Q2Z763UY5EvT2p": [ + { + "amount": "173.858531800", + "slot": { + "period": 43872, + "thread": 13 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 170195, + "thread": 4 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 429479, + "thread": 0 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 621900, + "thread": 29 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 696621, + "thread": 15 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 944817, + "thread": 28 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1075998, + "thread": 10 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1188409, + "thread": 12 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1374462, + "thread": 23 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1520072, + "thread": 28 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1776530, + "thread": 17 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 1907832, + "thread": 23 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2034819, + "thread": 22 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2207659, + "thread": 7 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2456032, + "thread": 14 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2623914, + "thread": 13 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2681389, + "thread": 25 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 2893711, + "thread": 13 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 3108289, + "thread": 6 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 3142751, + "thread": 1 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 3332751, + "thread": 13 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 3458847, + "thread": 25 + } + }, + { + "amount": "173.858531800", + "slot": { + "period": 3719143, + "thread": 16 + } + }, + { + "amount": "173.858531794", + "slot": { + "period": 3892467, + "thread": 26 + } + } + ], + "AU1mhTFQFzvim8HxqYknAdLARHYo8tuneoe47CKzzMyCwXDb6dhZ": [ + { + "amount": "65.017803701", + "slot": { + "period": 78490, + "thread": 6 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 302649, + "thread": 27 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 478058, + "thread": 11 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 607006, + "thread": 14 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 798659, + "thread": 6 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 952593, + "thread": 29 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 999920, + "thread": 29 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 1310789, + "thread": 5 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 1361782, + "thread": 14 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 1547439, + "thread": 25 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 1762530, + "thread": 20 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 1821465, + "thread": 3 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2000741, + "thread": 31 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2186101, + "thread": 8 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2356854, + "thread": 29 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2483495, + "thread": 19 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2671248, + "thread": 12 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 2892714, + "thread": 10 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 3078643, + "thread": 6 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 3284797, + "thread": 2 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 3310599, + "thread": 6 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 3456276, + "thread": 1 + } + }, + { + "amount": "65.017803701", + "slot": { + "period": 3764658, + "thread": 31 + } + }, + { + "amount": "65.017803699", + "slot": { + "period": 3870839, + "thread": 23 + } + } + ], + "AU1mhs2WZ5FQD31ejFAaUYYXGdYVq5XGaYqCCaq28uV5tjK6fXZw": [ + { + "amount": "71.042680926", + "slot": { + "period": 91970, + "thread": 22 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 246034, + "thread": 13 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 488191, + "thread": 15 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 563091, + "thread": 12 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 701497, + "thread": 17 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 912396, + "thread": 13 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 996221, + "thread": 17 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 1261051, + "thread": 19 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 1412098, + "thread": 22 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 1501478, + "thread": 31 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 1680543, + "thread": 25 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 1840256, + "thread": 13 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2015964, + "thread": 13 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2174965, + "thread": 15 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2360599, + "thread": 23 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2479173, + "thread": 5 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2648183, + "thread": 12 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 2810158, + "thread": 21 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 3040942, + "thread": 17 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 3282098, + "thread": 15 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 3298750, + "thread": 11 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 3522379, + "thread": 1 + } + }, + { + "amount": "71.042680926", + "slot": { + "period": 3672458, + "thread": 10 + } + }, + { + "amount": "71.042680924", + "slot": { + "period": 3840884, + "thread": 7 + } + } + ], + "AU1miQGsga5YmXb6P3KMZjRL6aSTULNyRXBaQadRda9Dx6tn9xNt": [ + { + "amount": "147.555982471", + "slot": { + "period": 107421, + "thread": 7 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 235324, + "thread": 15 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 462147, + "thread": 6 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 546082, + "thread": 4 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 657744, + "thread": 18 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 892496, + "thread": 0 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1011725, + "thread": 0 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1259008, + "thread": 28 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1459725, + "thread": 7 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1545812, + "thread": 12 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1771688, + "thread": 11 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1950579, + "thread": 12 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 1984102, + "thread": 29 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 2234243, + "thread": 28 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 2425777, + "thread": 7 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 2506353, + "thread": 9 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 2681619, + "thread": 22 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 2820267, + "thread": 12 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3100185, + "thread": 30 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3244702, + "thread": 28 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3366379, + "thread": 27 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3466698, + "thread": 12 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3633356, + "thread": 5 + } + }, + { + "amount": "147.555982471", + "slot": { + "period": 3818406, + "thread": 26 + } + } + ], + "AU1miQgixAvREPD4ao9JBS8S5xDnPrkqpsWzpzCpqrDUfXNxH2qn": [ + { + "amount": "244.466875823", + "slot": { + "period": 137738, + "thread": 14 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 175960, + "thread": 13 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 450459, + "thread": 31 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 588253, + "thread": 18 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 742310, + "thread": 0 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 851362, + "thread": 11 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1134373, + "thread": 26 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1296995, + "thread": 2 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1464629, + "thread": 19 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1518174, + "thread": 16 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1786998, + "thread": 2 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1857522, + "thread": 19 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 1988883, + "thread": 30 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 2182311, + "thread": 11 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 2414440, + "thread": 14 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 2502152, + "thread": 27 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 2722648, + "thread": 22 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 2819320, + "thread": 27 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3069450, + "thread": 0 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3124724, + "thread": 4 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3303576, + "thread": 31 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3577762, + "thread": 29 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3768831, + "thread": 27 + } + }, + { + "amount": "244.466875823", + "slot": { + "period": 3875698, + "thread": 5 + } + } + ], + "AU1miohmkfPSig2wYu8GtaUf8i5WkiRtVDUtQ6c7hq2n3Nb4z7YL": [ + { + "amount": "256.307574463", + "slot": { + "period": 46913, + "thread": 31 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 307229, + "thread": 17 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 396779, + "thread": 29 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 623225, + "thread": 27 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 762241, + "thread": 16 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 849213, + "thread": 15 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1142538, + "thread": 12 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1308429, + "thread": 27 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1352962, + "thread": 22 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1558699, + "thread": 12 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1721581, + "thread": 21 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 1843654, + "thread": 22 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2028637, + "thread": 17 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2155069, + "thread": 10 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2387314, + "thread": 7 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2578900, + "thread": 30 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2736597, + "thread": 3 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 2932471, + "thread": 26 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 3064428, + "thread": 6 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 3149570, + "thread": 18 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 3322337, + "thread": 0 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 3468808, + "thread": 25 + } + }, + { + "amount": "256.307574463", + "slot": { + "period": 3674490, + "thread": 0 + } + }, + { + "amount": "256.307574462", + "slot": { + "period": 3848930, + "thread": 23 + } + } + ], + "AU1mkX6tPDLuoWsEE4wwEc3fTcGZM3ynEVtmLdYs7c355gWxhPkb": [ + { + "amount": "246.797332667", + "slot": { + "period": 73547, + "thread": 12 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 299939, + "thread": 24 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 334409, + "thread": 5 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 596269, + "thread": 13 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 806899, + "thread": 10 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 974264, + "thread": 7 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1057582, + "thread": 8 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1237506, + "thread": 10 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1343971, + "thread": 9 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1628247, + "thread": 5 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1659729, + "thread": 21 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 1913004, + "thread": 29 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2096572, + "thread": 10 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2291662, + "thread": 31 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2369965, + "thread": 11 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2586123, + "thread": 24 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2727774, + "thread": 21 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 2815863, + "thread": 7 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 3007229, + "thread": 26 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 3263699, + "thread": 28 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 3419023, + "thread": 28 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 3589106, + "thread": 9 + } + }, + { + "amount": "246.797332667", + "slot": { + "period": 3735164, + "thread": 30 + } + }, + { + "amount": "246.797332666", + "slot": { + "period": 3817493, + "thread": 18 + } + } + ], + "AU1mkuHb25q3emKEWvBHH63SNCX5dSPtxXuuKsxwSaZ7XL9CXsXU": [ + { + "amount": "161.898032222", + "slot": { + "period": 41064, + "thread": 30 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 283458, + "thread": 16 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 329218, + "thread": 2 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 628773, + "thread": 9 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 709034, + "thread": 17 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 843411, + "thread": 16 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1024260, + "thread": 5 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1259381, + "thread": 17 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1386273, + "thread": 22 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1570710, + "thread": 18 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1768446, + "thread": 15 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 1830581, + "thread": 14 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2098470, + "thread": 3 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2267419, + "thread": 30 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2371064, + "thread": 20 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2526557, + "thread": 8 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2749767, + "thread": 3 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 2951859, + "thread": 24 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 3084418, + "thread": 21 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 3238599, + "thread": 15 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 3290162, + "thread": 14 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 3470471, + "thread": 2 + } + }, + { + "amount": "161.898032222", + "slot": { + "period": 3676845, + "thread": 18 + } + }, + { + "amount": "161.898032221", + "slot": { + "period": 3899295, + "thread": 2 + } + } + ], + "AU1mn9WYiuqFspCZD5VHGp4yZoqHDr1CxvEEFoXiNhJ7VRSsndYT": [ + { + "amount": "195.138062740", + "slot": { + "period": 40540, + "thread": 7 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 221399, + "thread": 22 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 485950, + "thread": 2 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 584059, + "thread": 11 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 786415, + "thread": 27 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 946270, + "thread": 11 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1023127, + "thread": 26 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1309453, + "thread": 24 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1369172, + "thread": 18 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1634938, + "thread": 27 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1699993, + "thread": 15 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1901597, + "thread": 27 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 1995446, + "thread": 0 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2224837, + "thread": 2 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2459168, + "thread": 17 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2592780, + "thread": 28 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2695885, + "thread": 22 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2915375, + "thread": 25 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 2968314, + "thread": 3 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 3196866, + "thread": 19 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 3357378, + "thread": 16 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 3578536, + "thread": 0 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 3664385, + "thread": 7 + } + }, + { + "amount": "195.138062740", + "slot": { + "period": 3858858, + "thread": 28 + } + } + ], + "AU1mnAwch52qgk19pZRxA2gRdyjsWweh14wNdDpiTuyWRmrUAiqa": [ + { + "amount": "79.326933488", + "slot": { + "period": 56055, + "thread": 16 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 317338, + "thread": 25 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 367764, + "thread": 20 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 528893, + "thread": 22 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 706824, + "thread": 25 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 871288, + "thread": 15 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1114835, + "thread": 3 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1243112, + "thread": 11 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1394110, + "thread": 22 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1599111, + "thread": 19 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1649679, + "thread": 4 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 1829164, + "thread": 4 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2106716, + "thread": 2 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2224488, + "thread": 29 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2426337, + "thread": 21 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2618781, + "thread": 30 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2648069, + "thread": 0 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 2941627, + "thread": 14 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3000848, + "thread": 7 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3216912, + "thread": 15 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3394678, + "thread": 14 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3476043, + "thread": 10 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3758565, + "thread": 28 + } + }, + { + "amount": "79.326933488", + "slot": { + "period": 3869001, + "thread": 6 + } + } + ], + "AU1mnFM5pD8t39uDAxrby6Z4YFRpiLGv6yN2FdijYzmahmAwChwn": [ + { + "amount": "141.945076857", + "slot": { + "period": 154014, + "thread": 12 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 197786, + "thread": 17 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 374923, + "thread": 10 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 492974, + "thread": 6 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 728258, + "thread": 18 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 930947, + "thread": 26 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1074119, + "thread": 25 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1204075, + "thread": 13 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1469899, + "thread": 18 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1495558, + "thread": 17 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1693441, + "thread": 30 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 1850829, + "thread": 3 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2020054, + "thread": 27 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2259731, + "thread": 15 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2424348, + "thread": 16 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2510254, + "thread": 9 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2655504, + "thread": 12 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 2921473, + "thread": 5 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 3068378, + "thread": 14 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 3225298, + "thread": 26 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 3301888, + "thread": 14 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 3464529, + "thread": 20 + } + }, + { + "amount": "141.945076857", + "slot": { + "period": 3750738, + "thread": 15 + } + }, + { + "amount": "141.945076849", + "slot": { + "period": 3888535, + "thread": 20 + } + } + ], + "AU1mo3eYKiLpzbV9jxUoW13kR3cbxVpZi5jzTh9v45xoTW71XQNC": [ + { + "amount": "83.959897696", + "slot": { + "period": 108409, + "thread": 1 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 295630, + "thread": 19 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 467587, + "thread": 23 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 536351, + "thread": 20 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 813716, + "thread": 0 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 979236, + "thread": 20 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 997663, + "thread": 7 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1289749, + "thread": 23 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1361366, + "thread": 31 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1485749, + "thread": 30 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1767924, + "thread": 17 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1949683, + "thread": 17 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 1995249, + "thread": 30 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 2178642, + "thread": 11 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 2330875, + "thread": 23 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 2576660, + "thread": 13 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 2674212, + "thread": 13 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 2922472, + "thread": 16 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 3017463, + "thread": 11 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 3271890, + "thread": 28 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 3353162, + "thread": 25 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 3534637, + "thread": 10 + } + }, + { + "amount": "83.959897696", + "slot": { + "period": 3643433, + "thread": 22 + } + }, + { + "amount": "83.959897700", + "slot": { + "period": 3829471, + "thread": 14 + } + } + ], + "AU1moLEPL6fhRZBrSXt1rMJbEzCzNuSLwH9BLWKxcXJsKYPBhDTt": [ + { + "amount": "132.460970504", + "slot": { + "period": 71458, + "thread": 27 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 287006, + "thread": 24 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 455441, + "thread": 29 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 652025, + "thread": 10 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 699841, + "thread": 7 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 882330, + "thread": 16 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1035755, + "thread": 0 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1263048, + "thread": 19 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1456824, + "thread": 28 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1554770, + "thread": 26 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1742219, + "thread": 0 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 1844340, + "thread": 25 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2087375, + "thread": 21 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2221929, + "thread": 26 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2392654, + "thread": 18 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2610825, + "thread": 10 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2677158, + "thread": 19 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 2875917, + "thread": 21 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 3019314, + "thread": 27 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 3202847, + "thread": 5 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 3299058, + "thread": 10 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 3533049, + "thread": 14 + } + }, + { + "amount": "132.460970504", + "slot": { + "period": 3665999, + "thread": 21 + } + }, + { + "amount": "132.460970511", + "slot": { + "period": 3848139, + "thread": 24 + } + } + ], + "AU1mocTXzmNYEwFHago3rP6nkRLnbHGNsQh3Gmc5pe5XxZJ6uiJH": [ + { + "amount": "222.368346723", + "slot": { + "period": 148221, + "thread": 24 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 292140, + "thread": 26 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 346158, + "thread": 19 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 562541, + "thread": 9 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 748031, + "thread": 2 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 922108, + "thread": 3 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1102931, + "thread": 1 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1254596, + "thread": 19 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1317856, + "thread": 4 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1545624, + "thread": 18 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1693020, + "thread": 17 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 1891046, + "thread": 28 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2104007, + "thread": 8 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2188234, + "thread": 11 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2358624, + "thread": 12 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2484298, + "thread": 22 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2638285, + "thread": 30 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 2861943, + "thread": 12 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 3046375, + "thread": 22 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 3183048, + "thread": 18 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 3395772, + "thread": 17 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 3573453, + "thread": 7 + } + }, + { + "amount": "222.368346723", + "slot": { + "period": 3654257, + "thread": 9 + } + }, + { + "amount": "222.368346719", + "slot": { + "period": 3876106, + "thread": 9 + } + } + ], + "AU1moyAcgb9LJ8VdQvgSog8mBVHoATWPTFks5tqGHaGTRzeqyMZ8": [ + { + "amount": "372.621541618", + "slot": { + "period": 36153, + "thread": 13 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 278240, + "thread": 19 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 489975, + "thread": 9 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 626730, + "thread": 11 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 759261, + "thread": 24 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 969230, + "thread": 22 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 994790, + "thread": 16 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 1268620, + "thread": 31 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 1320339, + "thread": 0 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 1499763, + "thread": 1 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 1688438, + "thread": 29 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 1818626, + "thread": 10 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2072987, + "thread": 23 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2152186, + "thread": 26 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2447876, + "thread": 3 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2509391, + "thread": 7 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2764820, + "thread": 28 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 2926990, + "thread": 2 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 3114013, + "thread": 29 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 3261945, + "thread": 3 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 3346394, + "thread": 27 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 3488453, + "thread": 25 + } + }, + { + "amount": "372.621541618", + "slot": { + "period": 3623912, + "thread": 22 + } + }, + { + "amount": "372.621541617", + "slot": { + "period": 3902885, + "thread": 18 + } + } + ], + "AU1mpSMqsdng8HFnN6ARyjvkAybvTR9oQ9zU6CE4UrdX21wETmao": [ + { + "amount": "331.698243485", + "slot": { + "period": 37391, + "thread": 1 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 239439, + "thread": 3 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 373646, + "thread": 12 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 494219, + "thread": 25 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 814358, + "thread": 26 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 869218, + "thread": 17 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1075047, + "thread": 2 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1316759, + "thread": 13 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1332688, + "thread": 18 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1536943, + "thread": 20 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1680416, + "thread": 13 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 1842208, + "thread": 12 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2073639, + "thread": 26 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2242027, + "thread": 9 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2364443, + "thread": 28 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2620690, + "thread": 18 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2672390, + "thread": 10 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 2830817, + "thread": 19 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 3056575, + "thread": 23 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 3261746, + "thread": 18 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 3329550, + "thread": 31 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 3501325, + "thread": 24 + } + }, + { + "amount": "331.698243485", + "slot": { + "period": 3715721, + "thread": 5 + } + }, + { + "amount": "331.698243475", + "slot": { + "period": 3833772, + "thread": 10 + } + } + ], + "AU1mpioA7JsMdK3yCVzCeXMMzVGpzJW7HSgxZadN5fDtfozRxFUK": [ + { + "amount": "335.430842515", + "slot": { + "period": 112924, + "thread": 17 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 222473, + "thread": 4 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 368381, + "thread": 4 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 603141, + "thread": 16 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 813217, + "thread": 2 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 973406, + "thread": 30 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1125568, + "thread": 19 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1287048, + "thread": 24 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1352739, + "thread": 25 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1484479, + "thread": 28 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1758485, + "thread": 0 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 1859230, + "thread": 20 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2013768, + "thread": 6 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2271288, + "thread": 24 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2371024, + "thread": 25 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2531678, + "thread": 1 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2742311, + "thread": 21 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2819569, + "thread": 15 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 2968442, + "thread": 2 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 3158206, + "thread": 15 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 3391256, + "thread": 30 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 3477755, + "thread": 14 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 3682407, + "thread": 29 + } + }, + { + "amount": "335.430842515", + "slot": { + "period": 3802241, + "thread": 19 + } + } + ], + "AU1mqGEu65zLjUYsSC8dSvh5xz8DiibSfSCQiS2QhTxyYRrn19xR": [ + { + "amount": "404.142669732", + "slot": { + "period": 158909, + "thread": 23 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 263388, + "thread": 21 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 420384, + "thread": 14 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 505420, + "thread": 12 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 654582, + "thread": 5 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 977947, + "thread": 27 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1039054, + "thread": 30 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1176558, + "thread": 15 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1378439, + "thread": 30 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1480989, + "thread": 31 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1761082, + "thread": 23 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 1833214, + "thread": 10 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2135432, + "thread": 24 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2144289, + "thread": 28 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2332234, + "thread": 9 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2623819, + "thread": 8 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2686526, + "thread": 5 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2823963, + "thread": 0 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 2992901, + "thread": 11 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 3146712, + "thread": 1 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 3321705, + "thread": 8 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 3500387, + "thread": 6 + } + }, + { + "amount": "404.142669732", + "slot": { + "period": 3766535, + "thread": 27 + } + }, + { + "amount": "404.142669723", + "slot": { + "period": 3820180, + "thread": 25 + } + } + ], + "AU1mr9UNdp6THG6VF1amTbqvJRJWbFbPhxE2ZbwWC4Eu5CRSnQcN": [ + { + "amount": "536.087765951", + "slot": { + "period": 80979, + "thread": 13 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 265665, + "thread": 27 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 483255, + "thread": 18 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 555504, + "thread": 2 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 702416, + "thread": 7 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 956848, + "thread": 1 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 984342, + "thread": 1 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 1158566, + "thread": 23 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 1331681, + "thread": 31 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 1485337, + "thread": 1 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 1742330, + "thread": 23 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 1964994, + "thread": 26 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2123004, + "thread": 18 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2226263, + "thread": 11 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2339655, + "thread": 18 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2559126, + "thread": 2 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2758823, + "thread": 8 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 2837760, + "thread": 10 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 3033991, + "thread": 26 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 3181503, + "thread": 18 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 3343141, + "thread": 12 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 3532749, + "thread": 31 + } + }, + { + "amount": "536.087765951", + "slot": { + "period": 3643427, + "thread": 13 + } + }, + { + "amount": "536.087765952", + "slot": { + "period": 3800247, + "thread": 8 + } + } + ], + "AU1msWw9uAwSrTxWqfzgkmsEkZGs8HR6RaCwntNvhFevwbfxNPk3": [ + { + "amount": "405.492601981", + "slot": { + "period": 53891, + "thread": 24 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 289857, + "thread": 25 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 448366, + "thread": 16 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 628950, + "thread": 27 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 703856, + "thread": 26 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 874737, + "thread": 21 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1137678, + "thread": 2 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1244001, + "thread": 29 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1427752, + "thread": 16 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1534460, + "thread": 8 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1745766, + "thread": 23 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 1897016, + "thread": 22 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2036395, + "thread": 1 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2253872, + "thread": 0 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2446277, + "thread": 23 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2591691, + "thread": 18 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2668701, + "thread": 1 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2953277, + "thread": 25 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 2991189, + "thread": 31 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 3206943, + "thread": 21 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 3390971, + "thread": 6 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 3528460, + "thread": 1 + } + }, + { + "amount": "405.492601981", + "slot": { + "period": 3690371, + "thread": 31 + } + }, + { + "amount": "405.492601979", + "slot": { + "period": 3937349, + "thread": 0 + } + } + ], + "AU1msaiTmEg43jheN12Q1JdfAUA9P86PmX1oi7fGY1kX8mrHm1FM": [ + { + "amount": "52.347677715", + "slot": { + "period": 15772, + "thread": 23 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 274519, + "thread": 17 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 399629, + "thread": 16 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 621618, + "thread": 17 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 715362, + "thread": 16 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 885559, + "thread": 29 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1101069, + "thread": 6 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1196752, + "thread": 13 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1320349, + "thread": 19 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1531752, + "thread": 14 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1710364, + "thread": 18 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 1831459, + "thread": 18 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2065531, + "thread": 27 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2156812, + "thread": 18 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2404952, + "thread": 30 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2569953, + "thread": 18 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2715563, + "thread": 2 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2878622, + "thread": 27 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 2965368, + "thread": 29 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 3249783, + "thread": 16 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 3366459, + "thread": 30 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 3576286, + "thread": 31 + } + }, + { + "amount": "52.347677715", + "slot": { + "period": 3671325, + "thread": 25 + } + }, + { + "amount": "52.347677704", + "slot": { + "period": 3851458, + "thread": 28 + } + } + ], + "AU1mtq5VWZzThNs73yW6vftDaBCp5DwdF7xCNmEaeFv8Ppa8vzfK": [ + { + "amount": "113.431145293", + "slot": { + "period": 67302, + "thread": 1 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 173187, + "thread": 21 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 376031, + "thread": 31 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 551051, + "thread": 11 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 669551, + "thread": 4 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 912592, + "thread": 2 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1078369, + "thread": 23 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1182025, + "thread": 23 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1377621, + "thread": 23 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1629078, + "thread": 1 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1688201, + "thread": 7 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 1898300, + "thread": 25 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2013793, + "thread": 4 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2218083, + "thread": 21 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2356645, + "thread": 6 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2621771, + "thread": 9 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2640021, + "thread": 15 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 2868460, + "thread": 19 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 3092446, + "thread": 0 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 3166273, + "thread": 11 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 3447181, + "thread": 27 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 3600893, + "thread": 22 + } + }, + { + "amount": "113.431145293", + "slot": { + "period": 3726385, + "thread": 31 + } + }, + { + "amount": "113.431145303", + "slot": { + "period": 3859245, + "thread": 11 + } + } + ], + "AU1mtyD5S9vkLpGBKr7F3fcUvHT8bnBP3fauQAdrqVZvJnWXQZjj": [ + { + "amount": "98.894803349", + "slot": { + "period": 132554, + "thread": 28 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 191681, + "thread": 25 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 432636, + "thread": 4 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 512658, + "thread": 4 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 769082, + "thread": 25 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 944612, + "thread": 7 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1095753, + "thread": 28 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1311319, + "thread": 4 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1447585, + "thread": 13 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1505525, + "thread": 30 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1713678, + "thread": 20 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 1810417, + "thread": 25 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2030461, + "thread": 21 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2172874, + "thread": 12 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2379602, + "thread": 7 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2466843, + "thread": 24 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2744850, + "thread": 30 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 2903579, + "thread": 2 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 3061654, + "thread": 31 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 3258508, + "thread": 11 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 3295022, + "thread": 17 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 3451766, + "thread": 21 + } + }, + { + "amount": "98.894803349", + "slot": { + "period": 3723800, + "thread": 18 + } + }, + { + "amount": "98.894803340", + "slot": { + "period": 3814247, + "thread": 22 + } + } + ], + "AU1muaYprDohNtCryGBWH3rwrayGV4a2RHVJQgVZ1CDshPPa7PnD": [ + { + "amount": "293.118401745", + "slot": { + "period": 122949, + "thread": 16 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 194449, + "thread": 7 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 374966, + "thread": 9 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 607156, + "thread": 29 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 802568, + "thread": 21 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 887448, + "thread": 12 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1023947, + "thread": 19 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1239634, + "thread": 18 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1476339, + "thread": 8 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1624836, + "thread": 16 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1650359, + "thread": 28 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1970586, + "thread": 3 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 1976457, + "thread": 2 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 2234782, + "thread": 1 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 2422873, + "thread": 15 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 2532044, + "thread": 15 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 2697244, + "thread": 30 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 2823094, + "thread": 5 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 3086160, + "thread": 2 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 3270875, + "thread": 31 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 3358923, + "thread": 10 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 3586079, + "thread": 11 + } + }, + { + "amount": "293.118401745", + "slot": { + "period": 3746306, + "thread": 4 + } + }, + { + "amount": "293.118401746", + "slot": { + "period": 3914901, + "thread": 25 + } + } + ], + "AU1mukF2S42r9dCNoryPZWksFT5msveUpvsSfu6Szk1ZroAbLf5t": [ + { + "amount": "91.228583305", + "slot": { + "period": 149482, + "thread": 24 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 184010, + "thread": 13 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 372114, + "thread": 16 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 544112, + "thread": 16 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 805684, + "thread": 7 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 915939, + "thread": 19 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1035424, + "thread": 24 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1242941, + "thread": 9 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1447980, + "thread": 29 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1512707, + "thread": 26 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1731323, + "thread": 7 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 1862586, + "thread": 31 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2052378, + "thread": 15 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2200928, + "thread": 1 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2380602, + "thread": 11 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2622379, + "thread": 1 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2661348, + "thread": 30 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 2872133, + "thread": 17 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 3109778, + "thread": 28 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 3154713, + "thread": 18 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 3324820, + "thread": 7 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 3530571, + "thread": 9 + } + }, + { + "amount": "91.228583305", + "slot": { + "period": 3765138, + "thread": 5 + } + }, + { + "amount": "91.228583296", + "slot": { + "period": 3834913, + "thread": 15 + } + } + ], + "AU1mv65oRY5CUxBLxeGhiY2X9ytJwJDev8LKFDWwG7DcN52o5doW": [ + { + "amount": "127.730886690", + "slot": { + "period": 107458, + "thread": 16 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 189545, + "thread": 30 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 468376, + "thread": 28 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 548442, + "thread": 28 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 764839, + "thread": 22 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 941546, + "thread": 2 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1114137, + "thread": 28 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1201160, + "thread": 30 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1417034, + "thread": 2 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1553795, + "thread": 13 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1768783, + "thread": 3 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 1908360, + "thread": 24 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2139688, + "thread": 20 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2252704, + "thread": 8 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2312965, + "thread": 14 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2606390, + "thread": 4 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2628090, + "thread": 24 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 2902034, + "thread": 1 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 3054421, + "thread": 5 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 3190892, + "thread": 30 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 3355774, + "thread": 12 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 3583870, + "thread": 7 + } + }, + { + "amount": "127.730886690", + "slot": { + "period": 3759779, + "thread": 15 + } + }, + { + "amount": "127.730886691", + "slot": { + "period": 3813537, + "thread": 0 + } + } + ], + "AU1mvcP7vRgc6KHPyLRA7XJ8Bvm9eAFe2frCCoq81idu8pTY4ECS": [ + { + "amount": "82.352902463", + "slot": { + "period": 126579, + "thread": 14 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 301561, + "thread": 28 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 457851, + "thread": 25 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 553490, + "thread": 10 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 660548, + "thread": 18 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 951939, + "thread": 6 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1010544, + "thread": 9 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1282648, + "thread": 25 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1345465, + "thread": 6 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1606297, + "thread": 10 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1759511, + "thread": 13 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1815877, + "thread": 20 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 1993686, + "thread": 22 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 2269116, + "thread": 12 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 2347103, + "thread": 22 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 2611826, + "thread": 12 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 2770500, + "thread": 25 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 2919433, + "thread": 8 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 3041958, + "thread": 3 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 3146370, + "thread": 2 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 3446361, + "thread": 2 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 3471388, + "thread": 2 + } + }, + { + "amount": "82.352902463", + "slot": { + "period": 3779527, + "thread": 20 + } + }, + { + "amount": "82.352902466", + "slot": { + "period": 3812614, + "thread": 31 + } + } + ], + "AU1mvmq3NHjj9eJm3uqAxzJ3gNZDc2G1k7eSfZrtMioj344n5a7V": [ + { + "amount": "386.605921957", + "slot": { + "period": 157367, + "thread": 0 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 212922, + "thread": 26 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 356153, + "thread": 3 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 618668, + "thread": 27 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 740489, + "thread": 21 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 912484, + "thread": 28 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1114153, + "thread": 4 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1306962, + "thread": 19 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1383425, + "thread": 26 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1544148, + "thread": 4 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1767164, + "thread": 17 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 1817777, + "thread": 11 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2085865, + "thread": 2 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2279306, + "thread": 20 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2456927, + "thread": 8 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2541232, + "thread": 14 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2676620, + "thread": 12 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 2802463, + "thread": 19 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 3089229, + "thread": 20 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 3257235, + "thread": 4 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 3324385, + "thread": 5 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 3615144, + "thread": 24 + } + }, + { + "amount": "386.605921957", + "slot": { + "period": 3684252, + "thread": 15 + } + }, + { + "amount": "386.605921953", + "slot": { + "period": 3929970, + "thread": 16 + } + } + ], + "AU1myEaZhAGJJxZcQ8jyq124n81ALY8czmXgP4byCLoNJyKUnbDv": [ + { + "amount": "72.339659186", + "slot": { + "period": 15986, + "thread": 25 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 211596, + "thread": 31 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 368551, + "thread": 18 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 530301, + "thread": 8 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 820571, + "thread": 30 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 903288, + "thread": 20 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1113721, + "thread": 0 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1229552, + "thread": 16 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1413196, + "thread": 13 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1579614, + "thread": 31 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1786386, + "thread": 0 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 1909782, + "thread": 30 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2093117, + "thread": 19 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2189858, + "thread": 28 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2399733, + "thread": 16 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2492477, + "thread": 6 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2628899, + "thread": 29 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 2922584, + "thread": 28 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 3031061, + "thread": 25 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 3210553, + "thread": 1 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 3366972, + "thread": 27 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 3597568, + "thread": 23 + } + }, + { + "amount": "72.339659186", + "slot": { + "period": 3703749, + "thread": 19 + } + }, + { + "amount": "72.339659188", + "slot": { + "period": 3833150, + "thread": 22 + } + } + ], + "AU1myhN9udCprKxi7QS353oSPAVCyGS4S32gDEYRsGJF5ovvPGWq": [ + { + "amount": "56.544830850", + "slot": { + "period": 151123, + "thread": 16 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 217345, + "thread": 15 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 423667, + "thread": 29 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 525247, + "thread": 17 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 669211, + "thread": 20 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 869820, + "thread": 12 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1078431, + "thread": 1 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1176985, + "thread": 24 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1318195, + "thread": 30 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1600885, + "thread": 18 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1686502, + "thread": 15 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 1963765, + "thread": 31 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2043695, + "thread": 23 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2207249, + "thread": 4 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2412435, + "thread": 27 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2562861, + "thread": 24 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2691346, + "thread": 2 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 2806057, + "thread": 26 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 3045987, + "thread": 29 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 3266923, + "thread": 23 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 3306302, + "thread": 17 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 3590779, + "thread": 16 + } + }, + { + "amount": "56.544830850", + "slot": { + "period": 3742720, + "thread": 9 + } + }, + { + "amount": "56.544830849", + "slot": { + "period": 3851444, + "thread": 0 + } + } + ], + "AU1myjUUYfSyxJaq1kgWMmp5k9ZJ2Xx6BM4QxuBX2fStT7L4gUX": [ + { + "amount": "80.509552128", + "slot": { + "period": 136952, + "thread": 11 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 297343, + "thread": 2 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 476254, + "thread": 31 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 598254, + "thread": 20 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 663242, + "thread": 12 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 896257, + "thread": 23 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 992766, + "thread": 25 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 1245404, + "thread": 29 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 1404381, + "thread": 26 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 1585312, + "thread": 12 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 1679718, + "thread": 5 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 1908885, + "thread": 11 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2053776, + "thread": 7 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2217076, + "thread": 30 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2317315, + "thread": 8 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2555316, + "thread": 14 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2743912, + "thread": 25 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2941123, + "thread": 6 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 2991008, + "thread": 23 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 3220271, + "thread": 25 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 3372830, + "thread": 30 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 3606556, + "thread": 5 + } + }, + { + "amount": "80.509552128", + "slot": { + "period": 3645415, + "thread": 21 + } + }, + { + "amount": "80.509552126", + "slot": { + "period": 3783019, + "thread": 18 + } + } + ], + "AU1myo4ttrGvZ11bSdubvKMDQuUts2mJp6Dy3znh9L4P1pGoh77H": [ + { + "amount": "120.449556369", + "slot": { + "period": 123200, + "thread": 12 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 214835, + "thread": 24 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 403239, + "thread": 13 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 557655, + "thread": 28 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 698973, + "thread": 7 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 977405, + "thread": 10 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1131424, + "thread": 25 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1200737, + "thread": 17 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1408307, + "thread": 4 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1541754, + "thread": 25 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1689320, + "thread": 18 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 1893838, + "thread": 26 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2142031, + "thread": 13 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2226712, + "thread": 6 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2426241, + "thread": 25 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2556882, + "thread": 0 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2705015, + "thread": 21 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 2845412, + "thread": 6 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 3074106, + "thread": 27 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 3261590, + "thread": 0 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 3308281, + "thread": 24 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 3553011, + "thread": 20 + } + }, + { + "amount": "120.449556369", + "slot": { + "period": 3722207, + "thread": 0 + } + }, + { + "amount": "120.449556375", + "slot": { + "period": 3809126, + "thread": 0 + } + } + ], + "AU1n189iyfKkcyTn7TqibP3caTAZQG9wisbLuTghKo2Dtmrk3DTj": [ + { + "amount": "311.473256907", + "slot": { + "period": 60226, + "thread": 12 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 192689, + "thread": 14 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 329345, + "thread": 22 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 537706, + "thread": 6 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 792300, + "thread": 22 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 839242, + "thread": 7 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1004801, + "thread": 5 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1293940, + "thread": 5 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1449514, + "thread": 5 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1549429, + "thread": 28 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1762214, + "thread": 24 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 1921885, + "thread": 4 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2091301, + "thread": 22 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2175240, + "thread": 0 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2460059, + "thread": 0 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2588454, + "thread": 13 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2728632, + "thread": 19 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 2863135, + "thread": 7 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 3056207, + "thread": 26 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 3128054, + "thread": 10 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 3419388, + "thread": 4 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 3498698, + "thread": 3 + } + }, + { + "amount": "311.473256907", + "slot": { + "period": 3711652, + "thread": 8 + } + }, + { + "amount": "311.473256896", + "slot": { + "period": 3835695, + "thread": 23 + } + } + ], + "AU1n1YuSxxL7i8sZeBswN1HfmgFVfYKgr6ySYC88Gdn9rC1L3Cr": [ + { + "amount": "541.214189369", + "slot": { + "period": 56798, + "thread": 8 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 174176, + "thread": 16 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 399167, + "thread": 31 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 581487, + "thread": 11 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 676307, + "thread": 7 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 889534, + "thread": 30 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1098437, + "thread": 0 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1185116, + "thread": 31 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1440400, + "thread": 15 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1587831, + "thread": 26 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1758035, + "thread": 1 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 1898007, + "thread": 19 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2056198, + "thread": 16 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2294912, + "thread": 11 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2320532, + "thread": 9 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2547598, + "thread": 31 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2754349, + "thread": 31 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 2941142, + "thread": 15 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 3047822, + "thread": 25 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 3187224, + "thread": 1 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 3299541, + "thread": 25 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 3606475, + "thread": 10 + } + }, + { + "amount": "541.214189369", + "slot": { + "period": 3768607, + "thread": 26 + } + }, + { + "amount": "541.214189378", + "slot": { + "period": 3847335, + "thread": 31 + } + } + ], + "AU1n1qvagHaMPHWp7QrvqBVCSRV4GrWsMNW8yZyxcUDKmBZfweUK": [ + { + "amount": "210.749768242", + "slot": { + "period": 20952, + "thread": 11 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 296713, + "thread": 27 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 328169, + "thread": 25 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 596529, + "thread": 12 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 760465, + "thread": 13 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 946292, + "thread": 11 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1101997, + "thread": 10 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1214297, + "thread": 6 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1411756, + "thread": 1 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1516205, + "thread": 15 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1705396, + "thread": 24 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 1870410, + "thread": 14 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2097614, + "thread": 9 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2197951, + "thread": 15 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2452221, + "thread": 18 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2480021, + "thread": 5 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2735534, + "thread": 4 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 2888337, + "thread": 25 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 3114999, + "thread": 20 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 3130005, + "thread": 28 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 3313281, + "thread": 1 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 3500628, + "thread": 17 + } + }, + { + "amount": "210.749768242", + "slot": { + "period": 3633363, + "thread": 31 + } + }, + { + "amount": "210.749768248", + "slot": { + "period": 3940949, + "thread": 28 + } + } + ], + "AU1n1u9fEZT8NbeyV3gR9xoWA98FJzD8cHqZuBmL8iUJzYgiTcdJ": [ + { + "amount": "501.554426146", + "slot": { + "period": 149518, + "thread": 9 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 193395, + "thread": 3 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 435307, + "thread": 5 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 564902, + "thread": 26 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 768666, + "thread": 29 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 911068, + "thread": 26 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1073523, + "thread": 24 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1216883, + "thread": 22 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1371815, + "thread": 17 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1508626, + "thread": 1 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1765897, + "thread": 21 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 1816288, + "thread": 30 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2011148, + "thread": 6 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2264952, + "thread": 18 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2413542, + "thread": 11 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2528325, + "thread": 30 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2656964, + "thread": 26 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 2871268, + "thread": 12 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3050692, + "thread": 17 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3189707, + "thread": 28 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3436437, + "thread": 11 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3468393, + "thread": 5 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3677878, + "thread": 17 + } + }, + { + "amount": "501.554426146", + "slot": { + "period": 3805891, + "thread": 22 + } + } + ], + "AU1n24isjh6UdgcYaM4HLRAfcnondUPv8HaFK5foxv9qfFLT44nh": [ + { + "amount": "255.532145996", + "slot": { + "period": 50922, + "thread": 6 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 241916, + "thread": 20 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 485157, + "thread": 10 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 498613, + "thread": 20 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 707283, + "thread": 24 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 846286, + "thread": 2 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1148897, + "thread": 13 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1251334, + "thread": 1 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1345670, + "thread": 0 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1640661, + "thread": 16 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1805880, + "thread": 23 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1899091, + "thread": 8 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 1984505, + "thread": 11 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2277276, + "thread": 25 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2442795, + "thread": 28 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2482803, + "thread": 10 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2708841, + "thread": 18 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2867640, + "thread": 3 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 2975454, + "thread": 25 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 3181328, + "thread": 17 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 3348813, + "thread": 2 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 3527556, + "thread": 18 + } + }, + { + "amount": "255.532145996", + "slot": { + "period": 3766914, + "thread": 27 + } + }, + { + "amount": "255.532146003", + "slot": { + "period": 3886604, + "thread": 9 + } + } + ], + "AU1n4fqttnv5JRxJvkuNrS4yrSDxPEAUZVbd4LJNUVQRceWknDRR": [ + { + "amount": "72.860361847", + "slot": { + "period": 148080, + "thread": 10 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 253712, + "thread": 18 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 446504, + "thread": 17 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 519685, + "thread": 30 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 707600, + "thread": 20 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 935362, + "thread": 5 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1036391, + "thread": 12 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1172851, + "thread": 28 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1376804, + "thread": 11 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1593088, + "thread": 24 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1659273, + "thread": 26 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 1843009, + "thread": 26 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2057508, + "thread": 24 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2195538, + "thread": 6 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2398393, + "thread": 12 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2600551, + "thread": 28 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2730812, + "thread": 4 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 2882873, + "thread": 15 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 3010268, + "thread": 2 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 3189224, + "thread": 19 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 3290706, + "thread": 24 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 3488351, + "thread": 20 + } + }, + { + "amount": "72.860361847", + "slot": { + "period": 3739498, + "thread": 24 + } + }, + { + "amount": "72.860361855", + "slot": { + "period": 3847032, + "thread": 5 + } + } + ], + "AU1n6d3crCoSEyQ428y56sLpYtNgGTJaRoMP7brt2QJJXv3ydWkL": [ + { + "amount": "632.966406891", + "slot": { + "period": 102823, + "thread": 14 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 285143, + "thread": 26 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 324728, + "thread": 6 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 648361, + "thread": 28 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 737826, + "thread": 6 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 826477, + "thread": 13 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1009655, + "thread": 15 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1247104, + "thread": 8 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1385099, + "thread": 14 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1538479, + "thread": 20 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1779735, + "thread": 19 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 1949645, + "thread": 29 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2012599, + "thread": 25 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2210860, + "thread": 18 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2406923, + "thread": 17 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2513333, + "thread": 0 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2650650, + "thread": 19 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2932520, + "thread": 17 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 2999234, + "thread": 22 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 3220299, + "thread": 1 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 3403826, + "thread": 4 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 3563279, + "thread": 10 + } + }, + { + "amount": "632.966406891", + "slot": { + "period": 3731305, + "thread": 17 + } + }, + { + "amount": "632.966406901", + "slot": { + "period": 3875355, + "thread": 24 + } + } + ], + "AU1n72FND518Zc34NGZFv7tNJ8CY5wDYqv3x2q4bcRRMwYDoD8G": [ + { + "amount": "183.025473011", + "slot": { + "period": 67899, + "thread": 24 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 246441, + "thread": 11 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 458361, + "thread": 27 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 527317, + "thread": 28 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 655258, + "thread": 18 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 976908, + "thread": 22 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1049726, + "thread": 0 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1296667, + "thread": 30 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1327007, + "thread": 11 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1619993, + "thread": 31 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1759371, + "thread": 14 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 1920687, + "thread": 5 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2051517, + "thread": 30 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2252184, + "thread": 31 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2311190, + "thread": 27 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2562645, + "thread": 24 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2632925, + "thread": 12 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2951469, + "thread": 21 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 2981824, + "thread": 11 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 3215376, + "thread": 16 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 3411927, + "thread": 25 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 3559587, + "thread": 7 + } + }, + { + "amount": "183.025473011", + "slot": { + "period": 3774552, + "thread": 15 + } + }, + { + "amount": "183.025473002", + "slot": { + "period": 3939301, + "thread": 22 + } + } + ], + "AU1n7bDoJowhC9h5m3Ef8A84ez4e53aXW28HvBpYU9CfQATNMCKV": [ + { + "amount": "255.389830784", + "slot": { + "period": 46674, + "thread": 9 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 189445, + "thread": 20 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 379895, + "thread": 24 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 579176, + "thread": 19 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 769125, + "thread": 15 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 935237, + "thread": 27 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1128297, + "thread": 6 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1273040, + "thread": 31 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1479055, + "thread": 19 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1641913, + "thread": 10 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1678606, + "thread": 8 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 1815659, + "thread": 2 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2136706, + "thread": 25 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2158855, + "thread": 20 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2304793, + "thread": 22 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2585895, + "thread": 3 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2769134, + "thread": 11 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 2888005, + "thread": 20 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 3060219, + "thread": 30 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 3127657, + "thread": 6 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 3330792, + "thread": 15 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 3483282, + "thread": 16 + } + }, + { + "amount": "255.389830784", + "slot": { + "period": 3685178, + "thread": 13 + } + }, + { + "amount": "255.389830787", + "slot": { + "period": 3800792, + "thread": 14 + } + } + ], + "AU1n8BB7tCuP8AKLEPiG2ZLwf8S1yJcgk9biSY3nWZNwU5vrZ9Y5": [ + { + "amount": "383.953705946", + "slot": { + "period": 54362, + "thread": 26 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 269054, + "thread": 11 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 421159, + "thread": 8 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 599243, + "thread": 10 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 753582, + "thread": 21 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 933174, + "thread": 3 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1122150, + "thread": 2 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1240487, + "thread": 30 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1453246, + "thread": 14 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1483774, + "thread": 7 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1678758, + "thread": 24 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 1835320, + "thread": 4 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2042637, + "thread": 9 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2146313, + "thread": 28 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2372711, + "thread": 14 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2614526, + "thread": 3 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2737346, + "thread": 19 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 2896755, + "thread": 6 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 3093330, + "thread": 21 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 3227288, + "thread": 15 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 3398196, + "thread": 16 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 3464249, + "thread": 30 + } + }, + { + "amount": "383.953705946", + "slot": { + "period": 3749208, + "thread": 17 + } + }, + { + "amount": "383.953705954", + "slot": { + "period": 3944952, + "thread": 15 + } + } + ], + "AU1n8cHMMWazvc4aEdf8vJPpRDCEH1kZQVv7jtNK4Pi9mRyLwf3B": [ + { + "amount": "447.014635796", + "slot": { + "period": 82334, + "thread": 10 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 220552, + "thread": 23 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 426631, + "thread": 4 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 523735, + "thread": 7 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 751994, + "thread": 30 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 865176, + "thread": 21 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1083458, + "thread": 26 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1203296, + "thread": 27 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1332216, + "thread": 9 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1597727, + "thread": 30 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1718603, + "thread": 16 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 1824203, + "thread": 0 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2040817, + "thread": 18 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2227497, + "thread": 20 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2437898, + "thread": 14 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2551006, + "thread": 11 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2687986, + "thread": 26 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 2911397, + "thread": 25 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3060295, + "thread": 31 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3238643, + "thread": 26 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3386348, + "thread": 17 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3523400, + "thread": 17 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3652471, + "thread": 9 + } + }, + { + "amount": "447.014635796", + "slot": { + "period": 3816581, + "thread": 7 + } + } + ], + "AU1n92KZ2XrsboYKtsm9zifSaFmEGeT5TCd3Yo7EohsXgkjBYh7R": [ + { + "amount": "107.797197206", + "slot": { + "period": 34691, + "thread": 7 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 228580, + "thread": 1 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 337643, + "thread": 19 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 512170, + "thread": 31 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 729095, + "thread": 6 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 968598, + "thread": 23 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1044606, + "thread": 4 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1219844, + "thread": 11 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1340822, + "thread": 0 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1613576, + "thread": 4 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1738926, + "thread": 22 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 1845690, + "thread": 17 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2020286, + "thread": 3 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2249175, + "thread": 31 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2397414, + "thread": 0 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2508840, + "thread": 3 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2635034, + "thread": 16 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 2804843, + "thread": 12 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 3118406, + "thread": 30 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 3240958, + "thread": 10 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 3336095, + "thread": 8 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 3562718, + "thread": 31 + } + }, + { + "amount": "107.797197206", + "slot": { + "period": 3740091, + "thread": 2 + } + }, + { + "amount": "107.797197198", + "slot": { + "period": 3880278, + "thread": 31 + } + } + ], + "AU1nAc2Te4GabYnDUV6JTqRimUVjK4Lxg2YvaY1rLdsdu6NEDxp8": [ + { + "amount": "156.094942168", + "slot": { + "period": 121840, + "thread": 28 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 181617, + "thread": 18 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 468283, + "thread": 3 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 521975, + "thread": 1 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 804923, + "thread": 8 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 898104, + "thread": 3 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1022484, + "thread": 10 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1265731, + "thread": 11 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1364808, + "thread": 26 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1510437, + "thread": 0 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1745195, + "thread": 1 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1937545, + "thread": 22 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 1996464, + "thread": 6 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 2294447, + "thread": 16 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 2390016, + "thread": 7 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 2593523, + "thread": 16 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 2662852, + "thread": 24 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 2884927, + "thread": 28 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 3091291, + "thread": 16 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 3240833, + "thread": 21 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 3414561, + "thread": 31 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 3496987, + "thread": 21 + } + }, + { + "amount": "156.094942168", + "slot": { + "period": 3659365, + "thread": 13 + } + }, + { + "amount": "156.094942166", + "slot": { + "period": 3791895, + "thread": 16 + } + } + ], + "AU1nAjzYrkenA9DqzNMUyhcXrJ32CR5kJhyobeLVHYkLnbcmBXus": [ + { + "amount": "610.080313484", + "slot": { + "period": 140928, + "thread": 9 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 293144, + "thread": 2 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 446519, + "thread": 29 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 529750, + "thread": 20 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 769773, + "thread": 25 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 912024, + "thread": 18 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1144543, + "thread": 25 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1195801, + "thread": 23 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1346680, + "thread": 6 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1632685, + "thread": 14 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1688745, + "thread": 26 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 1889102, + "thread": 0 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2016557, + "thread": 10 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2285463, + "thread": 13 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2451058, + "thread": 20 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2481059, + "thread": 7 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2729329, + "thread": 29 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 2818400, + "thread": 3 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 3075075, + "thread": 7 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 3288059, + "thread": 7 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 3300898, + "thread": 30 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 3459194, + "thread": 16 + } + }, + { + "amount": "610.080313484", + "slot": { + "period": 3754652, + "thread": 30 + } + }, + { + "amount": "610.080313477", + "slot": { + "period": 3802343, + "thread": 16 + } + } + ], + "AU1nAn8mguUPsNyjjmC6YXAKKwCaSgkSmTBfL8XoaEsKPuErogPb": [ + { + "amount": "281.418391883", + "slot": { + "period": 114004, + "thread": 23 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 175160, + "thread": 16 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 469472, + "thread": 16 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 494598, + "thread": 26 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 763951, + "thread": 10 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 893988, + "thread": 0 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1083876, + "thread": 4 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1157417, + "thread": 14 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1458003, + "thread": 16 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1582657, + "thread": 20 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1806840, + "thread": 28 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 1811648, + "thread": 13 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2112722, + "thread": 24 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2245254, + "thread": 19 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2320098, + "thread": 29 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2619971, + "thread": 4 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2641059, + "thread": 8 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 2914531, + "thread": 2 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 3030858, + "thread": 0 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 3219821, + "thread": 9 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 3336630, + "thread": 6 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 3464153, + "thread": 16 + } + }, + { + "amount": "281.418391883", + "slot": { + "period": 3683446, + "thread": 9 + } + }, + { + "amount": "281.418391874", + "slot": { + "period": 3887960, + "thread": 10 + } + } + ], + "AU1nBd3YqzvFzYTvMFmr8JKrLPRYpn72ddi3sXBZSdxvURyxvH5z": [ + { + "amount": "168.330852596", + "slot": { + "period": 70561, + "thread": 7 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 220373, + "thread": 5 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 464574, + "thread": 5 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 554201, + "thread": 1 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 746126, + "thread": 6 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 872819, + "thread": 7 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 998723, + "thread": 7 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 1244548, + "thread": 0 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 1475775, + "thread": 0 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 1628233, + "thread": 13 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 1761164, + "thread": 2 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 1870154, + "thread": 29 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2128561, + "thread": 29 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2167110, + "thread": 0 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2330430, + "thread": 22 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2614631, + "thread": 22 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2646999, + "thread": 9 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 2840705, + "thread": 1 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 3086237, + "thread": 13 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 3208916, + "thread": 20 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 3320778, + "thread": 27 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 3517836, + "thread": 0 + } + }, + { + "amount": "168.330852596", + "slot": { + "period": 3701880, + "thread": 14 + } + }, + { + "amount": "168.330852605", + "slot": { + "period": 3855369, + "thread": 4 + } + } + ], + "AU1nBdp3c93bdUR1mXvUjMjni7fdKc6rr442dbpD1e3mAscQWZG6": [ + { + "amount": "52.399171938", + "slot": { + "period": 72826, + "thread": 15 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 202556, + "thread": 4 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 435799, + "thread": 14 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 584534, + "thread": 2 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 728207, + "thread": 11 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 930945, + "thread": 19 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1012866, + "thread": 23 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1303191, + "thread": 7 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1322232, + "thread": 0 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1525161, + "thread": 31 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1786766, + "thread": 30 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 1869803, + "thread": 13 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2027193, + "thread": 15 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2255621, + "thread": 17 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2452791, + "thread": 23 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2604545, + "thread": 24 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2700406, + "thread": 8 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 2861723, + "thread": 4 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 3112251, + "thread": 15 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 3240192, + "thread": 0 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 3374471, + "thread": 20 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 3482085, + "thread": 24 + } + }, + { + "amount": "52.399171938", + "slot": { + "period": 3713401, + "thread": 27 + } + }, + { + "amount": "52.399171941", + "slot": { + "period": 3782033, + "thread": 18 + } + } + ], + "AU1nBedgqAyx7yKk1vCDLkLawyGs3jFMcrWURAUwcPYERzArhHVx": [ + { + "amount": "511.144718877", + "slot": { + "period": 125857, + "thread": 6 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 278816, + "thread": 26 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 390960, + "thread": 1 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 583059, + "thread": 13 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 801666, + "thread": 20 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 923545, + "thread": 1 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1028936, + "thread": 17 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1252560, + "thread": 28 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1341689, + "thread": 26 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1515978, + "thread": 14 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1726361, + "thread": 24 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 1917390, + "thread": 6 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2090245, + "thread": 31 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2211655, + "thread": 7 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2359535, + "thread": 23 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2488649, + "thread": 13 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2692262, + "thread": 21 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2796350, + "thread": 26 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 2962968, + "thread": 24 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 3280023, + "thread": 25 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 3369971, + "thread": 16 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 3513437, + "thread": 9 + } + }, + { + "amount": "511.144718877", + "slot": { + "period": 3676718, + "thread": 17 + } + }, + { + "amount": "511.144718872", + "slot": { + "period": 3923561, + "thread": 18 + } + } + ], + "AU1nD2Mm6F4Mi23kKLvVVHam6d2gBFA9NvVKTikre7HcdezTMhUN": [ + { + "amount": "268.081342077", + "slot": { + "period": 104825, + "thread": 25 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 315891, + "thread": 25 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 444681, + "thread": 19 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 576703, + "thread": 19 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 798677, + "thread": 25 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 961965, + "thread": 5 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1138322, + "thread": 19 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1315133, + "thread": 10 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1392562, + "thread": 5 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1632201, + "thread": 13 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1684793, + "thread": 31 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 1821790, + "thread": 26 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2117040, + "thread": 18 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2236519, + "thread": 25 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2455618, + "thread": 19 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2562742, + "thread": 25 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2777402, + "thread": 17 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 2828122, + "thread": 14 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 3037601, + "thread": 15 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 3218873, + "thread": 18 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 3396438, + "thread": 13 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 3514874, + "thread": 24 + } + }, + { + "amount": "268.081342077", + "slot": { + "period": 3639464, + "thread": 21 + } + }, + { + "amount": "268.081342083", + "slot": { + "period": 3916885, + "thread": 19 + } + } + ], + "AU1nDaPVRnuKQDiesqhyaFy82xiGEzXuiq7NmhA8Bkp9VKRiJxMw": [ + { + "amount": "134.519334344", + "slot": { + "period": 102418, + "thread": 3 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 321012, + "thread": 8 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 373394, + "thread": 18 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 582096, + "thread": 24 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 719270, + "thread": 13 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 824041, + "thread": 7 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1073971, + "thread": 13 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1310687, + "thread": 25 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1374857, + "thread": 4 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1530882, + "thread": 30 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1697473, + "thread": 6 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 1909957, + "thread": 6 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2062509, + "thread": 6 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2234190, + "thread": 27 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2303099, + "thread": 18 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2535431, + "thread": 0 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2649428, + "thread": 20 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 2842601, + "thread": 9 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 3060554, + "thread": 12 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 3238556, + "thread": 23 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 3320765, + "thread": 6 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 3468980, + "thread": 9 + } + }, + { + "amount": "134.519334344", + "slot": { + "period": 3668571, + "thread": 21 + } + }, + { + "amount": "134.519334347", + "slot": { + "period": 3845799, + "thread": 22 + } + } + ], + "AU1nDek7wb2UrjHQ5h1qfAJjCP4rrBy43iLDUeaRLvweBCWQVuWD": [ + { + "amount": "374.396223812", + "slot": { + "period": 46791, + "thread": 25 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 259429, + "thread": 3 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 382179, + "thread": 3 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 609861, + "thread": 2 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 764808, + "thread": 27 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 964732, + "thread": 13 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 994811, + "thread": 20 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 1262100, + "thread": 30 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 1422112, + "thread": 24 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 1512968, + "thread": 7 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 1677719, + "thread": 23 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 1909483, + "thread": 7 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2078370, + "thread": 6 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2168554, + "thread": 19 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2311225, + "thread": 21 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2545167, + "thread": 16 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2642517, + "thread": 15 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 2894738, + "thread": 24 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 3084342, + "thread": 10 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 3132562, + "thread": 30 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 3319161, + "thread": 30 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 3453973, + "thread": 28 + } + }, + { + "amount": "374.396223812", + "slot": { + "period": 3690024, + "thread": 10 + } + }, + { + "amount": "374.396223800", + "slot": { + "period": 3812634, + "thread": 1 + } + } + ], + "AU1nDv22Aqs6BsiBxDLbBLmWmZZ4ktDM6gFqdtc7Mkjkg32VsXdJ": [ + { + "amount": "226.164289132", + "slot": { + "period": 21969, + "thread": 14 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 236751, + "thread": 19 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 331189, + "thread": 2 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 608767, + "thread": 26 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 763229, + "thread": 20 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 943750, + "thread": 15 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1142125, + "thread": 20 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1160465, + "thread": 28 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1399335, + "thread": 6 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1555810, + "thread": 0 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1716481, + "thread": 29 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 1947130, + "thread": 14 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2082320, + "thread": 7 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2220925, + "thread": 25 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2304894, + "thread": 21 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2498599, + "thread": 29 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2638831, + "thread": 26 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 2892859, + "thread": 22 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 3058294, + "thread": 0 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 3192180, + "thread": 12 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 3413317, + "thread": 31 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 3483460, + "thread": 3 + } + }, + { + "amount": "226.164289132", + "slot": { + "period": 3777474, + "thread": 24 + } + }, + { + "amount": "226.164289139", + "slot": { + "period": 3913027, + "thread": 21 + } + } + ], + "AU1nE92kFBh736DrxQ1nWqhvNSG2q8rXwvYPUZ1HXjseKmhhArMD": [ + { + "amount": "253.821746875", + "slot": { + "period": 33477, + "thread": 24 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 224687, + "thread": 5 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 469892, + "thread": 14 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 604852, + "thread": 20 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 698313, + "thread": 11 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 961104, + "thread": 5 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1001846, + "thread": 26 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1279776, + "thread": 17 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1375264, + "thread": 4 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1493789, + "thread": 23 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1698300, + "thread": 10 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 1827080, + "thread": 15 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2074882, + "thread": 30 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2196596, + "thread": 21 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2334599, + "thread": 26 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2562367, + "thread": 27 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2753281, + "thread": 16 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 2901292, + "thread": 21 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 3069345, + "thread": 10 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 3221972, + "thread": 5 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 3304262, + "thread": 19 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 3518957, + "thread": 29 + } + }, + { + "amount": "253.821746875", + "slot": { + "period": 3771188, + "thread": 5 + } + }, + { + "amount": "253.821746868", + "slot": { + "period": 3823004, + "thread": 19 + } + } + ], + "AU1nEEjCDpLzszrUyxWrJRWvfzg92ZEKBNr9eKoXHhfbR3Nn3ep7": [ + { + "amount": "110.081574885", + "slot": { + "period": 160781, + "thread": 28 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 272754, + "thread": 27 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 408734, + "thread": 19 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 622866, + "thread": 13 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 770992, + "thread": 30 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 846829, + "thread": 6 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1142231, + "thread": 12 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1188231, + "thread": 17 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1357054, + "thread": 12 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1605596, + "thread": 22 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1692326, + "thread": 9 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 1948059, + "thread": 10 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2118729, + "thread": 9 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2265059, + "thread": 3 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2402127, + "thread": 13 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2492212, + "thread": 8 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2649353, + "thread": 23 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 2898551, + "thread": 20 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 3044980, + "thread": 19 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 3174723, + "thread": 17 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 3304104, + "thread": 16 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 3465718, + "thread": 11 + } + }, + { + "amount": "110.081574885", + "slot": { + "period": 3740487, + "thread": 6 + } + }, + { + "amount": "110.081574876", + "slot": { + "period": 3877543, + "thread": 3 + } + } + ], + "AU1nEVrfL8x2kPotKnP4W74RxVcKS4weaGeWXAuJdiBgf5gMQBm7": [ + { + "amount": "229.184067986", + "slot": { + "period": 118470, + "thread": 2 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 172518, + "thread": 4 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 326699, + "thread": 24 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 639854, + "thread": 31 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 725624, + "thread": 14 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 955931, + "thread": 5 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1111023, + "thread": 30 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1255623, + "thread": 10 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1423903, + "thread": 7 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1509010, + "thread": 13 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1721713, + "thread": 23 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 1945760, + "thread": 27 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2111668, + "thread": 2 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2267566, + "thread": 14 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2324233, + "thread": 11 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2564036, + "thread": 25 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2659736, + "thread": 5 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 2854120, + "thread": 2 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 3072551, + "thread": 15 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 3287933, + "thread": 20 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 3342182, + "thread": 26 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 3516463, + "thread": 22 + } + }, + { + "amount": "229.184067986", + "slot": { + "period": 3728481, + "thread": 14 + } + }, + { + "amount": "229.184067976", + "slot": { + "period": 3847439, + "thread": 10 + } + } + ], + "AU1nEYR9bd8Pkge9tQCgV4AmhG3i2dU1t96ewzXPU2XTfCVAYiM5": [ + { + "amount": "531.936555568", + "slot": { + "period": 65580, + "thread": 21 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 203525, + "thread": 16 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 457665, + "thread": 22 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 540736, + "thread": 14 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 795881, + "thread": 8 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 944495, + "thread": 20 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 996843, + "thread": 0 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 1265236, + "thread": 8 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 1363122, + "thread": 0 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 1630060, + "thread": 15 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 1780123, + "thread": 7 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 1894311, + "thread": 17 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2030543, + "thread": 16 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2215295, + "thread": 25 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2375462, + "thread": 26 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2621478, + "thread": 31 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2774782, + "thread": 13 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 2919668, + "thread": 0 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3079309, + "thread": 16 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3278206, + "thread": 31 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3330944, + "thread": 27 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3550270, + "thread": 10 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3774658, + "thread": 2 + } + }, + { + "amount": "531.936555568", + "slot": { + "period": 3856754, + "thread": 30 + } + } + ], + "AU1nF6ZhDnxHBNJkXRL97RzaTXcdBkvgqFdw84eX8u3HCkh7x2um": [ + { + "amount": "248.101947776", + "slot": { + "period": 70288, + "thread": 7 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 323834, + "thread": 16 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 434652, + "thread": 21 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 625479, + "thread": 6 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 815005, + "thread": 1 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 889640, + "thread": 6 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1095899, + "thread": 23 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1154167, + "thread": 8 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1448518, + "thread": 14 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1518087, + "thread": 28 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1791239, + "thread": 14 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1850120, + "thread": 1 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 1982759, + "thread": 28 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 2177784, + "thread": 6 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 2362460, + "thread": 11 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 2623790, + "thread": 5 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 2759006, + "thread": 30 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 2793631, + "thread": 23 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 3034690, + "thread": 30 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 3256832, + "thread": 24 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 3360841, + "thread": 16 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 3493095, + "thread": 31 + } + }, + { + "amount": "248.101947776", + "slot": { + "period": 3763693, + "thread": 23 + } + }, + { + "amount": "248.101947775", + "slot": { + "period": 3938536, + "thread": 0 + } + } + ], + "AU1nFHv5p3gmrK6Cs2A1tza63RjJM8X74ZqxpdcpKGTiVaBpTAmJ": [ + { + "amount": "116.435572493", + "slot": { + "period": 148845, + "thread": 10 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 258028, + "thread": 17 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 420708, + "thread": 25 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 525369, + "thread": 26 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 766181, + "thread": 19 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 832692, + "thread": 9 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1024450, + "thread": 18 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1156993, + "thread": 16 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1428874, + "thread": 10 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1516243, + "thread": 2 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1777016, + "thread": 7 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 1906554, + "thread": 14 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2001535, + "thread": 17 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2160394, + "thread": 2 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2296156, + "thread": 20 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2609804, + "thread": 13 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2717128, + "thread": 21 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 2826431, + "thread": 23 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 3080144, + "thread": 21 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 3221582, + "thread": 28 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 3358526, + "thread": 31 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 3534407, + "thread": 15 + } + }, + { + "amount": "116.435572493", + "slot": { + "period": 3636562, + "thread": 30 + } + }, + { + "amount": "116.435572502", + "slot": { + "period": 3800830, + "thread": 5 + } + } + ], + "AU1nFQzmd7Mw9oMQt3Yza7fQJkeKrrpZtzFXxUig6PQALFi2Qzqm": [ + { + "amount": "215.567359292", + "slot": { + "period": 149042, + "thread": 12 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 253835, + "thread": 16 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 411764, + "thread": 22 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 575620, + "thread": 17 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 797389, + "thread": 28 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 858401, + "thread": 6 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1055631, + "thread": 11 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1301124, + "thread": 20 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1429247, + "thread": 4 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1481469, + "thread": 24 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1731519, + "thread": 2 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 1962637, + "thread": 30 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2142194, + "thread": 23 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2175833, + "thread": 10 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2318507, + "thread": 29 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2484277, + "thread": 15 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2729926, + "thread": 21 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 2899227, + "thread": 6 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 3033493, + "thread": 18 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 3254804, + "thread": 25 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 3295478, + "thread": 9 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 3477013, + "thread": 9 + } + }, + { + "amount": "215.567359292", + "slot": { + "period": 3704575, + "thread": 17 + } + }, + { + "amount": "215.567359290", + "slot": { + "period": 3859022, + "thread": 18 + } + } + ], + "AU1nFRtryBaXLgneY35v9AuHdT937zYbeXYptWQxNoNdVeDMGr8j": [ + { + "amount": "402.028024546", + "slot": { + "period": 34244, + "thread": 16 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 263092, + "thread": 15 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 327555, + "thread": 31 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 637329, + "thread": 14 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 802555, + "thread": 17 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 877390, + "thread": 9 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1127017, + "thread": 26 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1222718, + "thread": 13 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1373594, + "thread": 31 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1628164, + "thread": 23 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1668933, + "thread": 13 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 1839818, + "thread": 15 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2107716, + "thread": 14 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2157325, + "thread": 31 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2303864, + "thread": 19 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2483923, + "thread": 30 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2688696, + "thread": 1 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2826386, + "thread": 8 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 2987962, + "thread": 16 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 3127348, + "thread": 13 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 3393840, + "thread": 18 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 3469109, + "thread": 19 + } + }, + { + "amount": "402.028024546", + "slot": { + "period": 3631484, + "thread": 20 + } + }, + { + "amount": "402.028024551", + "slot": { + "period": 3781080, + "thread": 19 + } + } + ], + "AU1nG9XVPYyVDWNmmnPS2MgSiqXjTc8oKWpE5Jm8PjWfk6dtjGeW": [ + { + "amount": "124.348033619", + "slot": { + "period": 29227, + "thread": 16 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 241538, + "thread": 26 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 332346, + "thread": 12 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 514312, + "thread": 10 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 689194, + "thread": 8 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 938728, + "thread": 18 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1122718, + "thread": 8 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1273310, + "thread": 28 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1473978, + "thread": 6 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1546169, + "thread": 3 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1802083, + "thread": 14 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 1943430, + "thread": 22 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2131162, + "thread": 29 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2189485, + "thread": 7 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2352693, + "thread": 17 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2568308, + "thread": 9 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2657704, + "thread": 19 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 2878563, + "thread": 19 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 3030691, + "thread": 31 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 3243699, + "thread": 13 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 3360978, + "thread": 24 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 3552835, + "thread": 12 + } + }, + { + "amount": "124.348033619", + "slot": { + "period": 3744757, + "thread": 9 + } + }, + { + "amount": "124.348033608", + "slot": { + "period": 3929489, + "thread": 9 + } + } + ], + "AU1nGDsZUZur1bZtUvpsd6qHdA65NP6TEeD6DDVDfReVn4mEQiBK": [ + { + "amount": "53.925678904", + "slot": { + "period": 57941, + "thread": 26 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 314490, + "thread": 8 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 476772, + "thread": 20 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 632720, + "thread": 27 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 715333, + "thread": 7 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 833965, + "thread": 21 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1105608, + "thread": 5 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1203307, + "thread": 0 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1433097, + "thread": 31 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1600914, + "thread": 4 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1653377, + "thread": 19 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 1936912, + "thread": 3 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2115478, + "thread": 13 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2279066, + "thread": 25 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2417367, + "thread": 25 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2606804, + "thread": 11 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2672044, + "thread": 19 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2828471, + "thread": 20 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 2963057, + "thread": 18 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 3182915, + "thread": 11 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 3443399, + "thread": 2 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 3488693, + "thread": 12 + } + }, + { + "amount": "53.925678904", + "slot": { + "period": 3736650, + "thread": 6 + } + }, + { + "amount": "53.925678902", + "slot": { + "period": 3846024, + "thread": 15 + } + } + ], + "AU1nGM41dXNStqHT3y13gwcZAwjBDSyQrAk5EfUhe8gia2aQFzgT": [ + { + "amount": "337.591841630", + "slot": { + "period": 68537, + "thread": 18 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 218986, + "thread": 9 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 454105, + "thread": 12 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 629517, + "thread": 2 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 763417, + "thread": 21 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 930838, + "thread": 14 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 999003, + "thread": 24 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 1188388, + "thread": 5 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 1427225, + "thread": 25 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 1541337, + "thread": 22 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 1794284, + "thread": 26 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 1887235, + "thread": 20 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2130550, + "thread": 7 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2293130, + "thread": 20 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2305187, + "thread": 24 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2586083, + "thread": 18 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2661390, + "thread": 13 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 2881067, + "thread": 14 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 3013904, + "thread": 2 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 3224920, + "thread": 20 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 3425671, + "thread": 3 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 3480291, + "thread": 9 + } + }, + { + "amount": "337.591841630", + "slot": { + "period": 3661370, + "thread": 12 + } + }, + { + "amount": "337.591841634", + "slot": { + "period": 3812370, + "thread": 6 + } + } + ], + "AU1nHNRchEWaUwhZ2yh52FZhqpeJzvUobrohZPYigW8xR5fjtVB1": [ + { + "amount": "64.347842970", + "slot": { + "period": 136424, + "thread": 1 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 282074, + "thread": 31 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 469370, + "thread": 20 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 501025, + "thread": 29 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 758986, + "thread": 11 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 866033, + "thread": 7 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1115550, + "thread": 21 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1236717, + "thread": 28 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1377542, + "thread": 15 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1608061, + "thread": 21 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1736369, + "thread": 6 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 1947583, + "thread": 7 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2084079, + "thread": 12 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2266770, + "thread": 31 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2427654, + "thread": 9 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2567758, + "thread": 9 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2680148, + "thread": 2 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 2873546, + "thread": 22 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 3067608, + "thread": 7 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 3162767, + "thread": 16 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 3383397, + "thread": 9 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 3549393, + "thread": 18 + } + }, + { + "amount": "64.347842970", + "slot": { + "period": 3711784, + "thread": 15 + } + }, + { + "amount": "64.347842981", + "slot": { + "period": 3834971, + "thread": 2 + } + } + ], + "AU1nJvwvsNUjxFCVLsQCQzrDtVGxaVudVW8e1ayLxxXTscF4eTk9": [ + { + "amount": "148.872980813", + "slot": { + "period": 15057, + "thread": 9 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 280514, + "thread": 30 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 329271, + "thread": 10 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 561696, + "thread": 10 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 781168, + "thread": 9 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 934767, + "thread": 22 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1104097, + "thread": 16 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1166401, + "thread": 8 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1323058, + "thread": 31 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1523015, + "thread": 23 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1648768, + "thread": 13 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 1898312, + "thread": 4 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2062894, + "thread": 5 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2256544, + "thread": 30 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2295079, + "thread": 15 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2487996, + "thread": 29 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2712485, + "thread": 30 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 2884547, + "thread": 11 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 3082194, + "thread": 10 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 3262951, + "thread": 31 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 3370206, + "thread": 27 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 3607830, + "thread": 7 + } + }, + { + "amount": "148.872980813", + "slot": { + "period": 3756736, + "thread": 0 + } + }, + { + "amount": "148.872980812", + "slot": { + "period": 3838195, + "thread": 8 + } + } + ], + "AU1nK5LpoaCgCsuCQ76AGvxrQcEgmTr5iA4QySU3n24xqNzugwyo": [ + { + "amount": "81.556105922", + "slot": { + "period": 128794, + "thread": 24 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 180968, + "thread": 28 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 459788, + "thread": 16 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 635342, + "thread": 16 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 733590, + "thread": 27 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 975635, + "thread": 3 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1013951, + "thread": 0 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1198857, + "thread": 6 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1413370, + "thread": 24 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1607424, + "thread": 17 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1744262, + "thread": 3 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 1871227, + "thread": 26 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2003094, + "thread": 9 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2164686, + "thread": 17 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2444556, + "thread": 6 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2591451, + "thread": 18 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2788970, + "thread": 8 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 2795811, + "thread": 2 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 3105697, + "thread": 19 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 3222237, + "thread": 6 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 3325574, + "thread": 0 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 3519457, + "thread": 12 + } + }, + { + "amount": "81.556105922", + "slot": { + "period": 3762933, + "thread": 13 + } + }, + { + "amount": "81.556105926", + "slot": { + "period": 3932668, + "thread": 10 + } + } + ], + "AU1nKMGayPAJqxdm4GQsttyYuRb7xxAv2Aod3cNCyLcLsTasCwYX": [ + { + "amount": "188.563006578", + "slot": { + "period": 43509, + "thread": 20 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 279665, + "thread": 22 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 426459, + "thread": 2 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 587691, + "thread": 13 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 693528, + "thread": 16 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 878918, + "thread": 7 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1131558, + "thread": 14 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1267545, + "thread": 20 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1439488, + "thread": 17 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1561646, + "thread": 17 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1683896, + "thread": 2 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 1942726, + "thread": 7 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2004674, + "thread": 13 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2220178, + "thread": 27 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2347338, + "thread": 9 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2481132, + "thread": 22 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2698081, + "thread": 12 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 2876757, + "thread": 24 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 3026508, + "thread": 12 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 3274308, + "thread": 20 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 3289826, + "thread": 6 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 3591366, + "thread": 16 + } + }, + { + "amount": "188.563006578", + "slot": { + "period": 3680125, + "thread": 18 + } + }, + { + "amount": "188.563006566", + "slot": { + "period": 3797400, + "thread": 11 + } + } + ], + "AU1nKQi81kPieuNaJC8CZ1xj9v6Y99kxLzfpijSFvbQaEAsGVjLM": [ + { + "amount": "480.335819176", + "slot": { + "period": 78425, + "thread": 2 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 306418, + "thread": 5 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 352412, + "thread": 10 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 601437, + "thread": 19 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 708616, + "thread": 5 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 935545, + "thread": 25 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1101729, + "thread": 18 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1152434, + "thread": 11 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1395328, + "thread": 20 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1587015, + "thread": 11 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1778152, + "thread": 22 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 1938326, + "thread": 4 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2038055, + "thread": 8 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2279590, + "thread": 12 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2368539, + "thread": 3 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2606222, + "thread": 31 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2702098, + "thread": 1 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 2838427, + "thread": 21 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 3000417, + "thread": 31 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 3131314, + "thread": 15 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 3294204, + "thread": 10 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 3478377, + "thread": 9 + } + }, + { + "amount": "480.335819176", + "slot": { + "period": 3646532, + "thread": 28 + } + }, + { + "amount": "480.335819180", + "slot": { + "period": 3786317, + "thread": 6 + } + } + ], + "AU1nKrSHvMMGsiGsXYdaxpZsdyUXkHJYv71wrvoWWcKUKdLLXh5s": [ + { + "amount": "125.722879296", + "slot": { + "period": 148707, + "thread": 12 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 247039, + "thread": 31 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 483984, + "thread": 19 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 590932, + "thread": 24 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 735038, + "thread": 14 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 945013, + "thread": 27 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 989674, + "thread": 11 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 1181787, + "thread": 30 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 1422094, + "thread": 16 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 1511308, + "thread": 16 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 1783094, + "thread": 17 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 1876756, + "thread": 6 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2122088, + "thread": 28 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2271572, + "thread": 29 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2380187, + "thread": 13 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2620520, + "thread": 28 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2663281, + "thread": 11 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 2872485, + "thread": 30 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 3017449, + "thread": 16 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 3194664, + "thread": 5 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 3315483, + "thread": 0 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 3539391, + "thread": 2 + } + }, + { + "amount": "125.722879296", + "slot": { + "period": 3646396, + "thread": 0 + } + }, + { + "amount": "125.722879288", + "slot": { + "period": 3872541, + "thread": 20 + } + } + ], + "AU1nLG5YkzXmAegSXP8zrJAL5DYwaZMKvPDWwiitQvpQUMDc5Bwo": [ + { + "amount": "111.905279650", + "slot": { + "period": 83594, + "thread": 11 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 237604, + "thread": 14 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 414244, + "thread": 16 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 522449, + "thread": 8 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 663329, + "thread": 3 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 878806, + "thread": 12 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1076675, + "thread": 17 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1249075, + "thread": 11 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1464621, + "thread": 31 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1510871, + "thread": 28 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1702966, + "thread": 28 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 1950318, + "thread": 0 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2084274, + "thread": 2 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2284819, + "thread": 22 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2360944, + "thread": 5 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2615428, + "thread": 15 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2784366, + "thread": 10 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 2834136, + "thread": 30 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 3080525, + "thread": 10 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 3271497, + "thread": 27 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 3380486, + "thread": 12 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 3464325, + "thread": 2 + } + }, + { + "amount": "111.905279650", + "slot": { + "period": 3625438, + "thread": 24 + } + }, + { + "amount": "111.905279661", + "slot": { + "period": 3782358, + "thread": 23 + } + } + ], + "AU1nLjMmc96JMvZwabCrSe6rntqqhXb1wirtPPEVMWFV9uA8q7dj": [ + { + "amount": "54.700739642", + "slot": { + "period": 150045, + "thread": 24 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 287522, + "thread": 2 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 441005, + "thread": 10 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 642122, + "thread": 20 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 665680, + "thread": 5 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 883717, + "thread": 20 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1090817, + "thread": 28 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1184059, + "thread": 1 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1416554, + "thread": 28 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1593977, + "thread": 3 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1686007, + "thread": 17 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 1921407, + "thread": 10 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2005281, + "thread": 14 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2189669, + "thread": 31 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2406196, + "thread": 23 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2578088, + "thread": 27 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2758600, + "thread": 30 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 2862076, + "thread": 26 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 3085580, + "thread": 16 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 3179453, + "thread": 21 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 3348314, + "thread": 22 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 3461421, + "thread": 28 + } + }, + { + "amount": "54.700739642", + "slot": { + "period": 3636476, + "thread": 27 + } + }, + { + "amount": "54.700739634", + "slot": { + "period": 3945485, + "thread": 10 + } + } + ], + "AU1nLxJUgX2G2YaVVmT82tMvy2TGdWkcEGGsQ6QYy4xnAKUqPkEs": [ + { + "amount": "288.556491676", + "slot": { + "period": 117979, + "thread": 25 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 212564, + "thread": 2 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 372641, + "thread": 19 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 562636, + "thread": 2 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 709524, + "thread": 17 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 857622, + "thread": 25 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1099569, + "thread": 12 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1207376, + "thread": 3 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1475254, + "thread": 29 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1500691, + "thread": 0 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1682298, + "thread": 29 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 1900862, + "thread": 30 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2034554, + "thread": 16 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2166559, + "thread": 30 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2421310, + "thread": 22 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2482153, + "thread": 2 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2744085, + "thread": 19 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 2799331, + "thread": 21 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 3076605, + "thread": 4 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 3269415, + "thread": 7 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 3378784, + "thread": 15 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 3490311, + "thread": 1 + } + }, + { + "amount": "288.556491676", + "slot": { + "period": 3744901, + "thread": 19 + } + }, + { + "amount": "288.556491675", + "slot": { + "period": 3902930, + "thread": 6 + } + } + ], + "AU1nMY5L3zk5821N4MATvhErSe3bd4w8gVnc1WEDJ9wgdMNX12aU": [ + { + "amount": "674.033698100", + "slot": { + "period": 119047, + "thread": 14 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 264679, + "thread": 8 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 477412, + "thread": 9 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 499183, + "thread": 22 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 691538, + "thread": 12 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 840522, + "thread": 23 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1108876, + "thread": 29 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1160124, + "thread": 13 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1347727, + "thread": 17 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1598619, + "thread": 23 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1790402, + "thread": 5 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 1875111, + "thread": 25 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2047389, + "thread": 7 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2157151, + "thread": 0 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2412452, + "thread": 23 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2485037, + "thread": 6 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2659417, + "thread": 3 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 2937546, + "thread": 1 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 3031898, + "thread": 4 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 3199053, + "thread": 15 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 3386862, + "thread": 7 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 3555605, + "thread": 9 + } + }, + { + "amount": "674.033698100", + "slot": { + "period": 3730992, + "thread": 31 + } + }, + { + "amount": "674.033698099", + "slot": { + "period": 3863935, + "thread": 21 + } + } + ], + "AU1nNHeXe7akg94Nt54MEqF89SiYKN7jJHQXPMesyYJvHDLgxe13": [ + { + "amount": "150.800845602", + "slot": { + "period": 94236, + "thread": 22 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 304878, + "thread": 12 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 364697, + "thread": 19 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 565250, + "thread": 4 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 693906, + "thread": 26 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 870186, + "thread": 13 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 985021, + "thread": 13 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 1213011, + "thread": 19 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 1458845, + "thread": 5 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 1581699, + "thread": 11 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 1788506, + "thread": 7 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 1812751, + "thread": 23 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2106433, + "thread": 2 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2279913, + "thread": 16 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2377287, + "thread": 15 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2583820, + "thread": 6 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2688571, + "thread": 5 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2854199, + "thread": 25 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 2986686, + "thread": 7 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 3160788, + "thread": 3 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 3398188, + "thread": 8 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 3480152, + "thread": 19 + } + }, + { + "amount": "150.800845602", + "slot": { + "period": 3628403, + "thread": 14 + } + }, + { + "amount": "150.800845594", + "slot": { + "period": 3946874, + "thread": 30 + } + } + ], + "AU1nNnSN4rynWCH9ws263LfoBUDtxfasMQBiWJ6yG3u4RQQu2xTM": [ + { + "amount": "156.025139343", + "slot": { + "period": 61023, + "thread": 0 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 295162, + "thread": 18 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 407485, + "thread": 9 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 523468, + "thread": 4 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 670971, + "thread": 30 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 843461, + "thread": 10 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1127342, + "thread": 1 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1169336, + "thread": 26 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1323208, + "thread": 22 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1522697, + "thread": 18 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1737599, + "thread": 9 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1924561, + "thread": 19 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 1988841, + "thread": 23 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2238383, + "thread": 24 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2337988, + "thread": 7 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2571174, + "thread": 30 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2766815, + "thread": 23 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2856315, + "thread": 16 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 2976443, + "thread": 0 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 3217846, + "thread": 4 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 3383454, + "thread": 15 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 3496117, + "thread": 19 + } + }, + { + "amount": "156.025139343", + "slot": { + "period": 3717619, + "thread": 7 + } + }, + { + "amount": "156.025139348", + "slot": { + "period": 3846734, + "thread": 29 + } + } + ], + "AU1nP7LgCVmvvmP1zrPYv7aH2nu7K8H8Uk5ifijmhZESJaiuDoxF": [ + { + "amount": "135.839293588", + "slot": { + "period": 75417, + "thread": 12 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 310039, + "thread": 13 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 386946, + "thread": 30 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 566800, + "thread": 0 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 705495, + "thread": 15 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 897999, + "thread": 18 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1090485, + "thread": 6 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1176095, + "thread": 14 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1319945, + "thread": 12 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1491989, + "thread": 23 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1720234, + "thread": 28 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 1955511, + "thread": 9 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2008903, + "thread": 31 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2285157, + "thread": 0 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2451316, + "thread": 24 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2537418, + "thread": 21 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2756282, + "thread": 31 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 2850903, + "thread": 13 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 3019904, + "thread": 11 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 3200824, + "thread": 2 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 3395133, + "thread": 16 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 3463949, + "thread": 28 + } + }, + { + "amount": "135.839293588", + "slot": { + "period": 3649617, + "thread": 5 + } + }, + { + "amount": "135.839293592", + "slot": { + "period": 3880852, + "thread": 20 + } + } + ], + "AU1nPg7tv6a1LQ7w6G6K1mfmf8xYjLnEs7oZ5ajPJgpg7Hz9Lkce": [ + { + "amount": "97.297466229", + "slot": { + "period": 80895, + "thread": 14 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 189982, + "thread": 17 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 340349, + "thread": 7 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 614634, + "thread": 1 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 790803, + "thread": 1 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 979899, + "thread": 17 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1065031, + "thread": 13 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1264819, + "thread": 16 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1341125, + "thread": 14 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1542774, + "thread": 11 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1713969, + "thread": 14 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 1971574, + "thread": 25 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2117206, + "thread": 15 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2235620, + "thread": 30 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2396406, + "thread": 22 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2474740, + "thread": 31 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2653108, + "thread": 13 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 2793944, + "thread": 3 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 3093011, + "thread": 11 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 3167525, + "thread": 9 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 3307676, + "thread": 10 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 3451420, + "thread": 17 + } + }, + { + "amount": "97.297466229", + "slot": { + "period": 3622408, + "thread": 0 + } + }, + { + "amount": "97.297466222", + "slot": { + "period": 3909813, + "thread": 6 + } + } + ], + "AU1nQ7xVpneYjZWizsJtSRvNijfE12hhoCBwJyWzKV2hqKFGkFD1": [ + { + "amount": "480.227228581", + "slot": { + "period": 158708, + "thread": 13 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 249425, + "thread": 25 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 357003, + "thread": 25 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 519894, + "thread": 17 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 756444, + "thread": 15 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 911496, + "thread": 4 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 994058, + "thread": 10 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 1205268, + "thread": 21 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 1390781, + "thread": 12 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 1583477, + "thread": 0 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 1795230, + "thread": 24 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 1857685, + "thread": 22 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2089290, + "thread": 18 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2253528, + "thread": 5 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2436117, + "thread": 22 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2463190, + "thread": 8 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2711635, + "thread": 6 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 2897753, + "thread": 8 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 3076520, + "thread": 7 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 3199919, + "thread": 10 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 3440768, + "thread": 13 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 3453528, + "thread": 14 + } + }, + { + "amount": "480.227228581", + "slot": { + "period": 3694474, + "thread": 2 + } + }, + { + "amount": "480.227228583", + "slot": { + "period": 3917250, + "thread": 21 + } + } + ], + "AU1nQ9iher32PeWpRqMMUaaqVsLMrNLmRPNdBy1ZSx9u8iBvMqxU": [ + { + "amount": "96.248783018", + "slot": { + "period": 80037, + "thread": 21 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 202464, + "thread": 17 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 402769, + "thread": 15 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 648737, + "thread": 8 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 811433, + "thread": 0 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 927333, + "thread": 2 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1006650, + "thread": 3 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1177789, + "thread": 15 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1475453, + "thread": 16 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1527775, + "thread": 20 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1746847, + "thread": 1 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 1881235, + "thread": 7 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2025398, + "thread": 10 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2271992, + "thread": 12 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2381363, + "thread": 30 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2476488, + "thread": 22 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2705963, + "thread": 4 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 2883059, + "thread": 23 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 3093132, + "thread": 7 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 3160924, + "thread": 10 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 3433850, + "thread": 28 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 3582123, + "thread": 7 + } + }, + { + "amount": "96.248783018", + "slot": { + "period": 3707462, + "thread": 30 + } + }, + { + "amount": "96.248783013", + "slot": { + "period": 3860386, + "thread": 20 + } + } + ], + "AU1nQp6UwbYsbu2SNUPXAyAPRj7Pe3VzbDeYjGQRLNfz27p5NiY5": [ + { + "amount": "337.147486591", + "slot": { + "period": 160872, + "thread": 3 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 175393, + "thread": 21 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 439608, + "thread": 7 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 579544, + "thread": 4 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 797869, + "thread": 27 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 960663, + "thread": 2 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1083992, + "thread": 11 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1247158, + "thread": 3 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1318479, + "thread": 0 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1510754, + "thread": 3 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1770861, + "thread": 26 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1863913, + "thread": 22 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 1986964, + "thread": 10 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 2197999, + "thread": 27 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 2333000, + "thread": 25 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 2580802, + "thread": 20 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 2783664, + "thread": 30 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 2805213, + "thread": 22 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 3097767, + "thread": 11 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 3258753, + "thread": 14 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 3293518, + "thread": 24 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 3476187, + "thread": 17 + } + }, + { + "amount": "337.147486591", + "slot": { + "period": 3635073, + "thread": 28 + } + }, + { + "amount": "337.147486602", + "slot": { + "period": 3895358, + "thread": 15 + } + } + ], + "AU1nT8bn3WSYLctHghrE43GzbuRi97pPFpNWs3fvFjkD9vSnB8dH": [ + { + "amount": "711.503512548", + "slot": { + "period": 22962, + "thread": 24 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 187419, + "thread": 12 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 359318, + "thread": 11 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 514104, + "thread": 3 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 815527, + "thread": 12 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 853462, + "thread": 19 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1069602, + "thread": 17 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1214914, + "thread": 19 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1432713, + "thread": 7 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1619363, + "thread": 31 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1756779, + "thread": 19 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 1855547, + "thread": 9 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2113193, + "thread": 3 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2259930, + "thread": 10 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2357355, + "thread": 18 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2570231, + "thread": 16 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2735341, + "thread": 16 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 2894194, + "thread": 26 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 3058817, + "thread": 2 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 3171264, + "thread": 29 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 3368729, + "thread": 7 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 3494302, + "thread": 4 + } + }, + { + "amount": "711.503512548", + "slot": { + "period": 3632705, + "thread": 12 + } + }, + { + "amount": "711.503512541", + "slot": { + "period": 3810780, + "thread": 28 + } + } + ], + "AU1nTPQZ9Vv2EMB89py1siERHPzPP2ZoUDTeSwkB33GRnPva3ivK": [ + { + "amount": "440.628269650", + "slot": { + "period": 71458, + "thread": 30 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 219868, + "thread": 17 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 337661, + "thread": 27 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 582015, + "thread": 27 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 700341, + "thread": 4 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 896076, + "thread": 7 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 993865, + "thread": 13 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 1151068, + "thread": 9 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 1332832, + "thread": 23 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 1578424, + "thread": 21 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 1764742, + "thread": 23 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 1859525, + "thread": 13 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2048153, + "thread": 17 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2184881, + "thread": 6 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2378924, + "thread": 3 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2617053, + "thread": 7 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2788794, + "thread": 29 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 2831668, + "thread": 3 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 3118932, + "thread": 23 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 3127767, + "thread": 27 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 3367560, + "thread": 5 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 3590823, + "thread": 11 + } + }, + { + "amount": "440.628269650", + "slot": { + "period": 3751190, + "thread": 26 + } + }, + { + "amount": "440.628269652", + "slot": { + "period": 3837635, + "thread": 13 + } + } + ], + "AU1nTsTDLmUwBFtL1bvYTWzdoJ4YifUX2mmPeHDentPxHAmd8Pmm": [ + { + "amount": "232.721633295", + "slot": { + "period": 48594, + "thread": 16 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 302639, + "thread": 11 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 447075, + "thread": 20 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 543235, + "thread": 2 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 708207, + "thread": 19 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 971496, + "thread": 4 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1138255, + "thread": 3 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1152199, + "thread": 23 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1405983, + "thread": 2 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1618666, + "thread": 21 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1709626, + "thread": 2 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 1911404, + "thread": 10 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2064243, + "thread": 7 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2270464, + "thread": 14 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2345886, + "thread": 9 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2621137, + "thread": 30 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2780107, + "thread": 7 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2838243, + "thread": 2 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 2990810, + "thread": 20 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 3254351, + "thread": 28 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 3362772, + "thread": 28 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 3529907, + "thread": 14 + } + }, + { + "amount": "232.721633295", + "slot": { + "period": 3764966, + "thread": 26 + } + }, + { + "amount": "232.721633296", + "slot": { + "period": 3806084, + "thread": 16 + } + } + ], + "AU1nTyVhJaXoXHCLXxyPquPRyVf8KwkEJNxMLDwwiigmuDgfm21J": [ + { + "amount": "154.731489839", + "slot": { + "period": 50817, + "thread": 23 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 174640, + "thread": 3 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 431498, + "thread": 19 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 639893, + "thread": 3 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 656901, + "thread": 9 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 949177, + "thread": 27 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1100988, + "thread": 23 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1249419, + "thread": 18 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1474830, + "thread": 15 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1491738, + "thread": 15 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1794952, + "thread": 9 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 1852940, + "thread": 29 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2053469, + "thread": 29 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2284176, + "thread": 17 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2409031, + "thread": 18 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2476352, + "thread": 29 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2753337, + "thread": 11 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 2933574, + "thread": 6 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 3005458, + "thread": 16 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 3194720, + "thread": 4 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 3341524, + "thread": 14 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 3485911, + "thread": 6 + } + }, + { + "amount": "154.731489839", + "slot": { + "period": 3719331, + "thread": 7 + } + }, + { + "amount": "154.731489848", + "slot": { + "period": 3818865, + "thread": 13 + } + } + ], + "AU1nUF5SuRubwPneRvtsGRdL1gjSpwii6khAPhGUWrFm9XoEt76f": [ + { + "amount": "403.521165494", + "slot": { + "period": 22402, + "thread": 0 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 266212, + "thread": 3 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 344873, + "thread": 31 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 601764, + "thread": 5 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 785167, + "thread": 27 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 876894, + "thread": 13 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1006546, + "thread": 7 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1250596, + "thread": 27 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1441340, + "thread": 24 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1603746, + "thread": 10 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1766909, + "thread": 23 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 1948632, + "thread": 28 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2031511, + "thread": 8 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2180885, + "thread": 17 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2397723, + "thread": 13 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2618203, + "thread": 29 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2733662, + "thread": 23 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 2927294, + "thread": 0 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 3063754, + "thread": 0 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 3140745, + "thread": 0 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 3299432, + "thread": 17 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 3497454, + "thread": 5 + } + }, + { + "amount": "403.521165494", + "slot": { + "period": 3704033, + "thread": 1 + } + }, + { + "amount": "403.521165497", + "slot": { + "period": 3852431, + "thread": 29 + } + } + ], + "AU1nV44hGYnaBsaAbdXx5zy9aiAbuoiCGpLMyxzXYCGa2tKXts8r": [ + { + "amount": "81.459852277", + "slot": { + "period": 83177, + "thread": 9 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 282722, + "thread": 26 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 474416, + "thread": 23 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 620148, + "thread": 0 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 806489, + "thread": 30 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 896425, + "thread": 1 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1094834, + "thread": 29 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1314407, + "thread": 24 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1461367, + "thread": 22 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1576771, + "thread": 13 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1724362, + "thread": 1 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 1810132, + "thread": 10 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2012150, + "thread": 29 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2170190, + "thread": 18 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2412858, + "thread": 10 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2614692, + "thread": 3 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2660704, + "thread": 13 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 2827494, + "thread": 10 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 3112646, + "thread": 18 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 3143462, + "thread": 22 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 3446074, + "thread": 19 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 3615567, + "thread": 3 + } + }, + { + "amount": "81.459852277", + "slot": { + "period": 3674306, + "thread": 2 + } + }, + { + "amount": "81.459852267", + "slot": { + "period": 3902410, + "thread": 0 + } + } + ], + "AU1nV9XktorSmKq2eRnRbrr24CsNb4xDutLB2ySSFnsfjXzVmgq": [ + { + "amount": "172.334354695", + "slot": { + "period": 19428, + "thread": 3 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 274602, + "thread": 13 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 369382, + "thread": 9 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 563469, + "thread": 2 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 734378, + "thread": 28 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 907499, + "thread": 28 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1074205, + "thread": 28 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1242356, + "thread": 21 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1376146, + "thread": 14 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1641582, + "thread": 6 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1760719, + "thread": 5 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 1905533, + "thread": 0 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2036230, + "thread": 26 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2238980, + "thread": 10 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2307182, + "thread": 20 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2603394, + "thread": 18 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2669928, + "thread": 4 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 2840733, + "thread": 6 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 3119780, + "thread": 30 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 3212279, + "thread": 17 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 3294227, + "thread": 20 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 3459528, + "thread": 14 + } + }, + { + "amount": "172.334354695", + "slot": { + "period": 3764868, + "thread": 29 + } + }, + { + "amount": "172.334354692", + "slot": { + "period": 3784453, + "thread": 11 + } + } + ], + "AU1nVxihorepdcZU8qoDcEhPnH7PUtsjjd5rkSZPnxdL9sEEeHJ7": [ + { + "amount": "89.757180523", + "slot": { + "period": 86385, + "thread": 9 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 238405, + "thread": 17 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 406980, + "thread": 10 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 626482, + "thread": 6 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 721794, + "thread": 14 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 821047, + "thread": 23 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1070386, + "thread": 3 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1192385, + "thread": 17 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1461502, + "thread": 16 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1513600, + "thread": 1 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1759103, + "thread": 8 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 1939503, + "thread": 5 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2091134, + "thread": 23 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2293565, + "thread": 10 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2386905, + "thread": 10 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2486426, + "thread": 30 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2657579, + "thread": 8 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2813971, + "thread": 22 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 2980424, + "thread": 3 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 3137611, + "thread": 18 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 3370040, + "thread": 8 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 3597141, + "thread": 28 + } + }, + { + "amount": "89.757180523", + "slot": { + "period": 3753674, + "thread": 17 + } + }, + { + "amount": "89.757180529", + "slot": { + "period": 3863692, + "thread": 24 + } + } + ], + "AU1nWCyypw6hdNkcuzQsj2jKqSeMnPTspNPpLTUomdLYfPTV9Jtp": [ + { + "amount": "147.085952492", + "slot": { + "period": 145462, + "thread": 11 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 240827, + "thread": 15 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 382116, + "thread": 10 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 647275, + "thread": 6 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 807713, + "thread": 29 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 846215, + "thread": 15 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1120760, + "thread": 14 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1201102, + "thread": 19 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1369467, + "thread": 6 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1596235, + "thread": 25 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1725942, + "thread": 5 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 1915036, + "thread": 8 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2070951, + "thread": 7 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2168243, + "thread": 2 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2370974, + "thread": 15 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2562492, + "thread": 5 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2632554, + "thread": 19 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 2822644, + "thread": 28 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 3079868, + "thread": 9 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 3263235, + "thread": 18 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 3389207, + "thread": 29 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 3467680, + "thread": 27 + } + }, + { + "amount": "147.085952492", + "slot": { + "period": 3730764, + "thread": 17 + } + }, + { + "amount": "147.085952486", + "slot": { + "period": 3814846, + "thread": 0 + } + } + ], + "AU1nWHBbj4BekdUeXxjwZwTJqZSEzTx1GHLXtJv8CDe6iwxxo9zW": [ + { + "amount": "152.535074621", + "slot": { + "period": 28381, + "thread": 2 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 281806, + "thread": 19 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 337406, + "thread": 5 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 633892, + "thread": 30 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 688316, + "thread": 5 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 913824, + "thread": 11 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1122184, + "thread": 9 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1155007, + "thread": 10 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1456090, + "thread": 12 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1535632, + "thread": 15 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1747300, + "thread": 21 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 1816753, + "thread": 25 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2051306, + "thread": 28 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2180715, + "thread": 11 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2299449, + "thread": 19 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2545150, + "thread": 1 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2696137, + "thread": 31 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2860040, + "thread": 22 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 2996892, + "thread": 29 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 3257932, + "thread": 10 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 3357899, + "thread": 9 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 3552211, + "thread": 8 + } + }, + { + "amount": "152.535074621", + "slot": { + "period": 3687563, + "thread": 18 + } + }, + { + "amount": "152.535074627", + "slot": { + "period": 3785521, + "thread": 31 + } + } + ], + "AU1nXiTa7WqJsyENYQZuAFrMkhjAosPRzn5esznscMTnSt5PBnZU": [ + { + "amount": "112.519834381", + "slot": { + "period": 46656, + "thread": 17 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 301271, + "thread": 6 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 442093, + "thread": 26 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 506765, + "thread": 23 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 709241, + "thread": 3 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 878866, + "thread": 22 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1052601, + "thread": 22 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1151281, + "thread": 8 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1401646, + "thread": 22 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1609538, + "thread": 16 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1696073, + "thread": 12 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 1912833, + "thread": 28 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2048890, + "thread": 29 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2173424, + "thread": 30 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2352759, + "thread": 20 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2470069, + "thread": 26 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2735164, + "thread": 31 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 2868321, + "thread": 17 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 3025953, + "thread": 12 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 3252809, + "thread": 5 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 3322907, + "thread": 25 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 3583090, + "thread": 10 + } + }, + { + "amount": "112.519834381", + "slot": { + "period": 3695685, + "thread": 2 + } + }, + { + "amount": "112.519834391", + "slot": { + "period": 3860097, + "thread": 11 + } + } + ], + "AU1nY29hqyCsLBJekYqfThUAWa87gGMjFuhyvth54CNHcXMMCx7p": [ + { + "amount": "120.407089910", + "slot": { + "period": 48144, + "thread": 27 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 286303, + "thread": 31 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 440047, + "thread": 0 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 624712, + "thread": 0 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 757003, + "thread": 1 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 837463, + "thread": 30 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1103756, + "thread": 1 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1285433, + "thread": 23 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1326063, + "thread": 2 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1568034, + "thread": 4 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1802384, + "thread": 3 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 1973698, + "thread": 0 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2047565, + "thread": 22 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2243349, + "thread": 18 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2412377, + "thread": 24 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2618770, + "thread": 14 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2657248, + "thread": 29 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 2933288, + "thread": 22 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 3099799, + "thread": 28 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 3146947, + "thread": 31 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 3449240, + "thread": 26 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 3592502, + "thread": 31 + } + }, + { + "amount": "120.407089910", + "slot": { + "period": 3725364, + "thread": 15 + } + }, + { + "amount": "120.407089898", + "slot": { + "period": 3945841, + "thread": 20 + } + } + ], + "AU1nYG9cRiUWwKQ58YEmAseJz9rXz2XudTrBsDJgKZf64GpN8C8s": [ + { + "amount": "650.315621198", + "slot": { + "period": 78492, + "thread": 15 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 205834, + "thread": 4 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 354680, + "thread": 27 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 532540, + "thread": 2 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 808975, + "thread": 19 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 915429, + "thread": 3 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1082309, + "thread": 18 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1304605, + "thread": 28 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1385653, + "thread": 2 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1639400, + "thread": 26 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1790680, + "thread": 6 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 1892077, + "thread": 12 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2028458, + "thread": 9 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2184084, + "thread": 21 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2411732, + "thread": 28 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2481124, + "thread": 20 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2759691, + "thread": 20 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 2841457, + "thread": 17 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 3043107, + "thread": 26 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 3211502, + "thread": 8 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 3374461, + "thread": 27 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 3460994, + "thread": 1 + } + }, + { + "amount": "650.315621198", + "slot": { + "period": 3745263, + "thread": 23 + } + }, + { + "amount": "650.315621205", + "slot": { + "period": 3939256, + "thread": 15 + } + } + ], + "AU1nbRg8BxJTNPkmr8pGTHmJq9FuFDEjzyUKwjDqN8SSfBaoaeUb": [ + { + "amount": "450.118015939", + "slot": { + "period": 37538, + "thread": 30 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 319282, + "thread": 4 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 350518, + "thread": 24 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 648282, + "thread": 20 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 742506, + "thread": 3 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 948129, + "thread": 18 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1065103, + "thread": 13 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1299683, + "thread": 17 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1369278, + "thread": 20 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1493432, + "thread": 20 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1755807, + "thread": 28 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 1851245, + "thread": 27 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2033949, + "thread": 16 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2215294, + "thread": 22 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2342837, + "thread": 16 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2496665, + "thread": 10 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2680585, + "thread": 14 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 2815263, + "thread": 9 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 3005104, + "thread": 14 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 3182377, + "thread": 25 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 3340565, + "thread": 5 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 3485302, + "thread": 3 + } + }, + { + "amount": "450.118015939", + "slot": { + "period": 3693563, + "thread": 12 + } + }, + { + "amount": "450.118015947", + "slot": { + "period": 3806961, + "thread": 6 + } + } + ], + "AU1ncqefXgdYs14t1GC1JCHEXDhSgRu69ZTcRmXavDX3RrgmLZ5b": [ + { + "amount": "131.483686405", + "slot": { + "period": 109356, + "thread": 3 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 285528, + "thread": 26 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 389065, + "thread": 19 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 557270, + "thread": 3 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 667329, + "thread": 8 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 889459, + "thread": 31 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 996712, + "thread": 10 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 1168853, + "thread": 18 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 1394822, + "thread": 9 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 1556602, + "thread": 10 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 1781849, + "thread": 2 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 1974646, + "thread": 22 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2104781, + "thread": 23 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2178801, + "thread": 20 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2303461, + "thread": 22 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2583591, + "thread": 31 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2635054, + "thread": 30 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 2849021, + "thread": 23 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 3118400, + "thread": 25 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 3262090, + "thread": 23 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 3425466, + "thread": 23 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 3572114, + "thread": 7 + } + }, + { + "amount": "131.483686405", + "slot": { + "period": 3727146, + "thread": 10 + } + }, + { + "amount": "131.483686412", + "slot": { + "period": 3846376, + "thread": 24 + } + } + ], + "AU1ndTgw4kZTMhLAnEGhRqzqFv2DQB15winKBZh3m1UsbgvQgfAc": [ + { + "amount": "274.940211024", + "slot": { + "period": 70419, + "thread": 24 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 276560, + "thread": 15 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 407295, + "thread": 0 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 650390, + "thread": 18 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 715265, + "thread": 4 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 944017, + "thread": 23 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1002737, + "thread": 5 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1164107, + "thread": 4 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1444464, + "thread": 9 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1483012, + "thread": 1 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1652729, + "thread": 2 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 1929214, + "thread": 29 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2013434, + "thread": 16 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2176246, + "thread": 24 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2330966, + "thread": 6 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2496657, + "thread": 4 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2754465, + "thread": 19 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 2911689, + "thread": 5 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 3102269, + "thread": 27 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 3205006, + "thread": 11 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 3392732, + "thread": 21 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 3494611, + "thread": 14 + } + }, + { + "amount": "274.940211024", + "slot": { + "period": 3694038, + "thread": 25 + } + }, + { + "amount": "274.940211030", + "slot": { + "period": 3801733, + "thread": 30 + } + } + ], + "AU1neYZpaberd1Zzn4uRfTzwTo6cspBnCFnm4FXcnNZeX4uSouun": [ + { + "amount": "121.940786606", + "slot": { + "period": 156073, + "thread": 26 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 256579, + "thread": 19 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 480012, + "thread": 26 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 652530, + "thread": 25 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 701360, + "thread": 28 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 920818, + "thread": 30 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1139842, + "thread": 12 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1307258, + "thread": 22 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1384860, + "thread": 28 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1608328, + "thread": 29 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1662789, + "thread": 22 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 1867953, + "thread": 4 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2104281, + "thread": 25 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2186891, + "thread": 0 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2385886, + "thread": 3 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2550757, + "thread": 21 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2718499, + "thread": 22 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 2907886, + "thread": 26 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 3034843, + "thread": 10 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 3263574, + "thread": 0 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 3378014, + "thread": 14 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 3537132, + "thread": 13 + } + }, + { + "amount": "121.940786606", + "slot": { + "period": 3769759, + "thread": 25 + } + }, + { + "amount": "121.940786602", + "slot": { + "period": 3797245, + "thread": 2 + } + } + ], + "AU1nf5Exs8yH6unmPTfctHqXjeP1mwZm8REoWsJ4v4o7RR3B4X8M": [ + { + "amount": "170.491725672", + "slot": { + "period": 107259, + "thread": 12 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 305050, + "thread": 23 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 325606, + "thread": 30 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 639164, + "thread": 20 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 802691, + "thread": 19 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 825422, + "thread": 25 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1022784, + "thread": 15 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1228318, + "thread": 13 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1330254, + "thread": 20 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1579034, + "thread": 23 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1757256, + "thread": 26 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1809510, + "thread": 9 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 1988309, + "thread": 13 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2192652, + "thread": 16 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2335245, + "thread": 26 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2567672, + "thread": 3 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2680865, + "thread": 11 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2925764, + "thread": 9 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 2975552, + "thread": 21 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 3141379, + "thread": 25 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 3333348, + "thread": 20 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 3609816, + "thread": 25 + } + }, + { + "amount": "170.491725672", + "slot": { + "period": 3656521, + "thread": 27 + } + }, + { + "amount": "170.491725680", + "slot": { + "period": 3881355, + "thread": 29 + } + } + ], + "AU1ngkKngmvfwAC1SrFv7zf2UkE41x6LdBMGHNttbeQHuMejnrLu": [ + { + "amount": "372.311500450", + "slot": { + "period": 53415, + "thread": 29 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 220600, + "thread": 15 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 443701, + "thread": 5 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 538454, + "thread": 3 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 799124, + "thread": 27 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 895882, + "thread": 11 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1069487, + "thread": 26 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1174007, + "thread": 2 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1472188, + "thread": 1 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1598014, + "thread": 4 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1746518, + "thread": 15 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 1921649, + "thread": 10 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2106505, + "thread": 13 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2148565, + "thread": 19 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2410282, + "thread": 18 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2517189, + "thread": 30 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2690243, + "thread": 22 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 2926731, + "thread": 15 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 3100784, + "thread": 18 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 3175585, + "thread": 2 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 3342701, + "thread": 6 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 3465906, + "thread": 22 + } + }, + { + "amount": "372.311500450", + "slot": { + "period": 3636629, + "thread": 25 + } + }, + { + "amount": "372.311500452", + "slot": { + "period": 3818367, + "thread": 13 + } + } + ], + "AU1nhARA9oCdw2wF3aY5hPf5kbY8kGVgGpvyhv2UQXwF3zMaS9QU": [ + { + "amount": "141.264453252", + "slot": { + "period": 145755, + "thread": 31 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 291655, + "thread": 20 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 423650, + "thread": 27 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 598511, + "thread": 26 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 757068, + "thread": 14 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 925529, + "thread": 22 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1026935, + "thread": 5 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1291404, + "thread": 28 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1365356, + "thread": 19 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1583233, + "thread": 6 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1740046, + "thread": 22 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 1827004, + "thread": 24 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2053540, + "thread": 31 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2244350, + "thread": 11 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2438878, + "thread": 7 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2621169, + "thread": 26 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2749884, + "thread": 13 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 2936028, + "thread": 8 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 3067523, + "thread": 12 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 3134989, + "thread": 8 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 3387804, + "thread": 3 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 3516024, + "thread": 14 + } + }, + { + "amount": "141.264453252", + "slot": { + "period": 3676874, + "thread": 31 + } + }, + { + "amount": "141.264453264", + "slot": { + "period": 3898945, + "thread": 18 + } + } + ], + "AU1ni9ANWiScMLG9wqdF46PVTr2dLkQ8UDyJHyWEBpcHs4v3B9N9": [ + { + "amount": "262.624130326", + "slot": { + "period": 128444, + "thread": 18 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 188346, + "thread": 23 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 428265, + "thread": 27 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 497986, + "thread": 1 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 771015, + "thread": 3 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 902258, + "thread": 29 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1060706, + "thread": 3 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1194366, + "thread": 10 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1426154, + "thread": 14 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1546679, + "thread": 18 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1706877, + "thread": 0 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 1935533, + "thread": 5 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2078968, + "thread": 13 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2190656, + "thread": 14 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2379692, + "thread": 28 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2620651, + "thread": 25 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2768282, + "thread": 31 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2930740, + "thread": 21 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 2978655, + "thread": 2 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 3216122, + "thread": 10 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 3307223, + "thread": 19 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 3481779, + "thread": 8 + } + }, + { + "amount": "262.624130326", + "slot": { + "period": 3742606, + "thread": 8 + } + }, + { + "amount": "262.624130314", + "slot": { + "period": 3781804, + "thread": 12 + } + } + ], + "AU1nj32xKAnZeEmnr8rYrhGxh6iKKgRBC66MDxc4cTcGhTJg8VLo": [ + { + "amount": "176.477138426", + "slot": { + "period": 153964, + "thread": 1 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 265144, + "thread": 15 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 431637, + "thread": 5 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 573215, + "thread": 2 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 810156, + "thread": 1 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 843914, + "thread": 4 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1126661, + "thread": 24 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1160248, + "thread": 16 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1429493, + "thread": 15 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1605303, + "thread": 7 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1761782, + "thread": 16 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 1816647, + "thread": 27 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2116187, + "thread": 1 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2276797, + "thread": 5 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2342748, + "thread": 1 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2554465, + "thread": 10 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2652948, + "thread": 4 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 2923449, + "thread": 7 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 3120122, + "thread": 12 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 3147027, + "thread": 1 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 3446087, + "thread": 9 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 3476655, + "thread": 10 + } + }, + { + "amount": "176.477138426", + "slot": { + "period": 3672730, + "thread": 18 + } + }, + { + "amount": "176.477138414", + "slot": { + "period": 3898911, + "thread": 4 + } + } + ], + "AU1njaLxHoi9pE6qBaRCcLCcD4R6k9WnYTtdFqNA49hd1uveYhVx": [ + { + "amount": "99.603405732", + "slot": { + "period": 106976, + "thread": 8 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 170489, + "thread": 10 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 410345, + "thread": 20 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 611141, + "thread": 15 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 769372, + "thread": 21 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 877955, + "thread": 30 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1098585, + "thread": 29 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1182710, + "thread": 11 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1395762, + "thread": 4 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1562274, + "thread": 21 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1703540, + "thread": 9 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 1860951, + "thread": 15 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2124132, + "thread": 22 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2205805, + "thread": 11 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2404411, + "thread": 22 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2565774, + "thread": 5 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2628945, + "thread": 15 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 2811083, + "thread": 13 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 3115519, + "thread": 12 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 3189658, + "thread": 4 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 3414767, + "thread": 5 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 3508699, + "thread": 19 + } + }, + { + "amount": "99.603405732", + "slot": { + "period": 3717386, + "thread": 12 + } + }, + { + "amount": "99.603405736", + "slot": { + "period": 3884593, + "thread": 23 + } + } + ], + "AU1njbbAgtZpMaDSVMdoiH4wewDg8N3wSPhKXQu7K1Tme7rNkeZW": [ + { + "amount": "114.416788263", + "slot": { + "period": 68973, + "thread": 20 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 253803, + "thread": 14 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 432462, + "thread": 11 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 539543, + "thread": 26 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 778158, + "thread": 1 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 900300, + "thread": 17 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1052386, + "thread": 23 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1171946, + "thread": 24 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1405537, + "thread": 11 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1602253, + "thread": 22 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1657458, + "thread": 26 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 1853752, + "thread": 0 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2014385, + "thread": 3 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2159745, + "thread": 19 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2407521, + "thread": 6 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2551390, + "thread": 19 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2744525, + "thread": 19 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 2800479, + "thread": 27 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 3025471, + "thread": 10 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 3233894, + "thread": 13 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 3297948, + "thread": 3 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 3524975, + "thread": 21 + } + }, + { + "amount": "114.416788263", + "slot": { + "period": 3717512, + "thread": 14 + } + }, + { + "amount": "114.416788252", + "slot": { + "period": 3814639, + "thread": 25 + } + } + ], + "AU1nkLuBTYKGJWWZ1G4vA1tt4N3SUk6xRvk7gjCD6ZkZBnzkhxx2": [ + { + "amount": "350.217746612", + "slot": { + "period": 82072, + "thread": 28 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 179027, + "thread": 20 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 452648, + "thread": 9 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 498119, + "thread": 23 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 733348, + "thread": 16 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 954102, + "thread": 7 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 989306, + "thread": 9 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 1212624, + "thread": 10 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 1410839, + "thread": 28 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 1639040, + "thread": 6 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 1702887, + "thread": 8 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 1809476, + "thread": 7 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2139723, + "thread": 15 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2171852, + "thread": 4 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2397684, + "thread": 1 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2524997, + "thread": 13 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2643080, + "thread": 17 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 2884345, + "thread": 27 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 3007866, + "thread": 8 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 3231123, + "thread": 7 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 3394234, + "thread": 22 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 3506404, + "thread": 28 + } + }, + { + "amount": "350.217746612", + "slot": { + "period": 3750625, + "thread": 2 + } + }, + { + "amount": "350.217746618", + "slot": { + "period": 3894171, + "thread": 14 + } + } + ], + "AU1nknohhX3QusYzXo4Bbk61sCahT4QS1n18mY49QPkXWDpPJoHZ": [ + { + "amount": "366.519832018", + "slot": { + "period": 38340, + "thread": 10 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 276072, + "thread": 24 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 422330, + "thread": 17 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 635591, + "thread": 15 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 705371, + "thread": 27 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 982270, + "thread": 29 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1011450, + "thread": 6 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1286962, + "thread": 8 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1344561, + "thread": 11 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1588542, + "thread": 4 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1655652, + "thread": 3 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 1897601, + "thread": 6 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2024726, + "thread": 21 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2290650, + "thread": 31 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2427730, + "thread": 19 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2610793, + "thread": 10 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2640358, + "thread": 21 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2924382, + "thread": 12 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 2976766, + "thread": 24 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 3255904, + "thread": 2 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 3387752, + "thread": 1 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 3583660, + "thread": 30 + } + }, + { + "amount": "366.519832018", + "slot": { + "period": 3761355, + "thread": 2 + } + }, + { + "amount": "366.519832025", + "slot": { + "period": 3879404, + "thread": 27 + } + } + ], + "AU1nnEHNW8e5oDBjcg7DJY7YhtHGmLXZ3fvhSJNw4EmqLMqWBr5v": [ + { + "amount": "60.564627526", + "slot": { + "period": 97551, + "thread": 19 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 315337, + "thread": 17 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 464535, + "thread": 10 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 604821, + "thread": 20 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 747063, + "thread": 9 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 864533, + "thread": 23 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1117109, + "thread": 18 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1212986, + "thread": 27 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1378518, + "thread": 5 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1588558, + "thread": 2 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1736735, + "thread": 7 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 1968090, + "thread": 25 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2057141, + "thread": 7 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2267955, + "thread": 22 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2350193, + "thread": 29 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2602832, + "thread": 23 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2768388, + "thread": 16 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2881437, + "thread": 2 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 2953976, + "thread": 7 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 3188542, + "thread": 26 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 3399983, + "thread": 6 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 3452278, + "thread": 8 + } + }, + { + "amount": "60.564627526", + "slot": { + "period": 3624243, + "thread": 5 + } + }, + { + "amount": "60.564627536", + "slot": { + "period": 3834037, + "thread": 14 + } + } + ], + "AU1nnVFVR4JqBBwWPKkSXXLMaHFpsoZRwkrmf8SMFmYbh4Ln6Y8F": [ + { + "amount": "150.227407198", + "slot": { + "period": 14886, + "thread": 3 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 225009, + "thread": 22 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 402273, + "thread": 9 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 568275, + "thread": 17 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 772693, + "thread": 24 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 899065, + "thread": 24 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1042570, + "thread": 28 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1295587, + "thread": 15 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1351297, + "thread": 27 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1504684, + "thread": 10 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1805256, + "thread": 22 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 1816351, + "thread": 31 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2125922, + "thread": 18 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2202099, + "thread": 18 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2444233, + "thread": 31 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2480704, + "thread": 21 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2682283, + "thread": 7 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 2859913, + "thread": 31 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 3045975, + "thread": 15 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 3163024, + "thread": 11 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 3317288, + "thread": 5 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 3453264, + "thread": 7 + } + }, + { + "amount": "150.227407198", + "slot": { + "period": 3626319, + "thread": 21 + } + }, + { + "amount": "150.227407200", + "slot": { + "period": 3810849, + "thread": 5 + } + } + ], + "AU1nnaCe6jxnsvvQFUo2ZmEJqMJ6aqrVKh9niwfLtWW9BRjgSYDz": [ + { + "amount": "158.082941053", + "slot": { + "period": 15969, + "thread": 31 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 236442, + "thread": 0 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 479549, + "thread": 6 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 617639, + "thread": 8 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 757599, + "thread": 28 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 873335, + "thread": 13 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1005133, + "thread": 17 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1248673, + "thread": 14 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1412675, + "thread": 22 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1625474, + "thread": 26 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1688648, + "thread": 7 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 1837699, + "thread": 13 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2065519, + "thread": 0 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2190253, + "thread": 14 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2296178, + "thread": 26 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2531074, + "thread": 10 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2715917, + "thread": 27 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 2842590, + "thread": 3 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 3044422, + "thread": 2 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 3255688, + "thread": 12 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 3426610, + "thread": 22 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 3535865, + "thread": 5 + } + }, + { + "amount": "158.082941053", + "slot": { + "period": 3778937, + "thread": 28 + } + }, + { + "amount": "158.082941052", + "slot": { + "period": 3848429, + "thread": 13 + } + } + ], + "AU1nnqpnQV5z858jH3nxk4em8BnD3yNcHwbNg99nf3KWtmN5BisF": [ + { + "amount": "323.489839709", + "slot": { + "period": 72780, + "thread": 18 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 279709, + "thread": 6 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 413010, + "thread": 9 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 639761, + "thread": 18 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 742851, + "thread": 10 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 939585, + "thread": 9 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1071783, + "thread": 25 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1166546, + "thread": 24 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1373391, + "thread": 27 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1526846, + "thread": 13 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1779896, + "thread": 20 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 1893219, + "thread": 8 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2026105, + "thread": 10 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2217568, + "thread": 22 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2347015, + "thread": 14 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2518557, + "thread": 0 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2789015, + "thread": 16 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 2808871, + "thread": 24 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 3067721, + "thread": 4 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 3177003, + "thread": 23 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 3437324, + "thread": 13 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 3589637, + "thread": 9 + } + }, + { + "amount": "323.489839709", + "slot": { + "period": 3667638, + "thread": 30 + } + }, + { + "amount": "323.489839719", + "slot": { + "period": 3903279, + "thread": 15 + } + } + ], + "AU1nnxxeUS3aMUbuHztBBxsgAqPTmRaDDkem94d7Sj1qiqdL5uBp": [ + { + "amount": "122.779649950", + "slot": { + "period": 112386, + "thread": 23 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 238490, + "thread": 22 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 477229, + "thread": 20 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 518942, + "thread": 7 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 738409, + "thread": 28 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 821017, + "thread": 22 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1004571, + "thread": 31 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1202134, + "thread": 21 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1393101, + "thread": 3 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1644539, + "thread": 7 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1650993, + "thread": 24 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 1867370, + "thread": 4 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2017103, + "thread": 24 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2169808, + "thread": 22 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2409536, + "thread": 3 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2614149, + "thread": 31 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2627644, + "thread": 25 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 2871436, + "thread": 27 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 3012875, + "thread": 2 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 3224625, + "thread": 11 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 3350817, + "thread": 7 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 3499865, + "thread": 15 + } + }, + { + "amount": "122.779649950", + "slot": { + "period": 3626910, + "thread": 10 + } + }, + { + "amount": "122.779649954", + "slot": { + "period": 3852738, + "thread": 23 + } + } + ], + "AU1no8a4eosEZocAPkC8n5GTmMfBQNYUCFnq6Yp9YMNFN1sEbvNj": [ + { + "amount": "156.024019131", + "slot": { + "period": 121369, + "thread": 17 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 245164, + "thread": 23 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 468335, + "thread": 22 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 608372, + "thread": 28 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 709280, + "thread": 13 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 907987, + "thread": 11 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1124632, + "thread": 31 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1256292, + "thread": 10 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1443931, + "thread": 1 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1607222, + "thread": 14 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1730728, + "thread": 29 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 1888194, + "thread": 1 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2101463, + "thread": 27 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2179323, + "thread": 18 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2372315, + "thread": 22 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2585422, + "thread": 15 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2696677, + "thread": 23 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 2909216, + "thread": 9 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 3060009, + "thread": 31 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 3268026, + "thread": 24 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 3336548, + "thread": 9 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 3555952, + "thread": 22 + } + }, + { + "amount": "156.024019131", + "slot": { + "period": 3624752, + "thread": 27 + } + }, + { + "amount": "156.024019135", + "slot": { + "period": 3801078, + "thread": 19 + } + } + ], + "AU1noGjpJuJhnX4htS6j9n47JTSuapNK3PgrWvgpKaLtQAGpgT3c": [ + { + "amount": "7583.333333333", + "slot": { + "period": 114217, + "thread": 26 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 319392, + "thread": 26 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 436442, + "thread": 14 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 516040, + "thread": 31 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 819200, + "thread": 3 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 927794, + "thread": 1 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1002121, + "thread": 24 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1158459, + "thread": 14 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1396001, + "thread": 4 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1636340, + "thread": 11 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1757699, + "thread": 14 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 1824770, + "thread": 24 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2028151, + "thread": 12 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2231200, + "thread": 9 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2419269, + "thread": 27 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2607629, + "thread": 27 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2672412, + "thread": 29 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 2945560, + "thread": 8 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 3016802, + "thread": 7 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 3198597, + "thread": 29 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 3294748, + "thread": 27 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 3580218, + "thread": 8 + } + }, + { + "amount": "7583.333333333", + "slot": { + "period": 3728463, + "thread": 16 + } + }, + { + "amount": "7583.333333341", + "slot": { + "period": 3930450, + "thread": 2 + } + } + ], + "AU1npR5tie6CkZUkmCpTBioQxhk7Rvvhi1bjttmLNsZc7SBNLiYj": [ + { + "amount": "233.933560686", + "slot": { + "period": 101694, + "thread": 22 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 322597, + "thread": 23 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 464029, + "thread": 9 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 640426, + "thread": 8 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 707038, + "thread": 17 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 841868, + "thread": 29 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1129526, + "thread": 29 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1218070, + "thread": 1 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1344804, + "thread": 6 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1563829, + "thread": 9 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1771169, + "thread": 29 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 1875486, + "thread": 16 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2061320, + "thread": 1 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2294304, + "thread": 20 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2329993, + "thread": 12 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2504607, + "thread": 11 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2740412, + "thread": 1 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 2855261, + "thread": 13 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 3059774, + "thread": 8 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 3212175, + "thread": 21 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 3424175, + "thread": 7 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 3576253, + "thread": 20 + } + }, + { + "amount": "233.933560686", + "slot": { + "period": 3629649, + "thread": 22 + } + }, + { + "amount": "233.933560677", + "slot": { + "period": 3937889, + "thread": 4 + } + } + ], + "AU1npdQnjY4ZWigfEQCKTexQuxZkWURHtMgHqcH2biuBpNd7dgJH": [ + { + "amount": "159.471930360", + "slot": { + "period": 125577, + "thread": 6 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 322156, + "thread": 11 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 410640, + "thread": 12 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 492793, + "thread": 30 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 767334, + "thread": 16 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 854567, + "thread": 22 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1037157, + "thread": 24 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1223504, + "thread": 2 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1425852, + "thread": 14 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1531876, + "thread": 4 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1670612, + "thread": 8 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 1822046, + "thread": 15 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2099073, + "thread": 30 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2287956, + "thread": 26 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2415525, + "thread": 17 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2507607, + "thread": 15 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2780366, + "thread": 18 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 2893912, + "thread": 20 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 3027820, + "thread": 21 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 3226400, + "thread": 13 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 3340537, + "thread": 21 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 3566468, + "thread": 26 + } + }, + { + "amount": "159.471930360", + "slot": { + "period": 3768291, + "thread": 8 + } + }, + { + "amount": "159.471930353", + "slot": { + "period": 3903354, + "thread": 1 + } + } + ], + "AU1npnGujYQPEvhB33KeC3gSppoZfpkhpJJc8Tka2fZPQAQJUJVq": [ + { + "amount": "111.729076674", + "slot": { + "period": 48567, + "thread": 17 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 275938, + "thread": 16 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 437700, + "thread": 15 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 642589, + "thread": 30 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 819937, + "thread": 26 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 891880, + "thread": 0 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1091878, + "thread": 28 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1182585, + "thread": 31 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1438560, + "thread": 25 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1610594, + "thread": 21 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1698503, + "thread": 31 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1863457, + "thread": 0 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 1976622, + "thread": 22 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 2191939, + "thread": 23 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 2444921, + "thread": 10 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 2486383, + "thread": 20 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 2632077, + "thread": 1 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 2818555, + "thread": 12 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 3019739, + "thread": 25 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 3232283, + "thread": 31 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 3317176, + "thread": 25 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 3574823, + "thread": 1 + } + }, + { + "amount": "111.729076674", + "slot": { + "period": 3777053, + "thread": 24 + } + }, + { + "amount": "111.729076679", + "slot": { + "period": 3872202, + "thread": 7 + } + } + ], + "AU1nqtc5ThWbL2Cu1kAE11iJLvg87YvQV2MxNKky3ztbCd5J8bnz": [ + { + "amount": "364.435592968", + "slot": { + "period": 49222, + "thread": 24 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 194770, + "thread": 9 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 474482, + "thread": 7 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 526853, + "thread": 10 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 792855, + "thread": 4 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 936509, + "thread": 2 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1069269, + "thread": 17 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1161145, + "thread": 7 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1429717, + "thread": 20 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1480399, + "thread": 10 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1806686, + "thread": 9 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 1966164, + "thread": 9 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2033663, + "thread": 9 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2153920, + "thread": 2 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2306386, + "thread": 15 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2602720, + "thread": 15 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2780529, + "thread": 30 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2801654, + "thread": 18 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 2995050, + "thread": 8 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 3222693, + "thread": 25 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 3292444, + "thread": 31 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 3538237, + "thread": 20 + } + }, + { + "amount": "364.435592968", + "slot": { + "period": 3749479, + "thread": 24 + } + }, + { + "amount": "364.435592963", + "slot": { + "period": 3822034, + "thread": 31 + } + } + ], + "AU1nu11qnhtryJrq863EaHRzLZjYvT2DF6FZTvMUjJBm6ocXPvBH": [ + { + "amount": "127.504442923", + "slot": { + "period": 17739, + "thread": 13 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 176895, + "thread": 12 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 390505, + "thread": 14 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 576224, + "thread": 3 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 737417, + "thread": 13 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 947481, + "thread": 26 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1059075, + "thread": 14 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1232352, + "thread": 30 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1384574, + "thread": 25 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1497046, + "thread": 11 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1724376, + "thread": 28 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 1816714, + "thread": 0 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2104082, + "thread": 20 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2226055, + "thread": 19 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2312755, + "thread": 21 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2597931, + "thread": 29 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2664800, + "thread": 16 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 2795996, + "thread": 16 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 3010047, + "thread": 15 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 3149289, + "thread": 4 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 3312691, + "thread": 8 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 3571143, + "thread": 25 + } + }, + { + "amount": "127.504442923", + "slot": { + "period": 3701605, + "thread": 0 + } + }, + { + "amount": "127.504442931", + "slot": { + "period": 3864856, + "thread": 13 + } + } + ], + "AU1nuUoP2tDQQt2ABRuBamKgbVrgS8NGjnbY6UYibCwTsiGzv8u4": [ + { + "amount": "399.010178264", + "slot": { + "period": 128695, + "thread": 30 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 172324, + "thread": 8 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 451342, + "thread": 21 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 587464, + "thread": 30 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 705835, + "thread": 7 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 860008, + "thread": 25 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1144573, + "thread": 22 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1247334, + "thread": 22 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1433012, + "thread": 9 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1507809, + "thread": 13 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1696495, + "thread": 7 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 1936420, + "thread": 28 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2099442, + "thread": 18 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2231515, + "thread": 19 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2362992, + "thread": 5 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2570831, + "thread": 11 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2671885, + "thread": 24 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 2864194, + "thread": 25 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3109523, + "thread": 20 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3156446, + "thread": 20 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3423853, + "thread": 16 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3529353, + "thread": 13 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3627101, + "thread": 23 + } + }, + { + "amount": "399.010178264", + "slot": { + "period": 3936869, + "thread": 26 + } + } + ], + "AU1nuh8b8CvvKggBJCqsuBjLyyeUgm4VMBSdEdhCeYFb24ADGG1R": [ + { + "amount": "453.740037000", + "slot": { + "period": 24094, + "thread": 23 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 195986, + "thread": 8 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 464280, + "thread": 27 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 601155, + "thread": 2 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 705189, + "thread": 11 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 903161, + "thread": 10 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1094232, + "thread": 27 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1170563, + "thread": 24 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1319672, + "thread": 0 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1597241, + "thread": 0 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1688905, + "thread": 30 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 1852357, + "thread": 1 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2097719, + "thread": 21 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2257531, + "thread": 16 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2369412, + "thread": 8 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2512122, + "thread": 7 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2709523, + "thread": 2 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 2831001, + "thread": 30 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 3029914, + "thread": 27 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 3272891, + "thread": 6 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 3297132, + "thread": 23 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 3599814, + "thread": 24 + } + }, + { + "amount": "453.740037000", + "slot": { + "period": 3649676, + "thread": 0 + } + }, + { + "amount": "453.740036992", + "slot": { + "period": 3801849, + "thread": 19 + } + } + ], + "AU1nuqcugkM9BUjcLUbyrSDeSau8UQ3u8LXC7FwtqZSNDZKRDyF4": [ + { + "amount": "228.638383763", + "slot": { + "period": 130062, + "thread": 29 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 170998, + "thread": 6 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 461071, + "thread": 16 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 597978, + "thread": 25 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 672018, + "thread": 6 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 960391, + "thread": 13 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1148152, + "thread": 13 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1315899, + "thread": 26 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1430336, + "thread": 13 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1526205, + "thread": 20 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1790950, + "thread": 11 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 1817450, + "thread": 28 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2066646, + "thread": 22 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2286441, + "thread": 19 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2364841, + "thread": 14 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2567878, + "thread": 10 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2701214, + "thread": 19 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 2920669, + "thread": 22 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 3084698, + "thread": 11 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 3241708, + "thread": 3 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 3289475, + "thread": 16 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 3601778, + "thread": 11 + } + }, + { + "amount": "228.638383763", + "slot": { + "period": 3701084, + "thread": 21 + } + }, + { + "amount": "228.638383772", + "slot": { + "period": 3880305, + "thread": 9 + } + } + ], + "AU1nvPCW7928F2rSTbW8cHLpj5GEP3pW9EobghLb9Bvu1a52EJ7T": [ + { + "amount": "106.172023074", + "slot": { + "period": 131406, + "thread": 11 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 181029, + "thread": 2 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 427898, + "thread": 19 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 492886, + "thread": 29 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 655201, + "thread": 20 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 900923, + "thread": 25 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1050984, + "thread": 14 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1295797, + "thread": 4 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1393150, + "thread": 19 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1562627, + "thread": 27 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1693977, + "thread": 27 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 1945578, + "thread": 25 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2131406, + "thread": 31 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2183448, + "thread": 4 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2367183, + "thread": 0 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2549239, + "thread": 28 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2738276, + "thread": 8 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2881206, + "thread": 18 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 2954593, + "thread": 16 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 3228780, + "thread": 13 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 3339694, + "thread": 5 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 3527520, + "thread": 28 + } + }, + { + "amount": "106.172023074", + "slot": { + "period": 3734907, + "thread": 4 + } + }, + { + "amount": "106.172023066", + "slot": { + "period": 3802816, + "thread": 11 + } + } + ], + "AU1nveHV74m1o6Fdmoxx2UJHGWgAVDzD7t1NnANBSduR1P7xtrtt": [ + { + "amount": "79.866113758", + "slot": { + "period": 72437, + "thread": 12 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 283689, + "thread": 17 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 478215, + "thread": 3 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 635145, + "thread": 15 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 768162, + "thread": 16 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 848791, + "thread": 26 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1121063, + "thread": 1 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1230844, + "thread": 12 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1320519, + "thread": 16 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1555075, + "thread": 12 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1687234, + "thread": 16 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 1918119, + "thread": 1 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2107758, + "thread": 20 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2186169, + "thread": 11 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2432285, + "thread": 26 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2517239, + "thread": 30 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2669329, + "thread": 31 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 2798872, + "thread": 5 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 3052846, + "thread": 0 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 3141598, + "thread": 0 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 3440637, + "thread": 3 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 3514342, + "thread": 26 + } + }, + { + "amount": "79.866113758", + "slot": { + "period": 3757219, + "thread": 31 + } + }, + { + "amount": "79.866113757", + "slot": { + "period": 3805296, + "thread": 3 + } + } + ], + "AU1nvibtrcN5PPkj9bwZX3qD8WY4bjeud5rcJDXqzKNqfX5CJKc1": [ + { + "amount": "451.657693712", + "slot": { + "period": 31468, + "thread": 9 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 247119, + "thread": 30 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 400922, + "thread": 3 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 496464, + "thread": 14 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 817249, + "thread": 0 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 937630, + "thread": 17 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 984641, + "thread": 16 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 1223397, + "thread": 31 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 1356269, + "thread": 14 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 1516718, + "thread": 27 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 1808206, + "thread": 27 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 1938522, + "thread": 4 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2015676, + "thread": 7 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2197678, + "thread": 21 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2407638, + "thread": 3 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2610275, + "thread": 9 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2665765, + "thread": 18 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 2870195, + "thread": 20 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3041095, + "thread": 21 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3150745, + "thread": 30 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3345955, + "thread": 31 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3492251, + "thread": 2 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3691428, + "thread": 24 + } + }, + { + "amount": "451.657693712", + "slot": { + "period": 3794983, + "thread": 31 + } + } + ], + "AU1nvoE4ZNTkz84bjqKWbrMwEX7TQCdGwpbiJBwdjqaXrYXeV5QU": [ + { + "amount": "352.302853352", + "slot": { + "period": 101209, + "thread": 15 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 218362, + "thread": 11 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 382526, + "thread": 5 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 493796, + "thread": 19 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 726228, + "thread": 28 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 907337, + "thread": 9 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 997841, + "thread": 22 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 1164095, + "thread": 2 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 1324168, + "thread": 10 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 1548251, + "thread": 15 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 1756911, + "thread": 18 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 1940326, + "thread": 25 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2060825, + "thread": 29 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2237542, + "thread": 4 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2311868, + "thread": 24 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2471907, + "thread": 9 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2714401, + "thread": 29 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2816435, + "thread": 20 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 2959935, + "thread": 4 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 3204271, + "thread": 1 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 3423022, + "thread": 18 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 3578692, + "thread": 4 + } + }, + { + "amount": "352.302853352", + "slot": { + "period": 3636280, + "thread": 28 + } + }, + { + "amount": "352.302853344", + "slot": { + "period": 3877766, + "thread": 2 + } + } + ], + "AU1nw33MdR2C1WZ1gpTP1UfmxCemqD12pmaaBd5BqWBJ2PVZdvJX": [ + { + "amount": "63.602167692", + "slot": { + "period": 143981, + "thread": 4 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 280392, + "thread": 18 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 436234, + "thread": 18 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 609036, + "thread": 15 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 679144, + "thread": 19 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 903559, + "thread": 18 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1027260, + "thread": 11 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1286717, + "thread": 30 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1383481, + "thread": 4 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1501596, + "thread": 28 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1682749, + "thread": 15 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 1834269, + "thread": 21 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2028866, + "thread": 26 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2275034, + "thread": 2 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2425908, + "thread": 2 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2510049, + "thread": 17 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2723638, + "thread": 28 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2904724, + "thread": 11 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 2992339, + "thread": 16 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 3263503, + "thread": 2 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 3417893, + "thread": 3 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 3516539, + "thread": 23 + } + }, + { + "amount": "63.602167692", + "slot": { + "period": 3723893, + "thread": 24 + } + }, + { + "amount": "63.602167697", + "slot": { + "period": 3918853, + "thread": 10 + } + } + ], + "AU1nwB9fWZP5yKX1JyZJ71RSxrUeo96amCv6Z2MYio496yCe2pM4": [ + { + "amount": "454.552312109", + "slot": { + "period": 117199, + "thread": 10 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 291312, + "thread": 9 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 365119, + "thread": 18 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 547899, + "thread": 2 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 673097, + "thread": 26 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 834228, + "thread": 21 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1046013, + "thread": 30 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1157133, + "thread": 14 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1365341, + "thread": 31 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1533042, + "thread": 20 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1688857, + "thread": 25 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 1919404, + "thread": 10 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2124476, + "thread": 27 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2179719, + "thread": 9 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2421683, + "thread": 28 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2530613, + "thread": 3 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2761570, + "thread": 1 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2940825, + "thread": 27 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 2992219, + "thread": 26 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 3128125, + "thread": 18 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 3353556, + "thread": 3 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 3497919, + "thread": 29 + } + }, + { + "amount": "454.552312109", + "slot": { + "period": 3630895, + "thread": 6 + } + }, + { + "amount": "454.552312117", + "slot": { + "period": 3942036, + "thread": 1 + } + } + ], + "AU1nyB5u5GPNCGsHxXbzBsRH6HjjxtXckzpFk3e4aXa1CK72fDFv": [ + { + "amount": "139.299712729", + "slot": { + "period": 20180, + "thread": 6 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 250127, + "thread": 2 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 346288, + "thread": 22 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 531169, + "thread": 7 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 741435, + "thread": 12 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 869941, + "thread": 18 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1041236, + "thread": 26 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1206617, + "thread": 9 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1473532, + "thread": 2 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1512063, + "thread": 18 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1695005, + "thread": 2 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 1939729, + "thread": 0 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2008739, + "thread": 2 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2177295, + "thread": 21 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2307526, + "thread": 8 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2603164, + "thread": 2 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2712199, + "thread": 20 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 2820095, + "thread": 12 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 3119079, + "thread": 13 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 3239003, + "thread": 15 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 3416806, + "thread": 21 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 3578986, + "thread": 23 + } + }, + { + "amount": "139.299712729", + "slot": { + "period": 3646149, + "thread": 4 + } + }, + { + "amount": "139.299712728", + "slot": { + "period": 3780414, + "thread": 26 + } + } + ], + "AU1nyfS1JHdwXZ2SJwwtj5TPGUhrDFHVjH9NQQ6nTNfQfjY2VF5": [ + { + "amount": "299.753035315", + "slot": { + "period": 64910, + "thread": 15 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 217324, + "thread": 14 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 358666, + "thread": 7 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 645667, + "thread": 21 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 771564, + "thread": 21 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 918230, + "thread": 15 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1032220, + "thread": 10 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1298845, + "thread": 6 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1373954, + "thread": 13 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1633470, + "thread": 9 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1762127, + "thread": 14 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 1916664, + "thread": 11 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2053642, + "thread": 16 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2173754, + "thread": 26 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2298564, + "thread": 6 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2599164, + "thread": 29 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2662104, + "thread": 12 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 2804656, + "thread": 1 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 3090370, + "thread": 24 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 3207197, + "thread": 24 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 3363448, + "thread": 15 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 3521372, + "thread": 2 + } + }, + { + "amount": "299.753035315", + "slot": { + "period": 3669875, + "thread": 11 + } + }, + { + "amount": "299.753035313", + "slot": { + "period": 3804968, + "thread": 19 + } + } + ], + "AU1o1QybipfJ6FjTyw6LF51b5NA43Hu4ZtcQujSahw9N2qK8HFhd": [ + { + "amount": "104.227821581", + "slot": { + "period": 138875, + "thread": 31 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 313786, + "thread": 19 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 330042, + "thread": 17 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 515819, + "thread": 1 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 770465, + "thread": 24 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 944797, + "thread": 14 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1100832, + "thread": 28 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1162415, + "thread": 30 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1434930, + "thread": 23 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1632268, + "thread": 23 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1760390, + "thread": 6 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 1838066, + "thread": 30 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2089873, + "thread": 21 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2272767, + "thread": 6 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2382764, + "thread": 21 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2497274, + "thread": 31 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2712223, + "thread": 18 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 2883907, + "thread": 8 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 3098990, + "thread": 24 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 3258475, + "thread": 16 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 3335147, + "thread": 11 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 3603849, + "thread": 24 + } + }, + { + "amount": "104.227821581", + "slot": { + "period": 3719153, + "thread": 20 + } + }, + { + "amount": "104.227821587", + "slot": { + "period": 3831974, + "thread": 4 + } + } + ], + "AU1o3L3cdprTLwrTZ458rWikvGZM7FYsMRgGVDtmMDuuB5uuKrzb": [ + { + "amount": "210.851823523", + "slot": { + "period": 46886, + "thread": 4 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 310714, + "thread": 6 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 413221, + "thread": 14 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 556199, + "thread": 30 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 740912, + "thread": 19 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 837914, + "thread": 8 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1109823, + "thread": 11 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1227607, + "thread": 26 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1424273, + "thread": 19 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1522422, + "thread": 17 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1792880, + "thread": 19 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1838068, + "thread": 13 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 1976856, + "thread": 24 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2264682, + "thread": 4 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2444735, + "thread": 11 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2615917, + "thread": 25 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2627031, + "thread": 17 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2937886, + "thread": 18 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 2970056, + "thread": 1 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 3284370, + "thread": 3 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 3422916, + "thread": 27 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 3611376, + "thread": 1 + } + }, + { + "amount": "210.851823523", + "slot": { + "period": 3705200, + "thread": 29 + } + }, + { + "amount": "210.851823516", + "slot": { + "period": 3826313, + "thread": 20 + } + } + ], + "AU1o3hcANdonGnEpwwBJwv7sv7FPdHzCzoLjAdpDnEgE1xzPPpjG": [ + { + "amount": "557.501684845", + "slot": { + "period": 13508, + "thread": 30 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 291968, + "thread": 21 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 352699, + "thread": 31 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 640252, + "thread": 31 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 673304, + "thread": 13 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 857206, + "thread": 22 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1084355, + "thread": 3 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1157224, + "thread": 10 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1477957, + "thread": 2 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1523044, + "thread": 21 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1752282, + "thread": 18 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 1926749, + "thread": 31 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2085611, + "thread": 19 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2194593, + "thread": 29 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2446755, + "thread": 20 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2596023, + "thread": 29 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2768434, + "thread": 8 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 2865855, + "thread": 13 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 3111408, + "thread": 11 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 3131141, + "thread": 28 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 3298757, + "thread": 31 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 3507783, + "thread": 7 + } + }, + { + "amount": "557.501684845", + "slot": { + "period": 3777392, + "thread": 19 + } + }, + { + "amount": "557.501684854", + "slot": { + "period": 3907783, + "thread": 10 + } + } + ], + "AU1o4ZDHSceNQdEzP1Ssr9xvc5eg98u14YRjXvjzZ66vBTQqm4n9": [ + { + "amount": "225.293689907", + "slot": { + "period": 141250, + "thread": 25 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 279925, + "thread": 30 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 359364, + "thread": 14 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 516724, + "thread": 16 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 672854, + "thread": 1 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 865034, + "thread": 12 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1097794, + "thread": 18 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1192733, + "thread": 16 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1424130, + "thread": 15 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1611727, + "thread": 24 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1706791, + "thread": 14 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 1877529, + "thread": 16 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2026070, + "thread": 20 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2201150, + "thread": 30 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2326059, + "thread": 18 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2587129, + "thread": 25 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2769178, + "thread": 12 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2898956, + "thread": 31 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 2962959, + "thread": 27 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 3287220, + "thread": 17 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 3371702, + "thread": 1 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 3538697, + "thread": 0 + } + }, + { + "amount": "225.293689907", + "slot": { + "period": 3654271, + "thread": 31 + } + }, + { + "amount": "225.293689909", + "slot": { + "period": 3854867, + "thread": 6 + } + } + ], + "AU1o4ZuxLfRYvms78hAd48r5V3wzMPX6kKhWNyRa8p3JfXgfdomM": [ + { + "amount": "163.168914497", + "slot": { + "period": 86392, + "thread": 6 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 201843, + "thread": 13 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 416335, + "thread": 17 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 531851, + "thread": 13 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 730736, + "thread": 28 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 978671, + "thread": 22 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1068269, + "thread": 4 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1226807, + "thread": 18 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1372651, + "thread": 2 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1486990, + "thread": 5 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1690057, + "thread": 25 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 1897902, + "thread": 8 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2011438, + "thread": 9 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2245109, + "thread": 11 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2314456, + "thread": 14 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2483760, + "thread": 14 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2632489, + "thread": 11 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2794881, + "thread": 26 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 2994379, + "thread": 20 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 3171891, + "thread": 12 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 3386998, + "thread": 18 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 3540803, + "thread": 9 + } + }, + { + "amount": "163.168914497", + "slot": { + "period": 3768692, + "thread": 9 + } + }, + { + "amount": "163.168914506", + "slot": { + "period": 3943207, + "thread": 19 + } + } + ], + "AU1o56rJNaRZ4vnXRFvWp5d7jTeEEGKrLizXAUTkgNipNQou6FQ4": [ + { + "amount": "154.488839258", + "slot": { + "period": 41826, + "thread": 24 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 282403, + "thread": 24 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 435266, + "thread": 28 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 607332, + "thread": 1 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 752969, + "thread": 14 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 852967, + "thread": 16 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1128294, + "thread": 6 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1240592, + "thread": 10 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1354615, + "thread": 6 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1588790, + "thread": 11 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1685053, + "thread": 31 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1945598, + "thread": 7 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 1989904, + "thread": 8 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 2272293, + "thread": 19 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 2416346, + "thread": 7 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 2469678, + "thread": 25 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 2674209, + "thread": 28 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 2845303, + "thread": 23 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 3113985, + "thread": 30 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 3167101, + "thread": 8 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 3379594, + "thread": 22 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 3486836, + "thread": 8 + } + }, + { + "amount": "154.488839258", + "slot": { + "period": 3721390, + "thread": 16 + } + }, + { + "amount": "154.488839247", + "slot": { + "period": 3819987, + "thread": 22 + } + } + ], + "AU1o5hmSn6g5nGVuKG2CoEqWZ1zJhqyQZmjsPJU6QPK7GRuSizc4": [ + { + "amount": "5833.333333333", + "slot": { + "period": 45227, + "thread": 1 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 308165, + "thread": 3 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 391732, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 611936, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 732888, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 892855, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1128107, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1306402, + "thread": 0 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1453761, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1549933, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1767753, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1885280, + "thread": 25 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2025259, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2248295, + "thread": 26 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2418030, + "thread": 2 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2594793, + "thread": 11 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2671898, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2820522, + "thread": 30 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3052513, + "thread": 27 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3222632, + "thread": 22 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3407151, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3561652, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3695129, + "thread": 18 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3923655, + "thread": 10 + } + } + ], + "AU1o5u8JgngwBawtVjnnw2BqVHkubHUjirvSTk4dRntuz5WSxgXK": [ + { + "amount": "148.963656135", + "slot": { + "period": 56869, + "thread": 28 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 170897, + "thread": 0 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 412884, + "thread": 12 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 618781, + "thread": 26 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 748730, + "thread": 14 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 912415, + "thread": 19 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1036234, + "thread": 13 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1276321, + "thread": 24 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1418304, + "thread": 16 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1561325, + "thread": 8 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1719357, + "thread": 5 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 1869367, + "thread": 13 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2004095, + "thread": 6 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2218983, + "thread": 5 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2390081, + "thread": 27 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2553847, + "thread": 3 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2708375, + "thread": 25 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 2812312, + "thread": 5 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 3090348, + "thread": 6 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 3194203, + "thread": 5 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 3404994, + "thread": 30 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 3479481, + "thread": 9 + } + }, + { + "amount": "148.963656135", + "slot": { + "period": 3769682, + "thread": 14 + } + }, + { + "amount": "148.963656141", + "slot": { + "period": 3926994, + "thread": 21 + } + } + ], + "AU1o6QTeEKn1VzrJP7Y1kFCzj8tRQDVBV28UeLhQfNZVENU4Dfta": [ + { + "amount": "90.343641843", + "slot": { + "period": 96570, + "thread": 0 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 256326, + "thread": 9 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 464919, + "thread": 26 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 603901, + "thread": 8 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 742692, + "thread": 20 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 911830, + "thread": 0 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1052717, + "thread": 30 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1259522, + "thread": 19 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1391429, + "thread": 11 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1576249, + "thread": 29 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1785541, + "thread": 16 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 1935375, + "thread": 28 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2132308, + "thread": 8 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2198553, + "thread": 7 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2304601, + "thread": 23 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2574302, + "thread": 18 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2692626, + "thread": 13 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 2834279, + "thread": 9 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 3111346, + "thread": 18 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 3223993, + "thread": 21 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 3379840, + "thread": 28 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 3508594, + "thread": 8 + } + }, + { + "amount": "90.343641843", + "slot": { + "period": 3725377, + "thread": 22 + } + }, + { + "amount": "90.343641840", + "slot": { + "period": 3916987, + "thread": 0 + } + } + ], + "AU1o7BvnEZupy4Um8HKvic32oCcSt7gN9cb68kTiRoaD839R7hq2": [ + { + "amount": "186.490375277", + "slot": { + "period": 159303, + "thread": 1 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 279897, + "thread": 12 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 392904, + "thread": 29 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 638091, + "thread": 8 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 678551, + "thread": 9 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 860964, + "thread": 10 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1045216, + "thread": 25 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1267459, + "thread": 19 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1432506, + "thread": 25 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1491295, + "thread": 12 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1740028, + "thread": 12 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 1856223, + "thread": 6 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2118752, + "thread": 15 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2187480, + "thread": 21 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2376705, + "thread": 11 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2498652, + "thread": 9 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2672707, + "thread": 9 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2809994, + "thread": 25 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 2985315, + "thread": 5 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 3288089, + "thread": 7 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 3434852, + "thread": 27 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 3601650, + "thread": 9 + } + }, + { + "amount": "186.490375277", + "slot": { + "period": 3753202, + "thread": 1 + } + }, + { + "amount": "186.490375286", + "slot": { + "period": 3891781, + "thread": 26 + } + } + ], + "AU1o82cS5gyYwt6Ym3Gc4cXF6hTihu3TJ31iNphsKV6H9SmmW1me": [ + { + "amount": "53.751726549", + "slot": { + "period": 167086, + "thread": 5 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 257572, + "thread": 8 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 447955, + "thread": 16 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 493028, + "thread": 22 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 683209, + "thread": 1 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 979394, + "thread": 27 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1067387, + "thread": 22 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1237419, + "thread": 30 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1324192, + "thread": 2 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1636553, + "thread": 14 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1687484, + "thread": 28 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 1955442, + "thread": 20 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2132230, + "thread": 30 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2233892, + "thread": 13 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2425608, + "thread": 24 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2602122, + "thread": 22 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2701953, + "thread": 20 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2942257, + "thread": 18 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 2959220, + "thread": 2 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 3142949, + "thread": 17 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 3310931, + "thread": 16 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 3527309, + "thread": 13 + } + }, + { + "amount": "53.751726549", + "slot": { + "period": 3679306, + "thread": 23 + } + }, + { + "amount": "53.751726544", + "slot": { + "period": 3865866, + "thread": 15 + } + } + ], + "AU1o8UC4UeuhQiRrneWUMq7v5pkDYRxnzcwahyg3BWuAmpMv8Www": [ + { + "amount": "333.532160929", + "slot": { + "period": 108147, + "thread": 13 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 214047, + "thread": 8 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 337580, + "thread": 5 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 537166, + "thread": 3 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 679146, + "thread": 5 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 826399, + "thread": 8 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1063008, + "thread": 6 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1216450, + "thread": 13 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1408983, + "thread": 11 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1482699, + "thread": 23 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1704396, + "thread": 16 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 1851288, + "thread": 24 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2073807, + "thread": 25 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2200278, + "thread": 19 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2360054, + "thread": 15 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2473704, + "thread": 21 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2755172, + "thread": 1 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 2794358, + "thread": 9 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 3053532, + "thread": 31 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 3213140, + "thread": 12 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 3395562, + "thread": 12 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 3587344, + "thread": 29 + } + }, + { + "amount": "333.532160929", + "slot": { + "period": 3683127, + "thread": 23 + } + }, + { + "amount": "333.532160921", + "slot": { + "period": 3781933, + "thread": 21 + } + } + ], + "AU1oA7uBoGZRTcZxnxfx19AWxALu8ZwLwR8s6DE8ReZfTCS1NURf": [ + { + "amount": "151.871878513", + "slot": { + "period": 47088, + "thread": 5 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 172888, + "thread": 14 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 402410, + "thread": 0 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 540437, + "thread": 11 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 707002, + "thread": 3 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 829462, + "thread": 1 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1050054, + "thread": 21 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1177315, + "thread": 23 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1384374, + "thread": 21 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1523302, + "thread": 20 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1768011, + "thread": 28 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 1918953, + "thread": 23 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2024262, + "thread": 0 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2174696, + "thread": 9 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2323601, + "thread": 31 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2542003, + "thread": 5 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2728915, + "thread": 6 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 2879424, + "thread": 27 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 3037838, + "thread": 29 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 3162038, + "thread": 20 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 3405591, + "thread": 21 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 3503570, + "thread": 10 + } + }, + { + "amount": "151.871878513", + "slot": { + "period": 3746612, + "thread": 19 + } + }, + { + "amount": "151.871878505", + "slot": { + "period": 3911055, + "thread": 9 + } + } + ], + "AU1oBn11vHqabguwnWqA1SPqETGyLoS72nfxEeFSkSSLW5GMyE82": [ + { + "amount": "287.201922158", + "slot": { + "period": 161669, + "thread": 20 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 243340, + "thread": 28 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 348528, + "thread": 11 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 586234, + "thread": 24 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 722048, + "thread": 22 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 886463, + "thread": 15 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1115952, + "thread": 31 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1248162, + "thread": 0 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1409754, + "thread": 3 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1558514, + "thread": 15 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1726879, + "thread": 11 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1822255, + "thread": 23 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 1989236, + "thread": 14 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 2234928, + "thread": 1 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 2416831, + "thread": 28 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 2521163, + "thread": 0 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 2681467, + "thread": 7 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 2798216, + "thread": 12 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3094457, + "thread": 1 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3252268, + "thread": 8 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3420396, + "thread": 11 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3543072, + "thread": 2 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3663893, + "thread": 27 + } + }, + { + "amount": "287.201922158", + "slot": { + "period": 3876196, + "thread": 31 + } + } + ], + "AU1oBrbmvgepq9stvJWuUS5imPZscArZ15hg3MQqawxjuPYAMeTL": [ + { + "amount": "262.253092345", + "slot": { + "period": 132491, + "thread": 10 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 222186, + "thread": 11 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 462359, + "thread": 8 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 626273, + "thread": 10 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 691315, + "thread": 0 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 826732, + "thread": 18 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1141724, + "thread": 27 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1314985, + "thread": 27 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1428105, + "thread": 24 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1492686, + "thread": 0 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1681983, + "thread": 19 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 1972658, + "thread": 22 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2036161, + "thread": 18 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2164745, + "thread": 11 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2395451, + "thread": 24 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2560589, + "thread": 19 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2744100, + "thread": 13 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 2872089, + "thread": 9 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 3036493, + "thread": 20 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 3163649, + "thread": 17 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 3410448, + "thread": 30 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 3599269, + "thread": 28 + } + }, + { + "amount": "262.253092345", + "slot": { + "period": 3731009, + "thread": 10 + } + }, + { + "amount": "262.253092356", + "slot": { + "period": 3808004, + "thread": 24 + } + } + ], + "AU1oC9bybp9E6PWqn2TgJWLDEThXqvhebPaq9u9yXzUo4Xdw887g": [ + { + "amount": "173871.833333333", + "slot": { + "period": 83275, + "thread": 30 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 240841, + "thread": 11 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 478936, + "thread": 9 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 624789, + "thread": 14 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 687299, + "thread": 10 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 846617, + "thread": 26 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1010698, + "thread": 23 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1234261, + "thread": 7 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1345677, + "thread": 23 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1501000, + "thread": 28 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1674589, + "thread": 29 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 1834628, + "thread": 25 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2043959, + "thread": 3 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2206288, + "thread": 14 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2410083, + "thread": 19 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2583232, + "thread": 20 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2709567, + "thread": 3 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 2814262, + "thread": 24 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 3006441, + "thread": 27 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 3121944, + "thread": 13 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 3394481, + "thread": 28 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 3482389, + "thread": 11 + } + }, + { + "amount": "173871.833333333", + "slot": { + "period": 3682818, + "thread": 7 + } + }, + { + "amount": "173871.833333341", + "slot": { + "period": 3895730, + "thread": 24 + } + } + ], + "AU1oCAysKDM3KC8oqWaTmhbYLYXqB65zDXSYKhhrYCoxnnV3Lkqf": [ + { + "amount": "416.941355246", + "slot": { + "period": 78954, + "thread": 9 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 178637, + "thread": 25 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 409172, + "thread": 0 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 608970, + "thread": 19 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 660379, + "thread": 31 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 911892, + "thread": 16 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1144699, + "thread": 25 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1299769, + "thread": 10 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1401247, + "thread": 19 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1561753, + "thread": 11 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1785482, + "thread": 4 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1959985, + "thread": 29 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 1991292, + "thread": 26 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 2147144, + "thread": 30 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 2431169, + "thread": 14 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 2595520, + "thread": 12 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 2671486, + "thread": 29 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 2918898, + "thread": 6 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 3050861, + "thread": 22 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 3168786, + "thread": 23 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 3290051, + "thread": 16 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 3485078, + "thread": 28 + } + }, + { + "amount": "416.941355246", + "slot": { + "period": 3692584, + "thread": 4 + } + }, + { + "amount": "416.941355240", + "slot": { + "period": 3846183, + "thread": 7 + } + } + ], + "AU1oCPv2PFoXFRh8BSXUnpLCedeQjYq3tR3v5J4MLX6w16c8AfKU": [ + { + "amount": "334.061440128", + "slot": { + "period": 119503, + "thread": 29 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 238719, + "thread": 26 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 330261, + "thread": 29 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 644977, + "thread": 3 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 746956, + "thread": 29 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 827329, + "thread": 25 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 990091, + "thread": 6 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 1251079, + "thread": 12 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 1374990, + "thread": 27 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 1626677, + "thread": 14 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 1681780, + "thread": 25 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 1848662, + "thread": 28 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2038382, + "thread": 17 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2202065, + "thread": 5 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2457101, + "thread": 15 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2592076, + "thread": 23 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2641540, + "thread": 27 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 2852027, + "thread": 17 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 3089348, + "thread": 9 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 3242844, + "thread": 16 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 3332924, + "thread": 18 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 3541565, + "thread": 9 + } + }, + { + "amount": "334.061440128", + "slot": { + "period": 3750522, + "thread": 23 + } + }, + { + "amount": "334.061440125", + "slot": { + "period": 3912754, + "thread": 27 + } + } + ], + "AU1oENt5L4Jy5kYVJJuynS1yiZfyY1t17ZtWYmsVHuQXoWhRxcVU": [ + { + "amount": "181.214466990", + "slot": { + "period": 87176, + "thread": 25 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 284513, + "thread": 4 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 420099, + "thread": 18 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 564577, + "thread": 23 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 693755, + "thread": 23 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 904041, + "thread": 12 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1109945, + "thread": 19 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1178960, + "thread": 13 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1455631, + "thread": 19 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1637074, + "thread": 17 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1802714, + "thread": 15 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 1859853, + "thread": 10 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2139847, + "thread": 4 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2191375, + "thread": 9 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2306458, + "thread": 23 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2583372, + "thread": 14 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2647954, + "thread": 6 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2923856, + "thread": 5 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 2973604, + "thread": 6 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 3154516, + "thread": 20 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 3360694, + "thread": 21 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 3514052, + "thread": 11 + } + }, + { + "amount": "181.214466990", + "slot": { + "period": 3711323, + "thread": 14 + } + }, + { + "amount": "181.214466999", + "slot": { + "period": 3787742, + "thread": 20 + } + } + ], + "AU1oG2WUoorrsqxJbA44VWFuKDNLxJ4ZMTDWFzhp1oGmqKQQK1US": [ + { + "amount": "367.370408526", + "slot": { + "period": 161657, + "thread": 16 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 269263, + "thread": 2 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 415501, + "thread": 27 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 514516, + "thread": 14 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 743066, + "thread": 18 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 864645, + "thread": 9 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1027549, + "thread": 19 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1156248, + "thread": 0 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1433637, + "thread": 11 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1488078, + "thread": 22 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1693259, + "thread": 17 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1916271, + "thread": 4 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 1986382, + "thread": 10 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 2241830, + "thread": 17 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 2378864, + "thread": 18 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 2495344, + "thread": 6 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 2767657, + "thread": 27 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 2800688, + "thread": 15 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 3062212, + "thread": 0 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 3185586, + "thread": 30 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 3368961, + "thread": 10 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 3615141, + "thread": 4 + } + }, + { + "amount": "367.370408526", + "slot": { + "period": 3664708, + "thread": 21 + } + }, + { + "amount": "367.370408537", + "slot": { + "period": 3860560, + "thread": 7 + } + } + ], + "AU1oGKqY9CDiryb6HA5abN4s1afNvmj81mgMRbCxgzEegupcoeie": [ + { + "amount": "253.832566222", + "slot": { + "period": 71780, + "thread": 10 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 171702, + "thread": 14 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 399360, + "thread": 12 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 549087, + "thread": 4 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 732074, + "thread": 25 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 862957, + "thread": 21 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1004207, + "thread": 10 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1289852, + "thread": 26 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1381746, + "thread": 15 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1539101, + "thread": 16 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1735977, + "thread": 16 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 1849624, + "thread": 27 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2090088, + "thread": 19 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2215045, + "thread": 23 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2377186, + "thread": 28 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2482129, + "thread": 6 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2745618, + "thread": 22 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 2894193, + "thread": 0 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 3036899, + "thread": 27 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 3233482, + "thread": 29 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 3434025, + "thread": 29 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 3522907, + "thread": 24 + } + }, + { + "amount": "253.832566222", + "slot": { + "period": 3638902, + "thread": 3 + } + }, + { + "amount": "253.832566223", + "slot": { + "period": 3814190, + "thread": 31 + } + } + ], + "AU1oJ2cDNgLvq2ig4tZJgWpQJhrr3hkiJMbqsLTvnyMFYxV5viZL": [ + { + "amount": "405.631069479", + "slot": { + "period": 100074, + "thread": 26 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 181738, + "thread": 9 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 360858, + "thread": 25 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 528074, + "thread": 7 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 806263, + "thread": 30 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 832077, + "thread": 11 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1033373, + "thread": 16 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1178767, + "thread": 26 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1415932, + "thread": 26 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1600383, + "thread": 1 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1791878, + "thread": 19 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 1961715, + "thread": 0 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2114153, + "thread": 29 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2285929, + "thread": 25 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2395143, + "thread": 1 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2524603, + "thread": 16 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2732529, + "thread": 22 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 2814435, + "thread": 11 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 3080352, + "thread": 26 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 3285343, + "thread": 14 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 3392729, + "thread": 30 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 3598986, + "thread": 0 + } + }, + { + "amount": "405.631069479", + "slot": { + "period": 3766780, + "thread": 6 + } + }, + { + "amount": "405.631069481", + "slot": { + "period": 3832692, + "thread": 15 + } + } + ], + "AU1oKGVVeXe6RNRYXxo9qZpEEYVeTGRH97QqSyyxUUFdZ1ncz7C7": [ + { + "amount": "647.801414173", + "slot": { + "period": 58433, + "thread": 31 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 265612, + "thread": 4 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 348544, + "thread": 25 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 625415, + "thread": 21 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 814881, + "thread": 16 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 878185, + "thread": 17 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1049584, + "thread": 15 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1251065, + "thread": 13 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1443699, + "thread": 21 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1593816, + "thread": 14 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1764366, + "thread": 8 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 1897049, + "thread": 29 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2112578, + "thread": 25 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2213585, + "thread": 18 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2299579, + "thread": 28 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2589932, + "thread": 3 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2698827, + "thread": 25 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 2802445, + "thread": 17 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 3063706, + "thread": 5 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 3151241, + "thread": 12 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 3372581, + "thread": 18 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 3542605, + "thread": 17 + } + }, + { + "amount": "647.801414173", + "slot": { + "period": 3630724, + "thread": 9 + } + }, + { + "amount": "647.801414167", + "slot": { + "period": 3937891, + "thread": 27 + } + } + ], + "AU1oKZsAYFiAhNVwLnwXbMyHe7onebXbEd1hiJsskjNKU69TAHnb": [ + { + "amount": "52.418535244", + "slot": { + "period": 113736, + "thread": 14 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 206660, + "thread": 19 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 487312, + "thread": 14 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 509459, + "thread": 23 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 657604, + "thread": 23 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 968309, + "thread": 15 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1080445, + "thread": 23 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1215422, + "thread": 9 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1465862, + "thread": 6 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1607971, + "thread": 3 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1747906, + "thread": 2 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 1880513, + "thread": 6 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2037127, + "thread": 27 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2169130, + "thread": 9 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2419135, + "thread": 28 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2608939, + "thread": 23 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2779064, + "thread": 6 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 2811596, + "thread": 23 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 3000408, + "thread": 15 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 3210870, + "thread": 26 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 3301986, + "thread": 30 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 3484429, + "thread": 3 + } + }, + { + "amount": "52.418535244", + "slot": { + "period": 3651759, + "thread": 4 + } + }, + { + "amount": "52.418535246", + "slot": { + "period": 3901357, + "thread": 27 + } + } + ], + "AU1oLtX7zPTjjnbaz1zxb93THQoJTGoPxUUKYGsiCjPwJE1F6qey": [ + { + "amount": "198.470309774", + "slot": { + "period": 75451, + "thread": 4 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 268005, + "thread": 28 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 452358, + "thread": 10 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 586258, + "thread": 28 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 815635, + "thread": 17 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 841697, + "thread": 29 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1142043, + "thread": 27 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1200414, + "thread": 22 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1450746, + "thread": 16 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1589900, + "thread": 22 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1794651, + "thread": 5 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 1870699, + "thread": 27 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2119707, + "thread": 19 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2275775, + "thread": 7 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2417851, + "thread": 18 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2501754, + "thread": 16 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2633921, + "thread": 29 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2834356, + "thread": 29 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 2977612, + "thread": 14 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 3186275, + "thread": 18 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 3313267, + "thread": 22 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 3485919, + "thread": 27 + } + }, + { + "amount": "198.470309774", + "slot": { + "period": 3753009, + "thread": 18 + } + }, + { + "amount": "198.470309781", + "slot": { + "period": 3801423, + "thread": 2 + } + } + ], + "AU1oMBvTaQPZMsNzZV3XgYbw6RbWdC5CbLvMaSaRY7RuQzwzWkzH": [ + { + "amount": "359.237862424", + "slot": { + "period": 110769, + "thread": 1 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 186292, + "thread": 16 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 435581, + "thread": 22 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 613316, + "thread": 30 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 708375, + "thread": 2 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 915695, + "thread": 29 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1011423, + "thread": 27 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1152441, + "thread": 6 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1458912, + "thread": 8 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1522017, + "thread": 18 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1740617, + "thread": 19 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 1856196, + "thread": 29 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2114941, + "thread": 6 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2217422, + "thread": 23 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2382922, + "thread": 26 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2516063, + "thread": 1 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2662052, + "thread": 30 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 2907097, + "thread": 24 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 3048474, + "thread": 28 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 3275699, + "thread": 17 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 3384670, + "thread": 11 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 3590548, + "thread": 6 + } + }, + { + "amount": "359.237862424", + "slot": { + "period": 3724571, + "thread": 26 + } + }, + { + "amount": "359.237862433", + "slot": { + "period": 3888432, + "thread": 27 + } + } + ], + "AU1oPEHmPsZFqqQj9qFXoYouQjLdjE23ebHu6UY4tqC38Ba8cgHw": [ + { + "amount": "169.947729958", + "slot": { + "period": 135578, + "thread": 5 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 184374, + "thread": 4 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 434463, + "thread": 27 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 502728, + "thread": 23 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 735892, + "thread": 17 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 890175, + "thread": 31 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1144482, + "thread": 12 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1209356, + "thread": 22 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1344448, + "thread": 13 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1632847, + "thread": 13 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1740030, + "thread": 2 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1853804, + "thread": 1 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 1987304, + "thread": 7 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2247277, + "thread": 19 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2353091, + "thread": 28 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2507902, + "thread": 18 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2785644, + "thread": 14 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2884113, + "thread": 19 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 2985440, + "thread": 1 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 3157228, + "thread": 10 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 3345218, + "thread": 5 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 3451340, + "thread": 26 + } + }, + { + "amount": "169.947729958", + "slot": { + "period": 3725474, + "thread": 19 + } + }, + { + "amount": "169.947729951", + "slot": { + "period": 3780139, + "thread": 3 + } + } + ], + "AU1oPgueW8nLB8N9b9BekZD8MbJpobEWTZBRCQ4bi6Gtmmkt4dsR": [ + { + "amount": "248.584667215", + "slot": { + "period": 92704, + "thread": 7 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 286443, + "thread": 16 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 483380, + "thread": 4 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 581431, + "thread": 13 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 676762, + "thread": 31 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 920741, + "thread": 6 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1082979, + "thread": 5 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1156154, + "thread": 8 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1437272, + "thread": 11 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1513415, + "thread": 22 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1786001, + "thread": 13 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 1928679, + "thread": 6 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2122813, + "thread": 0 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2200764, + "thread": 31 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2314834, + "thread": 31 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2489366, + "thread": 9 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2697275, + "thread": 31 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 2875426, + "thread": 20 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 3077178, + "thread": 13 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 3159232, + "thread": 27 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 3289702, + "thread": 16 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 3558855, + "thread": 28 + } + }, + { + "amount": "248.584667215", + "slot": { + "period": 3706019, + "thread": 23 + } + }, + { + "amount": "248.584667213", + "slot": { + "period": 3932454, + "thread": 13 + } + } + ], + "AU1oPjDAp6vjCWm99exinUecY3n4gRK56UxSsNLkdDyKyQaWELTa": [ + { + "amount": "105.226270969", + "slot": { + "period": 113744, + "thread": 2 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 168885, + "thread": 15 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 373197, + "thread": 17 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 607201, + "thread": 24 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 727930, + "thread": 23 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 856337, + "thread": 31 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1125217, + "thread": 12 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1273675, + "thread": 3 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1324721, + "thread": 5 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1546544, + "thread": 19 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1681415, + "thread": 0 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 1818360, + "thread": 9 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2003854, + "thread": 0 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2199777, + "thread": 11 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2451309, + "thread": 15 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2476181, + "thread": 25 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2705341, + "thread": 14 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 2877731, + "thread": 31 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 3042278, + "thread": 29 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 3223339, + "thread": 6 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 3447209, + "thread": 28 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 3454547, + "thread": 24 + } + }, + { + "amount": "105.226270969", + "slot": { + "period": 3762084, + "thread": 2 + } + }, + { + "amount": "105.226270966", + "slot": { + "period": 3781880, + "thread": 7 + } + } + ], + "AU1oPmRF1poaoqkP6c6mLmLyR6JVwT8YT4AnhLwcc5Z8KbiZ8Wpg": [ + { + "amount": "76.647877024", + "slot": { + "period": 151143, + "thread": 22 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 266408, + "thread": 3 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 450889, + "thread": 24 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 552239, + "thread": 22 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 799529, + "thread": 13 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 909106, + "thread": 17 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1028273, + "thread": 31 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1270413, + "thread": 9 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1347925, + "thread": 10 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1515471, + "thread": 26 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1705716, + "thread": 13 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 1901143, + "thread": 7 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2121992, + "thread": 10 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2249249, + "thread": 19 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2445071, + "thread": 3 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2619640, + "thread": 3 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2649602, + "thread": 13 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 2825500, + "thread": 1 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 3043661, + "thread": 20 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 3206493, + "thread": 27 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 3299872, + "thread": 15 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 3480279, + "thread": 30 + } + }, + { + "amount": "76.647877024", + "slot": { + "period": 3670416, + "thread": 16 + } + }, + { + "amount": "76.647877015", + "slot": { + "period": 3819247, + "thread": 27 + } + } + ], + "AU1oPpraLmi2x1bMH3umT3R7Ja11kGfeKse8NyKpogZnCqkFLqhk": [ + { + "amount": "192.468414426", + "slot": { + "period": 150740, + "thread": 9 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 170072, + "thread": 4 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 474721, + "thread": 5 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 602852, + "thread": 28 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 791631, + "thread": 31 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 851614, + "thread": 20 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1093896, + "thread": 4 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1150710, + "thread": 21 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1373137, + "thread": 7 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1558868, + "thread": 23 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1660611, + "thread": 20 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 1927706, + "thread": 11 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2143197, + "thread": 23 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2170011, + "thread": 9 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2310852, + "thread": 8 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2541933, + "thread": 24 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2730567, + "thread": 15 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 2931933, + "thread": 19 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 3117381, + "thread": 21 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 3245748, + "thread": 13 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 3345626, + "thread": 30 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 3601390, + "thread": 26 + } + }, + { + "amount": "192.468414426", + "slot": { + "period": 3715151, + "thread": 27 + } + }, + { + "amount": "192.468414432", + "slot": { + "period": 3794769, + "thread": 30 + } + } + ], + "AU1oQK88xQ8MCmsZDhCGM3taD8B7VyCxTYm2UjNyo7dPgNeX5j3s": [ + { + "amount": "375.758538296", + "slot": { + "period": 121485, + "thread": 24 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 313079, + "thread": 13 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 422449, + "thread": 21 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 562277, + "thread": 31 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 703894, + "thread": 30 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 929768, + "thread": 26 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1131314, + "thread": 25 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1216948, + "thread": 29 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1324217, + "thread": 25 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1552995, + "thread": 6 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1731607, + "thread": 8 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 1902245, + "thread": 8 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2140555, + "thread": 29 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2268793, + "thread": 22 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2301660, + "thread": 30 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2564338, + "thread": 7 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2692157, + "thread": 0 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 2886812, + "thread": 2 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 3034866, + "thread": 27 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 3284977, + "thread": 2 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 3436225, + "thread": 16 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 3522486, + "thread": 18 + } + }, + { + "amount": "375.758538296", + "slot": { + "period": 3624486, + "thread": 30 + } + }, + { + "amount": "375.758538303", + "slot": { + "period": 3870843, + "thread": 3 + } + } + ], + "AU1oRQNn1XpUicSqFAKSwGHM6rYqfhJSPtnCAgympZNpB52H8ToV": [ + { + "amount": "109.518365571", + "slot": { + "period": 74792, + "thread": 2 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 234787, + "thread": 30 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 432945, + "thread": 15 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 651116, + "thread": 3 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 661029, + "thread": 26 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 913879, + "thread": 7 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1053743, + "thread": 2 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1269119, + "thread": 10 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1465252, + "thread": 7 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1642877, + "thread": 18 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1661560, + "thread": 6 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 1892528, + "thread": 29 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2128824, + "thread": 20 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2280796, + "thread": 4 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2412495, + "thread": 20 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2545365, + "thread": 10 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2771471, + "thread": 3 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 2897755, + "thread": 12 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 3092979, + "thread": 11 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 3172521, + "thread": 29 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 3391842, + "thread": 18 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 3502547, + "thread": 21 + } + }, + { + "amount": "109.518365571", + "slot": { + "period": 3622591, + "thread": 6 + } + }, + { + "amount": "109.518365580", + "slot": { + "period": 3789789, + "thread": 29 + } + } + ], + "AU1oSH4jVY3p5DfYGtTYRd73vAchTnnYJ34ga6FbadsbAaSpYfLG": [ + { + "amount": "92.425725021", + "slot": { + "period": 46859, + "thread": 28 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 301444, + "thread": 23 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 483328, + "thread": 18 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 517072, + "thread": 17 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 686463, + "thread": 23 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 891411, + "thread": 8 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1108093, + "thread": 31 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1298310, + "thread": 22 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1433620, + "thread": 9 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1505862, + "thread": 7 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1776986, + "thread": 3 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 1965407, + "thread": 9 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2073620, + "thread": 9 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2266703, + "thread": 22 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2373689, + "thread": 22 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2488831, + "thread": 31 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2675069, + "thread": 4 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 2857416, + "thread": 10 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 3040445, + "thread": 19 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 3124601, + "thread": 28 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 3303460, + "thread": 5 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 3603378, + "thread": 13 + } + }, + { + "amount": "92.425725021", + "slot": { + "period": 3718244, + "thread": 18 + } + }, + { + "amount": "92.425725024", + "slot": { + "period": 3881441, + "thread": 12 + } + } + ], + "AU1oSU7zqY6WTrbvvH4VEJBXenWv9LiAGMNVfapgqgfMtotTDRDx": [ + { + "amount": "191.201814601", + "slot": { + "period": 72892, + "thread": 28 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 172256, + "thread": 6 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 443930, + "thread": 16 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 524618, + "thread": 31 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 768942, + "thread": 2 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 971197, + "thread": 2 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1099181, + "thread": 24 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1266849, + "thread": 24 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1320663, + "thread": 27 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1513482, + "thread": 11 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1728804, + "thread": 6 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 1854103, + "thread": 20 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2075570, + "thread": 2 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2240132, + "thread": 6 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2380738, + "thread": 25 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2591444, + "thread": 7 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2717006, + "thread": 30 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2890340, + "thread": 27 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 2967661, + "thread": 6 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 3241008, + "thread": 3 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 3390207, + "thread": 16 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 3496383, + "thread": 13 + } + }, + { + "amount": "191.201814601", + "slot": { + "period": 3749387, + "thread": 27 + } + }, + { + "amount": "191.201814602", + "slot": { + "period": 3940864, + "thread": 17 + } + } + ], + "AU1oSYi3mAx6qpkQ1UggVkiBcGFqTEVUuoiCm5xhEaycRwQQduee": [ + { + "amount": "99.954678383", + "slot": { + "period": 83052, + "thread": 1 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 315357, + "thread": 8 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 376956, + "thread": 18 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 536433, + "thread": 16 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 729339, + "thread": 0 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 845403, + "thread": 1 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 994207, + "thread": 18 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 1294752, + "thread": 2 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 1361318, + "thread": 27 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 1552493, + "thread": 22 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 1770784, + "thread": 2 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 1850115, + "thread": 6 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2128289, + "thread": 7 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2234864, + "thread": 11 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2422140, + "thread": 13 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2520539, + "thread": 13 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2760661, + "thread": 10 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 2937105, + "thread": 25 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 3040634, + "thread": 4 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 3126419, + "thread": 9 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 3371565, + "thread": 6 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 3595463, + "thread": 2 + } + }, + { + "amount": "99.954678383", + "slot": { + "period": 3676352, + "thread": 31 + } + }, + { + "amount": "99.954678389", + "slot": { + "period": 3938221, + "thread": 0 + } + } + ], + "AU1oSkc5iBJ4EbnHrV4EqAQp4cgXt5SeKQC9G53nnhhTccU2cSsn": [ + { + "amount": "389.164762428", + "slot": { + "period": 18483, + "thread": 1 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 295266, + "thread": 1 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 379867, + "thread": 3 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 529707, + "thread": 29 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 774075, + "thread": 30 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 882455, + "thread": 11 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 991540, + "thread": 11 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 1311886, + "thread": 25 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 1360358, + "thread": 8 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 1585569, + "thread": 11 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 1734260, + "thread": 3 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 1847970, + "thread": 16 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2051300, + "thread": 15 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2204580, + "thread": 18 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2364626, + "thread": 25 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2523472, + "thread": 31 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2748627, + "thread": 29 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 2852449, + "thread": 4 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 3013782, + "thread": 8 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 3195736, + "thread": 11 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 3325879, + "thread": 1 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 3456033, + "thread": 20 + } + }, + { + "amount": "389.164762428", + "slot": { + "period": 3737626, + "thread": 26 + } + }, + { + "amount": "389.164762416", + "slot": { + "period": 3918787, + "thread": 27 + } + } + ], + "AU1oSwVSqycoSBERCHBoGRevoCsU3Du95T15Gv8E3z3nENSjQNQE": [ + { + "amount": "145.674670746", + "slot": { + "period": 99937, + "thread": 2 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 172932, + "thread": 23 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 424979, + "thread": 5 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 644872, + "thread": 7 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 729794, + "thread": 19 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 864268, + "thread": 23 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1033114, + "thread": 11 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1271531, + "thread": 29 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1431588, + "thread": 24 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1529310, + "thread": 5 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1737018, + "thread": 28 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 1910984, + "thread": 24 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2109087, + "thread": 19 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2272947, + "thread": 0 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2451585, + "thread": 25 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2557334, + "thread": 10 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2720160, + "thread": 15 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 2792070, + "thread": 27 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 3048825, + "thread": 20 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 3172476, + "thread": 27 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 3346784, + "thread": 20 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 3614889, + "thread": 7 + } + }, + { + "amount": "145.674670746", + "slot": { + "period": 3660231, + "thread": 28 + } + }, + { + "amount": "145.674670738", + "slot": { + "period": 3888522, + "thread": 6 + } + } + ], + "AU1oToQi1nuwGPUPSn85AUUnvr5RCHK8XwnRKmqppMx5Ur4eMd13": [ + { + "amount": "121.799706213", + "slot": { + "period": 128589, + "thread": 8 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 259543, + "thread": 1 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 465019, + "thread": 24 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 505878, + "thread": 24 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 798532, + "thread": 9 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 899601, + "thread": 6 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1044515, + "thread": 29 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1310177, + "thread": 25 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1367287, + "thread": 20 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1514537, + "thread": 4 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1743732, + "thread": 30 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 1879759, + "thread": 24 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2134527, + "thread": 14 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2190920, + "thread": 9 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2303881, + "thread": 8 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2553235, + "thread": 19 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2702589, + "thread": 4 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2796791, + "thread": 18 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 2953995, + "thread": 21 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 3124735, + "thread": 20 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 3383731, + "thread": 8 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 3455992, + "thread": 23 + } + }, + { + "amount": "121.799706213", + "slot": { + "period": 3671389, + "thread": 8 + } + }, + { + "amount": "121.799706221", + "slot": { + "period": 3797967, + "thread": 22 + } + } + ], + "AU1oTp8tQPX6uPh1oPiZSDu8HipQNEx4rnYNCZEeSGEPAUXbqXNX": [ + { + "amount": "153.345842095", + "slot": { + "period": 128875, + "thread": 11 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 299174, + "thread": 2 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 451936, + "thread": 22 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 496234, + "thread": 7 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 820727, + "thread": 17 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 887107, + "thread": 0 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1107969, + "thread": 18 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1165513, + "thread": 30 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1389192, + "thread": 24 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1508561, + "thread": 29 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1758937, + "thread": 12 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 1905408, + "thread": 21 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2110615, + "thread": 10 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2268223, + "thread": 7 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2353630, + "thread": 18 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2566658, + "thread": 19 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2738322, + "thread": 25 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 2816097, + "thread": 4 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 3028861, + "thread": 14 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 3267641, + "thread": 12 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 3415273, + "thread": 5 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 3503278, + "thread": 3 + } + }, + { + "amount": "153.345842095", + "slot": { + "period": 3767109, + "thread": 7 + } + }, + { + "amount": "153.345842103", + "slot": { + "period": 3803769, + "thread": 12 + } + } + ], + "AU1oUCb3BrJCBzG28qDvof34UhdoBiLu3RhB7ddrW4hTVQ1QEuFV": [ + { + "amount": "470.585522469", + "slot": { + "period": 39210, + "thread": 10 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 304901, + "thread": 25 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 390608, + "thread": 30 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 506844, + "thread": 0 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 796909, + "thread": 0 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 821724, + "thread": 8 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1004910, + "thread": 16 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1177478, + "thread": 22 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1358200, + "thread": 19 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1574785, + "thread": 31 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1760879, + "thread": 11 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 1936785, + "thread": 9 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2074738, + "thread": 7 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2250683, + "thread": 10 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2348593, + "thread": 9 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2494762, + "thread": 26 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2780189, + "thread": 27 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 2818010, + "thread": 9 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 3083607, + "thread": 18 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 3216373, + "thread": 26 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 3392617, + "thread": 13 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 3600362, + "thread": 16 + } + }, + { + "amount": "470.585522469", + "slot": { + "period": 3640670, + "thread": 26 + } + }, + { + "amount": "470.585522477", + "slot": { + "period": 3925803, + "thread": 4 + } + } + ], + "AU1oVTj2yapWm95m1fekAECPayfDU5SqiSy74FpMkysPrCSoS4n7": [ + { + "amount": "111.445494673", + "slot": { + "period": 29666, + "thread": 18 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 212598, + "thread": 14 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 325872, + "thread": 30 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 529961, + "thread": 6 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 717550, + "thread": 16 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 875082, + "thread": 19 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1034987, + "thread": 9 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1283553, + "thread": 7 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1354766, + "thread": 29 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1616900, + "thread": 18 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1686660, + "thread": 26 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 1872574, + "thread": 21 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2048778, + "thread": 17 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2175895, + "thread": 6 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2426271, + "thread": 31 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2622252, + "thread": 2 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2715517, + "thread": 9 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2858312, + "thread": 4 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 2963516, + "thread": 24 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 3256278, + "thread": 12 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 3320990, + "thread": 19 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 3512608, + "thread": 24 + } + }, + { + "amount": "111.445494673", + "slot": { + "period": 3707676, + "thread": 16 + } + }, + { + "amount": "111.445494668", + "slot": { + "period": 3913777, + "thread": 30 + } + } + ], + "AU1oVUSzGm5GMG66hUxrVWV3fpeUy3Bm1GBp5BgAG5GpJPpi8iKo": [ + { + "amount": "147.451678815", + "slot": { + "period": 125762, + "thread": 21 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 264740, + "thread": 29 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 413967, + "thread": 7 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 508422, + "thread": 5 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 730535, + "thread": 26 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 969048, + "thread": 21 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1127500, + "thread": 1 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1192143, + "thread": 27 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1434334, + "thread": 25 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1567361, + "thread": 1 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1769081, + "thread": 13 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 1912254, + "thread": 15 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2039816, + "thread": 13 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2275753, + "thread": 7 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2323426, + "thread": 21 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2586872, + "thread": 24 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2696187, + "thread": 3 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 2928930, + "thread": 28 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 3010516, + "thread": 14 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 3266523, + "thread": 21 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 3347992, + "thread": 22 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 3483602, + "thread": 18 + } + }, + { + "amount": "147.451678815", + "slot": { + "period": 3654704, + "thread": 1 + } + }, + { + "amount": "147.451678807", + "slot": { + "period": 3830412, + "thread": 31 + } + } + ], + "AU1oVf85sDPZzwDhFqzEYAKJ6sTeNYhM89e43tnviwFTV4ZnGZBK": [ + { + "amount": "91.882538617", + "slot": { + "period": 165159, + "thread": 12 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 238284, + "thread": 17 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 451064, + "thread": 21 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 522349, + "thread": 18 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 759736, + "thread": 12 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 959184, + "thread": 9 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1057798, + "thread": 24 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1233586, + "thread": 10 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1327244, + "thread": 27 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1553677, + "thread": 13 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1783267, + "thread": 20 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 1918074, + "thread": 25 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2113054, + "thread": 5 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2186967, + "thread": 23 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2436558, + "thread": 11 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2522902, + "thread": 31 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2664938, + "thread": 1 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 2922744, + "thread": 21 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 3073132, + "thread": 20 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 3190391, + "thread": 15 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 3439043, + "thread": 18 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 3474310, + "thread": 31 + } + }, + { + "amount": "91.882538617", + "slot": { + "period": 3760559, + "thread": 10 + } + }, + { + "amount": "91.882538618", + "slot": { + "period": 3786344, + "thread": 30 + } + } + ], + "AU1oWB7mk3hsZbbygjX89d8HNkTpKLGuzRK4rrpPXCoTGZKCr2A6": [ + { + "amount": "149.448521240", + "slot": { + "period": 129930, + "thread": 30 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 167867, + "thread": 11 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 365370, + "thread": 19 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 590221, + "thread": 6 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 680370, + "thread": 30 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 843230, + "thread": 5 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1094640, + "thread": 14 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1158923, + "thread": 2 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1415143, + "thread": 6 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1588420, + "thread": 14 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1779800, + "thread": 12 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 1814906, + "thread": 18 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2039224, + "thread": 29 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2175783, + "thread": 24 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2384080, + "thread": 21 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2503703, + "thread": 30 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2731467, + "thread": 18 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 2928825, + "thread": 18 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 3004117, + "thread": 30 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 3177864, + "thread": 18 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 3423222, + "thread": 13 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 3615750, + "thread": 21 + } + }, + { + "amount": "149.448521240", + "slot": { + "period": 3700108, + "thread": 27 + } + }, + { + "amount": "149.448521248", + "slot": { + "period": 3890485, + "thread": 9 + } + } + ], + "AU1oWNUSy9vURTbKSHdCfMhMjqS6DmKh8b2SssZbw4S5PprBMGTA": [ + { + "amount": "88.329395230", + "slot": { + "period": 11838, + "thread": 23 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 296170, + "thread": 25 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 365158, + "thread": 25 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 595317, + "thread": 18 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 723433, + "thread": 20 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 930820, + "thread": 15 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1026198, + "thread": 22 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1168394, + "thread": 26 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1396791, + "thread": 17 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1515775, + "thread": 29 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1721819, + "thread": 16 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 1872728, + "thread": 26 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2089951, + "thread": 24 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2174195, + "thread": 26 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2460814, + "thread": 26 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2544479, + "thread": 8 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2629383, + "thread": 4 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2882561, + "thread": 16 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 2971623, + "thread": 27 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 3231095, + "thread": 20 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 3444306, + "thread": 2 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 3610298, + "thread": 5 + } + }, + { + "amount": "88.329395230", + "slot": { + "period": 3720016, + "thread": 17 + } + }, + { + "amount": "88.329395227", + "slot": { + "period": 3835079, + "thread": 26 + } + } + ], + "AU1oWZbwAreLs88QM9uJYs372fxZ7kRCyXuhuXpbXaKVevM1CNjt": [ + { + "amount": "146.666700218", + "slot": { + "period": 129903, + "thread": 17 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 207053, + "thread": 27 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 333237, + "thread": 2 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 540570, + "thread": 3 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 750118, + "thread": 3 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 876544, + "thread": 28 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1033770, + "thread": 28 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1169874, + "thread": 24 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1377619, + "thread": 18 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1580633, + "thread": 5 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1791739, + "thread": 16 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 1924450, + "thread": 23 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2073576, + "thread": 18 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2237654, + "thread": 3 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2407818, + "thread": 23 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2490752, + "thread": 2 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2669804, + "thread": 5 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 2804401, + "thread": 18 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 3072327, + "thread": 9 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 3279962, + "thread": 2 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 3306633, + "thread": 4 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 3529494, + "thread": 25 + } + }, + { + "amount": "146.666700218", + "slot": { + "period": 3699999, + "thread": 23 + } + }, + { + "amount": "146.666700210", + "slot": { + "period": 3863583, + "thread": 17 + } + } + ], + "AU1oWegJdhGc57tWANjyxLX17YK7HaqBryj2r4TRf8X2zqCar4a2": [ + { + "amount": "170.250434096", + "slot": { + "period": 38681, + "thread": 20 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 223641, + "thread": 4 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 467434, + "thread": 4 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 645299, + "thread": 3 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 699180, + "thread": 10 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 926656, + "thread": 26 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1007104, + "thread": 16 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1290126, + "thread": 8 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1399121, + "thread": 10 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1527288, + "thread": 29 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1666694, + "thread": 5 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 1859405, + "thread": 28 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2132436, + "thread": 3 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2150561, + "thread": 23 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2366790, + "thread": 1 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2571019, + "thread": 8 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2722614, + "thread": 31 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 2920171, + "thread": 8 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 3033533, + "thread": 6 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 3285489, + "thread": 1 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 3447687, + "thread": 28 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 3610301, + "thread": 15 + } + }, + { + "amount": "170.250434096", + "slot": { + "period": 3663612, + "thread": 25 + } + }, + { + "amount": "170.250434103", + "slot": { + "period": 3885530, + "thread": 16 + } + } + ], + "AU1oY5aDF7ULPGqbiPeUrt6FFdjmC4VHuNUoFaDyzK27LNnwAKAW": [ + { + "amount": "223.261189883", + "slot": { + "period": 11601, + "thread": 6 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 255044, + "thread": 17 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 467802, + "thread": 25 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 531764, + "thread": 8 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 763376, + "thread": 7 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 977982, + "thread": 9 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1118063, + "thread": 3 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1295837, + "thread": 2 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1330987, + "thread": 25 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1597083, + "thread": 30 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1671810, + "thread": 2 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 1936445, + "thread": 13 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2037716, + "thread": 1 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2180264, + "thread": 29 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2398920, + "thread": 0 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2512531, + "thread": 29 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2626510, + "thread": 16 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 2929173, + "thread": 8 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 3022773, + "thread": 0 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 3207867, + "thread": 6 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 3390059, + "thread": 6 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 3459519, + "thread": 11 + } + }, + { + "amount": "223.261189883", + "slot": { + "period": 3754041, + "thread": 25 + } + }, + { + "amount": "223.261189886", + "slot": { + "period": 3946905, + "thread": 20 + } + } + ], + "AU1oYHYHL2SfvJhTx91sts1TSzn8Z487e1TTwQnbSXema9jn4XwB": [ + { + "amount": "124.664434352", + "slot": { + "period": 64592, + "thread": 4 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 320367, + "thread": 10 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 425713, + "thread": 5 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 559054, + "thread": 26 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 685797, + "thread": 22 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 932207, + "thread": 4 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1141608, + "thread": 27 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1277235, + "thread": 9 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1366388, + "thread": 0 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1510408, + "thread": 30 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1780381, + "thread": 11 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 1963601, + "thread": 10 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2099862, + "thread": 19 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2144493, + "thread": 19 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2407585, + "thread": 8 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2531914, + "thread": 16 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2682239, + "thread": 8 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 2832064, + "thread": 0 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 3034794, + "thread": 13 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 3214494, + "thread": 4 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 3449648, + "thread": 15 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 3602447, + "thread": 31 + } + }, + { + "amount": "124.664434352", + "slot": { + "period": 3735252, + "thread": 19 + } + }, + { + "amount": "124.664434361", + "slot": { + "period": 3902045, + "thread": 14 + } + } + ], + "AU1oYN74Nygx7gATc4dYDpmSwaRKN8BGZtWA22nQaDyM42N9WoS8": [ + { + "amount": "128.256364515", + "slot": { + "period": 147754, + "thread": 0 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 251476, + "thread": 18 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 359579, + "thread": 9 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 545728, + "thread": 17 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 736567, + "thread": 20 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 899221, + "thread": 28 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1007134, + "thread": 0 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1184094, + "thread": 7 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1335740, + "thread": 24 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1551666, + "thread": 25 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1710432, + "thread": 10 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 1872232, + "thread": 24 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2023049, + "thread": 25 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2283434, + "thread": 22 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2295857, + "thread": 31 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2586180, + "thread": 0 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2783272, + "thread": 31 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2837215, + "thread": 14 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 2986337, + "thread": 25 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 3259067, + "thread": 25 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 3445851, + "thread": 21 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 3469171, + "thread": 0 + } + }, + { + "amount": "128.256364515", + "slot": { + "period": 3649889, + "thread": 28 + } + }, + { + "amount": "128.256364525", + "slot": { + "period": 3880453, + "thread": 19 + } + } + ], + "AU1oYryDTE3odfGZnbKvu7yuAQEsMNDEXjqf3rkWpYmK7zJwPJVr": [ + { + "amount": "287.765736055", + "slot": { + "period": 65192, + "thread": 11 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 293491, + "thread": 10 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 365503, + "thread": 10 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 515657, + "thread": 24 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 766829, + "thread": 6 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 912320, + "thread": 14 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1071121, + "thread": 31 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1222262, + "thread": 19 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1435817, + "thread": 18 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1560262, + "thread": 23 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1800821, + "thread": 12 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 1830407, + "thread": 2 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2035173, + "thread": 16 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2188471, + "thread": 31 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2399913, + "thread": 8 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2584743, + "thread": 26 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2721258, + "thread": 23 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2904127, + "thread": 9 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 2954936, + "thread": 20 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 3134570, + "thread": 15 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 3289431, + "thread": 24 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 3550362, + "thread": 6 + } + }, + { + "amount": "287.765736055", + "slot": { + "period": 3752255, + "thread": 18 + } + }, + { + "amount": "287.765736052", + "slot": { + "period": 3853808, + "thread": 30 + } + } + ], + "AU1oZfLiC1tsPZfdZsyF561MurjRZNZ3jMGqFB5TZPipAKY871qL": [ + { + "amount": "324.459797987", + "slot": { + "period": 124302, + "thread": 10 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 227394, + "thread": 28 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 369196, + "thread": 2 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 628641, + "thread": 23 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 792614, + "thread": 23 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 881172, + "thread": 18 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1044857, + "thread": 6 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1235821, + "thread": 25 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1437168, + "thread": 16 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1579883, + "thread": 1 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1778456, + "thread": 19 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1962596, + "thread": 0 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 1982284, + "thread": 25 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 2293544, + "thread": 12 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 2364723, + "thread": 20 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 2492726, + "thread": 5 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 2730114, + "thread": 27 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 2914306, + "thread": 1 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 3069016, + "thread": 19 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 3170569, + "thread": 7 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 3385524, + "thread": 0 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 3594147, + "thread": 17 + } + }, + { + "amount": "324.459797987", + "slot": { + "period": 3648338, + "thread": 20 + } + }, + { + "amount": "324.459797979", + "slot": { + "period": 3860511, + "thread": 2 + } + } + ], + "AU1oaWNFYaEabfnBq6U4QQBhdSzhRvpA4duVMgexGLE52dr1Yq6h": [ + { + "amount": "91.488251721", + "slot": { + "period": 133312, + "thread": 22 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 315437, + "thread": 20 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 400963, + "thread": 10 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 629211, + "thread": 10 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 810814, + "thread": 30 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 935599, + "thread": 18 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 990579, + "thread": 9 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 1213451, + "thread": 30 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 1411030, + "thread": 11 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 1567998, + "thread": 3 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 1784371, + "thread": 7 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 1968094, + "thread": 31 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2119123, + "thread": 18 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2218569, + "thread": 13 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2415085, + "thread": 19 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2619698, + "thread": 22 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2657313, + "thread": 30 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 2816479, + "thread": 15 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 3066715, + "thread": 24 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 3133850, + "thread": 13 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 3397369, + "thread": 13 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 3542940, + "thread": 1 + } + }, + { + "amount": "91.488251721", + "slot": { + "period": 3717573, + "thread": 14 + } + }, + { + "amount": "91.488251716", + "slot": { + "period": 3920309, + "thread": 27 + } + } + ], + "AU1ob2Rahy7Gqhs3s6Su1ZR7KkWxTiELGdgJBrk974z27KGM2E4j": [ + { + "amount": "209.401053955", + "slot": { + "period": 162569, + "thread": 14 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 277346, + "thread": 7 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 386595, + "thread": 17 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 553976, + "thread": 1 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 753355, + "thread": 9 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 975112, + "thread": 6 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1108156, + "thread": 20 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1299306, + "thread": 5 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1380806, + "thread": 31 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1644498, + "thread": 25 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1698585, + "thread": 10 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 1837856, + "thread": 29 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2080834, + "thread": 29 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2290385, + "thread": 30 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2308422, + "thread": 15 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2595748, + "thread": 4 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2767240, + "thread": 25 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2868845, + "thread": 1 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 2979409, + "thread": 6 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 3137559, + "thread": 9 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 3301685, + "thread": 26 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 3562633, + "thread": 13 + } + }, + { + "amount": "209.401053955", + "slot": { + "period": 3635819, + "thread": 7 + } + }, + { + "amount": "209.401053964", + "slot": { + "period": 3906225, + "thread": 24 + } + } + ], + "AU1ocW3jBAEpme6cmytJPNWoM9Fs3AK6BpQAT2BrRNeGsT6diqCi": [ + { + "amount": "101.290208206", + "slot": { + "period": 39164, + "thread": 17 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 244507, + "thread": 8 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 418880, + "thread": 12 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 633177, + "thread": 5 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 767939, + "thread": 15 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 917749, + "thread": 27 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1071039, + "thread": 24 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1249334, + "thread": 20 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1403094, + "thread": 9 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1556333, + "thread": 26 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1768846, + "thread": 17 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 1873406, + "thread": 8 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2139960, + "thread": 27 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2157946, + "thread": 9 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2326828, + "thread": 23 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2496187, + "thread": 14 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2781491, + "thread": 19 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 2874431, + "thread": 9 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 3036660, + "thread": 22 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 3123250, + "thread": 10 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 3293520, + "thread": 4 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 3575366, + "thread": 27 + } + }, + { + "amount": "101.290208206", + "slot": { + "period": 3725581, + "thread": 6 + } + }, + { + "amount": "101.290208211", + "slot": { + "period": 3909017, + "thread": 13 + } + } + ], + "AU1odDuDqMjEUBwS593YVfNSoEMRcW4zeYyF9W1TGb9EUtC5LzsJ": [ + { + "amount": "257.710807045", + "slot": { + "period": 47529, + "thread": 15 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 309880, + "thread": 29 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 365839, + "thread": 24 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 593464, + "thread": 16 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 801552, + "thread": 10 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 909734, + "thread": 26 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1083415, + "thread": 4 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1257983, + "thread": 2 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1323448, + "thread": 17 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1562185, + "thread": 23 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1685518, + "thread": 16 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 1900428, + "thread": 1 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2014991, + "thread": 2 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2258162, + "thread": 4 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2342845, + "thread": 18 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2584580, + "thread": 10 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2703832, + "thread": 31 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 2875805, + "thread": 2 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 3118662, + "thread": 25 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 3190554, + "thread": 31 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 3323738, + "thread": 22 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 3589407, + "thread": 8 + } + }, + { + "amount": "257.710807045", + "slot": { + "period": 3676598, + "thread": 16 + } + }, + { + "amount": "257.710807044", + "slot": { + "period": 3935098, + "thread": 29 + } + } + ], + "AU1oeP7aNXMiHqxfZ1qmdfTExZnaKg9xFjvDDWiGx1LZAquGSUMZ": [ + { + "amount": "368.545292675", + "slot": { + "period": 165204, + "thread": 8 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 259783, + "thread": 15 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 410934, + "thread": 7 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 644885, + "thread": 31 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 749905, + "thread": 27 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 883183, + "thread": 11 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1100505, + "thread": 25 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1264106, + "thread": 7 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1354234, + "thread": 5 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1534621, + "thread": 9 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1758032, + "thread": 20 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 1847635, + "thread": 4 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2029077, + "thread": 0 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2146847, + "thread": 19 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2324653, + "thread": 6 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2500876, + "thread": 14 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2650013, + "thread": 4 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2814843, + "thread": 3 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 2992878, + "thread": 11 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 3191938, + "thread": 3 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 3414689, + "thread": 9 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 3561029, + "thread": 6 + } + }, + { + "amount": "368.545292675", + "slot": { + "period": 3774500, + "thread": 29 + } + }, + { + "amount": "368.545292681", + "slot": { + "period": 3838539, + "thread": 27 + } + } + ], + "AU1oemP4HTjTtdTkPr3hdj9QWHCNREusmiZkotpcxLJx719onbUC": [ + { + "amount": "181.110621676", + "slot": { + "period": 24251, + "thread": 10 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 191632, + "thread": 23 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 385098, + "thread": 22 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 501363, + "thread": 11 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 659114, + "thread": 5 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 821217, + "thread": 15 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 999883, + "thread": 18 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 1217497, + "thread": 17 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 1466236, + "thread": 20 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 1628434, + "thread": 8 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 1744620, + "thread": 25 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 1957184, + "thread": 6 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2013562, + "thread": 22 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2277810, + "thread": 12 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2321768, + "thread": 3 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2564478, + "thread": 28 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2662008, + "thread": 1 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 2793053, + "thread": 1 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3086755, + "thread": 13 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3165041, + "thread": 10 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3313021, + "thread": 16 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3475347, + "thread": 7 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3717366, + "thread": 30 + } + }, + { + "amount": "181.110621676", + "slot": { + "period": 3819247, + "thread": 31 + } + } + ], + "AU1ohc1EUaoopvsLpDjZyFsp8RY2scsY48UGb1WJN99xjUSEotgu": [ + { + "amount": "247.993986467", + "slot": { + "period": 73502, + "thread": 11 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 231642, + "thread": 7 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 452345, + "thread": 15 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 566726, + "thread": 25 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 742763, + "thread": 23 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 844604, + "thread": 29 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1106261, + "thread": 29 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1238008, + "thread": 21 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1459073, + "thread": 9 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1591066, + "thread": 6 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1740902, + "thread": 2 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 1948867, + "thread": 21 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2102041, + "thread": 10 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2210341, + "thread": 13 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2376100, + "thread": 12 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2496222, + "thread": 28 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2727019, + "thread": 24 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 2903947, + "thread": 9 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 3041747, + "thread": 20 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 3275987, + "thread": 4 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 3301838, + "thread": 25 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 3569075, + "thread": 13 + } + }, + { + "amount": "247.993986467", + "slot": { + "period": 3685060, + "thread": 24 + } + }, + { + "amount": "247.993986465", + "slot": { + "period": 3850796, + "thread": 0 + } + } + ], + "AU1oi7GsXWNL3ajaFPXZUJewNknaXNW1u97j4iskhJmVjuUSFWCb": [ + { + "amount": "124.445267321", + "slot": { + "period": 99544, + "thread": 19 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 203170, + "thread": 19 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 386124, + "thread": 18 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 540478, + "thread": 10 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 713299, + "thread": 15 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 851733, + "thread": 13 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1064523, + "thread": 24 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1234913, + "thread": 30 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1454412, + "thread": 13 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1540635, + "thread": 3 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1667614, + "thread": 30 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 1823963, + "thread": 14 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2117599, + "thread": 31 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2144484, + "thread": 19 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2451866, + "thread": 12 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2515209, + "thread": 28 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2675171, + "thread": 19 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 2805728, + "thread": 0 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 3017509, + "thread": 27 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 3231338, + "thread": 25 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 3307541, + "thread": 9 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 3464247, + "thread": 23 + } + }, + { + "amount": "124.445267321", + "slot": { + "period": 3660881, + "thread": 12 + } + }, + { + "amount": "124.445267318", + "slot": { + "period": 3783562, + "thread": 21 + } + } + ], + "AU1oiJ41RxpyWcQCoCDBkkjAfaPHPiLceUC6AmPGa1ut4Wcu9h8P": [ + { + "amount": "135.023487722", + "slot": { + "period": 15445, + "thread": 6 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 230087, + "thread": 2 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 380816, + "thread": 19 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 517872, + "thread": 12 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 804962, + "thread": 15 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 916328, + "thread": 22 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1027548, + "thread": 31 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1184363, + "thread": 6 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1364389, + "thread": 9 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1576748, + "thread": 0 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1655221, + "thread": 0 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 1908109, + "thread": 5 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2093909, + "thread": 5 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2272852, + "thread": 4 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2398680, + "thread": 26 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2542411, + "thread": 11 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2719125, + "thread": 15 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2908839, + "thread": 11 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 2996104, + "thread": 8 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 3186915, + "thread": 22 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 3385142, + "thread": 19 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 3492377, + "thread": 22 + } + }, + { + "amount": "135.023487722", + "slot": { + "period": 3760941, + "thread": 14 + } + }, + { + "amount": "135.023487716", + "slot": { + "period": 3904766, + "thread": 13 + } + } + ], + "AU1oiqCFBzdjeiPLrKAZaKENzwrGPGCCbVVhZUB2jT1ceeyjofvS": [ + { + "amount": "110.856739032", + "slot": { + "period": 118225, + "thread": 27 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 208271, + "thread": 9 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 346003, + "thread": 26 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 617267, + "thread": 6 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 680348, + "thread": 25 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 895018, + "thread": 9 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1058048, + "thread": 3 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1175464, + "thread": 8 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1348792, + "thread": 9 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1547968, + "thread": 24 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1687968, + "thread": 18 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 1928332, + "thread": 31 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2042988, + "thread": 5 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2259643, + "thread": 3 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2429968, + "thread": 12 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2470800, + "thread": 17 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2665220, + "thread": 19 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 2909368, + "thread": 29 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 3107505, + "thread": 20 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 3158717, + "thread": 7 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 3291006, + "thread": 22 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 3604808, + "thread": 24 + } + }, + { + "amount": "110.856739032", + "slot": { + "period": 3735997, + "thread": 5 + } + }, + { + "amount": "110.856739038", + "slot": { + "period": 3877907, + "thread": 16 + } + } + ], + "AU1ojZ1mo9TtbHzy1Y6QLAnKVBbpME1Prf3pQusP1kKpjGgGoLy4": [ + { + "amount": "319.357981965", + "slot": { + "period": 31989, + "thread": 21 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 260442, + "thread": 12 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 324157, + "thread": 9 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 526095, + "thread": 0 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 655104, + "thread": 10 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 900249, + "thread": 9 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1056646, + "thread": 18 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1303156, + "thread": 8 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1409937, + "thread": 3 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1497271, + "thread": 5 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1748815, + "thread": 13 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 1916117, + "thread": 20 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2046543, + "thread": 16 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2242178, + "thread": 12 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2332933, + "thread": 15 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2500528, + "thread": 25 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2784329, + "thread": 21 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 2794625, + "thread": 0 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 3034670, + "thread": 24 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 3163505, + "thread": 1 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 3393764, + "thread": 18 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 3452811, + "thread": 17 + } + }, + { + "amount": "319.357981965", + "slot": { + "period": 3729929, + "thread": 12 + } + }, + { + "amount": "319.357981964", + "slot": { + "period": 3781439, + "thread": 0 + } + } + ], + "AU1ojaU2SecePUraXZg4tqqGw9zcDT62akjatsq8qNciTWDH55Rk": [ + { + "amount": "264.654651981", + "slot": { + "period": 158373, + "thread": 15 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 206592, + "thread": 2 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 418234, + "thread": 9 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 511924, + "thread": 7 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 673172, + "thread": 27 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 952255, + "thread": 8 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1009833, + "thread": 10 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1287569, + "thread": 23 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1389246, + "thread": 31 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1538042, + "thread": 5 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1725409, + "thread": 6 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 1824997, + "thread": 6 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2083920, + "thread": 13 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2243887, + "thread": 20 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2405443, + "thread": 5 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2465728, + "thread": 13 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2788282, + "thread": 9 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 2899729, + "thread": 9 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 3042047, + "thread": 1 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 3189331, + "thread": 1 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 3336163, + "thread": 11 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 3525031, + "thread": 27 + } + }, + { + "amount": "264.654651981", + "slot": { + "period": 3709227, + "thread": 18 + } + }, + { + "amount": "264.654651978", + "slot": { + "period": 3815794, + "thread": 10 + } + } + ], + "AU1ojqQAAR1djehDsfMYAN6apZMVtPULAPMSBeXf7YNef3dUZfrv": [ + { + "amount": "114.838037840", + "slot": { + "period": 164774, + "thread": 14 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 176071, + "thread": 27 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 448835, + "thread": 18 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 594957, + "thread": 30 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 668034, + "thread": 24 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 906618, + "thread": 30 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1014860, + "thread": 26 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1207873, + "thread": 12 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1376381, + "thread": 4 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1543151, + "thread": 20 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1808675, + "thread": 3 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 1846540, + "thread": 0 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2123068, + "thread": 21 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2173671, + "thread": 17 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2327316, + "thread": 27 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2622046, + "thread": 12 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2744437, + "thread": 10 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 2894958, + "thread": 18 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 3090677, + "thread": 10 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 3253151, + "thread": 26 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 3391335, + "thread": 29 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 3489905, + "thread": 6 + } + }, + { + "amount": "114.838037840", + "slot": { + "period": 3775711, + "thread": 3 + } + }, + { + "amount": "114.838037832", + "slot": { + "period": 3840184, + "thread": 30 + } + } + ], + "AU1ojqvCRC8fwkxvsE6s53xWyFu4mdMwjnJ6mtzQWFCLUxeKwKzX": [ + { + "amount": "163.994893543", + "slot": { + "period": 28124, + "thread": 28 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 269467, + "thread": 28 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 382410, + "thread": 11 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 550183, + "thread": 26 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 788823, + "thread": 12 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 838432, + "thread": 6 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1022667, + "thread": 2 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1303323, + "thread": 11 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1421403, + "thread": 22 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1487938, + "thread": 14 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1738580, + "thread": 29 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1810078, + "thread": 1 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 1988904, + "thread": 3 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2282619, + "thread": 31 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2406551, + "thread": 23 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2540136, + "thread": 20 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2745063, + "thread": 7 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2840611, + "thread": 30 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 2999262, + "thread": 17 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 3211091, + "thread": 9 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 3381920, + "thread": 0 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 3463621, + "thread": 10 + } + }, + { + "amount": "163.994893543", + "slot": { + "period": 3622860, + "thread": 5 + } + }, + { + "amount": "163.994893554", + "slot": { + "period": 3935098, + "thread": 19 + } + } + ], + "AU1oktfS9TVTq7AFbWfk8sBcgvmk3KtY4XNTR3mTxB9nhZJXNB5X": [ + { + "amount": "562.466607362", + "slot": { + "period": 122105, + "thread": 3 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 207655, + "thread": 12 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 430960, + "thread": 4 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 557371, + "thread": 26 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 819146, + "thread": 7 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 936041, + "thread": 22 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1149978, + "thread": 6 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1279840, + "thread": 14 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1383616, + "thread": 7 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1605085, + "thread": 20 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1684048, + "thread": 29 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 1970379, + "thread": 1 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2134666, + "thread": 5 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2278331, + "thread": 26 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2443776, + "thread": 11 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2551871, + "thread": 0 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2751863, + "thread": 20 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 2823369, + "thread": 3 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 3120236, + "thread": 11 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 3281023, + "thread": 3 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 3304214, + "thread": 9 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 3515812, + "thread": 4 + } + }, + { + "amount": "562.466607362", + "slot": { + "period": 3691097, + "thread": 21 + } + }, + { + "amount": "562.466607368", + "slot": { + "period": 3908364, + "thread": 22 + } + } + ], + "AU1omFEt1yVEKrVcwrqGAwgKtU9ruhWgYGjmVtH5nBAkp38jYBmj": [ + { + "amount": "217.108340003", + "slot": { + "period": 19727, + "thread": 2 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 234137, + "thread": 2 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 393408, + "thread": 3 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 532936, + "thread": 11 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 786816, + "thread": 24 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 947970, + "thread": 18 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1075866, + "thread": 29 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1302947, + "thread": 25 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1379768, + "thread": 22 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1631080, + "thread": 30 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1787764, + "thread": 4 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 1898162, + "thread": 14 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2117443, + "thread": 17 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2270854, + "thread": 4 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2363787, + "thread": 8 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2574836, + "thread": 20 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2756029, + "thread": 23 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 2909027, + "thread": 18 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 3120483, + "thread": 5 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 3135991, + "thread": 22 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 3400452, + "thread": 15 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 3533547, + "thread": 2 + } + }, + { + "amount": "217.108340003", + "slot": { + "period": 3626027, + "thread": 8 + } + }, + { + "amount": "217.108340005", + "slot": { + "period": 3928762, + "thread": 26 + } + } + ], + "AU1omftb5mrciiM16RLm3TPQcCkF4zVEppKGTEVsneTQipTvUnvJ": [ + { + "amount": "302.154116103", + "slot": { + "period": 37274, + "thread": 4 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 223933, + "thread": 14 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 353803, + "thread": 1 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 508258, + "thread": 11 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 793695, + "thread": 17 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 888279, + "thread": 20 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1111757, + "thread": 13 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1241872, + "thread": 9 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1439110, + "thread": 28 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1638322, + "thread": 26 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1665693, + "thread": 6 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 1851374, + "thread": 21 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2052469, + "thread": 9 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2217089, + "thread": 22 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2323380, + "thread": 0 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2523264, + "thread": 7 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2658933, + "thread": 6 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2821349, + "thread": 22 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 2995841, + "thread": 31 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 3181930, + "thread": 17 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 3340103, + "thread": 17 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 3461008, + "thread": 10 + } + }, + { + "amount": "302.154116103", + "slot": { + "period": 3722200, + "thread": 2 + } + }, + { + "amount": "302.154116104", + "slot": { + "period": 3799489, + "thread": 17 + } + } + ], + "AU1oqqY9hu4ARHyv89iSton26XXXdQszLojUJZzhmDMo3MLvHUtn": [ + { + "amount": "349.468846069", + "slot": { + "period": 155983, + "thread": 28 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 304779, + "thread": 8 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 411900, + "thread": 1 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 623202, + "thread": 30 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 729721, + "thread": 23 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 844397, + "thread": 22 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1121327, + "thread": 15 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1209263, + "thread": 21 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1357886, + "thread": 19 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1589815, + "thread": 13 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1787404, + "thread": 25 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 1927658, + "thread": 3 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2028109, + "thread": 25 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2179176, + "thread": 29 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2308600, + "thread": 18 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2603600, + "thread": 28 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2630199, + "thread": 21 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 2923345, + "thread": 7 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 3061127, + "thread": 29 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 3283961, + "thread": 2 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 3377393, + "thread": 16 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 3469957, + "thread": 19 + } + }, + { + "amount": "349.468846069", + "slot": { + "period": 3649644, + "thread": 27 + } + }, + { + "amount": "349.468846074", + "slot": { + "period": 3894189, + "thread": 26 + } + } + ], + "AU1or6xyhHiYyPNnbmyiwxwrmHC4SfM4HJRz2XtrqrMbJedUHUGR": [ + { + "amount": "513.253186378", + "slot": { + "period": 128922, + "thread": 21 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 201167, + "thread": 28 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 403766, + "thread": 11 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 621994, + "thread": 17 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 698973, + "thread": 4 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 901621, + "thread": 30 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 993304, + "thread": 13 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 1302549, + "thread": 4 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 1378244, + "thread": 12 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 1598989, + "thread": 24 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 1727127, + "thread": 27 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 1887851, + "thread": 27 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2053236, + "thread": 26 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2254894, + "thread": 22 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2311738, + "thread": 13 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2535767, + "thread": 14 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2657565, + "thread": 23 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 2883475, + "thread": 13 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 3061150, + "thread": 28 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 3279939, + "thread": 13 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 3404864, + "thread": 9 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 3480252, + "thread": 25 + } + }, + { + "amount": "513.253186378", + "slot": { + "period": 3749756, + "thread": 18 + } + }, + { + "amount": "513.253186388", + "slot": { + "period": 3801739, + "thread": 10 + } + } + ], + "AU1orW7CZBjCXsk9J1P2b9Nj2bktpmfvX9ujnAd6CzppJqCd2yRX": [ + { + "amount": "141.600632612", + "slot": { + "period": 33654, + "thread": 0 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 309616, + "thread": 3 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 447360, + "thread": 8 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 523153, + "thread": 22 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 791445, + "thread": 4 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 882451, + "thread": 18 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1071437, + "thread": 8 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1158215, + "thread": 6 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1444839, + "thread": 15 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1519972, + "thread": 3 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1703660, + "thread": 17 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 1894190, + "thread": 17 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2115430, + "thread": 17 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2262906, + "thread": 16 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2318674, + "thread": 21 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2555673, + "thread": 6 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2722805, + "thread": 2 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 2828176, + "thread": 10 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 3039581, + "thread": 18 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 3230732, + "thread": 22 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 3405483, + "thread": 23 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 3609170, + "thread": 12 + } + }, + { + "amount": "141.600632612", + "slot": { + "period": 3743185, + "thread": 8 + } + }, + { + "amount": "141.600632600", + "slot": { + "period": 3879959, + "thread": 0 + } + } + ], + "AU1os89YzxnuCifokdjTUAdNisGydVuHJ6BTAyToLX2BWsv8zK3r": [ + { + "amount": "200.513037424", + "slot": { + "period": 154141, + "thread": 29 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 305511, + "thread": 9 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 456006, + "thread": 5 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 530892, + "thread": 8 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 798217, + "thread": 25 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 823927, + "thread": 17 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1004395, + "thread": 5 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1230268, + "thread": 0 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1373720, + "thread": 20 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1588989, + "thread": 5 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1692853, + "thread": 24 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 1953665, + "thread": 11 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2132460, + "thread": 25 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2276475, + "thread": 27 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2378512, + "thread": 15 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2589414, + "thread": 25 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2785126, + "thread": 8 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 2818112, + "thread": 18 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 3001369, + "thread": 15 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 3132061, + "thread": 9 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 3357495, + "thread": 4 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 3598951, + "thread": 6 + } + }, + { + "amount": "200.513037424", + "slot": { + "period": 3756847, + "thread": 17 + } + }, + { + "amount": "200.513037425", + "slot": { + "period": 3873462, + "thread": 17 + } + } + ], + "AU1osL5KBTx7dXn6ChfCtDwRxRTtmHKFMDhtP3gNc5DfDpAoj6Ys": [ + { + "amount": "401.426617347", + "slot": { + "period": 76875, + "thread": 25 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 259453, + "thread": 12 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 328577, + "thread": 9 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 502958, + "thread": 14 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 799354, + "thread": 10 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 832021, + "thread": 7 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1020107, + "thread": 27 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1227274, + "thread": 17 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1427460, + "thread": 21 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1549441, + "thread": 11 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1650110, + "thread": 15 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1814842, + "thread": 24 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 1998899, + "thread": 12 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 2234810, + "thread": 7 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 2310758, + "thread": 17 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 2513002, + "thread": 21 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 2776336, + "thread": 19 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 2888168, + "thread": 14 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 3001940, + "thread": 8 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 3241101, + "thread": 8 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 3413100, + "thread": 27 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 3605782, + "thread": 28 + } + }, + { + "amount": "401.426617347", + "slot": { + "period": 3663355, + "thread": 15 + } + }, + { + "amount": "401.426617336", + "slot": { + "period": 3912084, + "thread": 25 + } + } + ], + "AU1osrX9tLbhdPyTCQFScWFT9X2jWh1dH9meTtyQfrqdLEn2ZXje": [ + { + "amount": "180.642382996", + "slot": { + "period": 51384, + "thread": 26 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 222232, + "thread": 22 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 418272, + "thread": 24 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 542781, + "thread": 15 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 727749, + "thread": 12 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 961409, + "thread": 12 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1080883, + "thread": 11 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1199348, + "thread": 27 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1413130, + "thread": 14 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1615927, + "thread": 31 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1780210, + "thread": 1 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1835984, + "thread": 14 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 1984291, + "thread": 25 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 2215674, + "thread": 6 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 2440669, + "thread": 0 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 2534452, + "thread": 30 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 2709693, + "thread": 13 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 2821479, + "thread": 14 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 3071370, + "thread": 20 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 3169165, + "thread": 5 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 3305429, + "thread": 16 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 3521044, + "thread": 20 + } + }, + { + "amount": "180.642382996", + "slot": { + "period": 3677991, + "thread": 29 + } + }, + { + "amount": "180.642382989", + "slot": { + "period": 3897350, + "thread": 5 + } + } + ], + "AU1osw1LpGj6kkGjUpx7xmvGvhnywCc5QU16rDXDNspx3ebPRRNc": [ + { + "amount": "65.634738583", + "slot": { + "period": 77974, + "thread": 4 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 305945, + "thread": 25 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 340611, + "thread": 24 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 573502, + "thread": 3 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 736544, + "thread": 15 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 981865, + "thread": 12 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1119119, + "thread": 3 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1239481, + "thread": 29 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1475351, + "thread": 8 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1637216, + "thread": 9 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1804378, + "thread": 27 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1821318, + "thread": 18 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 1989954, + "thread": 19 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 2223603, + "thread": 3 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 2301512, + "thread": 8 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 2607874, + "thread": 15 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 2774555, + "thread": 15 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 2930281, + "thread": 6 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 3010682, + "thread": 19 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 3286046, + "thread": 14 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 3298232, + "thread": 25 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 3507867, + "thread": 24 + } + }, + { + "amount": "65.634738583", + "slot": { + "period": 3660738, + "thread": 26 + } + }, + { + "amount": "65.634738584", + "slot": { + "period": 3929707, + "thread": 29 + } + } + ], + "AU1otcEfYcCNBkxLrajq9jjP7efjY7xge8x2V5P7ozoBKqCGpqr6": [ + { + "amount": "132.627037674", + "slot": { + "period": 87074, + "thread": 20 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 279082, + "thread": 4 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 367352, + "thread": 10 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 517323, + "thread": 18 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 817861, + "thread": 30 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 842895, + "thread": 28 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1122057, + "thread": 26 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1152688, + "thread": 15 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1421754, + "thread": 30 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1519318, + "thread": 12 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1691277, + "thread": 24 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 1836305, + "thread": 8 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2005817, + "thread": 4 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2179990, + "thread": 28 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2335142, + "thread": 31 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2503040, + "thread": 18 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2729460, + "thread": 8 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 2807528, + "thread": 22 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 3065104, + "thread": 2 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 3190263, + "thread": 31 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 3392518, + "thread": 24 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 3586124, + "thread": 6 + } + }, + { + "amount": "132.627037674", + "slot": { + "period": 3716603, + "thread": 4 + } + }, + { + "amount": "132.627037685", + "slot": { + "period": 3941551, + "thread": 13 + } + } + ], + "AU1ouP66v1VKaZjX4TDp9kHMbktEesNSLyEhpSbPSSHb9uTLMtXa": [ + { + "amount": "798.660524086", + "slot": { + "period": 28559, + "thread": 3 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 281439, + "thread": 8 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 392302, + "thread": 9 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 529605, + "thread": 7 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 796259, + "thread": 10 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 839527, + "thread": 0 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 999716, + "thread": 18 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 1243579, + "thread": 17 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 1404364, + "thread": 2 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 1500990, + "thread": 15 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 1742485, + "thread": 30 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 1896664, + "thread": 30 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2021181, + "thread": 6 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2249729, + "thread": 28 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2356244, + "thread": 15 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2580098, + "thread": 1 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2714394, + "thread": 8 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 2812562, + "thread": 27 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 3088415, + "thread": 4 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 3131056, + "thread": 6 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 3314253, + "thread": 17 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 3588202, + "thread": 23 + } + }, + { + "amount": "798.660524086", + "slot": { + "period": 3706952, + "thread": 24 + } + }, + { + "amount": "798.660524089", + "slot": { + "period": 3887677, + "thread": 31 + } + } + ], + "AU1ouREKMajdnQD8yGsZ1xN7K9J2M99tKbRsD1kSPcDnMZttViB7": [ + { + "amount": "519.254518144", + "slot": { + "period": 95595, + "thread": 5 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 266477, + "thread": 1 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 367507, + "thread": 5 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 541590, + "thread": 19 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 654274, + "thread": 10 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 923290, + "thread": 25 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1054783, + "thread": 3 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1209058, + "thread": 22 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1447770, + "thread": 26 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1614821, + "thread": 6 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1754227, + "thread": 6 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 1924516, + "thread": 12 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2045000, + "thread": 15 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2205161, + "thread": 15 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2456627, + "thread": 1 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2545362, + "thread": 31 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2759118, + "thread": 28 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 2918208, + "thread": 24 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 3099224, + "thread": 10 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 3242796, + "thread": 19 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 3307645, + "thread": 12 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 3473390, + "thread": 19 + } + }, + { + "amount": "519.254518144", + "slot": { + "period": 3648460, + "thread": 2 + } + }, + { + "amount": "519.254518153", + "slot": { + "period": 3810363, + "thread": 0 + } + } + ], + "AU1oujWBRLYCxxa1G9NfRaVDtxtWcPs54miAEZJoVjUJbHnRDTJX": [ + { + "amount": "544.626313519", + "slot": { + "period": 160068, + "thread": 30 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 204510, + "thread": 22 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 414634, + "thread": 6 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 618294, + "thread": 28 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 690028, + "thread": 13 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 965025, + "thread": 4 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1064563, + "thread": 28 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1252308, + "thread": 31 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1393457, + "thread": 27 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1544381, + "thread": 14 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1780985, + "thread": 25 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 1815377, + "thread": 30 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2137369, + "thread": 21 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2225472, + "thread": 12 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2401815, + "thread": 25 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2610056, + "thread": 30 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2626420, + "thread": 14 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 2862916, + "thread": 26 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 3071387, + "thread": 15 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 3208341, + "thread": 15 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 3433978, + "thread": 22 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 3453858, + "thread": 21 + } + }, + { + "amount": "544.626313519", + "slot": { + "period": 3697553, + "thread": 2 + } + }, + { + "amount": "544.626313525", + "slot": { + "period": 3843460, + "thread": 14 + } + } + ], + "AU1ouuoaoZ2PaWr4n1Y4Znx9kC7ajxdir27VXp56ZmSTys3iLjG": [ + { + "amount": "77.499567725", + "slot": { + "period": 117444, + "thread": 22 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 213858, + "thread": 21 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 355502, + "thread": 23 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 618449, + "thread": 15 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 671024, + "thread": 21 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 945180, + "thread": 31 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1020992, + "thread": 9 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1252767, + "thread": 29 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1470252, + "thread": 21 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1562225, + "thread": 26 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1730970, + "thread": 17 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 1868083, + "thread": 20 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2130370, + "thread": 10 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2151001, + "thread": 16 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2309566, + "thread": 6 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2544772, + "thread": 8 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2771595, + "thread": 30 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 2939386, + "thread": 26 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 3037265, + "thread": 27 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 3231894, + "thread": 3 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 3419117, + "thread": 31 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 3564739, + "thread": 1 + } + }, + { + "amount": "77.499567725", + "slot": { + "period": 3639232, + "thread": 5 + } + }, + { + "amount": "77.499567722", + "slot": { + "period": 3909866, + "thread": 15 + } + } + ], + "AU1ovFA2EUuBzyxJMATC7JHAGoCom5cSJf3axijgMTzvbyaAQpPX": [ + { + "amount": "90.373792096", + "slot": { + "period": 17511, + "thread": 16 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 273057, + "thread": 29 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 451757, + "thread": 30 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 574302, + "thread": 1 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 806540, + "thread": 21 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 933367, + "thread": 9 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1008456, + "thread": 7 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1214705, + "thread": 4 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1387241, + "thread": 14 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1555999, + "thread": 20 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1767317, + "thread": 4 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 1939747, + "thread": 8 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2117868, + "thread": 9 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2219047, + "thread": 24 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2305904, + "thread": 15 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2496760, + "thread": 12 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2722798, + "thread": 1 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 2850607, + "thread": 27 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 3025597, + "thread": 1 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 3229065, + "thread": 22 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 3355523, + "thread": 28 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 3499349, + "thread": 8 + } + }, + { + "amount": "90.373792096", + "slot": { + "period": 3730523, + "thread": 2 + } + }, + { + "amount": "90.373792106", + "slot": { + "period": 3793171, + "thread": 24 + } + } + ], + "AU1ovW8iPuFM2chJf3S6baZUdrSJzV1DWjf9DiWrDwZzWrESXH7R": [ + { + "amount": "56.679938729", + "slot": { + "period": 28066, + "thread": 6 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 185285, + "thread": 1 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 419241, + "thread": 28 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 572903, + "thread": 7 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 775491, + "thread": 7 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 928989, + "thread": 4 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1036869, + "thread": 31 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1171031, + "thread": 8 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1329868, + "thread": 27 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1556289, + "thread": 13 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1678401, + "thread": 2 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1820844, + "thread": 24 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 1984534, + "thread": 8 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2185277, + "thread": 17 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2429759, + "thread": 29 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2476496, + "thread": 26 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2728441, + "thread": 17 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2796887, + "thread": 17 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 2974885, + "thread": 21 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 3147085, + "thread": 28 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 3356812, + "thread": 30 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 3575488, + "thread": 1 + } + }, + { + "amount": "56.679938729", + "slot": { + "period": 3662418, + "thread": 24 + } + }, + { + "amount": "56.679938737", + "slot": { + "period": 3810477, + "thread": 27 + } + } + ], + "AU1ovYpZsgy4T9zEazHJ3xF6LLVhveisHHXSrJYa7Abt23yKdj7U": [ + { + "amount": "142.631495651", + "slot": { + "period": 82732, + "thread": 3 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 271754, + "thread": 1 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 462190, + "thread": 27 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 592581, + "thread": 15 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 726905, + "thread": 31 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 846748, + "thread": 17 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1044146, + "thread": 26 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1294940, + "thread": 9 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1433762, + "thread": 17 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1637076, + "thread": 27 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1655229, + "thread": 12 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 1910311, + "thread": 14 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2065745, + "thread": 0 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2275629, + "thread": 8 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2373964, + "thread": 12 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2548384, + "thread": 17 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2742026, + "thread": 19 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 2951077, + "thread": 13 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 3084583, + "thread": 17 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 3161452, + "thread": 25 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 3340284, + "thread": 8 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 3525547, + "thread": 7 + } + }, + { + "amount": "142.631495651", + "slot": { + "period": 3668997, + "thread": 17 + } + }, + { + "amount": "142.631495656", + "slot": { + "period": 3899318, + "thread": 27 + } + } + ], + "AU1owStAyKK4rGQc8NkbESSd6XzHkaLRAmxFMDaK5BW6VjTsnhv4": [ + { + "amount": "114.452477780", + "slot": { + "period": 155461, + "thread": 24 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 204528, + "thread": 27 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 455688, + "thread": 30 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 559509, + "thread": 3 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 760082, + "thread": 27 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 970868, + "thread": 7 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1129385, + "thread": 9 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1315383, + "thread": 24 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1351534, + "thread": 24 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1520270, + "thread": 13 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1744514, + "thread": 4 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 1933963, + "thread": 23 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2082886, + "thread": 30 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2235726, + "thread": 28 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2418480, + "thread": 17 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2592465, + "thread": 10 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2665981, + "thread": 11 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 2860852, + "thread": 21 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 3017163, + "thread": 3 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 3193832, + "thread": 31 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 3432389, + "thread": 11 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 3561973, + "thread": 10 + } + }, + { + "amount": "114.452477780", + "slot": { + "period": 3732192, + "thread": 0 + } + }, + { + "amount": "114.452477771", + "slot": { + "period": 3863992, + "thread": 31 + } + } + ], + "AU1owo7rY2S2FQfHwxcP1EpkKQ1CfvoNafNYU6tSm2SxvErLCGim": [ + { + "amount": "224.351219513", + "slot": { + "period": 60103, + "thread": 8 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 188425, + "thread": 31 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 485271, + "thread": 15 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 531057, + "thread": 6 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 665970, + "thread": 29 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 908281, + "thread": 13 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1082256, + "thread": 21 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1213145, + "thread": 19 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1461460, + "thread": 29 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1573389, + "thread": 13 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1759408, + "thread": 29 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 1814706, + "thread": 22 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2125521, + "thread": 19 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2177051, + "thread": 17 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2342238, + "thread": 17 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2512246, + "thread": 16 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2766650, + "thread": 11 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 2795988, + "thread": 26 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 3012639, + "thread": 0 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 3226368, + "thread": 20 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 3342935, + "thread": 21 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 3529790, + "thread": 29 + } + }, + { + "amount": "224.351219513", + "slot": { + "period": 3694607, + "thread": 23 + } + }, + { + "amount": "224.351219523", + "slot": { + "period": 3806542, + "thread": 28 + } + } + ], + "AU1ox9pgb2ZpigMwJKvPW1N5qP5P83anBfhLc6S9Q7j5YuU4J9qn": [ + { + "amount": "655.458788706", + "slot": { + "period": 77398, + "thread": 19 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 264119, + "thread": 28 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 379694, + "thread": 27 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 493559, + "thread": 21 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 720981, + "thread": 24 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 914976, + "thread": 3 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1079776, + "thread": 31 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1229803, + "thread": 8 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1333761, + "thread": 4 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1502715, + "thread": 23 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1682833, + "thread": 22 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 1934974, + "thread": 17 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2004990, + "thread": 31 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2240736, + "thread": 9 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2357427, + "thread": 30 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2491446, + "thread": 3 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2780137, + "thread": 2 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 2820873, + "thread": 11 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 3049215, + "thread": 20 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 3157637, + "thread": 29 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 3325275, + "thread": 27 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 3491126, + "thread": 7 + } + }, + { + "amount": "655.458788706", + "slot": { + "period": 3726019, + "thread": 5 + } + }, + { + "amount": "655.458788701", + "slot": { + "period": 3869082, + "thread": 12 + } + } + ], + "AU1oy2L7bErDKMGC3P77fni6eWxyrmBWMQ6mm3VKEv4ujNZ5p46v": [ + { + "amount": "32407.433333333", + "slot": { + "period": 144787, + "thread": 12 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 308860, + "thread": 2 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 472390, + "thread": 25 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 545226, + "thread": 4 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 682972, + "thread": 11 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 917673, + "thread": 13 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1027609, + "thread": 26 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1310947, + "thread": 16 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1337009, + "thread": 9 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1587225, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1766691, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 1812813, + "thread": 19 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2120592, + "thread": 31 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2259883, + "thread": 22 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2320528, + "thread": 4 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2543271, + "thread": 12 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2738548, + "thread": 3 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2802649, + "thread": 11 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 2966944, + "thread": 4 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3185549, + "thread": 5 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3382262, + "thread": 26 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3478130, + "thread": 30 + } + }, + { + "amount": "32407.433333333", + "slot": { + "period": 3677471, + "thread": 1 + } + }, + { + "amount": "32407.433333341", + "slot": { + "period": 3913326, + "thread": 23 + } + } + ], + "AU1oyjp1BLtjTFBELs4Rjsn2G8CkKtWVvc8Li4o7ntkTPASLjp45": [ + { + "amount": "78.184159610", + "slot": { + "period": 78187, + "thread": 8 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 239593, + "thread": 17 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 385948, + "thread": 5 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 651285, + "thread": 27 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 690030, + "thread": 15 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 969557, + "thread": 16 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1134357, + "thread": 27 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1179716, + "thread": 20 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1412044, + "thread": 31 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1617412, + "thread": 21 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1783591, + "thread": 21 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 1886684, + "thread": 8 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2004411, + "thread": 10 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2168049, + "thread": 5 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2381578, + "thread": 18 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2511739, + "thread": 16 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2766581, + "thread": 28 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2824227, + "thread": 30 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 2960665, + "thread": 16 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 3247079, + "thread": 6 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 3396816, + "thread": 4 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 3608381, + "thread": 28 + } + }, + { + "amount": "78.184159610", + "slot": { + "period": 3649258, + "thread": 9 + } + }, + { + "amount": "78.184159608", + "slot": { + "period": 3942173, + "thread": 0 + } + } + ], + "AU1oztjnEDbpVSnEzaDGoaAoYTLVrSXSkbXsJ8NnykVLBBupF8qJ": [ + { + "amount": "123.781805485", + "slot": { + "period": 145022, + "thread": 1 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 187772, + "thread": 24 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 460840, + "thread": 9 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 628342, + "thread": 27 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 765277, + "thread": 15 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 928724, + "thread": 23 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1115028, + "thread": 27 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1256431, + "thread": 26 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1334977, + "thread": 14 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1602911, + "thread": 10 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1786091, + "thread": 20 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 1840896, + "thread": 21 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2073252, + "thread": 24 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2212265, + "thread": 9 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2434049, + "thread": 15 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2511398, + "thread": 18 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2736118, + "thread": 11 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2863075, + "thread": 18 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 2976196, + "thread": 30 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 3205605, + "thread": 30 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 3436947, + "thread": 8 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 3586649, + "thread": 14 + } + }, + { + "amount": "123.781805485", + "slot": { + "period": 3720830, + "thread": 21 + } + }, + { + "amount": "123.781805487", + "slot": { + "period": 3827580, + "thread": 31 + } + } + ], + "AU1ozxgBH6B4D4hFSKUHP3FZtRJxCNejWnnH4MeUe4sB1DP1oyNg": [ + { + "amount": "490.577099011", + "slot": { + "period": 53417, + "thread": 27 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 221436, + "thread": 18 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 391340, + "thread": 11 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 566019, + "thread": 18 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 656988, + "thread": 30 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 894066, + "thread": 8 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1127581, + "thread": 22 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1184631, + "thread": 15 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1352815, + "thread": 22 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1537078, + "thread": 13 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1770143, + "thread": 1 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 1926651, + "thread": 16 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2020523, + "thread": 28 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2275691, + "thread": 22 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2344156, + "thread": 31 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2557151, + "thread": 31 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2660074, + "thread": 11 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 2806326, + "thread": 12 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 3034036, + "thread": 19 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 3288345, + "thread": 18 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 3309997, + "thread": 18 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 3599735, + "thread": 11 + } + }, + { + "amount": "490.577099011", + "slot": { + "period": 3669417, + "thread": 25 + } + }, + { + "amount": "490.577099016", + "slot": { + "period": 3926051, + "thread": 26 + } + } + ], + "AU1p18R8r2PEHLfQe1RhZy2Hm3B6bDMn5DMM2GFJmoo8J6VgMHFc": [ + { + "amount": "456.914267596", + "slot": { + "period": 18455, + "thread": 19 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 262049, + "thread": 15 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 432997, + "thread": 13 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 588040, + "thread": 20 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 784322, + "thread": 9 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 903905, + "thread": 9 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1106650, + "thread": 0 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1195499, + "thread": 22 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1326044, + "thread": 13 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1583060, + "thread": 25 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1785376, + "thread": 19 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 1826915, + "thread": 2 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2136208, + "thread": 13 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2204805, + "thread": 30 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2385755, + "thread": 24 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2601735, + "thread": 18 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2748717, + "thread": 23 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2888860, + "thread": 17 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 2966282, + "thread": 29 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 3180444, + "thread": 9 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 3317409, + "thread": 17 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 3521197, + "thread": 2 + } + }, + { + "amount": "456.914267596", + "slot": { + "period": 3648769, + "thread": 7 + } + }, + { + "amount": "456.914267591", + "slot": { + "period": 3920156, + "thread": 15 + } + } + ], + "AU1p1pc7FeFmiGr2ZyySTxhAvyPziXcbBwSFpEhcUjVVyaU9vbJv": [ + { + "amount": "148.741617943", + "slot": { + "period": 77028, + "thread": 13 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 189523, + "thread": 6 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 465424, + "thread": 0 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 616921, + "thread": 29 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 682626, + "thread": 19 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 894770, + "thread": 5 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 998054, + "thread": 5 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 1220283, + "thread": 18 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 1432924, + "thread": 20 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 1615409, + "thread": 30 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 1786792, + "thread": 29 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 1872018, + "thread": 8 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2039572, + "thread": 24 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2275877, + "thread": 13 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2364817, + "thread": 28 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2536091, + "thread": 18 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2644282, + "thread": 16 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 2873633, + "thread": 28 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 3018848, + "thread": 21 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 3233733, + "thread": 11 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 3320095, + "thread": 7 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 3477435, + "thread": 29 + } + }, + { + "amount": "148.741617943", + "slot": { + "period": 3715948, + "thread": 3 + } + }, + { + "amount": "148.741617939", + "slot": { + "period": 3940777, + "thread": 18 + } + } + ], + "AU1p1qY6DoaV1wdKDx4AhpApQmEsKNUmfY4PDj59QZFWWkMJRYZ5": [ + { + "amount": "54.733933811", + "slot": { + "period": 18796, + "thread": 24 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 310743, + "thread": 1 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 332687, + "thread": 14 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 493203, + "thread": 19 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 666665, + "thread": 0 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 978043, + "thread": 9 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1012816, + "thread": 22 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1181481, + "thread": 17 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1421787, + "thread": 25 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1486531, + "thread": 20 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1677727, + "thread": 21 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1890255, + "thread": 14 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 1981613, + "thread": 19 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 2232346, + "thread": 21 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 2393961, + "thread": 22 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 2495522, + "thread": 31 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 2724638, + "thread": 22 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 2942841, + "thread": 8 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 3008475, + "thread": 18 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 3134651, + "thread": 6 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 3326621, + "thread": 0 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 3534752, + "thread": 6 + } + }, + { + "amount": "54.733933811", + "slot": { + "period": 3666839, + "thread": 18 + } + }, + { + "amount": "54.733933807", + "slot": { + "period": 3915764, + "thread": 23 + } + } + ], + "AU1p2eNB2W9RhZHiHtw9paWnWcU5AS7aSQBjqWi1QhzA1BsYSpQN": [ + { + "amount": "99.923987613", + "slot": { + "period": 86662, + "thread": 29 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 258142, + "thread": 26 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 370857, + "thread": 26 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 614096, + "thread": 9 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 716688, + "thread": 2 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 869135, + "thread": 9 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1016008, + "thread": 20 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1176828, + "thread": 15 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1464853, + "thread": 15 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1482284, + "thread": 21 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1681727, + "thread": 17 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 1917572, + "thread": 15 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2023614, + "thread": 10 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2244481, + "thread": 18 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2365608, + "thread": 2 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2615314, + "thread": 9 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2760708, + "thread": 24 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2932487, + "thread": 25 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 2969151, + "thread": 29 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 3166838, + "thread": 4 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 3316805, + "thread": 29 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 3455516, + "thread": 25 + } + }, + { + "amount": "99.923987613", + "slot": { + "period": 3740597, + "thread": 23 + } + }, + { + "amount": "99.923987609", + "slot": { + "period": 3902192, + "thread": 15 + } + } + ], + "AU1p2epF29smAsWPQHmsrAPaQBdC3YkYxUuGWoaRS65Yq9yPLg4C": [ + { + "amount": "288.573241247", + "slot": { + "period": 14489, + "thread": 19 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 175165, + "thread": 14 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 483461, + "thread": 17 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 614621, + "thread": 21 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 803429, + "thread": 3 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 882909, + "thread": 8 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 997922, + "thread": 2 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 1308229, + "thread": 1 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 1410908, + "thread": 2 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 1577620, + "thread": 10 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 1739244, + "thread": 5 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 1965165, + "thread": 15 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2005998, + "thread": 23 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2230010, + "thread": 18 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2405210, + "thread": 27 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2568460, + "thread": 14 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2726113, + "thread": 17 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2902929, + "thread": 20 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 2974686, + "thread": 6 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 3215900, + "thread": 15 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 3336542, + "thread": 20 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 3530897, + "thread": 18 + } + }, + { + "amount": "288.573241247", + "slot": { + "period": 3683852, + "thread": 10 + } + }, + { + "amount": "288.573241243", + "slot": { + "period": 3781560, + "thread": 27 + } + } + ], + "AU1p5bmNX8WtFeZMTijtAZXPGJnCy4v22faa8iP9hisUoEdWgoqc": [ + { + "amount": "237.951730570", + "slot": { + "period": 32837, + "thread": 10 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 226702, + "thread": 6 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 486461, + "thread": 13 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 540123, + "thread": 20 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 787682, + "thread": 28 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 889994, + "thread": 20 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1032008, + "thread": 3 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1280089, + "thread": 23 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1356165, + "thread": 30 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1541917, + "thread": 0 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1650467, + "thread": 3 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 1917390, + "thread": 16 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2021540, + "thread": 7 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2171548, + "thread": 22 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2341765, + "thread": 20 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2596508, + "thread": 27 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2668037, + "thread": 26 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2901116, + "thread": 14 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 2979615, + "thread": 17 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 3267586, + "thread": 28 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 3448601, + "thread": 3 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 3591184, + "thread": 27 + } + }, + { + "amount": "237.951730570", + "slot": { + "period": 3672071, + "thread": 13 + } + }, + { + "amount": "237.951730560", + "slot": { + "period": 3866351, + "thread": 23 + } + } + ], + "AU1p6Zo8NGdTvZWeg45aYBuqa8VzoRffHAiXPcNnjrAaGWyuV3v8": [ + { + "amount": "273.650138127", + "slot": { + "period": 79267, + "thread": 23 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 192792, + "thread": 19 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 474932, + "thread": 21 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 513637, + "thread": 15 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 711302, + "thread": 11 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 871242, + "thread": 26 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1046615, + "thread": 6 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1200077, + "thread": 1 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1418516, + "thread": 21 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1547258, + "thread": 27 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1794933, + "thread": 23 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 1883344, + "thread": 0 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2093350, + "thread": 20 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2194413, + "thread": 9 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2328043, + "thread": 30 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2611094, + "thread": 12 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2632225, + "thread": 7 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 2836279, + "thread": 13 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 3047431, + "thread": 19 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 3248934, + "thread": 14 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 3334428, + "thread": 9 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 3608084, + "thread": 13 + } + }, + { + "amount": "273.650138127", + "slot": { + "period": 3778111, + "thread": 14 + } + }, + { + "amount": "273.650138132", + "slot": { + "period": 3878549, + "thread": 18 + } + } + ], + "AU1p6aK4sdpEcGZZUZRGZUGFxgswumEaAEnMTp6S9GSKjkcB21Jf": [ + { + "amount": "112.923971084", + "slot": { + "period": 86444, + "thread": 22 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 240456, + "thread": 3 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 406006, + "thread": 14 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 652308, + "thread": 14 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 681259, + "thread": 21 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 963837, + "thread": 26 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1050324, + "thread": 19 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1293623, + "thread": 22 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1375025, + "thread": 16 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1537162, + "thread": 1 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1721098, + "thread": 20 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 1932536, + "thread": 6 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2102170, + "thread": 21 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2258340, + "thread": 23 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2424479, + "thread": 10 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2611406, + "thread": 23 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2656707, + "thread": 16 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 2847253, + "thread": 0 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 3001151, + "thread": 17 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 3165550, + "thread": 12 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 3336682, + "thread": 27 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 3477032, + "thread": 12 + } + }, + { + "amount": "112.923971084", + "slot": { + "period": 3661095, + "thread": 16 + } + }, + { + "amount": "112.923971080", + "slot": { + "period": 3788768, + "thread": 27 + } + } + ], + "AU1p6gAjJFe5AqtUY8TtTqbYrPH6s38BsF4GckzSpao5AZ8gTb3Y": [ + { + "amount": "107.010918151", + "slot": { + "period": 15512, + "thread": 21 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 191817, + "thread": 24 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 485831, + "thread": 19 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 516804, + "thread": 11 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 662162, + "thread": 9 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 956980, + "thread": 21 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1024552, + "thread": 23 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1169738, + "thread": 28 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1451554, + "thread": 21 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1567098, + "thread": 22 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1751269, + "thread": 24 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 1946207, + "thread": 30 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2034297, + "thread": 23 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2177346, + "thread": 23 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2411281, + "thread": 30 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2579289, + "thread": 5 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2785498, + "thread": 22 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 2909810, + "thread": 24 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 3063797, + "thread": 24 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 3230611, + "thread": 1 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 3419820, + "thread": 2 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 3505207, + "thread": 7 + } + }, + { + "amount": "107.010918151", + "slot": { + "period": 3736272, + "thread": 31 + } + }, + { + "amount": "107.010918150", + "slot": { + "period": 3800503, + "thread": 17 + } + } + ], + "AU1p7uMQm17zpMJ4x7RtRyAgMuwvxteoeMrwN2RHAFgc8XZEQgCb": [ + { + "amount": "168.450972317", + "slot": { + "period": 76074, + "thread": 2 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 292081, + "thread": 21 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 347616, + "thread": 20 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 498961, + "thread": 13 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 715963, + "thread": 30 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 895524, + "thread": 10 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1035709, + "thread": 0 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1270231, + "thread": 30 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1421711, + "thread": 21 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1541699, + "thread": 25 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1717481, + "thread": 10 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 1932460, + "thread": 17 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2062862, + "thread": 15 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2242916, + "thread": 9 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2426052, + "thread": 31 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2577254, + "thread": 8 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2768431, + "thread": 21 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 2878546, + "thread": 29 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 3015115, + "thread": 20 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 3281291, + "thread": 23 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 3404163, + "thread": 21 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 3522362, + "thread": 10 + } + }, + { + "amount": "168.450972317", + "slot": { + "period": 3679068, + "thread": 18 + } + }, + { + "amount": "168.450972310", + "slot": { + "period": 3793161, + "thread": 2 + } + } + ], + "AU1p99JwRzTwQKZeyK5eeXDJb3dYQCZUQfAvwLAihYcHx9ZAdL3f": [ + { + "amount": "197.843737290", + "slot": { + "period": 18095, + "thread": 29 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 273367, + "thread": 2 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 478788, + "thread": 19 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 505932, + "thread": 15 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 700636, + "thread": 4 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 898381, + "thread": 21 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1117980, + "thread": 26 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1223624, + "thread": 3 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1448500, + "thread": 7 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1629622, + "thread": 10 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1672095, + "thread": 19 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 1953470, + "thread": 11 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2118503, + "thread": 10 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2212734, + "thread": 25 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2365027, + "thread": 3 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2475598, + "thread": 13 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2789808, + "thread": 10 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2850513, + "thread": 30 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 2991604, + "thread": 20 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 3166585, + "thread": 13 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 3302627, + "thread": 9 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 3472166, + "thread": 18 + } + }, + { + "amount": "197.843737290", + "slot": { + "period": 3714282, + "thread": 18 + } + }, + { + "amount": "197.843737288", + "slot": { + "period": 3877475, + "thread": 10 + } + } + ], + "AU1p9Cwgy2NP5L18aftZkQAUpMntPUUq5rtqusp3suPBQuqanh4M": [ + { + "amount": "325.237140189", + "slot": { + "period": 63131, + "thread": 13 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 301544, + "thread": 20 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 384376, + "thread": 19 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 589197, + "thread": 7 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 696430, + "thread": 11 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 957650, + "thread": 19 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1074361, + "thread": 18 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1210162, + "thread": 9 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1429952, + "thread": 14 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1637829, + "thread": 19 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1721656, + "thread": 3 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 1966019, + "thread": 14 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2112719, + "thread": 17 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2231243, + "thread": 8 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2336531, + "thread": 23 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2490364, + "thread": 3 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2756327, + "thread": 21 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2803298, + "thread": 10 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 2970461, + "thread": 24 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 3174462, + "thread": 21 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 3408712, + "thread": 18 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 3529708, + "thread": 23 + } + }, + { + "amount": "325.237140189", + "slot": { + "period": 3658536, + "thread": 18 + } + }, + { + "amount": "325.237140200", + "slot": { + "period": 3832366, + "thread": 4 + } + } + ], + "AU1p9xyuKWXt59wnKVrFYsRNSRYaeuJ3bfY3KQY79FaP8wjfgqsb": [ + { + "amount": "91.164964456", + "slot": { + "period": 116331, + "thread": 12 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 280819, + "thread": 17 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 337640, + "thread": 29 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 585461, + "thread": 4 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 752071, + "thread": 16 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 938080, + "thread": 6 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1141839, + "thread": 17 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1190479, + "thread": 12 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1437560, + "thread": 8 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1575721, + "thread": 11 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1709041, + "thread": 8 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 1896244, + "thread": 2 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2090951, + "thread": 18 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2188732, + "thread": 3 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2394166, + "thread": 27 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2600145, + "thread": 7 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2729603, + "thread": 3 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 2926299, + "thread": 30 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 3110156, + "thread": 6 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 3126341, + "thread": 17 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 3356993, + "thread": 31 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 3582453, + "thread": 3 + } + }, + { + "amount": "91.164964456", + "slot": { + "period": 3648527, + "thread": 14 + } + }, + { + "amount": "91.164964466", + "slot": { + "period": 3939925, + "thread": 2 + } + } + ], + "AU1pApVVt2FRKgd4e3fA7vtBkBvSjDq8vib5QrvuKmiCdRsQTqmS": [ + { + "amount": "614.710677782", + "slot": { + "period": 15201, + "thread": 21 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 232758, + "thread": 1 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 457640, + "thread": 10 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 602717, + "thread": 26 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 671476, + "thread": 24 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 961532, + "thread": 10 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1142610, + "thread": 13 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1222668, + "thread": 31 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1455481, + "thread": 5 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1633187, + "thread": 19 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1650963, + "thread": 2 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 1826687, + "thread": 9 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2131421, + "thread": 15 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2240067, + "thread": 31 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2351780, + "thread": 0 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2495565, + "thread": 14 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2631452, + "thread": 28 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2804365, + "thread": 6 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 2979308, + "thread": 11 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 3150561, + "thread": 25 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 3312741, + "thread": 30 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 3581889, + "thread": 24 + } + }, + { + "amount": "614.710677782", + "slot": { + "period": 3688624, + "thread": 28 + } + }, + { + "amount": "614.710677781", + "slot": { + "period": 3946609, + "thread": 14 + } + } + ], + "AU1pAsd82HahGH79itbdY4w6dqLp5FP1ShFn4DipRoPMxCceY4YB": [ + { + "amount": "308.094712688", + "slot": { + "period": 43243, + "thread": 7 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 259344, + "thread": 14 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 375759, + "thread": 2 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 623535, + "thread": 30 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 672671, + "thread": 15 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 935094, + "thread": 30 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1057010, + "thread": 4 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1153920, + "thread": 17 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1371268, + "thread": 12 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1575201, + "thread": 5 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1665566, + "thread": 25 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 1916402, + "thread": 5 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2085354, + "thread": 1 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2244995, + "thread": 28 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2325461, + "thread": 6 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2567361, + "thread": 0 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2711271, + "thread": 13 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 2876614, + "thread": 2 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 3090162, + "thread": 3 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 3216177, + "thread": 2 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 3381924, + "thread": 25 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 3548207, + "thread": 22 + } + }, + { + "amount": "308.094712688", + "slot": { + "period": 3662481, + "thread": 8 + } + }, + { + "amount": "308.094712681", + "slot": { + "period": 3880642, + "thread": 21 + } + } + ], + "AU1pAt4XYRqzCSV1SBb7qGuXrRcnCMRoGwzFkq1G6TkrQz6ZbgVA": [ + { + "amount": "635.373106823", + "slot": { + "period": 18050, + "thread": 25 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 253305, + "thread": 17 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 484662, + "thread": 10 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 560097, + "thread": 9 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 723185, + "thread": 5 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 913005, + "thread": 18 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1109757, + "thread": 5 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1308098, + "thread": 2 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1394856, + "thread": 9 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1600200, + "thread": 19 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1702114, + "thread": 26 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 1863313, + "thread": 26 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2065244, + "thread": 5 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2259527, + "thread": 4 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2439075, + "thread": 13 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2564098, + "thread": 15 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2731855, + "thread": 1 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 2908963, + "thread": 16 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 3095245, + "thread": 27 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 3148677, + "thread": 27 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 3312259, + "thread": 30 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 3554181, + "thread": 18 + } + }, + { + "amount": "635.373106823", + "slot": { + "period": 3765614, + "thread": 11 + } + }, + { + "amount": "635.373106815", + "slot": { + "period": 3898811, + "thread": 30 + } + } + ], + "AU1pByJ6qFHB88XiJWCKvb4P7yQ4Lyxt5awHJhMeMuT3zpXjuiH9": [ + { + "amount": "265.221860980", + "slot": { + "period": 45763, + "thread": 25 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 265948, + "thread": 13 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 360225, + "thread": 15 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 495687, + "thread": 29 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 732086, + "thread": 28 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 922304, + "thread": 26 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1112005, + "thread": 12 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1157075, + "thread": 1 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1403683, + "thread": 19 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1508576, + "thread": 10 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1658491, + "thread": 31 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 1934968, + "thread": 18 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2080595, + "thread": 18 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2240083, + "thread": 9 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2412766, + "thread": 22 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2606476, + "thread": 1 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2678991, + "thread": 14 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 2950654, + "thread": 1 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 3091333, + "thread": 10 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 3213887, + "thread": 21 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 3365290, + "thread": 13 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 3482197, + "thread": 30 + } + }, + { + "amount": "265.221860980", + "slot": { + "period": 3665371, + "thread": 7 + } + }, + { + "amount": "265.221860968", + "slot": { + "period": 3857301, + "thread": 25 + } + } + ], + "AU1pDPrd138cTKcP6uLBtJuRJnLpYAQbGg4Sb9aMAcjFxexKMq4a": [ + { + "amount": "477.670767054", + "slot": { + "period": 153352, + "thread": 28 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 253011, + "thread": 7 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 454794, + "thread": 9 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 612902, + "thread": 23 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 752336, + "thread": 15 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 836607, + "thread": 7 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1101307, + "thread": 17 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1257275, + "thread": 21 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1371343, + "thread": 7 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1609112, + "thread": 15 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1808677, + "thread": 24 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 1863561, + "thread": 8 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2042161, + "thread": 4 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2252097, + "thread": 17 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2426494, + "thread": 11 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2555720, + "thread": 31 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2655519, + "thread": 10 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 2858487, + "thread": 18 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 3106948, + "thread": 8 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 3262476, + "thread": 28 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 3402165, + "thread": 5 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 3500131, + "thread": 11 + } + }, + { + "amount": "477.670767054", + "slot": { + "period": 3705783, + "thread": 5 + } + }, + { + "amount": "477.670767063", + "slot": { + "period": 3816490, + "thread": 24 + } + } + ], + "AU1pDzGqat518kb2RBRdsUERKBur2tpnmkzRim34ctTQJ73gDRUw": [ + { + "amount": "256.316801775", + "slot": { + "period": 76452, + "thread": 21 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 271227, + "thread": 6 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 354938, + "thread": 20 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 532705, + "thread": 19 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 779209, + "thread": 10 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 880119, + "thread": 4 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1016548, + "thread": 31 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1153755, + "thread": 20 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1386078, + "thread": 23 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1570868, + "thread": 7 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1794583, + "thread": 28 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 1811150, + "thread": 1 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2012021, + "thread": 4 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2214958, + "thread": 24 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2378676, + "thread": 5 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2567267, + "thread": 3 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2712094, + "thread": 8 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2813442, + "thread": 9 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 2989612, + "thread": 3 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 3246638, + "thread": 8 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 3314729, + "thread": 3 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 3473658, + "thread": 10 + } + }, + { + "amount": "256.316801775", + "slot": { + "period": 3746531, + "thread": 22 + } + }, + { + "amount": "256.316801772", + "slot": { + "period": 3936471, + "thread": 2 + } + } + ], + "AU1pEUnBT68CsE4CDmtEcpjBTcTc3XSNSTxNNPPGpH7itMJDTToh": [ + { + "amount": "133.192037635", + "slot": { + "period": 107228, + "thread": 26 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 253259, + "thread": 1 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 374652, + "thread": 28 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 499766, + "thread": 20 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 656187, + "thread": 17 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 950078, + "thread": 5 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1135020, + "thread": 10 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1165542, + "thread": 17 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1375227, + "thread": 0 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1506792, + "thread": 31 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1795852, + "thread": 28 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 1875637, + "thread": 17 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2122423, + "thread": 14 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2198079, + "thread": 10 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2357149, + "thread": 4 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2484799, + "thread": 7 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2777748, + "thread": 12 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 2839081, + "thread": 27 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 3076547, + "thread": 22 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 3226106, + "thread": 4 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 3366426, + "thread": 6 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 3606995, + "thread": 15 + } + }, + { + "amount": "133.192037635", + "slot": { + "period": 3771202, + "thread": 24 + } + }, + { + "amount": "133.192037644", + "slot": { + "period": 3930163, + "thread": 18 + } + } + ], + "AU1pEe8K5HEk4deN1zpfaDzd72fwzcGt89oVTFAQHVTajGggNamJ": [ + { + "amount": "107.205609619", + "slot": { + "period": 163125, + "thread": 1 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 187548, + "thread": 26 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 404221, + "thread": 27 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 599365, + "thread": 5 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 721288, + "thread": 23 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 890252, + "thread": 31 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1150042, + "thread": 26 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1311089, + "thread": 23 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1340104, + "thread": 20 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1517258, + "thread": 27 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1722427, + "thread": 29 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1883979, + "thread": 24 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 1984682, + "thread": 23 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2266308, + "thread": 6 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2443396, + "thread": 3 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2588461, + "thread": 5 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2687053, + "thread": 3 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2893119, + "thread": 15 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 2969444, + "thread": 28 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 3160786, + "thread": 15 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 3431268, + "thread": 24 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 3476949, + "thread": 7 + } + }, + { + "amount": "107.205609619", + "slot": { + "period": 3759575, + "thread": 17 + } + }, + { + "amount": "107.205609618", + "slot": { + "period": 3806050, + "thread": 31 + } + } + ], + "AU1pEsWUAadbaGQppLKLoCLXFVmfjFRDWu1wwwYqxSyUaLHHovZz": [ + { + "amount": "62.574838812", + "slot": { + "period": 119928, + "thread": 8 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 232500, + "thread": 13 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 401607, + "thread": 18 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 564973, + "thread": 22 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 739387, + "thread": 24 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 857673, + "thread": 28 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1098110, + "thread": 13 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1234607, + "thread": 11 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1323641, + "thread": 26 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1522280, + "thread": 0 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1772957, + "thread": 7 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 1913961, + "thread": 28 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2033134, + "thread": 28 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2270879, + "thread": 30 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2337194, + "thread": 26 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2572789, + "thread": 0 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2735842, + "thread": 12 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 2854468, + "thread": 15 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 3077917, + "thread": 18 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 3191435, + "thread": 20 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 3325237, + "thread": 0 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 3579057, + "thread": 3 + } + }, + { + "amount": "62.574838812", + "slot": { + "period": 3773445, + "thread": 6 + } + }, + { + "amount": "62.574838806", + "slot": { + "period": 3901589, + "thread": 1 + } + } + ], + "AU1pF2w8ebpkGNRk2pNzmg478iRb6Hq8vfAEjyULMPq3bySJ9BNG": [ + { + "amount": "204.972629695", + "slot": { + "period": 19035, + "thread": 23 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 190014, + "thread": 6 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 346729, + "thread": 1 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 499100, + "thread": 10 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 761386, + "thread": 19 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 822195, + "thread": 20 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1095592, + "thread": 0 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1255187, + "thread": 2 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1477425, + "thread": 20 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1616365, + "thread": 11 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1805861, + "thread": 19 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 1842486, + "thread": 21 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2031694, + "thread": 21 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2220836, + "thread": 16 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2348035, + "thread": 13 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2522981, + "thread": 17 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2787016, + "thread": 12 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 2837066, + "thread": 30 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 3030716, + "thread": 21 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 3131375, + "thread": 31 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 3304683, + "thread": 4 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 3594640, + "thread": 25 + } + }, + { + "amount": "204.972629695", + "slot": { + "period": 3777501, + "thread": 28 + } + }, + { + "amount": "204.972629689", + "slot": { + "period": 3786886, + "thread": 25 + } + } + ], + "AU1pFjpbgxz4W3WqK1ifTytugpgzaJWR3J5jh5R6qPdDZTsXwjgE": [ + { + "amount": "396.780905737", + "slot": { + "period": 59461, + "thread": 18 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 252364, + "thread": 13 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 432129, + "thread": 3 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 629666, + "thread": 11 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 780066, + "thread": 26 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 865325, + "thread": 22 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1145637, + "thread": 25 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1171057, + "thread": 31 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1450365, + "thread": 3 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1498907, + "thread": 19 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1693522, + "thread": 19 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1838496, + "thread": 3 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 1986488, + "thread": 18 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 2255316, + "thread": 23 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 2308056, + "thread": 15 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 2497185, + "thread": 13 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 2657131, + "thread": 15 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 2864449, + "thread": 15 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 3112359, + "thread": 16 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 3268417, + "thread": 27 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 3368745, + "thread": 30 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 3507889, + "thread": 10 + } + }, + { + "amount": "396.780905737", + "slot": { + "period": 3641233, + "thread": 5 + } + }, + { + "amount": "396.780905744", + "slot": { + "period": 3882427, + "thread": 12 + } + } + ], + "AU1pG3hGafrHBbU1aKmoR1BP1AsjnAdPMZdYD6HmvaMa4CeuEbE": [ + { + "amount": "86.165760509", + "slot": { + "period": 119719, + "thread": 14 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 289112, + "thread": 29 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 413468, + "thread": 5 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 499420, + "thread": 25 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 691710, + "thread": 24 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 911372, + "thread": 26 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1057584, + "thread": 25 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1306059, + "thread": 2 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1445409, + "thread": 15 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1514462, + "thread": 24 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1650630, + "thread": 17 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 1938921, + "thread": 9 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2052576, + "thread": 26 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2217711, + "thread": 2 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2423033, + "thread": 21 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2563260, + "thread": 10 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2681634, + "thread": 10 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 2931987, + "thread": 6 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 3007313, + "thread": 15 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 3175424, + "thread": 1 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 3351943, + "thread": 28 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 3463470, + "thread": 11 + } + }, + { + "amount": "86.165760509", + "slot": { + "period": 3694058, + "thread": 4 + } + }, + { + "amount": "86.165760520", + "slot": { + "period": 3895568, + "thread": 10 + } + } + ], + "AU1pG65HTGaey2eMnUorRzAUGUAmB3Lbde8rtQqEb49eJxZPTCM3": [ + { + "amount": "316.171231077", + "slot": { + "period": 97220, + "thread": 20 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 315224, + "thread": 16 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 473237, + "thread": 1 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 503354, + "thread": 4 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 784483, + "thread": 21 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 932256, + "thread": 8 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1107387, + "thread": 0 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1179206, + "thread": 9 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1441031, + "thread": 14 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1597528, + "thread": 16 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1763478, + "thread": 9 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 1956021, + "thread": 19 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2037755, + "thread": 20 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2201275, + "thread": 10 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2397907, + "thread": 24 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2604781, + "thread": 7 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2724590, + "thread": 10 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 2912253, + "thread": 23 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 3027945, + "thread": 3 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 3276579, + "thread": 13 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 3363009, + "thread": 17 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 3457980, + "thread": 10 + } + }, + { + "amount": "316.171231077", + "slot": { + "period": 3680074, + "thread": 20 + } + }, + { + "amount": "316.171231068", + "slot": { + "period": 3891739, + "thread": 4 + } + } + ], + "AU1pGCMCzC2MiHDhQt2dGCN74w5FUBecM5ZaxYjq1QxzQwvcQkVp": [ + { + "amount": "438.320369025", + "slot": { + "period": 75221, + "thread": 22 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 244997, + "thread": 5 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 407179, + "thread": 12 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 520114, + "thread": 12 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 679231, + "thread": 0 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 961269, + "thread": 16 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1031159, + "thread": 27 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1285394, + "thread": 30 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1400066, + "thread": 16 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1529082, + "thread": 9 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1763060, + "thread": 25 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1821986, + "thread": 21 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 1990973, + "thread": 19 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 2144810, + "thread": 29 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 2433228, + "thread": 17 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 2475750, + "thread": 5 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 2691435, + "thread": 11 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 2920697, + "thread": 7 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 3118564, + "thread": 1 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 3140869, + "thread": 2 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 3389479, + "thread": 1 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 3504006, + "thread": 17 + } + }, + { + "amount": "438.320369025", + "slot": { + "period": 3734915, + "thread": 25 + } + }, + { + "amount": "438.320369016", + "slot": { + "period": 3923808, + "thread": 21 + } + } + ], + "AU1pHXwsQ79bNcDQ7McLtv7GnymfEwjmq6PNCVxMVTcBzPk5JJUh": [ + { + "amount": "94.792293885", + "slot": { + "period": 24952, + "thread": 2 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 290351, + "thread": 9 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 386006, + "thread": 30 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 597193, + "thread": 7 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 746351, + "thread": 1 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 965844, + "thread": 15 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1120020, + "thread": 9 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1174692, + "thread": 8 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1464365, + "thread": 2 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1493348, + "thread": 27 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1688468, + "thread": 0 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 1970205, + "thread": 14 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2115305, + "thread": 0 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2226214, + "thread": 1 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2455301, + "thread": 8 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2595066, + "thread": 31 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2691723, + "thread": 28 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 2824765, + "thread": 28 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 3059069, + "thread": 2 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 3154008, + "thread": 1 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 3351042, + "thread": 0 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 3477014, + "thread": 10 + } + }, + { + "amount": "94.792293885", + "slot": { + "period": 3641619, + "thread": 16 + } + }, + { + "amount": "94.792293894", + "slot": { + "period": 3919278, + "thread": 10 + } + } + ], + "AU1pJVnd3ZjdSX8eioHhitq1ftcUeGppep3UYQM3eLiwzxGBcKCq": [ + { + "amount": "73.470645794", + "slot": { + "period": 14155, + "thread": 27 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 243087, + "thread": 0 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 333145, + "thread": 20 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 523274, + "thread": 3 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 702731, + "thread": 30 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 976373, + "thread": 28 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1051810, + "thread": 27 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1284321, + "thread": 10 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1403945, + "thread": 16 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1611242, + "thread": 28 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1682192, + "thread": 23 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 1975548, + "thread": 11 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2041153, + "thread": 15 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2267544, + "thread": 21 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2443122, + "thread": 5 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2612139, + "thread": 28 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2757908, + "thread": 11 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 2951828, + "thread": 8 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 3120867, + "thread": 8 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 3283538, + "thread": 9 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 3304392, + "thread": 10 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 3452172, + "thread": 28 + } + }, + { + "amount": "73.470645794", + "slot": { + "period": 3662236, + "thread": 19 + } + }, + { + "amount": "73.470645792", + "slot": { + "period": 3806136, + "thread": 22 + } + } + ], + "AU1pKZYSur4fhjw8AUDA6XXZRv3UwCxi3qBmjPvwEtaT2Etr2tVm": [ + { + "amount": "131.447736376", + "slot": { + "period": 140865, + "thread": 1 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 288132, + "thread": 19 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 401371, + "thread": 31 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 647298, + "thread": 15 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 669888, + "thread": 14 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 896540, + "thread": 30 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1041104, + "thread": 31 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1223278, + "thread": 22 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1406131, + "thread": 10 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1487825, + "thread": 17 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1685836, + "thread": 9 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 1813571, + "thread": 31 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2026258, + "thread": 28 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2143997, + "thread": 22 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2423781, + "thread": 25 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2518735, + "thread": 2 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2693800, + "thread": 14 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2910149, + "thread": 0 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 2960910, + "thread": 31 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 3286904, + "thread": 10 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 3344262, + "thread": 25 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 3571378, + "thread": 5 + } + }, + { + "amount": "131.447736376", + "slot": { + "period": 3742135, + "thread": 30 + } + }, + { + "amount": "131.447736369", + "slot": { + "period": 3867011, + "thread": 5 + } + } + ], + "AU1pMuptV1tNgnmtJkBKmaAfaqQ2VndqvMwdHszRCnMZLcs5TBAd": [ + { + "amount": "127.548548582", + "slot": { + "period": 33918, + "thread": 6 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 302668, + "thread": 2 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 462815, + "thread": 30 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 645460, + "thread": 7 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 817817, + "thread": 4 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 917085, + "thread": 19 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1132129, + "thread": 1 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1179182, + "thread": 28 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1382446, + "thread": 13 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1645756, + "thread": 3 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1720493, + "thread": 28 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 1969477, + "thread": 12 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2066649, + "thread": 7 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2210131, + "thread": 27 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2372106, + "thread": 27 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2565212, + "thread": 25 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2701233, + "thread": 1 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2949009, + "thread": 16 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 2964002, + "thread": 20 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 3135436, + "thread": 3 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 3310416, + "thread": 6 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 3488737, + "thread": 2 + } + }, + { + "amount": "127.548548582", + "slot": { + "period": 3756713, + "thread": 6 + } + }, + { + "amount": "127.548548579", + "slot": { + "period": 3861799, + "thread": 23 + } + } + ], + "AU1pN1ArJkB9TZLCFRaK9JAcKxXiWSg6XydGFavQmRJm4sECEVUA": [ + { + "amount": "280.308457318", + "slot": { + "period": 103402, + "thread": 28 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 207551, + "thread": 21 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 466593, + "thread": 28 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 544781, + "thread": 28 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 776256, + "thread": 21 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 967019, + "thread": 10 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1017358, + "thread": 9 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1167871, + "thread": 28 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1344248, + "thread": 25 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1613106, + "thread": 7 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1664405, + "thread": 26 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1872051, + "thread": 11 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 1980310, + "thread": 3 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2253310, + "thread": 30 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2333484, + "thread": 7 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2563564, + "thread": 16 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2716220, + "thread": 13 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2888407, + "thread": 10 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 2955694, + "thread": 12 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 3227955, + "thread": 6 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 3407991, + "thread": 15 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 3524433, + "thread": 20 + } + }, + { + "amount": "280.308457318", + "slot": { + "period": 3709289, + "thread": 27 + } + }, + { + "amount": "280.308457313", + "slot": { + "period": 3837626, + "thread": 29 + } + } + ], + "AU1pPUTWANptL7s4CtUNaYqTwKnLoQYnxpozQrRrV4UWaVjt1AwG": [ + { + "amount": "375.124196656", + "slot": { + "period": 66262, + "thread": 10 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 177182, + "thread": 9 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 424514, + "thread": 18 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 650367, + "thread": 16 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 720140, + "thread": 7 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 976354, + "thread": 13 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1041128, + "thread": 1 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1178902, + "thread": 20 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1321299, + "thread": 8 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1518408, + "thread": 5 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1705672, + "thread": 7 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 1849271, + "thread": 7 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2026753, + "thread": 15 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2176059, + "thread": 30 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2382271, + "thread": 18 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2605961, + "thread": 29 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2687512, + "thread": 24 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 2835716, + "thread": 14 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 3033604, + "thread": 19 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 3210374, + "thread": 14 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 3372274, + "thread": 14 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 3524470, + "thread": 24 + } + }, + { + "amount": "375.124196656", + "slot": { + "period": 3675460, + "thread": 4 + } + }, + { + "amount": "375.124196665", + "slot": { + "period": 3814083, + "thread": 19 + } + } + ], + "AU1pPduurGnuNVm4g7q2bCb1yTmvKNrnPbuLr5VSCKMtKkBHgGJF": [ + { + "amount": "63.267241017", + "slot": { + "period": 67404, + "thread": 24 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 178785, + "thread": 6 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 359655, + "thread": 9 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 546496, + "thread": 31 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 681147, + "thread": 8 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 898164, + "thread": 18 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 990112, + "thread": 8 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 1251731, + "thread": 20 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 1364667, + "thread": 14 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 1574087, + "thread": 11 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 1730752, + "thread": 30 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 1906809, + "thread": 1 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2062809, + "thread": 1 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2219654, + "thread": 13 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2296472, + "thread": 3 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2541685, + "thread": 9 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2646008, + "thread": 24 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 2842339, + "thread": 4 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 3026505, + "thread": 20 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 3184798, + "thread": 19 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 3415919, + "thread": 22 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 3456854, + "thread": 28 + } + }, + { + "amount": "63.267241017", + "slot": { + "period": 3693397, + "thread": 31 + } + }, + { + "amount": "63.267241021", + "slot": { + "period": 3893830, + "thread": 29 + } + } + ], + "AU1pQ3D6qyRWdfGpQ8kABv1MUK1K6DoyrV5SoJjNhorX1Q9iUUzL": [ + { + "amount": "242.581822424", + "slot": { + "period": 148524, + "thread": 14 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 276578, + "thread": 22 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 350219, + "thread": 9 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 550557, + "thread": 12 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 797892, + "thread": 20 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 958184, + "thread": 24 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 983772, + "thread": 18 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 1284315, + "thread": 14 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 1463716, + "thread": 31 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 1540791, + "thread": 7 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 1717052, + "thread": 23 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 1885877, + "thread": 31 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2129216, + "thread": 25 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2159532, + "thread": 14 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2317999, + "thread": 3 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2506960, + "thread": 22 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2704142, + "thread": 10 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 2842253, + "thread": 9 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 3012575, + "thread": 10 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 3256978, + "thread": 1 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 3295489, + "thread": 2 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 3477575, + "thread": 1 + } + }, + { + "amount": "242.581822424", + "slot": { + "period": 3622718, + "thread": 22 + } + }, + { + "amount": "242.581822427", + "slot": { + "period": 3937997, + "thread": 0 + } + } + ], + "AU1pQfYFJXtqCj5nQw33mEjGiFbyMQy4jsAvmPRMPD7eymtmEWU1": [ + { + "amount": "325.469396938", + "slot": { + "period": 89709, + "thread": 19 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 188408, + "thread": 30 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 469067, + "thread": 9 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 512782, + "thread": 11 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 779858, + "thread": 21 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 954750, + "thread": 18 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1144712, + "thread": 26 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1233999, + "thread": 12 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1359850, + "thread": 0 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1598299, + "thread": 28 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1754761, + "thread": 6 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 1817197, + "thread": 27 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2035473, + "thread": 12 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2158718, + "thread": 12 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2328851, + "thread": 1 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2586971, + "thread": 13 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2683562, + "thread": 30 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2938712, + "thread": 18 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 2989095, + "thread": 26 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 3244899, + "thread": 27 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 3382498, + "thread": 14 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 3511984, + "thread": 4 + } + }, + { + "amount": "325.469396938", + "slot": { + "period": 3649264, + "thread": 22 + } + }, + { + "amount": "325.469396935", + "slot": { + "period": 3915291, + "thread": 29 + } + } + ], + "AU1pQiqX1rFNZdWSFndTvSgenhghNH5LJFeYfaA9LRd4Edmq76rQ": [ + { + "amount": "306.565751040", + "slot": { + "period": 121082, + "thread": 9 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 277961, + "thread": 0 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 329401, + "thread": 8 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 577853, + "thread": 11 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 685463, + "thread": 17 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 889462, + "thread": 28 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 986841, + "thread": 26 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1271362, + "thread": 29 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1325166, + "thread": 27 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1641316, + "thread": 4 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1762050, + "thread": 8 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1829126, + "thread": 8 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 1992085, + "thread": 0 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 2193950, + "thread": 16 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 2315700, + "thread": 7 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 2466243, + "thread": 2 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 2755682, + "thread": 29 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 2919319, + "thread": 10 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 3112659, + "thread": 8 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 3184163, + "thread": 6 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 3362311, + "thread": 6 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 3482202, + "thread": 20 + } + }, + { + "amount": "306.565751040", + "slot": { + "period": 3651664, + "thread": 25 + } + }, + { + "amount": "306.565751045", + "slot": { + "period": 3911311, + "thread": 4 + } + } + ], + "AU1pRz9gfNVU4cWpqJBXRxdfkXByUG1CDaWnLHuDA1LKLs8CEstD": [ + { + "amount": "98.770007217", + "slot": { + "period": 130879, + "thread": 24 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 232021, + "thread": 21 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 438130, + "thread": 3 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 584780, + "thread": 12 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 661420, + "thread": 12 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 827696, + "thread": 1 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1008411, + "thread": 22 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1221890, + "thread": 29 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1476143, + "thread": 26 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1630003, + "thread": 3 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1797643, + "thread": 8 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 1860817, + "thread": 13 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2056793, + "thread": 20 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2179132, + "thread": 21 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2394812, + "thread": 17 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2499376, + "thread": 2 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2743469, + "thread": 10 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2813536, + "thread": 13 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 2954026, + "thread": 14 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 3177230, + "thread": 3 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 3339974, + "thread": 1 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 3466064, + "thread": 24 + } + }, + { + "amount": "98.770007217", + "slot": { + "period": 3650571, + "thread": 21 + } + }, + { + "amount": "98.770007218", + "slot": { + "period": 3784987, + "thread": 13 + } + } + ], + "AU1pS2SQ62Uj1coSsR8P6jTiotMdLUYsdZqtY4SK3eftbrNYYcB2": [ + { + "amount": "226.683369255", + "slot": { + "period": 125812, + "thread": 5 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 197078, + "thread": 13 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 483952, + "thread": 14 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 549233, + "thread": 29 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 787484, + "thread": 18 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 848209, + "thread": 27 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1101270, + "thread": 3 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1281131, + "thread": 9 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1423169, + "thread": 2 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1637388, + "thread": 21 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1713021, + "thread": 29 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 1894785, + "thread": 19 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2027761, + "thread": 16 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2282155, + "thread": 27 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2360079, + "thread": 11 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2527177, + "thread": 0 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2716495, + "thread": 14 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 2945189, + "thread": 2 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3039711, + "thread": 29 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3200787, + "thread": 18 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3334694, + "thread": 2 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3466321, + "thread": 9 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3704233, + "thread": 10 + } + }, + { + "amount": "226.683369255", + "slot": { + "period": 3922429, + "thread": 8 + } + } + ], + "AU1pSYmsUMUuaPQzgrqkayAiBBhz6hEzc8pBA14eEow4936prr75": [ + { + "amount": "150.280751488", + "slot": { + "period": 16854, + "thread": 22 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 321959, + "thread": 22 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 486286, + "thread": 15 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 597659, + "thread": 3 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 695319, + "thread": 12 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 864456, + "thread": 31 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1058385, + "thread": 23 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1198247, + "thread": 14 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1472364, + "thread": 21 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1536201, + "thread": 7 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1767200, + "thread": 8 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1941522, + "thread": 31 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 1996391, + "thread": 11 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 2255728, + "thread": 16 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 2377883, + "thread": 4 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 2613128, + "thread": 21 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 2715656, + "thread": 7 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 2807124, + "thread": 11 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 3094377, + "thread": 28 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 3135852, + "thread": 1 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 3437068, + "thread": 23 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 3589590, + "thread": 15 + } + }, + { + "amount": "150.280751488", + "slot": { + "period": 3710824, + "thread": 19 + } + }, + { + "amount": "150.280751483", + "slot": { + "period": 3900229, + "thread": 29 + } + } + ], + "AU1pTFfqR5TZpurEsDraZ4ERKtrH7LbJPTDmd7qWCmwrGbJ4SxA4": [ + { + "amount": "125.687174309", + "slot": { + "period": 89930, + "thread": 7 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 255679, + "thread": 31 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 468712, + "thread": 17 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 559036, + "thread": 12 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 752214, + "thread": 19 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 964199, + "thread": 6 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1115279, + "thread": 19 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1150537, + "thread": 22 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1366208, + "thread": 17 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1552340, + "thread": 26 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1765861, + "thread": 7 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 1930579, + "thread": 7 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2073597, + "thread": 30 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2180909, + "thread": 30 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2394759, + "thread": 17 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2474029, + "thread": 31 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2707952, + "thread": 23 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2794229, + "thread": 9 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 2999650, + "thread": 27 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 3273535, + "thread": 13 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 3388605, + "thread": 14 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 3579879, + "thread": 2 + } + }, + { + "amount": "125.687174309", + "slot": { + "period": 3687255, + "thread": 25 + } + }, + { + "amount": "125.687174310", + "slot": { + "period": 3898559, + "thread": 11 + } + } + ], + "AU1pTbUac1KtLNcrXigKwT15xvEsBiFPcTWjWBix5zFHxuX6Hs3h": [ + { + "amount": "106.713972899", + "slot": { + "period": 154617, + "thread": 27 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 294470, + "thread": 13 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 447084, + "thread": 7 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 603911, + "thread": 2 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 819390, + "thread": 7 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 842410, + "thread": 21 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1123294, + "thread": 18 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1193751, + "thread": 1 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1353233, + "thread": 6 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1515542, + "thread": 16 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1650981, + "thread": 10 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 1889815, + "thread": 17 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2082101, + "thread": 24 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2199068, + "thread": 24 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2365935, + "thread": 15 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2497237, + "thread": 30 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2791270, + "thread": 6 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 2812075, + "thread": 30 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 3062824, + "thread": 17 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 3214505, + "thread": 27 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 3339228, + "thread": 11 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 3453818, + "thread": 8 + } + }, + { + "amount": "106.713972899", + "slot": { + "period": 3762611, + "thread": 14 + } + }, + { + "amount": "106.713972906", + "slot": { + "period": 3909612, + "thread": 24 + } + } + ], + "AU1pV28p8Y3M6YcgA97ZEdsguxVwtkw2UxobEimoQj611tR7yH9U": [ + { + "amount": "288.228862758", + "slot": { + "period": 158127, + "thread": 1 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 243651, + "thread": 27 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 403888, + "thread": 10 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 647825, + "thread": 27 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 767355, + "thread": 9 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 890008, + "thread": 5 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 994173, + "thread": 14 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 1151027, + "thread": 11 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 1476931, + "thread": 23 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 1566275, + "thread": 9 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 1655122, + "thread": 28 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 1857043, + "thread": 1 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2107040, + "thread": 17 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2235564, + "thread": 31 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2300292, + "thread": 2 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2517152, + "thread": 2 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2710372, + "thread": 18 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 2941012, + "thread": 31 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 3009607, + "thread": 8 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 3193106, + "thread": 1 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 3449033, + "thread": 23 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 3601245, + "thread": 9 + } + }, + { + "amount": "288.228862758", + "slot": { + "period": 3638093, + "thread": 14 + } + }, + { + "amount": "288.228862763", + "slot": { + "period": 3874083, + "thread": 12 + } + } + ], + "AU1pV6M4T2sP4tnEU4U8FcVvhcE3SArKdKomgCaMxtryMAhb9x6u": [ + { + "amount": "221.318423955", + "slot": { + "period": 102974, + "thread": 14 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 286304, + "thread": 9 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 479304, + "thread": 14 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 529539, + "thread": 14 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 749455, + "thread": 21 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 919493, + "thread": 22 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1131781, + "thread": 15 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1254694, + "thread": 16 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1436592, + "thread": 5 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1500405, + "thread": 26 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1694000, + "thread": 4 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 1901114, + "thread": 11 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2143735, + "thread": 8 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2258530, + "thread": 14 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2335617, + "thread": 12 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2614544, + "thread": 9 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2671170, + "thread": 28 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2811579, + "thread": 30 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 2975429, + "thread": 15 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 3139894, + "thread": 12 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 3365415, + "thread": 13 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 3589324, + "thread": 4 + } + }, + { + "amount": "221.318423955", + "slot": { + "period": 3743438, + "thread": 2 + } + }, + { + "amount": "221.318423952", + "slot": { + "period": 3846314, + "thread": 9 + } + } + ], + "AU1pWR8qbeW3XW3WSMqanfewcTMqtfMBUFb9wioyz5UEnewjR1wv": [ + { + "amount": "306.735874948", + "slot": { + "period": 12173, + "thread": 16 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 176519, + "thread": 16 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 369278, + "thread": 1 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 647215, + "thread": 25 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 792501, + "thread": 17 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 957982, + "thread": 13 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1105189, + "thread": 26 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1295973, + "thread": 25 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1432242, + "thread": 9 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1596973, + "thread": 6 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1700067, + "thread": 11 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 1818577, + "thread": 3 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2009225, + "thread": 30 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2152457, + "thread": 29 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2417908, + "thread": 23 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2583021, + "thread": 23 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2711956, + "thread": 3 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 2826903, + "thread": 31 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 3039051, + "thread": 12 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 3257059, + "thread": 24 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 3290593, + "thread": 17 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 3564765, + "thread": 8 + } + }, + { + "amount": "306.735874948", + "slot": { + "period": 3654917, + "thread": 28 + } + }, + { + "amount": "306.735874959", + "slot": { + "period": 3847561, + "thread": 14 + } + } + ], + "AU1pWS5qGtABRP61aTCMFpvBZEJrgmQP4ScNSMJVqvrJ7jAanZGa": [ + { + "amount": "498.803716576", + "slot": { + "period": 56335, + "thread": 14 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 205610, + "thread": 16 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 471767, + "thread": 2 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 576642, + "thread": 27 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 805512, + "thread": 31 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 878847, + "thread": 3 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1117166, + "thread": 11 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1176235, + "thread": 21 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1438514, + "thread": 12 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1622639, + "thread": 10 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1807642, + "thread": 30 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 1821843, + "thread": 21 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2052767, + "thread": 21 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2194676, + "thread": 31 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2424197, + "thread": 26 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2498022, + "thread": 16 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2663766, + "thread": 28 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 2924911, + "thread": 1 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 3096774, + "thread": 31 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 3246203, + "thread": 18 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 3377606, + "thread": 5 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 3558678, + "thread": 17 + } + }, + { + "amount": "498.803716576", + "slot": { + "period": 3688283, + "thread": 11 + } + }, + { + "amount": "498.803716586", + "slot": { + "period": 3860184, + "thread": 12 + } + } + ], + "AU1pWTT29hEg8pJZR2sjqXedBgHsZXNn45rC1qx5p8fpssBDdD7W": [ + { + "amount": "296.937221309", + "slot": { + "period": 22998, + "thread": 27 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 273105, + "thread": 23 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 395444, + "thread": 26 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 622024, + "thread": 19 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 667329, + "thread": 5 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 839212, + "thread": 10 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1086072, + "thread": 0 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1160700, + "thread": 2 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1370614, + "thread": 19 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1503846, + "thread": 29 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1763847, + "thread": 24 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 1940090, + "thread": 3 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2051758, + "thread": 9 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2234660, + "thread": 23 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2299578, + "thread": 28 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2605169, + "thread": 22 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2626606, + "thread": 9 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 2927715, + "thread": 10 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 3066602, + "thread": 28 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 3245764, + "thread": 25 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 3444930, + "thread": 3 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 3541267, + "thread": 23 + } + }, + { + "amount": "296.937221309", + "slot": { + "period": 3633262, + "thread": 27 + } + }, + { + "amount": "296.937221313", + "slot": { + "period": 3787945, + "thread": 28 + } + } + ], + "AU1pWqqcZ3yY6wBxKdTJS8Q6nq2cuUpY8GgxhEqCif9BbJQPKMDq": [ + { + "amount": "139.806890917", + "slot": { + "period": 45967, + "thread": 27 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 299550, + "thread": 4 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 462650, + "thread": 21 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 633581, + "thread": 5 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 747748, + "thread": 17 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 971281, + "thread": 6 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 999348, + "thread": 1 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 1217130, + "thread": 15 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 1399015, + "thread": 27 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 1586924, + "thread": 11 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 1663414, + "thread": 25 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 1882265, + "thread": 26 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2057431, + "thread": 3 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2214372, + "thread": 14 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2394578, + "thread": 21 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2479260, + "thread": 14 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2677102, + "thread": 6 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 2931042, + "thread": 8 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 3110525, + "thread": 15 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 3220253, + "thread": 2 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 3351590, + "thread": 6 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 3493226, + "thread": 22 + } + }, + { + "amount": "139.806890917", + "slot": { + "period": 3777774, + "thread": 28 + } + }, + { + "amount": "139.806890924", + "slot": { + "period": 3811235, + "thread": 16 + } + } + ], + "AU1pXSmwtHWBTL78PiNaVcjb4ZhZfGq4mibErY3Aex9bMy2mZyzt": [ + { + "amount": "127.365199384", + "slot": { + "period": 48131, + "thread": 15 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 319316, + "thread": 8 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 466901, + "thread": 9 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 651311, + "thread": 12 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 776881, + "thread": 31 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 891941, + "thread": 15 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1003622, + "thread": 28 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1236633, + "thread": 16 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1351687, + "thread": 12 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1609473, + "thread": 23 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1676032, + "thread": 26 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 1958764, + "thread": 16 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2062485, + "thread": 15 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2206227, + "thread": 23 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2346262, + "thread": 30 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2558167, + "thread": 20 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2644905, + "thread": 2 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2882294, + "thread": 23 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 2963533, + "thread": 18 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 3269918, + "thread": 25 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 3439915, + "thread": 29 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 3494070, + "thread": 17 + } + }, + { + "amount": "127.365199384", + "slot": { + "period": 3770080, + "thread": 22 + } + }, + { + "amount": "127.365199393", + "slot": { + "period": 3822059, + "thread": 26 + } + } + ], + "AU1pXWHyp1wngNqquShZWM8c2qWLq6bjvYcP7JTWaqRn4wn5wYEx": [ + { + "amount": "91.532174147", + "slot": { + "period": 134851, + "thread": 26 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 195416, + "thread": 22 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 385885, + "thread": 22 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 622454, + "thread": 11 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 735069, + "thread": 24 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 949220, + "thread": 0 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1144172, + "thread": 15 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1163605, + "thread": 6 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1396852, + "thread": 25 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1624470, + "thread": 6 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1690180, + "thread": 19 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 1814584, + "thread": 1 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2111225, + "thread": 20 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2246161, + "thread": 26 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2347743, + "thread": 20 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2493625, + "thread": 19 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2700746, + "thread": 7 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 2850530, + "thread": 19 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 3014266, + "thread": 8 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 3124925, + "thread": 17 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 3431731, + "thread": 19 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 3494365, + "thread": 20 + } + }, + { + "amount": "91.532174147", + "slot": { + "period": 3657656, + "thread": 5 + } + }, + { + "amount": "91.532174140", + "slot": { + "period": 3946767, + "thread": 25 + } + } + ], + "AU1pXdrbUqgQREf7vpH5PeM54KXfTRHDYt5snDkoBJ8QYwkvmnKY": [ + { + "amount": "589.351674722", + "slot": { + "period": 163929, + "thread": 20 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 174694, + "thread": 26 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 332517, + "thread": 13 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 507477, + "thread": 26 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 786963, + "thread": 30 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 835727, + "thread": 12 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1030968, + "thread": 21 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1182562, + "thread": 1 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1345627, + "thread": 15 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1525315, + "thread": 2 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1720676, + "thread": 27 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 1894073, + "thread": 31 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2139328, + "thread": 18 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2176679, + "thread": 4 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2340033, + "thread": 17 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2609000, + "thread": 16 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2752539, + "thread": 16 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 2922858, + "thread": 27 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 3094434, + "thread": 11 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 3180449, + "thread": 19 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 3311519, + "thread": 28 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 3456175, + "thread": 13 + } + }, + { + "amount": "589.351674722", + "slot": { + "period": 3715510, + "thread": 31 + } + }, + { + "amount": "589.351674724", + "slot": { + "period": 3913729, + "thread": 11 + } + } + ], + "AU1pYNgwkpAmNNXKf8bB1ufVzf11C9k3xmyYQnMXjbZeociXey71": [ + { + "amount": "194.497027152", + "slot": { + "period": 42171, + "thread": 20 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 230132, + "thread": 17 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 358021, + "thread": 25 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 615557, + "thread": 31 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 795763, + "thread": 28 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 855743, + "thread": 2 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1071330, + "thread": 20 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1181635, + "thread": 15 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1359021, + "thread": 9 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1615905, + "thread": 8 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1752547, + "thread": 1 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 1831334, + "thread": 22 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2081068, + "thread": 9 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2242697, + "thread": 11 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2433031, + "thread": 6 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2498851, + "thread": 8 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2777994, + "thread": 6 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 2937545, + "thread": 8 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 3060129, + "thread": 21 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 3162150, + "thread": 19 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 3308629, + "thread": 5 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 3517820, + "thread": 0 + } + }, + { + "amount": "194.497027152", + "slot": { + "period": 3741248, + "thread": 24 + } + }, + { + "amount": "194.497027149", + "slot": { + "period": 3832185, + "thread": 27 + } + } + ], + "AU1pZCHwRHbVn911cTicckrkcE53DgJw3osb9jyxir7RSZ6dDtHx": [ + { + "amount": "193.049014157", + "slot": { + "period": 95878, + "thread": 30 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 243205, + "thread": 12 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 348236, + "thread": 29 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 653204, + "thread": 5 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 732077, + "thread": 8 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 882953, + "thread": 7 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1008501, + "thread": 6 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1309213, + "thread": 8 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1342462, + "thread": 31 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1502869, + "thread": 20 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1717869, + "thread": 31 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 1962786, + "thread": 12 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2133065, + "thread": 22 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2283676, + "thread": 3 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2383788, + "thread": 8 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2620879, + "thread": 19 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2642794, + "thread": 17 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2930450, + "thread": 6 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 2979483, + "thread": 10 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 3185527, + "thread": 16 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 3351230, + "thread": 6 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 3505988, + "thread": 6 + } + }, + { + "amount": "193.049014157", + "slot": { + "period": 3625606, + "thread": 1 + } + }, + { + "amount": "193.049014160", + "slot": { + "period": 3936973, + "thread": 17 + } + } + ], + "AU1pZmw514aLBUBxMwHxtu4SJXgfqtYC1QFK5bDKwds923ZWSZzz": [ + { + "amount": "590.608393373", + "slot": { + "period": 25707, + "thread": 15 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 278364, + "thread": 2 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 481671, + "thread": 16 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 634082, + "thread": 11 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 701599, + "thread": 1 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 898119, + "thread": 19 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1134606, + "thread": 19 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1246067, + "thread": 24 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1473026, + "thread": 10 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1531856, + "thread": 8 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1658607, + "thread": 1 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 1861229, + "thread": 13 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2142346, + "thread": 28 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2181788, + "thread": 20 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2316230, + "thread": 19 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2611615, + "thread": 10 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2631105, + "thread": 12 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 2913638, + "thread": 8 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 3119405, + "thread": 20 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 3171172, + "thread": 8 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 3343158, + "thread": 23 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 3500587, + "thread": 19 + } + }, + { + "amount": "590.608393373", + "slot": { + "period": 3625329, + "thread": 5 + } + }, + { + "amount": "590.608393366", + "slot": { + "period": 3909081, + "thread": 27 + } + } + ], + "AU1pajy554YnzvzCGK5SaQFJZmu8Rnj6UrTEo6CNUD9GunSHTiH3": [ + { + "amount": "278.064649436", + "slot": { + "period": 71955, + "thread": 31 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 226691, + "thread": 20 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 398360, + "thread": 17 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 648888, + "thread": 30 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 710501, + "thread": 1 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 838777, + "thread": 13 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1141317, + "thread": 9 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1236332, + "thread": 10 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1400916, + "thread": 27 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1500370, + "thread": 30 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1663698, + "thread": 12 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 1947229, + "thread": 5 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2131517, + "thread": 4 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2251951, + "thread": 10 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2371848, + "thread": 8 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2597974, + "thread": 29 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2664494, + "thread": 8 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 2909047, + "thread": 15 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 3016275, + "thread": 23 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 3149963, + "thread": 22 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 3379918, + "thread": 14 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 3458737, + "thread": 18 + } + }, + { + "amount": "278.064649436", + "slot": { + "period": 3684244, + "thread": 6 + } + }, + { + "amount": "278.064649432", + "slot": { + "period": 3839972, + "thread": 0 + } + } + ], + "AU1pb7NpybqKLGp8Dcy8nXui7m8pFT1Roz5P8TKSQhL5SHsYpk1d": [ + { + "amount": "66.473356733", + "slot": { + "period": 153626, + "thread": 24 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 305714, + "thread": 9 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 406435, + "thread": 23 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 537809, + "thread": 28 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 730061, + "thread": 25 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 876795, + "thread": 19 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1053377, + "thread": 15 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1278084, + "thread": 24 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1420323, + "thread": 7 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1602975, + "thread": 3 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1688423, + "thread": 5 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 1824691, + "thread": 21 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2080303, + "thread": 31 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2243206, + "thread": 22 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2329282, + "thread": 21 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2514641, + "thread": 14 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2705972, + "thread": 26 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 2792338, + "thread": 11 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 3058738, + "thread": 16 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 3155812, + "thread": 3 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 3426810, + "thread": 6 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 3518743, + "thread": 20 + } + }, + { + "amount": "66.473356733", + "slot": { + "period": 3707470, + "thread": 27 + } + }, + { + "amount": "66.473356742", + "slot": { + "period": 3781847, + "thread": 9 + } + } + ], + "AU1pbMrfZFRWBHLpQBvs5SMACqXzQJLrxSyVQeyp3o2DJgWdn2wv": [ + { + "amount": "73.238533902", + "slot": { + "period": 153429, + "thread": 24 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 198029, + "thread": 18 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 346728, + "thread": 5 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 606464, + "thread": 15 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 718010, + "thread": 8 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 875562, + "thread": 31 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1140054, + "thread": 20 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1238503, + "thread": 0 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1340130, + "thread": 15 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1644465, + "thread": 13 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1743319, + "thread": 10 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1898588, + "thread": 11 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 1984623, + "thread": 28 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 2274631, + "thread": 22 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 2435409, + "thread": 16 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 2623669, + "thread": 9 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 2757452, + "thread": 30 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 2827329, + "thread": 18 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 3040632, + "thread": 22 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 3212609, + "thread": 7 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 3433815, + "thread": 13 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 3596186, + "thread": 25 + } + }, + { + "amount": "73.238533902", + "slot": { + "period": 3758840, + "thread": 9 + } + }, + { + "amount": "73.238533909", + "slot": { + "period": 3822695, + "thread": 17 + } + } + ], + "AU1pcqEGD3kxjTbEN5iJTWLYZZ4PFuWLaMXGrKvr1eY5vb1fCHpy": [ + { + "amount": "108.195514088", + "slot": { + "period": 70940, + "thread": 22 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 272798, + "thread": 10 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 345599, + "thread": 18 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 627479, + "thread": 14 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 758463, + "thread": 23 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 898895, + "thread": 24 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1130473, + "thread": 22 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1243396, + "thread": 20 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1379880, + "thread": 9 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1549467, + "thread": 13 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1722726, + "thread": 10 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 1936494, + "thread": 17 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2117170, + "thread": 6 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2227208, + "thread": 10 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2335769, + "thread": 13 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2586457, + "thread": 27 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2730041, + "thread": 11 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 2841501, + "thread": 27 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 3099424, + "thread": 29 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 3229142, + "thread": 8 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 3421161, + "thread": 27 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 3474390, + "thread": 6 + } + }, + { + "amount": "108.195514088", + "slot": { + "period": 3640885, + "thread": 4 + } + }, + { + "amount": "108.195514083", + "slot": { + "period": 3897737, + "thread": 26 + } + } + ], + "AU1pd2RmrGSf1iVHBgboKEZXGHNXRSvMnvkxLf1wEkSCZwPzSy8D": [ + { + "amount": "487.518059608", + "slot": { + "period": 24578, + "thread": 24 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 201935, + "thread": 21 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 328742, + "thread": 21 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 550095, + "thread": 14 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 708370, + "thread": 28 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 822065, + "thread": 30 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1090551, + "thread": 28 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1274365, + "thread": 12 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1376879, + "thread": 8 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1582133, + "thread": 24 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1805327, + "thread": 5 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 1862278, + "thread": 4 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2093612, + "thread": 17 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2183757, + "thread": 30 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2351707, + "thread": 4 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2503233, + "thread": 9 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2715051, + "thread": 4 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 2936340, + "thread": 10 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 3047161, + "thread": 23 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 3201320, + "thread": 3 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 3443161, + "thread": 18 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 3492920, + "thread": 10 + } + }, + { + "amount": "487.518059608", + "slot": { + "period": 3690244, + "thread": 6 + } + }, + { + "amount": "487.518059605", + "slot": { + "period": 3868157, + "thread": 23 + } + } + ], + "AU1pdH9GHfK24criNLjQN3gp4DLkdtS4GMDXtTiUorwKC9oo2WRW": [ + { + "amount": "341.542856731", + "slot": { + "period": 112042, + "thread": 7 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 240747, + "thread": 7 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 349161, + "thread": 12 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 544822, + "thread": 0 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 783088, + "thread": 25 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 932506, + "thread": 14 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1131135, + "thread": 21 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1206731, + "thread": 20 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1459461, + "thread": 31 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1497069, + "thread": 26 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1708804, + "thread": 20 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 1849356, + "thread": 9 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2059448, + "thread": 21 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2277713, + "thread": 7 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2412112, + "thread": 18 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2539360, + "thread": 6 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2785119, + "thread": 4 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 2842164, + "thread": 18 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 3116898, + "thread": 24 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 3165897, + "thread": 14 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 3413450, + "thread": 20 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 3598293, + "thread": 7 + } + }, + { + "amount": "341.542856731", + "slot": { + "period": 3698057, + "thread": 15 + } + }, + { + "amount": "341.542856738", + "slot": { + "period": 3823980, + "thread": 29 + } + } + ], + "AU1pdmzQ3rkuShckJT1ubxB53Ua47MWoAquCKwJc3jtjw7JqyFNs": [ + { + "amount": "84.171762335", + "slot": { + "period": 70641, + "thread": 11 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 179548, + "thread": 2 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 376339, + "thread": 26 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 513331, + "thread": 13 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 813781, + "thread": 14 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 852101, + "thread": 30 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1135736, + "thread": 30 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1254080, + "thread": 12 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1345852, + "thread": 31 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1558788, + "thread": 11 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1661827, + "thread": 11 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 1844028, + "thread": 17 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2135151, + "thread": 10 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2260476, + "thread": 5 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2460296, + "thread": 10 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2585309, + "thread": 9 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2730807, + "thread": 13 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 2799664, + "thread": 13 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 3023303, + "thread": 23 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 3277971, + "thread": 7 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 3440939, + "thread": 29 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 3474583, + "thread": 5 + } + }, + { + "amount": "84.171762335", + "slot": { + "period": 3720506, + "thread": 21 + } + }, + { + "amount": "84.171762324", + "slot": { + "period": 3871642, + "thread": 6 + } + } + ], + "AU1pe8J4b1ouSY66C2FUTYeKhKvBpgHUHKYh7F8JptLT6xGYGnKt": [ + { + "amount": "222.114040845", + "slot": { + "period": 111503, + "thread": 28 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 279856, + "thread": 16 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 338515, + "thread": 8 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 587791, + "thread": 20 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 717009, + "thread": 22 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 872213, + "thread": 20 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1127964, + "thread": 3 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1171180, + "thread": 3 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1412428, + "thread": 9 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1598821, + "thread": 17 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1754541, + "thread": 22 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 1861418, + "thread": 10 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2063246, + "thread": 17 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2293967, + "thread": 20 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2380013, + "thread": 28 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2534244, + "thread": 4 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2658585, + "thread": 0 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 2940566, + "thread": 24 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 3099868, + "thread": 17 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 3268950, + "thread": 6 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 3400435, + "thread": 31 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 3452941, + "thread": 30 + } + }, + { + "amount": "222.114040845", + "slot": { + "period": 3632502, + "thread": 25 + } + }, + { + "amount": "222.114040840", + "slot": { + "period": 3829948, + "thread": 29 + } + } + ], + "AU1pfvQNCUAf4L4xVQRdrVJ589qiDyjbHQMWysajDqerDZSJrkyN": [ + { + "amount": "174.305066560", + "slot": { + "period": 75996, + "thread": 18 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 243701, + "thread": 28 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 381340, + "thread": 30 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 596726, + "thread": 4 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 771691, + "thread": 24 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 845348, + "thread": 13 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 988906, + "thread": 31 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 1290270, + "thread": 24 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 1453430, + "thread": 15 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 1502624, + "thread": 23 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 1783223, + "thread": 7 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 1947448, + "thread": 14 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2093332, + "thread": 22 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2144873, + "thread": 30 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2443163, + "thread": 22 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2470363, + "thread": 28 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2705546, + "thread": 1 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 2833608, + "thread": 10 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 3120697, + "thread": 20 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 3145494, + "thread": 7 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 3316358, + "thread": 18 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 3580403, + "thread": 31 + } + }, + { + "amount": "174.305066560", + "slot": { + "period": 3657358, + "thread": 9 + } + }, + { + "amount": "174.305066567", + "slot": { + "period": 3815170, + "thread": 7 + } + } + ], + "AU1pg1M72WrWLNanRZH1NcRM7SXZG4szZ5zYB8h1FTbyCGd3Z63x": [ + { + "amount": "246.586013382", + "slot": { + "period": 23372, + "thread": 30 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 257910, + "thread": 11 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 414843, + "thread": 6 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 585388, + "thread": 19 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 690122, + "thread": 24 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 938438, + "thread": 6 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1050856, + "thread": 11 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1251243, + "thread": 17 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1378171, + "thread": 19 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1546499, + "thread": 31 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1673572, + "thread": 3 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 1952710, + "thread": 2 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2038936, + "thread": 17 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2231111, + "thread": 7 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2353422, + "thread": 24 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2523916, + "thread": 9 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2678885, + "thread": 20 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2806264, + "thread": 30 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 2961113, + "thread": 4 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 3137987, + "thread": 6 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 3447449, + "thread": 11 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 3586556, + "thread": 2 + } + }, + { + "amount": "246.586013382", + "slot": { + "period": 3631752, + "thread": 6 + } + }, + { + "amount": "246.586013370", + "slot": { + "period": 3817623, + "thread": 18 + } + } + ], + "AU1pg94VCAwDjnqXeN6pzH1dGVCQjiBjA48TCUayavEgdVAKJ1wR": [ + { + "amount": "385.845463736", + "slot": { + "period": 122703, + "thread": 1 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 228734, + "thread": 20 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 453545, + "thread": 13 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 577052, + "thread": 17 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 803807, + "thread": 26 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 834738, + "thread": 2 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1034480, + "thread": 4 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1202444, + "thread": 22 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1445682, + "thread": 7 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1557014, + "thread": 0 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1721189, + "thread": 4 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1915127, + "thread": 29 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 1979097, + "thread": 26 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2213866, + "thread": 13 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2456011, + "thread": 17 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2481346, + "thread": 10 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2773705, + "thread": 14 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2947687, + "thread": 20 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 2984315, + "thread": 16 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 3201283, + "thread": 27 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 3399756, + "thread": 28 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 3476077, + "thread": 19 + } + }, + { + "amount": "385.845463736", + "slot": { + "period": 3684883, + "thread": 3 + } + }, + { + "amount": "385.845463726", + "slot": { + "period": 3820907, + "thread": 22 + } + } + ], + "AU1pgNY9yfhh7dcZjNbpiW5AeRHHvV6eQbuSiMSTWbdAGtGthLeQ": [ + { + "amount": "269.850609366", + "slot": { + "period": 99493, + "thread": 31 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 300728, + "thread": 28 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 400517, + "thread": 29 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 617333, + "thread": 7 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 785054, + "thread": 9 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 822606, + "thread": 19 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1064511, + "thread": 27 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1295230, + "thread": 30 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1400357, + "thread": 22 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1505787, + "thread": 17 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1699282, + "thread": 14 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1838477, + "thread": 19 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 1995477, + "thread": 3 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2289296, + "thread": 8 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2381080, + "thread": 11 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2567926, + "thread": 30 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2774534, + "thread": 27 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2947735, + "thread": 24 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 2979001, + "thread": 31 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 3257130, + "thread": 18 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 3384818, + "thread": 31 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 3492216, + "thread": 16 + } + }, + { + "amount": "269.850609366", + "slot": { + "period": 3723031, + "thread": 15 + } + }, + { + "amount": "269.850609357", + "slot": { + "period": 3782008, + "thread": 9 + } + } + ], + "AU1pgmrVqwbsdYxvgxRvZimjWm367YyboQTM9K8tCqdDmzHWzu8V": [ + { + "amount": "257.348502067", + "slot": { + "period": 89020, + "thread": 9 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 279654, + "thread": 23 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 445333, + "thread": 16 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 608716, + "thread": 1 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 692375, + "thread": 6 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 916539, + "thread": 25 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1018527, + "thread": 2 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1231960, + "thread": 1 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1435949, + "thread": 30 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1591090, + "thread": 23 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1664183, + "thread": 26 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 1909688, + "thread": 13 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2143583, + "thread": 21 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2151256, + "thread": 9 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2327233, + "thread": 1 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2588964, + "thread": 24 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2645739, + "thread": 30 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 2832178, + "thread": 21 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 3096275, + "thread": 1 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 3163743, + "thread": 23 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 3352854, + "thread": 10 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 3474872, + "thread": 9 + } + }, + { + "amount": "257.348502067", + "slot": { + "period": 3716906, + "thread": 13 + } + }, + { + "amount": "257.348502066", + "slot": { + "period": 3866349, + "thread": 21 + } + } + ], + "AU1phQnkCJ5aZ56HCm91z11Rex6yTdpaHeAq1gm2do1hKrQGgLiU": [ + { + "amount": "80.657939728", + "slot": { + "period": 158469, + "thread": 18 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 273067, + "thread": 27 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 430151, + "thread": 22 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 646920, + "thread": 14 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 731982, + "thread": 0 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 914307, + "thread": 16 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 997224, + "thread": 16 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 1280748, + "thread": 27 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 1377060, + "thread": 9 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 1582037, + "thread": 15 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 1803672, + "thread": 24 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 1888987, + "thread": 22 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2082786, + "thread": 11 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2267617, + "thread": 11 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2446563, + "thread": 12 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2486512, + "thread": 7 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2677506, + "thread": 23 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2874252, + "thread": 20 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 2958720, + "thread": 4 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 3194842, + "thread": 24 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 3405684, + "thread": 17 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 3507761, + "thread": 5 + } + }, + { + "amount": "80.657939728", + "slot": { + "period": 3766869, + "thread": 9 + } + }, + { + "amount": "80.657939716", + "slot": { + "period": 3935495, + "thread": 10 + } + } + ], + "AU1phXe5rCQyfSFGdj5oyQ8ADEFyLUzCLr6scNjPGotsCV5EGTvx": [ + { + "amount": "497.915689860", + "slot": { + "period": 32591, + "thread": 8 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 295903, + "thread": 31 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 480541, + "thread": 16 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 596176, + "thread": 14 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 706155, + "thread": 1 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 967569, + "thread": 20 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 999458, + "thread": 14 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 1160763, + "thread": 16 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 1328507, + "thread": 6 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 1503929, + "thread": 17 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 1688964, + "thread": 2 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 1833085, + "thread": 24 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2000372, + "thread": 10 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2184080, + "thread": 5 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2330421, + "thread": 9 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2573219, + "thread": 26 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2705150, + "thread": 6 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2952651, + "thread": 31 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 2963338, + "thread": 6 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 3235408, + "thread": 8 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 3323602, + "thread": 31 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 3609082, + "thread": 3 + } + }, + { + "amount": "497.915689860", + "slot": { + "period": 3770369, + "thread": 16 + } + }, + { + "amount": "497.915689870", + "slot": { + "period": 3790781, + "thread": 22 + } + } + ], + "AU1piH1p7JdiACi7F5cu3z57GEHpobMcSQ6B8SaMkrxiz6Pmi73V": [ + { + "amount": "63.777657275", + "slot": { + "period": 33770, + "thread": 21 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 303956, + "thread": 1 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 416737, + "thread": 9 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 645173, + "thread": 17 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 816392, + "thread": 8 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 943142, + "thread": 13 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 985501, + "thread": 2 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 1306037, + "thread": 23 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 1415556, + "thread": 24 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 1623620, + "thread": 28 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 1771276, + "thread": 31 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 1965600, + "thread": 5 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2085450, + "thread": 25 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2260639, + "thread": 28 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2321459, + "thread": 10 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2493208, + "thread": 18 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2706339, + "thread": 4 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 2856995, + "thread": 16 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 3118984, + "thread": 10 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 3269456, + "thread": 10 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 3353475, + "thread": 25 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 3608645, + "thread": 30 + } + }, + { + "amount": "63.777657275", + "slot": { + "period": 3768355, + "thread": 19 + } + }, + { + "amount": "63.777657284", + "slot": { + "period": 3861372, + "thread": 27 + } + } + ], + "AU1piR1hc9bkqdhxeoSQ1wKcC2SkgL5fw2nz2WeJkYVS2Kfguaib": [ + { + "amount": "136.981880790", + "slot": { + "period": 62376, + "thread": 20 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 191573, + "thread": 11 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 347896, + "thread": 8 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 577414, + "thread": 29 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 668250, + "thread": 11 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 971797, + "thread": 14 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1077480, + "thread": 27 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1181350, + "thread": 3 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1407675, + "thread": 4 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1537779, + "thread": 20 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1690835, + "thread": 30 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 1869150, + "thread": 18 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2141645, + "thread": 18 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2269957, + "thread": 27 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2367696, + "thread": 1 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2470718, + "thread": 22 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2729381, + "thread": 23 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2917820, + "thread": 1 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 2963340, + "thread": 16 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 3284566, + "thread": 9 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 3389370, + "thread": 7 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 3613524, + "thread": 31 + } + }, + { + "amount": "136.981880790", + "slot": { + "period": 3711507, + "thread": 29 + } + }, + { + "amount": "136.981880794", + "slot": { + "period": 3874484, + "thread": 0 + } + } + ], + "AU1piWVMHLUyWc9M3BUnbPEK6tETH9YwgxSmBCh1MkX8egRyrTyF": [ + { + "amount": "306.303311901", + "slot": { + "period": 135964, + "thread": 25 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 179833, + "thread": 26 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 349768, + "thread": 2 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 593443, + "thread": 0 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 689700, + "thread": 25 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 905505, + "thread": 15 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1138421, + "thread": 13 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1274932, + "thread": 11 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1339635, + "thread": 5 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1513170, + "thread": 5 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1791443, + "thread": 28 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 1899296, + "thread": 1 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2088513, + "thread": 2 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2184913, + "thread": 12 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2370995, + "thread": 21 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2512345, + "thread": 6 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2662739, + "thread": 10 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2840020, + "thread": 24 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 2954851, + "thread": 9 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 3187989, + "thread": 28 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 3442200, + "thread": 31 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 3548306, + "thread": 28 + } + }, + { + "amount": "306.303311901", + "slot": { + "period": 3672809, + "thread": 3 + } + }, + { + "amount": "306.303311904", + "slot": { + "period": 3900320, + "thread": 10 + } + } + ], + "AU1piZsjZck3gPDL8XzFtJt1ckvgZyvahtNzpqUKBVShFUoyNEEx": [ + { + "amount": "69.922307209", + "slot": { + "period": 98863, + "thread": 25 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 193523, + "thread": 24 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 459716, + "thread": 29 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 595128, + "thread": 13 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 753495, + "thread": 25 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 847604, + "thread": 12 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1056281, + "thread": 6 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1195581, + "thread": 9 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1372448, + "thread": 7 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1531625, + "thread": 2 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1685847, + "thread": 29 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 1969129, + "thread": 9 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2049607, + "thread": 22 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2218029, + "thread": 17 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2312237, + "thread": 26 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2599864, + "thread": 13 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2646161, + "thread": 9 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 2918301, + "thread": 3 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 3077202, + "thread": 23 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 3209631, + "thread": 19 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 3301419, + "thread": 22 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 3490060, + "thread": 18 + } + }, + { + "amount": "69.922307209", + "slot": { + "period": 3717013, + "thread": 11 + } + }, + { + "amount": "69.922307205", + "slot": { + "period": 3944110, + "thread": 11 + } + } + ], + "AU1pj3yUHycLW6K9qH9Mdf3Gp4NBUYHmb1mJLioyZKWbGRvgSTdA": [ + { + "amount": "315.140883635", + "slot": { + "period": 34437, + "thread": 11 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 289166, + "thread": 10 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 447318, + "thread": 28 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 557336, + "thread": 12 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 806769, + "thread": 22 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 835252, + "thread": 18 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1027089, + "thread": 1 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1315047, + "thread": 2 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1402780, + "thread": 16 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1630052, + "thread": 30 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1719104, + "thread": 6 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 1835667, + "thread": 29 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2117119, + "thread": 13 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2193615, + "thread": 1 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2408569, + "thread": 4 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2618642, + "thread": 7 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2719631, + "thread": 15 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 2852647, + "thread": 12 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 3015768, + "thread": 14 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 3257987, + "thread": 17 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 3321104, + "thread": 27 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 3573568, + "thread": 30 + } + }, + { + "amount": "315.140883635", + "slot": { + "period": 3656669, + "thread": 16 + } + }, + { + "amount": "315.140883640", + "slot": { + "period": 3895741, + "thread": 1 + } + } + ], + "AU1pjGDmMUrNV7zjZm8UVjb6s3BBSDajLyrq5QhtPak51GAkxNNK": [ + { + "amount": "170.025939533", + "slot": { + "period": 113536, + "thread": 18 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 291246, + "thread": 0 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 380429, + "thread": 24 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 568824, + "thread": 30 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 703255, + "thread": 21 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 944817, + "thread": 22 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1080427, + "thread": 28 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1199834, + "thread": 19 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1387435, + "thread": 2 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1481437, + "thread": 30 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1649683, + "thread": 26 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 1902867, + "thread": 7 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2110045, + "thread": 15 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2294899, + "thread": 17 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2373270, + "thread": 7 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2596585, + "thread": 0 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2664101, + "thread": 3 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 2822874, + "thread": 27 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 3098272, + "thread": 2 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 3159926, + "thread": 29 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 3404683, + "thread": 28 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 3510706, + "thread": 23 + } + }, + { + "amount": "170.025939533", + "slot": { + "period": 3730152, + "thread": 9 + } + }, + { + "amount": "170.025939526", + "slot": { + "period": 3816652, + "thread": 25 + } + } + ], + "AU1pjf2EwXXzyoUkNoZMmzG4HQa9HHbF8ZQMPbstvCqWBuBypwPF": [ + { + "amount": "198.872497656", + "slot": { + "period": 147634, + "thread": 12 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 261899, + "thread": 7 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 365963, + "thread": 30 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 528004, + "thread": 23 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 697260, + "thread": 24 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 874766, + "thread": 17 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1014208, + "thread": 19 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1180541, + "thread": 31 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1452121, + "thread": 29 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1599183, + "thread": 3 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1724126, + "thread": 27 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 1836353, + "thread": 3 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2137263, + "thread": 5 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2219459, + "thread": 22 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2317971, + "thread": 4 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2575957, + "thread": 17 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2745484, + "thread": 12 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2860156, + "thread": 15 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 2957953, + "thread": 17 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 3265640, + "thread": 21 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 3382704, + "thread": 0 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 3470502, + "thread": 16 + } + }, + { + "amount": "198.872497656", + "slot": { + "period": 3693015, + "thread": 28 + } + }, + { + "amount": "198.872497644", + "slot": { + "period": 3845074, + "thread": 25 + } + } + ], + "AU1pkgNC3aF4EBRRXEAhq9WA6Jox66qz2fEUKxj6wWgKzM4QZnNR": [ + { + "amount": "87.520653968", + "slot": { + "period": 164068, + "thread": 6 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 242491, + "thread": 2 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 352338, + "thread": 10 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 613333, + "thread": 5 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 776704, + "thread": 6 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 901718, + "thread": 29 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1147208, + "thread": 21 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1153080, + "thread": 26 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1345887, + "thread": 2 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1509433, + "thread": 26 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1671727, + "thread": 29 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 1966444, + "thread": 16 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2124644, + "thread": 26 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2221377, + "thread": 29 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2369842, + "thread": 21 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2566845, + "thread": 27 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2641634, + "thread": 12 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 2945061, + "thread": 13 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 3047796, + "thread": 13 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 3280358, + "thread": 1 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 3348774, + "thread": 30 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 3500746, + "thread": 26 + } + }, + { + "amount": "87.520653968", + "slot": { + "period": 3744382, + "thread": 11 + } + }, + { + "amount": "87.520653973", + "slot": { + "period": 3803309, + "thread": 5 + } + } + ], + "AU1pmYj6czPZatzgDWHAsyEy3EHK5hPSHRsCcwXdA72KYVVU89WE": [ + { + "amount": "94.271613383", + "slot": { + "period": 64828, + "thread": 3 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 241676, + "thread": 27 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 353200, + "thread": 29 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 578306, + "thread": 20 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 773758, + "thread": 24 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 969227, + "thread": 10 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1006789, + "thread": 5 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1245675, + "thread": 4 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1450054, + "thread": 9 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1544281, + "thread": 1 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1747138, + "thread": 0 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 1939013, + "thread": 0 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2088336, + "thread": 26 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2284697, + "thread": 23 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2323385, + "thread": 4 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2603151, + "thread": 10 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2733534, + "thread": 11 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2857856, + "thread": 8 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 2974177, + "thread": 9 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 3183518, + "thread": 7 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 3337546, + "thread": 12 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 3544903, + "thread": 6 + } + }, + { + "amount": "94.271613383", + "slot": { + "period": 3676408, + "thread": 11 + } + }, + { + "amount": "94.271613382", + "slot": { + "period": 3803386, + "thread": 27 + } + } + ], + "AU1pmy6i8qRZQBTGR2kViX7ZYPchphSg5xLn62ovdokHceab4ep5": [ + { + "amount": "160.187544620", + "slot": { + "period": 57751, + "thread": 9 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 201548, + "thread": 8 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 328243, + "thread": 6 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 651003, + "thread": 29 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 668938, + "thread": 28 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 856997, + "thread": 13 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1129534, + "thread": 30 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1238269, + "thread": 9 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1373368, + "thread": 25 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1506593, + "thread": 0 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1698018, + "thread": 28 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 1968428, + "thread": 2 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2119292, + "thread": 15 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2290514, + "thread": 21 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2416768, + "thread": 7 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2544495, + "thread": 2 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2743160, + "thread": 13 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 2799667, + "thread": 26 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 3045991, + "thread": 15 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 3208767, + "thread": 15 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 3369335, + "thread": 25 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 3593969, + "thread": 29 + } + }, + { + "amount": "160.187544620", + "slot": { + "period": 3692204, + "thread": 5 + } + }, + { + "amount": "160.187544629", + "slot": { + "period": 3820710, + "thread": 1 + } + } + ], + "AU1pnWjH4Nmz1UrMcKs1HwERcgGakEGksV8FbZNQPCmNHbehpiwa": [ + { + "amount": "190.797718336", + "slot": { + "period": 52231, + "thread": 11 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 179480, + "thread": 30 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 348021, + "thread": 25 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 516022, + "thread": 23 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 808922, + "thread": 29 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 926318, + "thread": 12 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1062820, + "thread": 7 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1249357, + "thread": 2 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1360779, + "thread": 9 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1610804, + "thread": 7 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1743304, + "thread": 1 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 1861402, + "thread": 23 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2137679, + "thread": 5 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2194922, + "thread": 27 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2447370, + "thread": 22 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2608988, + "thread": 0 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2771629, + "thread": 26 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2914762, + "thread": 8 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 2969711, + "thread": 5 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 3285234, + "thread": 25 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 3320173, + "thread": 8 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 3549245, + "thread": 17 + } + }, + { + "amount": "190.797718336", + "slot": { + "period": 3624788, + "thread": 4 + } + }, + { + "amount": "190.797718330", + "slot": { + "period": 3787224, + "thread": 17 + } + } + ], + "AU1poN4HHZcVdFobA6RSAuP97JuoW5BEYPEgWzz4YpTpDANjaQ4F": [ + { + "amount": "54.597249541", + "slot": { + "period": 26510, + "thread": 19 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 203588, + "thread": 26 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 434514, + "thread": 31 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 520588, + "thread": 14 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 716184, + "thread": 0 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 856665, + "thread": 23 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1142515, + "thread": 0 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1181886, + "thread": 11 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1476810, + "thread": 14 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1614081, + "thread": 10 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1653766, + "thread": 10 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 1849114, + "thread": 23 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2134039, + "thread": 19 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2280754, + "thread": 27 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2348206, + "thread": 27 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2555459, + "thread": 8 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2659191, + "thread": 30 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2836401, + "thread": 17 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 2955616, + "thread": 11 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 3257520, + "thread": 1 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 3335056, + "thread": 22 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 3570376, + "thread": 2 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 3671152, + "thread": 22 + } + }, + { + "amount": "54.597249541", + "slot": { + "period": 3813717, + "thread": 0 + } + } + ], + "AU1poUjhxaKRmqUrsjLoCeQBVeApaEtXobThfKQ2PSJzS9azRit8": [ + { + "amount": "545.334531035", + "slot": { + "period": 96200, + "thread": 2 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 314713, + "thread": 7 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 421852, + "thread": 5 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 512046, + "thread": 5 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 791951, + "thread": 24 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 916772, + "thread": 29 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 996110, + "thread": 17 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 1185644, + "thread": 11 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 1322694, + "thread": 23 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 1562730, + "thread": 27 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 1797879, + "thread": 29 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 1966598, + "thread": 30 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2035644, + "thread": 16 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2266732, + "thread": 1 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2397320, + "thread": 6 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2567207, + "thread": 5 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2624423, + "thread": 17 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2845611, + "thread": 21 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 2972537, + "thread": 3 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 3192975, + "thread": 26 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 3409739, + "thread": 31 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 3458327, + "thread": 8 + } + }, + { + "amount": "545.334531035", + "slot": { + "period": 3677548, + "thread": 23 + } + }, + { + "amount": "545.334531041", + "slot": { + "period": 3817871, + "thread": 6 + } + } + ], + "AU1pobGdZ5VMKE6qSho6RVLNH6uZuV9L3zYrx5riY1E1Buznw1Rc": [ + { + "amount": "58.563025858", + "slot": { + "period": 46624, + "thread": 27 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 244729, + "thread": 0 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 420212, + "thread": 11 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 645370, + "thread": 16 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 723592, + "thread": 31 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 858378, + "thread": 25 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1117768, + "thread": 29 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1199936, + "thread": 11 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1398446, + "thread": 15 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1513033, + "thread": 3 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1706255, + "thread": 30 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 1883677, + "thread": 20 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2076069, + "thread": 1 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2191497, + "thread": 5 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2365997, + "thread": 17 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2534062, + "thread": 20 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2691677, + "thread": 18 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 2803742, + "thread": 1 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 3015768, + "thread": 29 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 3205670, + "thread": 16 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 3331792, + "thread": 13 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 3493437, + "thread": 5 + } + }, + { + "amount": "58.563025858", + "slot": { + "period": 3682486, + "thread": 23 + } + }, + { + "amount": "58.563025857", + "slot": { + "period": 3833650, + "thread": 9 + } + } + ], + "AU1ppTsakRcWhngTqMfkymLXfkZWyMjfXqfBEet8rskoGHAHLFuf": [ + { + "amount": "72.385140446", + "slot": { + "period": 20829, + "thread": 18 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 312732, + "thread": 18 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 439199, + "thread": 11 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 511290, + "thread": 20 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 751575, + "thread": 8 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 951717, + "thread": 7 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1128105, + "thread": 28 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1264918, + "thread": 23 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1437968, + "thread": 21 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1583468, + "thread": 22 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1758310, + "thread": 25 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 1916048, + "thread": 14 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2048719, + "thread": 1 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2153416, + "thread": 14 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2375852, + "thread": 18 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2470380, + "thread": 5 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2774083, + "thread": 25 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 2910024, + "thread": 24 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 3076374, + "thread": 3 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 3125955, + "thread": 4 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 3339804, + "thread": 27 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 3486431, + "thread": 18 + } + }, + { + "amount": "72.385140446", + "slot": { + "period": 3742917, + "thread": 11 + } + }, + { + "amount": "72.385140454", + "slot": { + "period": 3882585, + "thread": 30 + } + } + ], + "AU1ppsAFUeVbMCSSz9uoLmDo1nnQXreodRLvqVimT3FAiweNb8bi": [ + { + "amount": "81.965930702", + "slot": { + "period": 73195, + "thread": 22 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 300954, + "thread": 12 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 465788, + "thread": 18 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 505002, + "thread": 1 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 799870, + "thread": 16 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 930344, + "thread": 6 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1049515, + "thread": 3 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1316381, + "thread": 23 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1430529, + "thread": 3 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1635496, + "thread": 19 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1669587, + "thread": 25 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 1940090, + "thread": 4 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2142913, + "thread": 20 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2207426, + "thread": 9 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2388695, + "thread": 13 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2566516, + "thread": 21 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2748620, + "thread": 22 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 2914438, + "thread": 27 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 3080453, + "thread": 11 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 3237235, + "thread": 17 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 3370647, + "thread": 5 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 3503330, + "thread": 0 + } + }, + { + "amount": "81.965930702", + "slot": { + "period": 3666457, + "thread": 29 + } + }, + { + "amount": "81.965930701", + "slot": { + "period": 3847439, + "thread": 27 + } + } + ], + "AU1prWb4ShcuK1MwmyE9Yd1YE8369au4aaFaYp9X49xRBYJYTKhG": [ + { + "amount": "74.112101126", + "slot": { + "period": 165809, + "thread": 12 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 241637, + "thread": 13 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 404228, + "thread": 11 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 601013, + "thread": 16 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 813453, + "thread": 26 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 854321, + "thread": 8 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1107490, + "thread": 22 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1161398, + "thread": 3 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1473322, + "thread": 11 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1518599, + "thread": 0 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1655100, + "thread": 24 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 1848752, + "thread": 30 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2082546, + "thread": 0 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2146133, + "thread": 26 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2336418, + "thread": 24 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2570156, + "thread": 16 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2733702, + "thread": 13 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 2952951, + "thread": 26 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 3106668, + "thread": 20 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 3215030, + "thread": 7 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 3364067, + "thread": 25 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 3497490, + "thread": 16 + } + }, + { + "amount": "74.112101126", + "slot": { + "period": 3706863, + "thread": 22 + } + }, + { + "amount": "74.112101129", + "slot": { + "period": 3904848, + "thread": 28 + } + } + ], + "AU1ps5DeV8reRMxPZphAUyvxpnMaUV4LemwaMWoYBskaZnY6sYNn": [ + { + "amount": "590.780075750", + "slot": { + "period": 106190, + "thread": 24 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 211242, + "thread": 30 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 324422, + "thread": 5 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 565130, + "thread": 12 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 722683, + "thread": 26 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 828771, + "thread": 2 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1007735, + "thread": 24 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1266410, + "thread": 4 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1390810, + "thread": 19 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1486573, + "thread": 27 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1691847, + "thread": 7 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 1860718, + "thread": 25 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2015985, + "thread": 6 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2185926, + "thread": 24 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2300477, + "thread": 11 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2522911, + "thread": 19 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2644966, + "thread": 23 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 2910055, + "thread": 10 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 3117552, + "thread": 31 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 3257594, + "thread": 3 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 3372963, + "thread": 16 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 3502873, + "thread": 15 + } + }, + { + "amount": "590.780075750", + "slot": { + "period": 3689692, + "thread": 27 + } + }, + { + "amount": "590.780075759", + "slot": { + "period": 3867849, + "thread": 14 + } + } + ], + "AU1psDxMbAqPmQh3gGZ3M8A5EoRtMqFcp81i8hLZS1rNw2hkFipf": [ + { + "amount": "158.657090010", + "slot": { + "period": 78708, + "thread": 3 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 231437, + "thread": 6 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 450478, + "thread": 26 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 542245, + "thread": 26 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 775722, + "thread": 0 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 959118, + "thread": 18 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1022295, + "thread": 19 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1298437, + "thread": 15 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1414630, + "thread": 11 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1614913, + "thread": 2 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1673878, + "thread": 5 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 1850737, + "thread": 26 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2129576, + "thread": 13 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2290173, + "thread": 6 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2385032, + "thread": 26 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2582728, + "thread": 5 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2753787, + "thread": 24 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2830426, + "thread": 20 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 2961551, + "thread": 9 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 3182591, + "thread": 0 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 3308826, + "thread": 7 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 3532852, + "thread": 17 + } + }, + { + "amount": "158.657090010", + "slot": { + "period": 3645023, + "thread": 19 + } + }, + { + "amount": "158.657089998", + "slot": { + "period": 3919950, + "thread": 8 + } + } + ], + "AU1psrh7rnxWwnssz5TfLcsYK4J7LX1eFYj3zcxzAM2NM9QbkDqj": [ + { + "amount": "62.403009103", + "slot": { + "period": 92221, + "thread": 26 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 233345, + "thread": 13 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 386897, + "thread": 15 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 519469, + "thread": 14 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 701996, + "thread": 9 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 937994, + "thread": 30 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1087788, + "thread": 14 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1181852, + "thread": 1 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1397544, + "thread": 20 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1538977, + "thread": 19 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1732855, + "thread": 15 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1838484, + "thread": 16 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 1989754, + "thread": 16 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 2167985, + "thread": 12 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 2341888, + "thread": 25 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 2589038, + "thread": 20 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 2742194, + "thread": 15 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 2931330, + "thread": 16 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 3107501, + "thread": 14 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 3234415, + "thread": 16 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 3414405, + "thread": 4 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 3611799, + "thread": 3 + } + }, + { + "amount": "62.403009103", + "slot": { + "period": 3745241, + "thread": 11 + } + }, + { + "amount": "62.403009101", + "slot": { + "period": 3864431, + "thread": 12 + } + } + ], + "AU1ptUcjp3mK9ugnPh74Z9kTw2VNWTrqjm5kfNZWzpmrAUDXhzWR": [ + { + "amount": "191.181206113", + "slot": { + "period": 134744, + "thread": 6 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 199899, + "thread": 4 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 472680, + "thread": 5 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 629013, + "thread": 7 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 781456, + "thread": 26 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 839031, + "thread": 12 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1062878, + "thread": 30 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1278016, + "thread": 28 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1444060, + "thread": 1 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1577927, + "thread": 31 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1748636, + "thread": 19 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 1842219, + "thread": 21 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2120939, + "thread": 4 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2213678, + "thread": 24 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2314217, + "thread": 23 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2539213, + "thread": 9 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2753847, + "thread": 4 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 2815479, + "thread": 0 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 3011026, + "thread": 14 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 3270864, + "thread": 10 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 3292996, + "thread": 28 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 3486212, + "thread": 6 + } + }, + { + "amount": "191.181206113", + "slot": { + "period": 3689905, + "thread": 9 + } + }, + { + "amount": "191.181206122", + "slot": { + "period": 3895737, + "thread": 4 + } + } + ], + "AU1pvMsRUpmQ55iqeNVwGip7Xx7UWDJWNmFPdHy8Kz7Ebze5QxP1": [ + { + "amount": "78.048402551", + "slot": { + "period": 20549, + "thread": 7 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 251013, + "thread": 19 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 329011, + "thread": 18 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 646172, + "thread": 18 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 726455, + "thread": 3 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 915950, + "thread": 18 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1089951, + "thread": 16 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1289502, + "thread": 15 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1358333, + "thread": 29 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1612650, + "thread": 1 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1741958, + "thread": 17 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 1833796, + "thread": 24 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2091938, + "thread": 13 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2270089, + "thread": 23 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2349129, + "thread": 0 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2574805, + "thread": 2 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2709806, + "thread": 18 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 2949513, + "thread": 0 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 3000721, + "thread": 23 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 3288053, + "thread": 10 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 3399983, + "thread": 15 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 3522210, + "thread": 4 + } + }, + { + "amount": "78.048402551", + "slot": { + "period": 3703214, + "thread": 16 + } + }, + { + "amount": "78.048402540", + "slot": { + "period": 3855929, + "thread": 8 + } + } + ], + "AU1pwQRyzYd8f3mSnWo66SrAcasTTMTQTW1WNj6Kn3t3pYCp8XY6": [ + { + "amount": "397.032589192", + "slot": { + "period": 96780, + "thread": 1 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 272179, + "thread": 13 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 343225, + "thread": 29 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 520543, + "thread": 11 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 816541, + "thread": 8 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 851651, + "thread": 4 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1081208, + "thread": 5 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1244054, + "thread": 18 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1449283, + "thread": 30 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1612345, + "thread": 4 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1771287, + "thread": 20 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 1960883, + "thread": 30 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2134131, + "thread": 24 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2185735, + "thread": 18 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2373050, + "thread": 16 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2563547, + "thread": 19 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2750610, + "thread": 0 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 2901911, + "thread": 8 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 3026765, + "thread": 26 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 3285268, + "thread": 2 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 3304334, + "thread": 29 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 3476043, + "thread": 20 + } + }, + { + "amount": "397.032589192", + "slot": { + "period": 3623115, + "thread": 2 + } + }, + { + "amount": "397.032589193", + "slot": { + "period": 3887075, + "thread": 5 + } + } + ], + "AU1pyVgf1NY2pPTEscUP3HBwiT8CgHzRb3QYzGZbvvUeMqDVLNaw": [ + { + "amount": "51.569960190", + "slot": { + "period": 84693, + "thread": 19 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 318776, + "thread": 13 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 479317, + "thread": 5 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 628049, + "thread": 18 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 672566, + "thread": 18 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 938559, + "thread": 10 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1077704, + "thread": 18 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1205442, + "thread": 16 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1355684, + "thread": 9 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1536051, + "thread": 12 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1747484, + "thread": 2 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 1947535, + "thread": 24 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2097295, + "thread": 27 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2176272, + "thread": 6 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2324970, + "thread": 2 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2472308, + "thread": 7 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2750840, + "thread": 1 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 2915320, + "thread": 6 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 3032455, + "thread": 9 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 3265330, + "thread": 6 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 3381794, + "thread": 1 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 3481640, + "thread": 11 + } + }, + { + "amount": "51.569960190", + "slot": { + "period": 3637397, + "thread": 24 + } + }, + { + "amount": "51.569960193", + "slot": { + "period": 3859120, + "thread": 6 + } + } + ], + "AU1pydgUV1zZAm3awXrcXpqeHyQ9cHuPPLPoZF1wi5LWMZwn46KR": [ + { + "amount": "86.944068910", + "slot": { + "period": 98355, + "thread": 25 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 197964, + "thread": 0 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 438169, + "thread": 17 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 625973, + "thread": 8 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 656403, + "thread": 23 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 840076, + "thread": 24 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1042391, + "thread": 25 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1275071, + "thread": 9 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1347080, + "thread": 20 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1490376, + "thread": 5 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1770823, + "thread": 18 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 1826614, + "thread": 12 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2056688, + "thread": 0 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2152444, + "thread": 14 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2426886, + "thread": 14 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2617435, + "thread": 1 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2682681, + "thread": 7 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 2948669, + "thread": 4 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 3073803, + "thread": 1 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 3250793, + "thread": 8 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 3416181, + "thread": 10 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 3452414, + "thread": 3 + } + }, + { + "amount": "86.944068910", + "slot": { + "period": 3728866, + "thread": 11 + } + }, + { + "amount": "86.944068922", + "slot": { + "period": 3834435, + "thread": 7 + } + } + ], + "AU1pzAvvKXRAHnGWvPaZt2Q5NtgXCNK9XykNjTyfgceyB86ksdv6": [ + { + "amount": "193.443619260", + "slot": { + "period": 120000, + "thread": 23 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 317688, + "thread": 26 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 406379, + "thread": 5 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 560013, + "thread": 10 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 765936, + "thread": 1 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 915672, + "thread": 11 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 994467, + "thread": 28 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 1187452, + "thread": 31 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 1422344, + "thread": 9 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 1610913, + "thread": 30 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 1692742, + "thread": 15 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 1824669, + "thread": 28 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2135111, + "thread": 27 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2212327, + "thread": 11 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2339214, + "thread": 23 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2539053, + "thread": 21 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2646329, + "thread": 27 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2887064, + "thread": 3 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 2978844, + "thread": 27 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 3217523, + "thread": 25 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 3338487, + "thread": 5 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 3609113, + "thread": 2 + } + }, + { + "amount": "193.443619260", + "slot": { + "period": 3734666, + "thread": 26 + } + }, + { + "amount": "193.443619264", + "slot": { + "period": 3844391, + "thread": 23 + } + } + ], + "AU1pzZw6NPENKBTF4mKJXZtQUg92NhtAM1g25PUSAL57RNDek71H": [ + { + "amount": "70.889277917", + "slot": { + "period": 88509, + "thread": 18 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 260707, + "thread": 11 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 452873, + "thread": 29 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 505645, + "thread": 23 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 785169, + "thread": 20 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 979021, + "thread": 16 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1068057, + "thread": 18 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1273013, + "thread": 23 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1431162, + "thread": 6 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1602938, + "thread": 13 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1797373, + "thread": 9 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 1904801, + "thread": 7 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2132559, + "thread": 22 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2261629, + "thread": 10 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2436788, + "thread": 7 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2623084, + "thread": 8 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2717043, + "thread": 19 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2813488, + "thread": 13 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 2955488, + "thread": 26 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 3173425, + "thread": 13 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 3337602, + "thread": 9 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 3574833, + "thread": 15 + } + }, + { + "amount": "70.889277917", + "slot": { + "period": 3702369, + "thread": 16 + } + }, + { + "amount": "70.889277916", + "slot": { + "period": 3820302, + "thread": 3 + } + } + ], + "AU1pzanx4LcePAkS7veBk18T7zjrEV3HSNLPyRNJZbhnX2pJr5mG": [ + { + "amount": "85.418578305", + "slot": { + "period": 156302, + "thread": 29 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 281854, + "thread": 24 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 431297, + "thread": 28 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 617607, + "thread": 26 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 719235, + "thread": 2 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 940763, + "thread": 19 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1130599, + "thread": 25 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1267440, + "thread": 21 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1470908, + "thread": 14 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1489604, + "thread": 28 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1765857, + "thread": 12 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 1913869, + "thread": 6 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2016670, + "thread": 10 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2169610, + "thread": 14 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2326551, + "thread": 11 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2520771, + "thread": 8 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2656412, + "thread": 7 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2859279, + "thread": 9 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 2955181, + "thread": 6 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 3273834, + "thread": 27 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 3424633, + "thread": 2 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 3590540, + "thread": 20 + } + }, + { + "amount": "85.418578305", + "slot": { + "period": 3662299, + "thread": 9 + } + }, + { + "amount": "85.418578308", + "slot": { + "period": 3934525, + "thread": 30 + } + } + ], + "AU1q1FiDNeNguk9fgSfYiEos4XoSUrzaxjF1d1sMdt5Fkxk7KJoE": [ + { + "amount": "549.491204986", + "slot": { + "period": 84522, + "thread": 24 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 275970, + "thread": 1 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 395954, + "thread": 30 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 625846, + "thread": 6 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 659861, + "thread": 27 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 875982, + "thread": 11 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1116787, + "thread": 18 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1222470, + "thread": 22 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1431705, + "thread": 30 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1609259, + "thread": 2 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1754469, + "thread": 17 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 1927931, + "thread": 2 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2140798, + "thread": 30 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2179374, + "thread": 25 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2408250, + "thread": 4 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2559556, + "thread": 6 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2712860, + "thread": 15 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 2832484, + "thread": 5 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 3055989, + "thread": 24 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 3155691, + "thread": 7 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 3317425, + "thread": 16 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 3561850, + "thread": 4 + } + }, + { + "amount": "549.491204986", + "slot": { + "period": 3618272, + "thread": 12 + } + }, + { + "amount": "549.491204994", + "slot": { + "period": 3798240, + "thread": 8 + } + } + ], + "AU1q1sAWBZzxb9ZKuz9wP5ijkCTzdwSXvJZQ6K349g6h9mq6MnqT": [ + { + "amount": "89.890237168", + "slot": { + "period": 85591, + "thread": 13 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 280935, + "thread": 1 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 325883, + "thread": 7 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 531214, + "thread": 20 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 787880, + "thread": 15 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 843430, + "thread": 0 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1100370, + "thread": 26 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1245958, + "thread": 28 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1378688, + "thread": 12 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1552451, + "thread": 2 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1695655, + "thread": 19 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 1856012, + "thread": 10 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2038887, + "thread": 7 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2198331, + "thread": 21 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2426407, + "thread": 10 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2584155, + "thread": 3 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2632020, + "thread": 15 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2885540, + "thread": 6 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 2994024, + "thread": 27 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 3282434, + "thread": 5 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 3385482, + "thread": 31 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 3574711, + "thread": 20 + } + }, + { + "amount": "89.890237168", + "slot": { + "period": 3623000, + "thread": 28 + } + }, + { + "amount": "89.890237161", + "slot": { + "period": 3915347, + "thread": 21 + } + } + ], + "AU1q21mevWEPgJuhwS2w3NyaDR8xifqhYrWvVGJenMpWiLDkanuj": [ + { + "amount": "4666.666666667", + "slot": { + "period": 137818, + "thread": 9 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 298644, + "thread": 30 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 341221, + "thread": 17 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 580188, + "thread": 13 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 791858, + "thread": 7 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 959413, + "thread": 7 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1037831, + "thread": 30 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1259002, + "thread": 16 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1320075, + "thread": 31 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1553081, + "thread": 14 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1753387, + "thread": 31 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 1944570, + "thread": 16 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2137937, + "thread": 15 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2244219, + "thread": 26 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2397635, + "thread": 28 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2517739, + "thread": 12 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2644853, + "thread": 28 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 2946970, + "thread": 11 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 3082706, + "thread": 22 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 3279509, + "thread": 1 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 3379006, + "thread": 29 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 3582518, + "thread": 26 + } + }, + { + "amount": "4666.666666667", + "slot": { + "period": 3636830, + "thread": 15 + } + }, + { + "amount": "4666.666666659", + "slot": { + "period": 3869560, + "thread": 22 + } + } + ], + "AU1q2avRh6BmAQiWW5KZoZtkMcc6Fs4JkXCHF1HNcEU1zCNxS7dY": [ + { + "amount": "56.509917237", + "slot": { + "period": 38088, + "thread": 7 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 321297, + "thread": 13 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 346626, + "thread": 15 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 605998, + "thread": 18 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 716936, + "thread": 10 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 954198, + "thread": 17 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1071248, + "thread": 20 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1276770, + "thread": 8 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1418099, + "thread": 21 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1502036, + "thread": 14 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1758456, + "thread": 9 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 1942389, + "thread": 9 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2092760, + "thread": 30 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2248532, + "thread": 24 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2459826, + "thread": 23 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2523966, + "thread": 10 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2635509, + "thread": 7 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2808272, + "thread": 19 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 2970859, + "thread": 12 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 3192963, + "thread": 4 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 3291610, + "thread": 17 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 3572818, + "thread": 6 + } + }, + { + "amount": "56.509917237", + "slot": { + "period": 3775750, + "thread": 8 + } + }, + { + "amount": "56.509917235", + "slot": { + "period": 3784671, + "thread": 29 + } + } + ], + "AU1q2wJ2PwhSX24KfsqkPgGM9wVPoY3SZDCh8VRJG4wBmMqcKFYQ": [ + { + "amount": "343.951865561", + "slot": { + "period": 88998, + "thread": 30 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 247818, + "thread": 19 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 478004, + "thread": 14 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 548162, + "thread": 0 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 707085, + "thread": 0 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 882751, + "thread": 18 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1029294, + "thread": 16 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1282547, + "thread": 29 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1459484, + "thread": 13 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1579739, + "thread": 16 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1694990, + "thread": 3 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 1894812, + "thread": 10 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2114004, + "thread": 31 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2191501, + "thread": 5 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2421540, + "thread": 25 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2501185, + "thread": 12 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2741004, + "thread": 13 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2863294, + "thread": 8 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 2967781, + "thread": 30 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 3204713, + "thread": 14 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 3382892, + "thread": 8 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 3512012, + "thread": 1 + } + }, + { + "amount": "343.951865561", + "slot": { + "period": 3701246, + "thread": 1 + } + }, + { + "amount": "343.951865566", + "slot": { + "period": 3802461, + "thread": 29 + } + } + ], + "AU1q3r4fohKcqPd1ycYDLg7dyPSvtPMCQ1nnbGgQsS6Cu4s2bqWX": [ + { + "amount": "425.151676507", + "slot": { + "period": 67762, + "thread": 5 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 172238, + "thread": 4 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 331178, + "thread": 18 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 568429, + "thread": 13 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 798135, + "thread": 11 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 929429, + "thread": 27 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1089840, + "thread": 10 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1196137, + "thread": 2 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1354294, + "thread": 5 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1486403, + "thread": 31 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1793361, + "thread": 3 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 1871388, + "thread": 21 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2127338, + "thread": 26 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2287854, + "thread": 26 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2351441, + "thread": 6 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2609238, + "thread": 25 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2706098, + "thread": 14 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 2947773, + "thread": 8 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 3011025, + "thread": 6 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 3167288, + "thread": 23 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 3363569, + "thread": 9 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 3457993, + "thread": 31 + } + }, + { + "amount": "425.151676507", + "slot": { + "period": 3718967, + "thread": 21 + } + }, + { + "amount": "425.151676511", + "slot": { + "period": 3871737, + "thread": 1 + } + } + ], + "AU1q4McdGNdAJu3iyzJN4HJaqjL3b5o7TKwcmsjXvhta1i24dy2U": [ + { + "amount": "145.110904185", + "slot": { + "period": 56183, + "thread": 5 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 289532, + "thread": 29 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 469326, + "thread": 25 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 529765, + "thread": 21 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 808477, + "thread": 26 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 944141, + "thread": 0 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1054009, + "thread": 24 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1234383, + "thread": 28 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1370745, + "thread": 31 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1646176, + "thread": 28 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1764169, + "thread": 1 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 1877006, + "thread": 31 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2073860, + "thread": 24 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2151696, + "thread": 12 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2320077, + "thread": 7 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2543402, + "thread": 4 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2758497, + "thread": 13 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 2907980, + "thread": 27 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 3120584, + "thread": 4 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 3280568, + "thread": 0 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 3371002, + "thread": 24 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 3606204, + "thread": 9 + } + }, + { + "amount": "145.110904185", + "slot": { + "period": 3703932, + "thread": 26 + } + }, + { + "amount": "145.110904194", + "slot": { + "period": 3866618, + "thread": 8 + } + } + ], + "AU1q4UWqmqZy18PPMqgDPZsPdjMPFj6eLdk6Xy5GuHNVN9gvLacp": [ + { + "amount": "689.089348958", + "slot": { + "period": 144435, + "thread": 19 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 242446, + "thread": 3 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 456959, + "thread": 12 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 519500, + "thread": 25 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 800785, + "thread": 26 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 978367, + "thread": 2 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1096104, + "thread": 17 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1218140, + "thread": 12 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1423557, + "thread": 20 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1614554, + "thread": 28 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1668713, + "thread": 27 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 1834350, + "thread": 4 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2119739, + "thread": 11 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2169126, + "thread": 13 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2375511, + "thread": 14 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2502484, + "thread": 22 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2740128, + "thread": 28 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 2933106, + "thread": 24 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 3079521, + "thread": 18 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 3121725, + "thread": 11 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 3412245, + "thread": 0 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 3480285, + "thread": 0 + } + }, + { + "amount": "689.089348958", + "slot": { + "period": 3674305, + "thread": 4 + } + }, + { + "amount": "689.089348969", + "slot": { + "period": 3906777, + "thread": 5 + } + } + ], + "AU1q7DQGsEWttD97kWRAqtxh1erccktGuXkKPLvYZBsWUZdc3rzE": [ + { + "amount": "328.224259267", + "slot": { + "period": 42060, + "thread": 22 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 310430, + "thread": 24 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 399739, + "thread": 20 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 652430, + "thread": 21 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 657425, + "thread": 19 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 952257, + "thread": 0 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1085384, + "thread": 9 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1241381, + "thread": 4 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1401254, + "thread": 17 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1531388, + "thread": 26 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1728048, + "thread": 24 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 1819700, + "thread": 29 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2017892, + "thread": 26 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2188740, + "thread": 19 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2461158, + "thread": 2 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2566512, + "thread": 3 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2765639, + "thread": 3 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2881340, + "thread": 23 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 2971532, + "thread": 4 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 3195140, + "thread": 11 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 3383469, + "thread": 0 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 3481183, + "thread": 3 + } + }, + { + "amount": "328.224259267", + "slot": { + "period": 3762224, + "thread": 15 + } + }, + { + "amount": "328.224259277", + "slot": { + "period": 3932677, + "thread": 21 + } + } + ], + "AU1q7JoKVdnqzthVBfchxaobiW8LcpihS398xiTJT1TkafA38BUV": [ + { + "amount": "316.500597681", + "slot": { + "period": 84170, + "thread": 19 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 238313, + "thread": 25 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 349554, + "thread": 14 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 644874, + "thread": 24 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 732402, + "thread": 26 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 962265, + "thread": 11 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1041994, + "thread": 8 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1207195, + "thread": 16 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1403648, + "thread": 24 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1494770, + "thread": 6 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1657544, + "thread": 0 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 1920135, + "thread": 23 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2004144, + "thread": 2 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2205620, + "thread": 27 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2340241, + "thread": 20 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2571133, + "thread": 20 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2670849, + "thread": 25 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2808265, + "thread": 5 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 2973368, + "thread": 27 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 3161416, + "thread": 3 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 3411219, + "thread": 6 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 3561800, + "thread": 5 + } + }, + { + "amount": "316.500597681", + "slot": { + "period": 3777881, + "thread": 31 + } + }, + { + "amount": "316.500597678", + "slot": { + "period": 3905876, + "thread": 0 + } + } + ], + "AU1q8eXKgBixJvgjpiXafcbqFthm3ijhC7gxtfFVskiQWPcMpGZa": [ + { + "amount": "74.555075631", + "slot": { + "period": 85982, + "thread": 24 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 224163, + "thread": 5 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 474005, + "thread": 26 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 571861, + "thread": 9 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 749552, + "thread": 23 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 888618, + "thread": 19 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1060755, + "thread": 10 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1196722, + "thread": 31 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1347891, + "thread": 0 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1637711, + "thread": 9 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1755063, + "thread": 20 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1961411, + "thread": 19 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 1980169, + "thread": 31 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2211422, + "thread": 12 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2300964, + "thread": 0 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2618631, + "thread": 15 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2719340, + "thread": 26 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2896277, + "thread": 12 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 2961448, + "thread": 24 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 3280630, + "thread": 19 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 3364276, + "thread": 27 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 3475232, + "thread": 1 + } + }, + { + "amount": "74.555075631", + "slot": { + "period": 3738396, + "thread": 27 + } + }, + { + "amount": "74.555075641", + "slot": { + "period": 3845224, + "thread": 19 + } + } + ], + "AU1qAZGybnQWdaCLyfBHWHPWnHYLppgayshu6Zd6dfUTbrJQsYT5": [ + { + "amount": "56.777916518", + "slot": { + "period": 100872, + "thread": 20 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 238399, + "thread": 2 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 484230, + "thread": 3 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 539183, + "thread": 24 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 775931, + "thread": 3 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 923778, + "thread": 25 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1080174, + "thread": 22 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1316347, + "thread": 13 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1397940, + "thread": 5 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1622984, + "thread": 0 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1706702, + "thread": 10 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 1949372, + "thread": 29 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2084394, + "thread": 17 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2294173, + "thread": 5 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2440109, + "thread": 0 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2501695, + "thread": 20 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2632909, + "thread": 17 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 2839382, + "thread": 22 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 3025123, + "thread": 3 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 3200134, + "thread": 23 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 3365398, + "thread": 5 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 3518078, + "thread": 0 + } + }, + { + "amount": "56.777916518", + "slot": { + "period": 3634678, + "thread": 26 + } + }, + { + "amount": "56.777916525", + "slot": { + "period": 3853372, + "thread": 21 + } + } + ], + "AU1qBANaM9K83QB6ifPFSr38GTySpfdSzyhNfze2vZfqJCQStGzW": [ + { + "amount": "198.577401809", + "slot": { + "period": 60754, + "thread": 12 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 214341, + "thread": 0 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 359570, + "thread": 29 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 641048, + "thread": 15 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 783296, + "thread": 24 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 866018, + "thread": 4 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1096166, + "thread": 19 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1173128, + "thread": 13 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1338184, + "thread": 15 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1491773, + "thread": 18 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1669677, + "thread": 24 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 1839243, + "thread": 0 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2041095, + "thread": 7 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2192602, + "thread": 4 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2353494, + "thread": 22 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2496850, + "thread": 31 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2721375, + "thread": 10 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 2814982, + "thread": 15 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 3059323, + "thread": 16 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 3181856, + "thread": 4 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 3394643, + "thread": 23 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 3551118, + "thread": 0 + } + }, + { + "amount": "198.577401809", + "slot": { + "period": 3715409, + "thread": 15 + } + }, + { + "amount": "198.577401798", + "slot": { + "period": 3909554, + "thread": 18 + } + } + ], + "AU1qBY1wu6VihoNynp4qRcrKFikhvdBPMSNBoH38zFGVQweGNLow": [ + { + "amount": "280.748415266", + "slot": { + "period": 100076, + "thread": 7 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 171763, + "thread": 10 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 374398, + "thread": 2 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 595353, + "thread": 7 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 804774, + "thread": 3 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 977597, + "thread": 21 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 989314, + "thread": 22 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 1278335, + "thread": 20 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 1458096, + "thread": 3 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 1515746, + "thread": 14 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 1701819, + "thread": 9 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 1887166, + "thread": 2 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2102008, + "thread": 1 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2193829, + "thread": 6 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2447210, + "thread": 16 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2615022, + "thread": 24 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2652454, + "thread": 28 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 2880673, + "thread": 23 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 3034782, + "thread": 3 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 3239431, + "thread": 18 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 3448493, + "thread": 21 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 3614523, + "thread": 20 + } + }, + { + "amount": "280.748415266", + "slot": { + "period": 3666951, + "thread": 23 + } + }, + { + "amount": "280.748415265", + "slot": { + "period": 3874536, + "thread": 6 + } + } + ], + "AU1qDMicaqXd5oXn1SeWGGongMHY3vMYFjktafMUC9XuKsCLe3PV": [ + { + "amount": "404.794501998", + "slot": { + "period": 98516, + "thread": 21 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 243567, + "thread": 8 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 345133, + "thread": 29 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 509586, + "thread": 11 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 681149, + "thread": 23 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 826136, + "thread": 25 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1049000, + "thread": 12 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1269568, + "thread": 22 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1323838, + "thread": 19 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1521649, + "thread": 7 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1745692, + "thread": 18 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 1900949, + "thread": 29 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2108473, + "thread": 10 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2272963, + "thread": 10 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2370320, + "thread": 19 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2604288, + "thread": 23 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2746537, + "thread": 31 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 2870548, + "thread": 18 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 3040852, + "thread": 15 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 3201394, + "thread": 13 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 3434987, + "thread": 22 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 3524452, + "thread": 11 + } + }, + { + "amount": "404.794501998", + "slot": { + "period": 3658599, + "thread": 12 + } + }, + { + "amount": "404.794502003", + "slot": { + "period": 3840644, + "thread": 9 + } + } + ], + "AU1qEG8BaZ7LT18pnfhBqpQxnZejfaUtTbnhhicMQL5XDoxeWtad": [ + { + "amount": "99.641945584", + "slot": { + "period": 27613, + "thread": 14 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 211229, + "thread": 12 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 408062, + "thread": 4 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 643786, + "thread": 21 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 810420, + "thread": 10 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 898233, + "thread": 31 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1126866, + "thread": 16 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1259801, + "thread": 24 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1423025, + "thread": 10 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1499763, + "thread": 28 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1685843, + "thread": 1 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 1963354, + "thread": 2 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2083661, + "thread": 8 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2186908, + "thread": 12 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2320331, + "thread": 18 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2570738, + "thread": 31 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2743833, + "thread": 20 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2885025, + "thread": 6 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 2968998, + "thread": 13 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 3154139, + "thread": 23 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 3397098, + "thread": 17 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 3455941, + "thread": 17 + } + }, + { + "amount": "99.641945584", + "slot": { + "period": 3630772, + "thread": 17 + } + }, + { + "amount": "99.641945582", + "slot": { + "period": 3810673, + "thread": 16 + } + } + ], + "AU1qEXwL2daF2prEP65fzCaBcTNKZikoZPUsan9sMfWgqdABHmrM": [ + { + "amount": "99.316308823", + "slot": { + "period": 31234, + "thread": 14 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 178761, + "thread": 15 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 374861, + "thread": 21 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 559381, + "thread": 26 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 756988, + "thread": 7 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 974345, + "thread": 26 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1052168, + "thread": 29 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1181456, + "thread": 22 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1468885, + "thread": 21 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1645469, + "thread": 31 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1753656, + "thread": 22 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 1820800, + "thread": 19 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2140242, + "thread": 3 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2169425, + "thread": 24 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2329831, + "thread": 16 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2545821, + "thread": 17 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2730950, + "thread": 30 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 2826467, + "thread": 23 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 3069975, + "thread": 19 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 3213873, + "thread": 3 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 3419172, + "thread": 18 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 3559103, + "thread": 22 + } + }, + { + "amount": "99.316308823", + "slot": { + "period": 3668882, + "thread": 12 + } + }, + { + "amount": "99.316308832", + "slot": { + "period": 3811153, + "thread": 7 + } + } + ], + "AU1qEaJLSwouWFT1rijiJWyAaxNYcyWTfgd5UxfxakyaUM7ZoqVB": [ + { + "amount": "152.108193582", + "slot": { + "period": 90661, + "thread": 25 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 289488, + "thread": 14 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 334541, + "thread": 15 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 615931, + "thread": 3 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 669910, + "thread": 1 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 893071, + "thread": 4 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1039569, + "thread": 13 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1265249, + "thread": 19 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1464082, + "thread": 9 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1599381, + "thread": 18 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1772541, + "thread": 27 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 1973883, + "thread": 16 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2123380, + "thread": 24 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2169472, + "thread": 5 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2376120, + "thread": 28 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2605425, + "thread": 3 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2661543, + "thread": 2 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2918617, + "thread": 7 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 2989387, + "thread": 10 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 3219409, + "thread": 24 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 3439938, + "thread": 28 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 3481614, + "thread": 28 + } + }, + { + "amount": "152.108193582", + "slot": { + "period": 3657627, + "thread": 1 + } + }, + { + "amount": "152.108193575", + "slot": { + "period": 3916303, + "thread": 5 + } + } + ], + "AU1qEvaoCczkLt5oM34gTGPcyJuUAv8MudgWnuTewyMefiSFTB1u": [ + { + "amount": "196.198094379", + "slot": { + "period": 161768, + "thread": 31 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 306292, + "thread": 17 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 387071, + "thread": 27 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 569549, + "thread": 16 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 753114, + "thread": 10 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 938356, + "thread": 29 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1143108, + "thread": 4 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1211774, + "thread": 26 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1323620, + "thread": 31 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1627061, + "thread": 28 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1752790, + "thread": 22 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 1892871, + "thread": 6 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2060623, + "thread": 21 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2211938, + "thread": 26 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2409731, + "thread": 17 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2560926, + "thread": 30 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2729054, + "thread": 18 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 2821979, + "thread": 13 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 3078445, + "thread": 2 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 3262852, + "thread": 13 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 3415979, + "thread": 30 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 3463619, + "thread": 19 + } + }, + { + "amount": "196.198094379", + "slot": { + "period": 3639868, + "thread": 13 + } + }, + { + "amount": "196.198094370", + "slot": { + "period": 3810070, + "thread": 9 + } + } + ], + "AU1qF8dP6yPXudzrwX1A4w4P2oUgFaLhcAXt53vR8n3GKfyLDBFd": [ + { + "amount": "161.603369433", + "slot": { + "period": 140029, + "thread": 21 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 252477, + "thread": 1 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 476104, + "thread": 30 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 491830, + "thread": 25 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 702477, + "thread": 30 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 884815, + "thread": 8 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1058568, + "thread": 11 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1299878, + "thread": 6 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1325975, + "thread": 23 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1618777, + "thread": 21 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1649972, + "thread": 21 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 1910237, + "thread": 1 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2066092, + "thread": 6 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2291689, + "thread": 25 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2437217, + "thread": 0 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2480392, + "thread": 18 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2713118, + "thread": 10 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 2868601, + "thread": 27 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 3002778, + "thread": 1 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 3152719, + "thread": 9 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 3392017, + "thread": 4 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 3569029, + "thread": 30 + } + }, + { + "amount": "161.603369433", + "slot": { + "period": 3724734, + "thread": 9 + } + }, + { + "amount": "161.603369430", + "slot": { + "period": 3835388, + "thread": 9 + } + } + ], + "AU1qFCy1xxCNmspSs51oWmLm1zG8QRPUha1tv1YrN3rfXo3eqq2Z": [ + { + "amount": "112.857722278", + "slot": { + "period": 159627, + "thread": 10 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 307567, + "thread": 0 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 377532, + "thread": 2 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 533143, + "thread": 19 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 746971, + "thread": 21 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 951588, + "thread": 21 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1044084, + "thread": 12 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1283102, + "thread": 14 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1419588, + "thread": 24 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1629556, + "thread": 22 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1802279, + "thread": 0 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 1943509, + "thread": 15 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2048919, + "thread": 25 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2154824, + "thread": 7 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2424389, + "thread": 22 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2604227, + "thread": 9 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2698916, + "thread": 1 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 2797668, + "thread": 14 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 3084528, + "thread": 6 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 3138749, + "thread": 25 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 3436321, + "thread": 10 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 3541090, + "thread": 19 + } + }, + { + "amount": "112.857722278", + "slot": { + "period": 3779302, + "thread": 29 + } + }, + { + "amount": "112.857722281", + "slot": { + "period": 3794208, + "thread": 5 + } + } + ], + "AU1qFEHwmCXVUz45Pj7dZrsyFG9gWyN85xWeicxMcMMqvmfSLEKj": [ + { + "amount": "126.700754103", + "slot": { + "period": 49297, + "thread": 8 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 183444, + "thread": 3 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 397588, + "thread": 22 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 534292, + "thread": 30 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 734464, + "thread": 27 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 864806, + "thread": 0 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1019748, + "thread": 0 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1251380, + "thread": 27 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1367675, + "thread": 9 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1493126, + "thread": 15 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1700217, + "thread": 4 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 1940862, + "thread": 30 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2048912, + "thread": 3 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2276456, + "thread": 15 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2376956, + "thread": 24 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2484272, + "thread": 26 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2669447, + "thread": 13 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 2935804, + "thread": 6 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 3008118, + "thread": 28 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 3284266, + "thread": 5 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 3438482, + "thread": 10 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 3609047, + "thread": 31 + } + }, + { + "amount": "126.700754103", + "slot": { + "period": 3741045, + "thread": 21 + } + }, + { + "amount": "126.700754104", + "slot": { + "period": 3920568, + "thread": 25 + } + } + ], + "AU1qFrzxFP55fMLzR83WBFySrdZqWfdyTj3czgrxzCEDL17fKU2Y": [ + { + "amount": "56.747048332", + "slot": { + "period": 164709, + "thread": 13 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 319687, + "thread": 0 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 403887, + "thread": 5 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 580962, + "thread": 28 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 751835, + "thread": 3 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 947449, + "thread": 16 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1116040, + "thread": 3 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1306652, + "thread": 25 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1340234, + "thread": 23 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1540003, + "thread": 23 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1760171, + "thread": 9 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 1854214, + "thread": 25 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2071074, + "thread": 11 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2219474, + "thread": 11 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2360877, + "thread": 16 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2624322, + "thread": 0 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2685345, + "thread": 4 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 2897571, + "thread": 6 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 3112192, + "thread": 24 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 3276218, + "thread": 23 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 3363668, + "thread": 1 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 3479227, + "thread": 12 + } + }, + { + "amount": "56.747048332", + "slot": { + "period": 3657567, + "thread": 7 + } + }, + { + "amount": "56.747048338", + "slot": { + "period": 3901667, + "thread": 3 + } + } + ], + "AU1qGXKukevr7F2ULqvjBttjXosqhK8RZ2tiUikscjp2jDnyVthL": [ + { + "amount": "60.809934863", + "slot": { + "period": 167015, + "thread": 25 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 237462, + "thread": 5 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 384541, + "thread": 20 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 501124, + "thread": 7 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 754357, + "thread": 5 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 884020, + "thread": 7 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1032402, + "thread": 18 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1217737, + "thread": 20 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1349086, + "thread": 31 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1527301, + "thread": 16 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1765139, + "thread": 13 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 1819700, + "thread": 24 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2022452, + "thread": 25 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2283733, + "thread": 20 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2319655, + "thread": 24 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2605731, + "thread": 30 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2641899, + "thread": 13 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2903875, + "thread": 9 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 2984522, + "thread": 3 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 3199155, + "thread": 29 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 3294371, + "thread": 6 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 3467188, + "thread": 30 + } + }, + { + "amount": "60.809934863", + "slot": { + "period": 3707429, + "thread": 24 + } + }, + { + "amount": "60.809934861", + "slot": { + "period": 3839707, + "thread": 10 + } + } + ], + "AU1qGXLxARQg7rVViiv1Ax6oUF4ki7f6K5YR28NYnVsUUsAeoNc2": [ + { + "amount": "240.879735831", + "slot": { + "period": 65044, + "thread": 6 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 204864, + "thread": 17 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 415059, + "thread": 19 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 513120, + "thread": 3 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 803032, + "thread": 26 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 906386, + "thread": 16 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1082178, + "thread": 28 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1280163, + "thread": 7 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1332819, + "thread": 14 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1558600, + "thread": 15 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1770741, + "thread": 2 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 1857544, + "thread": 28 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2044282, + "thread": 4 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2164425, + "thread": 27 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2324947, + "thread": 27 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2532136, + "thread": 28 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2729981, + "thread": 6 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 2821034, + "thread": 16 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 3028046, + "thread": 3 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 3209134, + "thread": 23 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 3419059, + "thread": 31 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 3607979, + "thread": 3 + } + }, + { + "amount": "240.879735831", + "slot": { + "period": 3690297, + "thread": 24 + } + }, + { + "amount": "240.879735839", + "slot": { + "period": 3911115, + "thread": 5 + } + } + ], + "AU1qGe6PGxa6YZPe28cfdX3gcUfZTwkmpwVkB42Z4XXSGjESnZjJ": [ + { + "amount": "277.751236576", + "slot": { + "period": 49812, + "thread": 22 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 229492, + "thread": 20 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 483492, + "thread": 26 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 607984, + "thread": 29 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 702187, + "thread": 30 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 884776, + "thread": 26 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1073878, + "thread": 19 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1155757, + "thread": 18 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1426634, + "thread": 0 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1502894, + "thread": 29 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1660351, + "thread": 11 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1884474, + "thread": 23 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 1993564, + "thread": 21 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 2184614, + "thread": 6 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 2380201, + "thread": 12 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 2563031, + "thread": 14 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 2696860, + "thread": 20 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 2892943, + "thread": 0 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 3090259, + "thread": 24 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 3140605, + "thread": 14 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 3338773, + "thread": 3 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 3477759, + "thread": 21 + } + }, + { + "amount": "277.751236576", + "slot": { + "period": 3657781, + "thread": 4 + } + }, + { + "amount": "277.751236583", + "slot": { + "period": 3852700, + "thread": 0 + } + } + ], + "AU1qGhSj5dHtyDwbiPeyg7KUKsh2BRVferaxacXGb2k6f8TP9uJr": [ + { + "amount": "85.906317404", + "slot": { + "period": 114557, + "thread": 0 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 278896, + "thread": 5 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 356224, + "thread": 29 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 562678, + "thread": 1 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 715948, + "thread": 11 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 901392, + "thread": 0 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1029585, + "thread": 12 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1203309, + "thread": 2 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1412188, + "thread": 0 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1537782, + "thread": 17 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1748384, + "thread": 4 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 1945065, + "thread": 21 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2043545, + "thread": 13 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2289218, + "thread": 22 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2394366, + "thread": 1 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2563513, + "thread": 22 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2683638, + "thread": 11 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 2921945, + "thread": 12 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 3047446, + "thread": 26 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 3182617, + "thread": 5 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 3357473, + "thread": 7 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 3549049, + "thread": 15 + } + }, + { + "amount": "85.906317404", + "slot": { + "period": 3658453, + "thread": 21 + } + }, + { + "amount": "85.906317401", + "slot": { + "period": 3931719, + "thread": 2 + } + } + ], + "AU1qH5H2RD2QzWB8nJr5M2fs3J3S2yKy9hRbzZ6VVWFbq8DQQNDQ": [ + { + "amount": "216.474181494", + "slot": { + "period": 106064, + "thread": 15 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 207058, + "thread": 31 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 489852, + "thread": 31 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 630255, + "thread": 31 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 769960, + "thread": 11 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 867256, + "thread": 2 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1043874, + "thread": 7 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1163913, + "thread": 29 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1464147, + "thread": 23 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1533317, + "thread": 16 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1769424, + "thread": 12 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 1937837, + "thread": 11 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2005061, + "thread": 10 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2239181, + "thread": 24 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2344092, + "thread": 15 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2579785, + "thread": 18 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2717261, + "thread": 2 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2870024, + "thread": 4 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 2981433, + "thread": 7 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 3215448, + "thread": 20 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 3447110, + "thread": 7 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 3608554, + "thread": 27 + } + }, + { + "amount": "216.474181494", + "slot": { + "period": 3727244, + "thread": 12 + } + }, + { + "amount": "216.474181500", + "slot": { + "period": 3876945, + "thread": 5 + } + } + ], + "AU1qJTU4FYJqkmu7BefJE8qzcGME5Wv1WsGriTpX6QS4nxvVtXGb": [ + { + "amount": "157.026160085", + "slot": { + "period": 62553, + "thread": 24 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 218642, + "thread": 21 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 467859, + "thread": 5 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 618151, + "thread": 28 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 816629, + "thread": 29 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 940475, + "thread": 6 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1092575, + "thread": 31 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1242073, + "thread": 0 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1351027, + "thread": 5 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1560354, + "thread": 16 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1721883, + "thread": 27 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 1946422, + "thread": 25 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2103775, + "thread": 16 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2192309, + "thread": 14 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2428772, + "thread": 22 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2559922, + "thread": 7 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2641459, + "thread": 2 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 2906564, + "thread": 22 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 3074140, + "thread": 1 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 3202907, + "thread": 30 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 3376200, + "thread": 12 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 3616516, + "thread": 18 + } + }, + { + "amount": "157.026160085", + "slot": { + "period": 3656345, + "thread": 0 + } + }, + { + "amount": "157.026160084", + "slot": { + "period": 3923952, + "thread": 21 + } + } + ], + "AU1qJzc912uP6m2XgmmUt6S6rHTht6s5vA2MtuYR7zMUBRxoqYw7": [ + { + "amount": "268.521098921", + "slot": { + "period": 77380, + "thread": 4 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 281552, + "thread": 14 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 334503, + "thread": 9 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 559567, + "thread": 0 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 806532, + "thread": 24 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 865745, + "thread": 31 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1138650, + "thread": 1 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1217399, + "thread": 8 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1335278, + "thread": 23 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1508933, + "thread": 29 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1792151, + "thread": 31 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 1884358, + "thread": 10 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2100688, + "thread": 20 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2227446, + "thread": 1 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2375564, + "thread": 29 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2486636, + "thread": 9 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2670649, + "thread": 10 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 2814194, + "thread": 17 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 3067517, + "thread": 9 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 3221876, + "thread": 24 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 3410711, + "thread": 11 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 3457505, + "thread": 30 + } + }, + { + "amount": "268.521098921", + "slot": { + "period": 3652888, + "thread": 8 + } + }, + { + "amount": "268.521098910", + "slot": { + "period": 3878735, + "thread": 17 + } + } + ], + "AU1qK6t855Td8MUSkRGjwDikT7QJBLoj1f6JCe5rQfT5zhii6n56": [ + { + "amount": "252.785638596", + "slot": { + "period": 132518, + "thread": 24 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 214147, + "thread": 29 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 422302, + "thread": 31 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 580415, + "thread": 12 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 798396, + "thread": 3 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 914740, + "thread": 22 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1134348, + "thread": 15 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1236647, + "thread": 23 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1412729, + "thread": 5 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1590839, + "thread": 5 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1761390, + "thread": 29 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 1941276, + "thread": 4 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2018818, + "thread": 20 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2243245, + "thread": 7 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2317230, + "thread": 21 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2606419, + "thread": 23 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2749586, + "thread": 15 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 2876892, + "thread": 25 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 3098387, + "thread": 9 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 3286227, + "thread": 13 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 3397065, + "thread": 1 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 3585665, + "thread": 30 + } + }, + { + "amount": "252.785638596", + "slot": { + "period": 3738519, + "thread": 5 + } + }, + { + "amount": "252.785638592", + "slot": { + "period": 3908848, + "thread": 28 + } + } + ], + "AU1qLdSFpHpwmjenVYfirczRJZuywWj4uYgNVX34taFcHBrxuhbA": [ + { + "amount": "268.602380301", + "slot": { + "period": 32099, + "thread": 5 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 294534, + "thread": 24 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 428519, + "thread": 30 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 601937, + "thread": 20 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 738432, + "thread": 6 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 873198, + "thread": 24 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 992196, + "thread": 23 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 1246349, + "thread": 14 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 1465382, + "thread": 1 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 1496749, + "thread": 5 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 1661162, + "thread": 27 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 1867888, + "thread": 7 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2006595, + "thread": 14 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2221020, + "thread": 29 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2412461, + "thread": 19 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2593937, + "thread": 16 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2673680, + "thread": 24 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 2922785, + "thread": 31 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 3017460, + "thread": 31 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 3250953, + "thread": 10 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 3387250, + "thread": 22 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 3557906, + "thread": 5 + } + }, + { + "amount": "268.602380301", + "slot": { + "period": 3708172, + "thread": 23 + } + }, + { + "amount": "268.602380296", + "slot": { + "period": 3864858, + "thread": 9 + } + } + ], + "AU1qLr3BQEPWpASwChGQQNFndGN8JBrB4pGipqNAw3W6tcfrbbq7": [ + { + "amount": "539.563283224", + "slot": { + "period": 163765, + "thread": 25 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 181924, + "thread": 16 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 413321, + "thread": 8 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 599719, + "thread": 6 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 675231, + "thread": 13 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 917311, + "thread": 29 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1009647, + "thread": 9 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1221680, + "thread": 30 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1372024, + "thread": 6 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1489423, + "thread": 5 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1778209, + "thread": 28 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 1816821, + "thread": 29 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2101727, + "thread": 15 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2220295, + "thread": 24 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2371690, + "thread": 20 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2593098, + "thread": 0 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2671742, + "thread": 27 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2939929, + "thread": 16 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 2994888, + "thread": 31 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 3261533, + "thread": 30 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 3299040, + "thread": 26 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 3475909, + "thread": 26 + } + }, + { + "amount": "539.563283224", + "slot": { + "period": 3640726, + "thread": 9 + } + }, + { + "amount": "539.563283227", + "slot": { + "period": 3872960, + "thread": 14 + } + } + ], + "AU1qLrSC7p5GpaD7kY6mV1Ji3qfqsD5JN4EcK8789AX3wfupTCL7": [ + { + "amount": "200.919082746", + "slot": { + "period": 130231, + "thread": 31 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 235896, + "thread": 12 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 483876, + "thread": 2 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 527243, + "thread": 7 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 802347, + "thread": 2 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 941498, + "thread": 7 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1009987, + "thread": 30 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1279930, + "thread": 16 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1479498, + "thread": 22 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1560467, + "thread": 29 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1783730, + "thread": 12 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 1813030, + "thread": 25 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2002046, + "thread": 30 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2209624, + "thread": 3 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2416146, + "thread": 26 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2484182, + "thread": 0 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2716657, + "thread": 12 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 2819814, + "thread": 13 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 3071075, + "thread": 28 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 3130012, + "thread": 12 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 3300694, + "thread": 18 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 3502673, + "thread": 5 + } + }, + { + "amount": "200.919082746", + "slot": { + "period": 3762354, + "thread": 19 + } + }, + { + "amount": "200.919082754", + "slot": { + "period": 3830846, + "thread": 16 + } + } + ], + "AU1qLrbaC4vWNRLvTaRFY9SBRe7oDcrVqXrjiJmuMFy4eBknBgMV": [ + { + "amount": "631.611787390", + "slot": { + "period": 13752, + "thread": 14 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 311414, + "thread": 16 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 337206, + "thread": 14 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 635319, + "thread": 3 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 693747, + "thread": 29 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 892177, + "thread": 30 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1076843, + "thread": 5 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1272392, + "thread": 22 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1348091, + "thread": 24 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1626183, + "thread": 8 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1768793, + "thread": 26 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 1883606, + "thread": 29 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2014298, + "thread": 19 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2185385, + "thread": 6 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2358624, + "thread": 23 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2497908, + "thread": 18 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2684554, + "thread": 27 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 2930367, + "thread": 30 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 3027182, + "thread": 10 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 3285317, + "thread": 1 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 3391597, + "thread": 26 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 3556221, + "thread": 13 + } + }, + { + "amount": "631.611787390", + "slot": { + "period": 3713824, + "thread": 24 + } + }, + { + "amount": "631.611787384", + "slot": { + "period": 3852110, + "thread": 17 + } + } + ], + "AU1qLtXCRQB2rVDBtv6zkbKaASnvX4dPbq5mHcLE24tsHh7RKqzS": [ + { + "amount": "59.930516542", + "slot": { + "period": 109848, + "thread": 16 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 302470, + "thread": 18 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 444168, + "thread": 12 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 622623, + "thread": 17 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 748049, + "thread": 4 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 884674, + "thread": 11 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1111598, + "thread": 14 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1154139, + "thread": 12 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1471616, + "thread": 21 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1546095, + "thread": 13 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1661171, + "thread": 13 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 1930172, + "thread": 22 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2017431, + "thread": 9 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2168021, + "thread": 9 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2324593, + "thread": 3 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2544027, + "thread": 26 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2777593, + "thread": 9 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2920653, + "thread": 10 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 2970669, + "thread": 28 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 3149309, + "thread": 21 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 3289740, + "thread": 25 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 3552558, + "thread": 12 + } + }, + { + "amount": "59.930516542", + "slot": { + "period": 3713163, + "thread": 4 + } + }, + { + "amount": "59.930516552", + "slot": { + "period": 3877982, + "thread": 26 + } + } + ], + "AU1qMUAU1qFbY2Sf9SnpVj11yVJh6FWUTy7vpJqVb1UTBibMcNb5": [ + { + "amount": "241.973621995", + "slot": { + "period": 124366, + "thread": 29 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 194123, + "thread": 21 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 371266, + "thread": 19 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 591809, + "thread": 27 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 772386, + "thread": 2 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 823038, + "thread": 19 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1044618, + "thread": 16 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1260515, + "thread": 0 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1350490, + "thread": 10 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1522817, + "thread": 24 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1681698, + "thread": 19 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 1927655, + "thread": 20 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2038174, + "thread": 29 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2233276, + "thread": 10 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2430155, + "thread": 28 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2477357, + "thread": 7 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2643032, + "thread": 0 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2886730, + "thread": 12 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 2973300, + "thread": 20 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 3152491, + "thread": 13 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 3382828, + "thread": 26 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 3611234, + "thread": 17 + } + }, + { + "amount": "241.973621995", + "slot": { + "period": 3652254, + "thread": 2 + } + }, + { + "amount": "241.973622000", + "slot": { + "period": 3924396, + "thread": 0 + } + } + ], + "AU1qMjBTh1hpPQaJc8ibbLgq1yJfaKZDr3X7oErL4bMNWpf4biq1": [ + { + "amount": "24978.333333333", + "slot": { + "period": 167065, + "thread": 23 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 287813, + "thread": 24 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 352687, + "thread": 15 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 539765, + "thread": 18 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 676790, + "thread": 0 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 947504, + "thread": 18 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1077607, + "thread": 25 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1233728, + "thread": 21 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1418523, + "thread": 25 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1494715, + "thread": 8 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1738746, + "thread": 19 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 1846438, + "thread": 24 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2125108, + "thread": 5 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2198666, + "thread": 1 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2342683, + "thread": 27 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2553316, + "thread": 27 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2781845, + "thread": 21 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 2950710, + "thread": 3 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 3116335, + "thread": 22 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 3235177, + "thread": 26 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 3350257, + "thread": 20 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 3591457, + "thread": 13 + } + }, + { + "amount": "24978.333333333", + "slot": { + "period": 3625426, + "thread": 28 + } + }, + { + "amount": "24978.333333341", + "slot": { + "period": 3856584, + "thread": 15 + } + } + ], + "AU1qNrU5BHfTSatZ1Bi5SSngCentfnpPaNedHuYEwdT1ZCMU69WB": [ + { + "amount": "67.774709167", + "slot": { + "period": 96333, + "thread": 2 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 202434, + "thread": 24 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 439431, + "thread": 0 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 639710, + "thread": 5 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 810138, + "thread": 17 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 886720, + "thread": 13 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1054915, + "thread": 15 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1196793, + "thread": 17 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1324508, + "thread": 19 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1618288, + "thread": 9 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1658117, + "thread": 12 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 1911628, + "thread": 11 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2024914, + "thread": 30 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2182177, + "thread": 25 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2445671, + "thread": 0 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2525729, + "thread": 1 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2700785, + "thread": 27 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 2941753, + "thread": 31 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 3047109, + "thread": 12 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 3157621, + "thread": 31 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 3381055, + "thread": 19 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 3606144, + "thread": 27 + } + }, + { + "amount": "67.774709167", + "slot": { + "period": 3752434, + "thread": 7 + } + }, + { + "amount": "67.774709175", + "slot": { + "period": 3934163, + "thread": 1 + } + } + ], + "AU1qP8BtfgfmSa692Eyos88dTTbPoHyMcAaYtUcabJyJfeVs5ryt": [ + { + "amount": "90.010324825", + "slot": { + "period": 89298, + "thread": 31 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 219455, + "thread": 15 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 480173, + "thread": 9 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 628494, + "thread": 8 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 775076, + "thread": 23 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 849339, + "thread": 24 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1102245, + "thread": 1 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1160522, + "thread": 6 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1342826, + "thread": 25 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1623673, + "thread": 24 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1718593, + "thread": 7 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 1928189, + "thread": 18 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2024199, + "thread": 17 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2205924, + "thread": 4 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2448885, + "thread": 10 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2580734, + "thread": 21 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2656099, + "thread": 10 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 2793739, + "thread": 9 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 3084866, + "thread": 20 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 3156172, + "thread": 28 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 3350362, + "thread": 25 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 3458339, + "thread": 4 + } + }, + { + "amount": "90.010324825", + "slot": { + "period": 3677890, + "thread": 19 + } + }, + { + "amount": "90.010324834", + "slot": { + "period": 3862795, + "thread": 19 + } + } + ], + "AU1qPwFXH61e1tAKMRLa9MKYGSf3PKpsYuEXtYxfGndsCzTnBKyG": [ + { + "amount": "358.349431539", + "slot": { + "period": 51024, + "thread": 30 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 268443, + "thread": 17 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 346133, + "thread": 12 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 530720, + "thread": 1 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 661983, + "thread": 27 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 949467, + "thread": 8 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1074407, + "thread": 19 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1192235, + "thread": 1 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1333672, + "thread": 13 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1590565, + "thread": 9 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1752608, + "thread": 19 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 1888413, + "thread": 6 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2094263, + "thread": 29 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2175762, + "thread": 28 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2383927, + "thread": 18 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2547121, + "thread": 24 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2696421, + "thread": 25 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 2894401, + "thread": 13 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 3038766, + "thread": 7 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 3259016, + "thread": 6 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 3297093, + "thread": 15 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 3598348, + "thread": 22 + } + }, + { + "amount": "358.349431539", + "slot": { + "period": 3664747, + "thread": 25 + } + }, + { + "amount": "358.349431535", + "slot": { + "period": 3835999, + "thread": 4 + } + } + ], + "AU1qQtj37arD8C6JxMVy3Cqsdv4WacE8T7kqiJ91bV3v1snEMywG": [ + { + "amount": "138.864799348", + "slot": { + "period": 157704, + "thread": 8 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 303543, + "thread": 30 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 357446, + "thread": 16 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 610571, + "thread": 0 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 699145, + "thread": 3 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 939232, + "thread": 28 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1029412, + "thread": 21 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1187102, + "thread": 14 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1378212, + "thread": 27 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1499760, + "thread": 18 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1769544, + "thread": 25 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 1937044, + "thread": 12 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2068216, + "thread": 22 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2254961, + "thread": 6 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2295592, + "thread": 24 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2480628, + "thread": 25 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2740809, + "thread": 2 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 2950652, + "thread": 9 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 3119700, + "thread": 14 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 3247263, + "thread": 3 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 3292131, + "thread": 26 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 3568575, + "thread": 4 + } + }, + { + "amount": "138.864799348", + "slot": { + "period": 3724946, + "thread": 26 + } + }, + { + "amount": "138.864799359", + "slot": { + "period": 3873534, + "thread": 18 + } + } + ], + "AU1qRHUEEAktphf4LeSjLbctBzQvvjYYWhFwukeHsoPhdHhcHWjn": [ + { + "amount": "243.082041004", + "slot": { + "period": 65189, + "thread": 11 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 202478, + "thread": 0 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 409730, + "thread": 22 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 501969, + "thread": 14 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 654204, + "thread": 22 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 933942, + "thread": 28 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1040237, + "thread": 31 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1262117, + "thread": 6 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1364085, + "thread": 16 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1493653, + "thread": 21 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1650328, + "thread": 11 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 1886513, + "thread": 15 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2015558, + "thread": 4 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2233817, + "thread": 25 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2330367, + "thread": 2 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2513402, + "thread": 17 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2786248, + "thread": 20 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 2835985, + "thread": 29 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 3019270, + "thread": 16 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 3126562, + "thread": 8 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 3310335, + "thread": 2 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 3465610, + "thread": 14 + } + }, + { + "amount": "243.082041004", + "slot": { + "period": 3738618, + "thread": 4 + } + }, + { + "amount": "243.082041011", + "slot": { + "period": 3892719, + "thread": 24 + } + } + ], + "AU1qRh8mBPYDiawJgWaa52vMWb2eoFhqiXKfKscCAfA7a2tC9Gp": [ + { + "amount": "150.625614725", + "slot": { + "period": 145125, + "thread": 2 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 258362, + "thread": 25 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 442612, + "thread": 3 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 523547, + "thread": 2 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 668421, + "thread": 3 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 848025, + "thread": 20 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1053793, + "thread": 4 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1281124, + "thread": 16 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1442288, + "thread": 20 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1533509, + "thread": 29 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1721665, + "thread": 11 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 1906288, + "thread": 31 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2002658, + "thread": 5 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2185442, + "thread": 27 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2373800, + "thread": 7 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2556813, + "thread": 26 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2717411, + "thread": 24 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 2868075, + "thread": 16 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 3080821, + "thread": 30 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 3266297, + "thread": 19 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 3349379, + "thread": 14 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 3472563, + "thread": 19 + } + }, + { + "amount": "150.625614725", + "slot": { + "period": 3723209, + "thread": 11 + } + }, + { + "amount": "150.625614714", + "slot": { + "period": 3870510, + "thread": 29 + } + } + ], + "AU1qS12ur8LSabiu1B6vFoDyNdFjmPrJSBuyZTvMu6hQzmcz9k6m": [ + { + "amount": "597.131173527", + "slot": { + "period": 38267, + "thread": 14 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 287931, + "thread": 25 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 436782, + "thread": 24 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 631245, + "thread": 29 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 748587, + "thread": 21 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 841225, + "thread": 20 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1059889, + "thread": 11 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1157293, + "thread": 0 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1383991, + "thread": 21 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1536241, + "thread": 28 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1713315, + "thread": 4 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 1876114, + "thread": 11 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2138602, + "thread": 23 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2292354, + "thread": 5 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2410368, + "thread": 31 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2492304, + "thread": 21 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2695493, + "thread": 5 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 2909471, + "thread": 29 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 3041540, + "thread": 12 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 3254414, + "thread": 16 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 3372224, + "thread": 25 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 3506684, + "thread": 11 + } + }, + { + "amount": "597.131173527", + "slot": { + "period": 3766694, + "thread": 2 + } + }, + { + "amount": "597.131173525", + "slot": { + "period": 3900196, + "thread": 30 + } + } + ], + "AU1qSXynKtAJN2qx43NXdtkKQLz52GLtmG3YoH8YV5pHu6CtWf29": [ + { + "amount": "171.466614411", + "slot": { + "period": 62903, + "thread": 11 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 249148, + "thread": 2 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 450099, + "thread": 3 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 574900, + "thread": 17 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 817860, + "thread": 14 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 847964, + "thread": 8 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1054711, + "thread": 5 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1204073, + "thread": 20 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1323076, + "thread": 12 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1572495, + "thread": 29 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1762323, + "thread": 26 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 1826703, + "thread": 16 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2107701, + "thread": 30 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2188978, + "thread": 25 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2398437, + "thread": 22 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2561292, + "thread": 14 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2727211, + "thread": 1 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 2811874, + "thread": 0 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3005090, + "thread": 1 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3227635, + "thread": 31 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3358456, + "thread": 20 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3576443, + "thread": 21 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3700569, + "thread": 28 + } + }, + { + "amount": "171.466614411", + "slot": { + "period": 3855400, + "thread": 9 + } + } + ], + "AU1qSaLM1nBjTLvEnEPixkmcZjTfRXnVvSxWuinHx99sze4ZCxhG": [ + { + "amount": "217.088135384", + "slot": { + "period": 121414, + "thread": 9 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 251660, + "thread": 29 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 451053, + "thread": 3 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 633138, + "thread": 16 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 693704, + "thread": 30 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 879541, + "thread": 31 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1132450, + "thread": 29 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1244965, + "thread": 21 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1423007, + "thread": 5 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1515795, + "thread": 1 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1703888, + "thread": 6 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 1857917, + "thread": 13 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2013555, + "thread": 17 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2269582, + "thread": 18 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2393852, + "thread": 7 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2501157, + "thread": 10 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2731131, + "thread": 15 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 2928733, + "thread": 1 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 3069167, + "thread": 7 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 3154479, + "thread": 0 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 3326605, + "thread": 3 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 3579847, + "thread": 23 + } + }, + { + "amount": "217.088135384", + "slot": { + "period": 3648597, + "thread": 15 + } + }, + { + "amount": "217.088135378", + "slot": { + "period": 3916186, + "thread": 12 + } + } + ], + "AU1qSz6K9y5hA6pNdsa5wDGPqPLgm8YAmS5aMVoqQF8JoPNao1xW": [ + { + "amount": "139.669080618", + "slot": { + "period": 135596, + "thread": 30 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 246570, + "thread": 5 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 371908, + "thread": 17 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 498388, + "thread": 30 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 757952, + "thread": 1 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 867199, + "thread": 18 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1013701, + "thread": 18 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1300419, + "thread": 6 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1452738, + "thread": 25 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1559080, + "thread": 22 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1705158, + "thread": 9 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 1886171, + "thread": 19 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2027341, + "thread": 26 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2239055, + "thread": 7 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2326405, + "thread": 17 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2536129, + "thread": 7 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2663593, + "thread": 13 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2848913, + "thread": 12 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 2994677, + "thread": 27 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 3169371, + "thread": 17 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 3295755, + "thread": 12 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 3544389, + "thread": 24 + } + }, + { + "amount": "139.669080618", + "slot": { + "period": 3663763, + "thread": 5 + } + }, + { + "amount": "139.669080615", + "slot": { + "period": 3799885, + "thread": 29 + } + } + ], + "AU1qTQ24qdwEBP2BLKtNsUuh8vqkiE7z7ejKTWPu7hji44Gvh9hD": [ + { + "amount": "153.068317148", + "slot": { + "period": 28036, + "thread": 21 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 239604, + "thread": 30 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 405391, + "thread": 20 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 491963, + "thread": 28 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 671818, + "thread": 26 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 875511, + "thread": 7 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1005012, + "thread": 21 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1184775, + "thread": 10 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1325579, + "thread": 10 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1632733, + "thread": 10 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1718310, + "thread": 21 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 1822441, + "thread": 3 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2070243, + "thread": 0 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2235540, + "thread": 0 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2454217, + "thread": 12 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2570610, + "thread": 10 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2746782, + "thread": 9 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 2821741, + "thread": 14 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 3036425, + "thread": 30 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 3196163, + "thread": 30 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 3436063, + "thread": 19 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 3518495, + "thread": 5 + } + }, + { + "amount": "153.068317148", + "slot": { + "period": 3650674, + "thread": 7 + } + }, + { + "amount": "153.068317154", + "slot": { + "period": 3863215, + "thread": 20 + } + } + ], + "AU1qTnqAB9Nu1v4t649dZGBxAgw9jntBkFo9thor93xiRGLKyvTv": [ + { + "amount": "168.964432579", + "slot": { + "period": 21683, + "thread": 15 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 310634, + "thread": 31 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 327993, + "thread": 19 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 640687, + "thread": 8 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 765007, + "thread": 3 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 974951, + "thread": 23 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1119338, + "thread": 28 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1262603, + "thread": 31 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1325726, + "thread": 28 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1590351, + "thread": 6 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1777137, + "thread": 7 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 1943695, + "thread": 15 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2015082, + "thread": 22 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2217009, + "thread": 14 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2439297, + "thread": 6 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2567345, + "thread": 26 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2630740, + "thread": 8 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 2917288, + "thread": 1 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 3050890, + "thread": 17 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 3180336, + "thread": 19 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 3292187, + "thread": 24 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 3615881, + "thread": 0 + } + }, + { + "amount": "168.964432579", + "slot": { + "period": 3748169, + "thread": 31 + } + }, + { + "amount": "168.964432584", + "slot": { + "period": 3830884, + "thread": 12 + } + } + ], + "AU1qUkynDDTbNC2K7M1HsraCHmghkXqdxzVDy65PjoDHeiZa3h85": [ + { + "amount": "215.584660647", + "slot": { + "period": 105659, + "thread": 14 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 313166, + "thread": 3 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 341041, + "thread": 11 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 605036, + "thread": 25 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 796464, + "thread": 27 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 925021, + "thread": 1 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1046758, + "thread": 14 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1273855, + "thread": 12 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1450798, + "thread": 4 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1621167, + "thread": 16 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1781217, + "thread": 26 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 1961338, + "thread": 8 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2038471, + "thread": 27 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2268667, + "thread": 1 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2402342, + "thread": 27 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2567836, + "thread": 1 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2634147, + "thread": 28 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 2815912, + "thread": 2 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 3016054, + "thread": 15 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 3266523, + "thread": 22 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 3382056, + "thread": 16 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 3480084, + "thread": 13 + } + }, + { + "amount": "215.584660647", + "slot": { + "period": 3724045, + "thread": 7 + } + }, + { + "amount": "215.584660652", + "slot": { + "period": 3859822, + "thread": 11 + } + } + ], + "AU1qVa8ArZ9HC6QiiEHJ55PhMUBiKQGeUA5GRJ9DnvmoFqXNw5sM": [ + { + "amount": "236.865138371", + "slot": { + "period": 65830, + "thread": 3 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 278218, + "thread": 20 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 473187, + "thread": 10 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 611400, + "thread": 13 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 770092, + "thread": 3 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 902023, + "thread": 13 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1147219, + "thread": 12 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1200035, + "thread": 12 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1472083, + "thread": 11 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1533986, + "thread": 16 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1776272, + "thread": 25 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 1860263, + "thread": 29 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2009150, + "thread": 31 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2294438, + "thread": 14 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2392212, + "thread": 15 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2582465, + "thread": 29 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2747556, + "thread": 21 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 2925112, + "thread": 12 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 3042584, + "thread": 14 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 3135026, + "thread": 25 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 3320019, + "thread": 29 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 3490855, + "thread": 27 + } + }, + { + "amount": "236.865138371", + "slot": { + "period": 3688002, + "thread": 11 + } + }, + { + "amount": "236.865138378", + "slot": { + "period": 3921406, + "thread": 2 + } + } + ], + "AU1qVifmijR16fYegPaVg8BQXuNcdYzKqdkzNotefaApv551Syxu": [ + { + "amount": "287.648494555", + "slot": { + "period": 45951, + "thread": 0 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 319769, + "thread": 3 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 351302, + "thread": 5 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 639443, + "thread": 17 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 674585, + "thread": 30 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 879767, + "thread": 28 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1023787, + "thread": 11 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1156804, + "thread": 28 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1434406, + "thread": 3 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1529253, + "thread": 6 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1671534, + "thread": 19 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 1890825, + "thread": 1 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2000683, + "thread": 26 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2256210, + "thread": 15 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2340202, + "thread": 6 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2596700, + "thread": 28 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2784143, + "thread": 18 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2835685, + "thread": 6 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 2953847, + "thread": 1 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 3236689, + "thread": 31 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 3386517, + "thread": 4 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 3608896, + "thread": 18 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 3776691, + "thread": 20 + } + }, + { + "amount": "287.648494555", + "slot": { + "period": 3814967, + "thread": 7 + } + } + ], + "AU1qX5HC29Vrfvp2Mf88v8dGL8ufHyrQWvxqLkq2uhyNCvSyux4d": [ + { + "amount": "104.443260293", + "slot": { + "period": 137826, + "thread": 1 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 313167, + "thread": 31 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 330560, + "thread": 12 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 619208, + "thread": 2 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 697238, + "thread": 2 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 894334, + "thread": 29 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1017601, + "thread": 15 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1284151, + "thread": 4 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1384902, + "thread": 22 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1604340, + "thread": 13 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1761691, + "thread": 28 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 1837847, + "thread": 27 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2128475, + "thread": 1 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2176010, + "thread": 17 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2303683, + "thread": 9 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2583417, + "thread": 23 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2710664, + "thread": 8 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2810881, + "thread": 17 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 2996421, + "thread": 24 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 3226254, + "thread": 13 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 3428481, + "thread": 22 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 3553852, + "thread": 8 + } + }, + { + "amount": "104.443260293", + "slot": { + "period": 3715399, + "thread": 14 + } + }, + { + "amount": "104.443260287", + "slot": { + "period": 3805250, + "thread": 25 + } + } + ], + "AU1qXfYMZCPu8drcLcUiYRG4Jj15hNTdBAhyJJsPtCexjWPeNkZX": [ + { + "amount": "205.299313346", + "slot": { + "period": 32798, + "thread": 0 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 202181, + "thread": 25 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 361349, + "thread": 17 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 500709, + "thread": 23 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 723698, + "thread": 6 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 972133, + "thread": 29 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1081032, + "thread": 30 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1281781, + "thread": 31 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1447033, + "thread": 9 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1642682, + "thread": 17 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1699324, + "thread": 17 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 1908984, + "thread": 6 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2024269, + "thread": 21 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2284988, + "thread": 22 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2409813, + "thread": 10 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2585688, + "thread": 23 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2631223, + "thread": 31 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2846997, + "thread": 10 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 2995937, + "thread": 27 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 3175549, + "thread": 1 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 3356630, + "thread": 17 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 3595788, + "thread": 13 + } + }, + { + "amount": "205.299313346", + "slot": { + "period": 3772674, + "thread": 0 + } + }, + { + "amount": "205.299313338", + "slot": { + "period": 3842264, + "thread": 21 + } + } + ], + "AU1qXnikqeuqVuwFh59LdnAP9nCuDLpZcrzqC69EhtU1TKXXYSck": [ + { + "amount": "429.027904934", + "slot": { + "period": 45899, + "thread": 27 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 319810, + "thread": 19 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 344713, + "thread": 2 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 606923, + "thread": 29 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 739437, + "thread": 16 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 826722, + "thread": 10 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1012535, + "thread": 16 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1267437, + "thread": 29 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1460696, + "thread": 14 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1629060, + "thread": 0 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1712540, + "thread": 16 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 1814320, + "thread": 7 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2046751, + "thread": 31 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2254580, + "thread": 16 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2309461, + "thread": 1 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2579861, + "thread": 23 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2654240, + "thread": 4 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 2860830, + "thread": 29 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 3083063, + "thread": 9 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 3153201, + "thread": 8 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 3309412, + "thread": 30 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 3464631, + "thread": 17 + } + }, + { + "amount": "429.027904934", + "slot": { + "period": 3777390, + "thread": 20 + } + }, + { + "amount": "429.027904928", + "slot": { + "period": 3798857, + "thread": 0 + } + } + ], + "AU1qYVR7UQYXCJTvWmZX3C8QqauL21FUmS5EsdbBzfu7b2YCRNCc": [ + { + "amount": "145.770912189", + "slot": { + "period": 116523, + "thread": 8 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 316605, + "thread": 15 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 361227, + "thread": 19 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 539631, + "thread": 28 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 690949, + "thread": 9 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 868390, + "thread": 16 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 988403, + "thread": 4 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1237841, + "thread": 30 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1351137, + "thread": 12 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1622294, + "thread": 29 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1708465, + "thread": 14 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1809827, + "thread": 23 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 1994479, + "thread": 18 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 2294524, + "thread": 9 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 2381244, + "thread": 8 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 2481057, + "thread": 23 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 2749838, + "thread": 3 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 2843750, + "thread": 28 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 3050030, + "thread": 5 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 3169943, + "thread": 13 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 3331908, + "thread": 22 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 3504291, + "thread": 28 + } + }, + { + "amount": "145.770912189", + "slot": { + "period": 3648805, + "thread": 16 + } + }, + { + "amount": "145.770912180", + "slot": { + "period": 3943912, + "thread": 0 + } + } + ], + "AU1qZjWrmUn1DeDbXEJJm31b6ZznxWfupZ4ptGbo9CfZGrKivfU6": [ + { + "amount": "455.504248912", + "slot": { + "period": 142111, + "thread": 2 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 303035, + "thread": 11 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 364270, + "thread": 4 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 517573, + "thread": 0 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 709053, + "thread": 28 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 833512, + "thread": 30 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1084041, + "thread": 10 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1177837, + "thread": 10 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1356883, + "thread": 3 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1569132, + "thread": 4 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1702892, + "thread": 13 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 1846927, + "thread": 4 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2026439, + "thread": 12 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2169579, + "thread": 20 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2429544, + "thread": 13 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2562921, + "thread": 14 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2669520, + "thread": 3 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 2893124, + "thread": 27 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 3084895, + "thread": 15 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 3220290, + "thread": 14 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 3429640, + "thread": 29 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 3507419, + "thread": 5 + } + }, + { + "amount": "455.504248912", + "slot": { + "period": 3779056, + "thread": 30 + } + }, + { + "amount": "455.504248923", + "slot": { + "period": 3936325, + "thread": 12 + } + } + ], + "AU1qZoU899uoASSn7GArU6ToY9gPdVNBhNxUeWwttrvyPYD3Q8Ep": [ + { + "amount": "302.778999727", + "slot": { + "period": 88405, + "thread": 1 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 169061, + "thread": 14 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 435166, + "thread": 0 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 525652, + "thread": 20 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 704521, + "thread": 18 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 847299, + "thread": 9 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1048856, + "thread": 5 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1180038, + "thread": 19 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1346911, + "thread": 13 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1621478, + "thread": 3 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1722820, + "thread": 22 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 1891934, + "thread": 5 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2092345, + "thread": 15 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2279624, + "thread": 24 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2438544, + "thread": 21 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2610003, + "thread": 2 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2628310, + "thread": 16 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 2873084, + "thread": 19 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 3029161, + "thread": 15 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 3163984, + "thread": 9 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 3368716, + "thread": 4 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 3499505, + "thread": 28 + } + }, + { + "amount": "302.778999727", + "slot": { + "period": 3641693, + "thread": 22 + } + }, + { + "amount": "302.778999737", + "slot": { + "period": 3875282, + "thread": 28 + } + } + ], + "AU1qaBVDF9zd7xXhNNyH1UWeUXbBP16feUhU3Rhv814b6wM7ZqG4": [ + { + "amount": "214.546808727", + "slot": { + "period": 54811, + "thread": 12 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 180187, + "thread": 5 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 341180, + "thread": 15 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 546501, + "thread": 20 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 686104, + "thread": 31 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 937156, + "thread": 20 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1077314, + "thread": 20 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1266465, + "thread": 20 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1460626, + "thread": 21 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1645387, + "thread": 13 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1733799, + "thread": 22 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 1889246, + "thread": 11 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2094561, + "thread": 1 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2220921, + "thread": 2 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2317787, + "thread": 9 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2521123, + "thread": 28 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2717210, + "thread": 26 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 2945016, + "thread": 22 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 3007454, + "thread": 11 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 3240604, + "thread": 14 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 3417267, + "thread": 15 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 3495266, + "thread": 9 + } + }, + { + "amount": "214.546808727", + "slot": { + "period": 3676396, + "thread": 18 + } + }, + { + "amount": "214.546808731", + "slot": { + "period": 3863673, + "thread": 23 + } + } + ], + "AU1qb1B2pyWHQArj9TJY1NvUXWL2tCSWC1vxNQQUDFUVQceb21CX": [ + { + "amount": "254.811457643", + "slot": { + "period": 57706, + "thread": 0 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 244813, + "thread": 26 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 473353, + "thread": 28 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 603259, + "thread": 25 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 667179, + "thread": 16 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 966626, + "thread": 11 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1062949, + "thread": 2 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1180752, + "thread": 16 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1363458, + "thread": 21 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1557451, + "thread": 10 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1728656, + "thread": 14 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 1850844, + "thread": 7 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2142937, + "thread": 22 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2190709, + "thread": 23 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2305661, + "thread": 3 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2596922, + "thread": 2 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2689204, + "thread": 3 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2908738, + "thread": 20 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 2965216, + "thread": 26 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 3212741, + "thread": 21 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 3325130, + "thread": 31 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 3578601, + "thread": 5 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 3751169, + "thread": 26 + } + }, + { + "amount": "254.811457643", + "slot": { + "period": 3833712, + "thread": 9 + } + } + ], + "AU1qbozKDzDsikk4wDoPKcSVf3a8dn1CmHnpntBS8bPMmNB2zVRK": [ + { + "amount": "208.834303757", + "slot": { + "period": 61980, + "thread": 2 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 315672, + "thread": 16 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 362524, + "thread": 14 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 538530, + "thread": 26 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 775982, + "thread": 14 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 973356, + "thread": 24 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1036510, + "thread": 18 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1311707, + "thread": 20 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1370122, + "thread": 8 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1511923, + "thread": 18 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1736029, + "thread": 24 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 1871045, + "thread": 15 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2100272, + "thread": 17 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2272213, + "thread": 27 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2341534, + "thread": 19 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2610620, + "thread": 0 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2641378, + "thread": 15 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 2797281, + "thread": 17 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 3096997, + "thread": 24 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 3281901, + "thread": 19 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 3300397, + "thread": 5 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 3492277, + "thread": 28 + } + }, + { + "amount": "208.834303757", + "slot": { + "period": 3620918, + "thread": 22 + } + }, + { + "amount": "208.834303766", + "slot": { + "period": 3880771, + "thread": 28 + } + } + ], + "AU1qd7cvJdh6XyaYMv9D3YfHCeg8h7hxL6M3qcF6evrgUJh4Gy67": [ + { + "amount": "436.689378545", + "slot": { + "period": 11475, + "thread": 11 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 252574, + "thread": 0 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 486577, + "thread": 20 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 570673, + "thread": 24 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 779707, + "thread": 15 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 948887, + "thread": 19 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1137737, + "thread": 31 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1247345, + "thread": 25 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1428529, + "thread": 30 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1502215, + "thread": 1 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1697445, + "thread": 25 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 1826249, + "thread": 19 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2077955, + "thread": 2 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2178143, + "thread": 23 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2414439, + "thread": 26 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2540589, + "thread": 9 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2658774, + "thread": 19 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 2902183, + "thread": 0 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 3010972, + "thread": 19 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 3267779, + "thread": 5 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 3416791, + "thread": 7 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 3478135, + "thread": 26 + } + }, + { + "amount": "436.689378545", + "slot": { + "period": 3636098, + "thread": 12 + } + }, + { + "amount": "436.689378539", + "slot": { + "period": 3896303, + "thread": 5 + } + } + ], + "AU1qdmkHZV4qAwPJSG7MHM2v2UydVoyY4Ky2wEQnHPKBG4aTiQEM": [ + { + "amount": "80.658983890", + "slot": { + "period": 21646, + "thread": 1 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 196463, + "thread": 26 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 362266, + "thread": 19 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 628718, + "thread": 8 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 719833, + "thread": 11 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 826445, + "thread": 11 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1009166, + "thread": 25 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1282105, + "thread": 4 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1476126, + "thread": 24 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1563498, + "thread": 9 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1656947, + "thread": 29 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 1856498, + "thread": 6 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2028464, + "thread": 12 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2220088, + "thread": 0 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2384421, + "thread": 25 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2567954, + "thread": 22 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2787842, + "thread": 18 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 2807618, + "thread": 26 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 3025135, + "thread": 19 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 3132580, + "thread": 22 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 3373269, + "thread": 14 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 3539544, + "thread": 7 + } + }, + { + "amount": "80.658983890", + "slot": { + "period": 3743026, + "thread": 29 + } + }, + { + "amount": "80.658983901", + "slot": { + "period": 3843575, + "thread": 5 + } + } + ], + "AU1qdmniYBm2eNFhMgJVuzjzLMadYKACyJZMZrAv4hfoKkLNVGgy": [ + { + "amount": "385.320826340", + "slot": { + "period": 37075, + "thread": 6 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 216273, + "thread": 2 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 449795, + "thread": 2 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 563182, + "thread": 22 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 713783, + "thread": 6 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 936657, + "thread": 10 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 989698, + "thread": 15 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 1190573, + "thread": 19 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 1389110, + "thread": 24 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 1587114, + "thread": 17 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 1755946, + "thread": 19 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 1841363, + "thread": 17 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2101443, + "thread": 30 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2209118, + "thread": 5 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2451798, + "thread": 15 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2608517, + "thread": 21 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2737312, + "thread": 7 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 2815789, + "thread": 22 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 3018084, + "thread": 28 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 3175539, + "thread": 12 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 3395531, + "thread": 28 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 3509883, + "thread": 14 + } + }, + { + "amount": "385.320826340", + "slot": { + "period": 3690256, + "thread": 24 + } + }, + { + "amount": "385.320826333", + "slot": { + "period": 3808866, + "thread": 24 + } + } + ], + "AU1qe2NPS6KEoecmXTCau6ovY9pLvwzn5m9JN9PJ3nq6fcRqEC3V": [ + { + "amount": "65.045737981", + "slot": { + "period": 12198, + "thread": 6 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 249628, + "thread": 12 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 490286, + "thread": 23 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 642562, + "thread": 16 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 684119, + "thread": 22 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 827793, + "thread": 2 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1015076, + "thread": 5 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1277929, + "thread": 1 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1471951, + "thread": 14 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1526814, + "thread": 25 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1710859, + "thread": 26 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 1869451, + "thread": 13 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2031739, + "thread": 7 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2176624, + "thread": 12 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2353351, + "thread": 30 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2590869, + "thread": 31 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2775657, + "thread": 3 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 2860526, + "thread": 25 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 3018541, + "thread": 9 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 3236947, + "thread": 4 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 3402398, + "thread": 4 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 3563443, + "thread": 31 + } + }, + { + "amount": "65.045737981", + "slot": { + "period": 3769014, + "thread": 11 + } + }, + { + "amount": "65.045737970", + "slot": { + "period": 3810010, + "thread": 29 + } + } + ], + "AU1qeHmtky2DkQurhv6td6LqCtYediNRjSRoUkGmpd7wyF4Eof5s": [ + { + "amount": "89.439086946", + "slot": { + "period": 67155, + "thread": 29 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 241093, + "thread": 29 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 391698, + "thread": 25 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 584927, + "thread": 31 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 694985, + "thread": 11 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 924438, + "thread": 14 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1003646, + "thread": 19 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1227646, + "thread": 11 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1337877, + "thread": 11 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1624935, + "thread": 28 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1705906, + "thread": 15 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1915280, + "thread": 7 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 1997689, + "thread": 11 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 2274227, + "thread": 9 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 2435230, + "thread": 19 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 2532470, + "thread": 16 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 2637521, + "thread": 13 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 2792129, + "thread": 4 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 3013699, + "thread": 22 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 3199032, + "thread": 0 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 3309819, + "thread": 21 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 3508695, + "thread": 2 + } + }, + { + "amount": "89.439086946", + "slot": { + "period": 3669565, + "thread": 20 + } + }, + { + "amount": "89.439086935", + "slot": { + "period": 3936120, + "thread": 4 + } + } + ], + "AU1qf4KMtPgRz3ch3Rh4AeEqn74RMq5KUxcA2Dwiu31pwhRzBRau": [ + { + "amount": "626.725901408", + "slot": { + "period": 48345, + "thread": 3 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 178390, + "thread": 23 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 395333, + "thread": 20 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 576060, + "thread": 5 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 782612, + "thread": 27 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 895840, + "thread": 30 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1081619, + "thread": 1 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1296478, + "thread": 25 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1383525, + "thread": 10 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1568309, + "thread": 19 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1793813, + "thread": 21 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 1878997, + "thread": 6 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2018668, + "thread": 13 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2235346, + "thread": 10 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2350019, + "thread": 18 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2586991, + "thread": 16 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2772012, + "thread": 5 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 2796266, + "thread": 28 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 3051028, + "thread": 3 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 3225945, + "thread": 25 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 3405748, + "thread": 28 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 3598985, + "thread": 18 + } + }, + { + "amount": "626.725901408", + "slot": { + "period": 3639056, + "thread": 5 + } + }, + { + "amount": "626.725901410", + "slot": { + "period": 3914041, + "thread": 4 + } + } + ], + "AU1qfJsz9XrZ6xP1dHD8UzVeTVBF43FmKhP1oVsTpUmD7GUdpSJL": [ + { + "amount": "383.773832068", + "slot": { + "period": 84359, + "thread": 24 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 323702, + "thread": 4 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 398795, + "thread": 24 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 530282, + "thread": 1 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 816781, + "thread": 6 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 869465, + "thread": 19 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1148673, + "thread": 23 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1161755, + "thread": 19 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1390282, + "thread": 20 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1527580, + "thread": 25 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1705511, + "thread": 26 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 1871601, + "thread": 31 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2118083, + "thread": 30 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2277752, + "thread": 10 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2325435, + "thread": 8 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2575641, + "thread": 27 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2653357, + "thread": 22 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 2836462, + "thread": 20 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 3038942, + "thread": 23 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 3138638, + "thread": 4 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 3354643, + "thread": 16 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 3518861, + "thread": 4 + } + }, + { + "amount": "383.773832068", + "slot": { + "period": 3763553, + "thread": 25 + } + }, + { + "amount": "383.773832071", + "slot": { + "period": 3802006, + "thread": 26 + } + } + ], + "AU1qhQPbacMqxKo1Nnz224M3upB7NU6Udj8j5GhNCsdRMEiCJeSb": [ + { + "amount": "285.237388432", + "slot": { + "period": 126157, + "thread": 29 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 169179, + "thread": 5 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 466675, + "thread": 18 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 587001, + "thread": 29 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 733529, + "thread": 5 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 838751, + "thread": 2 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1140522, + "thread": 30 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1178089, + "thread": 0 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1391599, + "thread": 25 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1504873, + "thread": 2 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1800652, + "thread": 19 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 1839027, + "thread": 24 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2106387, + "thread": 0 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2207193, + "thread": 26 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2404198, + "thread": 16 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2512616, + "thread": 12 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2730478, + "thread": 18 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 2853385, + "thread": 26 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 3029196, + "thread": 28 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 3144071, + "thread": 0 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 3422454, + "thread": 24 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 3612924, + "thread": 26 + } + }, + { + "amount": "285.237388432", + "slot": { + "period": 3713676, + "thread": 31 + } + }, + { + "amount": "285.237388436", + "slot": { + "period": 3938054, + "thread": 3 + } + } + ], + "AU1qhVtbst7NJEEZSoMNS5WXvzHwXnQyB66CwKbySh58GgUS8YCE": [ + { + "amount": "94.214173571", + "slot": { + "period": 141619, + "thread": 1 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 266175, + "thread": 31 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 432257, + "thread": 15 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 554467, + "thread": 21 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 768034, + "thread": 24 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 836678, + "thread": 13 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1119222, + "thread": 7 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1276762, + "thread": 17 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1406511, + "thread": 10 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1540400, + "thread": 10 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1770560, + "thread": 17 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 1886089, + "thread": 17 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2098951, + "thread": 23 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2167857, + "thread": 19 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2461827, + "thread": 6 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2506512, + "thread": 6 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2750691, + "thread": 7 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 2864140, + "thread": 19 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 3091303, + "thread": 24 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 3126995, + "thread": 29 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 3435496, + "thread": 25 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 3570221, + "thread": 30 + } + }, + { + "amount": "94.214173571", + "slot": { + "period": 3707712, + "thread": 21 + } + }, + { + "amount": "94.214173561", + "slot": { + "period": 3931518, + "thread": 26 + } + } + ], + "AU1qi3FDbBTjWZJXFXukxviSUeNnETEa4uxcjxxCLsEX75tUCgpS": [ + { + "amount": "78.311674149", + "slot": { + "period": 30784, + "thread": 28 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 263889, + "thread": 27 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 373097, + "thread": 23 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 589987, + "thread": 25 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 806053, + "thread": 17 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 884693, + "thread": 25 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1047698, + "thread": 2 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1225953, + "thread": 20 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1466480, + "thread": 22 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1533163, + "thread": 31 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1698063, + "thread": 2 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 1880272, + "thread": 16 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2073424, + "thread": 22 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2264665, + "thread": 15 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2298383, + "thread": 17 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2557556, + "thread": 23 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2707948, + "thread": 2 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2890319, + "thread": 5 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 2964022, + "thread": 6 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 3286894, + "thread": 19 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 3319191, + "thread": 9 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 3486495, + "thread": 2 + } + }, + { + "amount": "78.311674149", + "slot": { + "period": 3708071, + "thread": 9 + } + }, + { + "amount": "78.311674152", + "slot": { + "period": 3890157, + "thread": 17 + } + } + ], + "AU1qk4dM8gxMAEG65wHNrwMxx1o1NvsQ5PZVo5D1TCNCM5Kjc1dH": [ + { + "amount": "84.532817012", + "slot": { + "period": 145147, + "thread": 23 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 228710, + "thread": 11 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 432968, + "thread": 31 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 603572, + "thread": 29 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 714839, + "thread": 28 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 921830, + "thread": 29 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1130729, + "thread": 1 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1304761, + "thread": 27 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1320202, + "thread": 0 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1516912, + "thread": 10 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1788546, + "thread": 18 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 1886300, + "thread": 27 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2092515, + "thread": 24 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2161524, + "thread": 15 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2419067, + "thread": 10 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2539896, + "thread": 13 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2659587, + "thread": 21 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 2909328, + "thread": 1 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 3083434, + "thread": 5 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 3150774, + "thread": 12 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 3387274, + "thread": 26 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 3525063, + "thread": 8 + } + }, + { + "amount": "84.532817012", + "slot": { + "period": 3714958, + "thread": 26 + } + }, + { + "amount": "84.532817018", + "slot": { + "period": 3880902, + "thread": 7 + } + } + ], + "AU1qk732Lpo3gHv1nKpdvy25LjFZ781aQudDPJ7Z39bfFBXNhMya": [ + { + "amount": "61.255670377", + "slot": { + "period": 36909, + "thread": 21 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 195435, + "thread": 24 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 469372, + "thread": 10 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 587050, + "thread": 17 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 665896, + "thread": 15 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 869710, + "thread": 0 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1024991, + "thread": 11 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1262583, + "thread": 18 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1412730, + "thread": 4 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1617791, + "thread": 0 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1661374, + "thread": 18 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 1822184, + "thread": 20 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2073459, + "thread": 14 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2195024, + "thread": 12 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2373253, + "thread": 4 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2589615, + "thread": 19 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2773573, + "thread": 12 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2940644, + "thread": 30 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 2982448, + "thread": 19 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 3259452, + "thread": 3 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 3320909, + "thread": 2 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 3544560, + "thread": 20 + } + }, + { + "amount": "61.255670377", + "slot": { + "period": 3682467, + "thread": 0 + } + }, + { + "amount": "61.255670386", + "slot": { + "period": 3797225, + "thread": 3 + } + } + ], + "AU1qkeRbLBWjh1z8eBPBkfdpnBizho54Segi6QkdxKHEPX1MUbSD": [ + { + "amount": "266.569464539", + "slot": { + "period": 151450, + "thread": 8 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 224020, + "thread": 19 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 465951, + "thread": 31 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 535902, + "thread": 14 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 804507, + "thread": 13 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 973317, + "thread": 16 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1119564, + "thread": 12 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1274673, + "thread": 25 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1369620, + "thread": 5 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1633846, + "thread": 27 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1652814, + "thread": 12 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 1852911, + "thread": 30 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2078777, + "thread": 19 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2243057, + "thread": 24 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2340453, + "thread": 4 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2469300, + "thread": 26 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2737831, + "thread": 19 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 2817287, + "thread": 5 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 3044996, + "thread": 20 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 3165819, + "thread": 6 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 3379915, + "thread": 8 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 3568518, + "thread": 10 + } + }, + { + "amount": "266.569464539", + "slot": { + "period": 3757765, + "thread": 9 + } + }, + { + "amount": "266.569464550", + "slot": { + "period": 3843445, + "thread": 1 + } + } + ], + "AU1qkmCdoQAy2RiEEzmdwyX2H1NZipPs5rPY5XZzRAvviysdtekc": [ + { + "amount": "59.404764276", + "slot": { + "period": 37230, + "thread": 2 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 177317, + "thread": 24 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 472835, + "thread": 12 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 493245, + "thread": 30 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 796274, + "thread": 3 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 843908, + "thread": 12 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1146512, + "thread": 9 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1255584, + "thread": 6 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1452824, + "thread": 4 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1639977, + "thread": 18 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1740640, + "thread": 11 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 1853150, + "thread": 26 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2045057, + "thread": 7 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2262837, + "thread": 31 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2309387, + "thread": 14 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2498244, + "thread": 1 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2663356, + "thread": 10 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 2938781, + "thread": 16 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 3110411, + "thread": 24 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 3167187, + "thread": 20 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 3369602, + "thread": 31 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 3524478, + "thread": 15 + } + }, + { + "amount": "59.404764276", + "slot": { + "period": 3672990, + "thread": 3 + } + }, + { + "amount": "59.404764275", + "slot": { + "period": 3886725, + "thread": 19 + } + } + ], + "AU1qm2aRZSzTGnT5shrHCtXqTehXm8tR4TuVHg6evFc72nAvr29J": [ + { + "amount": "95.667167330", + "slot": { + "period": 29532, + "thread": 26 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 281399, + "thread": 30 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 464074, + "thread": 22 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 575198, + "thread": 25 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 751895, + "thread": 22 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 946849, + "thread": 0 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1002809, + "thread": 6 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1182285, + "thread": 11 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1361101, + "thread": 29 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1645268, + "thread": 12 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1714936, + "thread": 23 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 1845165, + "thread": 30 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2129372, + "thread": 3 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2183502, + "thread": 10 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2360598, + "thread": 2 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2487033, + "thread": 7 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2777041, + "thread": 27 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 2933841, + "thread": 12 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 3011671, + "thread": 1 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 3137741, + "thread": 4 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 3412138, + "thread": 17 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 3598947, + "thread": 27 + } + }, + { + "amount": "95.667167330", + "slot": { + "period": 3678139, + "thread": 22 + } + }, + { + "amount": "95.667167329", + "slot": { + "period": 3850225, + "thread": 23 + } + } + ], + "AU1qmDEZTDcvYbG7aA6HksrgxUUy8VwCtRQ1xjKuLCod3aAY7Td6": [ + { + "amount": "137.444522878", + "slot": { + "period": 87293, + "thread": 0 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 228561, + "thread": 31 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 483701, + "thread": 2 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 652443, + "thread": 11 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 756710, + "thread": 22 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 846178, + "thread": 7 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1132777, + "thread": 19 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1292087, + "thread": 1 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1317652, + "thread": 16 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1564705, + "thread": 31 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1659486, + "thread": 28 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 1898884, + "thread": 8 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2112200, + "thread": 27 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2221800, + "thread": 7 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2371742, + "thread": 21 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2585253, + "thread": 22 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2692810, + "thread": 19 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 2837201, + "thread": 26 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 3063986, + "thread": 2 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 3214466, + "thread": 25 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 3338691, + "thread": 22 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 3469934, + "thread": 22 + } + }, + { + "amount": "137.444522878", + "slot": { + "period": 3652449, + "thread": 15 + } + }, + { + "amount": "137.444522870", + "slot": { + "period": 3946612, + "thread": 17 + } + } + ], + "AU1qnHBNJXcGoYjmMMt6tNN1WJkgtEH99x593kt852N9SSoVvWGx": [ + { + "amount": "467.595461084", + "slot": { + "period": 56497, + "thread": 17 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 200517, + "thread": 5 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 327456, + "thread": 24 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 499483, + "thread": 10 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 773184, + "thread": 25 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 916042, + "thread": 16 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1083049, + "thread": 17 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1203375, + "thread": 4 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1400376, + "thread": 13 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1542524, + "thread": 22 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1739921, + "thread": 13 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 1877826, + "thread": 16 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2136259, + "thread": 15 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2204966, + "thread": 17 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2413327, + "thread": 10 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2604618, + "thread": 3 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2687877, + "thread": 18 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 2891503, + "thread": 18 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 3119042, + "thread": 7 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 3274487, + "thread": 2 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 3323974, + "thread": 15 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 3484205, + "thread": 14 + } + }, + { + "amount": "467.595461084", + "slot": { + "period": 3704060, + "thread": 6 + } + }, + { + "amount": "467.595461074", + "slot": { + "period": 3927478, + "thread": 27 + } + } + ], + "AU1qocYJAAMu5ZQF8reURPUhU2QTxiev9JnDKmX6AZbkZSaC8JNJ": [ + { + "amount": "185.271295153", + "slot": { + "period": 162233, + "thread": 23 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 181018, + "thread": 24 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 352750, + "thread": 25 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 563581, + "thread": 16 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 705550, + "thread": 0 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 859538, + "thread": 31 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1095075, + "thread": 26 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1227114, + "thread": 7 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1445193, + "thread": 6 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1507079, + "thread": 5 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1793210, + "thread": 5 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 1956476, + "thread": 2 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2137255, + "thread": 26 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2273978, + "thread": 3 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2314281, + "thread": 23 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2607456, + "thread": 3 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2683163, + "thread": 6 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 2859931, + "thread": 1 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 3095546, + "thread": 2 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 3185450, + "thread": 29 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 3372197, + "thread": 31 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 3604625, + "thread": 27 + } + }, + { + "amount": "185.271295153", + "slot": { + "period": 3704397, + "thread": 23 + } + }, + { + "amount": "185.271295163", + "slot": { + "period": 3879461, + "thread": 9 + } + } + ], + "AU1qorQLCEx7itskmDwTCYEEU9L7kBYGEbzJibdboxMA4oxSUxP": [ + { + "amount": "118.764691490", + "slot": { + "period": 82399, + "thread": 0 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 254070, + "thread": 23 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 331827, + "thread": 14 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 596466, + "thread": 2 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 692804, + "thread": 16 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 965067, + "thread": 30 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1088921, + "thread": 0 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1175261, + "thread": 9 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1348114, + "thread": 10 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1589745, + "thread": 5 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1719655, + "thread": 28 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 1906549, + "thread": 9 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2136498, + "thread": 24 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2257035, + "thread": 19 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2326614, + "thread": 26 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2582513, + "thread": 16 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2647644, + "thread": 8 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 2819144, + "thread": 8 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 3100937, + "thread": 16 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 3284605, + "thread": 11 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 3406302, + "thread": 12 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 3578322, + "thread": 11 + } + }, + { + "amount": "118.764691490", + "slot": { + "period": 3639904, + "thread": 0 + } + }, + { + "amount": "118.764691500", + "slot": { + "period": 3831299, + "thread": 22 + } + } + ], + "AU1qp8JVvKDuPHT4zMyKHW7Nr8jF9hgBdfJEd61GXkq3UGp6ResR": [ + { + "amount": "293.023468577", + "slot": { + "period": 100313, + "thread": 20 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 273941, + "thread": 23 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 455967, + "thread": 12 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 502628, + "thread": 2 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 709349, + "thread": 10 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 832787, + "thread": 6 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1119161, + "thread": 0 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1301205, + "thread": 19 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1398776, + "thread": 13 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1627344, + "thread": 2 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1685020, + "thread": 1 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1862178, + "thread": 26 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 1999523, + "thread": 29 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 2288358, + "thread": 3 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 2387352, + "thread": 8 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 2573054, + "thread": 20 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 2687044, + "thread": 27 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 2930268, + "thread": 30 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 3034353, + "thread": 0 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 3209358, + "thread": 29 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 3332233, + "thread": 8 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 3570876, + "thread": 28 + } + }, + { + "amount": "293.023468577", + "slot": { + "period": 3745392, + "thread": 5 + } + }, + { + "amount": "293.023468588", + "slot": { + "period": 3886142, + "thread": 13 + } + } + ], + "AU1qpTntPrhAwRGyCoCw1dRCdoVYLfryHzF6XqTqESQk4cGX4UzE": [ + { + "amount": "261.497341095", + "slot": { + "period": 70487, + "thread": 22 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 238894, + "thread": 11 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 348578, + "thread": 6 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 558022, + "thread": 18 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 706963, + "thread": 22 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 834646, + "thread": 11 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1048910, + "thread": 28 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1156681, + "thread": 6 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1340129, + "thread": 2 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1570384, + "thread": 3 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1694817, + "thread": 31 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 1843258, + "thread": 31 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2043727, + "thread": 15 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2256140, + "thread": 12 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2452787, + "thread": 0 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2605302, + "thread": 11 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2748111, + "thread": 0 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2892991, + "thread": 5 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 2961582, + "thread": 1 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 3260284, + "thread": 26 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 3320752, + "thread": 12 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 3522512, + "thread": 14 + } + }, + { + "amount": "261.497341095", + "slot": { + "period": 3732465, + "thread": 20 + } + }, + { + "amount": "261.497341098", + "slot": { + "period": 3839607, + "thread": 5 + } + } + ], + "AU1qq5TsoJKeRKcxmDT1rSNaWCmGgL8iFQG8wRbWB2S9yW3WRG5r": [ + { + "amount": "7291.666666667", + "slot": { + "period": 91614, + "thread": 25 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 265689, + "thread": 17 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 365811, + "thread": 12 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 573186, + "thread": 10 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 659635, + "thread": 0 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 967513, + "thread": 15 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1146958, + "thread": 9 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1301640, + "thread": 19 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1387268, + "thread": 8 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1548901, + "thread": 22 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1679886, + "thread": 30 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 1970581, + "thread": 1 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2033952, + "thread": 6 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2254178, + "thread": 18 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2362460, + "thread": 1 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2618048, + "thread": 11 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2784664, + "thread": 6 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 2867321, + "thread": 24 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 3001495, + "thread": 8 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 3182636, + "thread": 17 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 3324091, + "thread": 24 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 3526291, + "thread": 12 + } + }, + { + "amount": "7291.666666667", + "slot": { + "period": 3698154, + "thread": 15 + } + }, + { + "amount": "7291.666666659", + "slot": { + "period": 3931786, + "thread": 10 + } + } + ], + "AU1qqcseu4nNZsPSBFJdQtMDhSnhiwxAea1M7BzTjeJ6M8nxAYck": [ + { + "amount": "132.821310272", + "slot": { + "period": 131933, + "thread": 18 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 307789, + "thread": 31 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 477170, + "thread": 20 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 649983, + "thread": 0 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 736852, + "thread": 23 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 942341, + "thread": 25 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1002128, + "thread": 0 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1249501, + "thread": 25 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1417238, + "thread": 20 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1592715, + "thread": 12 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1712557, + "thread": 2 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 1891527, + "thread": 15 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2109504, + "thread": 13 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2155076, + "thread": 22 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2295767, + "thread": 14 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2537645, + "thread": 17 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2639348, + "thread": 23 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 2860664, + "thread": 25 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 3037699, + "thread": 14 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 3265885, + "thread": 17 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 3383355, + "thread": 17 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 3480077, + "thread": 5 + } + }, + { + "amount": "132.821310272", + "slot": { + "period": 3648069, + "thread": 7 + } + }, + { + "amount": "132.821310262", + "slot": { + "period": 3919941, + "thread": 23 + } + } + ], + "AU1qsDmJ2LKvaKF8VsqVL2dHQ7wMEg7vsjGmGgpQGvxSzK6nM2fq": [ + { + "amount": "157.324564244", + "slot": { + "period": 71962, + "thread": 29 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 279263, + "thread": 23 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 443628, + "thread": 23 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 615508, + "thread": 21 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 719929, + "thread": 20 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 934895, + "thread": 17 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1060459, + "thread": 18 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1216612, + "thread": 19 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1431122, + "thread": 29 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1516015, + "thread": 14 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1721484, + "thread": 25 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 1972958, + "thread": 14 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2004678, + "thread": 15 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2164531, + "thread": 7 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2305595, + "thread": 9 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2500374, + "thread": 31 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2721849, + "thread": 29 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 2818417, + "thread": 2 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 3067179, + "thread": 20 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 3249822, + "thread": 29 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 3358975, + "thread": 3 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 3508908, + "thread": 2 + } + }, + { + "amount": "157.324564244", + "slot": { + "period": 3657158, + "thread": 21 + } + }, + { + "amount": "157.324564240", + "slot": { + "period": 3932119, + "thread": 15 + } + } + ], + "AU1qtFJGiNRFcaWdchVKiyp3REU5WjjrFHX3unC5Q7As6oMEJ977": [ + { + "amount": "427.115545423", + "slot": { + "period": 32481, + "thread": 24 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 177528, + "thread": 31 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 390257, + "thread": 26 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 641993, + "thread": 16 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 754984, + "thread": 16 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 923064, + "thread": 18 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1064679, + "thread": 12 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1169148, + "thread": 27 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1325366, + "thread": 25 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1586456, + "thread": 14 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1658863, + "thread": 21 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 1968512, + "thread": 23 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2001332, + "thread": 8 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2243380, + "thread": 14 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2359514, + "thread": 11 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2522383, + "thread": 24 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2747844, + "thread": 26 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 2941144, + "thread": 16 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 3092511, + "thread": 11 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 3130534, + "thread": 24 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 3402044, + "thread": 17 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 3474451, + "thread": 23 + } + }, + { + "amount": "427.115545423", + "slot": { + "period": 3737657, + "thread": 7 + } + }, + { + "amount": "427.115545426", + "slot": { + "period": 3928425, + "thread": 13 + } + } + ], + "AU1qu37XpkrEGv6F694PRfRn8HE1goQTjPtD2rQaKmua4F2YX1Ku": [ + { + "amount": "190.623960910", + "slot": { + "period": 160320, + "thread": 17 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 216008, + "thread": 23 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 367806, + "thread": 12 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 598212, + "thread": 7 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 660181, + "thread": 23 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 950246, + "thread": 14 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1139102, + "thread": 1 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1155820, + "thread": 20 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1418746, + "thread": 30 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1490804, + "thread": 5 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1663260, + "thread": 18 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 1834262, + "thread": 15 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2042870, + "thread": 26 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2291117, + "thread": 9 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2429323, + "thread": 15 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2525455, + "thread": 1 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2763063, + "thread": 2 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 2871170, + "thread": 25 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 3010702, + "thread": 17 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 3193031, + "thread": 1 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 3291072, + "thread": 13 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 3613438, + "thread": 7 + } + }, + { + "amount": "190.623960910", + "slot": { + "period": 3704031, + "thread": 10 + } + }, + { + "amount": "190.623960914", + "slot": { + "period": 3867952, + "thread": 30 + } + } + ], + "AU1quDV4GsVeEGAF232rJPs2tnohrMkVX7yL8rWiRuxcvDQ7Afhi": [ + { + "amount": "657.478065540", + "slot": { + "period": 155655, + "thread": 27 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 247657, + "thread": 19 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 383592, + "thread": 24 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 552527, + "thread": 6 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 714220, + "thread": 29 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 871360, + "thread": 4 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1144447, + "thread": 14 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1271541, + "thread": 2 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1324822, + "thread": 26 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1590316, + "thread": 2 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1712781, + "thread": 14 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1914285, + "thread": 26 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 1996220, + "thread": 13 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 2181499, + "thread": 6 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 2368042, + "thread": 7 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 2537775, + "thread": 14 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 2685393, + "thread": 9 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 2931988, + "thread": 0 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 3003954, + "thread": 11 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 3124048, + "thread": 1 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 3341525, + "thread": 24 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 3479973, + "thread": 14 + } + }, + { + "amount": "657.478065540", + "slot": { + "period": 3732522, + "thread": 7 + } + }, + { + "amount": "657.478065546", + "slot": { + "period": 3893411, + "thread": 4 + } + } + ], + "AU1qvWvqaNXUSAoRcQfwSsmKUtekif1sHgwkjMT9LELQNrwWiyvm": [ + { + "amount": "103.592708172", + "slot": { + "period": 39343, + "thread": 27 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 292520, + "thread": 1 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 418554, + "thread": 29 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 601894, + "thread": 4 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 737370, + "thread": 14 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 930088, + "thread": 3 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1023486, + "thread": 19 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1214138, + "thread": 7 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1439869, + "thread": 28 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1533762, + "thread": 12 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1762257, + "thread": 18 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 1925762, + "thread": 1 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2013262, + "thread": 14 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2245515, + "thread": 0 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2371817, + "thread": 11 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2552391, + "thread": 19 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2730795, + "thread": 0 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 2800907, + "thread": 19 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 3054357, + "thread": 5 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 3280508, + "thread": 12 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 3306657, + "thread": 13 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 3525553, + "thread": 18 + } + }, + { + "amount": "103.592708172", + "slot": { + "period": 3779161, + "thread": 20 + } + }, + { + "amount": "103.592708179", + "slot": { + "period": 3868168, + "thread": 2 + } + } + ], + "AU1qw2Rky1h7XX4iAyyQ8p3KH4zCTs2byPZWDpBfiwEPsdgUtd8A": [ + { + "amount": "206.731385961", + "slot": { + "period": 119409, + "thread": 19 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 211364, + "thread": 4 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 420104, + "thread": 5 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 495661, + "thread": 12 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 740725, + "thread": 3 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 844966, + "thread": 6 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1033252, + "thread": 20 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1176978, + "thread": 2 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1398453, + "thread": 13 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1582010, + "thread": 21 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1682468, + "thread": 18 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 1819767, + "thread": 1 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2072928, + "thread": 5 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2288994, + "thread": 3 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2402742, + "thread": 10 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2484011, + "thread": 7 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2769791, + "thread": 6 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 2893497, + "thread": 10 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 3116529, + "thread": 23 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 3127597, + "thread": 1 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 3363181, + "thread": 24 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 3602531, + "thread": 13 + } + }, + { + "amount": "206.731385961", + "slot": { + "period": 3678407, + "thread": 19 + } + }, + { + "amount": "206.731385957", + "slot": { + "period": 3876839, + "thread": 15 + } + } + ], + "AU1qwjZqg3tYyipncABJPSXbMeSArBLiyYNHVcpWFJkmksvXzQ29": [ + { + "amount": "51.581964107", + "slot": { + "period": 113375, + "thread": 23 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 298979, + "thread": 26 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 337788, + "thread": 8 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 559259, + "thread": 2 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 736285, + "thread": 15 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 965065, + "thread": 27 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1074865, + "thread": 6 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1152349, + "thread": 29 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1448380, + "thread": 16 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1561952, + "thread": 29 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1804383, + "thread": 15 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 1935074, + "thread": 29 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2099031, + "thread": 12 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2213702, + "thread": 13 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2431748, + "thread": 11 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2514519, + "thread": 0 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2625032, + "thread": 4 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2846671, + "thread": 8 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 2954367, + "thread": 24 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 3231295, + "thread": 17 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 3290923, + "thread": 3 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 3462997, + "thread": 18 + } + }, + { + "amount": "51.581964107", + "slot": { + "period": 3656276, + "thread": 19 + } + }, + { + "amount": "51.581964103", + "slot": { + "period": 3878849, + "thread": 0 + } + } + ], + "AU1qwkBwLh4ncEZjxcb1YXf9VpiwLpyZvQwzYAH9RNqCqbidV4ba": [ + { + "amount": "99.255155649", + "slot": { + "period": 147538, + "thread": 26 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 237619, + "thread": 10 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 404492, + "thread": 2 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 513783, + "thread": 6 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 654215, + "thread": 16 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 825278, + "thread": 18 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1146560, + "thread": 14 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1185326, + "thread": 15 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1450174, + "thread": 0 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1631677, + "thread": 24 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1703388, + "thread": 13 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 1885119, + "thread": 17 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2139908, + "thread": 21 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2267204, + "thread": 14 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2395390, + "thread": 26 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2462750, + "thread": 10 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2750570, + "thread": 7 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 2845599, + "thread": 15 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 3113395, + "thread": 5 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 3286390, + "thread": 30 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 3320017, + "thread": 9 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 3509962, + "thread": 7 + } + }, + { + "amount": "99.255155649", + "slot": { + "period": 3738020, + "thread": 22 + } + }, + { + "amount": "99.255155642", + "slot": { + "period": 3883658, + "thread": 0 + } + } + ], + "AU1qxJw7RYVksUiJmR19H4MyvTWpdTRRodYP6GXKkDJo6h7iw46F": [ + { + "amount": "238.531794222", + "slot": { + "period": 111380, + "thread": 17 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 310677, + "thread": 1 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 443636, + "thread": 5 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 641988, + "thread": 25 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 817066, + "thread": 16 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 871070, + "thread": 10 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1138802, + "thread": 2 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1245017, + "thread": 11 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1474465, + "thread": 15 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1608457, + "thread": 2 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1692684, + "thread": 4 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 1968701, + "thread": 7 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2075962, + "thread": 25 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2246648, + "thread": 2 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2408255, + "thread": 1 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2616353, + "thread": 22 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2785078, + "thread": 11 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2868816, + "thread": 17 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 2979449, + "thread": 8 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 3225401, + "thread": 24 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 3448381, + "thread": 24 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 3517286, + "thread": 13 + } + }, + { + "amount": "238.531794222", + "slot": { + "period": 3629744, + "thread": 15 + } + }, + { + "amount": "238.531794223", + "slot": { + "period": 3843583, + "thread": 26 + } + } + ], + "AU1qxaVxgrEn4mfCYH4aT4GHQVS4hCmTuhxUesQ3m4FTb9Zj3Uhy": [ + { + "amount": "70.454623849", + "slot": { + "period": 47828, + "thread": 17 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 227016, + "thread": 21 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 353104, + "thread": 11 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 526498, + "thread": 9 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 741314, + "thread": 12 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 859880, + "thread": 19 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1024733, + "thread": 13 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1244325, + "thread": 23 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1423101, + "thread": 6 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1572313, + "thread": 9 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1730876, + "thread": 27 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 1915448, + "thread": 0 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2136733, + "thread": 30 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2225191, + "thread": 10 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2411392, + "thread": 21 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2580929, + "thread": 8 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2769187, + "thread": 8 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 2900537, + "thread": 3 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 3074199, + "thread": 6 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 3209447, + "thread": 19 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 3348739, + "thread": 6 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 3508678, + "thread": 0 + } + }, + { + "amount": "70.454623849", + "slot": { + "period": 3693952, + "thread": 28 + } + }, + { + "amount": "70.454623845", + "slot": { + "period": 3831434, + "thread": 29 + } + } + ], + "AU1qxmHBm92Vk5VBtX8SKNhpMBZ8wNsJ2aAx4ygthuagp6qkgpdg": [ + { + "amount": "339.759423640", + "slot": { + "period": 57434, + "thread": 10 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 310403, + "thread": 21 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 486491, + "thread": 12 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 522536, + "thread": 30 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 672828, + "thread": 27 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 908429, + "thread": 21 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1033037, + "thread": 23 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1207395, + "thread": 17 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1321246, + "thread": 15 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1557445, + "thread": 16 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1699921, + "thread": 30 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 1864471, + "thread": 28 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2066857, + "thread": 26 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2288381, + "thread": 24 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2321411, + "thread": 11 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2559203, + "thread": 28 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2709092, + "thread": 15 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2821974, + "thread": 9 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 2961833, + "thread": 2 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 3182557, + "thread": 6 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 3444549, + "thread": 11 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 3479050, + "thread": 27 + } + }, + { + "amount": "339.759423640", + "slot": { + "period": 3659388, + "thread": 7 + } + }, + { + "amount": "339.759423652", + "slot": { + "period": 3825126, + "thread": 3 + } + } + ], + "AU1qyPJHN7HfWbTBNuo5D3tgd1pYPGogg3M1uLvfEBmCtcHEJBks": [ + { + "amount": "167.206937741", + "slot": { + "period": 51854, + "thread": 7 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 229635, + "thread": 27 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 448570, + "thread": 5 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 546557, + "thread": 29 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 737152, + "thread": 16 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 956266, + "thread": 22 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1034595, + "thread": 0 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1262164, + "thread": 18 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1365625, + "thread": 6 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1511338, + "thread": 8 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1790383, + "thread": 1 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 1822645, + "thread": 8 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2067940, + "thread": 3 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2197334, + "thread": 11 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2402440, + "thread": 26 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2485572, + "thread": 26 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2709493, + "thread": 9 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 2815306, + "thread": 19 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 3086688, + "thread": 30 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 3234133, + "thread": 9 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 3412674, + "thread": 19 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 3452747, + "thread": 31 + } + }, + { + "amount": "167.206937741", + "slot": { + "period": 3720863, + "thread": 19 + } + }, + { + "amount": "167.206937737", + "slot": { + "period": 3828897, + "thread": 8 + } + } + ], + "AU1qyPuQG7asor4j2JdTPZHhpSm68GdSydQF2LfseyyNrPnsdJn5": [ + { + "amount": "195.707069412", + "slot": { + "period": 144719, + "thread": 3 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 219105, + "thread": 14 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 371323, + "thread": 27 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 645904, + "thread": 25 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 784235, + "thread": 13 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 828153, + "thread": 29 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 998116, + "thread": 2 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 1210868, + "thread": 27 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 1418560, + "thread": 18 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 1578432, + "thread": 31 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 1748887, + "thread": 29 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 1809044, + "thread": 10 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2128944, + "thread": 9 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2251652, + "thread": 6 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2344546, + "thread": 5 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2540259, + "thread": 12 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2787060, + "thread": 28 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2896890, + "thread": 19 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 2972030, + "thread": 7 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 3239818, + "thread": 28 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 3362235, + "thread": 9 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 3539085, + "thread": 3 + } + }, + { + "amount": "195.707069412", + "slot": { + "period": 3778157, + "thread": 6 + } + }, + { + "amount": "195.707069405", + "slot": { + "period": 3917728, + "thread": 31 + } + } + ], + "AU1qyUihxrXNyrcXyEEphPJR6nXCJGmj8uhQAJSbnymZfs3zBQU4": [ + { + "amount": "82.216546395", + "slot": { + "period": 160607, + "thread": 29 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 309684, + "thread": 26 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 465710, + "thread": 18 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 539837, + "thread": 6 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 722549, + "thread": 6 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 906968, + "thread": 26 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1075733, + "thread": 13 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1245839, + "thread": 16 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1473768, + "thread": 29 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1577166, + "thread": 14 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1670085, + "thread": 19 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1908755, + "thread": 15 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 1995307, + "thread": 9 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 2147312, + "thread": 5 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 2456251, + "thread": 28 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 2593458, + "thread": 30 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 2657256, + "thread": 14 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 2845938, + "thread": 24 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 3034350, + "thread": 5 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 3144747, + "thread": 30 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 3371771, + "thread": 11 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 3520800, + "thread": 25 + } + }, + { + "amount": "82.216546395", + "slot": { + "period": 3637121, + "thread": 22 + } + }, + { + "amount": "82.216546391", + "slot": { + "period": 3796230, + "thread": 1 + } + } + ], + "AU1qyycABHQB8mMa3xrv27b48pyYLwCSw3whiDvafiJ6RyQU2qpz": [ + { + "amount": "572.215195243", + "slot": { + "period": 142627, + "thread": 16 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 256482, + "thread": 21 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 424751, + "thread": 19 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 612107, + "thread": 31 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 791355, + "thread": 23 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 826525, + "thread": 14 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 989671, + "thread": 2 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 1243750, + "thread": 0 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 1392697, + "thread": 11 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 1607942, + "thread": 25 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 1734214, + "thread": 1 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 1815926, + "thread": 0 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2029368, + "thread": 4 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2197916, + "thread": 30 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2447220, + "thread": 9 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2574765, + "thread": 18 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2725661, + "thread": 15 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 2919005, + "thread": 2 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 3068757, + "thread": 30 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 3176147, + "thread": 14 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 3425639, + "thread": 30 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 3494104, + "thread": 24 + } + }, + { + "amount": "572.215195243", + "slot": { + "period": 3757863, + "thread": 10 + } + }, + { + "amount": "572.215195241", + "slot": { + "period": 3913031, + "thread": 21 + } + } + ], + "AU1r1EfUCh9rnNVq5HYAaMJP1724D9w8pVMBHiHJKLBtH7AsV1Tj": [ + { + "amount": "348.351593731", + "slot": { + "period": 60719, + "thread": 22 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 219705, + "thread": 16 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 465108, + "thread": 17 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 511459, + "thread": 19 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 688225, + "thread": 14 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 967551, + "thread": 11 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1127287, + "thread": 22 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1188853, + "thread": 1 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1465602, + "thread": 17 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1521392, + "thread": 11 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1697715, + "thread": 27 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 1958016, + "thread": 9 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2099589, + "thread": 1 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2172845, + "thread": 11 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2403573, + "thread": 10 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2559138, + "thread": 24 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2665839, + "thread": 31 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 2911549, + "thread": 24 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 3045440, + "thread": 4 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 3223552, + "thread": 13 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 3404200, + "thread": 22 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 3556524, + "thread": 6 + } + }, + { + "amount": "348.351593731", + "slot": { + "period": 3635453, + "thread": 21 + } + }, + { + "amount": "348.351593720", + "slot": { + "period": 3886902, + "thread": 21 + } + } + ], + "AU1r1xKruEJRJvVMjdrnM44xVuCF5h6kmnMdG88x85BgJRb5RAzz": [ + { + "amount": "171.996994417", + "slot": { + "period": 127125, + "thread": 24 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 248907, + "thread": 9 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 473340, + "thread": 15 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 638712, + "thread": 22 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 723903, + "thread": 19 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 909824, + "thread": 28 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1003728, + "thread": 20 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1236321, + "thread": 18 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1374178, + "thread": 8 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1525777, + "thread": 11 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1665376, + "thread": 5 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1952608, + "thread": 0 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 1984410, + "thread": 27 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 2193836, + "thread": 1 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 2425268, + "thread": 18 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 2584717, + "thread": 21 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 2710392, + "thread": 27 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 2816090, + "thread": 5 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 3052076, + "thread": 24 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 3206053, + "thread": 17 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 3311132, + "thread": 15 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 3487418, + "thread": 13 + } + }, + { + "amount": "171.996994417", + "slot": { + "period": 3628569, + "thread": 20 + } + }, + { + "amount": "171.996994421", + "slot": { + "period": 3830131, + "thread": 21 + } + } + ], + "AU1r1yGUaGDDbsWZhQPWBCwgkajxEZV5FnRNArNiY4nRhRR8g8hL": [ + { + "amount": "176.894527636", + "slot": { + "period": 139864, + "thread": 30 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 268676, + "thread": 0 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 357266, + "thread": 22 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 575169, + "thread": 26 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 808100, + "thread": 15 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 965492, + "thread": 6 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1071154, + "thread": 16 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1223881, + "thread": 1 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1397507, + "thread": 10 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1534880, + "thread": 8 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1701658, + "thread": 22 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 1965497, + "thread": 6 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2063860, + "thread": 17 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2227848, + "thread": 27 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2414386, + "thread": 19 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2597781, + "thread": 1 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2671537, + "thread": 9 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 2904614, + "thread": 11 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 3030401, + "thread": 19 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 3179015, + "thread": 25 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 3377544, + "thread": 2 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 3510131, + "thread": 4 + } + }, + { + "amount": "176.894527636", + "slot": { + "period": 3689277, + "thread": 0 + } + }, + { + "amount": "176.894527629", + "slot": { + "period": 3906012, + "thread": 24 + } + } + ], + "AU1r2R6e6G6HXEjJ1aocbNbcwNKDUk84jg1TWZrCXTfJgfCjVxkL": [ + { + "amount": "313.693136052", + "slot": { + "period": 139488, + "thread": 1 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 247416, + "thread": 22 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 425427, + "thread": 28 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 619392, + "thread": 17 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 676269, + "thread": 6 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 870549, + "thread": 29 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1110063, + "thread": 20 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1231556, + "thread": 21 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1474016, + "thread": 11 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1639946, + "thread": 6 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1749535, + "thread": 26 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 1906736, + "thread": 31 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2098181, + "thread": 12 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2271840, + "thread": 4 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2357932, + "thread": 19 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2622107, + "thread": 16 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2647174, + "thread": 17 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 2813950, + "thread": 6 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 3024158, + "thread": 0 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 3236737, + "thread": 3 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 3357023, + "thread": 28 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 3497478, + "thread": 4 + } + }, + { + "amount": "313.693136052", + "slot": { + "period": 3629745, + "thread": 2 + } + }, + { + "amount": "313.693136061", + "slot": { + "period": 3783983, + "thread": 10 + } + } + ], + "AU1r2fseY8cmW8Mqbp3qT6WsKn6j9eKXxVzx6AWvwgMPxQGyYzqZ": [ + { + "amount": "396.938976208", + "slot": { + "period": 165863, + "thread": 16 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 220932, + "thread": 30 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 426921, + "thread": 0 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 612048, + "thread": 12 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 710811, + "thread": 17 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 864394, + "thread": 3 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1024532, + "thread": 20 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1239962, + "thread": 27 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1428904, + "thread": 16 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1567624, + "thread": 9 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1657732, + "thread": 8 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 1927235, + "thread": 30 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2031560, + "thread": 5 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2168600, + "thread": 25 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2315162, + "thread": 30 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2575263, + "thread": 24 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2703096, + "thread": 31 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 2857592, + "thread": 31 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 3114638, + "thread": 22 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 3136389, + "thread": 16 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 3303226, + "thread": 31 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 3467862, + "thread": 11 + } + }, + { + "amount": "396.938976208", + "slot": { + "period": 3689563, + "thread": 11 + } + }, + { + "amount": "396.938976197", + "slot": { + "period": 3945317, + "thread": 22 + } + } + ], + "AU1r3QydJGS2tW9tyJRy45GtkypbdmfFixzWgUvTf2msvh1dCFsY": [ + { + "amount": "643.269716309", + "slot": { + "period": 128350, + "thread": 14 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 273136, + "thread": 14 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 482527, + "thread": 3 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 559995, + "thread": 13 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 708235, + "thread": 22 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 874773, + "thread": 23 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1076118, + "thread": 27 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1251205, + "thread": 11 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1395822, + "thread": 4 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1566495, + "thread": 14 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1745332, + "thread": 6 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 1968914, + "thread": 5 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2127721, + "thread": 14 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2272036, + "thread": 18 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2442091, + "thread": 16 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2568870, + "thread": 18 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2787540, + "thread": 19 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 2799448, + "thread": 22 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 3094206, + "thread": 17 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 3175736, + "thread": 1 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 3367976, + "thread": 24 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 3488629, + "thread": 29 + } + }, + { + "amount": "643.269716309", + "slot": { + "period": 3682662, + "thread": 17 + } + }, + { + "amount": "643.269716316", + "slot": { + "period": 3872410, + "thread": 24 + } + } + ], + "AU1r4U8GnPZdVWP9tpv2ugEDJNF9aocUVWviSaxERMkA9ngb5CXD": [ + { + "amount": "76.465228011", + "slot": { + "period": 11785, + "thread": 28 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 211210, + "thread": 31 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 482968, + "thread": 5 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 588751, + "thread": 7 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 801315, + "thread": 17 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 931732, + "thread": 27 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1149587, + "thread": 21 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1265761, + "thread": 19 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1455034, + "thread": 15 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1506823, + "thread": 22 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1691483, + "thread": 28 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 1918978, + "thread": 6 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2072418, + "thread": 0 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2256979, + "thread": 25 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2369451, + "thread": 20 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2528385, + "thread": 6 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2674279, + "thread": 14 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 2830930, + "thread": 29 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 3087784, + "thread": 9 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 3251189, + "thread": 22 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 3404447, + "thread": 16 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 3537034, + "thread": 27 + } + }, + { + "amount": "76.465228011", + "slot": { + "period": 3753750, + "thread": 16 + } + }, + { + "amount": "76.465228008", + "slot": { + "period": 3900175, + "thread": 10 + } + } + ], + "AU1r57kDiDeyjnB7ocRYSE42a8mNSnTpwfdZizUf8SoTfXJUJiBQ": [ + { + "amount": "406.576934972", + "slot": { + "period": 37174, + "thread": 26 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 267678, + "thread": 17 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 344814, + "thread": 23 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 597943, + "thread": 25 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 809764, + "thread": 30 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 907967, + "thread": 15 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1051957, + "thread": 30 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1253196, + "thread": 31 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1428488, + "thread": 23 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1633059, + "thread": 22 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1670060, + "thread": 11 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 1920653, + "thread": 16 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2119984, + "thread": 1 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2168561, + "thread": 22 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2304430, + "thread": 17 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2467905, + "thread": 26 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2707068, + "thread": 15 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 2888442, + "thread": 28 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 3091743, + "thread": 12 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 3227708, + "thread": 2 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 3377959, + "thread": 27 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 3541950, + "thread": 2 + } + }, + { + "amount": "406.576934972", + "slot": { + "period": 3624796, + "thread": 25 + } + }, + { + "amount": "406.576934968", + "slot": { + "period": 3943215, + "thread": 19 + } + } + ], + "AU1r5BLqL2dNwmS7qbK8hsiKH3xwhWb6S5zGpS24pxGxxbiBkFBW": [ + { + "amount": "140.646386993", + "slot": { + "period": 33628, + "thread": 24 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 301682, + "thread": 6 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 470190, + "thread": 3 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 593262, + "thread": 24 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 708638, + "thread": 18 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 915158, + "thread": 15 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1112491, + "thread": 3 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1215271, + "thread": 19 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1434731, + "thread": 23 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1614295, + "thread": 19 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1746787, + "thread": 4 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 1926746, + "thread": 3 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2080147, + "thread": 6 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2149043, + "thread": 2 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2354890, + "thread": 15 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2585136, + "thread": 6 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2739028, + "thread": 4 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 2807613, + "thread": 14 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 3096573, + "thread": 16 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 3249740, + "thread": 9 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 3394541, + "thread": 29 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 3517886, + "thread": 20 + } + }, + { + "amount": "140.646386993", + "slot": { + "period": 3620092, + "thread": 20 + } + }, + { + "amount": "140.646386987", + "slot": { + "period": 3923909, + "thread": 12 + } + } + ], + "AU1r5pKo3m4VAhYiPuJLHiXq1FQUYMFwJNjFd1QkmLVcxvM26exK": [ + { + "amount": "443.897204815", + "slot": { + "period": 65371, + "thread": 24 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 302900, + "thread": 23 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 392704, + "thread": 7 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 636996, + "thread": 29 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 712917, + "thread": 18 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 890791, + "thread": 10 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1079421, + "thread": 13 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1222446, + "thread": 22 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1456448, + "thread": 21 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1527316, + "thread": 19 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1771224, + "thread": 20 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 1871466, + "thread": 16 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2122715, + "thread": 22 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2271236, + "thread": 17 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2344327, + "thread": 19 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2558178, + "thread": 1 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2777406, + "thread": 2 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 2854554, + "thread": 20 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 3066127, + "thread": 10 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 3211790, + "thread": 9 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 3402519, + "thread": 22 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 3570437, + "thread": 26 + } + }, + { + "amount": "443.897204815", + "slot": { + "period": 3702438, + "thread": 25 + } + }, + { + "amount": "443.897204806", + "slot": { + "period": 3800141, + "thread": 13 + } + } + ], + "AU1r5t95k6enyfRYtyiFZHWW43EEHNZNgJEikaMQafWycQC9QDni": [ + { + "amount": "179.756925567", + "slot": { + "period": 93923, + "thread": 20 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 279926, + "thread": 31 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 358278, + "thread": 29 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 620140, + "thread": 6 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 820568, + "thread": 8 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 877664, + "thread": 21 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1107104, + "thread": 19 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1173082, + "thread": 25 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1454023, + "thread": 14 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1512242, + "thread": 21 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1778153, + "thread": 8 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 1930818, + "thread": 13 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2051205, + "thread": 21 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2184844, + "thread": 11 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2351987, + "thread": 27 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2582909, + "thread": 18 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2742899, + "thread": 31 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 2933983, + "thread": 31 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 3111399, + "thread": 30 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 3142421, + "thread": 8 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 3358453, + "thread": 13 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 3604671, + "thread": 31 + } + }, + { + "amount": "179.756925567", + "slot": { + "period": 3688632, + "thread": 2 + } + }, + { + "amount": "179.756925569", + "slot": { + "period": 3806672, + "thread": 19 + } + } + ], + "AU1r62v1ZLZmcBmL21KD5Aj4Z8X9kVk6Qx2xo2W3nZVZM1czb5KF": [ + { + "amount": "214.882275144", + "slot": { + "period": 88242, + "thread": 17 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 236969, + "thread": 13 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 445289, + "thread": 2 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 639550, + "thread": 30 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 741619, + "thread": 8 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 940600, + "thread": 1 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1078413, + "thread": 31 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1307020, + "thread": 26 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1333083, + "thread": 13 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1558657, + "thread": 7 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1749040, + "thread": 7 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 1892067, + "thread": 24 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2134358, + "thread": 31 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2188879, + "thread": 29 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2323674, + "thread": 14 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2538481, + "thread": 11 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2694639, + "thread": 24 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 2905343, + "thread": 15 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 3016407, + "thread": 27 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 3277527, + "thread": 26 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 3307934, + "thread": 25 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 3617243, + "thread": 29 + } + }, + { + "amount": "214.882275144", + "slot": { + "period": 3689669, + "thread": 24 + } + }, + { + "amount": "214.882275147", + "slot": { + "period": 3787660, + "thread": 27 + } + } + ], + "AU1r6MsDokxcrxHcV7R3hf9nQGwSkT8KkJap6owSZETFDdUHfnxh": [ + { + "amount": "91.199405920", + "slot": { + "period": 148877, + "thread": 22 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 189825, + "thread": 4 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 397947, + "thread": 2 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 560673, + "thread": 23 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 752529, + "thread": 7 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 908648, + "thread": 27 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1031118, + "thread": 16 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1190169, + "thread": 29 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1417719, + "thread": 30 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1501305, + "thread": 18 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1680074, + "thread": 3 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 1909051, + "thread": 13 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2127159, + "thread": 12 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2244608, + "thread": 16 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2381133, + "thread": 11 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2585987, + "thread": 23 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2687190, + "thread": 20 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2824079, + "thread": 27 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 2975223, + "thread": 13 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 3141738, + "thread": 22 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 3402432, + "thread": 20 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 3473712, + "thread": 11 + } + }, + { + "amount": "91.199405920", + "slot": { + "period": 3627590, + "thread": 5 + } + }, + { + "amount": "91.199405928", + "slot": { + "period": 3813702, + "thread": 8 + } + } + ], + "AU1r7Rpg9myaHFQud6hw9nDbSgUvhy7dNL6yXDbZwCScxNPP1LxE": [ + { + "amount": "278.857844460", + "slot": { + "period": 35555, + "thread": 17 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 270461, + "thread": 5 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 454056, + "thread": 1 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 589836, + "thread": 11 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 671831, + "thread": 25 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 824563, + "thread": 28 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1070448, + "thread": 28 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1298883, + "thread": 7 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1345207, + "thread": 16 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1483752, + "thread": 26 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1648700, + "thread": 14 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 1843772, + "thread": 31 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2117963, + "thread": 24 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2279776, + "thread": 31 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2403947, + "thread": 15 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2623489, + "thread": 23 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2778962, + "thread": 16 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 2854538, + "thread": 27 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 3105041, + "thread": 7 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 3166411, + "thread": 22 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 3302992, + "thread": 5 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 3570023, + "thread": 18 + } + }, + { + "amount": "278.857844460", + "slot": { + "period": 3726171, + "thread": 31 + } + }, + { + "amount": "278.857844469", + "slot": { + "period": 3848990, + "thread": 9 + } + } + ], + "AU1r82uZAR6tbDUBBTiLkyBsH3LoGPrCMhdJ7Q9WSvrHPJLBGo9M": [ + { + "amount": "518.943552290", + "slot": { + "period": 62339, + "thread": 23 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 281547, + "thread": 21 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 471109, + "thread": 18 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 583947, + "thread": 8 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 760231, + "thread": 19 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 844279, + "thread": 7 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1070163, + "thread": 20 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1196058, + "thread": 29 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1360033, + "thread": 26 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1494509, + "thread": 23 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1702362, + "thread": 31 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 1920384, + "thread": 14 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2009896, + "thread": 12 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2244626, + "thread": 7 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2366894, + "thread": 30 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2501087, + "thread": 25 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2778353, + "thread": 12 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 2907417, + "thread": 11 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 3057981, + "thread": 30 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 3222184, + "thread": 21 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 3347012, + "thread": 11 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 3452887, + "thread": 1 + } + }, + { + "amount": "518.943552290", + "slot": { + "period": 3636380, + "thread": 10 + } + }, + { + "amount": "518.943552287", + "slot": { + "period": 3855925, + "thread": 27 + } + } + ], + "AU1r8WmVBPrBGfCmV4aqEHyzvQ7dxAEffXYUMkHUGe4MWWYShbM7": [ + { + "amount": "568.148771164", + "slot": { + "period": 107128, + "thread": 10 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 268406, + "thread": 15 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 418226, + "thread": 29 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 546842, + "thread": 6 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 661292, + "thread": 25 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 942636, + "thread": 13 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1027579, + "thread": 19 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1200834, + "thread": 9 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1420368, + "thread": 16 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1545430, + "thread": 24 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1748117, + "thread": 5 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 1827495, + "thread": 11 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2035239, + "thread": 15 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2249409, + "thread": 27 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2408382, + "thread": 8 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2605784, + "thread": 22 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2763209, + "thread": 15 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2919874, + "thread": 1 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 2965177, + "thread": 29 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 3246186, + "thread": 8 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 3380295, + "thread": 19 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 3481836, + "thread": 18 + } + }, + { + "amount": "568.148771164", + "slot": { + "period": 3632416, + "thread": 12 + } + }, + { + "amount": "568.148771161", + "slot": { + "period": 3803775, + "thread": 2 + } + } + ], + "AU1r8ysmHp6Vu2eKWG1z6UNpTnYsHYVVEyZc1rDcwrg9crbiLszM": [ + { + "amount": "171.655245672", + "slot": { + "period": 53164, + "thread": 24 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 260595, + "thread": 15 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 390321, + "thread": 9 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 563568, + "thread": 28 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 701749, + "thread": 19 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 897051, + "thread": 3 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1086978, + "thread": 5 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1173054, + "thread": 26 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1327030, + "thread": 19 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1562185, + "thread": 0 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1755519, + "thread": 21 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 1924669, + "thread": 20 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2118307, + "thread": 0 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2273113, + "thread": 14 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2330099, + "thread": 8 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2611381, + "thread": 15 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2662037, + "thread": 11 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 2840849, + "thread": 15 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 3077963, + "thread": 1 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 3234777, + "thread": 28 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 3301072, + "thread": 18 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 3516258, + "thread": 6 + } + }, + { + "amount": "171.655245672", + "slot": { + "period": 3705488, + "thread": 22 + } + }, + { + "amount": "171.655245660", + "slot": { + "period": 3805012, + "thread": 0 + } + } + ], + "AU1r9Wq6TeKRX8D1PbHyEgvdbUGvzRsB8jzdgVKYpVgRas3VsmQ6": [ + { + "amount": "441.041573717", + "slot": { + "period": 25440, + "thread": 25 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 181690, + "thread": 5 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 423756, + "thread": 3 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 581986, + "thread": 17 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 718029, + "thread": 2 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 881546, + "thread": 2 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1071905, + "thread": 30 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1286088, + "thread": 6 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1324203, + "thread": 17 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1559451, + "thread": 12 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1695058, + "thread": 22 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 1892305, + "thread": 31 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2067114, + "thread": 13 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2163592, + "thread": 7 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2403404, + "thread": 0 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2476905, + "thread": 16 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2699261, + "thread": 15 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 2815125, + "thread": 26 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 3060464, + "thread": 15 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 3223691, + "thread": 21 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 3404297, + "thread": 0 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 3575853, + "thread": 17 + } + }, + { + "amount": "441.041573717", + "slot": { + "period": 3623818, + "thread": 27 + } + }, + { + "amount": "441.041573716", + "slot": { + "period": 3924299, + "thread": 7 + } + } + ], + "AU1r9XqfmZSeevYcduJ8cKhgbbULEJEHgYbg83GXhXoF5jAtm82w": [ + { + "amount": "72.888163547", + "slot": { + "period": 139315, + "thread": 22 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 192601, + "thread": 10 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 360382, + "thread": 22 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 590154, + "thread": 9 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 818142, + "thread": 15 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 907582, + "thread": 13 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 983631, + "thread": 21 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 1260276, + "thread": 14 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 1382065, + "thread": 15 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 1539321, + "thread": 15 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 1667662, + "thread": 17 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 1892401, + "thread": 11 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2102623, + "thread": 11 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2229348, + "thread": 0 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2348460, + "thread": 14 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2610720, + "thread": 14 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2753207, + "thread": 0 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 2949199, + "thread": 23 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 3049823, + "thread": 10 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 3230004, + "thread": 10 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 3381549, + "thread": 20 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 3518671, + "thread": 5 + } + }, + { + "amount": "72.888163547", + "slot": { + "period": 3622049, + "thread": 31 + } + }, + { + "amount": "72.888163551", + "slot": { + "period": 3839101, + "thread": 30 + } + } + ], + "AU1r9gKGUP4qtou3WJYGLFv7xMBqjS3RZc74uP1byA2RSHBZK94u": [ + { + "amount": "147.932167783", + "slot": { + "period": 142066, + "thread": 17 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 168727, + "thread": 25 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 351996, + "thread": 31 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 525721, + "thread": 12 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 774612, + "thread": 17 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 836479, + "thread": 21 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1144124, + "thread": 16 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1309341, + "thread": 15 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1392861, + "thread": 24 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1503189, + "thread": 25 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1714872, + "thread": 3 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 1809590, + "thread": 16 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2050895, + "thread": 14 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2243150, + "thread": 31 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2384173, + "thread": 31 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2519008, + "thread": 15 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2642986, + "thread": 23 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 2930750, + "thread": 3 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 3033203, + "thread": 17 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 3197458, + "thread": 29 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 3316581, + "thread": 22 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 3594962, + "thread": 1 + } + }, + { + "amount": "147.932167783", + "slot": { + "period": 3722572, + "thread": 20 + } + }, + { + "amount": "147.932167792", + "slot": { + "period": 3827655, + "thread": 31 + } + } + ], + "AU1rAEDTwf39KkdMuzxKuSycPq1oEUqGHqC1Y5zvquetJk6GFpnU": [ + { + "amount": "208.594678306", + "slot": { + "period": 78911, + "thread": 19 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 259360, + "thread": 20 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 438827, + "thread": 21 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 537074, + "thread": 6 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 698300, + "thread": 20 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 976210, + "thread": 7 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1075272, + "thread": 11 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1302202, + "thread": 6 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1465648, + "thread": 8 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1570772, + "thread": 24 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1688546, + "thread": 0 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1816834, + "thread": 16 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 1995252, + "thread": 5 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2256475, + "thread": 25 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2295718, + "thread": 4 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2557738, + "thread": 5 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2638976, + "thread": 10 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2845938, + "thread": 12 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 2992037, + "thread": 6 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 3252991, + "thread": 20 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 3416746, + "thread": 1 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 3497532, + "thread": 16 + } + }, + { + "amount": "208.594678306", + "slot": { + "period": 3667735, + "thread": 8 + } + }, + { + "amount": "208.594678298", + "slot": { + "period": 3865104, + "thread": 14 + } + } + ], + "AU1rAJFx7i24D9YbZTZcY4q4sorfxq5pE8ixXV7fZdkDwWDBVNaq": [ + { + "amount": "394.654720586", + "slot": { + "period": 73309, + "thread": 13 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 251489, + "thread": 3 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 488703, + "thread": 2 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 554132, + "thread": 3 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 692005, + "thread": 25 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 868107, + "thread": 2 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1059943, + "thread": 19 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1249561, + "thread": 22 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1325616, + "thread": 13 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1513372, + "thread": 9 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1763308, + "thread": 22 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 1863298, + "thread": 24 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2078505, + "thread": 31 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2202525, + "thread": 9 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2330352, + "thread": 31 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2620644, + "thread": 11 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2761556, + "thread": 15 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 2948464, + "thread": 8 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 3018893, + "thread": 9 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 3143574, + "thread": 26 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 3398050, + "thread": 22 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 3503937, + "thread": 28 + } + }, + { + "amount": "394.654720586", + "slot": { + "period": 3692170, + "thread": 15 + } + }, + { + "amount": "394.654720594", + "slot": { + "period": 3919772, + "thread": 16 + } + } + ], + "AU1rAMYkmosmijpBNap7CwMEVBRCyTcNFdxX1QnaP4B64qp51tgW": [ + { + "amount": "247.867314396", + "slot": { + "period": 94307, + "thread": 23 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 244973, + "thread": 14 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 351906, + "thread": 15 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 575863, + "thread": 12 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 777425, + "thread": 21 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 915437, + "thread": 20 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1118854, + "thread": 2 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1296198, + "thread": 4 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1432501, + "thread": 25 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1606470, + "thread": 1 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1725823, + "thread": 9 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 1966120, + "thread": 28 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2058181, + "thread": 16 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2239336, + "thread": 0 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2410981, + "thread": 17 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2463095, + "thread": 18 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2754701, + "thread": 0 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 2917743, + "thread": 29 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 3098960, + "thread": 13 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 3270232, + "thread": 26 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 3417332, + "thread": 8 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 3615475, + "thread": 29 + } + }, + { + "amount": "247.867314396", + "slot": { + "period": 3754540, + "thread": 5 + } + }, + { + "amount": "247.867314384", + "slot": { + "period": 3872436, + "thread": 26 + } + } + ], + "AU1rANaBGNrW9NiQiirMkAHUxzDv6NjoeYpTmnCZHLXkEaTvngje": [ + { + "amount": "152.681918881", + "slot": { + "period": 14650, + "thread": 8 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 219273, + "thread": 0 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 424868, + "thread": 26 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 594530, + "thread": 14 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 668876, + "thread": 29 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 949285, + "thread": 6 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1084895, + "thread": 11 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1161100, + "thread": 11 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1343320, + "thread": 6 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1632870, + "thread": 18 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1744110, + "thread": 5 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1882191, + "thread": 23 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 1981615, + "thread": 25 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 2208412, + "thread": 25 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 2438725, + "thread": 25 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 2490865, + "thread": 10 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 2662540, + "thread": 13 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 2824888, + "thread": 16 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 3106973, + "thread": 5 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 3236691, + "thread": 3 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 3300890, + "thread": 27 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 3598012, + "thread": 28 + } + }, + { + "amount": "152.681918881", + "slot": { + "period": 3674666, + "thread": 15 + } + }, + { + "amount": "152.681918875", + "slot": { + "period": 3845215, + "thread": 2 + } + } + ], + "AU1rBAeDuQWjKzEg2EcN9UNjfAcNGBxS4B3Mc4VrKsPYn99h8Ner": [ + { + "amount": "66.726763211", + "slot": { + "period": 23908, + "thread": 11 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 276887, + "thread": 27 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 412489, + "thread": 14 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 582005, + "thread": 11 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 665819, + "thread": 5 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 889036, + "thread": 15 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1099476, + "thread": 11 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1299896, + "thread": 26 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1353485, + "thread": 21 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1574003, + "thread": 23 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1669228, + "thread": 0 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 1830177, + "thread": 11 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2048885, + "thread": 30 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2166097, + "thread": 24 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2312585, + "thread": 15 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2490001, + "thread": 26 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2695188, + "thread": 31 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2802456, + "thread": 8 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 2995394, + "thread": 2 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 3241197, + "thread": 5 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 3434737, + "thread": 27 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 3586496, + "thread": 1 + } + }, + { + "amount": "66.726763211", + "slot": { + "period": 3627827, + "thread": 14 + } + }, + { + "amount": "66.726763210", + "slot": { + "period": 3796185, + "thread": 3 + } + } + ], + "AU1rBQbV8TCz8zV9y8UNuaNfyumZ17PsD46f1DasoYxsuGbnYfw9": [ + { + "amount": "119.431173318", + "slot": { + "period": 78891, + "thread": 8 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 285145, + "thread": 21 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 362593, + "thread": 14 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 588290, + "thread": 23 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 769417, + "thread": 11 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 957408, + "thread": 13 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1021910, + "thread": 6 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1297942, + "thread": 18 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1408488, + "thread": 1 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1638146, + "thread": 7 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1767811, + "thread": 5 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 1914122, + "thread": 21 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2118524, + "thread": 19 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2238333, + "thread": 8 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2337794, + "thread": 13 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2544040, + "thread": 31 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2744931, + "thread": 21 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2892960, + "thread": 29 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 2965363, + "thread": 4 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 3142679, + "thread": 0 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 3344099, + "thread": 9 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 3487902, + "thread": 10 + } + }, + { + "amount": "119.431173318", + "slot": { + "period": 3641894, + "thread": 18 + } + }, + { + "amount": "119.431173317", + "slot": { + "period": 3900490, + "thread": 29 + } + } + ], + "AU1rBiSRek6wTYFoA8fnXneemLkXoi9U3A95YCrH7hVxAd3o2nYm": [ + { + "amount": "102.750466618", + "slot": { + "period": 33878, + "thread": 16 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 305246, + "thread": 5 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 483644, + "thread": 9 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 548380, + "thread": 26 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 799346, + "thread": 12 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 967165, + "thread": 29 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1124154, + "thread": 23 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1303771, + "thread": 16 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1442010, + "thread": 20 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1641426, + "thread": 0 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1666285, + "thread": 24 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 1846241, + "thread": 22 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2055455, + "thread": 30 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2177550, + "thread": 6 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2365777, + "thread": 7 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2527214, + "thread": 4 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2702425, + "thread": 8 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 2796146, + "thread": 4 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 3088664, + "thread": 25 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 3266483, + "thread": 20 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 3368845, + "thread": 9 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 3574403, + "thread": 13 + } + }, + { + "amount": "102.750466618", + "slot": { + "period": 3658642, + "thread": 16 + } + }, + { + "amount": "102.750466615", + "slot": { + "period": 3886847, + "thread": 25 + } + } + ], + "AU1rCxUPP9yy8t3LRtqeLvr4bHqVZW6XSG4tXpj3bs44RfbhH6yQ": [ + { + "amount": "254.780587780", + "slot": { + "period": 58634, + "thread": 31 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 319099, + "thread": 0 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 414136, + "thread": 3 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 496876, + "thread": 23 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 654353, + "thread": 12 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 882720, + "thread": 3 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1063877, + "thread": 13 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1215141, + "thread": 1 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1457222, + "thread": 3 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1564231, + "thread": 17 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1701782, + "thread": 19 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 1836909, + "thread": 21 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2026875, + "thread": 16 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2253738, + "thread": 21 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2353237, + "thread": 11 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2499188, + "thread": 27 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2784803, + "thread": 24 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 2857392, + "thread": 10 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 3072413, + "thread": 20 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 3125395, + "thread": 0 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 3437320, + "thread": 15 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 3597030, + "thread": 2 + } + }, + { + "amount": "254.780587780", + "slot": { + "period": 3627785, + "thread": 16 + } + }, + { + "amount": "254.780587785", + "slot": { + "period": 3813930, + "thread": 4 + } + } + ], + "AU1rD1DQ1bucj1KDaavNbpwNgBWJvAJvVGc6nzzN41kGYpa7vi2K": [ + { + "amount": "51.508323453", + "slot": { + "period": 144322, + "thread": 9 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 301902, + "thread": 18 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 486974, + "thread": 23 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 538610, + "thread": 5 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 798215, + "thread": 12 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 922197, + "thread": 29 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1127757, + "thread": 28 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1208798, + "thread": 0 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1385867, + "thread": 21 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1548766, + "thread": 18 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1721210, + "thread": 11 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 1934032, + "thread": 31 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2044251, + "thread": 14 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2228424, + "thread": 30 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2397814, + "thread": 7 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2570091, + "thread": 30 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2672820, + "thread": 31 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 2899838, + "thread": 29 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 3101140, + "thread": 9 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 3278447, + "thread": 0 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 3372199, + "thread": 28 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 3607118, + "thread": 19 + } + }, + { + "amount": "51.508323453", + "slot": { + "period": 3655941, + "thread": 24 + } + }, + { + "amount": "51.508323443", + "slot": { + "period": 3817449, + "thread": 26 + } + } + ], + "AU1rDC3e6wcuBWSzaid5yuN7LUUgZqP9pB5FWQX6mHve3GrPgEpv": [ + { + "amount": "554.185107997", + "slot": { + "period": 79476, + "thread": 27 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 222821, + "thread": 26 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 359759, + "thread": 26 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 516553, + "thread": 14 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 744243, + "thread": 25 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 871025, + "thread": 7 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1048485, + "thread": 1 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1260638, + "thread": 18 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1398979, + "thread": 14 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1481394, + "thread": 4 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1671021, + "thread": 18 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 1883605, + "thread": 1 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2030602, + "thread": 22 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2263990, + "thread": 7 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2307315, + "thread": 9 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2501468, + "thread": 14 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2785844, + "thread": 1 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 2888709, + "thread": 27 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 3048153, + "thread": 17 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 3184997, + "thread": 16 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 3346215, + "thread": 15 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 3542645, + "thread": 14 + } + }, + { + "amount": "554.185107997", + "slot": { + "period": 3716614, + "thread": 27 + } + }, + { + "amount": "554.185107990", + "slot": { + "period": 3923182, + "thread": 23 + } + } + ], + "AU1rESywPicaAdgpkvpyRiV2iLmDeaQKg95SwrCatT3rGUay4vJ4": [ + { + "amount": "93.720571251", + "slot": { + "period": 157013, + "thread": 28 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 232110, + "thread": 26 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 482310, + "thread": 4 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 642677, + "thread": 8 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 792197, + "thread": 11 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 965894, + "thread": 27 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1129624, + "thread": 23 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1254663, + "thread": 9 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1445421, + "thread": 25 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1533180, + "thread": 5 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1664698, + "thread": 26 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 1936873, + "thread": 30 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2019866, + "thread": 10 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2212473, + "thread": 15 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2342243, + "thread": 14 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2603993, + "thread": 19 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2721173, + "thread": 25 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 2822853, + "thread": 28 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 3081557, + "thread": 23 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 3242391, + "thread": 2 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 3323401, + "thread": 5 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 3500184, + "thread": 4 + } + }, + { + "amount": "93.720571251", + "slot": { + "period": 3720108, + "thread": 3 + } + }, + { + "amount": "93.720571258", + "slot": { + "period": 3835662, + "thread": 22 + } + } + ], + "AU1rF2FwA5AavVRvtwATqm8ZcC6VjKTebquJHhkHLKvrdu8zR7uC": [ + { + "amount": "239.577232612", + "slot": { + "period": 114287, + "thread": 7 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 187364, + "thread": 13 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 478487, + "thread": 6 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 554596, + "thread": 3 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 664488, + "thread": 10 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 886604, + "thread": 4 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1122108, + "thread": 21 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1248884, + "thread": 26 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1357211, + "thread": 26 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1633267, + "thread": 15 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1800122, + "thread": 17 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 1908124, + "thread": 28 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2138991, + "thread": 27 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2258173, + "thread": 15 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2456592, + "thread": 18 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2469883, + "thread": 27 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2699577, + "thread": 15 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 2807148, + "thread": 17 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 3114569, + "thread": 23 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 3144835, + "thread": 16 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 3441149, + "thread": 25 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 3482734, + "thread": 22 + } + }, + { + "amount": "239.577232612", + "slot": { + "period": 3666282, + "thread": 3 + } + }, + { + "amount": "239.577232620", + "slot": { + "period": 3858144, + "thread": 19 + } + } + ], + "AU1rFeaxWGuVpKEQT1EQFdDHuvRGieKwXf377uYMYi77yj7m5hHB": [ + { + "amount": "266.042422863", + "slot": { + "period": 49830, + "thread": 15 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 203596, + "thread": 22 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 434856, + "thread": 9 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 651128, + "thread": 26 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 729622, + "thread": 11 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 821552, + "thread": 10 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1111579, + "thread": 0 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1178250, + "thread": 23 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1478136, + "thread": 17 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1560548, + "thread": 9 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1728066, + "thread": 2 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1890577, + "thread": 20 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 1998442, + "thread": 27 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2255635, + "thread": 19 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2452621, + "thread": 4 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2561384, + "thread": 7 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2790082, + "thread": 7 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2872568, + "thread": 19 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 2993542, + "thread": 27 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 3155292, + "thread": 21 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 3294958, + "thread": 6 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 3582575, + "thread": 19 + } + }, + { + "amount": "266.042422863", + "slot": { + "period": 3726440, + "thread": 31 + } + }, + { + "amount": "266.042422853", + "slot": { + "period": 3876684, + "thread": 15 + } + } + ], + "AU1rGhb3JXdUfKfs6A1FjdrS9pqMnnNgdWaMHcCoDTsqefqrRB1z": [ + { + "amount": "380.539006804", + "slot": { + "period": 39870, + "thread": 11 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 234729, + "thread": 12 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 344882, + "thread": 30 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 651270, + "thread": 2 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 686392, + "thread": 8 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 967507, + "thread": 25 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1144948, + "thread": 24 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1310320, + "thread": 8 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1369415, + "thread": 26 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1502971, + "thread": 8 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1691960, + "thread": 17 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 1836394, + "thread": 17 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2030312, + "thread": 7 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2254384, + "thread": 30 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2392056, + "thread": 26 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2498169, + "thread": 20 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2725759, + "thread": 3 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 2841270, + "thread": 29 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 3093561, + "thread": 9 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 3143052, + "thread": 5 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 3400389, + "thread": 9 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 3588862, + "thread": 1 + } + }, + { + "amount": "380.539006804", + "slot": { + "period": 3749898, + "thread": 27 + } + }, + { + "amount": "380.539006805", + "slot": { + "period": 3869652, + "thread": 26 + } + } + ], + "AU1rGp7ckGMLJJ9JQ3FcP7hP13UGrQJHxtdHRRne57HJTzTtLCXj": [ + { + "amount": "499.368310225", + "slot": { + "period": 97402, + "thread": 8 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 185132, + "thread": 29 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 380244, + "thread": 0 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 512133, + "thread": 1 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 694557, + "thread": 7 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 959622, + "thread": 20 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1051329, + "thread": 31 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1193226, + "thread": 8 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1396652, + "thread": 10 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1611922, + "thread": 19 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1649348, + "thread": 21 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 1960596, + "thread": 9 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2137913, + "thread": 10 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2270213, + "thread": 4 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2429768, + "thread": 22 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2605031, + "thread": 12 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2750593, + "thread": 25 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 2857914, + "thread": 5 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 3114806, + "thread": 21 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 3209949, + "thread": 25 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 3448019, + "thread": 16 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 3483876, + "thread": 6 + } + }, + { + "amount": "499.368310225", + "slot": { + "period": 3734720, + "thread": 1 + } + }, + { + "amount": "499.368310236", + "slot": { + "period": 3827448, + "thread": 31 + } + } + ], + "AU1rHDi1RjeMi5tghjCggWhsFSq1UU4oGnq7GVCfca26MH9uzMT4": [ + { + "amount": "167.376667872", + "slot": { + "period": 37653, + "thread": 26 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 255653, + "thread": 27 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 342219, + "thread": 25 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 492311, + "thread": 19 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 726879, + "thread": 28 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 901978, + "thread": 5 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1132220, + "thread": 30 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1278252, + "thread": 2 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1467668, + "thread": 31 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1524052, + "thread": 21 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1721290, + "thread": 15 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 1813471, + "thread": 19 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2019162, + "thread": 21 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2289794, + "thread": 13 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2454750, + "thread": 10 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2605774, + "thread": 19 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2627677, + "thread": 8 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 2927643, + "thread": 7 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 3091558, + "thread": 27 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 3185125, + "thread": 31 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 3350658, + "thread": 21 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 3508853, + "thread": 25 + } + }, + { + "amount": "167.376667872", + "slot": { + "period": 3721599, + "thread": 15 + } + }, + { + "amount": "167.376667868", + "slot": { + "period": 3879827, + "thread": 26 + } + } + ], + "AU1rHcTs9abFRLDTcs7UdY7TgcL1HvZFvgk9khW674gqHJ9Xnr8z": [ + { + "amount": "3564.837500000", + "slot": { + "period": 108195, + "thread": 5 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 312752, + "thread": 9 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 351650, + "thread": 7 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 601050, + "thread": 20 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 784824, + "thread": 27 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 856947, + "thread": 20 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1026979, + "thread": 18 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1280957, + "thread": 18 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1398775, + "thread": 5 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1512418, + "thread": 13 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1724941, + "thread": 28 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 1905717, + "thread": 18 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2032287, + "thread": 10 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2263456, + "thread": 2 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2437046, + "thread": 17 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2532292, + "thread": 12 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2673264, + "thread": 24 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 2823828, + "thread": 20 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3109410, + "thread": 16 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3122881, + "thread": 5 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3422808, + "thread": 22 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3496033, + "thread": 31 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3684778, + "thread": 30 + } + }, + { + "amount": "3564.837500000", + "slot": { + "period": 3820918, + "thread": 31 + } + } + ], + "AU1rHnM1TT6fdJ3Go5RSrsLfSj1KD3PBzAKYjLYhXTUYaRPT4NRF": [ + { + "amount": "77.795198911", + "slot": { + "period": 73577, + "thread": 10 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 202506, + "thread": 19 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 483516, + "thread": 12 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 554956, + "thread": 6 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 664796, + "thread": 10 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 952612, + "thread": 8 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1057792, + "thread": 12 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1210411, + "thread": 3 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1439250, + "thread": 12 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1541375, + "thread": 11 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1775050, + "thread": 10 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 1857412, + "thread": 25 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2041522, + "thread": 23 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2236596, + "thread": 20 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2321384, + "thread": 2 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2512383, + "thread": 8 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2781355, + "thread": 13 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 2861574, + "thread": 23 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 3084757, + "thread": 6 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 3244188, + "thread": 16 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 3449739, + "thread": 22 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 3487827, + "thread": 13 + } + }, + { + "amount": "77.795198911", + "slot": { + "period": 3635617, + "thread": 28 + } + }, + { + "amount": "77.795198914", + "slot": { + "period": 3942811, + "thread": 5 + } + } + ], + "AU1rJReCEKJskUceDMbZsjCQVjBSiS1NVpYjJrcARtHyKzr2aAL6": [ + { + "amount": "202.617730593", + "slot": { + "period": 112336, + "thread": 29 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 230438, + "thread": 10 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 347795, + "thread": 27 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 598714, + "thread": 21 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 738735, + "thread": 12 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 927160, + "thread": 18 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1026713, + "thread": 31 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1201481, + "thread": 17 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1339862, + "thread": 13 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1567314, + "thread": 25 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1763087, + "thread": 10 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 1844671, + "thread": 16 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2036800, + "thread": 26 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2289214, + "thread": 22 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2419852, + "thread": 20 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2524536, + "thread": 2 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2643021, + "thread": 6 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 2821597, + "thread": 4 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 3049682, + "thread": 9 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 3215365, + "thread": 9 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 3414958, + "thread": 4 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 3604268, + "thread": 17 + } + }, + { + "amount": "202.617730593", + "slot": { + "period": 3697042, + "thread": 17 + } + }, + { + "amount": "202.617730584", + "slot": { + "period": 3853659, + "thread": 8 + } + } + ], + "AU1rLirqJLyHHBpBSpc5dtTBzm4ohF9TSC3Gc6CkurZVox9FT4DG": [ + { + "amount": "123.988571136", + "slot": { + "period": 35539, + "thread": 8 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 216176, + "thread": 5 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 336469, + "thread": 8 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 575532, + "thread": 22 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 752963, + "thread": 22 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 840573, + "thread": 5 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1007009, + "thread": 4 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1281523, + "thread": 13 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1472416, + "thread": 20 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1628325, + "thread": 31 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1684981, + "thread": 21 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 1921835, + "thread": 9 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2028409, + "thread": 20 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2170194, + "thread": 8 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2367411, + "thread": 14 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2469935, + "thread": 5 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2748318, + "thread": 26 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 2942874, + "thread": 25 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 3000068, + "thread": 7 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 3263515, + "thread": 12 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 3387189, + "thread": 14 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 3540684, + "thread": 23 + } + }, + { + "amount": "123.988571136", + "slot": { + "period": 3774867, + "thread": 2 + } + }, + { + "amount": "123.988571132", + "slot": { + "period": 3868079, + "thread": 20 + } + } + ], + "AU1rMVcbVjeP9pkm5HmdyPKaeRBA4t37siXjkjcPkUCpAFHSd5fK": [ + { + "amount": "597.956079861", + "slot": { + "period": 125707, + "thread": 31 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 187487, + "thread": 14 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 388827, + "thread": 24 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 562689, + "thread": 12 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 669355, + "thread": 23 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 856428, + "thread": 10 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1072624, + "thread": 21 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1295567, + "thread": 29 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1354775, + "thread": 9 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1481481, + "thread": 20 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1738110, + "thread": 24 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 1877118, + "thread": 2 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2057556, + "thread": 13 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2171900, + "thread": 10 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2310580, + "thread": 28 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2521525, + "thread": 0 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2643086, + "thread": 18 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2909922, + "thread": 29 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 2992327, + "thread": 16 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 3153475, + "thread": 23 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 3434937, + "thread": 30 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 3533244, + "thread": 1 + } + }, + { + "amount": "597.956079861", + "slot": { + "period": 3625214, + "thread": 16 + } + }, + { + "amount": "597.956079852", + "slot": { + "period": 3849352, + "thread": 18 + } + } + ], + "AU1rN5myJHcraa3EzPgnh2SSy3hn2wkD3AELKNGhjCD9A8hdvdWX": [ + { + "amount": "148.595165203", + "slot": { + "period": 26948, + "thread": 2 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 322593, + "thread": 30 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 338321, + "thread": 30 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 516759, + "thread": 11 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 773980, + "thread": 25 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 900461, + "thread": 14 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1033936, + "thread": 2 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1241470, + "thread": 11 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1415342, + "thread": 4 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1617017, + "thread": 10 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1750548, + "thread": 28 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 1892856, + "thread": 28 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2028718, + "thread": 15 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2179749, + "thread": 22 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2402369, + "thread": 29 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2586195, + "thread": 19 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2722465, + "thread": 11 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2939259, + "thread": 2 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 2970526, + "thread": 21 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 3271000, + "thread": 12 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 3428474, + "thread": 13 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 3554189, + "thread": 13 + } + }, + { + "amount": "148.595165203", + "slot": { + "period": 3654896, + "thread": 7 + } + }, + { + "amount": "148.595165202", + "slot": { + "period": 3786865, + "thread": 25 + } + } + ], + "AU1rP375LRfPiQbRno9mye4MtQSDwTotvsFdQY2Lr5yf99By5ygY": [ + { + "amount": "96.917330130", + "slot": { + "period": 86065, + "thread": 20 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 193567, + "thread": 1 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 459217, + "thread": 3 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 638702, + "thread": 16 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 683094, + "thread": 16 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 951350, + "thread": 9 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1065757, + "thread": 25 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1242946, + "thread": 12 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1370072, + "thread": 30 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1555736, + "thread": 5 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1803986, + "thread": 30 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 1952088, + "thread": 19 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2042460, + "thread": 9 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2181016, + "thread": 19 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2446408, + "thread": 10 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2540408, + "thread": 4 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2629486, + "thread": 2 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 2845244, + "thread": 21 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 3084577, + "thread": 4 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 3212535, + "thread": 5 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 3345530, + "thread": 1 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 3552482, + "thread": 17 + } + }, + { + "amount": "96.917330130", + "slot": { + "period": 3675978, + "thread": 9 + } + }, + { + "amount": "96.917330142", + "slot": { + "period": 3789934, + "thread": 23 + } + } + ], + "AU1rQZar4cf7qgkMfL1mQcJVa37T5MUvEDwicdCjsxMbbssZCkS3": [ + { + "amount": "100.612110073", + "slot": { + "period": 51876, + "thread": 2 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 172241, + "thread": 25 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 337108, + "thread": 30 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 578640, + "thread": 21 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 711401, + "thread": 7 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 881617, + "thread": 18 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1024458, + "thread": 0 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1251299, + "thread": 15 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1424307, + "thread": 16 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1534934, + "thread": 7 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1759255, + "thread": 16 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 1917904, + "thread": 13 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2013132, + "thread": 3 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2291695, + "thread": 17 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2437746, + "thread": 14 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2465376, + "thread": 26 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2663950, + "thread": 15 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 2840028, + "thread": 28 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 3079850, + "thread": 11 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 3265752, + "thread": 26 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 3442124, + "thread": 30 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 3558167, + "thread": 22 + } + }, + { + "amount": "100.612110073", + "slot": { + "period": 3619050, + "thread": 1 + } + }, + { + "amount": "100.612110084", + "slot": { + "period": 3880270, + "thread": 2 + } + } + ], + "AU1rRyCrCg4BqpoDhkbD1b41V2pzpJ3W2fk4pwFtj9ABEeCYtB4h": [ + { + "amount": "625.439056229", + "slot": { + "period": 161613, + "thread": 22 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 308543, + "thread": 29 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 404493, + "thread": 6 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 500959, + "thread": 3 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 668408, + "thread": 3 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 871811, + "thread": 25 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1050633, + "thread": 11 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1172931, + "thread": 8 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1345364, + "thread": 21 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1566637, + "thread": 18 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1674080, + "thread": 8 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1864699, + "thread": 13 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 1984991, + "thread": 15 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2215395, + "thread": 0 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2368866, + "thread": 10 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2468097, + "thread": 29 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2638868, + "thread": 12 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2856869, + "thread": 25 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 2971708, + "thread": 30 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 3139833, + "thread": 23 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 3387024, + "thread": 27 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 3520842, + "thread": 16 + } + }, + { + "amount": "625.439056229", + "slot": { + "period": 3620264, + "thread": 5 + } + }, + { + "amount": "625.439056236", + "slot": { + "period": 3806233, + "thread": 17 + } + } + ], + "AU1rSXYQeiEKadiSLcF3bhKZKP8wZfNLxS2NoxBAdqPqLdgQ4TyW": [ + { + "amount": "175.105948450", + "slot": { + "period": 98213, + "thread": 7 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 239122, + "thread": 20 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 412477, + "thread": 28 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 576569, + "thread": 15 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 668823, + "thread": 4 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 828458, + "thread": 4 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1107568, + "thread": 6 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1260412, + "thread": 6 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1432493, + "thread": 6 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1628244, + "thread": 25 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1731753, + "thread": 20 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 1821209, + "thread": 0 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2123425, + "thread": 7 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2293637, + "thread": 2 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2455475, + "thread": 15 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2558105, + "thread": 28 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2638780, + "thread": 24 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2927619, + "thread": 27 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 2993324, + "thread": 23 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 3138849, + "thread": 6 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 3362640, + "thread": 5 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 3488201, + "thread": 15 + } + }, + { + "amount": "175.105948450", + "slot": { + "period": 3693104, + "thread": 7 + } + }, + { + "amount": "175.105948461", + "slot": { + "period": 3808158, + "thread": 21 + } + } + ], + "AU1rUTKDeykApfZe7JdphAKevaVE2XpiPUJks3xnuaQywrAzSJty": [ + { + "amount": "234.525176880", + "slot": { + "period": 34397, + "thread": 5 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 178337, + "thread": 18 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 409839, + "thread": 11 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 537152, + "thread": 12 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 779166, + "thread": 3 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 906644, + "thread": 3 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1129585, + "thread": 21 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1245636, + "thread": 5 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1388092, + "thread": 5 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1519571, + "thread": 24 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1677880, + "thread": 23 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 1918891, + "thread": 20 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2049125, + "thread": 3 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2282837, + "thread": 18 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2432192, + "thread": 29 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2563596, + "thread": 29 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2698812, + "thread": 11 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2937598, + "thread": 19 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 2965554, + "thread": 30 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 3133880, + "thread": 26 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 3445441, + "thread": 29 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 3592942, + "thread": 29 + } + }, + { + "amount": "234.525176880", + "slot": { + "period": 3729501, + "thread": 8 + } + }, + { + "amount": "234.525176890", + "slot": { + "period": 3888450, + "thread": 24 + } + } + ], + "AU1rV6d6VPEuMcjEVP1YhnZxbcWnSCUaQwyi6f9kp2X8zYTEJxxS": [ + { + "amount": "280.046051365", + "slot": { + "period": 131519, + "thread": 22 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 276807, + "thread": 4 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 481841, + "thread": 26 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 507047, + "thread": 30 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 785117, + "thread": 26 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 869093, + "thread": 21 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 999889, + "thread": 3 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 1157589, + "thread": 11 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 1451429, + "thread": 19 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 1556299, + "thread": 14 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 1770344, + "thread": 15 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 1856284, + "thread": 15 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2031825, + "thread": 14 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2187379, + "thread": 17 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2449542, + "thread": 17 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2512114, + "thread": 4 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2682514, + "thread": 7 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2849429, + "thread": 4 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 2988900, + "thread": 10 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 3192416, + "thread": 9 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 3448607, + "thread": 20 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 3579732, + "thread": 12 + } + }, + { + "amount": "280.046051365", + "slot": { + "period": 3676312, + "thread": 21 + } + }, + { + "amount": "280.046051376", + "slot": { + "period": 3921471, + "thread": 25 + } + } + ], + "AU1rVwnaJDgLxPBxPmYB3S3DjTGsUiv2BzQEos8kY7kfuGqF2Tyz": [ + { + "amount": "90.722889755", + "slot": { + "period": 17773, + "thread": 28 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 303344, + "thread": 22 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 385906, + "thread": 0 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 541244, + "thread": 30 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 688240, + "thread": 13 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 962759, + "thread": 14 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1148093, + "thread": 15 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1196111, + "thread": 9 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1325914, + "thread": 6 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1553510, + "thread": 18 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1796030, + "thread": 28 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 1840891, + "thread": 22 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2040098, + "thread": 13 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2219412, + "thread": 23 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2355658, + "thread": 22 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2515505, + "thread": 24 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2735491, + "thread": 2 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 2840306, + "thread": 10 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 3029932, + "thread": 9 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 3273735, + "thread": 8 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 3441734, + "thread": 21 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 3609061, + "thread": 21 + } + }, + { + "amount": "90.722889755", + "slot": { + "period": 3758689, + "thread": 18 + } + }, + { + "amount": "90.722889750", + "slot": { + "period": 3840084, + "thread": 31 + } + } + ], + "AU1rWwHbFZKqdibFP3yzPp6BKg4DZ3qZZjsLzdJz6iqcRnkENuMr": [ + { + "amount": "446.946659400", + "slot": { + "period": 136236, + "thread": 1 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 246353, + "thread": 21 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 486647, + "thread": 0 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 562235, + "thread": 24 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 783047, + "thread": 3 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 883347, + "thread": 23 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1075543, + "thread": 29 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1268198, + "thread": 19 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1415404, + "thread": 6 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1574988, + "thread": 7 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1691539, + "thread": 10 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 1837365, + "thread": 4 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2056714, + "thread": 27 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2284660, + "thread": 28 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2429593, + "thread": 11 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2579718, + "thread": 19 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2712431, + "thread": 7 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 2862840, + "thread": 13 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 3022163, + "thread": 18 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 3281185, + "thread": 21 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 3385695, + "thread": 1 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 3457659, + "thread": 29 + } + }, + { + "amount": "446.946659400", + "slot": { + "period": 3653603, + "thread": 22 + } + }, + { + "amount": "446.946659411", + "slot": { + "period": 3933335, + "thread": 4 + } + } + ], + "AU1rWxkXinumihTZrk3n811LkJHZycuGp9dhrAYXS4B6T3qvLad3": [ + { + "amount": "123.522056138", + "slot": { + "period": 19826, + "thread": 13 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 295969, + "thread": 16 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 334505, + "thread": 25 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 498534, + "thread": 26 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 685737, + "thread": 0 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 918019, + "thread": 18 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1091281, + "thread": 15 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1189602, + "thread": 16 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1418315, + "thread": 22 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1518459, + "thread": 3 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1702069, + "thread": 12 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1948801, + "thread": 20 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 1992365, + "thread": 10 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 2187555, + "thread": 23 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 2440200, + "thread": 30 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 2620328, + "thread": 2 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 2633417, + "thread": 6 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 2855019, + "thread": 8 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 3117416, + "thread": 22 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 3211969, + "thread": 14 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 3320150, + "thread": 29 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 3568861, + "thread": 31 + } + }, + { + "amount": "123.522056138", + "slot": { + "period": 3622119, + "thread": 25 + } + }, + { + "amount": "123.522056129", + "slot": { + "period": 3920084, + "thread": 31 + } + } + ], + "AU1rWywL2HQFPAWj3MpNPNM6A8gGUQGJRhnScisjz4kQ2DFgtVr6": [ + { + "amount": "317.088601506", + "slot": { + "period": 40412, + "thread": 3 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 288340, + "thread": 21 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 480185, + "thread": 8 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 496939, + "thread": 29 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 746524, + "thread": 22 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 850251, + "thread": 0 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1028303, + "thread": 6 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1270123, + "thread": 29 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1344602, + "thread": 5 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1579915, + "thread": 29 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1765666, + "thread": 7 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 1961947, + "thread": 4 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2096984, + "thread": 22 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2163672, + "thread": 7 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2460591, + "thread": 30 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2598939, + "thread": 0 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2641002, + "thread": 19 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 2820288, + "thread": 23 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 3083315, + "thread": 29 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 3165133, + "thread": 21 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 3379241, + "thread": 3 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 3496653, + "thread": 30 + } + }, + { + "amount": "317.088601506", + "slot": { + "period": 3651993, + "thread": 15 + } + }, + { + "amount": "317.088601516", + "slot": { + "period": 3939201, + "thread": 13 + } + } + ], + "AU1rX7FyyGE9pb3Fpv7jsGSGuj4p5WfEer3wbuudvWnNnfuD4foa": [ + { + "amount": "53.055486781", + "slot": { + "period": 92468, + "thread": 6 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 251457, + "thread": 17 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 387822, + "thread": 8 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 619243, + "thread": 10 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 689978, + "thread": 16 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 889484, + "thread": 29 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1079267, + "thread": 17 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1186379, + "thread": 19 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1419884, + "thread": 22 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1578434, + "thread": 15 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1756974, + "thread": 13 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 1899732, + "thread": 14 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2014867, + "thread": 9 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2148968, + "thread": 2 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2333139, + "thread": 23 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2563486, + "thread": 9 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2627017, + "thread": 23 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 2867557, + "thread": 6 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 3096987, + "thread": 4 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 3221396, + "thread": 19 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 3376471, + "thread": 6 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 3503756, + "thread": 16 + } + }, + { + "amount": "53.055486781", + "slot": { + "period": 3731309, + "thread": 9 + } + }, + { + "amount": "53.055486776", + "slot": { + "period": 3784063, + "thread": 5 + } + } + ], + "AU1rY13uU6GVKUMS9fK5E93JB1F6MoapbNW3enXovC1Fy6DQsRj7": [ + { + "amount": "229.825466938", + "slot": { + "period": 90390, + "thread": 26 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 306125, + "thread": 9 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 373990, + "thread": 6 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 495556, + "thread": 4 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 753112, + "thread": 14 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 887389, + "thread": 20 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1147359, + "thread": 28 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1242826, + "thread": 15 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1405923, + "thread": 17 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1521486, + "thread": 13 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1779622, + "thread": 30 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 1824545, + "thread": 23 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2055442, + "thread": 21 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2250948, + "thread": 15 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2411015, + "thread": 22 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2574608, + "thread": 12 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2655039, + "thread": 30 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 2873664, + "thread": 2 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 3119899, + "thread": 1 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 3127601, + "thread": 0 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 3330736, + "thread": 15 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 3588185, + "thread": 24 + } + }, + { + "amount": "229.825466938", + "slot": { + "period": 3647238, + "thread": 2 + } + }, + { + "amount": "229.825466927", + "slot": { + "period": 3934875, + "thread": 21 + } + } + ], + "AU1rYBzw5dan7LBoB8ujL1o2yyFNm1DJhidvS88H1dMzWxBx1uwY": [ + { + "amount": "124.962198156", + "slot": { + "period": 140836, + "thread": 18 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 222119, + "thread": 28 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 418865, + "thread": 6 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 548965, + "thread": 16 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 721988, + "thread": 22 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 837899, + "thread": 3 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 992470, + "thread": 19 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 1211087, + "thread": 20 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 1447431, + "thread": 23 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 1479932, + "thread": 28 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 1755115, + "thread": 29 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 1839807, + "thread": 4 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2037105, + "thread": 24 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2179404, + "thread": 4 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2405024, + "thread": 4 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2520189, + "thread": 8 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2706508, + "thread": 18 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 2902489, + "thread": 27 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 3034543, + "thread": 17 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 3263133, + "thread": 8 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 3310034, + "thread": 25 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 3611313, + "thread": 17 + } + }, + { + "amount": "124.962198156", + "slot": { + "period": 3680105, + "thread": 2 + } + }, + { + "amount": "124.962198161", + "slot": { + "period": 3784267, + "thread": 30 + } + } + ], + "AU1rYJK9bArvL8EGkiX3LSnQE5MgmABuWsk4dBq7Kf5yuDM4bpLQ": [ + { + "amount": "311.400467324", + "slot": { + "period": 146367, + "thread": 21 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 212797, + "thread": 29 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 382321, + "thread": 2 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 556205, + "thread": 19 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 675590, + "thread": 3 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 832927, + "thread": 16 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1051875, + "thread": 23 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1226952, + "thread": 27 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1458527, + "thread": 5 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1595694, + "thread": 21 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1788145, + "thread": 8 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1892828, + "thread": 5 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 1997716, + "thread": 15 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 2209843, + "thread": 0 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 2414767, + "thread": 25 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 2559103, + "thread": 19 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 2662294, + "thread": 24 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 2868496, + "thread": 13 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 3062511, + "thread": 15 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 3187720, + "thread": 31 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 3352280, + "thread": 16 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 3488707, + "thread": 23 + } + }, + { + "amount": "311.400467324", + "slot": { + "period": 3653868, + "thread": 1 + } + }, + { + "amount": "311.400467321", + "slot": { + "period": 3906258, + "thread": 6 + } + } + ], + "AU1rYTywVQmEYYvFVrzqXKoWR4XVoSNXQDhwbWKfVEUstFboBH4Y": [ + { + "amount": "109.542351935", + "slot": { + "period": 153390, + "thread": 9 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 289698, + "thread": 1 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 489835, + "thread": 19 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 606270, + "thread": 24 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 776168, + "thread": 27 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 904962, + "thread": 2 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1012953, + "thread": 6 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1315444, + "thread": 11 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1414394, + "thread": 24 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1546838, + "thread": 24 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1711930, + "thread": 3 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 1837022, + "thread": 11 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2129732, + "thread": 0 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2174972, + "thread": 19 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2390836, + "thread": 6 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2520840, + "thread": 5 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2666290, + "thread": 31 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 2926157, + "thread": 19 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 3104363, + "thread": 25 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 3230893, + "thread": 30 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 3312478, + "thread": 15 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 3531817, + "thread": 8 + } + }, + { + "amount": "109.542351935", + "slot": { + "period": 3638698, + "thread": 18 + } + }, + { + "amount": "109.542351931", + "slot": { + "period": 3876691, + "thread": 28 + } + } + ], + "AU1rYiSC7ZxNe29TKEj9PKryspar1uoXbJyv1hzvN7EVYdwLx1f5": [ + { + "amount": "248.177446169", + "slot": { + "period": 18745, + "thread": 8 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 224156, + "thread": 28 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 431381, + "thread": 22 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 627615, + "thread": 17 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 670572, + "thread": 13 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 820810, + "thread": 2 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1108520, + "thread": 20 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1253356, + "thread": 15 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1358706, + "thread": 7 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1620978, + "thread": 30 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1739263, + "thread": 25 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 1838983, + "thread": 26 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2105792, + "thread": 0 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2177896, + "thread": 1 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2312799, + "thread": 22 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2509572, + "thread": 7 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2757142, + "thread": 10 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2798318, + "thread": 16 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 2958507, + "thread": 3 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 3140274, + "thread": 0 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 3298010, + "thread": 31 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 3503924, + "thread": 21 + } + }, + { + "amount": "248.177446169", + "slot": { + "period": 3642871, + "thread": 31 + } + }, + { + "amount": "248.177446177", + "slot": { + "period": 3803921, + "thread": 18 + } + } + ], + "AU1rYpRB1DmB2ACHCY9xtKmYsfLVUa1jia2MV1iF9UQVns3DZYNf": [ + { + "amount": "76.373205156", + "slot": { + "period": 42884, + "thread": 31 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 238196, + "thread": 7 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 348940, + "thread": 9 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 583361, + "thread": 7 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 793912, + "thread": 5 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 959284, + "thread": 14 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1018111, + "thread": 14 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1229559, + "thread": 22 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1320194, + "thread": 2 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1636609, + "thread": 2 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1752181, + "thread": 29 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 1862889, + "thread": 30 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2048392, + "thread": 25 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2268814, + "thread": 28 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2425974, + "thread": 2 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2528504, + "thread": 8 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2723013, + "thread": 30 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 2938712, + "thread": 8 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 3080143, + "thread": 9 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 3168826, + "thread": 15 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 3440791, + "thread": 1 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 3481451, + "thread": 26 + } + }, + { + "amount": "76.373205156", + "slot": { + "period": 3701132, + "thread": 5 + } + }, + { + "amount": "76.373205144", + "slot": { + "period": 3873082, + "thread": 0 + } + } + ], + "AU1ra1sFTCaPr4gbvVVxbqXVQ1m5T9aXCvkUKgZ29SH4wTK8Z6sb": [ + { + "amount": "105.341897566", + "slot": { + "period": 132293, + "thread": 28 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 310673, + "thread": 3 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 379922, + "thread": 28 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 523336, + "thread": 27 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 780341, + "thread": 18 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 972498, + "thread": 4 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 991080, + "thread": 0 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 1258398, + "thread": 3 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 1460806, + "thread": 12 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 1617149, + "thread": 2 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 1722777, + "thread": 24 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 1965668, + "thread": 6 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2125869, + "thread": 6 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2170379, + "thread": 25 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2349448, + "thread": 27 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2599508, + "thread": 14 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2727293, + "thread": 30 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2937975, + "thread": 2 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 2958295, + "thread": 28 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 3160058, + "thread": 5 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 3397113, + "thread": 1 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 3615689, + "thread": 22 + } + }, + { + "amount": "105.341897566", + "slot": { + "period": 3747432, + "thread": 21 + } + }, + { + "amount": "105.341897559", + "slot": { + "period": 3917547, + "thread": 19 + } + } + ], + "AU1rbVvrmSqUfD4UMjVrhM4jZC7KooTWYgfHJWiZ4x5rhibS5fHA": [ + { + "amount": "142.400078905", + "slot": { + "period": 157670, + "thread": 22 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 308073, + "thread": 28 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 390504, + "thread": 0 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 555817, + "thread": 17 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 780745, + "thread": 7 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 860180, + "thread": 31 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1133335, + "thread": 7 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1231648, + "thread": 2 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1363221, + "thread": 11 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1592146, + "thread": 6 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1757174, + "thread": 25 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 1865311, + "thread": 16 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2082518, + "thread": 1 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2144743, + "thread": 24 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2400337, + "thread": 5 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2600237, + "thread": 26 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2663542, + "thread": 5 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2890616, + "thread": 6 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 2994630, + "thread": 26 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 3137511, + "thread": 4 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 3373010, + "thread": 13 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 3505126, + "thread": 4 + } + }, + { + "amount": "142.400078905", + "slot": { + "period": 3661861, + "thread": 18 + } + }, + { + "amount": "142.400078915", + "slot": { + "period": 3865502, + "thread": 3 + } + } + ], + "AU1rbWPS6HNJnwVjVGMwsd8kHJ8pFXfHB9LreoMSQzeQxvhdCwmg": [ + { + "amount": "283.886242537", + "slot": { + "period": 34646, + "thread": 7 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 248621, + "thread": 13 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 335057, + "thread": 11 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 589331, + "thread": 2 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 818090, + "thread": 7 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 948170, + "thread": 21 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1059867, + "thread": 13 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1308806, + "thread": 20 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1327480, + "thread": 30 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1578048, + "thread": 19 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1764618, + "thread": 24 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 1869026, + "thread": 28 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2136281, + "thread": 17 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2203352, + "thread": 4 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2436306, + "thread": 10 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2478536, + "thread": 30 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2771507, + "thread": 25 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 2814421, + "thread": 20 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 3024197, + "thread": 19 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 3275290, + "thread": 31 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 3385607, + "thread": 3 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 3493790, + "thread": 2 + } + }, + { + "amount": "283.886242537", + "slot": { + "period": 3648563, + "thread": 13 + } + }, + { + "amount": "283.886242526", + "slot": { + "period": 3846334, + "thread": 30 + } + } + ], + "AU1rc1ip5ShPHqFbUbKHV2eqGCeqTNS9mwqqgaQGvg2BTX7YfTEZ": [ + { + "amount": "53.492276611", + "slot": { + "period": 61344, + "thread": 21 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 247953, + "thread": 14 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 442068, + "thread": 26 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 553965, + "thread": 11 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 715272, + "thread": 7 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 956423, + "thread": 17 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1056242, + "thread": 16 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1162300, + "thread": 9 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1330378, + "thread": 31 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1510063, + "thread": 0 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1667149, + "thread": 6 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 1972476, + "thread": 3 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2108301, + "thread": 30 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2196485, + "thread": 8 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2367867, + "thread": 31 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2536915, + "thread": 0 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2775216, + "thread": 13 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 2804506, + "thread": 28 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 3009619, + "thread": 10 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 3222463, + "thread": 18 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 3354312, + "thread": 9 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 3535189, + "thread": 21 + } + }, + { + "amount": "53.492276611", + "slot": { + "period": 3628319, + "thread": 23 + } + }, + { + "amount": "53.492276602", + "slot": { + "period": 3783445, + "thread": 11 + } + } + ], + "AU1rcNPjDvgPZxgzF4GkT9SQB86K24nNheGhYEH1DttfqDV2Sypd": [ + { + "amount": "199.822030811", + "slot": { + "period": 80295, + "thread": 23 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 296042, + "thread": 1 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 361982, + "thread": 6 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 497934, + "thread": 24 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 663354, + "thread": 5 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 976948, + "thread": 26 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1122081, + "thread": 23 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1219498, + "thread": 21 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1342739, + "thread": 19 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1636295, + "thread": 27 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1781176, + "thread": 28 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 1836894, + "thread": 29 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2047708, + "thread": 7 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2210858, + "thread": 15 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2416910, + "thread": 10 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2591091, + "thread": 25 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2667051, + "thread": 0 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 2906240, + "thread": 23 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 3072008, + "thread": 24 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 3177253, + "thread": 0 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 3405897, + "thread": 13 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 3543803, + "thread": 3 + } + }, + { + "amount": "199.822030811", + "slot": { + "period": 3663157, + "thread": 22 + } + }, + { + "amount": "199.822030807", + "slot": { + "period": 3791385, + "thread": 27 + } + } + ], + "AU1rcRH4g8Fr5bYGjdsPvLixiCrWRCHNNAimuNuosRcTHmUEM77m": [ + { + "amount": "99.482143195", + "slot": { + "period": 68934, + "thread": 9 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 217273, + "thread": 31 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 424067, + "thread": 8 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 589421, + "thread": 23 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 698331, + "thread": 9 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 879624, + "thread": 17 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1077522, + "thread": 23 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1175533, + "thread": 8 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1394657, + "thread": 30 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1504027, + "thread": 28 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1698710, + "thread": 16 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1868257, + "thread": 3 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 1989514, + "thread": 2 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 2173584, + "thread": 7 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 2296859, + "thread": 30 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 2596746, + "thread": 17 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 2690940, + "thread": 6 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 2917104, + "thread": 19 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 3089468, + "thread": 27 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 3231359, + "thread": 21 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 3294411, + "thread": 5 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 3589607, + "thread": 26 + } + }, + { + "amount": "99.482143195", + "slot": { + "period": 3655439, + "thread": 0 + } + }, + { + "amount": "99.482143203", + "slot": { + "period": 3891462, + "thread": 20 + } + } + ], + "AU1rcivzhj9Yx9P8pkh48UNnqUz9vREaW3Z9e6eYpTMWAsYbkXmV": [ + { + "amount": "221.176991813", + "slot": { + "period": 46909, + "thread": 19 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 191181, + "thread": 4 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 484616, + "thread": 19 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 495607, + "thread": 19 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 783039, + "thread": 13 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 881875, + "thread": 2 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1123107, + "thread": 19 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1259573, + "thread": 12 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1407863, + "thread": 6 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1494337, + "thread": 18 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1663835, + "thread": 19 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 1949127, + "thread": 5 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2063329, + "thread": 2 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2228296, + "thread": 20 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2337769, + "thread": 0 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2552137, + "thread": 13 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2755995, + "thread": 8 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2888394, + "thread": 3 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 2962035, + "thread": 25 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 3132662, + "thread": 28 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 3307994, + "thread": 23 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 3522502, + "thread": 7 + } + }, + { + "amount": "221.176991813", + "slot": { + "period": 3687853, + "thread": 4 + } + }, + { + "amount": "221.176991815", + "slot": { + "period": 3883056, + "thread": 29 + } + } + ], + "AU1rd1EQLh9uhNcS2mjpkJ2eng1rCnhGfzVaL9VYToQenWFQ87ZN": [ + { + "amount": "214.782330341", + "slot": { + "period": 140475, + "thread": 21 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 183466, + "thread": 11 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 464009, + "thread": 19 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 558784, + "thread": 25 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 804257, + "thread": 0 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 936951, + "thread": 3 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1044096, + "thread": 30 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1227630, + "thread": 22 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1403316, + "thread": 13 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1541136, + "thread": 20 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1772781, + "thread": 30 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 1921927, + "thread": 27 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2138552, + "thread": 21 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2204534, + "thread": 26 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2389772, + "thread": 7 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2582682, + "thread": 6 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2717357, + "thread": 22 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2912295, + "thread": 23 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 2996482, + "thread": 22 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 3265056, + "thread": 30 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 3322600, + "thread": 12 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 3494935, + "thread": 24 + } + }, + { + "amount": "214.782330341", + "slot": { + "period": 3618583, + "thread": 28 + } + }, + { + "amount": "214.782330331", + "slot": { + "period": 3915027, + "thread": 20 + } + } + ], + "AU1rdCqTwVLdncVEzi4BZJ48jYUv8ZukayfoMRWnUu3jDByP3VP7": [ + { + "amount": "385.005844502", + "slot": { + "period": 118013, + "thread": 19 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 294254, + "thread": 24 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 484064, + "thread": 27 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 620375, + "thread": 7 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 776812, + "thread": 31 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 830832, + "thread": 26 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 988152, + "thread": 1 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 1217019, + "thread": 4 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 1413353, + "thread": 11 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 1503154, + "thread": 3 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 1728509, + "thread": 28 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 1812918, + "thread": 12 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2005497, + "thread": 29 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2208770, + "thread": 24 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2349741, + "thread": 9 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2556769, + "thread": 27 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2664527, + "thread": 23 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2917452, + "thread": 5 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 2996215, + "thread": 28 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 3183506, + "thread": 22 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 3348214, + "thread": 0 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 3475889, + "thread": 14 + } + }, + { + "amount": "385.005844502", + "slot": { + "period": 3672536, + "thread": 5 + } + }, + { + "amount": "385.005844492", + "slot": { + "period": 3913777, + "thread": 8 + } + } + ], + "AU1rdMTxNVh3n5z96y8J1mmbppzV46swTqPoUiRa3E2PniJnayUV": [ + { + "amount": "141.947143339", + "slot": { + "period": 151384, + "thread": 6 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 194805, + "thread": 24 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 384166, + "thread": 26 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 514573, + "thread": 23 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 761344, + "thread": 5 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 924843, + "thread": 12 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1069622, + "thread": 25 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1215311, + "thread": 11 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1409319, + "thread": 12 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1519120, + "thread": 10 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1700224, + "thread": 13 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 1821480, + "thread": 15 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2062435, + "thread": 17 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2224346, + "thread": 20 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2431180, + "thread": 9 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2542341, + "thread": 12 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2658099, + "thread": 13 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2794072, + "thread": 9 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 2975677, + "thread": 26 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 3198295, + "thread": 0 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 3290975, + "thread": 8 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 3562429, + "thread": 26 + } + }, + { + "amount": "141.947143339", + "slot": { + "period": 3634233, + "thread": 7 + } + }, + { + "amount": "141.947143350", + "slot": { + "period": 3870360, + "thread": 3 + } + } + ], + "AU1re39zShLPpY7DpdrhFP4f8efLevBQruHWHr2yHYiSanZ1yQ7": [ + { + "amount": "402.467082213", + "slot": { + "period": 119189, + "thread": 23 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 167729, + "thread": 19 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 352886, + "thread": 26 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 623942, + "thread": 26 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 786986, + "thread": 4 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 952207, + "thread": 28 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1022450, + "thread": 2 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1156220, + "thread": 29 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1355559, + "thread": 23 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1572809, + "thread": 5 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1688239, + "thread": 12 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1924801, + "thread": 8 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 1990276, + "thread": 10 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 2194975, + "thread": 4 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 2369855, + "thread": 27 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 2578389, + "thread": 0 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 2764543, + "thread": 1 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 2870124, + "thread": 11 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 3102885, + "thread": 11 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 3207519, + "thread": 26 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 3369124, + "thread": 31 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 3576465, + "thread": 31 + } + }, + { + "amount": "402.467082213", + "slot": { + "period": 3642784, + "thread": 4 + } + }, + { + "amount": "402.467082221", + "slot": { + "period": 3782805, + "thread": 2 + } + } + ], + "AU1re6QYr6e7Ecmo3FQXtxxwXSSbqQcU8hxomE2S88p3QHz2Xafo": [ + { + "amount": "222.971770449", + "slot": { + "period": 15368, + "thread": 13 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 197510, + "thread": 31 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 472809, + "thread": 9 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 564412, + "thread": 19 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 670388, + "thread": 22 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 904168, + "thread": 31 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1135885, + "thread": 21 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1279311, + "thread": 4 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1448188, + "thread": 5 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1559041, + "thread": 24 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1801645, + "thread": 16 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 1975410, + "thread": 13 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2120268, + "thread": 16 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2249552, + "thread": 12 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2379914, + "thread": 30 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2588152, + "thread": 4 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2756798, + "thread": 12 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 2905208, + "thread": 20 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 3023859, + "thread": 9 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 3250895, + "thread": 7 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 3327724, + "thread": 31 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 3484163, + "thread": 17 + } + }, + { + "amount": "222.971770449", + "slot": { + "period": 3711768, + "thread": 7 + } + }, + { + "amount": "222.971770442", + "slot": { + "period": 3892225, + "thread": 9 + } + } + ], + "AU1reNpRoFWyTvYaaU7ooUYDT4tzxSp77QkCkuP41j7YGiP6QikS": [ + { + "amount": "410.907504515", + "slot": { + "period": 167300, + "thread": 17 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 192915, + "thread": 7 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 395140, + "thread": 25 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 537945, + "thread": 11 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 744878, + "thread": 20 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 944024, + "thread": 23 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1142164, + "thread": 20 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1185864, + "thread": 8 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1414236, + "thread": 15 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1496166, + "thread": 20 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1794224, + "thread": 12 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 1865779, + "thread": 19 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2059224, + "thread": 16 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2228325, + "thread": 3 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2336822, + "thread": 21 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2474719, + "thread": 11 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2643149, + "thread": 19 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2942664, + "thread": 23 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 2979189, + "thread": 17 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 3122152, + "thread": 1 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 3433356, + "thread": 11 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 3479556, + "thread": 12 + } + }, + { + "amount": "410.907504515", + "slot": { + "period": 3727320, + "thread": 11 + } + }, + { + "amount": "410.907504524", + "slot": { + "period": 3920290, + "thread": 7 + } + } + ], + "AU1respWkfrrDqvM1GwWzZAJppMqk5cYd7CXTq7SZWoAHDWWynkj": [ + { + "amount": "78.179625202", + "slot": { + "period": 88651, + "thread": 20 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 172426, + "thread": 20 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 364158, + "thread": 12 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 559536, + "thread": 11 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 743475, + "thread": 4 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 901525, + "thread": 8 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1035415, + "thread": 10 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1282208, + "thread": 9 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1434475, + "thread": 2 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1499621, + "thread": 13 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1754346, + "thread": 18 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1873302, + "thread": 22 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 1985742, + "thread": 7 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2188023, + "thread": 18 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2304519, + "thread": 4 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2613174, + "thread": 4 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2744117, + "thread": 22 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2802720, + "thread": 31 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 2966890, + "thread": 4 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 3221426, + "thread": 8 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 3389188, + "thread": 7 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 3511640, + "thread": 0 + } + }, + { + "amount": "78.179625202", + "slot": { + "period": 3696235, + "thread": 25 + } + }, + { + "amount": "78.179625196", + "slot": { + "period": 3865458, + "thread": 19 + } + } + ], + "AU1rexfTbSJNcnQgXh6XPPEF6R8jB1y4fqgkNCWZkLKhJBUXsaJv": [ + { + "amount": "147.458679312", + "slot": { + "period": 70970, + "thread": 5 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 192485, + "thread": 22 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 343017, + "thread": 18 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 561409, + "thread": 25 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 747117, + "thread": 12 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 821780, + "thread": 17 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1064601, + "thread": 7 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1163316, + "thread": 8 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1400641, + "thread": 2 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1606919, + "thread": 5 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1801229, + "thread": 5 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1878764, + "thread": 23 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 1989632, + "thread": 29 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2174238, + "thread": 12 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2433173, + "thread": 2 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2583246, + "thread": 2 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2739177, + "thread": 17 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2825187, + "thread": 1 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 2987628, + "thread": 6 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 3236059, + "thread": 20 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 3297454, + "thread": 26 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 3525288, + "thread": 16 + } + }, + { + "amount": "147.458679312", + "slot": { + "period": 3701933, + "thread": 26 + } + }, + { + "amount": "147.458679315", + "slot": { + "period": 3804385, + "thread": 15 + } + } + ], + "AU1rjUEHj7aHjxm4kCryJMGgGTnzWqaoDFm5xTZzNgvpm2RnBuyi": [ + { + "amount": "290.306404619", + "slot": { + "period": 79076, + "thread": 10 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 205657, + "thread": 31 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 457922, + "thread": 24 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 498645, + "thread": 10 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 716317, + "thread": 27 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 953502, + "thread": 11 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1127215, + "thread": 26 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1285447, + "thread": 6 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1336398, + "thread": 15 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1499004, + "thread": 1 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1679836, + "thread": 4 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 1831749, + "thread": 5 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2059007, + "thread": 26 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2258096, + "thread": 8 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2412124, + "thread": 6 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2487600, + "thread": 14 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2678196, + "thread": 6 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2867580, + "thread": 9 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 2984168, + "thread": 30 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 3206808, + "thread": 18 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 3401763, + "thread": 20 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 3519065, + "thread": 22 + } + }, + { + "amount": "290.306404619", + "slot": { + "period": 3728007, + "thread": 1 + } + }, + { + "amount": "290.306404610", + "slot": { + "period": 3858849, + "thread": 10 + } + } + ], + "AU1rjij4gRkvjfusEc1bG9mSPj2xisMWkqnUc7Hm3YUyZHgL3SRn": [ + { + "amount": "5833.333333333", + "slot": { + "period": 37201, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 306534, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 490450, + "thread": 31 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 555681, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 719027, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 905642, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1063313, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1287258, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1470979, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1618265, + "thread": 12 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1659229, + "thread": 17 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 1913924, + "thread": 28 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2077191, + "thread": 5 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2239767, + "thread": 15 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2316324, + "thread": 10 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2535961, + "thread": 19 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2634006, + "thread": 13 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 2810913, + "thread": 23 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3032526, + "thread": 29 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3160147, + "thread": 20 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3373065, + "thread": 6 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3609935, + "thread": 4 + } + }, + { + "amount": "5833.333333333", + "slot": { + "period": 3722617, + "thread": 9 + } + }, + { + "amount": "5833.333333341", + "slot": { + "period": 3854179, + "thread": 31 + } + } + ], + "AU1rmJuhVe6qLiQJRPQztx9dRKTYV7mqSozpTuGBxCKSiN6fRXPS": [ + { + "amount": "143.218903413", + "slot": { + "period": 16009, + "thread": 28 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 196510, + "thread": 21 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 403081, + "thread": 23 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 496120, + "thread": 22 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 752070, + "thread": 3 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 974834, + "thread": 15 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1029061, + "thread": 0 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1266568, + "thread": 18 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1403789, + "thread": 9 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1548298, + "thread": 14 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1666975, + "thread": 2 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 1910647, + "thread": 29 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2053250, + "thread": 12 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2247711, + "thread": 17 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2457062, + "thread": 13 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2551218, + "thread": 29 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2719098, + "thread": 30 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 2832076, + "thread": 28 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 3031487, + "thread": 23 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 3215080, + "thread": 21 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 3427677, + "thread": 3 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 3530928, + "thread": 2 + } + }, + { + "amount": "143.218903413", + "slot": { + "period": 3654191, + "thread": 17 + } + }, + { + "amount": "143.218903402", + "slot": { + "period": 3901766, + "thread": 10 + } + } + ], + "AU1ro2eJVg8YTKSpKcvqDS4J7c4pyfgUuZ3UzvYxfmvWX4XFzFP5": [ + { + "amount": "100.167077462", + "slot": { + "period": 132171, + "thread": 27 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 233458, + "thread": 9 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 352009, + "thread": 22 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 500257, + "thread": 23 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 736167, + "thread": 14 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 968932, + "thread": 9 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1146554, + "thread": 23 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1264777, + "thread": 17 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1433472, + "thread": 22 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1631640, + "thread": 17 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1698970, + "thread": 10 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 1973808, + "thread": 25 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2120699, + "thread": 9 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2248946, + "thread": 13 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2342520, + "thread": 31 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2501205, + "thread": 14 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2699918, + "thread": 31 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2936872, + "thread": 27 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 2954090, + "thread": 17 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 3238532, + "thread": 5 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 3427856, + "thread": 9 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 3603572, + "thread": 2 + } + }, + { + "amount": "100.167077462", + "slot": { + "period": 3694426, + "thread": 22 + } + }, + { + "amount": "100.167077457", + "slot": { + "period": 3820419, + "thread": 30 + } + } + ], + "AU1rqq1ZmGaPsozj7gkebbCd7G7ngacr7GgF6KmzjsoJmXkpzMgb": [ + { + "amount": "236.473789121", + "slot": { + "period": 126462, + "thread": 2 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 214992, + "thread": 7 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 428489, + "thread": 11 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 642719, + "thread": 15 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 690042, + "thread": 26 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 828572, + "thread": 15 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1011856, + "thread": 14 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1282408, + "thread": 29 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1435990, + "thread": 13 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1581276, + "thread": 22 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1667738, + "thread": 8 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 1850664, + "thread": 27 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2053474, + "thread": 15 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2242654, + "thread": 1 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2360737, + "thread": 28 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2550515, + "thread": 25 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2745224, + "thread": 0 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 2885726, + "thread": 12 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 3099401, + "thread": 10 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 3228016, + "thread": 16 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 3402819, + "thread": 20 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 3529648, + "thread": 0 + } + }, + { + "amount": "236.473789121", + "slot": { + "period": 3717774, + "thread": 5 + } + }, + { + "amount": "236.473789113", + "slot": { + "period": 3876317, + "thread": 10 + } + } + ], + "AU1rqtcivKuMjV174rMeR64g1Yf67kyo91Wc8DNnWYJgiqbJoCv2": [ + { + "amount": "544.503295216", + "slot": { + "period": 50133, + "thread": 10 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 237787, + "thread": 28 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 397044, + "thread": 11 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 557364, + "thread": 19 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 672308, + "thread": 8 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 889499, + "thread": 19 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1127214, + "thread": 4 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1210066, + "thread": 8 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1449828, + "thread": 10 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1589197, + "thread": 6 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1680123, + "thread": 0 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 1932862, + "thread": 3 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2096365, + "thread": 11 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2291753, + "thread": 5 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2372504, + "thread": 27 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2491862, + "thread": 17 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2727249, + "thread": 21 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 2948011, + "thread": 17 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 3075235, + "thread": 27 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 3183004, + "thread": 23 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 3307089, + "thread": 10 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 3608160, + "thread": 7 + } + }, + { + "amount": "544.503295216", + "slot": { + "period": 3640682, + "thread": 10 + } + }, + { + "amount": "544.503295222", + "slot": { + "period": 3891697, + "thread": 4 + } + } + ], + "AU1rrv2pCgU1KFGyEau4r9oe1patZJ6PqJSg1vvC8mrAy6YkCg91": [ + { + "amount": "358.961517752", + "slot": { + "period": 51224, + "thread": 6 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 292085, + "thread": 15 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 341028, + "thread": 19 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 610730, + "thread": 28 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 686877, + "thread": 14 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 829187, + "thread": 23 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1142182, + "thread": 24 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1270644, + "thread": 19 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1394567, + "thread": 31 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1488626, + "thread": 9 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1687346, + "thread": 19 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 1830862, + "thread": 9 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2052463, + "thread": 16 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2283179, + "thread": 10 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2300470, + "thread": 17 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2581958, + "thread": 9 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2745213, + "thread": 31 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 2931193, + "thread": 22 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 3009965, + "thread": 3 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 3265440, + "thread": 10 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 3304596, + "thread": 29 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 3485733, + "thread": 9 + } + }, + { + "amount": "358.961517752", + "slot": { + "period": 3643962, + "thread": 27 + } + }, + { + "amount": "358.961517740", + "slot": { + "period": 3817843, + "thread": 15 + } + } + ], + "AU1rt6DRkbSGy4WfnpURq6rLYqxQ4jF6ZiGM23E1XfRp3EoXgJRM": [ + { + "amount": "56.989118974", + "slot": { + "period": 48444, + "thread": 6 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 185561, + "thread": 16 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 447743, + "thread": 29 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 546489, + "thread": 25 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 658902, + "thread": 27 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 934978, + "thread": 20 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1004493, + "thread": 30 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1196614, + "thread": 11 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1392361, + "thread": 11 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1607350, + "thread": 15 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1803418, + "thread": 18 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 1934949, + "thread": 8 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2133860, + "thread": 30 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2273002, + "thread": 18 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2446620, + "thread": 8 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2520235, + "thread": 21 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2736483, + "thread": 29 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 2896192, + "thread": 27 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 3001998, + "thread": 27 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 3219358, + "thread": 18 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 3328005, + "thread": 7 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 3586934, + "thread": 25 + } + }, + { + "amount": "56.989118974", + "slot": { + "period": 3754999, + "thread": 28 + } + }, + { + "amount": "56.989118965", + "slot": { + "period": 3938677, + "thread": 19 + } + } + ], + "AU1rtuTjuBcp196yyvyJ9b3T9mTn2x69JhtqR2ZGiZurvb9ggGYT": [ + { + "amount": "309.979031091", + "slot": { + "period": 122843, + "thread": 28 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 201436, + "thread": 24 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 428904, + "thread": 18 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 618021, + "thread": 10 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 685600, + "thread": 31 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 903114, + "thread": 28 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1059935, + "thread": 29 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1172955, + "thread": 17 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1350088, + "thread": 2 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1499022, + "thread": 16 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1786320, + "thread": 2 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 1878491, + "thread": 11 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2108535, + "thread": 23 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2202941, + "thread": 1 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2327499, + "thread": 10 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2614991, + "thread": 14 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2728279, + "thread": 1 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 2798838, + "thread": 22 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 3084277, + "thread": 13 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 3129755, + "thread": 30 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 3420468, + "thread": 1 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 3487570, + "thread": 26 + } + }, + { + "amount": "309.979031091", + "slot": { + "period": 3710887, + "thread": 3 + } + }, + { + "amount": "309.979031088", + "slot": { + "period": 3940636, + "thread": 27 + } + } + ], + "AU1ruAYD9xZC5MH648f3uYqYNzAbzTCZ4nX1M66yWAiSe5CDML1P": [ + { + "amount": "265.430948061", + "slot": { + "period": 15425, + "thread": 14 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 302401, + "thread": 22 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 332635, + "thread": 27 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 503061, + "thread": 23 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 722504, + "thread": 16 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 877591, + "thread": 4 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1126089, + "thread": 27 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1156807, + "thread": 1 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1330052, + "thread": 7 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1488866, + "thread": 12 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1687308, + "thread": 8 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 1881839, + "thread": 6 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2025942, + "thread": 27 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2285437, + "thread": 8 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2347355, + "thread": 6 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2591447, + "thread": 17 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2736972, + "thread": 1 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2914176, + "thread": 18 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 2958401, + "thread": 29 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 3148704, + "thread": 1 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 3317638, + "thread": 10 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 3452459, + "thread": 24 + } + }, + { + "amount": "265.430948061", + "slot": { + "period": 3634311, + "thread": 12 + } + }, + { + "amount": "265.430948064", + "slot": { + "period": 3860183, + "thread": 0 + } + } + ], + "AU1rug3KXAjkMUFmZG6m6H4PXjt9hV7U422HFZ7wrxywF6jXexHS": [ + { + "amount": "111.803892718", + "slot": { + "period": 18060, + "thread": 31 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 261563, + "thread": 21 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 439625, + "thread": 22 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 493507, + "thread": 11 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 723496, + "thread": 8 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 925271, + "thread": 19 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1121926, + "thread": 11 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1254843, + "thread": 25 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1359001, + "thread": 4 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1608283, + "thread": 5 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1730677, + "thread": 22 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 1905478, + "thread": 1 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2110299, + "thread": 8 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2191405, + "thread": 19 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2411402, + "thread": 29 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2603362, + "thread": 26 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2688697, + "thread": 31 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 2869479, + "thread": 12 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 3049048, + "thread": 16 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 3136453, + "thread": 28 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 3352259, + "thread": 1 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 3602148, + "thread": 28 + } + }, + { + "amount": "111.803892718", + "slot": { + "period": 3718374, + "thread": 14 + } + }, + { + "amount": "111.803892729", + "slot": { + "period": 3906804, + "thread": 26 + } + } + ], + "AU1rvS4HNu95KCEzighuTuDotw29WLN4Sf7wQRvZoXY9rYDBUi6b": [ + { + "amount": "258.438467931", + "slot": { + "period": 110766, + "thread": 23 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 215474, + "thread": 1 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 360390, + "thread": 31 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 573028, + "thread": 31 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 778230, + "thread": 1 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 935808, + "thread": 2 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 983679, + "thread": 6 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 1251903, + "thread": 16 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 1379769, + "thread": 10 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 1584633, + "thread": 26 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 1667011, + "thread": 30 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 1882156, + "thread": 15 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2048047, + "thread": 19 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2176151, + "thread": 25 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2347890, + "thread": 28 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2623215, + "thread": 11 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2644362, + "thread": 16 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 2854257, + "thread": 13 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 3047363, + "thread": 7 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 3162853, + "thread": 10 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 3340496, + "thread": 11 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 3471824, + "thread": 17 + } + }, + { + "amount": "258.438467931", + "slot": { + "period": 3719657, + "thread": 5 + } + }, + { + "amount": "258.438467924", + "slot": { + "period": 3823611, + "thread": 16 + } + } + ], + "AU1rvYnukNYceBrbMe4DecjqgLV8sbuwwCbtBnvzEU9smQ8T5bW8": [ + { + "amount": "351.064220455", + "slot": { + "period": 23784, + "thread": 23 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 248787, + "thread": 21 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 478458, + "thread": 26 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 535249, + "thread": 25 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 731332, + "thread": 29 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 891090, + "thread": 4 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1121900, + "thread": 27 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1296715, + "thread": 31 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1382722, + "thread": 31 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1523401, + "thread": 31 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1690566, + "thread": 2 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 1931316, + "thread": 0 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2097289, + "thread": 28 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2179984, + "thread": 19 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2395162, + "thread": 7 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2568403, + "thread": 18 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2641746, + "thread": 12 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 2897179, + "thread": 21 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 3003913, + "thread": 31 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 3123503, + "thread": 3 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 3354587, + "thread": 12 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 3487142, + "thread": 5 + } + }, + { + "amount": "351.064220455", + "slot": { + "period": 3641475, + "thread": 2 + } + }, + { + "amount": "351.064220456", + "slot": { + "period": 3873869, + "thread": 28 + } + } + ], + "AU1rvhjR5bYZ27Awxop3GKvdzJMjk3aKmmhUS5yJvf4sHGWAdWRu": [ + { + "amount": "99.074338309", + "slot": { + "period": 104569, + "thread": 8 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 314813, + "thread": 19 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 415304, + "thread": 6 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 631802, + "thread": 2 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 720974, + "thread": 17 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 903736, + "thread": 3 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1120989, + "thread": 29 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1232668, + "thread": 6 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1325752, + "thread": 19 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1630910, + "thread": 15 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1701928, + "thread": 27 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 1833816, + "thread": 9 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2044450, + "thread": 14 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2272499, + "thread": 4 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2316933, + "thread": 2 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2462615, + "thread": 26 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2698768, + "thread": 4 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2855264, + "thread": 22 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 2997195, + "thread": 2 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 3130049, + "thread": 22 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 3390949, + "thread": 19 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 3562216, + "thread": 14 + } + }, + { + "amount": "99.074338309", + "slot": { + "period": 3775199, + "thread": 4 + } + }, + { + "amount": "99.074338306", + "slot": { + "period": 3838871, + "thread": 5 + } + } + ], + "AU1rxgEcsPdBJUVWucQDUaqE8Q8PmWoRBQQJ3ESKtVrwydnmpB5U": [ + { + "amount": "66.547364203", + "slot": { + "period": 84636, + "thread": 18 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 233392, + "thread": 23 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 369757, + "thread": 9 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 643389, + "thread": 15 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 665511, + "thread": 18 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 845881, + "thread": 26 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1099376, + "thread": 13 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1267332, + "thread": 12 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1318447, + "thread": 2 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1539734, + "thread": 14 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1783382, + "thread": 28 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 1950845, + "thread": 2 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2118262, + "thread": 14 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2264906, + "thread": 20 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2413704, + "thread": 12 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2570168, + "thread": 19 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2709720, + "thread": 23 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 2923547, + "thread": 20 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 3101817, + "thread": 29 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 3252807, + "thread": 9 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 3317511, + "thread": 25 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 3524014, + "thread": 29 + } + }, + { + "amount": "66.547364203", + "slot": { + "period": 3731691, + "thread": 8 + } + }, + { + "amount": "66.547364214", + "slot": { + "period": 3945387, + "thread": 27 + } + } + ], + "AU1rxnvUo89JVMdAkdC29Nhqg64Uzs5GgnCg4Acc6RqiXZhC1wAq": [ + { + "amount": "239.659200179", + "slot": { + "period": 140473, + "thread": 31 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 269289, + "thread": 1 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 423268, + "thread": 1 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 573496, + "thread": 10 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 704537, + "thread": 29 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 862193, + "thread": 25 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1119588, + "thread": 28 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1162528, + "thread": 31 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1459683, + "thread": 23 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1523282, + "thread": 18 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1752627, + "thread": 15 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 1820745, + "thread": 20 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2080078, + "thread": 7 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2227716, + "thread": 4 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2337007, + "thread": 5 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2509051, + "thread": 15 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2768727, + "thread": 31 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 2870512, + "thread": 28 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 3062665, + "thread": 10 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 3268028, + "thread": 17 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 3382835, + "thread": 3 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 3529369, + "thread": 17 + } + }, + { + "amount": "239.659200179", + "slot": { + "period": 3651816, + "thread": 10 + } + }, + { + "amount": "239.659200173", + "slot": { + "period": 3844277, + "thread": 11 + } + } + ], + "AU1rz3RPX2dcVhkwbg69MKzL7XmA9A6o1MGqp2FYtfUKdxhXxu4n": [ + { + "amount": "325.747181906", + "slot": { + "period": 80372, + "thread": 28 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 301787, + "thread": 14 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 379032, + "thread": 21 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 623772, + "thread": 16 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 749162, + "thread": 5 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 834215, + "thread": 5 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1130459, + "thread": 7 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1316167, + "thread": 7 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1380195, + "thread": 22 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1630252, + "thread": 9 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1754923, + "thread": 11 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 1913785, + "thread": 4 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2012142, + "thread": 19 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2263873, + "thread": 0 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2455403, + "thread": 28 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2538922, + "thread": 19 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2683897, + "thread": 22 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 2863335, + "thread": 9 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 3072175, + "thread": 4 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 3196212, + "thread": 5 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 3366019, + "thread": 3 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 3550595, + "thread": 31 + } + }, + { + "amount": "325.747181906", + "slot": { + "period": 3656429, + "thread": 25 + } + }, + { + "amount": "325.747181914", + "slot": { + "period": 3781764, + "thread": 8 + } + } + ], + "AU1s1Fp8ytGNVKFPyLgx1ftmTzs3TKKUgzFUDaoaGPTgZQzszCdn": [ + { + "amount": "164.939673790", + "slot": { + "period": 80422, + "thread": 3 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 295353, + "thread": 3 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 348588, + "thread": 0 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 537237, + "thread": 23 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 684224, + "thread": 16 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 913537, + "thread": 11 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1126253, + "thread": 25 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1307917, + "thread": 6 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1422240, + "thread": 8 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1601413, + "thread": 30 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1737099, + "thread": 9 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 1864607, + "thread": 14 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2039480, + "thread": 27 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2287011, + "thread": 24 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2369513, + "thread": 14 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2603702, + "thread": 17 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2745143, + "thread": 12 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 2872584, + "thread": 2 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 3118846, + "thread": 31 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 3255741, + "thread": 5 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 3291686, + "thread": 30 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 3455985, + "thread": 19 + } + }, + { + "amount": "164.939673790", + "slot": { + "period": 3775858, + "thread": 7 + } + }, + { + "amount": "164.939673799", + "slot": { + "period": 3878831, + "thread": 11 + } + } + ], + "AU1s1fVQadioXfFA6cB6g6AUvKsQg8BneDYeLpjeYnAGvUKJ9bZn": [ + { + "amount": "109.292538596", + "slot": { + "period": 146135, + "thread": 29 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 278198, + "thread": 11 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 343030, + "thread": 9 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 581092, + "thread": 28 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 696643, + "thread": 10 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 912170, + "thread": 28 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 996360, + "thread": 0 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 1236223, + "thread": 30 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 1434472, + "thread": 2 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 1503302, + "thread": 28 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 1716712, + "thread": 0 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 1872347, + "thread": 17 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2086833, + "thread": 23 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2164923, + "thread": 5 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2365102, + "thread": 2 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2479888, + "thread": 3 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2714211, + "thread": 25 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 2848547, + "thread": 31 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 3037184, + "thread": 11 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 3222479, + "thread": 2 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 3445960, + "thread": 28 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 3468157, + "thread": 3 + } + }, + { + "amount": "109.292538596", + "slot": { + "period": 3654177, + "thread": 14 + } + }, + { + "amount": "109.292538591", + "slot": { + "period": 3813741, + "thread": 31 + } + } + ], + "AU1s1gzBQZZoGp8VjXfYyn1qAJqeBHH97vECazp4mxj1fSVi1N1D": [ + { + "amount": "239.358620557", + "slot": { + "period": 26139, + "thread": 16 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 317206, + "thread": 23 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 434395, + "thread": 10 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 535788, + "thread": 15 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 665971, + "thread": 21 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 824080, + "thread": 0 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1072212, + "thread": 7 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1190104, + "thread": 22 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1374599, + "thread": 26 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1497931, + "thread": 11 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1791503, + "thread": 26 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 1838765, + "thread": 14 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2139078, + "thread": 0 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2186537, + "thread": 29 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2353962, + "thread": 5 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2539627, + "thread": 29 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2639650, + "thread": 22 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 2807592, + "thread": 27 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 3035504, + "thread": 22 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 3212468, + "thread": 19 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 3295773, + "thread": 3 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 3468192, + "thread": 29 + } + }, + { + "amount": "239.358620557", + "slot": { + "period": 3709959, + "thread": 8 + } + }, + { + "amount": "239.358620559", + "slot": { + "period": 3914519, + "thread": 8 + } + } + ], + "AU1s1xKwFQEex812cmkE8qXJNG2mrw8ShZceuPRzoGdRc3J1CQSt": [ + { + "amount": "125.888084862", + "slot": { + "period": 155950, + "thread": 9 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 209518, + "thread": 23 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 378322, + "thread": 0 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 640385, + "thread": 23 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 749694, + "thread": 27 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 932128, + "thread": 27 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1083323, + "thread": 10 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1169952, + "thread": 10 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1366696, + "thread": 21 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1485709, + "thread": 8 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1765661, + "thread": 24 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 1820498, + "thread": 0 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2008373, + "thread": 28 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2266751, + "thread": 5 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2416952, + "thread": 18 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2464850, + "thread": 15 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2707021, + "thread": 2 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 2795398, + "thread": 17 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 3071809, + "thread": 5 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 3277852, + "thread": 11 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 3410523, + "thread": 25 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 3516848, + "thread": 6 + } + }, + { + "amount": "125.888084862", + "slot": { + "period": 3659588, + "thread": 4 + } + }, + { + "amount": "125.888084859", + "slot": { + "period": 3833659, + "thread": 14 + } + } + ], + "AU1s1xMSgM91bTsedfHd7YJNvJBKy3JVQNGpvkEMW1y1sjCajUqA": [ + { + "amount": "413.447412935", + "slot": { + "period": 49611, + "thread": 27 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 299344, + "thread": 15 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 403881, + "thread": 25 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 624089, + "thread": 26 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 685207, + "thread": 27 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 896018, + "thread": 17 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1034556, + "thread": 22 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1166484, + "thread": 24 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1452689, + "thread": 16 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1480782, + "thread": 29 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1652610, + "thread": 27 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 1902682, + "thread": 26 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2103896, + "thread": 12 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2227715, + "thread": 1 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2340750, + "thread": 8 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2474282, + "thread": 9 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2745060, + "thread": 20 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 2848630, + "thread": 26 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 3117431, + "thread": 23 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 3177031, + "thread": 22 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 3413797, + "thread": 29 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 3478721, + "thread": 28 + } + }, + { + "amount": "413.447412935", + "slot": { + "period": 3774749, + "thread": 13 + } + }, + { + "amount": "413.447412924", + "slot": { + "period": 3945717, + "thread": 21 + } + } + ], + "AU1s1yXEKu3xKrairQkymMKXRGZY8Rii1JSEzhVMraSvu8mVrqcB": [ + { + "amount": "350.502282731", + "slot": { + "period": 82484, + "thread": 7 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 236287, + "thread": 0 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 430062, + "thread": 5 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 524140, + "thread": 15 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 720568, + "thread": 27 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 873433, + "thread": 9 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1114461, + "thread": 30 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1215053, + "thread": 0 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1322064, + "thread": 23 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1556654, + "thread": 16 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1760824, + "thread": 24 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 1903411, + "thread": 25 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2115043, + "thread": 20 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2167609, + "thread": 17 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2452506, + "thread": 25 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2536581, + "thread": 15 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2697043, + "thread": 11 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 2939322, + "thread": 7 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 3070152, + "thread": 7 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 3228859, + "thread": 1 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 3363443, + "thread": 13 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 3529078, + "thread": 16 + } + }, + { + "amount": "350.502282731", + "slot": { + "period": 3618933, + "thread": 7 + } + }, + { + "amount": "350.502282727", + "slot": { + "period": 3833093, + "thread": 25 + } + } + ], + "AU1s2QZdCiqyk4E9xqN3o4iZAB3HXXuoRkzuAsYJvf9VFNyLQ1Ny": [ + { + "amount": "88.978138591", + "slot": { + "period": 155628, + "thread": 30 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 310985, + "thread": 5 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 415117, + "thread": 2 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 502390, + "thread": 26 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 782950, + "thread": 11 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 899756, + "thread": 0 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1039118, + "thread": 4 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1286972, + "thread": 28 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1433776, + "thread": 11 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1634882, + "thread": 9 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1709657, + "thread": 13 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 1913795, + "thread": 3 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2039824, + "thread": 22 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2290974, + "thread": 6 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2298746, + "thread": 6 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2528842, + "thread": 1 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2779934, + "thread": 1 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 2866236, + "thread": 11 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 3068543, + "thread": 4 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 3240055, + "thread": 17 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 3348064, + "thread": 27 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 3486123, + "thread": 26 + } + }, + { + "amount": "88.978138591", + "slot": { + "period": 3762364, + "thread": 31 + } + }, + { + "amount": "88.978138598", + "slot": { + "period": 3803757, + "thread": 17 + } + } + ], + "AU1s2SAWFxfqoYSVyb26HyFmb7c7TWKggN7E5NUqv9tNrQQYw8Np": [ + { + "amount": "134.487868950", + "slot": { + "period": 45049, + "thread": 27 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 272050, + "thread": 20 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 460264, + "thread": 12 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 498435, + "thread": 25 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 818081, + "thread": 25 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 870930, + "thread": 5 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1127539, + "thread": 8 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1222498, + "thread": 30 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1390417, + "thread": 4 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1548251, + "thread": 18 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1723819, + "thread": 2 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 1864549, + "thread": 13 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2017232, + "thread": 1 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2215501, + "thread": 10 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2453254, + "thread": 16 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2544427, + "thread": 5 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2706727, + "thread": 4 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 2910326, + "thread": 29 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 3106620, + "thread": 17 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 3274451, + "thread": 16 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 3408120, + "thread": 26 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 3561065, + "thread": 10 + } + }, + { + "amount": "134.487868950", + "slot": { + "period": 3619126, + "thread": 30 + } + }, + { + "amount": "134.487868955", + "slot": { + "period": 3861894, + "thread": 24 + } + } + ], + "AU1s3DUTM3hG41NXWEp6JX7SQzpzkhQ8rKdyUejPu2aWK2N77Piy": [ + { + "amount": "174.194605157", + "slot": { + "period": 152244, + "thread": 1 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 207704, + "thread": 9 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 483918, + "thread": 16 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 550468, + "thread": 11 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 697081, + "thread": 16 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 850929, + "thread": 27 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 987528, + "thread": 21 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 1262320, + "thread": 20 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 1439478, + "thread": 11 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 1640755, + "thread": 24 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 1699317, + "thread": 14 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 1958044, + "thread": 8 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2028374, + "thread": 3 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2263005, + "thread": 29 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2361172, + "thread": 5 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2472693, + "thread": 2 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2697587, + "thread": 25 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 2850998, + "thread": 6 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 3092558, + "thread": 30 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 3235305, + "thread": 0 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 3391255, + "thread": 12 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 3528912, + "thread": 22 + } + }, + { + "amount": "174.194605157", + "slot": { + "period": 3722167, + "thread": 19 + } + }, + { + "amount": "174.194605165", + "slot": { + "period": 3794628, + "thread": 27 + } + } + ], + "AU1s3GCNKui9JjSwojH1SZQBpD3MDy4ynQq7tkPW2sWsv5rQzpPS": [ + { + "amount": "381.239703134", + "slot": { + "period": 71147, + "thread": 14 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 248828, + "thread": 25 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 424976, + "thread": 17 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 590343, + "thread": 9 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 704939, + "thread": 28 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 944662, + "thread": 27 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1084744, + "thread": 7 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1306533, + "thread": 26 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1407623, + "thread": 18 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1574574, + "thread": 3 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1749827, + "thread": 26 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 1960565, + "thread": 28 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2005068, + "thread": 6 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2228204, + "thread": 10 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2321268, + "thread": 24 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2498720, + "thread": 26 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2642087, + "thread": 9 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 2840762, + "thread": 18 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 3045648, + "thread": 28 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 3240794, + "thread": 0 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 3374100, + "thread": 31 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 3481498, + "thread": 30 + } + }, + { + "amount": "381.239703134", + "slot": { + "period": 3701237, + "thread": 29 + } + }, + { + "amount": "381.239703144", + "slot": { + "period": 3827356, + "thread": 3 + } + } + ], + "AU1s3aNEkSGxwsDDhCoSCCH1GN4QQFYLwzKjBAVjWfqLPEnBrPnd": [ + { + "amount": "251.917212528", + "slot": { + "period": 43098, + "thread": 2 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 198796, + "thread": 2 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 346427, + "thread": 18 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 516381, + "thread": 16 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 712686, + "thread": 0 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 881320, + "thread": 9 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1149530, + "thread": 11 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1208529, + "thread": 15 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1334689, + "thread": 26 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1492807, + "thread": 28 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1753032, + "thread": 9 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 1930888, + "thread": 2 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2051399, + "thread": 7 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2268262, + "thread": 28 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2450435, + "thread": 22 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2557243, + "thread": 20 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2712699, + "thread": 11 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 2946628, + "thread": 30 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 3085291, + "thread": 18 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 3175970, + "thread": 24 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 3386835, + "thread": 7 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 3480347, + "thread": 26 + } + }, + { + "amount": "251.917212528", + "slot": { + "period": 3648470, + "thread": 0 + } + }, + { + "amount": "251.917212519", + "slot": { + "period": 3847599, + "thread": 25 + } + } + ], + "AU1s3gE9LnptoajMTAQUVgDeMNi5GwHwAXYpwwDGfVRP5XBxgoeN": [ + { + "amount": "139.274966169", + "slot": { + "period": 42843, + "thread": 28 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 288588, + "thread": 26 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 471140, + "thread": 12 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 620785, + "thread": 7 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 741766, + "thread": 2 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 972804, + "thread": 16 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1023004, + "thread": 14 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1210222, + "thread": 24 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1388546, + "thread": 1 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1628686, + "thread": 31 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1808987, + "thread": 20 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 1814503, + "thread": 7 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2006842, + "thread": 10 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2293970, + "thread": 21 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2301357, + "thread": 24 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2570305, + "thread": 1 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2634692, + "thread": 3 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 2912817, + "thread": 19 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 3043467, + "thread": 12 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 3249117, + "thread": 17 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 3384712, + "thread": 26 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 3554551, + "thread": 18 + } + }, + { + "amount": "139.274966169", + "slot": { + "period": 3670916, + "thread": 3 + } + }, + { + "amount": "139.274966161", + "slot": { + "period": 3912086, + "thread": 30 + } + } + ], + "AU1s461hyJitNnwLnUtKHMLgeVNMoJ9Bw5wcjLaQPHt9pCVmxEtD": [ + { + "amount": "1782.404166667", + "slot": { + "period": 166679, + "thread": 0 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 244905, + "thread": 21 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 354385, + "thread": 21 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 614306, + "thread": 11 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 766677, + "thread": 31 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 951391, + "thread": 20 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1047397, + "thread": 9 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1157828, + "thread": 25 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1452568, + "thread": 9 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1506955, + "thread": 19 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1707639, + "thread": 22 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 1966332, + "thread": 29 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2117409, + "thread": 10 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2196976, + "thread": 4 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2303150, + "thread": 11 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2495601, + "thread": 18 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2790053, + "thread": 10 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2895210, + "thread": 22 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 2989086, + "thread": 4 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 3133156, + "thread": 11 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 3438792, + "thread": 21 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 3558975, + "thread": 3 + } + }, + { + "amount": "1782.404166667", + "slot": { + "period": 3626373, + "thread": 24 + } + }, + { + "amount": "1782.404166659", + "slot": { + "period": 3790055, + "thread": 5 + } + } + ], + "AU1s4onbEAYnW8qf38voPgJ6cVa1iN1RnQsSMbPKLUj2vrrkBfPa": [ + { + "amount": "213.419167842", + "slot": { + "period": 115184, + "thread": 20 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 191735, + "thread": 16 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 390530, + "thread": 31 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 516907, + "thread": 11 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 808915, + "thread": 29 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 962191, + "thread": 27 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1025677, + "thread": 5 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1177298, + "thread": 21 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1434273, + "thread": 7 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1540079, + "thread": 22 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1775346, + "thread": 26 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 1937811, + "thread": 2 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2132683, + "thread": 14 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2294801, + "thread": 17 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2321086, + "thread": 30 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2599691, + "thread": 27 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2758291, + "thread": 11 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 2942550, + "thread": 13 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 3000258, + "thread": 11 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 3227240, + "thread": 20 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 3440894, + "thread": 31 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 3549307, + "thread": 29 + } + }, + { + "amount": "213.419167842", + "slot": { + "period": 3743194, + "thread": 15 + } + }, + { + "amount": "213.419167837", + "slot": { + "period": 3941032, + "thread": 19 + } + } + ], + "AU1s56E58ZnP3iMrUCK6S6USBC5TM1qe7oqoPyeMZ2VCoM75saXV": [ + { + "amount": "601.443609740", + "slot": { + "period": 135925, + "thread": 25 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 265850, + "thread": 12 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 462330, + "thread": 28 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 568211, + "thread": 6 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 659897, + "thread": 28 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 878642, + "thread": 13 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1123383, + "thread": 17 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1257796, + "thread": 16 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1323944, + "thread": 15 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1640418, + "thread": 24 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1797495, + "thread": 18 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 1818395, + "thread": 19 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2013520, + "thread": 17 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2178629, + "thread": 23 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2400806, + "thread": 0 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2585375, + "thread": 26 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2658396, + "thread": 26 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 2888707, + "thread": 20 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 3053946, + "thread": 23 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 3178273, + "thread": 16 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 3342618, + "thread": 26 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 3549633, + "thread": 31 + } + }, + { + "amount": "601.443609740", + "slot": { + "period": 3637164, + "thread": 0 + } + }, + { + "amount": "601.443609752", + "slot": { + "period": 3783852, + "thread": 23 + } + } + ], + "AU1s5ioAPMHLRqTMJEVRLSwb59pSQU89coicRNow1Pzgh9fuBZay": [ + { + "amount": "315.677869881", + "slot": { + "period": 96998, + "thread": 6 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 186888, + "thread": 29 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 327705, + "thread": 7 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 506121, + "thread": 29 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 815718, + "thread": 9 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 967834, + "thread": 5 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1059273, + "thread": 5 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1225714, + "thread": 25 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1442619, + "thread": 22 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1498457, + "thread": 22 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1739821, + "thread": 3 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 1932600, + "thread": 5 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2120111, + "thread": 14 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2254183, + "thread": 13 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2435084, + "thread": 6 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2492769, + "thread": 19 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2638670, + "thread": 20 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2912142, + "thread": 22 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 2964883, + "thread": 15 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 3193656, + "thread": 3 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 3422394, + "thread": 31 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 3544790, + "thread": 2 + } + }, + { + "amount": "315.677869881", + "slot": { + "period": 3683780, + "thread": 28 + } + }, + { + "amount": "315.677869880", + "slot": { + "period": 3845554, + "thread": 7 + } + } + ], + "AU1s6B6EtmPyQn8b9Pg1xGWJTmQ6xJy7DXXhBusJLB45S75axzF6": [ + { + "amount": "136.501101386", + "slot": { + "period": 41667, + "thread": 3 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 211622, + "thread": 17 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 394879, + "thread": 13 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 522654, + "thread": 7 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 742109, + "thread": 15 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 976193, + "thread": 9 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1123903, + "thread": 18 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1316122, + "thread": 15 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1405104, + "thread": 11 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1532532, + "thread": 21 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1686041, + "thread": 26 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 1972017, + "thread": 0 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2066352, + "thread": 25 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2277060, + "thread": 12 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2343162, + "thread": 7 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2520288, + "thread": 20 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2721096, + "thread": 15 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 2924708, + "thread": 8 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 3023213, + "thread": 3 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 3196396, + "thread": 3 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 3355316, + "thread": 10 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 3584427, + "thread": 22 + } + }, + { + "amount": "136.501101386", + "slot": { + "period": 3685598, + "thread": 13 + } + }, + { + "amount": "136.501101394", + "slot": { + "period": 3937758, + "thread": 5 + } + } + ], + "AU1s7C6uFG2Z95iVqa9bpC5nUtqgCJyAhMD2YS8vXarRksmvfDQQ": [ + { + "amount": "322.597022623", + "slot": { + "period": 13382, + "thread": 17 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 226831, + "thread": 26 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 437816, + "thread": 25 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 584278, + "thread": 29 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 670338, + "thread": 5 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 906686, + "thread": 7 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1031445, + "thread": 23 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1293655, + "thread": 16 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1331631, + "thread": 14 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1484379, + "thread": 31 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1714915, + "thread": 21 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 1909837, + "thread": 1 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2121831, + "thread": 14 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2177213, + "thread": 30 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2362402, + "thread": 16 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2598623, + "thread": 3 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2775857, + "thread": 2 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 2805664, + "thread": 26 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 3070320, + "thread": 7 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 3131518, + "thread": 0 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 3440568, + "thread": 31 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 3599546, + "thread": 21 + } + }, + { + "amount": "322.597022623", + "slot": { + "period": 3733911, + "thread": 23 + } + }, + { + "amount": "322.597022631", + "slot": { + "period": 3843209, + "thread": 0 + } + } + ], + "AU1s7FPtEcaLuyCp72bMFAkq1BBaNNQag2zWHhaJyUPVpRpayhNQ": [ + { + "amount": "205.415272390", + "slot": { + "period": 116433, + "thread": 16 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 181154, + "thread": 11 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 371112, + "thread": 2 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 511277, + "thread": 24 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 654997, + "thread": 21 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 877019, + "thread": 21 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1004863, + "thread": 8 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1258447, + "thread": 0 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1321850, + "thread": 10 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1583492, + "thread": 19 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1740073, + "thread": 1 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 1957857, + "thread": 0 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2032173, + "thread": 8 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2147526, + "thread": 2 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2383527, + "thread": 13 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2466584, + "thread": 11 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2704723, + "thread": 30 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 2828553, + "thread": 23 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 3108834, + "thread": 11 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 3165276, + "thread": 19 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 3440363, + "thread": 18 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 3486253, + "thread": 18 + } + }, + { + "amount": "205.415272390", + "slot": { + "period": 3639554, + "thread": 4 + } + }, + { + "amount": "205.415272387", + "slot": { + "period": 3790407, + "thread": 1 + } + } + ], + "AU1s8JoWXpRCqeTezJH9nMfGgpAZBxEEDz9qoXiNJ3aHqYMZsADZ": [ + { + "amount": "170.550279166", + "slot": { + "period": 148891, + "thread": 1 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 263647, + "thread": 29 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 348513, + "thread": 5 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 647492, + "thread": 25 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 690763, + "thread": 23 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 905290, + "thread": 18 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1102622, + "thread": 12 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1309119, + "thread": 9 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1331861, + "thread": 23 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1501146, + "thread": 2 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1750833, + "thread": 29 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 1860014, + "thread": 2 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2115198, + "thread": 18 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2231229, + "thread": 0 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2345507, + "thread": 20 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2492304, + "thread": 16 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2771499, + "thread": 10 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2912294, + "thread": 18 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 2993863, + "thread": 7 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 3255993, + "thread": 4 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 3398995, + "thread": 9 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 3616968, + "thread": 24 + } + }, + { + "amount": "170.550279166", + "slot": { + "period": 3634164, + "thread": 9 + } + }, + { + "amount": "170.550279155", + "slot": { + "period": 3807763, + "thread": 16 + } + } + ], + "AU1s97mg1mwG9dXxTS3ovGPWWncvmapDrjSkCteSSDUubJ4qtQYy": [ + { + "amount": "185.541294469", + "slot": { + "period": 46497, + "thread": 2 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 306572, + "thread": 17 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 372054, + "thread": 29 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 580292, + "thread": 6 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 677215, + "thread": 25 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 886364, + "thread": 24 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1122132, + "thread": 18 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1176887, + "thread": 29 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1345005, + "thread": 23 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1626211, + "thread": 21 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1740167, + "thread": 6 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 1865570, + "thread": 2 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2016387, + "thread": 3 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2205362, + "thread": 26 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2410962, + "thread": 30 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2526675, + "thread": 30 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2642089, + "thread": 10 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 2950707, + "thread": 4 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 3079273, + "thread": 8 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 3168141, + "thread": 11 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 3402223, + "thread": 16 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 3489088, + "thread": 30 + } + }, + { + "amount": "185.541294469", + "slot": { + "period": 3682041, + "thread": 28 + } + }, + { + "amount": "185.541294462", + "slot": { + "period": 3931215, + "thread": 23 + } + } + ], + "AU1sAMdjiCzxnd7BXQdiaip2219wNneYuyUCv1mqtq4UWQqxeutG": [ + { + "amount": "473.629834302", + "slot": { + "period": 130445, + "thread": 18 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 319397, + "thread": 4 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 458566, + "thread": 16 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 499004, + "thread": 22 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 682318, + "thread": 11 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 978727, + "thread": 28 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1085007, + "thread": 5 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1154699, + "thread": 22 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1334219, + "thread": 10 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1504096, + "thread": 15 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1719557, + "thread": 30 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1844202, + "thread": 20 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 1980720, + "thread": 7 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 2242292, + "thread": 0 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 2375549, + "thread": 14 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 2473903, + "thread": 21 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 2648725, + "thread": 25 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 2910538, + "thread": 13 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 3005482, + "thread": 1 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 3240057, + "thread": 6 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 3429346, + "thread": 19 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 3588107, + "thread": 9 + } + }, + { + "amount": "473.629834302", + "slot": { + "period": 3701533, + "thread": 29 + } + }, + { + "amount": "473.629834309", + "slot": { + "period": 3787702, + "thread": 23 + } + } + ], + "AU1sAf4XeyJX8Dn8GuZjRvgeviu9zXYc4YtsgEHXJK6ShvLFsZ54": [ + { + "amount": "223.651747317", + "slot": { + "period": 130914, + "thread": 5 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 222928, + "thread": 26 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 355584, + "thread": 29 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 492154, + "thread": 19 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 725759, + "thread": 21 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 963122, + "thread": 28 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1083176, + "thread": 15 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1216302, + "thread": 2 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1424196, + "thread": 30 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1553936, + "thread": 18 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1802303, + "thread": 25 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 1858691, + "thread": 12 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2088648, + "thread": 3 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2252824, + "thread": 12 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2454431, + "thread": 30 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2484486, + "thread": 19 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2660513, + "thread": 24 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2866494, + "thread": 21 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 2973941, + "thread": 7 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 3233390, + "thread": 8 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 3410990, + "thread": 20 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 3477148, + "thread": 4 + } + }, + { + "amount": "223.651747317", + "slot": { + "period": 3760383, + "thread": 5 + } + }, + { + "amount": "223.651747306", + "slot": { + "period": 3885365, + "thread": 2 + } + } + ], + "AU1sCZ2Xwo5crMiQzSxF8DPCDPnTs4mU64R5CyR7eeP988nD43ni": [ + { + "amount": "367.735280896", + "slot": { + "period": 39228, + "thread": 20 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 168176, + "thread": 6 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 367277, + "thread": 13 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 545472, + "thread": 10 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 654392, + "thread": 21 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 975258, + "thread": 9 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1010774, + "thread": 31 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1303587, + "thread": 0 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1404912, + "thread": 6 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1638717, + "thread": 3 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1678713, + "thread": 16 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 1869295, + "thread": 0 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2034960, + "thread": 2 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2273576, + "thread": 22 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2386663, + "thread": 23 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2477782, + "thread": 3 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2656213, + "thread": 0 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 2937446, + "thread": 4 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 3000657, + "thread": 10 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 3155461, + "thread": 15 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 3317020, + "thread": 7 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 3558790, + "thread": 29 + } + }, + { + "amount": "367.735280896", + "slot": { + "period": 3708034, + "thread": 27 + } + }, + { + "amount": "367.735280890", + "slot": { + "period": 3780548, + "thread": 14 + } + } + ], + "AU1sCadhGhux4NrDydYnzt6wfWFrWUDk7ZrisZn9bJfzn8bHVV2U": [ + { + "amount": "348.632733498", + "slot": { + "period": 32112, + "thread": 4 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 269408, + "thread": 7 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 476902, + "thread": 20 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 602274, + "thread": 13 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 815917, + "thread": 1 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 950978, + "thread": 0 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1083495, + "thread": 3 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1282059, + "thread": 13 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1322655, + "thread": 1 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1530626, + "thread": 24 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1690466, + "thread": 2 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 1892455, + "thread": 17 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2124683, + "thread": 19 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2275653, + "thread": 7 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2352433, + "thread": 28 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2503175, + "thread": 12 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2658485, + "thread": 14 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 2950484, + "thread": 16 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 3030264, + "thread": 10 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 3253991, + "thread": 22 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 3317905, + "thread": 9 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 3453816, + "thread": 10 + } + }, + { + "amount": "348.632733498", + "slot": { + "period": 3740895, + "thread": 31 + } + }, + { + "amount": "348.632733495", + "slot": { + "period": 3892692, + "thread": 22 + } + } + ], + "AU1sDDNzUUuPx6969LQZcuE96BHPBTuGoPBMx5XQizkmh1zUHjwK": [ + { + "amount": "142.494377452", + "slot": { + "period": 105226, + "thread": 10 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 282133, + "thread": 27 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 420531, + "thread": 19 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 546074, + "thread": 3 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 797244, + "thread": 28 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 891281, + "thread": 13 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1001693, + "thread": 14 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1162987, + "thread": 6 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1370551, + "thread": 30 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1561920, + "thread": 11 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1803761, + "thread": 14 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 1859404, + "thread": 0 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2088056, + "thread": 0 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2219948, + "thread": 9 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2412865, + "thread": 10 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2600366, + "thread": 21 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2750916, + "thread": 18 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2928505, + "thread": 13 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 2957605, + "thread": 12 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 3129822, + "thread": 14 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 3294614, + "thread": 12 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 3587744, + "thread": 13 + } + }, + { + "amount": "142.494377452", + "slot": { + "period": 3766127, + "thread": 20 + } + }, + { + "amount": "142.494377449", + "slot": { + "period": 3868910, + "thread": 2 + } + } + ], + "AU1sDUK7KCxtFEdyTQXwZqbFMX6uTRXTq18aU4wuSPvHLT8n6571": [ + { + "amount": "365.258764148", + "slot": { + "period": 32396, + "thread": 28 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 235503, + "thread": 28 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 404928, + "thread": 0 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 645302, + "thread": 23 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 710338, + "thread": 10 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 963353, + "thread": 4 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1143148, + "thread": 28 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1230477, + "thread": 7 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1325007, + "thread": 29 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1598655, + "thread": 12 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1729709, + "thread": 19 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 1881787, + "thread": 5 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2091292, + "thread": 5 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2286522, + "thread": 26 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2405269, + "thread": 11 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2536148, + "thread": 11 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2666470, + "thread": 6 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 2860379, + "thread": 11 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 3053621, + "thread": 2 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 3270357, + "thread": 3 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 3336633, + "thread": 20 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 3524970, + "thread": 29 + } + }, + { + "amount": "365.258764148", + "slot": { + "period": 3728903, + "thread": 16 + } + }, + { + "amount": "365.258764157", + "slot": { + "period": 3888856, + "thread": 2 + } + } + ], + "AU1sE7VGWp17NKGs6vP5XQ1sPa95hSJDSRmWVLMNn4s8EFah3eu": [ + { + "amount": "340.502974680", + "slot": { + "period": 32110, + "thread": 0 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 194657, + "thread": 28 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 402378, + "thread": 8 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 635766, + "thread": 10 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 783178, + "thread": 3 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 904558, + "thread": 22 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 991714, + "thread": 12 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 1260345, + "thread": 17 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 1448642, + "thread": 30 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 1482840, + "thread": 16 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 1696981, + "thread": 31 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 1836281, + "thread": 3 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2054186, + "thread": 27 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2212574, + "thread": 3 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2421186, + "thread": 23 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2580688, + "thread": 7 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2682884, + "thread": 8 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 2945568, + "thread": 24 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 3042030, + "thread": 4 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 3179922, + "thread": 7 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 3382651, + "thread": 30 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 3598839, + "thread": 19 + } + }, + { + "amount": "340.502974680", + "slot": { + "period": 3758311, + "thread": 29 + } + }, + { + "amount": "340.502974678", + "slot": { + "period": 3800021, + "thread": 5 + } + } + ], + "AU1sEg11VanL2K7ZncywAsP9hZx2KTmaZXTmGmFXw1A8kVRWHG9N": [ + { + "amount": "63.343308124", + "slot": { + "period": 158777, + "thread": 23 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 176231, + "thread": 7 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 384153, + "thread": 5 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 650113, + "thread": 29 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 801417, + "thread": 20 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 849446, + "thread": 22 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 984969, + "thread": 6 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 1212966, + "thread": 31 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 1475912, + "thread": 26 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 1549174, + "thread": 25 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 1716568, + "thread": 3 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 1953436, + "thread": 27 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2006996, + "thread": 18 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2253740, + "thread": 23 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2404507, + "thread": 24 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2516187, + "thread": 2 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2708647, + "thread": 21 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2948741, + "thread": 12 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 2999283, + "thread": 28 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 3157342, + "thread": 17 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 3321741, + "thread": 4 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 3525773, + "thread": 31 + } + }, + { + "amount": "63.343308124", + "slot": { + "period": 3739682, + "thread": 21 + } + }, + { + "amount": "63.343308123", + "slot": { + "period": 3911085, + "thread": 4 + } + } + ], + "AU1sFZVxfpgu9GxcpJQVZUHzJ2N9BTocNYNaUsa8MED2tS8V3Mk8": [ + { + "amount": "55.605550888", + "slot": { + "period": 156369, + "thread": 12 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 275122, + "thread": 10 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 402539, + "thread": 21 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 521761, + "thread": 7 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 675780, + "thread": 9 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 883176, + "thread": 0 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1100360, + "thread": 29 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1188342, + "thread": 6 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1370254, + "thread": 15 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1603404, + "thread": 10 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1662107, + "thread": 16 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 1894166, + "thread": 18 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2057180, + "thread": 29 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2258923, + "thread": 9 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2417741, + "thread": 1 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2507343, + "thread": 25 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2776434, + "thread": 22 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 2846143, + "thread": 0 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 3008844, + "thread": 26 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 3250810, + "thread": 2 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 3428075, + "thread": 27 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 3456118, + "thread": 0 + } + }, + { + "amount": "55.605550888", + "slot": { + "period": 3758827, + "thread": 21 + } + }, + { + "amount": "55.605550881", + "slot": { + "period": 3892020, + "thread": 22 + } + } + ], + "AU1sGQEZeZ6rcmkMRVjnQb6SQEnEQAhDbWjCaZCGUWnEbnJqppN9": [ + { + "amount": "228.326348558", + "slot": { + "period": 96923, + "thread": 23 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 169354, + "thread": 20 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 469320, + "thread": 10 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 625940, + "thread": 8 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 817722, + "thread": 27 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 935529, + "thread": 17 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1066171, + "thread": 1 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1260834, + "thread": 7 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1381127, + "thread": 21 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1633620, + "thread": 30 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1712632, + "thread": 3 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 1878522, + "thread": 9 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2026297, + "thread": 17 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2279586, + "thread": 22 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2411255, + "thread": 20 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2569255, + "thread": 16 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2651388, + "thread": 12 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 2888723, + "thread": 29 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 3012412, + "thread": 20 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 3278997, + "thread": 10 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 3315563, + "thread": 24 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 3543333, + "thread": 5 + } + }, + { + "amount": "228.326348558", + "slot": { + "period": 3621270, + "thread": 25 + } + }, + { + "amount": "228.326348555", + "slot": { + "period": 3871313, + "thread": 23 + } + } + ], + "AU1sGzLxFF4iVeFSUgHBCQob1xJfjG82keYYrhG1r32kvzwnvhh6": [ + { + "amount": "149.054855833", + "slot": { + "period": 108218, + "thread": 4 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 318951, + "thread": 21 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 375600, + "thread": 27 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 592591, + "thread": 25 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 697279, + "thread": 8 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 965666, + "thread": 12 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1031621, + "thread": 14 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1176213, + "thread": 12 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1393836, + "thread": 8 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1525912, + "thread": 27 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1714045, + "thread": 20 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 1939818, + "thread": 30 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2006618, + "thread": 16 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2179717, + "thread": 18 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2348718, + "thread": 3 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2611650, + "thread": 26 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2751544, + "thread": 25 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2810979, + "thread": 0 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 2988783, + "thread": 26 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 3270420, + "thread": 8 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 3312621, + "thread": 7 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 3518689, + "thread": 16 + } + }, + { + "amount": "149.054855833", + "slot": { + "period": 3618387, + "thread": 24 + } + }, + { + "amount": "149.054855826", + "slot": { + "period": 3937848, + "thread": 24 + } + } + ], + "AU1sHQD7wfPuyuKK8Zhy983TgJPHWrJnjeVTPJjkP9MecDEo5EVw": [ + { + "amount": "129.381966656", + "slot": { + "period": 73278, + "thread": 0 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 258205, + "thread": 26 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 361635, + "thread": 24 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 520127, + "thread": 10 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 796787, + "thread": 3 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 947982, + "thread": 0 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1069290, + "thread": 29 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1280541, + "thread": 10 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1461371, + "thread": 2 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1601102, + "thread": 26 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1789290, + "thread": 2 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 1956062, + "thread": 11 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2000190, + "thread": 24 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2283940, + "thread": 13 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2400931, + "thread": 30 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2512380, + "thread": 1 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2763840, + "thread": 12 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 2876020, + "thread": 10 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 3101220, + "thread": 15 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 3256183, + "thread": 17 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 3360174, + "thread": 29 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 3602424, + "thread": 27 + } + }, + { + "amount": "129.381966656", + "slot": { + "period": 3632225, + "thread": 9 + } + }, + { + "amount": "129.381966668", + "slot": { + "period": 3791511, + "thread": 20 + } + } + ], + "AU1sHrdQzNvFBxyxmyHPra6WUixq91EtuCXMUVUYo9Ctsz9z9pj4": [ + { + "amount": "285.782304705", + "slot": { + "period": 81793, + "thread": 30 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 220287, + "thread": 3 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 402163, + "thread": 31 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 617320, + "thread": 23 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 657582, + "thread": 2 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 827398, + "thread": 13 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1114091, + "thread": 11 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1153582, + "thread": 12 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1329380, + "thread": 30 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1531275, + "thread": 19 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1697604, + "thread": 7 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1961512, + "thread": 18 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 1991315, + "thread": 19 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 2206064, + "thread": 11 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 2381062, + "thread": 22 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 2488320, + "thread": 16 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 2693226, + "thread": 11 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 2892883, + "thread": 7 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 3092128, + "thread": 4 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 3228876, + "thread": 6 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 3365556, + "thread": 12 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 3485242, + "thread": 12 + } + }, + { + "amount": "285.782304705", + "slot": { + "period": 3671053, + "thread": 15 + } + }, + { + "amount": "285.782304714", + "slot": { + "period": 3851840, + "thread": 21 + } + } + ], + "AU1sHz2gp6yqo8v4Ki4wLvgdNgnSa2oe5ZCJzBveQpC7QJh7svPQ": [ + { + "amount": "143.444448837", + "slot": { + "period": 78700, + "thread": 17 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 245298, + "thread": 12 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 338808, + "thread": 6 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 563301, + "thread": 23 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 769666, + "thread": 14 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 956846, + "thread": 25 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1071335, + "thread": 3 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1298456, + "thread": 3 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1367020, + "thread": 0 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1616187, + "thread": 2 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1668542, + "thread": 10 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 1855099, + "thread": 12 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2100398, + "thread": 26 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2149792, + "thread": 27 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2395594, + "thread": 28 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2579807, + "thread": 30 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2663523, + "thread": 29 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 2834934, + "thread": 20 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 3047967, + "thread": 8 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 3229797, + "thread": 17 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 3355250, + "thread": 2 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 3555010, + "thread": 5 + } + }, + { + "amount": "143.444448837", + "slot": { + "period": 3758294, + "thread": 30 + } + }, + { + "amount": "143.444448832", + "slot": { + "period": 3850181, + "thread": 10 + } + } + ], + "AU1sJK9vUkg8GuZsKn5DXGVjU2gkwbtYdheEeb6So7J2Y4zBsPM3": [ + { + "amount": "98.240777001", + "slot": { + "period": 163611, + "thread": 7 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 210141, + "thread": 12 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 485919, + "thread": 10 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 599837, + "thread": 0 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 666950, + "thread": 5 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 882945, + "thread": 11 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1130025, + "thread": 13 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1170297, + "thread": 19 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1403958, + "thread": 30 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1483405, + "thread": 8 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1779356, + "thread": 15 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 1909914, + "thread": 28 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2044911, + "thread": 12 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2250137, + "thread": 3 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2336854, + "thread": 22 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2593226, + "thread": 14 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2767245, + "thread": 9 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 2936579, + "thread": 5 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 3049994, + "thread": 24 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 3211159, + "thread": 30 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 3387892, + "thread": 15 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 3500782, + "thread": 10 + } + }, + { + "amount": "98.240777001", + "slot": { + "period": 3744033, + "thread": 0 + } + }, + { + "amount": "98.240777002", + "slot": { + "period": 3826360, + "thread": 5 + } + } + ], + "AU1sJLjPX5N9nHvG59PwfmSxrggAmomATHwFy74FHptmifQTzLH9": [ + { + "amount": "523.671686960", + "slot": { + "period": 90216, + "thread": 14 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 230487, + "thread": 7 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 481013, + "thread": 4 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 645919, + "thread": 5 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 722431, + "thread": 24 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 934772, + "thread": 2 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1053418, + "thread": 25 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1176997, + "thread": 22 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1459720, + "thread": 10 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1506411, + "thread": 21 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1648642, + "thread": 17 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 1918265, + "thread": 16 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2056320, + "thread": 26 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2250798, + "thread": 30 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2324995, + "thread": 1 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2509823, + "thread": 22 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2770479, + "thread": 0 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2801000, + "thread": 4 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 2999066, + "thread": 22 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 3253624, + "thread": 29 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 3314319, + "thread": 25 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 3543995, + "thread": 2 + } + }, + { + "amount": "523.671686960", + "slot": { + "period": 3726403, + "thread": 19 + } + }, + { + "amount": "523.671686969", + "slot": { + "period": 3857301, + "thread": 16 + } + } + ], + "AU1sJa2EBa1156fCmQJkcHFD3drE6c6AH6XwGtjVgyMrprJDCbWA": [ + { + "amount": "440.063294798", + "slot": { + "period": 44410, + "thread": 22 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 282881, + "thread": 20 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 452329, + "thread": 26 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 573996, + "thread": 19 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 731136, + "thread": 3 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 940983, + "thread": 11 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 992589, + "thread": 11 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 1317565, + "thread": 15 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 1419433, + "thread": 18 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 1636981, + "thread": 0 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 1666990, + "thread": 27 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 1893257, + "thread": 28 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2039393, + "thread": 16 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2260574, + "thread": 16 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2424288, + "thread": 6 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2490448, + "thread": 28 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2658729, + "thread": 25 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 2845667, + "thread": 14 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 3089539, + "thread": 14 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 3271421, + "thread": 5 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 3435410, + "thread": 9 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 3613457, + "thread": 27 + } + }, + { + "amount": "440.063294798", + "slot": { + "period": 3753672, + "thread": 24 + } + }, + { + "amount": "440.063294804", + "slot": { + "period": 3803766, + "thread": 30 + } + } + ], + "AU1sJgYN1Fk93Muug7TwvPvxZrV3wfpYj3F9FWDaVyzFmUiXozBW": [ + { + "amount": "731.771697027", + "slot": { + "period": 33079, + "thread": 18 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 227158, + "thread": 14 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 446316, + "thread": 7 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 519592, + "thread": 29 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 664729, + "thread": 15 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 939270, + "thread": 2 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1115121, + "thread": 17 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1297079, + "thread": 7 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1404392, + "thread": 30 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1550378, + "thread": 5 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1712211, + "thread": 3 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 1820651, + "thread": 28 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2069564, + "thread": 18 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2161606, + "thread": 20 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2404975, + "thread": 25 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2472693, + "thread": 28 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2671451, + "thread": 0 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2806523, + "thread": 15 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 2955021, + "thread": 14 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 3267909, + "thread": 27 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 3421880, + "thread": 27 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 3608422, + "thread": 5 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 3767261, + "thread": 27 + } + }, + { + "amount": "731.771697027", + "slot": { + "period": 3788652, + "thread": 28 + } + } + ], + "AU1sNpDn97Ea9gU3VmJKCEWg6uGTs2FZ9qwvTx4WV9pKgH4YLjB3": [ + { + "amount": "143.726016112", + "slot": { + "period": 102155, + "thread": 12 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 237462, + "thread": 27 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 402954, + "thread": 0 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 593317, + "thread": 1 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 737264, + "thread": 19 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 937763, + "thread": 3 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1067978, + "thread": 18 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1263174, + "thread": 10 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1415051, + "thread": 15 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1629630, + "thread": 18 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1742738, + "thread": 19 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 1939646, + "thread": 8 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2064963, + "thread": 30 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2182120, + "thread": 2 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2356693, + "thread": 30 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2487110, + "thread": 25 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2687963, + "thread": 6 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2933090, + "thread": 18 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 2979364, + "thread": 11 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 3151844, + "thread": 12 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 3415331, + "thread": 12 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 3462803, + "thread": 24 + } + }, + { + "amount": "143.726016112", + "slot": { + "period": 3727088, + "thread": 25 + } + }, + { + "amount": "143.726016100", + "slot": { + "period": 3849165, + "thread": 6 + } + } + ], + "AU1sPf1zrT97hQuBvqc1PBzfKbZTKJzAHT3bpU3faT2pjeeFJjmJ": [ + { + "amount": "270.267532832", + "slot": { + "period": 39469, + "thread": 22 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 275734, + "thread": 25 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 401162, + "thread": 24 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 499681, + "thread": 0 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 779064, + "thread": 11 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 829125, + "thread": 1 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 997535, + "thread": 10 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 1204019, + "thread": 0 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 1406275, + "thread": 27 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 1523031, + "thread": 15 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 1767267, + "thread": 30 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 1891710, + "thread": 5 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2113010, + "thread": 0 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2159907, + "thread": 15 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2325313, + "thread": 12 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2518567, + "thread": 12 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2717108, + "thread": 12 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 2809574, + "thread": 14 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 3083124, + "thread": 30 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 3226196, + "thread": 5 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 3332830, + "thread": 17 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 3501036, + "thread": 15 + } + }, + { + "amount": "270.267532832", + "slot": { + "period": 3727765, + "thread": 12 + } + }, + { + "amount": "270.267532836", + "slot": { + "period": 3894150, + "thread": 17 + } + } + ], + "AU1sQEr839cgM27nfEuUurL2KCEV3QWspQqWnuhMtb6zbK5RbTWe": [ + { + "amount": "244.537176684", + "slot": { + "period": 137580, + "thread": 17 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 196283, + "thread": 16 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 436556, + "thread": 22 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 518024, + "thread": 9 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 807445, + "thread": 3 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 891439, + "thread": 7 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1079569, + "thread": 19 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1310013, + "thread": 8 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1321692, + "thread": 15 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1543025, + "thread": 6 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1691156, + "thread": 23 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 1920247, + "thread": 3 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2069884, + "thread": 7 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2177205, + "thread": 16 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2298515, + "thread": 21 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2617673, + "thread": 14 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2631511, + "thread": 22 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 2890679, + "thread": 12 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 3102796, + "thread": 6 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 3263532, + "thread": 17 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 3331812, + "thread": 0 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 3509241, + "thread": 10 + } + }, + { + "amount": "244.537176684", + "slot": { + "period": 3683533, + "thread": 3 + } + }, + { + "amount": "244.537176682", + "slot": { + "period": 3946689, + "thread": 15 + } + } + ], + "AU1sRWg4Q9KmeihR2mxdaCBwp1xmgwa9MWy6VCYxNdbVybhXznuF": [ + { + "amount": "152.263508624", + "slot": { + "period": 35139, + "thread": 27 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 299840, + "thread": 5 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 357586, + "thread": 18 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 542118, + "thread": 29 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 771130, + "thread": 6 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 954345, + "thread": 7 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1016395, + "thread": 0 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1177389, + "thread": 20 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1383038, + "thread": 19 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1593374, + "thread": 27 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1761545, + "thread": 0 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 1959775, + "thread": 19 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2134091, + "thread": 9 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2168623, + "thread": 16 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2330463, + "thread": 30 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2475328, + "thread": 6 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2728827, + "thread": 31 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 2930895, + "thread": 7 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 3073392, + "thread": 26 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 3277369, + "thread": 29 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 3342358, + "thread": 3 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 3507183, + "thread": 14 + } + }, + { + "amount": "152.263508624", + "slot": { + "period": 3709320, + "thread": 31 + } + }, + { + "amount": "152.263508616", + "slot": { + "period": 3780003, + "thread": 27 + } + } + ], + "AU1sS7xRBwucGPWRULexB1Sy9KkGmD9a5VVQ5YjZahHWKm3i3wbs": [ + { + "amount": "188.838568777", + "slot": { + "period": 147546, + "thread": 17 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 318088, + "thread": 14 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 476276, + "thread": 17 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 569080, + "thread": 26 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 688894, + "thread": 23 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 851865, + "thread": 13 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1025118, + "thread": 0 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1231504, + "thread": 29 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1462219, + "thread": 11 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1512799, + "thread": 25 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1770447, + "thread": 3 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 1955703, + "thread": 14 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2056081, + "thread": 7 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2173487, + "thread": 16 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2367629, + "thread": 10 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2474030, + "thread": 5 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2738171, + "thread": 2 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 2917648, + "thread": 18 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 3011862, + "thread": 5 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 3211785, + "thread": 27 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 3310889, + "thread": 30 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 3529692, + "thread": 18 + } + }, + { + "amount": "188.838568777", + "slot": { + "period": 3747395, + "thread": 12 + } + }, + { + "amount": "188.838568772", + "slot": { + "period": 3861255, + "thread": 21 + } + } + ], + "AU1sSJoXcbqWgUNjphTTwUNsDQt4EkQbfhHG8fsTK34kHT95ym1q": [ + { + "amount": "142.141230541", + "slot": { + "period": 41776, + "thread": 6 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 287352, + "thread": 6 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 491270, + "thread": 24 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 593399, + "thread": 3 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 672839, + "thread": 5 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 973635, + "thread": 13 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 996481, + "thread": 16 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 1168403, + "thread": 29 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 1382457, + "thread": 10 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 1589217, + "thread": 4 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 1731389, + "thread": 6 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 1895019, + "thread": 17 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2034111, + "thread": 31 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2162825, + "thread": 19 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2460050, + "thread": 22 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2616536, + "thread": 0 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2766531, + "thread": 5 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 2938613, + "thread": 21 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 3086920, + "thread": 26 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 3218535, + "thread": 9 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 3363639, + "thread": 16 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 3472322, + "thread": 27 + } + }, + { + "amount": "142.141230541", + "slot": { + "period": 3645579, + "thread": 22 + } + }, + { + "amount": "142.141230548", + "slot": { + "period": 3903803, + "thread": 19 + } + } + ], + "AU1sSUdp9aFRDgWUqCdNfKTfMbV9C4ZPFUn3kfLAF44cyarzg9vV": [ + { + "amount": "313.245999241", + "slot": { + "period": 46767, + "thread": 13 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 195223, + "thread": 17 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 381076, + "thread": 7 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 584043, + "thread": 12 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 763369, + "thread": 28 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 963848, + "thread": 25 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1052200, + "thread": 30 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1205496, + "thread": 31 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1393989, + "thread": 27 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1564004, + "thread": 19 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1652987, + "thread": 14 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 1944223, + "thread": 12 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2046759, + "thread": 17 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2243418, + "thread": 31 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2410843, + "thread": 2 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2525717, + "thread": 27 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2779059, + "thread": 20 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 2880227, + "thread": 27 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 3086922, + "thread": 29 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 3249068, + "thread": 2 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 3376961, + "thread": 28 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 3538194, + "thread": 19 + } + }, + { + "amount": "313.245999241", + "slot": { + "period": 3733569, + "thread": 26 + } + }, + { + "amount": "313.245999247", + "slot": { + "period": 3842065, + "thread": 26 + } + } + ], + "AU1sSwpwtf31tvdv1j6TH5XDvqaG19QLQDUwGmAzT6zHQgKJiBxR": [ + { + "amount": "143.819706473", + "slot": { + "period": 84746, + "thread": 19 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 222348, + "thread": 7 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 426703, + "thread": 20 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 575418, + "thread": 13 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 708937, + "thread": 25 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 838607, + "thread": 16 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1074715, + "thread": 6 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1245083, + "thread": 19 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1433385, + "thread": 19 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1532217, + "thread": 13 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1663855, + "thread": 24 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 1947918, + "thread": 11 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2142014, + "thread": 0 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2208441, + "thread": 6 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2375390, + "thread": 19 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2492137, + "thread": 20 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2629518, + "thread": 14 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 2907657, + "thread": 23 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 3069305, + "thread": 28 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 3164520, + "thread": 8 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 3446550, + "thread": 14 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 3550016, + "thread": 30 + } + }, + { + "amount": "143.819706473", + "slot": { + "period": 3754086, + "thread": 20 + } + }, + { + "amount": "143.819706480", + "slot": { + "period": 3875472, + "thread": 23 + } + } + ], + "AU1sSz79hiiGg3PVcyrWMvCpJeo9wUww4qKtSsP6c1ZoZbQcmNoa": [ + { + "amount": "300.449732298", + "slot": { + "period": 31337, + "thread": 3 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 299065, + "thread": 19 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 433628, + "thread": 14 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 618287, + "thread": 31 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 776658, + "thread": 23 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 864466, + "thread": 4 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 997322, + "thread": 2 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 1293776, + "thread": 27 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 1413772, + "thread": 9 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 1580076, + "thread": 8 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 1732433, + "thread": 3 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 1915007, + "thread": 5 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2011313, + "thread": 3 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2280370, + "thread": 8 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2344255, + "thread": 30 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2527568, + "thread": 12 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2638610, + "thread": 11 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2931926, + "thread": 2 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 2971018, + "thread": 22 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 3192792, + "thread": 19 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 3447840, + "thread": 5 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 3458561, + "thread": 28 + } + }, + { + "amount": "300.449732298", + "slot": { + "period": 3624109, + "thread": 14 + } + }, + { + "amount": "300.449732308", + "slot": { + "period": 3871943, + "thread": 12 + } + } + ], + "AU1sT5unYcfcFKgkFC5s3MxB5erB2ZRt6YrsnsV4fh8o3hCyAKiJ": [ + { + "amount": "59.261776228", + "slot": { + "period": 128393, + "thread": 11 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 201161, + "thread": 11 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 378628, + "thread": 3 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 626312, + "thread": 11 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 784404, + "thread": 13 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 827840, + "thread": 14 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1021714, + "thread": 15 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1291650, + "thread": 17 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1329519, + "thread": 27 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1550403, + "thread": 28 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1674549, + "thread": 30 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 1893650, + "thread": 24 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2041560, + "thread": 29 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2222236, + "thread": 2 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2390387, + "thread": 9 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2500307, + "thread": 19 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2750866, + "thread": 14 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2897980, + "thread": 4 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 2983457, + "thread": 17 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 3192069, + "thread": 11 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 3297855, + "thread": 27 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 3472509, + "thread": 16 + } + }, + { + "amount": "59.261776228", + "slot": { + "period": 3690983, + "thread": 31 + } + }, + { + "amount": "59.261776234", + "slot": { + "period": 3786466, + "thread": 29 + } + } + ], + "AU1sTVhGmfSguWL4Hp1btutv9pRiNqWUDtb8MShGSw7NsuCHqGaR": [ + { + "amount": "147.929677290", + "slot": { + "period": 52109, + "thread": 26 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 169135, + "thread": 12 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 338998, + "thread": 7 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 630115, + "thread": 31 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 810764, + "thread": 23 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 866206, + "thread": 12 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1048218, + "thread": 8 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1312736, + "thread": 14 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1456210, + "thread": 28 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1592513, + "thread": 4 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1691814, + "thread": 18 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 1967993, + "thread": 24 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2064035, + "thread": 25 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2180756, + "thread": 23 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2440493, + "thread": 26 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2593226, + "thread": 7 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2694280, + "thread": 19 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 2932854, + "thread": 20 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 3102075, + "thread": 18 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 3163336, + "thread": 6 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 3429247, + "thread": 4 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 3544372, + "thread": 5 + } + }, + { + "amount": "147.929677290", + "slot": { + "period": 3714973, + "thread": 12 + } + }, + { + "amount": "147.929677293", + "slot": { + "period": 3828394, + "thread": 11 + } + } + ], + "AU1sTxEx23RbMe4q6sgVThHsrDV3vDBobnmAxrM7jFBmapuQqgwo": [ + { + "amount": "255.624981090", + "slot": { + "period": 144114, + "thread": 31 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 190901, + "thread": 26 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 416637, + "thread": 18 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 547533, + "thread": 2 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 701899, + "thread": 4 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 929305, + "thread": 5 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1067279, + "thread": 10 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1202150, + "thread": 2 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1407388, + "thread": 24 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1550015, + "thread": 11 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1743800, + "thread": 8 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 1840909, + "thread": 24 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2111405, + "thread": 5 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2173997, + "thread": 1 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2436479, + "thread": 23 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2527247, + "thread": 17 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2764959, + "thread": 18 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2808747, + "thread": 17 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 2999847, + "thread": 4 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 3243581, + "thread": 10 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 3309731, + "thread": 28 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 3534319, + "thread": 19 + } + }, + { + "amount": "255.624981090", + "slot": { + "period": 3678974, + "thread": 22 + } + }, + { + "amount": "255.624981094", + "slot": { + "period": 3853072, + "thread": 18 + } + } + ], + "AU1sVvEtaKeJAs9MEYQdE9dJ5y4p7wPvTyca6ytciTu6kLEnE23V": [ + { + "amount": "214.376403019", + "slot": { + "period": 136256, + "thread": 14 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 258082, + "thread": 27 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 328647, + "thread": 7 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 589378, + "thread": 25 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 799576, + "thread": 10 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 878200, + "thread": 20 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1140913, + "thread": 13 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1217661, + "thread": 12 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1394632, + "thread": 12 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1631056, + "thread": 23 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1778867, + "thread": 30 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 1846164, + "thread": 11 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2001014, + "thread": 10 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2256431, + "thread": 1 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2424361, + "thread": 23 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2605472, + "thread": 28 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2659726, + "thread": 31 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 2825028, + "thread": 31 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 3093864, + "thread": 3 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 3175514, + "thread": 7 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 3405662, + "thread": 12 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 3557591, + "thread": 19 + } + }, + { + "amount": "214.376403019", + "slot": { + "period": 3714400, + "thread": 2 + } + }, + { + "amount": "214.376403028", + "slot": { + "period": 3865178, + "thread": 26 + } + } + ], + "AU1sVxtbiozzy6uPLwrJmtShVutJbiato7CZgady6CqXuVfVKVHU": [ + { + "amount": "242.345397337", + "slot": { + "period": 116756, + "thread": 1 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 249694, + "thread": 31 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 330513, + "thread": 19 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 643089, + "thread": 10 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 812784, + "thread": 14 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 961937, + "thread": 2 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1039541, + "thread": 30 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1206182, + "thread": 16 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1391159, + "thread": 24 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1602995, + "thread": 1 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1655798, + "thread": 28 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 1932186, + "thread": 11 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2085853, + "thread": 13 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2155345, + "thread": 9 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2359284, + "thread": 9 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2623193, + "thread": 18 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2722894, + "thread": 6 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2817161, + "thread": 1 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 2967423, + "thread": 9 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 3276375, + "thread": 21 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 3378786, + "thread": 29 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 3497929, + "thread": 0 + } + }, + { + "amount": "242.345397337", + "slot": { + "period": 3624384, + "thread": 30 + } + }, + { + "amount": "242.345397342", + "slot": { + "period": 3790748, + "thread": 6 + } + } + ], + "AU1sWvKT9seek84eHrXv5e8ZJiQjAc6PMYLHr5baeHGDHQZwPMXS": [ + { + "amount": "121.809263983", + "slot": { + "period": 17362, + "thread": 18 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 221281, + "thread": 3 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 475402, + "thread": 27 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 610677, + "thread": 21 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 664755, + "thread": 27 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 889166, + "thread": 28 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1075818, + "thread": 7 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1205151, + "thread": 9 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1425197, + "thread": 29 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1521510, + "thread": 27 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1754171, + "thread": 2 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1942061, + "thread": 19 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 1978598, + "thread": 31 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 2144341, + "thread": 0 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 2360643, + "thread": 27 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 2473968, + "thread": 21 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 2772952, + "thread": 12 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 2850109, + "thread": 22 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 3029116, + "thread": 5 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 3238298, + "thread": 23 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 3389829, + "thread": 12 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 3504641, + "thread": 24 + } + }, + { + "amount": "121.809263983", + "slot": { + "period": 3777430, + "thread": 29 + } + }, + { + "amount": "121.809263981", + "slot": { + "period": 3901150, + "thread": 13 + } + } + ], + "AU1sYtafeWNpdcgQtBUVi7LTQ3F4vpBAHA3LqaAjAuTsSkb4MR4c": [ + { + "amount": "150.072085607", + "slot": { + "period": 48202, + "thread": 2 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 181911, + "thread": 21 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 345593, + "thread": 2 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 495480, + "thread": 7 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 819250, + "thread": 1 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 880797, + "thread": 24 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1046684, + "thread": 12 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1304240, + "thread": 25 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1445981, + "thread": 28 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1588647, + "thread": 13 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1778457, + "thread": 7 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 1876449, + "thread": 15 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2005589, + "thread": 11 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2152357, + "thread": 10 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2376656, + "thread": 16 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2570967, + "thread": 12 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2790537, + "thread": 26 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2943053, + "thread": 26 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 2958795, + "thread": 23 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 3126283, + "thread": 16 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 3319387, + "thread": 15 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 3581248, + "thread": 2 + } + }, + { + "amount": "150.072085607", + "slot": { + "period": 3698752, + "thread": 27 + } + }, + { + "amount": "150.072085604", + "slot": { + "period": 3946161, + "thread": 23 + } + } + ], + "AU1sZYY3RfsADNo7CTiMMFAc5ndQxqNprPmg3byT4seTdTakbNQa": [ + { + "amount": "145.903221744", + "slot": { + "period": 134137, + "thread": 25 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 188204, + "thread": 24 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 371575, + "thread": 1 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 494721, + "thread": 18 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 732709, + "thread": 26 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 891577, + "thread": 12 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1008559, + "thread": 14 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1259366, + "thread": 16 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1395631, + "thread": 12 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1548638, + "thread": 11 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1702916, + "thread": 5 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 1845458, + "thread": 8 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2143193, + "thread": 23 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2250280, + "thread": 6 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2368956, + "thread": 8 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2594912, + "thread": 10 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2735842, + "thread": 28 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2930459, + "thread": 14 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 2985215, + "thread": 0 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 3168290, + "thread": 24 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 3388567, + "thread": 17 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 3516785, + "thread": 15 + } + }, + { + "amount": "145.903221744", + "slot": { + "period": 3732842, + "thread": 4 + } + }, + { + "amount": "145.903221745", + "slot": { + "period": 3934002, + "thread": 3 + } + } + ], + "AU1sZiyt95HksyZdNSqwzCQ6SN1zFwCQLHunzAumZ596W3xnNC7S": [ + { + "amount": "63.085256749", + "slot": { + "period": 77403, + "thread": 15 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 318259, + "thread": 30 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 406007, + "thread": 16 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 636138, + "thread": 0 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 819104, + "thread": 10 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 982156, + "thread": 0 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1021195, + "thread": 26 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1211873, + "thread": 4 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1390150, + "thread": 9 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1589539, + "thread": 28 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1704931, + "thread": 22 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1868801, + "thread": 19 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 1997572, + "thread": 10 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 2206626, + "thread": 13 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 2449371, + "thread": 10 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 2511942, + "thread": 25 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 2746105, + "thread": 29 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 2908158, + "thread": 6 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 3117365, + "thread": 27 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 3166638, + "thread": 10 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 3325585, + "thread": 29 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 3575877, + "thread": 22 + } + }, + { + "amount": "63.085256749", + "slot": { + "period": 3734699, + "thread": 15 + } + }, + { + "amount": "63.085256748", + "slot": { + "period": 3847333, + "thread": 28 + } + } + ], + "AU1sZqRKnJTDSSsD9XhGHEgnaYG94hpkkeNiz2AQcKjjNyLHmH6T": [ + { + "amount": "126.099619619", + "slot": { + "period": 123630, + "thread": 30 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 275735, + "thread": 17 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 434562, + "thread": 4 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 529089, + "thread": 2 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 791710, + "thread": 17 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 872589, + "thread": 28 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1013237, + "thread": 28 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1255484, + "thread": 18 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1357500, + "thread": 0 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1516875, + "thread": 24 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1713627, + "thread": 14 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 1849393, + "thread": 7 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2117002, + "thread": 17 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2144941, + "thread": 16 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2349989, + "thread": 5 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2555964, + "thread": 27 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2733495, + "thread": 30 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 2951894, + "thread": 23 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 3039354, + "thread": 18 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 3184361, + "thread": 1 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 3356666, + "thread": 29 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 3461171, + "thread": 22 + } + }, + { + "amount": "126.099619619", + "slot": { + "period": 3729875, + "thread": 21 + } + }, + { + "amount": "126.099619623", + "slot": { + "period": 3904008, + "thread": 19 + } + } + ], + "AU1saWgHfJ3yCQan98YveUNQEsYsj21vDs4hAF2jGe9Sv53uty7M": [ + { + "amount": "235.865970995", + "slot": { + "period": 138473, + "thread": 6 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 279870, + "thread": 18 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 403827, + "thread": 11 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 587428, + "thread": 10 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 798314, + "thread": 26 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 821722, + "thread": 8 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 999712, + "thread": 7 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1162061, + "thread": 29 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1445647, + "thread": 9 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1622785, + "thread": 18 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1793618, + "thread": 23 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1916597, + "thread": 17 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 1996745, + "thread": 13 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 2161949, + "thread": 28 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 2434258, + "thread": 1 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 2503775, + "thread": 6 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 2691916, + "thread": 4 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 2930128, + "thread": 25 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 3112684, + "thread": 26 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 3128219, + "thread": 0 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 3294447, + "thread": 11 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 3554959, + "thread": 29 + } + }, + { + "amount": "235.865970995", + "slot": { + "period": 3777756, + "thread": 10 + } + }, + { + "amount": "235.865970991", + "slot": { + "period": 3828375, + "thread": 10 + } + } + ], + "AU1sb6a47gdMFqUBpjbYSVD4D28H84fCScNuXkCjJk1ArbpgmvQg": [ + { + "amount": "248.070183048", + "slot": { + "period": 86103, + "thread": 4 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 195890, + "thread": 5 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 409557, + "thread": 9 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 506157, + "thread": 27 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 713315, + "thread": 9 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 932336, + "thread": 29 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1126644, + "thread": 15 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1288604, + "thread": 16 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1348162, + "thread": 26 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1510720, + "thread": 29 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1788407, + "thread": 14 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 1973047, + "thread": 18 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2006077, + "thread": 16 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2281777, + "thread": 25 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2360223, + "thread": 11 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2523463, + "thread": 3 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2677458, + "thread": 9 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 2925259, + "thread": 21 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 3056378, + "thread": 4 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 3170101, + "thread": 26 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 3298702, + "thread": 18 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 3615680, + "thread": 26 + } + }, + { + "amount": "248.070183048", + "slot": { + "period": 3681828, + "thread": 7 + } + }, + { + "amount": "248.070183041", + "slot": { + "period": 3898383, + "thread": 30 + } + } + ], + "AU1sbCxKXDSAwWqWA4nEj84YXTc3do7sd3fkW8htBnuowF58oyb6": [ + { + "amount": "269.085437728", + "slot": { + "period": 119565, + "thread": 24 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 277665, + "thread": 1 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 423063, + "thread": 17 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 500595, + "thread": 21 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 814260, + "thread": 21 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 884796, + "thread": 13 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1109342, + "thread": 19 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1269380, + "thread": 5 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1442180, + "thread": 16 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1584519, + "thread": 5 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1771804, + "thread": 3 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 1909121, + "thread": 31 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2038129, + "thread": 8 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2198711, + "thread": 11 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2438729, + "thread": 23 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2534460, + "thread": 1 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2722819, + "thread": 23 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 2917681, + "thread": 26 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 3045169, + "thread": 20 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 3217483, + "thread": 9 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 3306511, + "thread": 17 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 3617088, + "thread": 4 + } + }, + { + "amount": "269.085437728", + "slot": { + "period": 3769289, + "thread": 27 + } + }, + { + "amount": "269.085437735", + "slot": { + "period": 3908242, + "thread": 3 + } + } + ], + "AU1sbGN5wjPtRxRwcrLpXXWXBNXQ6dM8X44SFCiwYWnxvoym568E": [ + { + "amount": "587.207212632", + "slot": { + "period": 35755, + "thread": 31 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 257209, + "thread": 27 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 395883, + "thread": 13 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 564774, + "thread": 13 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 670932, + "thread": 4 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 969536, + "thread": 4 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1009925, + "thread": 6 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1278704, + "thread": 21 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1406661, + "thread": 13 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1629639, + "thread": 7 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1788218, + "thread": 13 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 1867529, + "thread": 12 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2122438, + "thread": 15 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2214166, + "thread": 24 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2338971, + "thread": 17 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2527568, + "thread": 15 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2656647, + "thread": 31 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2813071, + "thread": 18 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 2957949, + "thread": 19 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 3173589, + "thread": 23 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 3382341, + "thread": 31 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 3608687, + "thread": 12 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 3640930, + "thread": 20 + } + }, + { + "amount": "587.207212632", + "slot": { + "period": 3928917, + "thread": 23 + } + } + ], + "AU1sbaWz56M19qg1LM5LX4JTLq8qkP6c5SSNx2WyKiuVdrvzn8Qi": [ + { + "amount": "52.307587420", + "slot": { + "period": 139474, + "thread": 21 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 227254, + "thread": 28 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 472078, + "thread": 4 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 629903, + "thread": 0 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 745042, + "thread": 5 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 942736, + "thread": 8 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1007802, + "thread": 2 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1276488, + "thread": 5 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1433475, + "thread": 21 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1605023, + "thread": 27 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1684744, + "thread": 7 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 1903864, + "thread": 10 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2017646, + "thread": 2 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2284823, + "thread": 6 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2299582, + "thread": 3 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2505690, + "thread": 21 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2736666, + "thread": 23 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 2840797, + "thread": 27 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 3081214, + "thread": 3 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 3281192, + "thread": 11 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 3353046, + "thread": 4 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 3514270, + "thread": 14 + } + }, + { + "amount": "52.307587420", + "slot": { + "period": 3727748, + "thread": 10 + } + }, + { + "amount": "52.307587425", + "slot": { + "period": 3853447, + "thread": 4 + } + } + ], + "AU1sbbVbYDkAk6DHW3JzbCc33ew4UUhbPTNQBEJ7VFYH7TAD3P7x": [ + { + "amount": "133.190570498", + "slot": { + "period": 121891, + "thread": 7 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 295966, + "thread": 16 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 369040, + "thread": 1 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 572207, + "thread": 21 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 766999, + "thread": 11 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 932199, + "thread": 10 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1068354, + "thread": 18 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1206255, + "thread": 11 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1376293, + "thread": 15 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1624452, + "thread": 0 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1699537, + "thread": 22 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 1905308, + "thread": 16 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2122271, + "thread": 26 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2250231, + "thread": 27 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2437205, + "thread": 9 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2565864, + "thread": 24 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2775339, + "thread": 30 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2834272, + "thread": 20 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 2966166, + "thread": 19 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 3233870, + "thread": 7 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 3291684, + "thread": 30 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 3583751, + "thread": 14 + } + }, + { + "amount": "133.190570498", + "slot": { + "period": 3706050, + "thread": 11 + } + }, + { + "amount": "133.190570491", + "slot": { + "period": 3830472, + "thread": 14 + } + } + ], + "AU1sbbbUUDDGAKLsEviGcwyNq33SUme55b23EGavQPp2YAFBYzjm": [ + { + "amount": "354.077935797", + "slot": { + "period": 135037, + "thread": 15 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 218822, + "thread": 28 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 396254, + "thread": 30 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 613461, + "thread": 19 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 715717, + "thread": 6 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 869363, + "thread": 30 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1026225, + "thread": 0 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1242994, + "thread": 5 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1318952, + "thread": 18 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1513932, + "thread": 13 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1803433, + "thread": 19 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 1820957, + "thread": 17 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2127988, + "thread": 17 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2203588, + "thread": 21 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2428096, + "thread": 3 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2464195, + "thread": 10 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2669688, + "thread": 29 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 2826992, + "thread": 29 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 3067803, + "thread": 15 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 3197581, + "thread": 4 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 3324349, + "thread": 8 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 3487440, + "thread": 15 + } + }, + { + "amount": "354.077935797", + "slot": { + "period": 3733959, + "thread": 19 + } + }, + { + "amount": "354.077935801", + "slot": { + "period": 3788861, + "thread": 4 + } + } + ], + "AU1sc3aUtK6ubLz2JfuNLvEaDUeW3Skedn4BtTeDTVJKCfKXDx8g": [ + { + "amount": "122.852310207", + "slot": { + "period": 128361, + "thread": 12 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 273027, + "thread": 13 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 459434, + "thread": 1 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 650658, + "thread": 22 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 762652, + "thread": 12 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 852119, + "thread": 18 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1018272, + "thread": 16 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1176170, + "thread": 12 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1369913, + "thread": 21 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1498873, + "thread": 14 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1707923, + "thread": 25 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 1900098, + "thread": 26 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2140949, + "thread": 14 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2230355, + "thread": 30 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2446318, + "thread": 1 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2616975, + "thread": 10 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2723846, + "thread": 4 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 2852449, + "thread": 1 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 3087698, + "thread": 0 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 3176976, + "thread": 30 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 3307395, + "thread": 19 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 3491166, + "thread": 7 + } + }, + { + "amount": "122.852310207", + "slot": { + "period": 3705822, + "thread": 12 + } + }, + { + "amount": "122.852310197", + "slot": { + "period": 3919954, + "thread": 8 + } + } + ], + "AU1scJbu9CYCJFb3UXfEjXexUf9rPeHwHSSNrfii1dwUoSCZJbEy": [ + { + "amount": "355.929284124", + "slot": { + "period": 131418, + "thread": 8 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 277749, + "thread": 17 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 483916, + "thread": 5 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 606378, + "thread": 0 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 738244, + "thread": 31 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 875112, + "thread": 11 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1106956, + "thread": 1 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1218154, + "thread": 20 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1433512, + "thread": 3 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1486202, + "thread": 4 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1781965, + "thread": 21 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 1933665, + "thread": 14 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2042736, + "thread": 13 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2265590, + "thread": 20 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2426051, + "thread": 2 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2463721, + "thread": 22 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2695375, + "thread": 28 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 2950108, + "thread": 30 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 3000906, + "thread": 21 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 3204624, + "thread": 24 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 3414300, + "thread": 29 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 3590557, + "thread": 6 + } + }, + { + "amount": "355.929284124", + "slot": { + "period": 3754470, + "thread": 12 + } + }, + { + "amount": "355.929284127", + "slot": { + "period": 3928165, + "thread": 8 + } + } + ], + "AU1sd4LK8MooDf2jyfAKaob1oecpyF1xv1c2eaGM9SkpVcdwGceW": [ + { + "amount": "102.785294666", + "slot": { + "period": 133873, + "thread": 8 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 276043, + "thread": 7 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 428185, + "thread": 23 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 576073, + "thread": 4 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 713908, + "thread": 31 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 948421, + "thread": 9 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 989052, + "thread": 17 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 1251194, + "thread": 25 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 1323898, + "thread": 13 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 1550297, + "thread": 7 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 1797400, + "thread": 3 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 1888535, + "thread": 0 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2122824, + "thread": 14 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2239573, + "thread": 4 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2426914, + "thread": 26 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2596669, + "thread": 19 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2744907, + "thread": 24 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2808572, + "thread": 16 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 2987217, + "thread": 0 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 3124745, + "thread": 31 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 3312825, + "thread": 20 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 3603746, + "thread": 31 + } + }, + { + "amount": "102.785294666", + "slot": { + "period": 3754301, + "thread": 30 + } + }, + { + "amount": "102.785294659", + "slot": { + "period": 3934298, + "thread": 16 + } + } + ], + "AU1sdsRXHdKNajo1TvYyzzJBHs6u91cmQxWJtEJxtoRPbHpq23N1": [ + { + "amount": "95.582227005", + "slot": { + "period": 19031, + "thread": 21 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 169198, + "thread": 10 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 326971, + "thread": 5 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 631986, + "thread": 30 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 680569, + "thread": 14 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 849514, + "thread": 22 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1059293, + "thread": 27 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1212081, + "thread": 27 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1370901, + "thread": 31 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1618976, + "thread": 14 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1777123, + "thread": 22 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 1958026, + "thread": 28 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2045246, + "thread": 31 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2179967, + "thread": 19 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2389595, + "thread": 7 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2527139, + "thread": 11 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2635471, + "thread": 27 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 2841657, + "thread": 26 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 3046065, + "thread": 21 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 3196432, + "thread": 25 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 3436803, + "thread": 8 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 3568280, + "thread": 15 + } + }, + { + "amount": "95.582227005", + "slot": { + "period": 3640355, + "thread": 8 + } + }, + { + "amount": "95.582226995", + "slot": { + "period": 3932713, + "thread": 5 + } + } + ], + "AU1sevxhwyhc2jattJBxNR5fYGhDLFA8H7NwS3XK3BaK1sW2fJD6": [ + { + "amount": "481.163875965", + "slot": { + "period": 141888, + "thread": 5 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 266129, + "thread": 11 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 343537, + "thread": 25 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 538901, + "thread": 14 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 667042, + "thread": 9 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 857758, + "thread": 8 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1076449, + "thread": 8 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1245597, + "thread": 24 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1456581, + "thread": 23 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1597058, + "thread": 3 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1681959, + "thread": 0 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 1937715, + "thread": 11 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2141024, + "thread": 23 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2228484, + "thread": 3 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2388848, + "thread": 10 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2474707, + "thread": 5 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2722561, + "thread": 12 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 2880802, + "thread": 19 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 3060085, + "thread": 21 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 3136648, + "thread": 25 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 3295827, + "thread": 21 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 3581437, + "thread": 7 + } + }, + { + "amount": "481.163875965", + "slot": { + "period": 3651594, + "thread": 14 + } + }, + { + "amount": "481.163875966", + "slot": { + "period": 3839993, + "thread": 14 + } + } + ], + "AU1sexXLi3vVAdQAmceNHnCyGcAqkvjNVyLBHBzG9tmpS2Lb2pbQ": [ + { + "amount": "157.515019411", + "slot": { + "period": 62933, + "thread": 23 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 316357, + "thread": 19 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 405071, + "thread": 8 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 518747, + "thread": 8 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 779905, + "thread": 13 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 937771, + "thread": 7 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1046613, + "thread": 28 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1236219, + "thread": 29 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1426554, + "thread": 16 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1521553, + "thread": 31 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1779715, + "thread": 21 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 1823888, + "thread": 12 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2048062, + "thread": 22 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2217188, + "thread": 30 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2328568, + "thread": 11 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2489534, + "thread": 24 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2660584, + "thread": 3 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 2934398, + "thread": 3 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 3047351, + "thread": 25 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 3203151, + "thread": 26 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 3297853, + "thread": 28 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 3451248, + "thread": 24 + } + }, + { + "amount": "157.515019411", + "slot": { + "period": 3736363, + "thread": 25 + } + }, + { + "amount": "157.515019417", + "slot": { + "period": 3873730, + "thread": 24 + } + } + ], + "AU1sf1vrQPkgSNJrAwDxNB53Lc2a88Qw3iSCoTmEEiNzSmzhkDRQ": [ + { + "amount": "142.229402257", + "slot": { + "period": 37190, + "thread": 26 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 274478, + "thread": 17 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 483349, + "thread": 1 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 545345, + "thread": 4 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 732643, + "thread": 11 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 916684, + "thread": 10 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 999630, + "thread": 16 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 1155499, + "thread": 23 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 1426602, + "thread": 21 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 1528148, + "thread": 29 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 1671505, + "thread": 23 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 1951578, + "thread": 6 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2074037, + "thread": 23 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2145997, + "thread": 31 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2302057, + "thread": 1 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2601207, + "thread": 28 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2771074, + "thread": 12 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 2870095, + "thread": 1 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 3056966, + "thread": 1 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 3147887, + "thread": 3 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 3407498, + "thread": 25 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 3471605, + "thread": 1 + } + }, + { + "amount": "142.229402257", + "slot": { + "period": 3637944, + "thread": 22 + } + }, + { + "amount": "142.229402262", + "slot": { + "period": 3796310, + "thread": 4 + } + } + ], + "AU1sfV45JkMQRDmdbEFr6CbLeYX2kBq8SyeDNP6SKV1S7VV3YYs4": [ + { + "amount": "79.062290070", + "slot": { + "period": 160739, + "thread": 3 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 288228, + "thread": 18 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 352793, + "thread": 13 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 506012, + "thread": 21 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 717794, + "thread": 25 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 966207, + "thread": 27 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1051157, + "thread": 19 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1232549, + "thread": 13 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1425582, + "thread": 20 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1625234, + "thread": 13 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1703544, + "thread": 7 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 1890840, + "thread": 9 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2100276, + "thread": 23 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2279254, + "thread": 2 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2400103, + "thread": 7 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2620861, + "thread": 4 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2721462, + "thread": 28 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 2841563, + "thread": 10 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 3014140, + "thread": 4 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 3200727, + "thread": 11 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 3338425, + "thread": 22 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 3505103, + "thread": 23 + } + }, + { + "amount": "79.062290070", + "slot": { + "period": 3630524, + "thread": 12 + } + }, + { + "amount": "79.062290072", + "slot": { + "period": 3793576, + "thread": 28 + } + } + ], + "AU1sgfzfsaCahkfxwZdSDF85Ex8PpTWZgmsd33fFCdiifzfx5sL9": [ + { + "amount": "291.384639742", + "slot": { + "period": 42375, + "thread": 13 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 261629, + "thread": 23 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 482674, + "thread": 2 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 602029, + "thread": 22 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 676021, + "thread": 8 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 875301, + "thread": 8 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1078059, + "thread": 1 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1163053, + "thread": 20 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1413894, + "thread": 4 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1646879, + "thread": 28 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1732233, + "thread": 25 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 1919056, + "thread": 11 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2076600, + "thread": 6 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2156048, + "thread": 24 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2450652, + "thread": 27 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2592265, + "thread": 8 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2748566, + "thread": 1 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2824893, + "thread": 13 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 2954227, + "thread": 23 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 3140987, + "thread": 7 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 3315398, + "thread": 21 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 3591397, + "thread": 19 + } + }, + { + "amount": "291.384639742", + "slot": { + "period": 3773729, + "thread": 31 + } + }, + { + "amount": "291.384639743", + "slot": { + "period": 3855625, + "thread": 16 + } + } + ], + "AU1sh2t8Ad2gtRcFX13Rbb11uHQAAg5avD1Kri1v9n9ER4iyNFbe": [ + { + "amount": "459.721914775", + "slot": { + "period": 40056, + "thread": 20 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 262859, + "thread": 6 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 491077, + "thread": 25 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 564949, + "thread": 16 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 798134, + "thread": 27 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 906631, + "thread": 1 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1029449, + "thread": 24 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1150683, + "thread": 24 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1324507, + "thread": 3 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1518453, + "thread": 20 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1683353, + "thread": 4 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 1967253, + "thread": 22 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2064128, + "thread": 5 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2277301, + "thread": 12 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2349268, + "thread": 0 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2529974, + "thread": 2 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2747063, + "thread": 12 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 2905973, + "thread": 25 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 3031521, + "thread": 4 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 3207164, + "thread": 28 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 3449115, + "thread": 20 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 3581189, + "thread": 8 + } + }, + { + "amount": "459.721914775", + "slot": { + "period": 3709285, + "thread": 19 + } + }, + { + "amount": "459.721914765", + "slot": { + "period": 3936067, + "thread": 14 + } + } + ], + "AU1shedK1KbTpuwJoYTTyhfnKjsBqBCTfX19gza4c1V7xQ8Qh6MM": [ + { + "amount": "139.838809059", + "slot": { + "period": 82192, + "thread": 2 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 283007, + "thread": 20 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 341746, + "thread": 1 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 537122, + "thread": 15 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 659972, + "thread": 11 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 952262, + "thread": 10 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1139610, + "thread": 26 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1260112, + "thread": 6 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1474986, + "thread": 9 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1601913, + "thread": 2 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1791341, + "thread": 0 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1974416, + "thread": 20 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 1999463, + "thread": 24 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 2237382, + "thread": 24 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 2446157, + "thread": 4 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 2579684, + "thread": 19 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 2692248, + "thread": 17 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 2936654, + "thread": 20 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 3086131, + "thread": 20 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 3275940, + "thread": 31 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 3324446, + "thread": 30 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 3511117, + "thread": 8 + } + }, + { + "amount": "139.838809059", + "slot": { + "period": 3699941, + "thread": 3 + } + }, + { + "amount": "139.838809062", + "slot": { + "period": 3921537, + "thread": 2 + } + } + ], + "AU1shkUQDAiAgBTcjW5Tx2LgnU3FbMcM22MBgaRQRRAEQs66CYPC": [ + { + "amount": "57.483905654", + "slot": { + "period": 61483, + "thread": 25 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 290719, + "thread": 6 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 344161, + "thread": 24 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 561082, + "thread": 27 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 754696, + "thread": 2 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 833247, + "thread": 10 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1079533, + "thread": 23 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1169955, + "thread": 18 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1428534, + "thread": 20 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1514077, + "thread": 26 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1650133, + "thread": 5 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 1976034, + "thread": 21 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2036775, + "thread": 6 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2190318, + "thread": 6 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2414796, + "thread": 2 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2477627, + "thread": 18 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2668897, + "thread": 19 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 2945882, + "thread": 16 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 3075238, + "thread": 4 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 3259506, + "thread": 15 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 3328086, + "thread": 2 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 3583015, + "thread": 13 + } + }, + { + "amount": "57.483905654", + "slot": { + "period": 3638471, + "thread": 4 + } + }, + { + "amount": "57.483905655", + "slot": { + "period": 3867641, + "thread": 13 + } + } + ], + "AU1shrQ9Pyq45281FQFL7mEW4gTVA5tPbZnKN5za9miDPXf8gTfb": [ + { + "amount": "611.403954212", + "slot": { + "period": 153327, + "thread": 4 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 232435, + "thread": 13 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 440955, + "thread": 21 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 545842, + "thread": 0 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 739279, + "thread": 20 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 886597, + "thread": 6 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 992937, + "thread": 31 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 1275611, + "thread": 0 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 1415232, + "thread": 12 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 1529971, + "thread": 26 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 1727303, + "thread": 2 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 1910234, + "thread": 25 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2022281, + "thread": 17 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2293294, + "thread": 14 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2314191, + "thread": 28 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2566103, + "thread": 31 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2750341, + "thread": 9 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 2857070, + "thread": 24 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 3058728, + "thread": 28 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 3142574, + "thread": 4 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 3293962, + "thread": 12 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 3565276, + "thread": 6 + } + }, + { + "amount": "611.403954212", + "slot": { + "period": 3744273, + "thread": 27 + } + }, + { + "amount": "611.403954216", + "slot": { + "period": 3780534, + "thread": 2 + } + } + ], + "AU1siQFoGPDmXJcKtaPQRjro6wPmCxvSwugvYr2vN8DY6HH9bCop": [ + { + "amount": "80.524508879", + "slot": { + "period": 101479, + "thread": 15 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 298121, + "thread": 5 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 473970, + "thread": 5 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 542677, + "thread": 27 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 706785, + "thread": 21 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 898377, + "thread": 25 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1148530, + "thread": 13 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1225141, + "thread": 22 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1344179, + "thread": 17 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1518501, + "thread": 14 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1804024, + "thread": 29 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 1944040, + "thread": 31 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2091339, + "thread": 15 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2188249, + "thread": 9 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2327702, + "thread": 29 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2474795, + "thread": 18 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2679594, + "thread": 25 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 2828923, + "thread": 21 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 3057015, + "thread": 31 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 3225372, + "thread": 21 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 3301921, + "thread": 24 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 3503219, + "thread": 23 + } + }, + { + "amount": "80.524508879", + "slot": { + "period": 3776269, + "thread": 23 + } + }, + { + "amount": "80.524508884", + "slot": { + "period": 3937258, + "thread": 26 + } + } + ], + "AU1sizZKAiz7BMnW7Sxq2R6xCjDT88iLedTcEUXCQfpHeEKPKLCt": [ + { + "amount": "584.006919864", + "slot": { + "period": 79365, + "thread": 12 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 214978, + "thread": 21 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 360908, + "thread": 8 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 532581, + "thread": 25 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 714238, + "thread": 20 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 940051, + "thread": 5 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1038360, + "thread": 17 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1242791, + "thread": 27 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1378133, + "thread": 17 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1510485, + "thread": 9 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1720233, + "thread": 14 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 1821286, + "thread": 4 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2004149, + "thread": 5 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2191637, + "thread": 16 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2428277, + "thread": 13 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2521911, + "thread": 30 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2690907, + "thread": 19 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 2947853, + "thread": 1 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 3036574, + "thread": 30 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 3160238, + "thread": 15 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 3340234, + "thread": 14 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 3479367, + "thread": 0 + } + }, + { + "amount": "584.006919864", + "slot": { + "period": 3632476, + "thread": 31 + } + }, + { + "amount": "584.006919855", + "slot": { + "period": 3817611, + "thread": 5 + } + } + ], + "AU1sjq1Z9F7pZJmfMAQUxV6jVN2FhSYwiESZbWaAfdSAh8kdTutV": [ + { + "amount": "436.543206516", + "slot": { + "period": 55224, + "thread": 30 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 316261, + "thread": 5 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 343268, + "thread": 22 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 542734, + "thread": 6 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 664082, + "thread": 30 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 827734, + "thread": 30 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1024670, + "thread": 31 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1245078, + "thread": 24 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1456329, + "thread": 21 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1556757, + "thread": 21 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1730316, + "thread": 2 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 1881580, + "thread": 1 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2018714, + "thread": 2 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2166158, + "thread": 0 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2298889, + "thread": 12 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2541450, + "thread": 5 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2640244, + "thread": 18 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 2808286, + "thread": 14 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 3105617, + "thread": 7 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 3252471, + "thread": 26 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 3328049, + "thread": 10 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 3601631, + "thread": 1 + } + }, + { + "amount": "436.543206516", + "slot": { + "period": 3757639, + "thread": 8 + } + }, + { + "amount": "436.543206517", + "slot": { + "period": 3794186, + "thread": 0 + } + } + ], + "AU1skz7qsgiGjj5egmqZ9XjxwQg7Sx4W4ac8iNbLdtZo1xsmzGY": [ + { + "amount": "239.348224980", + "slot": { + "period": 126328, + "thread": 18 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 225000, + "thread": 31 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 468770, + "thread": 0 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 633267, + "thread": 7 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 765609, + "thread": 1 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 850758, + "thread": 13 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1090246, + "thread": 29 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1223227, + "thread": 8 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1450704, + "thread": 14 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1580002, + "thread": 7 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1664664, + "thread": 29 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 1947273, + "thread": 23 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2094109, + "thread": 5 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2263330, + "thread": 0 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2462180, + "thread": 26 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2474162, + "thread": 18 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2661634, + "thread": 22 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 2864297, + "thread": 24 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 3033667, + "thread": 0 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 3202754, + "thread": 10 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 3399109, + "thread": 29 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 3593581, + "thread": 20 + } + }, + { + "amount": "239.348224980", + "slot": { + "period": 3634777, + "thread": 7 + } + }, + { + "amount": "239.348224975", + "slot": { + "period": 3824624, + "thread": 20 + } + } + ], + "AU1smiM5Bc5y5Wn3XJqPNCzWDszbVxSz3arsqFK5XsfAAXktTwZR": [ + { + "amount": "322.953102872", + "slot": { + "period": 138489, + "thread": 20 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 271504, + "thread": 17 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 446032, + "thread": 14 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 517512, + "thread": 17 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 660075, + "thread": 5 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 860876, + "thread": 4 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 990424, + "thread": 12 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 1274036, + "thread": 15 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 1435646, + "thread": 17 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 1540859, + "thread": 21 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 1780233, + "thread": 8 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 1905709, + "thread": 26 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2032480, + "thread": 20 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2151584, + "thread": 21 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2431806, + "thread": 9 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2560856, + "thread": 14 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2783263, + "thread": 12 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 2852008, + "thread": 26 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 3015196, + "thread": 27 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 3123005, + "thread": 3 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 3355463, + "thread": 5 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 3503494, + "thread": 10 + } + }, + { + "amount": "322.953102872", + "slot": { + "period": 3776716, + "thread": 4 + } + }, + { + "amount": "322.953102877", + "slot": { + "period": 3804758, + "thread": 6 + } + } + ], + "AU1snCnZsc9giEVe9vcoqTWu5RWKU6yNny2mk3tZ5hNQryAyLXGC": [ + { + "amount": "79.189346122", + "slot": { + "period": 46604, + "thread": 13 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 321649, + "thread": 14 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 384649, + "thread": 18 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 597052, + "thread": 21 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 801711, + "thread": 21 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 862940, + "thread": 9 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1143147, + "thread": 19 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1177180, + "thread": 16 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1326777, + "thread": 31 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1603235, + "thread": 5 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1720056, + "thread": 16 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 1856799, + "thread": 22 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2090968, + "thread": 13 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2163678, + "thread": 0 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2300712, + "thread": 5 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2557561, + "thread": 16 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2773954, + "thread": 1 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 2835766, + "thread": 20 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 3055200, + "thread": 8 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 3132315, + "thread": 13 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 3367286, + "thread": 31 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 3570198, + "thread": 14 + } + }, + { + "amount": "79.189346122", + "slot": { + "period": 3749251, + "thread": 18 + } + }, + { + "amount": "79.189346129", + "slot": { + "period": 3834529, + "thread": 1 + } + } + ], + "AU1snEozZSmUym9xbbqJrnLN5iTSrbMeEDE7afrpWsLwsuw9rA3V": [ + { + "amount": "106.568107701", + "slot": { + "period": 78152, + "thread": 29 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 178482, + "thread": 13 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 416137, + "thread": 2 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 518845, + "thread": 11 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 814565, + "thread": 23 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 975921, + "thread": 14 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1047474, + "thread": 19 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1186506, + "thread": 3 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1363530, + "thread": 11 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1527659, + "thread": 6 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1685418, + "thread": 22 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 1965154, + "thread": 27 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2026715, + "thread": 29 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2205459, + "thread": 14 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2393973, + "thread": 22 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2614426, + "thread": 11 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2672798, + "thread": 13 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 2920016, + "thread": 29 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 3063083, + "thread": 28 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 3189053, + "thread": 21 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 3373571, + "thread": 14 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 3543915, + "thread": 8 + } + }, + { + "amount": "106.568107701", + "slot": { + "period": 3738504, + "thread": 7 + } + }, + { + "amount": "106.568107711", + "slot": { + "period": 3943462, + "thread": 29 + } + } + ], + "AU1snyvGnrkYmTTHYNkJMR9vBg67e8aJMHZ6u5EgApcGJbQg9LEZ": [ + { + "amount": "155.935803495", + "slot": { + "period": 47743, + "thread": 6 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 171256, + "thread": 2 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 485380, + "thread": 15 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 592009, + "thread": 9 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 705743, + "thread": 31 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 930118, + "thread": 31 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1105761, + "thread": 14 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1253981, + "thread": 4 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1331916, + "thread": 13 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1515455, + "thread": 8 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1673736, + "thread": 10 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 1856910, + "thread": 12 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2141900, + "thread": 22 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2246553, + "thread": 20 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2307069, + "thread": 18 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2622321, + "thread": 27 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2717719, + "thread": 31 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 2837343, + "thread": 23 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3087187, + "thread": 26 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3166825, + "thread": 31 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3387879, + "thread": 1 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3576993, + "thread": 18 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3621541, + "thread": 0 + } + }, + { + "amount": "155.935803495", + "slot": { + "period": 3929631, + "thread": 23 + } + } + ], + "AU1soGdsqPN97jHR6cDfoCMqx3Tu1p2mjdM34hR3yR54KtXuwRyJ": [ + { + "amount": "452.315562523", + "slot": { + "period": 42615, + "thread": 10 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 272588, + "thread": 13 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 410620, + "thread": 5 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 568614, + "thread": 21 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 662319, + "thread": 11 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 843738, + "thread": 13 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1119006, + "thread": 19 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1314397, + "thread": 9 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1423388, + "thread": 4 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1564548, + "thread": 4 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1758735, + "thread": 8 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 1840859, + "thread": 3 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2040943, + "thread": 9 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2212863, + "thread": 30 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2378041, + "thread": 11 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2531350, + "thread": 22 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2723392, + "thread": 31 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 2861400, + "thread": 21 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 3082679, + "thread": 27 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 3121640, + "thread": 3 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 3427011, + "thread": 20 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 3515350, + "thread": 17 + } + }, + { + "amount": "452.315562523", + "slot": { + "period": 3746674, + "thread": 1 + } + }, + { + "amount": "452.315562527", + "slot": { + "period": 3861163, + "thread": 24 + } + } + ], + "AU1sooXBGTWJDkdL8XeLKvcEYwcw6gcPkicWXad8T23zuzvEdqzj": [ + { + "amount": "205.623720723", + "slot": { + "period": 114761, + "thread": 20 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 249796, + "thread": 25 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 382145, + "thread": 29 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 493347, + "thread": 16 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 819976, + "thread": 30 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 887059, + "thread": 28 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1075756, + "thread": 10 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1214193, + "thread": 1 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1396198, + "thread": 9 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1590399, + "thread": 23 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1684974, + "thread": 6 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 1974496, + "thread": 20 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2085792, + "thread": 15 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2236451, + "thread": 2 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2355601, + "thread": 11 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2511458, + "thread": 0 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2723891, + "thread": 29 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 2822228, + "thread": 29 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 3069817, + "thread": 12 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 3260179, + "thread": 24 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 3396134, + "thread": 11 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 3473786, + "thread": 1 + } + }, + { + "amount": "205.623720723", + "slot": { + "period": 3657184, + "thread": 23 + } + }, + { + "amount": "205.623720724", + "slot": { + "period": 3947032, + "thread": 16 + } + } + ], + "AU1spMZbNZ96jEuJ4A1P11DEgimDDkzJLt5GdZhTgPrSYEW5posz": [ + { + "amount": "52.350795117", + "slot": { + "period": 27713, + "thread": 12 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 237241, + "thread": 8 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 411164, + "thread": 27 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 650993, + "thread": 13 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 716059, + "thread": 1 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 871576, + "thread": 29 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1077002, + "thread": 31 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1303560, + "thread": 17 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1365961, + "thread": 22 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1538179, + "thread": 23 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1771190, + "thread": 28 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 1822087, + "thread": 7 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2134466, + "thread": 19 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2214564, + "thread": 27 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2402460, + "thread": 17 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2468352, + "thread": 28 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2697532, + "thread": 8 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2882221, + "thread": 20 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 2980919, + "thread": 31 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 3235019, + "thread": 17 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 3440306, + "thread": 13 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 3472694, + "thread": 0 + } + }, + { + "amount": "52.350795117", + "slot": { + "period": 3668946, + "thread": 21 + } + }, + { + "amount": "52.350795115", + "slot": { + "period": 3869157, + "thread": 9 + } + } + ], + "AU1sqTsvFQkN2ZKPLVRPTUoDaEWSy51k7T9vXxJ4w27z4LRgXPLF": [ + { + "amount": "147.425773384", + "slot": { + "period": 108005, + "thread": 8 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 268096, + "thread": 16 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 429783, + "thread": 17 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 609344, + "thread": 20 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 809519, + "thread": 23 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 887355, + "thread": 15 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1042530, + "thread": 0 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1235780, + "thread": 23 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1351916, + "thread": 7 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1514994, + "thread": 0 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1648185, + "thread": 1 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 1888938, + "thread": 17 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2050158, + "thread": 24 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2212192, + "thread": 14 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2316811, + "thread": 16 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2603879, + "thread": 2 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2661616, + "thread": 28 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2798507, + "thread": 13 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 2974924, + "thread": 30 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 3208089, + "thread": 19 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 3360758, + "thread": 25 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 3499129, + "thread": 12 + } + }, + { + "amount": "147.425773384", + "slot": { + "period": 3642461, + "thread": 27 + } + }, + { + "amount": "147.425773373", + "slot": { + "period": 3808391, + "thread": 1 + } + } + ], + "AU1sqUgK7y6DoeoD1kPvghk7q6pvXi9dBixWGFeXL39XrmqSy7nW": [ + { + "amount": "152.528281765", + "slot": { + "period": 37908, + "thread": 3 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 274471, + "thread": 23 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 362598, + "thread": 31 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 552749, + "thread": 6 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 800345, + "thread": 5 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 921159, + "thread": 23 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1049790, + "thread": 13 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1316992, + "thread": 21 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1422343, + "thread": 14 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1643401, + "thread": 23 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1696301, + "thread": 7 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 1819003, + "thread": 27 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2073728, + "thread": 24 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2189654, + "thread": 5 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2326606, + "thread": 23 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2556005, + "thread": 20 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2686987, + "thread": 16 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 2911867, + "thread": 20 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 3076703, + "thread": 2 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 3208922, + "thread": 24 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 3310901, + "thread": 22 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 3596020, + "thread": 31 + } + }, + { + "amount": "152.528281765", + "slot": { + "period": 3756002, + "thread": 18 + } + }, + { + "amount": "152.528281763", + "slot": { + "period": 3903866, + "thread": 0 + } + } + ], + "AU1sqVDhpp9AiqLmKyrqrDXa6CNUcUTdpxEBSFZDWsFAqXrmxxBr": [ + { + "amount": "127.638540710", + "slot": { + "period": 41839, + "thread": 1 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 278805, + "thread": 28 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 417755, + "thread": 5 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 540948, + "thread": 9 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 787127, + "thread": 28 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 832971, + "thread": 5 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1025969, + "thread": 30 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1172898, + "thread": 15 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1331318, + "thread": 22 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1561723, + "thread": 20 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1776033, + "thread": 21 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 1881500, + "thread": 17 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2052247, + "thread": 27 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2149465, + "thread": 10 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2443255, + "thread": 21 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2531012, + "thread": 29 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2728203, + "thread": 15 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 2941312, + "thread": 10 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 3006460, + "thread": 30 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 3159922, + "thread": 31 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 3342439, + "thread": 0 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 3453673, + "thread": 15 + } + }, + { + "amount": "127.638540710", + "slot": { + "period": 3727055, + "thread": 3 + } + }, + { + "amount": "127.638540705", + "slot": { + "period": 3789175, + "thread": 3 + } + } + ], + "AU1sr8xYDXGFfGu46uJZPM64Gp1Rz48EfqtXpBTzJY7FbTMqzRtF": [ + { + "amount": "126.299446546", + "slot": { + "period": 76602, + "thread": 13 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 308559, + "thread": 25 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 424557, + "thread": 20 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 515239, + "thread": 2 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 684719, + "thread": 30 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 897891, + "thread": 13 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1027200, + "thread": 1 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1277026, + "thread": 21 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1423906, + "thread": 14 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1532340, + "thread": 11 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1765313, + "thread": 15 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1889552, + "thread": 15 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 1999546, + "thread": 22 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2289173, + "thread": 30 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2380851, + "thread": 22 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2601246, + "thread": 13 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2709248, + "thread": 9 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2800246, + "thread": 19 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 2993437, + "thread": 8 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 3143221, + "thread": 4 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 3374647, + "thread": 29 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 3547223, + "thread": 6 + } + }, + { + "amount": "126.299446546", + "slot": { + "period": 3768646, + "thread": 15 + } + }, + { + "amount": "126.299446539", + "slot": { + "period": 3820623, + "thread": 22 + } + } + ], + "AU1ss3SdubV4m44iomfCokVAKqCf9QFpW6tayNZWUVJKeGNj5zP8": [ + { + "amount": "53.840008083", + "slot": { + "period": 16754, + "thread": 25 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 237601, + "thread": 19 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 415298, + "thread": 0 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 594768, + "thread": 0 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 773025, + "thread": 14 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 873561, + "thread": 28 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1115123, + "thread": 17 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1276445, + "thread": 23 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1351796, + "thread": 5 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1603328, + "thread": 17 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1667407, + "thread": 28 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 1975249, + "thread": 14 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2118169, + "thread": 6 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2143825, + "thread": 21 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2435973, + "thread": 7 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2596404, + "thread": 4 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2672835, + "thread": 22 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 2914214, + "thread": 4 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 3004577, + "thread": 23 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 3197795, + "thread": 10 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 3395004, + "thread": 31 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 3578526, + "thread": 0 + } + }, + { + "amount": "53.840008083", + "slot": { + "period": 3661496, + "thread": 29 + } + }, + { + "amount": "53.840008088", + "slot": { + "period": 3921756, + "thread": 8 + } + } + ], + "AU1ss6Wia62JUYoexuvmzfp7i8hZon3DgPV1dx9syfwz7CdeRSWg": [ + { + "amount": "133.748618755", + "slot": { + "period": 132845, + "thread": 17 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 226839, + "thread": 29 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 331160, + "thread": 19 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 553155, + "thread": 1 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 769282, + "thread": 30 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 918168, + "thread": 9 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1078980, + "thread": 25 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1274015, + "thread": 8 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1383312, + "thread": 4 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1498271, + "thread": 13 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1767435, + "thread": 21 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 1918408, + "thread": 1 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2121012, + "thread": 0 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2217017, + "thread": 30 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2385278, + "thread": 19 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2551822, + "thread": 8 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2635319, + "thread": 17 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 2952754, + "thread": 26 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 3089250, + "thread": 14 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 3227157, + "thread": 5 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 3391807, + "thread": 5 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 3551728, + "thread": 30 + } + }, + { + "amount": "133.748618755", + "slot": { + "period": 3736524, + "thread": 26 + } + }, + { + "amount": "133.748618760", + "slot": { + "period": 3926230, + "thread": 22 + } + } + ], + "AU1ssAdWXCS3GRt4z847oj7RWFvixTiTEYdfTaPvB1nrt8o5HYFv": [ + { + "amount": "73.587928553", + "slot": { + "period": 31368, + "thread": 23 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 213847, + "thread": 3 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 403528, + "thread": 12 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 579413, + "thread": 10 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 716921, + "thread": 25 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 967581, + "thread": 28 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1070036, + "thread": 16 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1154247, + "thread": 12 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1430388, + "thread": 25 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1499521, + "thread": 28 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1760226, + "thread": 29 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1820869, + "thread": 24 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 1979592, + "thread": 0 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 2247270, + "thread": 5 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 2404250, + "thread": 23 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 2521051, + "thread": 29 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 2698363, + "thread": 30 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 2797988, + "thread": 22 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 3115449, + "thread": 30 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 3189887, + "thread": 4 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 3345882, + "thread": 15 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 3605919, + "thread": 28 + } + }, + { + "amount": "73.587928553", + "slot": { + "period": 3771366, + "thread": 8 + } + }, + { + "amount": "73.587928550", + "slot": { + "period": 3783561, + "thread": 5 + } + } + ], + "AU1ssnxt8gPKyu5M7Qqr9fwwHrVXnrdiPMueXA4RaFAsJYFuoXvH": [ + { + "amount": "319.336557689", + "slot": { + "period": 108591, + "thread": 7 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 236472, + "thread": 13 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 373787, + "thread": 8 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 625636, + "thread": 16 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 793423, + "thread": 11 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 914062, + "thread": 30 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1080129, + "thread": 18 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1220303, + "thread": 24 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1437767, + "thread": 24 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1513267, + "thread": 1 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1801856, + "thread": 23 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 1954096, + "thread": 1 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2012737, + "thread": 0 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2180722, + "thread": 25 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2456070, + "thread": 0 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2524522, + "thread": 21 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2641178, + "thread": 17 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 2926395, + "thread": 1 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 3043291, + "thread": 22 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 3174512, + "thread": 7 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 3304872, + "thread": 5 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 3494443, + "thread": 28 + } + }, + { + "amount": "319.336557689", + "slot": { + "period": 3694038, + "thread": 22 + } + }, + { + "amount": "319.336557686", + "slot": { + "period": 3861926, + "thread": 14 + } + } + ], + "AU1stNEaiadsn81xy5VPSj727Zd1JugmbZtWa2pnv1fHTDBfPQmF": [ + { + "amount": "170.016516706", + "slot": { + "period": 111224, + "thread": 4 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 174728, + "thread": 6 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 341849, + "thread": 30 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 547830, + "thread": 13 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 812677, + "thread": 13 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 941624, + "thread": 29 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 996112, + "thread": 11 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 1276067, + "thread": 1 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 1427693, + "thread": 0 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 1548627, + "thread": 24 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 1780728, + "thread": 30 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 1838573, + "thread": 6 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2022231, + "thread": 0 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2184760, + "thread": 5 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2452291, + "thread": 5 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2508673, + "thread": 19 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2680012, + "thread": 10 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 2796172, + "thread": 3 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 3041186, + "thread": 6 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 3257816, + "thread": 16 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 3336136, + "thread": 3 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 3541190, + "thread": 22 + } + }, + { + "amount": "170.016516706", + "slot": { + "period": 3646206, + "thread": 2 + } + }, + { + "amount": "170.016516718", + "slot": { + "period": 3871134, + "thread": 1 + } + } + ], + "AU1stYnJ6o9Ergs33aXGNGKTetFHc73VKTEGEXE4UXtjvw4s4Jvi": [ + { + "amount": "212.404140997", + "slot": { + "period": 24595, + "thread": 24 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 199815, + "thread": 14 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 461139, + "thread": 20 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 558113, + "thread": 9 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 771564, + "thread": 22 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 895352, + "thread": 23 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1078204, + "thread": 30 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1275476, + "thread": 9 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1431464, + "thread": 15 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1514887, + "thread": 7 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1711205, + "thread": 29 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 1915821, + "thread": 21 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2029353, + "thread": 28 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2286444, + "thread": 22 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2428913, + "thread": 20 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2550710, + "thread": 31 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2653862, + "thread": 8 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 2811969, + "thread": 30 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 3045619, + "thread": 30 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 3144376, + "thread": 7 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 3382393, + "thread": 29 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 3601384, + "thread": 17 + } + }, + { + "amount": "212.404140997", + "slot": { + "period": 3646702, + "thread": 28 + } + }, + { + "amount": "212.404140999", + "slot": { + "period": 3809937, + "thread": 6 + } + } + ], + "AU1stfQvWc1khSc1BNFEkZW1nunLmy5bjVnRxqsBgV3ETyrwX4Ay": [ + { + "amount": "177.531437746", + "slot": { + "period": 16394, + "thread": 31 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 201748, + "thread": 22 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 395026, + "thread": 31 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 573497, + "thread": 11 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 790628, + "thread": 4 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 830657, + "thread": 11 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1106200, + "thread": 2 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1241873, + "thread": 1 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1434875, + "thread": 0 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1619127, + "thread": 7 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1688504, + "thread": 5 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 1941367, + "thread": 21 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2054743, + "thread": 26 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2224006, + "thread": 14 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2388618, + "thread": 4 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2502051, + "thread": 5 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2758540, + "thread": 0 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2913659, + "thread": 24 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 2996512, + "thread": 4 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 3158942, + "thread": 14 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 3388853, + "thread": 10 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 3471508, + "thread": 14 + } + }, + { + "amount": "177.531437746", + "slot": { + "period": 3713920, + "thread": 3 + } + }, + { + "amount": "177.531437739", + "slot": { + "period": 3929003, + "thread": 15 + } + } + ], + "AU1stmkzHFV9nHkkcDRPGnqHqMAeP7eEeSHLyBDRP86nkyA9iDGr": [ + { + "amount": "573.524723475", + "slot": { + "period": 64770, + "thread": 29 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 215666, + "thread": 26 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 343170, + "thread": 23 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 516818, + "thread": 17 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 757168, + "thread": 17 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 873867, + "thread": 5 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1040525, + "thread": 25 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1295717, + "thread": 17 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1450676, + "thread": 21 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1600212, + "thread": 10 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1780206, + "thread": 3 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 1927409, + "thread": 13 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2128049, + "thread": 3 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2163795, + "thread": 4 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2315422, + "thread": 7 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2485394, + "thread": 31 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2672099, + "thread": 27 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 2941211, + "thread": 17 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 3067902, + "thread": 12 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 3183279, + "thread": 5 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 3316720, + "thread": 6 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 3502223, + "thread": 18 + } + }, + { + "amount": "573.524723475", + "slot": { + "period": 3693535, + "thread": 20 + } + }, + { + "amount": "573.524723468", + "slot": { + "period": 3897549, + "thread": 26 + } + } + ], + "AU1svFhNAoo2Wp4PHickKayF22FuaQU6hiciQdr59i2zvpqC3MWs": [ + { + "amount": "222.524075541", + "slot": { + "period": 62872, + "thread": 31 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 323858, + "thread": 13 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 442999, + "thread": 10 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 604624, + "thread": 31 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 803047, + "thread": 2 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 836081, + "thread": 5 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1081458, + "thread": 9 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1274120, + "thread": 19 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1467231, + "thread": 26 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1534336, + "thread": 23 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1763632, + "thread": 20 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 1928170, + "thread": 0 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2122768, + "thread": 3 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2274135, + "thread": 30 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2379131, + "thread": 18 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2498683, + "thread": 2 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2778087, + "thread": 18 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 2936901, + "thread": 24 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 3101951, + "thread": 31 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 3215083, + "thread": 26 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 3303456, + "thread": 28 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 3589890, + "thread": 14 + } + }, + { + "amount": "222.524075541", + "slot": { + "period": 3726884, + "thread": 29 + } + }, + { + "amount": "222.524075548", + "slot": { + "period": 3881729, + "thread": 23 + } + } + ], + "AU1swheYfoVNL7oxj8WzLiUixhiJzNcprZnN6sq21gZb9Xuoroxk": [ + { + "amount": "94.827023784", + "slot": { + "period": 95609, + "thread": 8 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 299114, + "thread": 7 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 488055, + "thread": 28 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 559841, + "thread": 3 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 710343, + "thread": 6 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 887119, + "thread": 11 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 984639, + "thread": 9 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 1203219, + "thread": 26 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 1412205, + "thread": 14 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 1580526, + "thread": 2 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 1790537, + "thread": 15 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 1861935, + "thread": 25 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2115356, + "thread": 17 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2229354, + "thread": 18 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2441166, + "thread": 25 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2490889, + "thread": 25 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2765236, + "thread": 25 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2891768, + "thread": 9 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 2970829, + "thread": 31 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 3182730, + "thread": 2 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 3340273, + "thread": 29 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 3477890, + "thread": 28 + } + }, + { + "amount": "94.827023784", + "slot": { + "period": 3757662, + "thread": 0 + } + }, + { + "amount": "94.827023792", + "slot": { + "period": 3824381, + "thread": 3 + } + } + ], + "AU1swo8nsw3GBmEQobYmvdLf2Tt8Doh6ECx9GVAeY7EfUudBEXke": [ + { + "amount": "262.589709706", + "slot": { + "period": 38262, + "thread": 23 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 210200, + "thread": 6 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 483662, + "thread": 6 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 618711, + "thread": 14 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 691035, + "thread": 11 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 877839, + "thread": 13 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1117021, + "thread": 12 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1180311, + "thread": 30 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1401178, + "thread": 6 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1489005, + "thread": 15 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1722573, + "thread": 20 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 1955233, + "thread": 6 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2068216, + "thread": 12 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2217094, + "thread": 27 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2357627, + "thread": 18 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2511569, + "thread": 3 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2734609, + "thread": 12 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 2889028, + "thread": 19 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 3020331, + "thread": 25 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 3154306, + "thread": 2 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 3330753, + "thread": 17 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 3582945, + "thread": 28 + } + }, + { + "amount": "262.589709706", + "slot": { + "period": 3743929, + "thread": 6 + } + }, + { + "amount": "262.589709701", + "slot": { + "period": 3886412, + "thread": 10 + } + } + ], + "AU1sx7rKSQDXdHVpWCWSMw8TEHsS41HpuGHLtJM3byKvJSwSGKoD": [ + { + "amount": "352.957299793", + "slot": { + "period": 157063, + "thread": 27 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 245636, + "thread": 1 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 460750, + "thread": 21 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 637647, + "thread": 29 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 747842, + "thread": 30 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 939759, + "thread": 28 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1068310, + "thread": 20 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1189304, + "thread": 19 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1351324, + "thread": 17 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1503949, + "thread": 21 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1658701, + "thread": 29 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 1842775, + "thread": 16 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2133973, + "thread": 12 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2243200, + "thread": 23 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2295721, + "thread": 17 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2544739, + "thread": 29 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2689856, + "thread": 3 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 2856944, + "thread": 16 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 3044458, + "thread": 22 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 3181142, + "thread": 23 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 3396389, + "thread": 17 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 3609660, + "thread": 8 + } + }, + { + "amount": "352.957299793", + "slot": { + "period": 3757218, + "thread": 6 + } + }, + { + "amount": "352.957299782", + "slot": { + "period": 3885892, + "thread": 24 + } + } + ], + "AU1sxJHA1mKmmC5qnkMgpvaBzSvUXfCwgBfADE5GPnxuVHCFJkCC": [ + { + "amount": "139.860276829", + "slot": { + "period": 92729, + "thread": 12 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 301981, + "thread": 11 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 399003, + "thread": 23 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 599939, + "thread": 1 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 806859, + "thread": 10 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 829236, + "thread": 22 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1069618, + "thread": 4 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1259911, + "thread": 25 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1459883, + "thread": 7 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1516450, + "thread": 16 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1760421, + "thread": 22 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 1963416, + "thread": 13 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2044850, + "thread": 31 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2288671, + "thread": 6 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2393302, + "thread": 29 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2495293, + "thread": 31 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2677829, + "thread": 31 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2801670, + "thread": 10 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 2980949, + "thread": 2 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 3136245, + "thread": 14 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 3327755, + "thread": 11 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 3563199, + "thread": 2 + } + }, + { + "amount": "139.860276829", + "slot": { + "period": 3747390, + "thread": 19 + } + }, + { + "amount": "139.860276822", + "slot": { + "period": 3942141, + "thread": 22 + } + } + ], + "AU1sxe1gpRRXmQHAVGNtvpebHemfAKXtsmykZQHkSyJWSDfXUaKb": [ + { + "amount": "543.447021804", + "slot": { + "period": 70256, + "thread": 3 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 175424, + "thread": 4 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 420918, + "thread": 26 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 578943, + "thread": 15 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 703994, + "thread": 20 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 904029, + "thread": 10 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1065703, + "thread": 11 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1248636, + "thread": 10 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1366407, + "thread": 11 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1526124, + "thread": 30 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1688449, + "thread": 17 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 1879339, + "thread": 25 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2111717, + "thread": 13 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2239666, + "thread": 31 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2359951, + "thread": 24 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2599562, + "thread": 13 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2765104, + "thread": 23 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 2878128, + "thread": 31 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 3109043, + "thread": 23 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 3254397, + "thread": 8 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 3295523, + "thread": 21 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 3450738, + "thread": 29 + } + }, + { + "amount": "543.447021804", + "slot": { + "period": 3730575, + "thread": 15 + } + }, + { + "amount": "543.447021805", + "slot": { + "period": 3938571, + "thread": 27 + } + } + ], + "AU1sxsY5iimpD9b8jqApchbsdAiZiEibW36etKLpVuyGbfx6EFPx": [ + { + "amount": "245.172498913", + "slot": { + "period": 76461, + "thread": 3 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 210661, + "thread": 13 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 448337, + "thread": 7 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 615201, + "thread": 12 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 710272, + "thread": 28 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 920605, + "thread": 19 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1104861, + "thread": 16 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1215601, + "thread": 5 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1471062, + "thread": 16 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1497579, + "thread": 3 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1777864, + "thread": 9 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 1889019, + "thread": 0 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2106311, + "thread": 28 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2172177, + "thread": 31 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2403427, + "thread": 22 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2597179, + "thread": 8 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2626925, + "thread": 19 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 2836556, + "thread": 9 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 3115207, + "thread": 29 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 3265824, + "thread": 11 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 3314759, + "thread": 8 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 3580763, + "thread": 0 + } + }, + { + "amount": "245.172498913", + "slot": { + "period": 3652632, + "thread": 5 + } + }, + { + "amount": "245.172498915", + "slot": { + "period": 3794409, + "thread": 17 + } + } + ], + "AU1sy2mcdki9miBQFbHProuAofKNdtEXYsD4Tx9dwHNRY47FahBN": [ + { + "amount": "172.182703851", + "slot": { + "period": 123005, + "thread": 28 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 242518, + "thread": 23 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 370367, + "thread": 13 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 557527, + "thread": 20 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 679183, + "thread": 2 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 879955, + "thread": 15 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1022586, + "thread": 2 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1292208, + "thread": 11 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1427512, + "thread": 19 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1631865, + "thread": 13 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1771911, + "thread": 13 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 1939342, + "thread": 15 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2054506, + "thread": 6 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2260631, + "thread": 20 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2308068, + "thread": 6 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2595907, + "thread": 22 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2735719, + "thread": 3 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 2890529, + "thread": 27 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 3075623, + "thread": 26 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 3191472, + "thread": 23 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 3345848, + "thread": 5 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 3578800, + "thread": 26 + } + }, + { + "amount": "172.182703851", + "slot": { + "period": 3665191, + "thread": 12 + } + }, + { + "amount": "172.182703858", + "slot": { + "period": 3906002, + "thread": 27 + } + } + ], + "AU1syKhofXFjPS74hLjmbwyfNVn5mY6Zc1KNy453fByqzbSMvdva": [ + { + "amount": "202.639685308", + "slot": { + "period": 90300, + "thread": 27 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 250881, + "thread": 27 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 420635, + "thread": 23 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 575215, + "thread": 24 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 719541, + "thread": 16 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 952800, + "thread": 13 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1128934, + "thread": 23 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1202146, + "thread": 21 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1477715, + "thread": 4 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1582835, + "thread": 23 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1684296, + "thread": 16 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 1849746, + "thread": 22 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2108280, + "thread": 5 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2185737, + "thread": 13 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2419230, + "thread": 31 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2614644, + "thread": 24 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2678031, + "thread": 12 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 2868456, + "thread": 19 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 3064766, + "thread": 13 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 3219782, + "thread": 30 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 3293527, + "thread": 11 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 3600079, + "thread": 10 + } + }, + { + "amount": "202.639685308", + "slot": { + "period": 3729478, + "thread": 2 + } + }, + { + "amount": "202.639685304", + "slot": { + "period": 3898052, + "thread": 2 + } + } + ], + "AU1syg5NakB8FwRaW98oEsTB1TYtN4b2yAqCJ4ToEdV7SFVKGCsp": [ + { + "amount": "109.205745630", + "slot": { + "period": 162869, + "thread": 14 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 246606, + "thread": 27 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 352110, + "thread": 31 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 651385, + "thread": 19 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 798553, + "thread": 8 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 906832, + "thread": 21 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1047803, + "thread": 8 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1248607, + "thread": 27 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1413481, + "thread": 25 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1577958, + "thread": 30 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1807669, + "thread": 14 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1846090, + "thread": 24 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 1988553, + "thread": 13 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2225148, + "thread": 19 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2364708, + "thread": 31 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2619208, + "thread": 20 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2671370, + "thread": 22 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2851567, + "thread": 22 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 2957034, + "thread": 9 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 3190133, + "thread": 21 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 3370726, + "thread": 17 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 3489660, + "thread": 2 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 3667537, + "thread": 14 + } + }, + { + "amount": "109.205745630", + "slot": { + "period": 3924621, + "thread": 2 + } + } + ], + "AU1szPMqwaHc1Zqp4mmR1EJ6VkRpSBxCkui7Q1W9AzwnPPsQFjEh": [ + { + "amount": "245.157079948", + "slot": { + "period": 113767, + "thread": 8 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 320034, + "thread": 29 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 339209, + "thread": 22 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 544893, + "thread": 18 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 717997, + "thread": 5 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 952114, + "thread": 9 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1121338, + "thread": 31 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1222242, + "thread": 13 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1360134, + "thread": 9 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1526752, + "thread": 22 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1763716, + "thread": 14 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 1918186, + "thread": 7 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2083083, + "thread": 10 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2202511, + "thread": 21 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2394935, + "thread": 2 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2568688, + "thread": 1 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2635465, + "thread": 28 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 2875387, + "thread": 16 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 3003304, + "thread": 19 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 3169937, + "thread": 19 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 3325385, + "thread": 30 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 3513413, + "thread": 23 + } + }, + { + "amount": "245.157079948", + "slot": { + "period": 3730164, + "thread": 18 + } + }, + { + "amount": "245.157079937", + "slot": { + "period": 3906176, + "thread": 28 + } + } + ], + "AU1t1FhNK9WtHe6UysKw3oNVTpdSy4m8KhpRKnX1DSQdgHkVcVFy": [ + { + "amount": "326.580327124", + "slot": { + "period": 149174, + "thread": 12 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 182805, + "thread": 9 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 418691, + "thread": 3 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 601484, + "thread": 10 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 658063, + "thread": 9 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 922747, + "thread": 26 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1050501, + "thread": 7 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1299106, + "thread": 5 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1377550, + "thread": 29 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1590685, + "thread": 8 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1752044, + "thread": 23 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 1884269, + "thread": 21 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2124622, + "thread": 1 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2223572, + "thread": 8 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2372408, + "thread": 21 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2599859, + "thread": 29 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2685389, + "thread": 8 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 2828618, + "thread": 9 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 3004412, + "thread": 27 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 3207145, + "thread": 2 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 3300339, + "thread": 12 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 3572217, + "thread": 18 + } + }, + { + "amount": "326.580327124", + "slot": { + "period": 3704262, + "thread": 20 + } + }, + { + "amount": "326.580327125", + "slot": { + "period": 3932038, + "thread": 18 + } + } + ], + "AU1t1xmTDkb93tEZaPQRERiJxJiLTqpSdMfBw7QyxcVn3EfzJUd4": [ + { + "amount": "258.241354615", + "slot": { + "period": 57642, + "thread": 10 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 270749, + "thread": 14 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 478353, + "thread": 31 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 589251, + "thread": 18 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 684421, + "thread": 16 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 897265, + "thread": 20 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1104641, + "thread": 8 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1180810, + "thread": 27 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1418485, + "thread": 19 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1585468, + "thread": 29 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1729879, + "thread": 16 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 1881722, + "thread": 31 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2042998, + "thread": 10 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2218264, + "thread": 20 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2455289, + "thread": 10 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2544091, + "thread": 20 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2775512, + "thread": 1 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 2852639, + "thread": 17 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 3049087, + "thread": 0 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 3188262, + "thread": 2 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 3341929, + "thread": 5 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 3549970, + "thread": 29 + } + }, + { + "amount": "258.241354615", + "slot": { + "period": 3684966, + "thread": 0 + } + }, + { + "amount": "258.241354605", + "slot": { + "period": 3815690, + "thread": 20 + } + } + ], + "AU1t2mPTd6NEZZn5h8eH7WcNiaTkoKqWkwiTyFzqsFCVUxbe4t9y": [ + { + "amount": "81.778347398", + "slot": { + "period": 123834, + "thread": 21 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 242882, + "thread": 6 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 415113, + "thread": 27 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 643272, + "thread": 17 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 686366, + "thread": 19 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 926244, + "thread": 12 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1073270, + "thread": 6 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1226842, + "thread": 23 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1476134, + "thread": 26 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1520266, + "thread": 4 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1697239, + "thread": 30 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 1817161, + "thread": 1 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2127315, + "thread": 12 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2184742, + "thread": 10 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2363201, + "thread": 5 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2561205, + "thread": 0 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2763105, + "thread": 2 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 2899417, + "thread": 5 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 3098650, + "thread": 21 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 3263699, + "thread": 1 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 3428441, + "thread": 0 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 3457660, + "thread": 18 + } + }, + { + "amount": "81.778347398", + "slot": { + "period": 3715651, + "thread": 5 + } + }, + { + "amount": "81.778347407", + "slot": { + "period": 3809397, + "thread": 26 + } + } + ], + "AU1t3LzwMDryKqK2RmfxcYmz1xQqw4qvAide6pjNQWrh6iHQqc6C": [ + { + "amount": "80.354807433", + "slot": { + "period": 25721, + "thread": 23 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 208523, + "thread": 1 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 422314, + "thread": 27 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 512717, + "thread": 18 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 662805, + "thread": 12 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 864868, + "thread": 1 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1002383, + "thread": 12 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1197646, + "thread": 2 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1354577, + "thread": 17 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1629127, + "thread": 18 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1767966, + "thread": 8 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 1854020, + "thread": 30 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2041843, + "thread": 8 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2229369, + "thread": 15 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2446130, + "thread": 25 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2481473, + "thread": 13 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2633277, + "thread": 14 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 2819098, + "thread": 10 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 3117821, + "thread": 18 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 3243243, + "thread": 1 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 3371254, + "thread": 2 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 3530948, + "thread": 6 + } + }, + { + "amount": "80.354807433", + "slot": { + "period": 3754599, + "thread": 3 + } + }, + { + "amount": "80.354807438", + "slot": { + "period": 3805049, + "thread": 6 + } + } + ], + "AU1t3k9cRLi5yNPkmGMdFtrur6VsYC1FSzX8kkhWh6oHgdHCkYmM": [ + { + "amount": "154.780653323", + "slot": { + "period": 156894, + "thread": 2 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 200292, + "thread": 4 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 486929, + "thread": 21 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 530787, + "thread": 28 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 659522, + "thread": 31 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 837767, + "thread": 13 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1146334, + "thread": 18 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1231676, + "thread": 9 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1418730, + "thread": 16 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1570665, + "thread": 17 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1737897, + "thread": 0 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 1829397, + "thread": 4 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2096291, + "thread": 30 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2275416, + "thread": 1 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2336410, + "thread": 12 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2574254, + "thread": 16 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2715114, + "thread": 0 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 2929355, + "thread": 0 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 3079149, + "thread": 28 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 3232039, + "thread": 0 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 3315628, + "thread": 21 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 3545663, + "thread": 30 + } + }, + { + "amount": "154.780653323", + "slot": { + "period": 3641786, + "thread": 17 + } + }, + { + "amount": "154.780653327", + "slot": { + "period": 3813458, + "thread": 5 + } + } + ], + "AU1t44kvj7cjdV7BDhTeJQkVYPDksqxogkrMfT8wepu4ioGBg2Kj": [ + { + "amount": "239.690306974", + "slot": { + "period": 139452, + "thread": 12 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 184230, + "thread": 30 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 356868, + "thread": 27 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 509300, + "thread": 8 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 820510, + "thread": 19 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 982664, + "thread": 29 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1108722, + "thread": 18 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1304575, + "thread": 31 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1417943, + "thread": 11 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1585264, + "thread": 0 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1734327, + "thread": 20 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1851188, + "thread": 17 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 1998200, + "thread": 18 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 2178752, + "thread": 20 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 2343138, + "thread": 1 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 2589505, + "thread": 23 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 2690695, + "thread": 22 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 2900681, + "thread": 31 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 3099990, + "thread": 28 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 3203294, + "thread": 12 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 3445468, + "thread": 19 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 3604252, + "thread": 21 + } + }, + { + "amount": "239.690306974", + "slot": { + "period": 3670002, + "thread": 7 + } + }, + { + "amount": "239.690306968", + "slot": { + "period": 3789600, + "thread": 27 + } + } + ], + "AU1t51rnJvy2fkd9sbbDoFWuG8myuG21WitPdY7zyrjFvhkG24sw": [ + { + "amount": "175.143348857", + "slot": { + "period": 40878, + "thread": 16 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 318977, + "thread": 16 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 476001, + "thread": 17 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 628030, + "thread": 8 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 659490, + "thread": 23 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 879833, + "thread": 5 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 996827, + "thread": 10 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 1285070, + "thread": 28 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 1421776, + "thread": 6 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 1621553, + "thread": 5 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 1679772, + "thread": 4 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 1968992, + "thread": 0 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2096590, + "thread": 14 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2164483, + "thread": 10 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2364489, + "thread": 21 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2554623, + "thread": 22 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2734963, + "thread": 6 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 2879081, + "thread": 3 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 3009175, + "thread": 24 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 3245991, + "thread": 24 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 3310798, + "thread": 13 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 3505293, + "thread": 16 + } + }, + { + "amount": "175.143348857", + "slot": { + "period": 3625114, + "thread": 15 + } + }, + { + "amount": "175.143348850", + "slot": { + "period": 3828441, + "thread": 20 + } + } + ], + "AU1t51vSzTU9RtnWpdABj8tFMbssW2B75drjGXCCvtu1DWeHu1CR": [ + { + "amount": "218.163532915", + "slot": { + "period": 50100, + "thread": 29 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 298848, + "thread": 12 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 421046, + "thread": 20 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 620757, + "thread": 15 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 673842, + "thread": 1 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 967978, + "thread": 6 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1013504, + "thread": 27 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1245803, + "thread": 15 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1319158, + "thread": 28 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1540878, + "thread": 21 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1712696, + "thread": 4 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 1938205, + "thread": 12 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2135567, + "thread": 30 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2212640, + "thread": 25 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2420592, + "thread": 26 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2618506, + "thread": 9 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2667147, + "thread": 18 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 2897298, + "thread": 25 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 3023159, + "thread": 23 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 3239766, + "thread": 4 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 3336146, + "thread": 22 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 3604363, + "thread": 0 + } + }, + { + "amount": "218.163532915", + "slot": { + "period": 3697700, + "thread": 24 + } + }, + { + "amount": "218.163532926", + "slot": { + "period": 3912974, + "thread": 8 + } + } + ], + "AU1t5AUdpTd85abFAuQXUmajQQxHPpJnQFQMp55zZN9eTURzWDba": [ + { + "amount": "120.108509597", + "slot": { + "period": 66137, + "thread": 14 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 233239, + "thread": 9 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 463836, + "thread": 16 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 592929, + "thread": 26 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 716127, + "thread": 10 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 880799, + "thread": 7 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1145894, + "thread": 24 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1192121, + "thread": 28 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1369946, + "thread": 19 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1543358, + "thread": 14 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1771474, + "thread": 2 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 1824526, + "thread": 4 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2003626, + "thread": 17 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2252068, + "thread": 6 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2444345, + "thread": 6 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2577983, + "thread": 0 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2758106, + "thread": 2 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2854546, + "thread": 20 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 2964171, + "thread": 7 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 3225131, + "thread": 18 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 3419026, + "thread": 25 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 3476998, + "thread": 20 + } + }, + { + "amount": "120.108509597", + "slot": { + "period": 3700501, + "thread": 12 + } + }, + { + "amount": "120.108509588", + "slot": { + "period": 3808668, + "thread": 5 + } + } + ], + "AU1t5GFnJ6druHWhNNrrjJFafTDALS4y3fMgbzP1ZeKtTi1Yz3wU": [ + { + "amount": "174.364319863", + "slot": { + "period": 19966, + "thread": 5 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 303836, + "thread": 9 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 438131, + "thread": 5 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 519924, + "thread": 4 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 799298, + "thread": 25 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 948400, + "thread": 26 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1071823, + "thread": 0 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1252513, + "thread": 15 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1449672, + "thread": 30 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1565400, + "thread": 12 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1705465, + "thread": 16 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 1813771, + "thread": 18 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2038308, + "thread": 18 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2284134, + "thread": 8 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2301090, + "thread": 12 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2593318, + "thread": 26 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2630803, + "thread": 25 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 2804961, + "thread": 11 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 3006072, + "thread": 25 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 3166597, + "thread": 2 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 3433963, + "thread": 25 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 3472742, + "thread": 4 + } + }, + { + "amount": "174.364319863", + "slot": { + "period": 3630213, + "thread": 11 + } + }, + { + "amount": "174.364319862", + "slot": { + "period": 3923113, + "thread": 15 + } + } + ], + "AU1t8Ufud8AiDVfj4obxr7wAtbJDDnMiX3Ju2mEpiqB8urE68YYN": [ + { + "amount": "181.363878768", + "slot": { + "period": 41493, + "thread": 29 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 276850, + "thread": 17 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 443116, + "thread": 18 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 615256, + "thread": 9 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 778370, + "thread": 12 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 961728, + "thread": 21 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 989342, + "thread": 9 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 1287113, + "thread": 22 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 1441610, + "thread": 10 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 1622213, + "thread": 26 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 1678082, + "thread": 6 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 1836831, + "thread": 4 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2136017, + "thread": 8 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2156898, + "thread": 18 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2307109, + "thread": 9 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2620060, + "thread": 29 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2738239, + "thread": 2 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 2915818, + "thread": 24 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 3066245, + "thread": 23 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 3138934, + "thread": 14 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 3430291, + "thread": 16 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 3595503, + "thread": 29 + } + }, + { + "amount": "181.363878768", + "slot": { + "period": 3765519, + "thread": 23 + } + }, + { + "amount": "181.363878764", + "slot": { + "period": 3863498, + "thread": 29 + } + } + ], + "AU1t9p6Qx6DrDcv7hhLyriTftKFZs51z4ZAXVzB1X3dYr38fkEbP": [ + { + "amount": "172.055520875", + "slot": { + "period": 91571, + "thread": 24 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 192653, + "thread": 8 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 400047, + "thread": 20 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 590697, + "thread": 20 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 680817, + "thread": 19 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 959183, + "thread": 23 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 988105, + "thread": 18 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1155168, + "thread": 18 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1403924, + "thread": 18 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1598955, + "thread": 4 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1702059, + "thread": 31 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1916003, + "thread": 10 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 1995125, + "thread": 13 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 2262996, + "thread": 18 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 2435469, + "thread": 19 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 2545031, + "thread": 1 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 2758085, + "thread": 11 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 2859325, + "thread": 26 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 3009151, + "thread": 21 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 3284963, + "thread": 0 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 3360303, + "thread": 15 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 3463557, + "thread": 11 + } + }, + { + "amount": "172.055520875", + "slot": { + "period": 3743584, + "thread": 7 + } + }, + { + "amount": "172.055520883", + "slot": { + "period": 3894921, + "thread": 17 + } + } + ], + "AU1t9uz1aQcrz8sN1x9RsKhGCfZeN3bmcxvw6sST91jTC1yW1rDR": [ + { + "amount": "78.225891170", + "slot": { + "period": 131535, + "thread": 5 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 234401, + "thread": 24 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 355577, + "thread": 12 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 641828, + "thread": 15 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 712390, + "thread": 3 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 878558, + "thread": 13 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1086729, + "thread": 4 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1183589, + "thread": 0 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1386776, + "thread": 5 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1562976, + "thread": 3 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1707780, + "thread": 18 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 1941840, + "thread": 17 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2078707, + "thread": 11 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2167903, + "thread": 11 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2404653, + "thread": 22 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2570640, + "thread": 10 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2783887, + "thread": 11 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 2860273, + "thread": 15 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 3090575, + "thread": 2 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 3246604, + "thread": 7 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 3377680, + "thread": 31 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 3612129, + "thread": 3 + } + }, + { + "amount": "78.225891170", + "slot": { + "period": 3665985, + "thread": 18 + } + }, + { + "amount": "78.225891171", + "slot": { + "period": 3941097, + "thread": 20 + } + } + ], + "AU1tCUh1K7XHAp9AZ5EiQwA8fF3tzTrxkkUuZcQ7itNgEud8xMWR": [ + { + "amount": "129.202174784", + "slot": { + "period": 133491, + "thread": 0 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 255943, + "thread": 30 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 379235, + "thread": 25 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 524395, + "thread": 25 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 802237, + "thread": 0 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 912715, + "thread": 6 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 983371, + "thread": 6 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 1314717, + "thread": 4 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 1331523, + "thread": 13 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 1564794, + "thread": 6 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 1795662, + "thread": 11 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 1902827, + "thread": 16 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2079089, + "thread": 14 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2164040, + "thread": 13 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2370850, + "thread": 19 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2507154, + "thread": 21 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2726091, + "thread": 15 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 2932624, + "thread": 11 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 3089366, + "thread": 28 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 3150329, + "thread": 19 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 3415257, + "thread": 22 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 3552441, + "thread": 14 + } + }, + { + "amount": "129.202174784", + "slot": { + "period": 3762225, + "thread": 3 + } + }, + { + "amount": "129.202174794", + "slot": { + "period": 3903951, + "thread": 22 + } + } + ], + "AU1tDhGn322qs2kq7XC5zh1rJMqA3cBjUELuVKRAiiipi9PX6gee": [ + { + "amount": "250.734977503", + "slot": { + "period": 72511, + "thread": 30 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 242539, + "thread": 0 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 434718, + "thread": 26 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 554195, + "thread": 7 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 761125, + "thread": 7 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 971796, + "thread": 26 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1079136, + "thread": 17 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1234988, + "thread": 21 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1424481, + "thread": 29 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1616553, + "thread": 26 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1675387, + "thread": 31 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 1835411, + "thread": 0 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2045561, + "thread": 30 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2156262, + "thread": 7 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2366873, + "thread": 12 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2524957, + "thread": 16 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2645377, + "thread": 20 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2844871, + "thread": 5 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 2974588, + "thread": 16 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 3128732, + "thread": 26 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 3315493, + "thread": 14 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 3521713, + "thread": 2 + } + }, + { + "amount": "250.734977503", + "slot": { + "period": 3764408, + "thread": 23 + } + }, + { + "amount": "250.734977514", + "slot": { + "period": 3905417, + "thread": 20 + } + } + ], + "AU1tERZtaQYW6ur7mtjPmwr5Kgn5xsqqN1hcV279xqTk2kiEC279": [ + { + "amount": "262.055221078", + "slot": { + "period": 147466, + "thread": 12 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 237953, + "thread": 6 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 433783, + "thread": 22 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 622229, + "thread": 2 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 715205, + "thread": 27 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 905551, + "thread": 14 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1063024, + "thread": 5 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1257975, + "thread": 7 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1328907, + "thread": 10 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1516058, + "thread": 20 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1676234, + "thread": 1 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 1809262, + "thread": 21 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2140225, + "thread": 29 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2228118, + "thread": 30 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2348900, + "thread": 2 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2574815, + "thread": 24 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2691403, + "thread": 23 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 2878141, + "thread": 27 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 3030953, + "thread": 22 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 3232612, + "thread": 28 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 3355207, + "thread": 25 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 3617951, + "thread": 14 + } + }, + { + "amount": "262.055221078", + "slot": { + "period": 3624598, + "thread": 21 + } + }, + { + "amount": "262.055221090", + "slot": { + "period": 3857364, + "thread": 12 + } + } + ], + "AU1tEfpQ1YgrnpWcbN5TXuzd4PaZKgN1HbxpB44uzys5LygiGvJC": [ + { + "amount": "171.325385124", + "slot": { + "period": 123991, + "thread": 20 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 263637, + "thread": 23 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 389846, + "thread": 17 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 633010, + "thread": 31 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 779730, + "thread": 29 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 885823, + "thread": 21 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1078931, + "thread": 31 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1240225, + "thread": 6 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1463272, + "thread": 8 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1572311, + "thread": 21 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1759546, + "thread": 21 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 1871531, + "thread": 21 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2116745, + "thread": 10 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2265995, + "thread": 26 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2378889, + "thread": 16 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2549334, + "thread": 27 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2754357, + "thread": 10 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2799676, + "thread": 7 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 2973492, + "thread": 11 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 3152224, + "thread": 23 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 3337331, + "thread": 24 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 3528494, + "thread": 26 + } + }, + { + "amount": "171.325385124", + "slot": { + "period": 3700525, + "thread": 15 + } + }, + { + "amount": "171.325385127", + "slot": { + "period": 3815665, + "thread": 14 + } + } + ], + "AU1tFC8hFoZ5pqDN4evkeHoxtMGJzLTWce1NEbdF2895Q66T35GR": [ + { + "amount": "476.291792804", + "slot": { + "period": 108787, + "thread": 3 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 304032, + "thread": 4 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 352554, + "thread": 15 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 648998, + "thread": 19 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 744464, + "thread": 16 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 981734, + "thread": 0 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1106322, + "thread": 1 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1155233, + "thread": 4 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1470508, + "thread": 31 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1594666, + "thread": 31 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1657218, + "thread": 19 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 1870169, + "thread": 22 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2087771, + "thread": 16 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2243731, + "thread": 2 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2446479, + "thread": 0 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2476452, + "thread": 31 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2703899, + "thread": 20 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 2877932, + "thread": 24 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 3118751, + "thread": 25 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 3122600, + "thread": 26 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 3338953, + "thread": 19 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 3531406, + "thread": 17 + } + }, + { + "amount": "476.291792804", + "slot": { + "period": 3621768, + "thread": 5 + } + }, + { + "amount": "476.291792807", + "slot": { + "period": 3889606, + "thread": 2 + } + } + ], + "AU1tFgAYZsQaTBk8nMDfGbi2Zwtdnpjcr9Vb3JzuppQmK2EMy3LP": [ + { + "amount": "170.465798423", + "slot": { + "period": 138047, + "thread": 25 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 274648, + "thread": 20 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 372061, + "thread": 15 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 587331, + "thread": 2 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 677226, + "thread": 16 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 955458, + "thread": 25 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1040602, + "thread": 24 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1166435, + "thread": 0 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1456722, + "thread": 11 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1590444, + "thread": 23 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1690497, + "thread": 6 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 1841619, + "thread": 7 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2026048, + "thread": 0 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2274986, + "thread": 17 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2350952, + "thread": 17 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2542433, + "thread": 2 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2735105, + "thread": 30 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 2831399, + "thread": 9 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 3023740, + "thread": 27 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 3281310, + "thread": 4 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 3334790, + "thread": 23 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 3513545, + "thread": 31 + } + }, + { + "amount": "170.465798423", + "slot": { + "period": 3624446, + "thread": 22 + } + }, + { + "amount": "170.465798430", + "slot": { + "period": 3797042, + "thread": 6 + } + } + ], + "AU1tFxagUWnu3robNBy788YuLb1VtHdg9hxjQvLeSNrakGJMQXfE": [ + { + "amount": "142.062863011", + "slot": { + "period": 131279, + "thread": 9 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 281124, + "thread": 13 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 347452, + "thread": 10 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 497581, + "thread": 16 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 723292, + "thread": 21 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 950936, + "thread": 20 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1044762, + "thread": 16 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1198275, + "thread": 10 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1405483, + "thread": 4 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1645443, + "thread": 31 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1691081, + "thread": 4 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 1822175, + "thread": 23 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2118177, + "thread": 13 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2241683, + "thread": 11 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2447577, + "thread": 11 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2467113, + "thread": 2 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2751161, + "thread": 12 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 2942091, + "thread": 28 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 3104086, + "thread": 26 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 3172037, + "thread": 7 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 3320218, + "thread": 4 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 3617933, + "thread": 2 + } + }, + { + "amount": "142.062863011", + "slot": { + "period": 3693196, + "thread": 15 + } + }, + { + "amount": "142.062863013", + "slot": { + "period": 3790857, + "thread": 2 + } + } + ], + "AU1tGBidLDtY7fLUtfc7C24mKZaoEyZL6xaN8HTvzYDnCyNU5hH": [ + { + "amount": "58.160393116", + "slot": { + "period": 108517, + "thread": 13 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 217506, + "thread": 23 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 380844, + "thread": 4 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 615082, + "thread": 29 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 683130, + "thread": 22 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 955888, + "thread": 13 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1127887, + "thread": 12 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1215672, + "thread": 30 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1360285, + "thread": 19 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1484151, + "thread": 4 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1714873, + "thread": 31 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 1823239, + "thread": 12 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2036463, + "thread": 25 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2222081, + "thread": 24 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2382601, + "thread": 16 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2596757, + "thread": 17 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2631839, + "thread": 23 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2944620, + "thread": 9 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 2957802, + "thread": 16 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 3131560, + "thread": 17 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 3427938, + "thread": 7 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 3462272, + "thread": 30 + } + }, + { + "amount": "58.160393116", + "slot": { + "period": 3674392, + "thread": 10 + } + }, + { + "amount": "58.160393106", + "slot": { + "period": 3852903, + "thread": 15 + } + } + ], + "AU1tGFkXaSNtxGCUpdMKTgRNUVS42uMrz78h9BKBZ8HtmJ7Urcfn": [ + { + "amount": "392.890386319", + "slot": { + "period": 136608, + "thread": 31 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 322503, + "thread": 9 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 473523, + "thread": 30 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 517066, + "thread": 4 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 684525, + "thread": 18 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 848822, + "thread": 1 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1031009, + "thread": 24 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1234073, + "thread": 13 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1423619, + "thread": 12 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1522928, + "thread": 3 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1648624, + "thread": 29 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 1906791, + "thread": 7 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2035055, + "thread": 15 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2255370, + "thread": 23 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2450350, + "thread": 18 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2462952, + "thread": 2 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2639259, + "thread": 23 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 2898477, + "thread": 6 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 3035622, + "thread": 29 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 3178343, + "thread": 12 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 3384522, + "thread": 28 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 3561822, + "thread": 22 + } + }, + { + "amount": "392.890386319", + "slot": { + "period": 3748279, + "thread": 17 + } + }, + { + "amount": "392.890386313", + "slot": { + "period": 3897736, + "thread": 24 + } + } + ], + "AU1tGRSZKoAUovfJKYwHoUB3Qvw82SbKrVpMHNpbBgKBHU8kARr3": [ + { + "amount": "630.590852572", + "slot": { + "period": 73104, + "thread": 29 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 314914, + "thread": 26 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 428615, + "thread": 20 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 516335, + "thread": 3 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 817552, + "thread": 5 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 876512, + "thread": 6 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1050397, + "thread": 16 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1185743, + "thread": 10 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1324341, + "thread": 23 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1616596, + "thread": 10 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1804683, + "thread": 22 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 1865060, + "thread": 23 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2127664, + "thread": 31 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2156164, + "thread": 17 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2455232, + "thread": 21 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2570109, + "thread": 21 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2701822, + "thread": 10 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2866043, + "thread": 19 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 2978410, + "thread": 20 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 3233595, + "thread": 11 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 3442099, + "thread": 30 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 3553383, + "thread": 8 + } + }, + { + "amount": "630.590852572", + "slot": { + "period": 3751920, + "thread": 14 + } + }, + { + "amount": "630.590852569", + "slot": { + "period": 3909406, + "thread": 10 + } + } + ], + "AU1tGgACgVfrAHJsE2ob5XgVCYfB626opyq3kf5PK5VhQCpGg7wC": [ + { + "amount": "338.237837750", + "slot": { + "period": 80262, + "thread": 28 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 265335, + "thread": 22 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 410681, + "thread": 9 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 640152, + "thread": 14 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 683059, + "thread": 20 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 880162, + "thread": 6 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1130744, + "thread": 16 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1288758, + "thread": 19 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1397468, + "thread": 7 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1534920, + "thread": 23 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1758856, + "thread": 19 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 1931955, + "thread": 29 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2010669, + "thread": 16 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2168311, + "thread": 8 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2351126, + "thread": 15 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2524814, + "thread": 5 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2701570, + "thread": 18 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2846554, + "thread": 16 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 2984603, + "thread": 26 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 3123638, + "thread": 8 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 3296171, + "thread": 21 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 3476452, + "thread": 1 + } + }, + { + "amount": "338.237837750", + "slot": { + "period": 3627203, + "thread": 19 + } + }, + { + "amount": "338.237837755", + "slot": { + "period": 3885963, + "thread": 25 + } + } + ], + "AU1tHQjcVkzrtk4kyJCsgStzRPbNaU8ms66X6CDMSR2hWsFu1W7W": [ + { + "amount": "237.225804872", + "slot": { + "period": 131764, + "thread": 21 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 217125, + "thread": 19 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 448269, + "thread": 30 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 564195, + "thread": 31 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 768455, + "thread": 7 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 925700, + "thread": 10 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 983362, + "thread": 7 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 1239693, + "thread": 28 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 1416404, + "thread": 0 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 1488602, + "thread": 18 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 1763379, + "thread": 7 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 1832711, + "thread": 10 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2078860, + "thread": 31 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2215788, + "thread": 13 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2438448, + "thread": 4 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2617895, + "thread": 31 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2764556, + "thread": 10 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2888445, + "thread": 20 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 2973354, + "thread": 9 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 3141797, + "thread": 20 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 3413741, + "thread": 20 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 3451201, + "thread": 27 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 3651044, + "thread": 24 + } + }, + { + "amount": "237.225804872", + "slot": { + "period": 3917299, + "thread": 3 + } + } + ], + "AU1tHoErt9Gknaj2odWPXVZ8NDc1gTzgFDubftUUYMKAucn19eTZ": [ + { + "amount": "430.821397129", + "slot": { + "period": 132551, + "thread": 28 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 206163, + "thread": 18 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 365021, + "thread": 18 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 498661, + "thread": 27 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 784348, + "thread": 10 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 930275, + "thread": 20 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1087877, + "thread": 0 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1203719, + "thread": 3 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1351305, + "thread": 23 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1503986, + "thread": 24 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1742559, + "thread": 26 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 1822190, + "thread": 27 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2042642, + "thread": 28 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2201254, + "thread": 7 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2410421, + "thread": 23 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2564450, + "thread": 18 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2671292, + "thread": 13 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2941570, + "thread": 30 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 2962455, + "thread": 1 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 3272887, + "thread": 11 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 3314204, + "thread": 19 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 3601247, + "thread": 9 + } + }, + { + "amount": "430.821397129", + "slot": { + "period": 3698014, + "thread": 11 + } + }, + { + "amount": "430.821397132", + "slot": { + "period": 3906660, + "thread": 29 + } + } + ], + "AU1tKcyBfmkUGKdm9Z5CUTBASUZY3674U1DxjUyo51VJhJJYsXwz": [ + { + "amount": "445.739279142", + "slot": { + "period": 159247, + "thread": 29 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 213227, + "thread": 6 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 433352, + "thread": 0 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 611114, + "thread": 13 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 814567, + "thread": 23 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 932509, + "thread": 2 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1044520, + "thread": 14 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1219510, + "thread": 3 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1335428, + "thread": 7 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1553644, + "thread": 30 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1751811, + "thread": 11 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 1882070, + "thread": 6 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2055473, + "thread": 11 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2160364, + "thread": 2 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2410908, + "thread": 8 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2537953, + "thread": 13 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2747938, + "thread": 25 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 2944244, + "thread": 17 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 3035765, + "thread": 6 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 3237210, + "thread": 3 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 3386926, + "thread": 1 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 3575698, + "thread": 0 + } + }, + { + "amount": "445.739279142", + "slot": { + "period": 3777008, + "thread": 15 + } + }, + { + "amount": "445.739279153", + "slot": { + "period": 3894470, + "thread": 2 + } + } + ], + "AU1tPJjYFxEXApqrdfvNSAasnDeNaeBdQTtp2r8UWMoVBFdRcYcd": [ + { + "amount": "110.194712151", + "slot": { + "period": 119315, + "thread": 4 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 312396, + "thread": 11 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 335435, + "thread": 25 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 498716, + "thread": 14 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 732506, + "thread": 14 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 967530, + "thread": 24 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1122126, + "thread": 22 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1159686, + "thread": 24 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1325639, + "thread": 10 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1506767, + "thread": 4 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1777325, + "thread": 0 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 1886649, + "thread": 5 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2037378, + "thread": 7 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2266209, + "thread": 2 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2346829, + "thread": 6 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2466710, + "thread": 6 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2735949, + "thread": 17 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 2813919, + "thread": 9 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 3067278, + "thread": 12 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 3228913, + "thread": 18 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 3312164, + "thread": 1 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 3603209, + "thread": 29 + } + }, + { + "amount": "110.194712151", + "slot": { + "period": 3648106, + "thread": 13 + } + }, + { + "amount": "110.194712158", + "slot": { + "period": 3786203, + "thread": 30 + } + } + ], + "AU1tPUof894aFdn5eNim8sF5QNLDZFCcoqirzRsYnaBUskHeDL9b": [ + { + "amount": "567.259151879", + "slot": { + "period": 67467, + "thread": 3 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 254410, + "thread": 16 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 437319, + "thread": 3 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 625281, + "thread": 10 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 729887, + "thread": 28 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 880517, + "thread": 15 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1077366, + "thread": 26 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1253115, + "thread": 15 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1378601, + "thread": 30 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1495631, + "thread": 6 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1717306, + "thread": 26 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 1924983, + "thread": 8 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2017937, + "thread": 16 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2166800, + "thread": 28 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2459724, + "thread": 6 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2593743, + "thread": 4 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2760600, + "thread": 1 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2916045, + "thread": 12 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 2978363, + "thread": 30 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 3230258, + "thread": 30 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 3410702, + "thread": 27 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 3509089, + "thread": 1 + } + }, + { + "amount": "567.259151879", + "slot": { + "period": 3624311, + "thread": 18 + } + }, + { + "amount": "567.259151878", + "slot": { + "period": 3908291, + "thread": 7 + } + } + ], + "AU1tQNnUMoukoPh2cZXNkcje2kVPQvxCXmwfE912oTx2h3VgDRm7": [ + { + "amount": "644.859126632", + "slot": { + "period": 104944, + "thread": 0 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 309462, + "thread": 8 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 463797, + "thread": 15 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 582110, + "thread": 26 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 807525, + "thread": 30 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 844954, + "thread": 31 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1116872, + "thread": 3 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1194469, + "thread": 20 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1468325, + "thread": 31 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1569442, + "thread": 26 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1786144, + "thread": 14 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 1945709, + "thread": 18 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2112448, + "thread": 28 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2238516, + "thread": 2 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2331317, + "thread": 12 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2528581, + "thread": 3 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2721806, + "thread": 6 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 2930253, + "thread": 20 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 3020069, + "thread": 28 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 3182655, + "thread": 29 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 3407027, + "thread": 15 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 3453053, + "thread": 3 + } + }, + { + "amount": "644.859126632", + "slot": { + "period": 3688687, + "thread": 13 + } + }, + { + "amount": "644.859126627", + "slot": { + "period": 3920644, + "thread": 15 + } + } + ], + "AU1tQh2aFnqSia9zZu9ZMKjoy8E3myWGhZ5Cp1hbDrbyU3jFDtvr": [ + { + "amount": "107.040632966", + "slot": { + "period": 116550, + "thread": 22 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 322836, + "thread": 1 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 439456, + "thread": 20 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 619082, + "thread": 5 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 709409, + "thread": 31 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 970512, + "thread": 28 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1013059, + "thread": 11 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1180670, + "thread": 28 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1342549, + "thread": 28 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1600038, + "thread": 5 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1726619, + "thread": 0 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 1944100, + "thread": 6 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2083892, + "thread": 12 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2156734, + "thread": 30 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2349218, + "thread": 0 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2536598, + "thread": 30 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2661103, + "thread": 27 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 2794993, + "thread": 26 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 3103508, + "thread": 23 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 3123125, + "thread": 30 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 3309755, + "thread": 4 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 3524051, + "thread": 31 + } + }, + { + "amount": "107.040632966", + "slot": { + "period": 3676202, + "thread": 12 + } + }, + { + "amount": "107.040632974", + "slot": { + "period": 3886639, + "thread": 22 + } + } + ], + "AU1tRCM7CGoD4HYhKT9eH645ZaG5xFq7QAVP6eSR55ALL2ipjoiM": [ + { + "amount": "501.034819498", + "slot": { + "period": 145728, + "thread": 8 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 184442, + "thread": 17 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 423618, + "thread": 17 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 618053, + "thread": 3 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 799136, + "thread": 19 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 967597, + "thread": 24 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1135452, + "thread": 29 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1170439, + "thread": 6 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1319251, + "thread": 29 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1589527, + "thread": 7 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1743267, + "thread": 11 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1845383, + "thread": 12 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 1998666, + "thread": 11 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 2233636, + "thread": 14 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 2436660, + "thread": 6 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 2496769, + "thread": 30 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 2736100, + "thread": 18 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 2839063, + "thread": 7 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 3044128, + "thread": 0 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 3124478, + "thread": 19 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 3310781, + "thread": 7 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 3548350, + "thread": 19 + } + }, + { + "amount": "501.034819498", + "slot": { + "period": 3624904, + "thread": 11 + } + }, + { + "amount": "501.034819491", + "slot": { + "period": 3813498, + "thread": 4 + } + } + ], + "AU1tS1anbHyj7e6iMaHfiDhyXEY1hF9E3LZE9AC55ALBECANDnQ9": [ + { + "amount": "507.428178371", + "slot": { + "period": 127618, + "thread": 14 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 274408, + "thread": 26 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 407736, + "thread": 9 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 501717, + "thread": 14 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 685755, + "thread": 2 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 926005, + "thread": 7 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1046865, + "thread": 16 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1284019, + "thread": 15 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1452136, + "thread": 30 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1544469, + "thread": 31 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1807437, + "thread": 31 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 1918847, + "thread": 28 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2072075, + "thread": 20 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2222714, + "thread": 13 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2430149, + "thread": 8 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2497999, + "thread": 4 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2734269, + "thread": 21 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 2826887, + "thread": 9 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 3016802, + "thread": 29 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 3224464, + "thread": 11 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 3423561, + "thread": 10 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 3599767, + "thread": 13 + } + }, + { + "amount": "507.428178371", + "slot": { + "period": 3702555, + "thread": 7 + } + }, + { + "amount": "507.428178377", + "slot": { + "period": 3905837, + "thread": 10 + } + } + ], + "AU1tSnu3wSnY2EWYPYrUC6KwcbuwyRpmykRy3BLC1ucM42d3cmqJ": [ + { + "amount": "265.335583943", + "slot": { + "period": 96786, + "thread": 4 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 209785, + "thread": 30 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 324131, + "thread": 23 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 591454, + "thread": 11 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 712248, + "thread": 30 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 981275, + "thread": 13 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1004076, + "thread": 11 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1220029, + "thread": 13 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1381017, + "thread": 23 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1481218, + "thread": 30 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1772079, + "thread": 30 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 1972255, + "thread": 25 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2049761, + "thread": 16 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2243188, + "thread": 14 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2371122, + "thread": 26 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2566100, + "thread": 0 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2668487, + "thread": 0 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 2941351, + "thread": 7 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 3114470, + "thread": 10 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 3268527, + "thread": 16 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 3403751, + "thread": 26 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 3521508, + "thread": 16 + } + }, + { + "amount": "265.335583943", + "slot": { + "period": 3758695, + "thread": 20 + } + }, + { + "amount": "265.335583935", + "slot": { + "period": 3865434, + "thread": 5 + } + } + ], + "AU1tUJDPu7n12pToYW5HtQYP7gsW2ZwYTLfDcTzbXcdY5GK8FGQQ": [ + { + "amount": "396.710131581", + "slot": { + "period": 134918, + "thread": 16 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 248088, + "thread": 1 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 449003, + "thread": 6 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 571925, + "thread": 31 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 682676, + "thread": 21 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 825874, + "thread": 22 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1059891, + "thread": 8 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1217783, + "thread": 7 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1325489, + "thread": 2 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1598477, + "thread": 3 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1766614, + "thread": 15 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 1867417, + "thread": 26 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2073545, + "thread": 19 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2271551, + "thread": 24 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2339019, + "thread": 30 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2607399, + "thread": 8 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2782385, + "thread": 20 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 2936534, + "thread": 14 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 3036936, + "thread": 19 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 3136289, + "thread": 1 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 3444267, + "thread": 17 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 3574292, + "thread": 26 + } + }, + { + "amount": "396.710131581", + "slot": { + "period": 3670871, + "thread": 15 + } + }, + { + "amount": "396.710131591", + "slot": { + "period": 3883096, + "thread": 25 + } + } + ], + "AU1tUdEGXaZj8Wow5oc54PuM74dew1KE9tYfHTZiW2Sk6YXPvjo": [ + { + "amount": "72.930479842", + "slot": { + "period": 46037, + "thread": 17 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 276671, + "thread": 13 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 474153, + "thread": 9 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 491984, + "thread": 1 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 796551, + "thread": 20 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 907916, + "thread": 13 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 997950, + "thread": 21 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 1224609, + "thread": 3 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 1377714, + "thread": 14 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 1569693, + "thread": 9 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 1734464, + "thread": 1 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 1827362, + "thread": 1 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2138691, + "thread": 25 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2148854, + "thread": 8 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2404810, + "thread": 1 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2512292, + "thread": 3 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2730980, + "thread": 26 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 2932321, + "thread": 25 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 3010230, + "thread": 25 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 3203655, + "thread": 7 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 3319449, + "thread": 27 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 3494795, + "thread": 17 + } + }, + { + "amount": "72.930479842", + "slot": { + "period": 3708480, + "thread": 3 + } + }, + { + "amount": "72.930479848", + "slot": { + "period": 3847234, + "thread": 11 + } + } + ], + "AU1tW26bDYt841TcDta7VPiwfHtpyBG1c8A3SkFa4jsQb4As7acx": [ + { + "amount": "315.385090980", + "slot": { + "period": 33645, + "thread": 18 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 204216, + "thread": 25 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 365793, + "thread": 13 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 536112, + "thread": 4 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 667766, + "thread": 31 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 973500, + "thread": 18 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1133393, + "thread": 1 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1200112, + "thread": 26 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1436348, + "thread": 1 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1563400, + "thread": 3 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1683759, + "thread": 14 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1943542, + "thread": 15 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 1990719, + "thread": 17 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 2293386, + "thread": 17 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 2314677, + "thread": 13 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 2504612, + "thread": 31 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 2661701, + "thread": 24 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 2939823, + "thread": 11 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 3051146, + "thread": 11 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 3139563, + "thread": 25 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 3395498, + "thread": 5 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 3546860, + "thread": 3 + } + }, + { + "amount": "315.385090980", + "slot": { + "period": 3670765, + "thread": 6 + } + }, + { + "amount": "315.385090983", + "slot": { + "period": 3816079, + "thread": 7 + } + } + ], + "AU1tWGr4vmhxqBXdji6A9kBQ2S3h6dz4WBcj6XWuFyPGK9dKfEPz": [ + { + "amount": "234.564586047", + "slot": { + "period": 161414, + "thread": 10 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 244679, + "thread": 27 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 358440, + "thread": 12 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 640031, + "thread": 16 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 656380, + "thread": 8 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 889653, + "thread": 30 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1060337, + "thread": 17 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1173132, + "thread": 18 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1333169, + "thread": 23 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1485312, + "thread": 12 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1680111, + "thread": 22 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1910089, + "thread": 17 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 1979859, + "thread": 3 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 2262624, + "thread": 11 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 2312277, + "thread": 12 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 2590248, + "thread": 4 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 2650994, + "thread": 30 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 2949219, + "thread": 17 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 3067681, + "thread": 18 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 3123698, + "thread": 13 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 3327909, + "thread": 30 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 3467084, + "thread": 22 + } + }, + { + "amount": "234.564586047", + "slot": { + "period": 3711991, + "thread": 12 + } + }, + { + "amount": "234.564586046", + "slot": { + "period": 3809594, + "thread": 14 + } + } + ], + "AU1tWW4dRhzxbdT6SAdCUF9Bdq2rZcq7SARfMB3rLoqsrZm2i37J": [ + { + "amount": "94.325998446", + "slot": { + "period": 162250, + "thread": 14 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 209608, + "thread": 1 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 397861, + "thread": 0 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 620856, + "thread": 21 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 735697, + "thread": 21 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 885443, + "thread": 11 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1088245, + "thread": 17 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1263405, + "thread": 17 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1330373, + "thread": 2 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1612419, + "thread": 28 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1733331, + "thread": 7 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 1946418, + "thread": 1 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2056012, + "thread": 9 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2217083, + "thread": 18 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2353968, + "thread": 12 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2496974, + "thread": 3 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2646990, + "thread": 10 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2911269, + "thread": 20 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 2982077, + "thread": 6 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 3134544, + "thread": 1 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 3320401, + "thread": 20 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 3478326, + "thread": 24 + } + }, + { + "amount": "94.325998446", + "slot": { + "period": 3632693, + "thread": 9 + } + }, + { + "amount": "94.325998448", + "slot": { + "period": 3895665, + "thread": 3 + } + } + ], + "AU1tWbcDcrUC7HKWwygPDT2JGwi1JYdXy6xUCj624KbBoytgt6Vk": [ + { + "amount": "54.697983884", + "slot": { + "period": 109053, + "thread": 10 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 212467, + "thread": 12 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 386091, + "thread": 24 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 546035, + "thread": 9 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 772897, + "thread": 15 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 877897, + "thread": 26 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1018827, + "thread": 29 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1266398, + "thread": 13 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1413495, + "thread": 24 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1634817, + "thread": 28 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1648903, + "thread": 1 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 1902617, + "thread": 21 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2086403, + "thread": 25 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2280035, + "thread": 20 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2379170, + "thread": 7 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2533884, + "thread": 6 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2741109, + "thread": 7 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2947861, + "thread": 7 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 2973014, + "thread": 14 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 3173428, + "thread": 10 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 3441639, + "thread": 13 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 3583922, + "thread": 7 + } + }, + { + "amount": "54.697983884", + "slot": { + "period": 3763326, + "thread": 11 + } + }, + { + "amount": "54.697983873", + "slot": { + "period": 3795022, + "thread": 10 + } + } + ], + "AU1tXkt5D2e3aKRc2uUKQVB4eemUXsu2Xuix2Tenig4x9TH5VLki": [ + { + "amount": "101.521747644", + "slot": { + "period": 33827, + "thread": 27 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 236050, + "thread": 3 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 448232, + "thread": 28 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 618381, + "thread": 26 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 729737, + "thread": 29 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 867521, + "thread": 14 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1035574, + "thread": 30 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1219983, + "thread": 0 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1371403, + "thread": 25 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1555885, + "thread": 18 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1713369, + "thread": 12 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 1866441, + "thread": 30 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2070763, + "thread": 8 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2159885, + "thread": 13 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2344708, + "thread": 27 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2573267, + "thread": 21 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2703636, + "thread": 15 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2869163, + "thread": 8 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 2959369, + "thread": 31 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 3234423, + "thread": 10 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 3294731, + "thread": 9 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 3611277, + "thread": 18 + } + }, + { + "amount": "101.521747644", + "slot": { + "period": 3705948, + "thread": 11 + } + }, + { + "amount": "101.521747640", + "slot": { + "period": 3822381, + "thread": 29 + } + } + ], + "AU1tYAkZAZA8RyZCPHBpMuYMDVzAB8VDLKktKqX8GjzgBhoLn8Mh": [ + { + "amount": "137.254023656", + "slot": { + "period": 11301, + "thread": 10 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 257825, + "thread": 28 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 414603, + "thread": 6 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 558324, + "thread": 12 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 731068, + "thread": 21 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 889090, + "thread": 10 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1105140, + "thread": 30 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1238603, + "thread": 18 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1407040, + "thread": 23 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1565479, + "thread": 6 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1687930, + "thread": 15 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 1885799, + "thread": 7 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2122955, + "thread": 17 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2210078, + "thread": 12 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2420142, + "thread": 31 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2562737, + "thread": 22 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2760007, + "thread": 22 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 2940973, + "thread": 16 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 3039251, + "thread": 13 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 3124475, + "thread": 3 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 3348509, + "thread": 16 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 3493871, + "thread": 7 + } + }, + { + "amount": "137.254023656", + "slot": { + "period": 3699379, + "thread": 12 + } + }, + { + "amount": "137.254023644", + "slot": { + "period": 3838032, + "thread": 13 + } + } + ], + "AU1tYLfBjyrbAzU8Wyg13KhCHaZERATsB114ioLaei8ZAMnPxxQr": [ + { + "amount": "633.906566413", + "slot": { + "period": 165782, + "thread": 25 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 197425, + "thread": 2 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 385042, + "thread": 30 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 542864, + "thread": 23 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 725721, + "thread": 4 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 871521, + "thread": 27 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1047275, + "thread": 13 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1222512, + "thread": 26 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1318156, + "thread": 10 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1557302, + "thread": 24 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1790829, + "thread": 4 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 1848901, + "thread": 17 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2086951, + "thread": 6 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2277446, + "thread": 19 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2341601, + "thread": 7 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2465552, + "thread": 28 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2680546, + "thread": 31 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 2839694, + "thread": 14 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 3094162, + "thread": 25 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 3244554, + "thread": 13 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 3362825, + "thread": 22 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 3558871, + "thread": 31 + } + }, + { + "amount": "633.906566413", + "slot": { + "period": 3664077, + "thread": 4 + } + }, + { + "amount": "633.906566404", + "slot": { + "period": 3801058, + "thread": 11 + } + } + ], + "AU1tYk15ajWR6aEEVkL5i59GpsfFyTzRysf5W7FFpnVYAUMuyVgX": [ + { + "amount": "398.738110363", + "slot": { + "period": 16074, + "thread": 28 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 198436, + "thread": 29 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 442579, + "thread": 18 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 513972, + "thread": 15 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 726366, + "thread": 6 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 927885, + "thread": 5 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1121288, + "thread": 0 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1183904, + "thread": 5 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1421954, + "thread": 1 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1501212, + "thread": 2 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1785230, + "thread": 30 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 1862664, + "thread": 11 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2011475, + "thread": 9 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2161524, + "thread": 3 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2350609, + "thread": 15 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2470774, + "thread": 30 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2679676, + "thread": 9 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 2802368, + "thread": 16 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 3077126, + "thread": 26 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 3282965, + "thread": 14 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 3324498, + "thread": 27 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 3565024, + "thread": 10 + } + }, + { + "amount": "398.738110363", + "slot": { + "period": 3739138, + "thread": 0 + } + }, + { + "amount": "398.738110366", + "slot": { + "period": 3847967, + "thread": 16 + } + } + ], + "AU1tZd5p2QY56YUNFnqPBKtmKhvWYgD6Akv2RW9ujXKA4KCY5RMv": [ + { + "amount": "232.035074386", + "slot": { + "period": 144749, + "thread": 21 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 238305, + "thread": 25 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 391389, + "thread": 19 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 598919, + "thread": 2 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 772196, + "thread": 21 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 916609, + "thread": 14 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1038219, + "thread": 1 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1304447, + "thread": 11 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1388242, + "thread": 24 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1540315, + "thread": 29 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1792719, + "thread": 2 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1818212, + "thread": 9 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 1992770, + "thread": 5 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2285513, + "thread": 7 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2381698, + "thread": 23 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2489393, + "thread": 0 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2704855, + "thread": 19 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2942429, + "thread": 6 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 2994455, + "thread": 6 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 3196286, + "thread": 6 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 3429290, + "thread": 15 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 3576087, + "thread": 27 + } + }, + { + "amount": "232.035074386", + "slot": { + "period": 3739859, + "thread": 14 + } + }, + { + "amount": "232.035074389", + "slot": { + "period": 3878364, + "thread": 4 + } + } + ], + "AU1tZi1BTwfWqGNdanhBuXK8yeZLQJPtdy4FaL6x77U5iRnEMc2E": [ + { + "amount": "260.203786795", + "slot": { + "period": 81964, + "thread": 20 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 290286, + "thread": 13 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 468686, + "thread": 23 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 631415, + "thread": 15 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 689777, + "thread": 29 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 933578, + "thread": 7 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1037026, + "thread": 12 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1184992, + "thread": 22 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1384535, + "thread": 5 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1497592, + "thread": 8 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1749407, + "thread": 15 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 1841284, + "thread": 18 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2091247, + "thread": 1 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2289023, + "thread": 1 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2318728, + "thread": 24 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2580774, + "thread": 13 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2650395, + "thread": 14 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 2813004, + "thread": 25 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 3090283, + "thread": 22 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 3222490, + "thread": 26 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 3332390, + "thread": 12 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 3544325, + "thread": 7 + } + }, + { + "amount": "260.203786795", + "slot": { + "period": 3708323, + "thread": 0 + } + }, + { + "amount": "260.203786793", + "slot": { + "period": 3909450, + "thread": 6 + } + } + ], + "AU1tdf8kBf3qZC1FjVZC3ZaLCihwqt7NjDSwho61dyUCXys6TRcy": [ + { + "amount": "78.188620639", + "slot": { + "period": 102619, + "thread": 29 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 281843, + "thread": 31 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 458295, + "thread": 25 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 496546, + "thread": 24 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 743766, + "thread": 13 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 921849, + "thread": 6 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 990038, + "thread": 31 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 1152735, + "thread": 23 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 1340781, + "thread": 26 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 1645411, + "thread": 6 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 1703268, + "thread": 28 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 1945310, + "thread": 11 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2074965, + "thread": 5 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2225055, + "thread": 7 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2337282, + "thread": 12 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2583831, + "thread": 5 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2631387, + "thread": 8 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 2826459, + "thread": 15 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 3091060, + "thread": 15 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 3216395, + "thread": 1 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 3358150, + "thread": 23 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 3545729, + "thread": 18 + } + }, + { + "amount": "78.188620639", + "slot": { + "period": 3770521, + "thread": 1 + } + }, + { + "amount": "78.188620638", + "slot": { + "period": 3824798, + "thread": 23 + } + } + ], + "AU1teTp1sVHYNGrFrzUg4RdxomQ2ZENGxFq9pQD1f19eBTWUqhBf": [ + { + "amount": "267.753382105", + "slot": { + "period": 70259, + "thread": 31 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 274805, + "thread": 16 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 476160, + "thread": 13 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 548878, + "thread": 0 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 748401, + "thread": 13 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 828862, + "thread": 5 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1141746, + "thread": 31 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1307035, + "thread": 19 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1346642, + "thread": 3 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1582186, + "thread": 28 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1688779, + "thread": 13 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 1961787, + "thread": 3 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2084540, + "thread": 9 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2199471, + "thread": 4 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2424172, + "thread": 24 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2575644, + "thread": 0 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2763948, + "thread": 16 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 2816297, + "thread": 3 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 3082270, + "thread": 23 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 3201708, + "thread": 16 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 3384322, + "thread": 30 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 3551429, + "thread": 0 + } + }, + { + "amount": "267.753382105", + "slot": { + "period": 3702446, + "thread": 5 + } + }, + { + "amount": "267.753382109", + "slot": { + "period": 3891920, + "thread": 19 + } + } + ], + "AU1tf1P5X9WgmFuBoLDujASPZwTAhWcy2A6vKpYLGaXvkDtCHJUQ": [ + { + "amount": "85.524087826", + "slot": { + "period": 152307, + "thread": 18 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 242697, + "thread": 16 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 380783, + "thread": 8 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 508830, + "thread": 11 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 670156, + "thread": 6 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 863928, + "thread": 0 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1147572, + "thread": 26 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1222538, + "thread": 1 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1340160, + "thread": 7 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1642461, + "thread": 19 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1710788, + "thread": 1 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 1906200, + "thread": 31 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2091345, + "thread": 0 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2212565, + "thread": 15 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2398976, + "thread": 16 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2502958, + "thread": 13 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2685594, + "thread": 26 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2829702, + "thread": 25 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 2968214, + "thread": 26 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 3240100, + "thread": 3 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 3337363, + "thread": 5 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 3575705, + "thread": 13 + } + }, + { + "amount": "85.524087826", + "slot": { + "period": 3679601, + "thread": 13 + } + }, + { + "amount": "85.524087830", + "slot": { + "period": 3782952, + "thread": 4 + } + } + ], + "AU1tfFzZNvdp5XzHBFty867CkvwZPiJop52YHtzrGWWsnTGEoqYY": [ + { + "amount": "355.946540690", + "slot": { + "period": 59126, + "thread": 7 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 304100, + "thread": 28 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 418997, + "thread": 3 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 647938, + "thread": 15 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 751913, + "thread": 4 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 908591, + "thread": 9 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 991732, + "thread": 11 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1221508, + "thread": 1 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1432039, + "thread": 0 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1597333, + "thread": 5 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1648720, + "thread": 10 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1894978, + "thread": 4 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 1989523, + "thread": 8 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 2251352, + "thread": 0 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 2424763, + "thread": 25 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 2469362, + "thread": 8 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 2686777, + "thread": 5 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 2846035, + "thread": 19 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 3058948, + "thread": 16 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 3265184, + "thread": 3 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 3409553, + "thread": 0 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 3543045, + "thread": 1 + } + }, + { + "amount": "355.946540690", + "slot": { + "period": 3681598, + "thread": 19 + } + }, + { + "amount": "355.946540688", + "slot": { + "period": 3844136, + "thread": 10 + } + } + ], + "AU1tfGqDgiAVLD7Z6afbAZNSbrsB6pChFdLDtd6yVSzQHFrem3Qo": [ + { + "amount": "35000.000000000", + "slot": { + "period": 167354, + "thread": 19 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 230063, + "thread": 13 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 438840, + "thread": 15 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 500003, + "thread": 29 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 717190, + "thread": 6 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 944659, + "thread": 8 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1132858, + "thread": 22 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1304820, + "thread": 12 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1419608, + "thread": 30 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1567116, + "thread": 25 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1731952, + "thread": 16 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 1948157, + "thread": 13 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2037831, + "thread": 26 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2149990, + "thread": 3 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2312384, + "thread": 5 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2485496, + "thread": 15 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2715303, + "thread": 3 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 2808069, + "thread": 27 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3040181, + "thread": 28 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3174792, + "thread": 26 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3395223, + "thread": 4 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3555720, + "thread": 13 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3710911, + "thread": 19 + } + }, + { + "amount": "35000.000000000", + "slot": { + "period": 3920734, + "thread": 22 + } + } + ], + "AU1tfU1N9v5QqnNc2pUkMH6Riirzxx3LU9UnQXByx736iMgtJ8gz": [ + { + "amount": "373.299651594", + "slot": { + "period": 25475, + "thread": 22 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 195227, + "thread": 28 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 397758, + "thread": 1 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 531609, + "thread": 21 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 715956, + "thread": 25 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 956104, + "thread": 10 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1103759, + "thread": 17 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1269644, + "thread": 28 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1476289, + "thread": 18 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1569218, + "thread": 20 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1792657, + "thread": 4 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 1936803, + "thread": 8 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2000227, + "thread": 21 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2237872, + "thread": 25 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2340543, + "thread": 24 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2582752, + "thread": 4 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2639420, + "thread": 28 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 2854708, + "thread": 5 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 3034521, + "thread": 27 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 3155618, + "thread": 21 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 3362295, + "thread": 4 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 3564785, + "thread": 12 + } + }, + { + "amount": "373.299651594", + "slot": { + "period": 3745775, + "thread": 14 + } + }, + { + "amount": "373.299651593", + "slot": { + "period": 3871283, + "thread": 2 + } + } + ], + "AU1tfaU446sk9R2Vw1ujWh2dhMS4YGMTQ6VZG2j5R2TpouAikkTS": [ + { + "amount": "616.564886084", + "slot": { + "period": 130096, + "thread": 5 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 171969, + "thread": 24 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 433986, + "thread": 31 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 548842, + "thread": 16 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 757258, + "thread": 15 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 902275, + "thread": 21 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1054410, + "thread": 5 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1174744, + "thread": 18 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1400289, + "thread": 16 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1602184, + "thread": 17 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1720694, + "thread": 9 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 1827065, + "thread": 8 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2118952, + "thread": 29 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2155049, + "thread": 22 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2448094, + "thread": 4 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2552808, + "thread": 12 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2658716, + "thread": 13 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2827558, + "thread": 28 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 2958364, + "thread": 27 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 3188398, + "thread": 0 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 3355506, + "thread": 1 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 3503550, + "thread": 7 + } + }, + { + "amount": "616.564886084", + "slot": { + "period": 3663060, + "thread": 6 + } + }, + { + "amount": "616.564886095", + "slot": { + "period": 3938735, + "thread": 28 + } + } + ], + "AU1tgDaaHG8MwY2RdYRSWAgACrVZ52RFMrJ5hfPSWnjXknk58kuq": [ + { + "amount": "52.125033865", + "slot": { + "period": 82230, + "thread": 11 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 305016, + "thread": 11 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 367090, + "thread": 6 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 515576, + "thread": 31 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 817117, + "thread": 26 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 952930, + "thread": 4 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1138382, + "thread": 5 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1213966, + "thread": 20 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1375243, + "thread": 12 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1491468, + "thread": 15 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1696047, + "thread": 8 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 1952589, + "thread": 31 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2093529, + "thread": 11 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2286487, + "thread": 18 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2346130, + "thread": 8 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2531429, + "thread": 21 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2719015, + "thread": 26 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2874904, + "thread": 29 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 2965016, + "thread": 5 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 3250802, + "thread": 11 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 3374064, + "thread": 31 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 3588819, + "thread": 18 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 3721506, + "thread": 11 + } + }, + { + "amount": "52.125033865", + "slot": { + "period": 3915729, + "thread": 2 + } + } + ], + "AU1tgXzGVJewp1Rhd91F5UfufmXC5ZLSF3tSbyswpxC3FtifhpP1": [ + { + "amount": "85.657745296", + "slot": { + "period": 59384, + "thread": 2 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 313299, + "thread": 19 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 388403, + "thread": 12 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 515648, + "thread": 17 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 801466, + "thread": 22 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 979270, + "thread": 4 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1119774, + "thread": 12 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1216454, + "thread": 23 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1391609, + "thread": 9 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1488981, + "thread": 13 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1767538, + "thread": 28 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 1855925, + "thread": 25 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2128221, + "thread": 9 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2230602, + "thread": 20 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2425912, + "thread": 14 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2535949, + "thread": 3 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2771200, + "thread": 31 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2925570, + "thread": 6 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 2987913, + "thread": 18 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 3241181, + "thread": 7 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 3421390, + "thread": 26 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 3543403, + "thread": 24 + } + }, + { + "amount": "85.657745296", + "slot": { + "period": 3734134, + "thread": 1 + } + }, + { + "amount": "85.657745290", + "slot": { + "period": 3824203, + "thread": 22 + } + } + ], + "AU1tgxYkNgwpLSu4qi47uZLXgoAYxJD7h2CykErGeeczaqtmPZXS": [ + { + "amount": "216.482091678", + "slot": { + "period": 54153, + "thread": 8 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 271108, + "thread": 11 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 344308, + "thread": 29 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 530054, + "thread": 21 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 693836, + "thread": 14 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 823090, + "thread": 1 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1103929, + "thread": 29 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1303942, + "thread": 18 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1447587, + "thread": 18 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1531646, + "thread": 14 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1696188, + "thread": 21 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 1877920, + "thread": 1 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2099777, + "thread": 13 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2217266, + "thread": 18 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2384483, + "thread": 21 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2588194, + "thread": 25 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2756396, + "thread": 21 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 2943848, + "thread": 10 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 3072734, + "thread": 22 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 3281313, + "thread": 10 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 3411656, + "thread": 23 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 3452249, + "thread": 29 + } + }, + { + "amount": "216.482091678", + "slot": { + "period": 3719708, + "thread": 27 + } + }, + { + "amount": "216.482091679", + "slot": { + "period": 3814538, + "thread": 25 + } + } + ], + "AU1tha3jkjYwjhw2WnJQVaexEKQx7PegPWnM3uza5yVpyr8NoGdb": [ + { + "amount": "567.933724117", + "slot": { + "period": 42114, + "thread": 3 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 174165, + "thread": 7 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 437455, + "thread": 28 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 575921, + "thread": 1 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 817401, + "thread": 16 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 898885, + "thread": 3 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1024267, + "thread": 20 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1151808, + "thread": 31 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1461359, + "thread": 21 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1563208, + "thread": 24 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1656922, + "thread": 24 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 1863607, + "thread": 27 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2074947, + "thread": 31 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2194642, + "thread": 18 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2359952, + "thread": 11 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2524691, + "thread": 24 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2633472, + "thread": 4 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 2917162, + "thread": 4 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 3080485, + "thread": 9 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 3145515, + "thread": 16 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 3299110, + "thread": 22 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 3520473, + "thread": 16 + } + }, + { + "amount": "567.933724117", + "slot": { + "period": 3689960, + "thread": 25 + } + }, + { + "amount": "567.933724121", + "slot": { + "period": 3827670, + "thread": 26 + } + } + ], + "AU1thfosJBusgaGJLP4rj7YskAi6ZJzW9NKaPvzaT45FpjkEKBAD": [ + { + "amount": "138.744805890", + "slot": { + "period": 146767, + "thread": 22 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 278790, + "thread": 17 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 394404, + "thread": 26 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 621388, + "thread": 21 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 653952, + "thread": 30 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 977758, + "thread": 1 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1147837, + "thread": 8 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1217725, + "thread": 23 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1447031, + "thread": 0 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1607815, + "thread": 10 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1788678, + "thread": 19 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 1836038, + "thread": 21 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2141720, + "thread": 6 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2268595, + "thread": 27 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2387051, + "thread": 27 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2514820, + "thread": 30 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2736492, + "thread": 0 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 2807237, + "thread": 13 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 3007199, + "thread": 30 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 3280204, + "thread": 12 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 3406880, + "thread": 30 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 3508971, + "thread": 1 + } + }, + { + "amount": "138.744805890", + "slot": { + "period": 3654145, + "thread": 17 + } + }, + { + "amount": "138.744805879", + "slot": { + "period": 3844160, + "thread": 4 + } + } + ], + "AU1tiW85nupBFzfEfSfhhu35fB6dZA4fmYJVg5e5aFAHU2UjRqmE": [ + { + "amount": "113.477471308", + "slot": { + "period": 112847, + "thread": 13 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 228433, + "thread": 15 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 485265, + "thread": 21 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 533247, + "thread": 21 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 775704, + "thread": 11 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 928596, + "thread": 26 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1048713, + "thread": 14 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1217402, + "thread": 20 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1366751, + "thread": 7 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1576150, + "thread": 9 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1767902, + "thread": 29 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 1830396, + "thread": 30 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2011586, + "thread": 29 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2192498, + "thread": 30 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2429172, + "thread": 15 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2586655, + "thread": 23 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2707958, + "thread": 15 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 2801907, + "thread": 31 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 3077243, + "thread": 3 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 3264958, + "thread": 14 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 3406568, + "thread": 30 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 3562975, + "thread": 13 + } + }, + { + "amount": "113.477471308", + "slot": { + "period": 3774947, + "thread": 17 + } + }, + { + "amount": "113.477471315", + "slot": { + "period": 3813775, + "thread": 17 + } + } + ], + "AU1tjb3d4Hu4sW5DK6rj8v9LcwYiqQq8fk36mUDM8VWB9cwj754w": [ + { + "amount": "669.162769462", + "slot": { + "period": 63182, + "thread": 1 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 323379, + "thread": 1 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 328044, + "thread": 31 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 561946, + "thread": 29 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 690293, + "thread": 29 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 848827, + "thread": 30 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1115979, + "thread": 5 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1262017, + "thread": 17 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1467788, + "thread": 10 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1500791, + "thread": 7 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1654592, + "thread": 17 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 1905173, + "thread": 14 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2024323, + "thread": 2 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2218898, + "thread": 7 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2343310, + "thread": 31 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2500026, + "thread": 7 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2678617, + "thread": 21 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 2915956, + "thread": 13 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 3051444, + "thread": 17 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 3207858, + "thread": 5 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 3380751, + "thread": 7 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 3591395, + "thread": 18 + } + }, + { + "amount": "669.162769462", + "slot": { + "period": 3779112, + "thread": 17 + } + }, + { + "amount": "669.162769474", + "slot": { + "period": 3843916, + "thread": 7 + } + } + ], + "AU1tkSFbgMs2xnvHG7iwTsK9hRJnabd2tzB48LxV1P4xdqjw5AUs": [ + { + "amount": "329.186252662", + "slot": { + "period": 107212, + "thread": 30 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 317587, + "thread": 28 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 417666, + "thread": 18 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 648821, + "thread": 30 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 747352, + "thread": 7 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 880878, + "thread": 19 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1031252, + "thread": 31 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1181494, + "thread": 25 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1350384, + "thread": 3 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1644755, + "thread": 10 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1793890, + "thread": 17 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 1913817, + "thread": 27 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2014434, + "thread": 17 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2284550, + "thread": 22 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2411632, + "thread": 24 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2616505, + "thread": 23 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2739082, + "thread": 4 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2931623, + "thread": 3 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 2969476, + "thread": 3 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 3121489, + "thread": 12 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 3335296, + "thread": 30 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 3529454, + "thread": 2 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 3765356, + "thread": 23 + } + }, + { + "amount": "329.186252662", + "slot": { + "period": 3928101, + "thread": 28 + } + } + ], + "AU1tm6p36p7qiAmQvpXiGWP7oLd57otpTgZMtEqwZPN5J6G2dMcJ": [ + { + "amount": "134.474849313", + "slot": { + "period": 97102, + "thread": 9 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 309295, + "thread": 4 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 333081, + "thread": 5 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 558199, + "thread": 1 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 800353, + "thread": 28 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 972957, + "thread": 24 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1085777, + "thread": 20 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1239937, + "thread": 27 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1390938, + "thread": 4 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1513222, + "thread": 9 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1788737, + "thread": 15 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1931932, + "thread": 8 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 1996615, + "thread": 13 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 2173249, + "thread": 25 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 2449363, + "thread": 31 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 2579721, + "thread": 26 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 2767386, + "thread": 29 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 2820980, + "thread": 1 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 3035864, + "thread": 23 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 3286617, + "thread": 5 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 3446622, + "thread": 15 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 3489030, + "thread": 10 + } + }, + { + "amount": "134.474849313", + "slot": { + "period": 3716439, + "thread": 8 + } + }, + { + "amount": "134.474849322", + "slot": { + "period": 3893648, + "thread": 0 + } + } + ], + "AU1tmXAk3Uvq86gd5rABfYoqYd6u7XT7CfVBoKYtEisdbNUvMDsy": [ + { + "amount": "97.148790386", + "slot": { + "period": 138848, + "thread": 30 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 169487, + "thread": 30 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 343548, + "thread": 17 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 604438, + "thread": 26 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 767804, + "thread": 22 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 882657, + "thread": 26 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1049877, + "thread": 19 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1194578, + "thread": 1 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1323583, + "thread": 6 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1517643, + "thread": 16 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1709951, + "thread": 5 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 1922655, + "thread": 23 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2117641, + "thread": 4 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2186923, + "thread": 27 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2386622, + "thread": 20 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2579230, + "thread": 21 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2751000, + "thread": 13 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2883689, + "thread": 11 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 2983437, + "thread": 24 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 3131821, + "thread": 7 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 3368765, + "thread": 14 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 3549730, + "thread": 19 + } + }, + { + "amount": "97.148790386", + "slot": { + "period": 3662023, + "thread": 10 + } + }, + { + "amount": "97.148790392", + "slot": { + "period": 3853488, + "thread": 1 + } + } + ], + "AU1tmbMuLffZrYj3mWXZt8kQ4PJsbYVdyhLoJJbyp1EKpXziXG1S": [ + { + "amount": "167.416873079", + "slot": { + "period": 136359, + "thread": 2 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 323682, + "thread": 4 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 418461, + "thread": 18 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 601795, + "thread": 1 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 782845, + "thread": 0 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 910782, + "thread": 24 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 992513, + "thread": 22 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 1213178, + "thread": 17 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 1470686, + "thread": 26 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 1522974, + "thread": 3 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 1766254, + "thread": 26 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 1932276, + "thread": 0 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2102075, + "thread": 18 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2191106, + "thread": 4 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2358371, + "thread": 6 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2553265, + "thread": 2 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2772837, + "thread": 10 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2814680, + "thread": 16 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 2999427, + "thread": 18 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 3226904, + "thread": 3 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 3381447, + "thread": 14 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 3456607, + "thread": 5 + } + }, + { + "amount": "167.416873079", + "slot": { + "period": 3678537, + "thread": 4 + } + }, + { + "amount": "167.416873082", + "slot": { + "period": 3835735, + "thread": 24 + } + } + ], + "AU1tnsTXDuT8bwtG1nA5FETv1ASKWRj6jnu87cg9VQpLzqwCWD88": [ + { + "amount": "60.002912669", + "slot": { + "period": 85959, + "thread": 11 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 180515, + "thread": 3 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 432260, + "thread": 6 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 550790, + "thread": 6 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 804249, + "thread": 5 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 864034, + "thread": 28 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1137800, + "thread": 10 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1302764, + "thread": 8 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1346494, + "thread": 14 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1514238, + "thread": 1 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1676782, + "thread": 15 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 1948068, + "thread": 14 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2132596, + "thread": 14 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2269677, + "thread": 20 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2432670, + "thread": 28 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2509171, + "thread": 0 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2640088, + "thread": 1 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2933406, + "thread": 17 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 2976355, + "thread": 7 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 3288528, + "thread": 0 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 3306598, + "thread": 13 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 3462588, + "thread": 27 + } + }, + { + "amount": "60.002912669", + "slot": { + "period": 3619964, + "thread": 5 + } + }, + { + "amount": "60.002912665", + "slot": { + "period": 3926719, + "thread": 12 + } + } + ], + "AU1tpqRn8oA3PH28rMLCjEEMaWdbuREnSuEooqvxXuwJ2b1YtcYm": [ + { + "amount": "177.116098252", + "slot": { + "period": 37035, + "thread": 24 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 278757, + "thread": 26 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 368977, + "thread": 1 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 632029, + "thread": 4 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 797332, + "thread": 21 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 830453, + "thread": 27 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1026929, + "thread": 15 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1247280, + "thread": 7 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1407029, + "thread": 8 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1555403, + "thread": 18 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1698615, + "thread": 5 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 1817115, + "thread": 0 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2058727, + "thread": 15 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2181728, + "thread": 6 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2352091, + "thread": 23 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2604852, + "thread": 9 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2647109, + "thread": 1 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2841152, + "thread": 12 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 2968126, + "thread": 4 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 3121713, + "thread": 16 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 3337430, + "thread": 12 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 3486187, + "thread": 29 + } + }, + { + "amount": "177.116098252", + "slot": { + "period": 3703122, + "thread": 24 + } + }, + { + "amount": "177.116098260", + "slot": { + "period": 3835983, + "thread": 25 + } + } + ], + "AU1tqu5v5Q5VV3cNTBqMp9gFxAdXVFTRcbNeXgRuNofeCT3TiEKE": [ + { + "amount": "53.113323189", + "slot": { + "period": 159157, + "thread": 23 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 216497, + "thread": 14 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 346418, + "thread": 29 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 552224, + "thread": 31 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 749496, + "thread": 1 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 964381, + "thread": 17 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1065459, + "thread": 14 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1195118, + "thread": 13 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1426264, + "thread": 10 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1577532, + "thread": 9 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1657978, + "thread": 17 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 1812418, + "thread": 24 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2091095, + "thread": 5 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2156121, + "thread": 19 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2443998, + "thread": 27 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2598118, + "thread": 3 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2629189, + "thread": 19 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 2931643, + "thread": 28 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 3000069, + "thread": 9 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 3184937, + "thread": 26 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 3418922, + "thread": 0 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 3513720, + "thread": 18 + } + }, + { + "amount": "53.113323189", + "slot": { + "period": 3754622, + "thread": 27 + } + }, + { + "amount": "53.113323181", + "slot": { + "period": 3939373, + "thread": 15 + } + } + ], + "AU1tr1fS6CtojnqcWPHpcmKXsey1G6SABSKyVQgZv45qXrVC4gi1": [ + { + "amount": "503.537930531", + "slot": { + "period": 29187, + "thread": 4 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 180003, + "thread": 25 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 364563, + "thread": 25 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 552835, + "thread": 13 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 802775, + "thread": 3 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 842731, + "thread": 13 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1030321, + "thread": 25 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1156178, + "thread": 18 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1365701, + "thread": 20 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1486720, + "thread": 4 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1699656, + "thread": 6 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 1834330, + "thread": 17 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2072251, + "thread": 1 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2212488, + "thread": 17 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2403192, + "thread": 3 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2479763, + "thread": 28 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2758258, + "thread": 12 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 2819762, + "thread": 28 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 3010770, + "thread": 9 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 3213631, + "thread": 19 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 3315780, + "thread": 9 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 3460783, + "thread": 14 + } + }, + { + "amount": "503.537930531", + "slot": { + "period": 3678407, + "thread": 4 + } + }, + { + "amount": "503.537930535", + "slot": { + "period": 3858980, + "thread": 15 + } + } + ], + "AU1tryMoYiodLTbyWC4TwrEg8RDD2WduYK8eA5xfsnXgE9ySjyeT": [ + { + "amount": "196.572366886", + "slot": { + "period": 19122, + "thread": 24 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 218296, + "thread": 4 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 391581, + "thread": 25 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 576856, + "thread": 14 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 727009, + "thread": 26 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 896744, + "thread": 15 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 983159, + "thread": 2 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 1294724, + "thread": 1 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 1426385, + "thread": 29 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 1584436, + "thread": 21 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 1789057, + "thread": 28 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 1922099, + "thread": 13 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2103199, + "thread": 2 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2178863, + "thread": 16 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2451117, + "thread": 5 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2585950, + "thread": 14 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2693927, + "thread": 2 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 2933412, + "thread": 9 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 3120723, + "thread": 1 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 3252765, + "thread": 9 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 3428721, + "thread": 18 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 3558982, + "thread": 1 + } + }, + { + "amount": "196.572366886", + "slot": { + "period": 3652827, + "thread": 29 + } + }, + { + "amount": "196.572366891", + "slot": { + "period": 3840853, + "thread": 23 + } + } + ], + "AU1ts67aSvxavhGt7p7TXYKsmkeAKqRDSWfTrFXJxNqFrQBPvBpM": [ + { + "amount": "213.640865914", + "slot": { + "period": 27479, + "thread": 24 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 296707, + "thread": 17 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 394770, + "thread": 19 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 568615, + "thread": 14 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 797429, + "thread": 6 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 884225, + "thread": 14 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1130198, + "thread": 5 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1279046, + "thread": 30 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1461405, + "thread": 8 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1636548, + "thread": 17 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1795150, + "thread": 31 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 1815694, + "thread": 21 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2075802, + "thread": 31 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2246984, + "thread": 11 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2426051, + "thread": 7 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2617591, + "thread": 23 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2706169, + "thread": 11 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 2808710, + "thread": 17 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 3030861, + "thread": 3 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 3265423, + "thread": 7 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 3359994, + "thread": 17 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 3615456, + "thread": 28 + } + }, + { + "amount": "213.640865914", + "slot": { + "period": 3723538, + "thread": 0 + } + }, + { + "amount": "213.640865916", + "slot": { + "period": 3818229, + "thread": 15 + } + } + ], + "AU1tsAVqUh2B5HDjdEz2UkDYr29rRKVwtvtGdLeJtkBXNnbDR2De": [ + { + "amount": "90.862699478", + "slot": { + "period": 139668, + "thread": 31 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 206661, + "thread": 22 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 418874, + "thread": 22 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 601895, + "thread": 9 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 781085, + "thread": 21 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 871477, + "thread": 3 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1028363, + "thread": 22 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1266027, + "thread": 4 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1321096, + "thread": 25 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1554883, + "thread": 18 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1779307, + "thread": 23 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1968249, + "thread": 20 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 1984660, + "thread": 31 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 2161578, + "thread": 26 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 2316651, + "thread": 19 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 2583548, + "thread": 25 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 2728018, + "thread": 27 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 2856155, + "thread": 17 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 3058829, + "thread": 30 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 3131104, + "thread": 9 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 3405660, + "thread": 8 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 3612010, + "thread": 30 + } + }, + { + "amount": "90.862699478", + "slot": { + "period": 3749698, + "thread": 28 + } + }, + { + "amount": "90.862699472", + "slot": { + "period": 3789780, + "thread": 13 + } + } + ], + "AU1tsL9YEq1RQfWFgkNBQMsC734WtwrLz9HvGhfCa4a1u8gfL1wT": [ + { + "amount": "162.146753333", + "slot": { + "period": 87711, + "thread": 21 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 239649, + "thread": 31 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 336366, + "thread": 21 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 515376, + "thread": 1 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 716630, + "thread": 28 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 863207, + "thread": 21 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1103617, + "thread": 14 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1294735, + "thread": 11 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1325480, + "thread": 9 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1494896, + "thread": 22 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1669598, + "thread": 21 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 1950247, + "thread": 9 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2031782, + "thread": 22 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2166036, + "thread": 15 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2410209, + "thread": 28 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2534653, + "thread": 12 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2648607, + "thread": 20 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 2869652, + "thread": 24 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 3035042, + "thread": 25 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 3256800, + "thread": 17 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 3399009, + "thread": 27 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 3500638, + "thread": 30 + } + }, + { + "amount": "162.146753333", + "slot": { + "period": 3638699, + "thread": 5 + } + }, + { + "amount": "162.146753328", + "slot": { + "period": 3877715, + "thread": 12 + } + } + ], + "AU1tsZUs8BsfRmkJyhykY9th3Jmjay2RChwScwApmmYchKFqD4HG": [ + { + "amount": "469.635383222", + "slot": { + "period": 137783, + "thread": 7 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 270278, + "thread": 13 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 405168, + "thread": 28 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 631805, + "thread": 0 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 711125, + "thread": 27 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 894355, + "thread": 16 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 998330, + "thread": 9 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 1268496, + "thread": 14 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 1379551, + "thread": 12 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 1557102, + "thread": 4 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 1731181, + "thread": 30 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 1856192, + "thread": 27 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2123836, + "thread": 11 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2284043, + "thread": 31 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2320418, + "thread": 18 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2579455, + "thread": 30 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2652264, + "thread": 7 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 2795414, + "thread": 18 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 3019623, + "thread": 13 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 3137228, + "thread": 10 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 3338335, + "thread": 16 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 3587172, + "thread": 19 + } + }, + { + "amount": "469.635383222", + "slot": { + "period": 3707409, + "thread": 20 + } + }, + { + "amount": "469.635383215", + "slot": { + "period": 3803491, + "thread": 29 + } + } + ], + "AU1tsxybSWN5GQx6t99h943uueR1zdtG9r1Vhf3RioTXHXoQMAGD": [ + { + "amount": "65.735544751", + "slot": { + "period": 160544, + "thread": 11 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 290428, + "thread": 31 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 332203, + "thread": 29 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 625904, + "thread": 8 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 811341, + "thread": 19 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 898261, + "thread": 2 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1059944, + "thread": 11 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1166626, + "thread": 21 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1365279, + "thread": 3 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1573505, + "thread": 29 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1680759, + "thread": 26 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 1839335, + "thread": 30 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2029628, + "thread": 9 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2282548, + "thread": 25 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2397267, + "thread": 21 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2477260, + "thread": 8 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2709525, + "thread": 19 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 2870403, + "thread": 6 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 3004230, + "thread": 23 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 3256002, + "thread": 14 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 3339589, + "thread": 17 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 3525182, + "thread": 12 + } + }, + { + "amount": "65.735544751", + "slot": { + "period": 3634167, + "thread": 27 + } + }, + { + "amount": "65.735544761", + "slot": { + "period": 3934444, + "thread": 3 + } + } + ], + "AU1ttNkcTAeGT6iPVWHjxVe7Lz9y3JY7oC44HMDGuPXww1yfDbM1": [ + { + "amount": "142.669112207", + "slot": { + "period": 82269, + "thread": 9 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 216394, + "thread": 3 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 401165, + "thread": 9 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 571464, + "thread": 3 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 706280, + "thread": 1 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 901315, + "thread": 27 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1106488, + "thread": 3 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1300798, + "thread": 13 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1385390, + "thread": 1 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1532349, + "thread": 15 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1675854, + "thread": 27 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 1954895, + "thread": 27 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2105430, + "thread": 14 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2237024, + "thread": 1 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2416277, + "thread": 14 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2477600, + "thread": 28 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2657958, + "thread": 8 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 2914395, + "thread": 1 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 3065240, + "thread": 9 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 3192534, + "thread": 1 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 3343166, + "thread": 12 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 3536341, + "thread": 7 + } + }, + { + "amount": "142.669112207", + "slot": { + "period": 3747127, + "thread": 6 + } + }, + { + "amount": "142.669112206", + "slot": { + "period": 3838051, + "thread": 3 + } + } + ], + "AU1ttPiA2MwoLtEx8qkry1GADyURcKvvt1FF5u4PCLWCcDz51Cbg": [ + { + "amount": "110.566460517", + "slot": { + "period": 140637, + "thread": 22 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 253832, + "thread": 31 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 464990, + "thread": 16 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 522634, + "thread": 14 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 736404, + "thread": 14 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 961298, + "thread": 14 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1107515, + "thread": 11 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1256208, + "thread": 3 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1434423, + "thread": 22 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1510671, + "thread": 17 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1762573, + "thread": 6 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 1903965, + "thread": 16 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2094165, + "thread": 4 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2254001, + "thread": 29 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2311127, + "thread": 3 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2523725, + "thread": 0 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2733602, + "thread": 21 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2855991, + "thread": 16 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 2965024, + "thread": 31 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 3192181, + "thread": 6 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 3405866, + "thread": 31 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 3484483, + "thread": 20 + } + }, + { + "amount": "110.566460517", + "slot": { + "period": 3755155, + "thread": 26 + } + }, + { + "amount": "110.566460523", + "slot": { + "period": 3893394, + "thread": 26 + } + } + ], + "AU1ttRFzEg2HB4DrNFHPMaNMuifoSSty8uPM3h1nvpbazJ2JhMxJ": [ + { + "amount": "64.342139460", + "slot": { + "period": 90503, + "thread": 21 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 261127, + "thread": 16 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 355204, + "thread": 22 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 638637, + "thread": 11 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 671617, + "thread": 10 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 968342, + "thread": 28 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1102765, + "thread": 9 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1204757, + "thread": 15 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1420918, + "thread": 11 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1602176, + "thread": 22 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1755454, + "thread": 6 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 1828741, + "thread": 18 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2122578, + "thread": 8 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2252369, + "thread": 9 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2424373, + "thread": 18 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2511973, + "thread": 10 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2786834, + "thread": 1 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2924456, + "thread": 19 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 2955680, + "thread": 18 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 3180595, + "thread": 21 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 3320953, + "thread": 19 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 3504728, + "thread": 27 + } + }, + { + "amount": "64.342139460", + "slot": { + "period": 3741915, + "thread": 3 + } + }, + { + "amount": "64.342139469", + "slot": { + "period": 3830856, + "thread": 12 + } + } + ], + "AU1ttj3XJav2QL4GKzVby8r7zcMLSYDc8JXGpBH3MWcfu5KHRFWn": [ + { + "amount": "152.060809609", + "slot": { + "period": 68212, + "thread": 11 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 271862, + "thread": 5 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 464164, + "thread": 20 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 590837, + "thread": 31 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 811893, + "thread": 25 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 883636, + "thread": 6 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1041066, + "thread": 23 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1169060, + "thread": 5 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1414438, + "thread": 4 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1576844, + "thread": 10 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1650609, + "thread": 16 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 1941633, + "thread": 26 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2099447, + "thread": 22 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2177099, + "thread": 0 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2362716, + "thread": 6 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2480058, + "thread": 24 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2627383, + "thread": 5 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2792346, + "thread": 6 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 2961445, + "thread": 15 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 3243246, + "thread": 21 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 3315036, + "thread": 20 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 3476704, + "thread": 1 + } + }, + { + "amount": "152.060809609", + "slot": { + "period": 3662400, + "thread": 20 + } + }, + { + "amount": "152.060809618", + "slot": { + "period": 3855687, + "thread": 27 + } + } + ], + "AU1tu4ifaVGa7zex8pZLLyjG3NmG5zpZvzKj7KMegCnWcTWLHzNn": [ + { + "amount": "339.805448937", + "slot": { + "period": 40212, + "thread": 29 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 297980, + "thread": 2 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 389829, + "thread": 2 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 634958, + "thread": 29 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 788862, + "thread": 9 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 977656, + "thread": 18 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 984756, + "thread": 7 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 1258902, + "thread": 8 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 1464308, + "thread": 14 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 1604106, + "thread": 20 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 1794097, + "thread": 21 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 1906934, + "thread": 17 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2001680, + "thread": 22 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2244507, + "thread": 19 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2430470, + "thread": 3 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2500228, + "thread": 25 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2638861, + "thread": 27 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 2838182, + "thread": 25 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 3040228, + "thread": 9 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 3207658, + "thread": 14 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 3322411, + "thread": 29 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 3473217, + "thread": 16 + } + }, + { + "amount": "339.805448937", + "slot": { + "period": 3718827, + "thread": 18 + } + }, + { + "amount": "339.805448939", + "slot": { + "period": 3946118, + "thread": 9 + } + } + ], + "AU1tv31YMVksVgRwZDWNXbuYyWPUH4QWUJ1zoCvbWh67YZ9NMLd3": [ + { + "amount": "128.028067707", + "slot": { + "period": 83949, + "thread": 30 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 257342, + "thread": 26 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 471871, + "thread": 0 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 594326, + "thread": 5 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 672067, + "thread": 4 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 889175, + "thread": 26 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1085238, + "thread": 21 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1294099, + "thread": 11 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1374065, + "thread": 10 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1614751, + "thread": 18 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1706887, + "thread": 2 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 1907779, + "thread": 8 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2138467, + "thread": 5 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2152705, + "thread": 24 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2352534, + "thread": 0 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2475000, + "thread": 22 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2757472, + "thread": 2 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 2823150, + "thread": 6 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 3091200, + "thread": 5 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 3126048, + "thread": 12 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 3312644, + "thread": 19 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 3508680, + "thread": 31 + } + }, + { + "amount": "128.028067707", + "slot": { + "period": 3648496, + "thread": 25 + } + }, + { + "amount": "128.028067717", + "slot": { + "period": 3894134, + "thread": 26 + } + } + ], + "AU1tvXxfu52TJsC84Bfk7UeNPMBSErtiEWab2NR9z8dATEbW3GDX": [ + { + "amount": "89.059575171", + "slot": { + "period": 29854, + "thread": 24 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 300571, + "thread": 0 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 480185, + "thread": 1 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 598668, + "thread": 26 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 714034, + "thread": 28 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 866745, + "thread": 30 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1119490, + "thread": 31 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1155196, + "thread": 8 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1328991, + "thread": 26 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1614271, + "thread": 1 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1765743, + "thread": 18 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 1820920, + "thread": 16 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2059092, + "thread": 15 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2255097, + "thread": 29 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2449022, + "thread": 23 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2564059, + "thread": 21 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2689832, + "thread": 25 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 2852633, + "thread": 16 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 3032128, + "thread": 30 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 3170784, + "thread": 4 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 3431149, + "thread": 4 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 3456850, + "thread": 12 + } + }, + { + "amount": "89.059575171", + "slot": { + "period": 3753165, + "thread": 20 + } + }, + { + "amount": "89.059575163", + "slot": { + "period": 3809844, + "thread": 13 + } + } + ], + "AU1tvwaspbgzTybPd71VgLJ9bdS6ccBZ5XchwzK5bkR8JmLiioVq": [ + { + "amount": "121.743256950", + "slot": { + "period": 17559, + "thread": 26 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 213273, + "thread": 19 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 429930, + "thread": 17 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 581842, + "thread": 16 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 767563, + "thread": 15 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 858825, + "thread": 9 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1069278, + "thread": 27 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1187113, + "thread": 12 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1388507, + "thread": 30 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1628363, + "thread": 29 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1742122, + "thread": 24 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 1899454, + "thread": 0 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2027607, + "thread": 23 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2253282, + "thread": 14 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2360791, + "thread": 6 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2481138, + "thread": 31 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2714164, + "thread": 15 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 2919618, + "thread": 7 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 3106649, + "thread": 8 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 3212714, + "thread": 20 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 3369290, + "thread": 15 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 3549520, + "thread": 13 + } + }, + { + "amount": "121.743256950", + "slot": { + "period": 3648751, + "thread": 18 + } + }, + { + "amount": "121.743256956", + "slot": { + "period": 3899264, + "thread": 11 + } + } + ], + "AU1twYjEsTpStLj96pZsKdGFv277qZRcrNp6QMGsN8kqz6YKbQUW": [ + { + "amount": "437.902992228", + "slot": { + "period": 13248, + "thread": 28 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 231543, + "thread": 7 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 398564, + "thread": 19 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 607216, + "thread": 19 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 779534, + "thread": 25 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 869908, + "thread": 22 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 991903, + "thread": 18 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 1270126, + "thread": 30 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 1319173, + "thread": 16 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 1522924, + "thread": 9 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 1725722, + "thread": 21 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 1836260, + "thread": 24 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2080344, + "thread": 19 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2153485, + "thread": 6 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2408838, + "thread": 4 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2483003, + "thread": 2 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2680806, + "thread": 3 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2861401, + "thread": 17 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 2984980, + "thread": 12 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 3148642, + "thread": 13 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 3292974, + "thread": 21 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 3540074, + "thread": 28 + } + }, + { + "amount": "437.902992228", + "slot": { + "period": 3774502, + "thread": 13 + } + }, + { + "amount": "437.902992239", + "slot": { + "period": 3896982, + "thread": 17 + } + } + ], + "AU1twoRTWJAag4ycSG3s4ErQZmgKUk5nKe6nX4ubcpi5ASbtUwrg": [ + { + "amount": "61.946635553", + "slot": { + "period": 105118, + "thread": 0 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 284293, + "thread": 26 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 340136, + "thread": 7 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 505907, + "thread": 9 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 754958, + "thread": 23 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 979075, + "thread": 23 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1088482, + "thread": 28 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1266314, + "thread": 29 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1402754, + "thread": 3 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1633138, + "thread": 25 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1684547, + "thread": 9 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 1836324, + "thread": 13 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2085939, + "thread": 27 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2255864, + "thread": 7 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2334502, + "thread": 5 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2485207, + "thread": 26 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2650445, + "thread": 18 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 2841725, + "thread": 23 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 3052694, + "thread": 18 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 3129708, + "thread": 4 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 3309288, + "thread": 3 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 3594949, + "thread": 19 + } + }, + { + "amount": "61.946635553", + "slot": { + "period": 3772528, + "thread": 10 + } + }, + { + "amount": "61.946635556", + "slot": { + "period": 3908018, + "thread": 13 + } + } + ], + "AU1twvbws5MLHVhR83ANWKMBerMKgeuq4snYzTyVra5ZSwU9r9Tf": [ + { + "amount": "172.523945147", + "slot": { + "period": 95656, + "thread": 10 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 309946, + "thread": 30 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 358312, + "thread": 13 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 615079, + "thread": 29 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 752073, + "thread": 6 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 904440, + "thread": 24 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1079865, + "thread": 4 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1255261, + "thread": 12 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1363517, + "thread": 3 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1520477, + "thread": 22 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1771407, + "thread": 31 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 1845977, + "thread": 4 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2016530, + "thread": 7 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2188455, + "thread": 29 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2340836, + "thread": 8 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2563719, + "thread": 27 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2762737, + "thread": 3 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 2911237, + "thread": 25 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 3070182, + "thread": 5 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 3265375, + "thread": 29 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 3333451, + "thread": 13 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 3484169, + "thread": 3 + } + }, + { + "amount": "172.523945147", + "slot": { + "period": 3660826, + "thread": 19 + } + }, + { + "amount": "172.523945138", + "slot": { + "period": 3925622, + "thread": 31 + } + } + ], + "AU1txndATVkcuBVBc6UQburqxaBHaVFFXRPCx11FdwpHLXRj9WGN": [ + { + "amount": "73.043708436", + "slot": { + "period": 100389, + "thread": 2 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 247609, + "thread": 27 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 342019, + "thread": 31 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 550591, + "thread": 19 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 784999, + "thread": 18 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 967474, + "thread": 18 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1129855, + "thread": 3 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1214051, + "thread": 26 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1355419, + "thread": 21 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1503348, + "thread": 8 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1727722, + "thread": 11 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 1815600, + "thread": 28 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2075140, + "thread": 22 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2256392, + "thread": 6 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2423478, + "thread": 17 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2479754, + "thread": 21 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2633883, + "thread": 30 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2794298, + "thread": 5 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 2983408, + "thread": 14 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 3124246, + "thread": 26 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 3317688, + "thread": 23 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 3479552, + "thread": 13 + } + }, + { + "amount": "73.043708436", + "slot": { + "period": 3719493, + "thread": 11 + } + }, + { + "amount": "73.043708439", + "slot": { + "period": 3899931, + "thread": 14 + } + } + ], + "AU1tzYCVm7vfYmZi8xLAd5XKB6iV9RL71Z2vW8apAFyiXUES5JpW": [ + { + "amount": "130.043753907", + "slot": { + "period": 65727, + "thread": 13 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 303796, + "thread": 31 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 351668, + "thread": 10 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 597001, + "thread": 3 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 784703, + "thread": 17 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 891236, + "thread": 16 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1096425, + "thread": 7 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1155756, + "thread": 29 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1396289, + "thread": 11 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1509131, + "thread": 5 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1657658, + "thread": 29 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 1911098, + "thread": 12 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2075600, + "thread": 23 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2168742, + "thread": 8 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2310047, + "thread": 30 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2563216, + "thread": 22 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2733455, + "thread": 20 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 2885552, + "thread": 20 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 3050874, + "thread": 17 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 3242747, + "thread": 25 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 3327221, + "thread": 19 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 3536533, + "thread": 4 + } + }, + { + "amount": "130.043753907", + "slot": { + "period": 3662264, + "thread": 10 + } + }, + { + "amount": "130.043753913", + "slot": { + "period": 3879026, + "thread": 25 + } + } + ], + "AU1u1KuMKv1tDzAgAkZ3iyGLA6vBL6Zb5FaUUMPWqf4HZFdEyAG6": [ + { + "amount": "412.189961488", + "slot": { + "period": 32812, + "thread": 4 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 305012, + "thread": 23 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 330548, + "thread": 20 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 566080, + "thread": 11 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 714747, + "thread": 28 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 821299, + "thread": 0 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1012428, + "thread": 31 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1193944, + "thread": 29 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1424718, + "thread": 4 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1575526, + "thread": 10 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1682338, + "thread": 16 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 1871944, + "thread": 17 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2050330, + "thread": 16 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2231097, + "thread": 22 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2437091, + "thread": 13 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2526523, + "thread": 16 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2785075, + "thread": 2 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 2859407, + "thread": 22 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 3080389, + "thread": 10 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 3129699, + "thread": 22 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 3365725, + "thread": 0 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 3555751, + "thread": 6 + } + }, + { + "amount": "412.189961488", + "slot": { + "period": 3660643, + "thread": 18 + } + }, + { + "amount": "412.189961496", + "slot": { + "period": 3912809, + "thread": 19 + } + } + ], + "AU1u1w5wTnG8VxEwzPuLJppKWhPuj5jPGKu1LWVDysjcyHujusAh": [ + { + "amount": "144.946486368", + "slot": { + "period": 36964, + "thread": 8 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 248791, + "thread": 13 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 350514, + "thread": 11 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 579610, + "thread": 23 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 692320, + "thread": 21 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 855100, + "thread": 17 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1085149, + "thread": 25 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1168242, + "thread": 1 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1469754, + "thread": 12 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1483939, + "thread": 3 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1770947, + "thread": 2 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 1838477, + "thread": 3 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2021602, + "thread": 27 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2238655, + "thread": 21 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2336260, + "thread": 5 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2609828, + "thread": 24 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2673793, + "thread": 21 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2950953, + "thread": 18 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 2957763, + "thread": 9 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 3246256, + "thread": 11 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 3345908, + "thread": 4 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 3537975, + "thread": 24 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 3713100, + "thread": 3 + } + }, + { + "amount": "144.946486368", + "slot": { + "period": 3814420, + "thread": 23 + } + } + ], + "AU1u5DuHoMLKJM72D2jWaAa7MRPD4vNv3rFYLg4fKvivzymx6gf6": [ + { + "amount": "216.737749237", + "slot": { + "period": 13184, + "thread": 28 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 269282, + "thread": 5 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 369834, + "thread": 30 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 605059, + "thread": 31 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 690761, + "thread": 25 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 951744, + "thread": 3 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1074180, + "thread": 25 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1172400, + "thread": 13 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1328924, + "thread": 14 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1499541, + "thread": 15 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1722918, + "thread": 21 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 1958949, + "thread": 28 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2072130, + "thread": 23 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2222383, + "thread": 8 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2396233, + "thread": 15 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2571267, + "thread": 27 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2776353, + "thread": 30 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2907872, + "thread": 7 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 2969815, + "thread": 17 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 3253045, + "thread": 10 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 3447157, + "thread": 2 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 3511790, + "thread": 8 + } + }, + { + "amount": "216.737749237", + "slot": { + "period": 3768371, + "thread": 6 + } + }, + { + "amount": "216.737749242", + "slot": { + "period": 3897346, + "thread": 0 + } + } + ], + "AU1u5nxaVix8MY8TdRgLLW7z9XfBtQPL7jELcg4HknZpUG6tWpts": [ + { + "amount": "374.300127491", + "slot": { + "period": 129085, + "thread": 5 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 206137, + "thread": 17 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 419634, + "thread": 19 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 647096, + "thread": 31 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 741869, + "thread": 15 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 911663, + "thread": 27 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1131950, + "thread": 10 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1168752, + "thread": 19 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1378150, + "thread": 27 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1525700, + "thread": 5 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1660400, + "thread": 23 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 1886217, + "thread": 20 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2032394, + "thread": 21 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2254395, + "thread": 30 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2383880, + "thread": 9 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2564680, + "thread": 1 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2766013, + "thread": 30 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 2827133, + "thread": 30 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 3101306, + "thread": 20 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 3209558, + "thread": 23 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 3305560, + "thread": 9 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 3457405, + "thread": 28 + } + }, + { + "amount": "374.300127491", + "slot": { + "period": 3760403, + "thread": 10 + } + }, + { + "amount": "374.300127489", + "slot": { + "period": 3846615, + "thread": 29 + } + } + ], + "AU1u6EwAvX2GWi2BAbKv6LCULhqqgGPLGyqFSSQDciEATJQsgjTg": [ + { + "amount": "171.884678150", + "slot": { + "period": 69043, + "thread": 9 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 195728, + "thread": 24 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 423451, + "thread": 5 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 595387, + "thread": 6 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 658269, + "thread": 20 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 905468, + "thread": 24 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1082059, + "thread": 9 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1267688, + "thread": 28 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1410192, + "thread": 31 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1630628, + "thread": 29 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1789800, + "thread": 11 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 1856651, + "thread": 6 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2056590, + "thread": 19 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2186614, + "thread": 4 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2410637, + "thread": 1 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2491701, + "thread": 19 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2713748, + "thread": 11 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 2882386, + "thread": 12 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 3004003, + "thread": 16 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 3122674, + "thread": 30 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 3419957, + "thread": 4 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 3512815, + "thread": 11 + } + }, + { + "amount": "171.884678150", + "slot": { + "period": 3623652, + "thread": 9 + } + }, + { + "amount": "171.884678153", + "slot": { + "period": 3853285, + "thread": 2 + } + } + ], + "AU1u6Tyfk5AAgiSsNgK2NDYtuJDTxR17ydpr4MA4GnDvaVhK53p6": [ + { + "amount": "148.093896928", + "slot": { + "period": 53980, + "thread": 14 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 257965, + "thread": 8 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 334964, + "thread": 8 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 512441, + "thread": 8 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 779912, + "thread": 13 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 841794, + "thread": 5 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1088564, + "thread": 5 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1160173, + "thread": 0 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1391659, + "thread": 10 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1545835, + "thread": 5 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1784321, + "thread": 27 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 1873738, + "thread": 23 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2007073, + "thread": 19 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2286537, + "thread": 14 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2425080, + "thread": 28 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2502377, + "thread": 21 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2658954, + "thread": 22 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 2874563, + "thread": 1 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 3044223, + "thread": 4 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 3185603, + "thread": 15 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 3320134, + "thread": 12 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 3482234, + "thread": 29 + } + }, + { + "amount": "148.093896928", + "slot": { + "period": 3653777, + "thread": 15 + } + }, + { + "amount": "148.093896934", + "slot": { + "period": 3797748, + "thread": 5 + } + } + ], + "AU1u72EBHwX2u6WpozGTPQMZZSGxuRgnNmx6PwwEmjFnBaK15goj": [ + { + "amount": "144.960013543", + "slot": { + "period": 40302, + "thread": 0 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 320370, + "thread": 24 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 465560, + "thread": 21 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 521037, + "thread": 26 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 687843, + "thread": 9 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 901467, + "thread": 3 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1145914, + "thread": 9 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1305389, + "thread": 27 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1470464, + "thread": 29 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1586038, + "thread": 7 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1689003, + "thread": 16 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1940610, + "thread": 8 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 1996554, + "thread": 11 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 2164576, + "thread": 6 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 2338419, + "thread": 5 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 2510431, + "thread": 7 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 2772726, + "thread": 3 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 2893595, + "thread": 7 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 3080768, + "thread": 22 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 3141756, + "thread": 28 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 3419682, + "thread": 12 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 3457536, + "thread": 18 + } + }, + { + "amount": "144.960013543", + "slot": { + "period": 3663201, + "thread": 29 + } + }, + { + "amount": "144.960013540", + "slot": { + "period": 3843599, + "thread": 29 + } + } + ], + "AU1u7wXL3TSzx3kveymmxNmuoEGd8HTnTKgpnBT4TXpdJL2f6R1g": [ + { + "amount": "763.806579612", + "slot": { + "period": 23340, + "thread": 16 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 309869, + "thread": 8 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 324468, + "thread": 31 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 629431, + "thread": 8 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 805243, + "thread": 28 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 913224, + "thread": 13 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1087740, + "thread": 16 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1290408, + "thread": 14 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1385826, + "thread": 10 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1507286, + "thread": 23 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1768711, + "thread": 25 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 1893427, + "thread": 24 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2048744, + "thread": 9 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2268466, + "thread": 5 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2450309, + "thread": 22 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2466111, + "thread": 14 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2784762, + "thread": 22 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 2837708, + "thread": 26 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 3099052, + "thread": 28 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 3224229, + "thread": 25 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 3383440, + "thread": 7 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 3554897, + "thread": 12 + } + }, + { + "amount": "763.806579612", + "slot": { + "period": 3719031, + "thread": 13 + } + }, + { + "amount": "763.806579607", + "slot": { + "period": 3936767, + "thread": 14 + } + } + ], + "AU1u8BtNsLdRJaDeEzbYUaECBJc2w2QQBARJC199gofGprzgHWrm": [ + { + "amount": "149.245399649", + "slot": { + "period": 52244, + "thread": 31 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 200018, + "thread": 13 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 415853, + "thread": 15 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 508325, + "thread": 21 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 809379, + "thread": 14 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 872970, + "thread": 20 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1122666, + "thread": 27 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1185898, + "thread": 12 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1440576, + "thread": 30 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1606774, + "thread": 17 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1794218, + "thread": 4 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 1900470, + "thread": 19 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2003410, + "thread": 12 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2234289, + "thread": 22 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2318291, + "thread": 25 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2467691, + "thread": 30 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2674448, + "thread": 22 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 2817129, + "thread": 3 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 3105043, + "thread": 21 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 3286907, + "thread": 19 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 3417868, + "thread": 1 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 3595557, + "thread": 24 + } + }, + { + "amount": "149.245399649", + "slot": { + "period": 3739223, + "thread": 25 + } + }, + { + "amount": "149.245399660", + "slot": { + "period": 3783794, + "thread": 6 + } + } + ], + "AU1u8kvHTD8FKyE6tKVz2qWUHxf58ptHaYP4ULLDMSt3Gtg5tAjc": [ + { + "amount": "136.555214265", + "slot": { + "period": 143887, + "thread": 17 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 198255, + "thread": 23 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 437140, + "thread": 31 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 620884, + "thread": 18 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 784437, + "thread": 16 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 847828, + "thread": 19 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1001102, + "thread": 8 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1277388, + "thread": 11 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1339551, + "thread": 18 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1546535, + "thread": 30 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1730465, + "thread": 14 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 1911467, + "thread": 28 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2140756, + "thread": 10 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2206020, + "thread": 20 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2384288, + "thread": 10 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2548505, + "thread": 24 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2728427, + "thread": 1 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 2876869, + "thread": 12 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 3102008, + "thread": 21 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 3170558, + "thread": 16 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 3387146, + "thread": 1 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 3450918, + "thread": 10 + } + }, + { + "amount": "136.555214265", + "slot": { + "period": 3691344, + "thread": 18 + } + }, + { + "amount": "136.555214273", + "slot": { + "period": 3811872, + "thread": 2 + } + } + ], + "AU1u8yWVNHE4XBxnKDwHqL8ehg43HkKLXWVqXKBkYMqPpGkQHUDM": [ + { + "amount": "288.061878853", + "slot": { + "period": 129065, + "thread": 23 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 214570, + "thread": 31 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 334256, + "thread": 11 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 495958, + "thread": 10 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 706638, + "thread": 18 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 956437, + "thread": 28 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1138841, + "thread": 23 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1275411, + "thread": 17 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1414316, + "thread": 7 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1585118, + "thread": 14 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1710418, + "thread": 31 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 1864886, + "thread": 23 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2006012, + "thread": 18 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2166065, + "thread": 9 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2376031, + "thread": 28 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2603012, + "thread": 8 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2735331, + "thread": 22 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2814070, + "thread": 30 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 2990391, + "thread": 19 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 3273186, + "thread": 9 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 3311679, + "thread": 21 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 3489020, + "thread": 17 + } + }, + { + "amount": "288.061878853", + "slot": { + "period": 3641278, + "thread": 12 + } + }, + { + "amount": "288.061878863", + "slot": { + "period": 3786801, + "thread": 8 + } + } + ], + "AU1uA8MBgSKbvZjd8i9CtFp5WJnTqRfuZpb7DEoNxuuA3RiqZiRs": [ + { + "amount": "135.625779699", + "slot": { + "period": 75477, + "thread": 18 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 258012, + "thread": 22 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 478099, + "thread": 0 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 501038, + "thread": 24 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 805646, + "thread": 11 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 979926, + "thread": 10 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1079121, + "thread": 11 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1205038, + "thread": 16 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1383485, + "thread": 6 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1601887, + "thread": 0 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1801185, + "thread": 17 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 1815685, + "thread": 13 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2004584, + "thread": 16 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2259933, + "thread": 14 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2359652, + "thread": 22 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2552062, + "thread": 4 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2725245, + "thread": 25 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2813104, + "thread": 5 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 2994551, + "thread": 2 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 3182306, + "thread": 6 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 3381424, + "thread": 15 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 3483376, + "thread": 23 + } + }, + { + "amount": "135.625779699", + "slot": { + "period": 3650927, + "thread": 9 + } + }, + { + "amount": "135.625779709", + "slot": { + "period": 3944036, + "thread": 4 + } + } + ], + "AU1uAoVv7MAb8xT78jTnuKVB2k7Z5CJXasFw6HJNHsMzmFBUbzSd": [ + { + "amount": "398.605215398", + "slot": { + "period": 27913, + "thread": 23 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 249966, + "thread": 22 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 454407, + "thread": 29 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 524767, + "thread": 16 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 722048, + "thread": 1 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 881307, + "thread": 22 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1030334, + "thread": 14 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1206924, + "thread": 8 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1398942, + "thread": 1 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1531652, + "thread": 2 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1744768, + "thread": 6 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 1887697, + "thread": 15 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2010212, + "thread": 23 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2279869, + "thread": 24 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2344678, + "thread": 6 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2608831, + "thread": 13 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2671099, + "thread": 28 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2844434, + "thread": 22 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 2969511, + "thread": 4 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 3187288, + "thread": 26 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 3371288, + "thread": 27 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 3513902, + "thread": 8 + } + }, + { + "amount": "398.605215398", + "slot": { + "period": 3642708, + "thread": 9 + } + }, + { + "amount": "398.605215406", + "slot": { + "period": 3895328, + "thread": 12 + } + } + ], + "AU1uBWo4fczMEFcXzAR9sfKXuSyBjzZsSg9AmPcaynrGxKm7h7qc": [ + { + "amount": "208.695475173", + "slot": { + "period": 113816, + "thread": 26 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 288993, + "thread": 1 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 393362, + "thread": 25 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 536794, + "thread": 31 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 775109, + "thread": 13 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 843825, + "thread": 23 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1107978, + "thread": 10 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1266260, + "thread": 31 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1460449, + "thread": 8 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1594191, + "thread": 28 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1667743, + "thread": 10 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1965300, + "thread": 10 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 1993656, + "thread": 27 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 2151211, + "thread": 29 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 2438497, + "thread": 23 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 2584955, + "thread": 23 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 2715731, + "thread": 15 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 2922421, + "thread": 17 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 3081604, + "thread": 19 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 3192475, + "thread": 11 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 3443252, + "thread": 25 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 3568630, + "thread": 11 + } + }, + { + "amount": "208.695475173", + "slot": { + "period": 3645508, + "thread": 30 + } + }, + { + "amount": "208.695475166", + "slot": { + "period": 3802228, + "thread": 2 + } + } + ], + "AU1uBcP8ZPF6Huee8w7PpsXt89wrCBkC5usHomeXhdXWnuwHhKdw": [ + { + "amount": "232.171778328", + "slot": { + "period": 30089, + "thread": 24 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 298799, + "thread": 26 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 381530, + "thread": 18 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 512065, + "thread": 25 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 782781, + "thread": 17 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 828863, + "thread": 31 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1077294, + "thread": 20 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1315139, + "thread": 13 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1394187, + "thread": 12 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1578451, + "thread": 15 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1705114, + "thread": 31 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 1819753, + "thread": 3 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2070143, + "thread": 29 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2266907, + "thread": 19 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2381057, + "thread": 10 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2533205, + "thread": 18 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2677842, + "thread": 31 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 2818305, + "thread": 16 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 3025733, + "thread": 29 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 3175174, + "thread": 18 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 3315020, + "thread": 20 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 3475461, + "thread": 2 + } + }, + { + "amount": "232.171778328", + "slot": { + "period": 3677739, + "thread": 15 + } + }, + { + "amount": "232.171778334", + "slot": { + "period": 3845875, + "thread": 11 + } + } + ], + "AU1uCC6omCJbxgu17NTwbQ5mNFEeUbqa44SgSK6KtqMTQYWckM2B": [ + { + "amount": "69.352766283", + "slot": { + "period": 123994, + "thread": 18 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 205698, + "thread": 29 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 341221, + "thread": 17 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 602423, + "thread": 0 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 674441, + "thread": 29 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 972054, + "thread": 18 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1140578, + "thread": 18 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1273799, + "thread": 15 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1410822, + "thread": 30 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1622707, + "thread": 21 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1748745, + "thread": 5 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 1908002, + "thread": 8 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2071933, + "thread": 13 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2226047, + "thread": 24 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2361032, + "thread": 21 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2544952, + "thread": 22 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2738198, + "thread": 12 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 2835992, + "thread": 7 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 3031189, + "thread": 23 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 3151815, + "thread": 1 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 3300243, + "thread": 27 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 3457121, + "thread": 21 + } + }, + { + "amount": "69.352766283", + "slot": { + "period": 3777100, + "thread": 11 + } + }, + { + "amount": "69.352766281", + "slot": { + "period": 3793122, + "thread": 16 + } + } + ], + "AU1uCeW9pqwpNWhLQXfXxcfGeBnMANXuNrNinyfxJFw5yM96ppKd": [ + { + "amount": "238.220107619", + "slot": { + "period": 103618, + "thread": 12 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 174215, + "thread": 7 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 490634, + "thread": 23 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 542787, + "thread": 22 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 673963, + "thread": 4 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 940049, + "thread": 3 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1102865, + "thread": 21 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1236957, + "thread": 11 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1423888, + "thread": 8 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1616756, + "thread": 10 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1679188, + "thread": 3 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 1871370, + "thread": 14 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2087842, + "thread": 19 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2207769, + "thread": 17 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2448536, + "thread": 27 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2554802, + "thread": 9 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2705852, + "thread": 3 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2928291, + "thread": 2 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 2973011, + "thread": 6 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 3285130, + "thread": 13 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 3292545, + "thread": 10 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 3596821, + "thread": 12 + } + }, + { + "amount": "238.220107619", + "slot": { + "period": 3739525, + "thread": 28 + } + }, + { + "amount": "238.220107623", + "slot": { + "period": 3902151, + "thread": 26 + } + } + ], + "AU1uEm5RdYxqAQd3yQPgg5gUwiHAR8S3p8uh1bYL6qEfxV9WrdLK": [ + { + "amount": "272.443733918", + "slot": { + "period": 23175, + "thread": 6 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 194846, + "thread": 30 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 441764, + "thread": 4 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 587542, + "thread": 1 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 750013, + "thread": 0 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 976593, + "thread": 11 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1095720, + "thread": 15 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1203339, + "thread": 9 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1370678, + "thread": 16 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1638794, + "thread": 15 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1753193, + "thread": 9 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 1896501, + "thread": 15 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2119651, + "thread": 14 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2221274, + "thread": 10 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2440894, + "thread": 6 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2597518, + "thread": 18 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2750418, + "thread": 7 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 2931979, + "thread": 16 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 3030560, + "thread": 16 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 3151287, + "thread": 4 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 3402270, + "thread": 23 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 3556278, + "thread": 22 + } + }, + { + "amount": "272.443733918", + "slot": { + "period": 3645700, + "thread": 18 + } + }, + { + "amount": "272.443733910", + "slot": { + "period": 3822667, + "thread": 21 + } + } + ], + "AU1uFEciZiuRbgoKgWmvSnUcFFPqqMdv21cts75Ja6Q6CFJzL7vM": [ + { + "amount": "93.115960608", + "slot": { + "period": 88839, + "thread": 5 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 297858, + "thread": 30 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 358525, + "thread": 15 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 583793, + "thread": 26 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 686916, + "thread": 24 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 942607, + "thread": 2 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1074914, + "thread": 11 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1197593, + "thread": 3 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1372620, + "thread": 26 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1544878, + "thread": 26 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1727816, + "thread": 5 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 1811068, + "thread": 17 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2089515, + "thread": 6 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2216416, + "thread": 22 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2380663, + "thread": 16 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2478895, + "thread": 20 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2685217, + "thread": 28 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 2883790, + "thread": 22 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 3047969, + "thread": 5 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 3215634, + "thread": 13 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 3326661, + "thread": 17 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 3470200, + "thread": 14 + } + }, + { + "amount": "93.115960608", + "slot": { + "period": 3646747, + "thread": 15 + } + }, + { + "amount": "93.115960605", + "slot": { + "period": 3848799, + "thread": 25 + } + } + ], + "AU1uFdbeq27iEprAyMuQ7HKrvx9y5eVPD6sugqikyByqi8YBVchf": [ + { + "amount": "116.512788428", + "slot": { + "period": 41823, + "thread": 1 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 225629, + "thread": 17 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 329901, + "thread": 16 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 617975, + "thread": 4 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 680252, + "thread": 7 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 927817, + "thread": 20 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1077609, + "thread": 23 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1218273, + "thread": 19 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1430047, + "thread": 20 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1608298, + "thread": 28 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1798319, + "thread": 31 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 1835939, + "thread": 22 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2092532, + "thread": 27 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2233004, + "thread": 1 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2345606, + "thread": 15 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2583113, + "thread": 5 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2752824, + "thread": 11 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2821488, + "thread": 31 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 2971794, + "thread": 21 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 3169839, + "thread": 5 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 3304124, + "thread": 29 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 3488587, + "thread": 1 + } + }, + { + "amount": "116.512788428", + "slot": { + "period": 3641853, + "thread": 5 + } + }, + { + "amount": "116.512788433", + "slot": { + "period": 3902925, + "thread": 27 + } + } + ], + "AU1uHNtmTU9TDvDQ6yyy51MzYi7yGi8AxhpSPJ2Kgrxxgc8J4MrW": [ + { + "amount": "87.745635427", + "slot": { + "period": 88702, + "thread": 23 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 200986, + "thread": 29 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 381358, + "thread": 17 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 520613, + "thread": 26 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 678614, + "thread": 3 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 891964, + "thread": 21 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1139312, + "thread": 31 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1241747, + "thread": 30 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1329841, + "thread": 0 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1578188, + "thread": 13 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1661834, + "thread": 30 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 1942944, + "thread": 7 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2143463, + "thread": 8 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2166826, + "thread": 25 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2312049, + "thread": 28 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2490600, + "thread": 8 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2625148, + "thread": 28 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 2941271, + "thread": 14 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 3106931, + "thread": 26 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 3225639, + "thread": 22 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 3328396, + "thread": 15 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 3460268, + "thread": 5 + } + }, + { + "amount": "87.745635427", + "slot": { + "period": 3664860, + "thread": 27 + } + }, + { + "amount": "87.745635434", + "slot": { + "period": 3916817, + "thread": 9 + } + } + ], + "AU1uHVJWG2DS472evvYUYxu2EF1SQDAoLczsXRpr3g6VX4qJ1ysP": [ + { + "amount": "108.593033568", + "slot": { + "period": 94694, + "thread": 20 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 211187, + "thread": 31 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 455591, + "thread": 25 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 522619, + "thread": 10 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 781043, + "thread": 19 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 887448, + "thread": 22 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1140364, + "thread": 28 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1242912, + "thread": 8 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1392793, + "thread": 19 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1488039, + "thread": 8 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1687682, + "thread": 23 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1900714, + "thread": 23 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 1997398, + "thread": 11 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2163612, + "thread": 15 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2399413, + "thread": 5 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2570688, + "thread": 24 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2696556, + "thread": 2 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2842763, + "thread": 26 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 2965822, + "thread": 25 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 3164063, + "thread": 14 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 3449973, + "thread": 19 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 3550874, + "thread": 26 + } + }, + { + "amount": "108.593033568", + "slot": { + "period": 3647186, + "thread": 15 + } + }, + { + "amount": "108.593033569", + "slot": { + "period": 3789994, + "thread": 19 + } + } + ], + "AU1uHnu6c7SMVrxfCf9Qe73kxRu4h9S2ZsHUtyypTj7CNFb8YYgE": [ + { + "amount": "77.742332968", + "slot": { + "period": 148727, + "thread": 19 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 202571, + "thread": 21 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 337767, + "thread": 31 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 648035, + "thread": 17 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 694052, + "thread": 12 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 868565, + "thread": 14 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1098097, + "thread": 4 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1303764, + "thread": 1 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1412892, + "thread": 3 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1541995, + "thread": 2 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1649927, + "thread": 23 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 1937074, + "thread": 21 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2116445, + "thread": 14 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2180591, + "thread": 19 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2424688, + "thread": 2 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2548911, + "thread": 5 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2681882, + "thread": 2 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2871487, + "thread": 13 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 2960570, + "thread": 30 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 3274450, + "thread": 1 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 3306125, + "thread": 2 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 3593808, + "thread": 7 + } + }, + { + "amount": "77.742332968", + "slot": { + "period": 3653429, + "thread": 4 + } + }, + { + "amount": "77.742332977", + "slot": { + "period": 3794392, + "thread": 21 + } + } + ], + "AU1uL5TPiE2Jzf7125KGu7aCFFZMTqNsnrhJhQSzJ2kPBa2PHKMd": [ + { + "amount": "379.683851961", + "slot": { + "period": 106315, + "thread": 29 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 215235, + "thread": 13 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 336238, + "thread": 28 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 624551, + "thread": 28 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 796130, + "thread": 0 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 927833, + "thread": 22 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 991112, + "thread": 8 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 1220728, + "thread": 21 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 1428000, + "thread": 3 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 1609657, + "thread": 17 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 1772215, + "thread": 11 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 1854068, + "thread": 11 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2064879, + "thread": 27 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2213822, + "thread": 25 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2449180, + "thread": 29 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2549749, + "thread": 10 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2776195, + "thread": 17 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2880419, + "thread": 6 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 2969137, + "thread": 23 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 3217657, + "thread": 17 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 3377887, + "thread": 5 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 3467172, + "thread": 8 + } + }, + { + "amount": "379.683851961", + "slot": { + "period": 3647337, + "thread": 20 + } + }, + { + "amount": "379.683851957", + "slot": { + "period": 3809111, + "thread": 17 + } + } + ], + "AU1uLW9my5yt1K2eMZzUqDkcjbqA8CrxXpwE5recT1bWVDDsLYqj": [ + { + "amount": "376.609119410", + "slot": { + "period": 45518, + "thread": 15 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 288339, + "thread": 14 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 402841, + "thread": 17 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 582368, + "thread": 13 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 719871, + "thread": 16 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 856835, + "thread": 30 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1063068, + "thread": 3 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1261655, + "thread": 11 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1392283, + "thread": 19 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1621140, + "thread": 28 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1728181, + "thread": 13 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 1915992, + "thread": 4 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2041850, + "thread": 9 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2225072, + "thread": 4 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2366124, + "thread": 26 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2463413, + "thread": 30 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2660025, + "thread": 15 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 2823351, + "thread": 21 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 3079754, + "thread": 15 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 3234291, + "thread": 13 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 3333122, + "thread": 31 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 3572220, + "thread": 28 + } + }, + { + "amount": "376.609119410", + "slot": { + "period": 3693046, + "thread": 8 + } + }, + { + "amount": "376.609119420", + "slot": { + "period": 3822013, + "thread": 1 + } + } + ], + "AU1uLi4NT21xQWhGwYgaEJRvD3NTmd2tj9SAgfWN9rmpEttkGngG": [ + { + "amount": "100.995344416", + "slot": { + "period": 144999, + "thread": 2 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 246330, + "thread": 20 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 481775, + "thread": 0 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 523444, + "thread": 22 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 683892, + "thread": 7 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 834206, + "thread": 4 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1104819, + "thread": 8 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1317580, + "thread": 13 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1450067, + "thread": 11 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1500500, + "thread": 1 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1697154, + "thread": 11 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 1884353, + "thread": 24 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2133157, + "thread": 27 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2199737, + "thread": 21 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2393719, + "thread": 28 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2582248, + "thread": 25 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2678542, + "thread": 30 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 2826093, + "thread": 24 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 3064468, + "thread": 17 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 3214224, + "thread": 28 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 3338646, + "thread": 20 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 3598233, + "thread": 28 + } + }, + { + "amount": "100.995344416", + "slot": { + "period": 3675516, + "thread": 22 + } + }, + { + "amount": "100.995344417", + "slot": { + "period": 3920578, + "thread": 12 + } + } + ], + "AU1uM64ycBoA5Bcg2i2A1g8fyZcE7EggtHJUnQ2Bd6TBVgyTHqhG": [ + { + "amount": "102.678622940", + "slot": { + "period": 143407, + "thread": 12 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 275310, + "thread": 18 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 355188, + "thread": 16 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 606022, + "thread": 20 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 716904, + "thread": 21 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 957103, + "thread": 14 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1013480, + "thread": 18 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1185189, + "thread": 2 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1361413, + "thread": 18 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1636798, + "thread": 13 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1666072, + "thread": 5 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 1856193, + "thread": 6 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2076976, + "thread": 21 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2249861, + "thread": 13 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2347713, + "thread": 28 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2616517, + "thread": 3 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2628024, + "thread": 11 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 2847802, + "thread": 6 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 3068232, + "thread": 25 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 3222718, + "thread": 1 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 3339176, + "thread": 1 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 3593295, + "thread": 6 + } + }, + { + "amount": "102.678622940", + "slot": { + "period": 3659556, + "thread": 11 + } + }, + { + "amount": "102.678622950", + "slot": { + "period": 3937325, + "thread": 30 + } + } + ], + "AU1uNLqiXxqT1FqcXGvXSNj1eAgpgq7Wcv5zVZb574Yrr6ChAmJ2": [ + { + "amount": "140.198010206", + "slot": { + "period": 107143, + "thread": 28 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 246589, + "thread": 26 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 407958, + "thread": 1 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 652845, + "thread": 4 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 765960, + "thread": 30 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 907724, + "thread": 17 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1061660, + "thread": 24 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1287528, + "thread": 5 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1420104, + "thread": 4 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1509670, + "thread": 8 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1697543, + "thread": 18 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 1877619, + "thread": 11 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2101577, + "thread": 24 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2223593, + "thread": 30 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2399327, + "thread": 7 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2540980, + "thread": 26 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2745151, + "thread": 23 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 2871974, + "thread": 12 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 3036428, + "thread": 15 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 3129401, + "thread": 24 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 3449774, + "thread": 25 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 3572752, + "thread": 18 + } + }, + { + "amount": "140.198010206", + "slot": { + "period": 3619454, + "thread": 15 + } + }, + { + "amount": "140.198010203", + "slot": { + "period": 3790711, + "thread": 5 + } + } + ], + "AU1uNqsiaQpVuRkuwRgXqak17Je4dWKNYXUXnVvhowT7H1LscZET": [ + { + "amount": "306.729857355", + "slot": { + "period": 165931, + "thread": 24 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 303345, + "thread": 25 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 326058, + "thread": 21 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 566102, + "thread": 4 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 710324, + "thread": 12 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 910209, + "thread": 10 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1119792, + "thread": 8 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1210163, + "thread": 19 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1380678, + "thread": 27 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1569501, + "thread": 14 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1685800, + "thread": 15 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1818775, + "thread": 3 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 1980799, + "thread": 21 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 2246417, + "thread": 12 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 2326354, + "thread": 3 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 2621002, + "thread": 31 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 2767584, + "thread": 22 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 2896423, + "thread": 19 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 3002819, + "thread": 8 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 3123720, + "thread": 6 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 3378314, + "thread": 10 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 3531597, + "thread": 8 + } + }, + { + "amount": "306.729857355", + "slot": { + "period": 3657088, + "thread": 13 + } + }, + { + "amount": "306.729857344", + "slot": { + "period": 3945568, + "thread": 12 + } + } + ], + "AU1uQMZRYnMp5hz7pvhxCiTj8KFGtY8ti4ccRjFwFgWc7o7BK1eQ": [ + { + "amount": "712.184658187", + "slot": { + "period": 65741, + "thread": 21 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 274275, + "thread": 23 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 362194, + "thread": 5 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 578592, + "thread": 28 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 665339, + "thread": 27 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 895218, + "thread": 31 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1126435, + "thread": 14 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1303313, + "thread": 2 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1458377, + "thread": 21 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1603326, + "thread": 15 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1679189, + "thread": 18 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 1901516, + "thread": 22 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2100742, + "thread": 18 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2195631, + "thread": 21 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2335902, + "thread": 14 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2492312, + "thread": 30 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2765056, + "thread": 3 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 2886985, + "thread": 20 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 3109196, + "thread": 8 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 3151121, + "thread": 21 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 3315052, + "thread": 26 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 3462142, + "thread": 20 + } + }, + { + "amount": "712.184658187", + "slot": { + "period": 3761674, + "thread": 15 + } + }, + { + "amount": "712.184658191", + "slot": { + "period": 3868991, + "thread": 11 + } + } + ], + "AU1uQXrKZs8utCxsYeeyYY6spKQ2jxrQcikjM41mau4QuLjbr7om": [ + { + "amount": "159.395025792", + "slot": { + "period": 112719, + "thread": 2 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 221660, + "thread": 4 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 393133, + "thread": 30 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 560838, + "thread": 30 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 787586, + "thread": 16 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 922849, + "thread": 15 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1123993, + "thread": 23 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1252105, + "thread": 22 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1325900, + "thread": 16 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1484376, + "thread": 17 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1692831, + "thread": 14 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 1905917, + "thread": 19 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2097623, + "thread": 31 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2285046, + "thread": 27 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2335461, + "thread": 22 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2576383, + "thread": 10 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2624881, + "thread": 1 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2891292, + "thread": 28 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 2978458, + "thread": 22 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 3274558, + "thread": 31 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 3349655, + "thread": 29 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 3545304, + "thread": 1 + } + }, + { + "amount": "159.395025792", + "slot": { + "period": 3716281, + "thread": 27 + } + }, + { + "amount": "159.395025780", + "slot": { + "period": 3835069, + "thread": 14 + } + } + ], + "AU1uQzR8ZwhbHBjLMLAByjfZfS7Zvc6Z1kCqZyFaUY3vMiVBGq6C": [ + { + "amount": "121.605662231", + "slot": { + "period": 29035, + "thread": 3 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 285575, + "thread": 20 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 356755, + "thread": 19 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 511796, + "thread": 14 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 744233, + "thread": 12 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 840658, + "thread": 4 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1036418, + "thread": 9 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1278886, + "thread": 3 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1392089, + "thread": 10 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1562981, + "thread": 17 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1789124, + "thread": 27 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 1830112, + "thread": 10 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2004298, + "thread": 4 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2255767, + "thread": 6 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2430106, + "thread": 22 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2558447, + "thread": 11 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2631013, + "thread": 6 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 2909066, + "thread": 0 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 3082840, + "thread": 11 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 3267326, + "thread": 26 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 3362615, + "thread": 23 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 3598023, + "thread": 2 + } + }, + { + "amount": "121.605662231", + "slot": { + "period": 3777764, + "thread": 23 + } + }, + { + "amount": "121.605662222", + "slot": { + "period": 3822996, + "thread": 10 + } + } + ], + "AU1uS5DexeCApgAgZB2YRrqGWXxLwYhLz8TjeJDSt14EAdt5mjZe": [ + { + "amount": "193.889447323", + "slot": { + "period": 90004, + "thread": 0 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 307522, + "thread": 4 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 365377, + "thread": 13 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 567155, + "thread": 23 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 762889, + "thread": 21 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 934083, + "thread": 30 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 990920, + "thread": 13 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 1243310, + "thread": 14 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 1366733, + "thread": 10 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 1485009, + "thread": 31 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 1713674, + "thread": 31 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 1917903, + "thread": 2 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2078894, + "thread": 16 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2281001, + "thread": 13 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2407633, + "thread": 23 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2544231, + "thread": 8 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2689396, + "thread": 15 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2935328, + "thread": 3 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 2973668, + "thread": 23 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 3277933, + "thread": 16 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 3449372, + "thread": 15 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 3559424, + "thread": 17 + } + }, + { + "amount": "193.889447323", + "slot": { + "period": 3729950, + "thread": 10 + } + }, + { + "amount": "193.889447324", + "slot": { + "period": 3833233, + "thread": 24 + } + } + ], + "AU1uSXUiAkPHJHkycgbF8QxSP7iKDr5EtuKDXV5N4XSJGv7BsaPY": [ + { + "amount": "122.324665508", + "slot": { + "period": 10887, + "thread": 24 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 216850, + "thread": 5 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 478758, + "thread": 31 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 650241, + "thread": 10 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 670369, + "thread": 8 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 845659, + "thread": 13 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1072478, + "thread": 9 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1283325, + "thread": 11 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1360296, + "thread": 14 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1572185, + "thread": 17 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1652087, + "thread": 18 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 1854086, + "thread": 26 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2034500, + "thread": 23 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2177753, + "thread": 31 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2372000, + "thread": 2 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2467554, + "thread": 22 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2755740, + "thread": 7 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 2848434, + "thread": 14 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 3044804, + "thread": 22 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 3215363, + "thread": 10 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 3295824, + "thread": 9 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 3594128, + "thread": 0 + } + }, + { + "amount": "122.324665508", + "slot": { + "period": 3688900, + "thread": 22 + } + }, + { + "amount": "122.324665500", + "slot": { + "period": 3936298, + "thread": 18 + } + } + ], + "AU1uT6PZEyYisC5bD5EH5jLBP5mZjEFq6oY4DowfbrQeKrQy2YWC": [ + { + "amount": "103.349447848", + "slot": { + "period": 32868, + "thread": 29 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 288662, + "thread": 14 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 415901, + "thread": 27 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 624156, + "thread": 12 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 696865, + "thread": 2 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 876061, + "thread": 9 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1095696, + "thread": 2 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1263139, + "thread": 28 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1396083, + "thread": 14 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1606970, + "thread": 10 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1653812, + "thread": 5 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 1864735, + "thread": 5 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2014136, + "thread": 7 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2144640, + "thread": 1 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2410592, + "thread": 3 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2619649, + "thread": 17 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2692740, + "thread": 21 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 2806286, + "thread": 29 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 3049720, + "thread": 18 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 3271454, + "thread": 6 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 3429593, + "thread": 12 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 3603531, + "thread": 28 + } + }, + { + "amount": "103.349447848", + "slot": { + "period": 3699718, + "thread": 7 + } + }, + { + "amount": "103.349447844", + "slot": { + "period": 3934313, + "thread": 28 + } + } + ], + "AU1uTLFEeYj9f1UvhkBSDt41jTw6cpotyMfohYDnQeSJ2EfuKyLN": [ + { + "amount": "226.324077470", + "slot": { + "period": 100376, + "thread": 0 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 197953, + "thread": 14 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 390509, + "thread": 18 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 541377, + "thread": 3 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 806107, + "thread": 21 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 911764, + "thread": 8 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 987802, + "thread": 21 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 1198200, + "thread": 7 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 1418678, + "thread": 8 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 1534848, + "thread": 1 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 1772731, + "thread": 3 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 1935732, + "thread": 21 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2117041, + "thread": 31 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2245859, + "thread": 16 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2370034, + "thread": 14 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2554438, + "thread": 23 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2755420, + "thread": 6 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 2912122, + "thread": 1 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 3105447, + "thread": 0 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 3153704, + "thread": 22 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 3360747, + "thread": 27 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 3500956, + "thread": 23 + } + }, + { + "amount": "226.324077470", + "slot": { + "period": 3728168, + "thread": 5 + } + }, + { + "amount": "226.324077475", + "slot": { + "period": 3901628, + "thread": 22 + } + } + ], + "AU1uTkG7aWNqswsWxb9JUU1mF67tSU4WVujaDHNXqX8Ay9TnYp33": [ + { + "amount": "121.303029223", + "slot": { + "period": 112019, + "thread": 22 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 231919, + "thread": 9 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 466145, + "thread": 12 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 622170, + "thread": 6 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 806568, + "thread": 22 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 821602, + "thread": 18 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1024176, + "thread": 2 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1234673, + "thread": 17 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1457096, + "thread": 9 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1641855, + "thread": 3 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1720225, + "thread": 17 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 1846095, + "thread": 28 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2121642, + "thread": 30 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2152442, + "thread": 13 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2297942, + "thread": 16 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2593255, + "thread": 1 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2736396, + "thread": 25 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2795140, + "thread": 20 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 2965521, + "thread": 14 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 3229105, + "thread": 15 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 3310864, + "thread": 5 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 3565948, + "thread": 21 + } + }, + { + "amount": "121.303029223", + "slot": { + "period": 3710597, + "thread": 3 + } + }, + { + "amount": "121.303029215", + "slot": { + "period": 3878519, + "thread": 12 + } + } + ], + "AU1uTqN2vGJGM9M1CjXCLwDpgG4b1aQuZUPZWo9e9qnTPTguDEQs": [ + { + "amount": "189.611721440", + "slot": { + "period": 149235, + "thread": 18 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 231727, + "thread": 13 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 330447, + "thread": 1 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 596261, + "thread": 25 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 680222, + "thread": 26 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 824109, + "thread": 14 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1140709, + "thread": 24 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1208529, + "thread": 23 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1403323, + "thread": 19 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1485302, + "thread": 11 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1689152, + "thread": 16 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 1942468, + "thread": 29 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2094393, + "thread": 31 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2144888, + "thread": 3 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2440506, + "thread": 24 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2533598, + "thread": 24 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2737828, + "thread": 14 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 2889901, + "thread": 31 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 3019766, + "thread": 10 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 3230678, + "thread": 10 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 3402523, + "thread": 18 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 3512765, + "thread": 19 + } + }, + { + "amount": "189.611721440", + "slot": { + "period": 3659450, + "thread": 15 + } + }, + { + "amount": "189.611721450", + "slot": { + "period": 3849230, + "thread": 25 + } + } + ], + "AU1uVE1EEmtjhQ65zHUBX4oGC5NeezbwNFdYNLijAyZ8tCkcFEyJ": [ + { + "amount": "21771.944541667", + "slot": { + "period": 138533, + "thread": 10 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 263197, + "thread": 15 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 399467, + "thread": 10 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 528909, + "thread": 3 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 760686, + "thread": 4 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 823649, + "thread": 7 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1045500, + "thread": 17 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1215394, + "thread": 25 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1463214, + "thread": 1 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1498987, + "thread": 26 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1677626, + "thread": 0 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1858236, + "thread": 10 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 1991518, + "thread": 12 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 2294081, + "thread": 14 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 2335995, + "thread": 31 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 2564711, + "thread": 11 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 2760858, + "thread": 25 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 2803814, + "thread": 1 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 3098173, + "thread": 27 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 3270976, + "thread": 5 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 3316977, + "thread": 7 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 3454989, + "thread": 21 + } + }, + { + "amount": "21771.944541667", + "slot": { + "period": 3706706, + "thread": 8 + } + }, + { + "amount": "21771.944541659", + "slot": { + "period": 3848125, + "thread": 17 + } + } + ], + "AU1uX5t73oogDEHg79epWyDa2ZtUKNhEmPbveVjFG5ZaEonbNhu6": [ + { + "amount": "115.243370900", + "slot": { + "period": 36892, + "thread": 9 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 182480, + "thread": 5 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 486729, + "thread": 12 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 649875, + "thread": 23 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 725699, + "thread": 28 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 878596, + "thread": 12 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1016566, + "thread": 15 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1265871, + "thread": 18 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1359831, + "thread": 6 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1645007, + "thread": 12 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1733336, + "thread": 15 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1826478, + "thread": 26 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 1985537, + "thread": 18 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2165234, + "thread": 10 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2433994, + "thread": 12 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2469621, + "thread": 15 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2759676, + "thread": 23 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2912578, + "thread": 25 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 2962851, + "thread": 23 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 3242440, + "thread": 16 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 3400929, + "thread": 11 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 3530697, + "thread": 3 + } + }, + { + "amount": "115.243370900", + "slot": { + "period": 3732621, + "thread": 20 + } + }, + { + "amount": "115.243370893", + "slot": { + "period": 3942649, + "thread": 21 + } + } + ], + "AU1uZ9kXBCFLACWvqFVthHqw6ZxDPHuUEBabyUQxPBUKZFomK9oG": [ + { + "amount": "158.560469724", + "slot": { + "period": 134317, + "thread": 2 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 255154, + "thread": 16 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 379540, + "thread": 3 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 619634, + "thread": 8 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 687328, + "thread": 19 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 915280, + "thread": 8 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1118548, + "thread": 18 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1226010, + "thread": 1 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1410813, + "thread": 10 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1504184, + "thread": 19 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1731948, + "thread": 13 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 1831193, + "thread": 18 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2011838, + "thread": 16 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2210054, + "thread": 4 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2305995, + "thread": 17 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2551323, + "thread": 27 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2699075, + "thread": 28 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 2793488, + "thread": 21 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 3034391, + "thread": 19 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 3278698, + "thread": 18 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 3444835, + "thread": 24 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 3492437, + "thread": 4 + } + }, + { + "amount": "158.560469724", + "slot": { + "period": 3644886, + "thread": 24 + } + }, + { + "amount": "158.560469728", + "slot": { + "period": 3826731, + "thread": 21 + } + } + ], + "AU1uZdSL3BmqP4y76CvJYEd59hNqigAkiL1vo45KpGTRXV82Q39h": [ + { + "amount": "175.146521333", + "slot": { + "period": 36367, + "thread": 9 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 179176, + "thread": 12 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 340201, + "thread": 3 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 533158, + "thread": 17 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 752277, + "thread": 1 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 871148, + "thread": 9 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1123903, + "thread": 19 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1150595, + "thread": 5 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1342319, + "thread": 2 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1538090, + "thread": 22 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1769028, + "thread": 21 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 1926576, + "thread": 24 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2019055, + "thread": 23 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2187556, + "thread": 14 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2451736, + "thread": 10 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2571320, + "thread": 26 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2744438, + "thread": 2 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 2819019, + "thread": 9 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 3076708, + "thread": 8 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 3258638, + "thread": 3 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 3419553, + "thread": 15 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 3484417, + "thread": 15 + } + }, + { + "amount": "175.146521333", + "slot": { + "period": 3759282, + "thread": 11 + } + }, + { + "amount": "175.146521331", + "slot": { + "period": 3780797, + "thread": 21 + } + } + ], + "AU1uZeJosyQWfs8p6F1Rw9wDVpgTnCuQSor3egNN9ns973WVERwo": [ + { + "amount": "186.211027691", + "slot": { + "period": 89381, + "thread": 1 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 259647, + "thread": 5 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 408690, + "thread": 12 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 523447, + "thread": 4 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 665441, + "thread": 15 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 851249, + "thread": 18 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 993447, + "thread": 12 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 1287213, + "thread": 7 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 1420941, + "thread": 21 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 1480245, + "thread": 29 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 1784661, + "thread": 11 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 1853682, + "thread": 9 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2117732, + "thread": 28 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2281976, + "thread": 26 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2358966, + "thread": 7 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2518004, + "thread": 13 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2663201, + "thread": 14 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2833250, + "thread": 21 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 2959040, + "thread": 13 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 3147100, + "thread": 25 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 3419720, + "thread": 19 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 3548816, + "thread": 9 + } + }, + { + "amount": "186.211027691", + "slot": { + "period": 3726729, + "thread": 0 + } + }, + { + "amount": "186.211027696", + "slot": { + "period": 3867938, + "thread": 19 + } + } + ], + "AU1uaWMehnjkyhAjESnwShE9K9AQmNWUSPE8DxuK7dk3Nw5JQacv": [ + { + "amount": "196.662969148", + "slot": { + "period": 160578, + "thread": 8 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 313658, + "thread": 2 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 421214, + "thread": 31 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 628911, + "thread": 15 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 662401, + "thread": 18 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 943905, + "thread": 1 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1107980, + "thread": 14 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1286061, + "thread": 11 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1410939, + "thread": 11 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1588893, + "thread": 22 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1714928, + "thread": 19 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 1880488, + "thread": 29 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2131617, + "thread": 5 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2218846, + "thread": 29 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2360346, + "thread": 30 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2542919, + "thread": 1 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2653968, + "thread": 15 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 2949811, + "thread": 29 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3068239, + "thread": 12 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3192635, + "thread": 3 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3373437, + "thread": 3 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3524966, + "thread": 19 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3707673, + "thread": 30 + } + }, + { + "amount": "196.662969148", + "slot": { + "period": 3917859, + "thread": 30 + } + } + ], + "AU1ubLuUe1Du215xSE67ppBbMkEmsqpPysi1iaaXfpiNG1zU36r": [ + { + "amount": "51.935441668", + "slot": { + "period": 93028, + "thread": 21 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 174345, + "thread": 26 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 352393, + "thread": 8 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 505366, + "thread": 9 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 670836, + "thread": 9 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 941161, + "thread": 14 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1141726, + "thread": 28 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1250659, + "thread": 18 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1461492, + "thread": 23 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1563955, + "thread": 25 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1670392, + "thread": 1 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 1840757, + "thread": 6 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2071186, + "thread": 2 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2199626, + "thread": 11 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2348231, + "thread": 17 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2485276, + "thread": 19 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2631061, + "thread": 29 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 2836696, + "thread": 9 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3021388, + "thread": 8 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3202781, + "thread": 19 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3308362, + "thread": 14 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3546068, + "thread": 15 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3631265, + "thread": 24 + } + }, + { + "amount": "51.935441668", + "slot": { + "period": 3800182, + "thread": 26 + } + } + ], + "AU1ubyj1jdFRKWgWS7imgsNsm26Cf8JmiQCMPTFTjg6NRtBYyWtm": [ + { + "amount": "106.872652460", + "slot": { + "period": 87069, + "thread": 12 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 191378, + "thread": 28 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 367201, + "thread": 22 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 549879, + "thread": 30 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 684770, + "thread": 14 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 835805, + "thread": 27 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1033185, + "thread": 20 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1303546, + "thread": 7 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1433890, + "thread": 21 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1632731, + "thread": 17 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1726078, + "thread": 9 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 1972960, + "thread": 30 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2001726, + "thread": 10 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2146786, + "thread": 1 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2434685, + "thread": 25 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2614604, + "thread": 0 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2686935, + "thread": 25 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 2792724, + "thread": 14 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 3081816, + "thread": 26 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 3135322, + "thread": 31 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 3369270, + "thread": 27 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 3464775, + "thread": 4 + } + }, + { + "amount": "106.872652460", + "slot": { + "period": 3721462, + "thread": 10 + } + }, + { + "amount": "106.872652451", + "slot": { + "period": 3859176, + "thread": 23 + } + } + ], + "AU1udTAaVd1do6LeLtYqv8jBdXgHPfRZnLwK1n2rstwLnDuycsnr": [ + { + "amount": "514.398818067", + "slot": { + "period": 150335, + "thread": 9 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 233721, + "thread": 31 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 349165, + "thread": 1 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 639307, + "thread": 27 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 740895, + "thread": 5 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 821979, + "thread": 21 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1141348, + "thread": 10 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1266879, + "thread": 24 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1404468, + "thread": 16 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1504667, + "thread": 14 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1745667, + "thread": 17 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 1933249, + "thread": 31 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2087912, + "thread": 30 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2156315, + "thread": 23 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2366900, + "thread": 27 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2539725, + "thread": 26 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2748318, + "thread": 3 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 2918546, + "thread": 18 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 3000843, + "thread": 4 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 3153878, + "thread": 8 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 3308544, + "thread": 30 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 3462492, + "thread": 18 + } + }, + { + "amount": "514.398818067", + "slot": { + "period": 3774451, + "thread": 28 + } + }, + { + "amount": "514.398818075", + "slot": { + "period": 3852004, + "thread": 16 + } + } + ], + "AU1udenshp3q1DYEbxgx2LeoX8cESW6LCyykUoXtYA4AcEJ8bCPn": [ + { + "amount": "135.598642911", + "slot": { + "period": 16175, + "thread": 14 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 308906, + "thread": 3 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 404508, + "thread": 31 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 521202, + "thread": 13 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 730654, + "thread": 20 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 911470, + "thread": 16 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1121368, + "thread": 0 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1173662, + "thread": 8 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1427791, + "thread": 8 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1618260, + "thread": 15 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1779548, + "thread": 24 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 1861443, + "thread": 26 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2078076, + "thread": 19 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2218528, + "thread": 29 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2447107, + "thread": 28 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2465315, + "thread": 27 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2732005, + "thread": 18 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 2928823, + "thread": 28 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 3078466, + "thread": 5 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 3209209, + "thread": 1 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 3445536, + "thread": 27 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 3605642, + "thread": 20 + } + }, + { + "amount": "135.598642911", + "slot": { + "period": 3641382, + "thread": 29 + } + }, + { + "amount": "135.598642907", + "slot": { + "period": 3919063, + "thread": 25 + } + } + ], + "AU1ueHguP6LYeB7YqvvTS8cUxvhp7bidQEt1DLxLiajC49bLAoUb": [ + { + "amount": "345.746419956", + "slot": { + "period": 100922, + "thread": 10 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 222148, + "thread": 9 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 478095, + "thread": 14 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 559667, + "thread": 27 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 703511, + "thread": 22 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 969019, + "thread": 18 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1050940, + "thread": 6 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1278587, + "thread": 4 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1401990, + "thread": 16 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1635142, + "thread": 8 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1734783, + "thread": 17 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 1944513, + "thread": 22 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2126169, + "thread": 9 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2243502, + "thread": 21 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2398184, + "thread": 29 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2467178, + "thread": 19 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2789647, + "thread": 20 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2843498, + "thread": 5 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 2953916, + "thread": 31 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 3170310, + "thread": 22 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 3295144, + "thread": 15 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 3539859, + "thread": 19 + } + }, + { + "amount": "345.746419956", + "slot": { + "period": 3745503, + "thread": 20 + } + }, + { + "amount": "345.746419953", + "slot": { + "period": 3876173, + "thread": 15 + } + } + ], + "AU1ufufG9cBR92bo3bxmqvXkEz3wzWEoLwcVRQ7Zk1g4oRXHACoo": [ + { + "amount": "540.976623382", + "slot": { + "period": 63902, + "thread": 17 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 239972, + "thread": 9 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 481986, + "thread": 4 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 605034, + "thread": 15 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 772202, + "thread": 25 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 960416, + "thread": 23 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1111753, + "thread": 17 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1223246, + "thread": 3 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1467486, + "thread": 11 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1551855, + "thread": 6 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1783757, + "thread": 4 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 1851489, + "thread": 5 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2056360, + "thread": 13 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2203375, + "thread": 27 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2407988, + "thread": 22 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2537487, + "thread": 3 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2740333, + "thread": 1 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 2833064, + "thread": 16 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 3016924, + "thread": 29 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 3146493, + "thread": 2 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 3341601, + "thread": 13 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 3461934, + "thread": 4 + } + }, + { + "amount": "540.976623382", + "slot": { + "period": 3778178, + "thread": 18 + } + }, + { + "amount": "540.976623370", + "slot": { + "period": 3842535, + "thread": 25 + } + } + ], + "AU1ugWikivsBqDujq2GEbYhJLcd9uoFZR6M9gVxGhyorv3hT6bsd": [ + { + "amount": "235.875641285", + "slot": { + "period": 44510, + "thread": 0 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 219554, + "thread": 5 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 468899, + "thread": 1 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 534864, + "thread": 16 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 814194, + "thread": 3 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 822097, + "thread": 8 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1056560, + "thread": 26 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1227568, + "thread": 14 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1467979, + "thread": 25 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1613112, + "thread": 3 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1679355, + "thread": 27 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 1959874, + "thread": 31 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2143323, + "thread": 8 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2152628, + "thread": 3 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2365658, + "thread": 6 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2573177, + "thread": 0 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2729467, + "thread": 30 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2815889, + "thread": 2 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 2986609, + "thread": 28 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 3181482, + "thread": 28 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 3391337, + "thread": 31 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 3589695, + "thread": 25 + } + }, + { + "amount": "235.875641285", + "slot": { + "period": 3765270, + "thread": 7 + } + }, + { + "amount": "235.875641292", + "slot": { + "period": 3781400, + "thread": 18 + } + } + ], + "AU1ugbDf1iXdCkEDyxuYgay9tCmJtSq6Pz3xnug8asWiyxUrDKoe": [ + { + "amount": "232.039138204", + "slot": { + "period": 127839, + "thread": 10 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 261629, + "thread": 13 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 337338, + "thread": 12 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 591435, + "thread": 11 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 709926, + "thread": 13 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 969944, + "thread": 16 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1013008, + "thread": 15 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1172871, + "thread": 29 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1354131, + "thread": 18 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1644311, + "thread": 0 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1719490, + "thread": 17 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 1936766, + "thread": 22 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2043464, + "thread": 30 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2242313, + "thread": 10 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2321622, + "thread": 12 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2512611, + "thread": 15 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2726630, + "thread": 2 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2947401, + "thread": 30 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 2955336, + "thread": 5 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 3239700, + "thread": 6 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 3296523, + "thread": 25 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 3542236, + "thread": 28 + } + }, + { + "amount": "232.039138204", + "slot": { + "period": 3662309, + "thread": 23 + } + }, + { + "amount": "232.039138199", + "slot": { + "period": 3878034, + "thread": 12 + } + } + ], + "AU1ugzpf5wbzoyjzb3pkqW2TzvSCEYKm6eoWLHoFAVWnfEouCfoQ": [ + { + "amount": "316.939755608", + "slot": { + "period": 82872, + "thread": 14 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 293918, + "thread": 31 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 326925, + "thread": 19 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 627025, + "thread": 4 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 750867, + "thread": 10 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 979562, + "thread": 9 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1124895, + "thread": 4 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1300032, + "thread": 16 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1441944, + "thread": 18 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1524623, + "thread": 9 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1715829, + "thread": 15 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 1955417, + "thread": 9 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2101493, + "thread": 17 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2285356, + "thread": 24 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2364724, + "thread": 14 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2477078, + "thread": 24 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2645178, + "thread": 12 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2797945, + "thread": 20 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 2960018, + "thread": 13 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 3278363, + "thread": 4 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 3324179, + "thread": 28 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 3564569, + "thread": 6 + } + }, + { + "amount": "316.939755608", + "slot": { + "period": 3683346, + "thread": 24 + } + }, + { + "amount": "316.939755620", + "slot": { + "period": 3861366, + "thread": 27 + } + } + ], + "AU1ui2m1GKtVXeRufnxsjrCJcLnuLXhkP3q6rVRv3JKv7vQuGtam": [ + { + "amount": "540.494098304", + "slot": { + "period": 26556, + "thread": 19 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 283907, + "thread": 22 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 388078, + "thread": 26 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 579948, + "thread": 9 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 668667, + "thread": 27 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 913841, + "thread": 2 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1136786, + "thread": 15 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1208846, + "thread": 4 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1397002, + "thread": 14 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1561547, + "thread": 17 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1687506, + "thread": 2 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 1844261, + "thread": 26 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2044462, + "thread": 2 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2286353, + "thread": 7 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2415875, + "thread": 3 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2621320, + "thread": 16 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2653530, + "thread": 11 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2949666, + "thread": 19 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 2972162, + "thread": 31 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 3199269, + "thread": 16 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 3375282, + "thread": 31 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 3513153, + "thread": 4 + } + }, + { + "amount": "540.494098304", + "slot": { + "period": 3624321, + "thread": 14 + } + }, + { + "amount": "540.494098299", + "slot": { + "period": 3791370, + "thread": 25 + } + } + ], + "AU1uiWvCxw7qkW2Nz5DqqQWQ79Mp3Ax8hZUMFemRFKGB3J56rpp6": [ + { + "amount": "110.633218653", + "slot": { + "period": 88859, + "thread": 9 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 296025, + "thread": 18 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 469352, + "thread": 16 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 544270, + "thread": 27 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 685253, + "thread": 18 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 943076, + "thread": 7 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1087118, + "thread": 2 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1196428, + "thread": 29 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1373979, + "thread": 3 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1547583, + "thread": 11 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1788331, + "thread": 1 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 1921201, + "thread": 14 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2140615, + "thread": 29 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2168869, + "thread": 21 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2385034, + "thread": 10 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2489082, + "thread": 5 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2777849, + "thread": 22 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 2866057, + "thread": 25 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 3100539, + "thread": 20 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 3122513, + "thread": 17 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 3293958, + "thread": 24 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 3466553, + "thread": 15 + } + }, + { + "amount": "110.633218653", + "slot": { + "period": 3670867, + "thread": 19 + } + }, + { + "amount": "110.633218642", + "slot": { + "period": 3790480, + "thread": 10 + } + } + ], + "AU1uidXxjQpKkJFaN661vHSMWaJz8FfM9RB9yU91A3ZVtgj24bMy": [ + { + "amount": "116.346331525", + "slot": { + "period": 35133, + "thread": 31 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 235729, + "thread": 20 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 473884, + "thread": 5 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 601385, + "thread": 12 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 698588, + "thread": 26 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 857247, + "thread": 17 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 986989, + "thread": 13 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 1280272, + "thread": 2 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 1330528, + "thread": 13 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 1561672, + "thread": 10 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 1743893, + "thread": 26 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 1924084, + "thread": 0 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2076125, + "thread": 30 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2284034, + "thread": 15 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2424536, + "thread": 13 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2473642, + "thread": 1 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2766760, + "thread": 21 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2855901, + "thread": 26 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 2999491, + "thread": 4 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 3159740, + "thread": 12 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 3328859, + "thread": 14 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 3513458, + "thread": 16 + } + }, + { + "amount": "116.346331525", + "slot": { + "period": 3633521, + "thread": 27 + } + }, + { + "amount": "116.346331531", + "slot": { + "period": 3882872, + "thread": 12 + } + } + ], + "AU1uj2HkXGHWuNaxhsEA3hjnTrD4NHxiiM7uEUx8vAn2PwuPiH6X": [ + { + "amount": "284.738260587", + "slot": { + "period": 89657, + "thread": 14 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 279020, + "thread": 13 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 436004, + "thread": 8 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 642723, + "thread": 23 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 743138, + "thread": 6 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 934819, + "thread": 31 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1126305, + "thread": 5 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1184677, + "thread": 25 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1436915, + "thread": 24 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1530226, + "thread": 2 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1741882, + "thread": 17 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 1878861, + "thread": 26 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2112876, + "thread": 17 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2150565, + "thread": 7 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2302164, + "thread": 14 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2566986, + "thread": 25 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2676187, + "thread": 4 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 2946750, + "thread": 22 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 3043902, + "thread": 0 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 3248677, + "thread": 29 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 3443937, + "thread": 11 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 3481107, + "thread": 30 + } + }, + { + "amount": "284.738260587", + "slot": { + "period": 3774697, + "thread": 17 + } + }, + { + "amount": "284.738260592", + "slot": { + "period": 3852227, + "thread": 4 + } + } + ], + "AU1ukKzmLc6U4tyzsucTWYe7wLjkeMc7mXGRwWAj4KP4eKMbNitF": [ + { + "amount": "243.661813674", + "slot": { + "period": 116244, + "thread": 26 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 314930, + "thread": 10 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 432085, + "thread": 12 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 557360, + "thread": 5 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 686262, + "thread": 29 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 937686, + "thread": 14 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1010625, + "thread": 31 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1289275, + "thread": 2 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1342979, + "thread": 6 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1624155, + "thread": 16 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1655151, + "thread": 29 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 1880053, + "thread": 11 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2036564, + "thread": 5 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2252545, + "thread": 13 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2353766, + "thread": 1 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2571726, + "thread": 21 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2729201, + "thread": 27 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2919334, + "thread": 3 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 2982918, + "thread": 2 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 3262634, + "thread": 30 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 3328351, + "thread": 22 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 3463905, + "thread": 28 + } + }, + { + "amount": "243.661813674", + "slot": { + "period": 3762663, + "thread": 19 + } + }, + { + "amount": "243.661813673", + "slot": { + "period": 3864697, + "thread": 24 + } + } + ], + "AU1ukwSUToonwYNr41w2BYte6Co35GXG6iXS3iRkJxibf7tjiK3c": [ + { + "amount": "163.437780297", + "slot": { + "period": 25280, + "thread": 25 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 244461, + "thread": 12 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 406921, + "thread": 26 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 600415, + "thread": 12 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 733154, + "thread": 29 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 881518, + "thread": 27 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1045922, + "thread": 13 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1202322, + "thread": 8 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1396563, + "thread": 8 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1620945, + "thread": 19 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1695000, + "thread": 9 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 1961158, + "thread": 17 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2057214, + "thread": 15 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2191275, + "thread": 6 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2415575, + "thread": 21 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2547785, + "thread": 24 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2751549, + "thread": 7 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2809251, + "thread": 26 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 2985776, + "thread": 7 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 3134894, + "thread": 6 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 3378753, + "thread": 13 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 3578324, + "thread": 18 + } + }, + { + "amount": "163.437780297", + "slot": { + "period": 3732624, + "thread": 0 + } + }, + { + "amount": "163.437780306", + "slot": { + "period": 3881357, + "thread": 3 + } + } + ], + "AU1un6kH2V1F1Sti3ypUeq7RNVNr7KjLVRWxUKVFZE7UrqUdvz74": [ + { + "amount": "121.309610577", + "slot": { + "period": 30175, + "thread": 0 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 322802, + "thread": 13 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 351244, + "thread": 23 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 553121, + "thread": 31 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 781890, + "thread": 22 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 907649, + "thread": 28 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1043112, + "thread": 15 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1257049, + "thread": 28 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1332314, + "thread": 18 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1630537, + "thread": 5 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1779131, + "thread": 26 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1860579, + "thread": 9 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 1990883, + "thread": 26 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2186288, + "thread": 19 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2446527, + "thread": 14 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2534279, + "thread": 25 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2629437, + "thread": 7 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2941878, + "thread": 0 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 2976696, + "thread": 7 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 3277361, + "thread": 17 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 3323441, + "thread": 31 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 3531129, + "thread": 4 + } + }, + { + "amount": "121.309610577", + "slot": { + "period": 3708288, + "thread": 14 + } + }, + { + "amount": "121.309610580", + "slot": { + "period": 3937228, + "thread": 17 + } + } + ], + "AU1unz7xvPP6NeYgaJcUWsJoXHVJUTGUepPNPVXjgVsB9C8eq8zW": [ + { + "amount": "452.775140561", + "slot": { + "period": 11405, + "thread": 29 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 295708, + "thread": 24 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 405179, + "thread": 21 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 619077, + "thread": 17 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 774137, + "thread": 28 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 955505, + "thread": 6 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1011626, + "thread": 17 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1234515, + "thread": 1 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1382819, + "thread": 4 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1600619, + "thread": 12 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1806926, + "thread": 25 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 1910935, + "thread": 13 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2037917, + "thread": 30 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2243676, + "thread": 25 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2408293, + "thread": 30 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2549401, + "thread": 17 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2758981, + "thread": 21 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 2817245, + "thread": 31 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 3046508, + "thread": 14 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 3170400, + "thread": 9 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 3363501, + "thread": 24 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 3536183, + "thread": 4 + } + }, + { + "amount": "452.775140561", + "slot": { + "period": 3652682, + "thread": 21 + } + }, + { + "amount": "452.775140571", + "slot": { + "period": 3793234, + "thread": 14 + } + } + ], + "AU1up7z3LwHhRA99SxrySAftapBBpe9k1agHFzEpicqBA6UBUEWK": [ + { + "amount": "332.058443748", + "slot": { + "period": 38440, + "thread": 23 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 257145, + "thread": 27 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 453559, + "thread": 22 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 494710, + "thread": 16 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 735346, + "thread": 3 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 882322, + "thread": 7 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1146538, + "thread": 7 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1173534, + "thread": 27 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1343854, + "thread": 20 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1549048, + "thread": 4 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1786852, + "thread": 18 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 1845545, + "thread": 26 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2073799, + "thread": 8 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2285070, + "thread": 23 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2419509, + "thread": 18 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2484060, + "thread": 2 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2708207, + "thread": 0 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 2953051, + "thread": 13 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 3015693, + "thread": 7 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 3160724, + "thread": 19 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 3292619, + "thread": 25 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 3588324, + "thread": 1 + } + }, + { + "amount": "332.058443748", + "slot": { + "period": 3683399, + "thread": 4 + } + }, + { + "amount": "332.058443760", + "slot": { + "period": 3871461, + "thread": 10 + } + } + ], + "AU1usUd3ZGRUGif6NmxMe1UfTGVuH3yHTHk9MeMbfL1Ejj9jysZV": [ + { + "amount": "729.166666667", + "slot": { + "period": 34729, + "thread": 3 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 319269, + "thread": 15 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 421533, + "thread": 17 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 516619, + "thread": 3 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 774675, + "thread": 22 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 895145, + "thread": 8 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1007274, + "thread": 21 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1241175, + "thread": 5 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1384181, + "thread": 11 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1573006, + "thread": 11 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1688001, + "thread": 9 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 1971222, + "thread": 5 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2128106, + "thread": 4 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2233194, + "thread": 11 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2397882, + "thread": 19 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2532433, + "thread": 3 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2714808, + "thread": 7 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2945242, + "thread": 12 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 2996549, + "thread": 12 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3250731, + "thread": 21 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3309611, + "thread": 2 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3507545, + "thread": 29 + } + }, + { + "amount": "729.166666667", + "slot": { + "period": 3683239, + "thread": 10 + } + }, + { + "amount": "729.166666659", + "slot": { + "period": 3809103, + "thread": 9 + } + } + ], + "AU1utJpdt7XkKACVq9VgoLye4zVGd7oWRYyhRwCxyQ8txWPEPo3t": [ + { + "amount": "72.554230040", + "slot": { + "period": 167105, + "thread": 0 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 280127, + "thread": 2 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 415706, + "thread": 23 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 544482, + "thread": 7 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 743297, + "thread": 2 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 843195, + "thread": 2 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 988211, + "thread": 24 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 1180871, + "thread": 31 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 1390871, + "thread": 24 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 1551024, + "thread": 20 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 1668956, + "thread": 11 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 1848017, + "thread": 1 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2113433, + "thread": 22 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2156270, + "thread": 24 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2329172, + "thread": 9 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2554736, + "thread": 22 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2633908, + "thread": 17 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 2912804, + "thread": 26 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3040459, + "thread": 19 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3201343, + "thread": 13 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3356115, + "thread": 19 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3582030, + "thread": 20 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3758478, + "thread": 19 + } + }, + { + "amount": "72.554230040", + "slot": { + "period": 3811826, + "thread": 9 + } + } + ], + "AU1uteWXXdg7fC4HoGTxfpQk9SinqPKvhiFigyHcBkc731H3dQcu": [ + { + "amount": "406.706464935", + "slot": { + "period": 56383, + "thread": 30 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 299324, + "thread": 15 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 347236, + "thread": 9 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 608829, + "thread": 7 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 753355, + "thread": 22 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 922348, + "thread": 21 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1015782, + "thread": 12 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1187128, + "thread": 2 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1337545, + "thread": 15 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1488007, + "thread": 7 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1728426, + "thread": 11 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1867221, + "thread": 29 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 1983769, + "thread": 30 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2229017, + "thread": 30 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2436002, + "thread": 5 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2558563, + "thread": 29 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2696027, + "thread": 26 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2937998, + "thread": 15 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 2987342, + "thread": 14 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 3145175, + "thread": 30 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 3317429, + "thread": 4 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 3477244, + "thread": 29 + } + }, + { + "amount": "406.706464935", + "slot": { + "period": 3644643, + "thread": 26 + } + }, + { + "amount": "406.706464940", + "slot": { + "period": 3915961, + "thread": 28 + } + } + ], + "AU1uufBsjnBrTY5SswD6LL4QH25Up2j6mMUbPkBuhnNp9J2C9KCX": [ + { + "amount": "61.396612228", + "slot": { + "period": 67723, + "thread": 17 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 169544, + "thread": 31 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 378777, + "thread": 13 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 572365, + "thread": 15 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 701483, + "thread": 12 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 932427, + "thread": 31 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 994785, + "thread": 16 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 1160629, + "thread": 31 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 1368753, + "thread": 8 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 1620113, + "thread": 3 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 1654069, + "thread": 28 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 1876888, + "thread": 7 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2050171, + "thread": 17 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2203453, + "thread": 20 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2357310, + "thread": 11 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2546893, + "thread": 24 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2717096, + "thread": 12 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 2928596, + "thread": 2 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 3004964, + "thread": 20 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 3234652, + "thread": 22 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 3418657, + "thread": 13 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 3591397, + "thread": 27 + } + }, + { + "amount": "61.396612228", + "slot": { + "period": 3774779, + "thread": 11 + } + }, + { + "amount": "61.396612220", + "slot": { + "period": 3938061, + "thread": 23 + } + } + ], + "AU1uuheeFZ9BjPqndEzxtJVtLFBECVMGH6gqAGuwJVghDRXRMjhE": [ + { + "amount": "264.351558008", + "slot": { + "period": 29208, + "thread": 25 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 304464, + "thread": 4 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 385121, + "thread": 7 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 627893, + "thread": 19 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 722135, + "thread": 28 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 932596, + "thread": 29 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1062283, + "thread": 28 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1160302, + "thread": 23 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1386989, + "thread": 8 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1573230, + "thread": 3 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1801052, + "thread": 30 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 1949298, + "thread": 9 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2076372, + "thread": 31 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2274078, + "thread": 9 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2354517, + "thread": 5 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2470049, + "thread": 17 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2647948, + "thread": 0 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 2858952, + "thread": 20 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 3080033, + "thread": 8 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 3131648, + "thread": 13 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 3367745, + "thread": 10 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 3589245, + "thread": 13 + } + }, + { + "amount": "264.351558008", + "slot": { + "period": 3741948, + "thread": 28 + } + }, + { + "amount": "264.351558006", + "slot": { + "period": 3834880, + "thread": 30 + } + } + ], + "AU1uunWcnZxxwhjnHXcfMY1Z4ddjfRWX65DhBkCpRBmvaUQDDE6i": [ + { + "amount": "263.289043319", + "slot": { + "period": 59482, + "thread": 11 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 310672, + "thread": 1 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 449666, + "thread": 18 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 496871, + "thread": 6 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 762628, + "thread": 22 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 899040, + "thread": 3 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1122360, + "thread": 6 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1199274, + "thread": 8 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1417099, + "thread": 16 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1629174, + "thread": 11 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1802494, + "thread": 16 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 1924375, + "thread": 2 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2076146, + "thread": 7 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2244704, + "thread": 14 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2369290, + "thread": 4 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2546179, + "thread": 11 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2718748, + "thread": 13 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 2879666, + "thread": 23 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 3057493, + "thread": 25 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 3142311, + "thread": 15 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 3316157, + "thread": 18 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 3564989, + "thread": 29 + } + }, + { + "amount": "263.289043319", + "slot": { + "period": 3736303, + "thread": 7 + } + }, + { + "amount": "263.289043328", + "slot": { + "period": 3851328, + "thread": 14 + } + } + ], + "AU1uuvWBgiaW7VASnFqsgFEYF6JbUAMknCZwao55ujjBRgPhMFj8": [ + { + "amount": "203.553252023", + "slot": { + "period": 87659, + "thread": 19 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 260037, + "thread": 8 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 489261, + "thread": 31 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 636020, + "thread": 28 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 676208, + "thread": 29 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 859760, + "thread": 6 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1097316, + "thread": 20 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1278962, + "thread": 11 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1409247, + "thread": 25 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1552520, + "thread": 20 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1730975, + "thread": 29 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 1886588, + "thread": 3 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2132244, + "thread": 31 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2145601, + "thread": 15 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2302007, + "thread": 17 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2503250, + "thread": 11 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2733061, + "thread": 7 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 2826857, + "thread": 2 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 3104840, + "thread": 31 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 3238070, + "thread": 19 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 3305887, + "thread": 8 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 3470722, + "thread": 9 + } + }, + { + "amount": "203.553252023", + "slot": { + "period": 3622352, + "thread": 8 + } + }, + { + "amount": "203.553252014", + "slot": { + "period": 3825817, + "thread": 17 + } + } + ], + "AU1uv1i5NkwWMkAyH66Py9HKB7FN37tL1bp2giuE6oBvnB1A2WKw": [ + { + "amount": "379.115182278", + "slot": { + "period": 132719, + "thread": 3 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 218996, + "thread": 0 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 420608, + "thread": 13 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 526240, + "thread": 29 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 791234, + "thread": 15 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 922673, + "thread": 19 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1057425, + "thread": 29 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1237653, + "thread": 15 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1330624, + "thread": 29 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1520155, + "thread": 10 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1698003, + "thread": 26 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 1916177, + "thread": 25 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2126797, + "thread": 21 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2165295, + "thread": 18 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2349998, + "thread": 0 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2596830, + "thread": 13 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2677752, + "thread": 11 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2937124, + "thread": 28 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 2974404, + "thread": 0 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 3169225, + "thread": 21 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 3302359, + "thread": 28 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 3488307, + "thread": 2 + } + }, + { + "amount": "379.115182278", + "slot": { + "period": 3673430, + "thread": 13 + } + }, + { + "amount": "379.115182279", + "slot": { + "period": 3790981, + "thread": 28 + } + } + ], + "AU1uxZLpGh7ZZQwmx4NKhQjGU8BwtBpWrnf62CfEjk7715NTmr7i": [ + { + "amount": "138.690811096", + "slot": { + "period": 77099, + "thread": 4 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 202090, + "thread": 11 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 347908, + "thread": 26 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 516479, + "thread": 14 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 752553, + "thread": 19 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 886474, + "thread": 2 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1099544, + "thread": 4 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1220510, + "thread": 29 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1369346, + "thread": 4 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1615872, + "thread": 28 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1732004, + "thread": 10 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 1863017, + "thread": 18 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2130520, + "thread": 2 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2288251, + "thread": 1 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2376736, + "thread": 14 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2472329, + "thread": 18 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2662104, + "thread": 18 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2829144, + "thread": 18 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 2954521, + "thread": 23 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 3255876, + "thread": 9 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 3336657, + "thread": 18 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 3535665, + "thread": 24 + } + }, + { + "amount": "138.690811096", + "slot": { + "period": 3751771, + "thread": 8 + } + }, + { + "amount": "138.690811093", + "slot": { + "period": 3850072, + "thread": 15 + } + } + ], + "AU1uxoM1uJA1SgTGSNbeFyhN1n58G972s2ZP4VRjSHwgTNu3UKqZ": [ + { + "amount": "306.217379732", + "slot": { + "period": 59853, + "thread": 0 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 300092, + "thread": 29 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 429840, + "thread": 8 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 597797, + "thread": 14 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 691284, + "thread": 1 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 911728, + "thread": 14 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1083958, + "thread": 26 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1205997, + "thread": 23 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1409004, + "thread": 6 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1485139, + "thread": 14 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1656706, + "thread": 13 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 1968242, + "thread": 16 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2063828, + "thread": 13 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2163709, + "thread": 21 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2435481, + "thread": 6 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2554536, + "thread": 16 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2728532, + "thread": 5 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 2896299, + "thread": 5 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 3095294, + "thread": 13 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 3254104, + "thread": 22 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 3304146, + "thread": 27 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 3609429, + "thread": 8 + } + }, + { + "amount": "306.217379732", + "slot": { + "period": 3765655, + "thread": 25 + } + }, + { + "amount": "306.217379722", + "slot": { + "period": 3840223, + "thread": 24 + } + } + ], + "AU1uxoRoG6u9WTu8R7jVuqN2sqbzrNoWiBJyDquTeSzUetJzQ16f": [ + { + "amount": "76.828016546", + "slot": { + "period": 110172, + "thread": 30 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 252205, + "thread": 14 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 366175, + "thread": 17 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 588289, + "thread": 6 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 780486, + "thread": 13 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 884057, + "thread": 10 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1050726, + "thread": 3 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1309026, + "thread": 17 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1439639, + "thread": 17 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1504035, + "thread": 24 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1706479, + "thread": 18 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 1914975, + "thread": 29 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2001357, + "thread": 12 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2145381, + "thread": 7 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2422954, + "thread": 3 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2572250, + "thread": 14 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2763493, + "thread": 20 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 2810203, + "thread": 12 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 3084960, + "thread": 1 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 3138460, + "thread": 25 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 3350316, + "thread": 26 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 3603235, + "thread": 0 + } + }, + { + "amount": "76.828016546", + "slot": { + "period": 3740658, + "thread": 11 + } + }, + { + "amount": "76.828016557", + "slot": { + "period": 3875640, + "thread": 1 + } + } + ], + "AU1uzMgG2yix45uTJ78fWArcuexKhiV8uWMpxBa79sJZDrAy5um8": [ + { + "amount": "237.075320005", + "slot": { + "period": 144226, + "thread": 18 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 245388, + "thread": 29 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 452706, + "thread": 31 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 603653, + "thread": 28 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 815568, + "thread": 6 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 845148, + "thread": 12 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1080264, + "thread": 9 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1305081, + "thread": 1 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1368338, + "thread": 26 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1525314, + "thread": 16 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1710782, + "thread": 9 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 1869187, + "thread": 13 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2046541, + "thread": 25 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2248227, + "thread": 9 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2429455, + "thread": 8 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2480106, + "thread": 12 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2697739, + "thread": 18 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2822958, + "thread": 0 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 2974824, + "thread": 24 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 3192377, + "thread": 11 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 3402609, + "thread": 6 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 3493081, + "thread": 4 + } + }, + { + "amount": "237.075320005", + "slot": { + "period": 3759503, + "thread": 12 + } + }, + { + "amount": "237.075320009", + "slot": { + "period": 3837290, + "thread": 19 + } + } + ], + "AU1uzUt6C2pGryxCK5rLMJaAe8RXf242zP6YpyooGQrzyCHY7pFc": [ + { + "amount": "452.227819105", + "slot": { + "period": 14247, + "thread": 15 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 286125, + "thread": 28 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 482576, + "thread": 29 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 510619, + "thread": 3 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 677061, + "thread": 28 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 902134, + "thread": 14 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1102735, + "thread": 1 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1272972, + "thread": 13 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1340843, + "thread": 29 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1603832, + "thread": 31 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1669370, + "thread": 29 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 1930032, + "thread": 27 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2055783, + "thread": 1 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2188607, + "thread": 6 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2300044, + "thread": 9 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2579064, + "thread": 11 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2734409, + "thread": 8 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 2936939, + "thread": 5 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 3023321, + "thread": 23 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 3232047, + "thread": 22 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 3359933, + "thread": 8 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 3485791, + "thread": 21 + } + }, + { + "amount": "452.227819105", + "slot": { + "period": 3727754, + "thread": 20 + } + }, + { + "amount": "452.227819112", + "slot": { + "period": 3788729, + "thread": 26 + } + } + ], + "AU1v1H47KUWasivEvTFKSyHyX6PVCtTpKMuaAY3Pa1YhhiVanLga": [ + { + "amount": "249.856801625", + "slot": { + "period": 126865, + "thread": 27 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 240198, + "thread": 9 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 410397, + "thread": 16 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 593393, + "thread": 22 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 689692, + "thread": 8 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 852110, + "thread": 28 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1015209, + "thread": 2 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1185862, + "thread": 8 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1335359, + "thread": 18 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1538100, + "thread": 9 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1804410, + "thread": 9 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 1919644, + "thread": 26 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2137752, + "thread": 27 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2258498, + "thread": 14 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2398231, + "thread": 0 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2536007, + "thread": 25 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2708635, + "thread": 30 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2910951, + "thread": 21 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 2963637, + "thread": 26 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 3193779, + "thread": 10 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 3314015, + "thread": 5 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 3472061, + "thread": 28 + } + }, + { + "amount": "249.856801625", + "slot": { + "period": 3676054, + "thread": 22 + } + }, + { + "amount": "249.856801634", + "slot": { + "period": 3892982, + "thread": 22 + } + } + ], + "AU1v2HqETEgoxciXTNyAsXdn4t1Xrr3fgfTSs2pFbkb9bVKR4RDo": [ + { + "amount": "145.400268794", + "slot": { + "period": 128648, + "thread": 4 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 192991, + "thread": 29 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 353171, + "thread": 13 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 557242, + "thread": 28 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 657238, + "thread": 30 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 921654, + "thread": 2 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1060560, + "thread": 7 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1226084, + "thread": 15 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1357527, + "thread": 14 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1608725, + "thread": 28 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1705715, + "thread": 26 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 1820264, + "thread": 20 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2051473, + "thread": 31 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2202329, + "thread": 0 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2399826, + "thread": 1 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2560528, + "thread": 12 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2768743, + "thread": 16 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 2946049, + "thread": 23 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 3036228, + "thread": 4 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 3168758, + "thread": 31 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 3343786, + "thread": 30 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 3504530, + "thread": 28 + } + }, + { + "amount": "145.400268794", + "slot": { + "period": 3721248, + "thread": 22 + } + }, + { + "amount": "145.400268796", + "slot": { + "period": 3870698, + "thread": 17 + } + } + ], + "AU1v2RUfvUyhsgP8meKep6m45kEUfRtsEdz7P5XiDfNxqF9EULjJ": [ + { + "amount": "143.702488246", + "slot": { + "period": 120194, + "thread": 17 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 323798, + "thread": 17 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 390140, + "thread": 11 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 518130, + "thread": 26 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 810530, + "thread": 5 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 935778, + "thread": 15 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1037789, + "thread": 22 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1197046, + "thread": 6 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1339163, + "thread": 8 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1598897, + "thread": 20 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1771144, + "thread": 19 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 1831266, + "thread": 27 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2073488, + "thread": 16 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2173841, + "thread": 19 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2448689, + "thread": 16 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2581243, + "thread": 4 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2684591, + "thread": 24 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 2856587, + "thread": 22 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 3049868, + "thread": 12 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 3221660, + "thread": 10 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 3371666, + "thread": 11 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 3539206, + "thread": 20 + } + }, + { + "amount": "143.702488246", + "slot": { + "period": 3648681, + "thread": 6 + } + }, + { + "amount": "143.702488255", + "slot": { + "period": 3834771, + "thread": 3 + } + } + ], + "AU1v4fxLi9fQhyzZGXpjEVf6vJaQZgJ5mP8DXXwVMQtcZpfmRHGJ": [ + { + "amount": "466.204492076", + "slot": { + "period": 27568, + "thread": 13 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 282322, + "thread": 27 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 490341, + "thread": 0 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 503583, + "thread": 9 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 714163, + "thread": 10 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 925313, + "thread": 6 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1044780, + "thread": 28 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1273290, + "thread": 4 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1368715, + "thread": 31 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1582439, + "thread": 2 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1724259, + "thread": 7 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1860108, + "thread": 18 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 1990893, + "thread": 23 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 2232368, + "thread": 22 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 2344716, + "thread": 29 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 2601531, + "thread": 20 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 2783297, + "thread": 13 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 2828076, + "thread": 21 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 3079098, + "thread": 7 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 3181399, + "thread": 14 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 3327475, + "thread": 28 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 3570848, + "thread": 24 + } + }, + { + "amount": "466.204492076", + "slot": { + "period": 3682830, + "thread": 31 + } + }, + { + "amount": "466.204492070", + "slot": { + "period": 3917133, + "thread": 26 + } + } + ], + "AU1v4jkGtPSHGKDyAJAw9DKWJuSYdKVpTRVq1uMnTMphyRa5jv7s": [ + { + "amount": "484.682713323", + "slot": { + "period": 110440, + "thread": 21 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 249071, + "thread": 11 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 430146, + "thread": 30 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 592684, + "thread": 14 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 666437, + "thread": 11 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 962098, + "thread": 8 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 994453, + "thread": 10 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 1274224, + "thread": 24 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 1360062, + "thread": 27 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 1639442, + "thread": 17 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 1747356, + "thread": 20 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 1899026, + "thread": 14 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2012015, + "thread": 28 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2183510, + "thread": 30 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2451630, + "thread": 22 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2486934, + "thread": 5 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2722192, + "thread": 10 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 2896278, + "thread": 14 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 3042248, + "thread": 22 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 3155776, + "thread": 30 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 3398406, + "thread": 29 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 3548960, + "thread": 2 + } + }, + { + "amount": "484.682713323", + "slot": { + "period": 3735801, + "thread": 5 + } + }, + { + "amount": "484.682713315", + "slot": { + "period": 3785775, + "thread": 0 + } + } + ], + "AU1v5RyntwnBKzyhzmsLFaek9wPqEKRUjLDhcEgvJNzatFiNjewr": [ + { + "amount": "61.842054964", + "slot": { + "period": 67845, + "thread": 3 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 270107, + "thread": 11 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 431035, + "thread": 23 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 580481, + "thread": 22 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 704487, + "thread": 12 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 910088, + "thread": 14 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1072276, + "thread": 6 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1314307, + "thread": 4 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1448757, + "thread": 24 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1582454, + "thread": 28 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1759699, + "thread": 2 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 1821052, + "thread": 28 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2143117, + "thread": 5 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2219503, + "thread": 2 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2419052, + "thread": 22 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2487480, + "thread": 7 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2627889, + "thread": 30 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 2942977, + "thread": 25 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 3082547, + "thread": 1 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 3158021, + "thread": 12 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 3370478, + "thread": 4 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 3575387, + "thread": 2 + } + }, + { + "amount": "61.842054964", + "slot": { + "period": 3640495, + "thread": 10 + } + }, + { + "amount": "61.842054973", + "slot": { + "period": 3847096, + "thread": 0 + } + } + ], + "AU1v5j32NtG35p3D7dgfJy2wDNTMzqUXShSq67AgoMQyPYqzBw5o": [ + { + "amount": "369.507058146", + "slot": { + "period": 37112, + "thread": 24 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 291549, + "thread": 31 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 357415, + "thread": 7 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 650267, + "thread": 14 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 786728, + "thread": 8 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 859989, + "thread": 1 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1112630, + "thread": 14 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1313409, + "thread": 14 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1399892, + "thread": 1 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1546528, + "thread": 25 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1738721, + "thread": 8 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 1882717, + "thread": 26 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2103174, + "thread": 19 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2189673, + "thread": 2 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2383414, + "thread": 0 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2577117, + "thread": 25 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2713498, + "thread": 7 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 2796446, + "thread": 29 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 3094521, + "thread": 10 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 3219094, + "thread": 31 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 3312298, + "thread": 13 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 3472893, + "thread": 27 + } + }, + { + "amount": "369.507058146", + "slot": { + "period": 3721942, + "thread": 19 + } + }, + { + "amount": "369.507058134", + "slot": { + "period": 3837588, + "thread": 20 + } + } + ], + "AU1v6G29o3JziKnMsCoqPa6A2XqS3n8jWPgzkXKRAVrxvHzkPPBE": [ + { + "amount": "111.620791794", + "slot": { + "period": 90817, + "thread": 20 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 276495, + "thread": 15 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 392733, + "thread": 7 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 608858, + "thread": 4 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 771382, + "thread": 8 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 855188, + "thread": 8 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1088405, + "thread": 15 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1198465, + "thread": 2 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1407561, + "thread": 10 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1618542, + "thread": 28 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1710559, + "thread": 31 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 1964399, + "thread": 5 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2139380, + "thread": 22 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2192870, + "thread": 30 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2401992, + "thread": 25 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2540400, + "thread": 24 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2779081, + "thread": 6 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 2851862, + "thread": 10 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 3044011, + "thread": 9 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 3287714, + "thread": 0 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 3404930, + "thread": 18 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 3602600, + "thread": 13 + } + }, + { + "amount": "111.620791794", + "slot": { + "period": 3771174, + "thread": 3 + } + }, + { + "amount": "111.620791802", + "slot": { + "period": 3842593, + "thread": 25 + } + } + ], + "AU1v6Qm6t6kFB7aKsSsZUUDUCACmDEqm73ZQEngHZTNPrqnrsCr": [ + { + "amount": "68.199549206", + "slot": { + "period": 39325, + "thread": 2 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 305338, + "thread": 16 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 447781, + "thread": 23 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 494623, + "thread": 20 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 728140, + "thread": 19 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 968496, + "thread": 12 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1130058, + "thread": 21 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1158249, + "thread": 7 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1436662, + "thread": 18 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1597783, + "thread": 26 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1665769, + "thread": 21 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 1944399, + "thread": 8 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2091294, + "thread": 18 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2184117, + "thread": 3 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2336873, + "thread": 24 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2528553, + "thread": 6 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2720276, + "thread": 5 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 2926981, + "thread": 29 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 3000687, + "thread": 1 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 3138719, + "thread": 31 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 3339583, + "thread": 5 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 3546172, + "thread": 2 + } + }, + { + "amount": "68.199549206", + "slot": { + "period": 3654359, + "thread": 2 + } + }, + { + "amount": "68.199549197", + "slot": { + "period": 3902639, + "thread": 8 + } + } + ], + "AU1v6hoBaytExGT4oqs5swvjiZt6wGaPdrDWzGbX89ZvQmQbsaYy": [ + { + "amount": "196.024229015", + "slot": { + "period": 100005, + "thread": 17 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 277439, + "thread": 28 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 375396, + "thread": 15 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 558075, + "thread": 24 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 789851, + "thread": 1 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 827331, + "thread": 20 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1078754, + "thread": 27 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1168983, + "thread": 0 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1381746, + "thread": 7 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1542704, + "thread": 8 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1760793, + "thread": 30 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 1911988, + "thread": 6 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2094921, + "thread": 18 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2258964, + "thread": 18 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2420200, + "thread": 8 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2602155, + "thread": 28 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2658833, + "thread": 7 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 2839927, + "thread": 9 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 3079233, + "thread": 11 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 3166301, + "thread": 11 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 3321701, + "thread": 26 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 3609127, + "thread": 23 + } + }, + { + "amount": "196.024229015", + "slot": { + "period": 3757080, + "thread": 10 + } + }, + { + "amount": "196.024229016", + "slot": { + "period": 3926600, + "thread": 13 + } + } + ], + "AU1v6tkAdWobS2cqJhdDWSprdMYqxpDDA2eLRdpbBdDhvdnymbig": [ + { + "amount": "233.886490725", + "slot": { + "period": 94548, + "thread": 17 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 225834, + "thread": 8 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 420212, + "thread": 23 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 540200, + "thread": 28 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 744930, + "thread": 25 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 918684, + "thread": 10 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1138598, + "thread": 16 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1313399, + "thread": 0 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1422577, + "thread": 21 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1610254, + "thread": 13 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1798064, + "thread": 21 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1928137, + "thread": 20 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 1987518, + "thread": 8 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 2284514, + "thread": 8 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 2416995, + "thread": 28 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 2530687, + "thread": 27 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 2773497, + "thread": 31 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 2823323, + "thread": 6 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 3086310, + "thread": 23 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 3181234, + "thread": 26 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 3318027, + "thread": 0 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 3599505, + "thread": 12 + } + }, + { + "amount": "233.886490725", + "slot": { + "period": 3701521, + "thread": 4 + } + }, + { + "amount": "233.886490719", + "slot": { + "period": 3780122, + "thread": 30 + } + } + ], + "AU1v7nAWdNMiExRmNYAZwEoZiR9QRyufhMBEvzcvGgkUrQK7HwFb": [ + { + "amount": "380.621792232", + "slot": { + "period": 47950, + "thread": 2 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 261964, + "thread": 6 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 461720, + "thread": 16 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 630646, + "thread": 24 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 750456, + "thread": 3 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 893364, + "thread": 3 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1096215, + "thread": 24 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1223260, + "thread": 3 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1466417, + "thread": 13 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1521594, + "thread": 22 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1687569, + "thread": 14 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 1887817, + "thread": 5 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2078580, + "thread": 9 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2230901, + "thread": 21 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2458611, + "thread": 11 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2608262, + "thread": 18 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2704896, + "thread": 16 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 2833028, + "thread": 30 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 3055657, + "thread": 2 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 3200173, + "thread": 12 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 3318314, + "thread": 8 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 3507288, + "thread": 18 + } + }, + { + "amount": "380.621792232", + "slot": { + "period": 3712430, + "thread": 22 + } + }, + { + "amount": "380.621792225", + "slot": { + "period": 3850644, + "thread": 11 + } + } + ], + "AU1v8csqRh337aRQGxqQuqC1SjWHM743KH3tHN2tKYGnUZoKbE1n": [ + { + "amount": "60.875101353", + "slot": { + "period": 165138, + "thread": 27 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 261372, + "thread": 15 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 331862, + "thread": 21 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 603433, + "thread": 27 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 762317, + "thread": 15 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 866086, + "thread": 12 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 988022, + "thread": 14 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 1151137, + "thread": 13 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 1374947, + "thread": 1 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 1621652, + "thread": 23 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 1693995, + "thread": 14 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 1934309, + "thread": 31 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2015300, + "thread": 12 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2144892, + "thread": 7 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2402478, + "thread": 2 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2511506, + "thread": 15 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2683959, + "thread": 11 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 2843115, + "thread": 19 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 3022835, + "thread": 31 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 3132766, + "thread": 30 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 3373629, + "thread": 12 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 3511008, + "thread": 12 + } + }, + { + "amount": "60.875101353", + "slot": { + "period": 3667300, + "thread": 31 + } + }, + { + "amount": "60.875101364", + "slot": { + "period": 3887757, + "thread": 29 + } + } + ], + "AU1v8dqYBDzTrkf9heuFEiGfDEdH1yEjAaGMbXKMCwzoPNtek5fx": [ + { + "amount": "74.409183204", + "slot": { + "period": 85976, + "thread": 25 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 209170, + "thread": 23 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 438484, + "thread": 28 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 540096, + "thread": 6 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 756008, + "thread": 21 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 978894, + "thread": 8 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1129402, + "thread": 2 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1221796, + "thread": 21 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1462265, + "thread": 9 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1524632, + "thread": 9 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1791788, + "thread": 4 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 1849516, + "thread": 17 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2061419, + "thread": 10 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2240646, + "thread": 25 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2307825, + "thread": 8 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2515735, + "thread": 3 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2648958, + "thread": 25 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2799736, + "thread": 20 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 2960673, + "thread": 28 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 3233956, + "thread": 20 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 3381337, + "thread": 27 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 3537967, + "thread": 6 + } + }, + { + "amount": "74.409183204", + "slot": { + "period": 3768608, + "thread": 1 + } + }, + { + "amount": "74.409183214", + "slot": { + "period": 3887035, + "thread": 10 + } + } + ], + "AU1v8vnHjxsyEty9UGuPUc1mrvPZs2h284t1PHk3XXaR64h3A3up": [ + { + "amount": "78.370655370", + "slot": { + "period": 56856, + "thread": 7 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 295390, + "thread": 26 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 330038, + "thread": 23 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 532392, + "thread": 30 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 742918, + "thread": 9 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 921511, + "thread": 0 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1085334, + "thread": 4 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1292479, + "thread": 7 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1391447, + "thread": 29 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1563687, + "thread": 9 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1764920, + "thread": 23 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 1903832, + "thread": 8 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2035976, + "thread": 15 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2163752, + "thread": 11 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2296316, + "thread": 15 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2529478, + "thread": 26 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2683876, + "thread": 1 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2897369, + "thread": 15 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 2987631, + "thread": 23 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 3266605, + "thread": 16 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 3377174, + "thread": 10 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 3509526, + "thread": 13 + } + }, + { + "amount": "78.370655370", + "slot": { + "period": 3634444, + "thread": 31 + } + }, + { + "amount": "78.370655362", + "slot": { + "period": 3832716, + "thread": 4 + } + } + ], + "AU1v9CArVuzi7RGYwGWJrT6HuDGtEZzymWxGYVUTh8r8nGg51u5F": [ + { + "amount": "126.770029446", + "slot": { + "period": 33330, + "thread": 18 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 263251, + "thread": 2 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 340051, + "thread": 15 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 524009, + "thread": 27 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 738116, + "thread": 12 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 955087, + "thread": 12 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1031319, + "thread": 18 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1156082, + "thread": 4 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1320808, + "thread": 19 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1569849, + "thread": 19 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1753292, + "thread": 31 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 1895297, + "thread": 29 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2065999, + "thread": 21 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2212699, + "thread": 1 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2454324, + "thread": 26 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2510857, + "thread": 28 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2647663, + "thread": 7 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 2880633, + "thread": 26 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 3012011, + "thread": 31 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 3204115, + "thread": 13 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 3298501, + "thread": 9 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 3614923, + "thread": 10 + } + }, + { + "amount": "126.770029446", + "slot": { + "period": 3670452, + "thread": 4 + } + }, + { + "amount": "126.770029439", + "slot": { + "period": 3913688, + "thread": 8 + } + } + ], + "AU1v9dw9peXisifDYuCtbmPvpwYNerDpWeNEz1pvLqaWBC1682k6": [ + { + "amount": "114.530887817", + "slot": { + "period": 102777, + "thread": 11 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 256644, + "thread": 11 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 412276, + "thread": 17 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 623655, + "thread": 16 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 720530, + "thread": 19 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 937813, + "thread": 21 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1118071, + "thread": 26 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1173231, + "thread": 27 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1460959, + "thread": 14 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1593752, + "thread": 7 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1783279, + "thread": 6 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 1822348, + "thread": 6 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2097788, + "thread": 31 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2182125, + "thread": 12 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2372646, + "thread": 12 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2546602, + "thread": 10 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2658247, + "thread": 6 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2792363, + "thread": 16 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 2967887, + "thread": 27 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 3191323, + "thread": 15 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 3441109, + "thread": 23 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 3608351, + "thread": 19 + } + }, + { + "amount": "114.530887817", + "slot": { + "period": 3668154, + "thread": 21 + } + }, + { + "amount": "114.530887819", + "slot": { + "period": 3909023, + "thread": 30 + } + } + ], + "AU1vAbifoNtFeHSTvzzabhNM6NPtQwnx5FpwrVrvaz6tznKSif7a": [ + { + "amount": "235.448261254", + "slot": { + "period": 96089, + "thread": 29 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 207601, + "thread": 18 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 382171, + "thread": 15 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 501239, + "thread": 27 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 676090, + "thread": 0 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 977620, + "thread": 18 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1001969, + "thread": 28 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1287578, + "thread": 14 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1470314, + "thread": 31 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1520736, + "thread": 10 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1667493, + "thread": 1 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 1950383, + "thread": 22 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2012581, + "thread": 8 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2182035, + "thread": 2 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2389641, + "thread": 11 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2603293, + "thread": 7 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2659606, + "thread": 26 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 2861786, + "thread": 2 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 3111696, + "thread": 20 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 3172116, + "thread": 0 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 3440406, + "thread": 26 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 3580295, + "thread": 11 + } + }, + { + "amount": "235.448261254", + "slot": { + "period": 3667110, + "thread": 26 + } + }, + { + "amount": "235.448261255", + "slot": { + "period": 3927118, + "thread": 24 + } + } + ], + "AU1vAbuyp2CeEhcAtETsToBG3KYNVBqyKcvAT6bV47SrcasyWu36": [ + { + "amount": "84.493734971", + "slot": { + "period": 46751, + "thread": 30 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 217941, + "thread": 25 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 479515, + "thread": 12 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 597632, + "thread": 5 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 765139, + "thread": 10 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 943630, + "thread": 17 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1007995, + "thread": 14 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1301041, + "thread": 10 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1356306, + "thread": 8 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1490484, + "thread": 0 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1649235, + "thread": 20 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 1846679, + "thread": 20 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2115556, + "thread": 30 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2145100, + "thread": 0 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2350197, + "thread": 3 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2609125, + "thread": 23 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2720520, + "thread": 1 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 2934701, + "thread": 6 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 3059717, + "thread": 11 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 3274125, + "thread": 20 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 3316199, + "thread": 18 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 3476566, + "thread": 2 + } + }, + { + "amount": "84.493734971", + "slot": { + "period": 3685729, + "thread": 21 + } + }, + { + "amount": "84.493734969", + "slot": { + "period": 3906036, + "thread": 25 + } + } + ], + "AU1vAfd3wUWxYvYjM3gR7ZmtgDLo4HRLgKrVKuBGif5xHPxo1wJh": [ + { + "amount": "553.768325028", + "slot": { + "period": 38125, + "thread": 8 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 280013, + "thread": 27 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 401551, + "thread": 19 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 534418, + "thread": 30 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 764211, + "thread": 15 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 875738, + "thread": 18 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1000825, + "thread": 3 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1189299, + "thread": 4 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1322226, + "thread": 22 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1580536, + "thread": 2 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1749745, + "thread": 13 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 1887880, + "thread": 4 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2051347, + "thread": 19 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2220243, + "thread": 26 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2457986, + "thread": 31 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2573633, + "thread": 30 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2716506, + "thread": 4 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2810358, + "thread": 24 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 2970992, + "thread": 14 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 3201743, + "thread": 12 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 3415968, + "thread": 6 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 3524746, + "thread": 24 + } + }, + { + "amount": "553.768325028", + "slot": { + "period": 3698351, + "thread": 29 + } + }, + { + "amount": "553.768325024", + "slot": { + "period": 3803023, + "thread": 6 + } + } + ], + "AU1vArf9AgC7N13Uk7XgQain9Y7JRNWfnq6brE8B7jSpFWFwWoXN": [ + { + "amount": "587.999118139", + "slot": { + "period": 19579, + "thread": 22 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 305938, + "thread": 24 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 454525, + "thread": 29 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 596512, + "thread": 31 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 787193, + "thread": 6 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 840656, + "thread": 11 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1084127, + "thread": 29 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1209869, + "thread": 3 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1364099, + "thread": 7 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1523455, + "thread": 19 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1664030, + "thread": 27 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 1961225, + "thread": 9 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2078563, + "thread": 13 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2220837, + "thread": 8 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2414800, + "thread": 22 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2574403, + "thread": 18 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2653666, + "thread": 23 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2838789, + "thread": 31 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 2993432, + "thread": 10 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 3258969, + "thread": 4 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 3336679, + "thread": 6 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 3494606, + "thread": 10 + } + }, + { + "amount": "587.999118139", + "slot": { + "period": 3723931, + "thread": 30 + } + }, + { + "amount": "587.999118145", + "slot": { + "period": 3892584, + "thread": 6 + } + } + ], + "AU1vB73VvPqb4Fqcpk3R5SGGNHha37Q3FTswAS2i3LPbn3W7Xjez": [ + { + "amount": "121.242268631", + "slot": { + "period": 106156, + "thread": 15 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 299597, + "thread": 11 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 466846, + "thread": 23 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 511994, + "thread": 23 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 783969, + "thread": 3 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 875272, + "thread": 27 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1078459, + "thread": 16 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1159300, + "thread": 24 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1369199, + "thread": 20 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1494939, + "thread": 3 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1726502, + "thread": 23 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1824891, + "thread": 2 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 1990713, + "thread": 28 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 2235610, + "thread": 13 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 2318494, + "thread": 19 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 2494661, + "thread": 7 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 2689522, + "thread": 30 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 2812824, + "thread": 17 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 3109549, + "thread": 13 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 3211035, + "thread": 27 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 3319317, + "thread": 22 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 3589213, + "thread": 21 + } + }, + { + "amount": "121.242268631", + "slot": { + "period": 3710339, + "thread": 24 + } + }, + { + "amount": "121.242268629", + "slot": { + "period": 3903073, + "thread": 18 + } + } + ], + "AU1vBbVd4VJq23HVxeXyDYvJwtMZP51PjZjPQwfUfo3Zt9ogHTiL": [ + { + "amount": "103.612252325", + "slot": { + "period": 83884, + "thread": 20 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 272915, + "thread": 17 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 443432, + "thread": 1 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 565446, + "thread": 17 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 798050, + "thread": 11 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 907859, + "thread": 0 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1142604, + "thread": 15 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1202598, + "thread": 4 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1415126, + "thread": 19 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1555769, + "thread": 1 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1660717, + "thread": 15 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 1944971, + "thread": 5 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2133510, + "thread": 13 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2256183, + "thread": 7 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2434335, + "thread": 27 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2621882, + "thread": 17 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2639132, + "thread": 6 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2870406, + "thread": 4 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 2959473, + "thread": 0 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 3198846, + "thread": 26 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 3320035, + "thread": 5 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 3450990, + "thread": 27 + } + }, + { + "amount": "103.612252325", + "slot": { + "period": 3729135, + "thread": 30 + } + }, + { + "amount": "103.612252334", + "slot": { + "period": 3931734, + "thread": 29 + } + } + ], + "AU1vBqBaok2kqTPcRAsKQnmKoYPkhrA2PUMQobGKrDgHvxjsaWmS": [ + { + "amount": "95.878446299", + "slot": { + "period": 32477, + "thread": 24 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 203859, + "thread": 17 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 450811, + "thread": 26 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 597494, + "thread": 23 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 709009, + "thread": 28 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 868782, + "thread": 6 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1064015, + "thread": 4 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1164022, + "thread": 30 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1385367, + "thread": 21 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1570027, + "thread": 28 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1743857, + "thread": 17 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 1826912, + "thread": 13 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2114589, + "thread": 18 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2156863, + "thread": 14 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2361328, + "thread": 10 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2523736, + "thread": 13 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2716674, + "thread": 24 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 2840746, + "thread": 16 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 3002755, + "thread": 21 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 3159452, + "thread": 20 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 3375985, + "thread": 24 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 3565105, + "thread": 0 + } + }, + { + "amount": "95.878446299", + "slot": { + "period": 3661887, + "thread": 18 + } + }, + { + "amount": "95.878446310", + "slot": { + "period": 3833166, + "thread": 15 + } + } + ], + "AU1vBrzWf34HnYhQYBXSdaAKD4xbRkQJbBRZzwpHpTST9WafJSP6": [ + { + "amount": "68.847931865", + "slot": { + "period": 73894, + "thread": 11 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 224381, + "thread": 12 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 470025, + "thread": 1 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 631770, + "thread": 31 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 785674, + "thread": 28 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 978753, + "thread": 3 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 990229, + "thread": 5 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 1248948, + "thread": 25 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 1328257, + "thread": 7 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 1602084, + "thread": 12 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 1706454, + "thread": 20 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 1918281, + "thread": 22 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2040792, + "thread": 31 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2279388, + "thread": 9 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2356400, + "thread": 12 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2555065, + "thread": 31 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2722583, + "thread": 31 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2837876, + "thread": 20 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 2972040, + "thread": 13 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 3221443, + "thread": 29 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 3315463, + "thread": 14 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 3466336, + "thread": 21 + } + }, + { + "amount": "68.847931865", + "slot": { + "period": 3756778, + "thread": 8 + } + }, + { + "amount": "68.847931854", + "slot": { + "period": 3796008, + "thread": 17 + } + } + ], + "AU1vCoH1YS79JKrSMQeuiC9WPHpUZWThE1ejkatszFcZ5KgXQExz": [ + { + "amount": "181.668103002", + "slot": { + "period": 109262, + "thread": 5 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 293775, + "thread": 21 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 425314, + "thread": 1 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 629223, + "thread": 5 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 798228, + "thread": 1 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 979634, + "thread": 5 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1053945, + "thread": 17 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1210939, + "thread": 10 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1368920, + "thread": 7 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1563057, + "thread": 30 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1754895, + "thread": 10 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 1937132, + "thread": 5 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2044702, + "thread": 17 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2203752, + "thread": 24 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2414508, + "thread": 26 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2552316, + "thread": 9 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2782112, + "thread": 20 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 2812772, + "thread": 21 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 3111056, + "thread": 29 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 3170763, + "thread": 9 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 3443063, + "thread": 17 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 3529345, + "thread": 7 + } + }, + { + "amount": "181.668103002", + "slot": { + "period": 3692364, + "thread": 21 + } + }, + { + "amount": "181.668102995", + "slot": { + "period": 3850053, + "thread": 20 + } + } + ], + "AU1vDhUt9reNpbq26hxemcGhaytC44fHv6AT8bGzpoEmr46LKfNf": [ + { + "amount": "75.883178398", + "slot": { + "period": 108395, + "thread": 24 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 219581, + "thread": 29 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 377751, + "thread": 17 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 492460, + "thread": 28 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 678105, + "thread": 6 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 836758, + "thread": 28 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1149162, + "thread": 16 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1269765, + "thread": 12 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1443730, + "thread": 6 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1599544, + "thread": 18 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1752295, + "thread": 5 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 1926819, + "thread": 28 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2029636, + "thread": 21 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2156360, + "thread": 9 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2353138, + "thread": 4 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2475541, + "thread": 16 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2697948, + "thread": 9 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 2938046, + "thread": 6 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 3068554, + "thread": 30 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 3231456, + "thread": 25 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 3401197, + "thread": 12 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 3546259, + "thread": 30 + } + }, + { + "amount": "75.883178398", + "slot": { + "period": 3699473, + "thread": 15 + } + }, + { + "amount": "75.883178403", + "slot": { + "period": 3937510, + "thread": 22 + } + } + ], + "AU1vE8EehJTkLGyDariXqRF5wWYQQKgfSG7SxvE18uTcfKyBPLk4": [ + { + "amount": "185.217139079", + "slot": { + "period": 38014, + "thread": 29 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 223054, + "thread": 0 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 355402, + "thread": 11 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 577007, + "thread": 5 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 762321, + "thread": 9 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 872268, + "thread": 14 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1054639, + "thread": 2 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1248089, + "thread": 18 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1362232, + "thread": 7 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1597529, + "thread": 19 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1716590, + "thread": 5 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1904824, + "thread": 19 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 1976467, + "thread": 29 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 2149538, + "thread": 24 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 2332031, + "thread": 13 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 2565946, + "thread": 30 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 2687550, + "thread": 25 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 2952246, + "thread": 25 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 3053223, + "thread": 2 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 3144835, + "thread": 26 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 3406920, + "thread": 1 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 3566958, + "thread": 6 + } + }, + { + "amount": "185.217139079", + "slot": { + "period": 3759319, + "thread": 23 + } + }, + { + "amount": "185.217139087", + "slot": { + "period": 3819011, + "thread": 16 + } + } + ], + "AU1vEmfwcy59ftqgPKNNbCCY8XXxsmgKHRzx9iAiFqxPtTKDTiNf": [ + { + "amount": "359.793345422", + "slot": { + "period": 26545, + "thread": 13 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 173805, + "thread": 18 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 489806, + "thread": 7 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 600062, + "thread": 11 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 671983, + "thread": 29 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 869464, + "thread": 19 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 985313, + "thread": 0 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 1223843, + "thread": 3 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 1354562, + "thread": 1 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 1632023, + "thread": 18 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 1648829, + "thread": 27 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 1910473, + "thread": 5 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2136357, + "thread": 10 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2280281, + "thread": 4 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2379810, + "thread": 27 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2563648, + "thread": 27 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2685832, + "thread": 12 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 2887315, + "thread": 26 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 3029339, + "thread": 19 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 3197892, + "thread": 13 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 3305677, + "thread": 31 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 3515771, + "thread": 17 + } + }, + { + "amount": "359.793345422", + "slot": { + "period": 3708118, + "thread": 29 + } + }, + { + "amount": "359.793345421", + "slot": { + "period": 3891936, + "thread": 21 + } + } + ], + "AU1vEwg45aUjmUsE3ub3hUg39ZF89EAEz62Ta98diEwSAEAK3yof": [ + { + "amount": "413.604564637", + "slot": { + "period": 97116, + "thread": 17 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 198469, + "thread": 15 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 391448, + "thread": 30 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 572599, + "thread": 28 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 774283, + "thread": 31 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 878293, + "thread": 5 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1137004, + "thread": 3 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1304243, + "thread": 29 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1388967, + "thread": 26 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1545805, + "thread": 1 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1680319, + "thread": 12 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 1915790, + "thread": 6 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2002847, + "thread": 22 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2168922, + "thread": 3 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2323181, + "thread": 22 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2549293, + "thread": 0 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2698127, + "thread": 9 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 2842324, + "thread": 7 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 3063349, + "thread": 26 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 3226508, + "thread": 10 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 3360724, + "thread": 14 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 3494317, + "thread": 22 + } + }, + { + "amount": "413.604564637", + "slot": { + "period": 3706359, + "thread": 2 + } + }, + { + "amount": "413.604564635", + "slot": { + "period": 3926373, + "thread": 6 + } + } + ], + "AU1vG9viGCVFxBUidZ7HiFXz7L1f28bcgj4qUe13JpmgACZdgWbo": [ + { + "amount": "164.060725211", + "slot": { + "period": 66377, + "thread": 19 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 245800, + "thread": 28 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 386700, + "thread": 13 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 611996, + "thread": 21 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 805310, + "thread": 22 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 857003, + "thread": 25 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1053644, + "thread": 10 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1228962, + "thread": 3 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1464209, + "thread": 24 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1609157, + "thread": 31 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1656080, + "thread": 5 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 1854943, + "thread": 4 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2070250, + "thread": 8 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2196229, + "thread": 9 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2355394, + "thread": 16 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2564354, + "thread": 24 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2747696, + "thread": 18 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 2953629, + "thread": 19 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 3120464, + "thread": 15 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 3248077, + "thread": 26 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 3306410, + "thread": 2 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 3461239, + "thread": 13 + } + }, + { + "amount": "164.060725211", + "slot": { + "period": 3746853, + "thread": 4 + } + }, + { + "amount": "164.060725218", + "slot": { + "period": 3941773, + "thread": 9 + } + } + ], + "AU1vGMbzi6osJzd11TjmBsDbh3wMMhTV5D7B5u2jrao2n7EFYzpP": [ + { + "amount": "68.498967198", + "slot": { + "period": 110334, + "thread": 22 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 201022, + "thread": 9 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 334641, + "thread": 22 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 650287, + "thread": 0 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 688665, + "thread": 13 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 942843, + "thread": 1 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1000866, + "thread": 14 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1271266, + "thread": 6 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1435428, + "thread": 17 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1569301, + "thread": 21 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1762983, + "thread": 6 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 1863507, + "thread": 24 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2131153, + "thread": 14 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2241081, + "thread": 16 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2433631, + "thread": 19 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2526381, + "thread": 29 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2777426, + "thread": 8 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 2798842, + "thread": 15 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 3057249, + "thread": 3 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 3185340, + "thread": 3 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 3365423, + "thread": 30 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 3547904, + "thread": 20 + } + }, + { + "amount": "68.498967198", + "slot": { + "period": 3641649, + "thread": 26 + } + }, + { + "amount": "68.498967193", + "slot": { + "period": 3880471, + "thread": 17 + } + } + ], + "AU1vGWhsD82cRoQbkGpgksk47UutU62hKeTJSoscpqFdamAmr8a1": [ + { + "amount": "209.308521145", + "slot": { + "period": 123481, + "thread": 20 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 213159, + "thread": 22 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 340820, + "thread": 20 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 641415, + "thread": 4 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 730839, + "thread": 13 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 823258, + "thread": 24 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1138918, + "thread": 15 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1153502, + "thread": 28 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1445169, + "thread": 2 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1591165, + "thread": 16 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1715716, + "thread": 8 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 1958660, + "thread": 9 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2070494, + "thread": 9 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2171441, + "thread": 31 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2340431, + "thread": 5 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2464629, + "thread": 0 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2774122, + "thread": 4 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 2793855, + "thread": 2 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 3073114, + "thread": 27 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 3231760, + "thread": 9 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 3396387, + "thread": 16 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 3474692, + "thread": 24 + } + }, + { + "amount": "209.308521145", + "slot": { + "period": 3771604, + "thread": 27 + } + }, + { + "amount": "209.308521146", + "slot": { + "period": 3786649, + "thread": 18 + } + } + ], + "AU1vGYeAo1t1bGzU39W3xiQ7FyEVgPiWsnJYmDLmpdeohD7GXu6H": [ + { + "amount": "178.649584397", + "slot": { + "period": 91683, + "thread": 22 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 299618, + "thread": 18 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 485105, + "thread": 12 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 574199, + "thread": 28 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 805140, + "thread": 28 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 830172, + "thread": 15 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 991871, + "thread": 4 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 1221277, + "thread": 18 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 1370724, + "thread": 26 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 1494026, + "thread": 7 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 1721613, + "thread": 10 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 1914781, + "thread": 31 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2046164, + "thread": 14 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2288065, + "thread": 5 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2360629, + "thread": 6 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2578927, + "thread": 24 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2729967, + "thread": 11 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 2935119, + "thread": 30 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 3056591, + "thread": 3 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 3180446, + "thread": 6 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 3349781, + "thread": 22 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 3563787, + "thread": 5 + } + }, + { + "amount": "178.649584397", + "slot": { + "period": 3693271, + "thread": 24 + } + }, + { + "amount": "178.649584399", + "slot": { + "period": 3811701, + "thread": 14 + } + } + ], + "AU1vHzTCiE8PR2aDC6ZaGnHsSfTeW7ugepwiV1xVVJb3pHpcbBmZ": [ + { + "amount": "654.849336565", + "slot": { + "period": 120616, + "thread": 5 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 283104, + "thread": 2 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 464536, + "thread": 28 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 515108, + "thread": 25 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 711278, + "thread": 1 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 871284, + "thread": 16 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1102228, + "thread": 19 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1306668, + "thread": 10 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1444685, + "thread": 20 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1598562, + "thread": 14 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1762029, + "thread": 26 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 1917022, + "thread": 8 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2048413, + "thread": 30 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2170194, + "thread": 28 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2309220, + "thread": 11 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2601258, + "thread": 16 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2629311, + "thread": 4 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2794600, + "thread": 6 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 2961609, + "thread": 25 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 3266414, + "thread": 16 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 3327904, + "thread": 8 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 3546119, + "thread": 8 + } + }, + { + "amount": "654.849336565", + "slot": { + "period": 3769897, + "thread": 14 + } + }, + { + "amount": "654.849336568", + "slot": { + "period": 3818437, + "thread": 12 + } + } + ], + "AU1vHzaRumASGrvX4VJxsV9wmgjfq5D3CvmU1Nyxzjvw3MERjt1k": [ + { + "amount": "71.122916268", + "slot": { + "period": 146616, + "thread": 2 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 315605, + "thread": 20 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 369437, + "thread": 20 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 525371, + "thread": 5 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 717836, + "thread": 3 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 929757, + "thread": 1 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1016938, + "thread": 3 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1262911, + "thread": 2 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1433191, + "thread": 11 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1632326, + "thread": 31 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1798287, + "thread": 23 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 1896038, + "thread": 9 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2125322, + "thread": 1 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2221011, + "thread": 10 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2408107, + "thread": 20 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2566156, + "thread": 27 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2668893, + "thread": 17 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 2878527, + "thread": 25 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 3027337, + "thread": 3 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 3275242, + "thread": 21 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 3440324, + "thread": 27 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 3609861, + "thread": 22 + } + }, + { + "amount": "71.122916268", + "slot": { + "period": 3683945, + "thread": 23 + } + }, + { + "amount": "71.122916261", + "slot": { + "period": 3792887, + "thread": 22 + } + } + ], + "AU1vJeCmrXsr5R2DuiMU7Dh9RJWBqQYPsGRoq9S5LCGW9pqXUic6": [ + { + "amount": "121.299871306", + "slot": { + "period": 13915, + "thread": 12 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 305813, + "thread": 6 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 347152, + "thread": 3 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 569180, + "thread": 20 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 713825, + "thread": 9 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 902207, + "thread": 7 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1070800, + "thread": 17 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1272711, + "thread": 15 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1417880, + "thread": 22 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1637279, + "thread": 18 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1743774, + "thread": 22 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 1882407, + "thread": 11 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2137559, + "thread": 8 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2293318, + "thread": 14 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2315126, + "thread": 28 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2617342, + "thread": 31 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2658564, + "thread": 6 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 2861772, + "thread": 28 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 3050695, + "thread": 25 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 3275988, + "thread": 26 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 3396834, + "thread": 3 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 3505267, + "thread": 25 + } + }, + { + "amount": "121.299871306", + "slot": { + "period": 3630612, + "thread": 22 + } + }, + { + "amount": "121.299871304", + "slot": { + "period": 3863632, + "thread": 26 + } + } + ], + "AU1vLZNG64NfrhX2wGZ8MfMkTfgFpVURXboNUFYbfGJBysNf6pzm": [ + { + "amount": "180.248137599", + "slot": { + "period": 18290, + "thread": 12 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 187166, + "thread": 3 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 369852, + "thread": 10 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 511818, + "thread": 3 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 708620, + "thread": 0 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 904961, + "thread": 19 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1050317, + "thread": 8 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1296095, + "thread": 31 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1335341, + "thread": 19 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1607259, + "thread": 21 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1696930, + "thread": 2 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 1849577, + "thread": 24 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2009921, + "thread": 8 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2278302, + "thread": 1 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2393742, + "thread": 1 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2514813, + "thread": 4 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2708445, + "thread": 9 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 2824022, + "thread": 24 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 3105169, + "thread": 26 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 3239961, + "thread": 9 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 3408902, + "thread": 27 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 3564985, + "thread": 29 + } + }, + { + "amount": "180.248137599", + "slot": { + "period": 3669254, + "thread": 3 + } + }, + { + "amount": "180.248137606", + "slot": { + "period": 3817950, + "thread": 13 + } + } + ], + "AU1vM2qmpd6E9PFkSZiAWwCoxagZEy2trxakTJMfR372v7FucWWN": [ + { + "amount": "67.802346966", + "slot": { + "period": 86559, + "thread": 31 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 209412, + "thread": 3 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 324343, + "thread": 14 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 585163, + "thread": 25 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 732811, + "thread": 0 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 842501, + "thread": 6 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 983509, + "thread": 20 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 1158164, + "thread": 28 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 1319935, + "thread": 18 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 1541807, + "thread": 1 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 1756029, + "thread": 12 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 1810348, + "thread": 17 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2117166, + "thread": 30 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2229981, + "thread": 6 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2324484, + "thread": 16 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2501604, + "thread": 3 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2770232, + "thread": 31 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2947479, + "thread": 12 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 2963383, + "thread": 29 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 3180380, + "thread": 4 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 3388147, + "thread": 31 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 3615655, + "thread": 21 + } + }, + { + "amount": "67.802346966", + "slot": { + "period": 3763272, + "thread": 21 + } + }, + { + "amount": "67.802346959", + "slot": { + "period": 3916090, + "thread": 19 + } + } + ], + "AU1vMVAWbAPjuzUTvWYSVScRp7fPbZtdBHdFiR9q8PDHdu3z9zx9": [ + { + "amount": "90.170116765", + "slot": { + "period": 64207, + "thread": 28 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 168629, + "thread": 17 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 380847, + "thread": 10 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 519691, + "thread": 20 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 725382, + "thread": 8 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 832843, + "thread": 6 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1037941, + "thread": 12 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1207828, + "thread": 3 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1356486, + "thread": 28 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1518660, + "thread": 18 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1692148, + "thread": 14 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 1839715, + "thread": 11 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2000604, + "thread": 16 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2191603, + "thread": 23 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2361688, + "thread": 24 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2494670, + "thread": 8 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2688912, + "thread": 8 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 2796288, + "thread": 13 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 3118119, + "thread": 11 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 3188294, + "thread": 25 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 3429402, + "thread": 26 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 3552618, + "thread": 13 + } + }, + { + "amount": "90.170116765", + "slot": { + "period": 3687962, + "thread": 5 + } + }, + { + "amount": "90.170116768", + "slot": { + "period": 3822150, + "thread": 21 + } + } + ], + "AU1vMji3DWqqMUd9FzYxv5a3T6jPPkSN5L8ke5aqJbfbEa7x31Kv": [ + { + "amount": "265.886126765", + "slot": { + "period": 61349, + "thread": 4 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 274488, + "thread": 18 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 452451, + "thread": 1 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 643719, + "thread": 19 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 666587, + "thread": 14 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 940285, + "thread": 12 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1070667, + "thread": 14 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1308288, + "thread": 26 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1325056, + "thread": 7 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1637522, + "thread": 29 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1788157, + "thread": 12 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 1932950, + "thread": 2 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2134038, + "thread": 12 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2149709, + "thread": 9 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2308244, + "thread": 0 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2609110, + "thread": 23 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2715358, + "thread": 23 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 2866837, + "thread": 24 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 3089843, + "thread": 27 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 3235859, + "thread": 5 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 3420337, + "thread": 0 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 3497537, + "thread": 24 + } + }, + { + "amount": "265.886126765", + "slot": { + "period": 3723801, + "thread": 25 + } + }, + { + "amount": "265.886126766", + "slot": { + "period": 3837434, + "thread": 1 + } + } + ], + "AU1vNJk55bsLaZ5xnSbE7S7dYZBqrFHHkmckWP6Uu8WS1exSemij": [ + { + "amount": "210.620759416", + "slot": { + "period": 146786, + "thread": 30 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 323987, + "thread": 9 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 460768, + "thread": 22 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 590123, + "thread": 5 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 693489, + "thread": 31 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 897931, + "thread": 19 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1024100, + "thread": 17 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1223669, + "thread": 18 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1440983, + "thread": 15 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1563861, + "thread": 19 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1775651, + "thread": 30 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 1854938, + "thread": 31 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2021642, + "thread": 14 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2258849, + "thread": 6 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2344288, + "thread": 31 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2580421, + "thread": 0 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2754497, + "thread": 16 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 2812974, + "thread": 5 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 3084148, + "thread": 29 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 3145267, + "thread": 29 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 3365248, + "thread": 4 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 3531963, + "thread": 17 + } + }, + { + "amount": "210.620759416", + "slot": { + "period": 3633014, + "thread": 20 + } + }, + { + "amount": "210.620759405", + "slot": { + "period": 3939052, + "thread": 18 + } + } + ], + "AU1vP8QoGv7SbsmFo3UgvNPpxbGb1SEDeHYo3YuonHAQ4MknGFjd": [ + { + "amount": "87.903423053", + "slot": { + "period": 52785, + "thread": 6 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 258030, + "thread": 15 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 472501, + "thread": 8 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 608020, + "thread": 0 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 670414, + "thread": 4 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 887234, + "thread": 4 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1140818, + "thread": 6 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1296057, + "thread": 8 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1391108, + "thread": 29 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1585152, + "thread": 13 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1743669, + "thread": 19 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 1950931, + "thread": 13 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2085680, + "thread": 27 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2161683, + "thread": 17 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2316161, + "thread": 30 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2539391, + "thread": 0 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2742472, + "thread": 29 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2817896, + "thread": 28 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 2982787, + "thread": 19 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 3246204, + "thread": 19 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 3436718, + "thread": 13 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 3611087, + "thread": 9 + } + }, + { + "amount": "87.903423053", + "slot": { + "period": 3774079, + "thread": 19 + } + }, + { + "amount": "87.903423056", + "slot": { + "period": 3877419, + "thread": 9 + } + } + ], + "AU1vPBABXZsmHrmj1Gnf2jybMoBhz7cdZYGfU2hEmj59XzP5nqTB": [ + { + "amount": "165.205561303", + "slot": { + "period": 67170, + "thread": 17 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 185271, + "thread": 16 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 337070, + "thread": 25 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 602116, + "thread": 0 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 760637, + "thread": 21 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 894045, + "thread": 17 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 996463, + "thread": 3 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 1296575, + "thread": 1 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 1435636, + "thread": 16 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 1619117, + "thread": 10 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 1800048, + "thread": 30 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 1834799, + "thread": 18 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2104560, + "thread": 18 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2175205, + "thread": 10 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2328792, + "thread": 22 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2614967, + "thread": 11 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2787553, + "thread": 13 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2796662, + "thread": 19 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 2959130, + "thread": 21 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 3209966, + "thread": 9 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 3436341, + "thread": 5 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 3563481, + "thread": 28 + } + }, + { + "amount": "165.205561303", + "slot": { + "period": 3694092, + "thread": 3 + } + }, + { + "amount": "165.205561313", + "slot": { + "period": 3913190, + "thread": 20 + } + } + ], + "AU1vPraLVNjaxAsXE6NSHUhqH7RZAJQ8LfKxwNH641QQm124FHQc": [ + { + "amount": "81.901103567", + "slot": { + "period": 138713, + "thread": 26 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 222189, + "thread": 10 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 382885, + "thread": 18 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 584070, + "thread": 20 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 797380, + "thread": 16 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 952409, + "thread": 9 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1126688, + "thread": 31 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1246343, + "thread": 10 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1372349, + "thread": 21 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1574246, + "thread": 11 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1742826, + "thread": 20 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 1964799, + "thread": 14 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2033823, + "thread": 14 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2291390, + "thread": 18 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2438605, + "thread": 4 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2517009, + "thread": 28 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2694827, + "thread": 10 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 2930936, + "thread": 9 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 3112564, + "thread": 27 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 3227664, + "thread": 19 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 3288840, + "thread": 13 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 3499797, + "thread": 13 + } + }, + { + "amount": "81.901103567", + "slot": { + "period": 3699424, + "thread": 31 + } + }, + { + "amount": "81.901103577", + "slot": { + "period": 3935386, + "thread": 25 + } + } + ], + "AU1vQ4RUCMtuQ8pTAriqArHvhC7PDpA1E7vFqWKpKTeErrhyBPN2": [ + { + "amount": "56.250754495", + "slot": { + "period": 118181, + "thread": 11 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 288801, + "thread": 11 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 415657, + "thread": 27 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 511980, + "thread": 20 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 753875, + "thread": 15 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 958526, + "thread": 24 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1084415, + "thread": 3 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1255185, + "thread": 20 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1399596, + "thread": 6 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1584053, + "thread": 22 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1782679, + "thread": 16 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1886441, + "thread": 24 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 1985546, + "thread": 2 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 2244056, + "thread": 13 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 2456204, + "thread": 26 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 2500874, + "thread": 5 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 2639308, + "thread": 28 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 2868788, + "thread": 19 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 3066853, + "thread": 13 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 3139948, + "thread": 10 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 3312115, + "thread": 19 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 3578011, + "thread": 18 + } + }, + { + "amount": "56.250754495", + "slot": { + "period": 3775562, + "thread": 21 + } + }, + { + "amount": "56.250754487", + "slot": { + "period": 3828146, + "thread": 7 + } + } + ], + "AU1vR7MB5rqGF3NeLrrnxtUGXjsCTjwe2G31tfZNXyy9ME3d1E3g": [ + { + "amount": "251.213827339", + "slot": { + "period": 65461, + "thread": 30 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 174234, + "thread": 0 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 366124, + "thread": 23 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 572357, + "thread": 17 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 777905, + "thread": 28 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 833553, + "thread": 27 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1008410, + "thread": 23 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1151729, + "thread": 12 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1395156, + "thread": 6 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1610670, + "thread": 29 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1665155, + "thread": 25 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 1893537, + "thread": 7 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2081323, + "thread": 23 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2230967, + "thread": 19 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2312146, + "thread": 14 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2467080, + "thread": 20 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2735352, + "thread": 9 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2799883, + "thread": 23 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 2974350, + "thread": 26 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 3196777, + "thread": 27 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 3406760, + "thread": 24 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 3538664, + "thread": 14 + } + }, + { + "amount": "251.213827339", + "slot": { + "period": 3635171, + "thread": 17 + } + }, + { + "amount": "251.213827333", + "slot": { + "period": 3855525, + "thread": 29 + } + } + ], + "AU1vRcETpK9BEMfqZ3JsgFeFhFAjMoz2zNdMZmzZ1ps7wcbADtw5": [ + { + "amount": "75.523411030", + "slot": { + "period": 65312, + "thread": 11 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 297859, + "thread": 16 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 435038, + "thread": 2 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 640685, + "thread": 17 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 656526, + "thread": 11 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 889020, + "thread": 13 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1057569, + "thread": 6 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1151039, + "thread": 18 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1354139, + "thread": 2 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1572878, + "thread": 14 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1744183, + "thread": 21 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 1878318, + "thread": 12 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2097812, + "thread": 30 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2205868, + "thread": 20 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2299983, + "thread": 2 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2598484, + "thread": 2 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2723779, + "thread": 0 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 2932488, + "thread": 12 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 3010408, + "thread": 11 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 3159957, + "thread": 15 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 3327672, + "thread": 25 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 3563847, + "thread": 15 + } + }, + { + "amount": "75.523411030", + "slot": { + "period": 3766326, + "thread": 26 + } + }, + { + "amount": "75.523411019", + "slot": { + "period": 3926920, + "thread": 24 + } + } + ], + "AU1vUj35hsAkrxx4J1hDparoxN4LUE8Wv3h1bynJzZtgiFJSDAS1": [ + { + "amount": "168.837226710", + "slot": { + "period": 150071, + "thread": 20 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 285101, + "thread": 20 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 331407, + "thread": 31 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 522444, + "thread": 25 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 795850, + "thread": 8 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 922434, + "thread": 13 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1092493, + "thread": 12 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1227473, + "thread": 14 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1467668, + "thread": 12 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1636538, + "thread": 17 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1667846, + "thread": 9 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 1845674, + "thread": 0 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2108432, + "thread": 12 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2209976, + "thread": 11 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2370062, + "thread": 21 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2526824, + "thread": 0 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2765864, + "thread": 30 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 2921995, + "thread": 24 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 3049620, + "thread": 4 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 3265106, + "thread": 3 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 3435525, + "thread": 25 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 3597695, + "thread": 10 + } + }, + { + "amount": "168.837226710", + "slot": { + "period": 3750368, + "thread": 11 + } + }, + { + "amount": "168.837226708", + "slot": { + "period": 3900471, + "thread": 4 + } + } + ], + "AU1vUn55KwGyqoJXedfd4gL3BQ3xUfCt2pa1Ax47tLhacEQoKwjS": [ + { + "amount": "98.778311130", + "slot": { + "period": 94784, + "thread": 5 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 178181, + "thread": 17 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 462242, + "thread": 4 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 587578, + "thread": 23 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 778435, + "thread": 14 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 962955, + "thread": 25 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1015202, + "thread": 12 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1178445, + "thread": 14 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1466252, + "thread": 23 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1607888, + "thread": 3 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1673822, + "thread": 5 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 1894229, + "thread": 30 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2091006, + "thread": 14 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2294108, + "thread": 10 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2340806, + "thread": 19 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2498319, + "thread": 4 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2697380, + "thread": 22 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 2866808, + "thread": 20 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 3100814, + "thread": 23 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 3183091, + "thread": 23 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 3328274, + "thread": 17 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 3614578, + "thread": 22 + } + }, + { + "amount": "98.778311130", + "slot": { + "period": 3693800, + "thread": 12 + } + }, + { + "amount": "98.778311121", + "slot": { + "period": 3903313, + "thread": 16 + } + } + ], + "AU1vVkSe29XFxNCamPoGRvvrB88tPyS9jhLKNKty1nMrjQ8DuwiH": [ + { + "amount": "122.279843684", + "slot": { + "period": 138133, + "thread": 26 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 205049, + "thread": 5 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 375176, + "thread": 22 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 500166, + "thread": 10 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 770586, + "thread": 0 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 978048, + "thread": 29 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 995074, + "thread": 2 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 1184274, + "thread": 5 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 1368205, + "thread": 18 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 1618528, + "thread": 30 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 1710039, + "thread": 7 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 1964888, + "thread": 18 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2081989, + "thread": 30 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2206874, + "thread": 21 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2435225, + "thread": 29 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2557344, + "thread": 15 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2771439, + "thread": 31 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2932980, + "thread": 15 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 2999881, + "thread": 0 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 3233280, + "thread": 17 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 3359306, + "thread": 5 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 3549047, + "thread": 23 + } + }, + { + "amount": "122.279843684", + "slot": { + "period": 3623153, + "thread": 6 + } + }, + { + "amount": "122.279843682", + "slot": { + "period": 3872272, + "thread": 16 + } + } + ], + "AU1vWKswdCrE5rUBD1MWzU93iVSP8r6fMY3apop1xfxeDkdHnD7T": [ + { + "amount": "129.782229950", + "slot": { + "period": 125900, + "thread": 3 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 215267, + "thread": 23 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 458726, + "thread": 4 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 504138, + "thread": 27 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 677248, + "thread": 26 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 962319, + "thread": 18 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1116297, + "thread": 28 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1183353, + "thread": 2 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1356630, + "thread": 18 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1565413, + "thread": 16 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1657548, + "thread": 15 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 1838309, + "thread": 17 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2025671, + "thread": 28 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2202212, + "thread": 12 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2319533, + "thread": 25 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2518222, + "thread": 12 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2720945, + "thread": 6 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 2934297, + "thread": 24 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 3018775, + "thread": 23 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 3197482, + "thread": 8 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 3371302, + "thread": 6 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 3598108, + "thread": 18 + } + }, + { + "amount": "129.782229950", + "slot": { + "period": 3651927, + "thread": 5 + } + }, + { + "amount": "129.782229945", + "slot": { + "period": 3909915, + "thread": 0 + } + } + ], + "AU1vX1P2FMhfhPn1mUbH4UbDSRTe217odh64eV3rUwFWLpgjt6jw": [ + { + "amount": "514.504962342", + "slot": { + "period": 35324, + "thread": 9 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 278669, + "thread": 26 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 370867, + "thread": 26 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 577067, + "thread": 11 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 730941, + "thread": 16 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 839306, + "thread": 15 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1023151, + "thread": 26 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1253785, + "thread": 18 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1457774, + "thread": 16 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1549673, + "thread": 5 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1745935, + "thread": 26 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 1848090, + "thread": 27 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2112676, + "thread": 10 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2258067, + "thread": 28 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2389398, + "thread": 21 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2612592, + "thread": 15 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2786277, + "thread": 21 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 2946887, + "thread": 4 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 3023211, + "thread": 10 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 3196550, + "thread": 28 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 3447239, + "thread": 21 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 3565503, + "thread": 5 + } + }, + { + "amount": "514.504962342", + "slot": { + "period": 3655817, + "thread": 10 + } + }, + { + "amount": "514.504962332", + "slot": { + "period": 3805181, + "thread": 7 + } + } + ], + "AU1vXhJztQEAqjGXmrTCiPnR2vY1xpK9V4dcdWKqn5kFUjw5thge": [ + { + "amount": "201.963006546", + "slot": { + "period": 36605, + "thread": 9 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 302831, + "thread": 21 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 459290, + "thread": 7 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 628965, + "thread": 14 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 806637, + "thread": 22 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 907388, + "thread": 8 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1026712, + "thread": 16 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1231129, + "thread": 31 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1415743, + "thread": 11 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1553048, + "thread": 4 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1769910, + "thread": 13 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 1915807, + "thread": 8 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2058989, + "thread": 18 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2183624, + "thread": 24 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2297748, + "thread": 24 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2522448, + "thread": 14 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2676896, + "thread": 13 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 2909500, + "thread": 21 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 3005077, + "thread": 24 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 3123915, + "thread": 25 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 3426156, + "thread": 1 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 3604935, + "thread": 15 + } + }, + { + "amount": "201.963006546", + "slot": { + "period": 3704233, + "thread": 14 + } + }, + { + "amount": "201.963006549", + "slot": { + "period": 3869401, + "thread": 29 + } + } + ], + "AU1vXzuAZwC254XsCdWWa9TP8AYtMWJQ1SGTNSPktGzsgGHWK37Q": [ + { + "amount": "426.225997993", + "slot": { + "period": 73429, + "thread": 15 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 321307, + "thread": 15 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 448303, + "thread": 21 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 612505, + "thread": 6 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 777866, + "thread": 4 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 824252, + "thread": 9 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1124553, + "thread": 26 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1212124, + "thread": 11 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1448443, + "thread": 29 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1524201, + "thread": 20 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1774182, + "thread": 24 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1913030, + "thread": 23 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 1992929, + "thread": 1 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2187613, + "thread": 22 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2305167, + "thread": 23 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2519238, + "thread": 15 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2665523, + "thread": 3 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2869927, + "thread": 7 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 2988673, + "thread": 6 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 3121261, + "thread": 2 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 3429266, + "thread": 12 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 3547341, + "thread": 15 + } + }, + { + "amount": "426.225997993", + "slot": { + "period": 3646879, + "thread": 19 + } + }, + { + "amount": "426.225997988", + "slot": { + "period": 3841187, + "thread": 12 + } + } + ], + "AU1vYDaZtHuxazMUSUospmS5kcyBRGHWhjUkUDnRfsgWSNxEUNry": [ + { + "amount": "211.561768676", + "slot": { + "period": 18568, + "thread": 10 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 298640, + "thread": 18 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 434694, + "thread": 25 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 610612, + "thread": 28 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 678866, + "thread": 21 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 966084, + "thread": 9 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1141401, + "thread": 22 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1179177, + "thread": 21 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1349834, + "thread": 8 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1614139, + "thread": 5 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1649642, + "thread": 12 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 1954561, + "thread": 29 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2073483, + "thread": 16 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2287792, + "thread": 19 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2445028, + "thread": 19 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2605850, + "thread": 7 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2710324, + "thread": 14 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2819292, + "thread": 23 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 2986115, + "thread": 17 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 3194878, + "thread": 6 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 3347945, + "thread": 22 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 3570271, + "thread": 30 + } + }, + { + "amount": "211.561768676", + "slot": { + "period": 3709065, + "thread": 14 + } + }, + { + "amount": "211.561768678", + "slot": { + "period": 3908291, + "thread": 6 + } + } + ], + "AU1vYFqF2NkPgqXEeEyjUGWhvkV3bv7hixsdgqS57BGpVXRnuBRz": [ + { + "amount": "389.798007967", + "slot": { + "period": 160847, + "thread": 17 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 208063, + "thread": 17 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 452023, + "thread": 18 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 561650, + "thread": 31 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 689011, + "thread": 9 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 911582, + "thread": 9 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1122754, + "thread": 25 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1174148, + "thread": 23 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1383356, + "thread": 14 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1533397, + "thread": 29 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1655529, + "thread": 30 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 1890925, + "thread": 9 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2019553, + "thread": 19 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2164952, + "thread": 12 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2326753, + "thread": 7 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2486041, + "thread": 8 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2636366, + "thread": 31 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2942453, + "thread": 5 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 2966446, + "thread": 15 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 3268383, + "thread": 4 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 3434992, + "thread": 5 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 3575036, + "thread": 2 + } + }, + { + "amount": "389.798007967", + "slot": { + "period": 3654551, + "thread": 28 + } + }, + { + "amount": "389.798007969", + "slot": { + "period": 3902636, + "thread": 0 + } + } + ], + "AU1vYnKjzpgJZuUeKs6r12HfL7fK9ShnYaUSKFBq9v6NHYtS5By1": [ + { + "amount": "75.588452202", + "slot": { + "period": 21183, + "thread": 21 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 183325, + "thread": 21 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 397667, + "thread": 21 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 573805, + "thread": 15 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 741648, + "thread": 19 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 980988, + "thread": 16 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1012150, + "thread": 6 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1228528, + "thread": 0 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1391638, + "thread": 2 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1574545, + "thread": 1 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1707847, + "thread": 15 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 1818486, + "thread": 27 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2054013, + "thread": 4 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2151332, + "thread": 27 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2378798, + "thread": 10 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2618201, + "thread": 3 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2772880, + "thread": 4 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 2810717, + "thread": 19 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 3059500, + "thread": 10 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 3135916, + "thread": 13 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 3450289, + "thread": 31 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 3574553, + "thread": 25 + } + }, + { + "amount": "75.588452202", + "slot": { + "period": 3681819, + "thread": 19 + } + }, + { + "amount": "75.588452209", + "slot": { + "period": 3855062, + "thread": 15 + } + } + ], + "AU1vZ1FMD72UaNVJjJhnQ6HdRajQ4Xre3tQwuZT7ZBY9KMVwhZCX": [ + { + "amount": "406.368058876", + "slot": { + "period": 135343, + "thread": 26 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 285120, + "thread": 7 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 415307, + "thread": 3 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 532574, + "thread": 24 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 653692, + "thread": 2 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 944717, + "thread": 12 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1098191, + "thread": 5 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1249409, + "thread": 0 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1458859, + "thread": 19 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1581748, + "thread": 21 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1704766, + "thread": 25 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 1839293, + "thread": 29 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2096733, + "thread": 19 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2192119, + "thread": 30 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2440275, + "thread": 8 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2543992, + "thread": 17 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2739308, + "thread": 15 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 2890751, + "thread": 1 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 3006140, + "thread": 18 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 3164588, + "thread": 16 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 3416702, + "thread": 22 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 3611803, + "thread": 23 + } + }, + { + "amount": "406.368058876", + "slot": { + "period": 3663067, + "thread": 11 + } + }, + { + "amount": "406.368058877", + "slot": { + "period": 3928129, + "thread": 30 + } + } + ], + "AU1vZAzhaPNHDPhWr1L1WWtDunUH4tW9Bnn9uViAbaSBfTgYadDs": [ + { + "amount": "140.959511308", + "slot": { + "period": 89306, + "thread": 29 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 256132, + "thread": 23 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 423935, + "thread": 30 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 595564, + "thread": 26 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 660712, + "thread": 24 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 926322, + "thread": 6 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1066768, + "thread": 18 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1213819, + "thread": 29 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1428968, + "thread": 12 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1514340, + "thread": 31 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1735829, + "thread": 7 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 1813762, + "thread": 9 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2009625, + "thread": 20 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2224863, + "thread": 31 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2302300, + "thread": 11 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2494092, + "thread": 8 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2786152, + "thread": 25 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 2885200, + "thread": 10 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 3042896, + "thread": 5 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 3123074, + "thread": 29 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 3329347, + "thread": 10 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 3566898, + "thread": 26 + } + }, + { + "amount": "140.959511308", + "slot": { + "period": 3645483, + "thread": 19 + } + }, + { + "amount": "140.959511304", + "slot": { + "period": 3860828, + "thread": 17 + } + } + ], + "AU1vaMe7X2rhWbY4AN4pb75BUNoVxUZRdcppkuFJLL1spuD9KS6o": [ + { + "amount": "63.847677136", + "slot": { + "period": 125223, + "thread": 22 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 277694, + "thread": 15 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 457834, + "thread": 18 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 527497, + "thread": 7 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 748350, + "thread": 18 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 954064, + "thread": 12 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1005896, + "thread": 20 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1271176, + "thread": 9 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1359417, + "thread": 28 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1617007, + "thread": 3 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1688992, + "thread": 4 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 1925011, + "thread": 8 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2114708, + "thread": 2 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2231618, + "thread": 22 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2304699, + "thread": 7 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2555387, + "thread": 20 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2685164, + "thread": 3 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 2951421, + "thread": 10 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 3023699, + "thread": 13 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 3152018, + "thread": 18 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 3355584, + "thread": 27 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 3603098, + "thread": 19 + } + }, + { + "amount": "63.847677136", + "slot": { + "period": 3748929, + "thread": 11 + } + }, + { + "amount": "63.847677132", + "slot": { + "period": 3925863, + "thread": 27 + } + } + ], + "AU1vb5gQiR14hB7kik1VGUwvpmvS6tA3viyWaBU99952sw5mAniQ": [ + { + "amount": "351.850393075", + "slot": { + "period": 126862, + "thread": 23 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 279281, + "thread": 20 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 476484, + "thread": 17 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 504633, + "thread": 24 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 749859, + "thread": 22 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 855553, + "thread": 0 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1024620, + "thread": 24 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1277098, + "thread": 31 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1412063, + "thread": 9 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1568589, + "thread": 13 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1762883, + "thread": 2 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 1907765, + "thread": 13 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2005334, + "thread": 14 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2218325, + "thread": 30 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2364681, + "thread": 7 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2579013, + "thread": 23 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2632101, + "thread": 0 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2864965, + "thread": 1 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 2965349, + "thread": 19 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 3191629, + "thread": 25 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 3389984, + "thread": 21 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 3457093, + "thread": 29 + } + }, + { + "amount": "351.850393075", + "slot": { + "period": 3741497, + "thread": 15 + } + }, + { + "amount": "351.850393065", + "slot": { + "period": 3781795, + "thread": 15 + } + } + ], + "AU1vbMtigq244SENUcb7kSALGyuacDVEoRGHYQWXFM1D7a6FCdE8": [ + { + "amount": "490.101733381", + "slot": { + "period": 118689, + "thread": 30 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 290046, + "thread": 5 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 486361, + "thread": 24 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 519065, + "thread": 13 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 751218, + "thread": 27 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 918718, + "thread": 11 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1063534, + "thread": 26 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1268742, + "thread": 30 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1410463, + "thread": 29 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1481995, + "thread": 25 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1737410, + "thread": 13 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 1945235, + "thread": 16 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2127234, + "thread": 6 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2191246, + "thread": 19 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2328212, + "thread": 28 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2511449, + "thread": 20 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2725921, + "thread": 13 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 2801474, + "thread": 26 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 3068193, + "thread": 9 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 3240522, + "thread": 16 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 3355886, + "thread": 22 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 3514788, + "thread": 15 + } + }, + { + "amount": "490.101733381", + "slot": { + "period": 3653355, + "thread": 25 + } + }, + { + "amount": "490.101733389", + "slot": { + "period": 3788199, + "thread": 16 + } + } + ], + "AU1vbXwWb85fyCTgfr1UiFMBn2XzvQC5d3Zyg9zUfFqbSrY274Jp": [ + { + "amount": "128.782783949", + "slot": { + "period": 91749, + "thread": 4 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 198004, + "thread": 3 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 368241, + "thread": 15 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 548866, + "thread": 30 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 665529, + "thread": 1 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 902616, + "thread": 6 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1054457, + "thread": 1 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1178482, + "thread": 9 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1409610, + "thread": 10 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1546178, + "thread": 24 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1672484, + "thread": 20 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 1841809, + "thread": 2 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2015531, + "thread": 13 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2228030, + "thread": 11 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2312566, + "thread": 2 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2565695, + "thread": 0 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2756511, + "thread": 1 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 2919793, + "thread": 12 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 3116300, + "thread": 25 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 3265656, + "thread": 1 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 3344967, + "thread": 25 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 3533523, + "thread": 29 + } + }, + { + "amount": "128.782783949", + "slot": { + "period": 3692806, + "thread": 3 + } + }, + { + "amount": "128.782783946", + "slot": { + "period": 3819858, + "thread": 5 + } + } + ], + "AU1vcKBctdBo2GUZNc9ddaJHzH8bNVCNaAyvCidonH5W8w2ms6Yt": [ + { + "amount": "161.128313433", + "slot": { + "period": 51489, + "thread": 6 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 275173, + "thread": 17 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 488546, + "thread": 15 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 598508, + "thread": 21 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 745444, + "thread": 11 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 980143, + "thread": 30 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1037355, + "thread": 15 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1197425, + "thread": 29 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1390034, + "thread": 9 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1534114, + "thread": 22 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1764709, + "thread": 3 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 1891122, + "thread": 15 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2009286, + "thread": 14 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2209655, + "thread": 5 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2354536, + "thread": 16 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2522279, + "thread": 11 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2651763, + "thread": 4 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2799398, + "thread": 23 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 2986011, + "thread": 4 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 3158847, + "thread": 9 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 3347248, + "thread": 30 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 3459843, + "thread": 2 + } + }, + { + "amount": "161.128313433", + "slot": { + "period": 3709651, + "thread": 21 + } + }, + { + "amount": "161.128313434", + "slot": { + "period": 3935086, + "thread": 2 + } + } + ], + "AU1veD2Q1vym8ANPoXHqxYVjhn8LK5mKiXBFXhmuWYmpwRmyZ5Ru": [ + { + "amount": "132.387350926", + "slot": { + "period": 27763, + "thread": 15 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 244512, + "thread": 27 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 404252, + "thread": 30 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 493240, + "thread": 14 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 713138, + "thread": 5 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 911109, + "thread": 16 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1149364, + "thread": 27 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1265374, + "thread": 17 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1364531, + "thread": 2 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1644637, + "thread": 11 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1729090, + "thread": 15 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 1891789, + "thread": 20 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2042212, + "thread": 26 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2265236, + "thread": 30 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2366794, + "thread": 18 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2521144, + "thread": 21 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2644630, + "thread": 20 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 2914132, + "thread": 30 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 3040945, + "thread": 11 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 3200088, + "thread": 23 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 3432138, + "thread": 7 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 3471710, + "thread": 24 + } + }, + { + "amount": "132.387350926", + "slot": { + "period": 3619043, + "thread": 4 + } + }, + { + "amount": "132.387350918", + "slot": { + "period": 3815579, + "thread": 5 + } + } + ], + "AU1vefgXVahEbmWPTSFVo1ZTkcnyiUBYXRocTesWdwbCKBSFrMjR": [ + { + "amount": "276.602839992", + "slot": { + "period": 131439, + "thread": 8 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 303448, + "thread": 23 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 328777, + "thread": 30 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 612454, + "thread": 20 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 665284, + "thread": 3 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 900795, + "thread": 31 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 995236, + "thread": 31 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 1274397, + "thread": 26 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 1443565, + "thread": 8 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 1491766, + "thread": 4 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 1760736, + "thread": 27 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 1924454, + "thread": 27 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2053021, + "thread": 24 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2207059, + "thread": 25 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2390830, + "thread": 6 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2568536, + "thread": 11 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2729031, + "thread": 21 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 2894257, + "thread": 21 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 3025142, + "thread": 24 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 3266766, + "thread": 14 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 3441657, + "thread": 21 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 3559111, + "thread": 13 + } + }, + { + "amount": "276.602839992", + "slot": { + "period": 3696023, + "thread": 8 + } + }, + { + "amount": "276.602839999", + "slot": { + "period": 3818247, + "thread": 4 + } + } + ], + "AU1vgFc2xgDp8mD36b6a5LAkuRXYV6hd72X8uBrj2zVvmzite7uZ": [ + { + "amount": "201.988421687", + "slot": { + "period": 123227, + "thread": 25 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 233506, + "thread": 5 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 362541, + "thread": 1 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 516982, + "thread": 21 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 663798, + "thread": 7 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 860175, + "thread": 20 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 996642, + "thread": 13 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 1184614, + "thread": 9 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 1335052, + "thread": 9 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 1572929, + "thread": 3 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 1717902, + "thread": 12 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 1935964, + "thread": 20 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2092706, + "thread": 18 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2293255, + "thread": 20 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2328950, + "thread": 15 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2564192, + "thread": 10 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2786867, + "thread": 5 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 2894708, + "thread": 24 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 3022468, + "thread": 2 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 3259053, + "thread": 15 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 3376171, + "thread": 8 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 3560992, + "thread": 6 + } + }, + { + "amount": "201.988421687", + "slot": { + "period": 3620996, + "thread": 25 + } + }, + { + "amount": "201.988421688", + "slot": { + "period": 3784251, + "thread": 11 + } + } + ], + "AU1vgGh7g7dEYV6sT1BjKKAco4XocMcNjHNBouSGCoFmEgWrVw6F": [ + { + "amount": "167.527345771", + "slot": { + "period": 146188, + "thread": 24 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 206604, + "thread": 27 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 381876, + "thread": 13 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 556828, + "thread": 3 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 692294, + "thread": 8 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 980934, + "thread": 13 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 986606, + "thread": 16 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 1152097, + "thread": 27 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 1421540, + "thread": 13 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 1530017, + "thread": 20 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 1663351, + "thread": 15 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 1924832, + "thread": 5 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2011551, + "thread": 16 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2172376, + "thread": 23 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2410110, + "thread": 1 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2608811, + "thread": 22 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2681014, + "thread": 15 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 2949041, + "thread": 16 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 3095566, + "thread": 30 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 3121357, + "thread": 19 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 3439018, + "thread": 21 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 3541151, + "thread": 6 + } + }, + { + "amount": "167.527345771", + "slot": { + "period": 3678275, + "thread": 17 + } + }, + { + "amount": "167.527345773", + "slot": { + "period": 3815817, + "thread": 5 + } + } + ], + "AU1viHUoGBRNyh37wCYGXWPKucRt9wVDj531tEaatWBFV7UkESCJ": [ + { + "amount": "263.206446100", + "slot": { + "period": 29506, + "thread": 16 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 236252, + "thread": 12 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 401787, + "thread": 19 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 610717, + "thread": 11 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 767959, + "thread": 14 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 946329, + "thread": 22 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1064536, + "thread": 19 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1250459, + "thread": 0 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1387916, + "thread": 7 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1518751, + "thread": 25 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1677675, + "thread": 4 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 1953732, + "thread": 2 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2058460, + "thread": 4 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2269729, + "thread": 14 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2333539, + "thread": 0 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2482974, + "thread": 14 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2646900, + "thread": 6 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2910649, + "thread": 4 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 2990105, + "thread": 5 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 3239471, + "thread": 14 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 3356252, + "thread": 22 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 3516133, + "thread": 10 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 3699557, + "thread": 24 + } + }, + { + "amount": "263.206446100", + "slot": { + "period": 3859511, + "thread": 29 + } + } + ], + "AU1viUKUet31awovHnVeGupzE2vaabjdiwgca4ShKwYbyuSMFV3S": [ + { + "amount": "96.858875446", + "slot": { + "period": 84656, + "thread": 24 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 209742, + "thread": 2 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 466757, + "thread": 2 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 570764, + "thread": 19 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 779787, + "thread": 12 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 955672, + "thread": 4 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1110257, + "thread": 29 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1296690, + "thread": 25 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1363939, + "thread": 5 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1533561, + "thread": 29 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1729782, + "thread": 19 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 1912189, + "thread": 9 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2071152, + "thread": 23 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2266979, + "thread": 31 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2404218, + "thread": 27 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2531022, + "thread": 0 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2726441, + "thread": 0 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 2820975, + "thread": 17 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 3108496, + "thread": 0 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 3274988, + "thread": 4 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 3381887, + "thread": 8 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 3513244, + "thread": 30 + } + }, + { + "amount": "96.858875446", + "slot": { + "period": 3746588, + "thread": 26 + } + }, + { + "amount": "96.858875452", + "slot": { + "period": 3848032, + "thread": 18 + } + } + ], + "AU1vjdTZN4p4AfjXmEX5roHhRsEkFCy38Ru3mXDUvBFgjjScfao7": [ + { + "amount": "155.299270748", + "slot": { + "period": 67823, + "thread": 25 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 236393, + "thread": 3 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 405533, + "thread": 18 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 591187, + "thread": 19 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 796170, + "thread": 18 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 968427, + "thread": 16 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1040892, + "thread": 13 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1162269, + "thread": 5 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1466893, + "thread": 24 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1643198, + "thread": 19 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1711919, + "thread": 6 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 1877207, + "thread": 2 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2081699, + "thread": 11 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2163979, + "thread": 20 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2436432, + "thread": 29 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2513037, + "thread": 27 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2727338, + "thread": 11 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 2857128, + "thread": 5 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 3089831, + "thread": 13 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 3206404, + "thread": 9 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 3361988, + "thread": 31 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 3617754, + "thread": 10 + } + }, + { + "amount": "155.299270748", + "slot": { + "period": 3622241, + "thread": 26 + } + }, + { + "amount": "155.299270743", + "slot": { + "period": 3795138, + "thread": 16 + } + } + ], + "AU1vjej5W1xQNKwz1N8uzoAYnzNuqH3A1Qvyp48mpiZKi2Utuhfi": [ + { + "amount": "75.305553461", + "slot": { + "period": 103914, + "thread": 17 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 191915, + "thread": 18 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 471363, + "thread": 15 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 612941, + "thread": 15 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 671705, + "thread": 3 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 934221, + "thread": 27 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1143333, + "thread": 27 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1154205, + "thread": 28 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1438063, + "thread": 31 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1571313, + "thread": 17 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1725796, + "thread": 28 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 1909289, + "thread": 17 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2076143, + "thread": 14 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2249905, + "thread": 3 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2404621, + "thread": 7 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2570812, + "thread": 10 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2691089, + "thread": 27 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 2823084, + "thread": 11 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3049380, + "thread": 8 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3253132, + "thread": 6 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3403896, + "thread": 6 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3578485, + "thread": 1 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3679738, + "thread": 26 + } + }, + { + "amount": "75.305553461", + "slot": { + "period": 3798205, + "thread": 15 + } + } + ], + "AU1vjot92vUXoJxHpZoaGugUWPtJRGKCBeTAt9BAJQRHAWaPYQka": [ + { + "amount": "251.082666085", + "slot": { + "period": 112616, + "thread": 0 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 223653, + "thread": 16 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 347766, + "thread": 30 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 505156, + "thread": 31 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 759069, + "thread": 5 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 911898, + "thread": 8 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1132223, + "thread": 29 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1155046, + "thread": 18 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1454673, + "thread": 15 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1615683, + "thread": 29 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1652895, + "thread": 21 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 1946856, + "thread": 22 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2067390, + "thread": 28 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2268577, + "thread": 8 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2439881, + "thread": 19 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2467183, + "thread": 8 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2776830, + "thread": 22 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 2879964, + "thread": 7 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 3046228, + "thread": 5 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 3190516, + "thread": 17 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 3427457, + "thread": 18 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 3577597, + "thread": 23 + } + }, + { + "amount": "251.082666085", + "slot": { + "period": 3633199, + "thread": 5 + } + }, + { + "amount": "251.082666082", + "slot": { + "period": 3829479, + "thread": 12 + } + } + ], + "AU1vkfkMic3nNfBhnTL1ibPsGz9F6syPdDojP865pqVh2bHjQFPa": [ + { + "amount": "79.116566763", + "slot": { + "period": 17533, + "thread": 28 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 182355, + "thread": 26 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 491035, + "thread": 5 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 513198, + "thread": 16 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 668981, + "thread": 2 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 982409, + "thread": 3 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1143229, + "thread": 19 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1193427, + "thread": 11 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1400658, + "thread": 19 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1531476, + "thread": 5 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1763887, + "thread": 30 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 1818404, + "thread": 0 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2093381, + "thread": 21 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2254527, + "thread": 24 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2307981, + "thread": 3 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2498342, + "thread": 16 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2681625, + "thread": 17 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 2930216, + "thread": 26 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 3110267, + "thread": 29 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 3211037, + "thread": 21 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 3321459, + "thread": 29 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 3588224, + "thread": 29 + } + }, + { + "amount": "79.116566763", + "slot": { + "period": 3663555, + "thread": 15 + } + }, + { + "amount": "79.116566755", + "slot": { + "period": 3878695, + "thread": 24 + } + } + ], + "AU1vkpYR3wBLp42mzj4UhXZneH1bymFnxnNdQE5qAyxcCn9CkJhJ": [ + { + "amount": "7476.000000000", + "slot": { + "period": 89335, + "thread": 8 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 274392, + "thread": 20 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 390928, + "thread": 9 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 516034, + "thread": 27 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 801537, + "thread": 16 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 954128, + "thread": 20 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1012797, + "thread": 1 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1150503, + "thread": 24 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1337062, + "thread": 19 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1556912, + "thread": 8 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1739248, + "thread": 18 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 1810194, + "thread": 2 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2114537, + "thread": 5 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2281968, + "thread": 26 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2400121, + "thread": 10 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2585831, + "thread": 8 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2762881, + "thread": 17 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2849064, + "thread": 5 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 2975590, + "thread": 19 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3184032, + "thread": 15 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3343614, + "thread": 8 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3592514, + "thread": 16 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3628543, + "thread": 0 + } + }, + { + "amount": "7476.000000000", + "slot": { + "period": 3915099, + "thread": 20 + } + } + ], + "AU1vnNqSZ1tNRs5YSR4SNabj2ScaGut62Jza6459SzWHAUaY7y3T": [ + { + "amount": "256.144781905", + "slot": { + "period": 65599, + "thread": 23 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 286459, + "thread": 7 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 441460, + "thread": 21 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 493122, + "thread": 4 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 688661, + "thread": 26 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 979466, + "thread": 11 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1059602, + "thread": 27 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1265028, + "thread": 6 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1386151, + "thread": 8 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1508722, + "thread": 5 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1735941, + "thread": 14 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 1905200, + "thread": 13 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2022218, + "thread": 21 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2198297, + "thread": 11 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2391670, + "thread": 5 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2507503, + "thread": 8 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2766202, + "thread": 1 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 2835803, + "thread": 8 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3050001, + "thread": 8 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3217139, + "thread": 20 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3328816, + "thread": 27 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3605197, + "thread": 29 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3645924, + "thread": 27 + } + }, + { + "amount": "256.144781905", + "slot": { + "period": 3832663, + "thread": 1 + } + } + ], + "AU1voDBE8vihZFqNVqbipefR13bK48DFLoGbjafW3WzNbgfmgKo9": [ + { + "amount": "246.561804069", + "slot": { + "period": 139788, + "thread": 30 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 240112, + "thread": 9 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 375709, + "thread": 26 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 641313, + "thread": 2 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 743101, + "thread": 25 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 974339, + "thread": 1 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1022371, + "thread": 9 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1271338, + "thread": 9 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1364753, + "thread": 26 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1641922, + "thread": 26 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1715541, + "thread": 31 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 1957141, + "thread": 16 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2138196, + "thread": 0 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2162446, + "thread": 5 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2397912, + "thread": 14 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2601768, + "thread": 14 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2762414, + "thread": 15 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 2883356, + "thread": 29 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 3109468, + "thread": 5 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 3218925, + "thread": 12 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 3405427, + "thread": 1 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 3548125, + "thread": 16 + } + }, + { + "amount": "246.561804069", + "slot": { + "period": 3685104, + "thread": 21 + } + }, + { + "amount": "246.561804070", + "slot": { + "period": 3820555, + "thread": 26 + } + } + ], + "AU1voEMSPDgWReCeWdPsmu2aUBvZNewq37JwoedgeGa3X2WgVTZE": [ + { + "amount": "138.498555446", + "slot": { + "period": 37604, + "thread": 2 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 229979, + "thread": 8 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 473588, + "thread": 3 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 623978, + "thread": 17 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 677250, + "thread": 18 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 853345, + "thread": 17 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1032475, + "thread": 26 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1266434, + "thread": 2 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1344294, + "thread": 28 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1515688, + "thread": 30 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1708095, + "thread": 18 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 1972032, + "thread": 16 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2071448, + "thread": 6 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2164417, + "thread": 26 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2338435, + "thread": 8 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2473420, + "thread": 22 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2765076, + "thread": 10 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 2921492, + "thread": 14 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 3043672, + "thread": 18 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 3257446, + "thread": 22 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 3358392, + "thread": 9 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 3593567, + "thread": 25 + } + }, + { + "amount": "138.498555446", + "slot": { + "period": 3731816, + "thread": 24 + } + }, + { + "amount": "138.498555442", + "slot": { + "period": 3849097, + "thread": 5 + } + } + ], + "AU1voigSkRW8o4t1HiTPgLmQpDbzcavEUyUKnhYT4LPBWHBX3pag": [ + { + "amount": "112.802407314", + "slot": { + "period": 135829, + "thread": 30 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 258298, + "thread": 14 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 405910, + "thread": 28 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 600743, + "thread": 29 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 731714, + "thread": 23 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 826173, + "thread": 12 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1038488, + "thread": 10 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1210973, + "thread": 11 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1472572, + "thread": 0 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1519309, + "thread": 12 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1797136, + "thread": 13 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 1811426, + "thread": 5 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2137276, + "thread": 23 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2287076, + "thread": 4 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2354704, + "thread": 20 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2522772, + "thread": 18 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2730405, + "thread": 2 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2894366, + "thread": 21 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 2964831, + "thread": 25 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 3168901, + "thread": 2 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 3441553, + "thread": 9 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 3458477, + "thread": 21 + } + }, + { + "amount": "112.802407314", + "slot": { + "period": 3652756, + "thread": 19 + } + }, + { + "amount": "112.802407316", + "slot": { + "period": 3843813, + "thread": 16 + } + } + ], + "AU1vq5Us7nDCVnEccVeYAtQRXnUwgys7QR9bF8niy7RYXZkjBGZD": [ + { + "amount": "201.977970050", + "slot": { + "period": 97838, + "thread": 23 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 313054, + "thread": 9 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 348980, + "thread": 27 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 600579, + "thread": 12 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 670023, + "thread": 12 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 959807, + "thread": 4 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1012342, + "thread": 16 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1270441, + "thread": 30 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1373943, + "thread": 19 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1531675, + "thread": 13 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1674424, + "thread": 24 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 1829420, + "thread": 20 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2102021, + "thread": 5 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2217045, + "thread": 22 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2457985, + "thread": 12 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2524566, + "thread": 17 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2778892, + "thread": 6 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2898934, + "thread": 24 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 2971302, + "thread": 30 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 3231713, + "thread": 22 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 3410759, + "thread": 14 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 3552641, + "thread": 4 + } + }, + { + "amount": "201.977970050", + "slot": { + "period": 3649619, + "thread": 9 + } + }, + { + "amount": "201.977970041", + "slot": { + "period": 3798447, + "thread": 13 + } + } + ], + "AU1vt7q9eV2bDAxtrqXBPuPoXcZw5dZmH3xTAhv1vbcHMe4Vys18": [ + { + "amount": "205.816515372", + "slot": { + "period": 52688, + "thread": 7 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 263044, + "thread": 11 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 417989, + "thread": 25 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 590037, + "thread": 21 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 683720, + "thread": 18 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 893971, + "thread": 19 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1025693, + "thread": 13 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1222852, + "thread": 23 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1415478, + "thread": 22 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1549057, + "thread": 5 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1803558, + "thread": 28 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 1864831, + "thread": 21 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2098594, + "thread": 8 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2188744, + "thread": 29 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2382305, + "thread": 19 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2607854, + "thread": 22 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2740859, + "thread": 13 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 2919567, + "thread": 5 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 3110416, + "thread": 21 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 3163007, + "thread": 18 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 3330480, + "thread": 4 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 3567769, + "thread": 15 + } + }, + { + "amount": "205.816515372", + "slot": { + "period": 3691586, + "thread": 29 + } + }, + { + "amount": "205.816515375", + "slot": { + "period": 3857959, + "thread": 13 + } + } + ], + "AU1vtE1AKJe3XhEb9eXYvkxL41bL4XAFE6YCeVxRpHpLFioyBAyT": [ + { + "amount": "57.508681120", + "slot": { + "period": 36144, + "thread": 22 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 280273, + "thread": 18 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 446257, + "thread": 9 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 551871, + "thread": 31 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 655792, + "thread": 11 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 827586, + "thread": 11 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1038040, + "thread": 29 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1154844, + "thread": 20 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1334563, + "thread": 18 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1547525, + "thread": 31 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1683211, + "thread": 0 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 1839175, + "thread": 15 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2001082, + "thread": 0 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2263834, + "thread": 31 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2421467, + "thread": 8 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2524052, + "thread": 28 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2670097, + "thread": 15 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2892865, + "thread": 12 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 2957696, + "thread": 9 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 3202477, + "thread": 31 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 3409929, + "thread": 12 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 3589070, + "thread": 6 + } + }, + { + "amount": "57.508681120", + "slot": { + "period": 3720913, + "thread": 23 + } + }, + { + "amount": "57.508681128", + "slot": { + "period": 3781813, + "thread": 10 + } + } + ], + "AU1vuHHu7CzwYzZuYEiDMx8yfMQYpAucT1rEm5eDmp8kbLcGEQcU": [ + { + "amount": "326.182063437", + "slot": { + "period": 141274, + "thread": 28 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 229010, + "thread": 6 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 434144, + "thread": 29 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 498660, + "thread": 8 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 699551, + "thread": 22 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 875506, + "thread": 23 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1116353, + "thread": 28 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1190314, + "thread": 17 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1323180, + "thread": 6 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1580922, + "thread": 5 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1726762, + "thread": 15 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 1868873, + "thread": 29 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2023932, + "thread": 20 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2216088, + "thread": 27 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2417772, + "thread": 2 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2494263, + "thread": 4 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2695743, + "thread": 9 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 2909514, + "thread": 22 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 3014510, + "thread": 20 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 3137642, + "thread": 3 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 3376305, + "thread": 18 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 3487758, + "thread": 30 + } + }, + { + "amount": "326.182063437", + "slot": { + "period": 3736911, + "thread": 13 + } + }, + { + "amount": "326.182063430", + "slot": { + "period": 3910202, + "thread": 13 + } + } + ], + "AU1vvRnPVRhqipGvMgqpmNcxLSnBBNjPD1QzHpHryDVzaUomwiEN": [ + { + "amount": "56.009986144", + "slot": { + "period": 66356, + "thread": 22 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 261177, + "thread": 10 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 361937, + "thread": 11 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 533237, + "thread": 19 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 722497, + "thread": 25 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 912289, + "thread": 2 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1110166, + "thread": 8 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1215854, + "thread": 8 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1465654, + "thread": 10 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1628546, + "thread": 0 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1781465, + "thread": 5 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 1949155, + "thread": 16 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2063985, + "thread": 17 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2236401, + "thread": 29 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2460386, + "thread": 8 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2575194, + "thread": 20 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2650576, + "thread": 23 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2885366, + "thread": 1 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 2977733, + "thread": 23 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 3243287, + "thread": 27 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 3325365, + "thread": 16 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 3525283, + "thread": 0 + } + }, + { + "amount": "56.009986144", + "slot": { + "period": 3643719, + "thread": 23 + } + }, + { + "amount": "56.009986149", + "slot": { + "period": 3854959, + "thread": 30 + } + } + ], + "AU1vwUx4bBHy3t9csQCwM8xdcfgXeNJ3ovNBCzRWn6N14u8E1Gfo": [ + { + "amount": "115.401245602", + "slot": { + "period": 91003, + "thread": 27 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 295737, + "thread": 16 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 484779, + "thread": 4 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 552367, + "thread": 27 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 742346, + "thread": 2 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 914862, + "thread": 14 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1048100, + "thread": 29 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1234355, + "thread": 5 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1393953, + "thread": 9 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1569112, + "thread": 18 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1747367, + "thread": 7 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1842383, + "thread": 3 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 1983139, + "thread": 24 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 2279976, + "thread": 0 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 2332697, + "thread": 15 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 2523616, + "thread": 2 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 2666663, + "thread": 12 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 2874575, + "thread": 26 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 3026448, + "thread": 23 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 3148410, + "thread": 30 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 3380747, + "thread": 31 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 3462087, + "thread": 13 + } + }, + { + "amount": "115.401245602", + "slot": { + "period": 3723721, + "thread": 2 + } + }, + { + "amount": "115.401245609", + "slot": { + "period": 3899234, + "thread": 13 + } + } + ], + "AU1vy6m9zrBsYdZNUEW2q65HKP6YatcSodubLtnrEbDRuu4h88Dn": [ + { + "amount": "211.329466639", + "slot": { + "period": 108803, + "thread": 26 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 241062, + "thread": 8 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 326403, + "thread": 19 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 631540, + "thread": 14 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 728826, + "thread": 14 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 964831, + "thread": 26 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1021357, + "thread": 14 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1195856, + "thread": 8 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1460926, + "thread": 29 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1531870, + "thread": 16 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1666469, + "thread": 24 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 1894301, + "thread": 19 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2099008, + "thread": 9 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2278840, + "thread": 26 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2429341, + "thread": 27 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2562137, + "thread": 4 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2705661, + "thread": 22 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2846357, + "thread": 18 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 2985271, + "thread": 13 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 3173115, + "thread": 30 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 3322116, + "thread": 15 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 3587767, + "thread": 27 + } + }, + { + "amount": "211.329466639", + "slot": { + "period": 3671523, + "thread": 1 + } + }, + { + "amount": "211.329466633", + "slot": { + "period": 3945146, + "thread": 21 + } + } + ], + "AU1vzUSrzEa24gMCirCiiXigRzivqrLtnn6YttSqz4zCRvYcLNav": [ + { + "amount": "111.489809796", + "slot": { + "period": 155998, + "thread": 9 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 244839, + "thread": 2 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 468789, + "thread": 7 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 625912, + "thread": 25 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 670831, + "thread": 29 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 933147, + "thread": 14 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1061175, + "thread": 24 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1268621, + "thread": 10 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1409326, + "thread": 30 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1538508, + "thread": 24 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1781834, + "thread": 25 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 1933879, + "thread": 9 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2052539, + "thread": 24 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2204389, + "thread": 11 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2398936, + "thread": 13 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2478616, + "thread": 2 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2641969, + "thread": 2 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 2894248, + "thread": 2 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 3018734, + "thread": 26 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 3178848, + "thread": 31 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 3343908, + "thread": 31 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 3579627, + "thread": 10 + } + }, + { + "amount": "111.489809796", + "slot": { + "period": 3731613, + "thread": 28 + } + }, + { + "amount": "111.489809802", + "slot": { + "period": 3928423, + "thread": 5 + } + } + ], + "AU1vzwLL1Bg2W6GBMUZWip1jhrcQkPeFs83C51a3rLr686HzfmcN": [ + { + "amount": "201.746420237", + "slot": { + "period": 124832, + "thread": 31 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 297734, + "thread": 29 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 417118, + "thread": 27 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 590709, + "thread": 16 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 670133, + "thread": 15 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 875341, + "thread": 16 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1069697, + "thread": 23 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1258778, + "thread": 2 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1379871, + "thread": 3 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1540356, + "thread": 3 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1707228, + "thread": 29 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 1816117, + "thread": 16 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2132549, + "thread": 11 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2196204, + "thread": 9 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2400379, + "thread": 17 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2585902, + "thread": 17 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2761726, + "thread": 19 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2903971, + "thread": 16 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 2959390, + "thread": 29 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 3279526, + "thread": 26 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 3356142, + "thread": 28 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 3454947, + "thread": 15 + } + }, + { + "amount": "201.746420237", + "slot": { + "period": 3633933, + "thread": 3 + } + }, + { + "amount": "201.746420243", + "slot": { + "period": 3817295, + "thread": 9 + } + } + ], + "AU1vzyLJM8N4cZmvrjafv6rhQVFqmVvQh2phB3VYzupgiN1wFipV": [ + { + "amount": "480.143980513", + "slot": { + "period": 62816, + "thread": 3 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 240601, + "thread": 7 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 464071, + "thread": 5 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 606852, + "thread": 31 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 713096, + "thread": 3 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 822648, + "thread": 16 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1087167, + "thread": 24 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1308392, + "thread": 14 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1372514, + "thread": 26 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1530345, + "thread": 18 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1729291, + "thread": 16 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1886375, + "thread": 29 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 1998008, + "thread": 13 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 2210559, + "thread": 27 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 2435397, + "thread": 22 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 2610122, + "thread": 19 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 2654950, + "thread": 5 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 2906847, + "thread": 3 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 3101256, + "thread": 22 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 3274537, + "thread": 16 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 3356143, + "thread": 7 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 3546147, + "thread": 27 + } + }, + { + "amount": "480.143980513", + "slot": { + "period": 3697546, + "thread": 28 + } + }, + { + "amount": "480.143980504", + "slot": { + "period": 3882642, + "thread": 8 + } + } + ], + "AU1w2XSeDFuFfLCUXqwqyHmqV92hRLte8tdKzhneUmVZFp8QwnhR": [ + { + "amount": "195.084005914", + "slot": { + "period": 93409, + "thread": 8 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 180402, + "thread": 29 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 369298, + "thread": 30 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 646012, + "thread": 14 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 797301, + "thread": 20 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 921238, + "thread": 22 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1029831, + "thread": 17 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1157895, + "thread": 13 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1375346, + "thread": 18 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1515878, + "thread": 9 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1728589, + "thread": 11 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 1861578, + "thread": 26 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2009013, + "thread": 25 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2161506, + "thread": 26 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2369758, + "thread": 27 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2594857, + "thread": 16 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2687705, + "thread": 4 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 2797530, + "thread": 8 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 3087696, + "thread": 28 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 3240743, + "thread": 31 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 3294740, + "thread": 16 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 3572151, + "thread": 17 + } + }, + { + "amount": "195.084005914", + "slot": { + "period": 3661106, + "thread": 12 + } + }, + { + "amount": "195.084005919", + "slot": { + "period": 3785898, + "thread": 21 + } + } + ], + "AU1w2to73AAkfYA8b1P77ieiLQgPao61wZmWQn4e3HGqEtY8j6af": [ + { + "amount": "411.457085415", + "slot": { + "period": 19798, + "thread": 20 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 288474, + "thread": 8 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 365854, + "thread": 31 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 628091, + "thread": 5 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 707363, + "thread": 25 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 966734, + "thread": 21 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1085728, + "thread": 7 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1229411, + "thread": 28 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1441776, + "thread": 24 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1531955, + "thread": 29 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1730063, + "thread": 30 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1927833, + "thread": 20 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 1985482, + "thread": 6 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 2287706, + "thread": 19 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 2440589, + "thread": 6 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 2598967, + "thread": 20 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 2786435, + "thread": 29 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 2831459, + "thread": 28 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 3092097, + "thread": 1 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 3145884, + "thread": 11 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 3332543, + "thread": 15 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 3614752, + "thread": 30 + } + }, + { + "amount": "411.457085415", + "slot": { + "period": 3690911, + "thread": 6 + } + }, + { + "amount": "411.457085411", + "slot": { + "period": 3879510, + "thread": 12 + } + } + ], + "AU1w3m55iYQawY89yxpfL17PhHjxg1YjEiJDGSPr62v68P2tDsgJ": [ + { + "amount": "141.197838279", + "slot": { + "period": 160421, + "thread": 11 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 183683, + "thread": 31 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 376019, + "thread": 21 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 560127, + "thread": 30 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 803774, + "thread": 7 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 889597, + "thread": 2 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1108856, + "thread": 13 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1211876, + "thread": 2 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1438084, + "thread": 10 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1595589, + "thread": 6 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1747777, + "thread": 23 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 1922493, + "thread": 29 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2091227, + "thread": 31 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2153833, + "thread": 7 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2373082, + "thread": 7 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2475019, + "thread": 29 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2651355, + "thread": 23 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2875410, + "thread": 2 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 2986123, + "thread": 1 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 3196696, + "thread": 30 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 3318894, + "thread": 1 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 3549448, + "thread": 7 + } + }, + { + "amount": "141.197838279", + "slot": { + "period": 3719448, + "thread": 3 + } + }, + { + "amount": "141.197838280", + "slot": { + "period": 3828806, + "thread": 19 + } + } + ], + "AU1w4oBdfSfbaN2TGPSe4LHtnTmzAGTHiVSiWUd6ags6BprE3TBB": [ + { + "amount": "65.979916536", + "slot": { + "period": 156525, + "thread": 9 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 269571, + "thread": 13 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 324327, + "thread": 18 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 551796, + "thread": 9 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 729613, + "thread": 28 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 865943, + "thread": 29 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1100801, + "thread": 17 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1230675, + "thread": 7 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1413849, + "thread": 16 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1503114, + "thread": 30 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1782876, + "thread": 21 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 1869810, + "thread": 4 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2059680, + "thread": 21 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2258690, + "thread": 20 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2392742, + "thread": 7 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2551686, + "thread": 23 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2703791, + "thread": 1 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 2949194, + "thread": 21 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 3092170, + "thread": 11 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 3243315, + "thread": 21 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 3368233, + "thread": 6 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 3601118, + "thread": 11 + } + }, + { + "amount": "65.979916536", + "slot": { + "period": 3706272, + "thread": 19 + } + }, + { + "amount": "65.979916527", + "slot": { + "period": 3864313, + "thread": 15 + } + } + ], + "AU1w5vU7pSPQV4rr4jxWNC7BjR2WeTgvH5EC7FQURjL9pGREBoFM": [ + { + "amount": "68.755774290", + "slot": { + "period": 57715, + "thread": 28 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 195945, + "thread": 6 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 454259, + "thread": 28 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 540154, + "thread": 28 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 716671, + "thread": 20 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 900866, + "thread": 16 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 989879, + "thread": 14 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 1229908, + "thread": 29 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 1472845, + "thread": 0 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 1507452, + "thread": 8 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 1752081, + "thread": 29 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 1967261, + "thread": 17 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2084523, + "thread": 15 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2235821, + "thread": 5 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2371785, + "thread": 27 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2605325, + "thread": 23 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2646653, + "thread": 27 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2827569, + "thread": 12 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 2993049, + "thread": 27 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 3225055, + "thread": 19 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 3383356, + "thread": 6 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 3544839, + "thread": 22 + } + }, + { + "amount": "68.755774290", + "slot": { + "period": 3688283, + "thread": 0 + } + }, + { + "amount": "68.755774279", + "slot": { + "period": 3837686, + "thread": 14 + } + } + ], + "AU1w5wLzySP2Sf6AAaYZ9pFAf2UpNHfcvd4W2hSvxvMCf2FaCpDY": [ + { + "amount": "130.403432598", + "slot": { + "period": 18629, + "thread": 5 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 230786, + "thread": 23 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 486578, + "thread": 9 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 583971, + "thread": 21 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 735883, + "thread": 12 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 846624, + "thread": 31 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1143930, + "thread": 19 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1212895, + "thread": 26 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1453389, + "thread": 7 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1586386, + "thread": 10 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1733260, + "thread": 2 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 1882776, + "thread": 2 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2121910, + "thread": 7 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2251533, + "thread": 19 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2400971, + "thread": 21 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2485422, + "thread": 21 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2629422, + "thread": 14 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2823169, + "thread": 31 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 2971137, + "thread": 21 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 3135154, + "thread": 19 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 3435325, + "thread": 29 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 3603460, + "thread": 22 + } + }, + { + "amount": "130.403432598", + "slot": { + "period": 3711293, + "thread": 20 + } + }, + { + "amount": "130.403432610", + "slot": { + "period": 3797398, + "thread": 13 + } + } + ], + "AU1w6xGoyquz5sToBx1pkXkZGuzDThp7n6z4B3mj2nNUo2fGRZgU": [ + { + "amount": "120.474264155", + "slot": { + "period": 134383, + "thread": 28 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 257167, + "thread": 20 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 432799, + "thread": 19 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 646676, + "thread": 13 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 699266, + "thread": 1 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 944002, + "thread": 3 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1141313, + "thread": 3 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1176860, + "thread": 14 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1427155, + "thread": 29 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1617300, + "thread": 16 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1791884, + "thread": 10 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 1829556, + "thread": 4 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2114273, + "thread": 25 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2175310, + "thread": 18 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2305224, + "thread": 22 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2498147, + "thread": 27 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2713912, + "thread": 6 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 2892087, + "thread": 10 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 3052600, + "thread": 6 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 3174505, + "thread": 28 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 3396909, + "thread": 8 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 3520369, + "thread": 2 + } + }, + { + "amount": "120.474264155", + "slot": { + "period": 3634195, + "thread": 1 + } + }, + { + "amount": "120.474264147", + "slot": { + "period": 3825972, + "thread": 17 + } + } + ], + "AU1w78yyFpBAsXUam5N1eZB18M7weJPPbrUWfiHJmAVgHbEM3ok5": [ + { + "amount": "130.583287350", + "slot": { + "period": 74285, + "thread": 13 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 309861, + "thread": 4 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 421752, + "thread": 18 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 539399, + "thread": 21 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 784579, + "thread": 26 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 837353, + "thread": 4 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1123103, + "thread": 7 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1197337, + "thread": 20 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1395247, + "thread": 21 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1630331, + "thread": 2 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1798940, + "thread": 12 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 1816647, + "thread": 16 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2017609, + "thread": 31 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2281837, + "thread": 10 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2440165, + "thread": 13 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2490584, + "thread": 1 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2647821, + "thread": 21 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 2866060, + "thread": 0 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 3097958, + "thread": 2 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 3132652, + "thread": 20 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 3289316, + "thread": 10 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 3518819, + "thread": 5 + } + }, + { + "amount": "130.583287350", + "slot": { + "period": 3752193, + "thread": 17 + } + }, + { + "amount": "130.583287348", + "slot": { + "period": 3877154, + "thread": 17 + } + } + ], + "AU1w7bn7y8VfKSLufNcctNPzCRBLJ7fJ7VGsnKqGnAGBsQ5SBowc": [ + { + "amount": "282.235736441", + "slot": { + "period": 56462, + "thread": 1 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 238733, + "thread": 7 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 383402, + "thread": 0 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 508110, + "thread": 12 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 753852, + "thread": 22 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 832115, + "thread": 20 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1140003, + "thread": 10 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1279390, + "thread": 14 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1401219, + "thread": 23 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1624301, + "thread": 1 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1655344, + "thread": 26 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 1949223, + "thread": 21 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2022173, + "thread": 23 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2236234, + "thread": 3 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2348096, + "thread": 9 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2603346, + "thread": 0 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2708331, + "thread": 22 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 2853756, + "thread": 27 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 3007456, + "thread": 28 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 3227125, + "thread": 19 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 3305014, + "thread": 3 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 3581964, + "thread": 9 + } + }, + { + "amount": "282.235736441", + "slot": { + "period": 3621960, + "thread": 30 + } + }, + { + "amount": "282.235736437", + "slot": { + "period": 3782323, + "thread": 15 + } + } + ], + "AU1w7uaD9abFU1JCF2AMfTZivpcNNjFRzkzEJVi8uRZrmWYogq6g": [ + { + "amount": "75.214167946", + "slot": { + "period": 137128, + "thread": 16 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 286492, + "thread": 12 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 408235, + "thread": 17 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 638416, + "thread": 22 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 815743, + "thread": 4 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 894474, + "thread": 30 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1088938, + "thread": 11 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1224619, + "thread": 5 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1466382, + "thread": 30 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1495021, + "thread": 12 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1769487, + "thread": 16 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 1915466, + "thread": 17 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2098416, + "thread": 10 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2204086, + "thread": 8 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2360742, + "thread": 12 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2518177, + "thread": 14 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2778094, + "thread": 8 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2794438, + "thread": 24 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 2981499, + "thread": 11 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 3203648, + "thread": 24 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 3447654, + "thread": 23 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 3472794, + "thread": 20 + } + }, + { + "amount": "75.214167946", + "slot": { + "period": 3665074, + "thread": 14 + } + }, + { + "amount": "75.214167957", + "slot": { + "period": 3915062, + "thread": 20 + } + } + ], + "AU1w8mq2eAipRezGumsyAh1khYBLetXbWiYs34M3vbf3hRdb6Tcp": [ + { + "amount": "2518.250000000", + "slot": { + "period": 75881, + "thread": 15 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 243508, + "thread": 15 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 364192, + "thread": 3 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 501396, + "thread": 14 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 819767, + "thread": 30 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 845157, + "thread": 30 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1147283, + "thread": 10 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1189697, + "thread": 25 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1428871, + "thread": 23 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1608433, + "thread": 0 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1651042, + "thread": 28 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 1971391, + "thread": 15 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2063424, + "thread": 0 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2213065, + "thread": 31 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2410131, + "thread": 4 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2512730, + "thread": 17 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2710766, + "thread": 8 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 2896848, + "thread": 26 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3041770, + "thread": 6 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3282093, + "thread": 10 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3294641, + "thread": 15 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3580684, + "thread": 6 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3727766, + "thread": 20 + } + }, + { + "amount": "2518.250000000", + "slot": { + "period": 3934717, + "thread": 19 + } + } + ], + "AU1w9pBeMaMfUbRcLPKKGCc7GtwHcR86fcWCCKbPz9ZSqQY5JQF4": [ + { + "amount": "298.507900919", + "slot": { + "period": 63438, + "thread": 30 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 221159, + "thread": 3 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 379302, + "thread": 29 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 548592, + "thread": 1 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 663969, + "thread": 28 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 872003, + "thread": 24 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 997495, + "thread": 21 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 1250523, + "thread": 11 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 1462331, + "thread": 20 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 1507552, + "thread": 16 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 1734079, + "thread": 28 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 1886970, + "thread": 25 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2100986, + "thread": 19 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2167359, + "thread": 27 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2446416, + "thread": 6 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2513352, + "thread": 1 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2656195, + "thread": 8 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 2899467, + "thread": 21 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 3066917, + "thread": 7 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 3257189, + "thread": 8 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 3313174, + "thread": 23 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 3491812, + "thread": 21 + } + }, + { + "amount": "298.507900919", + "slot": { + "period": 3760842, + "thread": 18 + } + }, + { + "amount": "298.507900915", + "slot": { + "period": 3928168, + "thread": 11 + } + } + ], + "AU1w9xhbS1rWUELsJVsbWpWsLDvrAXTgpjzWXoXpp7Qu4HjjQtet": [ + { + "amount": "388.001652840", + "slot": { + "period": 114577, + "thread": 5 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 309570, + "thread": 13 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 450604, + "thread": 31 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 507191, + "thread": 0 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 721892, + "thread": 24 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 969845, + "thread": 29 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1102937, + "thread": 3 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1295087, + "thread": 22 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1418778, + "thread": 23 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1487186, + "thread": 25 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1713020, + "thread": 27 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 1934294, + "thread": 14 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2022002, + "thread": 5 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2280068, + "thread": 27 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2361137, + "thread": 26 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2559895, + "thread": 27 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2678917, + "thread": 8 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 2938449, + "thread": 16 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 3063804, + "thread": 5 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 3135572, + "thread": 9 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 3316620, + "thread": 23 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 3554026, + "thread": 21 + } + }, + { + "amount": "388.001652840", + "slot": { + "period": 3722771, + "thread": 26 + } + }, + { + "amount": "388.001652835", + "slot": { + "period": 3828811, + "thread": 8 + } + } + ], + "AU1wAZMXsFcwLV5v1KBFmoXJwXQdNwEvzojwF5uYxhozbnPmyKJe": [ + { + "amount": "174.204820018", + "slot": { + "period": 160596, + "thread": 28 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 273178, + "thread": 28 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 430971, + "thread": 19 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 605291, + "thread": 7 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 677288, + "thread": 12 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 944128, + "thread": 22 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1147151, + "thread": 20 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1196813, + "thread": 22 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1382425, + "thread": 4 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1640741, + "thread": 7 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1774401, + "thread": 5 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 1940421, + "thread": 25 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2074987, + "thread": 14 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2237046, + "thread": 25 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2338115, + "thread": 13 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2569076, + "thread": 17 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2783007, + "thread": 26 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2898049, + "thread": 26 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 2989233, + "thread": 2 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 3224436, + "thread": 28 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 3368032, + "thread": 22 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 3551536, + "thread": 26 + } + }, + { + "amount": "174.204820018", + "slot": { + "period": 3637417, + "thread": 2 + } + }, + { + "amount": "174.204820030", + "slot": { + "period": 3890231, + "thread": 9 + } + } + ], + "AU1wAdKXoFKC3829HLu4Bu4p4KSQgAWSbte63NLo21UFeeHrzSB2": [ + { + "amount": "111.855958228", + "slot": { + "period": 131312, + "thread": 22 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 315412, + "thread": 18 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 375072, + "thread": 18 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 593882, + "thread": 12 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 765410, + "thread": 14 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 868162, + "thread": 21 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1058426, + "thread": 8 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1185649, + "thread": 23 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1438743, + "thread": 4 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1510522, + "thread": 30 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1773540, + "thread": 19 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 1903671, + "thread": 28 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2099172, + "thread": 19 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2276236, + "thread": 11 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2428303, + "thread": 21 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2550590, + "thread": 27 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2658730, + "thread": 7 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 2869995, + "thread": 19 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 3019788, + "thread": 23 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 3255332, + "thread": 4 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 3428532, + "thread": 17 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 3536574, + "thread": 3 + } + }, + { + "amount": "111.855958228", + "slot": { + "period": 3717167, + "thread": 4 + } + }, + { + "amount": "111.855958223", + "slot": { + "period": 3945767, + "thread": 15 + } + } + ], + "AU1wAy2sf1JxqbkpEQ9D1UqD6c1S8xw4YGw5JKonW1iMxupeDYPm": [ + { + "amount": "369.839977176", + "slot": { + "period": 21803, + "thread": 11 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 270244, + "thread": 14 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 328455, + "thread": 6 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 523630, + "thread": 25 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 694694, + "thread": 31 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 884143, + "thread": 18 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1115914, + "thread": 1 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1317260, + "thread": 30 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1414107, + "thread": 9 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1526438, + "thread": 24 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1700007, + "thread": 20 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 1906541, + "thread": 23 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2061318, + "thread": 16 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2177874, + "thread": 29 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2402249, + "thread": 12 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2469994, + "thread": 20 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2662881, + "thread": 10 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2833027, + "thread": 15 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 2970844, + "thread": 28 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 3280081, + "thread": 6 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 3325838, + "thread": 22 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 3609630, + "thread": 10 + } + }, + { + "amount": "369.839977176", + "slot": { + "period": 3722863, + "thread": 6 + } + }, + { + "amount": "369.839977168", + "slot": { + "period": 3788247, + "thread": 31 + } + } + ], + "AU1wCUkY2vvhJAtebVue3AazZAQWVWSxJJtiRc94GrEMti9czypJ": [ + { + "amount": "253.110746730", + "slot": { + "period": 92043, + "thread": 7 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 249853, + "thread": 26 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 449626, + "thread": 22 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 633959, + "thread": 16 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 664245, + "thread": 23 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 976972, + "thread": 23 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 995672, + "thread": 27 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 1180227, + "thread": 5 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 1364939, + "thread": 7 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 1511082, + "thread": 22 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 1674878, + "thread": 15 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 1905473, + "thread": 2 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2143137, + "thread": 9 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2246436, + "thread": 24 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2434020, + "thread": 17 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2579887, + "thread": 29 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2784995, + "thread": 25 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 2887215, + "thread": 16 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 3018239, + "thread": 5 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 3237013, + "thread": 3 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 3327295, + "thread": 5 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 3585664, + "thread": 24 + } + }, + { + "amount": "253.110746730", + "slot": { + "period": 3627680, + "thread": 13 + } + }, + { + "amount": "253.110746724", + "slot": { + "period": 3872788, + "thread": 4 + } + } + ], + "AU1wDWcEUQzxhp2DkATLzbvBebjhCw85jpu6PGFVBQN3MV2tfCFq": [ + { + "amount": "344.096106759", + "slot": { + "period": 142003, + "thread": 22 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 199606, + "thread": 17 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 362146, + "thread": 28 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 578294, + "thread": 7 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 749543, + "thread": 31 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 852133, + "thread": 31 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 988774, + "thread": 4 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 1194364, + "thread": 13 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 1477410, + "thread": 18 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 1585019, + "thread": 11 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 1668861, + "thread": 22 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 1884623, + "thread": 9 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2139353, + "thread": 29 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2275742, + "thread": 0 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2386563, + "thread": 15 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2565492, + "thread": 2 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2685781, + "thread": 3 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 2898341, + "thread": 15 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 3042981, + "thread": 2 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 3287579, + "thread": 9 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 3329932, + "thread": 9 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 3612925, + "thread": 25 + } + }, + { + "amount": "344.096106759", + "slot": { + "period": 3709479, + "thread": 17 + } + }, + { + "amount": "344.096106770", + "slot": { + "period": 3804912, + "thread": 15 + } + } + ], + "AU1wDeNtpsfMQJ7EvGCXma3FQoQQFTyFwW1JCcRy2V5oQmpRSMPM": [ + { + "amount": "180.121092471", + "slot": { + "period": 65816, + "thread": 22 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 287988, + "thread": 26 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 429838, + "thread": 1 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 650840, + "thread": 25 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 767588, + "thread": 12 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 854098, + "thread": 30 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1112181, + "thread": 11 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1233245, + "thread": 0 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1396221, + "thread": 2 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1519993, + "thread": 5 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1758834, + "thread": 19 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 1937194, + "thread": 11 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2047046, + "thread": 5 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2194843, + "thread": 17 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2304007, + "thread": 15 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2535359, + "thread": 0 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2700094, + "thread": 0 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2927730, + "thread": 21 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 2966983, + "thread": 26 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 3162528, + "thread": 30 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 3433875, + "thread": 27 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 3500099, + "thread": 8 + } + }, + { + "amount": "180.121092471", + "slot": { + "period": 3771569, + "thread": 17 + } + }, + { + "amount": "180.121092474", + "slot": { + "period": 3941663, + "thread": 17 + } + } + ], + "AU1wE3ViQJWfAMCTwVZRi1MzoXZF1J8xxVJ2MwzAyhHuvah9AEgN": [ + { + "amount": "285.789527058", + "slot": { + "period": 124913, + "thread": 7 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 175171, + "thread": 17 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 423222, + "thread": 31 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 559615, + "thread": 18 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 700834, + "thread": 27 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 905207, + "thread": 27 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1006323, + "thread": 12 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1194183, + "thread": 25 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1341094, + "thread": 31 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1589774, + "thread": 22 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1668283, + "thread": 11 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1941271, + "thread": 10 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 1983622, + "thread": 16 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2169553, + "thread": 4 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2400003, + "thread": 8 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2568499, + "thread": 19 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2765638, + "thread": 26 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2845278, + "thread": 6 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 2987183, + "thread": 12 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 3233821, + "thread": 25 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 3392796, + "thread": 6 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 3471778, + "thread": 31 + } + }, + { + "amount": "285.789527058", + "slot": { + "period": 3724471, + "thread": 13 + } + }, + { + "amount": "285.789527066", + "slot": { + "period": 3946817, + "thread": 0 + } + } + ], + "AU1wF91cdQ9y1NkUmn3cqnhoq1WLjHz1uKCYf8uQYrUXncqtGA26": [ + { + "amount": "731.315561411", + "slot": { + "period": 140230, + "thread": 17 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 320438, + "thread": 11 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 459535, + "thread": 20 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 567956, + "thread": 9 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 694225, + "thread": 17 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 947048, + "thread": 0 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1145711, + "thread": 16 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1178271, + "thread": 9 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1437878, + "thread": 28 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1621464, + "thread": 8 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1651298, + "thread": 26 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 1942655, + "thread": 15 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2007258, + "thread": 19 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2225171, + "thread": 11 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2295627, + "thread": 31 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2472483, + "thread": 29 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2628850, + "thread": 0 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 2825085, + "thread": 31 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 3110288, + "thread": 1 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 3287924, + "thread": 16 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 3449570, + "thread": 7 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 3542439, + "thread": 1 + } + }, + { + "amount": "731.315561411", + "slot": { + "period": 3763611, + "thread": 8 + } + }, + { + "amount": "731.315561405", + "slot": { + "period": 3785503, + "thread": 29 + } + } + ], + "AU1wFpezM9PtY89PqYFBDzAwcMZQbZFXJ7zLVj82aBtsCAYLpcBz": [ + { + "amount": "151.479120169", + "slot": { + "period": 158033, + "thread": 12 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 228628, + "thread": 20 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 447011, + "thread": 25 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 644402, + "thread": 13 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 733179, + "thread": 3 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 866328, + "thread": 22 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1124766, + "thread": 19 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1179771, + "thread": 4 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1352928, + "thread": 20 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1632296, + "thread": 15 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1717497, + "thread": 18 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1926569, + "thread": 19 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 1986548, + "thread": 15 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 2144941, + "thread": 25 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 2372820, + "thread": 24 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 2567177, + "thread": 26 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 2685502, + "thread": 25 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 2869403, + "thread": 8 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 3047124, + "thread": 29 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 3212592, + "thread": 19 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 3383069, + "thread": 9 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 3550997, + "thread": 1 + } + }, + { + "amount": "151.479120169", + "slot": { + "period": 3619052, + "thread": 8 + } + }, + { + "amount": "151.479120160", + "slot": { + "period": 3868933, + "thread": 11 + } + } + ], + "AU1wH6wfBDMgwQJLXhfRnX8pGc94DXKyj1rpCCyye6D12HZBQmJB": [ + { + "amount": "201.680418046", + "slot": { + "period": 151828, + "thread": 8 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 278838, + "thread": 10 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 469360, + "thread": 12 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 587949, + "thread": 18 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 819209, + "thread": 31 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 982698, + "thread": 0 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1108641, + "thread": 26 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1150477, + "thread": 14 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1371706, + "thread": 26 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1591888, + "thread": 25 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1667423, + "thread": 26 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 1917196, + "thread": 9 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2059477, + "thread": 25 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2208907, + "thread": 11 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2397762, + "thread": 11 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2520816, + "thread": 21 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2677509, + "thread": 13 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 2899988, + "thread": 23 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 3035466, + "thread": 25 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 3173599, + "thread": 19 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 3414361, + "thread": 0 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 3491676, + "thread": 4 + } + }, + { + "amount": "201.680418046", + "slot": { + "period": 3649903, + "thread": 23 + } + }, + { + "amount": "201.680418056", + "slot": { + "period": 3832636, + "thread": 30 + } + } + ], + "AU1wHEmCcRJuLfV6ZCRcZcyHFneue9oG8zC8CcMC73zHdMbbDiUc": [ + { + "amount": "131.804876890", + "slot": { + "period": 142127, + "thread": 24 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 299858, + "thread": 4 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 459204, + "thread": 31 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 514944, + "thread": 26 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 684723, + "thread": 24 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 940712, + "thread": 7 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1056123, + "thread": 2 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1293953, + "thread": 29 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1463646, + "thread": 6 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1599154, + "thread": 11 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1766487, + "thread": 27 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1872029, + "thread": 24 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 1989260, + "thread": 5 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 2262104, + "thread": 12 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 2458238, + "thread": 15 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 2467653, + "thread": 20 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 2705372, + "thread": 16 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 2798451, + "thread": 19 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 3032981, + "thread": 10 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 3199862, + "thread": 4 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 3414702, + "thread": 15 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 3473731, + "thread": 23 + } + }, + { + "amount": "131.804876890", + "slot": { + "period": 3749771, + "thread": 14 + } + }, + { + "amount": "131.804876900", + "slot": { + "period": 3826256, + "thread": 21 + } + } + ], + "AU1wJFvU7pSfU4sn6wfMqAykZPWDzhf2wobSqCYVVq7YhXRQM3ZA": [ + { + "amount": "157.898396684", + "slot": { + "period": 154161, + "thread": 17 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 304107, + "thread": 1 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 425317, + "thread": 17 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 615756, + "thread": 20 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 676794, + "thread": 12 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 858135, + "thread": 22 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1031903, + "thread": 2 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1194378, + "thread": 5 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1346802, + "thread": 31 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1598040, + "thread": 31 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1725483, + "thread": 24 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 1928925, + "thread": 24 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2121535, + "thread": 8 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2255650, + "thread": 27 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2305942, + "thread": 8 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2499728, + "thread": 17 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2716581, + "thread": 11 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 2893274, + "thread": 28 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 3059668, + "thread": 7 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 3273528, + "thread": 22 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 3336251, + "thread": 18 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 3552053, + "thread": 1 + } + }, + { + "amount": "157.898396684", + "slot": { + "period": 3729580, + "thread": 27 + } + }, + { + "amount": "157.898396678", + "slot": { + "period": 3825844, + "thread": 1 + } + } + ], + "AU1wK6NFqrCJe3G3mh4f4EFiZQ8DrFaYReTGdQJzcZzXnTc18FGt": [ + { + "amount": "52.770892112", + "slot": { + "period": 79250, + "thread": 6 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 298690, + "thread": 21 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 344495, + "thread": 24 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 527745, + "thread": 25 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 675330, + "thread": 19 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 858670, + "thread": 18 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1024878, + "thread": 22 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1247417, + "thread": 6 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1452591, + "thread": 12 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1542825, + "thread": 13 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1737615, + "thread": 10 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 1919678, + "thread": 21 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2001417, + "thread": 16 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2221543, + "thread": 26 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2327078, + "thread": 14 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2523769, + "thread": 25 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2731925, + "thread": 5 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 2856788, + "thread": 21 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 3100418, + "thread": 13 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 3268708, + "thread": 7 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 3414394, + "thread": 14 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 3501895, + "thread": 24 + } + }, + { + "amount": "52.770892112", + "slot": { + "period": 3643280, + "thread": 24 + } + }, + { + "amount": "52.770892103", + "slot": { + "period": 3795470, + "thread": 23 + } + } + ], + "AU1wKACLgxQiAxUjo43LayAwbmsTVPcN7QSFZFbb6Sx43cT8osMA": [ + { + "amount": "683.198355877", + "slot": { + "period": 156303, + "thread": 21 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 190980, + "thread": 9 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 458312, + "thread": 2 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 540453, + "thread": 16 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 671400, + "thread": 26 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 894119, + "thread": 14 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1010941, + "thread": 10 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1216685, + "thread": 28 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1473549, + "thread": 10 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1489739, + "thread": 16 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1768530, + "thread": 30 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 1886402, + "thread": 27 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2028204, + "thread": 14 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2154869, + "thread": 28 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2316031, + "thread": 25 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2570015, + "thread": 7 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2738946, + "thread": 9 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 2916695, + "thread": 17 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 3093668, + "thread": 26 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 3138433, + "thread": 5 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 3351015, + "thread": 0 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 3512543, + "thread": 12 + } + }, + { + "amount": "683.198355877", + "slot": { + "period": 3730978, + "thread": 16 + } + }, + { + "amount": "683.198355884", + "slot": { + "period": 3886839, + "thread": 12 + } + } + ], + "AU1wKCmiNnVG1F4X1DWBQkDVQEGn7kw131x4xwPhxMpU2SbS4odG": [ + { + "amount": "141.789339389", + "slot": { + "period": 139837, + "thread": 16 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 322849, + "thread": 12 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 407325, + "thread": 8 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 600477, + "thread": 21 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 704594, + "thread": 8 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 961880, + "thread": 19 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1022512, + "thread": 8 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1186462, + "thread": 12 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1391812, + "thread": 20 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1542571, + "thread": 28 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1734583, + "thread": 30 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1817308, + "thread": 21 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 1982674, + "thread": 7 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 2173097, + "thread": 2 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 2421880, + "thread": 12 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 2493746, + "thread": 12 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 2696465, + "thread": 9 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 2825759, + "thread": 21 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 3104311, + "thread": 13 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 3225620, + "thread": 20 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 3415532, + "thread": 19 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 3558804, + "thread": 30 + } + }, + { + "amount": "141.789339389", + "slot": { + "period": 3739019, + "thread": 16 + } + }, + { + "amount": "141.789339382", + "slot": { + "period": 3790963, + "thread": 28 + } + } + ], + "AU1wLTsxXcRKfjVjRBrbgV77ArgyBrLhZAm2VBTXFCmGtKeku8Jz": [ + { + "amount": "367.865359335", + "slot": { + "period": 103174, + "thread": 5 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 186277, + "thread": 27 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 406022, + "thread": 1 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 604909, + "thread": 14 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 707641, + "thread": 6 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 909017, + "thread": 10 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1035286, + "thread": 8 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1315825, + "thread": 15 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1349542, + "thread": 4 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1524445, + "thread": 15 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1700021, + "thread": 3 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 1968657, + "thread": 14 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2098663, + "thread": 11 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2191989, + "thread": 16 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2423110, + "thread": 23 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2572758, + "thread": 21 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2697473, + "thread": 11 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 2831257, + "thread": 17 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 3007974, + "thread": 27 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 3227879, + "thread": 17 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 3305425, + "thread": 29 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 3480207, + "thread": 6 + } + }, + { + "amount": "367.865359335", + "slot": { + "period": 3658702, + "thread": 22 + } + }, + { + "amount": "367.865359337", + "slot": { + "period": 3809208, + "thread": 21 + } + } + ], + "AU1wLWHZPWbcLX2NfijRpX9zqr5QgrkDnNmRpXpF4gq243NziAJ2": [ + { + "amount": "56.606266997", + "slot": { + "period": 147778, + "thread": 2 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 180528, + "thread": 0 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 406891, + "thread": 20 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 606652, + "thread": 6 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 673733, + "thread": 7 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 974560, + "thread": 14 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 986922, + "thread": 16 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 1280456, + "thread": 22 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 1458567, + "thread": 8 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 1646629, + "thread": 14 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 1670588, + "thread": 27 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 1893230, + "thread": 12 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2072937, + "thread": 16 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2258673, + "thread": 9 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2439315, + "thread": 1 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2618476, + "thread": 21 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2719635, + "thread": 16 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 2945281, + "thread": 18 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 3045772, + "thread": 14 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 3183734, + "thread": 12 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 3319061, + "thread": 0 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 3535526, + "thread": 5 + } + }, + { + "amount": "56.606266997", + "slot": { + "period": 3758986, + "thread": 31 + } + }, + { + "amount": "56.606266996", + "slot": { + "period": 3866419, + "thread": 3 + } + } + ], + "AU1wNyX5buT7t7LVs7MaSL38yjYUWHPZRhBPnskfEjKk2sZ3t8Fz": [ + { + "amount": "681.586241532", + "slot": { + "period": 31223, + "thread": 29 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 170531, + "thread": 29 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 359046, + "thread": 29 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 504767, + "thread": 6 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 726419, + "thread": 13 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 850625, + "thread": 25 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1054125, + "thread": 10 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1171760, + "thread": 25 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1349664, + "thread": 20 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1499417, + "thread": 17 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1729854, + "thread": 27 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 1879544, + "thread": 26 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2019047, + "thread": 22 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2251618, + "thread": 29 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2307544, + "thread": 4 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2561021, + "thread": 14 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2655304, + "thread": 11 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 2865356, + "thread": 22 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 3110369, + "thread": 2 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 3169736, + "thread": 16 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 3434558, + "thread": 27 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 3498739, + "thread": 6 + } + }, + { + "amount": "681.586241532", + "slot": { + "period": 3719963, + "thread": 15 + } + }, + { + "amount": "681.586241524", + "slot": { + "period": 3899512, + "thread": 18 + } + } + ], + "AU1wPD5ww8WyZVUxQ1MkfEskrcHSWKLG92QKt3nVwVUTfxUCMag": [ + { + "amount": "75.427956462", + "slot": { + "period": 94403, + "thread": 15 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 262004, + "thread": 29 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 324987, + "thread": 13 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 650454, + "thread": 18 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 804566, + "thread": 1 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 980166, + "thread": 0 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1128506, + "thread": 25 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1284487, + "thread": 17 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1370458, + "thread": 21 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1626417, + "thread": 18 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1673792, + "thread": 13 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 1901301, + "thread": 14 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2086057, + "thread": 6 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2247166, + "thread": 13 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2366924, + "thread": 15 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2479192, + "thread": 29 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2741986, + "thread": 24 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 2891945, + "thread": 6 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 3031208, + "thread": 6 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 3271064, + "thread": 10 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 3426417, + "thread": 26 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 3460007, + "thread": 2 + } + }, + { + "amount": "75.427956462", + "slot": { + "period": 3737006, + "thread": 6 + } + }, + { + "amount": "75.427956469", + "slot": { + "period": 3815762, + "thread": 11 + } + } + ], + "AU1wPMe9HGmz5axKLiP2np1wLbhuBsekdViXjcaLj76DgqHfuABA": [ + { + "amount": "150.824889648", + "slot": { + "period": 77053, + "thread": 4 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 307857, + "thread": 1 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 350152, + "thread": 10 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 630655, + "thread": 21 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 698508, + "thread": 25 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 896190, + "thread": 1 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1035065, + "thread": 11 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1285407, + "thread": 24 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1463896, + "thread": 30 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1588788, + "thread": 9 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1723106, + "thread": 26 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 1935503, + "thread": 16 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2060388, + "thread": 8 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2260661, + "thread": 24 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2373937, + "thread": 15 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2514200, + "thread": 29 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2664708, + "thread": 14 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 2869236, + "thread": 6 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 3103455, + "thread": 22 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 3208472, + "thread": 15 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 3309616, + "thread": 16 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 3454676, + "thread": 0 + } + }, + { + "amount": "150.824889648", + "slot": { + "period": 3742803, + "thread": 17 + } + }, + { + "amount": "150.824889656", + "slot": { + "period": 3929343, + "thread": 3 + } + } + ], + "AU1wPRwXPbPjodh4TwxTtX7WXxYPadQpRiqYK4bURXgibt4owysn": [ + { + "amount": "255.667607312", + "slot": { + "period": 103348, + "thread": 21 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 244306, + "thread": 18 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 396958, + "thread": 2 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 516488, + "thread": 18 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 798329, + "thread": 19 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 891624, + "thread": 17 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1111198, + "thread": 18 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1291632, + "thread": 30 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1324896, + "thread": 10 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1637205, + "thread": 10 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1779261, + "thread": 20 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 1871412, + "thread": 7 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2035057, + "thread": 14 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2180105, + "thread": 11 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2441276, + "thread": 3 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2525650, + "thread": 23 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2759518, + "thread": 21 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2937916, + "thread": 5 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 2988252, + "thread": 28 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 3174707, + "thread": 23 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 3361495, + "thread": 7 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 3475423, + "thread": 27 + } + }, + { + "amount": "255.667607312", + "slot": { + "period": 3752324, + "thread": 4 + } + }, + { + "amount": "255.667607310", + "slot": { + "period": 3905321, + "thread": 3 + } + } + ], + "AU1wPS4bTweQjHeYBNCVKTRGeB2S9aUigfHz9ZinDaUdQgbQjzmx": [ + { + "amount": "212.589731048", + "slot": { + "period": 81484, + "thread": 17 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 264301, + "thread": 18 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 399434, + "thread": 0 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 601837, + "thread": 30 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 679820, + "thread": 18 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 948862, + "thread": 24 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1065701, + "thread": 10 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1259657, + "thread": 31 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1370510, + "thread": 15 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1532907, + "thread": 3 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1726063, + "thread": 13 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 1822279, + "thread": 7 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2138618, + "thread": 25 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2192400, + "thread": 3 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2324139, + "thread": 18 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2603771, + "thread": 12 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2760129, + "thread": 15 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2893104, + "thread": 6 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 2967579, + "thread": 22 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 3177030, + "thread": 23 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 3418522, + "thread": 17 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 3564678, + "thread": 2 + } + }, + { + "amount": "212.589731048", + "slot": { + "period": 3693875, + "thread": 25 + } + }, + { + "amount": "212.589731057", + "slot": { + "period": 3896547, + "thread": 15 + } + } + ], + "AU1wQ8LxFiocWDMrn5a2iAQDNkGzXxPa13GoNoDbL3K8ShSQRXgn": [ + { + "amount": "131.882113790", + "slot": { + "period": 15855, + "thread": 5 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 265081, + "thread": 22 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 383220, + "thread": 6 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 622853, + "thread": 18 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 688768, + "thread": 11 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 823319, + "thread": 31 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1002703, + "thread": 4 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1182378, + "thread": 21 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1447606, + "thread": 21 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1544189, + "thread": 6 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1734187, + "thread": 12 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1958812, + "thread": 6 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 1981612, + "thread": 3 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 2152435, + "thread": 2 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 2366807, + "thread": 18 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 2620721, + "thread": 8 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 2748456, + "thread": 29 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 2794930, + "thread": 12 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 3003985, + "thread": 3 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 3177572, + "thread": 23 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 3302402, + "thread": 4 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 3607533, + "thread": 23 + } + }, + { + "amount": "131.882113790", + "slot": { + "period": 3755753, + "thread": 10 + } + }, + { + "amount": "131.882113786", + "slot": { + "period": 3929724, + "thread": 21 + } + } + ], + "AU1wQGjnxvSi2HwoSkr3sXQNsNxX23zkn11MPu3NDcxV2V1W6F6A": [ + { + "amount": "53.878512940", + "slot": { + "period": 161240, + "thread": 17 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 252535, + "thread": 22 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 332146, + "thread": 29 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 548268, + "thread": 19 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 714251, + "thread": 13 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 916266, + "thread": 23 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1148422, + "thread": 8 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1252784, + "thread": 8 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1467772, + "thread": 3 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1494001, + "thread": 23 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1800516, + "thread": 13 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 1964975, + "thread": 22 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2047854, + "thread": 22 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2146814, + "thread": 30 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2415407, + "thread": 9 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2541472, + "thread": 7 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2653794, + "thread": 6 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 2816235, + "thread": 11 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 3111058, + "thread": 10 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 3252317, + "thread": 20 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 3446150, + "thread": 23 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 3560057, + "thread": 4 + } + }, + { + "amount": "53.878512940", + "slot": { + "period": 3676555, + "thread": 6 + } + }, + { + "amount": "53.878512946", + "slot": { + "period": 3834808, + "thread": 13 + } + } + ], + "AU1wQba6j8QNenpqhCXs2r1NZdiGkwqXiBVi2pxvKJdyfsgg8kyW": [ + { + "amount": "251.808886907", + "slot": { + "period": 119254, + "thread": 2 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 176956, + "thread": 15 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 426761, + "thread": 17 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 509012, + "thread": 28 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 777546, + "thread": 15 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 861120, + "thread": 20 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1058845, + "thread": 29 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1251536, + "thread": 1 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1382160, + "thread": 11 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1630901, + "thread": 3 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1785354, + "thread": 25 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 1814474, + "thread": 13 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2086265, + "thread": 6 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2182617, + "thread": 17 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2420443, + "thread": 24 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2559033, + "thread": 6 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2790517, + "thread": 17 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 2824393, + "thread": 31 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 3064554, + "thread": 9 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 3127818, + "thread": 20 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 3320021, + "thread": 31 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 3588754, + "thread": 22 + } + }, + { + "amount": "251.808886907", + "slot": { + "period": 3659957, + "thread": 18 + } + }, + { + "amount": "251.808886903", + "slot": { + "period": 3927227, + "thread": 23 + } + } + ], + "AU1wQgRbMnXFomduQkCWdPBDNVginbVeSmEAEXE96RUsfCRXJbxR": [ + { + "amount": "94.682167860", + "slot": { + "period": 112163, + "thread": 2 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 228462, + "thread": 13 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 355066, + "thread": 27 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 575231, + "thread": 28 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 801541, + "thread": 9 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 947492, + "thread": 3 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1024131, + "thread": 9 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1216396, + "thread": 29 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1397286, + "thread": 1 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1546826, + "thread": 6 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1741023, + "thread": 2 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1940056, + "thread": 27 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 1990994, + "thread": 28 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 2294585, + "thread": 12 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 2423306, + "thread": 15 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 2504510, + "thread": 25 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 2628532, + "thread": 0 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 2845423, + "thread": 26 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 3048887, + "thread": 11 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 3148127, + "thread": 19 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 3330058, + "thread": 26 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 3476805, + "thread": 26 + } + }, + { + "amount": "94.682167860", + "slot": { + "period": 3709329, + "thread": 9 + } + }, + { + "amount": "94.682167849", + "slot": { + "period": 3938718, + "thread": 28 + } + } + ], + "AU1wReypdKbqFdcmLjSKvFqMGNeJQciYWLpBh9HtmAPQDpkvHEAp": [ + { + "amount": "171.494243722", + "slot": { + "period": 104354, + "thread": 20 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 256656, + "thread": 19 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 422080, + "thread": 30 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 637249, + "thread": 14 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 811137, + "thread": 19 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 918037, + "thread": 29 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 983807, + "thread": 6 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 1239100, + "thread": 0 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 1396513, + "thread": 19 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 1555178, + "thread": 23 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 1717524, + "thread": 14 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 1935014, + "thread": 22 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2097647, + "thread": 22 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2202913, + "thread": 28 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2446503, + "thread": 27 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2519058, + "thread": 21 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2646413, + "thread": 15 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2823183, + "thread": 26 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 2956481, + "thread": 17 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 3176430, + "thread": 27 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 3301825, + "thread": 8 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 3567942, + "thread": 30 + } + }, + { + "amount": "171.494243722", + "slot": { + "period": 3716171, + "thread": 27 + } + }, + { + "amount": "171.494243714", + "slot": { + "period": 3900211, + "thread": 22 + } + } + ], + "AU1wSKgchuF4J7PhEvWMe4nknZHTHUcC77T95zVnTgGdD6x3UTsU": [ + { + "amount": "148.909008320", + "slot": { + "period": 123638, + "thread": 24 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 256495, + "thread": 4 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 375406, + "thread": 13 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 553829, + "thread": 21 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 711374, + "thread": 24 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 847676, + "thread": 29 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1084837, + "thread": 4 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1261193, + "thread": 16 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1461450, + "thread": 29 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1534589, + "thread": 17 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1762154, + "thread": 29 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 1948382, + "thread": 10 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2081564, + "thread": 22 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2286730, + "thread": 2 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2354824, + "thread": 0 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2474566, + "thread": 24 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2704267, + "thread": 4 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 2903284, + "thread": 3 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 3048188, + "thread": 0 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 3169173, + "thread": 14 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 3354213, + "thread": 28 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 3527316, + "thread": 26 + } + }, + { + "amount": "148.909008320", + "slot": { + "period": 3744294, + "thread": 31 + } + }, + { + "amount": "148.909008318", + "slot": { + "period": 3820153, + "thread": 27 + } + } + ], + "AU1wScTh1NcjSUCjRyHUkWBoMJfPDfUj16RA74qttzjSGEbFfyeW": [ + { + "amount": "173.842263962", + "slot": { + "period": 41672, + "thread": 8 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 222102, + "thread": 25 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 363656, + "thread": 1 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 628439, + "thread": 12 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 671608, + "thread": 18 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 864111, + "thread": 4 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 988221, + "thread": 6 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 1241725, + "thread": 4 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 1344044, + "thread": 30 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 1620683, + "thread": 30 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 1785940, + "thread": 26 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 1872898, + "thread": 16 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2005306, + "thread": 8 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2198628, + "thread": 2 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2371725, + "thread": 2 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2535154, + "thread": 19 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2780809, + "thread": 6 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 2874769, + "thread": 1 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 3046133, + "thread": 16 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 3178031, + "thread": 21 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 3383794, + "thread": 22 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 3458406, + "thread": 17 + } + }, + { + "amount": "173.842263962", + "slot": { + "period": 3624249, + "thread": 12 + } + }, + { + "amount": "173.842263952", + "slot": { + "period": 3896195, + "thread": 9 + } + } + ], + "AU1wSpXdb5sehSDsE9cfCuv1gnS2Ywq5ow34sqnaJXvPzyR8SJYV": [ + { + "amount": "91.245996566", + "slot": { + "period": 105989, + "thread": 0 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 212090, + "thread": 21 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 373224, + "thread": 7 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 623165, + "thread": 21 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 677887, + "thread": 19 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 837426, + "thread": 17 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1006982, + "thread": 7 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1252498, + "thread": 18 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1384490, + "thread": 4 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1631999, + "thread": 23 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1792817, + "thread": 29 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 1940966, + "thread": 31 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2081236, + "thread": 21 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2167164, + "thread": 4 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2443176, + "thread": 11 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2578669, + "thread": 20 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2657342, + "thread": 17 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 2844270, + "thread": 3 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 3004840, + "thread": 25 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 3237550, + "thread": 14 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 3330015, + "thread": 24 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 3601200, + "thread": 20 + } + }, + { + "amount": "91.245996566", + "slot": { + "period": 3718690, + "thread": 0 + } + }, + { + "amount": "91.245996559", + "slot": { + "period": 3939391, + "thread": 27 + } + } + ], + "AU1wT32aZVQ2Yg7fceWkvSPENhXy8V6MmJCnQZpvdKxgNcMKUPeY": [ + { + "amount": "419.739128871", + "slot": { + "period": 70330, + "thread": 17 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 272956, + "thread": 18 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 354126, + "thread": 3 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 593653, + "thread": 28 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 747214, + "thread": 9 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 949948, + "thread": 25 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1112472, + "thread": 9 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1192977, + "thread": 27 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1324694, + "thread": 25 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1586621, + "thread": 13 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1785148, + "thread": 1 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1889107, + "thread": 2 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 1978608, + "thread": 2 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 2275053, + "thread": 3 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 2432574, + "thread": 30 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 2517394, + "thread": 25 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 2764063, + "thread": 15 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 2798409, + "thread": 0 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 3002168, + "thread": 14 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 3225005, + "thread": 8 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 3369908, + "thread": 3 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 3613487, + "thread": 22 + } + }, + { + "amount": "419.739128871", + "slot": { + "period": 3711842, + "thread": 10 + } + }, + { + "amount": "419.739128882", + "slot": { + "period": 3944016, + "thread": 6 + } + } + ], + "AU1wULGJ5B3FpnkoBYcBUTuURc9ZVfMRxBC9N9Ya2kJWemQPEcJY": [ + { + "amount": "85.092546029", + "slot": { + "period": 153232, + "thread": 31 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 272646, + "thread": 12 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 390985, + "thread": 12 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 600402, + "thread": 14 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 744613, + "thread": 18 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 903934, + "thread": 20 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1026596, + "thread": 31 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1308892, + "thread": 5 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1332064, + "thread": 25 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1542242, + "thread": 0 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1735814, + "thread": 28 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 1893033, + "thread": 29 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2038225, + "thread": 2 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2212586, + "thread": 12 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2380920, + "thread": 3 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2585670, + "thread": 6 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2690037, + "thread": 27 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 2900194, + "thread": 23 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 3010859, + "thread": 13 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 3217859, + "thread": 17 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 3316956, + "thread": 13 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 3614453, + "thread": 26 + } + }, + { + "amount": "85.092546029", + "slot": { + "period": 3711260, + "thread": 28 + } + }, + { + "amount": "85.092546020", + "slot": { + "period": 3926794, + "thread": 16 + } + } + ], + "AU1wULVmEQBj6KwBgvjpUqviLWqa9bf6EJ5CHfPrq7dbFxcTLH3Z": [ + { + "amount": "103.312297857", + "slot": { + "period": 92744, + "thread": 1 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 170396, + "thread": 8 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 327570, + "thread": 22 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 633402, + "thread": 0 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 760458, + "thread": 3 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 873498, + "thread": 12 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1142118, + "thread": 20 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1241940, + "thread": 20 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1375374, + "thread": 8 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1531201, + "thread": 22 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1657388, + "thread": 0 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 1839349, + "thread": 19 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2085450, + "thread": 20 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2274502, + "thread": 31 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2457842, + "thread": 22 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2524920, + "thread": 4 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2771789, + "thread": 10 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 2816691, + "thread": 10 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 3109810, + "thread": 16 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 3238974, + "thread": 0 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 3382512, + "thread": 28 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 3555489, + "thread": 30 + } + }, + { + "amount": "103.312297857", + "slot": { + "period": 3621605, + "thread": 6 + } + }, + { + "amount": "103.312297861", + "slot": { + "period": 3928044, + "thread": 17 + } + } + ], + "AU1wVaCAaG3Jmgr6beaMoy4Fjn3MdyizRhuLDwFuA9bXcmU7viSV": [ + { + "amount": "215.994950601", + "slot": { + "period": 89339, + "thread": 26 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 249070, + "thread": 29 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 429105, + "thread": 7 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 647898, + "thread": 29 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 716934, + "thread": 14 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 935061, + "thread": 14 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1067975, + "thread": 2 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1311424, + "thread": 21 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1427202, + "thread": 9 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1509683, + "thread": 30 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1749797, + "thread": 7 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 1829591, + "thread": 20 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2059363, + "thread": 22 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2202496, + "thread": 11 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2461655, + "thread": 16 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2606172, + "thread": 8 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2768651, + "thread": 5 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2866972, + "thread": 19 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 2990208, + "thread": 8 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 3208607, + "thread": 14 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 3307101, + "thread": 15 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 3558244, + "thread": 28 + } + }, + { + "amount": "215.994950601", + "slot": { + "period": 3672795, + "thread": 5 + } + }, + { + "amount": "215.994950594", + "slot": { + "period": 3944960, + "thread": 12 + } + } + ], + "AU1wVzettwXWVYZ2DtHc4kim4LVhMRuFAAtVbz3RB5Ypg32pdmUG": [ + { + "amount": "212.299722712", + "slot": { + "period": 145248, + "thread": 5 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 260354, + "thread": 27 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 333039, + "thread": 25 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 575449, + "thread": 2 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 723384, + "thread": 11 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 866450, + "thread": 30 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1112020, + "thread": 12 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1242232, + "thread": 17 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1452774, + "thread": 3 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1575820, + "thread": 14 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1670917, + "thread": 23 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 1873250, + "thread": 22 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2007596, + "thread": 8 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2231030, + "thread": 25 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2396010, + "thread": 16 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2473697, + "thread": 27 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2712185, + "thread": 1 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 2852511, + "thread": 6 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 3048661, + "thread": 30 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 3243629, + "thread": 25 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 3442249, + "thread": 25 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 3590827, + "thread": 9 + } + }, + { + "amount": "212.299722712", + "slot": { + "period": 3763665, + "thread": 21 + } + }, + { + "amount": "212.299722720", + "slot": { + "period": 3935682, + "thread": 6 + } + } + ], + "AU1wWijMeyM4vDPhNMcmah9ont7ZuhfgUzpXLfcgUuxnE8K2oAK": [ + { + "amount": "150.226096215", + "slot": { + "period": 40723, + "thread": 0 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 202060, + "thread": 16 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 332734, + "thread": 3 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 623577, + "thread": 20 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 787712, + "thread": 16 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 905632, + "thread": 21 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1016936, + "thread": 27 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1299750, + "thread": 6 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1418456, + "thread": 16 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1479633, + "thread": 7 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1734249, + "thread": 20 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 1849198, + "thread": 27 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2092204, + "thread": 2 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2211052, + "thread": 19 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2401769, + "thread": 26 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2599374, + "thread": 27 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2773335, + "thread": 29 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2947305, + "thread": 6 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 2986353, + "thread": 31 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 3122326, + "thread": 11 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 3298984, + "thread": 29 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 3567556, + "thread": 2 + } + }, + { + "amount": "150.226096215", + "slot": { + "period": 3742187, + "thread": 8 + } + }, + { + "amount": "150.226096226", + "slot": { + "period": 3838299, + "thread": 19 + } + } + ], + "AU1wWtzUbq1Z5H37S6egVRbraupuC3DWc5n2dKynUgQwHc55DXMt": [ + { + "amount": "203.640412293", + "slot": { + "period": 44251, + "thread": 12 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 266252, + "thread": 16 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 372170, + "thread": 17 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 511631, + "thread": 30 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 783720, + "thread": 4 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 824062, + "thread": 17 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1101126, + "thread": 15 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1204720, + "thread": 24 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1320652, + "thread": 15 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1592929, + "thread": 4 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1774411, + "thread": 31 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 1830477, + "thread": 6 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2019449, + "thread": 14 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2268802, + "thread": 20 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2416582, + "thread": 4 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2509209, + "thread": 6 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2764466, + "thread": 14 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2887060, + "thread": 3 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 2966712, + "thread": 2 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 3234823, + "thread": 16 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 3314810, + "thread": 0 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 3495805, + "thread": 22 + } + }, + { + "amount": "203.640412293", + "slot": { + "period": 3731122, + "thread": 2 + } + }, + { + "amount": "203.640412283", + "slot": { + "period": 3791521, + "thread": 13 + } + } + ], + "AU1wYLE51EGsVZ13Fq8dvGKdhZvmehd9VYoTpuRBGwaqHmcEmh7G": [ + { + "amount": "139.251551287", + "slot": { + "period": 13626, + "thread": 1 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 295103, + "thread": 2 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 382650, + "thread": 21 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 585860, + "thread": 14 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 705885, + "thread": 1 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 964444, + "thread": 11 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1064274, + "thread": 22 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1169732, + "thread": 23 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1346265, + "thread": 25 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1550644, + "thread": 18 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1690274, + "thread": 21 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 1828505, + "thread": 20 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2104547, + "thread": 28 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2171383, + "thread": 22 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2414700, + "thread": 22 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2565844, + "thread": 2 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2708723, + "thread": 25 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 2888869, + "thread": 16 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 3111031, + "thread": 17 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 3261494, + "thread": 27 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 3315175, + "thread": 17 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 3500029, + "thread": 22 + } + }, + { + "amount": "139.251551287", + "slot": { + "period": 3760030, + "thread": 7 + } + }, + { + "amount": "139.251551294", + "slot": { + "period": 3834982, + "thread": 8 + } + } + ], + "AU1wYfwT6NWrD1aVfCfmubMo3Rq1jahQm1MTJqLd1uZEkdDEqkzL": [ + { + "amount": "346.651760924", + "slot": { + "period": 89111, + "thread": 10 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 264885, + "thread": 14 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 450072, + "thread": 17 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 560375, + "thread": 11 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 675763, + "thread": 22 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 912107, + "thread": 20 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1027559, + "thread": 1 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1310881, + "thread": 19 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1366889, + "thread": 11 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1517408, + "thread": 28 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1760553, + "thread": 18 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 1848080, + "thread": 7 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2086062, + "thread": 26 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2279470, + "thread": 28 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2329672, + "thread": 24 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2500967, + "thread": 18 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2727962, + "thread": 25 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 2832822, + "thread": 4 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 3038581, + "thread": 24 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 3129290, + "thread": 8 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 3346538, + "thread": 15 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 3496274, + "thread": 7 + } + }, + { + "amount": "346.651760924", + "slot": { + "period": 3721532, + "thread": 6 + } + }, + { + "amount": "346.651760914", + "slot": { + "period": 3874472, + "thread": 11 + } + } + ], + "AU1wZj2tpjvPRZhM1EumDMRke5DfWbzi3htDQdUmaB6CQ9bThNBU": [ + { + "amount": "390.103728985", + "slot": { + "period": 11886, + "thread": 4 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 241689, + "thread": 1 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 399289, + "thread": 31 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 644955, + "thread": 4 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 763846, + "thread": 27 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 922094, + "thread": 29 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1054971, + "thread": 10 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1284581, + "thread": 27 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1372248, + "thread": 23 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1567120, + "thread": 12 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1730589, + "thread": 6 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 1865257, + "thread": 16 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2121217, + "thread": 8 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2291226, + "thread": 14 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2352978, + "thread": 11 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2577514, + "thread": 18 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2705896, + "thread": 13 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 2894751, + "thread": 12 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 3028024, + "thread": 30 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 3259366, + "thread": 14 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 3402033, + "thread": 26 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 3530341, + "thread": 4 + } + }, + { + "amount": "390.103728985", + "slot": { + "period": 3661516, + "thread": 17 + } + }, + { + "amount": "390.103728995", + "slot": { + "period": 3874389, + "thread": 15 + } + } + ], + "AU1wa14M7GzWef2CcgXqMttiP6GKb71pakJm6LfVMswfNHm7R5LQ": [ + { + "amount": "134.734264619", + "slot": { + "period": 23191, + "thread": 12 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 290978, + "thread": 23 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 473663, + "thread": 8 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 560117, + "thread": 1 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 663813, + "thread": 23 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 955640, + "thread": 7 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1102437, + "thread": 16 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1287474, + "thread": 26 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1408480, + "thread": 2 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1614543, + "thread": 16 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1780838, + "thread": 17 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 1966494, + "thread": 9 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2081064, + "thread": 18 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2203894, + "thread": 19 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2401360, + "thread": 28 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2472932, + "thread": 5 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2726126, + "thread": 7 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 2879926, + "thread": 24 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 3080990, + "thread": 0 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 3271654, + "thread": 21 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 3331859, + "thread": 19 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 3594833, + "thread": 25 + } + }, + { + "amount": "134.734264619", + "slot": { + "period": 3724728, + "thread": 5 + } + }, + { + "amount": "134.734264612", + "slot": { + "period": 3810135, + "thread": 19 + } + } + ], + "AU1waSVnicniX4gK9mUBJmr2LnD3eSsWaLd8gWZ3yrFxQC78Pm91": [ + { + "amount": "145.394030162", + "slot": { + "period": 143629, + "thread": 26 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 229178, + "thread": 8 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 471954, + "thread": 2 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 634765, + "thread": 29 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 739772, + "thread": 23 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 954435, + "thread": 23 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1053452, + "thread": 22 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1203981, + "thread": 29 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1430629, + "thread": 7 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1632654, + "thread": 14 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1718313, + "thread": 28 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1862199, + "thread": 17 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 1988084, + "thread": 1 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 2251565, + "thread": 16 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 2420552, + "thread": 22 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 2558609, + "thread": 19 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 2639969, + "thread": 13 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 2896929, + "thread": 18 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 3008006, + "thread": 9 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 3140503, + "thread": 19 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 3430690, + "thread": 1 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 3540102, + "thread": 0 + } + }, + { + "amount": "145.394030162", + "slot": { + "period": 3716952, + "thread": 12 + } + }, + { + "amount": "145.394030166", + "slot": { + "period": 3848260, + "thread": 30 + } + } + ], + "AU1wadFJue7QeLjwfGnHUK5bRbjcb1mFxhrmQACGnCXfqarZ59n3": [ + { + "amount": "208.676540948", + "slot": { + "period": 87411, + "thread": 3 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 200256, + "thread": 10 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 372923, + "thread": 9 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 622780, + "thread": 3 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 716679, + "thread": 8 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 973337, + "thread": 30 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1124256, + "thread": 18 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1300956, + "thread": 28 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1474368, + "thread": 0 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1555383, + "thread": 0 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1722904, + "thread": 31 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 1883796, + "thread": 5 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2110011, + "thread": 12 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2156832, + "thread": 0 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2420308, + "thread": 13 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2595871, + "thread": 18 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2731241, + "thread": 12 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 2820828, + "thread": 27 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 3102321, + "thread": 17 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 3124048, + "thread": 10 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 3432148, + "thread": 21 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 3518711, + "thread": 4 + } + }, + { + "amount": "208.676540948", + "slot": { + "period": 3639002, + "thread": 25 + } + }, + { + "amount": "208.676540944", + "slot": { + "period": 3851256, + "thread": 16 + } + } + ], + "AU1waxyg5oBpztAVNyLHFPTiJ5bnHrAy3QS7QmBCojz1KUggVUqZ": [ + { + "amount": "651.826673468", + "slot": { + "period": 162756, + "thread": 0 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 205272, + "thread": 10 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 331975, + "thread": 17 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 609883, + "thread": 8 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 792136, + "thread": 24 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 928538, + "thread": 14 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1025925, + "thread": 27 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1245679, + "thread": 11 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1441788, + "thread": 13 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1628611, + "thread": 12 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1649740, + "thread": 29 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 1811793, + "thread": 25 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2055349, + "thread": 18 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2292130, + "thread": 13 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2448241, + "thread": 3 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2568107, + "thread": 10 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2753870, + "thread": 14 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 2876553, + "thread": 10 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 3062671, + "thread": 27 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 3213490, + "thread": 24 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 3313920, + "thread": 1 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 3494173, + "thread": 8 + } + }, + { + "amount": "651.826673468", + "slot": { + "period": 3732606, + "thread": 2 + } + }, + { + "amount": "651.826673475", + "slot": { + "period": 3825763, + "thread": 18 + } + } + ], + "AU1wbPugth44CYJSiz2CMNPWc4e7AtKshd6FTJ3Y8s8n55RrXf75": [ + { + "amount": "222.145246715", + "slot": { + "period": 145986, + "thread": 10 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 261561, + "thread": 14 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 415666, + "thread": 10 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 547222, + "thread": 8 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 667680, + "thread": 20 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 886001, + "thread": 24 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1044886, + "thread": 22 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1242180, + "thread": 27 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1453215, + "thread": 6 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1560906, + "thread": 20 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1689382, + "thread": 11 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 1839190, + "thread": 11 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2015652, + "thread": 25 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2212338, + "thread": 26 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2351098, + "thread": 12 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2528341, + "thread": 28 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2677421, + "thread": 1 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 2870848, + "thread": 8 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 3113425, + "thread": 30 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 3239421, + "thread": 2 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 3344018, + "thread": 30 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 3557787, + "thread": 26 + } + }, + { + "amount": "222.145246715", + "slot": { + "period": 3705516, + "thread": 19 + } + }, + { + "amount": "222.145246723", + "slot": { + "period": 3811667, + "thread": 10 + } + } + ], + "AU1wbh2cGWD9XUFrAvKjowb4nBFpEbSSeoHcp694BiwC5Xqjr6o7": [ + { + "amount": "183.132454418", + "slot": { + "period": 49261, + "thread": 13 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 319355, + "thread": 13 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 359397, + "thread": 7 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 510334, + "thread": 27 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 781805, + "thread": 12 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 903377, + "thread": 12 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1052766, + "thread": 18 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1269878, + "thread": 25 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1417537, + "thread": 11 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1496618, + "thread": 9 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1717153, + "thread": 2 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 1894208, + "thread": 27 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2088568, + "thread": 22 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2193095, + "thread": 21 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2375969, + "thread": 25 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2527472, + "thread": 6 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2627187, + "thread": 31 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 2952828, + "thread": 15 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 3068697, + "thread": 8 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 3223021, + "thread": 16 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 3312670, + "thread": 26 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 3490086, + "thread": 10 + } + }, + { + "amount": "183.132454418", + "slot": { + "period": 3775910, + "thread": 25 + } + }, + { + "amount": "183.132454409", + "slot": { + "period": 3878527, + "thread": 24 + } + } + ], + "AU1wcmswBE2t1XUpSL2PfHbxj2Q2YhpiSGK3US4QRdYH2jecKJZv": [ + { + "amount": "194.797567243", + "slot": { + "period": 42489, + "thread": 22 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 303562, + "thread": 4 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 357753, + "thread": 25 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 583367, + "thread": 16 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 661118, + "thread": 28 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 942250, + "thread": 24 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1061618, + "thread": 23 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1219528, + "thread": 15 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1321318, + "thread": 22 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1501676, + "thread": 30 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1759100, + "thread": 25 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1938263, + "thread": 10 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 1995823, + "thread": 23 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 2143966, + "thread": 20 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 2411252, + "thread": 18 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 2599519, + "thread": 30 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 2704960, + "thread": 8 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 2846578, + "thread": 28 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 3066612, + "thread": 14 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 3281324, + "thread": 10 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 3383954, + "thread": 0 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 3474013, + "thread": 22 + } + }, + { + "amount": "194.797567243", + "slot": { + "period": 3631944, + "thread": 31 + } + }, + { + "amount": "194.797567251", + "slot": { + "period": 3793541, + "thread": 29 + } + } + ], + "AU1wcnWpHMshVQ16qPmbKQx858g2SnswAtASkA8hwZ2BiKGjJf7P": [ + { + "amount": "85.545645836", + "slot": { + "period": 153040, + "thread": 26 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 213747, + "thread": 9 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 391695, + "thread": 21 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 598456, + "thread": 20 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 762912, + "thread": 24 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 916732, + "thread": 23 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1105169, + "thread": 23 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1246301, + "thread": 22 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1449782, + "thread": 21 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1617145, + "thread": 12 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1806426, + "thread": 25 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 1826053, + "thread": 10 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2002428, + "thread": 31 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2260034, + "thread": 19 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2425364, + "thread": 11 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2546037, + "thread": 22 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2737293, + "thread": 30 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 2809749, + "thread": 26 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 3100410, + "thread": 19 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 3189944, + "thread": 3 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 3411988, + "thread": 24 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 3475175, + "thread": 7 + } + }, + { + "amount": "85.545645836", + "slot": { + "period": 3771499, + "thread": 26 + } + }, + { + "amount": "85.545645839", + "slot": { + "period": 3854058, + "thread": 29 + } + } + ], + "AU1wcrJHMc17asswTDdUCBSRJawQbxGazro6Kpa8sVjZhaGwV2TJ": [ + { + "amount": "309.564925927", + "slot": { + "period": 14051, + "thread": 15 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 236995, + "thread": 7 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 449031, + "thread": 16 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 602898, + "thread": 3 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 685551, + "thread": 2 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 980126, + "thread": 5 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 985412, + "thread": 19 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 1241474, + "thread": 22 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 1477487, + "thread": 31 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 1532563, + "thread": 30 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 1777370, + "thread": 4 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 1913872, + "thread": 21 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2071239, + "thread": 18 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2262786, + "thread": 19 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2313708, + "thread": 4 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2571969, + "thread": 18 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2682044, + "thread": 2 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 2866910, + "thread": 13 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 3025940, + "thread": 31 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 3247542, + "thread": 25 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 3359085, + "thread": 12 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 3611337, + "thread": 4 + } + }, + { + "amount": "309.564925927", + "slot": { + "period": 3751124, + "thread": 31 + } + }, + { + "amount": "309.564925919", + "slot": { + "period": 3810453, + "thread": 28 + } + } + ], + "AU1wdFthxMoNq6FWACtz8k2pPx4ERgC9nma62T1zzBBHsbppnGuS": [ + { + "amount": "90.896233030", + "slot": { + "period": 124245, + "thread": 8 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 291078, + "thread": 8 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 351706, + "thread": 12 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 540465, + "thread": 16 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 662360, + "thread": 17 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 940998, + "thread": 15 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1002363, + "thread": 1 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1218766, + "thread": 12 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1437284, + "thread": 8 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1600295, + "thread": 18 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1778386, + "thread": 1 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1818509, + "thread": 4 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 1996005, + "thread": 28 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 2204806, + "thread": 22 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 2311290, + "thread": 27 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 2617069, + "thread": 0 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 2737524, + "thread": 9 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 2847580, + "thread": 30 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 3039435, + "thread": 16 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 3232216, + "thread": 25 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 3380171, + "thread": 2 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 3531627, + "thread": 13 + } + }, + { + "amount": "90.896233030", + "slot": { + "period": 3680678, + "thread": 11 + } + }, + { + "amount": "90.896233035", + "slot": { + "period": 3880714, + "thread": 16 + } + } + ], + "AU1weUNjLNLdeQMuEUs2zuEJUuJG9keTmovF9SX3hjTQJWTZZXss": [ + { + "amount": "92.903865387", + "slot": { + "period": 132720, + "thread": 15 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 233858, + "thread": 7 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 489370, + "thread": 5 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 625116, + "thread": 25 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 654793, + "thread": 25 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 853511, + "thread": 6 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1097754, + "thread": 18 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1295563, + "thread": 2 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1328577, + "thread": 1 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1646037, + "thread": 9 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1692192, + "thread": 27 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 1948454, + "thread": 3 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2039134, + "thread": 24 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2200162, + "thread": 31 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2299409, + "thread": 19 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2605182, + "thread": 11 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2689298, + "thread": 21 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 2839296, + "thread": 6 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 3071137, + "thread": 16 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 3137549, + "thread": 17 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 3377786, + "thread": 9 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 3617720, + "thread": 8 + } + }, + { + "amount": "92.903865387", + "slot": { + "period": 3692829, + "thread": 27 + } + }, + { + "amount": "92.903865380", + "slot": { + "period": 3823384, + "thread": 15 + } + } + ], + "AU1werVQUp6bTBZptuWrsZ4D6TnhzhzB7qvEaP4D5PMarioe7tBt": [ + { + "amount": "134.113283670", + "slot": { + "period": 151225, + "thread": 22 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 223979, + "thread": 31 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 337646, + "thread": 9 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 579168, + "thread": 8 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 703488, + "thread": 18 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 869253, + "thread": 22 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1145607, + "thread": 30 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1211160, + "thread": 3 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1323305, + "thread": 24 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1618409, + "thread": 12 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1734533, + "thread": 5 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 1901242, + "thread": 16 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2077673, + "thread": 20 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2265712, + "thread": 10 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2414916, + "thread": 8 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2469286, + "thread": 1 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2784185, + "thread": 0 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 2872957, + "thread": 17 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3050378, + "thread": 16 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3192676, + "thread": 5 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3337903, + "thread": 29 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3571223, + "thread": 26 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3718803, + "thread": 20 + } + }, + { + "amount": "134.113283670", + "slot": { + "period": 3833515, + "thread": 6 + } + } + ], + "AU1wfNryKLCbwnUXYC3wnxB1i5AJyeZpJjrQbnbp7MmBx48rMJbu": [ + { + "amount": "86.732879072", + "slot": { + "period": 61360, + "thread": 31 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 184225, + "thread": 18 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 378235, + "thread": 27 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 603340, + "thread": 19 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 723975, + "thread": 31 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 958114, + "thread": 28 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1115506, + "thread": 5 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1185156, + "thread": 20 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1446820, + "thread": 2 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1635253, + "thread": 30 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1773417, + "thread": 21 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 1935785, + "thread": 4 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2064772, + "thread": 30 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2249269, + "thread": 19 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2323944, + "thread": 7 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2599167, + "thread": 11 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2772121, + "thread": 5 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 2878283, + "thread": 6 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 3057808, + "thread": 25 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 3199494, + "thread": 2 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 3310998, + "thread": 15 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 3613358, + "thread": 3 + } + }, + { + "amount": "86.732879072", + "slot": { + "period": 3701668, + "thread": 6 + } + }, + { + "amount": "86.732879075", + "slot": { + "period": 3833996, + "thread": 27 + } + } + ], + "AU1wfiYgRqhxqpXoLCsKLbxDy3tgRyRwf77QaoaR3ZFnBsr7kLQ2": [ + { + "amount": "108.710657533", + "slot": { + "period": 40569, + "thread": 16 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 240175, + "thread": 3 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 375536, + "thread": 6 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 584369, + "thread": 1 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 689055, + "thread": 24 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 832050, + "thread": 8 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1061694, + "thread": 4 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1312751, + "thread": 26 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1333520, + "thread": 5 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1577695, + "thread": 10 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1673085, + "thread": 16 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 1894962, + "thread": 12 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2090767, + "thread": 17 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2177520, + "thread": 26 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2457218, + "thread": 5 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2480000, + "thread": 28 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2662496, + "thread": 23 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2819134, + "thread": 14 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 2990476, + "thread": 2 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 3195112, + "thread": 20 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 3407070, + "thread": 18 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 3549878, + "thread": 18 + } + }, + { + "amount": "108.710657533", + "slot": { + "period": 3697034, + "thread": 4 + } + }, + { + "amount": "108.710657537", + "slot": { + "period": 3889086, + "thread": 21 + } + } + ], + "AU1wfzHvX31ntgP8vyFPG4fAqvWBHgRYy2ScXkN91dkg2wUpTedT": [ + { + "amount": "222.445047680", + "slot": { + "period": 35321, + "thread": 12 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 273706, + "thread": 21 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 361107, + "thread": 21 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 498885, + "thread": 23 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 671423, + "thread": 26 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 906753, + "thread": 11 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1093008, + "thread": 12 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1203612, + "thread": 29 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1380870, + "thread": 0 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1624590, + "thread": 3 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1773507, + "thread": 4 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 1847357, + "thread": 21 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2073995, + "thread": 1 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2270565, + "thread": 14 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2413498, + "thread": 1 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2569824, + "thread": 2 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2633006, + "thread": 16 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2927668, + "thread": 18 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 2964722, + "thread": 24 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 3151831, + "thread": 5 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 3449433, + "thread": 7 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 3556143, + "thread": 6 + } + }, + { + "amount": "222.445047680", + "slot": { + "period": 3747315, + "thread": 25 + } + }, + { + "amount": "222.445047687", + "slot": { + "period": 3878128, + "thread": 14 + } + } + ], + "AU1wgxdoEuHyKy7SuqdwBxTAqfWz7CGAdcFrYAsGVewF9e1GzDXc": [ + { + "amount": "119.442042239", + "slot": { + "period": 10911, + "thread": 16 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 270674, + "thread": 24 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 459015, + "thread": 20 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 532532, + "thread": 22 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 664323, + "thread": 26 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 936450, + "thread": 10 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1002245, + "thread": 30 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1188052, + "thread": 27 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1462020, + "thread": 31 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1524015, + "thread": 1 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1681046, + "thread": 5 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 1828424, + "thread": 26 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2009127, + "thread": 12 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2287233, + "thread": 7 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2333773, + "thread": 23 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2534390, + "thread": 17 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2729801, + "thread": 1 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 2936284, + "thread": 13 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 3043344, + "thread": 6 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 3173407, + "thread": 8 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 3328260, + "thread": 5 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 3615941, + "thread": 26 + } + }, + { + "amount": "119.442042239", + "slot": { + "period": 3674351, + "thread": 10 + } + }, + { + "amount": "119.442042232", + "slot": { + "period": 3934317, + "thread": 31 + } + } + ], + "AU1whFm7fZCcQEQtPAKnj4KZS9mDrjgNCQ5uQvwatYXNfNExCVnm": [ + { + "amount": "320.103267810", + "slot": { + "period": 88026, + "thread": 6 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 235467, + "thread": 28 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 440226, + "thread": 9 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 609876, + "thread": 8 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 764860, + "thread": 1 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 912164, + "thread": 19 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1001690, + "thread": 29 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1297175, + "thread": 30 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1355457, + "thread": 13 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1625289, + "thread": 9 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1723462, + "thread": 28 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 1891209, + "thread": 23 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2066567, + "thread": 12 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2241216, + "thread": 8 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2414133, + "thread": 5 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2510799, + "thread": 0 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2682705, + "thread": 17 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 2879021, + "thread": 14 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 3054074, + "thread": 30 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 3174639, + "thread": 4 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 3441191, + "thread": 8 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 3495314, + "thread": 29 + } + }, + { + "amount": "320.103267810", + "slot": { + "period": 3736838, + "thread": 21 + } + }, + { + "amount": "320.103267801", + "slot": { + "period": 3936211, + "thread": 24 + } + } + ], + "AU1whi3Csv1ud2RWQZrTNATxGosoR1GPeEbvaK1wxz7uhRCGvvQG": [ + { + "amount": "249.511511894", + "slot": { + "period": 110507, + "thread": 26 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 270026, + "thread": 2 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 395233, + "thread": 24 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 638791, + "thread": 5 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 818686, + "thread": 12 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 865113, + "thread": 4 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 983548, + "thread": 3 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 1214210, + "thread": 17 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 1336848, + "thread": 6 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 1637860, + "thread": 25 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 1740615, + "thread": 7 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 1891882, + "thread": 22 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2081914, + "thread": 14 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2242856, + "thread": 5 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2445693, + "thread": 30 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2583682, + "thread": 30 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2667470, + "thread": 3 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 2920367, + "thread": 29 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 3076005, + "thread": 13 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 3149904, + "thread": 12 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 3417035, + "thread": 3 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 3611816, + "thread": 31 + } + }, + { + "amount": "249.511511894", + "slot": { + "period": 3652166, + "thread": 9 + } + }, + { + "amount": "249.511511893", + "slot": { + "period": 3841028, + "thread": 7 + } + } + ], + "AU1wj2ea8PCSxKzN7XtzRP45DrEqyokv9HoAdRHWBEzrjKSwigh4": [ + { + "amount": "65.923168059", + "slot": { + "period": 32357, + "thread": 12 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 267189, + "thread": 22 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 435121, + "thread": 18 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 591614, + "thread": 30 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 704550, + "thread": 24 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 838968, + "thread": 1 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1121002, + "thread": 0 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1176393, + "thread": 6 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1382644, + "thread": 9 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1602231, + "thread": 27 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1739693, + "thread": 21 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 1850680, + "thread": 23 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2018743, + "thread": 13 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2158919, + "thread": 26 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2396753, + "thread": 4 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2569509, + "thread": 16 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2643201, + "thread": 11 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 2949104, + "thread": 2 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 3119946, + "thread": 30 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 3143317, + "thread": 31 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 3298155, + "thread": 21 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 3567558, + "thread": 26 + } + }, + { + "amount": "65.923168059", + "slot": { + "period": 3685203, + "thread": 0 + } + }, + { + "amount": "65.923168065", + "slot": { + "period": 3928877, + "thread": 20 + } + } + ], + "AU1wjoVyLRvVJ5GGb1eQEBb43FbuwViVUdVFwBc8zXQSDcNKRLU4": [ + { + "amount": "508.969890237", + "slot": { + "period": 66128, + "thread": 4 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 171611, + "thread": 0 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 370565, + "thread": 28 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 584630, + "thread": 28 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 689011, + "thread": 2 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 961491, + "thread": 29 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1095856, + "thread": 5 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1254150, + "thread": 12 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1384988, + "thread": 22 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1576569, + "thread": 0 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1671085, + "thread": 7 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 1916441, + "thread": 19 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2088368, + "thread": 17 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2285772, + "thread": 11 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2396705, + "thread": 10 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2573285, + "thread": 8 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2730192, + "thread": 5 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2942634, + "thread": 19 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 2967999, + "thread": 17 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 3260744, + "thread": 31 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 3382009, + "thread": 31 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 3491480, + "thread": 9 + } + }, + { + "amount": "508.969890237", + "slot": { + "period": 3745352, + "thread": 6 + } + }, + { + "amount": "508.969890233", + "slot": { + "period": 3854289, + "thread": 6 + } + } + ], + "AU1wkUwiQ4KAQcidA97ps2NwTz1eEFzhC4gveg3yYSPNSasxih2G": [ + { + "amount": "503.896470228", + "slot": { + "period": 38231, + "thread": 0 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 234385, + "thread": 16 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 469698, + "thread": 14 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 540419, + "thread": 2 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 813632, + "thread": 9 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 975329, + "thread": 27 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1063907, + "thread": 13 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1237411, + "thread": 2 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1470067, + "thread": 20 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1531918, + "thread": 10 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1657564, + "thread": 17 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 1947631, + "thread": 27 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2105119, + "thread": 3 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2176009, + "thread": 23 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2336709, + "thread": 17 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2566031, + "thread": 27 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2644798, + "thread": 22 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2822414, + "thread": 12 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 2965223, + "thread": 14 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 3201769, + "thread": 22 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 3308088, + "thread": 14 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 3491472, + "thread": 10 + } + }, + { + "amount": "503.896470228", + "slot": { + "period": 3649101, + "thread": 25 + } + }, + { + "amount": "503.896470226", + "slot": { + "period": 3840611, + "thread": 20 + } + } + ], + "AU1wkZM6uEcFexPCEnv4QFecsZ67wyFiAzAoXWNo22Swm1GHhtys": [ + { + "amount": "134.800611068", + "slot": { + "period": 154364, + "thread": 6 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 196911, + "thread": 4 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 442335, + "thread": 1 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 617008, + "thread": 17 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 737823, + "thread": 13 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 877155, + "thread": 29 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 986214, + "thread": 30 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1198229, + "thread": 8 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1471606, + "thread": 11 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1642833, + "thread": 12 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1680950, + "thread": 20 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1914181, + "thread": 11 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 1997807, + "thread": 12 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2263364, + "thread": 25 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2413165, + "thread": 27 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2525184, + "thread": 26 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2711580, + "thread": 30 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2914934, + "thread": 19 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 2955063, + "thread": 3 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 3224585, + "thread": 7 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 3365452, + "thread": 30 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 3502691, + "thread": 3 + } + }, + { + "amount": "134.800611068", + "slot": { + "period": 3717089, + "thread": 21 + } + }, + { + "amount": "134.800611071", + "slot": { + "period": 3812315, + "thread": 21 + } + } + ], + "AU1wkeWcJauZd6qn68dc9y3euiLrBNCfuQ39Td8HipKn33fDPsxM": [ + { + "amount": "123.327966661", + "slot": { + "period": 153924, + "thread": 11 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 272394, + "thread": 2 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 433526, + "thread": 3 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 526425, + "thread": 15 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 699678, + "thread": 7 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 906743, + "thread": 25 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 989939, + "thread": 25 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 1226245, + "thread": 18 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 1345942, + "thread": 18 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 1583909, + "thread": 29 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 1732496, + "thread": 12 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 1905610, + "thread": 11 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2017221, + "thread": 13 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2156013, + "thread": 1 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2327678, + "thread": 15 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2547414, + "thread": 11 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2710504, + "thread": 11 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 2915287, + "thread": 4 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 3099932, + "thread": 14 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 3263418, + "thread": 5 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 3440432, + "thread": 12 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 3495094, + "thread": 2 + } + }, + { + "amount": "123.327966661", + "slot": { + "period": 3722652, + "thread": 28 + } + }, + { + "amount": "123.327966657", + "slot": { + "period": 3805223, + "thread": 28 + } + } + ], + "AU1wmeQMmGKcFb8tTubKvUXERse1KmtfLgLxgdukXgmfKMYiJEfN": [ + { + "amount": "419.215444738", + "slot": { + "period": 160571, + "thread": 6 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 304865, + "thread": 28 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 466580, + "thread": 11 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 644864, + "thread": 29 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 740938, + "thread": 11 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 883867, + "thread": 27 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1048591, + "thread": 29 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1165738, + "thread": 3 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1427608, + "thread": 19 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1479916, + "thread": 23 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1675548, + "thread": 0 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 1814134, + "thread": 9 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2135490, + "thread": 8 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2244545, + "thread": 7 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2329003, + "thread": 19 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2592170, + "thread": 20 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2730726, + "thread": 30 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2807895, + "thread": 13 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 2975143, + "thread": 7 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 3228392, + "thread": 3 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 3337440, + "thread": 11 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 3616172, + "thread": 23 + } + }, + { + "amount": "419.215444738", + "slot": { + "period": 3628941, + "thread": 14 + } + }, + { + "amount": "419.215444744", + "slot": { + "period": 3904628, + "thread": 4 + } + } + ], + "AU1woMAZhixeCAkPnhby4YCTVnL4MwoYGGbvcejw7Lt8fCskRwqd": [ + { + "amount": "243.931375023", + "slot": { + "period": 70043, + "thread": 20 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 292509, + "thread": 13 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 392626, + "thread": 12 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 550828, + "thread": 31 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 796510, + "thread": 8 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 838778, + "thread": 15 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1095702, + "thread": 30 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1238927, + "thread": 23 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1318397, + "thread": 4 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1581996, + "thread": 22 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1768490, + "thread": 10 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 1850697, + "thread": 18 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2001320, + "thread": 4 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2291843, + "thread": 17 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2355472, + "thread": 1 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2616958, + "thread": 8 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2771451, + "thread": 31 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 2816014, + "thread": 18 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 3040824, + "thread": 1 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 3199773, + "thread": 10 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 3405149, + "thread": 29 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 3516895, + "thread": 16 + } + }, + { + "amount": "243.931375023", + "slot": { + "period": 3626547, + "thread": 25 + } + }, + { + "amount": "243.931375034", + "slot": { + "period": 3811867, + "thread": 26 + } + } + ], + "AU1woNKG8Ft3b5T6gfRrARB3F9n88oDSpHT1Z5Jcf4jzXVrqZSRk": [ + { + "amount": "275.297262448", + "slot": { + "period": 98285, + "thread": 1 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 246339, + "thread": 9 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 438227, + "thread": 24 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 638795, + "thread": 27 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 731982, + "thread": 4 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 965546, + "thread": 0 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1125952, + "thread": 25 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1174752, + "thread": 29 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1453749, + "thread": 0 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1548969, + "thread": 30 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1794232, + "thread": 29 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 1920926, + "thread": 25 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2085650, + "thread": 8 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2208179, + "thread": 14 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2378956, + "thread": 9 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2609589, + "thread": 3 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2654739, + "thread": 22 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 2860347, + "thread": 19 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 3036601, + "thread": 27 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 3278225, + "thread": 30 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 3376833, + "thread": 21 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 3546598, + "thread": 7 + } + }, + { + "amount": "275.297262448", + "slot": { + "period": 3776488, + "thread": 4 + } + }, + { + "amount": "275.297262451", + "slot": { + "period": 3848111, + "thread": 28 + } + } + ], + "AU1wokDY5on5XKUK6Jc9Pq7Te8PLxaS6cmqy8EStT2PbVsLLo35V": [ + { + "amount": "192.356289614", + "slot": { + "period": 144485, + "thread": 7 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 255503, + "thread": 18 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 447433, + "thread": 7 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 524202, + "thread": 5 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 787964, + "thread": 15 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 946007, + "thread": 28 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 988807, + "thread": 23 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 1273158, + "thread": 2 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 1328392, + "thread": 1 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 1612751, + "thread": 22 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 1746895, + "thread": 18 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 1864175, + "thread": 11 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2123205, + "thread": 11 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2261569, + "thread": 0 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2329707, + "thread": 16 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2475753, + "thread": 22 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2626484, + "thread": 27 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2801857, + "thread": 30 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 2987148, + "thread": 30 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 3210500, + "thread": 23 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 3298782, + "thread": 12 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 3464963, + "thread": 17 + } + }, + { + "amount": "192.356289614", + "slot": { + "period": 3634830, + "thread": 14 + } + }, + { + "amount": "192.356289618", + "slot": { + "period": 3881464, + "thread": 17 + } + } + ], + "AU1won3Smh8biqhxqGMzNsQ4BZtT31kpzuHyspqEV3tDcS7bqg5K": [ + { + "amount": "73.842046796", + "slot": { + "period": 120536, + "thread": 19 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 257406, + "thread": 13 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 398401, + "thread": 4 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 619063, + "thread": 14 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 767336, + "thread": 25 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 831989, + "thread": 22 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1134077, + "thread": 6 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1278050, + "thread": 6 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1342923, + "thread": 24 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1574106, + "thread": 15 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1789124, + "thread": 15 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 1936420, + "thread": 2 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2071733, + "thread": 14 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2214527, + "thread": 16 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2429912, + "thread": 19 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2510153, + "thread": 4 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2706013, + "thread": 12 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2819627, + "thread": 15 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 2963585, + "thread": 4 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 3232933, + "thread": 31 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 3321835, + "thread": 21 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 3615585, + "thread": 8 + } + }, + { + "amount": "73.842046796", + "slot": { + "period": 3765244, + "thread": 20 + } + }, + { + "amount": "73.842046800", + "slot": { + "period": 3787966, + "thread": 19 + } + } + ], + "AU1wpWSHNagvVWCrswVmMG9BVQLjg7Ka6gM1K61fNio1ppnts77g": [ + { + "amount": "129.439468190", + "slot": { + "period": 13666, + "thread": 25 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 279073, + "thread": 27 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 462293, + "thread": 12 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 569219, + "thread": 4 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 764522, + "thread": 12 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 913357, + "thread": 8 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1033749, + "thread": 21 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1296048, + "thread": 25 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1337692, + "thread": 13 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1481958, + "thread": 3 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1762986, + "thread": 19 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 1815174, + "thread": 1 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2130009, + "thread": 11 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2156310, + "thread": 12 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2350153, + "thread": 30 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2489961, + "thread": 1 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2645670, + "thread": 2 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 2841741, + "thread": 9 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 3014879, + "thread": 7 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 3224012, + "thread": 7 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 3446863, + "thread": 1 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 3471086, + "thread": 1 + } + }, + { + "amount": "129.439468190", + "slot": { + "period": 3658961, + "thread": 4 + } + }, + { + "amount": "129.439468202", + "slot": { + "period": 3792426, + "thread": 22 + } + } + ], + "AU1wqZ9BHUPa8EkMVsK47FHQ1qpgVymmSAuCZ8ho9BkySFV2sDVc": [ + { + "amount": "429.744501912", + "slot": { + "period": 161826, + "thread": 6 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 303258, + "thread": 1 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 335770, + "thread": 14 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 524764, + "thread": 4 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 810369, + "thread": 16 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 885887, + "thread": 15 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1036737, + "thread": 22 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1277674, + "thread": 6 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1393596, + "thread": 3 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1621367, + "thread": 31 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1697898, + "thread": 2 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 1860706, + "thread": 31 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2094879, + "thread": 22 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2246436, + "thread": 30 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2343132, + "thread": 13 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2537408, + "thread": 7 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2640544, + "thread": 10 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 2890911, + "thread": 1 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 3014833, + "thread": 4 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 3167244, + "thread": 11 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 3447019, + "thread": 14 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 3477198, + "thread": 11 + } + }, + { + "amount": "429.744501912", + "slot": { + "period": 3681567, + "thread": 3 + } + }, + { + "amount": "429.744501915", + "slot": { + "period": 3935860, + "thread": 15 + } + } + ], + "AU1wtMaUxrk1npGXJRtP8ZsHyAyrgXfSzMPWrmh16zyovydCxeLY": [ + { + "amount": "472.657938324", + "slot": { + "period": 107934, + "thread": 2 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 238155, + "thread": 5 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 362104, + "thread": 1 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 539141, + "thread": 6 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 783815, + "thread": 0 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 977822, + "thread": 19 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1133298, + "thread": 0 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1264086, + "thread": 8 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1399017, + "thread": 11 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1553211, + "thread": 2 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1685066, + "thread": 30 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 1851924, + "thread": 11 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2132018, + "thread": 18 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2246161, + "thread": 22 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2372544, + "thread": 6 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2507125, + "thread": 17 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2773979, + "thread": 17 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 2909215, + "thread": 2 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 3096478, + "thread": 19 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 3155115, + "thread": 24 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 3296112, + "thread": 26 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 3617886, + "thread": 2 + } + }, + { + "amount": "472.657938324", + "slot": { + "period": 3691382, + "thread": 30 + } + }, + { + "amount": "472.657938317", + "slot": { + "period": 3841006, + "thread": 6 + } + } + ], + "AU1wuw2CRyHnUAePkh3Anq3FeT1SfhUhVv6QyzXhB4zVy2UA7raa": [ + { + "amount": "79.709675070", + "slot": { + "period": 133246, + "thread": 8 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 181354, + "thread": 14 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 424004, + "thread": 18 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 613937, + "thread": 12 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 767758, + "thread": 15 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 896336, + "thread": 12 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 986189, + "thread": 22 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 1288915, + "thread": 22 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 1362988, + "thread": 13 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 1610717, + "thread": 11 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 1760282, + "thread": 6 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 1838239, + "thread": 20 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2016650, + "thread": 21 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2242282, + "thread": 20 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2442445, + "thread": 2 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2590804, + "thread": 19 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2748141, + "thread": 19 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 2877071, + "thread": 14 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 3027423, + "thread": 10 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 3278191, + "thread": 11 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 3302162, + "thread": 7 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 3459148, + "thread": 17 + } + }, + { + "amount": "79.709675070", + "slot": { + "period": 3733591, + "thread": 8 + } + }, + { + "amount": "79.709675061", + "slot": { + "period": 3887205, + "thread": 5 + } + } + ], + "AU1wwMhYhxBnL3GDUvQMSU45zD9i1Wg6NMeq1y7bMZvALiHMQATd": [ + { + "amount": "121.989629419", + "slot": { + "period": 97014, + "thread": 27 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 276711, + "thread": 27 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 412771, + "thread": 5 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 582842, + "thread": 1 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 723929, + "thread": 16 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 918835, + "thread": 19 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 984831, + "thread": 3 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 1165151, + "thread": 6 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 1360557, + "thread": 21 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 1642454, + "thread": 15 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 1655746, + "thread": 20 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 1972162, + "thread": 20 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2083907, + "thread": 15 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2180833, + "thread": 12 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2314862, + "thread": 16 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2469156, + "thread": 30 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2722800, + "thread": 17 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 2831905, + "thread": 14 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 3032982, + "thread": 26 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 3195288, + "thread": 27 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 3330877, + "thread": 24 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 3528818, + "thread": 0 + } + }, + { + "amount": "121.989629419", + "slot": { + "period": 3723073, + "thread": 17 + } + }, + { + "amount": "121.989629430", + "slot": { + "period": 3821894, + "thread": 2 + } + } + ], + "AU1wy4Aq5DgAd5dXi5TovSZ8AooJERU6wopxXemqtrFVJY17vrif": [ + { + "amount": "314.508919297", + "slot": { + "period": 133517, + "thread": 1 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 251590, + "thread": 11 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 408675, + "thread": 17 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 602689, + "thread": 30 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 737559, + "thread": 15 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 943352, + "thread": 22 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1145636, + "thread": 24 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1190286, + "thread": 29 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1339908, + "thread": 3 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1575388, + "thread": 27 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1669461, + "thread": 29 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 1860312, + "thread": 26 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2113072, + "thread": 7 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2165081, + "thread": 1 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2332173, + "thread": 6 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2618857, + "thread": 24 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2718033, + "thread": 27 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 2849435, + "thread": 23 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 3057367, + "thread": 3 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 3161961, + "thread": 2 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 3302452, + "thread": 13 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 3588361, + "thread": 22 + } + }, + { + "amount": "314.508919297", + "slot": { + "period": 3637094, + "thread": 4 + } + }, + { + "amount": "314.508919307", + "slot": { + "period": 3794322, + "thread": 3 + } + } + ], + "AU1wyEL5Y6uT8aeWWbc2rMxNXMQPgxDkm9re4AfqYTZLuCwUonkc": [ + { + "amount": "73.961299034", + "slot": { + "period": 87127, + "thread": 1 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 168853, + "thread": 6 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 348687, + "thread": 28 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 572039, + "thread": 26 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 718738, + "thread": 14 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 944328, + "thread": 25 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1031692, + "thread": 5 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1167121, + "thread": 13 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1467381, + "thread": 7 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1553772, + "thread": 11 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1738090, + "thread": 14 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 1912224, + "thread": 3 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2073514, + "thread": 15 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2290222, + "thread": 18 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2317409, + "thread": 19 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2552957, + "thread": 30 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2700916, + "thread": 9 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2804258, + "thread": 0 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 2991773, + "thread": 10 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 3234941, + "thread": 7 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 3335606, + "thread": 13 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 3505969, + "thread": 9 + } + }, + { + "amount": "73.961299034", + "slot": { + "period": 3742398, + "thread": 28 + } + }, + { + "amount": "73.961299037", + "slot": { + "period": 3854095, + "thread": 25 + } + } + ], + "AU1x1Q1NGaDSfcckz9NAta6zjSjb7H4xUAsuEpkBxppvEMPmqTnr": [ + { + "amount": "111.873651507", + "slot": { + "period": 157430, + "thread": 18 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 283766, + "thread": 16 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 413404, + "thread": 13 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 635740, + "thread": 18 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 763743, + "thread": 20 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 927404, + "thread": 19 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1147368, + "thread": 4 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1285524, + "thread": 12 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1451631, + "thread": 4 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1521009, + "thread": 6 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1804217, + "thread": 25 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1969120, + "thread": 19 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 1994533, + "thread": 4 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 2217342, + "thread": 9 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 2322577, + "thread": 5 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 2516949, + "thread": 5 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 2638799, + "thread": 8 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 2907551, + "thread": 28 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 3070258, + "thread": 6 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 3235322, + "thread": 19 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 3300755, + "thread": 21 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 3538191, + "thread": 28 + } + }, + { + "amount": "111.873651507", + "slot": { + "period": 3777796, + "thread": 28 + } + }, + { + "amount": "111.873651496", + "slot": { + "period": 3803663, + "thread": 13 + } + } + ], + "AU1x3AHBMVx2eDqUanR6F29F9WD4KWee9U6bfPgViYDQsjudBVXE": [ + { + "amount": "331.160448376", + "slot": { + "period": 77158, + "thread": 1 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 243798, + "thread": 19 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 471941, + "thread": 13 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 548303, + "thread": 7 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 701125, + "thread": 20 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 982142, + "thread": 10 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1001416, + "thread": 15 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1213713, + "thread": 6 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1423020, + "thread": 22 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1497238, + "thread": 22 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1784619, + "thread": 17 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 1939220, + "thread": 23 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2103196, + "thread": 7 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2185420, + "thread": 20 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2402495, + "thread": 1 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2503600, + "thread": 19 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2653962, + "thread": 4 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 2801588, + "thread": 5 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 3005987, + "thread": 15 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 3186111, + "thread": 1 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 3363140, + "thread": 16 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 3567901, + "thread": 2 + } + }, + { + "amount": "331.160448376", + "slot": { + "period": 3665659, + "thread": 30 + } + }, + { + "amount": "331.160448373", + "slot": { + "period": 3937221, + "thread": 19 + } + } + ], + "AU1x3UEv8uueEMXcwWYRkY96Y6EUBbNBWDbABHKG8ATGKLQJcjrd": [ + { + "amount": "143.747253958", + "slot": { + "period": 60214, + "thread": 29 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 177126, + "thread": 6 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 368008, + "thread": 26 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 645159, + "thread": 21 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 801110, + "thread": 15 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 916203, + "thread": 15 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1088022, + "thread": 30 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1277456, + "thread": 2 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1348601, + "thread": 17 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1513575, + "thread": 13 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1745359, + "thread": 0 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 1876033, + "thread": 2 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2028828, + "thread": 29 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2235087, + "thread": 6 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2461146, + "thread": 12 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2574490, + "thread": 29 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2720462, + "thread": 10 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 2793758, + "thread": 2 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 3017530, + "thread": 12 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 3140565, + "thread": 16 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 3403949, + "thread": 24 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 3542362, + "thread": 5 + } + }, + { + "amount": "143.747253958", + "slot": { + "period": 3698435, + "thread": 26 + } + }, + { + "amount": "143.747253955", + "slot": { + "period": 3939330, + "thread": 12 + } + } + ], + "AU1x4hxfcHg5uJxFQj4ZK6xjuaqr9fxvWKDWHdf4BDSWnT6BShNB": [ + { + "amount": "140.903878343", + "slot": { + "period": 139899, + "thread": 3 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 260083, + "thread": 28 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 378002, + "thread": 15 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 625368, + "thread": 22 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 812095, + "thread": 6 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 924054, + "thread": 16 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1005084, + "thread": 5 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1162841, + "thread": 28 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1411788, + "thread": 6 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1520474, + "thread": 12 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1701753, + "thread": 7 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 1970399, + "thread": 25 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2062087, + "thread": 11 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2172907, + "thread": 26 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2308716, + "thread": 5 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2619779, + "thread": 30 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2676067, + "thread": 11 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 2808012, + "thread": 0 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 3037327, + "thread": 21 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 3287705, + "thread": 29 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 3367909, + "thread": 31 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 3564440, + "thread": 6 + } + }, + { + "amount": "140.903878343", + "slot": { + "period": 3754673, + "thread": 17 + } + }, + { + "amount": "140.903878351", + "slot": { + "period": 3806290, + "thread": 12 + } + } + ], + "AU1x5BTKpVBMh3rJqPZP3MC6Diyf81QvWkTj5cHiJgXwmqSegXTG": [ + { + "amount": "229.376944493", + "slot": { + "period": 54384, + "thread": 30 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 275289, + "thread": 15 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 476310, + "thread": 5 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 522896, + "thread": 30 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 713163, + "thread": 20 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 978683, + "thread": 2 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1011227, + "thread": 21 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1218559, + "thread": 30 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1364604, + "thread": 8 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1544258, + "thread": 26 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1795465, + "thread": 19 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 1828465, + "thread": 16 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2111408, + "thread": 29 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2239289, + "thread": 1 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2387385, + "thread": 24 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2608441, + "thread": 13 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2693973, + "thread": 3 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 2948364, + "thread": 28 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 3093798, + "thread": 13 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 3271841, + "thread": 8 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 3304888, + "thread": 13 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 3570147, + "thread": 9 + } + }, + { + "amount": "229.376944493", + "slot": { + "period": 3760543, + "thread": 3 + } + }, + { + "amount": "229.376944501", + "slot": { + "period": 3899708, + "thread": 31 + } + } + ], + "AU1x5KqLpcPQdwpZdFwDhcrQwTvr5b3u1CiUectU7Jis2s7muJnT": [ + { + "amount": "134.054862721", + "slot": { + "period": 107802, + "thread": 27 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 257812, + "thread": 28 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 454518, + "thread": 10 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 542777, + "thread": 6 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 685350, + "thread": 17 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 829327, + "thread": 3 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1017727, + "thread": 10 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1297386, + "thread": 13 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1472383, + "thread": 25 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1507736, + "thread": 18 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1735378, + "thread": 12 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 1868623, + "thread": 22 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2120751, + "thread": 14 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2226592, + "thread": 11 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2422558, + "thread": 21 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2476501, + "thread": 22 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2656213, + "thread": 26 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 2834115, + "thread": 29 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 3006895, + "thread": 23 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 3272895, + "thread": 13 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 3437901, + "thread": 22 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 3560459, + "thread": 9 + } + }, + { + "amount": "134.054862721", + "slot": { + "period": 3687170, + "thread": 13 + } + }, + { + "amount": "134.054862714", + "slot": { + "period": 3908147, + "thread": 0 + } + } + ], + "AU1x5c4WNBygJNvEe9q2n7LzZLm8pH6edehRyxNXBmeXPvDugSsY": [ + { + "amount": "295.797972688", + "slot": { + "period": 86166, + "thread": 27 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 295261, + "thread": 26 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 441573, + "thread": 24 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 518959, + "thread": 4 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 816005, + "thread": 10 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 847442, + "thread": 2 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1134092, + "thread": 0 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1265494, + "thread": 21 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1323487, + "thread": 31 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1599321, + "thread": 7 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1719070, + "thread": 5 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 1814539, + "thread": 3 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2133607, + "thread": 21 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2271282, + "thread": 8 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2421767, + "thread": 14 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2532215, + "thread": 19 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2628927, + "thread": 26 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 2835702, + "thread": 29 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3032005, + "thread": 28 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3213777, + "thread": 21 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3295416, + "thread": 12 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3578360, + "thread": 16 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3762112, + "thread": 5 + } + }, + { + "amount": "295.797972688", + "slot": { + "period": 3902183, + "thread": 4 + } + } + ], + "AU1x6bTmNXNFqx72KW4bvWcPe3bNoT6rHJAgGHe4JTm2fFRXjnao": [ + { + "amount": "336.256180840", + "slot": { + "period": 121838, + "thread": 31 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 258038, + "thread": 15 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 408268, + "thread": 3 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 611495, + "thread": 3 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 764094, + "thread": 17 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 941931, + "thread": 5 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1034295, + "thread": 8 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1278794, + "thread": 9 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1380566, + "thread": 10 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1545122, + "thread": 14 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1684794, + "thread": 19 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 1903632, + "thread": 7 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2039765, + "thread": 1 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2294286, + "thread": 12 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2447004, + "thread": 4 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2556483, + "thread": 24 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2628161, + "thread": 3 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 2918351, + "thread": 20 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 3060700, + "thread": 17 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 3240042, + "thread": 0 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 3403696, + "thread": 14 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 3500568, + "thread": 30 + } + }, + { + "amount": "336.256180840", + "slot": { + "period": 3778097, + "thread": 15 + } + }, + { + "amount": "336.256180850", + "slot": { + "period": 3885271, + "thread": 10 + } + } + ], + "AU1x7SPvpz1NnExCnzntk6vktd9asRerK8M6r4u9XZkGUfX2gqCb": [ + { + "amount": "107.678207135", + "slot": { + "period": 109133, + "thread": 3 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 260110, + "thread": 6 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 413872, + "thread": 12 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 509157, + "thread": 31 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 809235, + "thread": 26 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 936181, + "thread": 22 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 983992, + "thread": 28 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 1205006, + "thread": 7 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 1392275, + "thread": 8 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 1549416, + "thread": 12 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 1701881, + "thread": 15 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 1855318, + "thread": 5 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2034275, + "thread": 7 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2228515, + "thread": 1 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2333501, + "thread": 10 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2481664, + "thread": 21 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2650747, + "thread": 18 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 2850698, + "thread": 19 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 3045696, + "thread": 6 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 3189065, + "thread": 11 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 3379011, + "thread": 23 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 3599024, + "thread": 28 + } + }, + { + "amount": "107.678207135", + "slot": { + "period": 3706926, + "thread": 18 + } + }, + { + "amount": "107.678207142", + "slot": { + "period": 3862881, + "thread": 10 + } + } + ], + "AU1x9JVtzcVShMiQABj8ooRRSQGJft9BYaj5JSCrdXuZzdk1ao7b": [ + { + "amount": "162.932003137", + "slot": { + "period": 119387, + "thread": 23 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 198571, + "thread": 22 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 462359, + "thread": 7 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 615590, + "thread": 11 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 716162, + "thread": 29 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 901268, + "thread": 7 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 998619, + "thread": 10 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 1237716, + "thread": 28 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 1456604, + "thread": 3 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 1509589, + "thread": 1 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 1795845, + "thread": 15 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 1818415, + "thread": 13 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2124806, + "thread": 15 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2151895, + "thread": 25 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2421327, + "thread": 12 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2544903, + "thread": 6 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2681741, + "thread": 26 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 2807921, + "thread": 14 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 3054196, + "thread": 30 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 3122919, + "thread": 31 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 3393189, + "thread": 21 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 3547480, + "thread": 7 + } + }, + { + "amount": "162.932003137", + "slot": { + "period": 3721318, + "thread": 11 + } + }, + { + "amount": "162.932003133", + "slot": { + "period": 3894387, + "thread": 2 + } + } + ], + "AU1x9qWfhh67zwC1X7HcoFLMEu5FYrb7M4uKF2itaujLKSDd3Xig": [ + { + "amount": "63.860129265", + "slot": { + "period": 96359, + "thread": 3 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 198802, + "thread": 21 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 386073, + "thread": 19 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 586449, + "thread": 1 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 697971, + "thread": 9 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 847984, + "thread": 23 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1069638, + "thread": 31 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1220549, + "thread": 13 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1420165, + "thread": 10 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1644665, + "thread": 16 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1725895, + "thread": 9 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 1936747, + "thread": 21 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2019925, + "thread": 12 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2248762, + "thread": 0 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2311813, + "thread": 20 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2610354, + "thread": 23 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2788434, + "thread": 19 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 2843409, + "thread": 27 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3110110, + "thread": 14 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3219390, + "thread": 2 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3443691, + "thread": 10 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3500879, + "thread": 14 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3757337, + "thread": 27 + } + }, + { + "amount": "63.860129265", + "slot": { + "period": 3926534, + "thread": 19 + } + } + ], + "AU1x9rQ83z5e1AhUaUKkN1SHmpmhRtYe4zwqcVgvGE7pQKNDeEa8": [ + { + "amount": "357.849977130", + "slot": { + "period": 134040, + "thread": 16 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 289643, + "thread": 12 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 482139, + "thread": 22 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 606024, + "thread": 14 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 709309, + "thread": 1 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 879427, + "thread": 23 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1109628, + "thread": 11 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1193684, + "thread": 23 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1470140, + "thread": 4 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1602257, + "thread": 17 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1694109, + "thread": 28 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 1939280, + "thread": 6 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2142622, + "thread": 22 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2237539, + "thread": 26 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2431898, + "thread": 10 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2588338, + "thread": 31 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2703095, + "thread": 19 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 2943606, + "thread": 25 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 3055483, + "thread": 1 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 3278416, + "thread": 23 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 3310884, + "thread": 22 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 3483864, + "thread": 7 + } + }, + { + "amount": "357.849977130", + "slot": { + "period": 3738415, + "thread": 28 + } + }, + { + "amount": "357.849977129", + "slot": { + "period": 3841108, + "thread": 30 + } + } + ], + "AU1xAusfDBmWttrr1Mqo2aYzAZk5tkMQUjYw6adzPwYHVxx24paV": [ + { + "amount": "452.125792657", + "slot": { + "period": 122354, + "thread": 15 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 270454, + "thread": 18 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 420406, + "thread": 18 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 506921, + "thread": 21 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 654195, + "thread": 12 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 961660, + "thread": 26 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1001634, + "thread": 28 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1201517, + "thread": 1 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1397513, + "thread": 8 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1551301, + "thread": 7 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1681326, + "thread": 5 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1884148, + "thread": 2 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 1992150, + "thread": 7 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 2194460, + "thread": 30 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 2297239, + "thread": 6 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 2508995, + "thread": 8 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 2774912, + "thread": 24 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 2930150, + "thread": 30 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 3010297, + "thread": 29 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 3138835, + "thread": 11 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 3426250, + "thread": 23 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 3539645, + "thread": 3 + } + }, + { + "amount": "452.125792657", + "slot": { + "period": 3683165, + "thread": 21 + } + }, + { + "amount": "452.125792666", + "slot": { + "period": 3804772, + "thread": 12 + } + } + ], + "AU1xB4oUQ98uLjcN8tDrekcKu3g2poVyozCttHzgELeARDM1o3GP": [ + { + "amount": "179.885805679", + "slot": { + "period": 32922, + "thread": 4 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 315093, + "thread": 27 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 346565, + "thread": 16 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 636247, + "thread": 26 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 747459, + "thread": 12 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 932272, + "thread": 21 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1144383, + "thread": 30 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1207732, + "thread": 9 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1401987, + "thread": 1 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1597363, + "thread": 21 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1674041, + "thread": 22 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 1968212, + "thread": 11 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2141762, + "thread": 28 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2189022, + "thread": 18 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2403181, + "thread": 3 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2593697, + "thread": 7 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2697094, + "thread": 18 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2862471, + "thread": 8 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 2996321, + "thread": 14 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 3144585, + "thread": 2 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 3343565, + "thread": 24 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 3574881, + "thread": 30 + } + }, + { + "amount": "179.885805679", + "slot": { + "period": 3761738, + "thread": 4 + } + }, + { + "amount": "179.885805672", + "slot": { + "period": 3851578, + "thread": 7 + } + } + ], + "AU1xBFfNdTDkKwakKby4spAk2r5XjYssfbNdyxWoXkDxwVCwwpyv": [ + { + "amount": "80.846414448", + "slot": { + "period": 28962, + "thread": 25 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 213461, + "thread": 12 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 432858, + "thread": 4 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 495851, + "thread": 28 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 664370, + "thread": 16 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 854897, + "thread": 11 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1123423, + "thread": 8 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1269219, + "thread": 5 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1381013, + "thread": 1 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1607219, + "thread": 3 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1802426, + "thread": 14 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 1854599, + "thread": 5 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2134584, + "thread": 17 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2233717, + "thread": 5 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2334633, + "thread": 22 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2591940, + "thread": 6 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2738852, + "thread": 2 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 2799125, + "thread": 19 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 3057126, + "thread": 31 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 3258875, + "thread": 28 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 3341428, + "thread": 22 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 3569775, + "thread": 29 + } + }, + { + "amount": "80.846414448", + "slot": { + "period": 3693797, + "thread": 26 + } + }, + { + "amount": "80.846414438", + "slot": { + "period": 3818653, + "thread": 26 + } + } + ], + "AU1xBNJsQX3BbmDcjPCj6snYjJNmCHG718Hu9R6WgpyXfaSqeXnc": [ + { + "amount": "104.549557420", + "slot": { + "period": 83565, + "thread": 15 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 293706, + "thread": 6 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 455375, + "thread": 24 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 539077, + "thread": 7 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 776272, + "thread": 6 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 967698, + "thread": 30 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1032075, + "thread": 22 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1242317, + "thread": 3 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1473912, + "thread": 5 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1506130, + "thread": 28 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1723922, + "thread": 0 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1954586, + "thread": 26 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 1997281, + "thread": 10 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 2261226, + "thread": 17 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 2325064, + "thread": 3 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 2607975, + "thread": 25 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 2680489, + "thread": 9 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 2852558, + "thread": 27 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 3088081, + "thread": 5 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 3189339, + "thread": 18 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 3411845, + "thread": 18 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 3478058, + "thread": 13 + } + }, + { + "amount": "104.549557420", + "slot": { + "period": 3778610, + "thread": 6 + } + }, + { + "amount": "104.549557417", + "slot": { + "period": 3816966, + "thread": 28 + } + } + ], + "AU1xCFz4H64DzgHyyySLBUCHuwdREoNG87j3GGmqXeyifGqANXdZ": [ + { + "amount": "175.038952901", + "slot": { + "period": 144570, + "thread": 11 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 288890, + "thread": 4 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 414774, + "thread": 30 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 651395, + "thread": 27 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 811435, + "thread": 31 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 865163, + "thread": 27 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1078467, + "thread": 29 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1236240, + "thread": 20 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1400414, + "thread": 1 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1567714, + "thread": 8 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1747712, + "thread": 4 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 1952996, + "thread": 21 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2079478, + "thread": 30 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2290455, + "thread": 6 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2403833, + "thread": 31 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2529397, + "thread": 21 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2710410, + "thread": 6 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 2834485, + "thread": 8 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 3024388, + "thread": 16 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 3132392, + "thread": 26 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 3429236, + "thread": 5 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 3483688, + "thread": 0 + } + }, + { + "amount": "175.038952901", + "slot": { + "period": 3700161, + "thread": 25 + } + }, + { + "amount": "175.038952912", + "slot": { + "period": 3839372, + "thread": 6 + } + } + ], + "AU1xCGXNk2yqh5VxXatXPLWGi3iCptw7jJYLtvEixmcDRjm57GtM": [ + { + "amount": "126.360239713", + "slot": { + "period": 117262, + "thread": 28 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 193097, + "thread": 2 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 428856, + "thread": 3 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 622827, + "thread": 1 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 697354, + "thread": 23 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 851450, + "thread": 13 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 989361, + "thread": 22 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 1267541, + "thread": 0 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 1354903, + "thread": 20 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 1531410, + "thread": 29 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 1673358, + "thread": 11 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 1932564, + "thread": 13 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2079628, + "thread": 1 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2154109, + "thread": 13 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2456773, + "thread": 12 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2575870, + "thread": 0 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2704891, + "thread": 11 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 2888618, + "thread": 26 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 3101193, + "thread": 27 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 3251280, + "thread": 29 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 3394959, + "thread": 4 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 3525245, + "thread": 26 + } + }, + { + "amount": "126.360239713", + "slot": { + "period": 3731960, + "thread": 18 + } + }, + { + "amount": "126.360239716", + "slot": { + "period": 3817041, + "thread": 16 + } + } + ], + "AU1xCLcqdNGpbr3iyD34z937NKAvUPocCHZfydoxqY1VjwBgehY6": [ + { + "amount": "304.948536191", + "slot": { + "period": 96679, + "thread": 29 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 323951, + "thread": 26 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 472139, + "thread": 8 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 518923, + "thread": 8 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 751592, + "thread": 12 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 827627, + "thread": 22 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 986049, + "thread": 19 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1255022, + "thread": 5 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1410458, + "thread": 30 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1488892, + "thread": 6 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1689482, + "thread": 0 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1902848, + "thread": 4 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 1978255, + "thread": 5 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 2266112, + "thread": 4 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 2448315, + "thread": 30 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 2467081, + "thread": 19 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 2768084, + "thread": 17 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 2892405, + "thread": 3 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 3003940, + "thread": 2 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 3122404, + "thread": 7 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 3434804, + "thread": 26 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 3493641, + "thread": 3 + } + }, + { + "amount": "304.948536191", + "slot": { + "period": 3670278, + "thread": 17 + } + }, + { + "amount": "304.948536188", + "slot": { + "period": 3820208, + "thread": 21 + } + } + ], + "AU1xECupsnAc1GnMq6R59tjDuLYEERyjFJfte5tLLctd8WcuvKS5": [ + { + "amount": "76.036798857", + "slot": { + "period": 117300, + "thread": 29 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 228785, + "thread": 9 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 378352, + "thread": 11 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 606325, + "thread": 4 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 778088, + "thread": 13 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 922890, + "thread": 25 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1035361, + "thread": 25 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1281791, + "thread": 20 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1386990, + "thread": 15 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1618820, + "thread": 9 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1695193, + "thread": 19 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 1829914, + "thread": 10 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2054329, + "thread": 12 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2272848, + "thread": 20 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2315231, + "thread": 20 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2523790, + "thread": 22 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2757029, + "thread": 25 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 2891310, + "thread": 21 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 3045340, + "thread": 16 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 3265231, + "thread": 9 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 3349439, + "thread": 10 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 3586314, + "thread": 23 + } + }, + { + "amount": "76.036798857", + "slot": { + "period": 3761969, + "thread": 31 + } + }, + { + "amount": "76.036798858", + "slot": { + "period": 3790665, + "thread": 18 + } + } + ], + "AU1xF3MFkyd4TkPhEve8gqBFfTUuNADUNDXiHS92Caxo5u498Z5c": [ + { + "amount": "303.210612834", + "slot": { + "period": 162629, + "thread": 29 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 180672, + "thread": 18 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 466894, + "thread": 3 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 545596, + "thread": 1 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 715665, + "thread": 17 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 832355, + "thread": 30 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1089542, + "thread": 3 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1300638, + "thread": 15 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1390546, + "thread": 21 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1567796, + "thread": 4 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1704746, + "thread": 10 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 1926100, + "thread": 5 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2086849, + "thread": 26 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2268471, + "thread": 11 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2427610, + "thread": 16 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2525746, + "thread": 6 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2768254, + "thread": 5 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2861367, + "thread": 8 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 2971616, + "thread": 18 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 3174256, + "thread": 12 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 3354877, + "thread": 13 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 3575065, + "thread": 30 + } + }, + { + "amount": "303.210612834", + "slot": { + "period": 3771179, + "thread": 30 + } + }, + { + "amount": "303.210612846", + "slot": { + "period": 3860880, + "thread": 26 + } + } + ], + "AU1xGxSjsREynTvZx6ZXZjw8CcnLkMh9NUZG8D7kXgtiBwdx3muc": [ + { + "amount": "57.514503397", + "slot": { + "period": 109710, + "thread": 12 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 302117, + "thread": 20 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 438220, + "thread": 7 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 580578, + "thread": 31 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 756883, + "thread": 1 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 888965, + "thread": 23 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1107206, + "thread": 9 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1178700, + "thread": 30 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1329298, + "thread": 29 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1548801, + "thread": 6 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1783855, + "thread": 21 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1966716, + "thread": 27 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 1989193, + "thread": 12 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 2263896, + "thread": 0 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 2423621, + "thread": 17 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 2611451, + "thread": 8 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 2746357, + "thread": 10 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 2912350, + "thread": 13 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 3030238, + "thread": 8 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 3195412, + "thread": 27 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 3359556, + "thread": 2 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 3541219, + "thread": 9 + } + }, + { + "amount": "57.514503397", + "slot": { + "period": 3767052, + "thread": 24 + } + }, + { + "amount": "57.514503386", + "slot": { + "period": 3819345, + "thread": 4 + } + } + ], + "AU1xHD4UxVNqGW3zi2VtPExj2tjbQDv8yurvG8zqS7QXcwaaqkAt": [ + { + "amount": "139.298207098", + "slot": { + "period": 144078, + "thread": 18 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 313463, + "thread": 19 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 346406, + "thread": 6 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 587775, + "thread": 26 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 807648, + "thread": 0 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 903999, + "thread": 10 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 997378, + "thread": 5 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 1239727, + "thread": 5 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 1363297, + "thread": 7 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 1527751, + "thread": 16 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 1717289, + "thread": 12 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 1876331, + "thread": 25 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2010592, + "thread": 0 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2220986, + "thread": 17 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2399474, + "thread": 20 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2541372, + "thread": 21 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2680039, + "thread": 7 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 2913554, + "thread": 23 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 3002604, + "thread": 9 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 3170930, + "thread": 27 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 3306443, + "thread": 24 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 3535747, + "thread": 25 + } + }, + { + "amount": "139.298207098", + "slot": { + "period": 3683945, + "thread": 29 + } + }, + { + "amount": "139.298207109", + "slot": { + "period": 3909581, + "thread": 21 + } + } + ], + "AU1xJ8ZaEegBJ1G4URoiLSuirBjjKUpmSwEyZVUBhDzyJW7Erm9c": [ + { + "amount": "362.137482680", + "slot": { + "period": 73219, + "thread": 15 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 242205, + "thread": 1 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 385066, + "thread": 2 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 566549, + "thread": 12 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 755098, + "thread": 12 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 830307, + "thread": 3 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1015092, + "thread": 24 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1228117, + "thread": 10 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1398628, + "thread": 16 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1519928, + "thread": 15 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1736897, + "thread": 16 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 1944013, + "thread": 20 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2098543, + "thread": 26 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2163283, + "thread": 10 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2460289, + "thread": 4 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2619328, + "thread": 9 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2749762, + "thread": 28 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 2889337, + "thread": 8 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 3018841, + "thread": 27 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 3151976, + "thread": 26 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 3355497, + "thread": 13 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 3472218, + "thread": 10 + } + }, + { + "amount": "362.137482680", + "slot": { + "period": 3655452, + "thread": 18 + } + }, + { + "amount": "362.137482692", + "slot": { + "period": 3910481, + "thread": 3 + } + } + ], + "AU1xJDcCcSDYrd3o1potwy1vbn9MEa5sKVy3VviCYR54XmST7eFP": [ + { + "amount": "626.600329320", + "slot": { + "period": 107210, + "thread": 26 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 294056, + "thread": 23 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 430799, + "thread": 4 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 523242, + "thread": 10 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 806654, + "thread": 5 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 925697, + "thread": 4 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1046741, + "thread": 13 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1169779, + "thread": 26 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1348794, + "thread": 6 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1643192, + "thread": 2 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1688319, + "thread": 10 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 1813295, + "thread": 21 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2081501, + "thread": 7 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2223140, + "thread": 25 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2410699, + "thread": 1 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2583793, + "thread": 19 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2785283, + "thread": 27 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2899904, + "thread": 4 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 2979248, + "thread": 8 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 3157035, + "thread": 25 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 3380780, + "thread": 31 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 3609741, + "thread": 11 + } + }, + { + "amount": "626.600329320", + "slot": { + "period": 3626000, + "thread": 8 + } + }, + { + "amount": "626.600329330", + "slot": { + "period": 3907174, + "thread": 25 + } + } + ], + "AU1xK8zW9ax5zX1tjHe3uqHFkZFhHNonNYTxkcQGqTTuGd7tqUNH": [ + { + "amount": "174.673159684", + "slot": { + "period": 42431, + "thread": 19 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 246404, + "thread": 21 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 479670, + "thread": 10 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 568891, + "thread": 17 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 817721, + "thread": 14 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 941947, + "thread": 10 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1040090, + "thread": 16 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1232568, + "thread": 0 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1444856, + "thread": 5 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1508280, + "thread": 1 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1662791, + "thread": 3 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 1896604, + "thread": 26 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2107162, + "thread": 6 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2264190, + "thread": 19 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2406937, + "thread": 26 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2479656, + "thread": 19 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2631781, + "thread": 10 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 2791862, + "thread": 21 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 3085905, + "thread": 16 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 3248983, + "thread": 29 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 3330257, + "thread": 8 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 3612229, + "thread": 6 + } + }, + { + "amount": "174.673159684", + "slot": { + "period": 3734044, + "thread": 16 + } + }, + { + "amount": "174.673159693", + "slot": { + "period": 3833348, + "thread": 26 + } + } + ], + "AU1xKb51NyohZguw7taw5DcLnR4xCQ2FGHsBme8wFbDHNNULnqfX": [ + { + "amount": "101.299862727", + "slot": { + "period": 90670, + "thread": 21 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 319468, + "thread": 25 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 456042, + "thread": 17 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 618784, + "thread": 7 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 654007, + "thread": 12 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 975140, + "thread": 1 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1037393, + "thread": 3 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1210218, + "thread": 23 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1438240, + "thread": 12 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1598955, + "thread": 18 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1760693, + "thread": 22 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1849902, + "thread": 4 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 1998566, + "thread": 2 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 2277612, + "thread": 0 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 2447007, + "thread": 31 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 2601993, + "thread": 27 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 2759648, + "thread": 27 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 2927472, + "thread": 6 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3057319, + "thread": 9 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3128309, + "thread": 20 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3404673, + "thread": 3 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3508368, + "thread": 30 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3701869, + "thread": 4 + } + }, + { + "amount": "101.299862727", + "slot": { + "period": 3837397, + "thread": 2 + } + } + ], + "AU1xL1fAtqJuVVGX7D7t5rCFsnpHQpqPoi6PymKwnk8AWAtzzHBp": [ + { + "amount": "357.909239143", + "slot": { + "period": 146129, + "thread": 28 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 234130, + "thread": 19 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 457433, + "thread": 24 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 651214, + "thread": 1 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 738089, + "thread": 9 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 978194, + "thread": 12 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1141093, + "thread": 27 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1207428, + "thread": 30 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1400058, + "thread": 11 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1617466, + "thread": 18 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1692733, + "thread": 12 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1970879, + "thread": 7 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 1976757, + "thread": 6 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 2215011, + "thread": 18 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 2453062, + "thread": 17 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 2575626, + "thread": 18 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 2743480, + "thread": 10 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 2824119, + "thread": 1 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 3073263, + "thread": 29 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 3229169, + "thread": 20 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 3345482, + "thread": 31 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 3478744, + "thread": 21 + } + }, + { + "amount": "357.909239143", + "slot": { + "period": 3684279, + "thread": 29 + } + }, + { + "amount": "357.909239141", + "slot": { + "period": 3800680, + "thread": 18 + } + } + ], + "AU1xLH4CbWGCCrWqhsgr6RHZ5cT8nYFwx7J9f1Fdt3fN8QD7X1Bj": [ + { + "amount": "128.949840268", + "slot": { + "period": 54335, + "thread": 13 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 204682, + "thread": 17 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 436381, + "thread": 12 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 563371, + "thread": 12 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 768017, + "thread": 15 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 878425, + "thread": 16 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1025848, + "thread": 24 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1152456, + "thread": 5 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1373275, + "thread": 7 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1554717, + "thread": 11 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1679166, + "thread": 5 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 1966229, + "thread": 4 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2105430, + "thread": 9 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2282331, + "thread": 7 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2457711, + "thread": 1 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2592171, + "thread": 10 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2762720, + "thread": 25 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 2801071, + "thread": 1 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 3059769, + "thread": 21 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 3250224, + "thread": 31 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 3395927, + "thread": 5 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 3454329, + "thread": 15 + } + }, + { + "amount": "128.949840268", + "slot": { + "period": 3683934, + "thread": 5 + } + }, + { + "amount": "128.949840278", + "slot": { + "period": 3838353, + "thread": 4 + } + } + ], + "AU1xNAwq1jfJkNQXAVaC1TzETaSRnMFcSBHFtXmYKuTcqVDfYWcb": [ + { + "amount": "80.806175816", + "slot": { + "period": 57866, + "thread": 10 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 192706, + "thread": 15 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 474725, + "thread": 20 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 523698, + "thread": 17 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 682782, + "thread": 0 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 896257, + "thread": 26 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1003709, + "thread": 14 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1316914, + "thread": 29 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1457545, + "thread": 31 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1538511, + "thread": 20 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1763138, + "thread": 9 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 1882463, + "thread": 21 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2082246, + "thread": 16 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2204041, + "thread": 29 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2307152, + "thread": 17 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2546829, + "thread": 5 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2751445, + "thread": 10 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 2881344, + "thread": 23 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 3010535, + "thread": 26 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 3203688, + "thread": 7 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 3408901, + "thread": 13 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 3532561, + "thread": 24 + } + }, + { + "amount": "80.806175816", + "slot": { + "period": 3775399, + "thread": 15 + } + }, + { + "amount": "80.806175811", + "slot": { + "period": 3830986, + "thread": 26 + } + } + ], + "AU1xPfnm9WrqsoYafuCfu5iW8REuBpNYJ7SAxKB1mV7a3ptWfK2Q": [ + { + "amount": "439.002419059", + "slot": { + "period": 156320, + "thread": 0 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 315348, + "thread": 5 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 489754, + "thread": 30 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 562088, + "thread": 23 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 680300, + "thread": 9 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 847318, + "thread": 28 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1093736, + "thread": 17 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1313895, + "thread": 31 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1383814, + "thread": 5 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1594648, + "thread": 20 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1706012, + "thread": 8 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 1876119, + "thread": 23 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2118841, + "thread": 17 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2174509, + "thread": 17 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2432858, + "thread": 11 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2487959, + "thread": 23 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2643760, + "thread": 21 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2857535, + "thread": 20 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 2995235, + "thread": 5 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 3264308, + "thread": 22 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 3430805, + "thread": 9 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 3565655, + "thread": 22 + } + }, + { + "amount": "439.002419059", + "slot": { + "period": 3667321, + "thread": 30 + } + }, + { + "amount": "439.002419068", + "slot": { + "period": 3819174, + "thread": 15 + } + } + ], + "AU1xPjuto72hUr3gP67RAH6rLbxzRdr8qf163GaeoUBhAtqSUo7R": [ + { + "amount": "652.754944860", + "slot": { + "period": 148056, + "thread": 16 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 261421, + "thread": 13 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 340976, + "thread": 12 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 543905, + "thread": 29 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 674065, + "thread": 21 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 839746, + "thread": 5 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1090852, + "thread": 10 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1221312, + "thread": 7 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1323385, + "thread": 10 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1604863, + "thread": 24 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1739565, + "thread": 26 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1880650, + "thread": 5 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 1983401, + "thread": 26 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2233667, + "thread": 19 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2394514, + "thread": 25 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2544211, + "thread": 1 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2666218, + "thread": 29 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2941097, + "thread": 23 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 2985277, + "thread": 29 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 3195044, + "thread": 26 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 3334823, + "thread": 14 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 3525598, + "thread": 12 + } + }, + { + "amount": "652.754944860", + "slot": { + "period": 3641530, + "thread": 10 + } + }, + { + "amount": "652.754944856", + "slot": { + "period": 3835856, + "thread": 19 + } + } + ], + "AU1xPyHc1X2Jo6MpxnYMeVAGJLrbrbawbVMmdx8xNevbe1TX17D3": [ + { + "amount": "343.593590332", + "slot": { + "period": 12066, + "thread": 26 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 226714, + "thread": 0 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 441475, + "thread": 5 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 598521, + "thread": 29 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 773631, + "thread": 2 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 885611, + "thread": 25 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1145510, + "thread": 26 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1313411, + "thread": 16 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1452208, + "thread": 18 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1512164, + "thread": 21 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1725794, + "thread": 27 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 1919679, + "thread": 27 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2142639, + "thread": 1 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2276998, + "thread": 29 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2378918, + "thread": 3 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2463620, + "thread": 23 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2758339, + "thread": 27 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 2866089, + "thread": 10 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 3031604, + "thread": 30 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 3141159, + "thread": 21 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 3417408, + "thread": 21 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 3564520, + "thread": 10 + } + }, + { + "amount": "343.593590332", + "slot": { + "period": 3721211, + "thread": 29 + } + }, + { + "amount": "343.593590343", + "slot": { + "period": 3850610, + "thread": 24 + } + } + ], + "AU1xQjsTjjpWzALgBoRi8WwyADCDbnig6ApiVYx8UCHso9cBtQ97": [ + { + "amount": "324.747612680", + "slot": { + "period": 101640, + "thread": 17 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 239522, + "thread": 8 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 462726, + "thread": 16 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 599888, + "thread": 31 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 733825, + "thread": 17 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 906215, + "thread": 4 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1061751, + "thread": 20 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1153166, + "thread": 27 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1427020, + "thread": 13 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1645386, + "thread": 23 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1768358, + "thread": 12 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 1948118, + "thread": 29 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2133558, + "thread": 8 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2275503, + "thread": 13 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2452953, + "thread": 27 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2517051, + "thread": 13 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2714892, + "thread": 19 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 2799015, + "thread": 14 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3002693, + "thread": 6 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3252623, + "thread": 2 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3397805, + "thread": 14 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3540977, + "thread": 10 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3670295, + "thread": 9 + } + }, + { + "amount": "324.747612680", + "slot": { + "period": 3795036, + "thread": 7 + } + } + ], + "AU1xQkXGMsNgNC4FB1tQcKDTBRSaF61TSNgDGUiFXzwtx4ygaX5o": [ + { + "amount": "57.436776950", + "slot": { + "period": 141053, + "thread": 17 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 266048, + "thread": 14 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 413161, + "thread": 22 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 499539, + "thread": 29 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 805169, + "thread": 8 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 929244, + "thread": 4 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1077873, + "thread": 10 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1248246, + "thread": 25 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1341676, + "thread": 15 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1502870, + "thread": 18 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1713119, + "thread": 29 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 1934432, + "thread": 18 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2088981, + "thread": 9 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2242281, + "thread": 26 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2447801, + "thread": 22 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2537192, + "thread": 9 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2751983, + "thread": 10 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 2792653, + "thread": 20 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 3056832, + "thread": 14 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 3194169, + "thread": 19 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 3436665, + "thread": 12 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 3454419, + "thread": 25 + } + }, + { + "amount": "57.436776950", + "slot": { + "period": 3636396, + "thread": 8 + } + }, + { + "amount": "57.436776948", + "slot": { + "period": 3944687, + "thread": 16 + } + } + ], + "AU1xRAGfmBHfW6VvPQ81SAZ48vpeT2rk4uDy5dcdYsv3soaweEDZ": [ + { + "amount": "209.435338043", + "slot": { + "period": 76183, + "thread": 17 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 168813, + "thread": 21 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 329081, + "thread": 7 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 533803, + "thread": 12 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 709392, + "thread": 13 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 904610, + "thread": 6 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1120355, + "thread": 0 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1170901, + "thread": 19 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1470880, + "thread": 21 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1578943, + "thread": 2 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1795057, + "thread": 28 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 1956843, + "thread": 4 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2095608, + "thread": 28 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2270864, + "thread": 11 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2384315, + "thread": 20 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2583656, + "thread": 5 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2733457, + "thread": 21 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 2915707, + "thread": 7 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 3016731, + "thread": 27 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 3207679, + "thread": 19 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 3418324, + "thread": 11 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 3537077, + "thread": 27 + } + }, + { + "amount": "209.435338043", + "slot": { + "period": 3626709, + "thread": 19 + } + }, + { + "amount": "209.435338038", + "slot": { + "period": 3799075, + "thread": 9 + } + } + ], + "AU1xTWGuVNJ5EhEaXU8qRYu9ZXt2PzE3NfpdPp8seK6nkp1d4hrf": [ + { + "amount": "187.848034591", + "slot": { + "period": 69790, + "thread": 4 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 269025, + "thread": 18 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 362769, + "thread": 15 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 511230, + "thread": 7 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 729215, + "thread": 22 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 858885, + "thread": 23 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1104044, + "thread": 19 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1316744, + "thread": 18 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1452672, + "thread": 21 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1553228, + "thread": 21 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1805242, + "thread": 31 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 1916030, + "thread": 11 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2097927, + "thread": 14 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2192857, + "thread": 13 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2320646, + "thread": 29 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2483916, + "thread": 9 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2747957, + "thread": 14 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 2947156, + "thread": 15 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 3055221, + "thread": 5 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 3278340, + "thread": 7 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 3306028, + "thread": 13 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 3457876, + "thread": 8 + } + }, + { + "amount": "187.848034591", + "slot": { + "period": 3737227, + "thread": 17 + } + }, + { + "amount": "187.848034580", + "slot": { + "period": 3924389, + "thread": 21 + } + } + ], + "AU1xTgoCxZXKWWGVU65pm1ZEoxQsxCXndaXoJFbXGfDznwEqrYRh": [ + { + "amount": "111.246194751", + "slot": { + "period": 131915, + "thread": 25 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 177522, + "thread": 9 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 478648, + "thread": 20 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 624419, + "thread": 17 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 751236, + "thread": 13 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 901326, + "thread": 24 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 994588, + "thread": 0 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 1181974, + "thread": 22 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 1398048, + "thread": 12 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 1609600, + "thread": 20 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 1761466, + "thread": 13 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 1870668, + "thread": 12 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2000273, + "thread": 23 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2280548, + "thread": 6 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2320701, + "thread": 29 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2603902, + "thread": 25 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2658555, + "thread": 1 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 2925726, + "thread": 21 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 3080485, + "thread": 14 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 3197324, + "thread": 18 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 3334928, + "thread": 9 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 3557855, + "thread": 26 + } + }, + { + "amount": "111.246194751", + "slot": { + "period": 3640430, + "thread": 5 + } + }, + { + "amount": "111.246194750", + "slot": { + "period": 3841715, + "thread": 20 + } + } + ], + "AU1xThByW6Cjm2CePjXF9XGMZYqTvns6DYv8bQbqLA5BvPYxa1fK": [ + { + "amount": "1216.593044214", + "slot": { + "period": 32189, + "thread": 21 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 287760, + "thread": 12 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 429221, + "thread": 29 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 546465, + "thread": 18 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 819974, + "thread": 9 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 898971, + "thread": 20 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1120232, + "thread": 29 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1204722, + "thread": 11 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1355295, + "thread": 23 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1636815, + "thread": 16 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1684490, + "thread": 9 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 1962823, + "thread": 10 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2027708, + "thread": 4 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2294570, + "thread": 8 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2315314, + "thread": 11 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2590290, + "thread": 23 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2629824, + "thread": 16 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 2936602, + "thread": 3 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3043786, + "thread": 22 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3155008, + "thread": 17 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3313884, + "thread": 18 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3458897, + "thread": 11 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3734012, + "thread": 13 + } + }, + { + "amount": "1216.593044214", + "slot": { + "period": 3879210, + "thread": 12 + } + } + ], + "AU1xTptqUoVK4UMBTTjT27qYT63D38jrJ6zEoQQ8Cpz2AnoP8zRG": [ + { + "amount": "227.394599073", + "slot": { + "period": 153618, + "thread": 13 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 268100, + "thread": 18 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 486216, + "thread": 29 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 638927, + "thread": 25 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 663485, + "thread": 19 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 863913, + "thread": 11 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 988275, + "thread": 7 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1213148, + "thread": 10 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1325372, + "thread": 0 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1626347, + "thread": 15 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1766791, + "thread": 18 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1900685, + "thread": 14 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 1978666, + "thread": 22 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 2252147, + "thread": 31 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 2377928, + "thread": 29 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 2487233, + "thread": 29 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 2662556, + "thread": 8 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 2913867, + "thread": 18 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 3011148, + "thread": 12 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 3287493, + "thread": 13 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 3340408, + "thread": 25 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 3459662, + "thread": 28 + } + }, + { + "amount": "227.394599073", + "slot": { + "period": 3774000, + "thread": 22 + } + }, + { + "amount": "227.394599066", + "slot": { + "period": 3841428, + "thread": 3 + } + } + ], + "AU1xUA8VvqnGFcnLMwnr432C2EUkgfxog1EApngYwN97uPK454af": [ + { + "amount": "280.306144127", + "slot": { + "period": 77095, + "thread": 11 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 236600, + "thread": 8 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 410249, + "thread": 9 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 494451, + "thread": 23 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 744787, + "thread": 30 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 942897, + "thread": 0 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1051453, + "thread": 12 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1305551, + "thread": 25 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1410899, + "thread": 13 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1560844, + "thread": 14 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1778929, + "thread": 8 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 1950661, + "thread": 22 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2084746, + "thread": 0 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2166705, + "thread": 15 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2360575, + "thread": 13 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2518107, + "thread": 16 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2758538, + "thread": 15 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 2829943, + "thread": 21 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 3005925, + "thread": 20 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 3175133, + "thread": 15 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 3309806, + "thread": 26 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 3608144, + "thread": 9 + } + }, + { + "amount": "280.306144127", + "slot": { + "period": 3673674, + "thread": 6 + } + }, + { + "amount": "280.306144132", + "slot": { + "period": 3944953, + "thread": 27 + } + } + ], + "AU1xUcXp2Wqq2v1RMDcAa595JwUdrTG5dnnbaQm9AwZTNpN23qox": [ + { + "amount": "150.547151164", + "slot": { + "period": 22928, + "thread": 17 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 283940, + "thread": 9 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 411913, + "thread": 8 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 562084, + "thread": 20 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 813944, + "thread": 21 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 910413, + "thread": 0 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 999791, + "thread": 2 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 1291587, + "thread": 6 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 1377219, + "thread": 10 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 1489804, + "thread": 16 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 1806684, + "thread": 6 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 1864183, + "thread": 25 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2091346, + "thread": 29 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2279580, + "thread": 4 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2368318, + "thread": 7 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2515383, + "thread": 27 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2758199, + "thread": 14 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 2802330, + "thread": 12 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 3027072, + "thread": 6 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 3167846, + "thread": 7 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 3318608, + "thread": 30 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 3517279, + "thread": 9 + } + }, + { + "amount": "150.547151164", + "slot": { + "period": 3641672, + "thread": 1 + } + }, + { + "amount": "150.547151166", + "slot": { + "period": 3872572, + "thread": 26 + } + } + ], + "AU1xWwkwB5HDZusg9GgBQHpmUkH6Gwd3YsRTUq4TMQha3ENYdKnM": [ + { + "amount": "133.955518140", + "slot": { + "period": 87965, + "thread": 20 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 321827, + "thread": 6 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 382832, + "thread": 18 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 596071, + "thread": 9 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 771648, + "thread": 2 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 896093, + "thread": 26 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1029600, + "thread": 4 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1246286, + "thread": 26 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1467622, + "thread": 0 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1604608, + "thread": 23 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1778836, + "thread": 24 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 1937087, + "thread": 21 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2038252, + "thread": 14 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2200045, + "thread": 23 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2354288, + "thread": 7 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2581335, + "thread": 22 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2678049, + "thread": 10 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 2852011, + "thread": 24 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 3099117, + "thread": 28 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 3227958, + "thread": 22 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 3326140, + "thread": 18 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 3509054, + "thread": 2 + } + }, + { + "amount": "133.955518140", + "slot": { + "period": 3683443, + "thread": 21 + } + }, + { + "amount": "133.955518142", + "slot": { + "period": 3930925, + "thread": 26 + } + } + ], + "AU1xXLMWQKyRFR1RbxoAZQM9pCzsv4tvFyDPrCjBo1MebhN1pviv": [ + { + "amount": "202.336883634", + "slot": { + "period": 53038, + "thread": 17 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 318029, + "thread": 31 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 407577, + "thread": 25 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 565229, + "thread": 21 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 804118, + "thread": 12 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 975424, + "thread": 6 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1001574, + "thread": 15 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1238717, + "thread": 4 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1389696, + "thread": 18 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1557708, + "thread": 15 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1706147, + "thread": 30 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 1895389, + "thread": 9 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2001788, + "thread": 21 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2258602, + "thread": 23 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2351648, + "thread": 15 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2571012, + "thread": 26 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2765245, + "thread": 23 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 2871420, + "thread": 0 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 3015043, + "thread": 11 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 3275742, + "thread": 10 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 3375798, + "thread": 19 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 3553088, + "thread": 24 + } + }, + { + "amount": "202.336883634", + "slot": { + "period": 3663646, + "thread": 2 + } + }, + { + "amount": "202.336883639", + "slot": { + "period": 3878706, + "thread": 13 + } + } + ], + "AU1xZaGNbzGpPRFLCjPhwZKZ2KtzAvBVSqfbqzxhfNuam6HydUs4": [ + { + "amount": "462.198670114", + "slot": { + "period": 29758, + "thread": 8 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 215824, + "thread": 9 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 370677, + "thread": 8 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 628498, + "thread": 29 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 787528, + "thread": 21 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 974222, + "thread": 1 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1046710, + "thread": 1 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1244227, + "thread": 4 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1330546, + "thread": 19 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1610363, + "thread": 31 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1735778, + "thread": 8 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 1958533, + "thread": 13 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2034031, + "thread": 10 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2246934, + "thread": 30 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2439416, + "thread": 9 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2561241, + "thread": 16 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2634661, + "thread": 7 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2883936, + "thread": 27 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 2965868, + "thread": 19 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 3202660, + "thread": 30 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 3354391, + "thread": 8 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 3583266, + "thread": 13 + } + }, + { + "amount": "462.198670114", + "slot": { + "period": 3737916, + "thread": 8 + } + }, + { + "amount": "462.198670125", + "slot": { + "period": 3933285, + "thread": 25 + } + } + ], + "AU1xZrgCnM5tv6NEQkeWe9bajPiPowpPSiKgpBLyV91V9ZZpbe9P": [ + { + "amount": "191.850317959", + "slot": { + "period": 155969, + "thread": 1 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 302948, + "thread": 11 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 447677, + "thread": 26 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 562712, + "thread": 31 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 675227, + "thread": 4 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 869903, + "thread": 10 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1073904, + "thread": 16 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1296605, + "thread": 29 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1425597, + "thread": 26 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1581000, + "thread": 0 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1726501, + "thread": 9 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 1956080, + "thread": 28 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2023435, + "thread": 24 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2147570, + "thread": 5 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2308606, + "thread": 7 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2530544, + "thread": 15 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2670165, + "thread": 30 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 2866873, + "thread": 18 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 3003876, + "thread": 24 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 3166660, + "thread": 29 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 3408556, + "thread": 28 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 3473124, + "thread": 20 + } + }, + { + "amount": "191.850317959", + "slot": { + "period": 3682592, + "thread": 12 + } + }, + { + "amount": "191.850317949", + "slot": { + "period": 3933828, + "thread": 19 + } + } + ], + "AU1xZvT3w4i4JVxZen2LeHrpdDGmWLgQq8b18nXgcYPGygthDeR7": [ + { + "amount": "278.501044315", + "slot": { + "period": 163044, + "thread": 21 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 322698, + "thread": 2 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 478793, + "thread": 31 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 589240, + "thread": 9 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 696329, + "thread": 22 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 921410, + "thread": 25 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1080155, + "thread": 30 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1269556, + "thread": 26 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1372450, + "thread": 10 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1484885, + "thread": 25 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1764327, + "thread": 25 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 1811917, + "thread": 5 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2051560, + "thread": 8 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2187841, + "thread": 14 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2395797, + "thread": 31 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2584952, + "thread": 11 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2703551, + "thread": 0 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 2946109, + "thread": 3 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 3018438, + "thread": 13 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 3141588, + "thread": 14 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 3318613, + "thread": 18 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 3491797, + "thread": 12 + } + }, + { + "amount": "278.501044315", + "slot": { + "period": 3744172, + "thread": 9 + } + }, + { + "amount": "278.501044325", + "slot": { + "period": 3945103, + "thread": 6 + } + } + ], + "AU1xaUZnpo7DmfqcMH3KFudhV8cmM97REQfpaQY4xr1oo4H8EE7o": [ + { + "amount": "392.924001881", + "slot": { + "period": 132976, + "thread": 19 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 315838, + "thread": 0 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 480988, + "thread": 27 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 525727, + "thread": 30 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 700719, + "thread": 16 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 945545, + "thread": 21 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1059228, + "thread": 24 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1262035, + "thread": 10 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1423231, + "thread": 25 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1487120, + "thread": 3 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1713554, + "thread": 19 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 1943076, + "thread": 27 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2071311, + "thread": 19 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2159520, + "thread": 30 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2375079, + "thread": 30 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2539821, + "thread": 15 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2678190, + "thread": 16 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 2792984, + "thread": 6 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 3095454, + "thread": 17 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 3243724, + "thread": 12 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 3334230, + "thread": 30 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 3493754, + "thread": 28 + } + }, + { + "amount": "392.924001881", + "slot": { + "period": 3697456, + "thread": 22 + } + }, + { + "amount": "392.924001872", + "slot": { + "period": 3846751, + "thread": 25 + } + } + ], + "AU1xcbqahZ4L1MmVyZJs8CLYxmtnbMRkT3c1ZdFfUvAJFrGThY3M": [ + { + "amount": "395.940098892", + "slot": { + "period": 101960, + "thread": 7 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 216393, + "thread": 27 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 388969, + "thread": 23 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 538434, + "thread": 6 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 746563, + "thread": 20 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 973607, + "thread": 4 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1024535, + "thread": 7 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1310656, + "thread": 9 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1354634, + "thread": 13 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1526609, + "thread": 4 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1676419, + "thread": 1 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 1831707, + "thread": 29 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2065340, + "thread": 17 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2190819, + "thread": 9 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2433067, + "thread": 13 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2509529, + "thread": 3 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2717299, + "thread": 14 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 2815697, + "thread": 26 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 3089632, + "thread": 10 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 3276890, + "thread": 13 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 3313663, + "thread": 24 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 3595927, + "thread": 13 + } + }, + { + "amount": "395.940098892", + "slot": { + "period": 3747895, + "thread": 2 + } + }, + { + "amount": "395.940098901", + "slot": { + "period": 3884811, + "thread": 16 + } + } + ], + "AU1xdUqwndhdVmGJs7pL2qjQSAPADmQBySC76AHJMijm9D9qgKTC": [ + { + "amount": "378.863568042", + "slot": { + "period": 121939, + "thread": 31 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 322233, + "thread": 6 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 421721, + "thread": 13 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 631552, + "thread": 15 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 727339, + "thread": 14 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 964840, + "thread": 20 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 987186, + "thread": 24 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 1232292, + "thread": 27 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 1361409, + "thread": 24 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 1583245, + "thread": 23 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 1807325, + "thread": 30 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 1903192, + "thread": 23 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2053217, + "thread": 18 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2191130, + "thread": 12 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2395831, + "thread": 5 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2520435, + "thread": 30 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2722782, + "thread": 24 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2820256, + "thread": 27 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 2968907, + "thread": 19 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 3225422, + "thread": 22 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 3293946, + "thread": 30 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 3581177, + "thread": 5 + } + }, + { + "amount": "378.863568042", + "slot": { + "period": 3722936, + "thread": 28 + } + }, + { + "amount": "378.863568052", + "slot": { + "period": 3900635, + "thread": 26 + } + } + ], + "AU1xdevdaPvRgUbZv7tUJdsY8jasr2WBy91263ey2aifVKQFD8Jq": [ + { + "amount": "122.485141277", + "slot": { + "period": 122683, + "thread": 15 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 201888, + "thread": 16 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 327961, + "thread": 6 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 554659, + "thread": 29 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 654107, + "thread": 19 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 955707, + "thread": 5 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1082265, + "thread": 15 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1306574, + "thread": 11 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1431391, + "thread": 18 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1486389, + "thread": 9 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1704783, + "thread": 18 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 1955815, + "thread": 6 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2072128, + "thread": 5 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2287976, + "thread": 19 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2432380, + "thread": 24 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2603610, + "thread": 17 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2694022, + "thread": 10 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 2823025, + "thread": 10 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3050236, + "thread": 14 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3144080, + "thread": 2 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3379148, + "thread": 31 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3517603, + "thread": 28 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3621312, + "thread": 10 + } + }, + { + "amount": "122.485141277", + "slot": { + "period": 3783514, + "thread": 21 + } + } + ], + "AU1xe6yaoQrLJVrgJ8xaBsAyuqDTuKnthbzYozHYiARa7jwnu2of": [ + { + "amount": "143.162550298", + "slot": { + "period": 147384, + "thread": 28 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 205882, + "thread": 23 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 369107, + "thread": 21 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 653097, + "thread": 20 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 809534, + "thread": 23 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 861458, + "thread": 17 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 983527, + "thread": 7 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 1263796, + "thread": 13 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 1423683, + "thread": 20 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 1542032, + "thread": 0 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 1650599, + "thread": 5 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 1927440, + "thread": 20 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2045245, + "thread": 22 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2205365, + "thread": 3 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2375006, + "thread": 14 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2489079, + "thread": 16 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2656452, + "thread": 16 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 2856837, + "thread": 23 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 3034109, + "thread": 23 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 3153622, + "thread": 18 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 3308099, + "thread": 24 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 3583821, + "thread": 21 + } + }, + { + "amount": "143.162550298", + "slot": { + "period": 3740831, + "thread": 16 + } + }, + { + "amount": "143.162550296", + "slot": { + "period": 3867250, + "thread": 15 + } + } + ], + "AU1xeQmVQjBhHVZYRD6mA6mtToxyPHJ1wCJhvvs9Mofbh5QwdLMc": [ + { + "amount": "140.277513433", + "slot": { + "period": 39995, + "thread": 23 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 317095, + "thread": 6 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 397601, + "thread": 4 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 611620, + "thread": 9 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 678245, + "thread": 4 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 825757, + "thread": 21 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1012128, + "thread": 22 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1187063, + "thread": 30 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1418607, + "thread": 15 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1543213, + "thread": 4 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1716818, + "thread": 0 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 1946622, + "thread": 17 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2112247, + "thread": 5 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2208714, + "thread": 4 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2310626, + "thread": 3 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2539641, + "thread": 11 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2730266, + "thread": 5 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 2888578, + "thread": 28 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 3060034, + "thread": 27 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 3248069, + "thread": 15 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 3369028, + "thread": 19 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 3569938, + "thread": 21 + } + }, + { + "amount": "140.277513433", + "slot": { + "period": 3644682, + "thread": 22 + } + }, + { + "amount": "140.277513435", + "slot": { + "period": 3841332, + "thread": 5 + } + } + ], + "AU1xf2bt3EEySL6srR7re3WNWR878aRJSyTiVT86em2zLcM5JDYw": [ + { + "amount": "284.796087144", + "slot": { + "period": 154916, + "thread": 3 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 266226, + "thread": 17 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 433460, + "thread": 7 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 635042, + "thread": 31 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 798043, + "thread": 0 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 924329, + "thread": 22 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1055687, + "thread": 27 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1215473, + "thread": 18 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1441521, + "thread": 14 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1588374, + "thread": 4 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1766167, + "thread": 7 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1916121, + "thread": 14 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 1997691, + "thread": 11 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2250249, + "thread": 4 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2426316, + "thread": 27 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2471972, + "thread": 14 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2760161, + "thread": 3 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2927900, + "thread": 6 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 2969178, + "thread": 16 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 3222707, + "thread": 14 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 3374039, + "thread": 10 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 3612445, + "thread": 31 + } + }, + { + "amount": "284.796087144", + "slot": { + "period": 3761899, + "thread": 9 + } + }, + { + "amount": "284.796087150", + "slot": { + "period": 3808190, + "thread": 5 + } + } + ], + "AU1xg7iSVwFAhyA9jnDv8iDXyyX9aCgwe2jH62GP32gGTGYsjUMC": [ + { + "amount": "249.392437198", + "slot": { + "period": 85297, + "thread": 10 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 287748, + "thread": 8 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 344255, + "thread": 19 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 593455, + "thread": 15 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 756509, + "thread": 26 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 889782, + "thread": 29 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1095318, + "thread": 7 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1203108, + "thread": 9 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1401230, + "thread": 25 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1618754, + "thread": 4 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1800032, + "thread": 15 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 1847035, + "thread": 1 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2080442, + "thread": 23 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2287149, + "thread": 13 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2402388, + "thread": 7 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2511094, + "thread": 11 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2748820, + "thread": 8 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2884895, + "thread": 10 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 2989890, + "thread": 28 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 3270612, + "thread": 4 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 3372100, + "thread": 1 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 3575057, + "thread": 29 + } + }, + { + "amount": "249.392437198", + "slot": { + "period": 3620975, + "thread": 22 + } + }, + { + "amount": "249.392437189", + "slot": { + "period": 3781544, + "thread": 27 + } + } + ], + "AU1xgAgmk7f5AgSptJ1fAiMhvQvUW66ki8xnLzdzaudPXp14nLfV": [ + { + "amount": "56.463038811", + "slot": { + "period": 73948, + "thread": 22 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 275298, + "thread": 13 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 403106, + "thread": 28 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 568512, + "thread": 31 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 760914, + "thread": 26 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 821292, + "thread": 28 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1014699, + "thread": 7 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1234725, + "thread": 19 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1451153, + "thread": 21 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1570591, + "thread": 22 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1707514, + "thread": 27 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 1858781, + "thread": 29 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2051167, + "thread": 27 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2191415, + "thread": 15 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2448943, + "thread": 8 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2520710, + "thread": 3 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2713408, + "thread": 18 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 2850246, + "thread": 19 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 3111720, + "thread": 8 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 3176057, + "thread": 3 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 3333027, + "thread": 7 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 3511085, + "thread": 29 + } + }, + { + "amount": "56.463038811", + "slot": { + "period": 3623346, + "thread": 29 + } + }, + { + "amount": "56.463038800", + "slot": { + "period": 3819027, + "thread": 24 + } + } + ], + "AU1xgDCKxxQx1G6LVocxBzVnjATqUAWDmfpaCHZgMT3dxnPaxDiq": [ + { + "amount": "239.976794716", + "slot": { + "period": 59426, + "thread": 7 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 242788, + "thread": 1 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 451172, + "thread": 2 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 513076, + "thread": 29 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 687501, + "thread": 27 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 821401, + "thread": 0 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1031718, + "thread": 16 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1202314, + "thread": 27 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1436339, + "thread": 26 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1553106, + "thread": 10 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1743504, + "thread": 7 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 1871106, + "thread": 1 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2135920, + "thread": 10 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2174712, + "thread": 2 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2305077, + "thread": 27 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2596124, + "thread": 18 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2683502, + "thread": 20 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2847860, + "thread": 2 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 2977865, + "thread": 4 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 3254817, + "thread": 3 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 3289089, + "thread": 11 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 3533390, + "thread": 11 + } + }, + { + "amount": "239.976794716", + "slot": { + "period": 3682668, + "thread": 4 + } + }, + { + "amount": "239.976794725", + "slot": { + "period": 3835642, + "thread": 0 + } + } + ], + "AU1xgQBCdXUfqzdF95JuHbg6qhoLFdwcFX6xopugtartAEBsJGBU": [ + { + "amount": "79.463814329", + "slot": { + "period": 29936, + "thread": 0 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 288379, + "thread": 19 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 489084, + "thread": 15 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 618358, + "thread": 7 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 742381, + "thread": 0 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 879551, + "thread": 26 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1119979, + "thread": 2 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1274979, + "thread": 20 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1383510, + "thread": 20 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1603347, + "thread": 11 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1738587, + "thread": 31 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1914898, + "thread": 18 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 1997061, + "thread": 14 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 2202405, + "thread": 21 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 2351690, + "thread": 30 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 2533947, + "thread": 28 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 2714193, + "thread": 13 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 2910541, + "thread": 16 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 3099103, + "thread": 11 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 3147553, + "thread": 29 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 3354520, + "thread": 17 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 3595195, + "thread": 22 + } + }, + { + "amount": "79.463814329", + "slot": { + "period": 3745042, + "thread": 26 + } + }, + { + "amount": "79.463814326", + "slot": { + "period": 3807321, + "thread": 3 + } + } + ], + "AU1xgXy6wJsnsmZMNLi9pPCvFzes6n7HdqLAsxYvY3qGY7SySV5M": [ + { + "amount": "77.894710502", + "slot": { + "period": 10963, + "thread": 16 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 243146, + "thread": 23 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 468844, + "thread": 14 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 507861, + "thread": 30 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 787896, + "thread": 30 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 877387, + "thread": 20 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1107775, + "thread": 4 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1195512, + "thread": 9 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1463348, + "thread": 23 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1557876, + "thread": 6 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1770277, + "thread": 23 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1850148, + "thread": 15 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 1993194, + "thread": 16 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 2179645, + "thread": 3 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 2338461, + "thread": 16 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 2475222, + "thread": 24 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 2650926, + "thread": 9 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 2919485, + "thread": 0 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 3097652, + "thread": 17 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 3210597, + "thread": 31 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 3309574, + "thread": 3 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 3480333, + "thread": 22 + } + }, + { + "amount": "77.894710502", + "slot": { + "period": 3629396, + "thread": 23 + } + }, + { + "amount": "77.894710501", + "slot": { + "period": 3879103, + "thread": 15 + } + } + ], + "AU1xgYrMxnN7Z9WkcjypWLt8TSyJW7ifJktaan6JXxFnSG2KpbQf": [ + { + "amount": "133.206659828", + "slot": { + "period": 100081, + "thread": 6 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 322665, + "thread": 15 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 330237, + "thread": 31 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 550210, + "thread": 1 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 735732, + "thread": 19 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 845092, + "thread": 15 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1140905, + "thread": 24 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1160047, + "thread": 28 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1361914, + "thread": 11 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1567018, + "thread": 7 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1661543, + "thread": 16 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 1829177, + "thread": 18 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2121001, + "thread": 26 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2290919, + "thread": 30 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2370990, + "thread": 0 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2498361, + "thread": 5 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2674853, + "thread": 9 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 2856991, + "thread": 29 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 3114649, + "thread": 22 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 3264698, + "thread": 25 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 3366199, + "thread": 30 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 3470737, + "thread": 12 + } + }, + { + "amount": "133.206659828", + "slot": { + "period": 3671271, + "thread": 27 + } + }, + { + "amount": "133.206659829", + "slot": { + "period": 3898139, + "thread": 23 + } + } + ], + "AU1xgcYgCMN5kpwmJg6dhqy7Kuxhi5MXA9nkAmmUpkcc13aWKjs1": [ + { + "amount": "57.896066978", + "slot": { + "period": 138320, + "thread": 2 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 211260, + "thread": 23 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 398227, + "thread": 15 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 558069, + "thread": 3 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 723160, + "thread": 6 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 838423, + "thread": 7 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1011027, + "thread": 29 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1245254, + "thread": 16 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1355836, + "thread": 22 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1624116, + "thread": 4 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1782227, + "thread": 11 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 1820705, + "thread": 9 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2088289, + "thread": 2 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2210062, + "thread": 9 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2348234, + "thread": 2 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2609523, + "thread": 21 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2639106, + "thread": 31 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 2796945, + "thread": 12 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 3019972, + "thread": 31 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 3143835, + "thread": 31 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 3416107, + "thread": 22 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 3536078, + "thread": 31 + } + }, + { + "amount": "57.896066978", + "slot": { + "period": 3687663, + "thread": 27 + } + }, + { + "amount": "57.896066974", + "slot": { + "period": 3868331, + "thread": 25 + } + } + ], + "AU1xgfpa7bgzkxQg4Vn2gsrsrpSwpHKPt1rGDFUBb87tsjo4hN5j": [ + { + "amount": "246.073954221", + "slot": { + "period": 124360, + "thread": 1 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 247686, + "thread": 26 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 340762, + "thread": 23 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 646415, + "thread": 11 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 734637, + "thread": 28 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 967062, + "thread": 19 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1002243, + "thread": 23 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1152973, + "thread": 6 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1378833, + "thread": 2 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1499870, + "thread": 19 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1705212, + "thread": 2 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1946050, + "thread": 29 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 1988922, + "thread": 8 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2185060, + "thread": 17 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2439590, + "thread": 2 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2472859, + "thread": 27 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2633750, + "thread": 20 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2813581, + "thread": 1 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 2990507, + "thread": 3 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 3176187, + "thread": 12 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 3416625, + "thread": 14 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 3615192, + "thread": 17 + } + }, + { + "amount": "246.073954221", + "slot": { + "period": 3746573, + "thread": 9 + } + }, + { + "amount": "246.073954220", + "slot": { + "period": 3855641, + "thread": 15 + } + } + ], + "AU1xhAdYXcWxcqRcxxCsppGzL1sRd4vRhWqSotEYeyiQyFy4pQ7x": [ + { + "amount": "574.753474774", + "slot": { + "period": 48995, + "thread": 28 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 215514, + "thread": 29 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 352344, + "thread": 11 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 607779, + "thread": 27 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 717694, + "thread": 0 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 822895, + "thread": 5 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1101981, + "thread": 26 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1163440, + "thread": 22 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1387611, + "thread": 2 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1619256, + "thread": 20 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1743394, + "thread": 26 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 1887755, + "thread": 2 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2137294, + "thread": 12 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2249393, + "thread": 4 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2451306, + "thread": 28 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2606285, + "thread": 18 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2785619, + "thread": 10 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2843357, + "thread": 24 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 2990783, + "thread": 6 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 3175337, + "thread": 26 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 3321791, + "thread": 19 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 3471943, + "thread": 19 + } + }, + { + "amount": "574.753474774", + "slot": { + "period": 3668854, + "thread": 4 + } + }, + { + "amount": "574.753474783", + "slot": { + "period": 3922925, + "thread": 8 + } + } + ], + "AU1xhM8368yaXZj8L6fEfdhSGhyvoDenQ3dqvUQjgM9ciS3yzgC8": [ + { + "amount": "562.544244920", + "slot": { + "period": 86735, + "thread": 8 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 285048, + "thread": 30 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 466368, + "thread": 4 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 620829, + "thread": 19 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 793565, + "thread": 26 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 973445, + "thread": 27 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1099103, + "thread": 0 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1247978, + "thread": 10 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1475286, + "thread": 7 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1561300, + "thread": 20 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1698055, + "thread": 2 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 1919130, + "thread": 31 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2015169, + "thread": 21 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2194616, + "thread": 0 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2402197, + "thread": 28 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2568548, + "thread": 9 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2752525, + "thread": 14 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 2808248, + "thread": 3 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 3014017, + "thread": 1 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 3186937, + "thread": 9 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 3336559, + "thread": 6 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 3564753, + "thread": 8 + } + }, + { + "amount": "562.544244920", + "slot": { + "period": 3776355, + "thread": 9 + } + }, + { + "amount": "562.544244909", + "slot": { + "period": 3811937, + "thread": 1 + } + } + ], + "AU1xhVhAGKLdQaYeaGEbS49MxzxaHJViVxzm4bvmwbUUAHngPxPG": [ + { + "amount": "338.591371979", + "slot": { + "period": 159915, + "thread": 1 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 281326, + "thread": 28 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 405059, + "thread": 7 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 565775, + "thread": 29 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 669317, + "thread": 27 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 829207, + "thread": 18 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1007133, + "thread": 31 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1219776, + "thread": 6 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1336882, + "thread": 11 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1571341, + "thread": 13 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1744049, + "thread": 27 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 1856458, + "thread": 28 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2135115, + "thread": 14 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2200181, + "thread": 22 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2434642, + "thread": 2 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2486557, + "thread": 15 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2766650, + "thread": 11 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 2816262, + "thread": 22 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 3120871, + "thread": 31 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 3152834, + "thread": 0 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 3443635, + "thread": 4 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 3602416, + "thread": 9 + } + }, + { + "amount": "338.591371979", + "slot": { + "period": 3623330, + "thread": 9 + } + }, + { + "amount": "338.591371972", + "slot": { + "period": 3803487, + "thread": 23 + } + } + ], + "AU1xib6JhNnwGwcBox1iZ6ATzZMgf4sh1Vkyzk5w72ejhGkrUqmh": [ + { + "amount": "228.547486401", + "slot": { + "period": 76753, + "thread": 29 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 237534, + "thread": 12 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 445687, + "thread": 25 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 512317, + "thread": 13 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 719295, + "thread": 16 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 871291, + "thread": 26 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1043334, + "thread": 5 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1313900, + "thread": 16 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1387572, + "thread": 18 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1597557, + "thread": 24 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1663623, + "thread": 20 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 1950414, + "thread": 6 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2111888, + "thread": 5 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2291775, + "thread": 31 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2320213, + "thread": 4 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2563103, + "thread": 13 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2756904, + "thread": 8 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2883204, + "thread": 20 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 2983023, + "thread": 20 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 3144450, + "thread": 7 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 3365636, + "thread": 22 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 3593010, + "thread": 23 + } + }, + { + "amount": "228.547486401", + "slot": { + "period": 3763411, + "thread": 20 + } + }, + { + "amount": "228.547486400", + "slot": { + "period": 3915125, + "thread": 18 + } + } + ], + "AU1xirnvScE1i7D7mwpqKm36YBCB3x7i4UVxLR9gdTyvHjYd6qQA": [ + { + "amount": "796.868041029", + "slot": { + "period": 162543, + "thread": 31 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 238107, + "thread": 16 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 450169, + "thread": 18 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 522220, + "thread": 31 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 666787, + "thread": 6 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 892279, + "thread": 0 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 997042, + "thread": 26 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 1203287, + "thread": 3 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 1323511, + "thread": 19 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 1578736, + "thread": 18 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 1689398, + "thread": 2 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 1856570, + "thread": 5 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2024678, + "thread": 17 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2174947, + "thread": 19 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2403987, + "thread": 11 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2622403, + "thread": 0 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2777516, + "thread": 3 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 2848272, + "thread": 20 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 3006313, + "thread": 18 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 3125439, + "thread": 3 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 3424251, + "thread": 2 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 3518115, + "thread": 1 + } + }, + { + "amount": "796.868041029", + "slot": { + "period": 3727289, + "thread": 7 + } + }, + { + "amount": "796.868041026", + "slot": { + "period": 3935545, + "thread": 17 + } + } + ], + "AU1xjCY3hMrADwvVJAHntEwsCxN14uCgoxjodDGF3v9UtHYZ6rAr": [ + { + "amount": "61.382235369", + "slot": { + "period": 116293, + "thread": 8 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 316707, + "thread": 17 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 477723, + "thread": 16 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 649482, + "thread": 11 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 704902, + "thread": 7 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 836649, + "thread": 13 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1011683, + "thread": 5 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1314905, + "thread": 25 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1462423, + "thread": 20 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1570938, + "thread": 14 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1744744, + "thread": 14 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1821344, + "thread": 4 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 1998353, + "thread": 15 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 2203537, + "thread": 30 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 2410426, + "thread": 18 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 2585683, + "thread": 8 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 2698290, + "thread": 14 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 2935876, + "thread": 4 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 3106372, + "thread": 23 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 3163396, + "thread": 8 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 3368226, + "thread": 22 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 3593203, + "thread": 13 + } + }, + { + "amount": "61.382235369", + "slot": { + "period": 3619974, + "thread": 9 + } + }, + { + "amount": "61.382235359", + "slot": { + "period": 3841161, + "thread": 1 + } + } + ], + "AU1xjJ1GN3RdDXNTArTFVsZN5HFxmg2PoMLYzFPYJXrLcngDAKtJ": [ + { + "amount": "233.742622175", + "slot": { + "period": 39215, + "thread": 20 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 221816, + "thread": 24 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 412791, + "thread": 25 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 534622, + "thread": 26 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 798451, + "thread": 13 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 919488, + "thread": 20 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1059212, + "thread": 17 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1208701, + "thread": 20 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1415460, + "thread": 17 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1539661, + "thread": 14 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1760199, + "thread": 5 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 1813700, + "thread": 25 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2102719, + "thread": 11 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2262901, + "thread": 5 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2423992, + "thread": 20 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2582452, + "thread": 16 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2625414, + "thread": 8 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 2913474, + "thread": 20 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 3091906, + "thread": 21 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 3132980, + "thread": 2 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 3324637, + "thread": 24 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 3593149, + "thread": 27 + } + }, + { + "amount": "233.742622175", + "slot": { + "period": 3624243, + "thread": 7 + } + }, + { + "amount": "233.742622167", + "slot": { + "period": 3940069, + "thread": 19 + } + } + ], + "AU1xjSz8qZLCBqR3A7FTvMJr63ZFnhcviahG68UUF4KupZ197Yn8": [ + { + "amount": "191.079553793", + "slot": { + "period": 123448, + "thread": 19 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 202227, + "thread": 30 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 481983, + "thread": 18 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 629752, + "thread": 4 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 745860, + "thread": 16 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 871971, + "thread": 20 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1044638, + "thread": 0 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1214439, + "thread": 22 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1374182, + "thread": 7 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1640490, + "thread": 27 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1707953, + "thread": 12 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 1963853, + "thread": 28 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2024943, + "thread": 21 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2254216, + "thread": 17 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2434226, + "thread": 30 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2507716, + "thread": 0 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2649904, + "thread": 12 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 2940962, + "thread": 26 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 3016892, + "thread": 17 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 3126088, + "thread": 21 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 3403037, + "thread": 21 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 3607363, + "thread": 10 + } + }, + { + "amount": "191.079553793", + "slot": { + "period": 3672737, + "thread": 13 + } + }, + { + "amount": "191.079553784", + "slot": { + "period": 3816702, + "thread": 11 + } + } + ], + "AU1xjcDWVQimefp2oWVSuDsxaQgTZZKAr11v1YfdRfLBnWZ3ttEP": [ + { + "amount": "642.708205801", + "slot": { + "period": 154168, + "thread": 4 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 306822, + "thread": 24 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 417594, + "thread": 17 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 638284, + "thread": 16 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 687162, + "thread": 12 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 938993, + "thread": 18 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1104923, + "thread": 5 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1229536, + "thread": 26 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1384041, + "thread": 6 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1483017, + "thread": 24 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1655194, + "thread": 19 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 1816353, + "thread": 9 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2130864, + "thread": 26 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2171894, + "thread": 9 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2358929, + "thread": 4 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2598449, + "thread": 16 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2629743, + "thread": 17 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2872695, + "thread": 19 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 2958682, + "thread": 10 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 3133327, + "thread": 25 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 3408387, + "thread": 24 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 3484174, + "thread": 14 + } + }, + { + "amount": "642.708205801", + "slot": { + "period": 3629097, + "thread": 29 + } + }, + { + "amount": "642.708205805", + "slot": { + "period": 3856203, + "thread": 1 + } + } + ], + "AU1xjwSuhnRvWyzu8UFprBqUh8QYAcPwYkEiX1A7zS5dnJVQ6YYm": [ + { + "amount": "99.230728795", + "slot": { + "period": 127928, + "thread": 24 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 214769, + "thread": 28 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 367799, + "thread": 4 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 596926, + "thread": 2 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 743799, + "thread": 19 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 973653, + "thread": 22 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1127958, + "thread": 15 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1199480, + "thread": 11 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1473258, + "thread": 28 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1492043, + "thread": 27 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1797334, + "thread": 25 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 1819136, + "thread": 24 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2026645, + "thread": 6 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2165990, + "thread": 8 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2362154, + "thread": 17 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2519503, + "thread": 19 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2641076, + "thread": 3 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 2946418, + "thread": 10 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 3052463, + "thread": 14 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 3284756, + "thread": 30 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 3356199, + "thread": 5 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 3542759, + "thread": 22 + } + }, + { + "amount": "99.230728795", + "slot": { + "period": 3736489, + "thread": 27 + } + }, + { + "amount": "99.230728787", + "slot": { + "period": 3847356, + "thread": 27 + } + } + ], + "AU1xmWX5Goceiu2HYuXL2HqFtpixjoiidPBdReB6Z8GuwyFou3UQ": [ + { + "amount": "79.777407677", + "slot": { + "period": 114669, + "thread": 29 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 275545, + "thread": 13 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 409199, + "thread": 31 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 637463, + "thread": 30 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 732733, + "thread": 15 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 931640, + "thread": 18 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1032527, + "thread": 5 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1220050, + "thread": 3 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1407427, + "thread": 25 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1623784, + "thread": 13 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1662500, + "thread": 18 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 1889297, + "thread": 19 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2025412, + "thread": 19 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2264420, + "thread": 18 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2355183, + "thread": 25 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2510042, + "thread": 7 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2696047, + "thread": 11 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2934141, + "thread": 14 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 2984174, + "thread": 16 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 3265153, + "thread": 26 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 3369646, + "thread": 11 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 3539689, + "thread": 17 + } + }, + { + "amount": "79.777407677", + "slot": { + "period": 3630416, + "thread": 12 + } + }, + { + "amount": "79.777407671", + "slot": { + "period": 3811071, + "thread": 4 + } + } + ], + "AU1xmhN3kYXPGwwbx9YxbcBMLAyaGs2zq2ieq7XQ6cAGSmQ5ufsH": [ + { + "amount": "334.451149089", + "slot": { + "period": 62220, + "thread": 29 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 278579, + "thread": 27 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 349768, + "thread": 23 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 632468, + "thread": 22 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 666858, + "thread": 27 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 825123, + "thread": 0 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1067990, + "thread": 13 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1175538, + "thread": 3 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1454311, + "thread": 30 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1485459, + "thread": 17 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1688372, + "thread": 30 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 1975811, + "thread": 11 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2064539, + "thread": 25 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2161909, + "thread": 7 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2363838, + "thread": 26 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2603959, + "thread": 13 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2735648, + "thread": 30 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2853773, + "thread": 11 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 2959967, + "thread": 14 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 3221085, + "thread": 5 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 3311618, + "thread": 12 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 3565896, + "thread": 15 + } + }, + { + "amount": "334.451149089", + "slot": { + "period": 3774521, + "thread": 0 + } + }, + { + "amount": "334.451149079", + "slot": { + "period": 3791577, + "thread": 31 + } + } + ], + "AU1xo4hXP1gHJXsCP1rRASvtUbycg9RW8VfL5VBcNAZdsm4i1EjJ": [ + { + "amount": "135.844199045", + "slot": { + "period": 118267, + "thread": 31 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 227222, + "thread": 5 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 381431, + "thread": 30 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 571556, + "thread": 13 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 689042, + "thread": 10 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 883005, + "thread": 20 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1004219, + "thread": 8 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1189947, + "thread": 28 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1381818, + "thread": 31 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1616241, + "thread": 29 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1690018, + "thread": 10 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1817216, + "thread": 12 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 1991743, + "thread": 16 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 2180219, + "thread": 30 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 2350263, + "thread": 11 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 2613558, + "thread": 29 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 2788656, + "thread": 5 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 2825494, + "thread": 2 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 3078342, + "thread": 10 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 3164554, + "thread": 12 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 3295221, + "thread": 8 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 3486728, + "thread": 7 + } + }, + { + "amount": "135.844199045", + "slot": { + "period": 3729286, + "thread": 13 + } + }, + { + "amount": "135.844199034", + "slot": { + "period": 3914270, + "thread": 18 + } + } + ], + "AU1xoeV2frQn9YqnRZLrnwCMDKp1PXDxeQqpgpwUyGhLppvx2nFv": [ + { + "amount": "7972.416666667", + "slot": { + "period": 27804, + "thread": 21 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 225752, + "thread": 9 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 480630, + "thread": 0 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 645277, + "thread": 16 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 713865, + "thread": 19 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 912967, + "thread": 17 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 997899, + "thread": 13 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 1249332, + "thread": 10 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 1410838, + "thread": 4 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 1545841, + "thread": 13 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 1712643, + "thread": 8 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 1909634, + "thread": 29 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2052370, + "thread": 25 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2224503, + "thread": 7 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2415043, + "thread": 12 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2519593, + "thread": 3 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2628491, + "thread": 29 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 2815870, + "thread": 1 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 3050884, + "thread": 6 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 3149702, + "thread": 25 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 3332828, + "thread": 17 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 3509161, + "thread": 0 + } + }, + { + "amount": "7972.416666667", + "slot": { + "period": 3635720, + "thread": 8 + } + }, + { + "amount": "7972.416666659", + "slot": { + "period": 3847687, + "thread": 4 + } + } + ], + "AU1xpLFqKXmvSa1HDVDV1i2gZ1pnrWesPMn4mo7a8PzdJFhKuMRy": [ + { + "amount": "266.940182151", + "slot": { + "period": 90671, + "thread": 13 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 286254, + "thread": 25 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 372636, + "thread": 29 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 528232, + "thread": 15 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 676851, + "thread": 0 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 907847, + "thread": 24 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1145682, + "thread": 15 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1277652, + "thread": 6 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1461047, + "thread": 13 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1592438, + "thread": 7 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1793778, + "thread": 31 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 1894524, + "thread": 6 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2075120, + "thread": 24 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2278710, + "thread": 7 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2438543, + "thread": 5 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2532979, + "thread": 21 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2719374, + "thread": 15 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 2876441, + "thread": 10 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 3025398, + "thread": 5 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 3132954, + "thread": 26 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 3289113, + "thread": 14 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 3569021, + "thread": 25 + } + }, + { + "amount": "266.940182151", + "slot": { + "period": 3765749, + "thread": 12 + } + }, + { + "amount": "266.940182146", + "slot": { + "period": 3880278, + "thread": 4 + } + } + ], + "AU1xpmNataffXT47XZASFyYhEdvmkBQZ7qdWodQaxXm7MRavWrCR": [ + { + "amount": "119.577763669", + "slot": { + "period": 126244, + "thread": 21 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 233050, + "thread": 24 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 375409, + "thread": 17 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 625126, + "thread": 21 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 784554, + "thread": 21 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 970685, + "thread": 5 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1071056, + "thread": 5 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1235607, + "thread": 28 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1440293, + "thread": 25 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1523808, + "thread": 13 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1700079, + "thread": 23 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 1930311, + "thread": 8 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2072625, + "thread": 0 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2234964, + "thread": 15 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2322477, + "thread": 18 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2541829, + "thread": 11 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2758110, + "thread": 26 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2928502, + "thread": 9 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 2969383, + "thread": 2 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 3252627, + "thread": 8 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 3414104, + "thread": 19 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 3533486, + "thread": 31 + } + }, + { + "amount": "119.577763669", + "slot": { + "period": 3660497, + "thread": 27 + } + }, + { + "amount": "119.577763672", + "slot": { + "period": 3919326, + "thread": 22 + } + } + ], + "AU1xr6cHi4nzBaceMoVmHcYUySipJN7ZwYDzKmJWnYpLtun5wmrG": [ + { + "amount": "144.542024173", + "slot": { + "period": 75771, + "thread": 23 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 244444, + "thread": 1 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 455073, + "thread": 24 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 588916, + "thread": 23 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 740809, + "thread": 2 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 931770, + "thread": 7 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1017812, + "thread": 22 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1248209, + "thread": 16 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1404042, + "thread": 7 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1561810, + "thread": 29 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1694688, + "thread": 0 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 1907023, + "thread": 2 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2004474, + "thread": 14 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2222259, + "thread": 20 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2397424, + "thread": 20 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2534564, + "thread": 16 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2756824, + "thread": 8 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2874581, + "thread": 7 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 2992758, + "thread": 8 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 3252429, + "thread": 21 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 3445087, + "thread": 6 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 3511431, + "thread": 19 + } + }, + { + "amount": "144.542024173", + "slot": { + "period": 3700634, + "thread": 10 + } + }, + { + "amount": "144.542024174", + "slot": { + "period": 3864899, + "thread": 28 + } + } + ], + "AU1xsWspGYdfnx9Y1acBYyZ9p1ozka3BsPb1wsY7ukrr44bbybtU": [ + { + "amount": "95.898351770", + "slot": { + "period": 69048, + "thread": 29 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 274076, + "thread": 29 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 431074, + "thread": 19 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 501095, + "thread": 30 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 811567, + "thread": 18 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 845681, + "thread": 31 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1149779, + "thread": 12 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1312446, + "thread": 19 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1411955, + "thread": 2 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1633248, + "thread": 10 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1698939, + "thread": 27 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1888537, + "thread": 31 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 1997265, + "thread": 13 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 2148503, + "thread": 25 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 2301021, + "thread": 29 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 2585715, + "thread": 5 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 2667693, + "thread": 24 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 2869776, + "thread": 31 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 3005183, + "thread": 31 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 3189745, + "thread": 5 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 3295115, + "thread": 24 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 3597606, + "thread": 14 + } + }, + { + "amount": "95.898351770", + "slot": { + "period": 3688141, + "thread": 17 + } + }, + { + "amount": "95.898351771", + "slot": { + "period": 3785694, + "thread": 17 + } + } + ], + "AU1xuTSeEKj8ojKyim1pWw4nRngDJx9pNR5CurogF1ahjd9oimDK": [ + { + "amount": "464.159449380", + "slot": { + "period": 105402, + "thread": 29 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 167750, + "thread": 1 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 468821, + "thread": 25 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 522694, + "thread": 17 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 782930, + "thread": 3 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 953409, + "thread": 14 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 991166, + "thread": 0 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1311982, + "thread": 10 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1430639, + "thread": 28 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1587650, + "thread": 25 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1783339, + "thread": 1 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1937212, + "thread": 8 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 1980244, + "thread": 28 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 2234648, + "thread": 2 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 2442641, + "thread": 15 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 2613392, + "thread": 10 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 2744493, + "thread": 21 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 2907053, + "thread": 30 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 3067726, + "thread": 31 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 3183889, + "thread": 13 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 3305795, + "thread": 2 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 3602228, + "thread": 2 + } + }, + { + "amount": "464.159449380", + "slot": { + "period": 3735555, + "thread": 8 + } + }, + { + "amount": "464.159449387", + "slot": { + "period": 3807339, + "thread": 28 + } + } + ], + "AU1xuzeYCVx1Fr7WnEzAV8gXusEACdGT9dhbbRBpdy7KHb4VG79H": [ + { + "amount": "153.937182513", + "slot": { + "period": 110224, + "thread": 5 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 295552, + "thread": 23 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 347661, + "thread": 0 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 616274, + "thread": 12 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 695700, + "thread": 8 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 887132, + "thread": 30 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1047239, + "thread": 26 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1152473, + "thread": 25 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1474155, + "thread": 15 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1576576, + "thread": 16 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1773651, + "thread": 1 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1918350, + "thread": 23 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 1997289, + "thread": 26 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 2252276, + "thread": 31 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 2330971, + "thread": 30 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 2536704, + "thread": 14 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 2733097, + "thread": 26 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 2850650, + "thread": 26 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 3109887, + "thread": 24 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 3217390, + "thread": 29 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 3395489, + "thread": 13 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 3509996, + "thread": 21 + } + }, + { + "amount": "153.937182513", + "slot": { + "period": 3722245, + "thread": 0 + } + }, + { + "amount": "153.937182512", + "slot": { + "period": 3842838, + "thread": 25 + } + } + ], + "AU1xvcYZjJgjF3i3NM6Mu67RvS4GrPqvfAvn1tYBZwww6PZ65fQg": [ + { + "amount": "294.314088819", + "slot": { + "period": 29243, + "thread": 20 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 177135, + "thread": 2 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 396901, + "thread": 27 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 533218, + "thread": 5 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 804680, + "thread": 3 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 867911, + "thread": 24 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1132079, + "thread": 9 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1291827, + "thread": 6 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1433221, + "thread": 30 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1545671, + "thread": 16 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1687239, + "thread": 17 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 1903381, + "thread": 22 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2129427, + "thread": 30 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2233050, + "thread": 29 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2303965, + "thread": 21 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2618991, + "thread": 20 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2628886, + "thread": 18 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2793178, + "thread": 2 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 2964323, + "thread": 19 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 3231754, + "thread": 16 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 3436324, + "thread": 20 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 3560240, + "thread": 2 + } + }, + { + "amount": "294.314088819", + "slot": { + "period": 3748398, + "thread": 26 + } + }, + { + "amount": "294.314088824", + "slot": { + "period": 3854077, + "thread": 8 + } + } + ], + "AU1xvtU4SCkVKm5mqc4inh3gfACb5K4NaCnnD9tN5uFg8LfQiCYm": [ + { + "amount": "63.976859660", + "slot": { + "period": 26887, + "thread": 13 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 313183, + "thread": 17 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 379573, + "thread": 0 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 614336, + "thread": 28 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 671542, + "thread": 14 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 926701, + "thread": 14 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1006340, + "thread": 21 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1312180, + "thread": 1 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1375904, + "thread": 13 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1634138, + "thread": 7 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1697465, + "thread": 26 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 1962210, + "thread": 7 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2061841, + "thread": 24 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2230713, + "thread": 24 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2445261, + "thread": 4 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2541143, + "thread": 19 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2714928, + "thread": 22 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2890106, + "thread": 15 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 2967578, + "thread": 26 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 3261480, + "thread": 14 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 3318788, + "thread": 24 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 3558114, + "thread": 4 + } + }, + { + "amount": "63.976859660", + "slot": { + "period": 3637310, + "thread": 1 + } + }, + { + "amount": "63.976859657", + "slot": { + "period": 3797280, + "thread": 3 + } + } + ], + "AU1xwHPggkbUfqKbJZmu5wnKA2hgKjQ7wcLBgUg22KS7wKVAfv7m": [ + { + "amount": "184.356303460", + "slot": { + "period": 144981, + "thread": 14 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 188177, + "thread": 9 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 407041, + "thread": 25 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 496843, + "thread": 8 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 750070, + "thread": 30 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 980658, + "thread": 2 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1053269, + "thread": 7 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1253173, + "thread": 11 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1364551, + "thread": 11 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1489532, + "thread": 28 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1672388, + "thread": 20 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 1866490, + "thread": 2 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2118572, + "thread": 23 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2177198, + "thread": 11 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2391424, + "thread": 16 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2543758, + "thread": 17 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2651018, + "thread": 27 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2915470, + "thread": 27 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 2961082, + "thread": 5 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 3267036, + "thread": 28 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 3450484, + "thread": 21 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 3523751, + "thread": 31 + } + }, + { + "amount": "184.356303460", + "slot": { + "period": 3698539, + "thread": 0 + } + }, + { + "amount": "184.356303449", + "slot": { + "period": 3946993, + "thread": 3 + } + } + ], + "AU1xxsVH6NGHFJfkxaEDKAsBuiqT8wXPeaegg27APQQ7Gcr3p2mD": [ + { + "amount": "295.060846667", + "slot": { + "period": 76885, + "thread": 11 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 282418, + "thread": 9 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 436413, + "thread": 1 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 614594, + "thread": 18 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 726985, + "thread": 21 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 888003, + "thread": 23 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1102309, + "thread": 8 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1256248, + "thread": 18 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1338850, + "thread": 10 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1485447, + "thread": 21 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1663511, + "thread": 13 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 1816718, + "thread": 30 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2039252, + "thread": 31 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2157135, + "thread": 5 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2435275, + "thread": 7 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2474505, + "thread": 11 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2780985, + "thread": 0 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 2848362, + "thread": 31 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 3121041, + "thread": 15 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 3179017, + "thread": 16 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 3430596, + "thread": 4 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 3578335, + "thread": 21 + } + }, + { + "amount": "295.060846667", + "slot": { + "period": 3750790, + "thread": 28 + } + }, + { + "amount": "295.060846665", + "slot": { + "period": 3938672, + "thread": 12 + } + } + ], + "AU1xyCtJLaJcysAhE8UfjDBqrEaHJG3uFBJvjTKEwo2xvcZRxUC4": [ + { + "amount": "237.280649485", + "slot": { + "period": 161145, + "thread": 6 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 203465, + "thread": 25 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 399292, + "thread": 24 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 650087, + "thread": 12 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 740977, + "thread": 23 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 900243, + "thread": 18 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1099259, + "thread": 24 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1242385, + "thread": 4 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1382867, + "thread": 9 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1574059, + "thread": 9 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1675729, + "thread": 18 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 1970852, + "thread": 22 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2026168, + "thread": 0 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2162782, + "thread": 31 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2437691, + "thread": 22 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2510855, + "thread": 17 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2754747, + "thread": 29 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2908819, + "thread": 13 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 2984435, + "thread": 11 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 3268690, + "thread": 20 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 3333334, + "thread": 30 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 3585938, + "thread": 29 + } + }, + { + "amount": "237.280649485", + "slot": { + "period": 3696100, + "thread": 30 + } + }, + { + "amount": "237.280649494", + "slot": { + "period": 3817289, + "thread": 1 + } + } + ], + "AU1xzrTBs2j1ZyqK43ig8DSyaq2wXrGPDRcQCuCSGmHBA5QfZLN4": [ + { + "amount": "185.854980098", + "slot": { + "period": 30416, + "thread": 10 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 185140, + "thread": 30 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 359922, + "thread": 0 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 591765, + "thread": 12 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 716337, + "thread": 13 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 937650, + "thread": 31 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1077972, + "thread": 27 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1170953, + "thread": 28 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1459567, + "thread": 0 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1642166, + "thread": 0 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1766601, + "thread": 22 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 1975011, + "thread": 2 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2140104, + "thread": 12 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2277849, + "thread": 5 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2328929, + "thread": 20 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2605881, + "thread": 29 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2718414, + "thread": 22 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 2831382, + "thread": 5 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 3012079, + "thread": 7 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 3154497, + "thread": 12 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 3408437, + "thread": 31 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 3612859, + "thread": 3 + } + }, + { + "amount": "185.854980098", + "slot": { + "period": 3688399, + "thread": 12 + } + }, + { + "amount": "185.854980099", + "slot": { + "period": 3835909, + "thread": 22 + } + } + ], + "AU1y1qCRTKzfAjAFpejpwxaThe1eVB9Nqn8y5j5PZiwKtDKvCMnM": [ + { + "amount": "437.842939222", + "slot": { + "period": 54844, + "thread": 26 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 313987, + "thread": 24 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 417064, + "thread": 7 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 547017, + "thread": 8 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 709269, + "thread": 19 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 895700, + "thread": 8 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1083072, + "thread": 5 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1163520, + "thread": 5 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1382506, + "thread": 1 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1491895, + "thread": 15 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1703873, + "thread": 4 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 1827199, + "thread": 11 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2015081, + "thread": 21 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2160996, + "thread": 28 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2333142, + "thread": 8 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2573521, + "thread": 13 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2718997, + "thread": 24 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2865114, + "thread": 3 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 2980247, + "thread": 5 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 3235088, + "thread": 1 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 3384217, + "thread": 20 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 3558312, + "thread": 7 + } + }, + { + "amount": "437.842939222", + "slot": { + "period": 3712989, + "thread": 8 + } + }, + { + "amount": "437.842939230", + "slot": { + "period": 3875400, + "thread": 28 + } + } + ], + "AU1y29DjT1oKrZ4Kq9aFoWqKCGina3qr8otz3LkyRfsc1Dnk6NYd": [ + { + "amount": "88.864917075", + "slot": { + "period": 138249, + "thread": 17 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 236620, + "thread": 7 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 472289, + "thread": 7 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 641443, + "thread": 0 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 739409, + "thread": 17 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 971890, + "thread": 4 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1081040, + "thread": 20 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1253318, + "thread": 31 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1367665, + "thread": 27 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1531098, + "thread": 20 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1797339, + "thread": 31 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1889861, + "thread": 26 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 1999994, + "thread": 26 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2220848, + "thread": 24 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2382415, + "thread": 8 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2482137, + "thread": 13 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2724823, + "thread": 1 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2849372, + "thread": 5 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 2978948, + "thread": 24 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 3196665, + "thread": 13 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 3298121, + "thread": 17 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 3464811, + "thread": 6 + } + }, + { + "amount": "88.864917075", + "slot": { + "period": 3722678, + "thread": 12 + } + }, + { + "amount": "88.864917082", + "slot": { + "period": 3796881, + "thread": 23 + } + } + ], + "AU1y2LoFc17oggYxUZwM2dKrcvVa9nPx9doQjhGBpg4Zn3eDXCr7": [ + { + "amount": "420.654932061", + "slot": { + "period": 156355, + "thread": 19 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 186723, + "thread": 14 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 412237, + "thread": 21 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 650632, + "thread": 9 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 754281, + "thread": 30 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 875087, + "thread": 30 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1133686, + "thread": 14 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1265610, + "thread": 9 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1343047, + "thread": 15 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1597669, + "thread": 23 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1707998, + "thread": 5 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 1837196, + "thread": 10 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2022495, + "thread": 19 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2202456, + "thread": 6 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2371526, + "thread": 27 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2592392, + "thread": 6 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2719701, + "thread": 2 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2882697, + "thread": 6 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 2963695, + "thread": 17 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 3259377, + "thread": 20 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 3388853, + "thread": 20 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 3450741, + "thread": 20 + } + }, + { + "amount": "420.654932061", + "slot": { + "period": 3645949, + "thread": 14 + } + }, + { + "amount": "420.654932057", + "slot": { + "period": 3785784, + "thread": 5 + } + } + ], + "AU1y3BE1WbZ8UjpRbbsLoL24X6Jg7w7Xg265gMG3Td9MknYU6LnB": [ + { + "amount": "415.366238539", + "slot": { + "period": 154166, + "thread": 9 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 309058, + "thread": 9 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 368121, + "thread": 10 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 568741, + "thread": 26 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 739538, + "thread": 19 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 959149, + "thread": 31 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1074410, + "thread": 15 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1202098, + "thread": 15 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1359328, + "thread": 24 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1606503, + "thread": 27 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1767673, + "thread": 8 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 1867857, + "thread": 31 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2070322, + "thread": 0 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2204080, + "thread": 0 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2351407, + "thread": 21 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2622064, + "thread": 2 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2674394, + "thread": 24 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 2869239, + "thread": 31 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3015578, + "thread": 27 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3133485, + "thread": 16 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3303570, + "thread": 26 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3486756, + "thread": 2 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3705540, + "thread": 28 + } + }, + { + "amount": "415.366238539", + "slot": { + "period": 3919947, + "thread": 7 + } + } + ], + "AU1y4z4Cz5geWhZgWG8dfDfZ3WN9VTEcpaSp3jvwYfYjZRtp5cFK": [ + { + "amount": "318.933682918", + "slot": { + "period": 12541, + "thread": 18 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 293400, + "thread": 7 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 480025, + "thread": 16 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 563177, + "thread": 8 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 686971, + "thread": 24 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 910879, + "thread": 13 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1142553, + "thread": 28 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1187846, + "thread": 8 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1455053, + "thread": 22 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1485447, + "thread": 19 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1731273, + "thread": 3 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 1846834, + "thread": 7 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2076934, + "thread": 21 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2241234, + "thread": 7 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2362448, + "thread": 16 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2531177, + "thread": 26 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2768206, + "thread": 2 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2908682, + "thread": 29 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 2978757, + "thread": 31 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 3235243, + "thread": 6 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 3440593, + "thread": 16 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 3550358, + "thread": 1 + } + }, + { + "amount": "318.933682918", + "slot": { + "period": 3620973, + "thread": 19 + } + }, + { + "amount": "318.933682909", + "slot": { + "period": 3808283, + "thread": 8 + } + } + ], + "AU1y5h8cE6rf6zw8szTWCBv1wp1CVD949kyp2JC3jN2CjHou2mLo": [ + { + "amount": "184.922080224", + "slot": { + "period": 156308, + "thread": 19 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 247529, + "thread": 12 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 478326, + "thread": 29 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 560641, + "thread": 25 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 685252, + "thread": 2 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 880989, + "thread": 3 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 996840, + "thread": 4 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 1164441, + "thread": 26 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 1319228, + "thread": 11 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 1480107, + "thread": 15 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 1694344, + "thread": 3 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 1914283, + "thread": 7 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2109161, + "thread": 15 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2258202, + "thread": 30 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2449832, + "thread": 2 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2489737, + "thread": 3 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2671630, + "thread": 14 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 2855724, + "thread": 3 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 3079980, + "thread": 28 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 3193570, + "thread": 29 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 3292395, + "thread": 6 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 3594561, + "thread": 13 + } + }, + { + "amount": "184.922080224", + "slot": { + "period": 3759557, + "thread": 18 + } + }, + { + "amount": "184.922080228", + "slot": { + "period": 3877252, + "thread": 3 + } + } + ], + "AU1y5km6kJLmZqVX2NjfrFJXy9Zt76Q9hxd8UJWBmNHFS8YZCmpn": [ + { + "amount": "3564.808333333", + "slot": { + "period": 53445, + "thread": 26 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 209637, + "thread": 30 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 438116, + "thread": 14 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 495176, + "thread": 9 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 807862, + "thread": 21 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 938998, + "thread": 17 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1127261, + "thread": 29 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1218390, + "thread": 29 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1325550, + "thread": 17 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1637731, + "thread": 20 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1795742, + "thread": 3 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 1915254, + "thread": 22 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2008623, + "thread": 29 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2251586, + "thread": 0 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2369859, + "thread": 0 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2503478, + "thread": 27 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2749622, + "thread": 31 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 2950687, + "thread": 15 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 3058986, + "thread": 21 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 3272077, + "thread": 0 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 3323037, + "thread": 6 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 3576024, + "thread": 5 + } + }, + { + "amount": "3564.808333333", + "slot": { + "period": 3726499, + "thread": 28 + } + }, + { + "amount": "3564.808333341", + "slot": { + "period": 3851108, + "thread": 5 + } + } + ], + "AU1y7FwzSewekpyMXj2g9msZF8jtcuYQcjVtPib6PZ4WQcdSAEo4": [ + { + "amount": "136.273132634", + "slot": { + "period": 60510, + "thread": 4 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 301854, + "thread": 4 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 420039, + "thread": 27 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 610838, + "thread": 16 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 704272, + "thread": 27 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 950196, + "thread": 3 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1092244, + "thread": 29 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1288089, + "thread": 0 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1347882, + "thread": 26 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1621264, + "thread": 13 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1766162, + "thread": 15 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 1861460, + "thread": 14 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2135820, + "thread": 13 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2179519, + "thread": 25 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2297152, + "thread": 20 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2569040, + "thread": 8 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2716116, + "thread": 13 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 2806163, + "thread": 10 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 3057189, + "thread": 27 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 3222880, + "thread": 25 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 3332224, + "thread": 12 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 3555429, + "thread": 15 + } + }, + { + "amount": "136.273132634", + "slot": { + "period": 3767405, + "thread": 10 + } + }, + { + "amount": "136.273132645", + "slot": { + "period": 3848369, + "thread": 5 + } + } + ], + "AU1y929sVKvUa3oh5VsUvqXCQ5jSKd6U6hMQJvu3rZ18Aqjwpkem": [ + { + "amount": "86.129535374", + "slot": { + "period": 151961, + "thread": 2 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 173327, + "thread": 31 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 370677, + "thread": 27 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 640958, + "thread": 2 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 700982, + "thread": 10 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 851144, + "thread": 5 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1101036, + "thread": 24 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1173529, + "thread": 29 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1351260, + "thread": 15 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1607286, + "thread": 22 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1735460, + "thread": 28 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 1920359, + "thread": 11 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2089035, + "thread": 4 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2171250, + "thread": 6 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2434372, + "thread": 25 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2489492, + "thread": 22 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2633508, + "thread": 2 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 2935877, + "thread": 12 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 3089218, + "thread": 24 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 3168042, + "thread": 4 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 3440827, + "thread": 5 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 3567731, + "thread": 18 + } + }, + { + "amount": "86.129535374", + "slot": { + "period": 3669527, + "thread": 11 + } + }, + { + "amount": "86.129535386", + "slot": { + "period": 3867694, + "thread": 11 + } + } + ], + "AU1y93LSLnT8HUALV31VFhw2j1LuPm72h9x2PNBPvpMWP6N47Z7f": [ + { + "amount": "216.378415760", + "slot": { + "period": 144589, + "thread": 9 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 269123, + "thread": 23 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 456233, + "thread": 10 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 497201, + "thread": 5 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 662812, + "thread": 12 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 892090, + "thread": 6 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1050205, + "thread": 7 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1204703, + "thread": 24 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1344022, + "thread": 13 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1567295, + "thread": 0 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1769141, + "thread": 19 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 1970105, + "thread": 22 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2049588, + "thread": 1 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2279191, + "thread": 18 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2436130, + "thread": 6 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2491081, + "thread": 10 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2712458, + "thread": 23 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 2927954, + "thread": 12 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 3097048, + "thread": 30 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 3252555, + "thread": 12 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 3342733, + "thread": 22 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 3553989, + "thread": 8 + } + }, + { + "amount": "216.378415760", + "slot": { + "period": 3709479, + "thread": 8 + } + }, + { + "amount": "216.378415767", + "slot": { + "period": 3904240, + "thread": 10 + } + } + ], + "AU1y9CGB8KVWD681U6QgD59jrz6G54QBRaLQNRMgz7biwsNXZpEY": [ + { + "amount": "396.527040330", + "slot": { + "period": 62559, + "thread": 23 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 256082, + "thread": 24 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 475526, + "thread": 11 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 627414, + "thread": 30 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 657393, + "thread": 15 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 953591, + "thread": 18 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1131944, + "thread": 27 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1176547, + "thread": 26 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1441518, + "thread": 4 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1641698, + "thread": 21 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1765778, + "thread": 31 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 1890136, + "thread": 6 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2133075, + "thread": 15 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2193620, + "thread": 13 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2334792, + "thread": 7 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2479734, + "thread": 12 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2739698, + "thread": 19 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 2895315, + "thread": 13 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 3109448, + "thread": 27 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 3284329, + "thread": 24 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 3413326, + "thread": 0 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 3503676, + "thread": 0 + } + }, + { + "amount": "396.527040330", + "slot": { + "period": 3621778, + "thread": 10 + } + }, + { + "amount": "396.527040337", + "slot": { + "period": 3899022, + "thread": 16 + } + } + ], + "AU1y9dDWU6xkhhXj7XvnfjyRHeeu69eNWxZ5exDLGqJUHV2iynV2": [ + { + "amount": "397.519473329", + "slot": { + "period": 104251, + "thread": 30 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 278467, + "thread": 12 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 351506, + "thread": 14 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 609900, + "thread": 5 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 663749, + "thread": 3 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 848431, + "thread": 1 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 987884, + "thread": 25 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 1153794, + "thread": 25 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 1431701, + "thread": 13 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 1545156, + "thread": 16 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 1729258, + "thread": 13 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 1815794, + "thread": 23 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2101665, + "thread": 18 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2149707, + "thread": 4 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2335912, + "thread": 30 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2480406, + "thread": 15 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2685962, + "thread": 6 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2908809, + "thread": 6 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 2996087, + "thread": 13 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 3175220, + "thread": 30 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 3412219, + "thread": 14 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 3612832, + "thread": 15 + } + }, + { + "amount": "397.519473329", + "slot": { + "period": 3707946, + "thread": 17 + } + }, + { + "amount": "397.519473318", + "slot": { + "period": 3817702, + "thread": 12 + } + } + ], + "AU1yAoVACdZf2qvLm7SC4WMTWTgNCmmRpZBqU977tzHCQUNABVDe": [ + { + "amount": "181.732017087", + "slot": { + "period": 128147, + "thread": 26 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 258282, + "thread": 10 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 331711, + "thread": 27 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 615797, + "thread": 2 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 712866, + "thread": 23 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 896524, + "thread": 13 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1069293, + "thread": 18 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1203284, + "thread": 4 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1418908, + "thread": 9 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1609289, + "thread": 0 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1679879, + "thread": 0 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 1912929, + "thread": 22 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2119359, + "thread": 7 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2207068, + "thread": 19 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2368834, + "thread": 23 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2469560, + "thread": 27 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2774576, + "thread": 25 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2901461, + "thread": 9 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 2953805, + "thread": 4 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 3220138, + "thread": 19 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 3327148, + "thread": 10 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 3500050, + "thread": 23 + } + }, + { + "amount": "181.732017087", + "slot": { + "period": 3687387, + "thread": 13 + } + }, + { + "amount": "181.732017085", + "slot": { + "period": 3843479, + "thread": 1 + } + } + ], + "AU1yB4bVJBBqRkA7SK3EDSy1yTydaxiSyYD7P9N1sjk6BK3ULMMe": [ + { + "amount": "370.353650113", + "slot": { + "period": 70345, + "thread": 0 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 193111, + "thread": 13 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 404741, + "thread": 13 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 644947, + "thread": 8 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 731614, + "thread": 7 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 857635, + "thread": 18 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1130952, + "thread": 31 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1273689, + "thread": 28 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1380971, + "thread": 10 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1601115, + "thread": 8 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1766836, + "thread": 23 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 1965755, + "thread": 18 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2036593, + "thread": 19 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2217997, + "thread": 10 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2321933, + "thread": 13 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2608438, + "thread": 17 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2633208, + "thread": 22 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 2810625, + "thread": 2 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 3091483, + "thread": 17 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 3261044, + "thread": 24 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 3369236, + "thread": 26 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 3612266, + "thread": 14 + } + }, + { + "amount": "370.353650113", + "slot": { + "period": 3729453, + "thread": 23 + } + }, + { + "amount": "370.353650122", + "slot": { + "period": 3846847, + "thread": 28 + } + } + ], + "AU1yC6tB37129ZJdnFr6Ypsb4ZGdikpj3f3zrYqE1yHFUnNUjS2T": [ + { + "amount": "55.515007525", + "slot": { + "period": 108436, + "thread": 26 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 235605, + "thread": 18 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 468935, + "thread": 27 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 590007, + "thread": 5 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 810232, + "thread": 23 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 970778, + "thread": 10 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 993939, + "thread": 27 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1303599, + "thread": 7 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1325719, + "thread": 25 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1626793, + "thread": 6 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1773675, + "thread": 30 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1958648, + "thread": 17 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 1982928, + "thread": 14 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 2198457, + "thread": 22 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 2330988, + "thread": 15 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 2597426, + "thread": 11 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 2774348, + "thread": 22 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 2918760, + "thread": 9 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 3057772, + "thread": 8 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 3211985, + "thread": 10 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 3346225, + "thread": 3 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 3566423, + "thread": 21 + } + }, + { + "amount": "55.515007525", + "slot": { + "period": 3739849, + "thread": 19 + } + }, + { + "amount": "55.515007526", + "slot": { + "period": 3857460, + "thread": 6 + } + } + ], + "AU1yEMeWaBotJmv3DHicT6ExZuNj7nMuMaQKyqS1dd7EdBxZxzRy": [ + { + "amount": "56.574780083", + "slot": { + "period": 16042, + "thread": 31 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 212560, + "thread": 17 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 382583, + "thread": 1 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 540535, + "thread": 14 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 811518, + "thread": 26 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 844405, + "thread": 30 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1100100, + "thread": 6 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1150998, + "thread": 12 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1390290, + "thread": 16 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1618748, + "thread": 6 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1699145, + "thread": 23 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1954395, + "thread": 19 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 1988454, + "thread": 14 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 2193455, + "thread": 31 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 2366350, + "thread": 23 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 2521302, + "thread": 0 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 2650421, + "thread": 14 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 2879901, + "thread": 10 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 3063532, + "thread": 13 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 3189438, + "thread": 9 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 3376430, + "thread": 8 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 3609915, + "thread": 6 + } + }, + { + "amount": "56.574780083", + "slot": { + "period": 3736921, + "thread": 10 + } + }, + { + "amount": "56.574780092", + "slot": { + "period": 3910294, + "thread": 2 + } + } + ], + "AU1yEkka1QaVgVrkKhRbXenqFdT9hdS9E4gxMhk9T6UGqcSko2u9": [ + { + "amount": "306.063131051", + "slot": { + "period": 111987, + "thread": 31 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 308043, + "thread": 9 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 355809, + "thread": 26 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 605146, + "thread": 30 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 777989, + "thread": 14 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 880387, + "thread": 25 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1068063, + "thread": 14 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1221517, + "thread": 12 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1460320, + "thread": 28 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1551745, + "thread": 0 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1783717, + "thread": 10 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 1945935, + "thread": 7 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2004483, + "thread": 14 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2260761, + "thread": 11 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2416639, + "thread": 6 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2589088, + "thread": 22 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2695159, + "thread": 26 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 2949687, + "thread": 8 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 3055414, + "thread": 26 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 3153555, + "thread": 26 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 3312097, + "thread": 15 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 3521710, + "thread": 19 + } + }, + { + "amount": "306.063131051", + "slot": { + "period": 3638892, + "thread": 13 + } + }, + { + "amount": "306.063131059", + "slot": { + "period": 3808872, + "thread": 18 + } + } + ], + "AU1yEr1joAj61VkfxgMk9ZF3CEugtLjfndopnrkfeZ1bT15sJmw7": [ + { + "amount": "119.395103946", + "slot": { + "period": 90629, + "thread": 3 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 225911, + "thread": 23 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 335514, + "thread": 22 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 570321, + "thread": 22 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 699765, + "thread": 6 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 976589, + "thread": 10 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 994726, + "thread": 29 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 1312012, + "thread": 24 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 1374025, + "thread": 6 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 1546884, + "thread": 0 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 1779781, + "thread": 8 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 1833899, + "thread": 8 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2029479, + "thread": 27 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2240757, + "thread": 1 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2458573, + "thread": 22 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2580487, + "thread": 9 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2662493, + "thread": 22 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2854333, + "thread": 23 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 2955331, + "thread": 11 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 3259402, + "thread": 10 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 3355476, + "thread": 21 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 3616348, + "thread": 21 + } + }, + { + "amount": "119.395103946", + "slot": { + "period": 3769885, + "thread": 4 + } + }, + { + "amount": "119.395103942", + "slot": { + "period": 3805541, + "thread": 17 + } + } + ], + "AU1yGWA1EHvPXNv1yHHhHPUEKifCvDVj8DqjpytNTskSnp4NHeWQ": [ + { + "amount": "567.058021566", + "slot": { + "period": 105703, + "thread": 17 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 188141, + "thread": 18 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 453314, + "thread": 2 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 646819, + "thread": 25 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 672711, + "thread": 25 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 868529, + "thread": 30 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1107478, + "thread": 26 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1253799, + "thread": 7 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1339967, + "thread": 13 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1495574, + "thread": 3 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1765357, + "thread": 30 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 1838681, + "thread": 22 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2035470, + "thread": 23 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2253828, + "thread": 27 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2336050, + "thread": 29 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2599740, + "thread": 25 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2777205, + "thread": 13 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 2832234, + "thread": 31 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 3075750, + "thread": 7 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 3261519, + "thread": 15 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 3389406, + "thread": 2 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 3479893, + "thread": 27 + } + }, + { + "amount": "567.058021566", + "slot": { + "period": 3736737, + "thread": 21 + } + }, + { + "amount": "567.058021572", + "slot": { + "period": 3896703, + "thread": 15 + } + } + ], + "AU1yJ8jMxw4KJR32R2AeR9iRCkyJ6RiHtq2iGrJTRDjwnFLu8GZ6": [ + { + "amount": "1717.738248144", + "slot": { + "period": 128347, + "thread": 22 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 274950, + "thread": 21 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 377143, + "thread": 30 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 527949, + "thread": 9 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 736762, + "thread": 21 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 913695, + "thread": 31 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1115161, + "thread": 30 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1268641, + "thread": 31 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1467367, + "thread": 23 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1541052, + "thread": 8 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1661469, + "thread": 15 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 1972448, + "thread": 3 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2099442, + "thread": 15 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2216355, + "thread": 13 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2375975, + "thread": 26 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2594261, + "thread": 23 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2688559, + "thread": 26 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2838963, + "thread": 1 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 2962506, + "thread": 10 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 3233641, + "thread": 25 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 3343532, + "thread": 28 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 3516118, + "thread": 22 + } + }, + { + "amount": "1717.738248144", + "slot": { + "period": 3728267, + "thread": 6 + } + }, + { + "amount": "1717.738248156", + "slot": { + "period": 3942857, + "thread": 21 + } + } + ], + "AU1yKXmTkBYBCHotEcmbFhWVEViMzJXqkVZoSMh918dMjCM3k1Um": [ + { + "amount": "249.456268228", + "slot": { + "period": 44912, + "thread": 25 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 272447, + "thread": 17 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 343100, + "thread": 1 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 645833, + "thread": 20 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 711914, + "thread": 23 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 921879, + "thread": 15 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1135743, + "thread": 15 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1210982, + "thread": 27 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1368070, + "thread": 16 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1543939, + "thread": 12 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1724919, + "thread": 16 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 1916254, + "thread": 3 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2027953, + "thread": 6 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2253756, + "thread": 3 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2359306, + "thread": 28 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2470420, + "thread": 21 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2684947, + "thread": 28 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 2890775, + "thread": 10 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 3069574, + "thread": 23 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 3131818, + "thread": 16 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 3328902, + "thread": 22 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 3616583, + "thread": 16 + } + }, + { + "amount": "249.456268228", + "slot": { + "period": 3717383, + "thread": 31 + } + }, + { + "amount": "249.456268223", + "slot": { + "period": 3862980, + "thread": 10 + } + } + ], + "AU1yMBZkVgxXYTXbFsdxxy9aptLhkXsYJc2GAL32rew74ex7v3UG": [ + { + "amount": "162.308166109", + "slot": { + "period": 81680, + "thread": 26 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 299587, + "thread": 30 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 381037, + "thread": 16 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 552017, + "thread": 28 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 729651, + "thread": 28 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 831940, + "thread": 23 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1024927, + "thread": 31 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1293984, + "thread": 14 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1443960, + "thread": 21 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1599975, + "thread": 12 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1673560, + "thread": 19 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1881591, + "thread": 10 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 1983891, + "thread": 14 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 2275506, + "thread": 16 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 2295517, + "thread": 2 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 2574001, + "thread": 17 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 2649633, + "thread": 0 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 2938037, + "thread": 27 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3053113, + "thread": 19 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3285276, + "thread": 2 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3329018, + "thread": 25 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3550627, + "thread": 29 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3664208, + "thread": 29 + } + }, + { + "amount": "162.308166109", + "slot": { + "period": 3796269, + "thread": 31 + } + } + ], + "AU1yPyVvYSLWk1een2ZVFBcq5gqj4bQJtHUBMbHLLjuJtXNq8YjS": [ + { + "amount": "103.539412925", + "slot": { + "period": 23595, + "thread": 4 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 185356, + "thread": 5 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 486201, + "thread": 4 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 593208, + "thread": 15 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 757900, + "thread": 11 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 939290, + "thread": 20 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1054325, + "thread": 16 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1164512, + "thread": 2 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1464696, + "thread": 19 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1546924, + "thread": 31 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1654991, + "thread": 31 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 1891868, + "thread": 16 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2094096, + "thread": 10 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2270319, + "thread": 7 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2379106, + "thread": 0 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2540640, + "thread": 27 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2723052, + "thread": 18 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2842138, + "thread": 19 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 2966965, + "thread": 29 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 3211659, + "thread": 6 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 3336382, + "thread": 12 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 3602055, + "thread": 17 + } + }, + { + "amount": "103.539412925", + "slot": { + "period": 3759830, + "thread": 16 + } + }, + { + "amount": "103.539412926", + "slot": { + "period": 3903572, + "thread": 4 + } + } + ], + "AU1yQPQq6Qh75z8BDwoxzBu9JdtHpso8n4CZj3SkcP71z6pBFbWw": [ + { + "amount": "225.559770218", + "slot": { + "period": 48927, + "thread": 20 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 194828, + "thread": 13 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 386892, + "thread": 22 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 548544, + "thread": 28 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 765903, + "thread": 15 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 940573, + "thread": 14 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1058983, + "thread": 13 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1210950, + "thread": 12 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1393344, + "thread": 24 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1488981, + "thread": 27 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1779852, + "thread": 18 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 1871112, + "thread": 18 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2017276, + "thread": 15 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2204278, + "thread": 20 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2300851, + "thread": 30 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2490219, + "thread": 4 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2679388, + "thread": 11 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 2820378, + "thread": 16 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 3013182, + "thread": 20 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 3284639, + "thread": 6 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 3443262, + "thread": 1 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 3584787, + "thread": 20 + } + }, + { + "amount": "225.559770218", + "slot": { + "period": 3641901, + "thread": 29 + } + }, + { + "amount": "225.559770222", + "slot": { + "period": 3922470, + "thread": 25 + } + } + ], + "AU1yTzo4fgRh7hB2woiy9PDAZCJU9mwM3wULUtVLnGtY3aaZSW8t": [ + { + "amount": "56.797610698", + "slot": { + "period": 116559, + "thread": 26 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 308227, + "thread": 27 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 410022, + "thread": 30 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 566966, + "thread": 16 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 728162, + "thread": 7 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 849194, + "thread": 15 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1032736, + "thread": 17 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1262282, + "thread": 5 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1347827, + "thread": 7 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1524726, + "thread": 23 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1678209, + "thread": 28 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 1815622, + "thread": 14 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2104413, + "thread": 16 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2164068, + "thread": 28 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2362784, + "thread": 17 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2563201, + "thread": 27 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2665358, + "thread": 5 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 2877304, + "thread": 14 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 3053997, + "thread": 8 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 3190554, + "thread": 25 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 3313553, + "thread": 4 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 3571478, + "thread": 17 + } + }, + { + "amount": "56.797610698", + "slot": { + "period": 3660941, + "thread": 0 + } + }, + { + "amount": "56.797610694", + "slot": { + "period": 3816052, + "thread": 10 + } + } + ], + "AU1yUJdL7dLiu3jSpaMBwRCAzyEvzfCRAHiRFaMKZJ3ddNaFcdmq": [ + { + "amount": "157.676077066", + "slot": { + "period": 155768, + "thread": 1 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 304722, + "thread": 29 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 432162, + "thread": 5 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 500604, + "thread": 31 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 666473, + "thread": 7 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 886891, + "thread": 15 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1023076, + "thread": 22 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1218720, + "thread": 31 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1373441, + "thread": 1 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1518616, + "thread": 23 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1776595, + "thread": 5 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 1950501, + "thread": 24 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2075810, + "thread": 5 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2246670, + "thread": 17 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2348523, + "thread": 30 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2609821, + "thread": 29 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2647764, + "thread": 16 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2853359, + "thread": 18 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 2965465, + "thread": 28 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 3266793, + "thread": 20 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 3360903, + "thread": 28 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 3540376, + "thread": 4 + } + }, + { + "amount": "157.676077066", + "slot": { + "period": 3695265, + "thread": 22 + } + }, + { + "amount": "157.676077062", + "slot": { + "period": 3842845, + "thread": 13 + } + } + ], + "AU1yUMPz2zuxDvCsUHDzbpfALEjuuBYpMEYTRRCaLud16U8ckN31": [ + { + "amount": "464.988090385", + "slot": { + "period": 45750, + "thread": 30 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 207490, + "thread": 28 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 331946, + "thread": 24 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 541744, + "thread": 10 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 785519, + "thread": 25 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 914475, + "thread": 23 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1093424, + "thread": 0 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1267021, + "thread": 14 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1452811, + "thread": 18 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1638788, + "thread": 15 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1686409, + "thread": 7 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 1944643, + "thread": 28 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2093935, + "thread": 22 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2267915, + "thread": 17 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2302818, + "thread": 29 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2559895, + "thread": 8 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2703096, + "thread": 4 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 2894751, + "thread": 1 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 3106924, + "thread": 28 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 3230433, + "thread": 16 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 3340013, + "thread": 28 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 3465535, + "thread": 26 + } + }, + { + "amount": "464.988090385", + "slot": { + "period": 3761347, + "thread": 29 + } + }, + { + "amount": "464.988090386", + "slot": { + "period": 3848549, + "thread": 4 + } + } + ], + "AU1yUmXisMdQ5ycs4UdirW38uSwcnmaep9K4SF4ZTj9L8EGK2Jn": [ + { + "amount": "111.082377852", + "slot": { + "period": 15934, + "thread": 4 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 182928, + "thread": 28 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 413192, + "thread": 29 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 626575, + "thread": 0 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 818066, + "thread": 31 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 879507, + "thread": 15 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1013861, + "thread": 18 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1153902, + "thread": 28 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1408942, + "thread": 17 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1584858, + "thread": 31 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1769018, + "thread": 6 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 1855819, + "thread": 7 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2058935, + "thread": 26 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2204256, + "thread": 5 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2459855, + "thread": 0 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2472896, + "thread": 21 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2683390, + "thread": 9 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2807685, + "thread": 18 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 2988305, + "thread": 27 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 3281372, + "thread": 27 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 3406331, + "thread": 30 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 3465773, + "thread": 16 + } + }, + { + "amount": "111.082377852", + "slot": { + "period": 3721956, + "thread": 25 + } + }, + { + "amount": "111.082377843", + "slot": { + "period": 3892526, + "thread": 28 + } + } + ], + "AU1yUuJG9XNpAHFQfR28Xck9N1hg19fVdGX23uGC2Sr1A9bLzfzE": [ + { + "amount": "104.729949104", + "slot": { + "period": 69255, + "thread": 30 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 277451, + "thread": 9 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 417645, + "thread": 17 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 636358, + "thread": 7 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 677567, + "thread": 12 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 937956, + "thread": 30 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1005015, + "thread": 14 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1167390, + "thread": 12 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1381237, + "thread": 3 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1602575, + "thread": 31 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1771918, + "thread": 3 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 1917596, + "thread": 7 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2139447, + "thread": 8 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2259459, + "thread": 25 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2429453, + "thread": 27 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2558536, + "thread": 28 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2682484, + "thread": 15 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 2815281, + "thread": 9 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 3082747, + "thread": 6 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 3165375, + "thread": 24 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 3441176, + "thread": 19 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 3617491, + "thread": 10 + } + }, + { + "amount": "104.729949104", + "slot": { + "period": 3672079, + "thread": 8 + } + }, + { + "amount": "104.729949111", + "slot": { + "period": 3845699, + "thread": 19 + } + } + ], + "AU1yV387FEpcLqD5yyC2Qt1GzCYwSCEyUkGpV9wHZy9d9RwsPVjN": [ + { + "amount": "299.221652753", + "slot": { + "period": 149452, + "thread": 7 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 223735, + "thread": 5 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 472807, + "thread": 10 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 589525, + "thread": 31 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 667507, + "thread": 14 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 849207, + "thread": 11 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1083950, + "thread": 12 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1243627, + "thread": 24 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1443320, + "thread": 12 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1531444, + "thread": 22 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1735763, + "thread": 21 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 1876390, + "thread": 1 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2141441, + "thread": 21 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2253244, + "thread": 24 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2312231, + "thread": 28 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2583975, + "thread": 24 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2712468, + "thread": 9 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 2795255, + "thread": 22 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 3012557, + "thread": 21 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 3161927, + "thread": 29 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 3433947, + "thread": 5 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 3475663, + "thread": 19 + } + }, + { + "amount": "299.221652753", + "slot": { + "period": 3714482, + "thread": 13 + } + }, + { + "amount": "299.221652746", + "slot": { + "period": 3861385, + "thread": 14 + } + } + ], + "AU1yVA1GgeebG9Bt7mzn1raRtHKNB2kLFFBJsq1WweSd1Hjpb9Cu": [ + { + "amount": "93.051347106", + "slot": { + "period": 78790, + "thread": 24 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 227566, + "thread": 15 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 429697, + "thread": 20 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 498415, + "thread": 27 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 765606, + "thread": 21 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 979640, + "thread": 30 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1111161, + "thread": 29 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1167325, + "thread": 15 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1339043, + "thread": 7 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1629949, + "thread": 25 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1678850, + "thread": 28 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1941379, + "thread": 19 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 1994803, + "thread": 29 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 2268458, + "thread": 2 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 2412116, + "thread": 22 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 2484549, + "thread": 24 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 2639596, + "thread": 13 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 2807272, + "thread": 28 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 3012132, + "thread": 29 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 3187345, + "thread": 10 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 3359358, + "thread": 2 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 3458387, + "thread": 14 + } + }, + { + "amount": "93.051347106", + "slot": { + "period": 3623333, + "thread": 18 + } + }, + { + "amount": "93.051347105", + "slot": { + "period": 3899519, + "thread": 19 + } + } + ], + "AU1yWQX25tREm6TCMqMoKMfyHfA8ZGgWGgqx5i2LLXUDTJYLxUUw": [ + { + "amount": "285.210366810", + "slot": { + "period": 99327, + "thread": 25 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 173316, + "thread": 0 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 475049, + "thread": 28 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 597549, + "thread": 15 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 660143, + "thread": 17 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 964248, + "thread": 19 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1132707, + "thread": 0 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1208481, + "thread": 31 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1351325, + "thread": 5 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1503880, + "thread": 4 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1649616, + "thread": 6 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 1929279, + "thread": 15 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2008441, + "thread": 2 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2236370, + "thread": 31 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2423300, + "thread": 19 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2487318, + "thread": 22 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2699242, + "thread": 25 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 2822813, + "thread": 16 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 3104648, + "thread": 7 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 3224525, + "thread": 30 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 3381046, + "thread": 14 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 3603059, + "thread": 6 + } + }, + { + "amount": "285.210366810", + "slot": { + "period": 3761833, + "thread": 13 + } + }, + { + "amount": "285.210366819", + "slot": { + "period": 3812020, + "thread": 14 + } + } + ], + "AU1yWoRnaHr7TDGdEjeusmMwXvVKbgg4GGdYFW5SyHuno5SxMdSM": [ + { + "amount": "183.738217440", + "slot": { + "period": 25846, + "thread": 8 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 192735, + "thread": 24 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 328842, + "thread": 20 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 601017, + "thread": 18 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 788141, + "thread": 25 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 897571, + "thread": 28 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1092940, + "thread": 10 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1247445, + "thread": 29 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1434596, + "thread": 18 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1635519, + "thread": 31 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1763974, + "thread": 16 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 1833185, + "thread": 3 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2044144, + "thread": 9 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2154588, + "thread": 15 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2358987, + "thread": 4 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2564099, + "thread": 10 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2777021, + "thread": 12 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 2918811, + "thread": 14 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 3074831, + "thread": 26 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 3194867, + "thread": 11 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 3355377, + "thread": 15 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 3549995, + "thread": 7 + } + }, + { + "amount": "183.738217440", + "slot": { + "period": 3691797, + "thread": 12 + } + }, + { + "amount": "183.738217438", + "slot": { + "period": 3897092, + "thread": 3 + } + } + ], + "AU1yY8Q9vrE7sGs1xJEn6XZE1wGzZ2K9rFeHjKam4Euz7ZbYafUS": [ + { + "amount": "277.773600402", + "slot": { + "period": 91090, + "thread": 31 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 299771, + "thread": 12 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 412524, + "thread": 25 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 570547, + "thread": 17 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 692873, + "thread": 21 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 834029, + "thread": 6 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1116799, + "thread": 6 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1156784, + "thread": 24 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1339731, + "thread": 25 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1583907, + "thread": 24 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1718756, + "thread": 27 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 1856940, + "thread": 1 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2023867, + "thread": 19 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2273618, + "thread": 11 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2307849, + "thread": 18 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2465317, + "thread": 14 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2637503, + "thread": 13 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2878497, + "thread": 5 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 2986562, + "thread": 0 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 3145810, + "thread": 16 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 3433063, + "thread": 18 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 3461911, + "thread": 27 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 3618938, + "thread": 21 + } + }, + { + "amount": "277.773600402", + "slot": { + "period": 3865406, + "thread": 2 + } + } + ], + "AU1yZ4qUQAFmNG46SDLLM3MgtFV2fe3sQGba6Cy9uJMzAPNuMfvV": [ + { + "amount": "315.647480982", + "slot": { + "period": 165754, + "thread": 12 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 225404, + "thread": 9 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 445942, + "thread": 16 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 595494, + "thread": 20 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 811274, + "thread": 5 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 958676, + "thread": 27 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1078239, + "thread": 11 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1151209, + "thread": 8 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1367691, + "thread": 3 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1626049, + "thread": 15 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1786299, + "thread": 25 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 1842218, + "thread": 0 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2072188, + "thread": 9 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2251521, + "thread": 8 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2403702, + "thread": 19 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2621671, + "thread": 16 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2736229, + "thread": 22 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 2918196, + "thread": 26 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 3057927, + "thread": 31 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 3275170, + "thread": 5 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 3359721, + "thread": 26 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 3595723, + "thread": 5 + } + }, + { + "amount": "315.647480982", + "slot": { + "period": 3717861, + "thread": 26 + } + }, + { + "amount": "315.647480983", + "slot": { + "period": 3860200, + "thread": 14 + } + } + ], + "AU1yZbh4zeshaitwhFW16y7ZhjPwo2DaW9pp9S9HuVsDUQAoh4BY": [ + { + "amount": "56.401621378", + "slot": { + "period": 154549, + "thread": 19 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 257699, + "thread": 7 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 485645, + "thread": 15 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 501471, + "thread": 31 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 678338, + "thread": 8 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 894628, + "thread": 6 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1098781, + "thread": 24 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1243416, + "thread": 19 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1440243, + "thread": 15 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1526454, + "thread": 12 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1725143, + "thread": 2 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 1937371, + "thread": 28 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2059446, + "thread": 28 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2175147, + "thread": 15 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2309837, + "thread": 17 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2621511, + "thread": 10 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2650352, + "thread": 24 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 2950783, + "thread": 27 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 3066984, + "thread": 3 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 3288145, + "thread": 18 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 3313967, + "thread": 0 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 3468763, + "thread": 18 + } + }, + { + "amount": "56.401621378", + "slot": { + "period": 3764273, + "thread": 8 + } + }, + { + "amount": "56.401621388", + "slot": { + "period": 3803519, + "thread": 14 + } + } + ], + "AU1yZnDQHehQNN98e5DWoDL4QfhVYDn6U4gpqZ3L4wiqMpNw876h": [ + { + "amount": "225.366601121", + "slot": { + "period": 10838, + "thread": 15 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 264015, + "thread": 21 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 471649, + "thread": 25 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 522434, + "thread": 13 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 767891, + "thread": 27 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 902127, + "thread": 26 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1089221, + "thread": 31 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1151481, + "thread": 26 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1460810, + "thread": 10 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1576310, + "thread": 12 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1701785, + "thread": 19 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 1848961, + "thread": 21 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2089638, + "thread": 14 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2269462, + "thread": 24 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2347549, + "thread": 19 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2591315, + "thread": 7 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2707707, + "thread": 21 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 2875518, + "thread": 8 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 3089065, + "thread": 15 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 3146811, + "thread": 14 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 3308512, + "thread": 29 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 3593299, + "thread": 29 + } + }, + { + "amount": "225.366601121", + "slot": { + "period": 3743582, + "thread": 22 + } + }, + { + "amount": "225.366601117", + "slot": { + "period": 3813803, + "thread": 3 + } + } + ], + "AU1yaJB22Hf4z2Ck5jueaQDvWQLrq54MtrW3XbdqEwcLgkpgotF8": [ + { + "amount": "60.455900010", + "slot": { + "period": 49087, + "thread": 28 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 248621, + "thread": 2 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 482955, + "thread": 4 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 605134, + "thread": 27 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 685980, + "thread": 6 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 837219, + "thread": 4 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1025823, + "thread": 7 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1194674, + "thread": 2 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1431881, + "thread": 2 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1497172, + "thread": 19 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1779213, + "thread": 2 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1946747, + "thread": 11 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 1986545, + "thread": 13 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2175099, + "thread": 28 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2456568, + "thread": 11 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2516592, + "thread": 26 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2696912, + "thread": 30 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2941569, + "thread": 28 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 2973728, + "thread": 10 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 3174846, + "thread": 23 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 3357185, + "thread": 4 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 3462428, + "thread": 5 + } + }, + { + "amount": "60.455900010", + "slot": { + "period": 3702337, + "thread": 3 + } + }, + { + "amount": "60.455900017", + "slot": { + "period": 3933639, + "thread": 12 + } + } + ], + "AU1yaonXDE7Mj7KfC4oXic1D5pxyC86n4hLd4iRiYqqRSeQMdAsW": [ + { + "amount": "1491.603635268", + "slot": { + "period": 130909, + "thread": 31 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 295908, + "thread": 8 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 455155, + "thread": 17 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 547830, + "thread": 5 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 715765, + "thread": 31 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 893780, + "thread": 11 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1043359, + "thread": 30 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1215845, + "thread": 27 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1366455, + "thread": 31 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1568300, + "thread": 5 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1697499, + "thread": 19 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 1812685, + "thread": 30 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2093899, + "thread": 26 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2146533, + "thread": 23 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2307426, + "thread": 10 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2613055, + "thread": 26 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2644420, + "thread": 6 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 2888376, + "thread": 0 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 3112776, + "thread": 19 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 3226433, + "thread": 13 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 3446242, + "thread": 20 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 3508437, + "thread": 13 + } + }, + { + "amount": "1491.603635268", + "slot": { + "period": 3753464, + "thread": 15 + } + }, + { + "amount": "1491.603635264", + "slot": { + "period": 3900342, + "thread": 12 + } + } + ], + "AU1ycELY32oiQjZzzAtw7znnC216Fh6HCDzixeTQL9xDFF1zHxcy": [ + { + "amount": "104.948208001", + "slot": { + "period": 20703, + "thread": 8 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 221070, + "thread": 5 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 489542, + "thread": 28 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 520816, + "thread": 15 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 807457, + "thread": 14 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 908079, + "thread": 5 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1147525, + "thread": 24 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1258335, + "thread": 28 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1438736, + "thread": 18 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1536571, + "thread": 13 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1792457, + "thread": 31 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1968280, + "thread": 4 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 1981342, + "thread": 17 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 2144079, + "thread": 19 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 2423924, + "thread": 2 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 2490578, + "thread": 29 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 2656025, + "thread": 29 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 2795177, + "thread": 21 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 3010448, + "thread": 10 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 3250805, + "thread": 8 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 3448045, + "thread": 30 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 3512419, + "thread": 18 + } + }, + { + "amount": "104.948208001", + "slot": { + "period": 3769388, + "thread": 29 + } + }, + { + "amount": "104.948207990", + "slot": { + "period": 3801825, + "thread": 20 + } + } + ], + "AU1ycK4kkRX7qUKahLpJUVwGpJXWayEV5wFuGEgLmKSm3ye5ZL2M": [ + { + "amount": "148.657916886", + "slot": { + "period": 58510, + "thread": 22 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 212264, + "thread": 15 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 444770, + "thread": 6 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 570613, + "thread": 12 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 752935, + "thread": 15 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 934731, + "thread": 16 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1139595, + "thread": 0 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1159649, + "thread": 8 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1431521, + "thread": 3 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1587079, + "thread": 8 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1778506, + "thread": 3 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 1945064, + "thread": 9 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2043200, + "thread": 22 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2283212, + "thread": 10 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2411901, + "thread": 0 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2497318, + "thread": 12 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2721948, + "thread": 9 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2943942, + "thread": 29 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 2980351, + "thread": 1 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 3151997, + "thread": 18 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 3326614, + "thread": 3 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 3484066, + "thread": 2 + } + }, + { + "amount": "148.657916886", + "slot": { + "period": 3729649, + "thread": 1 + } + }, + { + "amount": "148.657916892", + "slot": { + "period": 3880707, + "thread": 1 + } + } + ], + "AU1ycPpAgtaXtoL2FpET1SGKit5tgBK8mjyo2A1cxi4G2cQRgeoR": [ + { + "amount": "213.968309947", + "slot": { + "period": 149864, + "thread": 30 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 232520, + "thread": 23 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 471266, + "thread": 15 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 532000, + "thread": 22 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 743294, + "thread": 18 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 853150, + "thread": 18 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1100702, + "thread": 31 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1154753, + "thread": 22 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1444189, + "thread": 5 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1572506, + "thread": 1 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1671647, + "thread": 0 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 1913337, + "thread": 17 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2107295, + "thread": 11 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2293648, + "thread": 3 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2337334, + "thread": 16 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2605416, + "thread": 24 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2755355, + "thread": 5 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2805253, + "thread": 25 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 2972539, + "thread": 8 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 3240160, + "thread": 16 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 3415287, + "thread": 31 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 3597396, + "thread": 20 + } + }, + { + "amount": "213.968309947", + "slot": { + "period": 3722734, + "thread": 31 + } + }, + { + "amount": "213.968309957", + "slot": { + "period": 3802232, + "thread": 22 + } + } + ], + "AU1ych2dQdvc7t2iag993oBowT75nJaXUsL5o9Q8ricU326Mfko7": [ + { + "amount": "136.872510504", + "slot": { + "period": 91120, + "thread": 6 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 252360, + "thread": 10 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 324233, + "thread": 19 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 620017, + "thread": 29 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 800425, + "thread": 30 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 953264, + "thread": 21 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1102322, + "thread": 21 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1259603, + "thread": 12 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1323831, + "thread": 13 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1558775, + "thread": 14 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1755068, + "thread": 22 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 1875459, + "thread": 13 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2052230, + "thread": 21 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2194308, + "thread": 25 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2358243, + "thread": 28 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2607426, + "thread": 28 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2689368, + "thread": 21 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 2904477, + "thread": 26 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 3111909, + "thread": 6 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 3248962, + "thread": 9 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 3342041, + "thread": 24 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 3572425, + "thread": 20 + } + }, + { + "amount": "136.872510504", + "slot": { + "period": 3732239, + "thread": 11 + } + }, + { + "amount": "136.872510510", + "slot": { + "period": 3817784, + "thread": 5 + } + } + ], + "AU1ycp1Xso16eRuwjZjRW9yhGWcTs9P3QCHe411GGMhX7iuXEoGx": [ + { + "amount": "72.939342644", + "slot": { + "period": 42611, + "thread": 0 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 304730, + "thread": 16 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 402111, + "thread": 9 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 540880, + "thread": 20 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 758023, + "thread": 23 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 858893, + "thread": 9 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1071261, + "thread": 20 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1295024, + "thread": 24 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1459037, + "thread": 10 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1629260, + "thread": 14 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1648415, + "thread": 14 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 1867893, + "thread": 6 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2069091, + "thread": 23 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2160136, + "thread": 9 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2434429, + "thread": 17 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2470136, + "thread": 30 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2697845, + "thread": 16 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 2794998, + "thread": 31 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 3011622, + "thread": 25 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 3214044, + "thread": 12 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 3327760, + "thread": 14 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 3482377, + "thread": 31 + } + }, + { + "amount": "72.939342644", + "slot": { + "period": 3760950, + "thread": 24 + } + }, + { + "amount": "72.939342654", + "slot": { + "period": 3935799, + "thread": 28 + } + } + ], + "AU1ydRu2J3VhgQRSjYpuGTumyEdn7cJYdZSy8iQpPgCpfyuKKqq9": [ + { + "amount": "53.114400517", + "slot": { + "period": 11352, + "thread": 21 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 190935, + "thread": 30 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 408763, + "thread": 7 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 596657, + "thread": 18 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 690002, + "thread": 3 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 972695, + "thread": 4 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1078805, + "thread": 4 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1247940, + "thread": 26 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1366035, + "thread": 5 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1591804, + "thread": 23 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1788735, + "thread": 0 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1812405, + "thread": 26 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 1996503, + "thread": 11 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 2172893, + "thread": 8 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 2398704, + "thread": 5 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 2513913, + "thread": 4 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 2694586, + "thread": 27 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 2828424, + "thread": 28 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 3097121, + "thread": 20 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 3132252, + "thread": 16 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 3295337, + "thread": 24 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 3588425, + "thread": 4 + } + }, + { + "amount": "53.114400517", + "slot": { + "period": 3773855, + "thread": 8 + } + }, + { + "amount": "53.114400522", + "slot": { + "period": 3877799, + "thread": 5 + } + } + ], + "AU1ydUuZHXgpWDH2Cgsf1ZDZfn85mr1MvAPcFRuFgWrMXU1pQyVT": [ + { + "amount": "146.841668029", + "slot": { + "period": 85417, + "thread": 13 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 317499, + "thread": 1 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 352983, + "thread": 18 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 578626, + "thread": 10 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 696906, + "thread": 8 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 886614, + "thread": 17 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 990210, + "thread": 2 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 1228911, + "thread": 15 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 1463624, + "thread": 26 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 1492817, + "thread": 3 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 1695791, + "thread": 1 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 1847199, + "thread": 9 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2055277, + "thread": 18 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2237564, + "thread": 6 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2441084, + "thread": 2 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2481066, + "thread": 29 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2637880, + "thread": 13 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 2873525, + "thread": 20 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 3073979, + "thread": 1 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 3187890, + "thread": 12 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 3345142, + "thread": 11 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 3487848, + "thread": 10 + } + }, + { + "amount": "146.841668029", + "slot": { + "period": 3738043, + "thread": 2 + } + }, + { + "amount": "146.841668030", + "slot": { + "period": 3863390, + "thread": 1 + } + } + ], + "AU1yfe1i2dN3D8yatQM7AqBMBM3seFVMa1jToGGCcFttWyooVfqa": [ + { + "amount": "252.066102067", + "slot": { + "period": 63167, + "thread": 3 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 226366, + "thread": 0 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 435171, + "thread": 0 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 586096, + "thread": 25 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 809132, + "thread": 27 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 845297, + "thread": 24 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1026913, + "thread": 21 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1235248, + "thread": 18 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1445285, + "thread": 13 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1579207, + "thread": 17 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1661610, + "thread": 15 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 1879590, + "thread": 20 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2091037, + "thread": 19 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2291518, + "thread": 28 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2304571, + "thread": 2 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2521368, + "thread": 11 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2714020, + "thread": 15 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2815680, + "thread": 12 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 2987127, + "thread": 7 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 3281252, + "thread": 7 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 3336947, + "thread": 24 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 3567807, + "thread": 11 + } + }, + { + "amount": "252.066102067", + "slot": { + "period": 3765559, + "thread": 16 + } + }, + { + "amount": "252.066102066", + "slot": { + "period": 3885208, + "thread": 22 + } + } + ], + "AU1yfec9CjapqbADcHWe6wDjSBzPLbtm7bijAAghrEyXkbcq3h3c": [ + { + "amount": "86.591173736", + "slot": { + "period": 50628, + "thread": 31 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 278607, + "thread": 19 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 440296, + "thread": 2 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 509250, + "thread": 23 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 732337, + "thread": 11 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 964932, + "thread": 16 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1136808, + "thread": 10 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1195756, + "thread": 13 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1386264, + "thread": 19 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1525922, + "thread": 6 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1803044, + "thread": 4 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 1884353, + "thread": 12 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2010358, + "thread": 25 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2186725, + "thread": 29 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2351242, + "thread": 16 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2493940, + "thread": 24 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2785683, + "thread": 16 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 2848032, + "thread": 12 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 3014843, + "thread": 21 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 3247207, + "thread": 4 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 3364846, + "thread": 12 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 3615605, + "thread": 20 + } + }, + { + "amount": "86.591173736", + "slot": { + "period": 3638701, + "thread": 8 + } + }, + { + "amount": "86.591173725", + "slot": { + "period": 3781299, + "thread": 31 + } + } + ], + "AU1yiDUqBvdLpp3GjsqzMSKoKDdhZXUnzieDRiZph7T1kqRxSSjs": [ + { + "amount": "254.625990220", + "slot": { + "period": 93895, + "thread": 13 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 298941, + "thread": 26 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 337612, + "thread": 10 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 554717, + "thread": 14 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 669119, + "thread": 22 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 930882, + "thread": 27 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1011543, + "thread": 25 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1245382, + "thread": 4 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1325376, + "thread": 28 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1570794, + "thread": 4 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1744348, + "thread": 26 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 1855971, + "thread": 15 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2002110, + "thread": 28 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2267482, + "thread": 8 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2459000, + "thread": 21 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2588695, + "thread": 25 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2650703, + "thread": 8 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 2857985, + "thread": 30 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 3033282, + "thread": 6 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 3229167, + "thread": 1 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 3417065, + "thread": 18 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 3474839, + "thread": 4 + } + }, + { + "amount": "254.625990220", + "slot": { + "period": 3733579, + "thread": 16 + } + }, + { + "amount": "254.625990210", + "slot": { + "period": 3809829, + "thread": 1 + } + } + ], + "AU1yjZTFNmMSHfJXwj7Jtb86LuGjvA65xNxRNVrGkD6Wd536WfCB": [ + { + "amount": "474.212878685", + "slot": { + "period": 112586, + "thread": 29 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 208766, + "thread": 28 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 347784, + "thread": 22 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 538325, + "thread": 11 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 688382, + "thread": 14 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 969793, + "thread": 21 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1021326, + "thread": 20 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1218297, + "thread": 6 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1457825, + "thread": 22 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1609682, + "thread": 13 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1705635, + "thread": 25 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 1919350, + "thread": 9 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2022258, + "thread": 11 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2209037, + "thread": 23 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2446488, + "thread": 0 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2606412, + "thread": 17 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2693329, + "thread": 31 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 2935847, + "thread": 18 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 3061827, + "thread": 7 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 3219006, + "thread": 3 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 3431435, + "thread": 8 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 3579222, + "thread": 10 + } + }, + { + "amount": "474.212878685", + "slot": { + "period": 3737536, + "thread": 5 + } + }, + { + "amount": "474.212878688", + "slot": { + "period": 3780031, + "thread": 23 + } + } + ], + "AU1yjizy3j1CyMv3M3bEGx7BCdnso28FN8HCaZupvBxYWtUHM9Pw": [ + { + "amount": "520.453019616", + "slot": { + "period": 88165, + "thread": 28 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 223599, + "thread": 9 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 454680, + "thread": 21 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 558908, + "thread": 14 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 811531, + "thread": 7 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 939605, + "thread": 7 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1026983, + "thread": 30 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1261689, + "thread": 30 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1473329, + "thread": 27 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1536013, + "thread": 2 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1677556, + "thread": 25 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 1884882, + "thread": 16 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2115996, + "thread": 31 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2233364, + "thread": 14 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2333404, + "thread": 26 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2480020, + "thread": 18 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2660066, + "thread": 16 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 2895926, + "thread": 10 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 3010613, + "thread": 25 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 3124351, + "thread": 30 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 3422923, + "thread": 11 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 3534107, + "thread": 17 + } + }, + { + "amount": "520.453019616", + "slot": { + "period": 3682851, + "thread": 8 + } + }, + { + "amount": "520.453019619", + "slot": { + "period": 3810306, + "thread": 29 + } + } + ], + "AU1ymxQ6es5AzSbsJbnE68ojhTXW3cPbTzvbnj8dDbRcsriT4Snj": [ + { + "amount": "519.634843274", + "slot": { + "period": 166013, + "thread": 6 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 198421, + "thread": 9 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 459907, + "thread": 21 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 524133, + "thread": 0 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 699321, + "thread": 10 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 856854, + "thread": 15 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1126881, + "thread": 22 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1276127, + "thread": 20 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1377825, + "thread": 9 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1555083, + "thread": 23 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1657435, + "thread": 19 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 1946291, + "thread": 25 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2067609, + "thread": 19 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2170365, + "thread": 14 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2426539, + "thread": 30 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2544635, + "thread": 4 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2769582, + "thread": 24 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 2913478, + "thread": 20 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 3076828, + "thread": 5 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 3172693, + "thread": 3 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 3403271, + "thread": 10 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 3557886, + "thread": 26 + } + }, + { + "amount": "519.634843274", + "slot": { + "period": 3668590, + "thread": 20 + } + }, + { + "amount": "519.634843279", + "slot": { + "period": 3920840, + "thread": 20 + } + } + ], + "AU1yn2kJp15LXwu5YN7sVVvDH5WQYYjACXvMRBFCVDGKkdsp9zkj": [ + { + "amount": "187.121561878", + "slot": { + "period": 66236, + "thread": 28 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 178578, + "thread": 29 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 434047, + "thread": 25 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 598437, + "thread": 7 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 721097, + "thread": 16 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 961173, + "thread": 22 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1121288, + "thread": 20 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1155967, + "thread": 5 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1344888, + "thread": 29 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1534252, + "thread": 11 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1750513, + "thread": 23 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 1970109, + "thread": 31 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2137348, + "thread": 20 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2247375, + "thread": 31 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2389766, + "thread": 21 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2560422, + "thread": 19 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2719390, + "thread": 9 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 2921564, + "thread": 11 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 3047789, + "thread": 29 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 3240210, + "thread": 30 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 3390702, + "thread": 9 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 3518966, + "thread": 15 + } + }, + { + "amount": "187.121561878", + "slot": { + "period": 3749001, + "thread": 12 + } + }, + { + "amount": "187.121561877", + "slot": { + "period": 3922441, + "thread": 22 + } + } + ], + "AU1ynaxnosuDUWm11uEafaJ9yyueVvNF89csMFsdbRj3XckmMXtv": [ + { + "amount": "375.776435713", + "slot": { + "period": 125109, + "thread": 31 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 187725, + "thread": 0 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 459328, + "thread": 28 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 574316, + "thread": 5 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 812066, + "thread": 24 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 936149, + "thread": 29 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1081477, + "thread": 23 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1256397, + "thread": 12 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1432867, + "thread": 0 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1541168, + "thread": 30 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1696376, + "thread": 6 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 1950311, + "thread": 21 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2035511, + "thread": 29 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2216271, + "thread": 18 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2386536, + "thread": 1 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2488422, + "thread": 18 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2709229, + "thread": 14 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 2900723, + "thread": 13 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 3036845, + "thread": 20 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 3185649, + "thread": 11 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 3298044, + "thread": 31 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 3463761, + "thread": 21 + } + }, + { + "amount": "375.776435713", + "slot": { + "period": 3779826, + "thread": 3 + } + }, + { + "amount": "375.776435707", + "slot": { + "period": 3784100, + "thread": 20 + } + } + ], + "AU1yocdZkW4LyZGPPiZnu2MLPwtNeKAP93yJrQBq6ZWrtd6JbZUt": [ + { + "amount": "140.853957660", + "slot": { + "period": 44746, + "thread": 11 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 187971, + "thread": 24 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 412961, + "thread": 29 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 566285, + "thread": 8 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 723925, + "thread": 13 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 930936, + "thread": 28 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 983602, + "thread": 5 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 1182376, + "thread": 18 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 1350668, + "thread": 1 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 1557230, + "thread": 4 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 1716810, + "thread": 12 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 1949832, + "thread": 5 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2000189, + "thread": 8 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2171907, + "thread": 4 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2415389, + "thread": 0 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2558485, + "thread": 11 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2649712, + "thread": 12 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 2802110, + "thread": 15 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 3058076, + "thread": 28 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 3259350, + "thread": 3 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 3328260, + "thread": 26 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 3455531, + "thread": 15 + } + }, + { + "amount": "140.853957660", + "slot": { + "period": 3626568, + "thread": 26 + } + }, + { + "amount": "140.853957662", + "slot": { + "period": 3829016, + "thread": 14 + } + } + ], + "AU1youLHdHkEc1z7PeHHehNKzLtZ3qr4ENTaeAC91GR5dipG4n1t": [ + { + "amount": "163.977072606", + "slot": { + "period": 127152, + "thread": 4 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 308360, + "thread": 2 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 413103, + "thread": 27 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 556717, + "thread": 19 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 699303, + "thread": 23 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 982750, + "thread": 9 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1035639, + "thread": 14 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1179789, + "thread": 0 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1401819, + "thread": 9 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1505612, + "thread": 26 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1799558, + "thread": 20 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 1944563, + "thread": 21 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2076530, + "thread": 15 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2248941, + "thread": 24 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2312553, + "thread": 16 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2470396, + "thread": 0 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2677931, + "thread": 5 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 2915001, + "thread": 28 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 3099856, + "thread": 7 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 3201485, + "thread": 6 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 3367277, + "thread": 10 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 3600799, + "thread": 17 + } + }, + { + "amount": "163.977072606", + "slot": { + "period": 3665903, + "thread": 5 + } + }, + { + "amount": "163.977072616", + "slot": { + "period": 3914897, + "thread": 9 + } + } + ], + "AU1yovNM9Krkb7Hix1KARhKWcdYRo6tata5ohmzLX5azQaUQ5Sjs": [ + { + "amount": "491.064638244", + "slot": { + "period": 67147, + "thread": 20 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 257218, + "thread": 18 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 443285, + "thread": 17 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 645863, + "thread": 2 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 792283, + "thread": 14 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 907356, + "thread": 15 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1020882, + "thread": 31 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1164117, + "thread": 7 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1357976, + "thread": 12 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1637892, + "thread": 10 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1661198, + "thread": 2 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 1850614, + "thread": 2 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2031585, + "thread": 30 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2195003, + "thread": 11 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2422462, + "thread": 11 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2469034, + "thread": 28 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2696852, + "thread": 23 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 2813839, + "thread": 21 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 3116768, + "thread": 12 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 3257155, + "thread": 0 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 3439252, + "thread": 26 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 3522128, + "thread": 26 + } + }, + { + "amount": "491.064638244", + "slot": { + "period": 3698900, + "thread": 11 + } + }, + { + "amount": "491.064638249", + "slot": { + "period": 3938635, + "thread": 18 + } + } + ], + "AU1yp3isBQDCTVQdYpmnPB88UvcAvtzHf9HC8SFJi4M6pACCDpxz": [ + { + "amount": "106.478895506", + "slot": { + "period": 70915, + "thread": 13 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 225342, + "thread": 13 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 386440, + "thread": 18 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 492008, + "thread": 13 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 689441, + "thread": 26 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 982004, + "thread": 19 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1142188, + "thread": 21 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1177870, + "thread": 1 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1350265, + "thread": 22 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1552596, + "thread": 31 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1774120, + "thread": 17 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 1853237, + "thread": 21 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2090660, + "thread": 30 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2183051, + "thread": 24 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2369076, + "thread": 9 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2567056, + "thread": 7 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2658824, + "thread": 26 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2941521, + "thread": 31 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 2966730, + "thread": 20 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 3176700, + "thread": 9 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 3325656, + "thread": 28 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 3460786, + "thread": 18 + } + }, + { + "amount": "106.478895506", + "slot": { + "period": 3734873, + "thread": 28 + } + }, + { + "amount": "106.478895518", + "slot": { + "period": 3897167, + "thread": 25 + } + } + ], + "AU1yp3xcdWbHwCkkXG8zAcrNe5CnbfYL8vcjM8AjUgzYF3QjkqMQ": [ + { + "amount": "234.127311977", + "slot": { + "period": 166813, + "thread": 25 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 167747, + "thread": 11 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 482207, + "thread": 5 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 630895, + "thread": 30 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 794149, + "thread": 13 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 966874, + "thread": 7 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1090305, + "thread": 6 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1235466, + "thread": 3 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1322972, + "thread": 22 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1513924, + "thread": 3 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1772005, + "thread": 13 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 1841523, + "thread": 26 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2038666, + "thread": 20 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2277190, + "thread": 14 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2423063, + "thread": 10 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2556892, + "thread": 8 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2790898, + "thread": 18 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 2845344, + "thread": 9 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 3051750, + "thread": 14 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 3169224, + "thread": 17 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 3354870, + "thread": 4 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 3487784, + "thread": 7 + } + }, + { + "amount": "234.127311977", + "slot": { + "period": 3704338, + "thread": 6 + } + }, + { + "amount": "234.127311967", + "slot": { + "period": 3915930, + "thread": 1 + } + } + ], + "AU1ypkqhC5xm5tu8syySQXYZytxjNSEaJdrzykn5uuJqYGoUbFPT": [ + { + "amount": "177.921468486", + "slot": { + "period": 90924, + "thread": 25 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 198764, + "thread": 30 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 447144, + "thread": 7 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 600231, + "thread": 2 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 752537, + "thread": 23 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 831588, + "thread": 8 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1003377, + "thread": 20 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1254303, + "thread": 8 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1454543, + "thread": 13 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1573552, + "thread": 2 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1756285, + "thread": 19 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 1905368, + "thread": 20 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2008035, + "thread": 22 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2212710, + "thread": 30 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2332619, + "thread": 14 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2554307, + "thread": 12 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2730261, + "thread": 16 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 2925939, + "thread": 21 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 3036969, + "thread": 0 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 3215074, + "thread": 28 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 3435988, + "thread": 3 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 3567476, + "thread": 4 + } + }, + { + "amount": "177.921468486", + "slot": { + "period": 3650781, + "thread": 25 + } + }, + { + "amount": "177.921468476", + "slot": { + "period": 3901230, + "thread": 4 + } + } + ], + "AU1yrj7h638vYypSeg6UE4R3ZwbBWQeHE2zCBRKEoopYGqrj6CKk": [ + { + "amount": "172.557986623", + "slot": { + "period": 13241, + "thread": 31 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 317281, + "thread": 26 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 324400, + "thread": 2 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 534358, + "thread": 31 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 675048, + "thread": 3 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 902569, + "thread": 20 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1002932, + "thread": 0 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1175263, + "thread": 26 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1425306, + "thread": 30 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1597757, + "thread": 14 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1778815, + "thread": 10 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 1861558, + "thread": 0 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2143106, + "thread": 19 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2227237, + "thread": 27 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2343225, + "thread": 13 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2510030, + "thread": 16 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2791168, + "thread": 0 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2839093, + "thread": 22 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 2969222, + "thread": 23 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 3198089, + "thread": 22 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 3389364, + "thread": 11 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 3616157, + "thread": 29 + } + }, + { + "amount": "172.557986623", + "slot": { + "period": 3755980, + "thread": 3 + } + }, + { + "amount": "172.557986616", + "slot": { + "period": 3915713, + "thread": 30 + } + } + ], + "AU1yshkiVmRHZAd12S9DSPiWt53D4YFvuXRXgRMGTvt6XNE1cN6H": [ + { + "amount": "258.621122217", + "slot": { + "period": 13740, + "thread": 6 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 213894, + "thread": 8 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 380059, + "thread": 20 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 533547, + "thread": 17 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 793777, + "thread": 11 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 832440, + "thread": 22 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1046942, + "thread": 23 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1197746, + "thread": 11 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1436744, + "thread": 27 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1549746, + "thread": 11 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1706858, + "thread": 4 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 1840366, + "thread": 24 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2050539, + "thread": 25 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2220405, + "thread": 23 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2321214, + "thread": 13 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2493704, + "thread": 22 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2632160, + "thread": 7 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 2833573, + "thread": 18 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 3034259, + "thread": 25 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 3279032, + "thread": 29 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 3378066, + "thread": 5 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 3484774, + "thread": 7 + } + }, + { + "amount": "258.621122217", + "slot": { + "period": 3683728, + "thread": 14 + } + }, + { + "amount": "258.621122212", + "slot": { + "period": 3844046, + "thread": 29 + } + } + ], + "AU1ythvQecDS8keBCRoWvDTnsrgHdBttsSDhYJMhtZDMVHxYx7s7": [ + { + "amount": "153.976091802", + "slot": { + "period": 96746, + "thread": 21 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 191709, + "thread": 12 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 324131, + "thread": 18 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 522462, + "thread": 20 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 796241, + "thread": 1 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 881934, + "thread": 12 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1146469, + "thread": 31 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1163419, + "thread": 18 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1382136, + "thread": 31 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1620235, + "thread": 0 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1697933, + "thread": 6 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 1879345, + "thread": 8 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2044120, + "thread": 13 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2243838, + "thread": 12 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2375633, + "thread": 13 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2466731, + "thread": 5 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2724830, + "thread": 19 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 2828003, + "thread": 4 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 3011305, + "thread": 11 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 3153694, + "thread": 9 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 3335186, + "thread": 14 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 3504476, + "thread": 18 + } + }, + { + "amount": "153.976091802", + "slot": { + "period": 3629504, + "thread": 14 + } + }, + { + "amount": "153.976091793", + "slot": { + "period": 3937835, + "thread": 21 + } + } + ], + "AU1yuXgqXEcjHdrCykSG2g6skYpkta8RrWtfWC7iuTYknXDAKihc": [ + { + "amount": "437.811122122", + "slot": { + "period": 96141, + "thread": 13 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 320678, + "thread": 6 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 418450, + "thread": 9 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 548628, + "thread": 20 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 656402, + "thread": 1 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 885286, + "thread": 17 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1137314, + "thread": 19 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1233898, + "thread": 11 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1423048, + "thread": 21 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1537582, + "thread": 13 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1769003, + "thread": 3 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 1903432, + "thread": 17 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2143272, + "thread": 2 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2198486, + "thread": 29 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2388771, + "thread": 17 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2585678, + "thread": 0 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2789314, + "thread": 8 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 2867948, + "thread": 6 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 3109657, + "thread": 22 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 3154156, + "thread": 6 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 3426074, + "thread": 27 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 3473513, + "thread": 18 + } + }, + { + "amount": "437.811122122", + "slot": { + "period": 3622785, + "thread": 27 + } + }, + { + "amount": "437.811122114", + "slot": { + "period": 3925600, + "thread": 9 + } + } + ], + "AU1yup7MWAbwnwV3Vfp6TsTUXhiS8YUcTkaszxmifGxeEJDFaQha": [ + { + "amount": "199.832027794", + "slot": { + "period": 93849, + "thread": 26 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 206338, + "thread": 20 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 479308, + "thread": 31 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 610441, + "thread": 8 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 784697, + "thread": 18 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 835991, + "thread": 12 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1134955, + "thread": 7 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1272621, + "thread": 16 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1425807, + "thread": 16 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1583264, + "thread": 0 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1698867, + "thread": 16 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1857275, + "thread": 19 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 1978699, + "thread": 13 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 2257330, + "thread": 20 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 2373880, + "thread": 15 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 2550578, + "thread": 20 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 2675438, + "thread": 6 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 2880513, + "thread": 15 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 3118427, + "thread": 27 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 3136695, + "thread": 26 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 3386521, + "thread": 12 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 3610713, + "thread": 21 + } + }, + { + "amount": "199.832027794", + "slot": { + "period": 3706146, + "thread": 20 + } + }, + { + "amount": "199.832027784", + "slot": { + "period": 3901547, + "thread": 8 + } + } + ], + "AU1yvVKVESgR2BqWKrRPf5bh1Ym1KvotgxGaxEtMpUq2VzzBB14E": [ + { + "amount": "173.428373644", + "slot": { + "period": 137529, + "thread": 15 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 204457, + "thread": 22 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 436002, + "thread": 11 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 648761, + "thread": 11 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 787150, + "thread": 16 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 942112, + "thread": 3 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1074615, + "thread": 9 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1264431, + "thread": 9 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1360310, + "thread": 12 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1496996, + "thread": 28 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1724170, + "thread": 13 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 1910023, + "thread": 18 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2126313, + "thread": 5 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2271841, + "thread": 30 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2330349, + "thread": 6 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2577466, + "thread": 20 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2660071, + "thread": 18 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 2816539, + "thread": 29 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 3067143, + "thread": 27 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 3249831, + "thread": 29 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 3417818, + "thread": 9 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 3583190, + "thread": 13 + } + }, + { + "amount": "173.428373644", + "slot": { + "period": 3769925, + "thread": 17 + } + }, + { + "amount": "173.428373651", + "slot": { + "period": 3849853, + "thread": 14 + } + } + ], + "AU1yw6yH5qS1S16v6SgAqcP79pDtB6Q7qBrkn9p3A4EozEZGiug5": [ + { + "amount": "322.017303994", + "slot": { + "period": 100533, + "thread": 6 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 223245, + "thread": 1 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 466507, + "thread": 8 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 510811, + "thread": 13 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 706242, + "thread": 4 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 878254, + "thread": 17 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1095410, + "thread": 4 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1245429, + "thread": 17 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1347717, + "thread": 24 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1565100, + "thread": 28 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1788464, + "thread": 21 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1876854, + "thread": 23 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 1997978, + "thread": 11 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 2285029, + "thread": 3 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 2353532, + "thread": 20 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 2501291, + "thread": 2 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 2763190, + "thread": 14 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 2797423, + "thread": 25 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 3030059, + "thread": 2 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 3234881, + "thread": 12 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 3391298, + "thread": 28 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 3561995, + "thread": 8 + } + }, + { + "amount": "322.017303994", + "slot": { + "period": 3711597, + "thread": 11 + } + }, + { + "amount": "322.017304000", + "slot": { + "period": 3801974, + "thread": 13 + } + } + ], + "AU1ywHnUvk1oD5q16V1PeC2jxQVNCAtWUYEEKabQHX61f3U5F5a": [ + { + "amount": "159.792275142", + "slot": { + "period": 57115, + "thread": 5 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 273937, + "thread": 3 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 379667, + "thread": 26 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 585471, + "thread": 13 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 755178, + "thread": 8 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 953912, + "thread": 9 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1016407, + "thread": 3 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1215948, + "thread": 16 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1473201, + "thread": 28 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1510531, + "thread": 7 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1779207, + "thread": 19 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 1826245, + "thread": 27 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2036966, + "thread": 25 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2204785, + "thread": 4 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2403817, + "thread": 23 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2614578, + "thread": 28 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2669474, + "thread": 7 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 2896969, + "thread": 13 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 3049902, + "thread": 29 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 3257133, + "thread": 9 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 3356243, + "thread": 10 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 3527421, + "thread": 27 + } + }, + { + "amount": "159.792275142", + "slot": { + "period": 3701155, + "thread": 23 + } + }, + { + "amount": "159.792275138", + "slot": { + "period": 3881458, + "thread": 17 + } + } + ], + "AU1ywNhF165LQiC1V2YcNNfdCECN3L3jhFTSEycCmRq1ZtQhyL1A": [ + { + "amount": "288.132737178", + "slot": { + "period": 88162, + "thread": 30 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 287426, + "thread": 28 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 383633, + "thread": 7 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 586385, + "thread": 17 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 662254, + "thread": 31 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 888065, + "thread": 15 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 984456, + "thread": 3 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 1257005, + "thread": 28 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 1410233, + "thread": 15 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 1597480, + "thread": 9 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 1706033, + "thread": 4 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 1954847, + "thread": 14 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2131334, + "thread": 14 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2277098, + "thread": 11 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2431341, + "thread": 9 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2497185, + "thread": 16 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2628430, + "thread": 31 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 2867814, + "thread": 1 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 3109948, + "thread": 8 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 3259156, + "thread": 3 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 3309404, + "thread": 29 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 3502230, + "thread": 18 + } + }, + { + "amount": "288.132737178", + "slot": { + "period": 3702459, + "thread": 5 + } + }, + { + "amount": "288.132737171", + "slot": { + "period": 3803646, + "thread": 11 + } + } + ], + "AU1ywuL22uY8Z3dQFcDb2MTM9JzmF7Zs2izCu9ijUDVxa1BSttPv": [ + { + "amount": "126.850099238", + "slot": { + "period": 17666, + "thread": 1 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 306961, + "thread": 13 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 478583, + "thread": 1 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 578551, + "thread": 30 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 740955, + "thread": 9 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 929582, + "thread": 23 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1084236, + "thread": 12 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1231488, + "thread": 8 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1395638, + "thread": 20 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1577981, + "thread": 1 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1717521, + "thread": 2 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 1902941, + "thread": 21 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2088123, + "thread": 27 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2261927, + "thread": 27 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2330966, + "thread": 21 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2478791, + "thread": 2 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2711571, + "thread": 21 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2869578, + "thread": 30 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 2998039, + "thread": 11 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 3257548, + "thread": 15 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 3324258, + "thread": 4 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 3605343, + "thread": 22 + } + }, + { + "amount": "126.850099238", + "slot": { + "period": 3711985, + "thread": 17 + } + }, + { + "amount": "126.850099244", + "slot": { + "period": 3893170, + "thread": 4 + } + } + ], + "AU1yxqwWLkxk1W4ek4JB8vNCxsWDTburonkPqx64wgSzis46975Q": [ + { + "amount": "561.972496067", + "slot": { + "period": 59768, + "thread": 14 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 256519, + "thread": 0 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 422349, + "thread": 13 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 611625, + "thread": 25 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 809206, + "thread": 10 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 943114, + "thread": 11 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1120426, + "thread": 5 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1295913, + "thread": 14 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1317883, + "thread": 21 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1513012, + "thread": 23 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1774437, + "thread": 22 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 1917158, + "thread": 9 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2125523, + "thread": 15 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2144300, + "thread": 4 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2412532, + "thread": 12 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2471340, + "thread": 1 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2702638, + "thread": 0 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2801294, + "thread": 28 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 2960867, + "thread": 0 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 3247998, + "thread": 6 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 3437557, + "thread": 1 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 3491403, + "thread": 22 + } + }, + { + "amount": "561.972496067", + "slot": { + "period": 3777285, + "thread": 23 + } + }, + { + "amount": "561.972496078", + "slot": { + "period": 3863768, + "thread": 28 + } + } + ], + "AU1yyT6t2wDxpQna4RjChkov15EdobkerYLzxNHCiUr38vKCw5U3": [ + { + "amount": "248.408513200", + "slot": { + "period": 127693, + "thread": 3 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 318366, + "thread": 9 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 406994, + "thread": 12 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 534710, + "thread": 1 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 725115, + "thread": 26 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 869408, + "thread": 26 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 985568, + "thread": 19 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 1250981, + "thread": 7 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 1415813, + "thread": 28 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 1489711, + "thread": 22 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 1774095, + "thread": 13 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 1891932, + "thread": 24 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2136983, + "thread": 26 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2278787, + "thread": 30 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2452992, + "thread": 27 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2606090, + "thread": 6 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2637201, + "thread": 12 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 2874581, + "thread": 6 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 3061153, + "thread": 21 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 3220510, + "thread": 7 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 3386556, + "thread": 27 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 3606593, + "thread": 29 + } + }, + { + "amount": "248.408513200", + "slot": { + "period": 3770633, + "thread": 12 + } + }, + { + "amount": "248.408513211", + "slot": { + "period": 3889537, + "thread": 30 + } + } + ], + "AU1yypWcJbYRZKQLZMj44gXjFR5RM7hQUuXryoMhv68Z16qN61Gv": [ + { + "amount": "2916.666666667", + "slot": { + "period": 115388, + "thread": 27 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 286628, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 467015, + "thread": 23 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 648633, + "thread": 10 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 744904, + "thread": 18 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 842495, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1129108, + "thread": 6 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1224727, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1372155, + "thread": 7 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1625441, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1749765, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1914614, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2023295, + "thread": 18 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2184397, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2452826, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2610543, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2753430, + "thread": 9 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2797222, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3005075, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3129387, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3387065, + "thread": 20 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3577733, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3673851, + "thread": 5 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3914217, + "thread": 21 + } + } + ], + "AU1yyyyYm1TnyA1uHgvvivYprJPH6rthKhxKRTDiFJbi3MyKRX2d": [ + { + "amount": "116.247418074", + "slot": { + "period": 30518, + "thread": 28 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 243019, + "thread": 16 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 476659, + "thread": 31 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 567458, + "thread": 23 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 697309, + "thread": 31 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 885472, + "thread": 0 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1079495, + "thread": 26 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1209871, + "thread": 18 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1333111, + "thread": 13 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1623632, + "thread": 13 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1689923, + "thread": 15 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 1930808, + "thread": 0 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2101043, + "thread": 14 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2184600, + "thread": 11 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2342034, + "thread": 31 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2559943, + "thread": 8 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2699825, + "thread": 29 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 2855718, + "thread": 15 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 3097511, + "thread": 13 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 3145361, + "thread": 11 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 3362074, + "thread": 6 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 3508584, + "thread": 26 + } + }, + { + "amount": "116.247418074", + "slot": { + "period": 3644029, + "thread": 23 + } + }, + { + "amount": "116.247418063", + "slot": { + "period": 3789819, + "thread": 9 + } + } + ], + "AU1yzDj8zRNZ8rcAQcnz4eknQeS7E92uhaoyk1pHWQzYkJegTdaX": [ + { + "amount": "228.825024004", + "slot": { + "period": 108144, + "thread": 23 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 246909, + "thread": 2 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 349853, + "thread": 11 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 505855, + "thread": 6 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 809523, + "thread": 26 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 929471, + "thread": 18 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 992372, + "thread": 20 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1250835, + "thread": 10 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1352877, + "thread": 6 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1593143, + "thread": 23 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1797116, + "thread": 23 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1953115, + "thread": 2 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 1985856, + "thread": 17 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 2292702, + "thread": 3 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 2460031, + "thread": 20 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 2614047, + "thread": 28 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 2691758, + "thread": 20 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 2862179, + "thread": 16 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 3088327, + "thread": 1 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 3260435, + "thread": 30 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 3412516, + "thread": 19 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 3500784, + "thread": 18 + } + }, + { + "amount": "228.825024004", + "slot": { + "period": 3778601, + "thread": 23 + } + }, + { + "amount": "228.825024015", + "slot": { + "period": 3876092, + "thread": 17 + } + } + ], + "AU1yzFjUqHoVHe8j8BEkEY1HS2n1m24djatummbRETwTkjD5ViRp": [ + { + "amount": "386.468268903", + "slot": { + "period": 43457, + "thread": 5 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 212592, + "thread": 2 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 367892, + "thread": 2 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 579307, + "thread": 11 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 668932, + "thread": 23 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 836070, + "thread": 12 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 983980, + "thread": 6 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1310246, + "thread": 7 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1466807, + "thread": 2 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1548937, + "thread": 6 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1704334, + "thread": 3 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1878980, + "thread": 0 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 1980573, + "thread": 8 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 2233922, + "thread": 10 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 2357268, + "thread": 28 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 2541451, + "thread": 23 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 2669301, + "thread": 8 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 2824244, + "thread": 9 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 3011302, + "thread": 18 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 3250730, + "thread": 1 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 3391452, + "thread": 11 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 3537168, + "thread": 24 + } + }, + { + "amount": "386.468268903", + "slot": { + "period": 3625744, + "thread": 30 + } + }, + { + "amount": "386.468268905", + "slot": { + "period": 3944555, + "thread": 14 + } + } + ], + "AU1yzKEiQ8mc6GHXwnGKQTyCDCau2f9T88iovQotHNyiBgH9buAF": [ + { + "amount": "441.217552508", + "slot": { + "period": 59491, + "thread": 31 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 312031, + "thread": 8 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 490890, + "thread": 25 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 502042, + "thread": 12 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 656807, + "thread": 11 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 830091, + "thread": 30 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1091879, + "thread": 22 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1269396, + "thread": 13 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1449000, + "thread": 4 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1627321, + "thread": 0 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1748600, + "thread": 14 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 1966331, + "thread": 14 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2100423, + "thread": 5 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2289204, + "thread": 17 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2456371, + "thread": 22 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2526848, + "thread": 31 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2638447, + "thread": 31 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 2883822, + "thread": 7 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 3042658, + "thread": 1 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 3194850, + "thread": 0 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 3437254, + "thread": 25 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 3555608, + "thread": 16 + } + }, + { + "amount": "441.217552508", + "slot": { + "period": 3619447, + "thread": 2 + } + }, + { + "amount": "441.217552517", + "slot": { + "period": 3934522, + "thread": 17 + } + } + ], + "AU1z1Sy2DsYZZdPW6tYU2UsL3wUjam5mqUoDSHEAX63zEpZKm5Lb": [ + { + "amount": "228.127787949", + "slot": { + "period": 125204, + "thread": 21 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 203617, + "thread": 0 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 439419, + "thread": 26 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 615515, + "thread": 14 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 754494, + "thread": 24 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 885383, + "thread": 10 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1138515, + "thread": 24 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1232329, + "thread": 4 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1370376, + "thread": 0 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1644933, + "thread": 13 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1778352, + "thread": 23 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 1954779, + "thread": 19 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2095691, + "thread": 7 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2170039, + "thread": 5 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2386576, + "thread": 24 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2622926, + "thread": 8 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2718385, + "thread": 31 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 2868388, + "thread": 31 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 3025490, + "thread": 15 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 3281134, + "thread": 4 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 3359102, + "thread": 6 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 3594734, + "thread": 0 + } + }, + { + "amount": "228.127787949", + "slot": { + "period": 3697138, + "thread": 3 + } + }, + { + "amount": "228.127787951", + "slot": { + "period": 3799973, + "thread": 9 + } + } + ], + "AU1z1TVg7aqwdSQMhQzRRFsd5btF55WufC8Z1SzY5yGDhd4cXrZ8": [ + { + "amount": "182.309736245", + "slot": { + "period": 36434, + "thread": 8 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 170533, + "thread": 6 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 438229, + "thread": 14 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 548530, + "thread": 4 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 792015, + "thread": 23 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 980702, + "thread": 30 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1048368, + "thread": 0 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1230043, + "thread": 8 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1338933, + "thread": 17 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1635302, + "thread": 26 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1742514, + "thread": 2 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 1905160, + "thread": 15 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2049498, + "thread": 6 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2166509, + "thread": 19 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2424945, + "thread": 24 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2571022, + "thread": 31 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2684439, + "thread": 1 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 2946086, + "thread": 1 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 3029775, + "thread": 18 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 3157084, + "thread": 21 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 3358697, + "thread": 21 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 3556369, + "thread": 21 + } + }, + { + "amount": "182.309736245", + "slot": { + "period": 3686897, + "thread": 7 + } + }, + { + "amount": "182.309736246", + "slot": { + "period": 3927641, + "thread": 25 + } + } + ], + "AU1z1Unn29FA2y54YMkHzdjjy6yEQTyMD9eFuudSeHk2vaKi7u6F": [ + { + "amount": "112.175522781", + "slot": { + "period": 141441, + "thread": 27 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 259700, + "thread": 23 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 487131, + "thread": 14 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 570089, + "thread": 19 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 703781, + "thread": 18 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 865327, + "thread": 28 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1092251, + "thread": 26 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1296507, + "thread": 5 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1471119, + "thread": 31 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1528076, + "thread": 3 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1786305, + "thread": 14 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 1928443, + "thread": 0 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2098989, + "thread": 26 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2179040, + "thread": 13 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2296666, + "thread": 4 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2600405, + "thread": 5 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2709156, + "thread": 29 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 2886716, + "thread": 3 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 3032957, + "thread": 28 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 3147021, + "thread": 31 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 3432275, + "thread": 4 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 3589663, + "thread": 15 + } + }, + { + "amount": "112.175522781", + "slot": { + "period": 3735071, + "thread": 24 + } + }, + { + "amount": "112.175522774", + "slot": { + "period": 3801922, + "thread": 9 + } + } + ], + "AU1z1yXtTJQNS4zQsXsXU5fpDUbSbYYpn5UDRqsvMmTTBUgHMA86": [ + { + "amount": "182.550993281", + "slot": { + "period": 72742, + "thread": 30 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 238697, + "thread": 24 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 388920, + "thread": 27 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 637705, + "thread": 18 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 799401, + "thread": 1 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 868580, + "thread": 21 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 999136, + "thread": 29 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 1232083, + "thread": 15 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 1422794, + "thread": 2 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 1532124, + "thread": 2 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 1659018, + "thread": 19 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 1919484, + "thread": 3 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2126609, + "thread": 29 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2202415, + "thread": 7 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2398306, + "thread": 19 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2512252, + "thread": 12 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2776267, + "thread": 8 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 2901586, + "thread": 24 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 3119871, + "thread": 7 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 3185090, + "thread": 23 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 3337804, + "thread": 19 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 3600505, + "thread": 24 + } + }, + { + "amount": "182.550993281", + "slot": { + "period": 3731729, + "thread": 20 + } + }, + { + "amount": "182.550993275", + "slot": { + "period": 3801030, + "thread": 17 + } + } + ], + "AU1z2Zn9g8dZttXBYkd4SoQr2eRNHWsXc3iRpHZo5Ah9Em9vUy6k": [ + { + "amount": "90.318284496", + "slot": { + "period": 12743, + "thread": 0 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 208666, + "thread": 20 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 422225, + "thread": 6 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 517193, + "thread": 12 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 793444, + "thread": 24 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 937164, + "thread": 8 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1148927, + "thread": 31 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1217727, + "thread": 0 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1460261, + "thread": 31 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1537130, + "thread": 29 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1732919, + "thread": 24 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 1933378, + "thread": 27 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2084688, + "thread": 15 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2290459, + "thread": 19 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2453626, + "thread": 8 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2607501, + "thread": 3 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2762990, + "thread": 11 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 2875070, + "thread": 20 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 3088489, + "thread": 27 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 3232322, + "thread": 26 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 3340502, + "thread": 27 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 3537372, + "thread": 22 + } + }, + { + "amount": "90.318284496", + "slot": { + "period": 3649011, + "thread": 19 + } + }, + { + "amount": "90.318284491", + "slot": { + "period": 3940815, + "thread": 28 + } + } + ], + "AU1z2ucDYCHbqTHS74UpoKqYApby5EjtiCUuKVrneDdS6SxVthUm": [ + { + "amount": "143.805992145", + "slot": { + "period": 46490, + "thread": 21 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 211680, + "thread": 21 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 372587, + "thread": 4 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 602689, + "thread": 21 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 756884, + "thread": 1 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 853053, + "thread": 12 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1055207, + "thread": 6 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1242763, + "thread": 15 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1412663, + "thread": 28 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1535893, + "thread": 19 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1779156, + "thread": 10 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 1890402, + "thread": 2 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2088976, + "thread": 22 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2252148, + "thread": 13 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2327806, + "thread": 6 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2623922, + "thread": 6 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2656742, + "thread": 29 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 2805512, + "thread": 5 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 3118664, + "thread": 15 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 3178906, + "thread": 0 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 3331675, + "thread": 5 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 3452156, + "thread": 11 + } + }, + { + "amount": "143.805992145", + "slot": { + "period": 3735364, + "thread": 16 + } + }, + { + "amount": "143.805992155", + "slot": { + "period": 3817200, + "thread": 24 + } + } + ], + "AU1z3XMCMJHCWvJS5BLV1X4mhZ4ZM69FQ5k6gHmVKhFiQK8vsNMR": [ + { + "amount": "229.520005318", + "slot": { + "period": 137562, + "thread": 3 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 207970, + "thread": 12 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 429097, + "thread": 12 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 527788, + "thread": 1 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 690233, + "thread": 27 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 971755, + "thread": 27 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 998793, + "thread": 31 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 1257334, + "thread": 22 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 1353096, + "thread": 19 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 1484040, + "thread": 2 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 1760886, + "thread": 29 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 1811150, + "thread": 13 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2008022, + "thread": 15 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2256735, + "thread": 9 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2390370, + "thread": 30 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2506525, + "thread": 0 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2771762, + "thread": 1 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 2898712, + "thread": 7 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 3052013, + "thread": 21 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 3244762, + "thread": 3 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 3312649, + "thread": 18 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 3495936, + "thread": 30 + } + }, + { + "amount": "229.520005318", + "slot": { + "period": 3635226, + "thread": 31 + } + }, + { + "amount": "229.520005320", + "slot": { + "period": 3871923, + "thread": 12 + } + } + ], + "AU1z49yvmy11WvVkNSFCubn71eyVHTeSDgW7pppcYT7VanxeVQvQ": [ + { + "amount": "483.248877321", + "slot": { + "period": 44969, + "thread": 0 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 200740, + "thread": 20 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 443517, + "thread": 14 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 533544, + "thread": 0 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 804096, + "thread": 28 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 863911, + "thread": 8 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1007113, + "thread": 20 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1308242, + "thread": 31 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1423342, + "thread": 14 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1525137, + "thread": 1 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1700922, + "thread": 30 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 1818269, + "thread": 9 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2134705, + "thread": 22 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2287730, + "thread": 8 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2438770, + "thread": 2 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2585683, + "thread": 6 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2667506, + "thread": 16 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2844153, + "thread": 21 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 2964109, + "thread": 13 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 3255415, + "thread": 28 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 3345935, + "thread": 3 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 3486061, + "thread": 20 + } + }, + { + "amount": "483.248877321", + "slot": { + "period": 3667012, + "thread": 5 + } + }, + { + "amount": "483.248877320", + "slot": { + "period": 3880850, + "thread": 31 + } + } + ], + "AU1z4QYxT2QmoED7sHJ15EnnZSAiq7mECLKsukhFFPhKWUqwEpkH": [ + { + "amount": "350.944755835", + "slot": { + "period": 41894, + "thread": 28 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 230980, + "thread": 29 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 455907, + "thread": 25 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 584226, + "thread": 28 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 783707, + "thread": 26 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 886650, + "thread": 15 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1138365, + "thread": 14 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1285269, + "thread": 29 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1365496, + "thread": 17 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1621684, + "thread": 23 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1740611, + "thread": 18 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 1931791, + "thread": 20 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2140552, + "thread": 19 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2289758, + "thread": 28 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2420297, + "thread": 0 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2603615, + "thread": 14 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2670797, + "thread": 27 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2793399, + "thread": 23 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 2990336, + "thread": 10 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 3250308, + "thread": 19 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 3443123, + "thread": 20 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 3582597, + "thread": 12 + } + }, + { + "amount": "350.944755835", + "slot": { + "period": 3703000, + "thread": 21 + } + }, + { + "amount": "350.944755831", + "slot": { + "period": 3814659, + "thread": 30 + } + } + ], + "AU1z4Rw9HZLVyopXQSzsMWDPeh9dunJvkYPHG2nmQBFM3vn8rC8e": [ + { + "amount": "58.211082756", + "slot": { + "period": 112007, + "thread": 28 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 239879, + "thread": 2 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 434805, + "thread": 28 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 582429, + "thread": 27 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 755687, + "thread": 8 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 851318, + "thread": 7 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1039543, + "thread": 15 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1210481, + "thread": 20 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1389184, + "thread": 19 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1640370, + "thread": 8 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1786811, + "thread": 23 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 1841282, + "thread": 25 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2130020, + "thread": 19 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2187523, + "thread": 22 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2304419, + "thread": 8 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2620451, + "thread": 31 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2786757, + "thread": 10 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2818247, + "thread": 20 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 2962058, + "thread": 19 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 3177236, + "thread": 15 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 3433065, + "thread": 1 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 3494139, + "thread": 30 + } + }, + { + "amount": "58.211082756", + "slot": { + "period": 3731919, + "thread": 16 + } + }, + { + "amount": "58.211082747", + "slot": { + "period": 3940300, + "thread": 16 + } + } + ], + "AU1z4SCUdY4f7vgrGmuJsCuw8cvsN14S3jLXrDfSxS27h1BKwaaS": [ + { + "amount": "153.883635232", + "slot": { + "period": 38108, + "thread": 25 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 213736, + "thread": 4 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 463066, + "thread": 6 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 585413, + "thread": 2 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 674433, + "thread": 15 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 846271, + "thread": 4 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1146106, + "thread": 30 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1154533, + "thread": 16 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1439508, + "thread": 15 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1488240, + "thread": 14 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1718493, + "thread": 30 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 1936028, + "thread": 8 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2064466, + "thread": 7 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2219408, + "thread": 21 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2371438, + "thread": 17 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2623664, + "thread": 27 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2711831, + "thread": 16 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2862624, + "thread": 18 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 2984130, + "thread": 21 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 3166124, + "thread": 4 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 3435957, + "thread": 23 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 3588037, + "thread": 14 + } + }, + { + "amount": "153.883635232", + "slot": { + "period": 3645150, + "thread": 31 + } + }, + { + "amount": "153.883635231", + "slot": { + "period": 3859739, + "thread": 25 + } + } + ], + "AU1z57hfm9uf1JbZgsD43K62R1imxyDXzaKjM2XT7dTBTqfrvH1z": [ + { + "amount": "147.958633744", + "slot": { + "period": 151628, + "thread": 30 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 307029, + "thread": 5 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 476051, + "thread": 28 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 598900, + "thread": 4 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 666886, + "thread": 26 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 967789, + "thread": 26 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1141598, + "thread": 20 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1159522, + "thread": 14 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1321413, + "thread": 11 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1537838, + "thread": 20 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1703983, + "thread": 26 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 1824436, + "thread": 11 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2125628, + "thread": 15 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2216783, + "thread": 26 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2394139, + "thread": 28 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2481901, + "thread": 5 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2649097, + "thread": 17 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2860088, + "thread": 21 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 2976951, + "thread": 18 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 3158698, + "thread": 28 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 3334992, + "thread": 7 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 3491129, + "thread": 6 + } + }, + { + "amount": "147.958633744", + "slot": { + "period": 3721549, + "thread": 26 + } + }, + { + "amount": "147.958633736", + "slot": { + "period": 3895970, + "thread": 1 + } + } + ], + "AU1z5PDgXxw13VixtKPGo6tF5Qq4PxrMPQ3oWkSh5ugovHic2FtB": [ + { + "amount": "283.369970882", + "slot": { + "period": 106207, + "thread": 0 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 277505, + "thread": 12 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 414361, + "thread": 21 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 582469, + "thread": 16 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 694215, + "thread": 30 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 937103, + "thread": 8 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1066152, + "thread": 7 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1190817, + "thread": 28 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1376764, + "thread": 17 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1607527, + "thread": 30 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1759525, + "thread": 8 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 1952458, + "thread": 10 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2128032, + "thread": 16 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2146670, + "thread": 26 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2427923, + "thread": 1 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2523194, + "thread": 18 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2755371, + "thread": 30 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 2908292, + "thread": 25 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 3051450, + "thread": 16 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 3259562, + "thread": 28 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 3307023, + "thread": 24 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 3592457, + "thread": 16 + } + }, + { + "amount": "283.369970882", + "slot": { + "period": 3726137, + "thread": 25 + } + }, + { + "amount": "283.369970894", + "slot": { + "period": 3833584, + "thread": 14 + } + } + ], + "AU1z7g5iZnX9Uny2TGb9gePJhv7DN4nXoqtBHhngrdsGnNCPbWkG": [ + { + "amount": "201.554792278", + "slot": { + "period": 65153, + "thread": 27 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 298302, + "thread": 4 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 355504, + "thread": 22 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 638351, + "thread": 14 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 679439, + "thread": 12 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 956602, + "thread": 4 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1140404, + "thread": 15 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1169708, + "thread": 5 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1464684, + "thread": 28 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1574170, + "thread": 17 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1667079, + "thread": 2 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 1814708, + "thread": 23 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2053448, + "thread": 22 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2248532, + "thread": 4 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2419654, + "thread": 9 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2494132, + "thread": 21 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2667452, + "thread": 17 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 2801501, + "thread": 3 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 3004346, + "thread": 13 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 3161667, + "thread": 2 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 3289124, + "thread": 31 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 3552020, + "thread": 22 + } + }, + { + "amount": "201.554792278", + "slot": { + "period": 3643856, + "thread": 20 + } + }, + { + "amount": "201.554792276", + "slot": { + "period": 3780402, + "thread": 11 + } + } + ], + "AU1z8C5pYnbt1vAoQBAtcpCGQd9y9Vv8n77u6ceJ2VXmNKxrPjun": [ + { + "amount": "484.491486829", + "slot": { + "period": 130570, + "thread": 28 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 194625, + "thread": 30 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 343052, + "thread": 25 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 642867, + "thread": 0 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 662215, + "thread": 19 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 904097, + "thread": 20 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1065672, + "thread": 30 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1177716, + "thread": 27 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1423143, + "thread": 22 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1531337, + "thread": 17 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1787853, + "thread": 16 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 1858454, + "thread": 12 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2028161, + "thread": 13 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2230284, + "thread": 6 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2368801, + "thread": 7 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2499543, + "thread": 27 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2766046, + "thread": 21 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 2796980, + "thread": 8 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 3073325, + "thread": 25 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 3258829, + "thread": 15 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 3422601, + "thread": 14 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 3546588, + "thread": 9 + } + }, + { + "amount": "484.491486829", + "slot": { + "period": 3741538, + "thread": 7 + } + }, + { + "amount": "484.491486840", + "slot": { + "period": 3889431, + "thread": 6 + } + } + ], + "AU1z8rQPrAQd2haXEQpAE3Y68K8bDqjHtDHwRQqAqmT18Uxppsyp": [ + { + "amount": "328.609982371", + "slot": { + "period": 165425, + "thread": 14 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 314846, + "thread": 23 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 443640, + "thread": 15 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 577411, + "thread": 14 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 726177, + "thread": 19 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 974930, + "thread": 31 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1146159, + "thread": 1 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1304231, + "thread": 9 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1356108, + "thread": 9 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1617676, + "thread": 5 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1691429, + "thread": 7 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 1856086, + "thread": 7 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2084227, + "thread": 2 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2169142, + "thread": 15 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2312288, + "thread": 26 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2507159, + "thread": 7 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2628585, + "thread": 17 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2844791, + "thread": 24 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 2994627, + "thread": 16 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 3250018, + "thread": 6 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 3358291, + "thread": 31 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 3554622, + "thread": 19 + } + }, + { + "amount": "328.609982371", + "slot": { + "period": 3717290, + "thread": 5 + } + }, + { + "amount": "328.609982375", + "slot": { + "period": 3829483, + "thread": 22 + } + } + ], + "AU1z8zQWsDvTcrG3eA7PtG2ugGTXvTEteJmfrpW96JwqsYvgBtDB": [ + { + "amount": "60.388387324", + "slot": { + "period": 108048, + "thread": 27 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 293159, + "thread": 29 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 358669, + "thread": 6 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 567467, + "thread": 21 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 718499, + "thread": 13 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 880740, + "thread": 9 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1029042, + "thread": 0 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1240435, + "thread": 3 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1389693, + "thread": 12 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1497932, + "thread": 19 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1713443, + "thread": 5 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 1813266, + "thread": 26 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2101218, + "thread": 8 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2150070, + "thread": 30 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2449131, + "thread": 21 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2499298, + "thread": 19 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2625712, + "thread": 18 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2816057, + "thread": 28 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 2960439, + "thread": 14 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 3140815, + "thread": 12 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 3369976, + "thread": 4 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 3463027, + "thread": 21 + } + }, + { + "amount": "60.388387324", + "slot": { + "period": 3776241, + "thread": 2 + } + }, + { + "amount": "60.388387319", + "slot": { + "period": 3836364, + "thread": 7 + } + } + ], + "AU1z9oVg9ote9PQi2kGrVdFYZoVjm9DoMFQDNpNwCVWw1xjsLkm4": [ + { + "amount": "265.452690711", + "slot": { + "period": 16168, + "thread": 1 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 221320, + "thread": 27 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 425927, + "thread": 31 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 506550, + "thread": 23 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 760232, + "thread": 20 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 954433, + "thread": 24 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1004198, + "thread": 10 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1287680, + "thread": 12 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1336017, + "thread": 6 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1571742, + "thread": 2 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1793950, + "thread": 17 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 1909821, + "thread": 22 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2107950, + "thread": 29 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2171413, + "thread": 28 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2334634, + "thread": 23 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2566151, + "thread": 30 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2665238, + "thread": 1 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2860677, + "thread": 18 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 2996852, + "thread": 3 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 3222413, + "thread": 15 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 3367589, + "thread": 31 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 3585967, + "thread": 15 + } + }, + { + "amount": "265.452690711", + "slot": { + "period": 3673056, + "thread": 8 + } + }, + { + "amount": "265.452690708", + "slot": { + "period": 3870747, + "thread": 17 + } + } + ], + "AU1zA37jjdvtZuKoQw2FSZTGMsAyp32ny3wwyvwgoCuJYXcqSsgb": [ + { + "amount": "455.123487795", + "slot": { + "period": 65426, + "thread": 16 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 176321, + "thread": 15 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 343475, + "thread": 3 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 629817, + "thread": 11 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 740636, + "thread": 16 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 978468, + "thread": 2 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1103930, + "thread": 4 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1198222, + "thread": 4 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1387049, + "thread": 17 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1557642, + "thread": 19 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1783555, + "thread": 28 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 1949260, + "thread": 4 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2026129, + "thread": 1 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2261133, + "thread": 10 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2433971, + "thread": 10 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2517014, + "thread": 28 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2696594, + "thread": 18 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 2842016, + "thread": 31 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 3057450, + "thread": 3 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 3211636, + "thread": 27 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 3414467, + "thread": 18 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 3508522, + "thread": 27 + } + }, + { + "amount": "455.123487795", + "slot": { + "period": 3665634, + "thread": 1 + } + }, + { + "amount": "455.123487800", + "slot": { + "period": 3886453, + "thread": 20 + } + } + ], + "AU1zAssFKtMk1YLo5ikFKW7VQD7G5deYys9YC7QatDzfjXZKfZ9U": [ + { + "amount": "418.269734987", + "slot": { + "period": 160830, + "thread": 26 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 192287, + "thread": 17 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 358411, + "thread": 27 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 562538, + "thread": 25 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 800571, + "thread": 23 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 948091, + "thread": 3 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1017775, + "thread": 24 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1252798, + "thread": 4 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1396372, + "thread": 14 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1519720, + "thread": 19 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1750310, + "thread": 18 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 1878211, + "thread": 28 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2118838, + "thread": 31 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2263188, + "thread": 6 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2373580, + "thread": 17 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2531255, + "thread": 12 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2649923, + "thread": 26 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2826281, + "thread": 15 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 2994059, + "thread": 1 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 3200412, + "thread": 11 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 3307791, + "thread": 15 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 3599837, + "thread": 22 + } + }, + { + "amount": "418.269734987", + "slot": { + "period": 3649842, + "thread": 23 + } + }, + { + "amount": "418.269734976", + "slot": { + "period": 3791359, + "thread": 3 + } + } + ], + "AU1zAtro64UrUEX8w9ucJxEPc7g2JhGfUN51v34msjdnURhQ5vpg": [ + { + "amount": "126.776961051", + "slot": { + "period": 38474, + "thread": 5 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 205769, + "thread": 30 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 411521, + "thread": 28 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 650726, + "thread": 2 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 706301, + "thread": 18 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 957271, + "thread": 13 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1091321, + "thread": 28 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1240273, + "thread": 24 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1334574, + "thread": 14 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1518019, + "thread": 14 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1662787, + "thread": 5 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 1813834, + "thread": 7 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2065929, + "thread": 0 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2169039, + "thread": 24 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2377257, + "thread": 13 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2603379, + "thread": 18 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2663130, + "thread": 17 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2938271, + "thread": 10 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 2966220, + "thread": 31 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 3268882, + "thread": 23 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 3332351, + "thread": 4 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 3458271, + "thread": 21 + } + }, + { + "amount": "126.776961051", + "slot": { + "period": 3694202, + "thread": 25 + } + }, + { + "amount": "126.776961046", + "slot": { + "period": 3842771, + "thread": 6 + } + } + ], + "AU1zBVuaE2ASRkQf4kAirXLJ2ffKC1vZsqfn9RsrTJtgiAoYpfpD": [ + { + "amount": "151.247341069", + "slot": { + "period": 83669, + "thread": 20 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 203571, + "thread": 14 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 374744, + "thread": 2 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 525206, + "thread": 14 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 757694, + "thread": 4 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 939462, + "thread": 3 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1064473, + "thread": 23 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1197102, + "thread": 7 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1395194, + "thread": 2 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1510403, + "thread": 12 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1803933, + "thread": 14 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 1952621, + "thread": 25 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2080662, + "thread": 19 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2223788, + "thread": 21 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2420447, + "thread": 5 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2614289, + "thread": 13 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2662075, + "thread": 9 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 2844974, + "thread": 17 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 3117079, + "thread": 12 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 3236283, + "thread": 31 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 3413709, + "thread": 29 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 3602821, + "thread": 27 + } + }, + { + "amount": "151.247341069", + "slot": { + "period": 3649694, + "thread": 30 + } + }, + { + "amount": "151.247341080", + "slot": { + "period": 3934972, + "thread": 19 + } + } + ], + "AU1zC3ywoPvbaN6mGEprABbfjoxSJ5ayBGTfCxCoFo2MRpDrCHk9": [ + { + "amount": "320.220959213", + "slot": { + "period": 56424, + "thread": 30 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 221532, + "thread": 23 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 387982, + "thread": 11 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 650683, + "thread": 18 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 680867, + "thread": 8 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 950008, + "thread": 18 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1076843, + "thread": 0 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1182205, + "thread": 17 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1449849, + "thread": 27 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1583306, + "thread": 27 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1667557, + "thread": 13 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1938396, + "thread": 15 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 1988877, + "thread": 3 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 2170775, + "thread": 23 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 2385500, + "thread": 29 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 2551517, + "thread": 30 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 2711937, + "thread": 29 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 2861826, + "thread": 30 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 3110378, + "thread": 2 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 3256063, + "thread": 28 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 3347725, + "thread": 12 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 3599326, + "thread": 2 + } + }, + { + "amount": "320.220959213", + "slot": { + "period": 3773121, + "thread": 17 + } + }, + { + "amount": "320.220959210", + "slot": { + "period": 3790533, + "thread": 5 + } + } + ], + "AU1zCMNgU4SzHRjva4oGJk5pgD3admAbHr6LU8R577G7SgRs3TRM": [ + { + "amount": "177.335633571", + "slot": { + "period": 132865, + "thread": 23 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 315533, + "thread": 28 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 437872, + "thread": 19 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 631087, + "thread": 1 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 720829, + "thread": 16 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 842374, + "thread": 12 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1057941, + "thread": 22 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1184707, + "thread": 6 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1449220, + "thread": 28 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1562283, + "thread": 19 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1767887, + "thread": 31 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 1927718, + "thread": 22 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2044851, + "thread": 21 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2291811, + "thread": 0 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2444927, + "thread": 31 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2613359, + "thread": 13 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2638970, + "thread": 25 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 2853976, + "thread": 2 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 3004485, + "thread": 24 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 3248043, + "thread": 21 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 3437481, + "thread": 12 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 3610978, + "thread": 15 + } + }, + { + "amount": "177.335633571", + "slot": { + "period": 3769997, + "thread": 5 + } + }, + { + "amount": "177.335633567", + "slot": { + "period": 3855714, + "thread": 15 + } + } + ], + "AU1zCPHiHz8ptLMqyrA9mJxZW8qFx5YLPBkkhS7kyZcLyAwgcTdr": [ + { + "amount": "137.442876058", + "slot": { + "period": 44423, + "thread": 16 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 176821, + "thread": 7 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 359992, + "thread": 1 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 524864, + "thread": 17 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 719913, + "thread": 9 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 843639, + "thread": 0 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1052609, + "thread": 16 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1253086, + "thread": 13 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1454748, + "thread": 29 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1524034, + "thread": 31 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1708982, + "thread": 0 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 1975787, + "thread": 1 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2078906, + "thread": 8 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2234020, + "thread": 15 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2296258, + "thread": 10 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2528991, + "thread": 24 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2723159, + "thread": 23 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 2799719, + "thread": 19 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 3057559, + "thread": 17 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 3230585, + "thread": 23 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 3386159, + "thread": 25 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 3463782, + "thread": 5 + } + }, + { + "amount": "137.442876058", + "slot": { + "period": 3752447, + "thread": 24 + } + }, + { + "amount": "137.442876047", + "slot": { + "period": 3857327, + "thread": 31 + } + } + ], + "AU1zD5mFvUCv2HzuEmUSbzTXm2ka6pLzv5Q7M2ATkPrEn6Ufdms3": [ + { + "amount": "372.959657857", + "slot": { + "period": 134437, + "thread": 13 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 220381, + "thread": 7 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 427691, + "thread": 16 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 638910, + "thread": 3 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 780431, + "thread": 30 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 862497, + "thread": 28 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1003864, + "thread": 24 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1263541, + "thread": 29 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1388104, + "thread": 25 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1496420, + "thread": 27 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1787766, + "thread": 4 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 1964821, + "thread": 8 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2094007, + "thread": 26 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2150685, + "thread": 2 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2319848, + "thread": 25 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2491748, + "thread": 8 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2731168, + "thread": 27 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2916092, + "thread": 20 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 2994806, + "thread": 20 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 3145057, + "thread": 6 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 3332931, + "thread": 2 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 3477578, + "thread": 12 + } + }, + { + "amount": "372.959657857", + "slot": { + "period": 3650368, + "thread": 10 + } + }, + { + "amount": "372.959657851", + "slot": { + "period": 3785252, + "thread": 10 + } + } + ], + "AU1zDKBfBiPSqbNG38N9Fu22eFXe63q8APFhdhF1p3bUGSzXLaVT": [ + { + "amount": "97.125244645", + "slot": { + "period": 136739, + "thread": 17 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 221741, + "thread": 18 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 403381, + "thread": 18 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 648002, + "thread": 18 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 751390, + "thread": 9 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 862607, + "thread": 6 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1078680, + "thread": 4 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1203595, + "thread": 15 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1377389, + "thread": 13 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1529657, + "thread": 18 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1771122, + "thread": 19 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 1939579, + "thread": 6 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2101685, + "thread": 11 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2260694, + "thread": 18 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2323791, + "thread": 7 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2607186, + "thread": 6 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2725014, + "thread": 1 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 2801850, + "thread": 9 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 3037541, + "thread": 1 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 3280138, + "thread": 26 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 3338253, + "thread": 23 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 3519781, + "thread": 28 + } + }, + { + "amount": "97.125244645", + "slot": { + "period": 3731334, + "thread": 11 + } + }, + { + "amount": "97.125244656", + "slot": { + "period": 3890828, + "thread": 5 + } + } + ], + "AU1zDwEvsPNBFNczvn6qKAKBvuta9upjnSzp9o9PXXZzzQNSUzzx": [ + { + "amount": "283.494943174", + "slot": { + "period": 46300, + "thread": 21 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 287347, + "thread": 8 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 416685, + "thread": 25 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 629309, + "thread": 28 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 693720, + "thread": 7 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 827351, + "thread": 18 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1043147, + "thread": 5 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1311571, + "thread": 1 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1431614, + "thread": 24 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1512124, + "thread": 2 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1685542, + "thread": 13 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 1926336, + "thread": 12 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2105273, + "thread": 31 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2176862, + "thread": 4 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2315700, + "thread": 17 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2554226, + "thread": 12 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2631858, + "thread": 29 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 2826539, + "thread": 26 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 3041420, + "thread": 24 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 3137202, + "thread": 10 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 3391318, + "thread": 28 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 3616738, + "thread": 25 + } + }, + { + "amount": "283.494943174", + "slot": { + "period": 3687017, + "thread": 15 + } + }, + { + "amount": "283.494943169", + "slot": { + "period": 3795753, + "thread": 27 + } + } + ], + "AU1zGCKfc4h2iffNhPka6VtrkUSR2kk3qx7Gp8rrr31Dq8WSvmib": [ + { + "amount": "300.164275946", + "slot": { + "period": 91809, + "thread": 26 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 320156, + "thread": 5 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 342403, + "thread": 11 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 583597, + "thread": 11 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 809187, + "thread": 1 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 870594, + "thread": 8 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1053337, + "thread": 31 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1236117, + "thread": 19 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1461150, + "thread": 17 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1597506, + "thread": 12 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1785887, + "thread": 25 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 1838307, + "thread": 18 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2111913, + "thread": 23 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2278740, + "thread": 27 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2356234, + "thread": 29 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2594448, + "thread": 20 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2748223, + "thread": 12 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 2935901, + "thread": 17 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 3035378, + "thread": 31 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 3141654, + "thread": 25 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 3327474, + "thread": 11 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 3452982, + "thread": 23 + } + }, + { + "amount": "300.164275946", + "slot": { + "period": 3711643, + "thread": 30 + } + }, + { + "amount": "300.164275955", + "slot": { + "period": 3908285, + "thread": 6 + } + } + ], + "AU1zGDGLtpnPFxeHWqEFKqGBc1d3ioARCMzF93KVKiaztMGLAy99": [ + { + "amount": "226.230924674", + "slot": { + "period": 63251, + "thread": 31 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 191432, + "thread": 14 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 457617, + "thread": 21 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 536931, + "thread": 23 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 773066, + "thread": 1 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 844882, + "thread": 17 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1074356, + "thread": 1 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1242191, + "thread": 20 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1420054, + "thread": 23 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1615041, + "thread": 21 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1806182, + "thread": 6 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 1896029, + "thread": 11 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2085363, + "thread": 6 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2205256, + "thread": 27 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2420448, + "thread": 20 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2525791, + "thread": 13 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2662009, + "thread": 2 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 2813809, + "thread": 12 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3030556, + "thread": 8 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3218534, + "thread": 30 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3417149, + "thread": 1 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3594550, + "thread": 9 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3623080, + "thread": 11 + } + }, + { + "amount": "226.230924674", + "slot": { + "period": 3909751, + "thread": 6 + } + } + ], + "AU1zGzyBV6BfWYB3Rw1AHv736TNgis2h932predbvMtVyhPzM3DX": [ + { + "amount": "87.348730954", + "slot": { + "period": 142101, + "thread": 12 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 301744, + "thread": 23 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 382834, + "thread": 12 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 564059, + "thread": 18 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 727977, + "thread": 22 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 885485, + "thread": 9 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1064668, + "thread": 24 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1160419, + "thread": 25 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1355563, + "thread": 11 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1574497, + "thread": 0 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1805173, + "thread": 16 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 1930455, + "thread": 22 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2092342, + "thread": 26 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2283668, + "thread": 22 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2318606, + "thread": 16 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2511851, + "thread": 17 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2771935, + "thread": 27 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 2796334, + "thread": 6 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 3100500, + "thread": 8 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 3197185, + "thread": 1 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 3435099, + "thread": 11 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 3572677, + "thread": 18 + } + }, + { + "amount": "87.348730954", + "slot": { + "period": 3767817, + "thread": 2 + } + }, + { + "amount": "87.348730956", + "slot": { + "period": 3878910, + "thread": 26 + } + } + ], + "AU1zHTLrvY5AXstqfBY51WUKJMHbdmk58sLrC8DMthiCzs6bv8w7": [ + { + "amount": "283.815766338", + "slot": { + "period": 108048, + "thread": 17 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 307701, + "thread": 10 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 438863, + "thread": 29 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 625024, + "thread": 3 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 656655, + "thread": 4 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 885164, + "thread": 12 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1037539, + "thread": 13 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1251065, + "thread": 8 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1458416, + "thread": 13 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1598167, + "thread": 9 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1751510, + "thread": 21 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 1879715, + "thread": 8 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2118125, + "thread": 9 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2281107, + "thread": 29 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2318314, + "thread": 18 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2517779, + "thread": 11 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2659983, + "thread": 19 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2887983, + "thread": 20 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 2958409, + "thread": 25 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 3266077, + "thread": 6 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 3338234, + "thread": 27 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 3454412, + "thread": 18 + } + }, + { + "amount": "283.815766338", + "slot": { + "period": 3778347, + "thread": 6 + } + }, + { + "amount": "283.815766349", + "slot": { + "period": 3786310, + "thread": 22 + } + } + ], + "AU1zHUkbmp19aB77d2gtdg1od95Vcbwwjkywmt88jHek8k7B6pVo": [ + { + "amount": "470.467328183", + "slot": { + "period": 112154, + "thread": 1 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 320940, + "thread": 26 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 467556, + "thread": 25 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 622743, + "thread": 2 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 728144, + "thread": 18 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 899304, + "thread": 19 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1109838, + "thread": 12 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1208654, + "thread": 24 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1334147, + "thread": 2 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1564232, + "thread": 21 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1773075, + "thread": 8 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 1902499, + "thread": 18 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2105245, + "thread": 25 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2286314, + "thread": 20 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2408288, + "thread": 27 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2579222, + "thread": 29 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2779779, + "thread": 15 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 2952218, + "thread": 12 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 3006373, + "thread": 4 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 3208415, + "thread": 8 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 3306052, + "thread": 20 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 3471947, + "thread": 14 + } + }, + { + "amount": "470.467328183", + "slot": { + "period": 3623956, + "thread": 10 + } + }, + { + "amount": "470.467328187", + "slot": { + "period": 3859583, + "thread": 19 + } + } + ], + "AU1zJ2of5TJLYSDJKF496PbUv9psiDq3oRLhHnpLSdm1HsS9jtNi": [ + { + "amount": "108.486130381", + "slot": { + "period": 144672, + "thread": 10 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 269560, + "thread": 1 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 331065, + "thread": 21 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 609227, + "thread": 14 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 747210, + "thread": 5 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 848649, + "thread": 19 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1092710, + "thread": 4 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1266721, + "thread": 10 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1358833, + "thread": 25 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1643404, + "thread": 22 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1801207, + "thread": 31 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 1894973, + "thread": 9 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2097081, + "thread": 4 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2148699, + "thread": 17 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2438469, + "thread": 3 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2506173, + "thread": 24 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2748454, + "thread": 13 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2865101, + "thread": 14 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 2971465, + "thread": 19 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 3264509, + "thread": 5 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 3326804, + "thread": 11 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 3608700, + "thread": 2 + } + }, + { + "amount": "108.486130381", + "slot": { + "period": 3693552, + "thread": 12 + } + }, + { + "amount": "108.486130389", + "slot": { + "period": 3914208, + "thread": 19 + } + } + ], + "AU1zJAfP1RwUTRTzRNBU7qWowJ3BiNDsA9F497xUwuaGMX6HTYkh": [ + { + "amount": "264.949585300", + "slot": { + "period": 140693, + "thread": 11 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 223207, + "thread": 24 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 419554, + "thread": 13 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 537682, + "thread": 25 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 815094, + "thread": 9 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 919924, + "thread": 0 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 994597, + "thread": 11 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1231289, + "thread": 19 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1354240, + "thread": 0 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1581112, + "thread": 16 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1799612, + "thread": 4 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1909455, + "thread": 19 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 1992257, + "thread": 8 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 2170913, + "thread": 18 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 2309232, + "thread": 11 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 2585080, + "thread": 29 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 2720739, + "thread": 7 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 2856381, + "thread": 21 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 3020661, + "thread": 19 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 3192783, + "thread": 7 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 3334234, + "thread": 24 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 3529689, + "thread": 25 + } + }, + { + "amount": "264.949585300", + "slot": { + "period": 3764425, + "thread": 0 + } + }, + { + "amount": "264.949585306", + "slot": { + "period": 3876224, + "thread": 14 + } + } + ], + "AU1zJFC2gEUHJcyf86XpaYi16KKDg4d92LbSqhf4kzHETm7orLY3": [ + { + "amount": "110.220582839", + "slot": { + "period": 118907, + "thread": 5 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 270939, + "thread": 23 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 366891, + "thread": 1 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 633522, + "thread": 9 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 773885, + "thread": 25 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 952045, + "thread": 5 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1060041, + "thread": 14 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1226793, + "thread": 26 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1350651, + "thread": 11 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1523891, + "thread": 24 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1654429, + "thread": 7 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 1845855, + "thread": 7 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2130015, + "thread": 23 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2267621, + "thread": 21 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2358312, + "thread": 31 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2580465, + "thread": 22 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2733110, + "thread": 8 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 2830241, + "thread": 13 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 3047311, + "thread": 10 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 3193857, + "thread": 11 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 3348957, + "thread": 8 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 3586575, + "thread": 30 + } + }, + { + "amount": "110.220582839", + "slot": { + "period": 3727581, + "thread": 27 + } + }, + { + "amount": "110.220582841", + "slot": { + "period": 3944461, + "thread": 18 + } + } + ], + "AU1zJWv4RgEaF7Z86pbCY79iTEHVweXa54gDPEPRaLZQ98TEWKWa": [ + { + "amount": "85.604501649", + "slot": { + "period": 21833, + "thread": 18 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 264233, + "thread": 15 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 399978, + "thread": 17 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 620790, + "thread": 0 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 736852, + "thread": 7 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 938186, + "thread": 3 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1083925, + "thread": 6 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1282129, + "thread": 5 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1351249, + "thread": 28 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1577102, + "thread": 8 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1792834, + "thread": 28 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 1943298, + "thread": 25 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2107826, + "thread": 3 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2263928, + "thread": 10 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2321878, + "thread": 28 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2605815, + "thread": 0 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2783983, + "thread": 31 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 2868646, + "thread": 3 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3018015, + "thread": 14 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3254944, + "thread": 1 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3306491, + "thread": 30 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3488550, + "thread": 4 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3708202, + "thread": 3 + } + }, + { + "amount": "85.604501649", + "slot": { + "period": 3806921, + "thread": 20 + } + } + ], + "AU1zKu4Zs1rddcWtmaoGXN6pKkggVGhPsMEQWkVVyu8qkjngRNGG": [ + { + "amount": "240.568621990", + "slot": { + "period": 77150, + "thread": 5 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 237225, + "thread": 5 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 455851, + "thread": 10 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 531654, + "thread": 29 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 713728, + "thread": 8 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 823364, + "thread": 27 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 998493, + "thread": 10 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 1196194, + "thread": 14 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 1359857, + "thread": 14 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 1526699, + "thread": 12 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 1739270, + "thread": 12 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 1933159, + "thread": 25 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2083632, + "thread": 8 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2231187, + "thread": 25 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2326331, + "thread": 29 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2547507, + "thread": 21 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2634646, + "thread": 13 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 2910056, + "thread": 13 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 3116500, + "thread": 30 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 3151969, + "thread": 31 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 3422627, + "thread": 11 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 3534369, + "thread": 1 + } + }, + { + "amount": "240.568621990", + "slot": { + "period": 3655521, + "thread": 16 + } + }, + { + "amount": "240.568621978", + "slot": { + "period": 3826344, + "thread": 21 + } + } + ], + "AU1zLC4TFUiaKDg7quQyusMPQcHT4ykWVs3FsFpuhdNSmowUG2As": [ + { + "amount": "502.815947234", + "slot": { + "period": 159427, + "thread": 27 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 295954, + "thread": 6 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 359872, + "thread": 13 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 542231, + "thread": 26 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 655193, + "thread": 0 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 978095, + "thread": 16 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1108533, + "thread": 24 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1276218, + "thread": 26 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1340315, + "thread": 27 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1565099, + "thread": 5 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1800815, + "thread": 7 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1875041, + "thread": 6 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 1995148, + "thread": 25 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 2242463, + "thread": 19 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 2335119, + "thread": 6 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 2618893, + "thread": 0 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 2732439, + "thread": 24 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 2881586, + "thread": 20 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 3022174, + "thread": 20 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 3173647, + "thread": 7 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 3375559, + "thread": 1 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 3547522, + "thread": 0 + } + }, + { + "amount": "502.815947234", + "slot": { + "period": 3662063, + "thread": 24 + } + }, + { + "amount": "502.815947233", + "slot": { + "period": 3921950, + "thread": 8 + } + } + ], + "AU1zMYbTDYvJpmsQTjCP8dgDTQp9BGKEnjKrhj1hfyy9si6MDVB6": [ + { + "amount": "142.794699710", + "slot": { + "period": 76140, + "thread": 8 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 243343, + "thread": 6 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 388231, + "thread": 24 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 517281, + "thread": 15 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 654521, + "thread": 8 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 958300, + "thread": 6 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1025963, + "thread": 14 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1314112, + "thread": 7 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1411784, + "thread": 27 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1595393, + "thread": 21 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1648292, + "thread": 12 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 1868003, + "thread": 22 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2033438, + "thread": 25 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2188905, + "thread": 22 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2450290, + "thread": 26 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2563198, + "thread": 6 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2791719, + "thread": 16 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 2928472, + "thread": 16 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 3104265, + "thread": 17 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 3231358, + "thread": 22 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 3336117, + "thread": 31 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 3488823, + "thread": 12 + } + }, + { + "amount": "142.794699710", + "slot": { + "period": 3628169, + "thread": 0 + } + }, + { + "amount": "142.794699717", + "slot": { + "period": 3797882, + "thread": 5 + } + } + ], + "AU1zMnCPoH7ys16EPkzAT6b24tXf2aehETEzYLW6B5xvcFbQXVJF": [ + { + "amount": "135.956512198", + "slot": { + "period": 101645, + "thread": 0 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 284275, + "thread": 13 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 370231, + "thread": 23 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 550730, + "thread": 3 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 720261, + "thread": 25 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 952405, + "thread": 22 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1035178, + "thread": 17 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1231926, + "thread": 18 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1423267, + "thread": 31 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1593604, + "thread": 28 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1727938, + "thread": 8 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 1901711, + "thread": 3 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2111878, + "thread": 16 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2227306, + "thread": 8 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2361287, + "thread": 17 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2557387, + "thread": 2 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2674925, + "thread": 19 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 2839043, + "thread": 15 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 3085366, + "thread": 25 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 3142236, + "thread": 21 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 3427758, + "thread": 27 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 3539926, + "thread": 29 + } + }, + { + "amount": "135.956512198", + "slot": { + "period": 3714670, + "thread": 15 + } + }, + { + "amount": "135.956512203", + "slot": { + "period": 3835960, + "thread": 27 + } + } + ], + "AU1zN3cBbEAn8MamZKmG5Z1gCGrjwSVr98VEYiXu9SoeDNjGtU1g": [ + { + "amount": "2916.666666667", + "slot": { + "period": 20703, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 239333, + "thread": 29 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 388715, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 527022, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 777389, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 949761, + "thread": 2 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1034635, + "thread": 25 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1278107, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1429329, + "thread": 1 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1555755, + "thread": 31 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1711233, + "thread": 26 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 1950193, + "thread": 15 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2074566, + "thread": 14 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2169065, + "thread": 8 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2417514, + "thread": 22 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2540320, + "thread": 11 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2648860, + "thread": 24 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 2812313, + "thread": 13 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3109014, + "thread": 10 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3228180, + "thread": 21 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3442580, + "thread": 17 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3506730, + "thread": 26 + } + }, + { + "amount": "2916.666666667", + "slot": { + "period": 3638390, + "thread": 6 + } + }, + { + "amount": "2916.666666659", + "slot": { + "period": 3872721, + "thread": 18 + } + } + ], + "AU1zN5yh8unkZqGQHuu8ogNK1Zd5RvVKEcRDf6ZygSQfhC8eTF3V": [ + { + "amount": "249.925893927", + "slot": { + "period": 34204, + "thread": 14 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 224688, + "thread": 23 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 436213, + "thread": 29 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 540893, + "thread": 5 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 692657, + "thread": 20 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 821726, + "thread": 28 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 992219, + "thread": 18 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 1285126, + "thread": 6 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 1422660, + "thread": 8 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 1491829, + "thread": 28 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 1793538, + "thread": 8 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 1867406, + "thread": 29 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2035676, + "thread": 26 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2273119, + "thread": 26 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2313080, + "thread": 16 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2530558, + "thread": 19 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2633625, + "thread": 10 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 2879894, + "thread": 19 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 3114989, + "thread": 9 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 3173832, + "thread": 0 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 3331946, + "thread": 23 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 3566842, + "thread": 26 + } + }, + { + "amount": "249.925893927", + "slot": { + "period": 3625415, + "thread": 0 + } + }, + { + "amount": "249.925893924", + "slot": { + "period": 3918942, + "thread": 9 + } + } + ], + "AU1zPKB6uzAWangcDAsQcuZSVFDnw9xAvncyMJ1NoRezjrEAcDLk": [ + { + "amount": "191.207954792", + "slot": { + "period": 114530, + "thread": 4 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 278697, + "thread": 5 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 439983, + "thread": 17 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 607647, + "thread": 11 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 694514, + "thread": 9 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 825625, + "thread": 7 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1042279, + "thread": 0 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1236089, + "thread": 4 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1444271, + "thread": 31 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1562010, + "thread": 23 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1715554, + "thread": 5 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 1891629, + "thread": 8 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2090703, + "thread": 13 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2209563, + "thread": 29 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2361599, + "thread": 6 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2506606, + "thread": 1 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2681269, + "thread": 8 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 2795024, + "thread": 26 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 3092223, + "thread": 2 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 3140421, + "thread": 9 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 3410676, + "thread": 1 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 3513509, + "thread": 8 + } + }, + { + "amount": "191.207954792", + "slot": { + "period": 3637135, + "thread": 25 + } + }, + { + "amount": "191.207954804", + "slot": { + "period": 3910367, + "thread": 12 + } + } + ], + "AU1zPton9Qz4XXN7ALrFqsPoee8xEPVSKNcfsiGu7dxhaAKWQviN": [ + { + "amount": "256.855735105", + "slot": { + "period": 153884, + "thread": 21 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 231498, + "thread": 22 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 465240, + "thread": 15 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 538095, + "thread": 15 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 790406, + "thread": 4 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 952828, + "thread": 29 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1093672, + "thread": 18 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1293393, + "thread": 22 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1473237, + "thread": 4 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1550692, + "thread": 9 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1675059, + "thread": 29 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 1963752, + "thread": 12 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2012321, + "thread": 18 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2260382, + "thread": 1 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2378371, + "thread": 24 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2560759, + "thread": 31 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2769994, + "thread": 9 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 2814718, + "thread": 12 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 3009650, + "thread": 23 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 3231124, + "thread": 30 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 3318610, + "thread": 7 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 3577592, + "thread": 15 + } + }, + { + "amount": "256.855735105", + "slot": { + "period": 3748385, + "thread": 9 + } + }, + { + "amount": "256.855735104", + "slot": { + "period": 3810074, + "thread": 25 + } + } + ], + "AU1zQKcUu4LAzYYDzxxx4oTL64zc8aJ3UsjcZQVdCjETiAWD9nc": [ + { + "amount": "365.620712764", + "slot": { + "period": 140783, + "thread": 16 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 181990, + "thread": 14 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 350692, + "thread": 3 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 564185, + "thread": 23 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 810435, + "thread": 7 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 872381, + "thread": 7 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1114641, + "thread": 23 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1209398, + "thread": 11 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1422715, + "thread": 8 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1609999, + "thread": 31 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1668084, + "thread": 11 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 1943264, + "thread": 5 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2110522, + "thread": 23 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2149050, + "thread": 15 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2340459, + "thread": 18 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2600391, + "thread": 2 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2691622, + "thread": 26 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 2869883, + "thread": 4 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 3039621, + "thread": 7 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 3156917, + "thread": 23 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 3330506, + "thread": 13 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 3531953, + "thread": 30 + } + }, + { + "amount": "365.620712764", + "slot": { + "period": 3655187, + "thread": 9 + } + }, + { + "amount": "365.620712768", + "slot": { + "period": 3802815, + "thread": 3 + } + } + ], + "AU1zQbyhBqzfdhkZ5DwZJXSmu1zBV3Dx7nJcmE1AwnoobQgzHPZf": [ + { + "amount": "152.360919069", + "slot": { + "period": 63401, + "thread": 18 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 305665, + "thread": 15 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 475724, + "thread": 19 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 641447, + "thread": 30 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 746901, + "thread": 14 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 941666, + "thread": 31 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1108936, + "thread": 27 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1258391, + "thread": 13 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1331940, + "thread": 14 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1641209, + "thread": 9 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1689409, + "thread": 13 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 1846992, + "thread": 21 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2028397, + "thread": 27 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2167881, + "thread": 22 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2388602, + "thread": 17 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2541817, + "thread": 27 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2758922, + "thread": 27 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 2913991, + "thread": 27 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 3064410, + "thread": 14 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 3229251, + "thread": 31 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 3369022, + "thread": 5 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 3514441, + "thread": 9 + } + }, + { + "amount": "152.360919069", + "slot": { + "period": 3626994, + "thread": 6 + } + }, + { + "amount": "152.360919067", + "slot": { + "period": 3820960, + "thread": 28 + } + } + ], + "AU1zQd4L8HksicEQ98ir41rqZ5h2ym3dnwvVscJyyBdTuDhZJw6C": [ + { + "amount": "125.224632181", + "slot": { + "period": 67480, + "thread": 8 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 175334, + "thread": 13 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 478989, + "thread": 11 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 513700, + "thread": 29 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 660837, + "thread": 2 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 887061, + "thread": 15 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1112818, + "thread": 23 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1209531, + "thread": 9 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1428370, + "thread": 1 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1559854, + "thread": 8 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1673193, + "thread": 30 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 1956693, + "thread": 26 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2070912, + "thread": 14 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2166904, + "thread": 6 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2350804, + "thread": 0 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2564623, + "thread": 25 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2639529, + "thread": 20 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2924576, + "thread": 5 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 2985427, + "thread": 12 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 3256504, + "thread": 5 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 3326388, + "thread": 6 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 3496805, + "thread": 2 + } + }, + { + "amount": "125.224632181", + "slot": { + "period": 3684999, + "thread": 15 + } + }, + { + "amount": "125.224632192", + "slot": { + "period": 3846252, + "thread": 20 + } + } + ], + "AU1zR3dq6nWSEeinkH7YVJeqt2GVmD96ZPYCMoBDpAaNyBEWuHJ": [ + { + "amount": "214.959334104", + "slot": { + "period": 22264, + "thread": 27 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 213006, + "thread": 26 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 477019, + "thread": 25 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 603334, + "thread": 11 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 679235, + "thread": 13 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 961125, + "thread": 29 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1140103, + "thread": 3 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1152023, + "thread": 15 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1478156, + "thread": 3 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1506294, + "thread": 21 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1722516, + "thread": 16 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 1960684, + "thread": 8 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2111501, + "thread": 6 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2278396, + "thread": 13 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2301212, + "thread": 8 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2497077, + "thread": 27 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2676970, + "thread": 20 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 2860309, + "thread": 8 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 3034390, + "thread": 10 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 3257405, + "thread": 7 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 3393183, + "thread": 19 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 3550696, + "thread": 1 + } + }, + { + "amount": "214.959334104", + "slot": { + "period": 3632327, + "thread": 23 + } + }, + { + "amount": "214.959334098", + "slot": { + "period": 3793576, + "thread": 23 + } + } + ], + "AU1zRA6EhhUtHB6onC8wBZGfjva4pSdaEpQJWnjuoCLwzUGrAZqW": [ + { + "amount": "658.930723996", + "slot": { + "period": 32891, + "thread": 8 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 264534, + "thread": 12 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 447752, + "thread": 6 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 617364, + "thread": 18 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 702939, + "thread": 27 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 880386, + "thread": 17 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 984642, + "thread": 14 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 1215382, + "thread": 5 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 1468502, + "thread": 23 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 1629633, + "thread": 3 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 1796139, + "thread": 11 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 1903319, + "thread": 11 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2082612, + "thread": 2 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2170042, + "thread": 3 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2336480, + "thread": 14 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2619709, + "thread": 21 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2725768, + "thread": 13 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 2887695, + "thread": 14 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 3006534, + "thread": 15 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 3205598, + "thread": 20 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 3386311, + "thread": 11 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 3477255, + "thread": 27 + } + }, + { + "amount": "658.930723996", + "slot": { + "period": 3749895, + "thread": 8 + } + }, + { + "amount": "658.930724005", + "slot": { + "period": 3939926, + "thread": 0 + } + } + ], + "AU1zRYMbMNA3rRgtg4tamkV2nwYL2d9P8ZxMwWXt6R3ohANK85SH": [ + { + "amount": "109.376547835", + "slot": { + "period": 160453, + "thread": 17 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 176304, + "thread": 19 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 361208, + "thread": 7 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 508448, + "thread": 23 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 667945, + "thread": 10 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 912447, + "thread": 0 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1089758, + "thread": 17 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1161682, + "thread": 22 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1323054, + "thread": 1 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1536743, + "thread": 25 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1681274, + "thread": 4 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 1831384, + "thread": 31 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2117951, + "thread": 20 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2163853, + "thread": 5 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2329275, + "thread": 23 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2571588, + "thread": 25 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2651717, + "thread": 16 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 2862344, + "thread": 17 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 3050744, + "thread": 22 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 3129617, + "thread": 0 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 3364930, + "thread": 20 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 3457119, + "thread": 20 + } + }, + { + "amount": "109.376547835", + "slot": { + "period": 3687295, + "thread": 9 + } + }, + { + "amount": "109.376547830", + "slot": { + "period": 3868896, + "thread": 20 + } + } + ], + "AU1zRbqczyPGU5CBKvCvVG4VSKEk7FmgGACbVpx2XjFkrxyuXpvR": [ + { + "amount": "56.319548552", + "slot": { + "period": 79168, + "thread": 9 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 305430, + "thread": 4 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 483078, + "thread": 2 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 504836, + "thread": 19 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 714312, + "thread": 6 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 978257, + "thread": 21 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1038360, + "thread": 2 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1314117, + "thread": 7 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1474778, + "thread": 12 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1513515, + "thread": 10 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1771296, + "thread": 11 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 1945781, + "thread": 12 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2086926, + "thread": 29 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2243924, + "thread": 14 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2348337, + "thread": 19 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2538945, + "thread": 6 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2707151, + "thread": 22 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2921308, + "thread": 4 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 2974760, + "thread": 17 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 3129205, + "thread": 19 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 3372438, + "thread": 23 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 3612705, + "thread": 21 + } + }, + { + "amount": "56.319548552", + "slot": { + "period": 3669190, + "thread": 9 + } + }, + { + "amount": "56.319548555", + "slot": { + "period": 3859871, + "thread": 14 + } + } + ], + "AU1zSewnH6uXLeMbkXcMfxZg8rnsXSP1fp7Qq2TTJxAFjNQBxVzG": [ + { + "amount": "230.726158510", + "slot": { + "period": 115548, + "thread": 7 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 252635, + "thread": 14 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 368977, + "thread": 10 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 519150, + "thread": 28 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 736986, + "thread": 0 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 823589, + "thread": 11 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1019546, + "thread": 3 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1312196, + "thread": 26 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1336784, + "thread": 4 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1606015, + "thread": 10 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1648850, + "thread": 23 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 1941326, + "thread": 5 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2075635, + "thread": 8 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2248654, + "thread": 11 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2333221, + "thread": 31 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2570403, + "thread": 30 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2780940, + "thread": 27 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 2907983, + "thread": 3 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 3118632, + "thread": 10 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 3200778, + "thread": 8 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 3401993, + "thread": 19 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 3515469, + "thread": 29 + } + }, + { + "amount": "230.726158510", + "slot": { + "period": 3669869, + "thread": 24 + } + }, + { + "amount": "230.726158518", + "slot": { + "period": 3906258, + "thread": 20 + } + } + ], + "AU1zT1YTqeUAt7m3NYtVyABcp5J8yosB2qnyH9aAxhvqneXfyqfv": [ + { + "amount": "59.075094924", + "slot": { + "period": 19549, + "thread": 27 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 240791, + "thread": 22 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 425218, + "thread": 4 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 621201, + "thread": 10 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 653577, + "thread": 10 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 909859, + "thread": 9 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 987313, + "thread": 29 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 1306048, + "thread": 15 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 1342835, + "thread": 8 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 1521412, + "thread": 31 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 1787876, + "thread": 15 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 1963940, + "thread": 13 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2071520, + "thread": 0 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2153498, + "thread": 16 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2340578, + "thread": 13 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2575353, + "thread": 4 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2685983, + "thread": 25 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 2870443, + "thread": 22 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 3063725, + "thread": 17 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 3155101, + "thread": 29 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 3315625, + "thread": 7 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 3483796, + "thread": 29 + } + }, + { + "amount": "59.075094924", + "slot": { + "period": 3624013, + "thread": 10 + } + }, + { + "amount": "59.075094921", + "slot": { + "period": 3811440, + "thread": 16 + } + } + ], + "AU1zTpjMaqndWzvAhYpbtAJGe5RfMfvWpFEZRZNxDLcQy63Vxqsa": [ + { + "amount": "132.458832862", + "slot": { + "period": 30590, + "thread": 16 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 297442, + "thread": 16 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 376319, + "thread": 10 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 600950, + "thread": 12 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 658621, + "thread": 3 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 887597, + "thread": 11 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1091018, + "thread": 25 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1204952, + "thread": 20 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1340046, + "thread": 17 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1499328, + "thread": 1 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1690052, + "thread": 22 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 1918153, + "thread": 5 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2092370, + "thread": 12 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2194268, + "thread": 29 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2455987, + "thread": 18 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2484079, + "thread": 4 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2663988, + "thread": 18 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 2810071, + "thread": 29 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 3011319, + "thread": 25 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 3157228, + "thread": 23 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 3354335, + "thread": 4 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 3455446, + "thread": 17 + } + }, + { + "amount": "132.458832862", + "slot": { + "period": 3622308, + "thread": 11 + } + }, + { + "amount": "132.458832873", + "slot": { + "period": 3793828, + "thread": 27 + } + } + ], + "AU1zV2HYg49Dy3mudzYg5JGwzYMknP7TjsR9jZfC8ZshTD2EaFK9": [ + { + "amount": "157.434042540", + "slot": { + "period": 64907, + "thread": 9 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 229333, + "thread": 15 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 333703, + "thread": 11 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 499186, + "thread": 19 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 740813, + "thread": 8 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 862876, + "thread": 29 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1026226, + "thread": 23 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1269894, + "thread": 18 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1463894, + "thread": 14 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1626860, + "thread": 24 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1696646, + "thread": 4 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 1916474, + "thread": 18 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2064427, + "thread": 27 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2294236, + "thread": 24 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2345445, + "thread": 25 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2558215, + "thread": 12 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2641741, + "thread": 2 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 2801125, + "thread": 27 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3055129, + "thread": 31 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3218064, + "thread": 5 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3430876, + "thread": 8 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3525559, + "thread": 1 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3759434, + "thread": 28 + } + }, + { + "amount": "157.434042540", + "slot": { + "period": 3884064, + "thread": 22 + } + } + ], + "AU1zV5eSJ1MCwQWY5YW93tBkMyfZeLdrzNCNaw4PjtNwH21ttWXZ": [ + { + "amount": "139.335831056", + "slot": { + "period": 60873, + "thread": 12 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 281007, + "thread": 28 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 372314, + "thread": 4 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 492541, + "thread": 27 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 678698, + "thread": 23 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 846960, + "thread": 20 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1027713, + "thread": 6 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1271523, + "thread": 25 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1465642, + "thread": 7 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1571426, + "thread": 30 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1723648, + "thread": 9 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 1888424, + "thread": 23 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2107829, + "thread": 14 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2257120, + "thread": 5 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2300158, + "thread": 16 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2544347, + "thread": 27 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2674129, + "thread": 8 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 2810214, + "thread": 20 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 3039983, + "thread": 13 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 3235978, + "thread": 0 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 3322719, + "thread": 22 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 3591486, + "thread": 31 + } + }, + { + "amount": "139.335831056", + "slot": { + "period": 3621133, + "thread": 23 + } + }, + { + "amount": "139.335831047", + "slot": { + "period": 3893004, + "thread": 18 + } + } + ], + "AU1zVBRFg9zVVrdV2D8q42MfPZcHDFp9WyxAjJzXivDZuw7Sc9ZC": [ + { + "amount": "195.387124403", + "slot": { + "period": 113272, + "thread": 23 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 308750, + "thread": 28 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 414642, + "thread": 10 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 628693, + "thread": 14 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 796955, + "thread": 26 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 865560, + "thread": 22 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 995277, + "thread": 22 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 1205781, + "thread": 12 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 1423484, + "thread": 5 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 1615934, + "thread": 28 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 1648855, + "thread": 3 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 1841796, + "thread": 31 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2112675, + "thread": 5 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2193667, + "thread": 8 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2349268, + "thread": 22 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2534107, + "thread": 21 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2631779, + "thread": 0 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 2897387, + "thread": 15 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 3101198, + "thread": 3 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 3125540, + "thread": 15 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 3320521, + "thread": 24 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 3517543, + "thread": 18 + } + }, + { + "amount": "195.387124403", + "slot": { + "period": 3626533, + "thread": 0 + } + }, + { + "amount": "195.387124404", + "slot": { + "period": 3943772, + "thread": 16 + } + } + ], + "AU1zVdGpoTUxbQXBPHjB47LokxZBsJk5Ex7VuDqd5dGTUbaGAqNV": [ + { + "amount": "282.852310645", + "slot": { + "period": 103646, + "thread": 17 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 220347, + "thread": 18 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 392408, + "thread": 3 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 598373, + "thread": 5 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 747358, + "thread": 1 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 843822, + "thread": 1 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1094226, + "thread": 20 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1237881, + "thread": 22 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1432830, + "thread": 6 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1595339, + "thread": 24 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1791743, + "thread": 6 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 1911415, + "thread": 28 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2066636, + "thread": 23 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2220310, + "thread": 18 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2429548, + "thread": 19 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2590375, + "thread": 18 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2737539, + "thread": 15 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2851042, + "thread": 18 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 2973559, + "thread": 30 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 3265295, + "thread": 30 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 3291340, + "thread": 24 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 3580619, + "thread": 22 + } + }, + { + "amount": "282.852310645", + "slot": { + "period": 3652343, + "thread": 23 + } + }, + { + "amount": "282.852310647", + "slot": { + "period": 3781641, + "thread": 2 + } + } + ], + "AU1zWhfo9cNi3nMAZixrR5NAVWmDJry6jjrhxLwgBypMPrtRsvZe": [ + { + "amount": "269.259359877", + "slot": { + "period": 59828, + "thread": 20 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 290283, + "thread": 10 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 360540, + "thread": 20 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 624944, + "thread": 14 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 698441, + "thread": 0 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 865514, + "thread": 19 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1144476, + "thread": 5 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1165882, + "thread": 14 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1479187, + "thread": 6 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1585664, + "thread": 23 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1675750, + "thread": 23 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 1878623, + "thread": 20 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2018899, + "thread": 29 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2208367, + "thread": 2 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2454294, + "thread": 23 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2609358, + "thread": 26 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2723625, + "thread": 13 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 2836507, + "thread": 30 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 3003841, + "thread": 21 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 3242608, + "thread": 20 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 3348839, + "thread": 15 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 3605106, + "thread": 6 + } + }, + { + "amount": "269.259359877", + "slot": { + "period": 3748356, + "thread": 18 + } + }, + { + "amount": "269.259359887", + "slot": { + "period": 3856534, + "thread": 1 + } + } + ], + "AU1zWo5PYnNvwck1ZEPG5b6nFZSHmsXb8xtLoCmSXZPMpNbxioES": [ + { + "amount": "140.366947729", + "slot": { + "period": 104961, + "thread": 5 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 202243, + "thread": 26 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 393294, + "thread": 15 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 601545, + "thread": 16 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 700563, + "thread": 7 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 871611, + "thread": 27 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1024124, + "thread": 27 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1168011, + "thread": 17 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1340519, + "thread": 7 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1568531, + "thread": 25 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1665120, + "thread": 8 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 1854489, + "thread": 24 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2017188, + "thread": 2 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2185524, + "thread": 3 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2440161, + "thread": 23 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2541016, + "thread": 14 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2755108, + "thread": 26 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2836687, + "thread": 16 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 2969918, + "thread": 28 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 3127308, + "thread": 12 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 3295965, + "thread": 15 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 3493632, + "thread": 21 + } + }, + { + "amount": "140.366947729", + "slot": { + "period": 3716406, + "thread": 30 + } + }, + { + "amount": "140.366947736", + "slot": { + "period": 3869808, + "thread": 31 + } + } + ], + "AU1zXTKxbdkhCTiiJWDoU9XcDS6j5VaBd9QAc5soqKU7rZT13MXJ": [ + { + "amount": "231.324492092", + "slot": { + "period": 135879, + "thread": 15 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 306847, + "thread": 0 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 418862, + "thread": 26 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 590525, + "thread": 30 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 799915, + "thread": 15 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 828800, + "thread": 30 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1015432, + "thread": 21 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1307224, + "thread": 16 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1358423, + "thread": 29 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1538320, + "thread": 9 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1695989, + "thread": 1 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1840655, + "thread": 3 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 1985723, + "thread": 20 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 2271656, + "thread": 8 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 2371926, + "thread": 14 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 2576079, + "thread": 6 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 2711033, + "thread": 31 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 2799229, + "thread": 11 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 3028449, + "thread": 13 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 3171535, + "thread": 28 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 3289880, + "thread": 12 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 3540003, + "thread": 30 + } + }, + { + "amount": "231.324492092", + "slot": { + "period": 3737547, + "thread": 28 + } + }, + { + "amount": "231.324492088", + "slot": { + "period": 3926937, + "thread": 30 + } + } + ], + "AU1zXWiizH658Arb2xyJSru7CbSEPHJquTKnDmXczQfedm1cJHSd": [ + { + "amount": "144.893424999", + "slot": { + "period": 86669, + "thread": 24 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 278178, + "thread": 4 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 377730, + "thread": 13 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 506066, + "thread": 26 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 747988, + "thread": 20 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 971290, + "thread": 1 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 987241, + "thread": 6 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 1194353, + "thread": 12 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 1354249, + "thread": 16 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 1614453, + "thread": 23 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 1748128, + "thread": 22 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 1936579, + "thread": 2 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2074264, + "thread": 21 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2223246, + "thread": 14 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2437058, + "thread": 14 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2533101, + "thread": 26 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2665515, + "thread": 4 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 2870291, + "thread": 10 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 3085669, + "thread": 25 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 3149192, + "thread": 30 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 3311355, + "thread": 25 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 3602178, + "thread": 22 + } + }, + { + "amount": "144.893424999", + "slot": { + "period": 3656455, + "thread": 2 + } + }, + { + "amount": "144.893425009", + "slot": { + "period": 3831661, + "thread": 6 + } + } + ], + "AU1zXdrkuJuqHPqTWFhYmQSnKRnfAYJpVNdfXKJQeEybRB9uxYJp": [ + { + "amount": "145.095156969", + "slot": { + "period": 88180, + "thread": 29 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 215454, + "thread": 1 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 398275, + "thread": 10 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 535491, + "thread": 3 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 771404, + "thread": 19 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 840680, + "thread": 9 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1137395, + "thread": 11 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1211196, + "thread": 14 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1417374, + "thread": 3 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1486060, + "thread": 6 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1674885, + "thread": 10 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1874453, + "thread": 24 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 1982114, + "thread": 26 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 2229263, + "thread": 24 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 2388030, + "thread": 25 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 2505920, + "thread": 28 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 2788590, + "thread": 29 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 2889730, + "thread": 16 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 3079530, + "thread": 28 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 3221764, + "thread": 6 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 3349991, + "thread": 3 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 3549196, + "thread": 5 + } + }, + { + "amount": "145.095156969", + "slot": { + "period": 3690777, + "thread": 9 + } + }, + { + "amount": "145.095156979", + "slot": { + "period": 3903336, + "thread": 13 + } + } + ], + "AU1zY9ihBT7uaVLfniKCBqoFy8Ueko8fQmiexxMvbUPZZxPpU4p8": [ + { + "amount": "275.361059180", + "slot": { + "period": 67947, + "thread": 7 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 309466, + "thread": 24 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 425395, + "thread": 30 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 624310, + "thread": 4 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 765318, + "thread": 10 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 889143, + "thread": 31 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1110740, + "thread": 25 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1264335, + "thread": 31 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1420065, + "thread": 9 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1578671, + "thread": 15 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1779133, + "thread": 21 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 1850014, + "thread": 26 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2027237, + "thread": 27 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2260181, + "thread": 28 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2349904, + "thread": 26 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2589487, + "thread": 21 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2781170, + "thread": 2 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 2879855, + "thread": 15 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 3031754, + "thread": 7 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 3170935, + "thread": 11 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 3289006, + "thread": 19 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 3475961, + "thread": 17 + } + }, + { + "amount": "275.361059180", + "slot": { + "period": 3712096, + "thread": 19 + } + }, + { + "amount": "275.361059174", + "slot": { + "period": 3881192, + "thread": 12 + } + } + ], + "AU1zYDJaYZLiU5KrbJzMxWLhwXjfPxHTrZRPbMfoh4Ni7Fzbnpxo": [ + { + "amount": "126.315394305", + "slot": { + "period": 155956, + "thread": 21 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 300854, + "thread": 1 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 363211, + "thread": 25 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 503743, + "thread": 24 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 760236, + "thread": 14 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 856857, + "thread": 25 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1059015, + "thread": 17 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1215104, + "thread": 29 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1472748, + "thread": 8 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1550289, + "thread": 0 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1718553, + "thread": 2 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 1923560, + "thread": 0 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2062160, + "thread": 5 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2273322, + "thread": 13 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2451250, + "thread": 22 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2530400, + "thread": 5 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2624949, + "thread": 26 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2877497, + "thread": 26 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 2967925, + "thread": 31 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 3232615, + "thread": 17 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 3423875, + "thread": 10 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 3563397, + "thread": 19 + } + }, + { + "amount": "126.315394305", + "slot": { + "period": 3702579, + "thread": 9 + } + }, + { + "amount": "126.315394300", + "slot": { + "period": 3835996, + "thread": 3 + } + } + ], + "AU1zYSBz2wJQkV8Yg5QuSN6DRe8GWwZxRn4U6uYki4nh1xpYdHao": [ + { + "amount": "63.046495574", + "slot": { + "period": 58818, + "thread": 12 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 317394, + "thread": 14 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 342945, + "thread": 29 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 576203, + "thread": 7 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 677858, + "thread": 22 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 851540, + "thread": 20 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1011988, + "thread": 10 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1154517, + "thread": 9 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1404560, + "thread": 19 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1546480, + "thread": 15 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1734808, + "thread": 11 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 1874106, + "thread": 19 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2049955, + "thread": 8 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2209619, + "thread": 12 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2443284, + "thread": 7 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2518672, + "thread": 29 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2662617, + "thread": 3 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 2826282, + "thread": 1 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 3048142, + "thread": 2 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 3184504, + "thread": 19 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 3360267, + "thread": 19 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 3458437, + "thread": 28 + } + }, + { + "amount": "63.046495574", + "slot": { + "period": 3761198, + "thread": 19 + } + }, + { + "amount": "63.046495573", + "slot": { + "period": 3937919, + "thread": 6 + } + } + ], + "AU1zYpfNxES2YFzmAQW7gc4r5XDdUbLZUR6Syk3Udt2zNYJCTXQU": [ + { + "amount": "310.813004453", + "slot": { + "period": 114600, + "thread": 25 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 238431, + "thread": 1 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 366426, + "thread": 10 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 510741, + "thread": 30 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 724286, + "thread": 29 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 971403, + "thread": 20 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1145308, + "thread": 23 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1298982, + "thread": 25 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1415721, + "thread": 29 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1568607, + "thread": 2 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1666298, + "thread": 27 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 1861222, + "thread": 0 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2074337, + "thread": 7 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2219095, + "thread": 30 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2317824, + "thread": 1 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2598905, + "thread": 4 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2706247, + "thread": 8 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2880048, + "thread": 24 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 2989390, + "thread": 0 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 3176321, + "thread": 10 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 3390838, + "thread": 28 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 3519480, + "thread": 29 + } + }, + { + "amount": "310.813004453", + "slot": { + "period": 3632725, + "thread": 29 + } + }, + { + "amount": "310.813004458", + "slot": { + "period": 3832087, + "thread": 24 + } + } + ], + "AU1za8D8ijCsNC9sfDq9ZZjqgf2XxNCGNduRT5repWUE5QewFVqt": [ + { + "amount": "572.307638578", + "slot": { + "period": 27424, + "thread": 28 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 298978, + "thread": 14 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 352666, + "thread": 25 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 561383, + "thread": 10 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 678167, + "thread": 2 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 935532, + "thread": 23 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1065577, + "thread": 7 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1196408, + "thread": 18 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1398790, + "thread": 7 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1512528, + "thread": 12 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1702026, + "thread": 23 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 1907931, + "thread": 15 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2033910, + "thread": 18 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2154028, + "thread": 18 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2458426, + "thread": 1 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2618209, + "thread": 21 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2702114, + "thread": 11 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2852419, + "thread": 25 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 2983804, + "thread": 26 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 3132096, + "thread": 6 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 3321457, + "thread": 12 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 3477149, + "thread": 31 + } + }, + { + "amount": "572.307638578", + "slot": { + "period": 3658963, + "thread": 30 + } + }, + { + "amount": "572.307638581", + "slot": { + "period": 3937284, + "thread": 17 + } + } + ], + "AU1zbAjMtinV6qAkvJAMpPyqEPeV1LL4ip4NBzn7uX2pECYN5UQr": [ + { + "amount": "233.053714249", + "slot": { + "period": 83348, + "thread": 18 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 292580, + "thread": 7 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 366603, + "thread": 4 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 625422, + "thread": 29 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 702024, + "thread": 12 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 957337, + "thread": 15 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1112468, + "thread": 3 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1281374, + "thread": 12 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1342416, + "thread": 20 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1513432, + "thread": 18 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1703813, + "thread": 6 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 1946137, + "thread": 7 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2077514, + "thread": 21 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2202125, + "thread": 5 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2419338, + "thread": 10 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2561183, + "thread": 17 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2624781, + "thread": 21 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 2856515, + "thread": 30 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 3044806, + "thread": 1 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 3252693, + "thread": 12 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 3422530, + "thread": 0 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 3598523, + "thread": 19 + } + }, + { + "amount": "233.053714249", + "slot": { + "period": 3733877, + "thread": 7 + } + }, + { + "amount": "233.053714251", + "slot": { + "period": 3851170, + "thread": 30 + } + } + ], + "AU1zbgPNKrtBAW5iTxikj2BvqAF44RSZjbSodTbSSGbGvXTFV6eE": [ + { + "amount": "170.573878860", + "slot": { + "period": 60509, + "thread": 4 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 256912, + "thread": 20 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 437303, + "thread": 24 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 530618, + "thread": 12 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 736912, + "thread": 1 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 952803, + "thread": 8 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1093762, + "thread": 0 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1214907, + "thread": 10 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1465265, + "thread": 10 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1626346, + "thread": 18 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1691074, + "thread": 27 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 1957520, + "thread": 25 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2069329, + "thread": 18 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2255189, + "thread": 29 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2392276, + "thread": 24 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2537463, + "thread": 1 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2751453, + "thread": 8 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 2800234, + "thread": 2 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 3112484, + "thread": 5 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 3191188, + "thread": 2 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 3411601, + "thread": 27 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 3451644, + "thread": 26 + } + }, + { + "amount": "170.573878860", + "slot": { + "period": 3748167, + "thread": 28 + } + }, + { + "amount": "170.573878866", + "slot": { + "period": 3930373, + "thread": 5 + } + } + ], + "AU1zbvpBV5A69RhJ1dpC8MW3xDU46hvnbTAQdw3TXALENP4spmzu": [ + { + "amount": "148.354223265", + "slot": { + "period": 91102, + "thread": 26 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 209752, + "thread": 27 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 445140, + "thread": 18 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 594150, + "thread": 27 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 698639, + "thread": 3 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 835141, + "thread": 28 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1131309, + "thread": 1 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1225122, + "thread": 2 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1324093, + "thread": 14 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1605665, + "thread": 12 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1714566, + "thread": 29 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1843464, + "thread": 2 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 1981169, + "thread": 22 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 2223614, + "thread": 8 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 2332983, + "thread": 7 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 2531031, + "thread": 0 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 2786191, + "thread": 26 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 2821956, + "thread": 0 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 3085445, + "thread": 16 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 3154508, + "thread": 16 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 3352108, + "thread": 22 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 3506066, + "thread": 0 + } + }, + { + "amount": "148.354223265", + "slot": { + "period": 3739315, + "thread": 24 + } + }, + { + "amount": "148.354223257", + "slot": { + "period": 3785955, + "thread": 19 + } + } + ], + "AU1zcERSGGECzP1m8DqwBHSzYd961waZXgJFa8u9DGju4TsP5LAM": [ + { + "amount": "380.437268109", + "slot": { + "period": 51496, + "thread": 8 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 193162, + "thread": 21 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 476557, + "thread": 10 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 504498, + "thread": 23 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 810192, + "thread": 18 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 969787, + "thread": 17 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1016669, + "thread": 16 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1172638, + "thread": 31 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1399854, + "thread": 1 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1516842, + "thread": 6 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1742885, + "thread": 26 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1880622, + "thread": 27 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 1988956, + "thread": 21 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 2204642, + "thread": 22 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 2454851, + "thread": 17 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 2617139, + "thread": 30 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 2752922, + "thread": 19 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 2884165, + "thread": 17 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 3113771, + "thread": 25 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 3273076, + "thread": 15 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 3299953, + "thread": 19 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 3455005, + "thread": 12 + } + }, + { + "amount": "380.437268109", + "slot": { + "period": 3683486, + "thread": 3 + } + }, + { + "amount": "380.437268104", + "slot": { + "period": 3918384, + "thread": 5 + } + } + ], + "AU1zd5wz5yXRWLziJJBeJWJtbRuqsHaiTAbkqwJ4BrNE2MK4p9vc": [ + { + "amount": "207.841367101", + "slot": { + "period": 43226, + "thread": 8 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 310190, + "thread": 13 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 336002, + "thread": 15 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 626596, + "thread": 19 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 778273, + "thread": 14 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 861716, + "thread": 21 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1083931, + "thread": 0 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1178483, + "thread": 4 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1405615, + "thread": 21 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1630851, + "thread": 13 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1784147, + "thread": 31 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1889894, + "thread": 18 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 1989284, + "thread": 9 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2191310, + "thread": 30 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2419026, + "thread": 29 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2532571, + "thread": 4 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2693778, + "thread": 7 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2903131, + "thread": 24 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 2979438, + "thread": 23 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 3283802, + "thread": 3 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 3417741, + "thread": 23 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 3516154, + "thread": 26 + } + }, + { + "amount": "207.841367101", + "slot": { + "period": 3654600, + "thread": 26 + } + }, + { + "amount": "207.841367108", + "slot": { + "period": 3804351, + "thread": 20 + } + } + ], + "AU1zdGRZVmUSdiRBR1sJQdmf81wTiE2QRdpF6h3qFPcFzyYFZSyW": [ + { + "amount": "58.136181236", + "slot": { + "period": 107687, + "thread": 3 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 179261, + "thread": 4 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 420427, + "thread": 19 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 612714, + "thread": 22 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 730623, + "thread": 9 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 860027, + "thread": 5 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1058910, + "thread": 3 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1183334, + "thread": 5 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1343828, + "thread": 28 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1538640, + "thread": 31 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1805396, + "thread": 4 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 1921346, + "thread": 10 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2137340, + "thread": 30 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2174487, + "thread": 7 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2403331, + "thread": 30 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2558979, + "thread": 26 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2640719, + "thread": 5 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 2860455, + "thread": 0 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 3067230, + "thread": 10 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 3249217, + "thread": 26 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 3332110, + "thread": 1 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 3604186, + "thread": 24 + } + }, + { + "amount": "58.136181236", + "slot": { + "period": 3714416, + "thread": 30 + } + }, + { + "amount": "58.136181234", + "slot": { + "period": 3832025, + "thread": 12 + } + } + ], + "AU1ze5LDCtgjZjZd6QXjvkk8PrJBaFbZTqBGWH5twc7Uv4PkvhKp": [ + { + "amount": "235.300872557", + "slot": { + "period": 95820, + "thread": 15 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 180234, + "thread": 22 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 394601, + "thread": 24 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 536532, + "thread": 23 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 781834, + "thread": 12 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 846250, + "thread": 11 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1074475, + "thread": 31 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1204565, + "thread": 21 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1446195, + "thread": 11 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1524341, + "thread": 3 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1802531, + "thread": 13 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1901721, + "thread": 15 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 1990835, + "thread": 31 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2284840, + "thread": 24 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2382180, + "thread": 23 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2509323, + "thread": 18 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2733146, + "thread": 5 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2828669, + "thread": 12 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 2984478, + "thread": 6 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 3245223, + "thread": 6 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 3397480, + "thread": 22 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 3566086, + "thread": 18 + } + }, + { + "amount": "235.300872557", + "slot": { + "period": 3635874, + "thread": 16 + } + }, + { + "amount": "235.300872563", + "slot": { + "period": 3925109, + "thread": 17 + } + } + ], + "AU1zfLpCLoQ7xRPxvuwBinL97gsUigpDgMJKRixEJ3ga6UEscvT7": [ + { + "amount": "177.664648547", + "slot": { + "period": 141890, + "thread": 4 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 221371, + "thread": 10 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 343029, + "thread": 29 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 504701, + "thread": 22 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 697215, + "thread": 23 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 852816, + "thread": 13 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 985935, + "thread": 18 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 1199946, + "thread": 12 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 1368570, + "thread": 15 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 1482598, + "thread": 10 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 1649544, + "thread": 24 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 1909068, + "thread": 8 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2037165, + "thread": 26 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2194458, + "thread": 2 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2371635, + "thread": 25 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2498698, + "thread": 7 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2754297, + "thread": 11 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 2885562, + "thread": 3 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 3050725, + "thread": 8 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 3171344, + "thread": 3 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 3330558, + "thread": 19 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 3615949, + "thread": 30 + } + }, + { + "amount": "177.664648547", + "slot": { + "period": 3723529, + "thread": 13 + } + }, + { + "amount": "177.664648541", + "slot": { + "period": 3850609, + "thread": 30 + } + } + ], + "AU1zghqUm99WcYnxCza4pjuFPfd7DFfsarZqn6TFgosMkD1WQpbj": [ + { + "amount": "214.637912838", + "slot": { + "period": 80250, + "thread": 14 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 289709, + "thread": 1 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 402356, + "thread": 16 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 523507, + "thread": 11 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 671672, + "thread": 5 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 977001, + "thread": 13 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1104305, + "thread": 6 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1195231, + "thread": 0 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1438331, + "thread": 13 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1504239, + "thread": 14 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1718556, + "thread": 30 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 1948312, + "thread": 7 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2053037, + "thread": 16 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2197910, + "thread": 24 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2395847, + "thread": 19 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2530661, + "thread": 9 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2674429, + "thread": 6 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2930031, + "thread": 3 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 2971494, + "thread": 17 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 3189464, + "thread": 2 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 3394692, + "thread": 7 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 3565435, + "thread": 3 + } + }, + { + "amount": "214.637912838", + "slot": { + "period": 3776272, + "thread": 25 + } + }, + { + "amount": "214.637912834", + "slot": { + "period": 3913054, + "thread": 23 + } + } + ], + "AU1zgseNniWDXDqcGaUGbzca5YFUz8hYGvTrGPA73iQULUr782Nu": [ + { + "amount": "194.907813931", + "slot": { + "period": 86014, + "thread": 29 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 192785, + "thread": 12 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 395023, + "thread": 1 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 601702, + "thread": 19 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 786445, + "thread": 10 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 878676, + "thread": 9 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1143735, + "thread": 27 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1296893, + "thread": 3 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1443645, + "thread": 18 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1517548, + "thread": 6 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1655546, + "thread": 0 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 1940282, + "thread": 20 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2108771, + "thread": 22 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2146197, + "thread": 3 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2374175, + "thread": 18 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2560845, + "thread": 31 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2786179, + "thread": 15 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 2800923, + "thread": 14 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 3062090, + "thread": 21 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 3275521, + "thread": 23 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 3430226, + "thread": 10 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 3509457, + "thread": 21 + } + }, + { + "amount": "194.907813931", + "slot": { + "period": 3633924, + "thread": 18 + } + }, + { + "amount": "194.907813921", + "slot": { + "period": 3926028, + "thread": 9 + } + } + ], + "AU1zgyqN4Q4fWxPffn7G4diw9eASTo8ZzAu9UbmZt5eUjkaHJDcn": [ + { + "amount": "284.809988005", + "slot": { + "period": 43288, + "thread": 20 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 255951, + "thread": 3 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 394256, + "thread": 27 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 537498, + "thread": 16 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 760124, + "thread": 29 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 971802, + "thread": 25 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1141619, + "thread": 30 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1296636, + "thread": 0 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1359286, + "thread": 29 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1538101, + "thread": 13 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1752983, + "thread": 28 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 1967558, + "thread": 21 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2030961, + "thread": 9 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2172432, + "thread": 20 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2297740, + "thread": 24 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2508350, + "thread": 4 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2746233, + "thread": 8 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 2874878, + "thread": 20 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 3034877, + "thread": 8 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 3231748, + "thread": 13 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 3349590, + "thread": 10 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 3468845, + "thread": 1 + } + }, + { + "amount": "284.809988005", + "slot": { + "period": 3762484, + "thread": 1 + } + }, + { + "amount": "284.809988015", + "slot": { + "period": 3919856, + "thread": 31 + } + } + ], + "AU1zh4ouXsByY7GGJUfsutjK62oWrAzzM2jirBMiMQSx5Szz1JY9": [ + { + "amount": "129.538231089", + "slot": { + "period": 46540, + "thread": 10 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 181977, + "thread": 13 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 400289, + "thread": 1 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 555530, + "thread": 17 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 704971, + "thread": 8 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 959314, + "thread": 7 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 983621, + "thread": 11 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 1280792, + "thread": 16 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 1460384, + "thread": 7 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 1587643, + "thread": 10 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 1782389, + "thread": 11 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 1932659, + "thread": 30 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2077809, + "thread": 5 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2155061, + "thread": 3 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2326378, + "thread": 10 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2493832, + "thread": 14 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2659422, + "thread": 2 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2886243, + "thread": 7 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 2961385, + "thread": 1 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 3175308, + "thread": 1 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 3439916, + "thread": 6 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 3482768, + "thread": 24 + } + }, + { + "amount": "129.538231089", + "slot": { + "period": 3723850, + "thread": 12 + } + }, + { + "amount": "129.538231087", + "slot": { + "period": 3943765, + "thread": 17 + } + } + ], + "AU1zhCYwLwkY1ecwnc4CCWZwsmmNzppE2nvo8kMnjuR2CxSEghkM": [ + { + "amount": "87.797176430", + "slot": { + "period": 100365, + "thread": 21 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 219192, + "thread": 29 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 462491, + "thread": 2 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 622023, + "thread": 10 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 784453, + "thread": 14 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 975914, + "thread": 18 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1091056, + "thread": 7 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1232993, + "thread": 26 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1468873, + "thread": 3 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1543907, + "thread": 17 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1776205, + "thread": 24 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1943406, + "thread": 20 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 1993956, + "thread": 10 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 2291644, + "thread": 20 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 2449216, + "thread": 2 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 2498281, + "thread": 21 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 2727478, + "thread": 9 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 2920578, + "thread": 3 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 3004671, + "thread": 23 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 3149753, + "thread": 13 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 3383558, + "thread": 20 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 3492121, + "thread": 3 + } + }, + { + "amount": "87.797176430", + "slot": { + "period": 3745296, + "thread": 5 + } + }, + { + "amount": "87.797176428", + "slot": { + "period": 3792364, + "thread": 3 + } + } + ], + "AU1zi7V6BcdzbSceiTr99ZVPgMoVyYP19pWfbAbPxAjFiGwiH2QJ": [ + { + "amount": "138.044715245", + "slot": { + "period": 60856, + "thread": 8 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 230929, + "thread": 23 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 337292, + "thread": 8 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 602681, + "thread": 6 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 694776, + "thread": 25 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 970292, + "thread": 13 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1077506, + "thread": 27 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1209663, + "thread": 29 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1478635, + "thread": 17 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1487055, + "thread": 0 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1784015, + "thread": 2 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 1951797, + "thread": 17 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2108066, + "thread": 17 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2217889, + "thread": 29 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2410488, + "thread": 17 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2575055, + "thread": 16 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2691669, + "thread": 8 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 2794613, + "thread": 26 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 3086468, + "thread": 23 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 3220453, + "thread": 28 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 3438683, + "thread": 21 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 3500714, + "thread": 4 + } + }, + { + "amount": "138.044715245", + "slot": { + "period": 3636572, + "thread": 31 + } + }, + { + "amount": "138.044715254", + "slot": { + "period": 3819761, + "thread": 30 + } + } + ], + "AU1zko3JJBYuqUUTKxVr7xrNUMVkpCB3rwwxUmKMAM78VThZyWHz": [ + { + "amount": "455.804486299", + "slot": { + "period": 82289, + "thread": 19 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 254594, + "thread": 23 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 413127, + "thread": 6 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 507884, + "thread": 25 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 658704, + "thread": 26 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 915594, + "thread": 30 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 992516, + "thread": 13 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 1222805, + "thread": 30 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 1339812, + "thread": 3 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 1509167, + "thread": 22 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 1806503, + "thread": 12 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 1879530, + "thread": 0 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2120497, + "thread": 9 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2203788, + "thread": 5 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2411065, + "thread": 17 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2596007, + "thread": 2 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2661072, + "thread": 3 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 2791898, + "thread": 29 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 3121150, + "thread": 13 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 3262377, + "thread": 24 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 3372804, + "thread": 31 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 3569441, + "thread": 8 + } + }, + { + "amount": "455.804486299", + "slot": { + "period": 3640417, + "thread": 8 + } + }, + { + "amount": "455.804486300", + "slot": { + "period": 3852834, + "thread": 26 + } + } + ], + "AU1zkxQzstd415CZwsQtkoU4mTfzsZMQtBGwK2xozB57RPqzkKKY": [ + { + "amount": "67.174972573", + "slot": { + "period": 16741, + "thread": 18 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 323752, + "thread": 0 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 337994, + "thread": 2 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 556666, + "thread": 21 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 684021, + "thread": 24 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 862224, + "thread": 26 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 985773, + "thread": 26 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1292533, + "thread": 4 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1465605, + "thread": 13 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1582926, + "thread": 14 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1651301, + "thread": 28 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1943583, + "thread": 28 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 1980704, + "thread": 2 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 2225811, + "thread": 3 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 2317673, + "thread": 4 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 2606370, + "thread": 8 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 2765356, + "thread": 13 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 2947418, + "thread": 16 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 3010657, + "thread": 3 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 3139379, + "thread": 5 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 3305627, + "thread": 21 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 3606831, + "thread": 3 + } + }, + { + "amount": "67.174972573", + "slot": { + "period": 3619715, + "thread": 8 + } + }, + { + "amount": "67.174972576", + "slot": { + "period": 3887611, + "thread": 31 + } + } + ], + "AU1zm32eV8NzSvELSwFEvW1kuVsHSpdhJoJfR7GzCFaAiyw854YM": [ + { + "amount": "69.070049802", + "slot": { + "period": 151670, + "thread": 9 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 180872, + "thread": 28 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 352921, + "thread": 8 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 648167, + "thread": 21 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 751998, + "thread": 11 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 954977, + "thread": 10 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1041932, + "thread": 10 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1221901, + "thread": 5 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1394094, + "thread": 15 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1521444, + "thread": 14 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1807664, + "thread": 3 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 1900341, + "thread": 20 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2112500, + "thread": 3 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2186391, + "thread": 23 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2307978, + "thread": 16 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2466700, + "thread": 14 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2783469, + "thread": 9 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 2862821, + "thread": 1 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 3086070, + "thread": 31 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 3153136, + "thread": 29 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 3347882, + "thread": 28 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 3453674, + "thread": 1 + } + }, + { + "amount": "69.070049802", + "slot": { + "period": 3646221, + "thread": 18 + } + }, + { + "amount": "69.070049796", + "slot": { + "period": 3844467, + "thread": 9 + } + } + ], + "AU1zqgu6dEoatxDT1p87v4fUAMPg2PRJk8SDzUmkBeCkhjKofZx7": [ + { + "amount": "161.587616554", + "slot": { + "period": 95560, + "thread": 1 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 217847, + "thread": 16 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 393002, + "thread": 23 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 581094, + "thread": 30 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 723046, + "thread": 21 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 860942, + "thread": 18 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1084350, + "thread": 17 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1210563, + "thread": 5 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1323548, + "thread": 21 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1577997, + "thread": 23 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1796435, + "thread": 2 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 1891455, + "thread": 10 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2095492, + "thread": 2 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2150726, + "thread": 12 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2376185, + "thread": 19 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2552089, + "thread": 5 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2750506, + "thread": 19 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2930242, + "thread": 7 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 2982393, + "thread": 3 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 3209350, + "thread": 24 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 3420540, + "thread": 27 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 3603048, + "thread": 21 + } + }, + { + "amount": "161.587616554", + "slot": { + "period": 3620625, + "thread": 18 + } + }, + { + "amount": "161.587616549", + "slot": { + "period": 3935173, + "thread": 4 + } + } + ], + "AU1zsVcBEw5JsohtbigjRN8h5eYbZobd995dt8dwtG95GxtALh1h": [ + { + "amount": "167.174082170", + "slot": { + "period": 121557, + "thread": 3 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 299815, + "thread": 8 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 352181, + "thread": 10 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 522462, + "thread": 31 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 675727, + "thread": 29 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 859959, + "thread": 5 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 994123, + "thread": 24 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 1312714, + "thread": 19 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 1336682, + "thread": 30 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 1589976, + "thread": 8 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 1701026, + "thread": 4 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 1921720, + "thread": 14 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2007958, + "thread": 11 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2162901, + "thread": 30 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2435612, + "thread": 28 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2496499, + "thread": 7 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2732931, + "thread": 10 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2889404, + "thread": 9 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 2989019, + "thread": 21 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 3201491, + "thread": 21 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 3359183, + "thread": 9 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 3473341, + "thread": 6 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 3672914, + "thread": 11 + } + }, + { + "amount": "167.174082170", + "slot": { + "period": 3898094, + "thread": 19 + } + } + ], + "AU1zuDJ9se915zhNVBWdRYT5gmLKpzw6YbDfTX1gX7GRoEbqY4yQ": [ + { + "amount": "506.349910782", + "slot": { + "period": 15497, + "thread": 5 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 300194, + "thread": 30 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 383058, + "thread": 14 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 610093, + "thread": 14 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 775258, + "thread": 11 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 938194, + "thread": 12 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 986239, + "thread": 1 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 1241162, + "thread": 14 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 1379726, + "thread": 9 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 1519250, + "thread": 6 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 1772153, + "thread": 21 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 1933529, + "thread": 11 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2124009, + "thread": 29 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2285051, + "thread": 20 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2427019, + "thread": 11 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2523256, + "thread": 24 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2718029, + "thread": 12 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2807529, + "thread": 29 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 2962050, + "thread": 1 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 3179448, + "thread": 20 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 3379009, + "thread": 5 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 3527220, + "thread": 30 + } + }, + { + "amount": "506.349910782", + "slot": { + "period": 3681706, + "thread": 17 + } + }, + { + "amount": "506.349910787", + "slot": { + "period": 3808851, + "thread": 25 + } + } + ], + "AU1zuXPeCm44odMaMxRqTKFZhd2L1wkXGyWyu8kf5kMph3S1oxRT": [ + { + "amount": "222.940960707", + "slot": { + "period": 114302, + "thread": 15 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 213257, + "thread": 5 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 453493, + "thread": 21 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 574642, + "thread": 5 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 748844, + "thread": 17 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 870400, + "thread": 22 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1026330, + "thread": 24 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1243169, + "thread": 22 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1379209, + "thread": 17 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1637912, + "thread": 30 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1673490, + "thread": 16 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 1874973, + "thread": 12 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2089132, + "thread": 0 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2218772, + "thread": 31 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2407608, + "thread": 27 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2596562, + "thread": 21 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2720035, + "thread": 6 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2933183, + "thread": 25 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 2991088, + "thread": 19 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 3200757, + "thread": 11 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 3329775, + "thread": 0 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 3548220, + "thread": 6 + } + }, + { + "amount": "222.940960707", + "slot": { + "period": 3635572, + "thread": 5 + } + }, + { + "amount": "222.940960706", + "slot": { + "period": 3805988, + "thread": 14 + } + } + ], + "AU1zuhgCDLTr9YYfD7H5er3bRUdJ25Mx6LcDbLzoE67u28am2mwL": [ + { + "amount": "336.482032921", + "slot": { + "period": 156687, + "thread": 7 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 291603, + "thread": 12 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 333932, + "thread": 31 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 498229, + "thread": 13 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 737671, + "thread": 5 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 946747, + "thread": 16 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1049916, + "thread": 16 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1315626, + "thread": 29 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1359588, + "thread": 4 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1519648, + "thread": 25 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1660085, + "thread": 0 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 1967823, + "thread": 20 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2037218, + "thread": 15 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2256119, + "thread": 11 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2324578, + "thread": 18 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2518543, + "thread": 6 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2788990, + "thread": 20 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2829399, + "thread": 3 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 2989023, + "thread": 20 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 3201585, + "thread": 11 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 3372440, + "thread": 4 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 3459045, + "thread": 20 + } + }, + { + "amount": "336.482032921", + "slot": { + "period": 3665512, + "thread": 2 + } + }, + { + "amount": "336.482032931", + "slot": { + "period": 3941782, + "thread": 23 + } + } + ], + "AU1zvJ4FUUWhJH6RD8bycxRPcdf9aMBdwf8nbNtXdyt5qPZSfgRg": [ + { + "amount": "526.858772407", + "slot": { + "period": 70188, + "thread": 8 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 244684, + "thread": 8 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 473578, + "thread": 1 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 593344, + "thread": 30 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 793793, + "thread": 27 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 831188, + "thread": 17 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 998007, + "thread": 30 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1312414, + "thread": 26 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1375644, + "thread": 5 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1541464, + "thread": 11 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1698304, + "thread": 28 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1843804, + "thread": 17 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 1995242, + "thread": 17 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2176256, + "thread": 17 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2353827, + "thread": 16 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2622269, + "thread": 9 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2736068, + "thread": 8 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2801507, + "thread": 7 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 2972993, + "thread": 14 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 3192752, + "thread": 18 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 3316846, + "thread": 8 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 3614659, + "thread": 3 + } + }, + { + "amount": "526.858772407", + "slot": { + "period": 3631101, + "thread": 20 + } + }, + { + "amount": "526.858772399", + "slot": { + "period": 3871817, + "thread": 14 + } + } + ], + "AU1zwru5mTEucc9hq1sAPSactTmTt1nZGGh6oyThd62wkNYG6vcG": [ + { + "amount": "356.280479084", + "slot": { + "period": 108113, + "thread": 28 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 193364, + "thread": 5 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 423177, + "thread": 17 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 618364, + "thread": 22 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 786208, + "thread": 3 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 923312, + "thread": 31 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1148876, + "thread": 1 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1308233, + "thread": 6 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1467946, + "thread": 29 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1500023, + "thread": 26 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1740297, + "thread": 26 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 1956763, + "thread": 7 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2026598, + "thread": 13 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2285240, + "thread": 27 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2399136, + "thread": 23 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2505952, + "thread": 23 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2665946, + "thread": 19 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 2798386, + "thread": 14 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 3107494, + "thread": 23 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 3279620, + "thread": 15 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 3371021, + "thread": 24 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 3529400, + "thread": 19 + } + }, + { + "amount": "356.280479084", + "slot": { + "period": 3670031, + "thread": 16 + } + }, + { + "amount": "356.280479096", + "slot": { + "period": 3824727, + "thread": 12 + } + } + ], + "AU1zxK4qecP6MmpT7Dg8QJz6XTwKcr8qwnVRoGFRtGrz33JNQEaF": [ + { + "amount": "406.000660821", + "slot": { + "period": 49594, + "thread": 5 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 225743, + "thread": 15 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 424349, + "thread": 27 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 619673, + "thread": 2 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 657382, + "thread": 9 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 848071, + "thread": 18 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1144360, + "thread": 29 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1221000, + "thread": 10 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1460039, + "thread": 17 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1644790, + "thread": 31 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1694116, + "thread": 21 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 1851431, + "thread": 10 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2123874, + "thread": 17 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2163803, + "thread": 9 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2391953, + "thread": 23 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2621704, + "thread": 10 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2691988, + "thread": 29 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 2920202, + "thread": 25 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 3078439, + "thread": 29 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 3227205, + "thread": 26 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 3338111, + "thread": 24 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 3457017, + "thread": 7 + } + }, + { + "amount": "406.000660821", + "slot": { + "period": 3728698, + "thread": 14 + } + }, + { + "amount": "406.000660816", + "slot": { + "period": 3825527, + "thread": 12 + } + } + ], + "AU1zxX6bBjZUUSryQDgiugWLaerCBzVd3u6vNuuzC5vaQv452WoY": [ + { + "amount": "129.679131716", + "slot": { + "period": 74369, + "thread": 19 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 236091, + "thread": 30 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 488819, + "thread": 21 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 617535, + "thread": 26 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 789150, + "thread": 2 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 829306, + "thread": 13 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1078683, + "thread": 20 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1227612, + "thread": 8 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1426375, + "thread": 10 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1615979, + "thread": 10 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1759189, + "thread": 16 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1941765, + "thread": 16 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 1982231, + "thread": 16 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2144978, + "thread": 2 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2406134, + "thread": 23 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2489126, + "thread": 26 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2787212, + "thread": 12 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2900016, + "thread": 16 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 2968075, + "thread": 13 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 3141129, + "thread": 20 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 3416452, + "thread": 27 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 3556237, + "thread": 3 + } + }, + { + "amount": "129.679131716", + "slot": { + "period": 3661154, + "thread": 6 + } + }, + { + "amount": "129.679131719", + "slot": { + "period": 3808296, + "thread": 22 + } + } + ], + "AU1zyLkRQDnx3zCX84iDVtYsXgXpRPSszc315qTGAeqpev7p7DVT": [ + { + "amount": "110.549592616", + "slot": { + "period": 57367, + "thread": 13 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 258428, + "thread": 17 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 384686, + "thread": 31 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 610260, + "thread": 14 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 681393, + "thread": 24 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 851703, + "thread": 7 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 999721, + "thread": 24 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 1252245, + "thread": 3 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 1477644, + "thread": 19 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 1481097, + "thread": 15 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 1654712, + "thread": 11 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 1900850, + "thread": 13 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2034363, + "thread": 4 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2262165, + "thread": 5 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2457829, + "thread": 13 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2478446, + "thread": 8 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2703400, + "thread": 7 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2901133, + "thread": 6 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 2987879, + "thread": 23 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 3268883, + "thread": 23 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 3444880, + "thread": 6 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 3490055, + "thread": 23 + } + }, + { + "amount": "110.549592616", + "slot": { + "period": 3778967, + "thread": 30 + } + }, + { + "amount": "110.549592618", + "slot": { + "period": 3800180, + "thread": 13 + } + } + ], + "AU1zyYAtLD22SsdqTJP41cpoyL2pTgSkfUYPbM6EinVffzsktJVG": [ + { + "amount": "248.558616742", + "slot": { + "period": 127639, + "thread": 22 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 174591, + "thread": 9 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 327535, + "thread": 5 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 614265, + "thread": 7 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 755373, + "thread": 26 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 880417, + "thread": 24 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1122084, + "thread": 21 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1227748, + "thread": 21 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1408251, + "thread": 27 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1554660, + "thread": 29 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1685634, + "thread": 7 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 1831004, + "thread": 6 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2065799, + "thread": 7 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2251247, + "thread": 21 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2373788, + "thread": 22 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2570024, + "thread": 25 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2768227, + "thread": 8 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 2820510, + "thread": 8 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3071306, + "thread": 30 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3211311, + "thread": 26 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3332965, + "thread": 27 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3588908, + "thread": 24 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3744189, + "thread": 22 + } + }, + { + "amount": "248.558616742", + "slot": { + "period": 3866711, + "thread": 12 + } + } + ], + "AU1zzaxfojdX9MUhM5QhFyCUL1QEzN9zsVKwYMypfL8pHpbFLR18": [ + { + "amount": "103.232150910", + "slot": { + "period": 91299, + "thread": 15 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 274155, + "thread": 19 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 488621, + "thread": 9 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 509230, + "thread": 27 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 787454, + "thread": 11 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 886347, + "thread": 18 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1042733, + "thread": 16 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1263388, + "thread": 14 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1429275, + "thread": 9 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1578323, + "thread": 0 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1680778, + "thread": 21 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 1886153, + "thread": 21 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2085477, + "thread": 6 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2256796, + "thread": 22 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2415213, + "thread": 11 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2619135, + "thread": 23 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2756821, + "thread": 12 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 2841792, + "thread": 21 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 3033496, + "thread": 13 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 3278229, + "thread": 8 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 3346368, + "thread": 29 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 3531005, + "thread": 20 + } + }, + { + "amount": "103.232150910", + "slot": { + "period": 3669313, + "thread": 24 + } + }, + { + "amount": "103.232150921", + "slot": { + "period": 3857787, + "thread": 28 + } + } + ] } \ No newline at end of file diff --git a/massa-node/base_config/initial_ledger.json b/massa-node/base_config/initial_ledger.json index 34dcd8e06ad..b946e69465d 100644 --- a/massa-node/base_config/initial_ledger.json +++ b/massa-node/base_config/initial_ledger.json @@ -1,32 +1,120997 @@ { - "AU1wN8rn4SkwYSTDF3dHFY4U28KtsqKL1NnEjDZhHnHEy6cEQm53": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - }, - "AU17Prntejq6G4Rwj5tpn6nnuniNAvV5atP1Um6Ujg3tGebsG1jR": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - }, - "AU12w3XtFaRCSeda3dwR4mnV7buET97KZ4TXnGCE8gY9F9aNzY1Yh": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - }, - "AU12Kqf1GkNGqByGLXrzBCAN6uZUdgtwyAE5MGq5brSeL1hdaxTZx": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - }, - "AU1XfpV1kwMnZXVBx3rv5Rm5fRWB72nGsva1ogKt7KF9AH3EzLV1": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - }, - "AU12QC7C5JsndymvDbnydFNP3bVaH2mR9Lcjaa4wgiJM4bTgTy2KM": { - "balance": "1000000000", - "datastore": [], - "bytecode": [] - } + "AU1126Ex9N1bxdz16uwySmDXzWrkowSq4qZik4pEh8KzDXumWoUV": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU112A4aj81U2EdXDvHbsKD472iCnzTUJ9cUv417VUqamxgCKa3j": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU112Bz7nqa9REzufdnH1mn7enYLVYasLQJceAhrZ9TopXhEoNzq": { + "balance": "1527.701322574", + "bytecode": [], + "datastore": [] + }, + "AU112PMUsYDVcCBBVBybuCewju6cxqvQ22U4Eb67wE6mJgqBXPNP": { + "balance": "6.808004871", + "bytecode": [], + "datastore": [] + }, + "AU113ArftVQdR2vo9PN6iEYpcFuuuBM5izQvWqeb5agygSh3t95k": { + "balance": "2357.432263162", + "bytecode": [], + "datastore": [] + }, + "AU113L2YTckUQwootVfsGjxAvvjXLuHgBEgow9kHvkkCwQ9VMfZF": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU113L4FJ2Dp6tGTBqsLD7ZsW39aEBoo8ym8WJVW3mzpbURfZaMb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU11424F2aNEeXPLxm3Cm6Y5C9eQzB7aYVdG7sDYCWo6AQkpSSv7": { + "balance": "3047.403617109", + "bytecode": [], + "datastore": [] + }, + "AU11442vaNxYwoTQPmCSwNp1Dv1wfxUbJcw7GsKHrC5aZjVrSDd9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU114MNzGWd1JSju8hbkpc2L7VcT1jmoXSN6D3W9gUzajx5vTDLg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU114S3yaeGBC17QNGsnA6FpUJFQYrvTEa22eQBex4CbmU8SnV69": { + "balance": "4179.292993723", + "bytecode": [], + "datastore": [] + }, + "AU114YEi6M3nFespArQGyRUW3FsPbLHhbpdrxvggTqH3Vt1uHBET": { + "balance": "3.287810148", + "bytecode": [], + "datastore": [] + }, + "AU115R1cyTsiY25Kxb5q8yznsjAq1eexa6dQRbrLXY9HPykQrYRt": { + "balance": "1885.079416061", + "bytecode": [], + "datastore": [] + }, + "AU115bAiRmum3MYuBLdAMKkTGpjZdSNatuMeBfRah4DV8RpPHMPw": { + "balance": "3554.050701585", + "bytecode": [], + "datastore": [] + }, + "AU116ApSs2mEWgGFjEiKHJ1yheymafyJRmAapJx4vkEenVZyuLSB": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU116KWT2bAWmAUCGirrfVTbQZeN2tT2scb1PvubGSTPPkJBGEj3": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU116wib3VLrksZCRGGrGwzYa4d5PtXcwvPJpj8jPJXNytbPAhNG": { + "balance": "586.344776640", + "bytecode": [], + "datastore": [] + }, + "AU116xZZ94wa78ydaEAC7YfrJxuuWyJWMTw7ygHGyXXPNiFLDumv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU117B7eFcrnC35coQsxGJT38QJ246v9p281HUtcDvtcYHJKvZTQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU117SGn9khipEvA1Hj244tFswJhNPkYHrNjuanFg9kYoYo6LF5": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU117iNFPrPE2qX3KgFQQ2LMV4WjbKE35SZtfRPb9ixrBjKLmLpq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU117jgzeeTmwiZPshn9mSSHeePfQ9dxhiyh21nxCJwpKFHaMpgd": { + "balance": "562.403235695", + "bytecode": [], + "datastore": [] + }, + "AU118A5oRic5gaUiCQz2McbPaX2rTkMN6s8LrM5L6MXhYQpFVh2M": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU118khuGCs1VdknNp8cAPEPMnwP3WhbEErUeUauVFUFPSq8gYph": { + "balance": "4630.350742746", + "bytecode": [], + "datastore": [] + }, + "AU1194wg4FGDzz8gBqYWju3BRsScRb7ATfnL9c1J5XRkpvKpDdvF": { + "balance": "1597.402044334", + "bytecode": [], + "datastore": [] + }, + "AU119Cr4mwnktmVrmsp7VvqQ4TLM1UoFfY6C5HquB8hVxpjKXQ9H": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU119PHyhBLSRTmrkNTRrfbrHkvadyMNEYJKhf7iwsgkNVpYSu8s": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU119XZzBPftgcMKiYGNomDk6DxDXPbZc5WbJVRURTbrjcEU6W4m": { + "balance": "1023.441658432", + "bytecode": [], + "datastore": [] + }, + "AU119sUYkisXJo1id3fFbcex2TuC34D243bQrk9S5eQDDGDRv9eq": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU11AYezrJrTAPD9mg9VZzmdwXu2GYaobFswX9BQCN6r4sLikBze": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU11ArWnFCNKZmqaZEznVoqCZzGAeSUwscdoQmmwgkW5wsYPECfT": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU11AtnU2cdUcCx7vUmKYRFHKSiLmNzL26D7NuYJXMZhiTcXEqdi": { + "balance": "4134.275354789", + "bytecode": [], + "datastore": [] + }, + "AU11B9KsmCote3oFHB7RmL2rEfVKqPAUZmpctTdVWxCUFz3mFSFH": { + "balance": "1256.261507728", + "bytecode": [], + "datastore": [] + }, + "AU11BgiuwBf2XR6iCWwArYm78QTEb5DrHqc13Wmcs2UtpQgKhoxd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU11CGqG4tkpFqQzv58sY3xXVMQP4hE4fM37uJVBFxMNbbRLBf2D": { + "balance": "912.019101711", + "bytecode": [], + "datastore": [] + }, + "AU11CXgwyjJ9kwKhUBQumnspTcK31P6TkqWWCkzrWTTvVJhnxGPD": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU11CsUvvihHpPBH8rnZTWEWhAEHuecAxKAN1qYn2jphCpFRmBZD": { + "balance": "2059.919991988", + "bytecode": [], + "datastore": [] + }, + "AU11CsnhkzaaKfbFc7bAy1MmyPnY32mZYeWX7zg7fGuYw833S96h": { + "balance": "4497.707005969", + "bytecode": [], + "datastore": [] + }, + "AU11D4sYU14YpH7wy6rjGS7k6GF4Wxf2D7vESLLZR77vEjTLqFWv": { + "balance": "6374.162802308", + "bytecode": [], + "datastore": [] + }, + "AU11D7NiqiVrAabEGB6JTAuWVRwKCLUz3GMV4J8impkbBvVod6rU": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU11DJfYGwCg5zMW7iXNsTJfPmV9QXNrqR4fQGRgZPv6AkLXqEYh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU11DWNRkhnNGAotqZ1MRUcU54YjtTrPNzY5jqa26Mexbg6S2QbJ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU11DqgzHJSopHnXdifWQs1vkpU7MFg32do7aA6B1tTo9ghLetrr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU11FfpfnQiPzzAcTCBp9z67szsohgFpZtnn5urPFZW8moMXgv5X": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU11FjA8JpnnbYi6QZEVaWCYBhs8bDX57qpKiTHJkaVNuRi6rSZ6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU11Fk7bUBnEPoZocX1CubU6zycQFpzh7nsQpkxvRUEM28fnyvs3": { + "balance": "976.811931734", + "bytecode": [], + "datastore": [] + }, + "AU11FnCC6CwsCNWMCJ1iaAd8rhR65ZNa5wvnisJF5Yxzom81EZWj": { + "balance": "850.031224572", + "bytecode": [], + "datastore": [] + }, + "AU11HDCgvzkToH1f4nqTY5KbQFbhgziQ14Hqvou9GJ59uDA9BKJt": { + "balance": "4377.432966884", + "bytecode": [], + "datastore": [] + }, + "AU11HDySMAbnNgDGm3KxzLxahXgSu519yLDTTFHQKQRAL3FveoxL": { + "balance": "1326.774822068", + "bytecode": [], + "datastore": [] + }, + "AU11HKB3BGka9VdgZuS9dZYwjjx6LgYxveRpKKxU4UHcRCVjsXCG": { + "balance": "1334.090180300", + "bytecode": [], + "datastore": [] + }, + "AU11HdYzzQvh4VB5ViEJSkjxSMUonQKma8P28Y97CTb73jSLFxYX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU11KXSt589MLY5JYSroaA2L8GGSAUbs8Hp95jf7CBfqpa9Gj9cs": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU11KZhvANpqVoHEnggTUrNdy1hoQh9HGaYNMwb318UqCsprGavr": { + "balance": "554.777623794", + "bytecode": [], + "datastore": [] + }, + "AU11KbX7VV8XCBk9DjiqB7HS229eSJs4LVrt6LHzCCTXXbeSKncF": { + "balance": "298.002747191", + "bytecode": [], + "datastore": [] + }, + "AU11KhiYDDEMuak1QitehQ3uWfDKmMYfHSnS1aZHiGcyVhS8q4hf": { + "balance": "2123.785656676", + "bytecode": [], + "datastore": [] + }, + "AU11KntUQDsuqrM1XX1kytCQnU1aKGCL1Wsmcbd682VFyRtGXcW2": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU11LD4g4caR2V8cKP2WPCoYv9iXKx3TzKNS2PrnhBu64AGQSSaR": { + "balance": "5309.891345553", + "bytecode": [], + "datastore": [] + }, + "AU11LXGkByun4quntNwqQan77NUsZLHommJtK1UYuAVGfmKN5d8c": { + "balance": "2594.554598523", + "bytecode": [], + "datastore": [] + }, + "AU11Lirh98gfE4TRz73sksWsMtAEKA7BFNybQmxV7VzUASFbgajZ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU11LnnUtY8q19Q1pcng7JtbvjsmYsAt5DtbyG3LHkg9C74ybQ7s": { + "balance": "1084.733225334", + "bytecode": [], + "datastore": [] + }, + "AU11MNBKwpNvd3UnaoywR4uoZGAAxRLTY4Nbh1ktHRed29t42zZM": { + "balance": "792.354642860", + "bytecode": [], + "datastore": [] + }, + "AU11MUBgbPbQXsmj78dDrPBr9FQ78o7YMKydySXZoXhsXYhshGaw": { + "balance": "3445.727140931", + "bytecode": [], + "datastore": [] + }, + "AU11Md7sEedNpfpGYTTVRgc5JiHV8tWGaK4yZStT9K1pbTjEtwjX": { + "balance": "1471.665480206", + "bytecode": [], + "datastore": [] + }, + "AU11MfNkjzCdKQ2RDFMTfLoNojoBkCUJULSuNYXy99qczQvQLm5A": { + "balance": "1020.957710919", + "bytecode": [], + "datastore": [] + }, + "AU11MhzNecbKv69737zMipz4Nx87C6CTiNvThTgPgvjqC1aeZDe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU11MkVzkGxFgdfHFXtXNWSUXtYt4y4L6V41XD1UQAWPL3wQD3S1": { + "balance": "1276.054177858", + "bytecode": [], + "datastore": [] + }, + "AU11Mr4Fsmgsfd47xaZxrSBftbLeGAHHhDn1gmhrQeCFJDzRudW7": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU11MtVBM1k1PMrX1aNPwszfK2C4hH3wrEQM9wZKuvLjw9JYBxH6": { + "balance": "1374.211491025", + "bytecode": [], + "datastore": [] + }, + "AU11N8pvEhCrx9AMkhgwyHNwvQknhQ5vLphAiL5EENX872tkUbka": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU11PLhuktK7uRoqZmi9SAVN5n3p8Xaj7KEUda3gsMTxdERyfqhJ": { + "balance": "2376.249964252", + "bytecode": [], + "datastore": [] + }, + "AU11PVWrQLgnmZxzjWXBwHMM9L1ACY7s7QmuGnhKPrG2wqfBjfiZ": { + "balance": "2771.266622995", + "bytecode": [], + "datastore": [] + }, + "AU11PeLrzD4wznEwTjB2pb7RQz4Qp31AUxguFaxGoVLF7NFi6RnM": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU11Pp55rYdFu2H6BfcUkhomw4ToTdBdwCiwoibBHTEiNPtn4GPK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU11PrHLWwh3cuoTXnfPUj9Pn9susdyGGBtWyfZD33Nd3R4DtXFu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU11PwVf65cLzzfKwDHX5SbWJgh9ThaSnFrbrTssRKTnBYwysEWB": { + "balance": "1389.224020599", + "bytecode": [], + "datastore": [] + }, + "AU11Q4YiNkcDTv8CJTJhJRwZLMcfstkDNyk5eRFTeXGseMF8F7Cu": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU11Q5bboCX35cUUbfcFQMqUGaMVFc5FREJbP1LvHW9ZrcGtjLxU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU11QtW6wwbqncfTfLkUiSUgAX9SFuN6Y5LVjbCEBmAtonQACBxk": { + "balance": "3231.611460581", + "bytecode": [], + "datastore": [] + }, + "AU11QzhJFXChvJwwHgAmY3jxQnCN1wvBVGDo3KCBpqapXBfzJqPM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU11Qzp8kwLsDfQGLpE7Z9uP34jZ8osR53gJWDuoSiFUeepaew7B": { + "balance": "2059.157001840", + "bytecode": [], + "datastore": [] + }, + "AU11RD12Ku8mDboznpcez8zeNmjSz5np7ekJMzn6jtivi4aJ3psg": { + "balance": "753.879298909", + "bytecode": [], + "datastore": [] + }, + "AU11RP7xeTdP9q1NrEehjtromrnouNYFbJhXfUYtXKGAJccu9Tri": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU11RRJ812drLxFnBE1it9HN2kKrACjYvC3jE87iuwjEi2sRPGTP": { + "balance": "5294.067397486", + "bytecode": [], + "datastore": [] + }, + "AU11Rc1Wj7YVN9ZLQput4muLSD8SpC2QLcwboa6JeMPPmFdrjhBS": { + "balance": "4811.285381740", + "bytecode": [], + "datastore": [] + }, + "AU11RuHQuKiJFY3Rf3uvZFJ1UkWtDyqYbCSvhL48o7RN4e8Z4JDK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU11S37Lakp7c48Vb5gXh6RdRRxshYdpjvvj6GzHbJMwgcQCvDwe": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU11S4FKBJuRsd28hSETiJQFWQkvmcgvYqXnAtbguXB4utpBB2Gx": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU11SF4cHj8Z1HTKUYg3UZCDxjG9P1fVt99D6yYzKasVGBARdNqZ": { + "balance": "1358.407891916", + "bytecode": [], + "datastore": [] + }, + "AU11SHXz85E3v8MEjChJTgw5f6uco9EKyHLB68MqFSkQ9EyHTBDv": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU11SHsnuVnK1ReJxQuhh5YLGsa5cdpBw4ZZJsddiqVFYXBUqpr9": { + "balance": "57.915313844", + "bytecode": [], + "datastore": [] + }, + "AU11SW5juBN7rKjK3AeMP8hv6J3UriFBAJoxtRBdpuU6QgsvXsuP": { + "balance": "1553.101003168", + "bytecode": [], + "datastore": [] + }, + "AU12114ok5MM25ta7a555nVT8XV4xBrLKsn6mNtx8c45SGVpFsMuG": { + "balance": "543.642346988", + "bytecode": [], + "datastore": [] + }, + "AU1211b6ndxB7DNerW6MaHyXNTY2S3ghgvW7KjyACo5ZL5aFA7qzx": { + "balance": "275.840258842", + "bytecode": [], + "datastore": [] + }, + "AU1211pLuek5CJ3tFdVGUQLGSfSiK54C2h3wqPE5Mpxu2syUZTY2T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12126CJj1ThTJ7gYGjpsM3SxLkk63MPxvcLreLowS3e3ZHnZCHd": { + "balance": "2616.809855535", + "bytecode": [], + "datastore": [] + }, + "AU12128wtQasZsnsD5dwxPPt5o7iEv9DaWe5oXXMAPmjMp3TbgfZi": { + "balance": "631.981080197", + "bytecode": [], + "datastore": [] + }, + "AU1212KdZAKZe5fT5VXjMUT7mL6LGT7po3RH96q442XpWv1RRSUmW": { + "balance": "4768.150547737", + "bytecode": [], + "datastore": [] + }, + "AU1212hRdbtqMFtLwuh9TPFbs4tcxv6wLDtHzWocBUBiKM5q83vDS": { + "balance": "3733.587139632", + "bytecode": [], + "datastore": [] + }, + "AU1212hmR8Zcmjatp3c4mUxeM1VgRvH7h5SfToV9G5T4rBdX9CDzM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1212riB6XWvDRVe7wX93akx7J3rERR9SaFyMgQiVoQFG8YrCLU9": { + "balance": "1899.245911606", + "bytecode": [], + "datastore": [] + }, + "AU1213JmQezzh8WLxVfZRt98Vd7J2cWhbuW6Z2tfHNAT85Uqzr4Ca": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1213anvRYQ5FszmfJ1EdejqPyrKxUAZnZSHU87zZy7xXmLG2j91": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1213xDzf3majrm7FXNL4edrsXPf2rR1T15VkfJDV23iFgMxJV3k": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12145neckdKej3txkSiCsDxJensay4rYgc1jbpaznqRwXw4UU1f": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1214mgpEtYWd6XqmnhXTtedGSU7wFoi1ksGZaiy1W72mUoa4pKG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121575soS4fqmgmY3LKs1NZbmECFHv5PQBaJXt7Vsq48mqVGT86": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1215PuCFtruiB2rjtb2GLwTbgnN26fcHeyY1zc1fvuZj5MPnox2": { + "balance": "2845.195383484", + "bytecode": [], + "datastore": [] + }, + "AU1215Rt8Rp26XyuZUzz1pC9yyersoeJKzQTsckGt4sbJKHE5SLxP": { + "balance": "1096.920384368", + "bytecode": [], + "datastore": [] + }, + "AU1215g5DFczxmq1iJNAwi9GCrds2Ef4VWhuwzn1vhXjD99pVhaTV": { + "balance": "2301.625782376", + "bytecode": [], + "datastore": [] + }, + "AU1215uE8Sz3TafuMkZFZpo1jxfD6sspy6iVmSSCvchKsUshKf8v4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12167dqpNgYrLSr5dJ9XiLbwNoEg87znXbAHL9pmXqARia2gBjR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1216FN4gcjySRHFPTyzv2zjiJJ1Wea8wodHZNbtp9GDGn9FQ42C": { + "balance": "2611.427357361", + "bytecode": [], + "datastore": [] + }, + "AU1216NMoJt6DU3LFSYoQPCuFHRfoYx4czVySjhERqqVoAQMZx9og": { + "balance": "1400.914623961", + "bytecode": [], + "datastore": [] + }, + "AU1216o1C1WCUxkC1gDNcGXSyQEYJDVpzCJfPiCmYnddiiANKUkV6": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU1216o2yxPq5THLebDRfUQojrZsbqNjFr3SNP6gKq4P56hyVwiG6": { + "balance": "294.668172785", + "bytecode": [], + "datastore": [] + }, + "AU1217YSbQ9BS4DMpa4gTzT27XyRRSXSyh1B6PVci5tLL71f2m4U8": { + "balance": "4581.875063283", + "bytecode": [], + "datastore": [] + }, + "AU1217n6fYFvEo4MDQgmAYzT4qgbRVR5xm1KEsDYz35viqrpJ6tMu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1217oBWgBLzSN7nD7iWrNzcsYWMnjcrXUKo2YJrrZAtv1hmhTyF": { + "balance": "9.732227050", + "bytecode": [], + "datastore": [] + }, + "AU1217r3N9AujGWZGs2vfywfZTed7oPtn8E5DsD5wJEvgzNTZfx5D": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1217xTtZ1NhQ34ZCSiXKjNuLJhg2jFvUQEgXrTChthpacXUtvBW": { + "balance": "3747.021828249", + "bytecode": [], + "datastore": [] + }, + "AU12182zXEDgSLV6vTxh5Lj3YtsiXPTs8dRb8SWDLBHKnyVE81fcA": { + "balance": "1393.735919981", + "bytecode": [], + "datastore": [] + }, + "AU1218BoK21gnwkCtqY9VN5hh7VVazjzzRSwqShUxK6PxoN4ZsySk": { + "balance": "3133.839211845", + "bytecode": [], + "datastore": [] + }, + "AU1218RCpiwpC7mvRZRSk83YqrwYBQbFVuHbx4uHZJkfsHfhLtwZY": { + "balance": "751.544144557", + "bytecode": [], + "datastore": [] + }, + "AU1218bxsq2uuA8431h2SxE88PUf8L8axDok9xRVy5M3W7kvyKtw3": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1218eVFkqbrDaXMKxYZ49Vn8SvUBnPn9QQkXkf1GkwaxVTG365H": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1218tSZZS4BRQKihZkXS6Fo5Kx9tH7r1SEmr99kZS9EDkZCc6eP": { + "balance": "145.394406519", + "bytecode": [], + "datastore": [] + }, + "AU1218usnKK4fuANStBvLDKFYotPAfsPacqcj3a9bkM3CTniWG7jM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1219JTFJr5KQkfp21TtsFPUqg5LTXqindzVJEHttt2tzu39iwRJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1219NHNaogiGZqLEj6pPyQBZvdH1VnECCigiCLPzjD57UajhoNt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121A9HzRFCwRReA4oED8PyV25toArV4zUgXFJGCzhUfqGruA9AG": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU121ASoqQLjd22TMcMQHww4VtjcgvaXa6rCSusTCErzWfeoDt18Y": { + "balance": "1589.595770561", + "bytecode": [], + "datastore": [] + }, + "AU121AiegAakepEn4BQh9nntmCRSjVct3UwQiATpPGdoG85wEcWK6": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121AjP3XF18qPPzetJxsuq1GACJv35Lv8Xx2KA6ikC6pX1Bqbej": { + "balance": "1373.771554525", + "bytecode": [], + "datastore": [] + }, + "AU121Aq7udW752VeckAzgqXzmLMGCiEkBWaz7NHu2qd4djktKGBr3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121Au6C5XLVo7rp4PSzBrY3SfEJzsceigG34iJTPs4D6QKsm67V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121C2KmtvT9TTDeb3ytvXJZiAryjHtZQXpst6D4iXrttmr244sm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121C894Hkd1kK8vw6CVx63TcgNW7XuK561395i2oGKyA2nW3BsN": { + "balance": "1370.033285842", + "bytecode": [], + "datastore": [] + }, + "AU121CFCVc3CR1wJCjAKcXL82FeZj63xxSNZBbznHZmxZmkgLaK8w": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU121CLFv3j9x6jQF1nUP1bCZzVqt1E1VsD7Sxhy6iNYF4oCcyZFp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121CQLrNewVZDgHpnoJYtXWjSNMLumxYdatuSyoEXPoCb3rfwg6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121CXQoR5WdZWzzopnoeQZqBTG6oLwk7aQDzR2JDMnPgDNGggSY": { + "balance": "1757.492674097", + "bytecode": [], + "datastore": [] + }, + "AU121CkQbGGCMWazbHY6EYo6C6Nb5ZemKwQhrqzaoauwhuRWZQm1E": { + "balance": "951.374454217", + "bytecode": [], + "datastore": [] + }, + "AU121Cknu4BHvFGfNxvNkBBozgqRQX9ZJJkLo8CFwycjj1fA4F4WY": { + "balance": "1277.623930560", + "bytecode": [], + "datastore": [] + }, + "AU121DV24Pgav8RQx9kBtWdWvb6N84FFfktzJabWJGLsSdjYGAS9n": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121Dg2nKuUR24y44vBCD9Ww6j2TXvvhJ3XM3smk5tcornsy2Pfq": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU121DngqF9Lf4frGjqzRpL1WWKiTfZtpp3WUvNGf7iXLfheZB6D4": { + "balance": "1680.883813812", + "bytecode": [], + "datastore": [] + }, + "AU121Dw4XMW6ioCR6BbjsZA1axYeGPzQtgo1dgxZDhnnVpdDAc9DM": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU121E4ipmpyJrsnUacjbSQB8H3vnebxnKnJ8d7gbH3wcVPdVZe2p": { + "balance": "1.423034669", + "bytecode": [], + "datastore": [] + }, + "AU121EQBBaedT2SeiyUf5EcSk2apoDtmjr5reqCZiDbqKji4MEEAd": { + "balance": "32.982745571", + "bytecode": [], + "datastore": [] + }, + "AU121EtMLrKahxDxYahvA7ZQACRgeAXaQwiMCUh4UaiCdrpMbAboB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU121FGLFvxaV1KcHwiguYxKctWQ8q9SeVY3EAdogZ3uYtduASVnC": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU121Gc7XwjnJnysHYT5dkFb2t92wHqRG7NeJEKcF4CRmTuK83mkp": { + "balance": "1915.319524670", + "bytecode": [], + "datastore": [] + }, + "AU121GcNJ3pSEFJS7NNoN9mayc5bR8YLg798Ncus53NQJvdWb1jxJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121HCpvcJBawGqVKmHiKFuPhHPLcbvYY9Nx7VsF97fD6bpDpLnr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU121HXgiC5xJkyPTWH3qteYRb9jkSbyxK5NKHKWWfShj4tgv7YE1": { + "balance": "642.844825468", + "bytecode": [], + "datastore": [] + }, + "AU121JFHBbscNQUNpaSNNsrpi5xjLV5UyLfqhdHghCjtmfYPq7suY": { + "balance": "1034.593123301", + "bytecode": [], + "datastore": [] + }, + "AU121JZ6QWBBNmzyospkDCofmBurCTnocySzQcWZ5jxYmq3AL6YJ8": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU121Jg7sptikttrY1F1JyZGPnWDcaJBQZ9G1MRDoMXrCUfv8vzH4": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121JmfN4mCgky6KiWhR9ZUTJ1cdPBQ8xsEYzf61CFBjnrJuTyGk": { + "balance": "1665.438875924", + "bytecode": [], + "datastore": [] + }, + "AU121KNUZiMMzKVaBJmmz5PmFQAvHiNccViZqSySaDbsP1KLFHAz9": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU121KXzZgC38zshsBp5kuzWD2fLYLYPyKvFDDCusSwmebZi324J": { + "balance": "866.313428533", + "bytecode": [], + "datastore": [] + }, + "AU121KonKASf1zhVtFtnbkvG5jHbsjrbDYBvi1vr3mxmnCu4LC9Vp": { + "balance": "1866.636048917", + "bytecode": [], + "datastore": [] + }, + "AU121L9MF3UXiVVAP8MSZ2E2xzuFYVs9ZUHy7k9gKHGoedu2ZinCw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121LBM7SABNn9WMVyZoHD8hGyb58rBGKfTw7iV9ZQmXNBuHVtBw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121LGDncjfGMHraCPynxz2NHQWmH5qChaNFFiPbY2KjNdQgLsoS": { + "balance": "5733.345974082", + "bytecode": [], + "datastore": [] + }, + "AU121LqDDrfVMy4qH3JHyYwGVbJ5P2Nurv3WYKjC3bxNxH5CA3vqK": { + "balance": "2274.591224701", + "bytecode": [], + "datastore": [] + }, + "AU121LsQzuT7VAMjM8XtxLvDM5E8WNBgYtzHpjUCFeNHSJ1NqUjgJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121M3KL4GKKvuqbCKz7J3PDsv1WuniZxj4MFafqXz6WNCn3Hytn": { + "balance": "48.074106302", + "bytecode": [], + "datastore": [] + }, + "AU121M5VE9w4retCNUNUpQikyreUERqo3x4CWPzVH4PUMvdrvyCAn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121ME3WFk9NC6C9fv2QvSmbRpnrJPgWrRaUryhkNyQ14gKLWYsW": { + "balance": "2659.522201877", + "bytecode": [], + "datastore": [] + }, + "AU121MGA3eM3Zd2LhoZVZ8rh8hdrjLNDcdTp1jkcbp4b661S2nCbr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121MP7CL2HsafkxqPsrmS6spU52hWxTz4duQBeZQMrPyK5YcjBF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU121MjNCZgKrVdXjB648t5ZEpH9p5VjXHHTsjMHKjNSYrTxFcFHk": { + "balance": "5476.260075792", + "bytecode": [], + "datastore": [] + }, + "AU121MoXjth4m1RDgRA63v6wZjqFXFivsVGgFvrTk2Zx29uRVbZgf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121MsMZ1onHMsfr7Xt1Bg6tu3KeV5M5e4LMBamyQ9ibWPtpSex9": { + "balance": "1975.542988233", + "bytecode": [], + "datastore": [] + }, + "AU121NJKgSjvGgBthMajU35ENivgYT9BEvEsgzoMcfBnTbeVJQSza": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU121NM4ESvKNhhjeUi6Y133WBiKR9dQ1YA5LK9sUYnkytoEWJARA": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU121NTJ5geKDauJNeSL6jhNQUp8vwGb8HPtB4pvnmFvFCLG2v3UW": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU121NcrCpnPM1mhWMAewS7rNPE5FwkcaCtP4Zh97rhCGWa1TVaqt": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU121NdTtq55HVVaCbdPUyMVsj8zpmLqR1vyZ69kt6dbEaemtZsMw": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU121Nma6fNBPVpbMddKN7YNpFaRYCqxzv57KFvGutpNktdaFg9in": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121PHNkHCnNK5q7qPqConz66cz9dSD3JHfk8nZiRz4WRvpvd4eD": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU121PKv3cRVtuApZFRXfarBq2Dj5h12vif9UuZcx1xnAksi6KseA": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU121PYr9mfhPDS5arXAr46nvwJdj1q4kgLQ2iDuDxsdqeroieiBK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121PeWMHTr7XGmzjaT8hQePi1vR4AS7R5dYhAbrfLaDqo82LmkF": { + "balance": "78.316236511", + "bytecode": [], + "datastore": [] + }, + "AU121Po4SroYeHQggM5D6cuMs3sXTSwFSt4GZdN1ZbpWG3RCrV7iz": { + "balance": "3044.435740351", + "bytecode": [], + "datastore": [] + }, + "AU121PvPPyJtR3E7RGagNipgEuLwBTibrbRnxag45bCFodXxZxHEf": { + "balance": "537.266616358", + "bytecode": [], + "datastore": [] + }, + "AU121Q4EXuZ22xh9UFC36WrjGXBvAYVLHHW3B2g1WAvT4ioFYHv35": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU121QPYg9YU5u6e9HiB4jpJH9ho8pYH5dvNNy7Mw7V4KPW6tQVtr": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121QRSYDhNDgtoWQiEsP3oCxxuuD6AiiEH2X281MmcXmm4Gq7RQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU121Qr3BmZET6GRMzbFRHnAGapX3uNQb7mS1ZTjqYCaNGKumTwkF": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU121R4GEgoGrYsuwmYanL8V27uJTkzuWPzBFSBdkYwnBBcuKqjAT": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU121R8NVkFXfdpi4tWMpFmhFi9DB3ntkSfRjGSivaQFU1Q4tSgVS": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU121RJdWM1cb5NP9rkURjfP8baq5DDKcx7bYNbhj4rx8YiTKk2L9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121RraBkeHLM28KTqQKeNiVJig6w15rYGZd4GJKcgv7DtV8n7Ua": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121RsuV9dAv9gisdRrtsCStYcPH2e8zZ3d2mnua9dbAtVd5TUGG": { + "balance": "1117.532536378", + "bytecode": [], + "datastore": [] + }, + "AU121SNaMxNFDo5ASwrp7jiyMPmgu2ev3gu8YZaVCD7Z56rNzpgUv": { + "balance": "2947.244140402", + "bytecode": [], + "datastore": [] + }, + "AU121SYW7iFF8MrZ5f2gad5LwY5AbxFhREADjQSqhkM9K1sXC5NBk": { + "balance": "1415.451799278", + "bytecode": [], + "datastore": [] + }, + "AU121SfZA9MfGCaKi4gKAwbmiTH4YUMn7YkMokFwR2c28uaA5zMbR": { + "balance": "1764.512248080", + "bytecode": [], + "datastore": [] + }, + "AU121Sg9ZJBAantpMgnrWMJMvRUU8bXtuKUom1XsDmcWo1mVebYvv": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU121SwUaHsbM1wH9pVc118TiFsbb4xFQ24dqFrGzs9F9eigJH1VW": { + "balance": "646.110810557", + "bytecode": [], + "datastore": [] + }, + "AU121TCSEvi6V2KCNJQB34ZoqEqqJ7r4uifLMPuKLxJYXbjCqQ856": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU121TQUZ8ijvfsFgXgTFDRjdaE6h23DhwJAP1qzsLkaCQ8PMurNK": { + "balance": "1631.641477452", + "bytecode": [], + "datastore": [] + }, + "AU121U1KfmUp7zj1cBKsURSB8wPXD6ezh8BeBa34Bov7ztH7QSaRL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121U9Uteq4n9EXTYNbWBtcGJFTxNDkXzszARJSVhZ1FEREFLw91": { + "balance": "5173.395447675", + "bytecode": [], + "datastore": [] + }, + "AU121UJycwtBtHnoxa46TkHxpL81xBVsymNM4JVboXQZ4X8PupUrB": { + "balance": "1591.162816216", + "bytecode": [], + "datastore": [] + }, + "AU121URREU3z6HPZaxRL1fXKyZwRK7bKPmYdwAnB3GYxdTSE1q6ZZ": { + "balance": "1142.698062280", + "bytecode": [], + "datastore": [] + }, + "AU121Ugyf6AzyqDjZLQFZbMdRGKBCqS7vTSiA8CPHbdkU431qyWEx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121Uo1iL12dz98K1zJnqiqZ9N4zB4R2FN6XatNE7y27rvt1zfYZ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU121Uxa7di23TqH7FBzKdPQospBx6tqie2jYiGQV2JMZKcevCTgR": { + "balance": "1115.501242540", + "bytecode": [], + "datastore": [] + }, + "AU121VC4BGXaq1VeMw2KFh8eTShotdwoJkSfWVA3rwtpzHzPHXixC": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU121VQnQJMbVsjsYE5r5mtihG8NwATeQdmDEVtqHCKK3iidPoZBo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121Vk3Wa32RBUSd6wors4cHj5aVa7gjvHYrVqRagQaq733XLTKa": { + "balance": "592.196031122", + "bytecode": [], + "datastore": [] + }, + "AU121VmDtXDFSPsUWaHm5hpQ5dyp67gqzojXvGEi44n7uQwR4wvpG": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121VoNatamzET7f81LvjDtscZncbCssDc1ymnsa452Pa6mqHUWC": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121W5bWaGcJHBaLs9dMch3hg4wgrunaG9MsAeBz83ULAn84YUav": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU121W9ur54sGLhRgj4kXMdzpkRhZZngdufjs8h7uzyfWLhtgq13W": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU121Wfc8o2H9FFxwD96HhCG2qEvsFBHeu6NvRvUaomRnhMfpj2cY": { + "balance": "2320.405418013", + "bytecode": [], + "datastore": [] + }, + "AU121Wxo1bUa7uMKH6XuitjwyU8hadCWt2ZUocJTfASteRtqewGAn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121X6o9wBUgsJbqMDB8ymjX6bZBcWsHV7od2X4rNUdpmbejsqTQ": { + "balance": "3298.246497042", + "bytecode": [], + "datastore": [] + }, + "AU121XNXjzbXuivvq1iN648CfgyJxk6z5EPkWW2TzhjzMQzpHox54": { + "balance": "2215.567222313", + "bytecode": [], + "datastore": [] + }, + "AU121XTEktsFWyiJRV5dnwBNK5mumoK4jcJNEUvBXqSVnEgfxpBQU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121XcUCXYuDRR1zLR2or4W6UJXJAwMqSCK3VmTNGn36YtZp6UzN": { + "balance": "1118.588348606", + "bytecode": [], + "datastore": [] + }, + "AU121YmQpj5GyNTomGZyQFsMe1T71u8o8Sg26t7bs5oUnQtgzcYui": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121YuetZwGRFF1WmCLHy1obHR8nTGrbFpaCvTM5B1pMLEHhr5Ni": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU121ZBcduBGLBB7xiMLMChfspo9iNUeFEHMokc3dpacnTcqctLLW": { + "balance": "2963.395505219", + "bytecode": [], + "datastore": [] + }, + "AU121Zi1q5UQdmUAnZa7Uv7o6r6MexfNAnXkaQXfAMdyEDtG4GB5t": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU121a3nfyRD1epek9F2gdCpFCM6M9d1ZMwXm8p5M9QkrMdrvocJM": { + "balance": "1321.221290026", + "bytecode": [], + "datastore": [] + }, + "AU121aAtAkxUFX4g3ZHXuWXwx2q2TSHHfoWSY937g4gQ4AUGGY7m5": { + "balance": "2836.827500322", + "bytecode": [], + "datastore": [] + }, + "AU121ab2unhApDUEgmUf36nng1pZaFpdBJSYPL8ecSmx75Bkxa99n": { + "balance": "1981.556486257", + "bytecode": [], + "datastore": [] + }, + "AU121b1TzdD4Cwbw79gcTUD9i2nDDY33bKYpXkDDDYKaaGG5bfUZy": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU121bAgtaug4fLrqYZroyXsYxqvTXVDef9NkpyHktrAzVazTU3A1": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU121bFHrqKuyMgBeL89fYCoXacjeBvG9Wass6xzfvdFjVeqwke1u": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121bjXnYEbowfCn5NHwQfpmLaijjB7q5H98XZfzBeLGLdggtr2x": { + "balance": "4532.606268338", + "bytecode": [], + "datastore": [] + }, + "AU121cAnN8mQ8BpKmpp4N3hsauHjrv1WCJmbLGKpfgadufedk5v5k": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121cBgQ41B4BbcpudWxHxbDW1evzd6ipcAofR9yQDHnz2MY6iBS": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU121cDMHf8v1pc65NvSogmRoX7FNB2YjTfu3D41b9xdG9GzSadB": { + "balance": "4585.105236923", + "bytecode": [], + "datastore": [] + }, + "AU121cTnBH7ghCq86bCmmrZVdC4rVYKzATRN7uV1GfstgtRVN8YFx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121cw7pwc3Pmg95UuWHW7B4jLhLRB5Zz9vewWoynnPcVHknikHk": { + "balance": "61410.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121dLLJjniJcbFaJeGJjHuKdtCQc94ksJSkLT9yMtA2mfauTEmL": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU121eynfRYJSwt59xkUyRu6fV7yewLYjiJwPXjNv99z7ixNeCkjp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121fJCktvZb47wo2tvn8HnDvrGeyZEeHPiMMGqCHxEAagcEK8xn": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU121fQMMaecg6CA3EtMyxNRPEUHypKWm5idiinbJkptnoATz721Z": { + "balance": "2219.323253337", + "bytecode": [], + "datastore": [] + }, + "AU121faY8yS3VhW7fsTQ35bDx25eSgmfg4caejUh1EVKAg4f2aspp": { + "balance": "235.486724292", + "bytecode": [], + "datastore": [] + }, + "AU121gFZZG9HUwwTnrmYNSeVsNwSuhQj3jCB97ugdUhracerWXxUR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121gG1XEe8VziAMzrhGYxu3zCTgHdtQiUHxs88DhyK4VwzBcw2X": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU121gVVyoUmsDdwhTfztV7MtjsotAfCEDynrQigidF6fZE94doWW": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU121gaB5ddTNFv4Ac213X1e72WNNafu8MfwKYr5FsDf33UYPGWHH": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU121ggBmHnxYnzuZGVidSL6QVaR8B1AUN7YMWjYXZR4WywUGCEsx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121gnt2eNYGG76LPCtizTZvwjxa8AbuKsTVVRPyif3RV6qctZ2A": { + "balance": "1950.816745621", + "bytecode": [], + "datastore": [] + }, + "AU121h79wnUGd3NmxpThVfRGER1tAJZ1is5HpW3uzGi7WJogaC4GC": { + "balance": "807.790647536", + "bytecode": [], + "datastore": [] + }, + "AU121hdRwkYjQEs3nzp4Vb1G7hjLwmiMna2EPnMk4Buus6NhXDZwT": { + "balance": "725.031015744", + "bytecode": [], + "datastore": [] + }, + "AU121hkWStbeE7fK7VLAsMMp9hWbvbR4i6L5Vmsan9SJmb3FS2DQe": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU121hmarhXpyQfBGZPxzh8Gr4DboVSxK691aPN64WGbxxxbMEh4Y": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU121hzUt8faWd4fkNgtZ9E38vV2tBh1s71hM1QM9qou43VXGcZni": { + "balance": "1884.489703202", + "bytecode": [], + "datastore": [] + }, + "AU121iFY3W6B9x3VA8nZeMy8RyXh8WV4HcjAqY5gjhCDUcUPyp7kC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU121iM3iWQwZGq2FhZXF9AiQF3KmWq1b8hMCEK1b6eCMxQHYeSGv": { + "balance": "672.620124454", + "bytecode": [], + "datastore": [] + }, + "AU121iP6ewDvTQN2WdCptttWi6ruWv1MgHZRdzxL5ue6YJoShtGLw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121iPzZV4F71JitcLto8to1U7MjN9DNmbkjtj9tt6QC4c9mwsZA": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU121iVJQkLqPMFQuoNsSNXtLiMpjr1oo1JGtYH484XR898g7vYKV": { + "balance": "204.203734366", + "bytecode": [], + "datastore": [] + }, + "AU121igr7euif3t9CYGLpaFxXEfVdxHpEk68wy7Ki8y2rKZXrzDca": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU121isJ9muJQaHXxTvHorTFX2G8v28fFmv9ndfxMiHqheVChrDGK": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU121jQLt2HMbBeULe9ETGiEtyhZqqsCpVygCbbXeiw9j479PPgMM": { + "balance": "688.002866453", + "bytecode": [], + "datastore": [] + }, + "AU121jXJymf5TSxFiPDLCnvf3oUEUj6hBPYTBCkGLC4PVnkieXU76": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121jcFqw5Xnt8U1ApXHzWbvp99Lk7vHdsx6bsSxcjTta7LjBW5k": { + "balance": "1448.658434990", + "bytecode": [], + "datastore": [] + }, + "AU121jurYw1XhcQkw7viKdWNVx8x3g9y78w5HJeg166xiLNZKZeFL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121k7V8fhD46Ftb7aiMeqVMQQx1ffpb81c3azNJgKZza82hTPhN": { + "balance": "1506.139749522", + "bytecode": [], + "datastore": [] + }, + "AU121kLQZCZkbosZsPmFA5gC4VJD1JUkrqwQrgmyNiaH8eSXn5W2W": { + "balance": "2275.166395825", + "bytecode": [], + "datastore": [] + }, + "AU121kLS6zYhjKALcyMaR99kSsFFksoFkb8tYGs9JzAfgLtyzTgjH": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU121kSmYzkgiyzkjVsq5bnVJ91BSvW3JDmwKA8n8ym5oExxU5tPq": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU121koQDZWg17H6sRcXibv81FdxLb6CDk4ZFXwNcTy3Q1JzfbJWU": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU121kp313GRu3QZ7eo97aZGkEBLjLufwsFYYVGj9rnaYXHTbTtQc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121kwoikjtuAAbXesSCo8z9sh1XCb8mtuo83U4ktHmqGPen6pX2": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU121mUbUJpMRRznnhJgKC6kxzjLFdFW3vx9GqCZ9Soyrek3WXyBY": { + "balance": "1256.151744140", + "bytecode": [], + "datastore": [] + }, + "AU121nGjM8CWr7XXvku8BfCcmCMuPB759VeCk2z8yBoR3LgTGET92": { + "balance": "1107.199570428", + "bytecode": [], + "datastore": [] + }, + "AU121ngB9jb7QYLA87gVH2YRX7PDb8E311bRAuxWDKL3SUhYYvRym": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU121nqxBY72Ep9VvNPi3Wh4qSAuPkbBLFKf88PXELyqgBDp3RrR5": { + "balance": "1120.547702006", + "bytecode": [], + "datastore": [] + }, + "AU121oDRvEZbNpusBqiWo7p9tXV6t1ZW7Sy6ruPJhwJb8dsQobUaR": { + "balance": "1219.970243741", + "bytecode": [], + "datastore": [] + }, + "AU121oEcxmsUAXbTfAnbZQbAv2FaSeYnLh95W17m1V8UZ4XAENg6P": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU121oEz9xP9Y5n61rEgtMn4EHR1EV3juvpVPK27Jk6AYBUzLzAh8": { + "balance": "205.811873835", + "bytecode": [], + "datastore": [] + }, + "AU121okBtYfkRGD84YCoerXSA2dX9WRuHCs8jQRCSFbTvP9K7Pf6G": { + "balance": "1787.361510524", + "bytecode": [], + "datastore": [] + }, + "AU121oowZDyGkfLJCvMFo5ZmCv2EsBR6A1j7LQRf7x2a2bMHtJQCG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121oypWjBAnWTc5eeWqs2V9hRLXoeJLK3dyvAoXkwKzbM9DzDBw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121p3yM3zeszPeTw1oZFAkPmvRtiuPoBAJ7cUguoQz3fZ4YTeYU": { + "balance": "2202.142325998", + "bytecode": [], + "datastore": [] + }, + "AU121pKLDjLLQFAG5by1EohsHfgytXyqGfJ1ZmQqMseXXyikD7j5e": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU121q8Zb9JhsVykawHwVnRqRP4WwdnEzZNtDzvV8G51fQ7VPVPJJ": { + "balance": "591.522451123", + "bytecode": [], + "datastore": [] + }, + "AU121qEYp3pTmPACtvePDa75QVYYjwwKpAS31ED3o92BxtNiLxVgM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121qiRKg2cb7BuBNVQ9svpVcrpPcm7JWcC4qb2XvhvCojK36QC4": { + "balance": "598.296222627", + "bytecode": [], + "datastore": [] + }, + "AU121qir8EQHTDCRWuKRpz67ahb8ZGiDG8SusPDKyrSSEUtcK3mJv": { + "balance": "818.203427896", + "bytecode": [], + "datastore": [] + }, + "AU121qngub7mJ1HuzTcwevzwcV44LexTCgwPPpcKhgf3LsyAoBoae": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU121qsusutrHUuCz9j2L622abJoixkLWoaUtjcQm1kaRewFLTDWc": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121rYuQSADdAFPC2DYT8uKFNxje6MJscn3FuKtSd9Z5dJsLET9z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121rZczVrXXFKGLJE38zHdQfSaqLiY4uELbnvmsKox76jTgC7Z9": { + "balance": "1362.443417020", + "bytecode": [], + "datastore": [] + }, + "AU121saCXnYUS7jKBuTeccDcRBABiDBcqfBSHvoqq7trj27LcP4oB": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU121siK6vT664Yc1aPxPX4w7AJA9zCNfJEf6jxRxwXidizQGpxeZ": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU121t89UScg4AfKLPCadcYaLtj75WHqQwnJCb9BvdDf5vioVaP9r": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU121t8BEDtRDrY6jtc38X4UkSR37CGH7JKFsBGTzw6CGxaUHyxTM": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU121tNCGbod8qtXgH9AtXWWSdpmQFqpZmf5cf5BG1SA4ZUQnGpMM": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU121tdGjszFbyHdAji9v6VEtwCoeKFiC4rVWeq6uffnECrNx5YCr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU121tnzCGjTgSiWFSVz6xt5yB4bVHhKC29JEG6xoTXMVQp3jxKt7": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU121uEYNXyDD9ESUb4SWvDK86Sk2qSb4RAzdWwHdgwvzRR98vvNU": { + "balance": "533.302851664", + "bytecode": [], + "datastore": [] + }, + "AU121uW5ZywGu8z8PtixUL8ZfqAuvUBTK9edV2xG66XFKhHQzLuBh": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU121uhMK4hCDxUuVu32abFQqkb3tbP9RcuhoTBXs8TvYctz4zMpH": { + "balance": "1239.910543776", + "bytecode": [], + "datastore": [] + }, + "AU121v5kqPh6cbUH5Cim5417yC6BPERwxdnC6DMMMM1ESSYT6Fodg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121vGi1PNLcxke1Xs1nF9iYZAcmJU4t9VfVHVoskFHYXUSBzqjG": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU121vRVQ79xJFaonVszUBNqAGTG49ga9m8zxwYketQqUETbEt72f": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121vWsGkyzzPKc2BtewPC6K9X2x2zbELCqU3Nd2V4TUhcb8dk44": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU121vh3cfufgDe7eGHPxoutLDZwLHdYkSA58Ue9Hoie33P68kYzG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU121vhTrrQ32zRimvMQ2SzK4r2qnDQJYEgcjhxMM2ZUMa8vkrmbC": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU121vtn9BK1TxYpS1McEHpdHikBLUZiixcqAcXFKp7BrRKYjjviP": { + "balance": "2069.407303595", + "bytecode": [], + "datastore": [] + }, + "AU121w38AtJW1kSnpVJM6h1A8Rs4ykZ4fsf81VdkCuAJiczSVzrWB": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU121w5VEx7beu1VNNbUjdKR1XDByKCkXSsDRmjhBD1qyGT7qRXFP": { + "balance": "74.143577732", + "bytecode": [], + "datastore": [] + }, + "AU121w7JS8EQFWtNRYaSgFwQzAVfXhJam241uy5ChxY5sEdPYuPQZ": { + "balance": "694.976301361", + "bytecode": [], + "datastore": [] + }, + "AU121wBdUHRmJstnh9xkRNaq9RW3LVc3QEYCaWuHBoYmRdTsqgymv": { + "balance": "8.312058361", + "bytecode": [], + "datastore": [] + }, + "AU121wZJry5mAxmPjahQ1YE8mtgx3ES73KpL6GyvTZsAwi1sSYS2M": { + "balance": "1426.505525282", + "bytecode": [], + "datastore": [] + }, + "AU121x2Ac9V4jGPcJ2oeFHmEEgHHyWN4RhykjQZy4ZyjYGGPu22qN": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121x2TKpqWoJeFp9mEPouTKn5ivVcyegrU78DvTbknYHbqLyHaj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121xK6kvLm3YFCVbKNobjYYtCMdxyZE8Fo1Ls2HCM2hirC7E6AN": { + "balance": "81.671957320", + "bytecode": [], + "datastore": [] + }, + "AU121xvcwJ3iWq7j8G92pDKuxK9JBgFM3b6iuRAV1kffjUSz35obp": { + "balance": "5.122566851", + "bytecode": [], + "datastore": [] + }, + "AU121y4VVrS5K26KNYDs7ERQjmv2ifAKi8nLybnuunuKiQEg8piNc": { + "balance": "153.556675865", + "bytecode": [], + "datastore": [] + }, + "AU121yajJLzm2edP8b45AANk3kkqZZPVGSLxfmCEc2kG2hDjVmjo4": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU121ykqj6JwaaNHSutQqfWo1tFc2Cdo8uUwhWg7KCmTNFTT6Byzb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU121yy85p1uzJ3UJNHeAdAA6Vgm48EghaWma9FxJZfXGmcLwvn5j": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU121yyPg8kXpsScJxuCTZt2Aq5FsPyBc6azxBUKauqZJgNcxcfXQ": { + "balance": "1907.018420388", + "bytecode": [], + "datastore": [] + }, + "AU121z3JMiLKDA2j44H4qdTLBYK6AxbA3XB25GjRdPpbdm3atNCap": { + "balance": "634.422678883", + "bytecode": [], + "datastore": [] + }, + "AU121z6iypCwWEGcwsusARrZiwsAF4BPQpitgPdYDEMKiYCAdnLcM": { + "balance": "4028.269310256", + "bytecode": [], + "datastore": [] + }, + "AU121zCXt6QR239zh1WkPcQwFfCCJq38tyRNZqyjo8Q83EwMUwSKN": { + "balance": "1476.232571525", + "bytecode": [], + "datastore": [] + }, + "AU121zCZYPi1XuHkm4KV34CrvvqT8ASQH2sXco73cvioMfepFtVF3": { + "balance": "89.189624332", + "bytecode": [], + "datastore": [] + }, + "AU121zLADDhnkzc2dZsu5N7absbweUcw9ruWJhoZzc6StjT548Fb5": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU121zMF8VXujT8KfJZgfEn7CCGFmZS9dCMxsJ6FAB7eGCxFaGLCt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU121zRze2UqCjj3wpRZEAwBqJofLEdwxiBeEwAqgHysuDHdmcpAi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU121zZ9Qc8shvTRdHA39XsijpYNyLjMnC6R5NmPQuhhgERYd8JYu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU121zjAGkDq5CvN1DLEHWM2exwShFbMdytikhfiywiMELaxV16Mc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1221DtLGL9t98nR2q9b4mKkJSRsrfcphcJWBEmrTqh7ov8MuTZ3": { + "balance": "881.426095074", + "bytecode": [], + "datastore": [] + }, + "AU1221EcWfYAvcEaz3Qz5oeSmveXRpJrucycKUUdC7cFqMeFervyL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1221xUM2j1gpnFEys5KFrf7yAzWRZqtDJyEv2ZDZ2X3LTfsj6dX": { + "balance": "697.235046555", + "bytecode": [], + "datastore": [] + }, + "AU1222L71vGMQyv3UAPHV52ncgm4TyYPi4NNdCM1c8UfnPFxqx1ji": { + "balance": "1853.525405214", + "bytecode": [], + "datastore": [] + }, + "AU1222XzkGyRvzKVNPoBUyxB7EuXAApmCpZifYky8atZaF488Uv1u": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1222meysCe7fAtqzZzdH6i5bS8mYVYLaScEUMkUoQ8WYfc4D7aV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1222nHsJHS7PdEybmT3UL43iGGWm6UKKy7wbn6Mrte5Ri3GnwVY": { + "balance": "751.741645544", + "bytecode": [], + "datastore": [] + }, + "AU1222oS7S8NCpG6WPSwdnzw4EiWLJLXizPbH8K6ejUGC5MxQPnn6": { + "balance": "1068.899019727", + "bytecode": [], + "datastore": [] + }, + "AU1222oVL7EowX5VrBw3VWJoMm9FxE1sDLg2qHKpQZZYzhuEUMFYN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1223ZprTqJgXjicJyQNExpWJH9eTr76g7UWCbCKbU7DAwsxVA3H": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1223j5Cq97CmFn3LJVouTmhKUhnu5yx4w3EAFCMhj1o56dBCNL6": { + "balance": "1440.752585846", + "bytecode": [], + "datastore": [] + }, + "AU1223oL2Zk9aWGBKhHJdKhXRsBxA9ivSfUChNtYhPgqXT2jTZjrC": { + "balance": "1819.727106429", + "bytecode": [], + "datastore": [] + }, + "AU1223ouG8jKAVuzHhMwyct7kJ74tL7uvgWdfaYqSGWxazJv8iJj9": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1224HJLitkGaYEA4TNZb9kQQCLN4U6S897vRHbLymPqDay3rspm": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1224Rvn4fVUhvSK9sngun3m9adkbpGkaD55RxW66DLFYR72VZbv": { + "balance": "1544.035193516", + "bytecode": [], + "datastore": [] + }, + "AU1224gPJLrDHdBXhffDpMp8FAQeHgqdkpkkidqsEXCyEbNyTe5LZ": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1224wakoJatSG7RM4mx8JQiP8Pom8SgyuCcPXCQQ7pDjjEzEVip": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12254VbpcH8QUcRBMZzZtJNHk71PziBwVviqeDCQeSg5zypomhF": { + "balance": "1248.018581718", + "bytecode": [], + "datastore": [] + }, + "AU1225NEYkivGgiqnbnpzyRHQ92hs42fKW8JEkXMFkxoqiVrwe4as": { + "balance": "1522.720657477", + "bytecode": [], + "datastore": [] + }, + "AU1225rNfsK1WRJKx4Fdn17MZ9EHLuH8sZXEs2UnNfZ76c9WZ6rXZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1225vHbCbnnvJJ6m6VEuuVcKhyyVqB2V5Ti2FkaUx6zVAkkDB3o": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1225xn7FKUdZCahjQsXjqmkhDrGV78XNpeNa1nbxJPmKkTzEB9j": { + "balance": "45.070988056", + "bytecode": [], + "datastore": [] + }, + "AU12265gExj4HHgGVywCVoJS4qxxB5SfUTRAaL4epmkyGM9GWLLzo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1226Gdm2HN687eCo6AhPEBuFgxemSDYk12VKQbuC1R4DgLa7wRU": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1226SXBXyzqKK1qnQJrgYSgFwi3xSpNaDmGetikQbJCvHG8BkW": { + "balance": "4282.058064418", + "bytecode": [], + "datastore": [] + }, + "AU1226cGxr6Nc7rJLYnny2rGtCkR3jN49DYp5wUKUi6ShAoiT2njL": { + "balance": "72.785509326", + "bytecode": [], + "datastore": [] + }, + "AU1226zC4bS6TC4mGN5eosnLhtFRYJiCVZdi6bG1T2HTcPBjqdVAp": { + "balance": "1957.806314141", + "bytecode": [], + "datastore": [] + }, + "AU1227Lh5H8JauXH18UjFbzzTXe9phs1Z2m6JtZKmD1VLoFn4ZWcf": { + "balance": "3859.690585386", + "bytecode": [], + "datastore": [] + }, + "AU1227LoNpQBymNxwNUmJ8nW9nrWyziMMT6fFpCM176u6BXR4G4X9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1227PY8tJvRAWsoeTgXL6oHyHviwa4ZTFSJ9NB5MfiNuT6mur3c": { + "balance": "1392.200373666", + "bytecode": [], + "datastore": [] + }, + "AU1227x8rqNqgPU85WHZHhw4n2yYwsyCpFuPiyAyUDX3NAiACoRLh": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1227x8zeurQsmLLLtgmyz5owXZV8BWgKKeJFMVUiEnos3RH4f4G": { + "balance": "2650.925360155", + "bytecode": [], + "datastore": [] + }, + "AU1228GB7dD6oagPKXkaTkvsPvhe47e773fZatqkJxCfZB7YUgPur": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1228H4EVgi9dWK6WbKj41fCdtobtVnU7M8kuhmovgf2rwNCRD1E": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1228VehFwtknWa138Hs4bT91GzG5JbKGF3HhdAQhnzcVLFrdAbc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1228bnEt5wrdoHuRRaYBLYm17VDhnvPpxvyijwYtDyGY6vnwFRM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1229JQf6AU8Ks3DEDtnDMMNg2E3fNxiXAd4C5mYXTX41PTrs8cU": { + "balance": "2422.655453140", + "bytecode": [], + "datastore": [] + }, + "AU1229XQFbFmbvFXH7KQdR6hxThR1fXJPHZnZS3ize5W8dGXsowt8": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1229nMARyHAAg1E6pw33VrgpM2a4Qayq76ZxjCFCfkoM894AXSe": { + "balance": "1607.800068849", + "bytecode": [], + "datastore": [] + }, + "AU1229zTHipdhnyxcEsNztyW68dXZY2nju2fxcvEQWwYdZZvPXNQw": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU122A9xJDNyJJ4sRLRtsEfGK465SxzTDFdoUZMfjrk9nTLe7Jt2s": { + "balance": "6011.160199624", + "bytecode": [], + "datastore": [] + }, + "AU122AZNZ7JuVJ8WAXvCriPiUrqterg7oAaob8prcar3qJ6e53BbJ": { + "balance": "894.359678588", + "bytecode": [], + "datastore": [] + }, + "AU122AmdmmFKZWh6ya7fZKdRXd9jv3XTnMAjdvM3AR6ZRWpksZRbz": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU122AtFHsZBSmWHKjcrB54HGajNPaxtH7WdEziqyEgE9oqW26AM7": { + "balance": "1437.689096935", + "bytecode": [], + "datastore": [] + }, + "AU122B5VLPnmNMb6Gg1yE1zaauzFpMdwgP1X95157BmX6H5M7mEwH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU122BLFb7SrNzDsvUt9bvVp2DpCMJjNGgB5BDzk1eNnnMHwJRcAk": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU122BTqg4MZyGtm6tB7NNSGS65wm5Q9rrbH65wsgzteUnjChR9BT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU122Bcep2y2kG5YUtLpcwhjdxM8QJFSEmYypKAEFJ9ooZh7gMH38": { + "balance": "1755.412732007", + "bytecode": [], + "datastore": [] + }, + "AU122BfG3QgrCFcihMAMz8HRJ5hMY5LvMBLe4sgj3PudcTu9JgEB7": { + "balance": "152.475388700", + "bytecode": [], + "datastore": [] + }, + "AU122C3kqxW2U2FJTLTmQiRoFsh4ThKyd1VjEierRv2ff4WgL2XPz": { + "balance": "1999.275438654", + "bytecode": [], + "datastore": [] + }, + "AU122CUDpBemZLYEsAjYWM96EDoddvgZPrcDZZGhMUrXmRgHBz4nC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU122Cc4SPxfHfyUDZV6V12hLNRS5vrj2Rw813gdmgpVB9TV7Wqh4": { + "balance": "1977.910256505", + "bytecode": [], + "datastore": [] + }, + "AU122DN6mCNQvU8qv9rvCSKEM8nuSf1gfENdxPz7CWjUNkEJ8mFhu": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU122DXE6XZK3TyLcWSWroASDreXQFbPp2jwCGm4cWXq6ab8M5Mb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU122Dt8AiS1tc9F1PBiechXUH3WNLBKg5yfxwrxyNAkixT76mbkQ": { + "balance": "665.667561652", + "bytecode": [], + "datastore": [] + }, + "AU122EhpMyEWEvk8f4u9euwYbLgHe6oWoN5sqG6C62b92RKnF2KHb": { + "balance": "734.048913321", + "bytecode": [], + "datastore": [] + }, + "AU122Et7SdEqeD7NnLrB94ERSA2nfN1T2v8FyRJwQX4YjgXM343p7": { + "balance": "648.892851916", + "bytecode": [], + "datastore": [] + }, + "AU122FCvtiu3EGJ6uKvyrAahNqxn9vh5qwkwhZBVpwXmWnKbqGVJY": { + "balance": "5132.328094459", + "bytecode": [], + "datastore": [] + }, + "AU122FHs7AYZip42RRFt7T23ENeM57uvNxDtzPprGbhnMeGHd21mz": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU122FQTxQ5bttjdDeEUjWVoQCUwJUSpT2ktvcGq1zNuuq1F7D3fR": { + "balance": "1722.978072236", + "bytecode": [], + "datastore": [] + }, + "AU122FdJko6TZTbWZeQFNFx9oyvVbCDVEu7S2Miw2ax9uupZdwAGx": { + "balance": "5158.524977647", + "bytecode": [], + "datastore": [] + }, + "AU122Fkb93wwfWjtLFeYFK1AqqE29zj95GqJxEY1c3qFsC587NXG9": { + "balance": "1486.756911789", + "bytecode": [], + "datastore": [] + }, + "AU122GC2VGMmBpctjNM7dyj9eD5H3zeLNoatwBaqd2MwD5EHU5ReU": { + "balance": "92.967581211", + "bytecode": [], + "datastore": [] + }, + "AU122GH3iSbu2bQ9qXxbbL3Lezj4xcW8ZcoL9NvsUNkvwLKks2ba3": { + "balance": "2327.318364865", + "bytecode": [], + "datastore": [] + }, + "AU122GR5mzouEEUaNtCTsUhe2n2nPQE9zNVfHcvA7Yi2kyKPQH5aU": { + "balance": "5413.919023862", + "bytecode": [], + "datastore": [] + }, + "AU122GWL8wJ17nCjwLXDEsjE2VvL3PwAD21L3N6G5X2NGii5iY1UR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU122GffFLyczMzFsaXnyC8aE4ScJRb8EHVd2d7kDwbfdK7kV5fxe": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU122GzqR8yqDFGnWMWxAStz21NyQ51FrSxUriBFL2WVJbhos6VGW": { + "balance": "1812.068684173", + "bytecode": [], + "datastore": [] + }, + "AU122HpqKBKbr8Uyno3FnRAMNQjFwYdQMqgaLygNUuHtUkc4Bpsed": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU122JCZL52qft1X1mN5EU79bCd5ZpS3fARMx5qZxcjA1ivWUQzV1": { + "balance": "3021.335816535", + "bytecode": [], + "datastore": [] + }, + "AU122JEpdr8pabAU2hRWL16zo1439JsqG5WaZCLEWknJUdrwtemSd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU122JPU6Z4ayrHMSssYmNusN8z5tcnVNkx77NRMbdLK6Rhjfa6kX": { + "balance": "584.042010667", + "bytecode": [], + "datastore": [] + }, + "AU122JwSK1fXANPDpaywdfH3tJNnByYUdC9S5NyN6ZbQNnma25KTR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122K21RE7EBRcVbMzEfsMpNZmF5TZwZmPEgW7YoCR71TQDqBRZV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122KDfUpqRZ6HWauVBP1pBATUy6ch8i96ZtuyGJkHHRcymzcFFR": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU122LTzThEgfTZTJZ3swgFuPdX56GJfKMx6M7yievj2mNruA3wft": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU122LVpt5DYHv8hWymK96tdLnnz8zSCPe38k9H2pUpDMJ8RQ6FbF": { + "balance": "985.673485683", + "bytecode": [], + "datastore": [] + }, + "AU122LaL6VQfYg86UXp9HuzZL8swJ3vaTeixdE4q9D7DLUANFaDW3": { + "balance": "1315.574522424", + "bytecode": [], + "datastore": [] + }, + "AU122LdL8vCZsYV3E5W6rq2txd9UFb1MrfJn6i2dkptT7f1AmbLDA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU122Lk5adbPtQXPmPa2gXgaSeyLgNKoXKAk74g41bzYFYqoWrL4g": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU122MPRbX25MoKiwZtE2JA3pG8XCQAffV4iSn44GS3Dgy8psgKnj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122Mf8ALRThCCw2eXBCV42QwVWpfgKPoA5YcHeRFn4xz7YTxhaX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122MhsamUX6gGYwRNe3QmQVSJW2o71vBxi3zJxPee8aSZ2H9sUp": { + "balance": "1495.392591796", + "bytecode": [], + "datastore": [] + }, + "AU122MscrMY8vdKRnN3f52ZzdDzK1fJmCtc8PvmxFmPd1rTNYGAC": { + "balance": "131.188118812", + "bytecode": [], + "datastore": [] + }, + "AU122N3PpTX3R9AnCGev7nhn2cf8NVkWT4abzedgLQ34au82xNaiy": { + "balance": "1468.432954027", + "bytecode": [], + "datastore": [] + }, + "AU122P6GzEz1CTJFXHR85ka5Wn3xb42y7TPVHFp1zuEfAoCtpKwXf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU122PUhhuNikGZzoxeamgvVZYJN8nqYUFPXyhjfsXXLYRvoQzmdV": { + "balance": "620.295084733", + "bytecode": [], + "datastore": [] + }, + "AU122Q1tthWoBT7ARruLhbLvBmv8uJCxZVX5s3VVVKdUJnkQgaQ5L": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU122QQu8TcKxag7cGMqjjeXMeKsZZERveoZcNcmYDVQ8EyqKsAW5": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU122QeE9XqHZjkfocUKjpgJFpGvhUyzxumWbvAGtt4tfnNMoK3cn": { + "balance": "2099.931163496", + "bytecode": [], + "datastore": [] + }, + "AU122QwuxC8XAb4tcPW7CYCNFKk7saz2amXHtjN842ResQSPK1jPQ": { + "balance": "1079.179607019", + "bytecode": [], + "datastore": [] + }, + "AU122QzbAwaWk4DQB1c9p4iscsbwqbbfNbgogXjiGuoW5mmA9q33K": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU122R3BC7jbVqUk5DVG5M2HSRxbFKAyU2kkfkbUPqNL8V8HC1E6i": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU122R3SMpRSb8PxKYQBaTCo8PLfnfcqRLR4Ay6ijidaGziu8RwW2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122R553piJNi2q7pKzrwG7zeHQAvSgkxyCj573ivjLodHcW27T5": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU122RBXe6mxjCjZdf5k8n58MS2237cbG2GTTdAEyYUS84joCDHgY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122RSzQqEG7nKKwmR4pTtXSDwavMqCfwdV9A46H7LsWrJM2twXH": { + "balance": "1512.106684711", + "bytecode": [], + "datastore": [] + }, + "AU122RfosL7vqrDZQ74WQLReNMNiVAnAGVweuojwcwgFDZJyuMtSK": { + "balance": "1597.165584567", + "bytecode": [], + "datastore": [] + }, + "AU122Rhz32vNL7yScj2dY4SLXV8KfbtGdPBVSXNnZRqA2Buas7zHD": { + "balance": "716.174411557", + "bytecode": [], + "datastore": [] + }, + "AU122S4Mc3kkadEfkWCQTY3zSN5HMp2KrqGPP1P3xFTL2eh9uwead": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122SESVLSDuV2abHFegztv4hA9xNAJdjdk4bEn1SRzVwKJWnC6Y": { + "balance": "66.377900849", + "bytecode": [], + "datastore": [] + }, + "AU122SyQYna6CYFwoHoqbbyopAwxVPF1aW5ABHmcGrC5S3kqBLbXA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122T6XxtEbHdfLawEyVQtYhLxx9vdx4b9meQeroDTHuitFgJZzc": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU122UDASSS88qu97cbQPxrXUmqMgXDwFDgB6kaMHUACQdrY6MTWc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU122UgYC9EAYQXsG9mkLE1RZPm2DBQLxjZaxFT7NGyiBYMJgaSL2": { + "balance": "42.844406823", + "bytecode": [], + "datastore": [] + }, + "AU122Uix1cLt95i16tYRLSUqeHmzCfLaJM9MmJc4fjvWNFRjBXRdA": { + "balance": "3441.922221313", + "bytecode": [], + "datastore": [] + }, + "AU122UjW3ZyWB1HiotuUXoVaY1HgjtJPCJhvW6eGVS35qeMAbgfku": { + "balance": "2374.407855693", + "bytecode": [], + "datastore": [] + }, + "AU122VHoyMtJACf3wUYgzKZbkJ9u9ArjZhJzDT9AmEA2BkqrvkKVe": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU122VTGRTURxwPmKZBJdN1kAyoQ6VVMTNiXzghH6BX7mnFzcMJ69": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU122W45BT6ciqAGTX8A7xAjdUKuhkavpVspaJuQdzy8zrzkqYjve": { + "balance": "550.722123300", + "bytecode": [], + "datastore": [] + }, + "AU122W7WAKnEVUdCGaUyqyMZHMevAHfSZyF4bvDZoZkJpC313dGKT": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU122W9YnZyTFNwjqppJW3YJBDGVJYWi3fkc8Sdhk9rESXWR2yK88": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU122WBLqv79NuswCBuCw7nCJNbckxQrYm35QEF2gW2EZE3k3AgPG": { + "balance": "1699.163627262", + "bytecode": [], + "datastore": [] + }, + "AU122WH1HAnJibdjgDEjxjDPWr1rM6aKN29j7BLxJq2CocW8xRya": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU122WsotKGmmTzBnM6sTMGAX27CeSy1y3jJk4CcEjt6aqVnLDnZj": { + "balance": "5522.828068849", + "bytecode": [], + "datastore": [] + }, + "AU122WzNpGq6bK9YAJUgNRn5S5u5g5hsz2NT1FGo3ZJPGN9vLG2Yw": { + "balance": "2529.406548550", + "bytecode": [], + "datastore": [] + }, + "AU122XMhqWNUxpism2CBXH16oa2K6RmW8dWoQNcRjqXWU5JCi58CG": { + "balance": "6094.948839464", + "bytecode": [], + "datastore": [] + }, + "AU122XdNaMC4kzLDzTG4ZGFTx2yDoDgVDbtcJQxEUh7GYQfxG3k29": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122Y5LfZseX1EWCTFefwmpFdV8e2mzx38a3RYDt9E44brbDzATs": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU122Yee6RxLMdU7MJoePG1rTsD3LGSm41GeVfzQ7ff4xstyJhQpr": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122Yp9fhPXFLCM1Vq8ocrNfYcxmGHyayqLPFqaJMmY8oPonAmTq": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU122Yv2EFmdh3EzxAnUuBAnzW3S5BhVdp3od9jV9gt5jGm9H2bNV": { + "balance": "2993.351461152", + "bytecode": [], + "datastore": [] + }, + "AU122Z4SgTFfZAvQ7U22rydKsw38WAZcnHDP27Kh2dPNLMB5qqynV": { + "balance": "951.846612608", + "bytecode": [], + "datastore": [] + }, + "AU122ZQ8oEVtwCYYARWMysZB9wUhcthK6c5B4vLwMok2uc9huyhUt": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU122ZRzs4sWBwkeH9xXTQs62ptPQakw9Bg9BsoQC7V4K4Rf8LBkK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122ZSmY8cskRABq6opa2t81n4FdK6bcKYjM4iaiDxFki2wJnu2F": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU122ZyktaHccB9EoLs13oPFMSMAsvhckutFYh5NM67N1FbKmcAc2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122a18RM4oo5VddArz6Go9MyN2VjRfNkFnijt2SgZUx8879MRYN": { + "balance": "1612.205034441", + "bytecode": [], + "datastore": [] + }, + "AU122a7imkyQAmiDeVorCtaxEqiYpJyZrVeaeRrJr8nSjo3oUtjSd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU122a884CDK6R33uGPRsz3b3Rv1ZGnKEop2iE4cfZwZJVsaMrzKj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU122aPrf3X8P93Kg2uCvfCXEzQrSCjv9xhfMVifCM21oRTgpwb9D": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU122aqV84aLTpL43vhGxG9zJiRMcPpWSUGZCuVDcjABBq1pgxNAc": { + "balance": "1767.634667956", + "bytecode": [], + "datastore": [] + }, + "AU122atWoBGRsqaost5uivRStei87TELQXSiz4END6VXCuypTdnRk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122b3ocN3BSwq5Ff4r1TGnXH73arRdC5EP1JpcbnEpie6YjPVqY": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU122bLDre2tTnUv2LfvbhfmY7SLFrQyRJ9mEZV9yZx4puyb73MsH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122bk1mTtsdupG7YtUVope4zCovyvk4QjnxSPW84Rg3sGsTzKaq": { + "balance": "1575.407188736", + "bytecode": [], + "datastore": [] + }, + "AU122bkpdwvpiPCQxuekmhgghqD5n6nrwfSWTYjfPiwAQULwA9VLj": { + "balance": "3602.426064932", + "bytecode": [], + "datastore": [] + }, + "AU122c2mACjr8PwM2N4meCcxn7ujvHHm4vUxygRmrFupdc2VRWAXZ": { + "balance": "662.761102606", + "bytecode": [], + "datastore": [] + }, + "AU122c36TC6cFT1yP8PvUGqiJmfwFMxBe1oqpYoeji5rwcvbiEgcQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122c6FhKJTVaYhML7tJA6SDofGSPm3cLangpi1gwfkEQv3Ffr9q": { + "balance": "1058.021403032", + "bytecode": [], + "datastore": [] + }, + "AU122cJiLfr9Gb8x2UTdPhKp4uyP1NovgbCSpWpnrkXtEBXt1A7tY": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU122csiwrVZhrmt8aJPZN8wedfNCvQL9uapm18SpFUAb2DZpU4cL": { + "balance": "3270.139051598", + "bytecode": [], + "datastore": [] + }, + "AU122d337mT12xUSEiUETSFFZnkXrDjPbGPKB9VVcxRTjgSG7TEn8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122d6G3KxyxT4pforGAE3hhSJMU8kPevSgNR6VF5T4SbS8S2gWQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122dAcLiV9hxbT99ECo2W4sNJ53GEsEVLpkHEwj1Roqw8XXpiAC": { + "balance": "577.701440883", + "bytecode": [], + "datastore": [] + }, + "AU122dPEt7zk47TbjcbQhTGz7sFjW18B9yRS8GmH1Hwj466AkFxvF": { + "balance": "1478.235530479", + "bytecode": [], + "datastore": [] + }, + "AU122df5FQpn23dXugfdZYMdKaLdimNBcBKeT4iAFjZjqqvrxRvi6": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU122dis7KusoswWyRMpQgnaZraq3X5bd3A5veJnq7kLMAuH7BLFp": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU122dspCPev6GZmEnrkKpbBPFMxEfJAb97QYePumPkjrCtQNrCNj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122dxmw3RfUHkvBZ6m3DsPsdKfg4z9bXRPFfC4iCZhSLbq9y75v": { + "balance": "4989.392129696", + "bytecode": [], + "datastore": [] + }, + "AU122eekEfxUEGApanYNvywhgCJdE3MW7pofUdCEpktnugGgHLnCx": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU122ejm11LwkZaTG7Xj3pQKveHoB1wDj3o6XS5EXpK7U4aPp5mx5": { + "balance": "3078.874559025", + "bytecode": [], + "datastore": [] + }, + "AU122emxS4LVbfjBD6gbv4bp6ZDkjRYEzWRgyrrE3FG2MdGb7SioG": { + "balance": "3885.598776863", + "bytecode": [], + "datastore": [] + }, + "AU122fHvHdQeL48xUhgoqYrBfHJWK6jf1wKpT4RqsmRVBaXqLS176": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122fKDKFNh5Nd5dDkxg55wDjwP2QvEAjgQNYhMUU6kbjtxoFjDC": { + "balance": "2359.499124233", + "bytecode": [], + "datastore": [] + }, + "AU122fdgrLaZ5AxC7gGQmBtCQXYKixyGYnZa59FQ3Hdm1JMMBnpef": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122fn9T9to3NgoEtAysP4Qvnq7jnJnYnszQsqMoYWFvcdeBiKNN": { + "balance": "1338.768423408", + "bytecode": [], + "datastore": [] + }, + "AU122gHGjvFp9yh1v3N78CiU4gp1z3jcfAkqRiNu8rPSc5Zs6Dv13": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU122goVnYghziDMqFh1P97DeVUjJAm6rWYrQmrvPe3cEtiPm8dGM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122hGyFVboEmYDUi6WciuHicEQmXgSgUpcBCXexDxDH6FRpaip6": { + "balance": "1989.039657371", + "bytecode": [], + "datastore": [] + }, + "AU122iYLdu6tJrcX5nYpcz9m23iCa7xAbBQGRHjjWpKDfLp5ZmBEC": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU122iiZWvYkK8XdqTHFNAnv7DC9MVcq22NEebUAkdzqSyQ98775E": { + "balance": "800.170628031", + "bytecode": [], + "datastore": [] + }, + "AU122jBcrBUMFWrFnAwTZRygiBQHJHM2njp4dHtA31CjYdk6UtjaG": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU122jgYv3J8QkE51igzN7EFv5W2Dxc1NqKK5pESjFKTCop3852mS": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU122jhh3evL2eUC3Mh5bnzpo2LGTFsKLixPAjfFyhkNk5d3bQmST": { + "balance": "1909.726002198", + "bytecode": [], + "datastore": [] + }, + "AU122kCvvoqUUG34GijeWKecfy5JqSiLPaDZhcbPKX4o792Q5ReJT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122kjYg4wx9X5b49vq7v4f3htL3VrRcQeFvDLfYCNrojDazESzA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122m3m2xt2TyCvoa2sSs53SfGdKaCHUnSvLxrm3y1oyinjQyQ8d": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU122mJa5TYT1en6mCJvEtk4MJoxbnsWfL8hEP2q13GuBKEY3rLp7": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU122mSETycdJ1DrymG8xMdpCfTNWqqWkq7zfWAxUqavmBEkakMiY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122meb7L5YAp6GNF68XPSA4YYxbgK4dS5P59D37ZCPe12Ntp6eo": { + "balance": "6416.894980803", + "bytecode": [], + "datastore": [] + }, + "AU122mfpcBmTCAEgDzEhj75HobiyZPmiamdDo6rK8ELCQXUQtGafy": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU122mk5CSZfEjnWk57Ra17SbstFXndndjZsfdGw9oZSBkui8f8Ts": { + "balance": "1377.489308450", + "bytecode": [], + "datastore": [] + }, + "AU122mqkR8b2at3diVE1NNfXBaA81JFHMicAentKV3sni88FnqNcc": { + "balance": "2188.888669717", + "bytecode": [], + "datastore": [] + }, + "AU122mrBzNuLyZwuZvQyRm6sLHxkGLMWZi9iDtxxnD76KFdcK2UCy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122mvssvBmdytztUKdBqJHv3UB4qob9vEunfhCsnVdn4NpfaJmx": { + "balance": "2202.972762920", + "bytecode": [], + "datastore": [] + }, + "AU122myG5GoJ1fu6VRnUgUhXU8k5kG6ToDrCRmZPimQRddUz6sNKX": { + "balance": "284.930633342", + "bytecode": [], + "datastore": [] + }, + "AU122n1b1ixQFN9qhKMhkG6hXKGyz6NbyMF97v1Rz3ETaUKmpYcEB": { + "balance": "2113.917515003", + "bytecode": [], + "datastore": [] + }, + "AU122n7vwbyyfPyD1ZV8V6Mb7miECkUagin3vM4sr6nBoyD2q5swq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122nHHUsYTzDwJT3qDhmmBuBVRB4VkeLioWE3qXReNSH2xkKEWu": { + "balance": "1336.217194650", + "bytecode": [], + "datastore": [] + }, + "AU122nJXXtHuYcNR9NVUfizff6nvBZvdYQpNUnTtSDZrWkScSb2nR": { + "balance": "1726.803649611", + "bytecode": [], + "datastore": [] + }, + "AU122nNhKNiCgUQQZwrSBTmjHicDE9ZgFLLR5tsG6qyTfKxZFrzNm": { + "balance": "28.144941901", + "bytecode": [], + "datastore": [] + }, + "AU122nUhaYF5nwHZsJ94gsYthSmsHX8kcdfkxnRVNHpXzMf5AYLVB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU122npX9d3ouLs4RTyQP6nXZGqVQAfwFRAxQTDzaRqkwZsDf3FQB": { + "balance": "1468.498087837", + "bytecode": [], + "datastore": [] + }, + "AU122o1yLohWWwbaMRNtRo4dQSSgRbrNtBoW5Mkjd9h7TQu36HJLU": { + "balance": "890.025079364", + "bytecode": [], + "datastore": [] + }, + "AU122o83bL3XtKLdpmrsF1LHu6xn6oVLEMMzd3tPvdrJv3aLyXMN8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU122o9cfkDRnjpNiGcvcBgFjLFXkxUfiDEJVY8wLhutMZz1bgqTu": { + "balance": "4316.935315614", + "bytecode": [], + "datastore": [] + }, + "AU122oSo7igyd2oUXEYP6H3qyhuRuPsAq4F645bDh8MJ7tFcJRXDG": { + "balance": "1657.850492237", + "bytecode": [], + "datastore": [] + }, + "AU122ouWZxYxwQQEijjHqpoHr4JRgiEPPNCTPXXa6Qd1heeXUBKfa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU122oyzwi7K3xtoRmYqdbyEjTkwpWS44c2ksiwq3SUxrMLLxwghb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU122p1EYApANSNGoVb5w6e3wyYwXdncBYXRB9MQYig3KrKZ4iGLk": { + "balance": "710.446198439", + "bytecode": [], + "datastore": [] + }, + "AU122pEyG1DKb2Zk6fT3GggGALq7S8Adr2Jm13t3XjSsBtKD4ioei": { + "balance": "1307.859407886", + "bytecode": [], + "datastore": [] + }, + "AU122pFBHsj5azhamVgpgCSs3Gru2xFNNZWhZWwkwhpEDQop7K5Vq": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU122pKboTJDzcKa5xcJT2vokj3XkbtQNnp2ELkZC9krXDyu793L7": { + "balance": "756.348327303", + "bytecode": [], + "datastore": [] + }, + "AU122pQqT9As2Ety4qzdJeZk7fASJdurv8bMi33uErWQU5UqA6Gjv": { + "balance": "1645.943830987", + "bytecode": [], + "datastore": [] + }, + "AU122pnJZ96dsfxodsiFJwaRXPQk2xLd9erhcMyxgq7hcy4teUVKB": { + "balance": "186.223779650", + "bytecode": [], + "datastore": [] + }, + "AU122qFGvHA8WYitNqSDa5i98tUv2gNdntYawWNMUyK38W3kAF3KK": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU122qj6PtG4dzfuRgPX4Yy1DA4R5vchfojHh6VRQdH9VV1it6Vbi": { + "balance": "3920.463396261", + "bytecode": [], + "datastore": [] + }, + "AU122qqtMm8W5GLsifm9UnicKiXc3wVzmPr2mdriHaMenQcoZoQfo": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU122qtja4ATHeujyL3xoiLV7wzY9o9Msrn1fBhFEkVF9qmyWdgz2": { + "balance": "4948.472727337", + "bytecode": [], + "datastore": [] + }, + "AU122rrzW5qUGmEoJoLujvckMQ1atUyAmpqUYo9H2VE5quyyYxHuL": { + "balance": "1553.229186884", + "bytecode": [], + "datastore": [] + }, + "AU122s626uFuzcQc1pbMkeu4BFQ7Bsp8ySrJXVQFXHMBH166cT6Yk": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU122sjD25hYd9FyZEvgVSwCWXhYJtRyr9qkD84FveWrWNmDLBTrk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU122sqBTPfR438zmdrdvm81y62x8c5z5fWHU6N4D6RzdjFCEfjPc": { + "balance": "955.550194052", + "bytecode": [], + "datastore": [] + }, + "AU122stxtmvt9pxsDSr3bwjbfsFectta5nnMqZ75uoUytWDhpM8iB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU122t47q7oN7VVCTwDw71Lt66o9w5BfiukQLi2DNRkXudAM29VFG": { + "balance": "1659.882783593", + "bytecode": [], + "datastore": [] + }, + "AU122tFtnmtcEYxeFcS4rdEqrsjzcuEjsGhBNdaWBMEb4S13BQ7GB": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU122tmwmgU793W6ijjucjhttMWynHwUK9fEgNJagLZGYCYKHh6i4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU122tth3U2BuiQ1N4DvfR6JEMFSK4bx1yh3j3bJjo1eiGwefBaZX": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU122u9L5umcBujmLY2PJfu1RfZ4FJvAz78KYM1g3197G4SSoCa3L": { + "balance": "1718.088147013", + "bytecode": [], + "datastore": [] + }, + "AU122ujNZvdTX6SPLxBTsV3Um6AxuVNE3Nv3L7ueDZLMAGGcBnLSM": { + "balance": "2837.911732511", + "bytecode": [], + "datastore": [] + }, + "AU122uwXfjazHYY8kiH2iqc12g49i58m1Uen8GxigoFTPb8BzU8m7": { + "balance": "1484.042275431", + "bytecode": [], + "datastore": [] + }, + "AU122uxEDo1ThVyKKQneLqxzqtNzgCm3hTtT8QprHFarXdxNHccN6": { + "balance": "126.812304397", + "bytecode": [], + "datastore": [] + }, + "AU122v23MVgCpj45J21xce7dHqqBmSRsAayp47uihQQT894bqUJeP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU122vovwExBKxAkx9niwFdKNvoEV3vWKZQ1Z2YRQZCgGyJ97NQSY": { + "balance": "914.391062879", + "bytecode": [], + "datastore": [] + }, + "AU122vr9ZA3ZmFeuzR4LmBxA8aXFQkbiD9VV5DX6FYszTDY2bY6zS": { + "balance": "1623.975963854", + "bytecode": [], + "datastore": [] + }, + "AU122wJ6WUoUJqChfujrm2HGqiKcZsvYFPLY3kcrghYT1gYNJECPB": { + "balance": "4989.794285794", + "bytecode": [], + "datastore": [] + }, + "AU122wQjBmNW6WnabQDtVp1uyXanAS5kMAHdeXFzvNqyqX2GGycrs": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU122wuCFbzaMBTg73yViyLYjYgfWud2y1s2W8S6VxHaLb7TKyzse": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU122wyNRb9ZFqzFT4Kn58phKKDRVsLMjrsX7Fs8RKvaHvbSbo52i": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU122xi5a12dRUXTMJkTvqFswfup6vxy6YgZwLw4CrXABJb6Gk4Cd": { + "balance": "5421.023186104", + "bytecode": [], + "datastore": [] + }, + "AU122xjGurQhdLVJL7Fk3gFpQ9o7N7sW6exVCrrXaEAgKLxiysH7M": { + "balance": "2422.390563152", + "bytecode": [], + "datastore": [] + }, + "AU122yLXRAmphK5zZNcPpbMRtU4asbjMhHF6efxymyghwgAuBkdeW": { + "balance": "5582.576192792", + "bytecode": [], + "datastore": [] + }, + "AU122yNqFKok3sEGDVEAHkREXueYBx3bx5oYfofhrPJP7RFmg4P78": { + "balance": "2391.194854338", + "bytecode": [], + "datastore": [] + }, + "AU122yWF5xuAffNjAatnfy6yNo4CrNsiaHNsJJ1oJ6jcZWNca9aKq": { + "balance": "1474.959064540", + "bytecode": [], + "datastore": [] + }, + "AU122ys1e3zUq5cqTvTi3vjutmEc1Fz6rcQ3XpD6QxnvYu4ynHcYq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122z1Ymvtxaev9974v5ah7wMJbotohp9AbhWSwWyCKvRKTACc8i": { + "balance": "543.957241357", + "bytecode": [], + "datastore": [] + }, + "AU122z5cFRhStpjgA7FkJ86aVu6xjx5R7mfeuWYX4gd1UzjzjYqo1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU122zQ1nFRZexWHDqLLbmyLnN2VzDnF7FaneNaDxRbH5GtLd8P5X": { + "balance": "2150.468380292", + "bytecode": [], + "datastore": [] + }, + "AU122zS5uYJsYm3vVvhg79wVZ3A4efZtkWzCFQW4RdHf7ByEWGHCD": { + "balance": "918.524195958", + "bytecode": [], + "datastore": [] + }, + "AU1231DrNSR3rKcUkXfDa9VvhCv2d55LLZJfsFAwgdiQVzbgxyS3J": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1231dpcjdcSmgBsWzaFRCK1jFSYSiS73fpYMEG8NY26cQFR7QB": { + "balance": "3778.734521292", + "bytecode": [], + "datastore": [] + }, + "AU1231fDrNoSBFTo1qV4QVmZRBgqnUKi3nVWH7iUyRs2vx5UzY244": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1232Fy2Rdgp4thm8QoMixKPnuRVaiA9oE2Cib7uAg67PiqvkzzH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1232JYp4P9BHiYEjf1TXfrVVwHUpxfMrJAf9rwZdEtVUoNYwkN7": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1232KcqvGEBQK5MQFmojuXL8gJxm3HxyRDXEmsztQCSJiE37tCX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1232W3VxsU25L6cQBAu7JFkqunzLGArLYtP2rBEx2sNUCBxawH3": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1232ddBdPsh5o2MzMzMyV7SfMpzHHTXL15YMeqCLPcYqo4mmXbg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1232q7pziXbz3oC9idzzfDixYkvyxiTGhsWamyeLeBv5XC1amad": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1232xvqSbTGRWYxZfjcorLCwKmMWvhpweMthZWzoScDuDjQNWaD": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1233WDAqHuQtACnNjrBbwGNG4E5BTdf2xc2PEFyUTUmeybzp9Zw": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU1233pKmdrsW52aPR7YekWDDA247itvsGG9vzFUSSSi7r1vsSQDA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1233yQ29FhdU4qrFVkfYhhdHfdPAcrygToFsASFiUzGGgrnsBBm": { + "balance": "2115.347426198", + "bytecode": [], + "datastore": [] + }, + "AU1234nGSLefxwZiW9AZmit9jkrdYwgXn5FQhviKTxbPGeNaHVL2Q": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU123571eJE2BaB1AZY1Mawq6rHN18NUEBhQSwRP1kN2kL7X96eTJ": { + "balance": "1273.979214553", + "bytecode": [], + "datastore": [] + }, + "AU12359WsjcjvLH2qak7VrcZGMizHby6HHoCxTZ1PJRpjFLnCm2LS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1235GjVpLPco3oPzscv1GtZxD56mG3dY7LjGqdes6cBVkjc3UKH": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1235cELTpyqtNDEuJknFCe5su461rKyeRWqJE2WTtcJH3z9sgUk": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1235evfmsSoKp5fXc3Edb9ShFZWpgLHKTBwB8rnwW4HdfjkqhRh": { + "balance": "4950.838057945", + "bytecode": [], + "datastore": [] + }, + "AU1235wVKNa1r6txB6NaLtPpQkQPGbT3FfMvRK2UZnVZxN6RjsW2X": { + "balance": "99.450387793", + "bytecode": [], + "datastore": [] + }, + "AU1236NAiKrHy2rocBhyHZoADsfFgB3gb638y4KLUSUf4z6Sfimr1": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1236hzqVwmj5pSLdgQp23bgmKxeExMBECQpXr9TbU5RtrJMSuT9": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1236jiyPU8ozsBmEa6bojZonpUQcAL8sqRe3oXes4svvNWMs135": { + "balance": "60.231023102", + "bytecode": [], + "datastore": [] + }, + "AU1236pthnys3HcQQDQaei81AZ6og5MPcVeR99i8yH3v2pExNBwVt": { + "balance": "766.754016668", + "bytecode": [], + "datastore": [] + }, + "AU1236qbEAAus77YTWuaH23LNHash7MkcAme3Q7YcpMgjGBnrrJMx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12377bWbuJNUNG1tnYM12HFGPFDrrRxEJWAgvFY3W5xdfgXJfWA": { + "balance": "1080.379608946", + "bytecode": [], + "datastore": [] + }, + "AU1237P28XTvwWXzShqtGpVEywG5ZAja99cMMf41RByySASkZkDT4": { + "balance": "1125.902562255", + "bytecode": [], + "datastore": [] + }, + "AU1237iBhr6Lt7wBsjwoAhNPKqKvY7sNmZFYdoE9FRnYWzV7vN1F9": { + "balance": "3063.285270297", + "bytecode": [], + "datastore": [] + }, + "AU1237p6qfYmXPYHr8oUVVL7fEXZsGDm5DGaNocdokYjZN2d5zjqh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1237riqKcigtuK2eRm8rr82UELej5ekmG5DttvUt1o3mQBbkBHj": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1238Fa7Ssr82CZrEKGZKwrGF3sZrrnrfSr9zp1boQgoxHFR5W88": { + "balance": "5119.324686368", + "bytecode": [], + "datastore": [] + }, + "AU1238UepgwdvNWib77d9B6nTUffpPoEzwBcq6UgP2hJmYyzaGGeH": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1238hQqQmDsTKawrDocdGHjrM6guzUPNPhtWnmZVoo6WPB9DjGG": { + "balance": "713.403861085", + "bytecode": [], + "datastore": [] + }, + "AU1238t5t8XXFDwVw2n9Agfgh9iLfKc6t1Pqv8oThyjv3WrwUB5kd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1238v6XMhSoZaSNfF7ram1RFdigWbB8HuPeCAE38zyXuDjc43mT": { + "balance": "2835.110491049", + "bytecode": [], + "datastore": [] + }, + "AU1238xpJyuTMCUVnvynA4At5YbqW5MDoE736ckPJxjMLtSygTReJ": { + "balance": "2413.964991521", + "bytecode": [], + "datastore": [] + }, + "AU12397JycRLzPQ5Zqk2SzUtrv8FzQGPdWg6sBuWTF9TN36N4R7td": { + "balance": "3018.586292923", + "bytecode": [], + "datastore": [] + }, + "AU1239kRDWUhgcx49i9gduTNixSbeB5qkMN7ZunmNM5s6qvwC5fDF": { + "balance": "2556.386284128", + "bytecode": [], + "datastore": [] + }, + "AU123ALbCTT1wAREhJmh1Aqj9kpUcyKBto11vYhCzQme8PL1mNpa3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU123ALdfWAJCTmpfKRpzxbLru4oFmGDDRyqMo2Uer3DLyu5CREYX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU123Aas96Cmrd4sy7xeDNoNc4ng87H9QXSHzMsnjYtbsEEBXaAah": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123AubMHXNHNVdsjLENT3TKNDRNKnMKwq4thAHyYVMyimzY2p5w": { + "balance": "1716.059857307", + "bytecode": [], + "datastore": [] + }, + "AU123B6dLLAmXpuCiF7qtCUmMvP87b4LmzcP5YdaKsmiqFJH8Z9RA": { + "balance": "1794.981682666", + "bytecode": [], + "datastore": [] + }, + "AU123BLKP9oiKkK4nC81R2Sg8BxVmDpm1gXzWx5h9QsryJBpGrUjZ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU123BUtqBnAE3Hzpgwvcug31wL8KKdYG8xGaDCpzKwqRCL6fiQZi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123BXf28prutVrmw3RyPfgXbBkWrCTrPotbpuzTV3CuHFHqaDTX": { + "balance": "1306.982954319", + "bytecode": [], + "datastore": [] + }, + "AU123BuaWZ8TuuMrxP4czGbfVubpToKN6qyksZDZs3GX1kYNnKMXD": { + "balance": "754.730652583", + "bytecode": [], + "datastore": [] + }, + "AU123CVDbPZmxiYAeWba4b2SugiLAuqr77HLASPiS3UnbgTYuZwTb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123CbeEhKKksebjQ4ZfgbJGHFFpHFtVeiJiHxVi1WGhwC7ji1ue": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123Cs6oXeMCteemmmv91E9Jow9qTwZBDGfaJPNGTCt51Fa27aRD": { + "balance": "930.215443288", + "bytecode": [], + "datastore": [] + }, + "AU123DXvjcnKc55RKxBPdLTRJmXDZMwxRqX7miRuQqU5Yd4xnX2P2": { + "balance": "1091.099356841", + "bytecode": [], + "datastore": [] + }, + "AU123DmkCTxSnVA1mfSr4MJ43ryaEhuyp9qaP3HSszkVhkdF4HBtZ": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU123Dqv7ywdGGrHWcQSvLuNmftBF4xVjoCzgJSnGv2ZUcbH1PbA6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123DzSHPJs1HYJnaTKKZ8VUyv8e8andw68nGDpvvCwbYva1WtBg": { + "balance": "1015.594854649", + "bytecode": [], + "datastore": [] + }, + "AU123E5Go9HJzoAbrGRpN4oAjwMt2JdMKEj9FCUvgiEkjUhC5fVDU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123EFzjXBYuQZ4RV7s6cCzg1iYXUJfws5AHLdfEkeuhtuZEUFtq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123ET1oJNSJ2hejWxPj2gYj89ZfeUZNL7thMfViaJUGH4B3XJgi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123EVLDcveDjyW3hp51kqWeHkm6xnRzuE55NwKE71EPhxmpqcGi": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU123EjzCNzTotsvZoBSYwmDJhvS9beoBDB4CxQmCMUTGtUEcYkfc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123EmJBLdDqeswCkoCLvczzhNPU3QU3FUP5nT1trfHiB3a3wLBT": { + "balance": "4827.921500943", + "bytecode": [], + "datastore": [] + }, + "AU123Ez8CAGxGZUoVQH88vvGzBxHgmF8QhedfD9c4JRcpevmLiUZ6": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU123FLRSyGxSqEYwqvpRhStdqTu5oNARCCHBr8HLmsKf7xzEowmr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123FUzeCeoaoipyjEQNYAuPHPF7dJKz5kMxzkRDTP4Nk89tHQqG": { + "balance": "6310.115743796", + "bytecode": [], + "datastore": [] + }, + "AU123FkQwhdxquUhBuhUACSi2UF3sKNqjWd8t9PMq8Q3EGh2pjk3h": { + "balance": "6647.883298326", + "bytecode": [], + "datastore": [] + }, + "AU123G9pmsEbtjsRdRgiwhC5tvMUjPxQnF6u6AzwSaaN8YjX9p3nm": { + "balance": "2359.955902616", + "bytecode": [], + "datastore": [] + }, + "AU123GL4oz2tcPNxBSdT2QLTnkHLrZfMivKv9ufpQvn2tHNkCmTqX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123GLTocL52n5AiKNe3uUvpB79uxr6Nx6hZj5MMco33DqwEXWwN": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU123GQdif3G4yookqnuF3TqHJhr6jtVxkFWBMMm3gzqATiVKB9rN": { + "balance": "1042.366034507", + "bytecode": [], + "datastore": [] + }, + "AU123GVgEZDqukgZjPYKNbLV3xVX3J9bm6NL2ZTX4tfCA1b1YBJuk": { + "balance": "3760.213390163", + "bytecode": [], + "datastore": [] + }, + "AU123GgVvx4qM3jphtrPVQXM97DwrN6MbnsyjETSsa2oKfJtYbRHp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123GmTBgrckov7PCwvGc6zXFyVqBoYgkMZTHvPBRsBezcayTvbF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU123HCZJB9mSnRyQqm939e6t4xgfJ9xpkaFSKpHkxTdkzqE8gZbq": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU123HYJ2fQ836GihTzFwJTunzbgBdPzGwEA5japhZLJhhYuzkiyQ": { + "balance": "2308.740111795", + "bytecode": [], + "datastore": [] + }, + "AU123HYrDA2TYhk7NBjz4tr8Lmgybz38r9kSKUKJHEUj9JYCtKLoh": { + "balance": "1467.347511413", + "bytecode": [], + "datastore": [] + }, + "AU123HguQmsXPm9D9EpnDziLJXkX1zh9m9rk6ZH2NK8zf4gMgsVD4": { + "balance": "1143.539882457", + "bytecode": [], + "datastore": [] + }, + "AU123HxKqt3TQfCBz1uSSYKaA4WpfQ6CGgthdjAjdvnH4Dv7uVUm1": { + "balance": "199.150085955", + "bytecode": [], + "datastore": [] + }, + "AU123J4g6CSMYVPyDEmaGMfgLrRC5KwFsT7HfUhgKbgUNrogH7NDb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123JScen2MjkmDmg4x892ikJaz62zNriBwpEPVVeGH9A7QgYEhi": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU123JmR9aNBPtmp9JhQgVEc9dMpeRYtwtLX5EVDPiti4QRKg7Hy4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123JrBU7gkRqUWfgerAShr7qULRjMaMqVoqQDbecMsMVfWhvPib": { + "balance": "566.661804818", + "bytecode": [], + "datastore": [] + }, + "AU123JvNATTXqcbrZ2g4BGe3DXehhztfBg1vechUxGvMP2chpxabK": { + "balance": "1368.604679787", + "bytecode": [], + "datastore": [] + }, + "AU123KCyT8EVNRZdinxjputQtsTHgvoTgztAKtBRj2NnQ3QsQGUxJ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU123KMkH5axmEt9yK4JXtLDdkj8XN1nQtaoqpDTnQQzcoi2zYdhR": { + "balance": "4173.996805370", + "bytecode": [], + "datastore": [] + }, + "AU123KWPiJRbo7Pch1ccHLoJwAySgKD2AG86jz6UwbuUFavfNvLBv": { + "balance": "4880.696437436", + "bytecode": [], + "datastore": [] + }, + "AU123KkF2iemGZmcnCsgm4qhZ7bHbtvQCYnvpm6eGcjodCPvEHwSb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123LKxWEGbQx8ez83gThBcEMds1BzTudnLcXimQNaHvRqgKXeiw": { + "balance": "89.661675774", + "bytecode": [], + "datastore": [] + }, + "AU123Lo4sae1vxcddUbuJbAQ9FexCZX2bQmUjiwhjPs1QSNFWuDge": { + "balance": "173.260789172", + "bytecode": [], + "datastore": [] + }, + "AU123MNwKx2hRYyB26xYDau1d7qzrzeoyqDbZdQPgDnmU2dNEgSNv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123MoUoyTnVvS1Kcj7qRPgP6h57hKPZffYZdo1T9LrMfJAEtJCe": { + "balance": "635.665187233", + "bytecode": [], + "datastore": [] + }, + "AU123N8ZgFtggbsu9ycbkEjq2qxes4A3K6bYXSiSqBWRiW7mHYF1y": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU123NALz8HryyY4WT3sfToZnqfNTUBx2cdw5CzkbWh16iRf7qkfb": { + "balance": "1789.799444993", + "bytecode": [], + "datastore": [] + }, + "AU123NBQGEvmWqU2KAnwuZFwm3GuXYMzhYJg5H8u1yzkijVQckCPG": { + "balance": "1137.453064200", + "bytecode": [], + "datastore": [] + }, + "AU123NM26FZ16mZkwwNLspvy7ywUPjTA2v6N63QqU2WvGnLPgoQg5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123NSfMpiX7jPJmKL53RA7hBdGbtBL3MdBVGVbE6vN7ShCsrnwT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123Nm166t8DXBDVhtvR5ah8NAzuF22QBzfmQjuGDdB1FWsNQaX9": { + "balance": "5714.889702488", + "bytecode": [], + "datastore": [] + }, + "AU123PAfN6ekvBn6tFXfdFM9SWvuFYjA8efPgaXSzGQLAGKrEoXyJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123PWrQn9cSbrKZJsGfGWKbbGKPLYhFKSNo5amLCWqYoZKQyUUy": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU123PWrh5j7mY6CvbcVBccS8VK9betuEcAn41S7vt2yMKJqf9GeD": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU123PrxVniw6TsPBeFvneAYGQi35memSSz8AzWnw1LJDmJwqfA4T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123Q7xUusBP7UunvocRBY2awdXZqYMSDmFVywjU4uSy5gGZ3ZN8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123QRbYosK46bPbALDVXMEh7WdStLdKzzLJQA41SkdMxj4kxXPd": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU123QXbn83ju29AyrZsA6S4mfFJuV296ZQDco64P8nyjMEcKWsHw": { + "balance": "1711.150418994", + "bytecode": [], + "datastore": [] + }, + "AU123RC8z2155krq7t9ovnTWiTJ6tM36i7iUvCfjWgKt2BF3jMRD5": { + "balance": "2519.350445005", + "bytecode": [], + "datastore": [] + }, + "AU123RUo76fV9fb6pjknzkUbySpDUzMdBwZMcuAJ5FSUxZYzqwwWL": { + "balance": "3688.765918336", + "bytecode": [], + "datastore": [] + }, + "AU123RmAB7d93w1eFE8oZVoWAUoUjCHLWTY1JTkoyr3MgFvPM71Ro": { + "balance": "3691.122890239", + "bytecode": [], + "datastore": [] + }, + "AU123S7fFPh6tPMFKZ2WnTqiwUYphveKWgafpurxNC4oNbF4vpTBm": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU123SbkUkXo97RrrKiMQxLyNJAZFRgsY2QpK4PviLdMNEhdiZ6Gt": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU123T726qvMWbHg2LpZeYAoKSkKNaLn48bPKEdLx8hGeGty199Ek": { + "balance": "1963.082913716", + "bytecode": [], + "datastore": [] + }, + "AU123TBis3rXLrienKRP3sKxcv4iaPnKewsyVQddtQZ6FiWorrcX5": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU123U9DKjCF12G6xwrLBTsXHo3rd7fo3e1qQrsf1G1dsRsSF4C8U": { + "balance": "1387.435761334", + "bytecode": [], + "datastore": [] + }, + "AU123UJzHv6dJtrt6v2wmEM1WsbNb99j9Sy4giGP4UAhZwx1pkBh7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123UYKaTKfWVh4ps6hauPDjLq1WJr8xSnG9qoZrMpGF9q7g5fq2": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU123UbEf7oLCUQG9JKgQf3pNvoxZ8mbAUGEvaWrQvNN7W2w6wbBP": { + "balance": "2141.006506817", + "bytecode": [], + "datastore": [] + }, + "AU123UexJG75VXH7vT16LDCKQtkV34qcU3hWDgbTgds7RFnC6EqLQ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU123V7p8ECnCWtX4VF1MBTKfpM7t9wgkBFHVq8bYjZc8hrjWjHgy": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU123VUyZ6i4UibKHqZQbi76VocgiN9z5eDFAvEgeohFD4TfdRpwv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123VfQeS6DQUSbMvs4DW9wuEMtP9hKeVSpbNPB85t6FzmdG8HnM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123W2Cee8LkaUTZzcic2m1MDsuXCaKDwB2TqZvKCcTHNiJH2E3v": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU123W7AqQvKUw5c3y5oJqooJw1UAYMNcSQffLN1YRYcPJNwSAKbV": { + "balance": "2885.895257206", + "bytecode": [], + "datastore": [] + }, + "AU123WPc6ubxXDuPfQvD499EZP23nniteJgcU6Sz2VcvVn5VTnPQ3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123WvUaC8pr2a6Fjvacv4WBtCTwXynYzNA1SiDtUdzyhdGvcfNp": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU123Ww5Tg15TjfTmz5gm5SQQMJjUfbbDWig4nBzVbF1pJeAqKyNq": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU123XJHaL2rKX1azevcj92MCau562HCRpEWNTLCos6XT9HWBPd5f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123XQByuFB8wjHdEGRJ2AfkV7YQiHMwP3cX443h33WJwKsumdYn": { + "balance": "2735.169939476", + "bytecode": [], + "datastore": [] + }, + "AU123XQcsDNnnGyDu2gRXWZXxQC27q1zdaDLo2v5ArEeVeCb3irKt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123XhpiYFcGXuf5AKTBVwysba33M9De1TvJcqKhGEN8KmmMFXJN": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU123XrcWkeAKx5rCDCc29AuawQKbyoirDNcGsCrpvJ8PZht24Wfy": { + "balance": "1110.931462718", + "bytecode": [], + "datastore": [] + }, + "AU123Y9cRqfqCa235F2LYnUqh7MHEvVUtPpbynZSkatnZ4BvXWjmf": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU123YK4EUPwgUSN2rDwdtsBzAM6WjA6EmDUM4tZyKRkmhSbxZU2v": { + "balance": "221.146597147", + "bytecode": [], + "datastore": [] + }, + "AU123YPA9RhBee7Kz33yWkHg47GSBzHPJYBebrPNxMkWfREz8NL8A": { + "balance": "3247.350312152", + "bytecode": [], + "datastore": [] + }, + "AU123YaVpiFkL3LKCLjKheYMqPh3yHgyhMSxJrPi4t9r6KCdpf5wE": { + "balance": "870.497823188", + "bytecode": [], + "datastore": [] + }, + "AU123YaccoZukwWUMde7Xd6JPnT5MQZfFk9pr43WXhML5gt3R1Sm5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123YmtGtLNH6frxfMNjGXS1EnbNo4iVNiPh8VsSFp9xnjNbBeVK": { + "balance": "291.051299641", + "bytecode": [], + "datastore": [] + }, + "AU123YtJUtMcPwiz7Fiq5Q8AVKLzyKFunX6S9QR3QKr6aBZiHN43E": { + "balance": "1396.526410432", + "bytecode": [], + "datastore": [] + }, + "AU123Yvvz1RBN1WPXoDdpE9d3iFJWiEKuxFpN13xhWXmS6SsPp6Fo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123ZCHBirwRDMdVNpt1CSxPcXZMe2L7xiuU9kpZHJVRLLubTFLB": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU123ZeSEyNZH8kP19r9bQoa4AMN3KCDk1Re1V2s1aMDaem3Mc6rg": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU123ZiLBCn5gKPEWi95ns5zyJktpm5kpNwgZ938GniCkcEzL8UTc": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU123Zib1Q2xUzVzWY7eDMpvYyYmLq5CaJHGhKFkWr9C5F7ZkRveQ": { + "balance": "684.788670099", + "bytecode": [], + "datastore": [] + }, + "AU123ZsAL9Dhf69PEHa4Pd5d86eFH9ck7rFAqPqefhm2Riw5DuSXb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU123ZtSiB3GdKLa4moyUvMsMhrDfwFjhRqouzzN39xPgrr2KEztS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU123aGVnYBB2CSCTEHdij61jP8zwpYxiDhDGJXE7Ua73gcjJjqkf": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU123aVuGudwxGN2o4eDBDfaf8YQFA67tYTiBQ1xd7iRTfEH2sA3C": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123au9U5z7xjVHr3a6eXVvTjqvGeL2iAqfydBFBuWGmKGaHFHkg": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU123bdRgkBXvZvZsJzoBpzEycWEi6TkDNCLZHuod3h6KeEtXX9ZK": { + "balance": "6178.485347792", + "bytecode": [], + "datastore": [] + }, + "AU123bjKGMpfrLqZPDr5WFMaRSaeGXbRMakCEDwPGGN6Bx7sobaAp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123bm9czzfuauXbqHCia5mT7eVQF2nbhEwP4sEo72kipuTMCUNG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123bx7UxUbr2TDiEcuNFcamkrrBhHc7zicbn2KHSFB12aChKGTk": { + "balance": "5037.000524937", + "bytecode": [], + "datastore": [] + }, + "AU123cFuiiaADYUv9JJoPAXX4ykx5Sc5q9onsX26TMPDzw23xJX4P": { + "balance": "5052.487082801", + "bytecode": [], + "datastore": [] + }, + "AU123cbXcpFLfecQFVCJy5SJMhc9tRkLNBTAHquBekiQxW1rrtGMu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123d7xyfpAjbN32VfN4Gs6q5AohSFEFVBW8E3MUnz3koqpuQdDb": { + "balance": "2.968901403", + "bytecode": [], + "datastore": [] + }, + "AU123daKFYDky8mk5yL8sN8YAm96UtRsfLmKgenmzv8kJ21d6Yi7H": { + "balance": "5662.831095360", + "bytecode": [], + "datastore": [] + }, + "AU123djqGhMfhmzW4S7hATi2T75pUrvSTmkUMya1mQMBgLHVRY2tZ": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU123e49cpN71oGbgWuGnxA5BW9t6fHsPNNQTP8RpKvYrBSaiCLcQ": { + "balance": "2271.707012229", + "bytecode": [], + "datastore": [] + }, + "AU123eLHyaecqtphggcgnK7aH7chSKAgLFR1LP9otrtNsndMVg86j": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU123eYPx5KwwucUDR7FJ4xdcsr6LpDwgZUfZB87GZo1E1xo9nBvn": { + "balance": "2109.736546593", + "bytecode": [], + "datastore": [] + }, + "AU123eoNvCzn6YLWWvUsAMrfs16ouDYQKMWh3dCwqiRiYQ389dCEN": { + "balance": "196.706690125", + "bytecode": [], + "datastore": [] + }, + "AU123fJF5Q6QUsmS4aHniprCDmnEHLknE7T8UXsCd7E77qk9nKgEp": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU123fLs7eEEVdg2Q52GbG4ZM26LwWvX8QcKiRSCtVZJN8D8dKXdP": { + "balance": "1621.508455177", + "bytecode": [], + "datastore": [] + }, + "AU123fLydLNzJdqfqaF5eUZVL7MYxYip28qNm1aszeksR8HAW9BH9": { + "balance": "1494.791671601", + "bytecode": [], + "datastore": [] + }, + "AU123fQUUh2WY6TpZovcW2q7nKqHz3RxrPRQj5PLWe4oQa6DrXtQc": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU123fmpeAjsrxKEB6fHXFS8c3mq4gAyofVFQpn1shu9D9RZd4B3K": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU123fnKw3ieMbzqqYButXZEft27FfpBGEcUBiXbxchEUG6mxQZyC": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU123fs7Rtf45mq4imj5RDyq2PbYHo1dEGZYSbWiaXQtT4mR4wDS1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123fzk2GDxbUoJ7RMXTckRwQibTCgczqJ2En2JT9FoTeEKfFAi9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123gS4SXcgq7t9Yhg7LLu7mXjMQnnBDFaiHgckZckYmf2gzaWGx": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU123gUwzb6hssbMNvBSZ9xdB8NTAMb9f853Dnzqyv1vDLDyH1rw7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123gYBcEkcJLKBiVSLPXSktgyHTVM3Xud9QXoZWwd9VrfR8n4yW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123geSJs5dG2tfYFXPSphuET5UZMxdhoyWs27b3znUpYKjzNY98": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123gmzVMR4DiAvtJqTsy7DXfBWPtXvbk7Ch1oEjRaJJ71ot9Lew": { + "balance": "139.438943894", + "bytecode": [], + "datastore": [] + }, + "AU123hGLULFUgovHMmzKZkgMEzC2Gx5xfGa1yj64vpW6zhbDC9LpX": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU123hkGC7gFqsFEQ7zFzZxrhBQ1rQCMdHxx1K7BCkHtoSv6YTSp3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU123hkqkJ4ocunUNbNkwbNDfTZKdfKAGTWW3GFUbJLD1agwSRVb3": { + "balance": "1976.902864949", + "bytecode": [], + "datastore": [] + }, + "AU123iDjPehDZ4gopxh2bq37gH5fpcZhKnNNoxXL6jLuP42YaZttL": { + "balance": "1739.324478613", + "bytecode": [], + "datastore": [] + }, + "AU123iHDM2CPGqgQ4VVPgjFqmx16uH8TqBSkHLWQPEMtA4CyD65zT": { + "balance": "969.859407430", + "bytecode": [], + "datastore": [] + }, + "AU123iREs98nHyqHbXJ5fXTYo43K4LpuRNSb3sWKbum31Xf8fPKLS": { + "balance": "1159.134483574", + "bytecode": [], + "datastore": [] + }, + "AU123ihzUQyzyet75vSe57L4mdxGP8nnQsyDwp2Yz7zfS1rFMBzk9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123inkskHkmc7zvcSqGE6GhsjurwDNmzKbZLoMQZ5dpRm5zVFDh": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU123jTcpGb3DMKQGnmkAL79kfAxjEusAbYW4PJkau6qdpStACyRC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123jd7SJrqzfsh7j92YckppppT5jwNCnzE5A53Rk1KUJF8PLLzw": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU123juAZSqmTMLUWSeruVhn4uFCiLuP7C1SoDpLBeZYPm8iPg76G": { + "balance": "1063.161029977", + "bytecode": [], + "datastore": [] + }, + "AU123jwztN2EMLwA88eMc3wBudDkDVK2wqMqRFhmzdh3NZoSn3dKk": { + "balance": "2481.534052751", + "bytecode": [], + "datastore": [] + }, + "AU123kfkK2tMeiMY94qXVdw3fCkViLyk8KM1C4xD79GgvdyoqXyXd": { + "balance": "554.192179615", + "bytecode": [], + "datastore": [] + }, + "AU123kn8mAwxKyjYLxSPUr95BTUunc7MkND3gdHidicv3DowaiWmd": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU123m5NtEaz67WxfBMs1pm3oJSFXrLbRAAtpHfjd7LEof7QU5RUQ": { + "balance": "1634.470939416", + "bytecode": [], + "datastore": [] + }, + "AU123mC2AsjDWBKhzbaBXq7sjUmdo31UN44QkzJgY7Z2wSz7ovwvE": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU123mTmuUAZkJc9hFxPEg3xNEZ19Apj37mvmrk2cVc3G8LoHiknt": { + "balance": "2694.583218685", + "bytecode": [], + "datastore": [] + }, + "AU123mVrAgki5qygErkLrskLMmyy7proEjR4V7n4NKBtQUkujoa3W": { + "balance": "783.236083165", + "bytecode": [], + "datastore": [] + }, + "AU123mVxwGkyatGptfPNxPSQDvULvnUS9CuUqtGDnHcnot5h26WVr": { + "balance": "1398.575379282", + "bytecode": [], + "datastore": [] + }, + "AU123mqq31tLKRjBs82aHqJynG8oHLFBv7Ys7eL2V3AiwUQj9xqBg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123nNkV44edUDKWYubaGZX6CeFNF45VebF66xSPP8C4xRPmAzY8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123nSippM4w9rSTHaT5AbpBfF8XyMA8EC6yBwGnSaugVQhMhwxm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123nUf6L8rxv6mQqyJjBJCqHjoTur5rdb3eanWyK1ymctDTCFyA": { + "balance": "1060.963768096", + "bytecode": [], + "datastore": [] + }, + "AU123nnbtx4RkveYdTxQcRWJ7WzsnApCBRaB8B84FVRhNngcedhGA": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU123o2N1XgdZGgDv5cme8jUpZYqmC3GBAmnGhpKFVPWabHGqyS4n": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU123o5VHDj6ZkVK6xNPyqnuxneD6dGCspkztHX958QranC7zc9fi": { + "balance": "4121.803325458", + "bytecode": [], + "datastore": [] + }, + "AU123o5f7LBMfJHkgZd4BcH3Hb3qn8zDckgeXUQbCydehEnwQ8goB": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123owneCq61DL4i19UpHKDaWMQzV6QzWJftCHCb4YMeK2bXVu1r": { + "balance": "4986.282692548", + "bytecode": [], + "datastore": [] + }, + "AU123poqjYD2MEJfpXTgLEtoNREXPPecVzLXuysG8HMRjyZW1ysL4": { + "balance": "1400.436342352", + "bytecode": [], + "datastore": [] + }, + "AU123qbiwbu8ZMkZZncyVaqDeBC2sajkHvPvAPie1GYDi2VMWNWDi": { + "balance": "1863.585867440", + "bytecode": [], + "datastore": [] + }, + "AU123qybhad3wvjeU7NkZud53SM6ebLox4qdDnzWgwQEqAPDxUPEs": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU123rHAcEAPa5KfqGYUmqrtJDfNC6d4omtFp4Z7d8WXAcN3vr7mf": { + "balance": "1690.178887804", + "bytecode": [], + "datastore": [] + }, + "AU123rhqsMLz9eoDKAXynwSWEqHTrzLk2r32apwaEqqqUfp4kdgzy": { + "balance": "91.946445240", + "bytecode": [], + "datastore": [] + }, + "AU123riAUbY6GSdB3orjMsq4yXGwEEEZQsKH4BHQVKwrGoafB46RK": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU123rwJX3fHWrDhed4BeFPkPW678C9HMqVRP8j86RWtzjvNJ9vKF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123sRfyjNAE5L6hMZQgbpyWjp4vRd3m4forT7qp8XLPDPJoySzy": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU123sfcGJiBAvvKDmzqY2H6XTUJHNsJPNUoc7idVTGYrTkEYrbLE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123stxicbNcPXL4wpZtvocXLBKtbB8Mv7xS6ViZCpwiP3PRrd1i": { + "balance": "2062.287210823", + "bytecode": [], + "datastore": [] + }, + "AU123tJUdU6dLZJXUBUhx3mLb59pi2oS3dVRbeHsFgHAbK4YYjBaM": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU123tgn4KdMniyzmRcLBdvHgdTU5mMtcRmB2zNcZpQndz9g7gnT3": { + "balance": "1019.411498295", + "bytecode": [], + "datastore": [] + }, + "AU123tz2J3no6i2BnUKY9PJ9AGqw7qAYDt8FeP83RMtFv9YhLnBmR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123uHk2cZcJpBn8J783fZ3afZ345xBwnphXySGuU8irW16EuBBd": { + "balance": "704.393772017", + "bytecode": [], + "datastore": [] + }, + "AU123uVyugbETSupLNPjYT39YZAzrCQaC3UnTTZ5osW1zcgZfCc6H": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU123uWv5RpvgjcGjG8Qo5hkfXL9JfnLfiSrXZVz7j8enYWUPn2Ka": { + "balance": "1040.291962812", + "bytecode": [], + "datastore": [] + }, + "AU123udkL8N7x2RNh8pHZ4XwUasbqgVSJ4D5vHWNiADNDJFhjrxkN": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU123uk277gsZiETjmzSmVpyLktHqvYZgywNhhchhuUw7ttaQnhQx": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU123v4VMjWgm1tRVjmqevHQWUb4R1bRwzeJuFMcRiMEE8Vb1SB9w": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU123v5cMHNLpGrzcFmkUrPgcfakEZjcFyHBNVFCUjYuMxh1wTkav": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123vSxRGNktCuoZeNU8XrwGtLZHio8CSzFYX4maZRLgKQHSSRzw": { + "balance": "617.211856831", + "bytecode": [], + "datastore": [] + }, + "AU123vUjyyPXNw5Ps8ZBytL6i79i87m5SUVWsS3Z5UhByo4ViKwjb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU123vuhReMmQNXURE89mMcvBYZ5gb4311fiRnHkEcnkNGSPmEcKK": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU123w8XZ7oHp8Tn38Bp3pncXnjJN7FXHqBpPUFPxUKK6T8xRW7Hn": { + "balance": "1273.779039916", + "bytecode": [], + "datastore": [] + }, + "AU123wTiG11nc7zL9jTDdGmw5TVqeiRPdsfZAEFz3hGyCUpboTVbD": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU123wY3YMwLyuEiqQXRdDtYLaTDg2rUZ3Tu25zYJzLaJtimG7QaY": { + "balance": "1976.686632855", + "bytecode": [], + "datastore": [] + }, + "AU123wcxooxaQZo1WEi9neQtMP7PMkHe8UYMA6TiBQSHPifVjQpzS": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU123x1sMvcbGyc9MAmScQUGH4MZVLnnjEFvoXjQmzsQWpewmkaLv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123xAuS4FrApYRTFiHWuSc9JYwTcjG6fuidGnBs4HJPuxMbrM56": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123xCQPozQ3tn4ZMqEjJYCwh24Tq4ut8jQBeT6GE9XazRv7M5jg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU123xKAem8gnzPehtP45NaQDYo2PXod6qfH2hJz2fAX6ffeYexoh": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU123xpZNVKacdC2r2BdAfRD5tp4tkcXx6DQLtLB9gFtAxv6RGhA5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU123xzt2Qsvdesm2kEauaF7dyxfk86asegogBypvQHdMAGXN8nxZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123yz2Xs7Rzy5gkmZG77mQ9QW4aWfsDdGs8GJyrrGPSDzVzgz3u": { + "balance": "1840.298497178", + "bytecode": [], + "datastore": [] + }, + "AU123z2RzD2NPgQtmeG3c4fWXZ9rCrhFaEszQLxy1m4SS4Uf2eHLn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU123z3kgza6LG8sSgoihSuVZDEJX31uh1qMu6d3mhWjb3SX7FNVb": { + "balance": "3900.304650764", + "bytecode": [], + "datastore": [] + }, + "AU123z9bfgwAdYhG2AG4ukUx47rovnWfq62FUsy1ZQGn9CwVFn3RH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123zJLHGsDwPt71LoAB8eX6AwDRQicHiRnPmkSdBxgQhYoXxMom": { + "balance": "2322.625017350", + "bytecode": [], + "datastore": [] + }, + "AU123zLwpGtCRY3EFpbZis8cRjt25eYkQMkGJgEgBr56croH2jPQR": { + "balance": "129.537953795", + "bytecode": [], + "datastore": [] + }, + "AU123zaNjDMDBoEQoTLHmhy6dX3ZMz5SDP6gGd9w97fKp8SGFprTg": { + "balance": "797.192736305", + "bytecode": [], + "datastore": [] + }, + "AU123zkAoUSQwkKybesxwtnsmMTfLdp6Gx36GrUhFM4nyCJsQfd8y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123znhJBFgXKNNaq6fUkwwrgVMuEKYUzXUpJnr8zVsYpfeuT846": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU123zoGRdLP3BmotjfjmyQfAL7knGuNWrHpc3gWwfVExyVgbMhsb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU123zvHyFNasqPvYceuGwWkWbhx9AsDvarMfqPksyUJpE7QjzU13": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU123zwbtN8taf3MQPtZujd4xqZKi7kNH1WUg3XD1hnkizaymvaNx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12415UB7aZQJguNFtRRNJoUcs955kNUNTwY5Xec2Z9nuDuM3wYS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1241R85sqLgpqrmpfyejf2zvkcZ8tQEW7Hz7NazJiPDxaRYuTVi": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1241f1NZdTqLXXKgfdU1T2E13WGT9LrFUi7ELAM3MxWPWT38iav": { + "balance": "6009.132832362", + "bytecode": [], + "datastore": [] + }, + "AU1242b56fehUd7oC9Yc3ZDurT96eU3srLocuM9cjUPKRpx9SnDhL": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1242xPmwsKEQf1kp8cBAw3ZrvDZeSLnnm7v2JeVmsYqfhVcU4qa": { + "balance": "2654.266581234", + "bytecode": [], + "datastore": [] + }, + "AU1243vwSgLgYgpoggN86TZi2yBkx6zbsxpkm4DgV6e4YKd4bUHAj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1245GZStBPUvbcmik4RuVwEbzKbpq8ymS5DdzUm4hj7kC3Yg31G": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1245XnGop5vBXh3XvjH8QB38KUPt5uvN4T5UQuRUmF4a2ToNqpi": { + "balance": "1433.515958365", + "bytecode": [], + "datastore": [] + }, + "AU1245Zdru67rpm79FZxoBw7SrWK5zvbf7iTiqFiS8oDcrBeSbsA5": { + "balance": "2783.438802362", + "bytecode": [], + "datastore": [] + }, + "AU1245mN1p9W97zpeu9VqD6zEiDo1GteHtZAUx5g9NXT3au27LzE7": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1245rzhobN1u5kvsThdAfLUQWWJzQHRpDavjFtpL2Rgf6du7z1r": { + "balance": "1395.461270117", + "bytecode": [], + "datastore": [] + }, + "AU1245tMFyY9KQwPJ2H137Qr4zaJUjyjbUVVkzN9dxqDP45zpxrSU": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1245unPBSt8dmk36EXw6yTNbvLzSbqneeSnBa6HyYePZhA8HD78": { + "balance": "793.511092230", + "bytecode": [], + "datastore": [] + }, + "AU12477n34qMQgxwCGAna3uYewefhsHtWaWVRdjBtgC6Wo6BJtoPa": { + "balance": "629.650439179", + "bytecode": [], + "datastore": [] + }, + "AU1247gPZXmcc9EVMwE4bTcmidj1yTZJkCoC1E8ZUJD3nDA84TWsp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1247hR1DfQHn94DfntBXDsrpCTAawuf49RJZ6QZpVQ6ebTimASy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1247oNw8Ki7xt5m4oRSxsRnW5E77cXVvTM8Z1dUH9cZHoNLRf6Y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1247oQ1dqCmxrebFnP8m1KpR4Arfh5haEXXhzZMAFnCtWg8uLPL": { + "balance": "554.221847065", + "bytecode": [], + "datastore": [] + }, + "AU12486KyZ6Xg5JHWGgsB6oVoVcTUhTSYsCZYzUCfd784Hoydfr2P": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU124874CeDaKst6yD5X1fTdPkZHztnh972mTXA5XGHFpvjRu6pEM": { + "balance": "949.401497728", + "bytecode": [], + "datastore": [] + }, + "AU1248PjjUKRrbqkHY7gwHZAWQo2JtCWugrvU1C2t3aPYksRnJH1k": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1248RnagssHxvxF6NSfS6NqwdE53bc8othd7Bjo2d3Ud86BUcCw": { + "balance": "1415.682902237", + "bytecode": [], + "datastore": [] + }, + "AU1248xZamczKQ4n4AmWSf7woef7AkNiScyEx1m49ZsPP5s32JsmP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12494AmNJxBYKg3D6pHcBYLcoHefALkVxqoNNVPQJqGN2jxSxsS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124A84UTnJWAPjyubAw5WyZYGGzPWYjdpVBXkdzP4oxmgY7AHPu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124AzNkBvufjFaKtgkTCsfmek8peGdPvHESRGqy7b8D9vTbbhZx": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU124B6zLhA4Q9kfJ5JvDcZrreTkh4KfxeUKbH2A9AZ6XhwKrsuU6": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU124B8wL4MfEiaNwxQNoWBf8NjPCcqoM2TyLoiPPFjGyGtyM8puF": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU124BHD1gsippQv8D4UkCc59FvWAnNtAPmMCJ1GyFVPDUFLsT2VR": { + "balance": "2220.665983811", + "bytecode": [], + "datastore": [] + }, + "AU124BSRDeQYDwLZPmWhqesAz3ozhZfwF6P4DR5ryiVsM5r94gCX1": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU124BXXeviftwPwxomE8N5RkK6zSY5Sxz9JoWdfmQeqSFwqKEEJz": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU124BhBb6zpAYwkL4j55qAoGyrMgCRVu1rUvf4N6avCQCStoEbNS": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU124BiiEa9aYEe26RHVwWgHuxsB8QtnZ4QJxwbq9NA9KHs9XAfqp": { + "balance": "3577.443306221", + "bytecode": [], + "datastore": [] + }, + "AU124BmP4Tcqonj2BTk4f1txXA6qX3PfDqkHp2BiC94VrWhmKzJYQ": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU124BmaCqctNK2Hh2KLCdZ11dddpV4YtKsCM5jUPDS4ctbYpTh9u": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU124BuhhTKWxJEb1gJKJBYBvN2C37UrEjCiaL7otxY4zHs9rXLfv": { + "balance": "1173.212074859", + "bytecode": [], + "datastore": [] + }, + "AU124C43K6UQN1yNNE9ZECYL5YDRsLXMyb8Ln2MFpGdPeDWcurmSA": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU124C8EhNEENPaBNKfZCxvsRyYuPqqaTd66EizAKb3w3ygUm3tcU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124CA3aqJxwLYG8iCqCTE8hxGDpJ4rTHo9XwnPziXKF2kTPVciZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124D1jpreQgxEHoMZ5xQaXiRFuk3u5Vh2JNXqT7V6HPoMqmocxm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124DFhAU7SXWAsa8epEX44emWR95GVikfgVNwGsDbbU6889Tfm9": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU124DPTDC2Pe1nQWhyRvp8P4ZBMqgcMmkJrzxa6dMLs2ZXKLhFeJ": { + "balance": "1524.863381662", + "bytecode": [], + "datastore": [] + }, + "AU124DgTgakXE43zfaHneCDW8cQcCpdL5LsYWSDXsdoMqXBzHxqP7": { + "balance": "1988.614129264", + "bytecode": [], + "datastore": [] + }, + "AU124DgqtMgTs9WPF39fTvzxehHEnCzFh2TXKgJtLcP6Ktc1o4Y8e": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU124EktpJTz1Hx2RW57xabNmwFLhzLKHcQcMWUcDmSfRZjC2HsEK": { + "balance": "1927.078781034", + "bytecode": [], + "datastore": [] + }, + "AU124FQrkV85ZiNC1M9oRh6ZB4Nh8hsr7qbPq7gNtkurC3hS5A5EZ": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU124FRBXt7bmojtoJ6xGB4GefEvX2PJSLCQaPi66NLEc1A8BZg6e": { + "balance": "5307.920173918", + "bytecode": [], + "datastore": [] + }, + "AU124FWNLNjqj2aNgKxQeSiPrS69AHbjHcdwcoUAKKz7VPUsR15Rk": { + "balance": "2.975197595", + "bytecode": [], + "datastore": [] + }, + "AU124FdZFyiBC22YGT3bkq4zVdJZvxuTJKRCcHvPEWNAKmmQE5CYt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU124FhaGyahXSNetUvReVfSTxQzoLdfKQGqAaDaoa37pRHyckbiT": { + "balance": "1823.364462469", + "bytecode": [], + "datastore": [] + }, + "AU124Gy2ceRChuJY5DG5mv9Cj6Y8ddt9fPguzEqoxqgf5H52icz1q": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU124HGyAFFV2PKNqYGWa29xsXVdPinncTQ8osN25ANCWsiKVkB6U": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU124HQ9iMubH1tCD1JLJ158RBuX4m54uhoiuG5QrFH9NEp7amoSU": { + "balance": "1085.464282016", + "bytecode": [], + "datastore": [] + }, + "AU124HUxHTucGhJeBMz5UKwqAstBWLyZ6QTpPeS4pQgLcoquCArW1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU124HbamM82mW8Fq4u4DtLSpnCgVi9w3QrQiX9KzNT1WxtCcKF5j": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124J6CTdQEDCM1DRjhpxRwFjzLXsnvhyuzrwVhwiNnGHkkqzgBM": { + "balance": "2810.829422201", + "bytecode": [], + "datastore": [] + }, + "AU124JCK9jk1jgbg5ncAvY2YiNgBK7HAdAUwde7wCCX44JGo9fEGm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124JJSwqkTzEyH199pzcmadKTj93sM4oqHrJEww4U1r7Ts8MFvY": { + "balance": "2185.928208034", + "bytecode": [], + "datastore": [] + }, + "AU124KC4D2CiexyW1xEhL5KJYuFb1JuLLJ6Y6mGrkc3ppKdUxqvRw": { + "balance": "2346.662034476", + "bytecode": [], + "datastore": [] + }, + "AU124KJeg2XeP2gpyF9GdfzBDiyttz53sncB3VJQaqbTPAcVs6KiF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124KXBBDC8qsgxKA642W6y9wioX5YSXqaC9so2r8KAyFLapS1pg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124KeGqQbFPJcpgFohWGm8rnpnEZJy2Ac1uDFyB2m4ZP4B61m7C": { + "balance": "2008.453550773", + "bytecode": [], + "datastore": [] + }, + "AU124KwCE3qqgZbrGmZDszyYDwPKWZ7sxo66X4GhXSZHftYmSbddt": { + "balance": "846.375141376", + "bytecode": [], + "datastore": [] + }, + "AU124L24dddT3YwU9RPJyDE14bp66xAkv5yqbVzosnvKyCouYqL6w": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU124LVVXSoMTkitGzqpEiSz6YJ6wve1gYYe5MdVXy1r8wVvmZDco": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU124MVN5j382SEY5j4eNjpuJwwsjxg4Ns4kVYLUjL9p8v9duRopA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU124MnDsFNpHBRii5dQPHSihUYyCGvSNEvSoJtRZYPCGKoBxCP8u": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU124NLLGfnts39heNX9Ms3jK6Qia59P9ovU4KYkgZQp5NXJAieFC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124NWLozdxGQu4RC5ULPZcyesk7F7MmBPHGZ9eziyWoAdBrKwmz": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU124NmAdnQTwfp4SR8igEx3G6XYqr84yAovrwzBXxfjFNvLnsHYW": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU124Nn1cfWme5SjGELwAph3QHxdqew6G6zw8zLxNoxrqu3uXb2fY": { + "balance": "1893.690769990", + "bytecode": [], + "datastore": [] + }, + "AU124NnD2LnEukX1A2VwJvo1fKdvYCMyZDVBU2LFaE1c9uk1WTFcF": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU124PBUMXNP9vB7VGEzrWKkCKiWCyAGEDfTi1E8Xcg9U9Sx2Y1kg": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU124PjVCzHKQ8BGupuBgWQo1YGpPdT3oFkea3XN8mH88xawuNaRQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124PnzMM5v469XQjATwPgZYc6Eb7yNZDtSgKJLCzv5zUcR7AVmr": { + "balance": "545.426687517", + "bytecode": [], + "datastore": [] + }, + "AU124Puw4NWwHoHoaML5KWDoVf23B8TKBcbcZgegWvjgTmpWc1XaV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124PvYMeVb2aVSxHQdwzmu6rnQdFko4cG3pMmRihxNY2MaT7zPr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124QJHGhDdSAdYPi37bTPCt3yt8N7k3jY3QpK7GhgtmqgDrMWTy": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU124RiSB5HGGEwcH5cUi6t5FUjNCMjBZJzzAEQwc4wwNKkeCfASC": { + "balance": "1357.741538754", + "bytecode": [], + "datastore": [] + }, + "AU124RwZAekDK42WFRMkZgrUp2pkong11APfbGaRq2MCfaujbVz4E": { + "balance": "2.133893948", + "bytecode": [], + "datastore": [] + }, + "AU124S1PSo3dBH56TH4Qm2tmbzfbyhwM8sr7ra584Fbb1UPh1V7nh": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU124S31mNJfHxDa6K3sjfWLvmURESs8kVVagwFMiQDrJpYzoyUQG": { + "balance": "140.806805902", + "bytecode": [], + "datastore": [] + }, + "AU124SKwHs81KYWgLZSVSiQ5T8u9K9gnMDNAsiVpgeRMvBWzK4LDJ": { + "balance": "2009.271400539", + "bytecode": [], + "datastore": [] + }, + "AU124SmKGc27gZLGUaq1CTBbxVANY2pVcQtw6WAuss9tJVBhaZujr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124TFNLYNYXQJFb2CNJkVtsDpvmAqfABSzsDbMX5HERnYntu3q2": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU124TdcwpRey6W189NQg2MsgP9oTbRV6RGkHCFtPM6drz1Ccjpip": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU124TeGqoKobFN7i5sPTnWwpf4BT8hDyhvzQXsj3ZgdeUuaqpHfU": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU124TtGvgamAnNF5qXHAvcKaC64mUSEHZdh1j7G6Nqa3BhXp8zz5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124UWRLeUkjDbr6JohCVdWWt6tn99KuPh8boDd2CHiEryi87kL": { + "balance": "1512.508374780", + "bytecode": [], + "datastore": [] + }, + "AU124Uc2MXKoPZNtb8JCKo7Yucy6jknAqursHmSUHzQiT9t1wagJp": { + "balance": "2443.176531393", + "bytecode": [], + "datastore": [] + }, + "AU124UhSpRvGLbQKdLgkLcrR73vsFAsLh4udW9shgPFMZTHAP79fm": { + "balance": "1065.214844846", + "bytecode": [], + "datastore": [] + }, + "AU124UzPiUwEG1JZHkpyQQ7Sx1fm27wj5gqWB7QxQa7WfqkLtpZAo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124V8TESpaq8i6FeCYyHym8Mf6kwYaUDKYpyrN7msdPp5gBgaQk": { + "balance": "78.338654001", + "bytecode": [], + "datastore": [] + }, + "AU124V9eGzMCaanQ9E81CpJRKe6Duu4qCweLkGwAQ5Enpz3vgZoe8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU124Vqxu5KfdQLPQgQeoxkZb4rPWfECKFy2Yi7pxpNkEPPLB7yZ2": { + "balance": "1542.033020309", + "bytecode": [], + "datastore": [] + }, + "AU124W2XyZHdemLzawVX7FRSd6quAd7fhyjYSVA9JywmEpfYKEMKm": { + "balance": "1460.987700832", + "bytecode": [], + "datastore": [] + }, + "AU124WDpr9whiXmHCpc2PZk34AGnp2zHsBfCPmo53y4VeCSddXVPW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU124WFRAmkkEYGPnjuqjHi1oTujvtUnWNfzZGdSDy2MKpJZx9bjD": { + "balance": "808.012301187", + "bytecode": [], + "datastore": [] + }, + "AU124WgWLG7B2WjmDGvVh2Y6GHuuemP9VXZqZXbRTNcgMKdg9DuUu": { + "balance": "3090.512814106", + "bytecode": [], + "datastore": [] + }, + "AU124X9Dj78v8kTStanaysmhQf6LRKK6B51NGjgN73xYAPor7hmsS": { + "balance": "582.580693086", + "bytecode": [], + "datastore": [] + }, + "AU124XFACwW7qNfCKEqLv3CPxxPnhdGbqviayPk3T7JF8ktZU4KUV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124XTwRWDvsY1YamHjHxYi5UDnMERFvbaScmbU81k1TfS5HcBvj": { + "balance": "249.569203663", + "bytecode": [], + "datastore": [] + }, + "AU124Xg9xEMASSjZKKGgyMH25s8eiBBadVh3Vt7C7RTh5ehgu3nx8": { + "balance": "607.098052640", + "bytecode": [], + "datastore": [] + }, + "AU124Xqsy4VrUaAPqs57dwzoP97jJqKafZxA99B5dLdpvHFDwzAmV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124Y4GB9mLhd7xmH9mucncPRBZ2cE7JkZsf2dDw6mjUw57fDTiK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124YEG3mh2duhMvvtLP9ggu6XhXePJL4TKdKEZEH2jdZLHfSFLC": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU124Yk1Wh23RrNha6XTKnX6ZwAy59h7od6mFxWp4G3v9dz1dybZU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124YmyATe3nt4wR2VW4L8xPJcMCxgY1ZYZv57oEYXjvkb2TvBR4": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU124Yw7JPdEb43Emu1gRFm6o5mDmJ6XfTCenz9hvz1Ktix8yrYRP": { + "balance": "1998.048421452", + "bytecode": [], + "datastore": [] + }, + "AU124Z4JgEWftLxmoUHPMKVmBsvgM3G2exFkFF7EqdPLY8r5YzLHx": { + "balance": "2654.150365161", + "bytecode": [], + "datastore": [] + }, + "AU124ZQJoahhodov3cE5YW1dBXDEyGSPJ9RQYWKLtHtey15GvYnGh": { + "balance": "1290.792858958", + "bytecode": [], + "datastore": [] + }, + "AU124ZXKd9vCbwthQDWXtMLS4RAoHoNfNT3HGDn7iPZAanymUwPEQ": { + "balance": "3208.074662198", + "bytecode": [], + "datastore": [] + }, + "AU124Zgqmckm3W3qJqzDFZvVNkzGZq725EEMN2dLXD649hLqz8phY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU124Zmt8qXFsc3fR5onKGU7385GLAamuocaMFzuzzBW8KPi3hxCL": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU124a6JgfUPXFJsk7EaaTnPxvmyh7ivcb4spM2pJRwbsvr732Vx5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU124bBsgJbbumfV8zwruDodjGm9mMj23XZm3wJ6GWN5n2XW3pzpm": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU124bdZiHebFYcKzaGXJPw6eQv5ab69oRBUesS1EvsMaiqvMwayp": { + "balance": "4695.767311402", + "bytecode": [], + "datastore": [] + }, + "AU124bmDAnKa3Q5Hxt5BFS3Aso6ooV6q11GPA7kymiE1XxpCzrVPE": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU124boDzGVXCwxAqhf19SKdJkvuVAz8hsGmbr4w6Lpt6NWCtSWGh": { + "balance": "28.271868532", + "bytecode": [], + "datastore": [] + }, + "AU124cknMa5Vn24gk9HLh1wbiKmW3DpEgsH8uMwBRv3tAPQDP6cJ7": { + "balance": "4252.385476246", + "bytecode": [], + "datastore": [] + }, + "AU124cpnwXmtUFs9or8CcZWqePxzxSR6xbAyabgYHio3bmVhodAxE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124dCY6eMmUvxao9w9mTUe65uUsMMJus6sZeT2mm6hSsk2fMo3S": { + "balance": "2137.313342603", + "bytecode": [], + "datastore": [] + }, + "AU124dzpZiAamuFxvWDkvkw4hsJNyxZTikqSCpW7ZVQqzcoQYxDbj": { + "balance": "1985.463454394", + "bytecode": [], + "datastore": [] + }, + "AU124e6XAiyMrPDEqTMXqPJ2C8QXbu4xy3WEtti9ZXpYM1RTokhkV": { + "balance": "2239.775209941", + "bytecode": [], + "datastore": [] + }, + "AU124e837SSiJBGqH7bynuuUPCkMxfSk3puryoZyyvkfAwUd1gTYr": { + "balance": "688.373271340", + "bytecode": [], + "datastore": [] + }, + "AU124eBdMX9qX4CCj6oNhrYxrEPPVQiUew42vtwGFbCESuQkQRCK9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU124eJ5ZnQPtBFFQkRYrj8EW9xuUXLmZM6fpqnzmCaGAFhSCWwZQ": { + "balance": "1375.279720121", + "bytecode": [], + "datastore": [] + }, + "AU124eMzWCJptVczABAEDJitff8ua9EtVtC7iEj96EcEvdPuv2T4y": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU124eNzNGCDcZsPVnZYUfHQKpDGBmakYpWgtPwDBbR8syEJ7JprG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU124ejaztUMwF1rqsyMqhK68rUxEbtmxiuXSS8aGSFD5GWe3QaEL": { + "balance": "786.422721282", + "bytecode": [], + "datastore": [] + }, + "AU124ezvpL9791vCUj26WjvfY2LqjPRUaAMZ8XyyUPnE1x5N4TWVh": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU124g2MBNkNmspesQguBeNYvmW5oSznf1ocB7x4ifZR9cT8qTrMF": { + "balance": "4368.706535152", + "bytecode": [], + "datastore": [] + }, + "AU124gMKnmrEqMNEq3Q3fxMnx6Ugr5dcoNp6iCibWhz5VW23pbdiC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124gaXN4HYRpq8eZrwLrgKnENtsQbXQxhynSwSFV6T7EaE7XwZs": { + "balance": "74.748909721", + "bytecode": [], + "datastore": [] + }, + "AU124hqZfQVDQnq6xkoFLyJF9jsprA8TVJD2tfFmV8gyicgFLLn3n": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU124i8XubeL5rDJqQxzmNk3wwfdmNRHMKAqdQtzcbySNKRiVdkNf": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU124i8kLBFeruGCXJAuaZZR3uZ64BK64ZR2q9WcTvSXkqp2UQcTo": { + "balance": "2074.904576941", + "bytecode": [], + "datastore": [] + }, + "AU124iUR8R1iAwaE63fVmyLtGpaqvnNQSpycwMbYK1EAHPhSspzvA": { + "balance": "2783.061964676", + "bytecode": [], + "datastore": [] + }, + "AU124ivjYRNXgqjHVaTkV2fXV7X4qmg7dZ4xyFksfpznbiscRruvR": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU124ix5vg2KuJ7VRE7EYPQ8E49X71zAW6odBq1x22g8ShaWGX1yn": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU124jK3Ero348EGMJiHoUs96jN3AJyYNRF68Muu9hC53NvKUVE5N": { + "balance": "3050.904663203", + "bytecode": [], + "datastore": [] + }, + "AU124jpEHHhA45kMjdssNExso6SAwzHoztY1ohuUeXCMmC1Ho3CXg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU124jtL6YJk5YCyTKAvswAuFyz9sgWixJJTctzxAZqcCnimvTE5": { + "balance": "83.615489226", + "bytecode": [], + "datastore": [] + }, + "AU124jvLQgCvz3C8xEwRpnWAi3da71kDU4wSq1zz9DL9VaSk1Gd6U": { + "balance": "1713.870023607", + "bytecode": [], + "datastore": [] + }, + "AU124jwPVfe3zSrrfDLj72xz6CKKPpVKXmMQUy2xiJNWsdzgH54TQ": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU124k2vgzBrxAnZpTfBkMFF5HujdPYSjt2xTsueasYK1EaMay6pW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124kHNhpJvhQgMJUrjeuqAUreWdc8HmYJpXuXQbpqVxB2ExN6ud": { + "balance": "162.541254125", + "bytecode": [], + "datastore": [] + }, + "AU124ktWzWK9UWUUssoKBjH5yMjFbQz7w1TfdQHgPpFGnGASWrU6o": { + "balance": "3303.986567331", + "bytecode": [], + "datastore": [] + }, + "AU124kuoxXWssqaoNTq8YMKHqhwvtvD8TMdCKcz6sgsyy1C2b6apE": { + "balance": "573.585956278", + "bytecode": [], + "datastore": [] + }, + "AU124m7Pkc46rx74f6piY7Nj4TPtQ2Lq7wPMS5aJEcAyKcgt99zXG": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU124mBaJGrzaGrMqSvJgzANpasbE9jUXeAkJPkSc666jbxS39U6h": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU124mCXaTYeXbQDsuXUdhY5uc6UfivJ6SWdzNDt1FdqRW6LHtwV6": { + "balance": "2362.052548485", + "bytecode": [], + "datastore": [] + }, + "AU124mKQqnDatz5FmE5ery2sKj8PtuTsuMw77PwSFkzkqYj1PS3NC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124mLn7FAsqdED73VciBEwKeJC7UiLJoFY1smZqUEreP1Gu5Una": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU124mR1ybpBrP3H6tg26gzGpK2cF1R7QgXCcFwg9wARkmKePqA8f": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU124mbDC67TDNgf7wkg4fUggaRArWD8WUYrpD2v88HzkC53hRm1E": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU124mhTcQsrX5TmCu3m2Gt5b7w4HBTRL6i2kLqwMpycatMrHxqac": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124n3G8BvW8LZ2jvThuqHoCfyYvjhqz7U5GFuhiAjSPQQskvHPE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124n4fSN8rDNyNKgUTsfhw9uMFjFZydpuiuqLuz4eAFWQY3QgXU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124nQZSE794rbGhUg2THh8PBPkXRDQfGXG9KbTHvGv79dmpsWdW": { + "balance": "2488.543347269", + "bytecode": [], + "datastore": [] + }, + "AU124nVfRXt3Rhz7ht8X7E5bUo6hTqJwv3ZShL9fPsWBM6Fc8Hwqs": { + "balance": "1409.855521626", + "bytecode": [], + "datastore": [] + }, + "AU124ngbVWr8jq1FT4wYLHh6Y5brUgN5AdbVkBLATPepxCh8NN2KW": { + "balance": "746.706864536", + "bytecode": [], + "datastore": [] + }, + "AU124oBhXUUUbRDFaMA42TkAKxGshaUNHMpmAirEPnYnGBMHF4iCt": { + "balance": "3113.613130789", + "bytecode": [], + "datastore": [] + }, + "AU124oTtvENHxboDv66wGMR1snyEh41ZUk4xSUjP6MdsvUsmgFYtS": { + "balance": "637.498809107", + "bytecode": [], + "datastore": [] + }, + "AU124oV7AHjFsji6HAANEKB9f9FQArV3aB6x19m5DYm1s61e1EDuC": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU124oWHyi87q51odMtL2tvGP8GqULWtiTQmhsQXp1w16HuWsUNM6": { + "balance": "1776.621561842", + "bytecode": [], + "datastore": [] + }, + "AU124oX8eGdLtqGPr6wJSBhq6HvvecCz2Vh8eUPjL1H9oX2zU1thA": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU124p7Cmo9xbgfT4yHkbBt3yE7h3UCxDgtSDfdpTTkisiNmjgrdL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU124pJVqPBLS15aVxLETQEgaVLixt14t9UhQv8LXViZvhDrq7wap": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU124pMsvigUmysqMFWCaHQdMQViiP9ULga8egH1W9Gb3kGBs6DsE": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU124puyFHwbZM1byv9rh6f7cjezQ2QxpQDYmwYFvvV9DnqVBLNG5": { + "balance": "1920.214721336", + "bytecode": [], + "datastore": [] + }, + "AU124qJ4MGDWjizKvBk1nx3xRRMmQSbs9e6WNDfAW2akw8C1JcS61": { + "balance": "1627.371209464", + "bytecode": [], + "datastore": [] + }, + "AU124qZdbaqNJUEYCd93UFTdbxnBm5cZBk7nHphpM6CKGPFuRC5oA": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU124rK2TEvgSqTadA2KxLrPGkB2RNQBpDu6sbFyn7d7ZsriiKDb4": { + "balance": "2690.605617669", + "bytecode": [], + "datastore": [] + }, + "AU124rd7mMui8Upi977uogFdTLbxUCJ2NKC3WgZckNmomTiZYS7aU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU124sCLcpETTdYQvdfCXDvz9H1x156U4C18oHef6uQdMV9z8XTn": { + "balance": "2318.612463344", + "bytecode": [], + "datastore": [] + }, + "AU124sJ1UA5WayH4pXaiyB6VKfjuKH9i2ZYjiACsQwyipFoVaM4Cb": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU124sPueoGFkHMnT4BMaFPERWdjEFfBUiwn4stD8XZRLnZM7shvd": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU124sQtSXDyZQ3j7T9ThwQbTx3LMYbkqSZaJ6oLkNvfNTHN54sqm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU124sXEpvvJgVyRJ9fqAdmkCtdtGezpknSW1gRVXKqbBTPEiK38x": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU124stGn76WxmgBxbxuKk4AvuX9uGHmTUaSHPGepv3XjTtzL8cWE": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU124tu4V8yw9LkTKkQr2Be9TeDJSQN7MoyW3v7FcQX8MMtA3Tb3p": { + "balance": "4433.324261393", + "bytecode": [], + "datastore": [] + }, + "AU124uabiJjcavUzUJmRJppAf3FeFcHE7or4PvFFkRXeERKXimJz5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU124uimRG3zoAdVa5Qwx1Wymiv8C4XXDNR4RjGjRbH25DkuTPkNP": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU124v5VbJ9t2Kt8n4LTqEXBDa3hCETCdHSpw8uFWVSVZMPkiinoi": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU124vYC7audq6M69DQEvuB3js21nLFzZmTLHRabAsbEjxyX1mbR2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU124veaeBdhvziwk7Lop1dihXtq2AfCVsh4bf3TEbQBYXrBimzjy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124wEtK8QPGcZhCqg9vhzp5kTUoHNMPFMqXi4f1mcR1VE5j4mNF": { + "balance": "2063.583735912", + "bytecode": [], + "datastore": [] + }, + "AU124wWYTQPvRBvFBwiHKNib8soKjDfCiGnisSm5fjEkdDgXDqBqj": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU124whTtSuoq92n8GPMF5JxjY7UoFqQUZiAkXHDQVbixhZeP2g31": { + "balance": "1004.339531570", + "bytecode": [], + "datastore": [] + }, + "AU124wojkr7nEBVW4nsbhL4HiHqjdfcb1KVoPHtX9ibZ2AY2vVKsJ": { + "balance": "2617.694686746", + "bytecode": [], + "datastore": [] + }, + "AU124wtmq4Hdb3KA9BowRLa55QYZ1NUHdYEZpjs8rCp3Tbyb5C7V8": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU124x6LUZecSiGhgdrw5oM84Zu47MBFUqbByEk8wwsDmY9zkWU2K": { + "balance": "1236.897760455", + "bytecode": [], + "datastore": [] + }, + "AU124xY2TCW1jGYfaX3jPY5JXX76GAHGD3NnkHet9Q3fi5pTaKXee": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124xxt45XqnNNvrjsa3oMQrc3T79A1m1gkooiwzMooZneMipWXC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU124yAM95AHBWgzg4Hn1HkCQFRZKVZwHs2jKFm2x2c7X6ETd38fq": { + "balance": "3226.956896732", + "bytecode": [], + "datastore": [] + }, + "AU124yDGLtDcn4RjHN6KRwFm9tMtEyH1AFxD2zFe6Y4uF4w4Yqa8F": { + "balance": "750.393819937", + "bytecode": [], + "datastore": [] + }, + "AU124yND9aCwZERvhyr7cqovv5RdpX76YaBz5ECqrxStfqtdo6D9i": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU124ywZYmwcHfp945AYgCJggC9WBEopS4Jm4D7FuSnSUXNKxWCJj": { + "balance": "2099.233548916", + "bytecode": [], + "datastore": [] + }, + "AU124za68QGWWZNyXu9CZepPrTGXaEcMmeJsQGgF8qGWPBdvy66pt": { + "balance": "14.590399070", + "bytecode": [], + "datastore": [] + }, + "AU1251Uha5nc8m7rHzrpTqNDY8Cbc1bx1TyJh8PXnuHiPv7WRbYxr": { + "balance": "203.589258890", + "bytecode": [], + "datastore": [] + }, + "AU1251ZUictzwaBCyRmd9sGXUqibbnTRY3P48wV6q4JWqR9FnP4yg": { + "balance": "892.428347775", + "bytecode": [], + "datastore": [] + }, + "AU1251iokbBGfRrh5MvUKupJ1Vo21MDNSgKMXeN73d4v4yZC14Bi1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1252qjMCqpXLAWDXyQuAJTwKRgdCD4k9443r6A61LwM1vwvkmSa": { + "balance": "597.126458764", + "bytecode": [], + "datastore": [] + }, + "AU1253ypcX8MFPqG6xtgtYfDevMwzdunykBZLc5mXb6QsPFWNYpB1": { + "balance": "5780.118235081", + "bytecode": [], + "datastore": [] + }, + "AU1254jvZNPCJxBixt9dAohT9tzgCKxY2u4SKpknLWhzzFquPs16X": { + "balance": "1404.556481972", + "bytecode": [], + "datastore": [] + }, + "AU1255y1KUUk8xhMN6PL3rmE8284hK1HwuzAY4JX2b6q6waCJpM67": { + "balance": "5844.391420518", + "bytecode": [], + "datastore": [] + }, + "AU12564b9DbahtXsegxWq1JM5myqserrubGKSbmPsSdehvtKf3ty9": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1256AQVyQr2wirVQaN6dyDL1yEQXMWiPTYtzro2ravLN4HPK4iT": { + "balance": "792.819418472", + "bytecode": [], + "datastore": [] + }, + "AU1256BF8RYS6efjmCk5MnHjy2nYyeDm7DsrDCxE8W4YYxrpumusu": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1256Y82ufYRqn7TYQvU56onJZcL8jWHaDMVFuqy7w3v2Ufx1PUt": { + "balance": "1771.103377044", + "bytecode": [], + "datastore": [] + }, + "AU1256aBrSWfnQZot7UDRoWpJVFrfq69R66zoLJYQEJCWtqMs39jE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1256fbs41oNKvKePnrYYrx11m1Nwup2eQV4EnaCskL6ahTkbfaa": { + "balance": "2150.042285526", + "bytecode": [], + "datastore": [] + }, + "AU1256h5GJPv8RLPE85YRyy9Msrg74XwpAaKjXtSxkUfg8G2iBC3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1257pBqsHoV2sthgmMQMWgs79KUt4UNf6AyerggCkKqsNEuFFyn": { + "balance": "1918.710289895", + "bytecode": [], + "datastore": [] + }, + "AU1257ruk8EFhh2pF6mugT9MTjPkD72NyFJ9MF7UANj2piePA3V5S": { + "balance": "14.542488553", + "bytecode": [], + "datastore": [] + }, + "AU1258uUd51DLs5LQLZ5KvJQvRwq67fR1SpatRKZe7osZ8e9XSKZR": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12598zNpX2Kk8Jn9RNdUy811E4rUxf6ai1Lk9bymbzoiAegisRv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1259N3aXFwEGdxRLGARxyFUvtPKwYqgAYv2bwKnxy2gjjg9XcM7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1259WGhqQAEYeb18cYno4nGhPFEyfccYE8rH7bymjjcN1S4SgCZ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1259wm9exA75JCnK2kNVGAiEyrzuomCwM2BbnWhVGWwZk5nS5zU": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU125APnkou6q71PAjhE29jSSM6xx2Lx7XmEb6yzMUk7zCUQB4TZa": { + "balance": "2054.337957800", + "bytecode": [], + "datastore": [] + }, + "AU125AjyNJVt44pzmzrUxAW82SuzRYogZUj4eGvMxzXnKGN7KQ1My": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125AxL4f8YFzwxYD3NkKSKqVbmxbGDsAKjVSc84X3MzbwUH58vK": { + "balance": "17.409100307", + "bytecode": [], + "datastore": [] + }, + "AU125Azvt2o9VRoRfeiQ17241fhP1j6pr1FbPnuAd8muro4LHNakA": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU125B2SwkHGPdFHnhRssUM6ifyYLPVtE3XwqhDnHcT3syv4FnzaP": { + "balance": "44.557451859", + "bytecode": [], + "datastore": [] + }, + "AU125BFSzDYKrvrRUXFjz9wprPi9RzrWj7agFgMLfSXrpjwpZmXZB": { + "balance": "783.835282697", + "bytecode": [], + "datastore": [] + }, + "AU125CHUX7KmPNG81EDh5otcbS9zemVFzD3jVWUDm7cv6DBSLJ9eS": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU125CHnYbP9wVhoUwTLanChGAHzwT3zavwrGdd1SAGu8HrkHhcag": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125CWMZkg75YwoeSQ4UWemQpRerut1n6XU9wABjnuGHzGD9zgPz": { + "balance": "1191.750810109", + "bytecode": [], + "datastore": [] + }, + "AU125CWP1yH6TYNgB68RjLoF3rwmEczhW6pkXJbwoWkHgJmJwnkRF": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU125CdzEoqk23EBjk2McAtqN9QNjuh2xong2xVCgdRNVcR3JLss5": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU125Ct21w2GpeTY8GiU8m35mDcBMK24BxzqSiEBxdDxHpQV8Zj9x": { + "balance": "1499.580100941", + "bytecode": [], + "datastore": [] + }, + "AU125D5HtqwKgLednsTA1cryyCiYVHMjvyb8vD8MxCzhGt4dnu7oU": { + "balance": "1606.863316874", + "bytecode": [], + "datastore": [] + }, + "AU125DKqukJdowwwKuXqy5USAwWcNw8HBSgWwnX7k1edUU8if24dt": { + "balance": "588.221640240", + "bytecode": [], + "datastore": [] + }, + "AU125DVB91p7g3pV2mpBxYNHKsmtWDqJfkuuynrtnMqhxaJecWvoe": { + "balance": "214.142938764", + "bytecode": [], + "datastore": [] + }, + "AU125DZFVW4bjm3cfwJ5iuYCTFchPsiaUKyTsxCKvgNyZXwT3muud": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU125DsP7jhDxuC4qxNzgykMCq1wwaS8xuksedQ1K1c7xZ827fpa9": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU125DwyiUyT3ybHob4AF8BM94XknLfLSvUKE7ybX6BZEKwpUVNyi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125EZShw151cBKfSQnkkGNKSFYDqUNmuuFW8J2Yqn3ezzEagkUW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125FPzK9KZCvM7Z65Ai2pAneFbBwC9Hzg6yBSYQBNN3bJLwSLdC": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU125GAxavfvAuSLWoNHiPSchxHo5upRv4aX5VLeoWFznwGDvo1VM": { + "balance": "1886.183354173", + "bytecode": [], + "datastore": [] + }, + "AU125GG2K2n56yoESvuvSpy72tEjRJA5K32QuvVtYUSEkGLf1V3aL": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU125GdYYevvBajXGbvLwu3RWjskTULTqeXMz1TALQmzd772MSLTr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU125GrEkwJ16CPxpW6aQuUGZ5KjooKMUFQtPXBTXSE6afRNqL4ot": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125HB3Y2rDvZpwKEQ9YkHdPiZGFBzctt7dVtCr95KaovGki9xDU": { + "balance": "79.959415028", + "bytecode": [], + "datastore": [] + }, + "AU125HMuK7X7sJX8DupGGkYdj5srbJpp6uV7CnaJsv3XtRmpkWChj": { + "balance": "4797.882891435", + "bytecode": [], + "datastore": [] + }, + "AU125HNEVU2FpFatDR95xRpsffp3qNuTTd5skPxjwfsBshTy6QXxG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125HPi8ULfcokqd9Lxtjwf1CZzHGw7Dt362e5wDU9QGtmU99rz7": { + "balance": "1689.034020284", + "bytecode": [], + "datastore": [] + }, + "AU125HR2SjMDVfPhVPrHL3cywNGeAZxcA8Je6rQMsZX3ynGLeBESH": { + "balance": "4207.308710633", + "bytecode": [], + "datastore": [] + }, + "AU125HSLica1EFSCLBj78KdMKh392yXExquZ1Jr2S7MpzBoZRn9ej": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU125HkrgX8xYaAw3JC9YC7k6UfHJCD6G4BFQqiKrk82ZPxxuQU6V": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU125HrH6FdR83BG9Y56X3e9mrejk8zEREBstQvdiLChauaMKbr8Q": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU125J4sjSJRN8RiazUxmxt479rcxDku1qitxmRQfACMQEdpt5yFy": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU125JZ4m2e9dU3jKTxgjvPbMyxj4LZy6UW4y3YAzmiYHPKKM9Q1n": { + "balance": "1193.746898100", + "bytecode": [], + "datastore": [] + }, + "AU125JeUksNzA23GhdYQiuxoSiDhRqAgDspJ6RDL8U58UvtZjhp2G": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125Jikdwz3BNWiVJacnEWbEQ8CK2Nyw5W1GyZCzLTXEVabxkKfx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125JsjRChkpbynpKyLWXPJ2d2KgDLykKVgJTb6DDdsawufDZ2AL": { + "balance": "1480.367420676", + "bytecode": [], + "datastore": [] + }, + "AU125K4CrR4rFqH21zoHGSMeXfNQDz1iq4CArp4NKD5jQqeJQP61y": { + "balance": "1166.515396103", + "bytecode": [], + "datastore": [] + }, + "AU125K6S1A1AmupNgNwvfvwX1ziUnKystZ1Z2it25CBHhjL9EMWKU": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU125KSUgGGc5t2pa6UtkVnRmrwf3VavnZGdBDiHvZaywUheLaaJv": { + "balance": "1343.883342985", + "bytecode": [], + "datastore": [] + }, + "AU125KyMhN6TLLBL3DA9nTK3iB8qBd7drbvjP5e8a1Gbe1agZdvL5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU125Lq7bC3CVrFo64AF7L7X13ETfGyhpkY8yANQjrRUpi4vFh5kd": { + "balance": "1527.647501014", + "bytecode": [], + "datastore": [] + }, + "AU125MTmhE5wJRaHTWeV5TBpxanAcz3iP7fGWg6jES6tZEiHTVjSm": { + "balance": "1974.198370692", + "bytecode": [], + "datastore": [] + }, + "AU125MnrKvRNes1178zqHLYqeXcWKvVGFieVmupa7TjWs5xkT7Kqy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU125MrzDTKDwCmYVjwqCTq5eEYjpN8jdMmzSTHpSwyeKr5tPc13y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125Mw6ipkJozAXW5nSRQfGMnUqKkdb8WnVyX3wMCEchQPztk8de": { + "balance": "1413.189111856", + "bytecode": [], + "datastore": [] + }, + "AU125NgaVHnyCyNGD6jduP8XgoUpmYLCKc1XoBUQxvrkJqc2HqqZs": { + "balance": "6228.372739602", + "bytecode": [], + "datastore": [] + }, + "AU125PGSDxPQ963A5WRFwxMscqrTmj1G7QB876HP4imntgZR3aTan": { + "balance": "1386.063431173", + "bytecode": [], + "datastore": [] + }, + "AU125PNwWN4he8o9vnyqtGqfmpkeBvV9oWbjpi9J2Zj8DtzDhRtPs": { + "balance": "959.092150822", + "bytecode": [], + "datastore": [] + }, + "AU125Q93fxqwRFcCWwMTc23QMJSJjnpUkvcnsXuHr7EQqUAtmvYoN": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU125QGQyQVemcUJrcAhVt4qPY4tANReemmQ7VQuL11R4bw4sjHi2": { + "balance": "1097.450452475", + "bytecode": [], + "datastore": [] + }, + "AU125QLDcoJHHUWpMmkjjigCTHL1Hpk39RFGBaNizyCK961x9czEE": { + "balance": "535.380529050", + "bytecode": [], + "datastore": [] + }, + "AU125QXsWErSSK2KyV1xCFDL34Xq3LLW5hQ23eQ1HZgS2qhj4KCtZ": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU125QXyPxmtoETGJ6fzFPeyiEifFLwbS8KcDePg598mgDik9m2GW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125RGC4cdejufpQUFkZ9qF6Ep7APam7XkSb4du64MT1CPocBvvM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125RW2dUdeEtYwjGHoHJWd4sLfz9DmQH1aYo7WskCG83BXqynVi": { + "balance": "1467.353453500", + "bytecode": [], + "datastore": [] + }, + "AU125TLNQDTkMvWNv42Dmsx4mfQVj5mD9cugo6sHKrEE5ArtpyKHt": { + "balance": "873.673586866", + "bytecode": [], + "datastore": [] + }, + "AU125TgqwnK3hwGaHYhkRAfQKtYkAbPaLMTpxGTgSrz3NpsFUDaU": { + "balance": "2636.405681524", + "bytecode": [], + "datastore": [] + }, + "AU125To8FkyNkeNfbsPaXG6NEp4B1TYEZnqF9G8mN19H53QUyUxBw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125UEAwFAZeWmPrmant2RSZvpqwrQRbTgVo42D5sWLP6CvRGSH7": { + "balance": "834.022447628", + "bytecode": [], + "datastore": [] + }, + "AU125USTC7h3fM5Bg5fJcuPrtiihPwt4y7T954egM8cwjvvGUcWe5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU125Un6Yc6vdrkkAahLNMdZEyMvBCuZ2FXm3s9eqZTtYHVe9Efj3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125UphkCcHAyN3V1fA8GxEdR4cCtn5nsCER49UY1D9YKmb4EeKt": { + "balance": "814.462645297", + "bytecode": [], + "datastore": [] + }, + "AU125V78uupp6LnR179eMYS4naFxWbm4nk7WG7koKnpmpddFmFpRt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125VPezVZnTaqC7rYnHcDEPrUQo3G3FQngUfHW3zTqrXwE6snxR": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU125VjShKpZa6XpC2oQXqXXhdMznJ5Pap518VsF49TMNBzHYaHi5": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU125VmR4qBQZPA6oViTzLnaka4Q1fLVpEYRC7qNUnQn28eo85pH5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125Vt82YH5BDfkru5xUJ2xLPy2ebcfLkpnEGhWcC5HkdXSbMvij": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU125VuLkyyXnmyunJ7Mh2rELjfLcq2SDJcD4DLTHhDvHZjZJ513o": { + "balance": "2225.614940142", + "bytecode": [], + "datastore": [] + }, + "AU125WEbfxJVn9poUMZgfSCz8g6WNBok4aX2DpeLSRucpuy3PdJJi": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU125WHgivFxNMUPjjFHWKfqq8Lx9sYEPQFXkhkLwH6sTz4LM8Fq": { + "balance": "1495.176429145", + "bytecode": [], + "datastore": [] + }, + "AU125WYHFn1H9zZZEGDo44Q87ydwoGj7PzH4mWNJSQMArxzYXgNpe": { + "balance": "1570.229635670", + "bytecode": [], + "datastore": [] + }, + "AU125WuCUVCaPk5fx38WGB2H4rjsc59NyPTYfSR78XKQvrA3ZE6R1": { + "balance": "1448.001765483", + "bytecode": [], + "datastore": [] + }, + "AU125X7dD3KLLsVZzzVxW17Z8CRWiCzzAcBuhe1JS8AA1GbFNFDft": { + "balance": "1816.791681010", + "bytecode": [], + "datastore": [] + }, + "AU125XMh84x1atM8LQ6JcfSJaG3eAkM6A5YAMCjpb4rgvkbVEFJv2": { + "balance": "2605.396829259", + "bytecode": [], + "datastore": [] + }, + "AU125XTgy56FDgtJY1NidZu2eExonmtoYkN7vdxt38tiuQmcmR5U4": { + "balance": "570.137271321", + "bytecode": [], + "datastore": [] + }, + "AU125XfsdoURZMqiLcV4eE5RDCiF8PiBtRNwgHxjCY8may4jVHeZG": { + "balance": "2873.074822599", + "bytecode": [], + "datastore": [] + }, + "AU125XjDTtMCXgPFs837a6zYQajpAdeiMtc8FBgjbVY4FmYFa1AoH": { + "balance": "872.854625774", + "bytecode": [], + "datastore": [] + }, + "AU125XoE5vXmCsBKDmXSwLs7L7taNpbi9nyZKU3b3HEUSpQ337jVf": { + "balance": "601.153324918", + "bytecode": [], + "datastore": [] + }, + "AU125Y5ZFt87EWnqkkFZE5J38dq1pyNKrwFYRpFKS9Y9gf6nF35Wu": { + "balance": "5454.992969648", + "bytecode": [], + "datastore": [] + }, + "AU125Y6aKsmC9pJBSZUss34a4mtqvKpfrg1xx8RLNPG8o7g7fg5L2": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU125YWMEWU5GDyfGkSLbS6E7XfB8kvwHmizJRhdgXjWvqfY64Nrw": { + "balance": "35.799731537", + "bytecode": [], + "datastore": [] + }, + "AU125YkfpriQGoBmNBVyXBNkAQzR55cpbdqaYBtcV49zsq4rL4WnD": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU125YxVL7Sqpi2gZSfi9C4vBPJDBLm7C15vHvQasuvbkaW6mEmJo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125ZFuaGQ2zkBTV9vYrGXrMw8xZnesM2px2jTEsNNZjLeqS4ctp": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU125ZFwoc3Qbt2NGDo2oKZJYbVTmxT3FHpF93hg454aT8EGieJL": { + "balance": "4071.330978604", + "bytecode": [], + "datastore": [] + }, + "AU125ZKmkHaY9S4oHQRmwakxtyaM5MDzAPjWEZxaVs9pK21baozQi": { + "balance": "3272.166571556", + "bytecode": [], + "datastore": [] + }, + "AU125ZWyZh5qpUhzvMqQcuVQ4L9jMZdTQ9TZdMt7XiQb9G1pFo2i8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125ZfxwpQy61bdEaTRbLCdk2d14cEEy2AZFsfqvwSTLn6Cy7LdY": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU125ZjsHDgSuLZaNazvSF2XB7BHbf4mTjUYcWYs6ku2bj9Dt4yuA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125ZxA85zd3RmwsR7bJhsQ4nqzg5yr2QTa23dEM3fcWMzCJ2iFs": { + "balance": "2501.442290892", + "bytecode": [], + "datastore": [] + }, + "AU125a3FqREhNjLrVYAzoyQkaJ1BWVJ7sdHjWeDCJjjJwbsz5Y89p": { + "balance": "3662.563730554", + "bytecode": [], + "datastore": [] + }, + "AU125aM5KzBjDSS2M1nar1HXuRjmnEpdHqctD8A4hb29nX8u2RJni": { + "balance": "1478.610896828", + "bytecode": [], + "datastore": [] + }, + "AU125aMiZBjPbEcFHTs3gz82v9GGWqJaM4zTFEwJBiLwzmdJZt5LP": { + "balance": "5280.478281431", + "bytecode": [], + "datastore": [] + }, + "AU125aWpg3cCUSkkD6Dc9ibdB4bydYWAzkzo5CbpfhuoKt2UvDH5Z": { + "balance": "2501.818563277", + "bytecode": [], + "datastore": [] + }, + "AU125ax7qcjXVc7u4qj9kCfHiGVao7Ghjx7DpuA5Aqv1eFfbPABDP": { + "balance": "3727.693877557", + "bytecode": [], + "datastore": [] + }, + "AU125b9SU25VLY7xYQf9vHm24GNxQp2TygHXR6x18JEqhXTBRogCV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU125bBSVmj5pZzuGS5HiDy5x1svjz6CBWPdd9VMjem3ZS1vhQiSd": { + "balance": "1124.843357003", + "bytecode": [], + "datastore": [] + }, + "AU125bxpFyaTuJacQU7ahGVmhbpYNyqppJ77sYBMsoHTesPbJco7A": { + "balance": "10919.315698340", + "bytecode": [], + "datastore": [] + }, + "AU125cVemAJ7fBjK8w8jBwBxRwi9boL5LA55i85ZAGZwj36UzdbYL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125cxtFjjq53ycZMs6EYT76yCJNqxovQnugZY4vrdxuGt3TPHQN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125dA7nXt26oFSr82rbyWJ1to5mRNZBX5mfxVbN5Bd8dJd2V32o": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU125dEZ2cjmfVypS9mqbrT5tjxcZX99FFfRaczvShbk74EUT9PWz": { + "balance": "3552.742234226", + "bytecode": [], + "datastore": [] + }, + "AU125dYtyon3owvByLkamvjmT33ED21QZbgrk2pZCRJ3FsL2koSQ1": { + "balance": "4836.554184568", + "bytecode": [], + "datastore": [] + }, + "AU125dvVrVKBPZiTmSW3wfeS2JiDn83FDv3u1zDh3UmNMMWt7eYGD": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU125e4ZDmV7MjdtrUnXkKkqgPN7HBUtxBRJPMErqg3CYSwmoa1Jc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125eDDBV1YJSyARuF7rk7236TEKWETmYkPGjtRfwJygAYiHLN8b": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU125eEtv1FyE35dYmzjTZFPhYEFw9UwLTkoumbrbcJNxayccjBwZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125eLdpX2AG2eKHw5UZdPbMeFuySX5xa57PJVfpeujefcmoQDJR": { + "balance": "62.706270627", + "bytecode": [], + "datastore": [] + }, + "AU125eUPSXJRS3BBiXiEJdXkSjc2Q5tQ4D7kLVXLDeViu59kbFV2c": { + "balance": "795.831072791", + "bytecode": [], + "datastore": [] + }, + "AU125eV3Q2jHcgfC4tvTCjNb8XNUqV7BM6WQWohjTZVvqHLi7hqAs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125ekwPRJeMVhxMztUQ9HbzpjV2BMHCqihYGyKdtE6RVbeKLdy4": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU125f4SLTc9jR2Tin1dHcCvnQmnriKTxGur9cbGgw3BG7GVwUoTt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU125fjMCzA256J6fcB1Qz2sEtoLUjrLXtuDeoVcpiM7mfXdvnH3u": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU125fqGkjQhefFemWxLhreCNxKsjgSGBYXAeNqUKy8nzNTERnApf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU125g3L7N3XWJzduSVjfmnDppCuxTd6LNsFKA9WyfmPz9i6WcN3v": { + "balance": "5691.490500757", + "bytecode": [], + "datastore": [] + }, + "AU125g75PcZRnzi7c41cBoDrVBYJLLSpyyCu8HkQDG26fnBnj85zM": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU125g8ywoLuuHZPgiKiXX3KyAf4YaZiEbGndt1Emx7iACRhwsCq2": { + "balance": "2218.879089417", + "bytecode": [], + "datastore": [] + }, + "AU125gAvxHtdn7D672GegrEtC8AtEHUPNGmWvrLeXDZvLFwjU7vNW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125gikyvwFNvAJau5doM61fnMjEhg9iGzp3sKe35sn8PpCfHje4": { + "balance": "3585.672034270", + "bytecode": [], + "datastore": [] + }, + "AU125hBgKZmcWWHpEgDsFrMWadZigF5XpJcyfTb3NNiRuL1ckRVvw": { + "balance": "2344.939891312", + "bytecode": [], + "datastore": [] + }, + "AU125hCRQWv1y5yk9rLJxbPJivMHrhtLmg3mGJFHduBgqz65Mx2RN": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU125hJeKymKvVtiyG3Ae4oF2AU17gF3TPgHNRzywNnBdcq6FctV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU125hXyETDCNXbLmk5J8fe9URFUMHnVvR1WUshLjHgpovt7AKN2n": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU125hYN9ftoPKhcFfpXErwxdnYoDvTn7F89GF8UuzvMwtYfZbU5e": { + "balance": "5711.936371370", + "bytecode": [], + "datastore": [] + }, + "AU125hmskwqhEmyKNDVDRP634WGEgFkJE4C2xq2X4a2UVUZayaPmm": { + "balance": "686.749945139", + "bytecode": [], + "datastore": [] + }, + "AU125i53FL11L6y8U2rrmLLARzWFbqnzXhZexfh5cGz2BPe1c4Duq": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU125iLoGinFnZhKkkJ1PqR8DprZzZ5WoNtgWzFoX7Y6mwP6GhLRe": { + "balance": "5998.988485832", + "bytecode": [], + "datastore": [] + }, + "AU125jDLkKyynQXCvtDncyymHaH2YrkERfuWC4vqpt3TWDnEhd2EB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125janCEsQqVdvbdHuA2SMaP8nfAcupsu5bbi1P3adG3euaiWxg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125jd3r8KbQmcZ4SMfMLXUJVQ2nxdYyv34pof7VTM4cyCxkWDEP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125jw9xhVkujsWgwUcnQb72tufFBwaNXRWUtQZA152afTaQXnB8": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU125jwX9xHwKZvmUjTFFANWoxCY2zsF115cNEvJ97HPC4tFGWPoZ": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU125kEkbxnW6MNavLKqfShbQyzfzNoCFFCmzK3okoLJ6iK2eWSKq": { + "balance": "4.406188190", + "bytecode": [], + "datastore": [] + }, + "AU125kmC8esGMNtjUG6jM9bGvB378LsmTMBjwB9g3E23bzoBG4wFv": { + "balance": "4437.368886349", + "bytecode": [], + "datastore": [] + }, + "AU125mEDjBwmK8vct2fbb4aq8SEqepeRTx6T3opWpAo7qFuTQGZjz": { + "balance": "733.277077501", + "bytecode": [], + "datastore": [] + }, + "AU125mk766AXiYg8DFxxbAxgTP4XfujocuUdhfmYNaJWTAwe84vrn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU125n2sqKsTrYWn182tudF2sgESbnabGxk8ANPF888LrcdLRzWon": { + "balance": "795.053264226", + "bytecode": [], + "datastore": [] + }, + "AU125n9tQVJPhugqLM41Jpi7gC3a7ubwRZErQ8LmEiR82yu9TGimC": { + "balance": "561.079279787", + "bytecode": [], + "datastore": [] + }, + "AU125nSNtpuXYcyovZkosL1EJtEvx21vxk4VAzk9jmcmeBYNWWnjH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU125nWAxnd38zFqCaYeEe7XX8NjTxG4Vu7bSj7bFeWD8iSvpNMEi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU125nXRkGE6fQVyvypRgXYhuZiAhAxZ7pYK7RgbWGwV3o72hnqzC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125ntKAwgC31x5LDbZkfNAfqypWcAVjX85R6zzjdwV9U3scdoat": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU125nuoqZWtrwrnrzHpYtmddYSrLddgwkutC95pyzom6rDKxbjAr": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU125nxV5S9SxTLeR4PrwbTdQKAMn6umJZPRzLgn3PEjtT2X3sWgV": { + "balance": "68.481848185", + "bytecode": [], + "datastore": [] + }, + "AU125oVQw7KzZYw8gB4PBZgWTVv73SZs8s4mHviagaWxWLBiD8c9h": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU125pU8syu2khHtNmpSfsi3N5T9SjwszpYwkVXN4jfDetrLxLqiq": { + "balance": "743.563001440", + "bytecode": [], + "datastore": [] + }, + "AU125pWvAsEJsfB5QsCihLXduDu2y75L6VvTMFzdgmVp28L3inRTF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125pan5kx44tyB4CbCG3hF1fzT2ivsZom2w26R2jK9oVCpSt9DD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125pomZ15GkFZBvMH29MtYcowxoUyHrJEeUv7mPpCna1MqAKxDr": { + "balance": "909.699532689", + "bytecode": [], + "datastore": [] + }, + "AU125ppPjA7tjRaVC9JZauLFarSNHD7UzitFmrfpFZmrybzcmtBtC": { + "balance": "1939.003542669", + "bytecode": [], + "datastore": [] + }, + "AU125q9G6i7RnzXtrA8fjkkYmgFH4gjnQuud5W3j9z5rhaP8YnJbH": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU125qB7dGJwofk9b1bHB5NWUcpFs6b54AW9BwHAmYRYwQ5ib49UW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125qHCjwV3KjgyTMRJKe1Kdjq3TAL9H2yU3zQfXQQNs2AW1U8cD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125qQtCA1EvQzw7djcGQtnAijuQm5ZVWfsZe4wxXnXS7tRWuVS": { + "balance": "1396.673996578", + "bytecode": [], + "datastore": [] + }, + "AU125qbA58bhMzvfFxbDcUNR4FDdSD4P1Jb2SHkAzAaxdJXzewnUF": { + "balance": "1579.638546043", + "bytecode": [], + "datastore": [] + }, + "AU125qmdq8jkQBRj6pvHHBtZzHsYpC156yHH7VKtGzZt2xmkCQVXq": { + "balance": "2145.257441768", + "bytecode": [], + "datastore": [] + }, + "AU125qntm9R3p2eSWAthdYPy3or5wKjh7DB7mw2isszU42JQwYFrh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU125qrNy6EoQrLZVMF6cBZPTnN8DZ1EJiPaZGVnYAayf8ts82KA6": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU125qzUCUs3Xr67efhitfDV7kF9PYrT4GiVzbeej9ZicvKzhvnUV": { + "balance": "1459.731194428", + "bytecode": [], + "datastore": [] + }, + "AU125rfeL1w7eYatubuthRjmuBZhqi6WuowUXdW1REHG8XJf8uRhM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125rq3nJ6opLAodgentUZDCyKBpnBXTWvCn3naQdTsBVuVWw1Jf": { + "balance": "4535.187796718", + "bytecode": [], + "datastore": [] + }, + "AU125s81ViDMN3GW4DscyYGaJ6LAALbcjh65s5EE7Pw3zPnDQqvDX": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU125s83Xv3Mjnr64mSiwmHoSYi6as61tQGspNLo6qs13xfSFPzHd": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU125sEKDLLqmx17Cyn7u4oXDMWjDup9WTCz77fb8hbKNStQGaQWH": { + "balance": "11.526429384", + "bytecode": [], + "datastore": [] + }, + "AU125sFTNP1urQvUbMsfXTXy92SrHUymQ8BURbiCCFwDzyT2f1B4y": { + "balance": "1374.656836941", + "bytecode": [], + "datastore": [] + }, + "AU125sJccp6NqW7CgZabxVhnYzDTX4Sv5TtAcNJoUg4DDr3AHD622": { + "balance": "2294.620916658", + "bytecode": [], + "datastore": [] + }, + "AU125syddCJK82rqyKtiHcf49Gm23ZGbuvXiSDZe3gRxQ9y3M62uq": { + "balance": "779.267820703", + "bytecode": [], + "datastore": [] + }, + "AU125tMRED2y1iiKW7bmirGS3kykWeRx5okEk4Hz9h6jkuCmZMeTL": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU125tpr8VmEPaHpZ3Xu1kRWcu2vWjy4zzLaLZV1Wmi3pmyJE6ZJV": { + "balance": "5199.597507914", + "bytecode": [], + "datastore": [] + }, + "AU125tt4mjHE97YVZJWW3Jph6NiK3DhoSLXcAgku7ejSAdaVxofp6": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU125u6hQbkwXdQFFDbUEhojKhgubrJM1Ljd23q9mDQMuq3ZuztEk": { + "balance": "670.712915700", + "bytecode": [], + "datastore": [] + }, + "AU125uCse2d2Ra2A348re3JBshSmjEaHdvk1mYqQQn9S7MDyQKPVm": { + "balance": "2064.793801055", + "bytecode": [], + "datastore": [] + }, + "AU125uMsEtCyktr5qSgKLhAEgzJAdeNbj7VDmJbrAhpFLZ8k5VkNJ": { + "balance": "1401.459244682", + "bytecode": [], + "datastore": [] + }, + "AU125uigoCKnriLbRHY9c64j3hMU6vcBxPpoyCGqP25Z2pRukfwPJ": { + "balance": "275.069931934", + "bytecode": [], + "datastore": [] + }, + "AU125vPphagrgT7NBLub7yHqbgjDjLodKkY4AYeRwNv74B8F3WLvS": { + "balance": "2190.341720620", + "bytecode": [], + "datastore": [] + }, + "AU125vUUSwgAHGSZGNkLkgKo3KHAdvyjjqYoLYdX4WYu7vPwCB4va": { + "balance": "566.422078321", + "bytecode": [], + "datastore": [] + }, + "AU125vfBztrTuQVwLR486ePzXpY6pqdbVvdFxmtKdQWRwNReMWJ8w": { + "balance": "5103.474343389", + "bytecode": [], + "datastore": [] + }, + "AU125viHHMREGZZZqDC8NDznCgfW25viZRNNw5suJuZXLyGa3A3fZ": { + "balance": "2800.176410010", + "bytecode": [], + "datastore": [] + }, + "AU125w81CS9QvaAdmUcB5RmKd3CdMLLKeRfzZg7gq4Vp7Ua8itDHW": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU125wFirJ85hAvYK9fjfhT1LKHzqk5oFq2PLnRF7DtTzEjzy9Nvy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125wLUSctjrfYBcZ5XktDMZX4RswfJc4zUm32wi1J4UpxMxgaQf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125x2hMJ2hKTNNh6uJgsMyY4smu9QpYzD37uAg9Hd4c5JBEbfqV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU125xCDPfJH3verFhAbkcfqBZM2efgorV4ho4N16UNcwedLeGCGJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU125xSthRJ5tc1qUrTwxxNS6Ze4jftvf324xquzQV8rDiR4F3mu8": { + "balance": "1026.871447308", + "bytecode": [], + "datastore": [] + }, + "AU125xxUYYJgwehDdxrAjRySncjVuAE18so9qUxfDxiY82k65P889": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU125y3b4QjcnorHMAci8QQ68zjjjp2DbwUcsjGozdrTPwZeqphCk": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU125yGh11f5bRKZ3frHVs1rBkkpF7C59uWQBm6Ea1pxFiNk851Ya": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU125yHqcJxpUgMbvQruBN1m6V9kGKEeDJjsdmUAdgF1PMpndkQe1": { + "balance": "1644.429520339", + "bytecode": [], + "datastore": [] + }, + "AU125yY74Q2hN8YtEMXaV29JP1CWGvGtz2THhtvmHDEVohaV4U7A1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1261DBf9VKsV9ZcyxSjUDd3crVPMKg58UnCP6hykV6hQARsKQaQ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1261K634d4GvUq9msuJMh14GaPWxBvqZQ1XkHM3QNfjLU5z7DTM": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1261RjjSuQ9tCuchkW6iXC9NoBMHPG3FThjCUtntmUKckJBCZhy": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1261ZPaS7mu53PRpPsUxxuHSsxUNWLzfk8CoNBaKG45zNp3YPaZ": { + "balance": "2188.120123130", + "bytecode": [], + "datastore": [] + }, + "AU1261vxRXFretK57fxEUxGVSweLV6XVe2bpJCKFQS6ASydEFGYtt": { + "balance": "4462.414105563", + "bytecode": [], + "datastore": [] + }, + "AU12621fnD4FBNQueJpJqT8bdGcFKeShNCehxstyBMKEs19TV3EhC": { + "balance": "3145.368094610", + "bytecode": [], + "datastore": [] + }, + "AU126275BTTy4yRRb76QWpPpPD3b9umrLVdsD3VDvRVFvui7pC3cn": { + "balance": "2330.950416084", + "bytecode": [], + "datastore": [] + }, + "AU1262mMEw1RgTfn2VvZwMfa2L9CXnrNXKcMQnaPpa45Q7RNDgjaH": { + "balance": "1459.818405262", + "bytecode": [], + "datastore": [] + }, + "AU1262wyBySnSRjEZX6kY7m58dH9Yu7t6z5D27rp9AZHNUZw1N8Zh": { + "balance": "1770.185215324", + "bytecode": [], + "datastore": [] + }, + "AU1263ScTgyzz98Stm2PQGr3vaaqbFx5rs6T4z5jj1adDT7L9dsXS": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12644VVsuWfJbctj3yveM8Cy8pLye1iHMYGtPHLuf43hVKvRk6N": { + "balance": "1645.024405600", + "bytecode": [], + "datastore": [] + }, + "AU12645kih597dCEoNCuM8fqhUg5T17LoRmr1jQWgDtMoiv4tJjg8": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1264TmTeZCUi3g7PM7CRhjEJ5W4vEFV38xCtWDDcMbBtwUqzDv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1264TokRLSvKUjiuGupg4t1sGZNmHhhE4MeCFbwncpELpX5jd6Y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1264YDyqp1QZLErrtKpdqJpG71mvjWD9v6w2ax5SEiTDFYkegDN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1264n8kZiJLXXvHv9fg5RDqWphCzEz2187h7e3qWExWnNicXwy7": { + "balance": "910.082104701", + "bytecode": [], + "datastore": [] + }, + "AU1265AgReT1T9a9Jam8WstiabdfbSw5Ee4jiKaPTmd6xMucNVSuS": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1265Rh7JgKmgR6FXafZeCsQXMBNFcDGuHBH2jRG1778YLofTonV": { + "balance": "1340.118653589", + "bytecode": [], + "datastore": [] + }, + "AU1265hzSyY2dbHrDVHoFHeWWBjL3YQ5oAdNLPpPQrAYKZ2ZR2oM9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1265jYQzWGk6b1aicfxd7VzuPCqQYtgaXgBv522EvTnWTApkuym": { + "balance": "187.621439276", + "bytecode": [], + "datastore": [] + }, + "AU1265z21BW4owbPLCoVnruiv5KaihT6JSvoSRYtUUzFp914RWwwT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1266GUES4N7tmPNcBykWYX6UVkdN4kXGRx6dQNt1YAWc66bDmks": { + "balance": "1952.651035374", + "bytecode": [], + "datastore": [] + }, + "AU1266iF82ucnfiZgkLeiVHEpDnpoEsKYTKddAE8PwYEb4EHt12mY": { + "balance": "1997.934511718", + "bytecode": [], + "datastore": [] + }, + "AU1266vs6qtCVPFpULnvTUArYyaFwn6nwHUr2oZxiSoKEwmpubvwf": { + "balance": "856.685023636", + "bytecode": [], + "datastore": [] + }, + "AU1267PGLCJV87Xc5yzhh7EFjGTeeLpyHQPiMrJT9QNuUTYmUtwd3": { + "balance": "3820.230835269", + "bytecode": [], + "datastore": [] + }, + "AU1267d8YguGFzAgFjwubQHezoStkioTwgeyB2poTSJWw3nYoE1WE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1267oCLQKbS9eDQJV4LuSWEKP1c8kWstATHFwKmZFMBCtwfuBes": { + "balance": "234.871482126", + "bytecode": [], + "datastore": [] + }, + "AU12681rukj2HnWEtSiUbkCSaEL2wxFw6YBnr6k8sWAff95XVmrFT": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1268AxwUcDoHPRL2jZQLQfTfapfZorYycLgzE4Q9FruTZNDB2dw": { + "balance": "4379.610288427", + "bytecode": [], + "datastore": [] + }, + "AU1268CufdUngNN5ui7xPwmKTLBTZSHH6DYJJwL9nXYcGjEkWG5cw": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1268Fw6g4dPCV4s27f82zqFAaKeWFcbTVPoxxi5atREgQ43U6ps": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1268JMRSAZMwGdeeTLfAoPhBrguU5bTgmwyA4vMqQWpTK6gMPZs": { + "balance": "1155.849486767", + "bytecode": [], + "datastore": [] + }, + "AU1268kEkUswWvXdA5LgGHeRJVS2PTXcc1z8vm3qM6gzG2GeagF9f": { + "balance": "1298.715834623", + "bytecode": [], + "datastore": [] + }, + "AU1268uh9tWn1FHDDDYNWf2GEqoH9Kfu8hdpaypzLEuz1H9VsQkmG": { + "balance": "1413.377840751", + "bytecode": [], + "datastore": [] + }, + "AU1269AVanzCAD4KpN1BRaA7izEBGjSao8UqdarHhyBEkLKhCr781": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1269PtB5zTZJF9SVDuVAUKc2BZMnz1qfGzJ85fVreTfPG5nZ9Mh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1269RpNrP2gAuuiHTzi9DxgbTx6XNWyiNsveS8DXgF53zbpa9Lb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1269VubKyeik61BDy4Z818kcqw36VTimruYm5SeFGcgtWB2VLJK": { + "balance": "1045.352558156", + "bytecode": [], + "datastore": [] + }, + "AU1269cwpVjZ5ZWW5YgAUuMo3waD3es5ZRE7QjjmRzHyBRWczdC6t": { + "balance": "2088.533788950", + "bytecode": [], + "datastore": [] + }, + "AU1269zisUtJwZ6tNcxUXzqjD5drgR1FVGB1hhBL5PArJU1rnjkrx": { + "balance": "1524.441628673", + "bytecode": [], + "datastore": [] + }, + "AU126A5wYsCk7ej9JKW7L9EUwSomP6d5CqRGT6Chyjjf1yMCDDNc": { + "balance": "1406.941315451", + "bytecode": [], + "datastore": [] + }, + "AU126A6yuAeZjTMWBCxzVNZaowL2356ipfqca6dPymUani4ScBQG2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126AGUC2YR8EuueRGe1SquZbMWG168jiwqHUYL2axtUe3Gg66W2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU126AHw1QAmToHYo8cR6Voe62jGGctp4m5gbpawyJf7qKcNWUxtZ": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU126AVUgnVgpbtbETrqnsYMWg42LqQkqwq7omkfpYkWXNi4j1m21": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126Amt1cYMm5Bfgr3XCHHaCbxJaCBqDfPbTn7qE7nBVEogTb1r5": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU126BoS11FD46dEuMCxLm2PAJrSRPbpWv8HUSEKN4tXSASUGEPLt": { + "balance": "4652.554045100", + "bytecode": [], + "datastore": [] + }, + "AU126CA4RnQHXweZLMVkz43AgQWuLfbKraCP5jT5DP2VgaeMkSCfN": { + "balance": "206.137961942", + "bytecode": [], + "datastore": [] + }, + "AU126CohAAeUQd41wnhRnmvCeUYXwPLVBhC6SVxKMhL8aEYcgQQF4": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU126DDiBdm6A2B8t8LGxnDD3jASyFFisiNrxxNQCtgnRdXHFY9nd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126DKsgL5rGJzizhnebuLUXGVsw2uVmZB1wuUgm5imrabDfPjKc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126DXgDMFzMkaFcT5q8uqoCjpp5anUu9VGWNW6HYRQeGHscdPA6": { + "balance": "2041.420392874", + "bytecode": [], + "datastore": [] + }, + "AU126E67kkRuvPqqry7aYCLtQw9mgiYbTQDnnXPUWakyNA36jU95m": { + "balance": "917.243160774", + "bytecode": [], + "datastore": [] + }, + "AU126Ec8YzptFeRVcv5D88dUbTxb5APizcneJZbP4dVGhZ7nEmiYU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126Egz68cvz3QaWf3yhpk4bd2CAD991o7fA5TX37JvTU5XCyNGD": { + "balance": "3893.544144886", + "bytecode": [], + "datastore": [] + }, + "AU126Eqr2uCrQXR4Vezcf9CAYeAckFcyXR8zTLT3X4e9cdx6un3wB": { + "balance": "2297.466055394", + "bytecode": [], + "datastore": [] + }, + "AU126FLALLyfom2fnbiW5XY1qaG41CApVvsAFU22vmGDNk4SAmtSc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126Fd3Ai5p8Hc3Jd91fGdegv2s7BpXquo3knDcskNNEudVFHBKk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126Fjg9t6JGVnRRFMSV2dqnK3B37USAoedCw7fXJSxJNjKiKhs2": { + "balance": "2866.310512460", + "bytecode": [], + "datastore": [] + }, + "AU126Fto1vK4LWvsmhyfAKzEBJ5LSxLE1dLWxUgHDdReWwLaSmwd8": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU126G6NTmxFDJwKzFc3fjVSeq3ULWuCM9tgLkjSS5ZSpqmQFQir5": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU126HFTNuEoAaMR12tr4HJno8C6petcwfNAfTgwXcHQMytt65iNb": { + "balance": "2946.420668493", + "bytecode": [], + "datastore": [] + }, + "AU126HWx34TwBs8oBWPbdFXehY1NBUo3XgrMyD1Ljcxha3X21BpKv": { + "balance": "261.974507529", + "bytecode": [], + "datastore": [] + }, + "AU126HfANg25b8zCiRH6rESjTG6AxE1SyEtf4MeVjZ28vJL2vxRsH": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU126HkSXZ2FdgnPHdgd968Aiho3AqNRpUEtQw6pStSfFogBuo2WG": { + "balance": "588.704746593", + "bytecode": [], + "datastore": [] + }, + "AU126Hnd2B2XtwfSAVR4Hx4bWV6iRkDy5DtBP3fmLcWBtaAyc5HAm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126HutNgBhmCuXkUUd5Kw3coeJCdCggKYARP58UKHwHU9kizc3H": { + "balance": "2973.697650041", + "bytecode": [], + "datastore": [] + }, + "AU126J1abf34AEGH43Z6MFobZUN5sD8Ai2VMyRr1nZzzedF8BQmCM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126JFw3dEEKw8VkCQW5ontWd8KQPUTZF4EizM5zp8qZbv8iasDy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126Jp5JLyNCfGiSHTVzEfAqv1wWseHpZAi9qpkiddmX7DuY6iDE": { + "balance": "1550.858164070", + "bytecode": [], + "datastore": [] + }, + "AU126JtK9YiLuCE2aGXBDAPPp1CMQsyQ73F2692LB7rEK9WMz8Q3k": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU126K1m8AZ5HC5erYee5N6QQbQxZWGRPxHCwBUeRdjeqphrvXYpW": { + "balance": "579.519642992", + "bytecode": [], + "datastore": [] + }, + "AU126KJ5gs8X53SAcXVbs9b7UWJomh7RUGe38FCBZgmzXBLXeSQjb": { + "balance": "671.928516797", + "bytecode": [], + "datastore": [] + }, + "AU126KLDiMhxwHttxt1LPjX84DuoygoznaYkaef1EgDEjzW94zb8a": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU126KWdhcXMHfto3UKcYTnLJEkJenQn2pjf7X7zya34vhaH3hPQN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126KX1AXUTN68ZyAvRbUjBdyZxNWBJTkxfsMJXaGNCDJK5rEp4n": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU126LaBoq9owFPbM6paPoj1bpBtahwWAnapSE7zd9qj3BqDtEQqN": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU126LdCneiJCuxX7bpndkBf8N6jDthwbrYVx8b5dkKmfYWReW4gY": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU126LsnGfcx6WAkh8syuKLjFuKHatB2r5SN1VsE4Xhm2ACuHBBR6": { + "balance": "1875.335602873", + "bytecode": [], + "datastore": [] + }, + "AU126Lw74d2hsPdG1KxMi4jYksUK9mi1Cw2EyDAfHryubvJ8StKBM": { + "balance": "2447.062768722", + "bytecode": [], + "datastore": [] + }, + "AU126M4PjugQxv2KUJJuoNCe9wmw6KBwKE8kkE7Ap69E8Q8rB2Dxx": { + "balance": "2839.690631428", + "bytecode": [], + "datastore": [] + }, + "AU126MBLNKYAfDHbJhE4r88F79bhRJU5ghKBgy9aq9mA7Sc65Myka": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU126MBom7V6b9RaVG6YiNeqUwB8wmp5LTQtPGK6tudC8BFjYYTng": { + "balance": "1320.455937120", + "bytecode": [], + "datastore": [] + }, + "AU126MbQeSDkeaJXyudf7CG2GpUxZJm1Dsc59RonhmqrMDb6avJ4C": { + "balance": "757.661367913", + "bytecode": [], + "datastore": [] + }, + "AU126MsxKty6VuupmmiqG32QHVnQ8woP5A1ozJ3NkGcif1MGD5Rbz": { + "balance": "33611.476962730", + "bytecode": [], + "datastore": [] + }, + "AU126N5HuJMr8BanxzL7XSFWXRLEuULMYRvDdZYUaZF5Hrz7SLkU": { + "balance": "2256.376678372", + "bytecode": [], + "datastore": [] + }, + "AU126NFoLvzRae1WJg68tffL8ZJ9ZhUv9FudHQ6aRfzwaDZGVSswB": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU126NesSEyx8cWUqojBrxun6h8tEaYoPpz8eY5KEMTfHwjTPV2kt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126NwVaL7KRnmZ5hu8KsKF4vJJ64iCtCdCzVwjsES6JB2aTSeXN": { + "balance": "1561.142024895", + "bytecode": [], + "datastore": [] + }, + "AU126PH1E48ZzPpaMQNxkLThCkWfDCV3v7Qdu1LEteF1zSHHiJJnr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126PHzEunU3u3haNwid7SJzMfmNcdwSUYRKS5WVrdL9uYKNFLZX": { + "balance": "1653.867072858", + "bytecode": [], + "datastore": [] + }, + "AU126PNwvZp63ckUuvjKNMT5D1uCR7ZL1jCyJpjxZ8oizwSBbf2rV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU126PemYe1iPaujb9rbq9Edq4MgUvfwYpMcrH2PkJmfEZwsTEUFw": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU126PoMVmUt38BAD6XhAnoHWbYRYiBVyb7dZsiZjZY769Eyyv6i1": { + "balance": "1724.362440993", + "bytecode": [], + "datastore": [] + }, + "AU126Pqmh89Rg8iKmpQTYuvyX3mcLHN53Nkf16cPbvLRsGryJ3yFt": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU126QaX8Z1C6pKARjn9Sx7Ui7HL9nZPfEAJLw6sb7J3AwsdfiQU1": { + "balance": "779.077526861", + "bytecode": [], + "datastore": [] + }, + "AU126Qne9kfhFs1X3eWh8dS3U1zT2dhGKzYUAtbhmXB44girAcxkt": { + "balance": "1642.193356470", + "bytecode": [], + "datastore": [] + }, + "AU126QxWnyscdX8ZRxVjVgWKuCq3TjwTFgYhgM3WbqDFoXGiQT3nD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU126RBDjSAHaWhyqHP2uvn7dgWtDBCGapXSqWx1vs32DCNdsRcGm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126RX9PavrLrxXBMXtQBCJksUV8FcEaQSGMRXgTgHHt4R2brvHh": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU126RwSXEmD2HHGePqpCWWX2sfx2un7Y4te3MUF5QboNjigupSuH": { + "balance": "2547.695085938", + "bytecode": [], + "datastore": [] + }, + "AU126S1iav12eA6YpXse588K3VgtkDgKKqmik17aRRY93LjEA3TcA": { + "balance": "2099.892181081", + "bytecode": [], + "datastore": [] + }, + "AU126SALfngMMtnxr3a3gQbVUGXckBpZZ3fo7aSNLhy3orgZpfwn": { + "balance": "2670.864803309", + "bytecode": [], + "datastore": [] + }, + "AU126SNnqWhXbcdPJzRuGgZ4hiq5LboqnbQZwsjJVwywbYQhgHqZq": { + "balance": "1853.912381899", + "bytecode": [], + "datastore": [] + }, + "AU126SRXoVJt3xTdUPSLFQ9PM99hGUMZahS2FQKy1fuiNXyZcDiWU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU126Sb9hCJFi7NhfsBTeepbt5pfHYF7r6uWmaBrAwVWNH1g4YKfv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU126T7VCRkxqS6dJPS4exPcrnmjWQpWfwiWgRKB1CnoRqgwRYEyr": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU126T8D5Hh3amwR6FwDfqoMWndaaseJTWiKzf6Bh4tuLEyz3ySPj": { + "balance": "3046.671796603", + "bytecode": [], + "datastore": [] + }, + "AU126TPAJcLArCkyoYUjgvbr5kUa2Vyxx23tCM4my1ZftppzCn4ex": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126TZDdwRsh6nMSYrd8eFTYiFRqhntB32DANAYfZGL3TyecWcW": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU126TeEhpXVBiS2DUDk8ukMbVHyU94eTZ3pWa5L8DW3oBsBYMDwD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU126TjtrXPykhgmBjXL2RbCA7Ktv6LhnHtYdyPD3FTuvhupdrBom": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126TpWkEdQ1nFigPXxB3R2SsUwPZdzvEJSUeLEMbWyQecC9JuAU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU126TvMp1CnZomvD14Nj1BjGvevCbdzjE3ihoxgM1qQ9huVutuNM": { + "balance": "1628.384330545", + "bytecode": [], + "datastore": [] + }, + "AU126UGLrhzjTZGzabEEdEGhjvXsvBmWse8N3WgVv5VKi6RWV96c7": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU126UpLMAWJziaQ1r5srGAnFpFhNDRLSAaVh3uEadF3szFUFwSFx": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU126V1XtuUw4H7RcJw84epxTUrw2YcmU7nbQkEMCRMGu32Yfguiw": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU126V6HaF4o9jCAYeCgKDQVjDUuSaEziJrAuSx36HK7xDrAH9PRW": { + "balance": "2273.814667958", + "bytecode": [], + "datastore": [] + }, + "AU126Va2R2n3yah1GpsiR4aqJw7CekmyNjfTVt8S8gKGr6KWygzsh": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU126W5uwEx2JhWNTAodh2YaSrhe1Jwf1yJUhARq3QNpDbtrLfFjs": { + "balance": "38.337923365", + "bytecode": [], + "datastore": [] + }, + "AU126WGbS1CDaknjoUczV65oq8q1Rh2v7no4LzEoDXhCHyUqzngQ5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126X13c8F8RgvREjekHg4goKKhgDocyc8YHZvE1cCrwG2BZq5AJ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU126X2HEMgr48Habe5evXga1VeNZ3LjCVGsZQxURSweZWnwBL1pA": { + "balance": "2804.172383839", + "bytecode": [], + "datastore": [] + }, + "AU126XSx4aAkCev9hJ6PMkHmzJ1BnXJeEJBF9F26k4HpBEJZgkUMj": { + "balance": "551.128271258", + "bytecode": [], + "datastore": [] + }, + "AU126XjWu1mgmgFg7DTrt9aWUyRqe2iAkSpH2G5k3JiEbD6xeiEZq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126Xu5AMYXHbtgdWb64TpGVc8D9CrvpreKrY3PTFDQT9wkRhaDP": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU126XxeWUTQtmW9WLinKSgjFm7GEAzRrgGmGkx3JxFhgfia2a5Vt": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU126Y3h9iYW8KMgwx8cgFDz2KMCXSYXkxP8gWChqhJXgfYa6sVEV": { + "balance": "3667.192864718", + "bytecode": [], + "datastore": [] + }, + "AU126YGLdvsmL2KLVaCcMPyeSeKt9TXGEtpJtQS7y5J4AvLRNiYWD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU126ZJxrfujw8jZu8FqxV747cRkSkT8HDxdoHw36kvup4K6iRSfx": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU126ZeEAXCT1ZpodGfTtwXQseMzTmXkSPfjzAWg2XMxaYJcfJBed": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126Zjg9vpvNaftFVur7eJjmC8HRKqCNqBSgCJH3SjmekF6nTAej": { + "balance": "545.327637966", + "bytecode": [], + "datastore": [] + }, + "AU126ZoXmPWRVHqdyk2EgxTmDpVJJypJHdXb69vfxqZn6SUyGLRrm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU126Zoe998Y914dLmBQQDDKLoqTDFztko79FBSwm7zT9JpkNi41n": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU126a8tKe2YodWhPB3xppEz1Kfes3APURER2SCvzBcxV9jv7Lsvy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126aS4995AUQj7mkKVJZb3wtZ89ThdVwf3HiMVvLSEnAMX1Gyb8": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU126bE5CeKZVj6aSZsZQuTWmLHRVXkxK4fpSSEvauC4AuACQdgzn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126bUV9TsiQDjfdbyfMQBANSeD6gPJheU14bC5eSsf6ppCe6AUp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126cNQRgRd7iLmB4K22u5TGFXirBA9UqYs6zEHpXbjEEH6Atu8N": { + "balance": "1261.839451189", + "bytecode": [], + "datastore": [] + }, + "AU126cVcLUvwuctVU4R1t7C8tNHnZa6jLJp3bt8zJmaiCgtPdbt58": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126cWS9jNEn1mHCcHZYN8R3ff9PyTSte5P2yG11XqxNgyo4Dwbd": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU126cXZrshwhafoRBUu6KBzwjowhTjEhT9M75CwcuuWafp5vCjte": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126cd2qi4qSZgyisoaUXRRQ4TD7GZ76t779bRwZLbvUjMF4matK": { + "balance": "1834.201904012", + "bytecode": [], + "datastore": [] + }, + "AU126d8j3dHX6zuDXEK8smiT45dcUB9VPwFN4wD34ts8LjCXDFvLe": { + "balance": "1297.810967373", + "bytecode": [], + "datastore": [] + }, + "AU126dmJt1dywG6v7Nxb7c3icnmj1P8YAAW1jztByLm8ywcnyndSh": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU126e9JU8V6X9EqZHnLWFRTZuyY9x2jC5YSH2cNxS1vPWagYGV65": { + "balance": "531.945100730", + "bytecode": [], + "datastore": [] + }, + "AU126eFVGmFWeyCxg8Z6ZqyhoahCn9Rnkw9diLRDZ5NVhQud1MJ1R": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU126eSVwGZJn325wh91b363nmZa6AWwEcdSqVnobgP86crB7eTKi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126eSpCAq3dRhVH4caNeKLrGcud4Uw8c8TZi61eqNHxxvmMYBEd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU126f42oRZAHivN7Vd5ubvuFFNVCwDnBbdD878iUZaCVTuR7oEd6": { + "balance": "2204.468717469", + "bytecode": [], + "datastore": [] + }, + "AU126f4QuRXw2kgMTScUheGX6DHEmBt6VqbnYeMVewcXo77LCYziP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126f4k5gd6smGHvKLGK31YQNZGLqu86HVKYE9pcHvw1JAPgh4A7": { + "balance": "3005.568150559", + "bytecode": [], + "datastore": [] + }, + "AU126fNSorDsYT8qB6Fyi4jKGk6onmUHo4qxSbDwbch1rWZ2mrk9j": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126fe266QLW8g8QQgzZQBy7E5TQnwHCpkZtTPozK5ypTZkgHF6Z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126fsKAa8uT9e4w5MbQ4kxoJQgjEcs5Vdt96oNVKWhUaGY3a4T2": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU126g78jdPABSLxQ96f83jhXcxz6K3zydMaV9S4edpwjimoaRvi2": { + "balance": "3030.587848414", + "bytecode": [], + "datastore": [] + }, + "AU126g7YeRYMvXp5WHd5g79peBWK4Mo3Q63tvvAGizk2YxyhxirMK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU126g9NAbTshDwVi1eApP36ZJTEYbBLn5uubhQvY1jLFLioExYPy": { + "balance": "4273.166459021", + "bytecode": [], + "datastore": [] + }, + "AU126gDcWVC3nniJgXpxytTCuDEQToCJs2CPjprPWAmtnzNAKBopA": { + "balance": "1504.890610698", + "bytecode": [], + "datastore": [] + }, + "AU126gJ58HxnXgsKFmzLGaZ18aTJphjQnQd3RAmJkVS9USMpdcar8": { + "balance": "1270.926121041", + "bytecode": [], + "datastore": [] + }, + "AU126gPvdEFnp74b8czghSr3f5yaHfQ8mJB3CUMXX62s349QLQovV": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU126gtMnKGrjbG35MCsByPqhWa3ybm3hGo76YgxKiQ2B96Np9EJn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126h9SnHNgkXvAJqiMt2ouEECNDZa5SMMvK3FgwQNeeKkdmVvar": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU126hCmpB687pSWJPizM77FcAy6RDcwcHmBmCD2hqbARUY2JzNVk": { + "balance": "275.912778248", + "bytecode": [], + "datastore": [] + }, + "AU126hFtp49ArYJvjqDQxHVoE8TnfhQUyrPwU7HDRoQNSLPgWqzEj": { + "balance": "731.157290938", + "bytecode": [], + "datastore": [] + }, + "AU126hKjYiSAX78mYLhHuoEsZLUfS79MksZ8BeDa5Y7sPhDTMS3UA": { + "balance": "2304.716424612", + "bytecode": [], + "datastore": [] + }, + "AU126hTyE9yxpeZSy8gvDe8MChMvR6HbPivQxmAmpWGzpycNnAE8k": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU126hYrcxG6Upe2CPyixVvpFUXPayxRdTHtPbefxyd6zjtWDZ9rG": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU126hbSBtt8UPo2Jvd8UVddDzxZc6yz5fNBAhQ4K9fcn1j5MegwR": { + "balance": "2967.025871272", + "bytecode": [], + "datastore": [] + }, + "AU126hxURvAX5u9KrmZjT8Aca74sgNdC1M4DzNNHFVnxPALc7Kjej": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126i2KYgqQiHcLYAMEsBM3SMXQeKuzj6GSh9DM9qprjdTtARudX": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU126i2b97kzAvGMwWoxXr2yJAvXD7Zgs4WScJTG9W4o46yKh5KmB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU126iJAnzuHxMpsHUoRgRaNGZmMZYmt3HCH3uRHGgYp545TXmjLk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126iqw6oPEMj544qND7rAaeJ6U1sH3DjGxhSUVjGx1UNSHZ9EQb": { + "balance": "1273.362747098", + "bytecode": [], + "datastore": [] + }, + "AU126j3DXGi9g1Mrqp6MKng2s5Jfh2Bam75wn1e5bqUrsmw1njR9g": { + "balance": "1884.042820776", + "bytecode": [], + "datastore": [] + }, + "AU126jafJbKXbEUec1oDDYUourHKQ3bieRVuwNFNadLQ6CNAGkXT7": { + "balance": "631.413211970", + "bytecode": [], + "datastore": [] + }, + "AU126jos9W4XbVmVLDeLh4q6sFSshrF8hHtDMgJZke1LuBWqWUBWJ": { + "balance": "4991.326224082", + "bytecode": [], + "datastore": [] + }, + "AU126k547R4WZuPSdrVZfbhFBjQAAJTy642LpmW5YDVXP6gcKZcuh": { + "balance": "2492.574309390", + "bytecode": [], + "datastore": [] + }, + "AU126kCoitHvga3rZxffJbkAumfEgcHcXNiifLGvtUuAHob1xvAtB": { + "balance": "2313.538733025", + "bytecode": [], + "datastore": [] + }, + "AU126kHE1HWSLMBn5wW8X6yJjM6GfoKqW7UsqLowTcyZvLVZxzUwu": { + "balance": "4286.545302300", + "bytecode": [], + "datastore": [] + }, + "AU126kPAtzxvyE5V7DXVAbfLHjMkvCzEmPhRQNaczAAEGw7Cep7zy": { + "balance": "3998.958142936", + "bytecode": [], + "datastore": [] + }, + "AU126kXLEja47P6iKqZ83nWKeZuZYwuX5iy1zKQhVq8sd41Avj9Sw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU126kptThKBgALrvC49SA8WSHHfpWraCjaHyccAahkkrpBFUWGzz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU126mRNyrNXchCEL2nLqgxWRVSXzius3Usn4F69KGC4cWVi9rV3c": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126mcdrQMCmXMHNqKjz7CdKKsy5R2JysafRd92aWeYupc5VDHqv": { + "balance": "2750.529564087", + "bytecode": [], + "datastore": [] + }, + "AU126mi38Uxqtmkc3WYxkD6NWDwPqTS8PfWmgJWeW8YZTmwB1VEP4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126mk6HdikCJ59dwVZLQyTnUDHzJA1G6WKxUEE3gS3ns3kH8Jaf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU126mxUXejGErK3ajvNp9qPaRBoTWfndVu43vxfsB3PCPfopVMjB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126n9pWrsdaNY7ganWJcETKihrcdsY54CqzQskAtnK9oW1bPX9b": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU126niyeUYC51H1Gz62hRUsfS8Uayf1DMKC6hnXUME8bxYUDNb4P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU126oLdV1gfCDKTbcxpXSauuFdWXEB8eS3RfXHeTfagqM9CJJ8AR": { + "balance": "1793.573313658", + "bytecode": [], + "datastore": [] + }, + "AU126oTfijML9zCovonndEYPSTeGr9a4Htbo9E97hEt7jK7FrpcwS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU126opqYhsqn9rHL9opT2Va9oP8GmKvda6c72mhJmG4WoKBktYzz": { + "balance": "1479.364766889", + "bytecode": [], + "datastore": [] + }, + "AU126p46GRZc5Zs1PDBtUN5SyfcTGN1PwBB5KMbwzybEcnW3ycwFV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU126pPMJjttezCQBxTM22HM8JAQWtBRSMgvsHJRr6CDbFDfVD46M": { + "balance": "3444.291721550", + "bytecode": [], + "datastore": [] + }, + "AU126pcsvsj7jHX5a3GYgsbe5XQmk5SxwHzpR5vD7cwRFocSnnahD": { + "balance": "63.114762778", + "bytecode": [], + "datastore": [] + }, + "AU126puQU9FsmrW3qRBDavpY2B5zqANoRzbgCp4ejN1P5V7zaVjVK": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU126q3yfe66XeQQbeoJ64E6YSbRS7h8m94uDseMjKH9RxhYFd1kG": { + "balance": "4064.271589325", + "bytecode": [], + "datastore": [] + }, + "AU126qEmNPn2C5RJEUSdJJGc3Kmhit4DHY1jWrJxuRmbnAAgeBDab": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126qEnrKbr5VbqjBgq7SFVU49nrm8SGrReWRT7GFpkwat5XKVdr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126qJhkhNx5yynidqXhidEMcwzEmRE7eaMjYkg8viXb9UphhHwN": { + "balance": "747.113257340", + "bytecode": [], + "datastore": [] + }, + "AU126rQNudxxDpaSy7bjQ2AfSEo6wHXtw8XdrBCzj2B6hXG29u8CU": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU126rnBSRFdXaXdDyd83h3Nr1YbYcZM9bHvwkNy1Hc991QnwapwW": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU126s54mGemiJu1p15odTyR6JeKRQ4efD3NPgPH2bHcS4pMvnQkR": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU126sWFYjH2kLXJFsNAGEoKCfMxPjTs4g3TaKw3fgkbofMfUrgmH": { + "balance": "1775.660444676", + "bytecode": [], + "datastore": [] + }, + "AU126sqpGskQiuPWbbD4CX71uCi4MwGgExFRcso7AxF51jgUG7G3R": { + "balance": "1988.609071553", + "bytecode": [], + "datastore": [] + }, + "AU126sw6HYn4BuYBnDWZvJiwwCwwyTVQwq2n5zBcFeZZxP46vifZ7": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU126t8aNNNTzXNmBUMnGsHMavR2AR8p7tpH9Stuh2yWMrU5ErzPg": { + "balance": "2786.325589198", + "bytecode": [], + "datastore": [] + }, + "AU126tHkAyWTc9RDnD7FLv6EY34aTKNBNvaLw3kik3KRaW88trgBV": { + "balance": "794.666309180", + "bytecode": [], + "datastore": [] + }, + "AU126tUVLEtBtYYCYwPhJA2Cf26x3nX4P4PVcYkAzt11azjKcz4Hk": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU126u6sDUEWDMm9DW3vKXfp5K9rrXTEnd9Uj6QYbTcfVEfrpmneg": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU126u7tv2TthomjUtunCnonFL6CdcminvsJ16ZCgZcLDvKzDq6KZ": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU126uQK2HPuj6RyPGAM6P9BvrVzAkzTcr8tAtfRTvYpd1GcUVbXV": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU126uRFRXVEQYwHc5TWTvphEDybcPXacX5Lx42rGxDLk1omQ4b9Y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126uVGEQMmdNZfuKMJseRPEfEqQjfZ4ayuzVzBqTEUHwV673zrv": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU126ueNkEzZs6HiQDPgg8Zt3nKpdMLeMAUQUXuKnhP9m2kw1q5se": { + "balance": "3241.308378771", + "bytecode": [], + "datastore": [] + }, + "AU126vnFT7ov9apXodk9y62uG9y7Xn7hyGpq4RY6KUaiY4osXz56X": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU126vzy4pLLeCrEuv2hFxoRNgwJNawCZCvzzGR6nc361xzERfTSH": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU126w3zQziapcPiKYQAgkELAh9bUzu9fXCoz1SphydiqeZHYYsnd": { + "balance": "859.049165135", + "bytecode": [], + "datastore": [] + }, + "AU126w7JRyiCbQJw8avX1ZargApXRPiiRKFNVgbRQpt7Dxco5KfmQ": { + "balance": "4619.129274549", + "bytecode": [], + "datastore": [] + }, + "AU126wKAgG9qM2jJL9sTxWmGEK7WjHHFkpeghNfR5knz7DU734RkY": { + "balance": "6220.011102546", + "bytecode": [], + "datastore": [] + }, + "AU126wSZ1BPPQ3ZuBX8HegigS6wX1SizoXtoQjNsh937reDjTnsYP": { + "balance": "37.890503599", + "bytecode": [], + "datastore": [] + }, + "AU126wc6DHWB8xMN14wXHWg5JV7nC5Y85vb9nwJgF784B9rx5zCVD": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU126wniAJ4gzeXzv4uoadqhSSHgTGAFV22HvpS8KEjPPqvM4V5mw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU126x46toSv7i772TWbKAfxt6hdTLx7iqmDg4rutbr14GRR3h3w4": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU126xPQfivq7UQz4op1qYgdPPG6Gmex2urxE1UQw5zs2q8oVMRha": { + "balance": "5941.702043005", + "bytecode": [], + "datastore": [] + }, + "AU126xQNnQj4PNhgc2unNL1af4jR5awTNai4NiDMNgF7pnUKT7skF": { + "balance": "1908.014439383", + "bytecode": [], + "datastore": [] + }, + "AU126xSXPCRKBsgx9m6t8NFYy3iYqYr7RnaW4MdFR9VBx5qxaFogB": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU126xUQWnR7fJKgzB46vYqNAuAscuzprDrJBQwFHrQPXuv3cUuvf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU126xrYXeVfV73n785TdHg9SAVBi9P8o6cTPQXytHmgpYLqYRb1R": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU126y83B5rxLPjDPA1CMdxdWAD4puo8pPkX4V4NJEhWcDECCx7Hn": { + "balance": "14.675104470", + "bytecode": [], + "datastore": [] + }, + "AU126yDfc3x1L32AkjQvCNxdf1ZWiGKgiSbCxo39o5Ue3FduCa27x": { + "balance": "2083.462449426", + "bytecode": [], + "datastore": [] + }, + "AU126yNN2m5GY8g3mzDJG4QSKx876jRLmFhFMiTRPCFwb4htXLt9E": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU126ySUHfVvBD7PU3hJtNX7VW5m7S4WCosKcgcAvAKLcQmeGiNnU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU126yd2ao8ZDVNfGJacmX7DfwMfVKmGJeMhvFrFkQAxG2wDZ8sBs": { + "balance": "3945.855220835", + "bytecode": [], + "datastore": [] + }, + "AU126yjKcxBv2X4A6KjGAfGCEvU7pCoHbrKwoZfq9EL9queQ1kuZH": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU126zAiBtdFpJ7SfSpxvC9o29LEkvmnCSk4kx9wLZQBtGi3bBY1B": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU126zQEYUxq9mcNDtPYbMjMe42PYa2XQEVx31RxbsazAcU7Vw9mQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU126zTf2YaLmWTL1J5j1XKABvuifmzQVZhmVTSHUZNYdC24hMrZY": { + "balance": "2216.515042380", + "bytecode": [], + "datastore": [] + }, + "AU126zy34P9YkqkXdNTprmScrHx8Ni8bKKJMdSooYFHixh4sEsHo7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1271GovVbvRZKoCWgSiWkABWUZ8gNPaFSpvAdPDGHXZ32DxSwj1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1271GvGMmeEx49kteZ1TMiK3JgJiXduog5S2codaP62vLv2mbAC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1271MQjzvQ6DBZf9MLXZzQCCHjUjHVT3gjH1xZ9pKrXBF2SVxE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1271UCZJtAUAVUxfv7qmPCUyNtLNoS52EFbp7S7gUaFujNhgpvn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1271YguJeX4bsHLfbPxH3RZzAw51eUXuk1eT3LFHEApMW8HCmdc": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1271hX5339WAhrarZhZhzDLKLkpjsYP18eWKDE8utXYhXq8ySGm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1272CHWoWarXdG8v4JXuycEjVnAjbcWm1qcbJMBrYQn1YtVTTpm": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1272d5VTTPW9fYwzRMa21HESPibkNwF9ZENjzmEnSbY6E7ToVVw": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12731PCaHmQZq7XavZgrFwP2zS4UQ92bV8uxbNzPrQGJs6X9VRw": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12734SbbmUxNWdpv4cVBx2LyfSCg1zH5vfJeNFwF23LZRKJF3c7": { + "balance": "1458.392109640", + "bytecode": [], + "datastore": [] + }, + "AU12735JgTKUbGsL4fxbETTwSvJ6Td8t3eGRDEgDYkdM8VFTwYMbn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1273DSKPGzS2N2sM4Gb2v36ZEdEge6awrbLiiVwgQfJzvzezvD2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1273EwH1rjYAy6mwiQmmT65DdLomMR4z8AngR26WCS6nvEoRzCM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1273SauWMpbPbJYv82sekhXsj2EKhGY6RaiDiVUBVB9BrNictjN": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1273gajm3zrXkoXBxx667uobf7eLzCyorAstU4n8bn1PcqZcGL1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1273uTRa8BS5RoG2iSDg4AcdvtTj6unAxU6D3ZF1p5ojotegRCC": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1273wJtqBAPFez8Hx2atyPTK5no35ZRKpvhAt5zMC48mbE8X7ur": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127442gKGbqxSRUc5W9LdDJPbRNJpNpA9Vzsr6kUEXWBM9QjG1r": { + "balance": "1494.142011184", + "bytecode": [], + "datastore": [] + }, + "AU1274Mv3TLaNN9PNAAHg1XM6dSyEgAQfj6rT1WovRnk4pVsU5PsQ": { + "balance": "162.347683336", + "bytecode": [], + "datastore": [] + }, + "AU12759RoiQXZdgnPxTdbmNdvz9zpWx8Kv4b4S34SBHMM6k36U5uC": { + "balance": "886.815478240", + "bytecode": [], + "datastore": [] + }, + "AU1275HyFyQMeTQ6msdC25gDyMwyW6Yn3phdyE79XRNmFFBiZTgVz": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1275cjg7UnnzmDH5ANnj1yV5jEhwshsbnbtLsWUq5KXC4otk94F": { + "balance": "2211.771342429", + "bytecode": [], + "datastore": [] + }, + "AU1275d8szfNyD8cFV6o3vyAy9Hm22ZPWQ1LmQ2ZZtvhzQS3i5x9e": { + "balance": "2509.412455994", + "bytecode": [], + "datastore": [] + }, + "AU1275oGwjX4Vm7anr3AhnDVHbodMuoM1a5vMhjACNbrudnMXQJwy": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1276hJ9xQeUQPQUoVGuHTDwzMAftjgM14WhXtL8XAdUqSpLtLRa": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU127743wxGakNEaz9xAt9f7ULpgex8dCZYdGZhzqCE8vsx9AbsFm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12777DB68D1sMiiZXaYEtsGKkQyrxnzQyVcLRdsDtSjPtiMnDx2": { + "balance": "52.385640990", + "bytecode": [], + "datastore": [] + }, + "AU12778M93poLa9ngXZxpfEumuZfsKww6XvdtcD99GUndB6iLS4Tn": { + "balance": "208.674600673", + "bytecode": [], + "datastore": [] + }, + "AU1277RCarMMatz7VhjTdoPSDr3gqh9eHcQs67CTNRozHUEYE7GqQ": { + "balance": "1791.800736043", + "bytecode": [], + "datastore": [] + }, + "AU1277XZqbuv4FqC7vcxAyNLXY7eH2xNPh9hPeR5ekD7Ta1T4pA4A": { + "balance": "1959.270788179", + "bytecode": [], + "datastore": [] + }, + "AU1277YtR6iRyQ8Cs77w5c4A1pS8sWrhkW1NfqcnhmEBti97XpgHr": { + "balance": "1159.158872948", + "bytecode": [], + "datastore": [] + }, + "AU127878CfWHxpAYwa448kSNHxiC4bonSy3jPfXsz7Mt1ZnFNaViD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12788ZK5wy656jW68q596nzXWq5mzBmBkZuNVcy4hL7hhrhRZGP": { + "balance": "812.119516713", + "bytecode": [], + "datastore": [] + }, + "AU1278QMXWXG7zdJSZYSXbkakTDPapHiXsUsM1HZh7Q5ekhYdhT3D": { + "balance": "1523.307867848", + "bytecode": [], + "datastore": [] + }, + "AU1278XqUJ7iasS3KJ9huqPvChGqCZh64k8UMo18c6mDbPuHWKSqm": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU127914zUKwL3gXbV31a8ZLDMTbXFZFCWXLWVwRL4Jk5X6QBNYLv": { + "balance": "206.594911223", + "bytecode": [], + "datastore": [] + }, + "AU1279HeGxuQjhX1WXR4czEJkASXUscEHX6ZHRremMz8umMXZEFdV": { + "balance": "190.712172228", + "bytecode": [], + "datastore": [] + }, + "AU1279uybgzu4evDvUDfuEFYdqcuT6KSd1bTH3GKGAdYwxiDrjzpS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127AQYwEpNiLihPA4oAc55KuT8T3cJZCD35NwnfW1WctC92eQET": { + "balance": "1802.553521108", + "bytecode": [], + "datastore": [] + }, + "AU127ATVbz9eGAtke8JBdSFVad494m6799CGYqua69SzmoMG2iyag": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU127AZbkKGspdEfRttakKPvNPueG23yz9yG7D6r8pGJYi1M7sCge": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU127B6w4vKsJ4LWEAZJEELvoeoecj9gxph9F6askNXC3EcNfJLyR": { + "balance": "1635.905243971", + "bytecode": [], + "datastore": [] + }, + "AU127BNSzLqEszezjVoHaYAjCgKishQYXsaSbt2kyGUj8nxFDrMAw": { + "balance": "45.495706318", + "bytecode": [], + "datastore": [] + }, + "AU127BSLrPWnmE2XB9DExegew5V2BVmSJGSpBcBBwkhyCN5dqEBdH": { + "balance": "16.648548330", + "bytecode": [], + "datastore": [] + }, + "AU127BZaAHP9UMoHdD3hqeMdw3t22Hf7cq7K66vA9VDSpuAcgS5Et": { + "balance": "911.640082464", + "bytecode": [], + "datastore": [] + }, + "AU127C1KuMqkKj4RBGr3QwpRbRGD3y9KhMPvVG42wi5rurynhiQLz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127CMHZCraPJHUSQ2e49XxF7FgkweE7EdqTA7dHfSG9q4Rks3kb": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU127DG7sK67yCW1jFmAhRiwsxY4KPdJgo3xuAyDWxgXvhRVFaYpR": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU127DfrwAQaFbciuQSRq2M24ntsWsje4XevKKNv1Qdrrusp6yTG2": { + "balance": "864.472985618", + "bytecode": [], + "datastore": [] + }, + "AU127DzFrhK2eNgvw5db6U83e7zesix6xgvZv8ZYCwzEbsaZ5kcJ1": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU127E57FMd4bimqeH3SEFrK8hXd95TRZFH8iymdLvSwL3tTR7sdN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127ECFB7LbPzaLNXe1BwP6agZePvf1gftszHCJ5JHByquU2YgRL": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU127EoGZD63FcYzuNH2D2DLf1kEbiAUwgYeKhyzHGfqLQwWCQSZ9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127EuuLbVsVxTcqJoHbkeGxev9X5Ee8uARo51DWmH6yh2o3buK1": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU127FBA8sjpZ4egRFb9PSBLztX8MimmoNJKpu155hbrXvbz884kt": { + "balance": "1294.455973589", + "bytecode": [], + "datastore": [] + }, + "AU127FGZ1WEr3udVQw6MjqQt4d3JZtCdD1ZFnhZtdut4k68rCA4Zs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU127FnNZCpd76qfWwkf3QSB5kMTT9e2MtJoXDgTRjG7EAqVNiNN7": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU127GA1T7GheP7MNsdEUBPvh4AVW8DZAQM7KAcerhz2qq5XPNEAD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127GGbM2wqcpbG8VeWmFVsCvjDNMiug3K5ZvcUiVqPWi7V1Sntg": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU127GQJ8z2J71PjLw6mUNMr7MUHUJ56vVzDg6ykYXc3XJ8agXtPk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127GWGqEntTfMeUXrbxwhvFTqsWRdeYHJDAoRBGr46Ya5T1YToE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127GdizV5XrxjTacL9yvBUndffzPbnarxX48ecsFeUxEgZSt8d6": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU127Gk4XHLoGAVWn8oupUgF3Hfkr9bLZYxp6BhGooEeTZna7tsfA": { + "balance": "17.445304694", + "bytecode": [], + "datastore": [] + }, + "AU127H7qKqshBFRhqe8kU3Xq9DmPjPg9Sd1w9VbR4CBVruqS2rFJ9": { + "balance": "1747.387716176", + "bytecode": [], + "datastore": [] + }, + "AU127HHGAHDXyxfv9GvE6uXGeCS3vZ36gk8uH9kVbWsR5JGsaLATz": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU127Has55UkozJ48NsfhvdGXtLYKRxAqV6mV88kKBUuw1ziBSED7": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU127HsNbokac8MUJbHCgCLJgWMz5aDHRE9J8DzWsukKnRgqgyKir": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127HxiBKCyZZmjo3nfnMutT3ZTmidLjCcaMACzpKCGaWYpnNZFM": { + "balance": "680.733150517", + "bytecode": [], + "datastore": [] + }, + "AU127HzeGqr3nTSf2h9LokGDku8SaLxmKAVubBB7N2GTP1HZ9kusN": { + "balance": "1966.530054014", + "bytecode": [], + "datastore": [] + }, + "AU127JMXQWg8HH2USygj91Hu6zuMzTE7tPLV9SgHQVLVSV5jGvRTe": { + "balance": "567.698573703", + "bytecode": [], + "datastore": [] + }, + "AU127Jr4a5ynnvaBGkPkSTM8iFPNQ4pDNNHBAuE4WoZ3AUjN8vem3": { + "balance": "1268.801662193", + "bytecode": [], + "datastore": [] + }, + "AU127K7Afe6vhZvTM58WAwxdUr3EX7Yw6cMxV1ioNr7LXMc3vmSNf": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU127KEaGy37zzpbGBU6tCdsgG2524EJTgfSiFZBS3XJZARHSyNh5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU127KFzga32fhDg5FGE78ktZ5QYGjWEPBCzQMbwJMKCGFLR6CpVn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127KyL1EgjRguqxo4u3qjSKkVb71MVcLNgWsFU1zaMT7YdbrkF5": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU127LFFHvg8u4tLKjXm94Cq6A7Ft32cGek2Qo4mhA345CXmR4GCH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127LZQBh7mrhroqR1SKzeZYwrh3P9j4zcDNSawNwyfESR7qc3L6": { + "balance": "2366.044748020", + "bytecode": [], + "datastore": [] + }, + "AU127Lz2w8cwG5n8UkNq3NhMWn1cSaAfP2qmeJbVhzPmRh4uqoYX1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU127MFQWXw1tGrLLVQ293dnv5uSU3srhperDBJqWxWM1FSbHoVuf": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU127MXbSJrkf8PfqqSpXt8VB3QdnisDgkQDZM3dp4x1Fj1hZzo7P": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127Ma8PGomGe9BeFXE15WaWAvDi2a34Zmk84bFnqHry8XKwEEtE": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU127N1kug5buU8tLiQv5a9scN3ZTpvH2ysoDJaEp6QhieCQG5hDb": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU127N9HhZ6Nst71mnmxbKu41oVvsnfCuashi8FMPFvH5zoEYMLqm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127NsZz6pfXeTWM2Nx7wK9h4t4Zu7YFw8q3zdTXr5m9J2w5TAA9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127NvTPfgPE7VpVno17MXVvtY1TQzwL76H2eeVfULj5G8J8V6CF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127P2s9Asnf8TD37Un2Y15nVbSWSQZdX1dyKqgWKsYFJoG1aAYK": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU127PDRvcgALPQGgMCcmPLsgnh9bdkKdCrAUsiM2Qa9Qa8iD3TaY": { + "balance": "2461.324957642", + "bytecode": [], + "datastore": [] + }, + "AU127PK8h6kfiuPYCAVX5ScSMQGbEj55YSwgNBNXitP4NSffFQY3n": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU127Pruw5tkFSA18TivzwEx6G7ZV6JihM2AiLQBuadVou1aUHFSc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127QMh6kH8owFW4J6rMkupqDUz5H8KuRJoFHoSs66tRncujBxMK": { + "balance": "830.777000562", + "bytecode": [], + "datastore": [] + }, + "AU127QNuxqaAhRYyyH87q7YUo8NEF9GCtE4kuUm7e7xknYiXrYt79": { + "balance": "1725.133980068", + "bytecode": [], + "datastore": [] + }, + "AU127QiRJgcRFdqBrcWsW9cxopdUr2TsKG9Zuq1a7n5Cg63G64hMK": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU127Qyo2qpB5KMu8yoXLzwxPwTyFpqxyZUgg6hiXerPft6PUPAoQ": { + "balance": "3891.721218790", + "bytecode": [], + "datastore": [] + }, + "AU127R3nsK58DQ1J2hzYy5NJDnxDjggnw4Q4Yqy3visVwLiaXsv6m": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU127RLMmzYq16SWqAaWuVqubhFrvCEh15h54pCgMN4zC8VLC66Bt": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU127RYDJM87Hapxi6wgYaggXgZiZMMco7j2xyuyHAz3TnvRd7RTN": { + "balance": "23.091003259", + "bytecode": [], + "datastore": [] + }, + "AU127RZsN7BVobK1em1rrAP9KQeebC5rnvmspmppYuBULBPKzAUtQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127Rhw2JMUYxguafjd64LycaaRX9FZK8KfKSZTYcjQomwtrFMs2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127SR4dv8LkRd3Z1jBRuD4Td76fTr8zUmHxtkWMjAjE1Aiyy51p": { + "balance": "1356.314372680", + "bytecode": [], + "datastore": [] + }, + "AU127T55nzVXF5c9Z3A4seCVkD7rFDy2Roo7yY9Cuz49VPnczLScA": { + "balance": "549.143238986", + "bytecode": [], + "datastore": [] + }, + "AU127T9JAJWZGdqGL3nDzdf9AUJQkgf1uZHAoTaRFsGJkyesK23Lj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127TMRVB9i8XR8hza8t6iWvGwnS42L6TqzNk7YZR59rgVxb3RB6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127TWZ8ZvD3ULLcEcjFCV1iANmRP7AkwEB6oNKV1SKCdZpMFEX8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127TZ29YMTFtvBz6mGFmokGAEN3ZRPWVd1xArgqhy2iKXRsneyy": { + "balance": "1967.326231747", + "bytecode": [], + "datastore": [] + }, + "AU127TbCbmsccA54qL84x33Lvvfpue9bH4RCjFaHdWLN4QEmyMo3d": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127TfvM9dN86q6MNHKHrcjJ8RZJM76biXEp7zmqxxHNuWvEC1Jc": { + "balance": "1891.054576880", + "bytecode": [], + "datastore": [] + }, + "AU127TyBZM4CvZY7XMFAe3F5XLZYyrzmmqBcVUApsKxh2MSwPzgtz": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU127UCtdhcwaSGeUjjnKrjcFq4ZV9vPXHMc54NafBEPEBQhPH3pJ": { + "balance": "699.741609686", + "bytecode": [], + "datastore": [] + }, + "AU127UQJjML16q5gzQxbutLNcDexdcYu31s2DPaUuriwWrtpxRy7X": { + "balance": "1023.956082126", + "bytecode": [], + "datastore": [] + }, + "AU127UXyYHzJ97kEwoJpe7Q1ntsDRN7DFDhia6zdTrqhkXrRERhC2": { + "balance": "2819.457615714", + "bytecode": [], + "datastore": [] + }, + "AU127UZH4DEUMtq9YBqkG5kLBejGbv14iaCjBnE2gAVsnXSg3EKGA": { + "balance": "779.210758468", + "bytecode": [], + "datastore": [] + }, + "AU127Uu2p92DzKQnpKkGUjjFqUrS8Uv721qMKsBLiCYjmHyhsCG2B": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU127V1PQJFGKR7c1BEDybe5AYKC2uZAFyXNzGv2DcFLpS3ydEYhz": { + "balance": "1293.566514260", + "bytecode": [], + "datastore": [] + }, + "AU127V4K1qVptRNCbguKHGKRsQnR6frUCWiKT15xLRSwvEzPQRdg7": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU127VDGQGf5cGP1xCaT8fBPt72UpaKzMkQ4jznsrGQdgXi1yjQJj": { + "balance": "2626.969787631", + "bytecode": [], + "datastore": [] + }, + "AU127Vx2FktECxVTE3TwyJbku2fstcGRYziMS273KRACyigbdJDuS": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU127W5euZFGSytqcfCYVzP7oKjSgwEwwXn7M8ArdWiKtqrwbE4bF": { + "balance": "1348.231457180", + "bytecode": [], + "datastore": [] + }, + "AU127WCnLMmo9usQZvfhtnsR1W3byaoHqnqQtnX7M4f7PjY23aD2T": { + "balance": "1581.530321023", + "bytecode": [], + "datastore": [] + }, + "AU127WZWRzatxs2dpbr4sci9qbYYYowdpB1wCaCnDUuUEmyVApfTb": { + "balance": "85.673053999", + "bytecode": [], + "datastore": [] + }, + "AU127WfWByzQeN1nbXhDmaJPg3LUwesKoSjVWjkyscGNxGy6tCPbd": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU127WjULhYPZgBSRrdkSgfcnRuJ1Thakw52yuJLuTu4BWv4XK6o": { + "balance": "1542.036942786", + "bytecode": [], + "datastore": [] + }, + "AU127Wqf6626At5ygEJ8zfyDrFtVamHft8q7Hyef5fcUiiHvPJWYo": { + "balance": "780.722686468", + "bytecode": [], + "datastore": [] + }, + "AU127X5K5g6H8Ro85b6FnbmcAPaGguhwp51UX8ec7dDUDbGKYFpzk": { + "balance": "270.043678797", + "bytecode": [], + "datastore": [] + }, + "AU127XBsVAp6DMinCgcij25jSr6A1msEB7wHwCoZscpS5o5UxGsJc": { + "balance": "1485.468400671", + "bytecode": [], + "datastore": [] + }, + "AU127XNf3GGm1WkiPz46DNb77CRNKmtJBXvpTeuPoUAUcZF9bdFkE": { + "balance": "204.266497005", + "bytecode": [], + "datastore": [] + }, + "AU127YLYLTCBB3ArQkpWFFpf8kZNNCpxvidtst6P6fbyzqPNKwLHe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127YPd6mMJTBzdSWdwJE1MfNLgb3hAXiuCsqhpRQERxnVHSHAPf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127YgJWdySdFzA2LsMA7WSmQZ86ZHJ474pmJqmZ18Q3K2s1hV2S": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU127Z7KeeDFhMFp8QhJRjuVUAaVmoc9w3ou4agu4L8AmDg736edF": { + "balance": "142.972058303", + "bytecode": [], + "datastore": [] + }, + "AU127ZXmwMQYwh3tvCDp1Juso8mVydS9UECbsBuM9i4c4Lufk9o6L": { + "balance": "690.999846340", + "bytecode": [], + "datastore": [] + }, + "AU127a8iFEhdgDSDNxc9jB3Kwuge5W7GdHKaiX8hfk3KKb2ktKXjw": { + "balance": "1678.717553111", + "bytecode": [], + "datastore": [] + }, + "AU127aBsh6UsBDnBPdWzgvp7nggAcbB4tzFK298RfLsnWMzduZLQS": { + "balance": "586.909237034", + "bytecode": [], + "datastore": [] + }, + "AU127aK1QuyNTj2vRCD8WCFuWtH254eMtoV9nd4uuFX8J5rWiLaJn": { + "balance": "772.505991282", + "bytecode": [], + "datastore": [] + }, + "AU127aopsnrvdSQqhiHQR3TxSfJZPXbq2iAuMqrGXMHC3UKGinHv5": { + "balance": "999.012807216", + "bytecode": [], + "datastore": [] + }, + "AU127aqeGytxKwqG9eBS19CkEPgNyRWmviccxZsSPU4bbD2MjuqyY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127bYadsgRsrmFqnJsuihfgxf6fVwPSKySjGquroZ52PRdN2Usw": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU127beid5MNPBuGeG8a3yqH3FRJCFGq6fUrxL3nRk6ir2eeCUXTf": { + "balance": "2068.972314179", + "bytecode": [], + "datastore": [] + }, + "AU127c2sdNM3iimZR1aUFf6MjcqQPrMdHKBtxs6hnCEMreuS4GY3u": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU127cdct3CLKDaZ6Pxbao1mdHJeSyTFR3tqH5713mQY5fSt6aE7S": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127chvmx9MUWht7nd2jfAHh9sz3LUJDAVgLWd7mxjzHGRG8sHWJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127dWK7aktheKGUc6FsV9kmFbuNT3cJPAnahjaEdwoqnwCQZ9Jw": { + "balance": "1344.047526378", + "bytecode": [], + "datastore": [] + }, + "AU127dwL7fPkTBVQmV5edzKwuLmyTNbR8tMqqabqf3xX6GLtEoGgw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU127e6sz3amqE9t65htW2nDj7wwyJA5FkjqkBUH8WW8wUAMmkr2Z": { + "balance": "12000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127eYHnCrRGJVy18gX8JXgGgNYVnKQ2K3rXXzN2WdUdbmvU9fXQ": { + "balance": "734.446624827", + "bytecode": [], + "datastore": [] + }, + "AU127eoXpkZfNzfeevMxFWTP81o242gn2T8GVQjUzzBwE1JJD76hF": { + "balance": "1913.308051804", + "bytecode": [], + "datastore": [] + }, + "AU127epE9ffv3pc5m1JLSWqXZPjcPhy6jzoxat9nmbFQ8wUfZC8p7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127ewKcmCPiG8N9XfXsdKqu6xFSkQ1XXJXNnp7DbPkVoKjSCsXD": { + "balance": "3001.319632817", + "bytecode": [], + "datastore": [] + }, + "AU127f6CzuTTyqo7NnBus6WLufW6a1ufEKN8j2D3T2wMwgA1VX9xB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127f9cGZZNiZMaQddNMsGV7Ux5NbvYVsdwEQxHP8etpSU4Dq8qE": { + "balance": "2941.945477919", + "bytecode": [], + "datastore": [] + }, + "AU127fH17D1pgopFxZ8mLj7HkD6Hu2HzxjS3JuWtYBBjScig3gJsQ": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU127fL4JAN9HkPAncDmzffN7deXdyxZQuwjFx3EAZ6MrWSKcmK7i": { + "balance": "1290.194243287", + "bytecode": [], + "datastore": [] + }, + "AU127fgSGfMQ5Ka29rHKzJ6ZgTNmhKwDGNnjGDGB2rH7bg5RMpweJ": { + "balance": "1084.643041267", + "bytecode": [], + "datastore": [] + }, + "AU127fgUSUuvgQjkA7mFZhqk1LE6isne3NkZhreVzWkFGeZDtSnT8": { + "balance": "2185.082488018", + "bytecode": [], + "datastore": [] + }, + "AU127gX1rGeAJeytfMowGdk8fNqnRVCSurXv7NHh6RHFqYs7ijbpB": { + "balance": "249.330255520", + "bytecode": [], + "datastore": [] + }, + "AU127gX9AsacMCbPBphSmriqfofyFNBU7xCqmyY2QPRijLiC449RZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127gZYw32EkoEne4KLiJ9T3s5zUmxXPSKGZTTu67KoKM1RkaeSG": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU127h4Wkj2WZ8Mz5jrYJVbaUBJUNBFwsYen1apr5KwDJRVYs6LvK": { + "balance": "1688.972875869", + "bytecode": [], + "datastore": [] + }, + "AU127hNQGDNe1iYUuW6tounvaM1gomYjaA8uZAdajsT8JppTtLJSq": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU127hxPFKNvejTGc9bQweUCVjDzupN1SHE9GNBd9bMGHYXoqGwUt": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU127i4v3ppdC93Yqh1RoNYqyMP7NNgWEuGbfydHsRmMDinFMLoXz": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU127iCw4uh5ZRuTpBJs5nhuaxtGEttf4ao1uXmNRPJsxBBPuBkAv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127iNm9c3H3fmfBfoKWjrKsETGEeF21JiZ8S8tcRZyfrYcMU6kg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127iWGmBq2S1dgXrRCSQSi7w3Ga2Pwbpt6jwGdjeZFGcKDDdKZg": { + "balance": "218.995728486", + "bytecode": [], + "datastore": [] + }, + "AU127jEgSPM7nCC1WR9MBdVw9zfC44abP2LfMML1pCmZXaK2gAvth": { + "balance": "1987.609594605", + "bytecode": [], + "datastore": [] + }, + "AU127jbtgJJx6a3raL5GYABQPLvxD8pkp71zBFrNGcJb36A1vH746": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU127jn8WXNNSRwC4b4so566iw9gEHtMxUR2vd8QBbP51cereCpVS": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU127jox85EmqBbchYxLm8HvjQ9ekH3eDXnxJKb8n8DH9TmxgVKpa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127kby8t9dgtYRij3hStKCxrqZKmq4omYMJtCEhmfN48eMxoq42": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU127kn5mv8MWDUapUgjqcwFciDFyzpD7V922TsvCgoRmXgZKfpiT": { + "balance": "709.925281549", + "bytecode": [], + "datastore": [] + }, + "AU127ksfvn5uWigYuxC8bLAa8TXJnhpi31NEJkP5LL1e6p6S5aJQw": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU127mW6DNTxxuBP2c1Ny32ypgCsAzfihEduqgfbccwNBg5X8Eq8t": { + "balance": "1969.855083010", + "bytecode": [], + "datastore": [] + }, + "AU127n3qytmZfKKqVB5Y6ffLqeJdPNC5ujrk7AZdqTjfhSaoNBETH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU127nA3AyzTnK18wJUfUtMFsPmREFof4bkUkYVBCMBeS5Jha1Xef": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127nD86bSk1cz19dzrxe7PnaHofAGiTiRQv9vwbotUaPCp23gmu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127nHBgx6aUW8UbN1nFMurM35hhTR2moMWmjyyGYMg55rY2Jxz2": { + "balance": "3054.157028682", + "bytecode": [], + "datastore": [] + }, + "AU127natJbhThZnwmkJFxJ6Sk7Z2xUg72q3xLMBw8rSW1KbVw31ZV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU127nfj6uzqAdMk6q8XfW1pwVDxL5wJefWVQ5YEoQm997E469LEK": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU127nsWoHbPzp1t1CRGPt11uetADf3ETU3qEjqznR1KGQca5c6yf": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU127nxGkn9aakKn6kNhnQFwtPKFyWA5p49XLyUBz4RvXjnHWs6oh": { + "balance": "1389.755367047", + "bytecode": [], + "datastore": [] + }, + "AU127oiyzwC9rwepwEids89HC6XaR6W7ZsLuL1579g8HWAtejkbCr": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU127ojCU7idWXoyKqmtBWSMDGSDm2QjPWFkzmUE5xgehFyWK7dDN": { + "balance": "1896.932991375", + "bytecode": [], + "datastore": [] + }, + "AU127ojkMgF4TZdpgYyGT9XWbMyBymw971HW1s1sK5vBGVFoo5RrD": { + "balance": "1760.948068639", + "bytecode": [], + "datastore": [] + }, + "AU127ordKQ6kXiENTEG5t7211uHqj9D46PJRSGAucPmuxVKDDUqje": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127pGPAVW3Hz7JB4DiQeZjrb2e1hrRUXKwLgTAknVbRAVH5Z5AM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127pJjEkjYPKy1oWqFjDFNgQj6ptGbw3CmFdH3mnbTt2aaq3TA5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU127pd8HpXB7E5zUcZSdR5NxQE69iuHiTtAMMWUGmhSjmeCeQUwP": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU127ptYeW3soGyBUNGZYzpbP2d66Twhd3o4irPCvDLfeVPadqtUd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127pzxJsL79L8v7eSGNVp45Nmu7mBU5XjnD8u2i8LZRPHpSumEg": { + "balance": "1189.903980410", + "bytecode": [], + "datastore": [] + }, + "AU127q1wGLjC9i7rrf4fSM85GbKKWuGk9Mj27bzZxxx8ATZs5ierF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127qCv69PYQzXBJbsxm4EoZcp4SMjXCzovhezeqeD68fyfrPM3E": { + "balance": "3367.271197420", + "bytecode": [], + "datastore": [] + }, + "AU127qM2bZKNUkjF7m83XshM2qoHsoxYeKADnQUoB4meugazaRU53": { + "balance": "1089.892305906", + "bytecode": [], + "datastore": [] + }, + "AU127qTL8Exn6XLLCfBsrQePXchyCk9yeXNN2H8jzhBFJA5rwSY7n": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU127qcCuAR7torrBoSXJMEcURwrRxh8RusZkAykMsgj2irYD7tUQ": { + "balance": "825.738337474", + "bytecode": [], + "datastore": [] + }, + "AU127qiF2XPUXMRXWeSsx3gvGokKdLBTk99btqJ3Aa4DzpDQybS3e": { + "balance": "1910.421672312", + "bytecode": [], + "datastore": [] + }, + "AU127qqQ5yR2q5TpyBj2etBAt7Q4PgjoxE43CU549fc8eYVLALcxe": { + "balance": "654.288144526", + "bytecode": [], + "datastore": [] + }, + "AU127quLfuurSRpKkVaCV8ooVQkUwnTMkbaSdBsVBJK3DSyaYEvTs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU127r36gV65dxDeVh8wCrZyedNKNzxToojqXibeE8d4gixi52XVz": { + "balance": "1405.981616705", + "bytecode": [], + "datastore": [] + }, + "AU127r6tJQ4XSRqGEpPiNjbe4Zqx47kTDNcQ9FohCuEa5NSne3RZx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU127rAKpLoLzXkp1ktgFsRZh3YBZNBsERF5CUj4KwGzr4xvccjdJ": { + "balance": "3538.493679891", + "bytecode": [], + "datastore": [] + }, + "AU127rnQyHHrUZrp7PuV5hW3VnWXVCVcwkqXxsFqvAcQJQD3WrtWR": { + "balance": "920.046664978", + "bytecode": [], + "datastore": [] + }, + "AU127ruU8EE8tJoKRUNQ1EW8cGsdjDPUVFFtRf1Pssa2apT6hn49p": { + "balance": "4835.090116653", + "bytecode": [], + "datastore": [] + }, + "AU127sRCGAuVqQpQviLzhspynLELMHPbU1TH2Arprjd6DC1q5T5hJ": { + "balance": "4256.450403943", + "bytecode": [], + "datastore": [] + }, + "AU127smrfWggWLCMob8F9wxU9CrDdUDdncSP85LGpF8Z5gwkSYVbN": { + "balance": "1765.192705651", + "bytecode": [], + "datastore": [] + }, + "AU127tCXYfL9CbHVHa7cQneM2F4LLLHZ1FPFFqaB91rQAuHyqXuka": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU127tctJLNGPk22zGc9pfFzdawv15cZNWj7QvcnfaXVdD5XmzExu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127tynwJqe6A5N7MW38PNQ3wazR4i6gGxV4XBZ1HTousMnqTUBy": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU127u3VeemqLXKE39nwkxUUi2Bt9gvpjStf8qeSoQV8KnKVEYDWj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU127vNQytyuqMe4enypVSW2VQASfyMcqwDUp9YgHzx85CoSUaQ7m": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU127vZArDG3sMFSjtuBtCKoZyK5zBE25cbUt9SkC5TiHET6XRzrE": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU127vbezaYTrUAjYFmK9uYNboUBXKoiTUYCh92XgfhdZqtfmEp4E": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127wDpo7xyjzrmJUbwVzRz83ukASGzCTfxMqEQMxLncyBrrp8C": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU127wssunuqH67r6poRiyX85rE8rkNTmSAETdYXXi9QDM5EvAWNq": { + "balance": "3531.821958059", + "bytecode": [], + "datastore": [] + }, + "AU127wzZyMivwp2N7Efx1K51ZH88MJmUezgirFq15FdHXtyRXXs3B": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU127xGTu52fo1UbavF4Bu7r2WF5F7pBQHPmkJQhxy98C3zpm5uLj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU127xQ17kheeRZhiK6YHiF89kopXo9dXD5BtAqVMLZFaqMyoZicj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU127xc76Z8nMJb2dcWAEZC2aSHUJgpewBKxYNGoj3zKuDPVs5nmD": { + "balance": "2042.270378835", + "bytecode": [], + "datastore": [] + }, + "AU127xo6Z1uwHcNzuGwo4QdwtbBMFeSxJ9Lb4arMqwiASqrsL6itr": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU127z8AXcSAHtUgqEQ8EdhnubmX9uwWYxMJ8DNUCCYgr2sfJJera": { + "balance": "984.768562197", + "bytecode": [], + "datastore": [] + }, + "AU127zQ7tGvYJnYtXezfqtNjaDS6QtNdMKbQ9xBDQCs6NQkSJUNsc": { + "balance": "804.109133878", + "bytecode": [], + "datastore": [] + }, + "AU127zZFTs6p9HzwKR6J584MNn8vvgvqswt74dWRs5FKcbdxfjvDR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12811LrvQzspYdmn7jARvZX7S9nySee175tpzGaDQZDyeXw8uK8": { + "balance": "80.858085809", + "bytecode": [], + "datastore": [] + }, + "AU12819Egr2DjhYcC6str3s6oN4oi3aTJUR3cxheFNb4HgmfeKqVt": { + "balance": "1363.468263016", + "bytecode": [], + "datastore": [] + }, + "AU1281i5s57TqT3PbYg2oaCBvLFCHn7QfnPw3fKcZdSCH4xEoUCRM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1281n1UwZ6UKN2KewxhDJMcPmrBqw7gsuDc9KEWBNnMt8jrKqDA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1282M7dhJgjyxSgPxBkCgkjMr2a9ryqXpZ9WqLaqMDpX3sTPRpw": { + "balance": "1561.528391947", + "bytecode": [], + "datastore": [] + }, + "AU1282w7N4hqPunmcU5GAcNXBsr2scfzRwgeTgz3RAPyg11QnVB9K": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1283bRNebQ3LtPZ5NVmjWC2DgQ78CnmG9Gtus4ixShzfH1j5o8F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128427SLnZr8CW6wEQZYmxtRykzXbQz59DXc43ZfcEkjxnPkFJG": { + "balance": "3348.562425244", + "bytecode": [], + "datastore": [] + }, + "AU12843DfXgi12awasT2HxgWx6GX4mgs9oURUwDzxpEcSkyY5XwHj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1284VVWLQKWDwvpah3BcFaXj56UDk6nNSfy4JJ6LiL3jRqcR6Gd": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1284zgGowPLGrZyQjXcLRs2SPBNvj7C1dcHCNhtfRVxsc8ptD1G": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12857H66JYwMheGDcq3gFzofJ6r3TKGNDxV59xFEKpno4RYASsi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128597BKeMQ6P4YbxgdFBTBjkfQZbfCGcGYeXMjMWhKE5DtwMtN": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1285BUwFVTTfEguWN2jz7HgVWSbpcvvViEWotxUj9rZfxknyq3G": { + "balance": "779.587072075", + "bytecode": [], + "datastore": [] + }, + "AU1285Hha9izU59svzvKBqqjMSz4S8kV6kRGqYCdw5BbZ5RacRk61": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1285NCjWGRpuf4t2EodMpUyXb4eKatvN1RtoHt276FKSnsLB8Ux": { + "balance": "2725.712470670", + "bytecode": [], + "datastore": [] + }, + "AU1285vCQn4cWph9hEmWmnTJ3iQGKH374wzcjSND7LLfJw8ikCvet": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1285yKFpzGnXcFJGse7QVRTXHwQRNfZqXbg19auXzfQ5DHnQc9K": { + "balance": "552.670975159", + "bytecode": [], + "datastore": [] + }, + "AU12861RMaDBac8W63o64HGTzfVDWcwq3UDrrbMXCCuGN5CfUixsW": { + "balance": "1834.111793437", + "bytecode": [], + "datastore": [] + }, + "AU1286ULgo6wJNS4TtLZqf8YhpUviX5fbLzJU9N6woa3jr3vtY9q7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12872L6m5mLwcVrb9NwF5Qab8fGDYSw9SWjdKjuPrc8PVVE94qr": { + "balance": "1135.551707996", + "bytecode": [], + "datastore": [] + }, + "AU1287SaF3i46h21u9cmQD7HkF2HcgAwvRAvjs2vU96PJnV5gu4bb": { + "balance": "2235.221751955", + "bytecode": [], + "datastore": [] + }, + "AU1287aiV6RLbnRJyp7MjN2SzpJjrHdzEmn2MxDBtoeugky39eUF": { + "balance": "3800.253151061", + "bytecode": [], + "datastore": [] + }, + "AU1287gTrAkCRJo1HpyriQKmUu1FqvrLpePaJir7i4m8Dsqh7ncF2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1287q3RDswsUFbjLDymRASkmTF4pfbfUQ9SKzKVFJ8G3DfFN2TG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1287ugaSynLNjCfh1M7mDX7uamQnaDmdJw4YSUioS2qQ9uStXhH": { + "balance": "634.839942088", + "bytecode": [], + "datastore": [] + }, + "AU1288D6LjcvQRmwMqZcLRCfLjuUGJ4f59fKw5TNqSMF8d5rurvUu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1288NJXdYA8uequiFx8mEFoV7kgtBkeNyJSma4mRg4GzDx4RdDN": { + "balance": "1342.077444341", + "bytecode": [], + "datastore": [] + }, + "AU1288S9WNMJQgprFXXU1VPUB7Gmdn1NMeigqcQXZeWpesfu9M1qF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1288o4cSaNMpnAg4FRs69NWtFSdHeqTxaRwtp1wPpGuSrjmg6Jq": { + "balance": "832.507270651", + "bytecode": [], + "datastore": [] + }, + "AU1289kWgQfcL62DvxMYn4XXoWPv7ukLujB2uk1J2ia1Fdv79nUaK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1289o821WAZgdVQyVas7ZWBSd54e7m47x15HpJA9dQRx8NFsytj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128AXVXQbhZVTWCsFR1LZ6yCBpPRYosyvLRfvNZ5XUzNmc96gwp": { + "balance": "1966.289395318", + "bytecode": [], + "datastore": [] + }, + "AU128Aobv6z4T4EQ77wTaXDYs6T3nuq6Mb8szJ3zT9zKZhqAyu1G1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128AuhKdvNiJ7CnNVcXG1KAmR1oDyawADT2sEcaPugyVfzMn7Ut": { + "balance": "3870.445097739", + "bytecode": [], + "datastore": [] + }, + "AU128BfSWVUu1MASzRbMvLsTnY5zT1Loyn19rVG4S8kZyqsJk2pNN": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU128Bk9gy2sKoSPLMeSWPQAp2v9NK5K9aEagmDUjY3Pwgg5DY7im": { + "balance": "2411.439088760", + "bytecode": [], + "datastore": [] + }, + "AU128BpcF8TMCTp7ZacuPV4vAkfswbHD1GtShkE3JVDgPdWtQP4GN": { + "balance": "2871.039880703", + "bytecode": [], + "datastore": [] + }, + "AU128C1NYCfnis3wb9VMMbLoxutWBezc5SN9XgK2nQTXQUaBFKV4P": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128CNE5G5xEFNCAQuYejjdigzFvN2pbASrxm952wACVE2iiptLe": { + "balance": "1672.385201781", + "bytecode": [], + "datastore": [] + }, + "AU128CQ7vNEt7J1Ssv7ApPJKh3Y3YjtrnWTQhyasHjmrn3UcjgBdM": { + "balance": "2054.094043772", + "bytecode": [], + "datastore": [] + }, + "AU128D1E36zw4DFuNBjspjDfzpSAx4WFtzGFvTfH7Bz585bxLAfEk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU128D7sjgE1eiLU3DZh9QkY3bBJjRUFYLfA8AziGxQCNdbHatwgT": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU128DcME8R2uuBBbYYRM5tq6nWv1ik3Li8KA7Yc2tVbMaoaBJxjU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128DckTjgGyRY81P2tbDzsuXGLo5zBK8meVQxJoPcPAgvp8yZsF": { + "balance": "1514.801535419", + "bytecode": [], + "datastore": [] + }, + "AU128Dibct9to3gn1F4QDRpEFMgJ3sxAyz2c5SVHL3a99oDDXEc8t": { + "balance": "1329.956243715", + "bytecode": [], + "datastore": [] + }, + "AU128DpFdk3xBTbHpwt9HJQBUQkC9awwiv8f8uSGtXmVfU25Ck8ji": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU128DqtE2SbDEF8LUt9gF4NKsWmcMADN4a4ruTG7UxPy6PKfDzGv": { + "balance": "3298.434120169", + "bytecode": [], + "datastore": [] + }, + "AU128EJgUgAsyux9sBZyG3j7hjx36ucxNszK84m5meoyS5ZYT26b7": { + "balance": "1519.851655645", + "bytecode": [], + "datastore": [] + }, + "AU128EQGhd6AKCKLQ8VCFVXWtwmfLg6cKXpvK55gTqWn6GFUP5fp7": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU128EXcitzCp6hmKrqWBUafvjhzJZ16bUFvgxwkNqKBiBur32jeQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128F2vfMkBEoUZechKxd3nLTkUoZxPx3Ei6dhBPk2FywW8zMrbw": { + "balance": "103.135313531", + "bytecode": [], + "datastore": [] + }, + "AU128F74i1k54KcVvGVh1raaFuPCGN2CsKFpRQzJFbN4j7JGMC35Z": { + "balance": "1053.128330410", + "bytecode": [], + "datastore": [] + }, + "AU128FMi1ng5MFhmfWnbQSq5rQgosXbKw1rsqMrdTc92rZCNwbvKY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU128GPMBbDkWfGEKYx7KDBC7pUqh9zHd9jdmS9pYwLzghFZCuqo6": { + "balance": "4313.511907477", + "bytecode": [], + "datastore": [] + }, + "AU128GUBfD75s8xkvaABwf57Ubtj4e9W146FKpQheskjrGp5z2hpN": { + "balance": "807.501011921", + "bytecode": [], + "datastore": [] + }, + "AU128GZGQWVe1eSjRp1PsBcktu2vWfpPsJ14HaexgF2CVuo14uZ1f": { + "balance": "60.620346393", + "bytecode": [], + "datastore": [] + }, + "AU128GgsWfhfjgxRBtRnFN9u8HDke2AqNJu1Pvn33e5AK5G5LbYY6": { + "balance": "1029.416066213", + "bytecode": [], + "datastore": [] + }, + "AU128HVaZPyTXz4E8rMZAG8rkYmtKXefpmEZGiZKfY2uxnRq5a9Ni": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128HmVJBWs9yUgrTDqpcifAKkBKFXw7Wg7DiSJ41kFMsRjNbApM": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU128J76GXujSWknidQtPydXHHPw2JoAwvLxygzuBSbNPmXM1t2Xv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128JbGJPHneB4mjz9qFJGCmAvm67ZgPBJWbjyn5JCzmVPCSVNAG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128JrqfMMBKoWbr7vveW2yjJ68wUkTX3mijgPKjZ6vw2BTVy2MD": { + "balance": "48037.766903201", + "bytecode": [], + "datastore": [] + }, + "AU128KM4MDzhvqF6qRa4MRmrhACSBmqhTdYPQ3HSSH6v3vQbDRWig": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128KSsZdXLaNugccmkAHqtywM4LtGpsbniFcwzLccfPFDoyoGbG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128KVg6QcPrpmcu7UMvyqtvqZnt1LUG4rSWHVyvHtDka5kDtfza": { + "balance": "6062.558835037", + "bytecode": [], + "datastore": [] + }, + "AU128KVzvd2zLMqWDRPtrNkhDH6DxroG8juSygx6H155QJnu1sk6u": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU128KfjJk2zFvDbFdxBt4BrYsENhpStBJpxWo8nSFQQ9PobZJY64": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU128Kp9kkK1Xk1B7cHDtuwGMDZuEwvJrfQnsG79NeYDsRpjHfUox": { + "balance": "2426.876658046", + "bytecode": [], + "datastore": [] + }, + "AU128KpDjp1hyLYPD3JUijYDrFwnqxv1JrZncuVnsPoYArcLq2imX": { + "balance": "974.563741305", + "bytecode": [], + "datastore": [] + }, + "AU128KteThGgru5BiunjvzNerokPzxGhfYccFCAPqq3nDodmfHrz": { + "balance": "1349.223615781", + "bytecode": [], + "datastore": [] + }, + "AU128L8FpP6qNaAM8wosdMZbRGW1RsMZFDRMvHCoBkqj1YWAtCJub": { + "balance": "1510.803842284", + "bytecode": [], + "datastore": [] + }, + "AU128LEj5ASwBMxEHEYK9o7YcEccHPXjSWxL29dBHZFdB7SMWvyYL": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU128LXo9ibmyjJ3qqLYKdTinXzxetrjiDcZFamBXCbZ4L7bD2Xj8": { + "balance": "3666.415266078", + "bytecode": [], + "datastore": [] + }, + "AU128LddsMzrR7y2h2Pv7hei4GrJgCSymiqXxp1trxPmuVivPcfSt": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU128LnFyvVfVKjVhdDK666bk2HtNwTZj3zkV9BTMUbttHSvzZtfN": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU128M4WbUMBXouRCexwW7TuR6f4NzuGXdy6GamZZC4BwswdTt38P": { + "balance": "1907.708267642", + "bytecode": [], + "datastore": [] + }, + "AU128M7Nq6NuhAWRvWSKJ2h4ku6myHoBRDxazofT2wQyWudxML7aC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128MUqPMxeU5VrhVLwjqN5Ncmt6fSJDWubcKbuvxP22PL9atPfW": { + "balance": "3259.850431336", + "bytecode": [], + "datastore": [] + }, + "AU128NHaFSUy5nukHFCjYBguUtMRSFmQMiVrbjYZDLtNKtnZChRi6": { + "balance": "1031.189966345", + "bytecode": [], + "datastore": [] + }, + "AU128NQ23Hwu263rsCXH6BSNKsXMFZWout8QDv5CvD4AGr15tExfF": { + "balance": "679.609545708", + "bytecode": [], + "datastore": [] + }, + "AU128NXNbz1odDgGo2QL1Med4JAds2LKHvmBYptvnHQrJPTtucP9W": { + "balance": "2528.160283099", + "bytecode": [], + "datastore": [] + }, + "AU128Nh2UivR5vJEt7ifNiGJpFUyVkEh3m2QmtizAfXUQ7neVVphk": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU128Nk7pd1N83yaYZ9Lh3TLGewdz8WGnrS9pDF3xd13WFUY6Ntvf": { + "balance": "2701.836041898", + "bytecode": [], + "datastore": [] + }, + "AU128NyjMKBafriwH5k3efZFnyTayfnbyXbKYFvLBcYPjNp9WHA9M": { + "balance": "1187.599826760", + "bytecode": [], + "datastore": [] + }, + "AU128P23f8fRro6Lr9MqkDEQqbv78yiQbcn5XvnHoG9vDo6tbWWMQ": { + "balance": "833.647669988", + "bytecode": [], + "datastore": [] + }, + "AU128PBuTgFfgaTpL49Wk1rUuuMmqtk5joHZd6Eje9WUBdGh4r13r": { + "balance": "1669.193587766", + "bytecode": [], + "datastore": [] + }, + "AU128PJe6UJKWAHi5D7zo9iJaevFMkisWgEdwkr53kukRP2PTge9D": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU128PMja6NXBp5d4AkVtDLY9JT89TQbstE9XpTTtVkkAvKTxMRE4": { + "balance": "3444.572146331", + "bytecode": [], + "datastore": [] + }, + "AU128PW9sSiGR7WKhvwBNCGS8qHEt1vCJSoigFRxC5P41hdxbN5GZ": { + "balance": "2193.703148321", + "bytecode": [], + "datastore": [] + }, + "AU128PiKGu52Wo6aNF8RJ2HMuTSnS9zBz5TSmLG7MpvCxJXSF2Q5r": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128Q3HUzjRHPcqHQN1fLWb7wo7HQGPXoxpxzr86yhQHAf35YJWd": { + "balance": "3839.813749604", + "bytecode": [], + "datastore": [] + }, + "AU128Q6H1PGk2FbB9vMrg3gTiuc427vk9mXeYK2wnepKAFdb4gyDX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128QHsrj1f7hJKSV1BV6DFu9cCZMFzt57gD4o89v5VSkpAZgzy1": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU128QZvez2qui4UbmYFaX2gfbpjEMjiJ7Xg3LWECYrRHZoktgL75": { + "balance": "1369.393742681", + "bytecode": [], + "datastore": [] + }, + "AU128QtqWT16Anydn7vqQeoPY9eUrNGu79uo4uMDQP3pTiQAoYPYU": { + "balance": "911.962331416", + "bytecode": [], + "datastore": [] + }, + "AU128R9bXjj3uqyq48q2t9q3g49syPKRMW8fp5dXHVkHpQjkmrK4n": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU128RKHvcYRtHR1qd7MNqy7AHHHrzCyL927PyuGQqCePt7CdZS7F": { + "balance": "23.208115598", + "bytecode": [], + "datastore": [] + }, + "AU128RQUxXCoDoD1oMYhSPiV91UWBdhzGhKtxA9cexbtBX8v3y4zd": { + "balance": "4587.098679799", + "bytecode": [], + "datastore": [] + }, + "AU128RY1xMbeX5Wnktu2bRjCptdfbrvoti2QuyZC6huQ8jCQ6XRhy": { + "balance": "1379.777786034", + "bytecode": [], + "datastore": [] + }, + "AU128RiPFbMfyaKkUWg1MqULnza7e2wwrvhUBksJ1PmwkUvAD98YJ": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU128SC1m3TFtefyUVLWVpZC1NySnFmYuQionCHtKcCQa9xyBgyMg": { + "balance": "911.694311585", + "bytecode": [], + "datastore": [] + }, + "AU128SLhJVweyaHAtZaPA35SxRCnu8E4HZmMMNXF1EmAcwsFpkD8V": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128SM62NdioR7kF1Y8n3qMKDzod3VGjcUoMZfG3U71zMWWck682": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU128SiCzUNuAZiTaXPp16tCdoTPdX9cbgezms9KKEZfsqM1gAr4p": { + "balance": "1835.246582975", + "bytecode": [], + "datastore": [] + }, + "AU128TRxy68mkQwPayQr8guML5Ua2pw9YZxrLP6FkFPeodny76GCY": { + "balance": "539.205531432", + "bytecode": [], + "datastore": [] + }, + "AU128TaaKfSdBQeKoUnFZdXF7bmZBM8mG8sW6t8dTfdvwmysNQPvM": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU128To3SP1D66xxNci6pKtMFMLjB5pwVDj5oWPCTJSw9Q56BDL5z": { + "balance": "1513.788575089", + "bytecode": [], + "datastore": [] + }, + "AU128TvinG1yDprmsuTwzTsXXoW5ESUTRJsySjhTdP8U3FjEHQyJ7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128UCA1gSMnLZX8hELSD8UfvGX8RgVB3XkqiFxVStURQx3cqi6Y": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU128UP72hixdM2LyDqXuFQGaPeqD3bkkeMSS91Wck6S2NiTXPDFB": { + "balance": "1199.566824896", + "bytecode": [], + "datastore": [] + }, + "AU128Ux5EXnuku6h7JHeX5wSUxjpztfYBuiRNRfw2dxepVqfTYzuA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128VPC5gcdNXfuM8bk8r3Vj9fVsrcwJ1vze2Snw22kMBHDaSCyN": { + "balance": "748.968718150", + "bytecode": [], + "datastore": [] + }, + "AU128WAeRK2yQdr7VQwivtX1oo9UDvUpJrB8DcqMWbeeB2Uu7RvX2": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU128X8u5djeizD58NMS4LuQ9AQCTM6YYzGGX5DuhfqdwhzifioMG": { + "balance": "1411.182563462", + "bytecode": [], + "datastore": [] + }, + "AU128XRoUTFp6dZZFkHJXhGj8DQvvWMH6k483AVbpzW8urPn1AwVX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128XYYjD4dSxrYQGyvwx6djx2p9FpWTwz7dtZv7aeKyM1fhKMCp": { + "balance": "1000.333400654", + "bytecode": [], + "datastore": [] + }, + "AU128XawwjftkLAZHoQ3Dm59zAVfuUNGJ8ZsKtRhmxBzZtA7WDQaY": { + "balance": "2976.933419879", + "bytecode": [], + "datastore": [] + }, + "AU128XoPxw5UYrxz4uKuLvq5TaTswpwvyaNN7MGnwa8y2hYqmTDMX": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU128XpMrZemzqJXNMykKxGu3VbMjeXgfr1SekMREktviQiUiN49M": { + "balance": "1731.596461986", + "bytecode": [], + "datastore": [] + }, + "AU128YBEbprCzKCmP7Zjv2PwVFu7kNHuafwdvZz9TSz5Ce3WvQUN2": { + "balance": "1032.732667216", + "bytecode": [], + "datastore": [] + }, + "AU128YHiQo4H6wu3ytPx5Addu7WJ7E4DGRGoGJ2Mb2CQu8xpmjpdk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128YWTjPa8aR16bbfZWYE2vcsJ7Mp6oi3GAEr3syBdsugDYHAFo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU128YjhsjE1xpYhPyvshEWyjrf9XXpsQpW7GjwTy3yWUWpQjHBvb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128Ypui3pMaJsZ1q7dQ8v4gmDZynM6iYrky6NGy72Jbzs2cazUN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128Ys4a63HN1xpqP7y3hvotHogN2cH78C5Ybch7b9d7rQ2xhqiF": { + "balance": "74.932735697", + "bytecode": [], + "datastore": [] + }, + "AU128Z9xUTjkzfQtJXbzqgk3TRpghgz3BdpdPPLPvtrETGFKA8cYr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128ZRrQQTesY5pg7Ud3xmYTi65Zuip5FMGUL69gaQvvj4LtJnoi": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU128ZxBvQUxSj5NdswCNubGtJwCYWqceZ18AzoCN5bPT2mkmaGY9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128Zxv12fgkcm4wv6zDiSYjDJoDMPaEeQpMxmKqnqdTPUZPq5bt": { + "balance": "589.444428026", + "bytecode": [], + "datastore": [] + }, + "AU128a6vWYRUuMFTsWWotXv2UBf6C8aRTvhE7qBisGmNBTGfPCuXw": { + "balance": "1879.889447913", + "bytecode": [], + "datastore": [] + }, + "AU128aHoqJGk6T4RVKT5RcvR16ziuWULhkwviQycnsbsTYmP3iA8A": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU128aoRdVe8w3FSpbWPRQ269rCGwci5PyUCpxfvDrA3EzSRUSqKW": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU128atcFJAFd986L66rp2qbu4M2m1P9WFpi6i28HT1xQo3fWHFP7": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU128bJt7xBPcvcgNCuPK52MuGr6S4rjL876tvy9zuMz2pBaTUhVc": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU128c63jESYx8bx79bCZt2x5P9VBLogEcETqpgViKwmuteKSxfuL": { + "balance": "561.378650402", + "bytecode": [], + "datastore": [] + }, + "AU128cGRHdKQmU2YLNS5QmkBqdLq2j1RtsbxhpKuQ15LtJJpDioEu": { + "balance": "1743.723009915", + "bytecode": [], + "datastore": [] + }, + "AU128crzncLAHKgbhjkmGywAQxv2nu2MHTuGYK7erKqRsEP29wid8": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU128d6nQeuiXE3S6RGXmHvgZZSPs3AcoMN4FsonCzDyBykdX6wjo": { + "balance": "4958.096927666", + "bytecode": [], + "datastore": [] + }, + "AU128dQxfx2rhvQZCXDMtw531L4udazkBxVTmsTNpfCeWmmwYRaFg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128dd3cHwoyLg9vmCYRUjnCKJ5G8jFdtAsVAN7g1bFJNgXnX4HG": { + "balance": "1054.485585904", + "bytecode": [], + "datastore": [] + }, + "AU128dr3BMueUeYxQNtB2nLTNQvXK2Yyke6prxifFDbDXfA3Lb9uc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128e3G1fTZFRy9Tdoy6QU63NsxLGjEhat9evgg5bPF81NfUkJ6u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128fJoVjv4WyF7YvgAiRB5V5qxEv6z8a5rfeBGNdawiPKM9MYVn": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU128g58gEk7duAk8pxEvfvDniM1xxStXuYYxE97WPJ5A5PQ2UEDd": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU128gTZpSXe6amUSU2CCeejao48Vb4VGAfQG4j48iw3YXjgDwxBv": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU128h6oAnrNFYAWGmvuj28Hp3KLytmfx3k2dbcqstLKThyHjtBRg": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU128hCBPy5gyTMi44eUYucGqog5WYKZJnuB7oCzkCPXNAKQ9SWBQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128hJWgwQ6FpeB6eRpG6RbXFmSndy1weuCuvXCdoKpxKmFaF6Qr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128hPgfokBSnWuGa7pbJwVrXbRoKEJeQXf24GuLuSncUfhLc57W": { + "balance": "1556.596711587", + "bytecode": [], + "datastore": [] + }, + "AU128hVSnHHpJbmp5g36f951ZBg4RuwGYkghbuRaaJCZQ9PGj7wch": { + "balance": "1484.607055207", + "bytecode": [], + "datastore": [] + }, + "AU128hbLjng3XE25Le4AcGueSCWLqyyg4143Zton65t76Z3w6jkY5": { + "balance": "719.426050026", + "bytecode": [], + "datastore": [] + }, + "AU128hsoefdHQDjGNmymnF7qjr28amWUGEBmXkMnchSXxXxazgZ9E": { + "balance": "718.903415642", + "bytecode": [], + "datastore": [] + }, + "AU128hwK8dA4N8qY2Noevu7m8Jtag7DfcSksZGUdw6swUcok7royL": { + "balance": "3296.243721167", + "bytecode": [], + "datastore": [] + }, + "AU128hyMwHNCW2GpNDthbU49nRuZ2bdtD2c59bkt76VTDYaJ24kXh": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU128i1X81tSYRZ8kLHYYiAyBnJp6G8wyqCaP9irvvHtic7PEbeMY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU128iEiju6jmumxY64WJiQcqbgRGvPgdpt3KSgH6kKLsfjjhNV6m": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128iJi1PjoQxEzLxiS2TxgCYAPLKG4L4o3yJJhCCeQMvqGLCdf7": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU128iVAwQy1McZNwVPoxBcL8qTVmutk9nKhWGz5yz1LR1igPBcpJ": { + "balance": "859.927394866", + "bytecode": [], + "datastore": [] + }, + "AU128ibh3dZrxWd9Z3AcQJwXiPZ9QDCFXTyFdcJnjvoZA1iU7cvp6": { + "balance": "2003.563634848", + "bytecode": [], + "datastore": [] + }, + "AU128imdjBJhN3fV598JThjGCnWXHrXawCqUioyHdXa6LdN1EpWvM": { + "balance": "1816.929129789", + "bytecode": [], + "datastore": [] + }, + "AU128inDs4hYqoLffRKQ4AMkvcehQWrRG2JP7c6GZQQ2XtKw4eDq8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU128jAu1uHk9JHJ4yb5wShJSP6hHFYoK3v2YVWv9v4qtaLYVSa9i": { + "balance": "3252.755329083", + "bytecode": [], + "datastore": [] + }, + "AU128jZZUh1H2sFq2A8Sc2tdTAYNsxrELLzpU9NBTg3Sf56AWijc1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU128jyrFGEcxdpfBCkpht1vH4bZ8rZgxmCjpYbWNFxybJk2iUvFZ": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU128kHhJmkorBmrxojMue3fo1QTPTEnuioKh2rpxJRD2hhJxdaeU": { + "balance": "2064.561444638", + "bytecode": [], + "datastore": [] + }, + "AU128kPY1grnomPcKatyQVU4zE988LRTo1eTfWLDAqBAuUUiYGwNK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128kjwEmjrAWrzRvZ2eNX6R7EyfP5eAcBi5yEsEyySKCi46boPn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128m2QMmk54kmLxb4fxsNJaRQCyHqybCzuYmTXBKMXBYMbqLWEB": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU128mHVFunELCKVYZy9akgYSqRmsmo4sx7zCTqsX2tRm8r6c3cLL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128mTkP9eYWDub1Ahnygny5vRQb78HqAsA8o4fVWTtoVJuF6YdF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU128mnrhgLkVMNDE4kko1jc9Jme8wPQj1Q1kWxwddL1Pc89PJ3V6": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU128nrnVq6a27jGNpnbH8zE4Rs1XfznJf1uYbDQm5GF6EAJMv2Vm": { + "balance": "5344.588416150", + "bytecode": [], + "datastore": [] + }, + "AU128o5mj9c39ShuAvcP3njHUoEyYL6gmP2CzevULGg9SMiiS1yVK": { + "balance": "3155.388322608", + "bytecode": [], + "datastore": [] + }, + "AU128oCKYRmTdEWpPAN9RXVNDFfL243goCP7KNTCHBJVd1MdN2Dbm": { + "balance": "933.452060631", + "bytecode": [], + "datastore": [] + }, + "AU128oZUf1MpJzds3LXinM3hDt9s7yXfri2kAD22PLndju45RZiDT": { + "balance": "1393.099629081", + "bytecode": [], + "datastore": [] + }, + "AU128oag9kpLqXaBwkHPp4ugVxcWxJJat6kbGrKUfWbfyUtvnJtWt": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU128ov2K6MNVAafRzhAr6CvVNaM2rbfkYcKVJBggqD5qW3jK6xh1": { + "balance": "1130.030086346", + "bytecode": [], + "datastore": [] + }, + "AU128owX7aW9kMotTKWM7zveAKayJdVEZkycPyJC5mTZ6tsnRJAJf": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU128pJCTCWnY3UTnWFUJtuB5DiUo9Kn7XaZ1ajk7mSU4AUFDGDw3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128ppknbyNzeJXsFdk1ioTfVjD2SpYAqpJMcfVGVCAo5zpBmer7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128pprYsJQ5XTvdxpiVr4pjbnN7d7gjEvDcNsps5tE9wZFH9X2C": { + "balance": "1024.763903974", + "bytecode": [], + "datastore": [] + }, + "AU128q1CmKNj5nKujUQBchuvPV8msg4XyaQJYT4r5kcyJ5VsquQGQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128q2bNz9h7V1WntHUsH41jt6j3xfe5noxJxkxb1HHuXerrfPVa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU128qTraDgCTuKda1RZ2USynJU8MBzW4YAdckHjegssaUwVvyrSk": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU128quQWXQL2QuoGjhBUeStLC2K3MUCxm2HdBPaYJsEzbv3ByhX5": { + "balance": "1070.105341639", + "bytecode": [], + "datastore": [] + }, + "AU128r66T2AzcQhGUpFHw6S9TWrJHNRPyExEJL6FUEykcRAiHcb7z": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU128rCp89Xynx8y46WUYJAseZoUsLfQ5zk3YH6S7fMgWEG6Uw7WL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU128roJ68CH36wE8cn7J8ZdMM1pTDymRTC8qLzjzQKLp9pFQByVn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128ryLemum1hmMrxUNDgoLZpsYwpWsswreUHh8mZaML3bS14jxW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128sqNgX2N2eGFTdNENWHYTQdMHksgSeqapUhDXu5VoHq8f4bMb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU128szLvA7jeWTm4Vxf99uD66vGxGUUTUsVE9NsTfLwePDUmD5ZA": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU128tMcjEuNfvrnR2qm9dmzPrQSgzd1WGpwDaoBM7NYZ5zRPjaQ8": { + "balance": "3734.655767466", + "bytecode": [], + "datastore": [] + }, + "AU128uHxtvpkXKBS59v5mPn2Z5FVaJgUrDXK1UGsbqC3wbWY8Kkjk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU128uU7h1Qw37zxV4tTKgo8QWLTF5QHJZ9ZLdSsgB7zGaBDujk39": { + "balance": "539.626893862", + "bytecode": [], + "datastore": [] + }, + "AU128uVZgdHdtJAY8PNXRE9q2ufsQvsoQDXzEhA8xoQ2DGoWhRGt": { + "balance": "3193.088126942", + "bytecode": [], + "datastore": [] + }, + "AU128umgPRPUQUu6GHTpGXR9JzfNXxN6ATNHioKjjbxgKxXAeupgf": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU128uuunh7LYatMqfjUEBueQwt4MGqNhUya9dXJfwcHy6mFnAYFK": { + "balance": "2274.022283447", + "bytecode": [], + "datastore": [] + }, + "AU128uvX98wDudPP6ofEK6ZyAupWYVKU6rXf3zsEXajxGRgQRBGck": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU128v4j4Bkxio459ZuaUAXqjGcsVZKvePB7ssZsBKHEXWDTTRdGt": { + "balance": "2039.824647990", + "bytecode": [], + "datastore": [] + }, + "AU128vLCmrpVodHZ6beFv7ewZbnkc1p1ZuvoBTiEukcVRhgtiLXNB": { + "balance": "2293.708995661", + "bytecode": [], + "datastore": [] + }, + "AU128vQQRY5qzahHm8L6j6ZFECE7htbgJMXGiVH3yYovWAGdoDy1Z": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU128va7tPUq6bK61i54zyVyRxvPQmFL3yjoc2HeD5EWAmv7cqSWy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128vbNsgBs8Pc4vgTLawi2atAtq75V515FMn8p75FSAYJgfHpkW": { + "balance": "886.761539708", + "bytecode": [], + "datastore": [] + }, + "AU128vowpRnmXUVfUvCnEkU2gnvH9vekAghEVsmxwU341vqK3Y5wi": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU128vpFEc1xM3ZcnCnHkt4mjyzrKqbQ8ZAg1ZAUjnLM4irHSgLc1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU128w43kzBfPJXvAHdTiM9wey4Sg2ex2zeUHhb4qZpDK59qWgoNf": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU128wB9naxFTMvy4wZ5TJivtHCppkmvhv7zUrYQibW3YCfkVyD3b": { + "balance": "1404.611749828", + "bytecode": [], + "datastore": [] + }, + "AU128wtmafenK8HxMbB4EH3hDFJyHNP7psxT97QJ7ExTm4qidZ9Ga": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU128wucPtaECC6QPKbrevCHzbyK96XBrsuSWtZpbo277WNCXbzU4": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU128x2yM6goigkhzE9UUuWbytjXYmYGmpZg75yTxEeZA8aZka5Bp": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU128xjwsWNx9B3HjXDwjXAcCB1qmtQi5s7Bq5Kj6pMw4A79F9jPN": { + "balance": "75.082508251", + "bytecode": [], + "datastore": [] + }, + "AU128y3p4r63RCwxMYLcp5HiAQgaqKn5aVAxhGw4p1iUo9DqdmbFU": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU128yzDKib6mtuMUvPJp3q9ArCqmKXkeLbvQvQf7JhheLXWAbBv4": { + "balance": "3637.180628544", + "bytecode": [], + "datastore": [] + }, + "AU128z1Bg85EvCQBT2eTJCMX2qpDnnJ6d8irB8eKUTqiJkaq9tndc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128z2Eicu15ZzGqwdmiFBv9hp7whHXjKV8z25UEyk1KxZMXx9yp": { + "balance": "4664.310066973", + "bytecode": [], + "datastore": [] + }, + "AU128z43AnrzwGDbx9tsGB4zxT6aAZKCSsnWgYReEqjQWgvA3irtD": { + "balance": "1433.523600514", + "bytecode": [], + "datastore": [] + }, + "AU128zaqZxSqFLLoem4rQ3BG7RqvJx3Qr2sSqGccSRY3DxxXQe2B8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU128zoSmkfmAndHENEqFUbdtTjwtufFuhLdUBnHEzbohdUq6qmWA": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1291hapDj3zxXctScLn8aXr4GhZ8B7UqgJdWNxcWH3Cs51ANsnJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1291ncmDTKqnsE6SvGq8d9psA4UppTVx9mx91oN2vu6Nfm9ypmf": { + "balance": "4828.294725218", + "bytecode": [], + "datastore": [] + }, + "AU1292nPP9sLwyiN9Ynkmsdrr9GN634vPQ3DAzANkkPhDXHJVKv69": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1292srpcrG8pMFHWoU8GPG3kaMJTmUhCBNMhBmb819k8rcFMq6W": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1292uHjWzU184WH86axrZtjbSAGKbPkk1gqonNgybZ2QY2jrToG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1292xSDrVTr8VHad1YJJLUui18bRgG1vv8mHi478QNBc1ieDZAv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129357aPkLU6yWhW1ZibTg2eTW3dWS3UpnzjUQqsmBxtjz4kXP3": { + "balance": "1869.948706353", + "bytecode": [], + "datastore": [] + }, + "AU1293DcDpQobMPknFPgyFBnA3rA8FmQUHULB9qE8USXQwkjz42b3": { + "balance": "1726.463824923", + "bytecode": [], + "datastore": [] + }, + "AU1293bkKKM1i1NUceiHYLuepcwftZUR3G7h6mayUXmJyjoVgw1eF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1293timyLa4KajqUgrGvayynY8nwZb5oaaMCBm2eq8Pbf7Q1FxA": { + "balance": "4726.821394012", + "bytecode": [], + "datastore": [] + }, + "AU12945qPfVKq7DmEjdLToekqEQ8pvmGEQfYBTJyrQqQFQSKQCiMQ": { + "balance": "1391.833800122", + "bytecode": [], + "datastore": [] + }, + "AU1294Eqy5JAMQYfiqas5t75HCk2KU9aW8Brfu6LLtCJSmADx4qjm": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1294uDQc2KREGV6p3QowL6eCNf76SymepRdXNUDkbHuxSUFhM1P": { + "balance": "1711.612371898", + "bytecode": [], + "datastore": [] + }, + "AU12953ighKakqLkxy4QTqgg8vveTHem8fnTq31HrydSdJyNftfQR": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1295BNvP5yPoj8Q5sU4USn6xTkFHo8GKkbohR6zWTfuLr41nHYf": { + "balance": "974.709340684", + "bytecode": [], + "datastore": [] + }, + "AU1295DUacx2zSTiVy4EE3UMtdvh2qmdaRRBaaeKqXe1H221FuXzq": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1295KL2gNn4sFcPeeDTVrLecBPknKHvcnJvQtDNHwuUNrJZD3V6": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1295cDMRMEPzyVXkqusBgwXp5Y9vweu4tcfVSBxRUMDBqRKF1nC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1295rKrZPJ1pQhq3t5NhGuuA1maL5ErQ4gvdBKWpqjaXirFaNQA": { + "balance": "1510.189587051", + "bytecode": [], + "datastore": [] + }, + "AU1296KizQLmthbDv3C9wDp42ETQpKUC2VyjL7w1mHrapzp8etfGJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1296mGb1y5viysm8RVUYnRpSDt9fY2MpQxV64XtLWJPNjPNA2st": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1296v9nwM2YchPrmToo3B9MioCrPtzLBkzJjbzFeeCgfpRws3m": { + "balance": "3812.031551429", + "bytecode": [], + "datastore": [] + }, + "AU12971xzgyxE6QWY3vvFX89c4SeXwi2ifcw8bYrwU5xaQeoCPHxA": { + "balance": "2273.240723500", + "bytecode": [], + "datastore": [] + }, + "AU1297tYn1fRsJrRsfBgw8CNuE11FLkAae53rGnVVXjZvc6SJoaCE": { + "balance": "2243.011977720", + "bytecode": [], + "datastore": [] + }, + "AU1297xpw6d2FwwqzxzH3Upfa7hyhNzatAqKXRk7fDTLpT3xdRr2G": { + "balance": "795.541075365", + "bytecode": [], + "datastore": [] + }, + "AU1298HfaYG8f84fuEN3TmWP4VSKFfXVHFuveYSpEiJPiZVwsX6KK": { + "balance": "1221.413488376", + "bytecode": [], + "datastore": [] + }, + "AU1298HqxenQvie6yqgPTt4Ww85eaE7HLr9KkzczfumUee6KWhECc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1298XyAHowNkvq3WUnDvJmxZRjPidTq4dPtiH8fgMrhSX44F4pV": { + "balance": "2215.244213750", + "bytecode": [], + "datastore": [] + }, + "AU1298ZSVqww4iWH7uF4Jm8LSXwyrzFhCN2t5T5K28sXaX7rD4WDJ": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1298hEGiE7HFiMrMJ68SEMKDJCU9KDFHxt9THF5E6KE1eSVk4Ao": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12995EZYk8xQA1BkAPyV7VpgLyLC89vh3Vnr5x2RJ3tq7VguCRy": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1299ESPZ5DLuMEBqg8kHYkgo4v8sidinpFQQxDFky7wvV1JUuHk": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU129BbrqTgFGzKb3ocQdxMB8HrqKzbVzjSTT5rdCdFd5wv1Z8kJc": { + "balance": "6315.724718431", + "bytecode": [], + "datastore": [] + }, + "AU129BmwgtuvBRCmQmVf9jqtDWqfkg1WdFiouX8z7Sp7NyFzZdSYC": { + "balance": "928.542667800", + "bytecode": [], + "datastore": [] + }, + "AU129D42zNshRTivzNdnZHonoJxWcqLCvXYcNrVU92hFLtjFYfQjG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129E4MUxNz8QukZBSwR8ZAPUmVx5XrKDX7udxz9MxDmBXPNaRZN": { + "balance": "1476.082545401", + "bytecode": [], + "datastore": [] + }, + "AU129E5RLry9ffwsWnDTxEst3eUcppgFvzbQDahiBBPwtFxzNtt4z": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU129E8sntauYwFsqrZAkFre7tmFASseFF3GCqbNzZkfpkbwdcCfn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129EUuSYZTZxoF5XY4yMYRMnNhPrtRZwTCtViXq3NC8VZ7kHhak": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129Emqm3pGm1YNNeWuHt8jKeWN5AZNufv4KCfJSMhNUXSdKkd4k": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129FXTwbWbVPhGaQjs78eEtTmz3DMEGfaQSLZRpAWAL3QspUbWN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129FZQ6esEQP7nabd1YrBcrQ5MUNyesJT9vqz6oWa7TGPHPq9gY": { + "balance": "1161.198701592", + "bytecode": [], + "datastore": [] + }, + "AU129GL2NpV4UEam6LmNRtJuyKW8Zo3QcwbfASTM9iDKrb2iLUjfj": { + "balance": "1947.785552967", + "bytecode": [], + "datastore": [] + }, + "AU129GQLcoe34WzD1QALcxbYwdUdR3pZfrbw3GQE3ZW7Y8onbXraa": { + "balance": "77.613933057", + "bytecode": [], + "datastore": [] + }, + "AU129HMpmVhv8MA5zTPPJvuUPLfZCCitDdjTuZsnHnqYrUmC3gq19": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU129HS5rQvBu6iHNN2fQRis26HWr1AYS2yWK5r3isvTT9mXcQuoq": { + "balance": "2783.452069396", + "bytecode": [], + "datastore": [] + }, + "AU129HgVrcAm7DSJvskENmnRxFGyEsQSoj46FHMqSYnTyWqw8h8fd": { + "balance": "185.327664139", + "bytecode": [], + "datastore": [] + }, + "AU129HnpAYeyHvCnHHCqdSExkZyNWkMpkRk6XRJegseeoPYgMiEWE": { + "balance": "1687.596826990", + "bytecode": [], + "datastore": [] + }, + "AU129HtU6vNWyzUzEAihtUNARUScazVFdW8WvDzEu4qqJPikAKo9c": { + "balance": "1452.496746916", + "bytecode": [], + "datastore": [] + }, + "AU129J9x4vUeezRoxNss25muQVo5YcHeoqTXKQDULBuM26DRY5huD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU129JF2Mg8HjCDMAhLVgoQtAjP6pbMpPewRzsvStVH4VuYKo9V5v": { + "balance": "3933.493285859", + "bytecode": [], + "datastore": [] + }, + "AU129JPtBzsLmZQz1QHoDKwCnFWtz33D5PZUkkgb4XVe17GE7Risd": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU129JWQ9UfrXXcz67B4AxsaBopwCjs5AMzaoVxPD8wTXogpMYN6x": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU129KT37GTzoTiD7dQPbSxbNB4XmA95VXVgwAWuuP8TCmuvEncEU": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU129KcpsiGG3mVZNcE1RgYd99HG9DfGfMAevhNkqqkWEY24Rve6E": { + "balance": "1620.700900829", + "bytecode": [], + "datastore": [] + }, + "AU129Kh7ydrqZgCsR15eYkAxWokui5oEaPnVxiyDiNch184hMofTc": { + "balance": "1083.226637573", + "bytecode": [], + "datastore": [] + }, + "AU129LSAj6cGqPjNyVKQnZpvm3AxMXzCDFjxfTF9ecVX6ksLb6FUY": { + "balance": "1297.970166869", + "bytecode": [], + "datastore": [] + }, + "AU129MBDBvRRuBBKerykMcS4QhJuRumh2Ug4vQpL9Kze5A5fE7qjh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129MZGiEFR4KBZoGGZe2EpUxaDf1V3EDDDGRKHJzceQTD2BdNCg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129MkCzgvT383Y9kXvQ21ikCCP7J46vQ1ci6iyE3E3nB9FAMxZ4": { + "balance": "610.609818128", + "bytecode": [], + "datastore": [] + }, + "AU129MwmNVVohiAE6BKqY5PDUxppotjqeCKGfZxuxigiUm41CcPX6": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU129NACohFQWJnDVS7AKv9pvGSDYuJcYXvFGoSkNRnWnJn2nHDBv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129NAvbwdHso3Fpn1ZawUCB8WSqBkzJq7jwLQid1AjCZMLRdoQn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU129NVewmPviffQqkpoPd8RkCvp9exYz39h2Vd91RzYo9wJCXEBw": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU129NdSjDrRMtKUejQfrck2hjnUCoepdGkG8HypPrLgPb9YLLAJc": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU129NfnDhSfEA3DpHJtsEAMind2SUp68DoE6ys8GC59mitCQeKaM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129NiEQAw4My1Q9WkCLDB46JrRgiRMNe5QQV5xmK3gGZe61QeW9": { + "balance": "2548.054273574", + "bytecode": [], + "datastore": [] + }, + "AU129NiHKNwHRQAAHUnVpM38JQY8HW6a7qSuFA7T2BVYg6uwNa5vz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129P3okWiwrZQT87mQzMMWgrA6Y1baQxLf3ZfjdksK6Drratv2i": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU129P7SBfsRBE643SRr7SE4MimnaowdFUvb6dLe4AMrTrYnWEKck": { + "balance": "3252.434746424", + "bytecode": [], + "datastore": [] + }, + "AU129PynvdWWZteDBHBBdHhBRnPSkNnJXbdPmyWdpCdQ8AE1NtcVh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129QA9CmfbxVGo1vMhyPebGJcKpokf57NTn9oURJ15XEnnF5oq4": { + "balance": "1231.676074391", + "bytecode": [], + "datastore": [] + }, + "AU129Qcq5cjX715X1PFZuEPR3tqa9vwGLy6vyUnLYZkecLEvgwi4U": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU129Qwdk1rcfzFSim59r6yuDKWQ5VZwUKPCT9dfxvAEbHqQiwGPn": { + "balance": "1866.485459755", + "bytecode": [], + "datastore": [] + }, + "AU129RCFJH1p9PnjW6RTBxShAZGP5VryQCUedaZjcoZmePxEhPocJ": { + "balance": "1075.834860566", + "bytecode": [], + "datastore": [] + }, + "AU129RU1ELFnJBK7ZWKGDfgJGTM5YKn7SpnAa3E3PpRFvrXBivYVw": { + "balance": "2152.375286415", + "bytecode": [], + "datastore": [] + }, + "AU129ReMj4NcKUbPb622BCifJ3kdgEdEET9YkhRouzEYPeqn11hev": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129RvVVvAnKLk6AjLLJpMefLeXFoCoqhEMBE1AnJpPkP3d8TFAF": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU129Rzj8hEnhvQSKwy6xMVkQN87oYumXCQWonp5gZtKgoSFFahP1": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU129SLoabHQ587y3kZayTdivfEoKfaXbe66A8Xw8JF49Mw4ykXYr": { + "balance": "1058.957819451", + "bytecode": [], + "datastore": [] + }, + "AU129SUoiCgdFewvcYUnzaY6Sae5VwmJ5YrKHtbHweqkt7vzkxL6v": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU129TLoMsaVxtYjmDddqJHnB236T5gcPt3WgtzeJ5LUwhc3AAKz9": { + "balance": "1180.246827249", + "bytecode": [], + "datastore": [] + }, + "AU129TxLjEfDSvNj3k6BDUphi9NJmnihFLJqp2p3SPiL12iUB5roC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129UCFHieWPi5YU3kCTvRdnB55bDRa38B7pg6BPXLV556tPYVBB": { + "balance": "2334.941531540", + "bytecode": [], + "datastore": [] + }, + "AU129USYkvUGqdE3ARoByKuYv7YGeHDeg9Ctwth3Jr9AnaF1VKhve": { + "balance": "2414.685408396", + "bytecode": [], + "datastore": [] + }, + "AU129UyBiiWaf9UPmwyzxxXNfcSuq2AAUrUCPvXw5vs3JjKYN8gSJ": { + "balance": "868.115475795", + "bytecode": [], + "datastore": [] + }, + "AU129V28edLMubKMS1K6q2xUe3cWM9wPVqk36MmCHrAcfoYhZNS1J": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU129VJLEBzj1Yz7DHjf4BZ3QZNjx7rRYuUyYsLqvEayiGacnQYvd": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129VTbxjf2vYrUfPeW6PGqa1SDBYvb5WZCgYoAud97J49xmn38L": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU129VjNiggoCkTJ37tyRhUNAj63VqAyF1poxCUKCMHYkssBn9LuQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129Vm23J3dMLFfJ5yYbVYwaBRyDtnVWxYbAXE3HSMaxYF6CWsp4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU129WHKK6fCoUjZaHwpW7qCXByZU5ZNweJxEsA3hFJAji8KNJ1xf": { + "balance": "838.444968311", + "bytecode": [], + "datastore": [] + }, + "AU129WRaiBjeoxnfjxt1YU3hV495HKqZEEC9TzNdFzUfsBALFDRUE": { + "balance": "529.116880970", + "bytecode": [], + "datastore": [] + }, + "AU129WgueCmCwm9CHASNNb3KxMkgy2i4FFXXukefqQVXeAznR1NtZ": { + "balance": "813.555866613", + "bytecode": [], + "datastore": [] + }, + "AU129WhcJYotPnEujUxR6h4Uv2MaKc7fAvQvdSn2gPftC5uvrwDWu": { + "balance": "1908.877675042", + "bytecode": [], + "datastore": [] + }, + "AU129WvNXxNbFBSJrp2VvtumxFDdffovf42VCeKrDn7PTptFxrSLU": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU129XbXrpFw56emriYvCQDVKhRnCd4ButPgV4s7ub4xX3E6Nr9vX": { + "balance": "557.727329694", + "bytecode": [], + "datastore": [] + }, + "AU129Xh3Z2dLTebSAGi3kbkfCkorkeggohL2ThPmJWq2tLjceXUXd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU129XkaUD6R7bgPXo43Q6Cz6FPDyYCMZ8eFmf3tVYtppKsQbDEeN": { + "balance": "3032.556637652", + "bytecode": [], + "datastore": [] + }, + "AU129XqbagGaxVsDWheFHz6yaPyG3MwpFeoLBcpx4ResbG6e32GXg": { + "balance": "1302.936683781", + "bytecode": [], + "datastore": [] + }, + "AU129Xye6EgyMteREaGai4waMJea8uD2fjGr19LzqBMnPrrwWjbtR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129YAKL5m953ZcCDtLUHVh3uiwz8acffns1Dn7oJpsVdseF6wNd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129YegFxkyMASTFCbRTbdXYJezt7XCf2cxSgtbwWHr4cBsibjiM": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU129YhKdMzGvYipyAcTgdNDd23PW2mrqttLLogmMwjEHrtk4rs4b": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129YmQahqgoa7RaupqqFkwdkm1hELtiRJSGAtpZqQpikiLvTPjM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129ZDPgos5Qn7ZR7aeZtdjqNdBPGYuD5kiYdKUxqQg4B2pYTxgP": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU129ZEJRkEQiRFS6EYHZ71khKELi2Cncs4gr1r5aQBX92xTCymqb": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129a6Vt7pWXfbSD6EbcxsakUwpi1WTzdjPQvuGwyKKhe3wxNHcU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129aLMoK4n6FsvvKQELw8oancrNyA3t7awHDH9otQAfyE7e4Pvp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129aiLLqkUbPf9gatnrseSzRte2SoKKytBE5QBfiAKWBS28ny6U": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129bfTrQhW4soyazV3sdNo4HYPMaXkxCHs8jU8h6xB8bn7eSNBv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU129bm6FpezfsYhUR9peSYTi4b7KUq2raFDTK8JJFuWV7A2grJsm": { + "balance": "921.152647955", + "bytecode": [], + "datastore": [] + }, + "AU129c6hYAmKpXcG2vM11gB8EwrxTS6FSPoEu79n6BATWeeM36bmU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129cNNoNnwXPuiwwmamCSuXCfQgknV3LJgPmagjyahsYDovnip6": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU129cQoCw79hngSTaZJieViPydb8NQTCf7ipvhbAQKiVEymz3vnT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129d5MTGZmrSxmFiDgRkrFxHYmvNcrCd7TmtbRPkz7LXq4BY3RH": { + "balance": "2897.296356885", + "bytecode": [], + "datastore": [] + }, + "AU129dMEhcX2Gpd6mNJWE9QLRnSJpwYnTFvrr22ir4uuT3ixBczNX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129dt5V9sPfXvCxy2YCBr7a1sFautf9bnp6YP9P9DhfUFitTi2G": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129dw5QKKdT3bguppUrxLK9EShrYH2uoAhDBhtTPRoRaqfEpUG7": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU129e2KJ9mpJMyv4bVvqAAwQw5kN3R6oK2A44MTzGGQfiw5Nmxnx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129e7QGskqkMgZrDQ8H3TXypbE1XmM2DFPUZYCttkET63cBA3rF": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU129eZEA1QorCQWZHt4YeUXZ6bBugR8F88dBxBoqjX6aZceA4B1L": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129ebXRmo2mfmA2UuMRohQQQ9n2Suyikvf6YRFrWRVHhJq2yCs3": { + "balance": "1654.751777777", + "bytecode": [], + "datastore": [] + }, + "AU129egauHMQ6H81o4pU5R3PBx3nvbqX7sdwSBUWadZeQWpXSZSUt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129ehvcKANwBbhaQUC7oeFogBv2jCvJJGyQnYS12YZueq3N58wZ": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU129f1ycoq1ZeKFUfEHDZjcjdywwNthCHkyb5E6EFhFbX8DoNHJg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU129fHJv51HaK2NAuZM4e2sFtiSWtnPerzzyvmLr4CUZVAHGpcLB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129fQaRBMjUi9RZNKigKo8kCd1mcNL9pDzr6opZBmygWVJQN1KH": { + "balance": "1391.270899006", + "bytecode": [], + "datastore": [] + }, + "AU129ffySbTL6thXchihJJtCe5gxgpRMRaqS6KjheP8CNAaW6NHzj": { + "balance": "1372.762785132", + "bytecode": [], + "datastore": [] + }, + "AU129fnqk4NrXgegt3nP37Qzu1HeJ6Nd8ujbsFNTHXE28Zx7QSsjU": { + "balance": "695.685843807", + "bytecode": [], + "datastore": [] + }, + "AU129fxQ3dUhsMYzMVQnQkse4qoUg9QjFmmosXeA4embXow5DE337": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU129gSCsZGJLm8E9JxVo2Ysb4ATVTLJHEH9FDda33oHuJ3KkVfcT": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU129gou2ZZLSN9NHBVyJns4Neg2UqKzxmzth5cw6dJa9QLF2YzAY": { + "balance": "902.533252152", + "bytecode": [], + "datastore": [] + }, + "AU129gz5rDLZAcnrWDSYMaKyWgwYRxNEcd5MYiQwXhgrsb8g4V3jY": { + "balance": "2764.753273719", + "bytecode": [], + "datastore": [] + }, + "AU129hERtFEiM9412FGqz9sCawV5rDvM8WAxjFuyVTVStr5Bz6YRX": { + "balance": "1357.193118472", + "bytecode": [], + "datastore": [] + }, + "AU129hGTkFnxoZSHjTp6bgMLCPXCMW7kvUsmHyLdxTuXjarziEuau": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129hN6ao4uw47eFTwM6Y2gyTKpJp4D22tuM6GnZ67qKqsSJRp7d": { + "balance": "2577.856793718", + "bytecode": [], + "datastore": [] + }, + "AU129hbM3bKKpT84YFKDfn8uSQo8vCbFCxPwD9HpLiADfTw2KbGCQ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129hhu5kG3fM2Se9PFQtrZbCkh61zq3LW4VD7A6RozUdJKZsyXP": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU129hp9rxSZZub2MPaePMjjHAdpjRBFtNE2fshZqSkp5aGjS4LEQ": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU129hqgPeqmBvJkqYVp3tDZfH8s9ocYkJv8ugnHBEHdRufPfs3DL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129htAiHhEnAUA4i6gAhJngLsJfEzU1vM1c7QPh764Dqci7FzTD": { + "balance": "237.932756475", + "bytecode": [], + "datastore": [] + }, + "AU129hxuxRmE85ndPa13Fwh3kFzW49UePzaxGsLt1Vmqj2XAmooTP": { + "balance": "599.375222367", + "bytecode": [], + "datastore": [] + }, + "AU129hyB6jwh3Lx3qY1mkmGp99RzBdn3pEWPgmTA3hQQmWqduCkpV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU129i3wNBgFGRbuPJAsNsxchbCNJBSUYWAA4ML6Qs6FiN3SJgfXs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129iBaRGiL1dkmpK2eYZPFRGfiTkpmr5tuNUPBhGqT7Qp31FReK": { + "balance": "3478.909100920", + "bytecode": [], + "datastore": [] + }, + "AU129iJgQgWC2xZm8A313FKvyK3iqfvHpMoQpaKN4uWCNjgbPpYw8": { + "balance": "1608.959574936", + "bytecode": [], + "datastore": [] + }, + "AU129iN7vmahCLf16VyoWq8mjGLBbCNaJG7dsCnRxK9ZGrBJBw99D": { + "balance": "1438.935590170", + "bytecode": [], + "datastore": [] + }, + "AU129ikkb15Pa7K1be6AGCL4QzgK81Z5uiS6kjzaNRFxwG7w6NKx7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129j1ksS1ngF8pyVdMfssZmDViXiGtSGSFdefuwpeuuV8XS7tKF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129j4aLNgYTqNn2RBp5mUSsFY1YMydT2JjgiieNX2Askb74aERp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129j4hLa2SSQKcdTJHs52T3Rmz54SPBsaNbWjfEPxACBP7Hv2zc": { + "balance": "1646.838243214", + "bytecode": [], + "datastore": [] + }, + "AU129kFH4p3J3JHf1jvJgHFwbAx8KAx1pAeY4dUpXmiyYVA9THzGc": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU129kQwjt9iBc9auegUbJW1ZjEePSoBMFtWXuHxo9ZunmHyA5woy": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU129kRxoULxJka93DeHoUvdqTXVJ2GXZN9A662SpsdQPzg1BG9VF": { + "balance": "28.856877425", + "bytecode": [], + "datastore": [] + }, + "AU129koYvWgixf3c5x1Us4zuKPXvzpYg2u62o6HthEysxPiymFBnU": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU129m58ndhErGSRDZroUfWmr6UWduv1xQ5Dn2scEHua7Nor8XDzJ": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU129maCN3J1DCvqkq6pQL6TdodGPi3SSHhhm1Yggbc74ecMDBEQV": { + "balance": "1285.047175480", + "bytecode": [], + "datastore": [] + }, + "AU129meWPTzUHPdctFjqjnii1cdbDgvEHsRvwjWYzW2GX8yMPVbyv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU129mpb8dNADj8XtYQ5Zp2mjf97hkMzpXhWjHZiC5LJSXPowBAFN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129mr1cGcWhVqsJEs9CH8mVvCbF68847VeNVPC5Q9yHV33Qgf3c": { + "balance": "257.208797942", + "bytecode": [], + "datastore": [] + }, + "AU129mwE5PfZeBmTtAUnZPb4gFRwHxCfiTaaWdH9LCgwDQ9q3WQ74": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129n2712SNsXDeAPFDLYRqXv1LHvrwoAjgcQpC7LxUcNtPi5tae": { + "balance": "1469.380980785", + "bytecode": [], + "datastore": [] + }, + "AU129nccKqDBZVXCMJVWg6DnVrHuZmYrxsdZoradRm8QSwTvCf7i4": { + "balance": "73.488941728", + "bytecode": [], + "datastore": [] + }, + "AU129ocq9uRmAqKqGgcrHdNfnMTyM5rs5BWsy7aFtdtMRpppuZTSX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU129pRDZWYjmVwAHuhAbSrzRFs7AiTSUXEB5RC8mJhtkyRQb6ewv": { + "balance": "1434.542680640", + "bytecode": [], + "datastore": [] + }, + "AU129pXbonqMuHFNHggvmr4JWpngfek7WUQUCfiqHj4ykbVAyLNaj": { + "balance": "1780.247743001", + "bytecode": [], + "datastore": [] + }, + "AU129pkBume21DD5mYcAKLpZTLSrGm2KyUySMjW9o4muAAtPYDG2q": { + "balance": "1680.478783059", + "bytecode": [], + "datastore": [] + }, + "AU129psFEiaVu1TG7K9FK38zy3gCz2qJq4Wqb7YbGp1Cgft3wAnHp": { + "balance": "2560.947832959", + "bytecode": [], + "datastore": [] + }, + "AU129q5sZf4eT5JGY968STBoz4iuRWPhVaYRjE68dKQ3qUziFNKp8": { + "balance": "3489.598624058", + "bytecode": [], + "datastore": [] + }, + "AU129qBQhouw2jhsPjB2TE4vPzjhzcmyi6cxR2EYEZ3TXoR1pPGG6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129qK1fKTprRex3n18DSyLuEVQicD7cay3wZZSrZTK1o6FnxTet": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU129qT8yKxPz8Vd7SsPAc12KAxUc3A1LdkBcCEWSTo22mr5p75KA": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU129qfat1D8bsSQ2nd8KxkJyYiXZYfnHyk1XYoeZeWxGT1TmoZy7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU129qmVUm2Kivb5HLBx2QSPyTCNruUJav7DC7djZpDeGiNGLbs6B": { + "balance": "3691.937025982", + "bytecode": [], + "datastore": [] + }, + "AU129quP2EeeuDkAdQXBTNy1QVGCAz1HhxCVnqYd9y126nFxiYPfz": { + "balance": "1155.274007467", + "bytecode": [], + "datastore": [] + }, + "AU129r1H8SAvzgAvZ5d7CcefFSS51NGaftFvn1h2TNpd8WjokSBBB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129rMc5MsfmzWGWzsrP7NsyAhnQAH4LmBCsaZcrvdKjqU6mAASK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129rVrTWJE3385CKhJrSAGgAZzXRbaj2QZxVMW9jpCinX4z3BgC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129rhBEs7u1dgGNp4XFkddJMKPSkzUbDXqGvWx8fgG8muFaMur": { + "balance": "4880.120367776", + "bytecode": [], + "datastore": [] + }, + "AU129rwYpzwkgZgXN8D5tqFGKUQhs8dgzxSJigcDnJgL5VbzESR8m": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129sLxakrx5rQbVPfM38BTHH13s62DP4VGa5iB2ghyeAhcaLj7u": { + "balance": "913.401945035", + "bytecode": [], + "datastore": [] + }, + "AU129sQMhJ8HuoDkVbhXBgCsRUDjrUST7L4LbEgzD2PKFa3kMQQ5L": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU129sZxB9TV43zAcZmUSJtA2QVEwu427Q5VhL85VAKPaWWXb1QSQ": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU129tBEntYKvoMbrGPXz4T1RDQ88t38H9jV9Fz4bFhYQgXnNyrhB": { + "balance": "2785.762128452", + "bytecode": [], + "datastore": [] + }, + "AU129tk5Qhsciig9NuHcy155G6DyJ25GfBM9CmfJ23WUhoDeZedQx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU129uM7rur6yWurN3pRFvgmhT5QkhKnMLNB9XvSMVoLKQhGK8cck": { + "balance": "1458.322594652", + "bytecode": [], + "datastore": [] + }, + "AU129uZPDQwyJAKnfRXR1ZTJriGwshGmQPTYs2d5fpC5bP6LFbH8Q": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129unSSK1fWyaUva3vr8zQi59c5bhHFDsphxu1PeMeE3YNhkADk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129urBLPxomCNFwgJUnDGARu5b1JSJkkvFotYvW3e7QHgzXKsHa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129vA68BCxvVn3xM5M8QnaK2a8GQFBZi4VMGzJzH1HbqrpJvWts": { + "balance": "785.646704872", + "bytecode": [], + "datastore": [] + }, + "AU129vHJeqfrDdyvBju3ZKz5WDUgtNYBjYL3ADJm3gBWC2JybGLE4": { + "balance": "1341.660663915", + "bytecode": [], + "datastore": [] + }, + "AU129vTunpbi2NTrvsyG6dmCxTFsg61GbR2qCdQqUusA5RmLt2pD8": { + "balance": "641.284824204", + "bytecode": [], + "datastore": [] + }, + "AU129vUSZMmzWEVEbKbRfm4PNdp7LM9DoWWqZgJ4nMZSC5ZS9KZX3": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU129vuo3PkbLduoLoz3qFYXUCj3yS9cLq6rGhAbLpSRAQUF4hAfK": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU129wJASLd9J2EgtyPuiKbQw6X35WpRmMACVEVJch3jHF5M73L6f": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU129wPTuNsTjUfkd619EQewke12LhdEasP1oCnshUMzGVt3gQbr7": { + "balance": "3073.053156830", + "bytecode": [], + "datastore": [] + }, + "AU129wwkr5ssBr1YeaseW77AYhCcCMoKCKyCyVa1oPnWUDJe8LQdL": { + "balance": "1339.078642703", + "bytecode": [], + "datastore": [] + }, + "AU129xeVREVg4oqiozVnwqS1sonKAVK8ZG5pcRadxop37BJZekdyY": { + "balance": "2829.918332938", + "bytecode": [], + "datastore": [] + }, + "AU129xkfdV2potdCDEpsxkANB67B5SHb7PKtXv5EhoSzESoN6k2ci": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129xxBRyy9KDD23cy4iREPrLVDNYP5HuECpKEiKuWYv85He1X6E": { + "balance": "6613.628036539", + "bytecode": [], + "datastore": [] + }, + "AU129y3gwJw8w8bMLh6dqZZGZoTyWUHt7HueRgp68V7x9eV3TGrq6": { + "balance": "1960.039097383", + "bytecode": [], + "datastore": [] + }, + "AU129y3kXPceRPCn8dkjfqzKTecsZz9qR2GmLyhZXcFq4eU36fper": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU129y8hCLyTCoiTw3T91b2R2UM8Y67Z1mZCeDXLrRSFfuXgXB47S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU129yKU6czih472SiJV5Mmso46EoEZ1kT3KAeDmcGUgBCG2nhxZN": { + "balance": "987.196178571", + "bytecode": [], + "datastore": [] + }, + "AU129yfjt1RsXCGxZpHXaPy5SBPaCV9n8XJJoz8ggpfkjWpEFqkJT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU129yhcdssk7EHtVLC4YPjAS7swVkamvXuzKGgmqcrcGLzwnZMgs": { + "balance": "553.793278323", + "bytecode": [], + "datastore": [] + }, + "AU129ytpCWnsUDtraoqm8CzTt1DGEgi3V4GnhfCVAqvCpYwF3CPxr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU129z6Pr4mFQfbsih6ik4D1MggnF9yjFQtPHeDM4SdBVTtv4aaxX": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12A1EXuEtzFSrQngroSYBVirLzUAKSWG8wBuTgLMxYmjFWLmaGL": { + "balance": "36.135618376", + "bytecode": [], + "datastore": [] + }, + "AU12A1H3Nx32jtUoeduXp8qVSFx5J45Q6p7fwgHb4c63Yqfm4DPZG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12A1Nq1GRJbjPbYf58kN8UGUfokXDwfj9m6GhQeCh3t5Rkh2WCT": { + "balance": "2328.168529874", + "bytecode": [], + "datastore": [] + }, + "AU12A1ZC8nZ738kqZg4D6WDzcqaxiKsm78BQmsHgzLVSBnVKheQM": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12A1rFSyrusTd4jkKMKW6XY86BedncqLu7pntkAWQFeipsfoCf8": { + "balance": "265.019312902", + "bytecode": [], + "datastore": [] + }, + "AU12A2PTnrvE3ZYff6c2AKFCdaxa18B4LixxeWSj4vr4s1Nn8jXnz": { + "balance": "4043.385092957", + "bytecode": [], + "datastore": [] + }, + "AU12A2S8iscxtvAHJo657tDauQ7kmczfma72EatkVsx6NAQD7QvWP": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU12A2dqJKnHoK7KY9XUY1xmtuU7RL9CK7RCD2ujBJU8wXYWJzdd1": { + "balance": "676.404019594", + "bytecode": [], + "datastore": [] + }, + "AU12A2k4kyyWzVgg3ENCUyFLsXmnwQ83gM4NUmTkzhsZ47PnPjwNV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12A2rMM1DfKTyVYm4QwWtaPMmzZUXbFcKzEfkmwk8abdRYCAWvH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12A34z92VtoftXkvn1sr8aCx7EmtNCTGgogtR14wP6582XZnwZG": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12A3MpMzqREfH6SNhfWbPtybjDkMBeXGTRn69P57goC3Lww5DPw": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12A3NcNoPD5CiuRdXpq3f6GZHP8kUPZXq5bkyqMTk17LETa1ryn": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12A3d1M6FGMi1aebavw2C59kWvbtSNPUNvSm2hxG99zHuQSYQtU": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12A3odAmC6EPWTADBEW5DQek16WVNv7yQxDAZM3ZAscVorbK1Xr": { + "balance": "1329.895454897", + "bytecode": [], + "datastore": [] + }, + "AU12A47DGsuPYJnD5NwuWDaiFEyksXe7JkYTPtKjTvQbWFeg32yMY": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12A4QDB7V5KYYfP5fyAgeTCKSN8TEKVoS39NoTEZCiRP7kVLWQG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12A4aDkZghWeqJ71F4Xgu8AQjFA44Bs79w8r8221WMFjKjPjijp": { + "balance": "2144.291749235", + "bytecode": [], + "datastore": [] + }, + "AU12A4oFpDTEridc8Qnz3nwM8yWB5DqWNyuEAEYuMppP5iLWtxq2s": { + "balance": "910.506555035", + "bytecode": [], + "datastore": [] + }, + "AU12A51jwALwBoccvF2wxoK1ZmmFMoEDgWj8nJqfCp4zN2gv7mP9j": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12A5UVpzMqBieamDRa9Q987XZ3pLgyUYUhxN6FcFQgJ9cnzmACD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12A5bCkJngs6CbqXmaU2rfNp7b3mvURWQ9u5khsmDqcSDrEeSW6": { + "balance": "1468.895707167", + "bytecode": [], + "datastore": [] + }, + "AU12A5ioXs1m3VNAGZT49kj34amMY6Pcjqqz5dcPe3mZZUEpHBDeg": { + "balance": "35.743618929", + "bytecode": [], + "datastore": [] + }, + "AU12A5xSEJb4HqaExXyxQ9WG8MR3n6qxYMc6MoMXUTHgYz5aV3hY4": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12A682Vd6TV4MeL1qSJd7QZeMZd4hfoL1KYWBTjrn97QDB64D6P": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12A6gHee9yJEfr7rey496HM319Dqb46BFjqZytPN1LMEkr9NDLg": { + "balance": "2335.031932602", + "bytecode": [], + "datastore": [] + }, + "AU12A6nwFHgGLioGFYzRq4MtZkFCrn4TknxzLRenfvhy3Crag1UFx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12A6rJ9e4dvudyxPovqGetcGHyHXni4bz7sRj5EYqqmMX5izV6x": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12A6vWxoPWKCW6sAiiHaZ5e7HXebfPnixH79dPxDM2rsZ2rvK9o": { + "balance": "3040.364266385", + "bytecode": [], + "datastore": [] + }, + "AU12A7MhRYRksgQgSj1536NxwmoLU3ZcWGyhZmSapFL1oCY9t7AVV": { + "balance": "1491.439930304", + "bytecode": [], + "datastore": [] + }, + "AU12A7VBfXgWZ1M9vWFgWfPcjBR3HusQ8LfgT4tfUGfBnZ2v1onCX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12A856m7dkvN6E2aJPsz8KasSgDMD4LiqaorFZVAD3yh217h86P": { + "balance": "1506.267728198", + "bytecode": [], + "datastore": [] + }, + "AU12A8YNNVx6vapUctdVWZzjp7Vn4eq6rd4YRAnSUZr2fAb72XXu1": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12A8mfgQRqMcB5qFwLpdPj75rt8qLKAyiedixo8X4LQCibnjvdj": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12A99YnRvUHkGrVufdP7j9Xc8cpWtoigh7omp7HUrXYsDLU6URf": { + "balance": "196.702585853", + "bytecode": [], + "datastore": [] + }, + "AU12A9oUfTYBYkFGQCLp8Snjg8GsLiCiyJk7xoFYyB2jYCgCgRjCg": { + "balance": "2680.604127319", + "bytecode": [], + "datastore": [] + }, + "AU12A9uHpKf3ryfiWgm9CrtDGbAqRXc7G9vhArvv5UAHNhJVdhToL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12A9uzAKUS67JjwNkv3EA38ENnqVSSvDy2RQ7Tpi8kirHqzDrfZ": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU12AA1etNncgD3vKuvms4NJoeA8EnHR3RaQ7ipKtPQVtu5BjvQGu": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12AA5scPbNnRUwqmvw2zsi1kvNV2DPxuAEXsL681Zcq5bWRHYrn": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU12AANdxCvY6Lmr8QCuXrZujwxPTSSjFeH98arjoLVw2Kp9GQXC1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AAbyUVf5MR23zawZhdccqYMQ7xgVzxZcGTms6oWe2PNjQeBS1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AAgYoiAmD6aPpU88YLVoppCVoWSQpshzfY5fmixmkuzECo8iJ": { + "balance": "4742.968068423", + "bytecode": [], + "datastore": [] + }, + "AU12ABWTyQNHytU261TGHH7xRnUqaoCAzjDveNytPDYhrn1Ex9YKd": { + "balance": "4699.638796946", + "bytecode": [], + "datastore": [] + }, + "AU12ABbFVAhV7CrjN5P2GqP8atyUCdKxixtPmYbfKAx7mswY3PKEP": { + "balance": "774.392884292", + "bytecode": [], + "datastore": [] + }, + "AU12ABjv3xJGvkR95sGmE6oHCkLC8BWo2i3r6EwvhQWg9RiN1hhyD": { + "balance": "1880.332678234", + "bytecode": [], + "datastore": [] + }, + "AU12ACBoiuHgA6aaqDEdddK4GBxB4YV3atvcJrfTtbmQqrnHfmEut": { + "balance": "606.532306688", + "bytecode": [], + "datastore": [] + }, + "AU12ACQPkvgfSpDUVwdHQujffZ1PY3UHaiKVFGRwuxnmPGTavgtcR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ACS4nDFd4WUsVUr9zRoTdLSEozudwdtFUxQxmbb2HKFuXY7jX": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12ACrhU8KDKhwnCpbKNSFfL9NeKWKLTJtktAAMwwyqvcR4B6pQ4": { + "balance": "4381.017199391", + "bytecode": [], + "datastore": [] + }, + "AU12ADmoYpra6YGr4ZdSscFAZAz6Sy7nV2o7DUkuMV6gtrajEvbod": { + "balance": "73.066030642", + "bytecode": [], + "datastore": [] + }, + "AU12AEBZFnrLjobQEPssadZDTa2NabSxg53nAoQRRanVe7K1mFK97": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12AEET6qGJVspr4yPSUQjPvWhuWKxm18ATyRfFdkNT529eFhjik": { + "balance": "783.337555194", + "bytecode": [], + "datastore": [] + }, + "AU12AEJintxcnc71JvbBh4q8B2Br1FDNP1wgWrVH5LG3LJbm4eVZ8": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU12AEX8azfEUk6t9uQx41uMUbQmpQwk2BDpeHjHcUzK6U7vQJDi8": { + "balance": "3372.858678773", + "bytecode": [], + "datastore": [] + }, + "AU12AF9CuUKXV5URBzrJ6btaBr7UaxGzx59Smc86CshgQ7umNvZRx": { + "balance": "120000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AF9WXLo4xcpdAmjePNx5eZPHesUKrNJg9GhbB5et8qJNstUL9": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AFEk9SdpKcWBNQLmf29kV6BSh8ApHjiKSeNAac7NgQeraUS19": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12AFN2yjorL1ZAcQnWw8mhCw7DzJkLVdz975JQmZJtLzQcJYzxw": { + "balance": "1037.730247772", + "bytecode": [], + "datastore": [] + }, + "AU12AFRWDcY5GXyupEQcU2XnKMaC5yb5NYrq1nw9ZU24LyyncL2kD": { + "balance": "3877.765741848", + "bytecode": [], + "datastore": [] + }, + "AU12AFW6Cvp6cp7KQcBmrbUZtvvWBrd3Vecvnpdj7a1PFboJV33Um": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12AFiVpBTWuQvqMd4oCTCkVV9qnM83ZMKENyYoE1ye1S9bte8eA": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12AFxYHVMTpU2H5CuCkgmquJ3UNF2mK8iefiTzGESMy3jMxouwf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AG84s5Kaisj8v3gJzYQe6D5rLdM2DYnahiRhBDmGDC5x52YdH": { + "balance": "2770.218487686", + "bytecode": [], + "datastore": [] + }, + "AU12AHCzSXhyqWRAqXxg1z9XcdaBrqN2CyVRw8Zeepny9XfhuZj3i": { + "balance": "2465.338110571", + "bytecode": [], + "datastore": [] + }, + "AU12AJ73Z2QVAMFHrRwNDM323Cr8A2sTRc251o3vhmdVXDKx6StP5": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12AJefkDEYtvcLGGkCYNYT4cauM2j2xNh8QHk5VZNwxGVPcvgmq": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12AKAsCG2giz3Jg1D4nyTmU3utCXUq5WbQ9TE8vZdHtrkx9nkke": { + "balance": "606.728418998", + "bytecode": [], + "datastore": [] + }, + "AU12AKKw9y7p93HttSKvJixyTorNUhyddR2GgKqzyLei5kxcnawq4": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12AKNZ6oXNkjQRUyYV2aCgwVgHgUiQz7WVF46mNcwtjJbU2AEaT": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12AKZMJXjJGzonTXqi57egPiwqq8zPmXfJkrSamG8PESgjcUafA": { + "balance": "1412.514411171", + "bytecode": [], + "datastore": [] + }, + "AU12AKhbBq4j2tyVKiwwjjaHoGHqmjXUvEM13haK1ffFPtGbnPhEF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AKvUcTzbTxVmaKCGFm8NQFRX8WiEUw6oaat2ue7yYDYg4piSP": { + "balance": "1131.981243375", + "bytecode": [], + "datastore": [] + }, + "AU12ALbkeT3CScrCn6UTNSBm4L5QmtWmLfGNUyfHqujofisReqiqP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ALsdxuJF7sGZpdwEGzPxkZNjabyzQXq1kJYFWFtdgLrz9UURX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12AMdLs4oSnm6kp52vnSL7D59vF8q1JQXBXAWCU5N61iSVttGSN": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12AMnm5JpBayUCVkL4xo8m73WsRdFbEYCMhKQEApA9z4gdANRJc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AMpybGnebK52xGsnbbmEaBwS1vaEqCox3MLUqXZxsJnWu6Bgc": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12ANGpMzuwXKk2gTUbU2pUrehVRXKBgNLbagbRwCGAo8zQBuis9": { + "balance": "574.927698784", + "bytecode": [], + "datastore": [] + }, + "AU12ANLbfuHmTURGqjCCDgPo9iJQhs8mCSdCnMgfuamBvj5haXjxR": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12ANQjWzDtPS98u17r5efgVK94Ht1jAcT5HxEaBN8fd9uzVZGFy": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12ANnMWbg8Gg45g4JPHvwTFuB7tbabraAmhGKb5MWbxpduqenLw": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12ANt8C9wj9kkiq1Z1Z7SGLKangw7c8kzy6CcF5aY5DA1K3XKae": { + "balance": "2455.286984071", + "bytecode": [], + "datastore": [] + }, + "AU12APgaHPY9bZtPF6A1CRLGk6oEHwYpPNorUf6kfby9QwM2BrtR3": { + "balance": "2235.834204079", + "bytecode": [], + "datastore": [] + }, + "AU12ARD5vFHGwZCvexWvXQbdbqUrmTTe8wKH8xhm9hwSPL1cozzKL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ARKCCTMfbJgysimcWp97gj7NSUsuKUbTENiJdFcpa8MNKot34": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ARQg5KGTDQoHsuvhwto4kA5x6KaChBadYUqEkSQp4hg72UrPp": { + "balance": "1536.059287860", + "bytecode": [], + "datastore": [] + }, + "AU12ARqpcVgyamienPMctRNnMt3TsoRYjAT5pMKA8VqY6iwwDLUxs": { + "balance": "2339.134263302", + "bytecode": [], + "datastore": [] + }, + "AU12ARyp8JkyT4VRDP4QoHMJvcznCgrt6av2hdo5MnJ96amEA2jFs": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12AS28itYAJbr6nvJEv9TJG8mkV6ibUAjEHtV6SkrVSQmCn19Mm": { + "balance": "2913.264962026", + "bytecode": [], + "datastore": [] + }, + "AU12AS6ACspvM1B1JWr8ywxgtZ7C3h1p9wxNXmqc6wwFq2XWQnh8N": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ASYgHSP88mJ1ppYGZMjtvrpXPLTRPR12aJQ52Ht2YsyfekzDY": { + "balance": "4.292153162", + "bytecode": [], + "datastore": [] + }, + "AU12ASe1o8yBRy7JWV6D83W5wENdhefCzS5ZWwuprnbWgnouHCNcd": { + "balance": "6403.841016190", + "bytecode": [], + "datastore": [] + }, + "AU12ASfHggXZh9kMY5DMfR2mGH3eWzqtCeNzjyUrWtBvpBPk7Qn7B": { + "balance": "34.836813400", + "bytecode": [], + "datastore": [] + }, + "AU12AT1wasQYYAfM6Jn1ReXSSxLHWoczhnEPnyJoGMwH6YLpQyxCH": { + "balance": "3079.066140815", + "bytecode": [], + "datastore": [] + }, + "AU12AT8bkXQHx7AJBU5e6Zoy4jrzuEisi3LDTY5FoL3ahNkgmMR3i": { + "balance": "966.119967060", + "bytecode": [], + "datastore": [] + }, + "AU12ATDCneykgaBqKM1qNdoCJAoLgRvhJMTJkUR8zN6dHdpyVVFJ9": { + "balance": "4485.655970559", + "bytecode": [], + "datastore": [] + }, + "AU12ATRwj8v5vJczgPdLxBpemrdprBQ2sv5UfxbR4dgheHAEuW8ds": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ATxEkCaNZZN9xeeUkcRdyUxCQFjkm9xhabCgtKTkuamsbSBmQ": { + "balance": "208.960320966", + "bytecode": [], + "datastore": [] + }, + "AU12AUBLwzoLLCirAKZ4NJchA1Vz8MaMKhWsNhBpnMGbpufNvuYbd": { + "balance": "837.237585024", + "bytecode": [], + "datastore": [] + }, + "AU12AUmGr6whfZKTguTQZTnK9UHTFeWFUA3K2axYNNQ23uFmWCMuN": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12AVv54W34ZtdJYhzZsfvVEAvRfHs3sABqybAiEPSR4VF4uwJth": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12AW25x92tYnVbvmmaAGf5TjcFjmf445GAShTVLVzgaFk1qKMSu": { + "balance": "3496.001966231", + "bytecode": [], + "datastore": [] + }, + "AU12AWPJ9Aa6vj1Dg67S8do2Ytoqt9RPySTWLj4GuP4gTETkGppa2": { + "balance": "1660.495195725", + "bytecode": [], + "datastore": [] + }, + "AU12AWWbfQ9hXXHGBfto1zBr9uKEKTjwSs7bz64febv7YBmdEZBCb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AWWph52X74fKmrjhakgZBQqgq9sfgRr9oVgYg8T7iEp4DVGn7": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12AWWySaY2xESChquoavUNbp3jQy8Bk14BSdoWTLTBenGPS1cJJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AWXJwnvZdWPJvQmr46GCAwmSfSp2r1r8tNFmuaCWEs8wDGNzT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AWr5CcvExsxMWCJBEwdSYLEePqLxptNkh62mb9Gq5G2Zemgsx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AWscGYVUMaUfLPPNrsVrivv3K7DiWPBTLmExU3Xy4EFX9cg5t": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AY2HPSCnYQ5poDWZuPMXnAMR73k2V69nyQrq27KHngRXAUbwm": { + "balance": "2978.838287887", + "bytecode": [], + "datastore": [] + }, + "AU12AYBE86AKSV1sPJzKcE9Zb71s2WTGzb52UTVWtnkNS84uJcTwb": { + "balance": "4057.789367930", + "bytecode": [], + "datastore": [] + }, + "AU12AYEAEUww5kTJLF7zst1LT9wP3mhaEmdkXz4LLim6q99j8bpNm": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AYZ3o8jBHsxF3cYGtLfXzwg4fFTY6eT8qcRgWmezQhHHzdZYG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AYifoBs57j9sTaCcLj5EMYcAmK83eqFnHrMPazYxGYvHrEc2e": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12AYqky45fgzKaQjoTLrCV4cGtMs7Fne6DgLXB7HgqfG87YPwbF": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12AYqtHz68b9AKQhx1QKehGxg5eReke6bUnpkYXKpmUBudmGeqy": { + "balance": "3157.359963688", + "bytecode": [], + "datastore": [] + }, + "AU12AZQVtVnuzYwPRQWtydU74KJsTBbrR8ur5QwP7JGuh8cSiZJ5k": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU12AZS62xxC5x7nwRqJgoXVazC8soKNyA3BBKfoWQPPNetqU4oXv": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12AZaTQmHtL9nWzqCTGgPyKvNui3NHLqQ6iK2nSL8MRyHAhfGyB": { + "balance": "2510.195882231", + "bytecode": [], + "datastore": [] + }, + "AU12AZb1exL1rLvytVxZgg2wSP18UUUi4BC47uaQ28vRnsYFmc4L6": { + "balance": "869.592463482", + "bytecode": [], + "datastore": [] + }, + "AU12AZnBDZh9Xaw3Vtjbr1aZhsrjj24QvkuGip7BVLQ53ymNobfJ": { + "balance": "1917.741522134", + "bytecode": [], + "datastore": [] + }, + "AU12AZsZQj3gPetQi96BFvqSLBNErmjueoPhQyUav2yGCZZb6Bcb8": { + "balance": "845.003879759", + "bytecode": [], + "datastore": [] + }, + "AU12Aa5nfnymJRUZkL9qPFpuxaDvvBQKgb5n82aDPn5P2x9CFHqvk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12AaCdKxmkKDvcbexsnxxeyaEZAeeyKUtHRbbwEjcw9Pba7uqN3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AaT6u1VbhmvzPBdCPTqP1kNaEiwxfHthtebMiLEJXuQAz8gPC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AaXLkuaZVDWESoLN8rThhNk5yP32VRyMqdFemCDPLBJDNBQGm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AbJkzZaL13WiG8df7aGj2xYMb6ZTy5jCfTXyPXTGNWrRwvR97": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12AbypCsUEMEwd1LXPAZnfsnaUdohYxhYXBZjDEt6vjrWkee3Kz": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12AcNARPqUo1voTayYrwdWK5mkPY4JYbyD4oLVKY3tbsppBysXv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AcSz6scG2Pt7SsMTaQAw4uyXqNWkdLLFXfBd5ho6Q8Mvtpfet": { + "balance": "27.616346147", + "bytecode": [], + "datastore": [] + }, + "AU12Acd4kGWwYCqrvUsfXhD4QLYVmAgvZkyK33exj4rNe4KeW2v1C": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12AciXtggEi1AooYU3NrDwVuH4kPuoUW4Ho6KPdV9zENUcivbzG": { + "balance": "2938.252911690", + "bytecode": [], + "datastore": [] + }, + "AU12AdhdgWSV2LJeDVaxwnDcBbzHaZP6Np6q2MM186xgFY8nAekwu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AdnWXZttNNmctGPckKY2aFtJHWa4a9b6Ruxvy2VX4HgSfVJVa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AdxX1jpt6pa8Jog4s2B81uKDMCSJ6aD6xG2xXPmewh3XuRBvR": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12AeGstULHJQKzAyQGaCNg4YTWCapC5thzxFR6uk2KiyQX69k5T": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AeVWZTXBuLWJCKS7eKFR23cH8ujgcaabVQ8bjtvXiJRN6ajCg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AejUGmHDtJD6XNE3AF5EtGFhHALbAYEQTy1wR5bnSraLxLJ3A": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12AenKQDxmShdXroxpgT4zeowEzYcY6PC698Kqr82nWVsERRgyQ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12AewQTCeKpU7H9NadhvT4K8yoL1WPK7KtCFXQsDRyBhRiAihhb": { + "balance": "25.610603212", + "bytecode": [], + "datastore": [] + }, + "AU12AezPSvZCTqVZFeJXhALAmSgPD8C1k6e9FyRMrejZS8TZnW4Mp": { + "balance": "8.759785429", + "bytecode": [], + "datastore": [] + }, + "AU12Af57PspSJbfVMuYXW9nY8EBcgpWE8ggoRp6D7eS3Z6jHF1RKz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AfPaXYmQzFYzvKbUkghfRtSrdiBPwr2hYpdqGtNoF1mLA4rEN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AfQqMZDrLPjdwBPwaQBz8A7igi9YgWfnxr9S7sXv5JfDAVx55": { + "balance": "1221.011148123", + "bytecode": [], + "datastore": [] + }, + "AU12AfgYJEyDLzMQ8dCjAuUALuZ8WrkHDKjzTmoGipwQCgUARAfKq": { + "balance": "3748.771880423", + "bytecode": [], + "datastore": [] + }, + "AU12AgNrr5o2ptM9DYfgYZXz77xEHqxu46ZkQAKH4p2zGeEdBaq6x": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12AgzV2NKtZWh22hLws5p3wf381Wn5xP8nPX1iqKvZrez65Aw1D": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12AhCLNc1CT1jLtkbVnNQi2f6xK5ksK2rEixJtjkJmYbaUVFgMW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AhLoqgsiXWVWkxnbB3npwXVDvFHuMBBVKuQMSe6CLydPWgYcW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AhfvuBYcM2cYQFGSmA5hLRBktXHcDxDfrDrFUDsqvPquyT6ok": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AhvMh4o8j31yNkPuK3hLwwZEeRU6nrsooGB7Vp1e8PetUD8PS": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12AhyzTffWEa3y9jHBa8NU5rMzh4LDShQQRqVdYX9TUAPhydc8S": { + "balance": "4505.494406966", + "bytecode": [], + "datastore": [] + }, + "AU12Ai2RJEPMFaexfnSrTPeQSyu9yiLQKyni6nEt6qAhkpUHYzcVC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Ai6Z2GrpwTVfqtgiM4vmNGPzy95rCsrn5siCUpCaGRgbxhsCB": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12AiGAgExgRhEwd2iXoqWkpiQRVKnQQqa3op2pNPwgtYbPohFc7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Aih4CUABx1ZZY2JoTrZ1fYuzcxQhGK1uoUTrErsvxDarownLK": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12Aj6BYGj34G3hEiR5oZGF6sPJpDkdN6PMXSmyNYE58qwZxY3Et": { + "balance": "1473.276873158", + "bytecode": [], + "datastore": [] + }, + "AU12AjHpvpBwGCmqKxJGK4A3EHDTwkv8rR9q6t6knPDzxsBxrTXUK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12AjNrkvG6wSUmpxQCMikk6no8PooJG2GT678mE1oQFqr8rRWTT": { + "balance": "568.138040119", + "bytecode": [], + "datastore": [] + }, + "AU12AjVDNXsqnSvWGoxaMgLkhcHEFtr65to2tQhYTvcFAoy544TvG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AjecGc75EgKwT2vwzG3geM8YPeFnHdTcrXkG6mUP6wADALvE5": { + "balance": "1417.025902463", + "bytecode": [], + "datastore": [] + }, + "AU12Ajf2zPqFTHGU5DtjwxJXzdyND7zquDKzibcczNNbKW8JYqASx": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12Ajki3ULcxVLQB2BrULQ52s5yY9LzH5RSJyVGG1swHTgF3Jbt2": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU12AjorQD46dxoEGMxPRwhWRV1rDB4je5X26U7igJdFUetXbR1h9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Ak1CJC4w9jcTChv75DEwgK9MiPfoc9q1mcn9uYCDRpjQJLw5m": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12AkA19MF3kJv88YPmnuUsa7tSwpNcgH1XWc8wfw7CLFap775Yb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12AkL3kTLM454EY85LE8scQiDJxmf31jonq37fNpLMtsUfRopj6": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12AkooPfv5v5p65LNZPH4fzM7bQaYB5vdUzSrJwTaQdZoNQ2Pk1": { + "balance": "3960.214610401", + "bytecode": [], + "datastore": [] + }, + "AU12AkwyBMh8FfPTqUv66QtZeH7LC55nhgMreKnyysVK9go64YqPa": { + "balance": "1424.009110412", + "bytecode": [], + "datastore": [] + }, + "AU12AmpRaxWhiz1gHYq4Z4XVJkxVjJng71BjtdM5rK5sab45resJE": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12AmtoNW2NZh1LqgF1nceNf3nVitth4jAqw94vzqnDBSpkVbRL1": { + "balance": "4916.708876536", + "bytecode": [], + "datastore": [] + }, + "AU12AnSmhSwFtgot4bRTPt2cCawg1AhWLmSk4depa2hs85QS9XCus": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12AnaL6urxzYUXhGRwUp3TybKDq6q8vp6zBXVaHTsQMJup99Nd1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AngmMp3fqhmeLLZTqFiPVGvvT9ipLayLW5p9JupGdo8PfRNUN": { + "balance": "4921.401720510", + "bytecode": [], + "datastore": [] + }, + "AU12Anv26x5Ax2T1kHDGx2UcrN4jbWAiZqyP1po77fBxAMsUthjEo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AoBB9Bmcj2vRkxfraoU6YqWfVp8rY1QNN791DxqML8tC6qE3Y": { + "balance": "4956.238850224", + "bytecode": [], + "datastore": [] + }, + "AU12Ap3o78CJ7Er5QVpgMZXgUMsL43YQQffnYY9tMkyKRw9cbEcEC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ApQcQSN3otuVygXqp3h7F4qwHmKZhucGSeRSCZhp9L21gGuEb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ApbY7GyZ8NUQDHipvQjCnzDCJNbmFsPozrTGgwKiB69zRraGq": { + "balance": "2223.847224495", + "bytecode": [], + "datastore": [] + }, + "AU12AprsvXjbYniqD7sjXdR1Vb1uiMTiZHC8CyG8v6pwBhYJdgooF": { + "balance": "3155.190330696", + "bytecode": [], + "datastore": [] + }, + "AU12Aq6r1V7cpWtYpsqWaWWiixcb2xKypX9XjLKHRGwnQ31ybw2g7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Aq7SL8Ye4247zPpzu4HcnufhYcA5ohsCswaSDyEpUhLqR1Toh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Aq8t9cj9yhZJA1EHjez2u21MMFf5UzVxei9NcEgdB3gWLvA4K": { + "balance": "1701.210883323", + "bytecode": [], + "datastore": [] + }, + "AU12AqEkrjGt9fqc7VdYhHW4LjukYhuYULKq6hNWvgZeJBVDC1an2": { + "balance": "30000000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AqGmV8Mzb64g9vy9hhoNpvJRBcVNjo31RhjknpjciDo7AU3Q3": { + "balance": "1057.547646212", + "bytecode": [], + "datastore": [] + }, + "AU12AqPh2qB3dVufuCeQbqrX3reBa65WvdvtKTPHZ79NVfkwWLEec": { + "balance": "1768.432860440", + "bytecode": [], + "datastore": [] + }, + "AU12AqifyENG23J9qqQMtWqEqqoixdYZEAYM4tA6ajhTrzyF9tQXo": { + "balance": "749.428928595", + "bytecode": [], + "datastore": [] + }, + "AU12Ar3wThx43eNM9pXuhEmPrn2dL72g1SqfLaFVPqaFZr6o6o2nr": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12ArL5ESbeeCEnbJvSXUL4ScMaxEjgUXAPReKyf7ca82JpVrxBX": { + "balance": "1806.296025328", + "bytecode": [], + "datastore": [] + }, + "AU12ArMjNNEMVJdLwGKMRBDRQzoLXdzFMRkJgxS9FnqgdWUBU4fR4": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ArgbhWsao8yWqqvzYem5PM2RkZzVkAi7C11HFXVfTToJu6qQR": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12ArhsUYhCwWsVTcdGnXpCq9GrBhyaKKvE31ASFR9RLGxKxX6yS": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12AriQqcTKdrVFjA82N1c5tvjgybBWj2haK2NfJroBAPMtVCgAc": { + "balance": "2553.886164165", + "bytecode": [], + "datastore": [] + }, + "AU12ArqQYAjbwzv9yNSYYmGbJm4gD4h7FauGrGTHjCKANJSkaEWtq": { + "balance": "1171.578686638", + "bytecode": [], + "datastore": [] + }, + "AU12AsTEkUgWRxx9NJWWzHTbvncwQnTd9qNsAdqiqR7cFC4mrKUXd": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AtgDCPLt5YHUFAHs7bfjqCGCaeNyT1YH4q9jdsrtCv7Vn7MGE": { + "balance": "2695.756731207", + "bytecode": [], + "datastore": [] + }, + "AU12Au1C6Pg2Y8s2wjrZhcZKThX2gxF6erMyBNxmcWffuYtANfFX2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AuAV3G6BUJsPYu9Citx3BwJL1gbdrNGCnNPufWXgVrpqXjZ7d": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12AvJhGmesFovq6hr3Vqkd6sDQbMa6B1BG1XgXkEHewUKjQiWUE": { + "balance": "859.389532015", + "bytecode": [], + "datastore": [] + }, + "AU12Avt7oMbG49hfFBYoFjJebTEuctwXFrzuyyY1Qjpq7evsyvscT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12AvwLghLEdSVKLMxEsYdA3opPBSaVHXZVsGkLXxn1EfMbsaGa5": { + "balance": "2577.386389477", + "bytecode": [], + "datastore": [] + }, + "AU12AwaPbLNe8DakumC579NTVZwxXpRNmtbpLMisZWMouSexNS4HA": { + "balance": "549.495076018", + "bytecode": [], + "datastore": [] + }, + "AU12AwmzMnGCE8ntLsD5WBcT7jwJXfj2VsgxUQCYoGiFTwxYsQZe8": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12AxMnanDQWcuSDCMcDxubgj36p7uWcAPeaSUwGJEV1nDHjF5Bt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12AxV1rzRHr8PpxbNzA16PTUPngcTctCA8GcZtP1F5munWAXCU2": { + "balance": "96.742545857", + "bytecode": [], + "datastore": [] + }, + "AU12AxcnxtYjw7wDzfd4FrfboQMjRe5SH3jR1RuEfkFcHqfAvphFL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Axqbdu88Rmo7sYncJbLT2DrvfvNn6VepBGVnoHq1BmkCzioNq": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12AyAduSXf7mx68oqiBUf1nQJBT1UozN4k8AZKaoeVXU2NVmfVT": { + "balance": "1621.635403768", + "bytecode": [], + "datastore": [] + }, + "AU12Aya71ASiLzEgYcPab1tAHj9CMAQ9BQZWQQxgpkZkUz7SswRWo": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Ayxtvp34m8nwP367nxVdWLydBZdoWR2hrFo6TtkdGTHC94opk": { + "balance": "1840.948849549", + "bytecode": [], + "datastore": [] + }, + "AU12AzFLx7FRaFxhLdP5wxjNYunDLUumJQQuYAp3e1E5mnjY3dEcW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AzFZiYN6RUtoMVquLVdCLUpzZQcywUPhVC3jgz8ZRXpLrB66W": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12AzHi81MfxGnctQPVReNQCRmFSMgFggz1st8LnuYN1hDdYB1ho": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12AzSRius88pNDrAet16XoTwbzwuCLHrEwa3EhGLqidKFuh64Q5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12AzVqVRq5vEDQHf1sg2nFMSw1oHxPxAqZX7WPbup5fyAdGSQwD": { + "balance": "1255.696158832", + "bytecode": [], + "datastore": [] + }, + "AU12AzYhi7foPAmZi5ftPtAvFJkxDcvnHASsWSf1wrQn4yB1VgwkZ": { + "balance": "1108.283110045", + "bytecode": [], + "datastore": [] + }, + "AU12B1CFDz9P46DHGs8jRdMSc9nzf8SzDaBHYtqwWaxDH1P5YZzT7": { + "balance": "7183.263512662", + "bytecode": [], + "datastore": [] + }, + "AU12B1ciQg6n9KVgfJV2NQYMxFTLmZdjyqdKB2vny9bVu9h9pAxsC": { + "balance": "1771.307305237", + "bytecode": [], + "datastore": [] + }, + "AU12B1cq4soLREd2vLzLDserzBNVJzohT1ybDNnmEXLfhL6DgkroF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12B1kbWcLstA777hJJvFeAqaVZz5f1Xg2gZcncn4ixtxWXqDS5K": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12B1wkzBGpxokQXMi78zc1j11tC2GDBpHcQAhrCajkK8ambodNZ": { + "balance": "813.196764772", + "bytecode": [], + "datastore": [] + }, + "AU12B25aPm9E9PpuLqRfTaEs7AfQayVvpcHhVFuebVFm9SLrZvAr4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12B29RbeXVf1HD9YnzFERK5Z9ex6NrCjUrKGoqsNQZk8HbGN3Xq": { + "balance": "1463.624420994", + "bytecode": [], + "datastore": [] + }, + "AU12B2CLCDvKhA2LtiTER684MD35F1jdheiBMbhM5LHcoHDDqTLph": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12B2Gu7HtX7rW5n8Mv5XA4bnJvgwRoFRphZk93bdQDUt48pi56m": { + "balance": "2963.063711518", + "bytecode": [], + "datastore": [] + }, + "AU12B2gdRarqjGZ6U9ih8HWPbtaCNgERz6hCrcLQuKpyfChF163Uo": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12B2ic5WUbtuAx8HgXkhxD25YnFcLFzDrxGBzhJcH1EBVT6PgDw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12B2kBkQU4rCGHeuT9mvcxJ739QqCC32b9wsNAmwX77xyYBZNoS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12B2zmF9gWAVgVYBv9hfm2pTVMreG9QsLA7oz684M1s96Dc7YUc": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12B34h6Rifp8oYAdtsmUzfxMGKS5UJsXvisa1sRU711zG1ZrGtY": { + "balance": "2950.079482967", + "bytecode": [], + "datastore": [] + }, + "AU12B3RWmA65szNtCo3EoLYJdxiaqBRNoj3QwXoKC4wF6zKek4Chy": { + "balance": "288.242131322", + "bytecode": [], + "datastore": [] + }, + "AU12B3rBiPXgp71mLxa5u3JWgVpsDBFFAgYYx9LekH9mozzMbCeey": { + "balance": "1132.708450440", + "bytecode": [], + "datastore": [] + }, + "AU12B4CLjcznjz1AYGHgeaF8yc5zjpZ4frNMGtdkAYzrehpN4aMTs": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12B4PcT4HKniVSj2sq49VapDMAs2kdq1QQLc7KUN4n87kVVPZrJ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12B5B4sRXw3MAuESvAWrhP6w9KzqjPTEi3cRjJ9mKbadfjsx3HR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12B5ZbMKGfA12K4ahNGU4nrNHKxMomMQoHGbQLuEQqxU5eEgX4W": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12B5bqtBcf7mFhf1phYGwk7XN39dqZ27psVq8vzBQLX8i9haHdG": { + "balance": "712.470313126", + "bytecode": [], + "datastore": [] + }, + "AU12B5uw6pMX47iTq6z1bKe1C5YqbcnLTuuy6YVsE3ZmV7vhUXJ4s": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12B5zyk54f9fgKHFjDY2NGp38MrqTXPXKEprzKkHsUnnM4uokYW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12B6JYg4wR6GM1d7QjMK6uGCuNUDKrDV4W2DH96PaB6xU2q3rH4": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12B6LPgMqcrMLcLKLsRkTck1yZREovgDKX4Te2319zp1AGYHQ46": { + "balance": "1135.357398237", + "bytecode": [], + "datastore": [] + }, + "AU12B6aLi8a2CcpRTSGC4Mw9hNLwYvVarQpzrSerLqvNvpejPPfCL": { + "balance": "3798.465057996", + "bytecode": [], + "datastore": [] + }, + "AU12B73Hkv1YBzM7jWYWjbHxSQrfgygP24yU8XoQxBT3PFqwUMxPq": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12B7RpE1Wv7xp4e8McVWuwfqja3CmA8fZt5yp2Lz2UGzbvPRgjF": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12B7Ur4W3oxGVpjE2gmGyksT72EDHP2gB14DMFHDcR6sw2ug4Yt": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12B7tyVHJcukXsQN4cviCJsmswBJ4GZMdi69n5CEjBYZi5LA4zq": { + "balance": "1555.655303289", + "bytecode": [], + "datastore": [] + }, + "AU12B8qGNJM71PwNDJJzXwuhNay9jMLACzB6CoQUPmEtmQHYmY8pE": { + "balance": "1921.114530003", + "bytecode": [], + "datastore": [] + }, + "AU12B8sewz19vNkTfbdiJjcL9dRKkh8ZxVFZ2WN6hDFqxM2xyGVvp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12B8tBDYH27Rghk8oZ5eXgEodsePXpc6Aa6tGjKFfB61PVPhfyM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12B9AT54e71UunHhb59yvMRo1wP7LnuszP6NZMpq8NkxbxUe43C": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12B9CizoqBZc2z4U8ni1udSSTUKkvu8SyRJd25yUvrXnCWAigiS": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12B9PL3zj1mTVB6VjjmyrZ3Y85PPMhHcgsVqAfZp2fqaezp2aAy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12B9ot4wR4nvXmdzGRVAVA5qcoxvR9ui44JTfQ5CD8BWNGU1w82": { + "balance": "615.103712509", + "bytecode": [], + "datastore": [] + }, + "AU12B9ry1u5YTVQByFomDiaBf5G1ZbuaZnSUahvGFidZDY7A5pbN3": { + "balance": "198.019801980", + "bytecode": [], + "datastore": [] + }, + "AU12BAGPQ7UUxjdr4mN12SwacCF5vmpVVudQBDGbJ18g2YSbRPNgN": { + "balance": "2633.608359743", + "bytecode": [], + "datastore": [] + }, + "AU12BAPFjqTPPbcioqriwQSYgR6VDS8FaYdzZJ74w79mugvUvFwbt": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12BAaDF3sek8eCmAfXXuLE8XnBzwhbeA94TNEWdVF3JfMyx3HgA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BAgoppSS1B1Rbw3E9KYXhQsxbNQD3vH4QAyLtz8JKh75Cargb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BAvUDgyAg15CAAmM9zqySXSZZQDXGb8u8GqBmf2Uz41hXYhKH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BBFuTkyCPZsSoJXaSNhR4mMURSmAHhxdoaxW5bt38QqhoBFYH": { + "balance": "2346.238406658", + "bytecode": [], + "datastore": [] + }, + "AU12BBHDQH65vJjdGdPgwXDLSL1RpxQ3AedHzMMpKy2M8JudyhDt5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BBgy5wcb4BgmUHVVZ5PegBtDou7TND46kYwhYqh9w654j41L8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BBnANsw9rcc548NyYntaUxAWpS2VbLfZZUaJpJCdSxdx5NA8z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BC81Y2ckdSAfiTjt2rgd3hTAr2zy6TNwKndefF4ao43RXZrV2": { + "balance": "1592.635128034", + "bytecode": [], + "datastore": [] + }, + "AU12BCN4NLeafAtC4ADQ1ziBfWtCz1C5YuBdaNdhS413ZdixgDjoA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BCTXykiUmGutaopn6ujmVK3BwSg9eEcw8UdVsfKVdQ7Q4aWKA": { + "balance": "1689.665731294", + "bytecode": [], + "datastore": [] + }, + "AU12BCf4oVWRuWZzU3CgZGGRMScZJEJa3LHxafcqH3Dm5iBUK8CTN": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12BCvHRGSkhppm1gaReuekR1JyDsRC9h9bfvxw2Sr7ruZaM1aLV": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12BDbUSaCdLimioGubEgiBm8xc8iscX3CFdqyzQFs4MfpoGT5ww": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12BDhMkbB5zu9LRqqQB2PqsUstdeCFsUhEwK4PjHtCmffPHDxwN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BE8Lk8kBRcHDo2Tumgw8MjKiZ8XmHNFLzptKtrXqtehEhxRrm": { + "balance": "4487.424538540", + "bytecode": [], + "datastore": [] + }, + "AU12BERK4omvivzqFbeFKrb58UHcxUQVdTE1CjFovh8VPBUEceTnJ": { + "balance": "647.837813825", + "bytecode": [], + "datastore": [] + }, + "AU12BEfU1szb8Q4V3DyTcG3MyQVPFUQKd3B11KYE3WUeCiKobG9AG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12BEorJRTCNvN8aYNpRjaqRmWB46i7nKo3a657mPn4vH4MGG7As": { + "balance": "718.281195738", + "bytecode": [], + "datastore": [] + }, + "AU12BEtjrRxGAE7EDNg2wA2uXZzh9tRDuNhKfVp7W64WQB6bqbLwg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BFFd4mKjsUrJVCKqGzgGQCw6gBCRLb8NYy6wHhcgvhZKJg34W": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BFN4GK7B1WsssW3qvBUUjJgy8fpqggoXnkHa8f2WRpiKSTanp": { + "balance": "1751.274077629", + "bytecode": [], + "datastore": [] + }, + "AU12BFTL5vPy9vQ39fj2PpHDPXDnUzW93i5eidhpfnnxQmNDkYoGh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BG5VCCsSWE1N1hnJmgW48BVSbXry3XsZB7DEFkLVtwfbjaecg": { + "balance": "4973.747717811", + "bytecode": [], + "datastore": [] + }, + "AU12BGED4gjQ35zv4MetUuB1r27E224cYGVWcjm8DeKbhAoQ1ksj6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BGFwmkMzAbTubqFNRdMbQuNmUxjBNeytcdUvpuEHSXEHGDA2P": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BGZWV1mxy8ihmVs9mcdNP4rMM9XT3WL84PyX9Vztx3GbEfvd": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12BGjS4HoHQvddDABP41yWMMWfhwUAWkdHsrqmeUyrZJXmqF7cW": { + "balance": "1569.978917201", + "bytecode": [], + "datastore": [] + }, + "AU12BGkN6jKEgbi4c2DcJL4R2eq2KYNniVVCWNoJFX5yveQ7dkUe2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BGp8vDaPDSJLeAGdiLcQ56amRS33gZm4Q9RgXrsJiuiXWWZkZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BGtMrabKMuq4ftA3RkiL95R7wsEkNQpokDjavEkkxJ59dV8eo": { + "balance": "2626.126416270", + "bytecode": [], + "datastore": [] + }, + "AU12BH5ckXGA35vD4nV1n8xt3voMwJEqknNcgfBBqqhQbyxG4ys2v": { + "balance": "751.542366861", + "bytecode": [], + "datastore": [] + }, + "AU12BHAQYMRrfyqmu1nYLF2Hzwzk3pD6nupXi8qLe3fSscQerSB1Q": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12BHsWv1fmtZdLsE8LTyCBDktxJXart25kEHgNSFZoEXMRif1SV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12BJAiTksWPg15AyMH5UffGvsCrgxU1fJ1pnwXgzqEqVUqCsznU": { + "balance": "2396.616997442", + "bytecode": [], + "datastore": [] + }, + "AU12BJJiM4ZFSEHRPhopH3nktR7RTpCeZL1MKD7cm9NZcd8YgiFWJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BJYUcaYEfSWFeEv47vRbuGSA4iGvHNfSwxWTYc2WT2hLeC8Pu": { + "balance": "1226.987017083", + "bytecode": [], + "datastore": [] + }, + "AU12BJnJvVd2nXD5D8m437UYXhAwfoFC12Ajvk45iniLnejGDyrkd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12BKjHUivF1NtiVScgskfhV4htGipexa7CDWaMSzC8BiDXL2zd8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BL6t9hMPTfkEtUMhkL3pwhrbLn9FypYfYN7Q7et6XhzZk1k2": { + "balance": "1363.956926655", + "bytecode": [], + "datastore": [] + }, + "AU12BLAw1tGDasC7AN2qYkSYmtFUeAsj7qCyf4S7FL1TvXhZhW1CH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BLCAsZ6uHv2t1mkrHsVHkz1XAWAHbzZFjPuYzNj9D4oKfJAvr": { + "balance": "219.972981127", + "bytecode": [], + "datastore": [] + }, + "AU12BLK3EoNpncK9mXKiK4k9MJc3F6RohqfUBGu6qD3gTwFcbFnWg": { + "balance": "2.391940891", + "bytecode": [], + "datastore": [] + }, + "AU12BLQUWV4jntdTP2cG11mcjSJkRGd9fr1y86qxERTaC9RRhf6NJ": { + "balance": "772.887099047", + "bytecode": [], + "datastore": [] + }, + "AU12BLdoLvr1pBCyoYpxLSk6jTYeYzLEBuJWPnJZQyrgc3b1S5NP8": { + "balance": "659.738455044", + "bytecode": [], + "datastore": [] + }, + "AU12BLmhHamrme6EqsTg9aC5vnt4u6DFke5GzkADsSdQcYi2koL9A": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BMEryyTKPMH5mwsLn8g1jTHxCd7kTXbcYpWeBdWQbAtUqPgbc": { + "balance": "903.491169496", + "bytecode": [], + "datastore": [] + }, + "AU12BMH5EfbVBcHZxuT2UKkGBZfzngTgrwrNLps6PSTjFBB1aGMBK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12BMegjwT88FmMhXd6XtYwEABJ1nzF4hPxAeABRsHBhRvECvPos": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12BMs7e9X5FWafgKA7wDzD6fH7rvsEWyDEud8jraC7Ug13WGq4C": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12BN16HTXWfEQ3GQ2UPjcgeVXtsHSXBPaDF6Ffnw1r5kHHNda41": { + "balance": "1083.175823820", + "bytecode": [], + "datastore": [] + }, + "AU12BNM9nCkf6PmLEjc6qnWsES5yxaVge3i65jmHNKnfXrLZHUrUX": { + "balance": "3494.646866794", + "bytecode": [], + "datastore": [] + }, + "AU12BPC5ZvWNm6YsTkfr5YTiQszSsPWpQk4ycbHAGsYP9yKjVp3Ec": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BPMtmJn5WvgGwWnqaHUWzMynAAszUACaF6mWch8ocHZSUEeRW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BPmLq8CdDFBuDXxAaSksk5UXaVw1MYjJ2GxkAdRSGPGNF44kG": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12BPvgKUZFaiPqzPiZhZiWcoYazjtxkf9GQK8Bs5SqpmdBXDxCw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BQPaqBLTpiLBHoySPsgqrJF6gTfYuKZA33U1mgxcRLoF9QRZE": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12BQXur4Vhna2QBjU7uijURoU89VT2s7yX46dANX5fYCyzX9UFB": { + "balance": "910.372126962", + "bytecode": [], + "datastore": [] + }, + "AU12BQbtEueDJsK8rXkL7Rbj94JvAZzSo8x2XuBd4ioyRdYhBZeRK": { + "balance": "812.837751869", + "bytecode": [], + "datastore": [] + }, + "AU12BQro1foyeLWt9d2juZURqCqjvdKtSu7uyG5w59gagWipcny5L": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BQt9MpTcj4nyBDfx8xBjutryrBs3wGvWukcVEK5YDhoUfYj1u": { + "balance": "10934.536302047", + "bytecode": [], + "datastore": [] + }, + "AU12BRGJAmu54bCeR1rgRW4h4P57DPfo1cvjtnSZQg932nejwM5DD": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12BRHNcU5Zf7dWC82VLwkibUmn5d5c9UQn4kRnTViXxmf4oX8hz": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12BRjqbYKGMAbw3r49i5DEa2B2ABx3EuHYgm2nZZgov2aAF1wDT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BRo2U2sioMNf6EGtjCAtvzAFWXuhKmPu3yKzBbH4WVEc6pkkw": { + "balance": "5322.321567234", + "bytecode": [], + "datastore": [] + }, + "AU12BRtGn7AWhADhVPkEwcZ1GvnTbiAwbNen89wWbHP2bbWQQHme8": { + "balance": "2078.194698118", + "bytecode": [], + "datastore": [] + }, + "AU12BRuaoXkQfibAAmgAqNkRqJvUUfgYtp1i1m6inPiBzuZYfEwp": { + "balance": "2580.500567791", + "bytecode": [], + "datastore": [] + }, + "AU12BRvkZsUojiWc5azXDYF1uHh6xUvNGjgy9hhFS1iVW7gCougam": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12BS5Bw4hAW79QQttjSNFmn4sWJK4QdwXdK8V231XPMBtSXEG3G": { + "balance": "5305.173102048", + "bytecode": [], + "datastore": [] + }, + "AU12BSA9ThbS7aQ9wgC1q8kWRot145eiwLenPSyfd6pZyZ1eaqpZ4": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU12BSb7vFyCLHKxoHqJEQThoNYVrg2goqfkjN3jS3WvT8VbvL9oF": { + "balance": "550.891179165", + "bytecode": [], + "datastore": [] + }, + "AU12BSq5nmSgiq4ZCGXbzSqpd5mQuhaNcqQ9QE9Mj1GyX7Nh1PYEJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BSw9CjBj4upSZwmwaPdUsrz4MvzFAr38nEEsmMLfqH4eeGyfq": { + "balance": "805.453615728", + "bytecode": [], + "datastore": [] + }, + "AU12BSxYLYDwKm4zQJMGab7GgSJKQrKPm4okbpSF9kmm6fdQBQkpM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BT3DbH1Jq4e3xMTCmfivzuWQ8ParPgGeM3cFH9vd91wK18CrW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12BTB1svvU4AisXxCtYWyhtAjjKwwUQYWozw63ajAPCzE1756jZ": { + "balance": "1708.613742140", + "bytecode": [], + "datastore": [] + }, + "AU12BTHqcZRVWBaSPb1FVqTSY4qscHKhAJoyCEfYtpYFm5Jneoa96": { + "balance": "99.236705710", + "bytecode": [], + "datastore": [] + }, + "AU12BTWC9zpRXxSvXexhuUfuyyLGc36Z3R6aPgnD8Z9Z44ctJBh69": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12BUKZ2rnV6aKJxHMxt9XCuCfFPB9Er7cSi2BAZD7eAHFFJPcsQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BUNSdwDTETSWRM9ZobKKM3QnQorXQ9s4WoADNhaJymtJ6UwdK": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12BUyzctEKkRDEyeqaJcbYhZHk3ggHagHnu2RYNUTjPPsX5o6oF": { + "balance": "2805.505057530", + "bytecode": [], + "datastore": [] + }, + "AU12BVsHcswQSJR2dKejeGXXkWsaWN6Gur4F1naQ9kV9WAyKEz1eL": { + "balance": "3608.480585136", + "bytecode": [], + "datastore": [] + }, + "AU12BVwffnTB6EPnkpeBVJmLeYd28ZFuaT5AaLdyD7UFrXGB4xL3A": { + "balance": "37.638469962", + "bytecode": [], + "datastore": [] + }, + "AU12BW23TXfuyAWzdHRU5G2cw8pbq99XCPVrQYsfniNgCzVPbunK9": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12BWTNyRjFTSMn3B9omqEDM6KjNVtUMvsMrfiUZzNTsZ8zXU3PS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BWXeb3Y1pcLAm5vnudAcZUVoVzrv9T7tU6vKErBgw4HRQYR2F": { + "balance": "637.747663966", + "bytecode": [], + "datastore": [] + }, + "AU12BWpPqQGfRN2S9AucPwQzzUGFzmYLqbBPV5cGJfRTQe6nqrXXR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12BWvFQfA8cB46VXe9v95urh7WvFrqQ9g19FCHBhx7eNYdK3ECc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12BX8cQ3cJMp6iCAgTdxV96go85qCKpDqsvszrmupE28UKdGpYw": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12BXGd7hu4HyWnysgT7JjBYLHX7iSDBsTNXtJ4mGKGsNcUbsuA3": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12BXULUpojy4xu3mJ4MjSLisMRxFaNTSKwpXFvy5mgz2KSzF5MF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BXm4tXWckGVaKSREBQRQQCza4Lk6VAcPnS3K2YuDkt5R8BgZs": { + "balance": "1437.736534941", + "bytecode": [], + "datastore": [] + }, + "AU12BXv55CbF7zCmqkr5ySCCMti2YhUksJS37btcwitKLcuUt29uX": { + "balance": "570.345417562", + "bytecode": [], + "datastore": [] + }, + "AU12BYDf7EYg9xxrby5CYXo3Gcuzr6YAq8tckPMP5TEVRC1kQSDH1": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12BYGQeWsbJ4b3g97U7jWD3m7ABFhA8H5TpRsmLwj5kEL3dE5Yv": { + "balance": "2356.935013829", + "bytecode": [], + "datastore": [] + }, + "AU12BYxmCwdNB7SUHqZvfokSSg1nggCkAW1cQxZNQBkX1zk4eBqej": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BZ9LPkLhvzapb5siJmT44gtERrPv6GzrEvXc6Seh7kbTFtv6B": { + "balance": "4835.135533033", + "bytecode": [], + "datastore": [] + }, + "AU12BZCvzDA2eecfUyAiHU43KMXWKuPkqQogyjz3q1kBDvSsPYcCa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BZRFLjFUDz5KGVYdiWsfdaG1qa5QsMUxTcZgR5pXis4SqAdTg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12BZZ2Ba7AQzzDGnsRSRYvMxUHj9G8C7sgby9x8AMwAUQ5dMofg": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12BZotbtgeioGrAZ4wgqQ7bLg4H21gboLpBpeNtPsaxndzV7rLg": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12BaF1D1RNLe1154m46UfAhPiE2yiuMeEBbo6gZHgDFR9q3VzKU": { + "balance": "1359.475941044", + "bytecode": [], + "datastore": [] + }, + "AU12BaHbiA7owhLbfPrrTbim784zUUAfGaw5DLVCsXZn9AfTPtwbw": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12BagpqiR2Knv6oc8fjStZP57TmKchw6eGxr53NztfgVTgqSPrC": { + "balance": "199.965805721", + "bytecode": [], + "datastore": [] + }, + "AU12Bb9kf4vYMUNwrikhjDkU5NWUsrgbT7vgzaokntyVnuvnTiRcA": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU12BbC7DeYzx3EnipSjeoBndUU7jGQK2nzzKpqxzR9X4WWo3URUk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BbRYnVR6FRzo61ZRrdzwzUeDZN63ygXNrHCywji1f8LASGEJD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BbTEsWu22dvUvDEycZQwcHCsVrtur5jkNg8rYKZrpYBGFgxC2": { + "balance": "611.041843098", + "bytecode": [], + "datastore": [] + }, + "AU12BbzBQKJZExPaTweHohkoPEHr4aENcVEUkvkJJ7AynSpW2h2Uv": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12Bc5P2MV4oNwmiTDVEBW1UA1vVz1uTqTTki2xptAmjxxjESyCc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BcAatizPocBUydCXpF3A6pVQNw2QUUji63cuQhyJHmeJyduWn": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12BcN4sVNE9iWW9woGL4DKxyezaUuturCoFC1yFhBwA1UfZtS5Q": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12BcNgaHh1EyNv7aV9MRWAVXGsxQRsxazHvnm1ZwUdPdZxDvi5E": { + "balance": "88.290169018", + "bytecode": [], + "datastore": [] + }, + "AU12BcgSY4PXmABBK16xWT7vsKHUrr57goqtTnqfvaVei4p17YgSQ": { + "balance": "1750.233082350", + "bytecode": [], + "datastore": [] + }, + "AU12Bd3cD8Acs8hZtSfNjRLTeU1K3NDPBCG6TbZV85WH76FoheVDS": { + "balance": "51.167940287", + "bytecode": [], + "datastore": [] + }, + "AU12BdL3v4cQCcNJD3Rhd3eHuk7aSqefhwu1ncMfUBnBmeX5Purzb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12BdMtbTYZW9ufo8aLjwbGBXPDdwqrPoyELsjnhkPYxpMaeAsAJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BeFCDn2QoKM5XDY82PPS8s5VYcpdPd5S9mZ226s3mTg1Zbon": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12BeiiJEUY5kdu3SKzTnAP1cMtZcgadpirfiwibZ9YkZFZQWD9k": { + "balance": "163.147766542", + "bytecode": [], + "datastore": [] + }, + "AU12Bet3V9jtnrPoRTnf53CoA1x1NubMTBgS88uEUrfG9Dpx7xjaL": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Bf1nBxQqKz2QZMVK8osmWTYH6meF8qKbPVYbEEFQtJrzSog87": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Bg7Wfmg2PToiwP1DiueK2XekBN83tYXdwbcBhfXRREi9qtNyT": { + "balance": "572.108569041", + "bytecode": [], + "datastore": [] + }, + "AU12BgpHKFzbTCBEEfzgNtb859YALHNJSceEu6fS5tfLGeGEmVtao": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BgxUfqudzxUVXKHcBPNTJkfaJnq7jgkvcrewHrCEBnYD2vxxs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Bh3gdYEncewzhcY25g7KnY8ghPcdmQhLQBy56zfeSZk8vj24J": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12BhYyuV7CppHW2cs8FwdpRqxYvwgXGWsWXZxdfSNJRCdWsm4aV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BhkjhwKGrbNd7czYweoVCLMrzj3fyyUGLyk6dHemhK6EBeShZ": { + "balance": "1079.599178865", + "bytecode": [], + "datastore": [] + }, + "AU12BjPwENi3fz1cHRcF58dZ1hy51tAkPNtVN8oGNQ3UKbhARpg5b": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12Bjf1BLQ4CqnVBrutREedcyxj3d2ZeoqLv9W8Xp7MmgQc5MLZo": { + "balance": "874.878423120", + "bytecode": [], + "datastore": [] + }, + "AU12Bjy79FDQbi3vworhjPgxV5JF4Bf1oVi3BPso9jtkNBqs89ZjF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Bk3UJePZoxafkkX8ajtfEv8rZwYMuP4LYQkoJCvJTCo31QFmv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BkJ9g9jLA15UepN21k3Yms9MGW77p4DFqVTy7zgMD3M4jjHpu": { + "balance": "987.207498296", + "bytecode": [], + "datastore": [] + }, + "AU12BkLE3RkCWv8BScJXUCr3jtRs1oLmE9vsNc5nCD5HBcBHy2dGD": { + "balance": "1085.511092615", + "bytecode": [], + "datastore": [] + }, + "AU12BkhmgDCdDdpRomU5k4VvHsiMFYF5YDb5XmgZqNSxeVJ8utHmP": { + "balance": "1926.358522175", + "bytecode": [], + "datastore": [] + }, + "AU12BkuGVK1sqtrVhhMjJmLETmGypRBtGwgpfCCazphADCsAm5CPE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BmSd3QTfnRg45dfwcpsYPML4czwPsieydUsgZcxhhmdoJewXb": { + "balance": "4327.221079895", + "bytecode": [], + "datastore": [] + }, + "AU12BmuNBKhnuibw1tt6LQ7WTvK76Z8HGWWiz6dHzByBe2M8cade3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BnFQuv7YDEqhkphunvkonjtGVfRpShforRV75jDPcnVPyd6J9": { + "balance": "1323.171364958", + "bytecode": [], + "datastore": [] + }, + "AU12BnGkHVwjfRsr89JL2MJPTEEpJM2nBdLb9HvYKWVtvZXmHBhcg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12BngoyW6Ap5pQajQ7ftZuim55hDnwaDHktiz8b9RmaG2q4CRDn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BoJME6vheWS99WB6huu2DFNYpJzSdTpJQD4cHg3p33MEs2N6b": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12BoqozF3BLBvo3rXiAcBGhffvDRWQW77btZ6QQAB81mbeffpLW": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12BpU76cPbWhPJBLgiNqRNDMACh9XbTCndu2TdiEsbxKMZ5AWwc": { + "balance": "25.972391911", + "bytecode": [], + "datastore": [] + }, + "AU12BpjAeFZ232gn4RtaUXDh8Tf6vhKGxt3CiGtLSJbUwBwSxH94u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Bpp9uXX2vYapyKmS7WB2XsxMps4AeF7oULKBnb1va8xdnp645": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12BppvmUACduxZYLv3ghCgnoHbXfs7LTHHcorPmqzSGB89PA4Zf": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12BpuftYK1tGSHukHBtnwyDQZuBhdKx3j7DdWoiV9xbRS1ykTck": { + "balance": "1174.084720180", + "bytecode": [], + "datastore": [] + }, + "AU12Bq5ggpBHyrPoitADXzhXNLdZ5CEnQVcwZPyMRtQf4aCmMBw2A": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12BqP1FnCLPeZiL9wBF3eToHhRLeX16XQsCT5hJGXsG6HkSSyNj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12BqRsC9iqTkkXGXitzJsT3Dbktf2wHoWLHBp7vzP5CGMrJ8otY": { + "balance": "1568.977957724", + "bytecode": [], + "datastore": [] + }, + "AU12BqaTPTeGFHPp9aXm2NCcQqzpKUBKJvx67q168x76Zn1xmEDuz": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12BqdGc2MSWJ289Lqb4cebYzkecPn7eRY2yc98XCiaT9xMRkWJ1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BrbRAKm3e4MS6hrdRYqZLY45oCWLTMyGspV4UXjUYoZPARCEu": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12Bs83feVomjkQYB76WjQthbD7yZXLqQ89gFxADxqkAzVC369R9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BsAbEUVN7e4L4vA1CBQG7CMb3R2tYCmoFh941u28vxA5us27s": { + "balance": "1252.604351502", + "bytecode": [], + "datastore": [] + }, + "AU12BshmH87YbAwNSi8M6oB4RNpimj6M2JNBVcrqGKXDXKQRAV2sk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BspYnSQsHoGgXhjmzRWzSTYa7HTE8xDdGMFKHu6qiWNqVWMuU": { + "balance": "2407.244354195", + "bytecode": [], + "datastore": [] + }, + "AU12Bt4vy91kb4s1D8R1gA1FqLxynBMCrqU1rDEkzy6v7WvkHf1Fk": { + "balance": "1621.624288852", + "bytecode": [], + "datastore": [] + }, + "AU12Bt5SVvNpPtgx1omzMDAd1BbSRSGCPGHeLVaq6DVp3s1DQgQa8": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12BtsuANb6aDr2b5rkv4WbbyXLnP9KwKn4bUPakgZKFH2FMfESZ": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12BtymBEcBiMspdSoB7Uf8ENQEV4cWgMH3Jgz84asFD1NcgEb6a": { + "balance": "557.537838515", + "bytecode": [], + "datastore": [] + }, + "AU12BudNsJSLvVbXMvoaKVjSDpkHdhGWVB4pD7jQ523kCLNmQEFUE": { + "balance": "874.723314190", + "bytecode": [], + "datastore": [] + }, + "AU12BuxDmA6X5i28hbaNTW1Zcc5Xuzi9Bh5sSf15T8xjS3tYh5YYi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12BvFUYtf7s1tzLbVoMT7R5dZYPJMFMSvFRtydpxNrf8iuNXqct": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12BvUrG73c4Fn3gEE2JTYmCQsjreB5dndtHn2mw7PBDyrzPTi1E": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12BvceTtViaCZBtCpZvaUNaPaaYzL2P5UpttrmmYWkMfJKdR6xg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BvzqC47AHdN7RE5E278y1GmoyHHtoVfUryzNw1V1BSZ1ZGtkh": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12Bw6TbbY9xt6QP8ErGViZci8otgsAw8tGRD8Sjb5EfdVsN3LDS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BwsQk1yc9zNEWRX2hKzih2iPPPsxa25rasZBuNiKVs39TA511": { + "balance": "1246.925096047", + "bytecode": [], + "datastore": [] + }, + "AU12Bx8UQRsuRcYjLCLYWwKb4X3PAJsYq6SPHBVavBXnZyh42UmVb": { + "balance": "2359.957308137", + "bytecode": [], + "datastore": [] + }, + "AU12BxTTfcBo6YGjZj7JMfRSZBDbEGt719f52SPH4YKePSFwHUeNG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BxcWJBzcQxCnYmPzsVoNPfWWoi6Z2LdkMX5XDyReFqGhdT6Ek": { + "balance": "3067.476509126", + "bytecode": [], + "datastore": [] + }, + "AU12ByMUs8srUMbvi6qvRJfoMgJ8HV7WYRupYRV1t5QD7wSagCk2k": { + "balance": "1490.344445628", + "bytecode": [], + "datastore": [] + }, + "AU12ByMiGaCmEUX4ohbihzAsevMzUCtTdYrErCQsixsShfYfpx1BQ": { + "balance": "1037.590126612", + "bytecode": [], + "datastore": [] + }, + "AU12ByQy49NMXaX4PW6Gse9KV4Q5gxckcFC8M1A6bhafTzJEQzu3o": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12Bym8iLwVEJapgbDH9tcq9eRBh4fsJrUKg3vshKBnFTtL31tNw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Bz6uspM6Y4WwajXLtso71jsaTn8Eu4HSWRLyDc6wpgi11mw8S": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12Bz7bGAiKG9iXQK8GH39tgLZKJckAmDjQCALHuybUY19XADxgP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BzB1JNNTyFmDr2FyFDrJvQD1WHrSBcg2bxqb9tgGSjXftx1y3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12BzF3gxgvgWu53QBMYM4jHHghXw7o185z6Ra6qfLochHe5K2C5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12BzUCDLMbojiZrBaN3bhEovCUJKHh5EGwWQfuNZ6p6GRZpour7": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12BzZbgBeCqhRLwEM4MnvGZDrovmkW1TvSGTfpXkP1zmK867ABi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12BzbVXTfiGHgBCfq6cZTS61g7vU9jcemZzCAFLHnKGpMECGpcY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12C14hFGvBfjYhRUS5pxugFTsVmyV7kb1xojJwF2gJfcLcdvE5g": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12C18zRe6X6BQ4f4qQbmxhBBMDcbmtMSJSEP83W575Da4cT8Qp1": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12C19taJ4U1hJMcihPkV4kDMB92zC5X2A8xreauF1Fz4UvFA4nz": { + "balance": "997.326001162", + "bytecode": [], + "datastore": [] + }, + "AU12C1Tgj2noTSaZSX6w3DaJc1ZRht1YSEKdYHrHtkR2H9dDh1fRx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12C1WWuGAg1q6HBkkhR7AokcA72s5wodziXSs2kgWykA53K7p1B": { + "balance": "50.297140316", + "bytecode": [], + "datastore": [] + }, + "AU12C1X8gCBDyF9wTjmhkHFdgsi2Xa9TAPwbBueNJW4fbKxvrCHFw": { + "balance": "1611.125288619", + "bytecode": [], + "datastore": [] + }, + "AU12C3EouwHDQXbURfasyLPFgrWfg3vZtWS5ZrcDexVDWEiraUQFk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12C3TsewVeDcb2qninFh4SVHRvWgz617dBXrpqjcY2ozBJBSNp": { + "balance": "2874.173884999", + "bytecode": [], + "datastore": [] + }, + "AU12C3czkKXC1ZNy2o1E2S5Q3mVx5B3LUGA9VcChhbpmh21MnwV9e": { + "balance": "24.273863876", + "bytecode": [], + "datastore": [] + }, + "AU12C44q1btrD5XXfLvKP25SnznZnraYUp4Gx4Yg96s6QNqAeuDCr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12C46KyiB2TkZhvd6nYjawoq7tq6kmYHaSd9T5hT1spyWp2nQAi": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12C4LvTFUkAW2ntQNMSwSWiWo27gcncsFsvDvresgw8nM6ZQ4jL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12C4M598JShsHW2om6gpNKjcV8dSGDroNG5XKPcZMPpPDcjP2nc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12C4dZc7p5WFQc9ZZsaRqjjoKq1A6jgCwxVBVjLtJXzF8yLZmTU": { + "balance": "3338.568164112", + "bytecode": [], + "datastore": [] + }, + "AU12C4fgDdY75CvbsDKfVHnTM2DeCwfuKhzYNAqgiZ6KapcXcRiNp": { + "balance": "741.412468174", + "bytecode": [], + "datastore": [] + }, + "AU12C4jqocWvEYC6sS2RTK22BTRyE6m7JtQnRbp3aXNgnEVi2XqVS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12C4zAe8M6xDRC7buogt74BufoPCRieaCFsazjeNLJFBeJvNLn8": { + "balance": "1762.268073756", + "bytecode": [], + "datastore": [] + }, + "AU12C57P6DJjnsN2EKrLC1BvcMAwRk8wRE6QrmrikJL5ZeP1PYoo1": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12C5K5Ez3RKnPXREztrZT7AGbYSHsPAVLWRQqEGqfPAk684evH9": { + "balance": "3028.894047944", + "bytecode": [], + "datastore": [] + }, + "AU12C5o7sCZU1qfBcDgi3i65qLnCEZH8eNp7yCA45Di1ZAsapTw9R": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12C5qTmi4qg45KL7rsfEdHVUSqVrgRhtqMpYdLkBWQ3iW3u4yoU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12C5wQMvLMD8kWznWawrUJcyudWig5odPcDxgNXU73H4uxhbvv2": { + "balance": "7500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12C6KrDE4Zw2nhte34L8NWxbSapGe4DzEABLKwpHzJeNXkzb3op": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12C6tSW4U7twxtMUki8QhzJqvsCMuRi9Ft4f2aaGwYfLK77yGU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12C6uhGJNhixydiDuiX3atTZ9NBhpiJP1VS1zSiVi4dyAUQh64n": { + "balance": "91.063238816", + "bytecode": [], + "datastore": [] + }, + "AU12C7E8VuUZkR8vCXfFNeMtCyz4uRFT5SJZK5CmWcwLuXJRLUqik": { + "balance": "1265.529417088", + "bytecode": [], + "datastore": [] + }, + "AU12C7JYPDKSgVkUqPEij5EzVxv4a7Va2HJjEkqwQCfC86T5dWXLq": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12C7XCoz5PRGKQbA42DznGeZq6oyDmBm4fMwjtFqpKrrHncMWQ4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12C81Xq6reHwcJGww5rJcqdhKg7tnNUyoXpoFe7HNAvqFqNGb7L": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12C8KwR2XYJgAQRtKzqKBrwNoosA2uLXaGuPAV1R761LMH3kri": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12C9Sm3xU4LJAp3FzqA4J31KLriCpYy8tugWE1Q7M7BEMix7Brd": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12C9XPF6FEuYqDN9f1pHVSTradYcivNzPydKY3NBVkkuoZ2kGbY": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12C9bMp2hckjNpA7figobXcZWSZKcHzhaVSjU4TrJspw1K69CPD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12C9i9dTfE2zCd8L5M7vc97GffuX1eXhwAF8ELUmaTCVH45yPMa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CAQFjjaVizgN4imjU1Q8qpaBPmUgmXYjz6EqBvd9sYRxSBNJ1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12CAcrDG7ey66bw3ZBqX6KT2PvWMFFYfzFiBH5oDvvCu3QrWBMw": { + "balance": "3419.104921210", + "bytecode": [], + "datastore": [] + }, + "AU12CAxHv1RBq1TCiHPBuHyjjLamUVSqfF5bjncx1tSEHc8JsiNtR": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12CBCxMHE5Qa7ZjhrSQS7vviZ3AfE3k5sqgwrUee5hoVGxN5XA8": { + "balance": "2854.827748554", + "bytecode": [], + "datastore": [] + }, + "AU12CBSwEK4SYQEU2QvSa7jrAG2cQumfbAcmMv1w4XyP18GsWC34E": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12CBVxogCvukqZxiNAFRN5TKkCurThKnULnLgMZ8nDp5i9BKYDo": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU12CCCcGbJ2bWi4MATmAsRmhrNhd67Lb6hikSjXWbuBuvJVP6o76": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CCgsziCemCJnViXCZCp4F5rp8FUwRfyRZ8pH39oHfnhLWdp3X": { + "balance": "2424.975628790", + "bytecode": [], + "datastore": [] + }, + "AU12CCwP5tpJdMyiHq5iApY6TuKiq11nYkf73RMDrPQu8S6vhsTdk": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12CD53gB9rUNwMpCzCQXiZJTm5nz31oxUPkPzx475g8VFRZs4AL": { + "balance": "1373.002258754", + "bytecode": [], + "datastore": [] + }, + "AU12CDQkQutMztCPL3Z9QmJjZzgUtq6xoFH9Ws7h7JrZqfo656KCt": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12CDXCV2wAbwWFM1sP67opVJdb7VYnwXDky9adwiDgZpjiv6u1U": { + "balance": "1249.505255111", + "bytecode": [], + "datastore": [] + }, + "AU12CE7sBWMFA9JR2mzGkifAfo6GTwKMW5MsWnZ9zdZLy4FnEKL88": { + "balance": "200.772209535", + "bytecode": [], + "datastore": [] + }, + "AU12CEEjCb3quW2H4ekJ2fNR6dQmJvwbWjyqgND7i9sdqXs6WzadH": { + "balance": "781.806688788", + "bytecode": [], + "datastore": [] + }, + "AU12CEU4soWckmFutaC1onU6pjXnaNgm1kmirEoqBmpNvYGsozBEV": { + "balance": "670.941309068", + "bytecode": [], + "datastore": [] + }, + "AU12CEX8qk7HRthwSPuaPQh9FuouAzW2xE9RJp3g4nKJax7GsuX5G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CFGMYszUYHuHvCMtPuRXXEiiMsmhj3bfLxcSrtBnykDHKrc1J": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CFYKEjS7tFpGN64yGfWurEBv78MWvYge6A39GmjnhPzV8EegF": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12CFbGocrcpgaVMviCh2UvXwag8ifdWzULhjjSXqDe7biAoUcaA": { + "balance": "2854.635275817", + "bytecode": [], + "datastore": [] + }, + "AU12CFrzqancheq4ba9hcs5KLyiFoDpTuj43tcRsJdmBqLMWU7CK5": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12CGVwtVjmQgP2EKwCPKmS83666pBMiuidX1F3bBAKUyJeptEem": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12CGpoYh4vvF8yEP8Wh36uVEhmarjG3S7SGM428GenQsoZdztwL": { + "balance": "1237.291072136", + "bytecode": [], + "datastore": [] + }, + "AU12CHGXZapU3Fu98dnAE1RvCmSzTDPW1h5yLHaAHeo2YrhhbRXme": { + "balance": "1345.240729785", + "bytecode": [], + "datastore": [] + }, + "AU12CHd4knPCsu2tWxYobVgV9phHx5j5nXqP38HwhkpmRS6hMQaiR": { + "balance": "1699.193596130", + "bytecode": [], + "datastore": [] + }, + "AU12CJMXWfrwjpegfzPfZ8eJChgEK7LgcnCHWs3P5CRsunZkBLpvJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CJaiaA1mqLSkCCfHNPouQ7aq14RCwrjVKiX2oiV5yXL8rAnYy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CKQV4PtfxhUoDbWhWmyxyhKJXVdcxbTxJv9sVdsqJhMnNr2sR": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12CKVyD5fkEHnbVRHDEyWLDFD1FLRHQg7bXfhzw1Kor1ZwhL95B": { + "balance": "3378.964210235", + "bytecode": [], + "datastore": [] + }, + "AU12CKYC9rj7js5TTimFN5Vpdou3qktxBAtkFFExeyTBiRcBTmpBF": { + "balance": "1339.222249983", + "bytecode": [], + "datastore": [] + }, + "AU12CKYXidLR1NcgpBbyz2zbDPj71rv8vbxUJfChYYceu7DcmdZhT": { + "balance": "1142.907755614", + "bytecode": [], + "datastore": [] + }, + "AU12CKaVs2Mp5SfPriETgE5kcvr1ETGdWsjRcSnEC2ko8sbz7xUDp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CKdWhuqofQCAUaZSJezVg9PH3xyELoRtEf9hgQaKtypJhJitY": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12CKjd7AuNjNtpqDXCkxovY4GuHuncnrsZbJU21Grbv8DrYJgp6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CL3BzSm67RLvqtG9p5jvqgDT6My8P9soqwRJ3zkg8PmEpxTHc": { + "balance": "3657.402150336", + "bytecode": [], + "datastore": [] + }, + "AU12CLeVxxdXAFgDFWtQygwekUtv6DakgM1FZrhGt3t7ax1TK7hd4": { + "balance": "1386.322720599", + "bytecode": [], + "datastore": [] + }, + "AU12CLgeZyWeqJDYuTE9mt4uR8HBtZ4noXe2d939kyeXD4F8NUSHY": { + "balance": "1262.417630989", + "bytecode": [], + "datastore": [] + }, + "AU12CLhUMFUQn9avpnf3epB7RHDXdozQ1VLEuzaqb4qtvZ2rBqMa": { + "balance": "1277.351417950", + "bytecode": [], + "datastore": [] + }, + "AU12CMC2GuntBy5pAJHTH7NZZp9Ms1m4KFSqBoaVdG2KhMhiKFXK7": { + "balance": "879.321617412", + "bytecode": [], + "datastore": [] + }, + "AU12CMCPRXbvYsVysAhyELHdXkEP8eXMMFYyKS6ESbNhZTv6VkNHJ": { + "balance": "2844.428609035", + "bytecode": [], + "datastore": [] + }, + "AU12CMsnWNgd2efKDVqGRuLQ9eFQjAoAX9XvuWia4pXHoNHPrtLTv": { + "balance": "1765.640985396", + "bytecode": [], + "datastore": [] + }, + "AU12CMwBpkjjUHjiYa1rxBQsEWP8eL5ZgdnsrRrFWvYDiJLe2fR1r": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12CNNrv7bCnR7Wr7oANQ5sfioPz71WaRu754bVbXac6cWN8xhca": { + "balance": "47.542974138", + "bytecode": [], + "datastore": [] + }, + "AU12CNqsisz636xMCMQvdYxNefTTU2e97VHwd3q3Pvj8n67Rkjo6q": { + "balance": "4342.914019709", + "bytecode": [], + "datastore": [] + }, + "AU12CNsCAWB7foefkKa8ttV4iMeHfSnoj9bdrVNX2YDVzc81f9st5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12CPXmN9wdueomX6UA3UxStEgyVgtvBpkeKUz4RTx7hLDbkceFf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CPadnz4egzKsynjMYADJkt6pgFKz8bs5G5X8t4bpmwckf9M4J": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12CPrftTPgRgTrBi6xU2qxHRoSw1pVQESspckC5wByoRbu1LQcx": { + "balance": "1755.885385279", + "bytecode": [], + "datastore": [] + }, + "AU12CPxnhYm5KQnmvPsGneAAfcd4pvE1aM51JMy32k9Ue96J52geQ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12CQ3XFi7QrUATUNUnH9QfrFMTpHksyiQke7QBRc9ogGGPsSgf1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CQ9CYtMgeyPwrFG9ckSun53R3TEEQvtJRhw4z8nJXkpeedzDJ": { + "balance": "1688.009063130", + "bytecode": [], + "datastore": [] + }, + "AU12CQsZKbRGBoYHqEPJQdH6EewudawLYpExt7w1Mm84Nmpfs5tLU": { + "balance": "1906.151621029", + "bytecode": [], + "datastore": [] + }, + "AU12CR4oKhGUR8Zxdwu4qerdbNi9SzwgirChgyn1wfRBq7fSJWtWu": { + "balance": "3970.086305508", + "bytecode": [], + "datastore": [] + }, + "AU12CRF5yj6jBA4o4QHRvTZjF78oZGo4rkJ44dC7zApAm92DTTBkM": { + "balance": "4111.949868765", + "bytecode": [], + "datastore": [] + }, + "AU12CRFwkifFez1nKbXB27vhd6Jy9wuVE1fjuDWxEqbvVuRXAa3UQ": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12CRemCuEa4cR9iAr2eyVAkuSnZu7tZ42S8WdkvXYfSV6VdhojH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12CRpvUDFMTihhtcAv3dGCMzDebDtRNAr2Tgcc19NaXMKMYojTs": { + "balance": "1863.811351121", + "bytecode": [], + "datastore": [] + }, + "AU12CS5RAq7za4mRifYWAybZ9v6sQTeUoRkT6i7CaoyJtN1UdnbhP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CSSvvsygvfVEE9DvB71B7iHDDaQ3Q3LQoFbrerv2xnpZ8DJCP": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12CSYiZgaJ5npTxPdU3u5GnquFAAffjCJZtsyQZvpFikFKHM7xk": { + "balance": "1374.389447219", + "bytecode": [], + "datastore": [] + }, + "AU12CT8MzEGWy26Tj43482sft84fQb7G4JcxHXRHXBSq1iarTCbJH": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12CTEk468uiTr4YzuV3oaDbh9RJsrtcEKZkomjNmYLQyhu48N3y": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12CTKZr2e76H9vjz6rwBjhc1i9M6kpECLMPJZcci9oRCZnTDsMT": { + "balance": "3603.857272108", + "bytecode": [], + "datastore": [] + }, + "AU12CTa8i3y3VBxpyL5nY8GN7ztPXovEjppBp75Spya9bhitV8NM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CUGRbKEJ87z7x6FVLPJwGtJAPteDaY519rzuvxKSKk4DijUQq": { + "balance": "638.642313594", + "bytecode": [], + "datastore": [] + }, + "AU12CUkRbVAK6FeN2MaZmJpj1ck1qvUgq6veW2qEiKnrpNGppvMBy": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12CUqh5kB1mGSbENKLdyvNsTeWSMK5hsE3XriQsXzjGWqrViCyr": { + "balance": "1925.968064127", + "bytecode": [], + "datastore": [] + }, + "AU12CV5WbhTgjtSY8FVQwfZPhV6tt1ifebRNco4frgX3hYgJ8tEXB": { + "balance": "5186.766851263", + "bytecode": [], + "datastore": [] + }, + "AU12CVF4ian7AyC7cg5tZKHrhTKSpEWci2iaAQtwrBnEVMvJZYhcf": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12CVPCzspSicqMNRV1HuyLjH8BR4btY3zxi2iqyT8eTLYD8Qy3k": { + "balance": "1139.177179732", + "bytecode": [], + "datastore": [] + }, + "AU12CVQVHEU77im1TNK1VJTk8Fefv1oRBU4wxVS1rrp3EngnJRnff": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12CWUnRPJQbFmBAbXfVSj9b1kfQNySHA2eCXkycdmnQHJv2rN5S": { + "balance": "201.428493048", + "bytecode": [], + "datastore": [] + }, + "AU12CWbNTyZoesYMGu1xsQnUrgdUodzWkRSCSdWZdt98RxXjAaukR": { + "balance": "686.133254516", + "bytecode": [], + "datastore": [] + }, + "AU12CWpEjeJNr7GYqxsmM9e6W1A9AyqcmDG1qdbBePWoVe43hkDnj": { + "balance": "2938.958149935", + "bytecode": [], + "datastore": [] + }, + "AU12CWpg5w2LgoWCrChEjhvmADUFc5KtpaYJ7DZE7ATcsFiRMTYm3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12CWt8LwuBcvdEoAituLu82v9Tadw6ZCrhQW3LYtr7t8Z7pnVpi": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12CXJhFM6ZBPDmvaDDXivwaL9ierodsKoDQygzgcvD2zydHdPKj": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12CXSbsgfMjYAW6qPP7EQHU9uLvtCHG823dEVSW3URrYQreas5s": { + "balance": "2067.946442630", + "bytecode": [], + "datastore": [] + }, + "AU12CXZCFS58wHczABEUpRwwRC7zQmuoCHeUKBYQRnebwASFar2YU": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12CXa7ibysExwunc31Mud6f3AwNKcKboA8Lw3GpHfsnfKJewnXg": { + "balance": "530.685404530", + "bytecode": [], + "datastore": [] + }, + "AU12CXdtnff8NjDWSPK1GXR8kWEHcxcMZxA6bxsRv7CVWpput9QKg": { + "balance": "559.915214942", + "bytecode": [], + "datastore": [] + }, + "AU12CXpfnbXisPoVDzPiQZJnVfqsUdDh9P8zWa7q1WsFuH2jGyJhN": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12CXsCKLJUy8n5VrjtjxWFd7KdEdmtjpCNQnF84awydvWoWxkL4": { + "balance": "1857.623064464", + "bytecode": [], + "datastore": [] + }, + "AU12CXzzPYnbAN4ofU8dsS88tQWZBBMay4oozZ1Gd7fqvMVSMTJSC": { + "balance": "1322.474557719", + "bytecode": [], + "datastore": [] + }, + "AU12CY2MdtdeNMsDwDSi74ZrMFzYkbAYjE8Cew9afoa39hMD36F6m": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CY3pGeSktUQVgNzZ6ZWtRLaAcgUVQFGmZ34REbUxqq1UeY9MD": { + "balance": "895.144329479", + "bytecode": [], + "datastore": [] + }, + "AU12CYPHWWeVQXKDMxoQ65RqiR8PaDMBNPwH4FZqoK346WvEbCt7c": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12CYSFeUVwpbvrQsYFz14By9AM7gcg3JNgK2hTpRq28KP2GvAP1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CYY4iJk8zwdE9SJdqwqwTJbHmxXwKLWrQYLfVZGXp736nA8R": { + "balance": "1651.852677249", + "bytecode": [], + "datastore": [] + }, + "AU12CYu61pPAJr9KZ54Cdei2ufCKneVEWL2CjnuoQnngM2pE2ckVb": { + "balance": "2254.417980232", + "bytecode": [], + "datastore": [] + }, + "AU12CZ1XJ4HFFEX9fS1P1buTxsKg8Uy8tBpnudzQdJG2CGQga33k5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12CZJQEBHMFAKHQssf2Rs5SQnkuUX2f23TcE6D9k4NsARrMGy8z": { + "balance": "1098.488417773", + "bytecode": [], + "datastore": [] + }, + "AU12CZN3BcNp8HVb9aMsGQzrHqEwQwahFKyemqNZBVNqTwFLu5YLc": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12CZWLnVho6dQAVqHKRjCbHJtW4b9CqDSXFa61whbseUuk1U72L": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12CZXka1Eia4wUwZp8VZ6DC7oPK99bFPjv6xMcJQkWkxRUcK9T4": { + "balance": "1250.774905318", + "bytecode": [], + "datastore": [] + }, + "AU12CZnxjZYWJYEVEgMe8VeSA1mZqirYdNM7ZV5bjcSXsULHv8VTt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CZsBiHjUFryfki5xc5CvDnJbnW19V5A5xkre9xnpfKshx3Xiu": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Ca4LnqtTFioyDJUeo3N3iFReY5yyqiSckSyas4gdDei2yH843": { + "balance": "37.606458825", + "bytecode": [], + "datastore": [] + }, + "AU12CaJ6zDvf5BhmoRJhYtSDkU4cT8TXrfWU4qTNooXd9u9cHLvnS": { + "balance": "6325.638769757", + "bytecode": [], + "datastore": [] + }, + "AU12CaSRQgUHrumgkAJwqr3hRBnuAChLHu5dARo1rNSwZKhQXSJmj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CamRz5uyJR6M8aLJJoohGe77Lez7UqzxVXW2yrURBvaJQiz39": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CayzjjxYyUYjoGwsbjX387gi32vNnh9qqLLN1zk7L3dzUhBn": { + "balance": "814.569122211", + "bytecode": [], + "datastore": [] + }, + "AU12Cb33d2Q9iYJH2RVdBTe4sZhzHoYXEjtZMfJUcsM7Mxiybmisj": { + "balance": "683.931371160", + "bytecode": [], + "datastore": [] + }, + "AU12Cb9XNF6eHz7qeiKFzg222w5G91JLsecTmvZUFf6h9Mc2ZF9bx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CbDc7Ruea1yBLgRDybpz46He7qmBCXUmYu7D1HipqkHjvC6Hi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12CbVbkDiT8j5okosZQm9ASYc5EnHVB7FCUYufFGgnZTVQZn6QM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12CbrqTHis1FkuCrCJNn1e4LghYgposUdHVhSykUxnknofYKjHx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Cbyzxcr879iyWVDpL9amTeTyhKUu1WC46Bk896KiyvG32wiEc": { + "balance": "2891.446220994", + "bytecode": [], + "datastore": [] + }, + "AU12CcFYWGeszuWCku78vUjEbamAdv5EHMKQrvi69NhAyWwRWGJ6n": { + "balance": "145.288665149", + "bytecode": [], + "datastore": [] + }, + "AU12CcT22MooddzH1t5ei4qjxEY4VcwXaT6yWdKQTqYu8cKH2dupx": { + "balance": "1676.254144107", + "bytecode": [], + "datastore": [] + }, + "AU12CcVroUAYDGQrtNizKeFjW9x129Hr7j24UBiGfi2ACiXhYZUNa": { + "balance": "4019.115384415", + "bytecode": [], + "datastore": [] + }, + "AU12CciA1MZEZWuPoMDs8buiy7y7U3kvwkXMqGdP6UwUx1qwSN8qV": { + "balance": "923.246197655", + "bytecode": [], + "datastore": [] + }, + "AU12CcisxWmx4GWoysG2ZZMbSMdQE2nqHX6xDEQkVeZYtcjH2s6DA": { + "balance": "4993.882801232", + "bytecode": [], + "datastore": [] + }, + "AU12Cd8Ax4QSxXUYo5BkK92X298gj99G8u4XgbiqrCmXMUtZ5p9QC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12CdFHw6uyiGzttQCcaE3ExbEtPVd1azDc25oQSM6DtzqCs4fSZ": { + "balance": "546.706621559", + "bytecode": [], + "datastore": [] + }, + "AU12CdKe4UZqPPyKfPA21jzpyxThDriYcrduuURd64fpjDu81H3ui": { + "balance": "1108.085564106", + "bytecode": [], + "datastore": [] + }, + "AU12CeXRAM6fwSyzLGksSx7HdDnFQVGwyAZk8QPVQ7tBENhm3Hs9x": { + "balance": "24.648755469", + "bytecode": [], + "datastore": [] + }, + "AU12CfhcR9ZKkV29axjuEaTiJzoYztpec2JmKLCtrffMbehxv7ew6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Cfj5fWR7QCqzxP24oqNfawwZZhjzKx6JpuKnscLyAtpFxG6SL": { + "balance": "1330.275029392", + "bytecode": [], + "datastore": [] + }, + "AU12CgNC2mTnMLiFm6Kpcmnsbc2qFKC2cvENAB7Y1hm3uMtiYq9s6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CgTRc8LjdSchb2dvVPcCbN21kgfttEutxS9TnWv3qZkEjhJU1": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12CgWTDqZ36DYGtbHSotxWAg1jaTYiyP2ZJeskQveV1yJimnB2c": { + "balance": "793.452881445", + "bytecode": [], + "datastore": [] + }, + "AU12Cgbb3ZYD8TC65XF1uNo8VhcuY9zeCv9HnN3aiyc1gSAMGyUhR": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12CgwMZSHTiCtFip5LsTRMAEpTJi9PBkrcSE9QdaXAKfRb9vNdG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12CgzFVG2xmwbC26EQFFoqnSgio1jU3AfqMvboPnufv2Y83TFvL": { + "balance": "2716.359046503", + "bytecode": [], + "datastore": [] + }, + "AU12ChmC1JV8iNNnmze2CqfvKXLbDEReXxMHEkSy9sXLLUziQWZE4": { + "balance": "1292.334805988", + "bytecode": [], + "datastore": [] + }, + "AU12ChrV4BnoTxaW4sCV788nATfBjkD6u9KN1v2cu5Xodi6bSP38C": { + "balance": "1584.799015919", + "bytecode": [], + "datastore": [] + }, + "AU12CiJDg655GxN3RWiGw3xXt7pQPeTXJ4ULbVgPLFLrvCeDT8oZs": { + "balance": "978.200452048", + "bytecode": [], + "datastore": [] + }, + "AU12CiU31sCNb5cbsFsRcxjEQJndrM5d4Wa4ia5HCrAt3JdY7AGoi": { + "balance": "1501.205845968", + "bytecode": [], + "datastore": [] + }, + "AU12CipRJGbcQQqJibc2yaXUc6Wp3JWL7Db2eygzs9gCmQoFWRvs1": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12CiqfrJfUjoafE1r1QKnac4EM89XiaGy9mCqTDMVJHemupXHcN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CisS1c2arzgorRu88s8cZpnQcMSi2swbqq8otqXTF3NfQEETu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CisSTfrMXS6paxLWWsgJgPPznMd5LymCgXdJor5tUURCm6ZqT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12CixMAZstRyAadKiChWze1N63CsRiSpqsVtiRsEiyQS3259Nw1": { + "balance": "2006.644975335", + "bytecode": [], + "datastore": [] + }, + "AU12CiyxBmFiC7G1yEPyJHAiqfAE6sHRmgTr3mH3dY5RiCEh6AC9o": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12CjcvZpvNQj2SxRhrircMucweVk8jxhZE3dgnMmcrbAwUkLUvq": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12Cjk3sVxU72S1TQT3x1dGo3cBUFo213Ab78kumd4xXUuJrvouY": { + "balance": "2390.213729180", + "bytecode": [], + "datastore": [] + }, + "AU12CjyNsFwnRnJr9aq3gtx2XRE8zvcfTvnw8Qcoma6NDM4oskbkH": { + "balance": "1118.139379768", + "bytecode": [], + "datastore": [] + }, + "AU12Ck1MzTLSowd7VvbYNXGbcs7N9QhhdUBJtUmNBvD9gciD5o6Bw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CkAvrf149eVXBycEx5xiZduGLUZnNyrMcZwiUm3YVzoLXmgMK": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12CkGcrfKy75R7yiBSUYQS5Ni7FMcuahGhJEXeA81iKWsrqqGTz": { + "balance": "1027.954501483", + "bytecode": [], + "datastore": [] + }, + "AU12CkP3jEzeXoUrsfKDfJsgL1haKkwhbfzFWxm4P6QzTFR4YGY7m": { + "balance": "842.798307629", + "bytecode": [], + "datastore": [] + }, + "AU12CkPwGo2ZdVSMdDZvEgFi6xQuhZbDJWo3oDRuEYjco5KMhCnfX": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12CkXM7BGDMWmT2BAbQdWvms2HJtCrjUBq9KAySXWza9VwfRj1A": { + "balance": "2256.818334679", + "bytecode": [], + "datastore": [] + }, + "AU12CkvxwWqYPFHZUVj4WEViTvSAV1efsAYwuvS1163Mryk4SJwje": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12Cm1B62Mv2oyxSSnYaQfwVsKkw9qtnPZDdA3xYZ43fQyQAxH2x": { + "balance": "727.984110670", + "bytecode": [], + "datastore": [] + }, + "AU12Cm1eoBfztsEon7ydBeM6vdUhFMvpwFDC4KFi8oo7iFgNDLAfg": { + "balance": "633.949151374", + "bytecode": [], + "datastore": [] + }, + "AU12CmDM9yXd9svAB6NkupozQDXVEpmRCwF92aKcej72amxtXqhXf": { + "balance": "2764.218174082", + "bytecode": [], + "datastore": [] + }, + "AU12CmP4irCUQrXfUkxTxkCw58W6vZD6n4uUgn9YE5e4ch553hVQD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CmYbtjYtPBLrK19W54zZNC74T5E6TCgQrEZTAJCEuRS9Zfpsv": { + "balance": "269.889611424", + "bytecode": [], + "datastore": [] + }, + "AU12CmjFymxWNXRvJgT7DNsTmVz4WACYM7vgifL65F13hqqcnJ8Ru": { + "balance": "3953.114570179", + "bytecode": [], + "datastore": [] + }, + "AU12Cmmd9VMrjpiRS5DnR6A7Eu1TgpHR6JJB74dYvn9PgE3xv5yYf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CmqeWCbS4Jp7dN1iQrWGCf1KPLyFamuDt8jqzVQrghxgPFHWM": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU12CmtTQyttdrMW3nQRNVP9qAAeGyzLH8HinXSzX6vDbwsWmF2Ap": { + "balance": "101.239677280", + "bytecode": [], + "datastore": [] + }, + "AU12CmvJnCKCktS4Dbak9s3QA8dpvtkZMVwP7weqzxhndtxass7MF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CnUgNizME8ZqjN3m4F3689vmMU4qv3PeUsbbc4odtNXZD4J2Q": { + "balance": "1003.694517615", + "bytecode": [], + "datastore": [] + }, + "AU12CnhZS3qigkZk8WtB5anQDywX8wGhQqdm2RyEgYpoxWDreGyUb": { + "balance": "129.251534336", + "bytecode": [], + "datastore": [] + }, + "AU12CoAHrVTNR63YfBHEsEHjvNqoBC6QiMVwpU9MmrxBs9mHmLhWC": { + "balance": "2303.362842210", + "bytecode": [], + "datastore": [] + }, + "AU12CoNNQoyYk14fmiMzobABYD9U6j1T3ZJVQsKQe4VRN5dhNsjY8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12CoPE2ixSrwhRL4fYPNGLhejTwfrHWxyrqvZy4YRXYHredMHWK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CoWe4zs88cLs3VcFWk3kKTTgudtU43yaz9UwuhF5hSWs2LQDd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Cp2R2WVEgSmkevFh9gyiALd7p25t8vW1pdNGfNght2cAyhchr": { + "balance": "2748.723334978", + "bytecode": [], + "datastore": [] + }, + "AU12Cp2tyXZSTqmF9CxbSNt4VqZUQEjLKkKBt7mZ1aMiou6t1ZLZe": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12CpimofRHd3PvvY7mUTwCtA8QuSKV4txBNBH8XHQ4NnGMAzUUb": { + "balance": "2972.540873833", + "bytecode": [], + "datastore": [] + }, + "AU12CpynWWxjvYPBB5MJ12nCnqutTFX5uPG6SKudHHpeTpwEaR3d6": { + "balance": "3842.343381416", + "bytecode": [], + "datastore": [] + }, + "AU12CqJfMuRYKGzteqmG11ixjw6QDNcxVd7eLkwYcfGxFGXJFcE7C": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU12CqsJgVDS1D9HWKjpby81qw8wfRsvU7mE3NYnQ7qCSmQ1VNrcb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Cr1hbwA5eG76X8GEXggjxKWX4Ea9YRRoxUAXGiP8oSVZiN77X": { + "balance": "3186.039770160", + "bytecode": [], + "datastore": [] + }, + "AU12CrD7usD2s9DhkgLdrRP6z1NpB5awhqtmkn3jDyTN9izcahx7h": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CrLCEZHDU9GQ5eHFX8bx4wiWUE3GJJwiomEUEzxjyi7RozLs9": { + "balance": "2806.685037332", + "bytecode": [], + "datastore": [] + }, + "AU12CrPPFWfqRmThGahKBT5gqvt86Z3JFUFmbekMWMYJzs1GnPrBB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12CrPrTHmSaGXLS14orM8x8dFpn5detbDEBKK5Y5hqhfsGdH6iW": { + "balance": "575.245393588", + "bytecode": [], + "datastore": [] + }, + "AU12CrZMQvWzmwdJxNc6xUdC59Hp4BsFnZZ84qNCMFXxzKHg946c5": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12Craupcg7xG3ihmuLJQn2gFGGemRoKiaGrsP5uzj8TVjiTqXjr": { + "balance": "2445.153554647", + "bytecode": [], + "datastore": [] + }, + "AU12CrpLsBhC9rrFdQQBx4XBCKkfAn3WTEoAfGuxW5QcwoS2K8ijF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Crr16PzGGaMiztGCVK2HoMvv3LiLrYtM3efL7y65Di8xCU6WD": { + "balance": "272.918643223", + "bytecode": [], + "datastore": [] + }, + "AU12CrzKxwaQoq29J8fHjqqCAw1sU7KaQh97o2J82XaBghdzsj5Je": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12CsspgoReNEanYg1je6PNPpiL5jR28uwkLJvxbcVmCDoPDZSAU": { + "balance": "901.034976286", + "bytecode": [], + "datastore": [] + }, + "AU12Csx98x5qP1tnji5ZEaTGZDnr3G3TkKTxdceaqeWiPUz1gAm6V": { + "balance": "1521.468926522", + "bytecode": [], + "datastore": [] + }, + "AU12CsyyxkJbtaQqw2bpoon8orRhPB6B4BFBNQy3E6Jbmbyr3CS2E": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12Ct876updxa939oLPEtzkdYDdQZmPommJdfFc86fT9VQzZA8Sk": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12CtA62QztrihRuayt58H3k9aNK8BJuarqbwd7nhYh38tjuLuSz": { + "balance": "3167.637230599", + "bytecode": [], + "datastore": [] + }, + "AU12CtGVhTa3ngNQ1NrvYKLs1y8QUvDVjh4WxBakBkoYQ3cMsTLWP": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12CtHpzVgvByrnQfqy3TuSEXtLyMHLvQJqPJe8MB8nH3tTcm8bv": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU12Ctr5dmSMQuvDTKdnLct7obVGkxJxikifLzZfJLyiYAX61JSg2": { + "balance": "1056.575755698", + "bytecode": [], + "datastore": [] + }, + "AU12CtujegEKRjxp1CZZTbtork1hdJq4F5sRm4g3m5nee75cAihQh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12CuPTnzCNWAYeMh84g3RQTLM8v5E4JwwnP6raxThdcfrnLoZLM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12CusZEKBXsJBxYY29HJoK5edtvtrVH72zw21AibiA3ZTM8z1QU": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12CutiLgM3GjKbXtuDqP2iHNrNJx6CLPo1GSyF8AqbQAp2DCWhp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12CvBsUxNmLbhpDTGnstVin4Jkt6xYCP5S67Av72huKxVxv8Kg8": { + "balance": "2182.253275358", + "bytecode": [], + "datastore": [] + }, + "AU12CvJtEwu3bancBV4cfgceukixifNHTANdBaxu8QAjqXqYDTATN": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12Cw8sfJWQEvNSZe9ni9A5dKgSCUhht6KdSipW3bokYjB5vcf3Q": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12CwcmdqTmiYzBoNn9TUM4S4vN3KLc4RWxvNScj7gTq4nsA8xgS": { + "balance": "5883.696551396", + "bytecode": [], + "datastore": [] + }, + "AU12Cx2z5tSNxmD6mD1bcDuEqhWJWG2iXBDjk2q5L52VWUvngtF9R": { + "balance": "3012.981030864", + "bytecode": [], + "datastore": [] + }, + "AU12Cx5of1ruGqhEDCGChTsNp2y1P2crsTJ6DYySHAsvnxy5Ug59T": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12CxfHzDXfPesprFa7icRps52U26AuyUvu1vdFmQuJGJ4ujmyN2": { + "balance": "2338.794958081", + "bytecode": [], + "datastore": [] + }, + "AU12CyBdFhxptefzyUNXCtdH9SgfLHwfTFLABN5mtiqWnA3Ez7v7P": { + "balance": "4987.704059919", + "bytecode": [], + "datastore": [] + }, + "AU12CyLoPSAmKe6J1N8gqWtgkwEVuAjsy7G35WRot2H6pELw4dfwc": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12CydPC1bneJcgmTtvw7GGsyHgXvoAkgfX8rQFaDJYkSMQChHgu": { + "balance": "693.617266432", + "bytecode": [], + "datastore": [] + }, + "AU12CzGsqVhHR9cGgoxde2XPGKbjUn8sYyZcSSRahA1hn3SDdjMvH": { + "balance": "2123.603574249", + "bytecode": [], + "datastore": [] + }, + "AU12CzfFQYp8vDtCd8BE2eJaHnBL1oEJXgLnZ1aJaFs1MGgTJvKfv": { + "balance": "98.083940630", + "bytecode": [], + "datastore": [] + }, + "AU12D12q7K96NJH96eFFv1gW936xNy5WD3P9KzwcJNeM2bisBMehe": { + "balance": "1367.926794562", + "bytecode": [], + "datastore": [] + }, + "AU12D1EkhgkWJQgswdABJxWNzGngjwCe8DrwPtvjGnKPkMp1rKn8g": { + "balance": "1278.952975218", + "bytecode": [], + "datastore": [] + }, + "AU12D1X3UAP2YXDBs5Duhr5bwRANVKPRR66z9nhKdY7XpUyjyATC8": { + "balance": "846.948044504", + "bytecode": [], + "datastore": [] + }, + "AU12D1iEZ2S9U3keetJM3cuHU4TmT6M6dMvfjtQW8aGVi8dWPNrqQ": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12D1npTbz5ww8GxsFUq9HaKPPbCG7SmVUqLxuGPvv2fVspBpeXP": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12D2cHMQjVS7Yh2yHczBbkdvgQMfB9v34QCLy2aPUvF35pPTLLu": { + "balance": "2982.025187029", + "bytecode": [], + "datastore": [] + }, + "AU12D2cpNkoBgDG2pZMmY4sVeUXAphgjuDNABoJbv5DCjjDqr3BNn": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12D2pzUNxLqzxqJq8WLVU4QbkFBCzythgLz8frxvzo2fxo2c5PL": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12D3MiK341pNpBRJPNATmkb3Fs3BmChFBUuG9zPoCE4tqihqjhQ": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12D3MtyG94EUVVeLwFyRQd5WuhcdPktrHEzm3v1L1gdH7TQJFS6": { + "balance": "1422.841985146", + "bytecode": [], + "datastore": [] + }, + "AU12D3NzsjX9msBh9wS43uywQFUTX2VHdiWXmArk94Krgnd6Tp2V": { + "balance": "1241.145893449", + "bytecode": [], + "datastore": [] + }, + "AU12D3cLBt4UxP9xVQ5KRy5eZrMygxzswDYerna43a8pqx4gJMtLV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12D3jV99k2vvDejuzSinT6kpX9d8SQKA2x6jLePsxXMhXgP9tv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12D47yfS3Xybp4txfzXPF5sieminW4eMPUyV83shkv4bn1DjR8x": { + "balance": "2168.417641753", + "bytecode": [], + "datastore": [] + }, + "AU12D4HzSwxHgoWSgNgqxbiTRK8ZzKrMABH3fbDmuskTUF7dpPwZb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12D4NXEF8CU3zSLkBpaDc8ezdEm3g22de4kcWkozDMBg3zz7vct": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU12D4WZUHXv5cYjz6SZrbgHpaMky5y7bqTFSL4fbvffSAtTQB5Rk": { + "balance": "968.623337950", + "bytecode": [], + "datastore": [] + }, + "AU12D4uoA3DRYJs7ALfNExtmRK6A5s2yMuJMtLSsWxGJsru5T2ELo": { + "balance": "1930.928843870", + "bytecode": [], + "datastore": [] + }, + "AU12D56UonV86wxW882GtytkFBrLxmNP4a6hPEcNRa1KhZSZe6kEK": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12D5PS5foHdTGqFsX1c9eD663ukx8mmmSZsyCLaTfghinArCxzM": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12D5etWC1D4MhEhWC5gBuxPt4rpQr1ZNQTkWt1Qq73cfKsgG7Rg": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12D5oGRhykLXZZgP1otEP6WS8pj43HMeRJaskrgxngEGz2mq81k": { + "balance": "2396.628278872", + "bytecode": [], + "datastore": [] + }, + "AU12D5s2UrZ9cvC9aaeiTTTP5vTPkhyENWXKXST4YgjQ42da8K7Q9": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12D6kszfyaduJZQFNmix838QjriBExqo7b3diqpkG4crVaAeqDx": { + "balance": "52.805280528", + "bytecode": [], + "datastore": [] + }, + "AU12D71qV75RAUSyKMYLXL1ALA7UVT5cNTxiHTsS1oq8Eut85WRSi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12D7VAW9t3yx9JhB8iANEMAMNTA1XmTUn3Wwt6ZPfNrYft9CKDr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12D7uJ9CX3WVacPFcH1HJ9vASmu84ChqMQAy1Dn1QPu6SkHdvvT": { + "balance": "2791.314642938", + "bytecode": [], + "datastore": [] + }, + "AU12D8aYFrcmewy6Nq9sQZYP3A4dvPfD4k6meiJvthAHh7JJ3UqsJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12D8i5hB1uV7Ryp8fbSemz5r4M8ovo18JoysQyKeNjpjziBsweF": { + "balance": "1308.635083608", + "bytecode": [], + "datastore": [] + }, + "AU12D8q9sSLr2uB3sbT2vYDYwmjzZDabUcyTahC87WVhbCGQDxH2z": { + "balance": "44.353160534", + "bytecode": [], + "datastore": [] + }, + "AU12D91UZd7RjFNu9ByhvLRnzRaXc7v11XSeyRAWnayVYNvzmMwt1": { + "balance": "1466.319696426", + "bytecode": [], + "datastore": [] + }, + "AU12D91zPQiBB1Dg3UbkZPRXsdEA4g5yNj1gQGFTEYbLNiuAmb1BS": { + "balance": "122.240310913", + "bytecode": [], + "datastore": [] + }, + "AU12D9FD7riu8hMbYaNKZqxJj1hqQYf6rqkHsvBeHVLJit3fVuppE": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12D9hBUEJVX6mr4qMYAVfpoefw6mauTMyS1BX14ADYntGaWLnrs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12D9oDHfZy15zbtivkhHyJDdMrFC421XP16Sbc4TXwEgB97JFx": { + "balance": "5054.171798697", + "bytecode": [], + "datastore": [] + }, + "AU12D9v7oy9GPD6nNPd8j5WVrBe3eeyUREtRthx5Rj65Qn9jJrbAM": { + "balance": "867.502440288", + "bytecode": [], + "datastore": [] + }, + "AU12D9vTbmgYQtSBKocVDYq62fLB2sBxw8TLumWEZGV9dCxganefS": { + "balance": "1680.230914722", + "bytecode": [], + "datastore": [] + }, + "AU12DBMrkf6kocw8TSU1cVSqoMxe1GWkbT38dQagakuguaiEUd2uX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DBgy61TKLsecYJ7jQxnsmHgZVGHXr8XAm7dD5sBENsuPHcfyG": { + "balance": "2979.179912968", + "bytecode": [], + "datastore": [] + }, + "AU12DCiTL3CjALWjJnsLFerhAyrA5PexeEvqZzoQkkEFLECMriF6b": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12DCuHovDPAF9vWVooVxYEWCV2zL8cZ5Kw8CNv9pbDUUPk5Hyuz": { + "balance": "1376.145546886", + "bytecode": [], + "datastore": [] + }, + "AU12DD57VmrzyJQy7qkXwBcPNXJ5ewhaCPXTyjUTbkoka5eNBLA9a": { + "balance": "2376.270960242", + "bytecode": [], + "datastore": [] + }, + "AU12DD8gnbMuBFCJ6UaLjCEUNmLYKsWoUGaVBBm5rrVwJpKHFyzEn": { + "balance": "4604.836002284", + "bytecode": [], + "datastore": [] + }, + "AU12DDPnBsiCEXDwy93YpzKEF1pxF9tzzBuLDCjHvEkq4yj4eUZ9Q": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12DDQksPjsCTMwQoLtKRS8JCnk4n3qRiSxVZZ9k2Y5pzVwGqdCF": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12DDui6fEdqgFdQizYePsN6xk9tMFKwuDirsnUkvmGzMaViMBtf": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12DE75bmScz4HTUfJGtKqY49h43e43JjXLAFqcbJ9RXxCg8K2xi": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12DEGQREJPHtjncjXVvjUfuK5o67gyZSDdx4TTmvZGAgVoiLyfk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12DEJ8XwDLKrAURnUgmmS9cpr96ZK3vigiE4U6vn81yrTxfYYYF": { + "balance": "278.239677625", + "bytecode": [], + "datastore": [] + }, + "AU12DEjgHMH5jAyMoZoQWgNgbU3DifGNuXyz6557jM5CkVZnRX7QX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DEqtaiC3yAgBxJGHXq4WpeP8uEBobSsZs2vLZv5AyqCjLcwNE": { + "balance": "1980.392462315", + "bytecode": [], + "datastore": [] + }, + "AU12DFL6wosdSRqfot8p5uWq7uxmgBDGHBxNKpCpytMSSf6b6jFtg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DFYj4xUUv4n2DRXZqLj7R6u6NYzbFdX3ypwPs7XpqLk9131ut": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12DFuSKMKYAQkbZJbnuJ2ERafQGMwrFc4Exw9DBUcThvcXLnzPb": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12DGazixvxKCg5N4E9nR4pxehza61hpAxi7VWG6FbYrQqrfern2": { + "balance": "1674.537671684", + "bytecode": [], + "datastore": [] + }, + "AU12DGd8G878tTEg4swxjVueUH2krr3rS97CNSQBwkZPrRHDbEQ9q": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DHEo9aUEFXpiaiQc3re4T7F8Ap5nqQXZXwbBdZdVAQ1k7RqvF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12DHFGYq5XTPm9fUGktEoGgdRQpaeFRurkxqgNQ9p1A4GXogsoQ": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12DHNGrwemCXqPb1GgPMME8SbjU4H2kg4hUPikRuhL4Nr7vapQN": { + "balance": "3037.026341552", + "bytecode": [], + "datastore": [] + }, + "AU12DHUJj9KRzxsGqgB2fqn8wp91f72hp7izp4AxcyGXscgQZpGY6": { + "balance": "4159.945066001", + "bytecode": [], + "datastore": [] + }, + "AU12DHnswyQg8EBCM6WGwKzMptZKLErMoS4zrZ66xoMzTbPPG3bSo": { + "balance": "845.378229954", + "bytecode": [], + "datastore": [] + }, + "AU12DJ5tWTrCAmZ8JJotkLzidvBJHTHvLmeCCPYJxVFvbFBJ7ievq": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12DJNTnRUm8zW5WWUePso5LyGJTVJsVSDxZFZWAP7wew1Eq6YSn": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU12DKZ55LDvM4qsKdmbL5pZoSY3mdr7Z9gm7zYzjMYE9BAwzHgyB": { + "balance": "1670.827047763", + "bytecode": [], + "datastore": [] + }, + "AU12DKZpfzv1dUCFrCqFaygwo7D5DMvHmjXTbqCqKa1efw91YYfg3": { + "balance": "2657.220894190", + "bytecode": [], + "datastore": [] + }, + "AU12DLDqv1k5t8YT819CfpN97KvgHQo9MpuGasmBYn7tzFrCE4gv8": { + "balance": "3074.745145584", + "bytecode": [], + "datastore": [] + }, + "AU12DLGLL5u8pcErvXCk1SNv6Cy9oDWC8ZWShnV2Z4N7H28ZPsCFm": { + "balance": "2006.193462922", + "bytecode": [], + "datastore": [] + }, + "AU12DLHiYgKtY89cfLC6zKyhmNN2J6P9LLtAhEMpwnSQLyxZcCzD2": { + "balance": "48.820552754", + "bytecode": [], + "datastore": [] + }, + "AU12DLcK3LKDWAu9Z2Mtk1igWGP8kPY9AR8ZUDVEYep9XK4rR2LyS": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12DLiVdryDMXiDaJchYkQsYy76QKfdXPL47XeuoozJTWogVj6ES": { + "balance": "3728.912029758", + "bytecode": [], + "datastore": [] + }, + "AU12DLmAmDi5Vdhm8RGcD76gP5ymXBy4L6uCNBPKYjX9pTDSHcibP": { + "balance": "93.611733750", + "bytecode": [], + "datastore": [] + }, + "AU12DM2PNzojsc15ji28BPLWxTP6yZE1cCip2GADSwdhc2txA59Zn": { + "balance": "2740.421564619", + "bytecode": [], + "datastore": [] + }, + "AU12DM8YJ7JUSVSCQMsg9JoF3dxUeW2BX3nsHHoK6Ew9EiVrWMqG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12DMHwti3poy5kHsLix8Z8MUAhRnCDPxs9p1dfoKGWwxSMtRY1t": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DMW5LEqhvoL6KfZGwM266dD3wvTBvwiNTyLxjTMs1AKQAmn1A": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12DMgBJdRMn6GcZhz8iE3AE5Mg7jMYXMSeEyHU9xJR1wzdjYWeZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12DNDzZK52cBrUdgo27vDjz6sGbV2Hs2PNnwQm9ZJ4dWtSvL6sG": { + "balance": "1753.630553599", + "bytecode": [], + "datastore": [] + }, + "AU12DNG6NbpePB4DTkKhaEfzjN2Z25mhmUijR4iS4EdKVNBRQPkRv": { + "balance": "1865.401501575", + "bytecode": [], + "datastore": [] + }, + "AU12DNtyYyZfiNRXx97aULosiHgRcNQf68tgKNjghrudmBY1VaC7a": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12DNuBMHF6d5rJ8NKrRHsmypFATvzjKtvm74om2Uox2YqZpfEqH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DNyTxw3KVFEBbynwPY2LqXtjnvZsccpXa9BMJfMTrMjQhs7z4": { + "balance": "561.846894107", + "bytecode": [], + "datastore": [] + }, + "AU12DPBNaqQoy7FLePUewCKngyLyrTFfhUwwyi2qn4cRmZt1fXuhS": { + "balance": "1798.937749499", + "bytecode": [], + "datastore": [] + }, + "AU12DPD3noMC8Lx8ZB3sHGCXHaWYrDjBb4VgEqycnsYa4874FGDGx": { + "balance": "4725.286396485", + "bytecode": [], + "datastore": [] + }, + "AU12DPJoB4YCHHvkfoAzeRHrGep7cGfrbS3t7scbkBQxfwmr9fLRE": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DPSY98Vez9oFB7xtPD8Sxa9rG4CRBebqnZ9eCvrt124Ym5Ntb": { + "balance": "4622.554813037", + "bytecode": [], + "datastore": [] + }, + "AU12DPgcEEE59wHHt6P3uWfhBd51T4R3J8Dk67zadJQqJufj8M3oY": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12DPhB9L3LwyRTn1ALHFphtHK6ZtjYua8MHdzNLZjzAkAWp4gXi": { + "balance": "3950.605537102", + "bytecode": [], + "datastore": [] + }, + "AU12DQCRxRh6YFGzEnxpuqdAig1eMoskwK6BoQ3rqqbt1HbRn63L9": { + "balance": "2610.846329150", + "bytecode": [], + "datastore": [] + }, + "AU12DQMLRp6fibKtyPfEDUiJQSjYBPdLzneGUo1vVvG3a9nte9mGs": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12DR96y4bdxd9kTMT1isyKPFQGoRGE95b3M9AR99oAjQrWv4Uz6": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12DRB26e6ATmCXMzrZhEwx8AtTccPEQASEpTSSt5zmmi1nC7hZr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DRSJCf65sFmNY2zCLLSu3kXZJyUiExHbqDK29hQNaqAnngLej": { + "balance": "5185.741209104", + "bytecode": [], + "datastore": [] + }, + "AU12DRXKGnspnZzC9K9Dm8CtjWtZF7pfjavad4ebQTLwfCpujZad1": { + "balance": "22.968646406", + "bytecode": [], + "datastore": [] + }, + "AU12DRbae6LXQ4VFoePxSc7zkUXe7PXushBJ7Cx6Nk67d2ftTc3aQ": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12DRdc9WZ251fkxohSipEP74xW7KuH1YaA99dxDkKtk7As3T463": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12DRfRrtfDHmyFnPDqeYGXWkAfEQfqA7beeP8wM8YdbWUtUPK4h": { + "balance": "529.942191717", + "bytecode": [], + "datastore": [] + }, + "AU12DRwAze7FkZmXXjf143PguqJcYd6XufDKkqbQmDeQU2Xo3PoF3": { + "balance": "1265646.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DS5UenT8Vot7MXyFWVAA3ytD5ZmwV91bM1CJEs9LzswbG6tvU": { + "balance": "682.844026759", + "bytecode": [], + "datastore": [] + }, + "AU12DSn2Sx6rMhxS2noMpdWVh3nYxqmMkCUYTMTBQ7Qqt4MGaYxxW": { + "balance": "895.035666302", + "bytecode": [], + "datastore": [] + }, + "AU12DSqkXcuPHnAdzmqS91dFnnQjqsxwgpomoYz7tTYF3v2n62opm": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12DT61ck19UV5DWAUvnrEFJoMRqarSLpFJ19KNdmbRSokzsFKWj": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU12DT9tEYbnU4PNMCLCEi63tQfDQiSXgNU68oYjj4uScF4Fm783T": { + "balance": "2866.929381158", + "bytecode": [], + "datastore": [] + }, + "AU12DTuzcQZdkZwhJqtHNtgMwiRXTxuvrdsYqSFBqQhfSjhFxuxtK": { + "balance": "626.424064739", + "bytecode": [], + "datastore": [] + }, + "AU12DUfmPjXjQhZVX9aAN5vtd9LsUQSmSPpZm1AhqbQ1ko37B48Sb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DV5q4byW8fTKTHTh89HUBLKQv6LC5c7Wy6jKNWggv1nxiCacR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DVKAW2DegrhVBGD1YFtmqCt9LrJigJbQpVr8uwaFZy4BHCHPL": { + "balance": "3447.699163073", + "bytecode": [], + "datastore": [] + }, + "AU12DVLCaoHHFEnqGDWhAmvXd7Ae8bmR7AbxWUKw2BGztu9432dwL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DVm6r1VUjcg6k5s7NZXHjpfjuxPcELByVJLwAEHtUjZLktnzq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DXM52dbjHHsAiV5DXY4CVdqFYJhjEnt3hQGLAb3sPjb7dBywX": { + "balance": "2142.851160734", + "bytecode": [], + "datastore": [] + }, + "AU12DXNR6qNQPcdvv16WVxykc82RFk3Y13GQLMpRp87W3HXNhx5EL": { + "balance": "61.361751188", + "bytecode": [], + "datastore": [] + }, + "AU12DXhjPNaEfkyixwvY23bT8Dn9omcmJqEZcR5xF21GzLy2VoFpS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DXpTn3YCvbvARDPi75EanffvyPYoTBwFMaFaKCvrXGv54kL8B": { + "balance": "664.114139508", + "bytecode": [], + "datastore": [] + }, + "AU12DY374j1sqGw3vZbSxxdUsZwPuyeQbrHzqZAMgNx9pUqvvcfG5": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12DYBYz93GwEQdiHpuEngibB6fHB91dgjpFg6q99rQwfBb4Zjzd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DYNGMNcKasV5Cqvjihdz4NLSyLdh85yFMD7AZZfbSH5tzG3YN": { + "balance": "2515.255402350", + "bytecode": [], + "datastore": [] + }, + "AU12DYQpVrYFVVz1uXSRTgjskQ6ifQxmKaCdYz3ar2iomYFb7HK6k": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU12DYt282FYdLE3fLRLEjbSvNHq5GwQHySFJtBjPE2BnHgt7LB1y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DZ1RncQqjwjW4ZArAkszVMGRX2yJqEjz73QkqYmta5H3kAT6m": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12DZ2a2EUhC2TKvqfqdX5J4yr9unzfaAo6uLyf5LEuCCYrJgtou": { + "balance": "1196.564382708", + "bytecode": [], + "datastore": [] + }, + "AU12DZDYTjvjLRvgk9xjHQjjuzT3VCTBQBNY2edBgdDn1XLJhxMH9": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12DZXTGKoVpFjVppY5TLXGsM2axHe6oYGSGER6MrguY4mHE6C7i": { + "balance": "1547.318293384", + "bytecode": [], + "datastore": [] + }, + "AU12DZoXEW2oUoA8smni7fiUWSotwojDLUbncPMdMMBjNjPiGqgr9": { + "balance": "216.604046074", + "bytecode": [], + "datastore": [] + }, + "AU12DZpdpEh8cuxPriL181qFcRsWtFZAuC5qErY4v3BaM4889zka": { + "balance": "3266.004463272", + "bytecode": [], + "datastore": [] + }, + "AU12DZuTv6xXV34JAfwmgmc8KCj7a9xiRxZ64j6Pt4aQd2LXTuYzB": { + "balance": "4544.523082246", + "bytecode": [], + "datastore": [] + }, + "AU12DaBGNbNDaumxWwmJj2ZpJFW5J8yPzx8YLReHQ4dci1GnAK8RK": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12DaH5xfbNV7LFiMAhws6jwf36sFMzYHbn1yjyFnLPXQ9m3S1QW": { + "balance": "1004.422969858", + "bytecode": [], + "datastore": [] + }, + "AU12DaHSqP262WL1ppBPKm7tVQq3cm2u7nRmYYe1CcPAmRGMvsoKS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DabU6BjoRsGJexbdMzkDK1xKBwsF1xn2E24yoeyVo6DtUQPj3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DbfhyaboeXaXTJk6o9Bf2Rdo56nuxaihiSuC1esgG1x76Sxoe": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12DboVNMuY3pcr6aPBGypJmkJuEEMRD6bYBg6gyjpwgfpwEd8U8": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12DbojP16JLTLFBRagEvGQgzmDsMVxXnfaqhqBNZ7kyKAEC7oxw": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12DbqD62LRCpWNGnb9DVbUB3y41eW5kYMdSJLVEQpPNQYvNuYzU": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12DcKR75u66wA5M8xbksgdmStWE6NNczbCeE9YuCy87XvDqAVWj": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12DcWt6J4DZZYPC67xGhVgHegcaFqTJ3DsD5i7VRFP8fjYzxw9w": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12DdGNbn27FxJW2mtzu1HqG69GVEnj2ENRbUYgn9z3TX5y7BPDb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12DdKnXmKt5eub9AknRJnvERqaUCkHfeYmDTLAeeXVUVw6hGRBs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12De8GYaJ4Ro7jg6sQx7Af3URo5dmCNEnvvgKQWkzcAdkHeqgvA": { + "balance": "4520.783832451", + "bytecode": [], + "datastore": [] + }, + "AU12De9YjxUBw1HjHrrjG6X6AC4BYQ1m9GtSGx6GJeZj96TguGTs3": { + "balance": "1417.720924693", + "bytecode": [], + "datastore": [] + }, + "AU12DeJtGjdFwsSnXepAVnyiXPBpSuiE6FgmQw4N94TyHepjrAV3J": { + "balance": "2014.412267693", + "bytecode": [], + "datastore": [] + }, + "AU12DeeArAWfBf6kjQfTAjFmGv2p45e3syETDYzNogWTBYNtbaqz6": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12DeikQv9Wyb88yfJtnfaxepWFmNanUUWvo2MrCJqgkSVno3kFx": { + "balance": "38.003629538", + "bytecode": [], + "datastore": [] + }, + "AU12Df1HAmohFMGSwxtYYS1YnoNQXL6wwVgdikzTDMrGSYxtiQjV9": { + "balance": "2620.167489033", + "bytecode": [], + "datastore": [] + }, + "AU12DfDcrLrpJkrk4DJ9L4BGxkCudf1V6pY5c9Derqmmxge6oXReD": { + "balance": "1699.252326133", + "bytecode": [], + "datastore": [] + }, + "AU12DfFyw9T6NCBXYaQLovBGghoDNG4rBoBruPJ4LvsjqZmG3MeL2": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12DfQisGVF1gj56JYg7xiMMxBdhK3iUiNVAH9vpLjVY58Ws4ii1": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU12DfSF4DACNPdR4g8uZe8hqrBpd8NWnH9avYZSY1AT5MM14qBzw": { + "balance": "12.252991457", + "bytecode": [], + "datastore": [] + }, + "AU12Dfa2bSGbkCHijyZJwxbYfzH7bSPUYNFUscLHxKPqhjR3v9Aks": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU12DfeVYVUvapjrnDKyb5TPFTDU8GaYBEutFcTiDf5FV8jm8s4nD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Dfg4T4jqsxADPAdbgfFQtkqbsd4XGeWuk7XWVfSAA4CS7zUqc": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12DgDphCzW8jdJV7QGag97WCEcfnBcSsReYDoCR23zmkQuCVYoD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12DgEKPphXd7QLYupNdbNf7NzdkX6nDRGce4GKFP8bZQVgmV9ps": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12DgTsczsxaPm9JosTN9n4Una2WhDDbSsNksNwUv8HbuCAVNUQo": { + "balance": "769.664049860", + "bytecode": [], + "datastore": [] + }, + "AU12DgWJzpzfZqGJ1WZZZcemPA8juWcn6ki7qTpQxPaX3BJ4e7mm1": { + "balance": "2675.895193489", + "bytecode": [], + "datastore": [] + }, + "AU12DgYFsAunZWX9eYDjJKnqgLs3AYkgt978XS56sUQeQryhEHSFr": { + "balance": "1108.724391533", + "bytecode": [], + "datastore": [] + }, + "AU12DgZD5TRpir7cuAHz9WhC1du4cR3UEYtR9bnpskG8XzXeBSFVk": { + "balance": "3333.525180988", + "bytecode": [], + "datastore": [] + }, + "AU12DgqUaS4D94FcsPVcHa5EaNtwgyDSiUC6Ed6xFfhPwXAqv9vdp": { + "balance": "1058.383759372", + "bytecode": [], + "datastore": [] + }, + "AU12DhT5xmZs9shyQmQLPXh3KewrzKKyZXH4DFcYnMdCMQfcP5vku": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DhWs7HpnfgPVSJwvdcLiKC7doSwNTUNL3yTZXnisu8RxBUU2X": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12DhYt2WmT5B51oKAHDsRCZKgssJDAVtDmfpLfwJw7uYyzVWF7Y": { + "balance": "16.039807523", + "bytecode": [], + "datastore": [] + }, + "AU12DhaY9cW8Dzkzgy23x14UcFugcj9MwBmTFFiz3Cmsm6cYyYb2x": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12Di2Bqqu4oNVsduJcMZPCsrwYGnDNVwKZKBGZDrDGwqpBE9rng": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12DjQoipyfAox9G7bfw17F4ovDb2D9ey5tM3ZBDCEF6hmPdEm5w": { + "balance": "3930.387609051", + "bytecode": [], + "datastore": [] + }, + "AU12DjaaLRd5DAgFWwfmQph9xLDpfKDL8nfAxt5McLFd5qUQqLhzj": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Dk2VTUXNTiLr3g77guhNGtyfriX3x45CEYpoZVoyR77ajdg1H": { + "balance": "2553.972995661", + "bytecode": [], + "datastore": [] + }, + "AU12Dk4NTgKa9hAPpLHsMMYKcbyvR4WxXxzNYHvUvre4zMyGGBRVN": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12DkU5qNVzffULDeLowJLpQriHheg5WAbNvcfXgd5ujAGxTPUM9": { + "balance": "4578.595076643", + "bytecode": [], + "datastore": [] + }, + "AU12DkaD8b9Ew8He9n54yrUs35GpAKA4kfK3h4dvy6VZt7VNucinH": { + "balance": "16.323526554", + "bytecode": [], + "datastore": [] + }, + "AU12DkgvM7tYVaUDkiasrb1BBN7qL26nAdfeFETyMSwUgfUCw6xWS": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12DkzuQtpggeCmaxoYWgrNG3pBuEW1isaMAN2xH2HiHULRKYVBE": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12DmKZNnV598SCWheWdUANx2GgCAcFaENwUsK9bJgp5g34JbyqN": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12DmUZCnchUPTk1AGyFDfDDfWyEosNJQfqGje5PmPNnvKFvDtFY": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12DmXqzfk3LNfxgpWgZhaSQNdxnprZBAqVMJQfbmZbEj9FJRZd3": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12DmY6d73ztqLb9Khzh3ErFBGb38pfYK3sYYhSWbKoNpNoQEYYD": { + "balance": "575.727340738", + "bytecode": [], + "datastore": [] + }, + "AU12DmZC4SPHG1EiNL3Y6b1koekDSmy9Di1qc74BPMoVnzNk1Yw4N": { + "balance": "7248.789860024", + "bytecode": [], + "datastore": [] + }, + "AU12DmsLBfqJa4VmwtnSnwjutpFRxKTDoeaotcDQB9k7moBfPcmKW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12DnA7VQ3ySXSJ554ximnZT5xBoPERF1EvTsFPrJN2oyLXozD1e": { + "balance": "2560.378087478", + "bytecode": [], + "datastore": [] + }, + "AU12DnN4Ab1DJnngu5gEHbk57LvNmA6KvnMACE3X2YAvNwJxrJxPL": { + "balance": "2238.967549643", + "bytecode": [], + "datastore": [] + }, + "AU12DnU3a8mXVJLMq6DWU2gqQepA3PRe47Ni2WEyYsqLrY7XWtd7p": { + "balance": "541.453309577", + "bytecode": [], + "datastore": [] + }, + "AU12Dnc3oeLaZ2qDs4Qvqs7Mw24TnoG2RZKWUXNLw8dbHFqhR1bQe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DniMxckraRryUq6UV8XeeXYYXD95P3ZLbac9MFqNRxWGgLByg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Dnr936STNNSTS3ZTRtaz8s8xj4c8yxzMLiwz3mT7t4xLuwQ9i": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12DntBocYhjKBWrp4mAMudAU9EEcnJwe4KaJAPnPVmCJxtonJPK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Dnu91kTXtSYJ5KTuBc6XZ3Bk8s7GQnPpbQvWqySYEvjycbCbr": { + "balance": "751.113992491", + "bytecode": [], + "datastore": [] + }, + "AU12Do1GoMQ8CWxgyUzPn4MK91sZ8QKr9k5ruD9J5f5ERES8MW4Hs": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12DoFJd91hMyowxiPtF9jTw4c6tbET7TTrG6krS99VD2pmu5fpv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12DoHX1w1Yxkw2oT1ev5gAghWAqXKQc6vdUB5DobWZUySDShupN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DobnuokRdgmGTt4X9Lr1hp4WN8qmjWacMQWNZKAW5GC3cm9x9": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12DonXBP9HdN4zTfpnxmKs9YzdkxULZk8NqXe3447r1uQnvuxF2": { + "balance": "1514.563977380", + "bytecode": [], + "datastore": [] + }, + "AU12Dp1eRfWgHU7xuVgjGGALhAVg67fgUFm3N8dURq2CE92E7T1iD": { + "balance": "166666.800000000", + "bytecode": [], + "datastore": [] + }, + "AU12DpCEn1hK8diLBTeBM3Y9m5djNbDy1snqnJfP6g6D9aMKRqHpr": { + "balance": "1834.655361373", + "bytecode": [], + "datastore": [] + }, + "AU12DpLT3u5oNfF6mzWvWRRamwHK6zReBiCsNfajLrfcNdBEwyxJB": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12DpYMxt8WvM4G2D5iC82jvWkmfRYnQuZYFzB7G1gEgv1rXQgBt": { + "balance": "690.895729112", + "bytecode": [], + "datastore": [] + }, + "AU12DpuDPemHWbUswewqEYTr3Gubwh5BzyKrsWmEKVXMiW5KU5RkC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DpwXq4rHD7djej7PqCLZjdH1wKfS2Jkj1NVmqeRGkBFFbEYYk": { + "balance": "1464.755921947", + "bytecode": [], + "datastore": [] + }, + "AU12Dq5XxbuCkn4THXLUJKPWTxTWMoNPBWS8MZ7HXZp4m4HKtMc2R": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Dqi2QiQeszuNAsjDrCCb1bReC2C4rAGX2PxsPvoWcNBZSWdjS": { + "balance": "3602.275723838", + "bytecode": [], + "datastore": [] + }, + "AU12Dr6zHvsCPhs6DNbyBmskfTv4Y5LsbUCibjAEUuanm3RMsYnvH": { + "balance": "1212.516252200", + "bytecode": [], + "datastore": [] + }, + "AU12DrGqMsS55aLFLCgfrf3ZzswFJ5Wa1h5jUfJ5cTN5aHGXwHncC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DraSGfsTkEE3KjaqS6DGSUoeXrQZbnPvvYnGMKYBhJ7CrRUQs": { + "balance": "2929.440302247", + "bytecode": [], + "datastore": [] + }, + "AU12DrgXnriymt25JDkepVZ9gcNd7TqWymUYmTHLqFmKn1PKAJsHn": { + "balance": "2551.458211765", + "bytecode": [], + "datastore": [] + }, + "AU12DrwRBGYcNnwVBmPnwjymtvAS52fg8MgYAoHWxWditdUCFov7m": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12DsFgDE2qhxUrnAvCAauwkYGjxi3wdM8RufM5kQ2ThcNaq3ZdK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12DsUfWNK7mCv9rQitQbinVf9am6gNTAiFfRf4s6TFhf1UxGQK7": { + "balance": "847.297381753", + "bytecode": [], + "datastore": [] + }, + "AU12DsiTZB3FXLYovUW5Sv4SSQmzpCG1Pi8GyRYcU2kjQv1Jy5NEp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12DstvWrnLjXUCBwcZUQ6Cj1tJkJTfcpy4rPmxmjbr8CaibgEqK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Dsxv3RccATdnufTJUxnPnkZ5RQnrnJYcNKhiU2nkf9V4Dk7kp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DtdJmwb6ofL2RQMkbYA9DtxYvM73Rgkh9sRmpijnTJzL9iwf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DtoJaB1khQzdfPbxUWFqEiUHgQK49Rz3xhEXY3qPRddhoagPx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Dtw1CDrXuJGD8dQ3Np7ooenGqdr2Gz1JH9T8YJhPKZ8UeiG7Q": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Du31RfxYGLkCJ7CMn26YYwiXmSKyGfy9kWXqfLjtkD2dkn3WF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12DuNn4EntiwbwZadPyqm4qBumfPZHSXXutsCPdptXPKq1Pe6V3": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12DuUaQ5JygxJQkY5drTeUH8RnzprENaQC1kHLNP2VLRs25FoRi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DumbogKfy8JTjDZVF5F3VgWsLFt7XrbmvbnzwqjE78HEaHq4f": { + "balance": "1797.869560720", + "bytecode": [], + "datastore": [] + }, + "AU12Dv3QTq46QYCQyiSyjKMeG2G4N72HvbmsbhYiypiMxXXNMnYpj": { + "balance": "3257.159042945", + "bytecode": [], + "datastore": [] + }, + "AU12Dv6FmaFcYoMUXJTSPskzKqKqLEMrVeMpZvHX9e7Xiqtokyvq8": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12DvTmgiFnZWCur6G4YBaDmEY6LBh5tCSpPEowusn5a2DBvAKcN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DvUFrJpTVWoMrKnmbZ6c7GpWPDhL9fRVHXEoytnBQmAQd6ULr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12DvpkZTAbnvQcRYKYAiCXKC52iyZnFeN4Hm3WtTSXbsqKUZLcE": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12Dvr6zjBBUGtw7Sk77CydAub1piri7quXo91BBv7g79TrKYFmH": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12DvsdKpboKw9AoWupbT5RUmyg4syrMVFhximvDAxWELU88ie3b": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12DwaiHVRJwMDS6oadtUssMmn9YHyxFEaatD4yc6oed8Bnxk5ki": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12Dx7Hqfzx2k6eJ6wuGCQSCpzoEtr9UHXPQ7bCwEDW496NfQ1TY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DxQy3P1ski1WdVPLDqj1XZzJByhfUFaUDXrXQBVvDTuxDQM67": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12DxZSRMuQe7Fcxz81oicTvaVDvs5fEkNF7bBydQ2GCKEyXzyzS": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12DyFiQin1vx6VaVRkRA98DsCRvac2H3NvC1ZkHcjMkXyuoTx7t": { + "balance": "1668.873224209", + "bytecode": [], + "datastore": [] + }, + "AU12DyVCBziSPpVY86FDGd6wcma8goXz5qcH2YXmPM1EqdCSF66yA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12DyXXtNok9Sic3AQvyKLsYz25uo1JzzCBY9u3MPadU3zvoCHrk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12DyfjNNrfhHdnDx4sai5YtH7FxHzFA37uPNorCh7984PyQuG6t": { + "balance": "897.855040449", + "bytecode": [], + "datastore": [] + }, + "AU12DykEHGVj4LokEW2NsNpMLSvDg7KsSBTqcNJZBTg7bZBqM1ByU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12DywyEQQoH91L4gztzgkiKDwYYMDsfrAVc7xERhS6ZtPTErYr9": { + "balance": "994.906492848", + "bytecode": [], + "datastore": [] + }, + "AU12DzNZphAGFMa8RqtgorKM3m756pRPexbeAUCP9utzuSydmx7Rj": { + "balance": "3747.129322884", + "bytecode": [], + "datastore": [] + }, + "AU12DzUQwKuLe46Np6ZGfGyNihLgHzuWrZS74z4CYGvNuDQQFtNbu": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12DzpwkjHXnXHsJS9ac9FNrZUQdusocZhDSbNxaUFuENufN9Aj4": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12E19MC4Q9Npk6ZApyWsHmzNcvnGzkDrYKryprHM23E8pNUTifC": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12E1BTTGZLwcRcFVFG7Truc3BzQPbRNCox8zFeJ2rMKm7nKw6So": { + "balance": "2729.921677183", + "bytecode": [], + "datastore": [] + }, + "AU12E1G8VjJTDEjGTJPJX5spbhPuKtQQjhsvoybsXrZiMyzcnhtAp": { + "balance": "1880.140622311", + "bytecode": [], + "datastore": [] + }, + "AU12E1MTiRfjT1JNcMDf5zVGZKAYRRzCJzrMHYAFVoDa9xhBNdvMp": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12E1Nne8wyeWzdwqPd7kRt1ZF4JR4fQUNJW7c6AKdLUrzWiXLLW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12E1X9M9Q4dEUxtFXYJEuocU6814WXXcmjTrhTxFpWAunFna65a": { + "balance": "3074.542618936", + "bytecode": [], + "datastore": [] + }, + "AU12E1eyfZGDT2LFhnbVMdDf7AcwL9hZjfaY5Rc6YoeWmKWxtAyXY": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12E1zhjQbhBZ65cLxCXPjerJPzctMah8cHLFhv77mBRV8fvpryE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12E26VMsqCNuR9YFDrUFx1JxJXEHtXJdDU1fRJ6zu4BfnskC56e": { + "balance": "3178.870463248", + "bytecode": [], + "datastore": [] + }, + "AU12E27riTAY8zvQDGpNHY6gMgkpWemzh5F5hxoPkpAa8QYBH4f9a": { + "balance": "2753.184800098", + "bytecode": [], + "datastore": [] + }, + "AU12E2ENjuzu9epdcGjAwoMFYcgKnFZFmm7crak87CWVBziS7wJN": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12E36SCg437doNQor89rg9MSEdYCG34chWC93vXn31KXdBGS4rr": { + "balance": "2714.545339847", + "bytecode": [], + "datastore": [] + }, + "AU12E45EergJ1mc4qDuh4rwudA6Gf3QaRaN9k64H8GLEqyTeRG4Vw": { + "balance": "660.754471297", + "bytecode": [], + "datastore": [] + }, + "AU12E4rQbSdkudwiJBanXT8bWk76HVhZoFvgfhh5g7GF2cxoSm2ne": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12E5UGqTHypkbxQtq8JFGMxuaND5er2eZmr66a2rHjQZF9KejDJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12E5ZuCT7u8LpPijReQbWRSc99GzJwmtGsgQF6BPxZeLv6m4KVX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12E5ao3HCjeeprkbGroGZM2yLFcTqqKtG1FfwMiww8yfTBCJoTE": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12E6LbDSDnr1m6sQge91oeKioaNQZLTAHr3RVXFgP3q3VhTEMpb": { + "balance": "2812.584234075", + "bytecode": [], + "datastore": [] + }, + "AU12E6WT3V1P3DboB71mbzgsgtwu7HZXh1sJ9HgZaeKR52ztwb4GV": { + "balance": "671.604107794", + "bytecode": [], + "datastore": [] + }, + "AU12E6dSYRHMD2ksSnMBXA398V4P6XMRW9ZvxqwT3XXXK1x3eETPZ": { + "balance": "1555.562485485", + "bytecode": [], + "datastore": [] + }, + "AU12E6f3AfpskqRMHGGJ3NeBh8EEPHH4WF1z3H2kLGP9AoqFwwUZ5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12E6nGph4yCrqVmDjJJokG9SNhSiV1pGih2Vy7K9yU7rWnLhuJU": { + "balance": "807.033436490", + "bytecode": [], + "datastore": [] + }, + "AU12E7BcyUfh5rdLa7tdAxLqWJNGfLsUdUWr4JC7i6CGxgPqkng4v": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12E7drNmgVqC6kxd3N71fFuQrfBetuCGY4XG9YZc3koYAMbGCaA": { + "balance": "2264.331646306", + "bytecode": [], + "datastore": [] + }, + "AU12E7iEsAjYBELEm3PDHX4L9ycvGr9a9pymT9oDQUWb8zKzNaG4q": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12E7oRjvtQ4P7JKAT6Hj8ymVkTy5Wtm66riVVZ4LX6J7Kgw58Py": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12E8NvFtnFTpKjNJiTiR6hHPS5bBpKRKrQkhUCPWtv15ywqm1zz": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12E8TbyMqrXJQKYBLhtXSxowX1DV41kHPrvTZeTp1M3r6NRrXrB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12E8UtK8Bs5AdtBKa6NwYiKLTwzhVGeip5az91H2XpPGuPkspcg": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12E8zRP5DZfSS4atRZETBkUvoBkZJ5YnwCsV52PeeNGbpYZBJmt": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12E9FBqyuyV4np4KFuuvyBFqBFbuAgQmsMTEdVJLQnV3XeUbbRy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12E9VpmZzSx8zfCU8wgxDRvkLqtgTV9QT9ohnrWiUPyhRFwvp62": { + "balance": "1765.347577089", + "bytecode": [], + "datastore": [] + }, + "AU12E9YP3aetQ5GFCprKGD2hLn564YLa1Gq5VMRKqq6248YRMzWrK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12EATZs2qFvhDGWMDyZqNGi5FZU57X1egAHdWFwRBPYcQWBbNVS": { + "balance": "624.010514231", + "bytecode": [], + "datastore": [] + }, + "AU12EAZCyiaKXhQeF3BsMh8xwpuEFDQdahM5mrMFU9mw5GCVao3NC": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12EAafDgr9HgMpGd31RKGWCVbgMS9CJ64LfrMhQXyMgTtgcgYfq": { + "balance": "563.774558892", + "bytecode": [], + "datastore": [] + }, + "AU12EAqTDQtqDaBuiXCFhF7VHU8AM2cHavGq34keaVaHVWCtqLm5s": { + "balance": "4533.546852124", + "bytecode": [], + "datastore": [] + }, + "AU12EB2a4ryNpuGLH81uMwwRP1GeLT2tJVo4FddJq1cUfwbgJqDGL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EB4ck4emsphYCpfVm2Qu8zC4hALwWJ58Do4CAXagN1wEeJENi": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU12EBQ5n97JayPYCEkPEVfcRM1H96yV3fv3obvx2a8vxKakBTst7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EBsoy2qoogFuq1djE5UqeCnDRnfMRJCioBVsgCSfxhN4fXfkZ": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12ED9UVqw7RLbKw3K9MbtnNESSZpvGQmv3sLt7cKKT1MRUhX4c3": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12EDafpB9BgrxVrdWEvnNB2sdZGLikXHmAgiRAUf5SciQ2A82Wk": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12EEm1u5N9wf9XTWPc4v6V4E98k8ZJWPK2m6FPAojx5k4Ajbq8N": { + "balance": "1581.807399383", + "bytecode": [], + "datastore": [] + }, + "AU12EFAzgr6w7tjthGyY7ByVDgLbp1bGxXT3uvJfnsDyKDxYCR5jF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EFJw6DqYv9wjUzTGkZqhMKYnfv8kVGyJ1EZfbx7qmviU5g4s8": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12EFP948KC9Ltd1JevZpmNKoj46m1Pj9GFBp1MtWX87ysTHZEcw": { + "balance": "2316.691259736", + "bytecode": [], + "datastore": [] + }, + "AU12EFZad7VTov5XZaosvLs8x41v9PaiDpfDc3Qm8ubrMJJxxRyDC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EFbdpFB2iw5DTYXSNHPpY1sXceQNZKgLq3NKeggWqNraSaKW2": { + "balance": "4222.119839626", + "bytecode": [], + "datastore": [] + }, + "AU12EFjA51qWqsEdPK8BojYnZQDcnTXz4YMjmsJvHQkm5fHcXH6to": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12EFrnFoWziwN8Np5y9spqH39Psx2EhQHnFywSGkNcrWVBqKFRU": { + "balance": "1876.392834680", + "bytecode": [], + "datastore": [] + }, + "AU12EGMgzLbP6EcKK9CGp2TqWMcLGjiPLKP6Z4VVf1wmzuCXtSE6K": { + "balance": "1018.520918026", + "bytecode": [], + "datastore": [] + }, + "AU12EGf2dxFT6K2HcEgy9WBnUgLxjiK86ZVgUmxw3mmZuKBUnXhfg": { + "balance": "1057.246075352", + "bytecode": [], + "datastore": [] + }, + "AU12EGxiKpnoamALfhEioa13fatTvcvpwKSUaRL8HEknrohvrRvmP": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12EH4KGGaWCpAeFRRrbYh1wAgrdzyDbJqCGDdqP9CQYMUiX9N8": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12EHF69b5oFvrDcSzzoZcXEx6WejenXjUaMcAAjJyxENvM3ioED": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU12EHHUWstibGjDf7nqhoLH6hivRbT2xwzGVA8NBy37BmuhNgJMi": { + "balance": "1522.564512511", + "bytecode": [], + "datastore": [] + }, + "AU12EHLiLBbxsppoTJTPScuauvY61BgixVeT68fEAztG81Dpa8Wue": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12EHUDDh8TLtiEczBiMZMUHkBxcu3CFZjXUULMRqEtn7Ctcu1mM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EHVYNguKYNH9KaNTzfmcpnybo7A8KFpdSn74D6R21a2w1CACm": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12EHZs6VbU1nmNvN17YSPXXUZ1dM4DN6JAyvqHqbg3E4dA4h4S3": { + "balance": "2546.118570642", + "bytecode": [], + "datastore": [] + }, + "AU12EHaspkdbBcn8EaCddaYYCpMQJRa9jSXtMb813CQrpJ618bFsZ": { + "balance": "1440.571170108", + "bytecode": [], + "datastore": [] + }, + "AU12EHyfvnVPGsq7EvoYAkV7d75BipvmDtgatg9Z7A9cDJHpjEpx5": { + "balance": "4568.779918621", + "bytecode": [], + "datastore": [] + }, + "AU12EJFba8xEJbp1YpHE33uJJ6ZKsthtKKNJEvr7UUGRmTJg4wNSk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EJXcBdbKSAN8P4uHe4f3BAFxgzq1q5FqC7ReNQH4LQqe9NaDz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EJwkmdB7SLyZFKkskuhaRTEo5SRSVgj6JfkmzMGZA1rHsdqhA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EL1fMA2gg6p5imyTKGEDEjVqCtcKa3SSr4kXZxWzv5H3xinVD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ELApkYQEEjiE3w9Rj2eEmoqzE2v2yecwfCF7SfREe2SGtMbiA": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12ELMebcyFSozywTYG9fkMmCb5MfCmMtoMQR9iKSfwX8n87hsTA": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12ELU3QWL3n7dx9mrSnBbKjQdqpeV5wW3atgihYfv3auqdjCoLC": { + "balance": "11445.798585510", + "bytecode": [], + "datastore": [] + }, + "AU12ELhFJ8Fnh4a8Bd4NJU36LhrSbmDoZJMxeaqYATViu2Eg9QpLj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ELpjyKXfvwjwY7WF1UvbTb2m2Y4i3XSmSzjxcyqVMcpSnwuxi": { + "balance": "3415.771468928", + "bytecode": [], + "datastore": [] + }, + "AU12ELvf6yeHyed7epfhUWRp8K89N36Nq5EDVyCpApQtm2vhRVrYV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ELxxB1szkCkP961qcqpBnhtuJWAX8K4LRf7cXSivi12dKpxdL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12EM2cCLthvpnJ1Ufq3u4xwEUaSRF3ASRJEfkSUZ34APN9QZQ5n": { + "balance": "137.788778878", + "bytecode": [], + "datastore": [] + }, + "AU12EM4CwZAGkgK9c4QMo9Y4B3cz6ggezJCJQPtShVAjLjQFCTUpj": { + "balance": "562.084987869", + "bytecode": [], + "datastore": [] + }, + "AU12EML3cZKGAt9miEWmPV6Nj4mWJYpmazqVAz8xPg4tuZjkLC8uf": { + "balance": "3752.712580003", + "bytecode": [], + "datastore": [] + }, + "AU12EMSmmpfS9zNBdMAVEvW8gMB3ifGRpaBoqacB7GEjHQYoU37Z7": { + "balance": "2231.532416682", + "bytecode": [], + "datastore": [] + }, + "AU12EMYT47ZB6SsyC53QfrXXCzGtfV3ta2anV22oz26oDCuHEFK8M": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12EMb64sorp3WJmrXqGb6NSZ5FRnQ6Tgqy4A5z1FHeDhHdo54dK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12EMeQqAzShabcv7rcm3ZdRHCuPf2VnPpZ62UufphkUBPpk1fwb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ENT2GddmMMYR86ygdgjpDUqQMhHfhgS6H3GLM4iFVE8JmZ7cu": { + "balance": "787.462032438", + "bytecode": [], + "datastore": [] + }, + "AU12ENZf7nz4M1ZTn6JRhkDCaoAkKkvMiFFajQnLZfp3Rzx7Ecpkd": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12EPCPEHy3aAXRiUFy7hjBuPntDXYQP4R2MGsaV9kyApGGy5AJv": { + "balance": "791.409514322", + "bytecode": [], + "datastore": [] + }, + "AU12EPUUTDMiffMGaReq8iQd1ed1GX4UsrPG5PBWJRkssdPdztXQW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EQFw7KzHffYChVrNhqdo6uj3HFrMqqnVsgwzYrpJf8EaZQmL1": { + "balance": "44.599741894", + "bytecode": [], + "datastore": [] + }, + "AU12EQjD2HrNMwrPji6ShZkfvENpn6dV9WxVEnnEpVCzkMfG62UBG": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12EQqvc4Z8zv352eA129wVbMLmPwKExDHj1SABujHyrxdoFGLf2": { + "balance": "5706.745566156", + "bytecode": [], + "datastore": [] + }, + "AU12ERE2iptEtyAbKPyEq9DGiQGAEjRXCEhtthqq4GeRJMkqw4wyU": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12ERmF4Lg6dJYVnaX8aBFd5344H5pbC3h4ajuLzjrHYa7WwYrtB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ES1E8AD4M9jdoJTLB3emeGrum5sdCPohqHBvFgbu2ppEXQHKZ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12ES4nyZtH1Q7FzNTGEyi7FsJXqyc9dnGAVR5Twe7R4poScdtHD": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12ES7xfmQ9CxddmuTqssVsgtjQYKHNWRQLAhFwc2mR61BSMqosb": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12ESJwuTe7Xqa2duJePF1zWTqUzdP9FM1jHTg8eWN9Cres8NmAS": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ESbG6TSS2cL2e3HqTTpccdKdvSwctzdyeaXFNtqAUKgTfxyai": { + "balance": "1283.911160329", + "bytecode": [], + "datastore": [] + }, + "AU12ESbqSH43qnCv3HugP2V3AdMQgiYAXEGh6pVzaYg5d1ySMCkRL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EScA8CHYWki6rQ68Jg3rapLVjkTf4ph57HGGScP8fZn72XFPK": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12ETkbFfNj2gVCUpHFXHwhWgWvVB763pAveWuJ4mTbsNhhmDsMu": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12ETvsYTuZ7NgtDYTSHmbpcRWMcNwxwgU54x8TpWcnY7iLQ4auD": { + "balance": "3416.410321291", + "bytecode": [], + "datastore": [] + }, + "AU12EU9MDCnrSLwdVSXvH4xiC5UJqW8K72mHgjYfMy6Y39yK1yY4T": { + "balance": "2346.208780763", + "bytecode": [], + "datastore": [] + }, + "AU12EUTucgCMD4qAUhgbuez36EuZFsCWhmQQMxmTYiJU7J7YRESJ9": { + "balance": "1300.267021858", + "bytecode": [], + "datastore": [] + }, + "AU12EV5YdWpauVnW9HMpAG3Q9f51SwYwkETFySdQVaLGXJhjrVznD": { + "balance": "1855.998217789", + "bytecode": [], + "datastore": [] + }, + "AU12EVHxBpo4tcy8Zo9f8LhK2sH1Z9NGGC7Yp1creNWeW7wfb2aLB": { + "balance": "929.876931419", + "bytecode": [], + "datastore": [] + }, + "AU12EVrvwW6LB5P7La63FDzuKGjwht3R9Vf8Sh4Byy1MvdB44u3yj": { + "balance": "6295.042601339", + "bytecode": [], + "datastore": [] + }, + "AU12EVyNRDjiVCkJoUSxwEkbajcyyZBzWM9NNfZ2neT6NphD1xW7j": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12EWVXH9NJgybhUKrM7h7bLgUvsbzRsu57HomAiTD27C3mwFTX9": { + "balance": "220.816900740", + "bytecode": [], + "datastore": [] + }, + "AU12EWXA7Kg9iZPDfhKbTB76ehj1FCabDZhdd8ANj7DnFe6KczjcT": { + "balance": "1612.759086167", + "bytecode": [], + "datastore": [] + }, + "AU12EWaYjdzXjSdqndNxUfDVmUceW7VkpQ5EXujFnCHVuZ1bpxyc5": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12EX1L3ti8o6F6qXRPdPhxkwdmjW4dSiqJYJRM9UuTwnN5c1nzV": { + "balance": "248.488471976", + "bytecode": [], + "datastore": [] + }, + "AU12EXGQYSoz73FUUsZWVNvBJK6Xkya9e7rXapQYscdxGMmyNghtx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12EXyvNfKW8mkE6STBos4auh3jNaXZmjvED9buKBPsMnip6WB8c": { + "balance": "2403.465811571", + "bytecode": [], + "datastore": [] + }, + "AU12EY22bpa6nYfQpTRY9yuoLcjbFewg1ccMgaEq4fcMXTPQhRyRH": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU12EYY3EBjBPYxRuZDu6FUvBKP4FBNHzUDPXpr3RZx4Srbtnqyrk": { + "balance": "5207.192574238", + "bytecode": [], + "datastore": [] + }, + "AU12EYk8xuFyVKWuNWuNZb3unNT7iVoL1a8oQmQvvjRenFVytHvVX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12EZ3Y9LP2U5KkwkdaLzs7QKV38m7YzmM1noFkvZQnYzmuw6EZw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EZM19xkH339Dt59jb62Tf6d61Ka3JQeyvaavraZMBrS6p5X58": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EZsF8Ff7sXe821G3MJUzeVRGDiXAcVpxjBb3oMww3SdAETUZZ": { + "balance": "3410.241055865", + "bytecode": [], + "datastore": [] + }, + "AU12EZskFi6cTMzmcy23XGipWkVhN5BoD5rmTqdZW7TKgM3ynC6Za": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12EZtb2S9wxtv4S94dS44Z9sQ4wBeVBHXCiLZgso1kxiAHJA8Li": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12EZwHswTwQz74nNojnStopDbK2vtrVo1RX9Fd82UPyhRpESSf9": { + "balance": "4443.213165108", + "bytecode": [], + "datastore": [] + }, + "AU12EaR2NyLMh4FKxA1RK2CinTdisasrjw1uc6DjoPex5ijEijs41": { + "balance": "3676.568994531", + "bytecode": [], + "datastore": [] + }, + "AU12EafH7XKZ8GssHWEAXcGYuqKyj1Z8kB2oozS6y94Sm59N9Qh3t": { + "balance": "920.318610240", + "bytecode": [], + "datastore": [] + }, + "AU12Eb4BdszrVXgCtuCRf6FSP1P7TjNAJZheaiCkPJZew2sLHDwyX": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12EbHHAYd2XSYqCkP18AgsUY4LSXkm8VHQk2Xfxoj1FT53XEGT1": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12EbcCBD9skMqixUJrK6nmhic3KJAMY7PSFQmkJQjYRScvDbEnA": { + "balance": "4381.525763037", + "bytecode": [], + "datastore": [] + }, + "AU12Ebwv6T8KdrHwiF1CHEKxhuR8UScou766gWj8jqYpTWBsAFFGv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12EcFGCedgbL1KM38TPew8Fejb4pd64FvTDM6YAWnjzpjXzN1iL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12EcNkRwWwrrxtwybLpR2fzkTj6hkJysYzzR9HoZydoPnCPRxqG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EcgVJF3wXJT24AchnGA1iXH3KtLU1C42RcVSYLyZS2o2KNMiJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12EctVn2DtoX5tXk66fwjg6Zp3EsmQoyqvgPxiHsLMK7qfbNr9F": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Ecz93R7PXj5oTU93c9p4TeKTnZxfSTfAJ2Ss1xsA5P11Pnc8C": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EczgHxgcNu5rspM8Q76mrEPqBLWRPbLKed2LZrM4BMQGn4o8S": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EdK7k2Xk3A6PDWoheK3S8r1B1fM7rZZqDBEUV2sEihcwapmgW": { + "balance": "4289.247748860", + "bytecode": [], + "datastore": [] + }, + "AU12EdKtFcsoCxFuvkj4Z7Pw7KG9bNjGTRK8WvSMFeBLaRDa3ekKK": { + "balance": "607.575361561", + "bytecode": [], + "datastore": [] + }, + "AU12EddAmBsvcB5osQRdLC54AvXX2dvdngTWtN7fk1fN7PQVAZSQh": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Ede836Gt5Y22vXaHH7hq4Q1iHiec4vDTYaS629NJC2QdBQMAk": { + "balance": "94.854791909", + "bytecode": [], + "datastore": [] + }, + "AU12EdhSKNy35YhufpdRMTjJcsgn5EC7awC8UnNTjuECpJoELHEow": { + "balance": "3190.785071540", + "bytecode": [], + "datastore": [] + }, + "AU12EdkGEVAHeyNt6rxpiyjC52EwZs6DHoTSRhhL2nHsEyRzViPoq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EdzaKzaaas6LxTpXcCXKrzZu8kYCeAhrVfYY1Nojj4Uzsv6PK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Ee15PXUmkCXriarKcocNfeczVaww4ZPg2nM6PVyRe8qHSFvic": { + "balance": "2062.715040286", + "bytecode": [], + "datastore": [] + }, + "AU12Ee2dp7K94odVt9yC3AW7i9CcKPDvF3vCxy2LzDdeP5L6USJba": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12EeWHEtghbCrqJfRNWi1TbygKBRJBT5exxUEu3VoYtH1Yu1uWJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EeoUFTzhoSDdCaX4r6gjTPpDwXrPaUMukQGYowQZDMHg8bbWD": { + "balance": "3711.278121449", + "bytecode": [], + "datastore": [] + }, + "AU12EeoyEmF8i4Jkp5SPsGjVJDZyFttctTRSevpgmmqwAjAhVYgsL": { + "balance": "1247.694046576", + "bytecode": [], + "datastore": [] + }, + "AU12EevEAbSQK9BpNxCFwzwebLc2Tes6jNWPFVWnCdxWzQyrwe99C": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12EfA7W45asWjXK1jB9LBBPKEWL8zEE6VgMYRCw6e14KtVgK74w": { + "balance": "1166.417520940", + "bytecode": [], + "datastore": [] + }, + "AU12EfC5UXPhWB3on9uHEc2kHQ5o7cRNsJz2fccbv2vcNZBEjFLC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12EfPZonHuB4VA39D3hXm3y4rw5jKF1e2pCV7PUDRWQYuYwQWZ9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EffsqfYhrddBLS9PxLpUjL2LCk9j9RZWTkAokpK2Lofm87CPm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EfoTQaqXDHcj7W5p9LwTQFZpARxDMBXWbkGSsgWD2aneaEmgj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EfrkNzZFrq2KcAV1NzpMRnSjhPHMT2JCoEDnVnoqxEVSkeaFi": { + "balance": "2785.547852066", + "bytecode": [], + "datastore": [] + }, + "AU12EgEDpaYgUhV2kujBVrWWB7TTGuQfiubkze5UNqZC4LtKrkbnX": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12EgEkpSg8i1HebCKhasA8fL9jsSobiSadQLiZZXaCXLaMM3SbQ": { + "balance": "880.712370957", + "bytecode": [], + "datastore": [] + }, + "AU12EguAKNBpLccqZAs46TA5GeJdrNMVr1muer1KPSwZFTynMuznv": { + "balance": "2020.392890014", + "bytecode": [], + "datastore": [] + }, + "AU12EhEJZN3V2XRyYWjWPS1XT3dCwYAzxVJy1LGDB18ptESHBKSXs": { + "balance": "2439.539188196", + "bytecode": [], + "datastore": [] + }, + "AU12EhGeWEE8CYPQXaiQAtyfoFyLaDeQRUEfB3cyjcDkpm64EBh7u": { + "balance": "2749.308001053", + "bytecode": [], + "datastore": [] + }, + "AU12EhT7EcphyW2H7yjomEg2ergmdDSSNpQvey4vns7FPFyBDijaY": { + "balance": "1337.431507537", + "bytecode": [], + "datastore": [] + }, + "AU12EhhtYM4KnFMmG3W4tzrNhAZp7uiFEC5JAgX3nPFh49ESEG2cn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EhuSVZKKApVAWj3iSds5pizYqjKBtk1fYtMHzwmHG3oBvyHi2": { + "balance": "1258.184564581", + "bytecode": [], + "datastore": [] + }, + "AU12EiFcqspZPF7q2tkecqWvpavm3mEU76Rfqu4KoEK3wXTJeYFP6": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12EiUehJDpsXTovLFeNktcWTfzLy4NyvLxCbfwnKZp5BTVxc4f1": { + "balance": "5028.487148083", + "bytecode": [], + "datastore": [] + }, + "AU12EjWnPxTQ5YhK4nwhRwguxJsajKH7cJSbnaLnHffExUyXzwBn6": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Ejo6pep5woVyPnZtdffTyK23ZfK7d1QnnzoMoS7KDBDbVtA4z": { + "balance": "1094.856967818", + "bytecode": [], + "datastore": [] + }, + "AU12Ejy87tCHvV6BtxiHyVX6LwGCYMMwDRMic4NTcpZCu81xA2ZGY": { + "balance": "622.637387386", + "bytecode": [], + "datastore": [] + }, + "AU12EjymTpdQZnniDkLf3jC5xBiNNkAzkpUvNhPM1for96vV98gEg": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12EkKZYYdduKDpTkWXSZqhZ3r96KosxMiNPE3CeSbWRFQRnHbbA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EkLo3KXs2h89ndHmVTuy3XHAQz6gT8aBLhPqU1LAriVjrEEVe": { + "balance": "1093.289847574", + "bytecode": [], + "datastore": [] + }, + "AU12EkwvodvY3B9b89d4LLmbpdYiy9G9WnGCAKrLEV3mxZ1cwFjTy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EmJj7BB8XY8gcG5mHjECxretw1uGTE7pLgiRoLbfAvTms6iTB": { + "balance": "2225.763251759", + "bytecode": [], + "datastore": [] + }, + "AU12EnKvoc8tBWgcdRHrw6J3NMoKKjDqaXgHqKMpULt83H9PSGrCz": { + "balance": "2003.981680210", + "bytecode": [], + "datastore": [] + }, + "AU12EnXnv7qKfJdDFQYZsrFfQmTJFxybhEzNv2vqpmG4gKVGqBkqG": { + "balance": "5623.324580994", + "bytecode": [], + "datastore": [] + }, + "AU12EnYkjtgEt1nog23fXTeLiDUrcgH6MY8m2DyVu8UvTJnxPWQGm": { + "balance": "288.212900688", + "bytecode": [], + "datastore": [] + }, + "AU12EnivVvsmGPteW1H8zsxzAstbiUqvHD2Ai7MBUmvg5xPa9tpWS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12EoarDGsYAcsXrGzWTXgsSEFeEuMEEGusfRgFvS3ocgKCaQu3Q": { + "balance": "777.475236044", + "bytecode": [], + "datastore": [] + }, + "AU12EowKhZcEis62UAcSZrk8eNuFNbEm136BU3MV8T8Rwc9t7v1Gr": { + "balance": "1151.666856330", + "bytecode": [], + "datastore": [] + }, + "AU12EpVAhvi3e3fbv63ygrEb9dKMUSdij3Q48KnXSD5AkmUiVPNJo": { + "balance": "866.644045414", + "bytecode": [], + "datastore": [] + }, + "AU12EpgnhuCg5rRNhLqjs5rvvxtg2ysrbQhtdf7BvcG9etAX8Xz8u": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12EpxZL9ZERUd3BnchTRSneeJHoyhzGVQxUfyqJHkuHPATkrtmt": { + "balance": "3324.665255101", + "bytecode": [], + "datastore": [] + }, + "AU12Erh2Y9ssRtT5GJfh7uLkFGMr4qgaNgu9BQ9SPk1hqtpWetGWY": { + "balance": "565.514593316", + "bytecode": [], + "datastore": [] + }, + "AU12ErjxvFohF6ExE6Udp1KpsuzDvnUMFNSpW6vp3d84gcjTvUHLS": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12EroiXXaBQgoSEAtztM517hrzaiQ8T1H9CmAF49ZTnDtf8ZguN": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12EsXY91hDgCvEijHS7DwHXu8r8vJTFRmUvsfsXou9q6KL4Fcwh": { + "balance": "2728.827689510", + "bytecode": [], + "datastore": [] + }, + "AU12EsdV8ZvSCQoHBvsZQEsimCy8UGWKu9S4Aeai1MYuq5dsxv3p2": { + "balance": "2455.111598730", + "bytecode": [], + "datastore": [] + }, + "AU12EsgccgkAnnUzDXzdbTH3rG75G8Q32iWh68vgc4whAXNpf1hpz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Esi7VQLK6hrJS4CLw36TRQbSiBRusk9hxZn5QPWGxm25QjWkt": { + "balance": "2135.150925404", + "bytecode": [], + "datastore": [] + }, + "AU12EsrDozERRhUeH4TUA83LkACLr7WeRLrnXx1W4SLheRSPgoeMH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12EtCXmiEWVnDpGifLVzf15wF6vNHmEtvTq93QmH5pzNomYdEv2": { + "balance": "726.533546984", + "bytecode": [], + "datastore": [] + }, + "AU12EtJExHUsrfmf7VCDqbeZbUShvwdSTgVzABLpynW6XNu51LgKt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Eti5rzs3K6vd6HKy1vySCadHBjQFmcvT2MVjx4JPqf9sdCGrM": { + "balance": "2040.062350652", + "bytecode": [], + "datastore": [] + }, + "AU12EttApQSfqkEkJjKPBB9oeX62kaiGYoJDEptDeHDFLZE39eabf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Etw8nvLDRyCK7pGnd1ppgJAakEJbRJkQrBTR9sWYUsepTgQ7n": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12EuCrpZvbMhtuQFXERsHyDUqa94ntgR7vDmkNPu1y8JmuNckU3": { + "balance": "3779.416058639", + "bytecode": [], + "datastore": [] + }, + "AU12EuQ7xccAHssLx4hRcnSbafQvSoxyJGjMxRe715ZmEW7MN6gBw": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12Euf218GoTLFXvo9DjAh4saNNMTGycns2EXibW9rWpQ38M1dhz": { + "balance": "5257.093612009", + "bytecode": [], + "datastore": [] + }, + "AU12EuoRqqqjgCdTK5VYfDctCgZtbmL4kaKtyrRqWCzxfemREPJ4p": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12EuwvhHMRVmjqL4W71EQtTwqQVPN4xg293ejtJwdHoJfW5BQU4": { + "balance": "1015.596390088", + "bytecode": [], + "datastore": [] + }, + "AU12Ev7D7Kfj5yLBCJEU1oLEqQJBF1LYqL8soZq7uzxWDw77oxCpa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EvEfAztMVGDLLrvwxti39d1s3rY4b55xsGqd5LiaqxKPfBpoQ": { + "balance": "1365.201110386", + "bytecode": [], + "datastore": [] + }, + "AU12EwjNp8yDeWW2htaPVTBjsYuJMWh4Vd14drpdvKho3dxpHtuge": { + "balance": "260.971930782", + "bytecode": [], + "datastore": [] + }, + "AU12EwksRmBsirQndc9bEXGxsLZzgFAxWhrBmLmDBXiFnpMWzHCat": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12ExP9qGLYTe1vgPJGw5BZcTxGsezUmdZV7WWtkzG7eFbJRGYKY": { + "balance": "1194.130052619", + "bytecode": [], + "datastore": [] + }, + "AU12ExQ4pWwtRXsjkecRJAbTY7n74GuYzFqaX3Mb618LqjautLXDR": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU12ExaioEMKwXMeVbQwW7tqfHkJodn7zTyspnMEiVDLdVXLQ2YzH": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12ExbUseiYpBZq3eTQ3vcC9E8H4e1BQVCwL48nPjbJdcJuNtARm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12ExmCGefv2iQpjHEA37DZcbmjNPbR1BZFgMrp23X8BX9qY6znc": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12ExvWqkCAXHkk5QE6mzrx9jT2KugqwfXD6DhEq6v7eCqptisZC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ExzBCvSiehb4Jgt7srnJkyMvJU5EDSCnzRRxsr1v4DP1bN6wz": { + "balance": "3429.141622415", + "bytecode": [], + "datastore": [] + }, + "AU12EyHxkWMKPzYfuoyAEqEas2WKcCE6cd2hR9Y2JD9Z3h4CX93kc": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12EyJETxwdBJ1gZhaRt8QpSc1h3W5seAmiTw4o6qFTfMCsddXBd": { + "balance": "946.396982984", + "bytecode": [], + "datastore": [] + }, + "AU12EyW9XchYZ4MaDf7bUAFLJmQitPndAchSaUePzGzEwwbRYcbLQ": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12EydpBcirwo1cg86F7bqDCzFCHmRSmuhZs8rcStGWnZWwbby7j": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EyyhZiSiTBgSP6JutV6pxqMRZzaMASc7vui7W5pF7b6pi3Rdt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12EzPZJeU5AEYhNNpwq7n7eEZ4cehhP2m2VkxGtsWx9RvJDKxhd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EzUPq2GvsLnpEP44koqq2u8gA6SuGm8bbnCRbNk85ocr4VY86": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12EzW9jbbfCZ8hLvQi7mVy7ZyBSbmdVZ27LbKztzz8Prqpq1nd2": { + "balance": "774.675327278", + "bytecode": [], + "datastore": [] + }, + "AU12EzZGqJuJRqJeMpocpNPbWrWK5nrMfq12Kp97oZ9zvYDr7jxUZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12EzZP8VSRSqVdBVnyd6qetfuTokDeaQPQGA2dgfzgCamYASF91": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12EzoBJ5HDmiz7skSUX86Rg7qXNN1nWZEGycvFWi7NafwCghkB6": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU12EzvoMw69UqNGQFsMf7EG27zoEBRbgz11VuMVdJX2Znvbdwa3U": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12F15aM1TzZypYv8GuiJHheXPb85nDkaKuP6CLPVVgZQmmjwHTt": { + "balance": "4460.196431253", + "bytecode": [], + "datastore": [] + }, + "AU12F19ojUDSiBCj5679AFdCzLg8aTmaBFZxrijDPreZeqdPpoV2g": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12F1TqdEkp66bigChkmYvDodX1JTXsz11BdLYHGWZQ2JRStgM2c": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12F2G9hQ9KsGxsaW9q85VpVfPDRCbxANCGLskv4Tokkcm6rWYak": { + "balance": "1085.880691877", + "bytecode": [], + "datastore": [] + }, + "AU12F2LYdRd4wWLoiFVyMdck5Yv8GmxDxEYJRq6AJrfytwsHTPNYk": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12F2PkYx9cKSZMmTvUDDF3RuesM1j11tT41fpxvFAnkvNAf6gC1": { + "balance": "1481.702659778", + "bytecode": [], + "datastore": [] + }, + "AU12F2ccDJcxEFcHcN4CaeA1Lo59D4m4NVsNLRfpSGNiZ4Xi5mMjv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12F3AY8dXtTaTEMVXMmSZrX4Z4y17gjqt32KwUF4iVFLpxpeyTT": { + "balance": "824.971191647", + "bytecode": [], + "datastore": [] + }, + "AU12F3RUA82jqK8BeLky1JFLb9xp6GJHSsUtfV3w8iPne27iFYxg8": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12F3V5ypu1G8tHQN8bF9n8DuRX6QAZ7p7bMH86QUF9ShpELVBu6": { + "balance": "2686.329354453", + "bytecode": [], + "datastore": [] + }, + "AU12F3WM34fijAXrAYGFpAnRHS1GkAs1L5y7vh1bB8Pu1y8QNsizG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12F3wxhSaRQt7XVSae9M61ZA4eB2ejX6DMWVFYbVUot4yr6Z7Ha": { + "balance": "1180.635482673", + "bytecode": [], + "datastore": [] + }, + "AU12F4ESsPcjUXm7j3yBpBiCtPSKpTp2YNf1WBXtDsTUHTzCbRGVS": { + "balance": "6202.776578498", + "bytecode": [], + "datastore": [] + }, + "AU12F4Wvk1PFiPnAEMF7R1hUSpMgkda9roLijhA7YqR2xdUykeLMr": { + "balance": "6498.802460032", + "bytecode": [], + "datastore": [] + }, + "AU12F5FAuuKZQkSZu9xBjrgvkCrH7jGrMhwKhuRQeUDUJvcmMJZBv": { + "balance": "657.342419524", + "bytecode": [], + "datastore": [] + }, + "AU12F5FL212Gbz2FmGtH5vCSBvUrrHnbmogHjqiehv54txv8mM1hV": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12F5RqQN7tDE9DqzhHXP6jhuzcudBKVhqmXuUgq3bK8AiNr7HeM": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12F644xiB5NhJzZzXwhZuyciPJuqPwZeZhcTscnfz6WcbALQY2c": { + "balance": "1912.414621517", + "bytecode": [], + "datastore": [] + }, + "AU12F6fLR3K12dGkp2TLpFapmAreFd9srGB8Yt9XQiGep5vwZAKE": { + "balance": "790.002993252", + "bytecode": [], + "datastore": [] + }, + "AU12F6ystNW8y9Etu7aT7wdf3zVfQx3gm2H76zX4NyJYVh3r9Up73": { + "balance": "4455.722077677", + "bytecode": [], + "datastore": [] + }, + "AU12F7QBTyQFSAoiL9pLP7dBjLPrC6KmH8uev76eYUJiH2BiKQxpr": { + "balance": "6587.495168484", + "bytecode": [], + "datastore": [] + }, + "AU12F8CmDAmUTWbcmgKmPJfdiTt7Wv5Uw97ugXr8roCCdyYx2KXtn": { + "balance": "1926.337728785", + "bytecode": [], + "datastore": [] + }, + "AU12F8oJavay1Eh2PpgFfGYzKugDgn7iZkvPjKVvmjF931PdSJA6": { + "balance": "2919.936414948", + "bytecode": [], + "datastore": [] + }, + "AU12F93MpsLKaWWdhnJzBPSrnoZUUAPs5XNBe8H5vVcw51vVEDwZr": { + "balance": "2616.676355674", + "bytecode": [], + "datastore": [] + }, + "AU12F9HtigbVVUjGyYe45maRm8h7GxPTm2xGVCEyYQ368tZnZ6PYn": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12F9ov7MUKDox9tfMRZ7jqz7tPuhZJM9BvtJSdoKbtr9qXjhuCu": { + "balance": "5516.904945345", + "bytecode": [], + "datastore": [] + }, + "AU12FAL2mCHM63MoxECmMWGW2dptDv7Sgq2ng7iMHnJRx9zhphER6": { + "balance": "369060.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FAP8Y1Sh9bdCAa2b4dd6UTM7HBDGwDoQebaTQc8UnEPmKQw3d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FATv9aEZR9QTsqCJUZ28a3fS2Ag7P1zs3QtmPCe5VF7ZiDirG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12FAkVa251W7DnPReFVYEADMdiqsaEEhc7BHB4qXNK86AoV1C4J": { + "balance": "5102.200096561", + "bytecode": [], + "datastore": [] + }, + "AU12FBPk91w6YmXQRLMsDb4F74o5GLqvMd1MjVgYHGND3m6Zxe7Qh": { + "balance": "595.786493470", + "bytecode": [], + "datastore": [] + }, + "AU12FBYfdhLoZCkYyfpb2Udb4WB2zugBLaq33TjFZWdTwkt1vjD3a": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12FBkLZETrbxfmQCD2yqjKFLGu3Dpuw1D5YJJrQ5g68eioCZTBL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12FC8C54MzqkphZVNzD49RE1fW77bWM7mWFZc6kWRG6wM2Vvyb3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FCBEP3FsNKrJf8dJrXgstjuVry7NjkBHW566UV26GYjwqhUUT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12FCnFBUcyv2xg3D7ixDQ1SAKsvEbbJ7iTRP8TNYV2MBDn93qPC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FCwKbTGMumcpHzqy7o3y45x37qBN3sNSLDgm94ztsQPnxFcDB": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12FDbHBjm4wJGCWh8ZtiX98hCL3gD8eYxcseakXWMpm9ZzQRe7": { + "balance": "1128.230498054", + "bytecode": [], + "datastore": [] + }, + "AU12FDqLXxWogEbPNeh4w43z9C1KSnRFfQaTHyYuCTuZfNnE9pnJ1": { + "balance": "3036.162129266", + "bytecode": [], + "datastore": [] + }, + "AU12FE5NBUGcttoUbko5QUsMzw6CtrCP2uEibWJEvA1wbiEhs9VBc": { + "balance": "1588.228164769", + "bytecode": [], + "datastore": [] + }, + "AU12FELgDBrx6UEDr7S6Wfa2wj9djkNJCRZm1KDpmDbPVrdzQ3XNT": { + "balance": "6156.190830848", + "bytecode": [], + "datastore": [] + }, + "AU12FEPhQUMwKfHvkpozszoWbGNGDkLsBcKaqZyJuwq7T9vQk4Ugd": { + "balance": "1596.585592470", + "bytecode": [], + "datastore": [] + }, + "AU12FES5ijgqV4JuP1V7D5h4n5wQX4N3hSAgmziuWf8jzJiBGKkxF": { + "balance": "4807.604335956", + "bytecode": [], + "datastore": [] + }, + "AU12FESWTg3XzB7PiPVc15WXFB6hMAbgdfregRemD2Xs9yWon3gvD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FErnT3bnxTM5TzqkupqVF3auEEdoZLpw5BmCAF7GwLcWHLyLx": { + "balance": "3266.371201221", + "bytecode": [], + "datastore": [] + }, + "AU12FF6vqHxBSqNtLRdHBnjvvVCk9V9UYoLqUmJr3ULSwwZuoJ4a4": { + "balance": "1890.295133890", + "bytecode": [], + "datastore": [] + }, + "AU12FFV7LrzB9VT2AjUTNq8t85FWec2ue8jQoJ3FtpgSbLc9pAKry": { + "balance": "2297.730633108", + "bytecode": [], + "datastore": [] + }, + "AU12FFmzvedGiGHef3NbubiQ8U4wvmF5atu2BTSF1katc7uQabjy4": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12FGGYw1ghN7CSq6uS62xVc8YcFfNjmHyrFjuuPV9h3titQNrj1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FGxSGyaUnip8vPMBYqXbrYbfzeGX5ygVGycDbH37Bc6Snx5aM": { + "balance": "1224.065732195", + "bytecode": [], + "datastore": [] + }, + "AU12FHBxQDrdNShKn4eB83UCusE69AQevSibHyusR6p8Qe5ga3Wug": { + "balance": "214.084825367", + "bytecode": [], + "datastore": [] + }, + "AU12FHMi4cS6BnzhwUVmZEjPmjeetp6R8LzzVQ4PvQuCarWaHdv4Y": { + "balance": "1464.104531906", + "bytecode": [], + "datastore": [] + }, + "AU12FHz2UELw4bymqk36FXUCUAf5ZwvkhrtG1ZChJ4LjbLBwhDATi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12FJZkE8CD6PpuWsrbuKsoHULtuYN7Ubvp6Ngq5sWZdM5Nmhvau": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12FJhczZ9QsUiBMiC8HhDAzyRJMXaMB7dWxZY9LqUSgrwe6GbTW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FJqd1XEU9wrs6rEXmpNiSfALYypnsN7DGxLDjHWWHPmr7WEF8": { + "balance": "4400.444483301", + "bytecode": [], + "datastore": [] + }, + "AU12FKCr698aEXs8cNQeJ3w9AsEBpzX9kg6iC3qf78g2ieSdcb8vn": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12FL4qUQihGF69JKg3chjZEuo6hFQ11Koa8M2kDvsY4HSPnXSiB": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12FLcLioYNcixRac4hBqXYGhvLCHcJHfgoXWMGb1sjpq1YosDXW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FLzBWypak9EBGVYDRuEG7g1ULm6auzzk5hgeNtw368cAv459i": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12FM9qec1oJCRgeRsDwu6uVpJgwFk1BF12nXL7eNrRHoaxK35hX": { + "balance": "2536.184119851", + "bytecode": [], + "datastore": [] + }, + "AU12FMbzVX1BZdviRm7uhYCcshAs86nxsR2E3utBWRFH61uDHAavA": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU12FMq7dZQ2TGKF39U1heCYDVvDC6mNyqNNrBKx1YSBqanMJP6Rz": { + "balance": "1978.248414856", + "bytecode": [], + "datastore": [] + }, + "AU12FMvf1AcaqBiENu7Cx9962ALhZi6XqvP5ATnQQya6byS5mJUAi": { + "balance": "1772.076306650", + "bytecode": [], + "datastore": [] + }, + "AU12FNCjBw7nS6gqG6zJSNoMd2hwP8d1KghYZFPXuc76hp3Yzvc4d": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12FNEUTMJaT6hxVhih4aMRFGSr1kuyhhFj3hTmyFEZUxoKAqG5R": { + "balance": "1059.348128535", + "bytecode": [], + "datastore": [] + }, + "AU12FNNdhxF9ovW88qrLw9fPAQ3ckfjzQ1XWCMfvRRMnNayKmR7bt": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12FNSV3n2yKT1y6XEZkdcdBNrwMzdJ2r6gwueBtNpbPNP13nhSa": { + "balance": "1843.356638333", + "bytecode": [], + "datastore": [] + }, + "AU12FNV6Ak3Pn369pKk3jHogv3nZFWFXJPXRweL2jrdFp959Q5mEg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FNdtFZjaQK7oJEFri8ajAbkWzBqcxhYf6L95t1W2T3XnguqXc": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12FPYv9Q3Ttvh5esVrE8LiW8onpMRawHQmtrBRiSyZPuuyDndd3": { + "balance": "253.705220050", + "bytecode": [], + "datastore": [] + }, + "AU12FPb3PaWzKYpQ2K7ogVNm6ukMH7XTaxvqLoS4Xc6SdCqta3n1V": { + "balance": "3167.461046684", + "bytecode": [], + "datastore": [] + }, + "AU12FPwE2nmuxu69VbF8m82QMWg452hSqrj5gz7Xtzzfs5qybRRcB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FPzHhqmC3gdSQTPeHDXbJMrf9CFDV1jDBodGdupNtUeapEiG1": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12FQ5ADRpVUVyYxbtV6iHxuGJHNXLBT8xqyQf3NikCAoUsp1Ddi": { + "balance": "238.265664414", + "bytecode": [], + "datastore": [] + }, + "AU12FQGfriMpyqV2Sh4nUUTuAyd5crVSmp7i9kubXYsmYpmnzxnwc": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12FQw5pNAE5qBnC7nizf39hVePoaeRCLSBgtw7M2GNYfkEwGQXZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12FRVSab9T3PUBc57SVcYJhUcysWgCN8k2ZBSJDwmU5DxepDXVC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FRWrxacfHA7eZzFL14rWP2qJKyWM1GB8RYUfxN7LU7xurs48e": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12FRbyNvvxUkbDtQE2bxVvjhMSP86eDT2gFjofwjdkdqjmtRfqd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FRnBYHVKuQsXRbUmYmxYqqMmHGT2BurR55TGYV9Swx7EMHWf6": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12FSCMERFEEGu3hiA9DuKcrY89CCDs8UWrVH11HjdgfiUMXzyrE": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12FSTyXQ3GXGQLZfHjJZ387mch6BjBtj2DS16FXLN4qn4MGKpXW": { + "balance": "6118.045992587", + "bytecode": [], + "datastore": [] + }, + "AU12FSYrkSPcusNA7xdaCSSFa5uaNXt4125pigvqAjpyFPDuixjFR": { + "balance": "1308.038352932", + "bytecode": [], + "datastore": [] + }, + "AU12FSa1DM62RvYwP7RjhVBGo5ojwwyXBeRwkvZCXZJ2ELmpab5WN": { + "balance": "68.838303453", + "bytecode": [], + "datastore": [] + }, + "AU12FSgioQxGJttYVFVHAsvHqSayNr7Nbz46aBCT7JT2YnVQSVRJh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FSt5b8K4psHyJSZSL3tfd6SvrBnh61S5ENxUuj5jd8zqRiBsy": { + "balance": "1763.196610414", + "bytecode": [], + "datastore": [] + }, + "AU12FTQhcMy26mK75o98hqsCfuwXHsJFd9eFnzZSeimkSLKvzExqR": { + "balance": "743.747785978", + "bytecode": [], + "datastore": [] + }, + "AU12FTcpCLT5KJ74S9v6xhrWKVwCi1WgtL5Tpwz66rWJEAhFYLQkS": { + "balance": "1817.915773209", + "bytecode": [], + "datastore": [] + }, + "AU12FU6yuXTAXJtq4fNt7G2fc9ZyNhwtppkjzpbhh97HVm8sjTuJT": { + "balance": "1312.880670435", + "bytecode": [], + "datastore": [] + }, + "AU12FU8iVJe5eSgnNzfs3vb8hCaQtRhj5Tn5gk2HR5NGMNeq3Bxyf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FUBCNM5FyRYVk3ckERkVnMWwqFNLXWqNSpPrvSCS99AH9X8Ea": { + "balance": "1077.577644512", + "bytecode": [], + "datastore": [] + }, + "AU12FUMbpkKL5JTeCsCsvXywQ1hd8ueqx7dRKJMzG27Da4wyAKyak": { + "balance": "154.272775967", + "bytecode": [], + "datastore": [] + }, + "AU12FUPsZhKmmzrymfM2wQZbajUq4xntHokiwfFSNVVjrd74RMUB": { + "balance": "1695.367454524", + "bytecode": [], + "datastore": [] + }, + "AU12FUWXQRyBf4WLUpxF1tFMHs6RZAxYb2PAm9ibrFe3qx9EjJrRd": { + "balance": "1578.430819104", + "bytecode": [], + "datastore": [] + }, + "AU12FUvoSNFt1hB41jDTQeL6tvkvxAk9g7oGHzU6r4ux26ijp31QT": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12FUzGiN9C67W9YxTev8RjjM9VwfSm12M14mUjzZuW52739nudt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FV9yUh81AtoxvwP8KvPojQm1C4k5PJWSGXbq9uAT6Egx1R6x5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FVWVAXicAa6LJVV8ThJo8J43RshKddimDG7LXBybqE8rEf3Av": { + "balance": "3429.198722435", + "bytecode": [], + "datastore": [] + }, + "AU12FVgynbeuYWLzAWNSHbwbH4rp6MB8e5hKaFjc3YzZrjtUf8LoC": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU12FVze7xffXfESfHH9NBkgmGoexmihpf7t1T74Jhv5FEisschCy": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12FXC4CmED3XAVmEihudtoYEBc7u7HTE7ftvkbFiX1eTFwfknmG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FXNWWpaAGmshUi7mMLYMcMfCa9ceLiQGhGeYt2pPJxerq6KGx": { + "balance": "3253.906517654", + "bytecode": [], + "datastore": [] + }, + "AU12FXYJm8VxJd7uZXf1s6FsZuuEpmqvK4e38pnRms5JX5E3yPbnU": { + "balance": "1524.199346426", + "bytecode": [], + "datastore": [] + }, + "AU12FYemCH98WZAuwH6DQnwsf97qehoAZDkshBR6tsSRgC3KmDc2t": { + "balance": "1738.312224469", + "bytecode": [], + "datastore": [] + }, + "AU12FYfA6QTA3tJbJwWQvhTBiuVSpSqBh5sLfcpmxCzKXbByKU9K6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FYyG8gZgeHusKTfBLhRsg1iZP6ZABJctLwnKVXNiMZe42nnUE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FYz4RSduxFT4kh6k6Hc36TZpxjLzxMM1SC6u2Enkpb8qNMSpV": { + "balance": "2779.261877377", + "bytecode": [], + "datastore": [] + }, + "AU12FZAxxARqyCWyePCTNsYJ2GHzFFQiwhU95deg73nnPh4Uiv2Ws": { + "balance": "1725.621102378", + "bytecode": [], + "datastore": [] + }, + "AU12FZYgYe9xJ3KUzUH1J8Dk7f5dmPY2GNUYW1J97xFvZdwbmybDL": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12FaD7rjLwVFip6i4sLB85Q9Jqy3RjCC7rJzNjECpngeeo9yHQ7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FaMAxw7TaiwL5LpN7ezW5WxFFyRpqErvvLQtpEsayQPbiv2fz": { + "balance": "1765.377426920", + "bytecode": [], + "datastore": [] + }, + "AU12Fai3QuCEZTGenD2fe72fyfgzZ6D6TS6RcB2gRJqSV4BRkFJBr": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12Fb91HZjnp1JnpuAZD5qjPupkbDWBWojoBF8hXNxTDyPVWX3rm": { + "balance": "582.055950729", + "bytecode": [], + "datastore": [] + }, + "AU12FbBAD2BFTXktp2zTcUjsXXEUC9QyfZsfBBjhS8BLsDWe8CWW8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FbJXmi76WrD7FWaRdm1dSvVPU1nfeYBC4L7JHJ2xWT9xmcwSf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12FbKUyT3Sue3vVADcqTMA4rWnNryt73WXCYjmWa9DEvkh9MN2F": { + "balance": "4586.344748848", + "bytecode": [], + "datastore": [] + }, + "AU12FbcqHuMkdDHPNtgxY71ZTZiAqfQs6whgagLXoczpCMUnCbmHV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12FboxCzEXFuZU8fcjQNGAaZfwojdpFjVDuXwKtcHgDxxPXH55W": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12FcC9hqdn3o9WWWSM9Wz2Rj7hnkF86QEUU46qdt6aEeVJSGwfm": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12FcVvkhhjLnsu669sxFCtnrS6KMdjZcYkJePWFxjnUZt9tHbqF": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12FdCjwBi13d94opRmJHBW9LpJShZheeEkfZaKchXdi9k2ipgN5": { + "balance": "1292.782455722", + "bytecode": [], + "datastore": [] + }, + "AU12FdY4id9TibvgHkjjf6n8t36HGnyVXxnaQs3SoPGZhLf183oKV": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12FdjxBPDGD2EgddtDAYYYzYT4xwY8H6V3LdrRReUV65gEiLBqP": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12Fe61hzCHufBPG4E9VHqe6575AgtDfuXdA45ZRwkT9Ez8Gug5D": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12FeJjxDqteHrrHcyYFsAH7wHbKqRoMTZKrC1GiC99KWMb5jEHH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12FeYRnjYL4R3pba2dXHpqr2g9Lgjazj1jNmrwCcXPuVspexT7M": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12FeZDBDVzwum79RxeA4gRS85MJ6vbgz3QhvBkt8a7mgybUjMM5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FeaY2b9dDxos6KQ8ayDBUNTnsZUhvFSfHq5FkjS55SyDBGFLy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FerWotxnnkJYy2d2JK9YCjMn6xEx8wn8UgbUiyfXCwCMMJWt": { + "balance": "2708.670676355", + "bytecode": [], + "datastore": [] + }, + "AU12FfzSstzkqWgGnagz1dV8oLYAeurENaEW69PyRL9tUkjF62YpN": { + "balance": "5320.186088474", + "bytecode": [], + "datastore": [] + }, + "AU12Fg1C9hxkEWrUQaAFSR6Q3XBC2YGaU4EnEmHa5cXkN94nsWome": { + "balance": "2316.191686549", + "bytecode": [], + "datastore": [] + }, + "AU12FgDdWwvPobJnqhis6XGkQ51PNePFgPqHxpxNTLk5hpbqy2BgK": { + "balance": "1309.176758017", + "bytecode": [], + "datastore": [] + }, + "AU12FgHj2erw9L66yCSyT4sL9EQ978UmSCmvP4omqk693JyWMxHAM": { + "balance": "6350.606134917", + "bytecode": [], + "datastore": [] + }, + "AU12FgimGkWY6xhbtmALZHS214bPLHC2kwivB1gKwLRUS3pWbjpkH": { + "balance": "4929.563821933", + "bytecode": [], + "datastore": [] + }, + "AU12FgkYCtU2xLNonQE1oJDBgsBgFQhF7RiUNbx4LWJTfPKmo8wu7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FhCtFzwr4V8BwC7ZwcgPaBDVrZQrm93p8ngoKhkzZPGz18DSA": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12FhuAwLbLvPpV96P8wZqewbU4xey4imq1kuL2M4Pbk3pWik8az": { + "balance": "2522.992577540", + "bytecode": [], + "datastore": [] + }, + "AU12Fi6DkNSHsZMz3LYB8whbGmZuxJkjUV5t6J2xXNt5VUNHppxpy": { + "balance": "2047.611703124", + "bytecode": [], + "datastore": [] + }, + "AU12FiM3PEJ6s4Y4gBbh8g9MSWgQSqdXmFPSB3kkNf8wv8EWAA25j": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12FijiDqAaV2nqLVh9W8CPsmncEFSYK6cXZvBejfHt3V62fcmNA": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12FinFqE97tgmrB1VWjbM6pLtdSUeHF92tzVjhzbEUo9NBY8cu5": { + "balance": "1508.987504259", + "bytecode": [], + "datastore": [] + }, + "AU12Fj5Yid7vKimuZjYNXf8Ufb6NuBuxY9XECryTZTn6Wd1Spa6mJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Fj7GfgZRWHRo12rkQV5zijdDXTH3PpD81PGGww9cYayoDFk2Q": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12FjLaGQtN9ruzrDG6zKp4Dfif7yWgCpmc5V3XXRNEa5S8DtaQL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12FjbT5qhxxKqXusjvnw4C9zChmWfNioPLVTk2haUjahXsfgVWV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Fjn73DhFfzSQ8LpokmKZ5YsGQVcSCVsZ83ai2bicw8jCYFxKL": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12Fk4mmun6YHhyaFczQgogmtKf6XmE41mt88GZC9KVUarXuSHaN": { + "balance": "1828.318364552", + "bytecode": [], + "datastore": [] + }, + "AU12FkRYtKAhGUDBEJ4CZw3iGDkkc4ApiaJPUi1fFv52Uispb47af": { + "balance": "1998.495612640", + "bytecode": [], + "datastore": [] + }, + "AU12FkUbbjWVziNkwa6ZC2b8v9zYC3qZamsN41pGFVWjmb215YT4Z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Fkn2WmMpWH3vYfUAR93XGfuGPNcFQ65q7JEwBj5TiuGH36QiK": { + "balance": "41.385034802", + "bytecode": [], + "datastore": [] + }, + "AU12Fm4KeJmapbM9VzY9u7cgQLgv9KXKMHbq87zctFbKECkqe4s5U": { + "balance": "710.045864463", + "bytecode": [], + "datastore": [] + }, + "AU12Fmmm1iyL9skPe9AjYfUNzvKHycofD1MFJiEdxeEcZdzj16H4G": { + "balance": "640.093412554", + "bytecode": [], + "datastore": [] + }, + "AU12Fn1LSsWEnDJ6jBo526Nu1gqMizDYWmbvB3QkLVE7duo53b5YC": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12FnkHPcMdSsyf4932iTUyZb6hfwsckwKR4kHTGQLB2t4m8ydS1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12FoQBSX9HiLSMvujcjUjvsqYUL3NFjqdwZQVSmCn7GTuWAM1SP": { + "balance": "1406.406667287", + "bytecode": [], + "datastore": [] + }, + "AU12Fp7XuuiZ1HV1yx48aTynCsJd33L59s4F8erpLMRGCcFK2CpDm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FpSB6RDy6fYtdd1amJoa5PMmPi3udX4ugnmeQH2bmyRRSnNFD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FqDQxBiaCnRmGbVzN9v2BgVgBcgkbMWdxJX7n8iPntnBkKQjW": { + "balance": "3799.971327781", + "bytecode": [], + "datastore": [] + }, + "AU12FqMBtYKnE1Kwcy8N9Kp3RveEKvWZgQLFLCyNs8YE4tM4PoRg2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Fqsn27WsZp4KzmL2QEUzZyJATMS7L5LmP3kHgFTWBNrZUVCwy": { + "balance": "2396.598042320", + "bytecode": [], + "datastore": [] + }, + "AU12Fr4iHPZ3zQ23H7yaqgHXnGR4Lhpe4Yy1jkpBgfoPa9ZmgDC9k": { + "balance": "2637.315690755", + "bytecode": [], + "datastore": [] + }, + "AU12FranKXghrYcGsBZqYZsfZwosK9akKFa5jciahHAoYBrGWdRnx": { + "balance": "3777.702529698", + "bytecode": [], + "datastore": [] + }, + "AU12FseDnNp15bEZeFpFTbQj8pJPk5NBQS5VSoNFec7Dx3orYWS2S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FsmyQqhXXPTLoVAA8KEyv7D55E8Gez9kdZjoczrPQ6YVB8TWb": { + "balance": "40.881165593", + "bytecode": [], + "datastore": [] + }, + "AU12FsnqGtixYqVUEgov3yQi8Kc7NeenzSkNVQVL3aSXaZfai3LAm": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12Ft31LbJUBi6C5rWeFz7RBVnMuQpfof11U9hyocMMPDzQLDDjP": { + "balance": "35.665318550", + "bytecode": [], + "datastore": [] + }, + "AU12Ft7vczZSC5dXt3PJaKSwngSSVVyQ3XhoxUKHPadwgAx5wFpgd": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12FtHuLa9YpvoAWd1VhRfVThDppoZTBX9qyAmuhzbtpvZqcpWCV": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12FtXgbegPx1nP8GRCA1vJZpLFiLD35dHRkoBbJVXXL9Pz47iNd": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12FuD4vQQd4udAPTqMtZ9RdwEu9bWEV8QqFFq1kcRxvnQ9NqyPM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FuDZgUqh1cPKTiNKHEQLwQY2mWNj4aCNM7CJeKJpZgRUoCKhX": { + "balance": "2984.258135350", + "bytecode": [], + "datastore": [] + }, + "AU12FuYKRAMyZ1WT4iz2PNuNePjdiVXHnyZ1YY1UucfcKMBBUcBRc": { + "balance": "2295.963794409", + "bytecode": [], + "datastore": [] + }, + "AU12Fv11fq4LsdijLW2ePZUjDbWtSr3o2Gftw5Hg2C5RezqiyM1S5": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12FvUDUaito3nkdnAc1zuiNwtBTqgygTAMXfCR2izX9GULNgX4k": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12FvW6bdSeB4tgsD9kdwKfmxw3Zap4TEzpKDdfWDeCBSwKzrai": { + "balance": "184.107658571", + "bytecode": [], + "datastore": [] + }, + "AU12FveFSDbstW6pTZFwP1C9UtZo45ouFcKe5iGBgutBS2yhePHEN": { + "balance": "1815.476217895", + "bytecode": [], + "datastore": [] + }, + "AU12FvyacMhGzrgeZay69LwmxqyEGgzg7RVMzRVLfNBfQki641Bc5": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12FwubK2tnpioC9ftX3MUoNLmvSc9TcGdui7nZPTgY6e3bDqjET": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FxnfvRXMH6njZvY9uYFfm2tht8es8xQNk6WekNrNbjMBqBfY6": { + "balance": "2489.979006833", + "bytecode": [], + "datastore": [] + }, + "AU12FyBQ4h7ALr8hNGEEKwnT2ihAWNcKoe2xKUfADGXzrwJwm2BHg": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12FyBUUJLjgxAGRJKaRzJMbj5hZDmAxqTRsgtTkmEUvA4U29t3i": { + "balance": "1394.429612554", + "bytecode": [], + "datastore": [] + }, + "AU12FyCXhb6zzu5GrvkzkrJFNgFH1KNFfFbn3MzV7sMkAmQ9TGmx8": { + "balance": "2708.740680960", + "bytecode": [], + "datastore": [] + }, + "AU12FyiyT7da5cWq8PPgDd5DLzPiK384ESxgNNhfNLJz1z46nTfjf": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12Fymmn3Q9SjZkeW58zikYwsNqDR4JuUSGJhJ752oce89Cc5EpN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12FynbSRqBrWeEbcoWCL3eXtP4H54E1z65iMhVfJxCeA4tZF46f": { + "balance": "3370.106067420", + "bytecode": [], + "datastore": [] + }, + "AU12FyxEnzA8Wq7m1FTWi9Wb4BAy5sBbgyC8P9h2yHc7yaSW39TS7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Fz3F9Ws4vRCkTyvAkA5Cxbh3ZLAv1ozkfezvyMo5yFvGYMrrt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12FzSTyWJ8wb4z69dEJzvrjTgDQmk9BoMLq88ktYkGjV92erQcw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Fzmk4Aeqk2W7yaDGDy2u4DR1w5eYZZtBnvXSTNLZgM3R6ycbd": { + "balance": "1191.683513086", + "bytecode": [], + "datastore": [] + }, + "AU12FzoYyc9mTbdmD26GBT9uQuf1zMVNqsfeEhznGj7kqB5PTkERs": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12FzsketRuPsXZqatSgNnJDB4471cGMq2s7GkHwhj4QymQL3YXQ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12Fzxi4JhtWsAjna7JASnC6rd4ioL6Z2J5tdUKtrn8N6Lk6xTFg": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12G1K4XjgYbb6g8fc41Ze1exnvTJh1rqjZDqxu8AfRoRBRuGmwg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12G1QKmauoQ4udmB4exYvYRNeuvDrvytFt5EdckLBc27qAAo7R3": { + "balance": "1442.210132939", + "bytecode": [], + "datastore": [] + }, + "AU12G1dFTnJ4UGTJ78y45BR5oNJusWRKbVRi6AhWp8AJQVTDyWwcT": { + "balance": "131.188118812", + "bytecode": [], + "datastore": [] + }, + "AU12G1gmLnH6iz9EJsBQHS6XhmXYfovz5NL1aPg2ao78T3zttHVjY": { + "balance": "1311.615025614", + "bytecode": [], + "datastore": [] + }, + "AU12G2Did729Z1Ph3u22sx3XHm27nQFDbe7nVEHbzMTjSaFVWRh14": { + "balance": "984.419446928", + "bytecode": [], + "datastore": [] + }, + "AU12G2GU2iGemNArH5CumAVSZRMA2W68wUvX7KtMvCgyTFUPSKAiY": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12G2on84yFEtXJva3AHxeeq1kJSiVgUCX8XNrSEZJ3krbDtaMPQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12G3CxoXLKJquBxPfADGY5mQzpWDWV9kgyyaiaxWHL4iZADreqU": { + "balance": "662.635144818", + "bytecode": [], + "datastore": [] + }, + "AU12G43iJ8xVsGHvvywbMAnMsKCpi5zThnpSXLpYUmESsiyS6wEsi": { + "balance": "5061.567659111", + "bytecode": [], + "datastore": [] + }, + "AU12G4XJPf2YQieN5zo9J8njJEJVw2mTSb3bkfKhy1S32vHadTwN7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12G4Z9L8moN3CBT3Wo3edgbT2monpBBMw1oXR1iSQ3mSsnU2H6r": { + "balance": "1420.970861205", + "bytecode": [], + "datastore": [] + }, + "AU12G4fytuLGtttHuaMmDroWcq26N4hHQVB8TMounswEnyqp4jrHh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12G5Box6vh43pMBtqbqHwAfsvvFSJLQUDBgWqiLPiuEcjqkPeNt": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12G5Q7EkrXKwqBPoag6r7tvXFBGjEwzu4cMr8GDjbpCaCAJRw5f": { + "balance": "1459.388799773", + "bytecode": [], + "datastore": [] + }, + "AU12G6GssAEKRFRawJqN3n7vv11McShSYHssThGjzViRXJh4uw4sM": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12G6ZUeHDzZJmYhPnMvVLoL82ZV62jQWC6gVRX9gAZHFoPfT7B2": { + "balance": "2045.561012671", + "bytecode": [], + "datastore": [] + }, + "AU12G6bV6KKrvtXV183SiQeZAavkC1H8uzKSk7Uqr4LCoRkCJGKbW": { + "balance": "580.490094449", + "bytecode": [], + "datastore": [] + }, + "AU12G6r84vNSccqmdeK9MQgZtqZXmPBJ3uPVY56U34eoz1Mnodyo3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12G77FkQfMYHSpXKryZoC2f3bM3FBVazFghF5yGaeTzPsTknUui": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12G7A9u3Hjun7d5boFnKa1EH1fpToCEd35sNVLacErBTipmUHws": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12G7Py1pgpEfAUc696Seemq2iYybvTegaoY1U13UiawDyFztUmz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12G7VQescAXWTH7ySUBrRgGkE4a8ZMnM8u6FMcbtz1vKzQRKnxa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12G7sP3L55NKu2C9aUqMoUbmG2YdaqY6ZJ2Jt8zngjnwRDyqhVR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12G8WVSYMeh3ULGDer5irL2kWnCFtUEdcjAvpqRsCnK9M42usWy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12G8XMRYMMbTBcsUkLn4mE9nqDtfYZoEcS35x5py9kkkh7cVNiA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12G94R2NhDQsLaJTAkeK3ELqxzYEsJ29rtrXbd2M1WvgZTArsVH": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12G94x1J2rBKJrCwHucrt6SPVuRUd1MBkVmL4QNcWr7tQSaeBQo": { + "balance": "1392.663332250", + "bytecode": [], + "datastore": [] + }, + "AU12G9KTTnRBcMQfuY3RoWB9Dsahc9bCMiFgvj3DEne357aLAuyKb": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12G9gCno59qAXhh2AFRwaDZAxLzookhPbcNuKFHGt62cVVcpUKa": { + "balance": "1567.017022748", + "bytecode": [], + "datastore": [] + }, + "AU12GA8VjgF4esVpaGLDpjb8wZErzPBXaDHYk4tW4stvbYeSi6R9N": { + "balance": "719.765863439", + "bytecode": [], + "datastore": [] + }, + "AU12GAJZYb874w8UfHgiWViNjhbVNWtwrs2gE3p55DSNFJmRSf3Fn": { + "balance": "209.742311413", + "bytecode": [], + "datastore": [] + }, + "AU12GAK2NT4BfnmhxhtLS1T55aK2qwDr4Nt56iqq4SnuQevjA2hhW": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12GAT8VrJhbmjHjvgPVK6vPT1LFNan9jBPgMyFZPyJCN5uQrayG": { + "balance": "1837.611774410", + "bytecode": [], + "datastore": [] + }, + "AU12GAcAPPPGDoXRgjmLWdivhnrhcS3NBV1D4SB3oX2kNygegpyFZ": { + "balance": "1923.187677289", + "bytecode": [], + "datastore": [] + }, + "AU12GAsJ1fVLQaQEcPZ9nN7AtTB6uEkmKGJTUQ8iYi2HuC3qbkFYG": { + "balance": "4827.097526167", + "bytecode": [], + "datastore": [] + }, + "AU12GAvcHVCRGckb5VBh1Sxgg9qs4qc7zYeJ35Tfgxqoh9hqB55VS": { + "balance": "2691.486212849", + "bytecode": [], + "datastore": [] + }, + "AU12GAzjGJj97HEnLd3ic9gkThV4bjPhkXTwbmPpu7Y25AqnYadZr": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12GBGoosRsJqNebxeSNzofp1zFRtxfEa5siraDeDvN7ndvUP6Uy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12GBJhPVZ6m2c8PVZ6zrFwrQvcbUVzU5Vy6QKQGeHHG1419oV4b": { + "balance": "216.401907512", + "bytecode": [], + "datastore": [] + }, + "AU12GBiBJgDAdA2FEf7M3aWpKqeAvJmtrGRsLUv3RNMxJBUzq1sca": { + "balance": "3433.969816398", + "bytecode": [], + "datastore": [] + }, + "AU12GC3ScM4YLwF4kFpuymKnq5duqNT3nQMknJfNTjbwX2koKcnfR": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12GCbsRZSQ7PKRdnX11B37XwrTopAccmVmCVZtUk6tGmjmYmuBQ": { + "balance": "724.239229615", + "bytecode": [], + "datastore": [] + }, + "AU12GDHv8Yv6Z35hDDnNkhogSL14Apf2bkayT35NroaMrhwqW2Ydc": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12GDJT2aoyj1Jd58jJGwDim1eA3aoT7eUs7p89giRGqgdY79z3Q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GDNXuJnGaJqod6pK4eHAjTd3aPMDwWbNB3ijJcx2FbgXFDhMw": { + "balance": "801.191821381", + "bytecode": [], + "datastore": [] + }, + "AU12GDx6yvLas47eZqToWBHEgPhLcyA97oCJLVd1atHMvUs3DMKro": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GEddnoAURReSgzqFPmxVzrqLBRBruj4c1vVQ6y598L6BAyx5v": { + "balance": "965.826786172", + "bytecode": [], + "datastore": [] + }, + "AU12GEjN3WLq2UzAG6aEoNEiqThNVHFEdZQ4S6hbBLbp8RKP82mNW": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12GFC8SPh8G3mC9Jn5cNn4748k6Dk43CBfCkj2JSGUxCjsuWxWy": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12GFCCs2PTfzWqshZKLUikgZbAzuaS6nCqmx6aMgj6mPPeWeVVf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GFLNVud8GJwPdvRT5ep4WwytpnChfdUQuv868JWJ67eyDpK1h": { + "balance": "1150.126311221", + "bytecode": [], + "datastore": [] + }, + "AU12GFSR5PhaC3GSAg5KLQdTVPjqgyNABy7Ecd6CHyfviWHndRcG7": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12GFUv3pxRAaEmpdB56CqCAUMdVza12mNU8Gv939psAZ4yRdTDV": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12GFoQ8Nyga9jFxHP39RHUwG3xssLpvHG3yF7n4Lt9nopdgihq6": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12GFzoMrzSfKf5d4TYMjmJKX1k5wHiteEuUbueenUwhuC9yiCe6": { + "balance": "826.046600312", + "bytecode": [], + "datastore": [] + }, + "AU12GGgutMtUDLEJaHsJ7CKcQncqTX7KGtX1xTDCSFqLS6wd1C6cv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GGjD3eQF3fFPtqANc8RfUmQ8q1V291PMQxFHmSyxERnEbCrF5": { + "balance": "2328.836958819", + "bytecode": [], + "datastore": [] + }, + "AU12GGncv55ARk5CMZbeszpoRkAUDeDEiyWKUb7uz3CRhNwVwq9pg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GGzJUmkcmcpSEDrWTzR8DzU3Mc7L467zZctAnBXJ5ohbYXMsc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GH2xkvn1N2JecqZqJpNRA49AuzS9u2mXCvY1XiomJZioDNwwC": { + "balance": "571.458300133", + "bytecode": [], + "datastore": [] + }, + "AU12GHD1x7rW2LuJ7Ku281ZGkuTFJbRWwngdCHM3LHB1kSU3sS3xd": { + "balance": "2228.831506322", + "bytecode": [], + "datastore": [] + }, + "AU12GHGUpiaCKBQEm9e96GGDrLN4PchJVGqFBJwTpmpMzmcjKdmpt": { + "balance": "2024.243872385", + "bytecode": [], + "datastore": [] + }, + "AU12GHRJ3j5EzduVPbx5AuMchQxkzEHFzqMBQ4yRYhP32TSyNRxTC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GHotyXbYa44eefnNgWkCeZsAq8z9HAEYH3Qh9p6H1RhH1WyXN": { + "balance": "1260.098029188", + "bytecode": [], + "datastore": [] + }, + "AU12GJ4nBhdmXsdsa8Q4xiUxW6j1ohn6Lx9A2LpRLQxj9r6jr8VC7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GJFqnt279jffk7JQoTuCY51J3HyJsJyvVQ9Fb8rkCv29Zx1Sz": { + "balance": "1270.043390166", + "bytecode": [], + "datastore": [] + }, + "AU12GJUP9E75CtAFrnF1sG3L7FcBHoPNtBzKLPBEoBqEKFwUNn2qZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GJcN1vjeHqW46z1WDL9a7wXxw5qNpqNhwKD5WXQR71auD4gSY": { + "balance": "1077.926327696", + "bytecode": [], + "datastore": [] + }, + "AU12GJcdgLh3hak9x8k9LSZXxvKUuqnfiu6g6cJiaCanCtkyPZCrZ": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12GJodS4emtzQfaVcqpY9C56nQV8MppsqZe6NagWHuYxmT1L3Lb": { + "balance": "4824.363597092", + "bytecode": [], + "datastore": [] + }, + "AU12GKZwuC4R1C5UiqL4waNkdFwh6g4SD7pySPaL3nUUWn5bfyULR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GKeafFzCTjx4A78JCZ6D6wK2aRtrUcYkZsoY5xi1kWbv7ah7k": { + "balance": "1551.007230415", + "bytecode": [], + "datastore": [] + }, + "AU12GKg3qJywmEf9wQbmtWxNy9P7UJZho8iyGPYiFfTNB7ESaBdGb": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12GKjXwuZWUeuwKZCHkwHrxawcPGJFDyP6iVHmDCSGkkDX3SEAC": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12GKk56VuuyfrCf5KsYcw1rGshVwTdLXppskKPTd8QJ8cuyXith": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GKoarUnKqHcbNBbyWd4LdL9EL3bFdg8Tkt3yUg8RmGoPdNez6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GKuidMxzraUePdqcNc4Bf7ucJYo24Pwdv3FUVnkpbtnYHUrLF": { + "balance": "1478.216175026", + "bytecode": [], + "datastore": [] + }, + "AU12GLfm3sruvnBRPnGyhyfomuvj8tLKqEDiNk2y2KztAv6w3oWvv": { + "balance": "1722.006018836", + "bytecode": [], + "datastore": [] + }, + "AU12GLpoFFW9DPH9yC6AUNd3QaeW9SmbdiJs2XwWuAHybtM5FhDXv": { + "balance": "1841.762783632", + "bytecode": [], + "datastore": [] + }, + "AU12GMU3PUgtfuq6srg9YRmn2TnH5t74r4Bu8aNMYFKQSdhFj7NiJ": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12GMsp1dM9j6rFsxUEugnu3d7foaiC7Y3FN3PK9x8WvPucy7iHp": { + "balance": "1228.974913304", + "bytecode": [], + "datastore": [] + }, + "AU12GMxAgB3ZgEphkNqU4Y1NytiucYasHZRTo2QiqMZcESfS8famo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GNApzY7hcP6CZh6dVrcUEGs9mfMEzCB4ckWL5vRd7GN5GTfyK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GNQaCxN8AXQdLfA4bVRwrivW1KhCauV3GSZYbwjMjEtDxUdqq": { + "balance": "700.336684979", + "bytecode": [], + "datastore": [] + }, + "AU12GNZGGCtSphxKkf6JFYfmbWEabMgVGCXkfmrk3CbZ7S14QPy82": { + "balance": "556.600370288", + "bytecode": [], + "datastore": [] + }, + "AU12GNijhdtQSVmukSBgYt7MXFTLcpAt6j1pKQKxabNAacQo4rSBe": { + "balance": "5260.085832298", + "bytecode": [], + "datastore": [] + }, + "AU12GNzAX7qKnY2dNgKQj219s83PFz5GvHR3HKxXurjdHNMPWiKmS": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU12GP3mbxtdi3wfQ7KvX8pMmmNKiaoBhUkT7mgRBhB22FXU5BFQY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GP8euqBuc97dc4NmiF1AG82We6PRZMWU6aRvVuzipgBBWkQpn": { + "balance": "1303.549556748", + "bytecode": [], + "datastore": [] + }, + "AU12GPc5MGsQd11Uhen75XboCCtNQzzGVEJjmPz2NGeMT4xAwpaTY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GPueBCs2zNrN9JYzcdpeeUNZ9N1fdFGbB4u6s4REfhQigDvSe": { + "balance": "2305.548777197", + "bytecode": [], + "datastore": [] + }, + "AU12GPxheE7UM8DZxU3duo3VP6ZpUv1jyq3nGWo9vQPh2nsFLHR3R": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GQtj6btJGm1wwPXdK7EZ2XFz3AYDFiPhPtFZbEv3ovrfkxR3g": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12GRBcxnyJ8JK5bvysrsEmqpj6cM3gkV7v69CVVBtNPYuAwWu3G": { + "balance": "5606.419857090", + "bytecode": [], + "datastore": [] + }, + "AU12GRBn3hxEf8jYJ2QS5W6HciKDcu6JXpU4RnUX7kpdi1urRUArE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GRdCayXNqcCRL6ifTV4svBsUxQaV7spdHNhAKVmtRDXkbqNKT": { + "balance": "5046.157060093", + "bytecode": [], + "datastore": [] + }, + "AU12GRr3sDsGDwiAVeU2KMFpWA9N1WyB6f3XV7YgVEranLHSeXoKY": { + "balance": "2099.533931191", + "bytecode": [], + "datastore": [] + }, + "AU12GRrvDwaDK85urtj97DkzR8FXUqb4ejshGTDZ6o9KNL6iMj1Eb": { + "balance": "1116.483609013", + "bytecode": [], + "datastore": [] + }, + "AU12GSXQmN4Zbhe9LcHPn81rrS55P8HU5TJ3pMHHYBfAbtwmF21NM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GSZp2zmVjo9T5wWF2vmZ6jV2xMuoNNJTZSua6cPo8cx5AiNKy": { + "balance": "2221.934813608", + "bytecode": [], + "datastore": [] + }, + "AU12GTBysASxMuWFc9huiFaWxq6AJw9trvig7ysrY9JQAXQnu23zS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GTH6iEUW6aoYDZ3BNwKncQAJbvUdjQnZQJ2yiVCVMd5Lp9SLE": { + "balance": "2989.835289246", + "bytecode": [], + "datastore": [] + }, + "AU12GTKuSakJ7JKD7w1AqEDn31qbDXA2YGqru4kFzEwUHmWF2LgVC": { + "balance": "3088.812488238", + "bytecode": [], + "datastore": [] + }, + "AU12GTnKx8yFv9XPKSEf211D1ZGfuYu6Yn82YnPH1ownjhymDpPte": { + "balance": "2420.788489408", + "bytecode": [], + "datastore": [] + }, + "AU12GUCEqSd46boQCJbJqYdvJEK2VVbmjTU7e5GePkgK9oC2du4dV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GUDXciQ9gNcRKg6mvWTiq81Ddz6USvQnaKXr7MGipNFDZJRWo": { + "balance": "3553.864445922", + "bytecode": [], + "datastore": [] + }, + "AU12GULBTfzLMzzj4rnbZdsD8vNQ2vHAxmnU8vHcX3bpf5fTBWGMF": { + "balance": "1303.809705296", + "bytecode": [], + "datastore": [] + }, + "AU12GUdT6r4jHkoBfypyiCEkPwbj7VFnKRaq2YdUThnAozU5gNWUp": { + "balance": "1485.530137032", + "bytecode": [], + "datastore": [] + }, + "AU12GUq3iyATyu88igmj3krNkmcpP8fWqGCfVHoMA6iX913R6ydUo": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12GVES8mRzXfX7qsKAUg1eeUHnEw2diE2h9KnjQwH4hfC8bTzFi": { + "balance": "4718.224594369", + "bytecode": [], + "datastore": [] + }, + "AU12GVF4hyU3NediaX17XGDxGnunEbS7bpPUWJ9zad7eFE4vXa5EG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GVFviQFXTZqDxX3NKJ2o6YRed6VQPNtLhg5GGJm1n6M9JjayF": { + "balance": "5772.883112773", + "bytecode": [], + "datastore": [] + }, + "AU12GWjd3WcajtagEhxJxxmAvaKSLux9qLJtZ991DsyYC6YYuhE9r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GWx4jyNg3QaVxYgKEA29oFCgrkMJkzgvs7R9FavRkbhSy8aWk": { + "balance": "1298.651362201", + "bytecode": [], + "datastore": [] + }, + "AU12GXU9mYkRf74KbQbRtkmKjnPDhgDFqKXxjuvckRuLKGgKZsKT7": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12GXmbKVfWqQcaPuJEhU3dVfDGLB8ioeHJQJKU6QTQYKSFGAjGa": { + "balance": "298.537893922", + "bytecode": [], + "datastore": [] + }, + "AU12GXrsgxwvczaervri1ZgxFFFvYD8NhKG4CFenemfBaKdtoB6Sr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GY1x4mVpeRNDBqPx9KgWTm8Y9XukHU2Z52LKukue7SFjA5xbB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GYACUusidcVcY6YGa7EiNiHCNinSUrAEFRKbf49KMa1gQW9Vw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GYKEfi9Sq5fBU8PfGbsrsM1y6h4Ff9DtzYMf7FvVa155zwf7r": { + "balance": "781.149044643", + "bytecode": [], + "datastore": [] + }, + "AU12GYWGjPAER7CghDeeQrdoMSB3Yy9Tpmrckp7Qps7ecxWaHat4c": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GZ7GQvbVvL1kNt4AvcawH2Qt4aEDvxhmivdesQtB6YYScYJjM": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12GZAnJJXYgRmg6oJ4bL1Tnvwwd9W4dCN4tFMFZ6rWYfNB1SDvm": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12GZQTrBwFUbaxm9DNMHAh5t57Eugf1qVj6NzyGAARZ5YrTEydq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GZUWXfWR1xVeBDbm4DzFqL7f1S77ETBqE4y2y3Sum6AGinb5r": { + "balance": "792.064939500", + "bytecode": [], + "datastore": [] + }, + "AU12GZvVqvUFt9ez7cExBVKpjCcscwj8q8eKwvpLrVthHgP671Xnd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GZvrZJcw4KATQiYpf85j7ZwMWK7TFXKhNZYdHAmSdpTMrn4iG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GaZgtcWAzgAszLXW7fW3Sqzh9xrBuwJc9nvTinQqXM6SjBasF": { + "balance": "232.519542245", + "bytecode": [], + "datastore": [] + }, + "AU12Gb52E6Qv7oUDXAkH9WUtWHK7XbcRud9zcGHLkscbnNKB7UdJB": { + "balance": "948.124509040", + "bytecode": [], + "datastore": [] + }, + "AU12GbMZALzGATouTLeWqKCQcDvqkgqgCfgM1EjAsHFsEt6rGPmzW": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12GbUE85ybwcraDwfdHqp3RdonZcXVh9FLoWXsf8eoPcrnhJF66": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12GbdoRPs8uMokrB8Kgqe2PgNbD5q1zZ34tgTBrKrK1TCowJaNn": { + "balance": "1970.458746231", + "bytecode": [], + "datastore": [] + }, + "AU12GbnCXRexmpZTLkzFqz81TFcgotnessdxDL3WjVNQTZVccmT8G": { + "balance": "1010.855940380", + "bytecode": [], + "datastore": [] + }, + "AU12GbtSob5kFfQhLuSr6XezpBmmX99YCLDUiuw1bqppQUsPc7Jdj": { + "balance": "765.235005202", + "bytecode": [], + "datastore": [] + }, + "AU12GcURkmq9Ei7VW9me9n9d1Z7o1oNwvM73ENwH9xk6s931x3v75": { + "balance": "2341.537990130", + "bytecode": [], + "datastore": [] + }, + "AU12GcZqbjHG1RE6atctmKTV66inJFe9P5RvZCavVV216EFz8mNwU": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12GcaM33LoPcG3GwxZ9GX2RwmGTjFrDGKTdeaFdNEmbMVbGpPqn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12GcctiT2f1G5AHJCPAwbaR471KyLGkGKX6exip5jRmEjGEXeQn": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12GcfjgKsoamvUCRMrPzoMh8YAAzKJYYrZk5V1d9zidGELqSgne": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GcnTSrxt7occkYYFBNZGytQvaSfqDQ4MikYAAGqY71JS4appF": { + "balance": "593.093272043", + "bytecode": [], + "datastore": [] + }, + "AU12GcpwGxBpxWPHrg873ngJdHFyEmYxvu8YFUdruaRt6tewWyZin": { + "balance": "2410.576545951", + "bytecode": [], + "datastore": [] + }, + "AU12GdAXF8oq5ddgcU4Ck4xfRjBPpC9JgaVmNj5QtsFmZfCdJCoiV": { + "balance": "2463.894179754", + "bytecode": [], + "datastore": [] + }, + "AU12GdE4PsmTAZW7a59s1HypHNatDugT2BDqkRGTvKnGv6aQJ3STV": { + "balance": "2313.366380714", + "bytecode": [], + "datastore": [] + }, + "AU12GdUqxTWkSGr93hWPtptGs3xMZtJP5VVY8bPYuj6hGNbrgyVQG": { + "balance": "274.227753436", + "bytecode": [], + "datastore": [] + }, + "AU12Ge2DADh6J5dB7ejuedLK3GaF5TtAw1AApKKa9wMzREmRxAwhg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12GeVgQHJ6wh3YZkqUWkepKtDLxMnMVWa5PDT89GLDhmMaKtgKn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12GeWt3tEiSKfLuDDJpVdojckKZT8nxZGDv6V6uiVwPH1U26z93": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12GeXAfuHzjDrnCa1q5JCFsuAXWHh3fM6xyX51TDz3NP61sLiq8": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12GeXmCJcc8BehXzrQcyKFs4S3BsBQPuMdy4UVBgYFfiBBJaDWd": { + "balance": "1409.470507428", + "bytecode": [], + "datastore": [] + }, + "AU12Gf7qoaYyhk5gawZu9etLh7c7iFn96ZpHv8eXfcxcifPZ6czbU": { + "balance": "3975.753128308", + "bytecode": [], + "datastore": [] + }, + "AU12GfDGCnUUeHgRoPuqYCkDj4uV79bJHUw4g7N2oroBiVSzQG4rW": { + "balance": "2119.719209549", + "bytecode": [], + "datastore": [] + }, + "AU12GfTFp2mgHiDWts8utHYp9z4jTRResi4rEP4LTNoBtQ4gCNwM4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GfaLdJgk9pAbQqot2aqL5YZ3635cSywxUXiBJ3aEbbW9ZgMYK": { + "balance": "3737.747632428", + "bytecode": [], + "datastore": [] + }, + "AU12GgDS4eDyvdrN219r3kBaccqMC4ku5fFm8jky8xWscUHmi9Un1": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12GgSEXQLgk5NTz4spq9arYWkgqqPjEu7z7HgX7Kx5hPoy16X42": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12GgVb1KQ2Md3xzuUYdp2SPdDHq7QJyy3ixpsnd8mZT3ktF5RhU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GgYVCTpM9VvFo4r1cfHuNuHxGA9T6ZUV936v6cMCSSFKDMu8U": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12GgarBUNuuw4FVWQ8LMrFF8BPCmaRaRsSK2s6JPweLpbHZozG8": { + "balance": "1257.940619933", + "bytecode": [], + "datastore": [] + }, + "AU12Ggy24U85gEKg7ALwoKtN2Pc6j1Xp3uXug9VLg3eAKsKcX8kKf": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12GhPkhakDFWM4mi2NLFEYaaGmV6qHjZ2u1GHpJq8kGsoh7HX6Y": { + "balance": "4718.582195646", + "bytecode": [], + "datastore": [] + }, + "AU12GhaxCaUBmuxCPcFRRCDZ7WDDdvbc62n8QqsFyY4s3sjTYdgvh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GhoQj2CDYKSqEHgkgjTdTKMgyqumhD1ZFEhWxYTufpXasAj5r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GhvLmZNrS6Rai3YDqRQ5c9F13xFuYYCaHCru4CgRZmE5vWHHb": { + "balance": "271.335997783", + "bytecode": [], + "datastore": [] + }, + "AU12Gid1vd1kKtEFkX9NGk4poU8JWFQ6czLWtMBNmdSZUGS27EWrB": { + "balance": "998.370730188", + "bytecode": [], + "datastore": [] + }, + "AU12GivoJVoLkawoJAhdjQYH6otQU4BFTt47wJSopdC2GgBeL48SQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GiwmdUSoLVZ9y4RbnmttJ6ZNmXjdVix4wxZJRoeViMPKb9vTE": { + "balance": "998.975950264", + "bytecode": [], + "datastore": [] + }, + "AU12Gj6GNAzGyS6r5KSwunFEETb7vrfjBny2riCv5GvkJFgfhKrmR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12GjNB1FwYvrb7NQgGxVNS4jgDjMkruvrs6LNfF8U23y59SRBDK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12GjfSd14mkmg9PxNQkpwQvCsqtVKK3pV7QUuLY4QVJaq6P6sGA": { + "balance": "2583.786537669", + "bytecode": [], + "datastore": [] + }, + "AU12GjfnwRexWaDCZ48xzDtcDbW4M43dLofYvzPgJgbjnwgFu1VNc": { + "balance": "2349.300823292", + "bytecode": [], + "datastore": [] + }, + "AU12Gjg6usB1PfHw3DucveBh7b95CFZNkrWTnyQmo7NUVhCoqieX8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GjrtSjt8J5GZXrqgr3aXsQQqPLDwVxShAMhu8HkZ2meUBcLWS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Gk1dc6SmPQpyWTerku2Ew63vYTHEx9ohE8jW3o9ePzzCKqUxz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12GkGdafu7Fy5Xx9UUpJvc6M7RWd5XiXuj64MBepY9yYL3n27xt": { + "balance": "38.660854591", + "bytecode": [], + "datastore": [] + }, + "AU12GkGqHVEY8Ra9CyutvVMm7ghnvuuMqvs5GHD2dCqnuN9PyecrH": { + "balance": "2870.143146290", + "bytecode": [], + "datastore": [] + }, + "AU12GkL5ua1ddBxeoVVrAgtBWnmk3Wep9yCsTdSpLpVdBhnt4amAH": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12GkSM8vM2gY8uybobDmaWKjEqE7W3YC4fo4JaeybwASi8MV3ML": { + "balance": "1849.452523614", + "bytecode": [], + "datastore": [] + }, + "AU12GkYYWiWoqLXEjdh7YbLo1qUXr3hDyYDxUEdRh84wkdqA8bk3X": { + "balance": "14.629284822", + "bytecode": [], + "datastore": [] + }, + "AU12Gm6vfn1cwbpCA6wpCDaqZWSXiANiUgEyAnehYq4Krdz58Mqw2": { + "balance": "4338.450957655", + "bytecode": [], + "datastore": [] + }, + "AU12GmAGvQqnLP7XbhucDMRAV125rvGsPaou2hkVqyAKTk72RJBZG": { + "balance": "3807.208549839", + "bytecode": [], + "datastore": [] + }, + "AU12GmFqbfQRDpeYqZvXJM8bL2jqwQae5qvBys46nELje9aywQv1Y": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12GmQhPXi3k4xVd2fvDFjr8NDgbrgKgfSZ1R2J4ZELGrUnwwTnx": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12GmbmaRBtiFacrSZKqZf5r2GL7xeCwBFmqLWvw7L9CYgAGT8rv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GmiwCzHn9Zj1ibUTNhULm3zFvNkHs6j8nQ9rPEFUeikpjyJNk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Gmzn86Ev8Yjs6CH7CTnCu1dD3PQqMtBdu8gZYx3rLPzF3nhEr": { + "balance": "1121.282525051", + "bytecode": [], + "datastore": [] + }, + "AU12GnGG87SNQ9kTFCJFyCsEUyCJkePdrp1PRo6zAMVMK7rbR5Sz9": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12GnLHbdEPU3apiWW48eqfjA6p8qUaAqwLUbmyn3qN1pGvsuyFj": { + "balance": "1900.986554799", + "bytecode": [], + "datastore": [] + }, + "AU12GnmMxSGMr2fGXujkEWEoAZosgxNyS1Qfq3VivBFq8q6RHb56M": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12GnmPgy5U5pQicZsvA18YYVuBAPub4JiZ81tDX5WtPqyyRCn8W": { + "balance": "1238.001470542", + "bytecode": [], + "datastore": [] + }, + "AU12GnwgyMp6yaxLUMhLf48SbRTs37yHipnNMCBGUtWuxx6SiSjbX": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Go8pxdEDKTshT6824uNK4CJxiq2FDwHTJ2ahzFWssAsBPetPC": { + "balance": "892.396111018", + "bytecode": [], + "datastore": [] + }, + "AU12Gp5Fmgttr2vtmv9onaYzjUtziPHTGgwktD1GQUgvuPNfNpTb": { + "balance": "3179.961899596", + "bytecode": [], + "datastore": [] + }, + "AU12GpQvmP1BBTrBJSsVUpWmZyxPTYKu6CDiy8xBdbc6RkodK9PyM": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12Gpte46B9dxhM1fzcYwEaTYUDCqaGwepCZjpvwxY1njEDnNuHJ": { + "balance": "2769.637864891", + "bytecode": [], + "datastore": [] + }, + "AU12GqR54dXX8pc3yrbXAPYXh6cC4rSonFiZZ485bUcS432WDtZNf": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12GqjTLVpwWKWZGJoAAoJCbH8jnxQzAXMJ8etZ85VMSRmjJGE9C": { + "balance": "1267.822921167", + "bytecode": [], + "datastore": [] + }, + "AU12GrPpBzwkfDibYrTBDhSVgP18ZTRXBGWmUTwhTP3mYpwvQw1FQ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12GreekS32rsAfZ1xaWAPapLYrj6DLTxud9PFFHbjhvN1AiCn8h": { + "balance": "183.168316832", + "bytecode": [], + "datastore": [] + }, + "AU12Grf65spbrvZ2CniNwCKex3UZBFtwit9pTXv5UouSxRtEdBoPB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GsZFQFzqBUvTmNiwCwoKYzUAqYVzzFZDwcRqiu6dR2mCdwd5d": { + "balance": "2679.151481512", + "bytecode": [], + "datastore": [] + }, + "AU12Gsi2uHTMjTd2c79VjLki9KtVu2Js2e4wnoZjXFvd3gWdHXaFa": { + "balance": "1346.506111434", + "bytecode": [], + "datastore": [] + }, + "AU12GtWDSTyksR3i9ZCBuUkcFnH9ykCRcSroyJoRch7hpG22Zbkpj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12GtoLVLbQ1ZUH18yYWQUNoEgnE29tRZdVkeCAdKC7mE8PsCf8u": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Gu2DKE9Vppp4DhLwMSLiMS9EQ1aDwpQtqVtxJPYxdrA4AFVNA": { + "balance": "783.289664385", + "bytecode": [], + "datastore": [] + }, + "AU12GuDvw9P7cYZ3gCGvC8aL2UJ8npTcVq7jPioGCC4vwuY31r48g": { + "balance": "2879.915217542", + "bytecode": [], + "datastore": [] + }, + "AU12GuHgQaj3zL96NUyST8s45uAJLK134gqd8xoW97S3bXEN9iQWM": { + "balance": "4763.000888988", + "bytecode": [], + "datastore": [] + }, + "AU12GupuJfKfUbFZJnsntdgHU94Jryc9ejvjxMJZQUcjokmyYKjJc": { + "balance": "3817.474799783", + "bytecode": [], + "datastore": [] + }, + "AU12GuuBv3pbaixj1HHPxH1DE5PxtAURxCo7eUgtVsqg73mQPSpbi": { + "balance": "1780.214452448", + "bytecode": [], + "datastore": [] + }, + "AU12GvY3tvhJqVN2yZmL8htxP9vwiyriT2cyzah2QKozjKEqHaWRo": { + "balance": "2593.278100565", + "bytecode": [], + "datastore": [] + }, + "AU12GwJhKP89PNc3ptVRuFhysSzaRTXmtSuQQQNyyFBMnuXEKfS4D": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12GwbikSnzrK73TTc63fM8Z9Ci2nY6ENAE6QBaQ7gbUNTZohxFS": { + "balance": "1621.557461534", + "bytecode": [], + "datastore": [] + }, + "AU12Gx4Szq228wtJu3tZH7ZmLLNKWovoGVsBoyh8akJnhiP2HrkQh": { + "balance": "2384.549330192", + "bytecode": [], + "datastore": [] + }, + "AU12GxGyKaGnmDL9CZQJyw4GQBcMiXmFCxNirpzWuB67ZbLQULxc1": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12GxXpQTr38poDxvEZEWo8WsqGmJffw2jDdbpwj7NKBqVBTomx3": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12GxyLHqy5XPYqi9EwNavENUetHXLPonosKgTL1BuLnqziXk1dW": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12GyCG771EdQnj3kiNo9NaUkBp7jHNoCyCn5BsELSAMgN46ku1f": { + "balance": "179844.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12GyR8RtFuekUdyDpwVBuC8WUw1tGEuxA2TJvM4Gq7s9xg5uh82": { + "balance": "250.348826793", + "bytecode": [], + "datastore": [] + }, + "AU12GyZj8gxP5Kjf8GZ8AAvXR4CMzPXLe9pZqbRGnp4A5w7qoyQi4": { + "balance": "977.153061231", + "bytecode": [], + "datastore": [] + }, + "AU12GyqYjsPuuigALzToFSUE5qN6Rw3L5FD34o6ym3DDCzdVcwrHU": { + "balance": "949.436704632", + "bytecode": [], + "datastore": [] + }, + "AU12GzCKQVEfVMisDX8xUnGkLeHsPF7uFJVcgj3oPif1xHRMS3NQz": { + "balance": "1330.742321753", + "bytecode": [], + "datastore": [] + }, + "AU12Gznip725hnB4835BmbqaRxcv2g1UT8Myus4QbMmczoJBTa8F5": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU12Gzt4ATJwS4s21SLmZm9uXCMJduwupDG2DJYpUHVviE9SR5dvM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12H1VnwCeaJpBXYKpDQDpkrMqiW2HfGCm94ScvPy7VzQuFLwiTp": { + "balance": "2799.119686257", + "bytecode": [], + "datastore": [] + }, + "AU12H24XgUBezYqhiNRehrK1h76wMn7tqRGJgwTPPtuLtt3HdHwm6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12H24g4ecSCaT6bkFph8QQmHaKpYyD8KfY8friNhmSiEG8RjQcS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12H2De2aHe7zKFnQD6PJA14MkeNBUFoivtXNTEZZaMGMxbtyhKk": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12H2h8NDRymEcVg7Mv1F4eRNbkNvKk6b64sWaWCfR5XFRpqNSMK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12H2nczUmvAQhkatnfcE3dq3mAgKBfTwndB4iXYP8mS9oNzbKWs": { + "balance": "691.101569095", + "bytecode": [], + "datastore": [] + }, + "AU12H2y3VoZc1LJqmRFZVULZxZRTvyEXnDQUL7JhajyxAvTTyccc9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12H3NtWZdMJTYmTpxuoePS1YGjrSopqejTZygisj9YADFLNHvLa": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12H4KXPo3gVd9K58MWjXAJvKCKpWBQrKM6BVXf3zg91cyVViQV3": { + "balance": "665.692840584", + "bytecode": [], + "datastore": [] + }, + "AU12H4WR77Jr5SGVTnw2WGqd8EuwxRn396HuJ18qebc8FJfvRMm6C": { + "balance": "1321.410556408", + "bytecode": [], + "datastore": [] + }, + "AU12H4YywVoHrYb3F4nhR88P6Rk8BKkgp56QuHcQqbwFfGkFcS5Au": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12H4vLguWpTdceJkS87qM5UrtNgiCjPiScGB1KQWgbC8Pt2Rd14": { + "balance": "1254.814467556", + "bytecode": [], + "datastore": [] + }, + "AU12H5JCor1TzMpCNHCyZxnyTMcPCMfUpu1nbmSqoVKnCXaQxd54b": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12H5KoiyrBjafN59ZXnwtG3wE5JCznC1soCw5Ma5d4nreSMff4h": { + "balance": "1027.006429042", + "bytecode": [], + "datastore": [] + }, + "AU12H5fFLT5UTy7sK5Zj2G5dYYN9MoBRfN5FZ5YXkdpjppU5HVs6Q": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12H64camuUC1WcwcmTRYp3jRrfYRNMVyQ9iuAwRdxde7mDafQv4": { + "balance": "2237.437853697", + "bytecode": [], + "datastore": [] + }, + "AU12H6mW3aqQPhyHKngjfLMo7MjzNncYwYzo3XYTcY9TdmtsQf8K3": { + "balance": "1816.693615536", + "bytecode": [], + "datastore": [] + }, + "AU12H6uFPAwcvU6cRPVinHAwoSFHFD3rayYtSHqzahHfH7QjZo2cH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12H76vGfFiwbj6qqr7ZPLH2PkaPG9r4eFjqix7mwEJmrNkCmEHJ": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12H7HjwNpGXX8hWp3jjxkiagqEQQ717rF1VVvcxGPSQ2zAkwuQW": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU12H7L1WxtUZPz7kxRC8Agkh5KuRfisog2Rov6GuDE2pnvKRat96": { + "balance": "1327.309354508", + "bytecode": [], + "datastore": [] + }, + "AU12H7Ta5AFbGkTRRzCmQJtT8tvSuGarxhmEQwt6FMkHo8TERV83G": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12H7UsaAAnBDCGS41ZAvFA9QPBB1Erh1s5hwQgMLeFuSQRWMWgs": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12H7oeGQ2ggM6FD468W44NT6BtYtLKT8LaL3fiMwmVLVkGZEza4": { + "balance": "4.085406732", + "bytecode": [], + "datastore": [] + }, + "AU12H7pHWz49SSwU745PcDo2s2HZvmKKVQEWqVa3Ky81bPfBkjGWV": { + "balance": "57.315706890", + "bytecode": [], + "datastore": [] + }, + "AU12H7pVzm9Job3o1cvMWq86EUHmgQoerpHmPB4ETunTVTKsxVadh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12H8D3ZE5qXUgkk9AhmY2QNfyCUyBFMxBdyamegkJra82rtZy7W": { + "balance": "651.904882901", + "bytecode": [], + "datastore": [] + }, + "AU12H8HA5KmUfTPH9m9Q9qKB44fMKP34r3sCR7zWb8BB7DHtR6cHx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12H8gmFYYbh39DMKwf9prHmEdT1HggkburVnGkDptRYEi3uioR5": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12H94A9qRyceLWMavX6cGiVdi4y79851cUs51SFyk2Qn8hN1WLf": { + "balance": "698.270574640", + "bytecode": [], + "datastore": [] + }, + "AU12H9SeNADKQ9kCYAkQAYfHWNVinfK8uxVW7xn75VUUDgMLe54AJ": { + "balance": "1379.148927715", + "bytecode": [], + "datastore": [] + }, + "AU12H9WPeBLSLN2vtimxgUaCUHPCu1ULLFPmynQ3tyft9oZPbPNgx": { + "balance": "1162.023112356", + "bytecode": [], + "datastore": [] + }, + "AU12HA39o1kJcgcxpqEf2Mvj9c9qjufN5gWjp3ZioGVo8ame5NWe9": { + "balance": "1021.400173568", + "bytecode": [], + "datastore": [] + }, + "AU12HA8BecH8R7AfTSoxdhggmWJAXNZVJMMS89GzquGdMEesiS3jX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HAZte3QhsDr2W7KyQdCTLMYGNtfcdHPysDpaiPKz5gb32ifEk": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12HAeqXFE9CDxroRpFVynxuZ7J3Qsb74eUkBgXoxjSusec9S9fn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HAon41hv7mkhteFw6ZGEfhXm3i5Y6AGn329e2sUZwRLtpNL1C": { + "balance": "167.518404003", + "bytecode": [], + "datastore": [] + }, + "AU12HAs3YW6YKDK5Vmiv8QUML1DjMQe9PphNcAM56Xh6fsz5YLt3U": { + "balance": "1571.894508766", + "bytecode": [], + "datastore": [] + }, + "AU12HBKrSYSjdijx8MT15Y42NdT5aAosojUMjEoiHXVbiXGSdn9zF": { + "balance": "2207.830248359", + "bytecode": [], + "datastore": [] + }, + "AU12HBXcLYjvFaj5tPK7fSf6yMGP6SXuL7eZd4KQuAPNkTB146cN5": { + "balance": "1305.991590942", + "bytecode": [], + "datastore": [] + }, + "AU12HBefqQou4vGFAyifepdcnGPHcoC4uN8okkoyqqjoPsvTYAaKC": { + "balance": "546.709652658", + "bytecode": [], + "datastore": [] + }, + "AU12HCJWBHcjkL1GzR56GhWjpmGLUvnLZWtSjecBaoKXvWaLsgbtB": { + "balance": "557.714739515", + "bytecode": [], + "datastore": [] + }, + "AU12HCyjQrzzvomanpmcWaF8dEkwBdtDKHz8uYjw4kjBFCQ7C5xFX": { + "balance": "2332.121781191", + "bytecode": [], + "datastore": [] + }, + "AU12HDAv38AHS958gMLDtNuwMaWM6fzqBcPAfWXLbycYFz9PNTeWR": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12HDPxUyDcCBmW5h2BKsTmMoa5Y64pzf9oVi49Q4iAcx4drCw7r": { + "balance": "908.849114406", + "bytecode": [], + "datastore": [] + }, + "AU12HDerYWcBmjmVEnN8fQ5QuJRp2rHn7MCn15zS5cej8gkGEcEgi": { + "balance": "4913.955977301", + "bytecode": [], + "datastore": [] + }, + "AU12HDoyNg6uEiLbxEpkP3kMQnH6Z8WUuzd9AX2uEL6Ze2uDVDucm": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HDy7wfXR9pkzCMhe8Vuyi8KZde2wjXMAB6zkRZ2ewyhg5g5w3": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12HE23uxrwRUkJegchrcdnQfh8j6GT1bW3oSRhBqXMskAzzyH8n": { + "balance": "1676.355969870", + "bytecode": [], + "datastore": [] + }, + "AU12HE4EfjNbej8AmRYsYunoqtzEACjSVKEiUwN72g6UEmTZtGiAi": { + "balance": "2072.726896334", + "bytecode": [], + "datastore": [] + }, + "AU12HE4uXneMs2YmdEEG43piRSTNmadenhoRaYLCbjEG6nWRABB4g": { + "balance": "1331.532206969", + "bytecode": [], + "datastore": [] + }, + "AU12HEHq89RD6H6rHKsmLSxv35kTbAs8NhGkXnbuPs3Q9GsYt5v19": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU12HEuUxhqvEUARW37tQyygW7yPBNjWxQQWJrKhsTKFBPvZQFsCT": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12HF8nHxbMa9SvZ6MsyZALFYKg6mVruWUsQcYM1aNsTnhsevsw5": { + "balance": "1874.126582017", + "bytecode": [], + "datastore": [] + }, + "AU12HFCPTqJgYVMhP6okWSuXBxbpUvqJtSLh3LyHHSH7u6o4SAni6": { + "balance": "2262.464037043", + "bytecode": [], + "datastore": [] + }, + "AU12HFLtWVBSw9aFScwNAHNG3Bd1PmPRmiWda5qSrLDRTpY331UqJ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12HFQywsbnkkjHes1xbXkSpV26kzvuuWFLmn2utJmREUt4MQuX": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12HGXqguD9hiE7mZyepSQsJGYQ4GQ9DjT71xuczTj3fZSDj5Toj": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12HGhXWTASi3ir2qWsf4A44TFoNYK7zGmRYrc2vpL4qL6tz7fxr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HHjAWYJRBk4pYuN6PH9HzQAo1j5AnS5VG5BsGtA2zZAsa5Khk": { + "balance": "2489.782809185", + "bytecode": [], + "datastore": [] + }, + "AU12HHoGUQbF1wnnzx3UGuBW3qw1e9KPojJ7FQezTUcd1iM8Kk8s6": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12HHwk4JfKES7dCXrLxFZqPDPZu5kM8nbURNUVY3Kc4uAMF1tEv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HJrc4EShW7ep73sfPCkqcbeK9954ofJEPGqUQnzfZWny7wZcw": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12HK5Ssd9njrSxdcWrqAqToFfHWrgZ7r5zojSueqmTPRjQ5LYjn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12HKXBrjKQoVTzqXzWh3q1GhjS7pm5BtqE9CNMXUmRBSAJQLdvn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HKfUQfxwrDrnkUNxqhe8DpyYhH7iSSs84b6f4c5fY2XmVLDo3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HKvYTdXV8Hbd6Df1N2Yv2SiGNrMCRejCtJ4V9F3h13UqMhsxk": { + "balance": "1859.181879550", + "bytecode": [], + "datastore": [] + }, + "AU12HL7m5mVaN28ra6yCbT3Nm5XpgKjsPUFbgD393jnYXKcMksufx": { + "balance": "1449.522693800", + "bytecode": [], + "datastore": [] + }, + "AU12HLPk2Ui5mSQznBj8z17rVGr4F7ydMSnthSrvbYefubuHamis3": { + "balance": "2578.845762074", + "bytecode": [], + "datastore": [] + }, + "AU12HLgH9pmDtawkoCrBWp88Rq39hYdpE5782KfDSxzRKdsXBhckW": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12HMLEL1NrxsmyeWsptDKYUHbjM96C6pPpJXBQKsFTPwxRdxBvD": { + "balance": "141.197164005", + "bytecode": [], + "datastore": [] + }, + "AU12HMRMWkW9yntwnRJnbuv1mMT4MfZP9eX32TMosvvireutwaZw4": { + "balance": "51.000323843", + "bytecode": [], + "datastore": [] + }, + "AU12HMSDJhWFd64vPdtYX1QXGQ4YVU1adG6Pr2oLiGCiTYVrRgezX": { + "balance": "1377.564433809", + "bytecode": [], + "datastore": [] + }, + "AU12HMvyhrtfxhP3paVzcVoeSmz1LhjpPPAAAQrAzUHCTVwNKxPxN": { + "balance": "5837.023855931", + "bytecode": [], + "datastore": [] + }, + "AU12HNGyZUNnQhP54FKD2uotdcNs1rqU5wrcNwzbcJ2wZgeTEesnn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HNL4Hz9YhxQMRpieqt4ARXocGedRMzQ4P2qJgT41mQ88eD8yH": { + "balance": "1595.448340925", + "bytecode": [], + "datastore": [] + }, + "AU12HNaGy4B8XesAfNhS4rifykrPmkwXPwz5XK441vMKJ2HwexCt": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12HNqVuU5jaiRwSZ5qJCobf6QDStmnn82e71PCAL9dNWCRGt88b": { + "balance": "3447.866253461", + "bytecode": [], + "datastore": [] + }, + "AU12HP5pNDPowhHKQyrh74v9Cn45Y3S6dy4D4q8DGTUDMZsp3PWnq": { + "balance": "1114.541138196", + "bytecode": [], + "datastore": [] + }, + "AU12HPBvwtHksqGUrf7L7Xj84Ef3KcsmgZNYPnh4PvmBYTwrQHrKX": { + "balance": "2066.287251951", + "bytecode": [], + "datastore": [] + }, + "AU12HPKZdFNNLwkTT6jRJwuRsASm2Hev5eusrLB9MfPrZyqRFgn4V": { + "balance": "640.124164427", + "bytecode": [], + "datastore": [] + }, + "AU12HPNpWMajDdXEnnnkfGjUxcZU4YfkoVHjo1TAGyDePfTxCDX3z": { + "balance": "9036.671590619", + "bytecode": [], + "datastore": [] + }, + "AU12HPaDrnTfifGTHKVn2TEp2KRr9JkU5xYsf8DAckPWxbV8DdMXV": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12HPoBpBRKWf7Si8dKgkTUFAtYHGKeqkkQFAtGknPaUB7oCe2LD": { + "balance": "623.753952878", + "bytecode": [], + "datastore": [] + }, + "AU12HPvvzEEZwL4csxnggtzrMmbxnnPf6tyhfXqFntyCNdh52jR2U": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12HQ4Jdon6J9ariNmT8C3CKYhnSe8b9BzFkfC4WqY7EWP2HTpdt": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12HQPS3GdaRbFggTMkQhoWLnEh3VCKxrqbRBfSvYHrxmNZ8y7Kn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12HQQmtaqWX65oRPx8EyKZzWWEgT13VQjZtE9GbMr3oyyzFbApt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HQZcSEUWn2K8zB33XcFxcHaUvG9SYRfkkZfpYc2ZYChQU3A8J": { + "balance": "2063.616935370", + "bytecode": [], + "datastore": [] + }, + "AU12HQfhreoGoD7NNDi12ELFAHSbzdeQcjV9debSy3XRJNaW74AK1": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12HRJT65YVmRNj1RoxsHCAKC1qgf1EZkP6mE8GuWGT1XL9a47QY": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12HRjTYJhugw7GESH3Uo75gMvKmzPNW8mUjmGkkiF38sUSUs5pd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12HRujGXtfzGF3NUQcBVzfUd5p4gvRUUoWveFvoJ6umSmdK2NUr": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12HRuqFyvFFTiWCsZEVcmAtpTA72LSo1ThkBJnJPEpJ1ifkzBP4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HS1bQYjAXu1YdjYjjMiGDgLCkTZbVZBu41c1AqfcZUGZDjQF": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12HSHksFpsX1Kpvw2uouNPMVb8qHBweqPUhnvcnueeCH2jFqB3o": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12HSrp2Yk8hahvqiBRELFsRRYTBVgzEB1W1jaHaFJqtW51V77nZ": { + "balance": "1733.120896956", + "bytecode": [], + "datastore": [] + }, + "AU12HTJYdykKreCSogxtSjNnBxr4jaRtaPTrCBnst34gv3zJi5UX6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12HTXvXsJTv5GhrtZ1ok8QmsTKLC2ujsHsiBgBZ2pcSeQAVvdf3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12HTijUMKn3pA4JytJBX22GXoPsUr8asyphJadLYUCn4wCRc6Uq": { + "balance": "1271.717671451", + "bytecode": [], + "datastore": [] + }, + "AU12HTmWmKDhAHN6uXyQ7BkZ51mMyuyAAuFiNcFmkcXEFzUyMGZcV": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU12HTsep2niJrbXKdXvzELJKaDsGxkecx5hFFLuN1LZnHAPbtm7L": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12HTtXqCi3HAxE3PYxzy2BhbsuATutCuy8QpuK96pScsteUX2sR": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12HTvAaxxru1Yu9A4GQZcjrerZhVnvA9jevS5aEgGgWyFDNbMj5": { + "balance": "5769.462527399", + "bytecode": [], + "datastore": [] + }, + "AU12HTyY2KSdkNzZiLkD7u6Ee5bciRkYxigSDzKLc5skVYhNujyD7": { + "balance": "2201.196558116", + "bytecode": [], + "datastore": [] + }, + "AU12HUVGQzLS4DnNgqNNGwX28JWzDnxJKXrgfZZPzD6BLviUiQR21": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12HUmprchXYbSzu59v94XZUNWEmtYxgbHYazXGXqdFCScrjFgNJ": { + "balance": "1500.354146599", + "bytecode": [], + "datastore": [] + }, + "AU12HVFq1e8xtGX9JvujArkN28Zun2Qd6rdVh2JryNXG69iWVXCSd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HVLPV3x9cUm6eZe5daTZhXHRR8KnPvAfKvoa8X9FhN9PtubhZ": { + "balance": "4630.090232895", + "bytecode": [], + "datastore": [] + }, + "AU12HVPR7aCgCQ1oiU6cQ6nkEiQfhYEV49knrWDs31wmUgU5REnJu": { + "balance": "556.723380484", + "bytecode": [], + "datastore": [] + }, + "AU12HVREQq85K38m8K5ggVhEi3X55cA1ivP83W4gESp2NTsF9eYWf": { + "balance": "1049.069733866", + "bytecode": [], + "datastore": [] + }, + "AU12HVT1Pwn7bkrtgVEtE2MAR2gxQhwpxyvy42MnXYZikei1XNqsK": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12HVW9zkHghQJwoJxc5sit46RvV1DaFh4oxT5zphRWnJNQYbAoC": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12HVjkZ2f5stJCmcDr7y7tkor2svVUKqh1gzxpD9MJbTGAZVXQJ": { + "balance": "12000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HVyXji8XpSrUwLMYxRGmBdMqcNFqbdir6sKLEBfHdVioqeWhE": { + "balance": "28.602149491", + "bytecode": [], + "datastore": [] + }, + "AU12HWnCMBiBwt7GqnW3FsGKZEup7ajZz9tm3BCPFny4WhxXKSwUB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HXLPZTo4DU7phRV5XLTA4icctgobUorQg1pPkHvX1jeV2wpb1": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12HXeZJpMPwQVcP5oWxntb5SiMLHvmTrSHKuUi8fuvRF67FaReK": { + "balance": "1602.562569176", + "bytecode": [], + "datastore": [] + }, + "AU12HY68wjcXWkBimMGJ3KUSwfN3SsuxXMxQg36WXhvgMGwA4ELQh": { + "balance": "1098.227779655", + "bytecode": [], + "datastore": [] + }, + "AU12HYQ8zuZTzTVrwinDyWEnCff3kTTBGPZ65wtecLSjcs7PjkT9z": { + "balance": "878.692577890", + "bytecode": [], + "datastore": [] + }, + "AU12HYaJNp8ZkT9PAjQeHkJfpJ7oRhwuQqoL1k1yVYLwjsFmgwWuV": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12HZ1r1qoVaeRZri9QsUGg6NefBUh2KhJFXEhcchst3uwBfcxPp": { + "balance": "234.101713039", + "bytecode": [], + "datastore": [] + }, + "AU12HZJ3uae3Fo6a8Ns9yTZShgNCEVAoDAzU8gq6ox3uakcqD117X": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12HZLwGXBasr6GMQpYc5Zkwx2mMMGF6aPTKr3rMVKREVf4zasLH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12HaHYqnFUErCELjpzqmbJWUT3RwyqB7AnD46itLNBECxeWp4tH": { + "balance": "2302.736331063", + "bytecode": [], + "datastore": [] + }, + "AU12HaK7TD7HGwCzGFB5ZuQifUNnC8ThwisbRqCSGhBBX9pcf55qV": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12Haq6xPY2HDN6xwaH4u9Fu8x7NxTGoroh9GcRuBJEjbSNW3FwS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HasPFnjo9FehS8SVgEW61xmwAdxMu5hs1xdbPpFWVdfVYwrQy": { + "balance": "655.402633416", + "bytecode": [], + "datastore": [] + }, + "AU12Hb3MC9DXZZnrqCvMYxpc4vuTGoNhx2SsuZ9VqKvYUEZWikJPe": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12HbEy8i9H8aJnPbF3gY11NDzSx3yhC8Tteq4UymWj89uRn7ULt": { + "balance": "1146.566957172", + "bytecode": [], + "datastore": [] + }, + "AU12HbkEEN9barQkW9aSRz78YbCUGYFbqZ4h2nhcGki2YvxfSw9tE": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12HbvL6sYKqgFo2FmFvCMj3vuUkVHtxk5QdRXKR9MapYK9AF2Fz": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12HcbyUsFg2rQ1hEhrwUU6vJ45tK4zvwoLcLDDeqnTXx7yE3pvN": { + "balance": "3363.762700019", + "bytecode": [], + "datastore": [] + }, + "AU12Hd5G31DsKN5RAFbvghVwyWjFakLoXafg3afm3UfFmwq1Tpywc": { + "balance": "1861.504856230", + "bytecode": [], + "datastore": [] + }, + "AU12Hd5PdTx42WCEs8REdLKDv3dowSxHWaZigMgffhxh4mYDe3EC6": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12HdCwVSGmZwq1UFfvtseGN9QNHukB39UxenHsjMPCzaRZLHFnK": { + "balance": "1091.482459162", + "bytecode": [], + "datastore": [] + }, + "AU12HdEBfC1f6A5a8eacU1ZKCNpEMynSjMC58ygaoeW96J761M2jY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HdJ5XgaxeT9qJzin8d2BHz4qTaSDAWUZL4r9AfXSsUfhgganF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HdkJPe2pkEEM13Usb2KumKbeeuRLxBEszNrqPsdnyxG6JnFBQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Hdp6bG4D9AuC1M12xph5GZD3BeiinSoqdQUwUEaLVryn26pqj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12He7xmvXTdT1BbRrV5WPCKcRMgpG2fjiJu5naKLJRMQNwvjTZA": { + "balance": "1355.053086211", + "bytecode": [], + "datastore": [] + }, + "AU12HeDjge5CxUxeDXbeQm2CLy4hAJxwTiCreYDCzgDR4jygU3BCr": { + "balance": "951.390074966", + "bytecode": [], + "datastore": [] + }, + "AU12HeDvqeR4za6KGKhq4z9JsE4EkDFwSD3w3r3788M8r5rJEoyor": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12HeH8BYZQegfKreRdDgJSs6UUByJvY3tbkc1c1FR6u6jSAkHm7": { + "balance": "948.393437885", + "bytecode": [], + "datastore": [] + }, + "AU12HeMg443UyRDqmZVpbdUwucEwYaFst9FWSNZgzywCeY8Sy6KDz": { + "balance": "1928.278867992", + "bytecode": [], + "datastore": [] + }, + "AU12HecKheHtQXwoVptdoDP2Yikq8Far5pnWFKgdW2SuuWqAZqZgU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Hf5xZnpGp6MVyFUYiHDokkSENyuiWQuHq9TpNwLMr8P88YSQ8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Hf9Q6KaLDUwi9f79J5Mh3bPQSxdZB9Vb9buT8zSjWoMkHhZUD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12HfP4qT9p5grLR6iK1VSocjzRPSNrNLJVNTBWLX3t78WFbJEgt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HfQsRREXsA2q42c7wvFzFi4cnKTfqmue6tLwvB7F83uZq7pba": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Hfmk5ZYqNHfYGBXM6gjbNKHkPBy5ttRymdT5PBTf5esh6P2Lq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Hfs8xtP3PVGmYu8mGSrZMSP1r2UaLLCsTmxCWaoKTezpmUs6m": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Hg4Xz7bmLxrkx5dojoQR2NGoy5mpS8NVeW3AAi7gJEy8JS2Bx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12HgGNCfAN1qEtUXUcvo8upk3Kngjd7sm2ZF9WReGkV56FJBBJ5": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12HgpfKYxek2FqkQg2D3dvjyasuctiWzhsP7Z4cTbGxy5sXXWJM": { + "balance": "4341.539184317", + "bytecode": [], + "datastore": [] + }, + "AU12HgtqMNMLTmrRjV18w83YfKLhJFJGQWKiJiykJvyGfXaWKXz5U": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12Hh2DrcnQvyMg2qGnMHQYwxAa4ELcEdUM516we3y3GeL2LS8cq": { + "balance": "2886.632417933", + "bytecode": [], + "datastore": [] + }, + "AU12Hh8i4csPAJtzWAm16ANcgqsFbPkaa3QCmDTzBRKfiT5vhCZFy": { + "balance": "28500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HhP8NzWkVhdExB7nq95orRAPjxrJbnxTFzZG8eUKjBmaAqaWk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12HhgGJW7qs5kKpBrzDLrKr3H5fLk16rbJNDby1urVsH3mTUF7o": { + "balance": "4641.162063813", + "bytecode": [], + "datastore": [] + }, + "AU12Hhqz2ZpmZVv9z7YGcusJofu9LP8MGtxYdvQBFSZuwSwxYh61G": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HhvCyQaeBDid2AZe3EpUfVBAFnasKUK3hjEKVE7geHS7RGN58": { + "balance": "2109.099972122", + "bytecode": [], + "datastore": [] + }, + "AU12Hi1BZ1nNkAMVA7S5UEp1TFkGC6vCgVtyuA6hBJPBwPzw1sgVZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12HirDXDAuqF5gFK6398brRbUT3Pw4TjbrAAMyLwSk2hDmSPbvR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12HjEAvmpLG7JuwSpaVwriFLGvnSP7SiTbwxKE7ALwYdxSsgxLC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HjEhdxAqgJcDAStZiXkqVpvyt3656Q2Adh8mbiuQsfr9igcx1": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12HjZFaLWxTs26sgjLxnm8XCLHSdgt7zkVk3xhsk2ztHgXe2KD6": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12HjsDhut2HL9Gtk5RL62gtvxXVFqESbDwto34oa6tSiz3mvpJw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HjunaycBb7MWfSgGcTsqLWa4e4Zgw3pqGG6DcBRhBi3cUGwDj": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12Hjx1j6YcxumkKaN29TUR1maiWFAHT6qyraTdfqXgxUhbCi8bD": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12HjxumGuwNwb7fTwCp5FzZG3bXiNcN5y9xVWBGj8Soqe2d85z4": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU12HkptrUFJwYmN4u3XrU7F4PZytGbWk2CunTotVknH96DYEAfy7": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12HmLqovgTX1ML9RoQG6X4wSnVCKPZiF8EEVzM7T6nwVJezFwAm": { + "balance": "2103.126298205", + "bytecode": [], + "datastore": [] + }, + "AU12HmXqbvbgNvmitxSwccaaroymQaGkMS5QSgxTdK5TWSWRoee1k": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12HmbRHo57ajXrPLerMiHuRNX9xzZcnJbMzo7s9UYzPnmjYLoZi": { + "balance": "1929.940656487", + "bytecode": [], + "datastore": [] + }, + "AU12Hmp4xN2tFTqRiX47d8kUrZjcMNFk7cM1qPsAphgEK1wxF7LVd": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12HnAuH9zfhuqugMzAoinCi49ahRkNSvFJw73BoiPVXBzDWazmc": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12HnCE5B4sJs92eDLSaUA1UDJEtVCB84EuGYt52RU3TAQiduTXE": { + "balance": "1559.789343673", + "bytecode": [], + "datastore": [] + }, + "AU12HnSmAHP4Ptxf7VzF4SPTPVknxjHe55nkiNTjfP1eBycf6f5BP": { + "balance": "888.426488986", + "bytecode": [], + "datastore": [] + }, + "AU12HniCqhSiiZAH1P9QUKX9kPu6pHg9yHrgy2h6gvSoL1VC1riQh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12HnnaFhvCXzviH85Gn2TMKurdC7WzrGWFgMRreN8D7kVaZvLS8": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12Hnrns7Y3PE9X9ZKK2AAKsAp1pjuDA8HZc7FtQxg5JnPF9utbN": { + "balance": "873.782107337", + "bytecode": [], + "datastore": [] + }, + "AU12HnvECE8GPLcYwG226LoodiSifdEUTUGYt7KEodWtFFgQ6owAB": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12HoZPqQXsTXnHjjPsgDnVrt8KccqZ9Fc1V45ciL9wH896F149e": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12HpLgR4Sc98wcp3GhCg55XW2bM4a6RfhiDVXGmLv695TxREgs": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12HpgWiStoRQTrBrVjgVr7kpKvfN3GBh1xZS5R4fG5uwjjJr5Br": { + "balance": "2352.652031954", + "bytecode": [], + "datastore": [] + }, + "AU12Hpj34eoYHL1NAggQgdGyDB1pEYUfEqLi7ywy5b6gTzMg7XtN2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HpqcsVtfxKPKTZC6ted5PYQ7k2PHPXSoQg2waYKYVUwY9DC5A": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12Hq5q383rF64QfQzVvY9nYongEsb225LZGh5X8x5mnKLtVnHVy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12HqBQRdk2958nc9y7CHfUytv1UFCfBLTGJcCpmrLqT2ueXsogd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12HqJiwVQe8WszBjdPKvLA4hznhaXRjuJg1A1rb2iuSEMsvNkb": { + "balance": "2555.721654464", + "bytecode": [], + "datastore": [] + }, + "AU12HqKoa7MfQHKAHUeTTCXoRwtoHJ22jtuXH5qNEALLaEf9uGkkE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12HqVbuQ4H9U8vSU3zBEAF5UJNhVDHXxRvvSUE1Au8AmE8B2bGs": { + "balance": "5678.396080999", + "bytecode": [], + "datastore": [] + }, + "AU12HqXdupRUjCK5ZcDwQgBBVeuvFhuZVMBBvXkzfVN1vgZvRQfqS": { + "balance": "232.054696799", + "bytecode": [], + "datastore": [] + }, + "AU12Hqo1hhbzQSrHPSG5gJSTKNSuav5iBgpVMwuqzeETHfWKuzLdF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HqvAHWWQQASrbssMf4DWxwjeP72ESQ9XVuHnbQaz1sSfV999F": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12HrBbKWrd1AxotywqAHsWcqfy43EHRfTJUeEyVcjrixH3Nx6kG": { + "balance": "4533.595004563", + "bytecode": [], + "datastore": [] + }, + "AU12HrJGTDmosqXk3o946n9MHQQeCL24NFa8XG64AoSp3dCn8SYTY": { + "balance": "595.183450438", + "bytecode": [], + "datastore": [] + }, + "AU12HroKmCiVoX5uRR4UiHVedcRRq2tkqRoVG8CB675kz4es7tGAK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HruNEkmmUfrrAWWSBxG6ECfcEnQ1wckEeHiwb6JLQaAE5Wqy9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Hs5RLot2fXbYY58vU5E5jzn6H5pzoTqmXtcspMkNS2UdffqKp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Hs9NoRrMTRtpHvEuz8gNmtKEy38CctdLWJnkedKYSHVDyR1qv": { + "balance": "4809.493912521", + "bytecode": [], + "datastore": [] + }, + "AU12Hsamwxe3up5JkJmRBNNU4QJgo8McBSQy5yhtRqoWna1Tv9X2m": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12HscorqTLXKbvT27y5xEgvbiAmVDeNUKaNQZNPKCiVeTC1dhPF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Ht5TdMkN1EcgDmqNwws8oLCpPLuiUNtfe9u1VJro35t5HVhto": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Ht6PtLKywoMe8Fn7i1V2pceLMjZDe23VxCJpt6SnfR7SKxRDk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HtCzG7pTiBBSEjXkcmCVsxvg8HHh6S28zVPA36wrk1hktaRtG": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12HtRzt5KJarnVy55pVff3odUakEXCojyBdBgeNRLrNCQRKHfia": { + "balance": "712.036029933", + "bytecode": [], + "datastore": [] + }, + "AU12HtWLyCcDbUzkYippAdEREFRwE3dFWSR3LYgybc1LjJ8JUaKQz": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Hu51WzuyCbs1MUHCPyMCrCc3zVVGmBNfuD1JPrs2uUeNg6N2j": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HuM3aS28RwJ8d8gGKZRERUG6c3TBVEmgKnhbHu7EvD4QMGn61": { + "balance": "1017.642954706", + "bytecode": [], + "datastore": [] + }, + "AU12HuXyYphA9m7gdXQpPvD3zE3A8xvjy7sfR6RqFwEMt65vVwwH6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HuhusfLTB62A1nLZ59G7cGWN7kkdTFTuUDrGxPjEezbyc17Jb": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU12HuumxgYHrGf6kyERFLaPEGfgH8M6mr6uXUnETEiGn33fatPSG": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12HvtyPZfnqZKWq3uUgBWj8PjN1Y7jmTjMRt7hosEFERjawCwoU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12HvxGZjDBTxpgVDwo1BgFQw3vNoVGi11viskqDTgCRMqg2Y8wt": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12HvzXHuQncKqHxubfvnPdBrZm5TXgjUzNnZt3baGyyXtT8iTJR": { + "balance": "274.495545858", + "bytecode": [], + "datastore": [] + }, + "AU12HwBWqNtnd5jPWiWbvUT7vbQJAkZuMdHoxav4wMo6HCKmuAX3b": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12HwKRRiHZqzDDW8TELAiaKUEnjgiMYABQUhrdTY6TLpgs7AxZd": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12HwZpJJojBynNmBMogP3c2dtkTPPRNV9kg33NMP4VeCMTAfRP6": { + "balance": "244.355371562", + "bytecode": [], + "datastore": [] + }, + "AU12HwxW3xd3A5L76JkMeoaBNhNCa1ZKAGc1xXiAUP2hDeBbHD4Qy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Hx5NYR4o993jVG6k9gs5WzgodzRsY8VYLs6zxABtomZwjLoMZ": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12Hx6Ykb7LtuPKS6LD3Um2hMcMLYcQwDB9gQywgyiNbctv4fYje": { + "balance": "18.870612430", + "bytecode": [], + "datastore": [] + }, + "AU12HxFppAo6fSpuj8WdQy4ycSeByn1wQpiBn6LwxAwcDvhJqVxHf": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12HxL53vnmN5EZ1F3zQyJRVun7y47RXTSzCe24EBsbHSJveouXG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Hy7zEEPyz7nXCvFeRnEE5YLzJCXw5r4diW5k9mthzeT4R1yY1": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Hy97TMvcjeiFP7rhCNjDoYoGrQV5uRLGf9UXFS17nPPX93DA4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12HyAhHwo6yfaKRHHCzXZ9yx9r75rPfizdxfqKxpVdT6hTdFEfQ": { + "balance": "836.580221094", + "bytecode": [], + "datastore": [] + }, + "AU12HyMFhckmeDPNHX2zFQDAkzdVKxR3ffaE7rCtgkhWTi27NQiq2": { + "balance": "1652.367371032", + "bytecode": [], + "datastore": [] + }, + "AU12HyZXvnfoPKEZWvuxK8XumYY8ttvE1uk5NPEmMieKyHeAyg6wK": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12HyZueKDSYveLf6yj7As7RRvUd6fj6k4BWoU61WoGKGHwp7tuw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Hye8rkuocuu3seGpxEV7oyAgHEkTwPkiJkiBW7bhD7DSiV6iJ": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12HyuCjbySynoaDhjGmqhRn9fec9MvUp2pByWDwCtNXm3D7TQJv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12HzJqK65CQ7sURHnaFrV6zc3YS2hMj56SfSCetvYctrv6CceYv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Hzxf9i943uXSc3NQCPhG7UZnKbH2MJrL6Gi2s4LW5VeSUMuPK": { + "balance": "1392.607525651", + "bytecode": [], + "datastore": [] + }, + "AU12J1KrE6uM7m8p2HHj4srxSem39WqqPkxK3uptsYJDsyqWmxBdH": { + "balance": "5387.937030576", + "bytecode": [], + "datastore": [] + }, + "AU12J2EXTUbSbNCriUbitJFBRxX2dF9g1qhRXS8murgMv4PdUrr1H": { + "balance": "673.862982064", + "bytecode": [], + "datastore": [] + }, + "AU12J2JbKdQLV2K6JJZs1AJUoLc5mNaXF3TNgF2wkNRfeZbcYeMDV": { + "balance": "794.220542010", + "bytecode": [], + "datastore": [] + }, + "AU12J2x7NNMyfJA6QstxsSqSBbzZHoQn8587XZY2u7rjgbB58SobU": { + "balance": "1056.295689519", + "bytecode": [], + "datastore": [] + }, + "AU12J38cDTrtqA7PRqpQHmhk2FQAX5k92bT7B5CbRbvUJPrs1Vz7n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12J3F1jZNyu8mEnPM73a6JNuUVgGwooaFe1AADENM1A1A63D45r": { + "balance": "12509.329423725", + "bytecode": [], + "datastore": [] + }, + "AU12J3GUxwRoZUfyDsgVFkv641e3YwhPeyfH4aaMdH5VHE6dgzT5B": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12J3K13kaMcjLvzuXKxsuqFiBx1VwJMZkXK8oqbPt3VLku6Ld6f": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12J3tQKAd1W2TJ1LzUB3VJKNFVDNwYuFKwR4naoW9Ky9wXwnkdv": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12J42KpR6ChnpHMZUptkwWAWzqxJNzWdXQh8oQn32eLWuELWMoG": { + "balance": "1864.160704351", + "bytecode": [], + "datastore": [] + }, + "AU12J4SnFhP5gVAiNpEaT4uXZcZXjSsDAHatenp9xAj6TLaJ4DDjt": { + "balance": "2635.673276218", + "bytecode": [], + "datastore": [] + }, + "AU12J4oCnjFZJ75YU3H1A7V73nJ1wTNFd9xFKHyh5e8WgpUGTJj29": { + "balance": "542.429178305", + "bytecode": [], + "datastore": [] + }, + "AU12J5eMuL5o6Nz5EjuoojVyJ4PyAyTH4jJqgXVkFeTYKFXe58yKM": { + "balance": "276.666733746", + "bytecode": [], + "datastore": [] + }, + "AU12J5nW6BdeZCSW8j37k7qY8MFvatrGUiw3W434DfKtHKik8j8Sf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12J5rdnHzHBNCZQW2muZVZFRea6Rmmd3f92waAyQ1DwtPGVtfX9": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12J5tpY3X4Sd53hKSCy7VG8JqeoduYRFwiSmm4VKbTX6aKAnxRg": { + "balance": "956.277088848", + "bytecode": [], + "datastore": [] + }, + "AU12J63pwpAsRx2MMViw2jHLRyy1M88A7D8FHjRCBEBaBrpq1iUk3": { + "balance": "2315.594581609", + "bytecode": [], + "datastore": [] + }, + "AU12J6Fzp6XYtqAnL8j66VeqMQjm1dUAu8AfDYepXavSkAETjn5Z4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12J6VQREZv8DHfoJ8sxRK5gaZdmAQSdJXcqG4RWs6br72WZcPmR": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12J6hT9WCqANA36Bxpw6gv3T75HdppA9DiSEQJvzECpVFXp28VD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12J6yDmFcVsuZA43ACQGimawEGo3Ce3jhm2dj18PsVVW9P43dDr": { + "balance": "3541.529497695", + "bytecode": [], + "datastore": [] + }, + "AU12J71wFLApexxWqKmg8hQz76eqPoAx32G6u9Y5Twm983hszDepg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12J7pfxhJHpozz7QayWaTR3HXVahCiPCSpgS86Ho9LgNTsemMPn": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12J7q3DgyrQfeT3GKz9D63juAdQ1V3zioRsLHN6Stzgb7QiQt7i": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12J87gFrWo2wta2C543yX63ifkdhTRtBfYVyCWAmYFqrZnoCKiQ": { + "balance": "1298.474428883", + "bytecode": [], + "datastore": [] + }, + "AU12J8BRcLgvG73f7fi3VdCUi16yn57T1hcoudaBtPTmZFgVXhP28": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12J8ZcGKQsDvXdF2bapGeLbGr4SxdJYSGeAWiytkgHzUGkZdKfn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12J8cWNvyrGjDu7dQrqaGLdZpettrjwUUxe2LAnqEin82ZUfqjX": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU12J8fyWUqsCcJbtYKsjySxVpD6nRt2Dy4ezP6z2gFJApCo7DL8i": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12J9Cc1HRtaBebFFQ4cKphszEJ389VHfezKC6JCEyVa3M6c8QjA": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12J9XNKEZrx71bsyGsuCZDb9K7gTDSCv2e7LN7ajvajCm4X1do5": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12J9gGv43EgMqGJMrHTnjmPPbRtjAzGoq21h6W8BoHADVLx2s1": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12J9gi8YypGqvvH75BD3atxP7NZAiucZAv7KoNMofJvP6r9CmDK": { + "balance": "1631.987038783", + "bytecode": [], + "datastore": [] + }, + "AU12J9jj8odxKKjUSxhpPFSMZ6ZBqcjfnXAMwfMExfyPhqPR31srN": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12J9mvJC8vaQErFtPg8yJYBjULqffpKzNWpysZ4YFsoPVyESi7b": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12JAvKnKUsURymmWvyGphfdF6h3tURjNNhxSCpv1AHE6ZrhkaKY": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12JAzdAnwDm69YRLgrugSHtxsWUpkJ5iQN8nT12X7RMWXD2E1bc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JB9sSKjsCKboz8v7wRiDZgoAzE3tu8FxgRxe5w1rxsZ1qjwQc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12JBFZTY7o1Htu2yBy1PzqPcefFkWN8jv2ofTqdt9EiooGoywe5": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12JBHmDJt5wwxF4oxCVneC1PFZMovSTfb4sbCdVabwNQMyQP3D4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12JBW6QyGHdKwURidZRfUh7SxeUZ3UF7XB6h4QpoSNYwwhL3jjj": { + "balance": "171.364179576", + "bytecode": [], + "datastore": [] + }, + "AU12JBZB6M7jeHZwX7MVPfrhETZAASBV2eLFy5iGGEg85py7uzu5w": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12JBbFLy2ZPVxErBiJrH3dcHwSDBe1Kz4agcnKfFieYW4Sz8GMb": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU12JBrwvRr3j1bL7FW4LkYf2cVdqeGvbVwTwDffyUTSGvvnTUPCv": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12JBwa7wCEY29rboaCn41hJkWfZSntNtfrZ3H5cQQTRhrbeQt7o": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12JCQoMoc7DXMZjmAqQ7BrJy7YbArj8buEWJDEb6j9Bfd4xqDAV": { + "balance": "1891.154826303", + "bytecode": [], + "datastore": [] + }, + "AU12JCk3hJkqTtab1Q55bGdccKmrTRDk8fPV4BkaHQjSDZARUJaXB": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12JCr2WNeVAfcnRis5eejwQYuW9cFxUD4dDDLnBeEcqCgyPiVX": { + "balance": "6133.259048451", + "bytecode": [], + "datastore": [] + }, + "AU12JCyTrhcUJu71GWXMrwHK1TNKQcxpzTykjqLD1StxbgKqGPAGe": { + "balance": "10074.392391657", + "bytecode": [], + "datastore": [] + }, + "AU12JDBXivNoKdqZzpWPYZBDSFxAM8VFdKvw1beELtd3BiUZukxmg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JE3HgTFnBKKvf4QPwRaiRwmhgvvT7KE4hfPZ17M9kFizi2jd8": { + "balance": "814.120028981", + "bytecode": [], + "datastore": [] + }, + "AU12JE7B5tcLJHgkTAktGG8fKxhT4KHzAi6nMiktXxc1evNARTbUY": { + "balance": "2046.859050247", + "bytecode": [], + "datastore": [] + }, + "AU12JEPLGp2r3AunRz2PC2s6vyhGTmLXiKok1GJM69efEvgUC1KLE": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12JExWmkzhBUD88C1hWcb9P2EpAuFAX1TbUruEqFgBFfhG1zrxN": { + "balance": "1477.065505371", + "bytecode": [], + "datastore": [] + }, + "AU12JFKjPWFKb4wYhw88dZkx9GYWcej429grsQkN2p8Vc8yjumt7S": { + "balance": "1215.803563274", + "bytecode": [], + "datastore": [] + }, + "AU12JFSESZRjQJiNDGZKifKJi2wSS1dFWxtUvJb5Xrif9ZD7pvKGt": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JFcS8Jj1Vhs6GPH1g5rhCVae5anWTobQRskbgwrzuZ7iTbyMD": { + "balance": "866.878311982", + "bytecode": [], + "datastore": [] + }, + "AU12JFfzrbypGvyDYSKU9EuUWtQe5rhfKJJ4pmvd7NXBrNWTjaC1z": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12JFqR8A3fgw5UW5rMudHkaurMfgsb5UhRoSXUqQPYvZ6LzyFm7": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12JFrvFeL9nSmyDA2YfZdpesyvNEhSuKuqMb4aZHvbvMQc1yzqk": { + "balance": "2638.221867503", + "bytecode": [], + "datastore": [] + }, + "AU12JFzcCuSnPSMk5YqUuSEvhbvzBUUn6WAekM8iFZYattkny8c1Y": { + "balance": "2316.243247992", + "bytecode": [], + "datastore": [] + }, + "AU12JG1KjJPFLUxecLD4fbYsa7UYUDWQ3NGTagvq9RiJJzE7AjMWR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JG2kDCGPJohoseurtmzmufmk56yA26RxH14AUHgMeE9DsS1fd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JG6w5yNnTG4aXEGaRMR12CxFZEeYvKoSoGAcP3aMr26T3jqjj": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12JGAHKRPqcbw3npNhdZ17ebdkALj4R8Nvqd2FX497Wvpankp5y": { + "balance": "2461.258106690", + "bytecode": [], + "datastore": [] + }, + "AU12JGDS2EkrJE3UWegpdynxitLh8Z1TM7xLUxzFLQrDsAc8p1yXQ": { + "balance": "5166.082173757", + "bytecode": [], + "datastore": [] + }, + "AU12JGTFCmjiEG54c62G4BSs8ck8ZzgkAwV1v8biydLCRBFBnS5Fj": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12JHCF1CqWrwy3VRJ1j9y4p2W4bvs9qnPMJt2JPya9w4j9FFFZM": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU12JHQh12kpGU8mAyrUhxTcNNZ7UyCMq59pBXcTgZFddNvFMGuF2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12JHRVfBL2wp7Q5kUKr6uXh31wL8peXteSdCKPzfrQypgo5SsQg": { + "balance": "831.265884596", + "bytecode": [], + "datastore": [] + }, + "AU12JJ1Ae93zkbuaLN3kk7bCsHrsHQMuTj8BwqRpdDUJPefmTuD76": { + "balance": "280.461118712", + "bytecode": [], + "datastore": [] + }, + "AU12JJ9ntgPXo4zDNtF8oGerAUe6crkEAGjU6ALxsDXu1o6oG1d8X": { + "balance": "949.463582834", + "bytecode": [], + "datastore": [] + }, + "AU12JJDHCcuqyRaUrnmL8ae3fxk2Yzb8xrBMwqwxKuvf56oC4RNbc": { + "balance": "555.340103859", + "bytecode": [], + "datastore": [] + }, + "AU12JJS1KhPb2cw37BrM4aQcAFQKbhGYSHz6up9Ay9wsZuGwUN4PU": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12JJXe9Zeeo53AgX69go1kN6rWE8UeAgNGVUmnGPCESLrPED91Z": { + "balance": "2163.248921663", + "bytecode": [], + "datastore": [] + }, + "AU12JJcuxcuG6GGQYGgVHYLqS6grGeWst8tRpN4AdM7NymTmfnQDY": { + "balance": "1037.675502193", + "bytecode": [], + "datastore": [] + }, + "AU12JJg4KkSBzrvAru1BytaqHdWUPUFtPqGTLCdTjRw11ieq1xEoc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12JJkroNXeK3LJ597Nr8h1RpPc8WfEWNjaBbDqwKbqQMFAjEkYf": { + "balance": "1888.772488726", + "bytecode": [], + "datastore": [] + }, + "AU12JJxUneYqHLbfpEMXyE8ShswrqRyWVCrquX9AT3DbGogGh3YxJ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12JKNAn7Ra6oVbTv7FPwxEV9xUUmeNibbb6j5JKu12DkGAKgWoP": { + "balance": "1204.526867684", + "bytecode": [], + "datastore": [] + }, + "AU12JKNcBo3Ggz5eztmemreZ6PhBd12j3syUWijMNuNoz4PmDmPAV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JKTCiaJTt5Rg73JnEo5wZX6qLeSTgpwfo6onBAFTAdTNDRfsH": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12JKWGk4e4hxkeSQRF9WVquoQbVzp8pYKupYyHmKM6Dvn1kJZun": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12JKZkBtcie7FkgZYny7URSALdCSmGgvEXZS9dZCWNg7Y2pVHSk": { + "balance": "1021.944951535", + "bytecode": [], + "datastore": [] + }, + "AU12JKdhqwunDNw1FqT5x6u3RwvMzKFBwsM1FWTkBiHATz7EWSgZu": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12JLSeXsH45z9EZchjgBARhPiaXN3m4P9EnNhEmCSfdLCA854mL": { + "balance": "2329.660147849", + "bytecode": [], + "datastore": [] + }, + "AU12JLfDB6kXzeRtNDW3frPVyujjwBNvN8s5Bpin2hgkJV6yMjMEN": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12JLi2hg2xAcYbTUPdLxtviRPdtypTiRg9TqkR6GDdT3U47eScc": { + "balance": "2163.330263784", + "bytecode": [], + "datastore": [] + }, + "AU12JLxc4ZUpbA47Yne6bpvg1BxvQNPiYAW7n27qSUCY15h91ddtE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12JMbubotani8yofsTxP5q4FCYEPy8po8mRLjjQ7M4hwkwgNtEK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12JMg6MS43XBVu2GMh5rR7LxTEXmt7oHAyi4geDBraM73KLQDVD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JN4QBzZqyRRxsjidAVJVy5eE7fwQnuKVUmuCVrKEmovCvKz3G": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12JNARPDphkF1n72MQGCwUnSRmRp9PMS2XNuPpjZSnWxF85x79p": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JNTPo42C4bUW5NxainBZ4pESdjWNiVTZNJ1pUk6xWfSomKggn": { + "balance": "2409.466244133", + "bytecode": [], + "datastore": [] + }, + "AU12JNg7SH2FnsHoekmUQEc8CvtDTAnJFZ1aXku27u6HmL3bQQbSa": { + "balance": "2213.811601237", + "bytecode": [], + "datastore": [] + }, + "AU12JNiK3z7MYp1RtFjA5J5eHq8rrSmbprJ6GF86biAcYUKgLPAi4": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12JNv9UxBKSUwCHoSRMWEbkMU3NSYy94saYf1NJwZHArpKBViCj": { + "balance": "1266.079905918", + "bytecode": [], + "datastore": [] + }, + "AU12JPLBC9TRv9BjYLB9voWNi8MMsJdREXrXnX46SYtw88WF3F4Gf": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12JPVaRt663kQdhhHWaCQmyAwoLvp2CT2mBqFxVvRbPnjPpgtvF": { + "balance": "1345.278562140", + "bytecode": [], + "datastore": [] + }, + "AU12JPWs7XfzLDbP4JCZb7nG8WxoV4rmdBjZdu1CsazZZadiHs51j": { + "balance": "566.987096233", + "bytecode": [], + "datastore": [] + }, + "AU12JPdnPRzf2hCaqssmK4dKHTHNGdfYdM4Y2Krs7j2FZaZkRRSiu": { + "balance": "1795.385917160", + "bytecode": [], + "datastore": [] + }, + "AU12JPjDAqYTkcvqVgADWkTVmiY82wMMwPAxwptwsbRkUiLEpgF9k": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12JPmY3u67NPUGPoBubUvWS2y694aES3YWzpxX7TzQN9W21aSbD": { + "balance": "1490.691199337", + "bytecode": [], + "datastore": [] + }, + "AU12JQRNziuFPgqSFuKRQ9CPiy4WVa6iNRzYbRyvFyDsXRzeBkVk4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JRBC8y9TRL4fChj4aDbT3ojr4z7LAt4uK1DKMXF2tnZ4QH8YK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12JRCJ7UvzCP7HGdkb9DbEYLAZb1jfdhEZZ9pefAAuSRt3kyU7E": { + "balance": "1263.004082883", + "bytecode": [], + "datastore": [] + }, + "AU12JRbm6f6X3CXcn6FHKsNqHQHGUThXZP1996oDFMZ669hxYkBL4": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12JRmea1K5DG5sNWBRkGSzH9ZmF6ZDDUD4YkruVkFdVt2q94enq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12JSJyzhSzJwyPaGQxMXGecNJGdrey5UrXUeAF79t785UnrSUzV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JSihPZCGsG6BJmPUZ1SAomAd86SCn8oJdZwQMHdQrdSd2t9xX": { + "balance": "1984.404633242", + "bytecode": [], + "datastore": [] + }, + "AU12JT5hKGqrHfn7UvKuVZxauVwVY4nbti7XVzfEye157dYck8yvQ": { + "balance": "1952.273479716", + "bytecode": [], + "datastore": [] + }, + "AU12JTJcBNwFuUwQgawEm3xSdKjiGsHyPaqYpizhYz1QwXsHp9zYw": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU12JTJqBdkvu6xhXs5X3inAPjGdFF5YZ8aKbLZxhpTBzRcXawV9D": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12JTLpcZCxynknivW4m7Qy7u2P89f885TvDHA7o5Sg1zyMiHzXy": { + "balance": "736.051456849", + "bytecode": [], + "datastore": [] + }, + "AU12JTfpYSvxrMrFcqKnrHAQbRQMevcw8bSpUj7DuLLAxixh7Ce1X": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JTrZMw4jjoVpzwMBZYg6BvMJiPemjSoH3nWMyxvoR9YhWrjgW": { + "balance": "2671.523230585", + "bytecode": [], + "datastore": [] + }, + "AU12JU4B5q9L1q2iBQZYV4Xq5heHumAngN34wA6dhEGYqW2CSrcfW": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12JU6eXvkg8LbeY8yBL5EeSGDZ2jBWpAC1P9saffYerJ39g3btE": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12JU8cZ9kvtVz1evZmX2UrRaGm8zhaavCMaFzSzDdyqNChZehQK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JUUaJQEs335AQ9E1QpoJycCdRa5mpiWfL1igjrNJhnc9xkBNQ": { + "balance": "1093.345135013", + "bytecode": [], + "datastore": [] + }, + "AU12JUW6o33Z7e5FxYNJY2MZBBFwrf1oYxAJMhbG8v2Pw1dn9x5Pu": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12JUfMkWHBjo7sw21Ki8m6X2Ag7QgfGrfovPzL89FyHVczgRqET": { + "balance": "1553.386519843", + "bytecode": [], + "datastore": [] + }, + "AU12JV8o4uAo69es5BYLy897MvQxt66JhHZR1qw651BJeUQRkBZyA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JVXKM56SsNMEHV558T9FA7XSUwJbE18eP2xhD5feSMR4RvsSG": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JVafJtgr8HHkkarSdRYdAvXPWKYC5NMRVms62fqBDBhgwte46": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12JW5yQNvQKSL895KLLrJLzaYpNLuHdginE2p2neVRPnCft1Jz9": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12JWjbTBcj4ELVQFY3hZJrex3WPq4AeAVUXtLhh1RcQZKom4kjz": { + "balance": "2189.658860582", + "bytecode": [], + "datastore": [] + }, + "AU12JWsUPeLsXcEEifL2SiPTKkSXLxtqRpeksju7Uf6zyJuWLnsY7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12JXLc7CMUVp7JvBTyVUbEvu5XVeDnVagcpvd2XVwuExPxHYi2Y": { + "balance": "1711.859066729", + "bytecode": [], + "datastore": [] + }, + "AU12JXeXUC1bjA9EEtS59gDdriCPiqNBnvwk2zq9uu8ijT2UvHdga": { + "balance": "724.328395831", + "bytecode": [], + "datastore": [] + }, + "AU12JZ3TuN5Ko4zhS61x4r2RVNxzyU8M6YDnkc1sgRQXQUKkvmFda": { + "balance": "2877.258148489", + "bytecode": [], + "datastore": [] + }, + "AU12JZJtNtzrymuLVDRYxSV3Z6LLCGDYPojXhdmysbg19NFw5YWC3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12JaZXipyYiczrXCUejENbYEvBArna28SdwPZoJyHYGAi89iv4A": { + "balance": "1685.741023241", + "bytecode": [], + "datastore": [] + }, + "AU12JazqNb85rCWTbrpeFcaATM3atpEMDqF6r2V4DAN3pDcJWuu6s": { + "balance": "1484.166920494", + "bytecode": [], + "datastore": [] + }, + "AU12JbYA5qWyZ8LmnQzbKxXKm9evEKtc8NSgaLpSyTKLEiUneZN2m": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12JcntSxrEZFvLjoCofFn6m2yjEexeJRnVX4AY6iPjjLfpLss7t": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Jd7ioUzWfFmo2nuzkvy7mv5wWpkxaERntKsTQ1m1rodbvtdxJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JdkXrZceA4Z5Rav32GCT1za1U2MX6RUgc7YSEkkp2xB994KLP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JeShvqu8tW3ocbgiBFoeLb9swwUMQv5sPAV2snZakDppFSDnh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JetSW2kxxYeXyry3yC2AkgrvFDqKuH4u52gcBQc1K6ptjwk1m": { + "balance": "1397.765791038", + "bytecode": [], + "datastore": [] + }, + "AU12Jf4MazHa1QZDL6gsxYQtZUwwab1QtwveCT7H6Xtx6Lh4dPN4q": { + "balance": "1278.345926050", + "bytecode": [], + "datastore": [] + }, + "AU12JfeffrK6MMu43KPeg9HBQWAEmGhHDLX5HMgHLR4censh3khk": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Jfh86eYZDN1N26CGiYEc736X16MpiaMspBb414yWPaQYKdk1z": { + "balance": "2208.134648645", + "bytecode": [], + "datastore": [] + }, + "AU12Jfha1Jkwi6vy2C46FZRKn8ej4zoQWLuvJFD9SE3Z3dfQbPkho": { + "balance": "1758.553761417", + "bytecode": [], + "datastore": [] + }, + "AU12JfioXiPYSiQgbqCYsFBWbvQmGMeReMqMfi663JYTWz3tSX1eh": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12JfmS8uQ4gM83jDcirxDCcKoZ17EQ867sg1msohMKXFBbXZrvF": { + "balance": "3843.473829891", + "bytecode": [], + "datastore": [] + }, + "AU12JfxYXF23wvemE5SiJMqgCq4YacE2qUbMiKVQKQAXSfdDuyYfB": { + "balance": "684.103082000", + "bytecode": [], + "datastore": [] + }, + "AU12Jg9VyqDnBuoWFqp3va3Aikr4Wz5ZBfAyUv7Qc9xEHBQmQED7p": { + "balance": "1917.298341587", + "bytecode": [], + "datastore": [] + }, + "AU12JgDryNfoYsGmM44Ctkfd9KfQ2GVeoDR9zBvu6nCZEsMhxgudc": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12JgHK9V9ze5J4oXWEeoLGvNv6b1yoDLfSr6DgYzUo5VnAZngWd": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12JgPEPixMKCMEx98cVmDkGQk8h81EaXGqQFDTSkVPnLMRm7huU": { + "balance": "1225.319410963", + "bytecode": [], + "datastore": [] + }, + "AU12JgnorVKroLPgT1RdBYJa4Z4MGyVdrg6mcxok1vGGGN4onfwfN": { + "balance": "183.996323041", + "bytecode": [], + "datastore": [] + }, + "AU12JgrveuHLpb2Yjuoo4Vz47yuUhVWSghMvG1jHdPLmquhK2a8dT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12JgsayyYY3Y9ehQrvgEV9ug8vrywAhoGLSFx6NmJs99BCJHuHo": { + "balance": "940.032679740", + "bytecode": [], + "datastore": [] + }, + "AU12JhLorzneKW7ecw2rWWwXRc6tu6utBct5shBBbHvW2Rspyds78": { + "balance": "581.990387735", + "bytecode": [], + "datastore": [] + }, + "AU12JhTD4y3kpXWwQtgibXw7xVRxir7gjicSaMxqge6H6Tc9spek4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JhUqXC8kkQA2c6mTMDs85DaRjFoEB8xMTK1pawaFteS8P4Bnc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12JiKEJt6oBEywA6KrxL7hHEncm7gdFC4bNwE7LQU2bKtHPKDZZ": { + "balance": "5200.863151455", + "bytecode": [], + "datastore": [] + }, + "AU12JiQrJo7gsrSUSXwvcG47MJ6Avub91rhFCEdgt8kY7zHvE67wM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Jix45ACbRBUVAK2ns2yuNF5W75DzScHK5CWntzKFt59iNxLTR": { + "balance": "1635.777512528", + "bytecode": [], + "datastore": [] + }, + "AU12Jj8gDS6QQ6L8xR6sRHy3aeU1CGwZj9ykUbGgtLekUe4TiqpJ6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JkHwXycSpbG3PCBEEZKwGJLPNsqRrXDLiuT7YpqC9chXGth5w": { + "balance": "614.380889987", + "bytecode": [], + "datastore": [] + }, + "AU12JkNy6znBFsTX9cj7TiGyuQdnsWXcTGsTLcnxLCtTqMGYRo4eU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JkdNnYDKof4fsvy8PuAUSL4rBjgmdV65DuJ91rX5AiEMds85j": { + "balance": "53.262951714", + "bytecode": [], + "datastore": [] + }, + "AU12JkkB46mFNVfQrEgVcUduDY3j9SM4uwQKdDVD5pmfH7DREQYzu": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12JkqJsKf3RenP16Vzefv4Z2aNQcDf8p6kWj6Cw2icBJNkKQM3G": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Jm5zxPjCc4jJTxBoNNegjM36KQZa2tERhjxmc7Pxbe5hUaq4e": { + "balance": "4253.905593435", + "bytecode": [], + "datastore": [] + }, + "AU12JmG83GhcV6BHq5arMw5uBbT94HhLFsa7EcC2BMFEFUMVDsYvY": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12JmJwwauqxT3iLLwFYqD7ULkg5pnf3XMgLdWSYrQdmaa6Nv1Bd": { + "balance": "2564.975712504", + "bytecode": [], + "datastore": [] + }, + "AU12JmrukpzWFWUkGf9jdLcgjnRD7zGgoc1DE8Gvsao9YgGKwqsDz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JnyDpokMRNYDSiSmEcNCEkPc3oRqDWpw8AVsE87Y199XhW4GX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JoCYMPswvkJsCEznx4P6kMvxaiWy7WogtQyXhtvpMk2b2zqtN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12JoaJDafgE84cxGExbHaEkYWjBA5Cz4gJMLGrbHT6EpwHEHmp2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JofZUCpumLhS4rKbPCVBz8ktVx8b7yF52p5zsLmnf7kD4iouN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JopXmCPHjj3s7HxgW5hk3FwgPYtK7rRnMcTHhUrAVK5zofQn8": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12Jp3XVdGCrz4iJyhLAiFM1LXActGNbGHUjYEvaNkbcPHhwAMxj": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12JpRHh1vELAB866faXXiYzpJWZVYBWz9W1z761XhKk74qqc8RM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JpUNKG1CsDejReAhwQcw33rATFvktEp33uzhfgFWXQUHkmVcq": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JpWyUumF7DzQjb2GnDxmEHsWhXJaTnE49RfwpzWd6NTxdGqoK": { + "balance": "618.060925904", + "bytecode": [], + "datastore": [] + }, + "AU12Jpv8T92P2gTJK7zb7CfuGLScS9n9GLZgqDP4FsdE832Cuv5Qm": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12JqWSE2qmQzZ6BBNouMqDNiR8vXE5zC7KQLK9fWVFRXZPmSBR5": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12JqoNVPwcwcLTKem45pcqRS1wAquw16WHEcuwKF9oiLABF91ca": { + "balance": "1946.632802442", + "bytecode": [], + "datastore": [] + }, + "AU12Jr2gwdsCgzQvaPNo9y5A2kLnRkZc5TWuUZEPkjcA73BnBBzDe": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Jr4DYvff6fX3NzCDEyFp8xxaVdG1nbDcEmaoDBzsgPFYj8qR4": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12Jr4wvoowF3hnZZfw1PktJB2uX2sBWzG8hDRFD3izJBgrj518T": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12JrBZt6UszNCdg62iwGUa9gmdaudZ2GMG1wP7z3A5xfRU9mMZZ": { + "balance": "2361.252610866", + "bytecode": [], + "datastore": [] + }, + "AU12JrRG3S2P7SmvHVxVPBcihTue7FKCcE3LZNXSnGYGB6ZQS3LMv": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Jrs1ohrWy96v49GMVPM8t5Dh77HMek4hmaBjQ2gW2TGoEcEUf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Js9LGTVyG88C1mrwxFZFxGRVKZH6ipxd7PJUYjk51gXGQmMPs": { + "balance": "913.752641624", + "bytecode": [], + "datastore": [] + }, + "AU12JsKbTQ3UUvnWusSBPUrtGANnU6sctWunJxqrkKKEa4548qeLc": { + "balance": "700.584100740", + "bytecode": [], + "datastore": [] + }, + "AU12JsuY7vQtM1JdXx26LV1s4oXPdr39mBuyJxffxvsoU8PxpDApN": { + "balance": "47.926697812", + "bytecode": [], + "datastore": [] + }, + "AU12JtAWkF58gkBRp6r1eH8mMKVS18T8myNGmX1jBJzJECRuWDNSS": { + "balance": "40.354410530", + "bytecode": [], + "datastore": [] + }, + "AU12JtDuVTBXgqiF9ycMjvqbmWvSXakKhW75bMMoFtuNzWQtMvXZQ": { + "balance": "69.523773129", + "bytecode": [], + "datastore": [] + }, + "AU12JtMt5bdo9GN3tUnXMm7niChX6RXEM4GTM1Q6NL4LLVuERuWqR": { + "balance": "6247.643983254", + "bytecode": [], + "datastore": [] + }, + "AU12JtVvaPtGjsF2SnyhiTwQWcM899AWiKDp2gq889u6LspnYFWGX": { + "balance": "1064.342608197", + "bytecode": [], + "datastore": [] + }, + "AU12JtbgufJNgyrm9puaMYSiyyw5rmr1nCLRYEBZpt6ThneW8VDdL": { + "balance": "4304.415801476", + "bytecode": [], + "datastore": [] + }, + "AU12JtmwvkjBFtHVfaPbY6WfzkFDEbGGTh3ZReKE28etDvoNHyt8A": { + "balance": "2510.830440835", + "bytecode": [], + "datastore": [] + }, + "AU12JtqvvtyYsgHUas3xTxVRK7cUX31escrWb6oZyx3ith8acX86q": { + "balance": "1571.538561000", + "bytecode": [], + "datastore": [] + }, + "AU12JuML2ZXajBNhQZDyxQECufNW6xHHPh1v9GhGHJza4TTpRNr3P": { + "balance": "1246.187356324", + "bytecode": [], + "datastore": [] + }, + "AU12JuWW8HhEjMMF7ZD9wBFihvdnmfknawFAtGWj2iLXBBFi9or6V": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JubTtzTF3u8TbBc4CBACmNzSkKLAixtKbs3tFBUt9Te6cAYi9": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12JukS2SdE9F3XYsP5gdUx3cX2nFxpScfGHSDfNKFKPJMzd3BbG": { + "balance": "1127.121959348", + "bytecode": [], + "datastore": [] + }, + "AU12JurFhemD6iJYbNE5Gy3DYdLx3ESnfUq9Cs88JmSN4SS8uSHbP": { + "balance": "12000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12JuvYb3wVhEDifh1ZhtmQzeP4AH7csXGG11KfJBB2FrmxLyHLx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Jv3roVMRqs7fonMLkGCaEWUKqPN3R6UtMPT9ds5A2ogy17Tqs": { + "balance": "2181.142017699", + "bytecode": [], + "datastore": [] + }, + "AU12Jv8GJvKZy3r7kdHSbGjrafVtYAMghZ7M47W9EZMrSwoDMFmt1": { + "balance": "3206.608045989", + "bytecode": [], + "datastore": [] + }, + "AU12JvBH4bSExrxEiE37eQ86bRcoYPsdmUsC67EXghznude36M4zn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JvWpf3s6dGJ8PwsCRtvqucJjMS9BriNsjcrmH9vULrC45z7qU": { + "balance": "1452.667603136", + "bytecode": [], + "datastore": [] + }, + "AU12Jvaawygpdv58W1mN7naFFbbRShGJkUKU4KzgCJn1Ukr59iAfa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12JwQeJe6fUGGf45ypGtA1RRA5nHuPezNS3u285d7XJCVq1CRZH": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12JwhkCN1F6DtgZp5jMA4rGbdqZYAKjTSceuoq39LmKriwVbazJ": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12JwojNcwxzKCijp4SSRv89eioGAXTgNnaLC1pTeWCdy2ofPS51": { + "balance": "2200.171922314", + "bytecode": [], + "datastore": [] + }, + "AU12JxNu6wZ8s4FW1GfTfRw4MwvwPNVYtb6sf2CMTjTbHMsM8Pd27": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12JyEUftpeyyTmzMnSL5G175y4k2Fa21g1ym2CpokKWugwCf7Fq": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12K15Z8bjnucbMMv9VC6KeXXxvGSFeifRjZdoW8WtHriCahBke": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12K1XDSN4VER48HXfLnFxpmGZFfa4is922VRHXYjpS8ebK1a2gT": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12K1Y7dQ6xGNu7ay8DteMKdLv9TDUMa4LLQH2f5fGbfZ4RqFUCP": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12K1hYX4o691EjmmpMyyRpCUjvPJGJ6chnEv37atBiT2sC6YSJW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12K1i2g7QqKPdv6n48KoXpgz8ax5mwQyV2qWEgk4ujYVxHpwoZ6": { + "balance": "1821.108392879", + "bytecode": [], + "datastore": [] + }, + "AU12K1iLVutMJ7XMPUzvvHwY2RVM8tNz77gE82Do9zAKsaXspvPpC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12K1nsKWSQeMfK9MSq9dNGkmA1Y1FAHrmcUGGorG74HAm8P9iiT": { + "balance": "2170.788473166", + "bytecode": [], + "datastore": [] + }, + "AU12K2JdW4UXL9hrGh2ZSsyvoi4CQG5WmCN1tePqmQqK7ffgcvey1": { + "balance": "214.810514302", + "bytecode": [], + "datastore": [] + }, + "AU12K3PTnBurViiPY9qDow1RX7VSU7UrHChCr2Da3AYk4HJ4YoSae": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12K44gseuCKHskS5Vw51arSxiZpEb4gHHTchB3sVGLabyW1PvND": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12K4GSg1w2L4gnR9vn59q1FxBJqKPRSgPou4VEuZk4rYrzUvsvh": { + "balance": "4317.344402894", + "bytecode": [], + "datastore": [] + }, + "AU12K4W8vgtoeTYbYx9VrP4ZjRt9jDUcPtjqh17nAcwrpJ1axG5fh": { + "balance": "5630.553446261", + "bytecode": [], + "datastore": [] + }, + "AU12K4x9FD8XwfWoXKDp3qoMBgbQhw58jQ28mXLAnKgFnJJDcZt3v": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12K55Tik4bgh9tGQsowvwmE8L4zxif2kCGFvnBz91NUwo24dh8": { + "balance": "785.130811810", + "bytecode": [], + "datastore": [] + }, + "AU12K5QJzdoXfEvMhn3NMAcoiV8ebnqjgxWVCmgUyQzv8GxiVyrh5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12K5gHBrdzViVrB4tJAaA4it6Lf4oEGec4qk6MW3v3vGS96N4cJ": { + "balance": "1511.216095496", + "bytecode": [], + "datastore": [] + }, + "AU12K5nsjbtpKCRropipFk6ZFWzzLdNstTdFDKgzeZr4HDBV7z5me": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12K5tM9SAZx5Wg6Rgab5irjcdhri9S8bapWATFaZYtaT2VHp2Gs": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12K5ubMYFUxdGHoDXeXTranggzHvNMMvZTAnjKK5WBXqqcFbh6m": { + "balance": "2557.565207060", + "bytecode": [], + "datastore": [] + }, + "AU12K63d7aNedExXiSyhJDNiBXwd5HL8aSL31PgVz5JtqbeT7kJeq": { + "balance": "149.222026031", + "bytecode": [], + "datastore": [] + }, + "AU12K68S98g6L2EkPTSyzmnG17ymq45twFHpPotLj8xUUe4r1EzK3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12K6PPrVfYc9mpiSWkbhD1iAtxvQHd1uWNEZAHe5KAPYFV9LVjn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12K6T9bwm4shgwUFf4CH2ntYzvuivXvhZzR2nnVjUzRcEpv1Qev": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12K6ZqW6msPJo9t6TUVjud5X7Lv6hpJpkAJhvuYt3NDFgPHSF2a": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12K7CMVyZfhHcNqV6Jg2HWf2MtrK1rcF9KGKL18faYLCtLwMH7G": { + "balance": "2620.021595735", + "bytecode": [], + "datastore": [] + }, + "AU12K7GpGaAx2PbrdzHqVTnabWyNtv9M2jQ2TottbttYvegeKTAvj": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12K8cZoSHT9RdYAnjf2BrBd21vdfckkhqXowzkE958o7fb1Mxw2": { + "balance": "1748.809523464", + "bytecode": [], + "datastore": [] + }, + "AU12K8m7HweM3vS5NQphTL2qSg7wrHX6weB5mLhTC7BsuRhGRVLMS": { + "balance": "3103.032534544", + "bytecode": [], + "datastore": [] + }, + "AU12K9B7fbyKSVa8PhuuT9Ewp4JBYqnNHasNmYjvy8mm3aBrnQf37": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12K9BjNpRZ8jbARZGf8eqWn6rnQoKPV2W9MDCgasyZGw5uef1Sx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12K9j22bWH4YfsKPGSPDPJMvsqzHgcXiri98aWxP12G8yY7c2Kk": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12KAv2o81GdaLW7uJbVgthPTvQtmmTACkL4TfGH1ztfkdtzR7aR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KBMRwgKpaKBs4n7E85ss2V6WfkxLPNiP1gPvrfLkiCg1Rwutg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KBnLkLs7uRkwymRFqnA2mXkZJCNzbYfC84L42Y6QxzgjEEyrf": { + "balance": "2804.825990908", + "bytecode": [], + "datastore": [] + }, + "AU12KBwThA4wYah2r9iYMjPqrb7KFXiM9qF2AcSh4oSTQB4v5ahWN": { + "balance": "1840.887504411", + "bytecode": [], + "datastore": [] + }, + "AU12KC1kd7XeCTjWUxxnEDv59NAALZaHmURm1kQKY2SGEfo31WhoB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KDANwhrHN2JHWt29Kxj9KjD4DceQzgzXPHb573FoWcW7myVB4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KDJ4gePSyjrEfdrbM2Qz3321NCJ42GJGUAM912LQTD2gKVPaQ": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12KDVuNbAEcMzFK895mHKExi6xkhPwAaHhmdFLUfK6iuHbKkLSE": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12KDdPNaEZMGPH7tW8t22qRMRAdUzhdsiNDsHQ3LGUFy9KMeJSm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KEFDHxMYALbRasHHnWYy7fJ8Rtc1atgBJo5hbNe84RFDXFmEr": { + "balance": "1393.002903068", + "bytecode": [], + "datastore": [] + }, + "AU12KEKAXoQqtVCSsdfDffrQAbvL2CcwtGEWB18Dz3uQqkqa5u7V8": { + "balance": "3013.328782189", + "bytecode": [], + "datastore": [] + }, + "AU12KF9DEJwtWGYepfXSSe1QBFd4NzAZWD7gdLWrzLEjHk9BVnY4C": { + "balance": "1701.266650089", + "bytecode": [], + "datastore": [] + }, + "AU12KFBGCS3WPa462mFFNVv9MnWyW8muTVa4fErZbxhDgvHrahv1j": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12KFSL1zHe7HXtpCfdNoBBx76xkJ3cykb24QfbaxuVvDfQp9Puq": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12KFdQ1rDqdPrbpfjj3SxxG1eM92TuwD7ZpctSSBNkQwFXzb4bc": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12KFnvhh2H6E7wngcdhdYSjUj16Wf7nuNM67nYjzQn1mgwZezdz": { + "balance": "821.167924906", + "bytecode": [], + "datastore": [] + }, + "AU12KFx7PGK7QRnfsC9cc6UpJjsqtPY7pYQL3jh2Q4vQAdz24EUi9": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12KG4t6PZ5cUY4nCfvBFJ89z1jaRZZMVTMZhtuJJ2xyMkRy9UqR": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12KGHjAogYqGRxY2xRuZ9FRjSaR3GXt6QnGwG9Va4mersb8bFKH": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12KGRLeQ74SSVUCkgf1KLSwP7x6Fj5ojPWiio3NKBxwjy36kmuM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KGeFjFcd9cRSGQ4gaxyp7aVRuMJaZyvcN9jsqEucBQSAVZYJA": { + "balance": "1961.228602597", + "bytecode": [], + "datastore": [] + }, + "AU12KGh3QF1LuzVkAvhp5HZ1yC5UFgYKBY3eXpmu3JgFNsf9HyxFC": { + "balance": "24000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KGk5F3x3SBPpUWj78zWj9yuqU36s7iPWz8tvxC78hEfAgK6yY": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12KGyqbwA7mSsc3rYDCvH7UmYoVxwp4ddha1Umbg3f8tJW3wZDM": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12KGzLMr22yK6fzCSKaRDRvomNKUsWkKvqofStwXrStNNnfhLVm": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12KH43n75sWioDDuUNaKLD343EoHqdC3gti4eyc2ZNBVy2cYumQ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12KHJDYH4iheMA4o9GVHjtDwY1pUn4MJzsXERUwv5jFwZvoST5B": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12KHLt4ZHKWYxAwwLn5nz8qJPdDDCfkbo4Uh2HvnAAAyKRNHho4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12KHeLnjr5kpjPYzfALiZ3BfR3sZbNwhMpuTbztmV26ezKG5t8b": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12KHiHwEwZXTFnJUgacgMh8tAWWwsL2qwTypWzrZztkeExfD72n": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KJ3WhKLLELsJMwqnXwg5umGNatx5PTqstecbLCn65m48Qmk1a": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KJUH8GyeiBJT72yfYTsGQpP8Ga8S4RAf7An3wgUdGmfD3AeA9": { + "balance": "1394.117351534", + "bytecode": [], + "datastore": [] + }, + "AU12KKDFvKgN9jjQ3uLiFaQU1a9naBMnqGfdsPKFoZBprH4g7inLe": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12KKFb1nomccMkKtsbJxQSZHHHwAJm6AqNmTU17nD5NMgUQjF72": { + "balance": "4324.433618054", + "bytecode": [], + "datastore": [] + }, + "AU12KKQM4YKg1scWQEYQ3twsCx2Zq1siHSue5qKuwos1g7nhYfeiR": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12KKafaSkxiWZpxzrxGdDKbWs2xFSou541SbqNxN4vafrJoJ67j": { + "balance": "861.451537105", + "bytecode": [], + "datastore": [] + }, + "AU12KLgydsBCSC18qXJPgMeSgZKzdHexptN2U49N5kbwQ2szrLQpR": { + "balance": "854.412416460", + "bytecode": [], + "datastore": [] + }, + "AU12KLov5TbYkZgrgSbwLqLEaQm7agSnvvuKxpcj5WK7pJCA28kZL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12KMA7cpynz4CZ3eW49aqJUnBGqm2RZouJBefBtyvjpnUviuK8F": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12KMGXHerwoUjwcNPsHRvjsiJC8iYeCjSNt1MHQHFbdbuCo9S6V": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12KMUFQVhVbBEyGzEpv5Ud6Q4hwegW4QZ6s744yUaPRp5xKwiQK": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12KMcbCFcVb4hyCFscjchC59Diva79yuyr9ewQoYhC5Y4iPcqBi": { + "balance": "625.512563000", + "bytecode": [], + "datastore": [] + }, + "AU12KMkvGS8qL9G6hpxpCtb24hesAAVGEGL7snBkLH2RmkbPWNCCZ": { + "balance": "2235.259176410", + "bytecode": [], + "datastore": [] + }, + "AU12KMmYmM9zLGCjj3zBShSwJyjCGhCeK5DLDiD6KHs55pni8KQ4P": { + "balance": "2066.801460942", + "bytecode": [], + "datastore": [] + }, + "AU12KMv1zJSbobcpjFe3kztqLRnWrdE21uGPPJPHuVCX4jREckZAj": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12KN69PntcbgoS2x2RDMPdhwoG1tKZh5JM7x579CSyZoFJzaqje": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KNYHdBXcQTAbFC4BygQhHWmBa6aoYAAPsYQHDfS75VVp9PYQD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KPuMgjYhS1AmBZy6fyq3ozDaarm4LkLtjwKJeKS6EdQERS8B3": { + "balance": "1517.422459899", + "bytecode": [], + "datastore": [] + }, + "AU12KPzGMm5j9aaLF3KvdXyxeeeC84pHzVo7vgkNnH5osrBYDRivF": { + "balance": "2421.987076231", + "bytecode": [], + "datastore": [] + }, + "AU12KQ5jrtJ4K3yrqALovopJB5229qdwpB9Q3HL522cxadtBrLXmo": { + "balance": "1005.026972802", + "bytecode": [], + "datastore": [] + }, + "AU12KQN5oyQXX6uLbee8xPV86zqLGLnkUbMAgKjVzpAoTJ7nswX8Z": { + "balance": "2621.000244466", + "bytecode": [], + "datastore": [] + }, + "AU12KQUGFcGKB5DLbZXHLxRHrpyKrdps7vBrW6nTJ3ScqNfAsAwsp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KQbdxJEyGgtgt3RAgZetN15uY3Ko4HSBtTWYa93ntbGdKZVkp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12KQcTSWuVbGQnimLQMrCSf8McnFwSmjGmBQK2vjLFN4QQ6AS4Y": { + "balance": "20.019924868", + "bytecode": [], + "datastore": [] + }, + "AU12KRP8ZwmWUSQMiqJHydhy1BN8EvWS4Eug8szAatnLAQrvvcjvU": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12KRujUXx2jzWdNvFtp7uQeFpyed7brsmt63cJEguJu6tMrq91B": { + "balance": "1024.906253500", + "bytecode": [], + "datastore": [] + }, + "AU12KRxvaUyH9K8UPjEU4x2mkKmoFkjekNGPMK9kE6Tv6kkhb4dnt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12KS72qdRmzFqvfqkZwjwM2pmCimZi3A7gTyo5vCgWcEX6SCKzR": { + "balance": "4961.088232882", + "bytecode": [], + "datastore": [] + }, + "AU12KSNdVN7kp3fBcFxX5vSbejBjUJDvTdcToh2Dxq9516zzeUEYc": { + "balance": "3434.687299209", + "bytecode": [], + "datastore": [] + }, + "AU12KShdVbyPqJGhQsCVJUtQGggwnvGEeKWCF4L2uPi2koPT9WnkH": { + "balance": "2798.115133362", + "bytecode": [], + "datastore": [] + }, + "AU12KSnyTxodnU4SfrkFdvmUqfxCNxH9GbQzo2bB8J9ZCvkL3kDwJ": { + "balance": "2536.478667710", + "bytecode": [], + "datastore": [] + }, + "AU12KSwbe6yTReYs9usDuLXgynKCzwzdk7437zvkhNPkcEd4nbUq1": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12KSxgQMrovWZe4tYBi4p8h3EvmbdRb4jteAoNtrfdNx4D1wnhx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KTGXjGoPrJ6seYaQKguFWJnpQS36wjdF5hTGD567d9BffMjnh": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12KTJrGY9NNNNR2ttuBSKqQugXeR3eDZDzSxzVxaobimKadj9K1": { + "balance": "612.199932871", + "bytecode": [], + "datastore": [] + }, + "AU12KTnXysSpdrF18RHjPp7x1WTPLncfyLwZMhdEuNaQg7SHbxx1P": { + "balance": "1577.312518691", + "bytecode": [], + "datastore": [] + }, + "AU12KUGWejUQ6GavHW85DCGQz5E4z44Dw8grMShc3kqtZYPhhfEQR": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12KUVAx5pxAFeHG1pdDx51ViqWR4RPjuQgh5pGGLg9jgDgFDZNd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12KUcVTT7v9wj9y1Ynev6MzYXH7yDn74fJ96dLZz6TejxQY7KUp": { + "balance": "3292.562065768", + "bytecode": [], + "datastore": [] + }, + "AU12KV4YrfPK3XWHtH4K5puEfHufn15d9eornC5DaWSY8BmjrWzvU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KVNw1uvvJWKQYjeJfnN9tbyrPYaQunqyQw7bmEKegRxqtz3c": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KW6US7RMud53TwtaxRqJmg5MQhrPgrux2wFeCm7avgrdXtB5Q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KW7iidT5SjYeGu1N1vUNT25dwCAbmcZKNPuDbjc7aSkvQ5dRU": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12KWmm1WGKPPApn3huXo5mfn4bGkjb4oPtSEEEhoWGqSsmNxvFq": { + "balance": "2737.662413006", + "bytecode": [], + "datastore": [] + }, + "AU12KX8iihWBd6Ak5aCY3dq3tHhz9r9wGEVkh2LDen4GcSBTbAEv6": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12KXHa4pCNmb2U6t1zMWcigEQBuNJzYZrwiKgycHYje6h8Dv7Kq": { + "balance": "986.255544050", + "bytecode": [], + "datastore": [] + }, + "AU12KXJ46xBm8m25t9BeWGCJgF75pEMGGsrb5tykF2khrvZJTkAKS": { + "balance": "1699.346052280", + "bytecode": [], + "datastore": [] + }, + "AU12KXMyf8g6vsM2PSXmNGckEhVP8M6r9CWw8m8zEY55YyQWJNR72": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KXxPu9Fw3oBmJJDx8JVM9sVeW6CMvmoCrwpRuK5bhNW2GxQf9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12KYHG7gANfU3Su7EG5nrWoKM2ffANf9FbVbv7oPAYtyKBBeB11": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12KYb8dgnnibpMHqSBzKK3XaJyNHgnLGymSLqDj2i7DusVJSYWc": { + "balance": "2805.219962331", + "bytecode": [], + "datastore": [] + }, + "AU12KZAYMGXbTWmkTrh3jbbD5zu6HhfY6tyEwfz48ShcWvUFPwmeV": { + "balance": "61.056105611", + "bytecode": [], + "datastore": [] + }, + "AU12KZXnA9HVKeXtcZ6HMUWFTsbThfaUaaNggpr6b94JBqhr94tBe": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12KZZP1xEXvnN9TpE7W2HcSQpJArei2komno2vWfyfQGU5KhhEs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KZa245fWfUVozjqT9n9KVSFcKKkoo86fBBQsbJmDgp9zk456F": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU12KZko6RZJB4sXC9wuTn1Qj8PtJdoQqB68TyhZ3vr2iX67gMZe": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12KZsdpyrLTQocUVmoJwFcitY52AZNs4aSijWXHBKeNicQVnRRy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KaKN6irAowYAvwwesgVZqsQSuekUMzJrCeZs1bNB7Lg5rGzT": { + "balance": "1851.700061674", + "bytecode": [], + "datastore": [] + }, + "AU12Kaqv4x4NpSdpy7Z2Qjit1JxnnYVks3qyNUBFtsKd1h6kokbwV": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12Kaw62qngYsf3CPhQyDn1wiwh9bbGmWRDhYkJUQBWJtqwQsye8": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU12KbAqN5btuYdLSBZvv98CdxjfbXBBRYACMMfLfP85CP1bobEjs": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12KbUhxvs3TzfBHpXeVcF93q5Z4B8bJu8cvfmmbYZDKkYmNSpvq": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Kbfwt7TPg6zXmm8TURof74Qiezbr7eWQNSc56VJdF8g9Eg1VA": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12KcDvnrhi2AxABugH24iP3CQ62GQ5HqnR59uT6dFmseQ2R4Kx8": { + "balance": "725.136951526", + "bytecode": [], + "datastore": [] + }, + "AU12KcNAPtJr4piWzEDAJWGTVzn3kHp349QKDWnT3iqgTWCreEyd6": { + "balance": "7333.200000000", + "bytecode": [], + "datastore": [] + }, + "AU12KcV1g1B7hQEr1d4EG6wRgScMaDrrW7X22Lo4tSsRfvSJpJrJC": { + "balance": "2127.097861687", + "bytecode": [], + "datastore": [] + }, + "AU12Kct9jKQgJoS9MXsoChsg3JyoG3XEekFLr6WdAGgFgqBCWv69y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Kd4PFfj4uNTjgCe8PviTqdDDEE6ikw3xHCDx6UT1MCeVwcdTk": { + "balance": "1383.579266603", + "bytecode": [], + "datastore": [] + }, + "AU12KdudSwAAg5mZpfC2YUyMWwdDfq76CUCNRo9uvXFYWo1nHNT2V": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Ketn62DTBCqaE6CfuYEZPYpSmU9SLgwHPiz13WVpWxzfLodGy": { + "balance": "1661.993187887", + "bytecode": [], + "datastore": [] + }, + "AU12Kf5xhM8byLgRJwKVMJrpAhwXvXxwpz4AacJ945ZZAU8qT5gmk": { + "balance": "592.533784906", + "bytecode": [], + "datastore": [] + }, + "AU12Kf7FCATaeGqHNwDVEUzDp82YFsto7wfzvecKHTFWzLnESZud5": { + "balance": "1506.227276998", + "bytecode": [], + "datastore": [] + }, + "AU12KfMBUFjwMTqVcquQLzkGcbYfFfDx9J9ewPbN3ChLNeTr1ik9h": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12KfcR5vi5n8bN7BBpCRToB8Rr22sQ3uYcXNqbgohs1ScALrZ82": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KfnDxgdhPMqGJrYBrNGPAtfFGsfCjdaEoCShB9bH4dJbhgXbe": { + "balance": "701.307956846", + "bytecode": [], + "datastore": [] + }, + "AU12KfnwxfjNuNLXL2cC4mJzJGpGtf3LVBUuBzs7Ev8MqbRwxW64E": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KfprfWsXUYseeVq6xWVmBcExUNi24KDWe2hkFKWcKw3iEgHSU": { + "balance": "2665.117368912", + "bytecode": [], + "datastore": [] + }, + "AU12Kg8H8JPGv6La8Dp1D67t4GywmEv8RckSH1evxHG8W9zwrTR76": { + "balance": "530.733285313", + "bytecode": [], + "datastore": [] + }, + "AU12KgJ3upETpeXuM9XtNvBWiN4UjTsuGp874jqLrBGR1FWbq7QT2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12KgPVxRahaqLDfqPXRi9n6X2SnKoGzNtsoWkEd3CwndRFdzaH3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KgZcRiEArjnge5HFbKmh6ueWCLb4NvZUWNwe7YzzN6UqncPZZ": { + "balance": "3861.949257634", + "bytecode": [], + "datastore": [] + }, + "AU12KgcS8P49TFfKgfBqiQ3J2Rz3uuFyzcF5EyTaoUUAj1URFgSQo": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12KgxBwMTvexM5wrv71ppp3Zz1fEhyoZVvUGx8R1YtwBSDZ9bsJ": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12Kh1GQnUf1FaK2oYwn235TnmVGgnWtwR3oK471tpikUG83384W": { + "balance": "1933.764642296", + "bytecode": [], + "datastore": [] + }, + "AU12KhQkJ6uGfh3tRjAzvZ4bUXM5y2qsSENAPiQQoGfiLFuQ2r1Cy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12KhVLm5rcJW1yL4S1btCSxc36Aa9GBmKDrmMhYtrZTz3pG7z21": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12Khaq7gHLQNZKcAEY1vUhQpPuWWV3ThHPfh3CY94KJueH3iXqU": { + "balance": "644.025646862", + "bytecode": [], + "datastore": [] + }, + "AU12KhnZrT7TdcYfpbD7hn7mujnx2gHoXHXxuv8RCMjHjpJhKhFKX": { + "balance": "829.271159431", + "bytecode": [], + "datastore": [] + }, + "AU12KhuGXaRfW6DD959nBWXqmkq77qhF2mmB27bve6rRoqrRzw2TN": { + "balance": "1294.948767491", + "bytecode": [], + "datastore": [] + }, + "AU12KiVxn8T8LJJjZ6Cgx6KFi1GYYFhfjXrphepzadPEnpuzp9m9z": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KifvR16itZNnCNaekDBGLofqyjz3uzem2SVjyaC7udvFtirRN": { + "balance": "1384.586041465", + "bytecode": [], + "datastore": [] + }, + "AU12KitrfyjibAm8nYCj79zUXDtiJKoiR1mNSFPsnbHN1LVXqR7if": { + "balance": "962.891231246", + "bytecode": [], + "datastore": [] + }, + "AU12Kiu7je1orBodjBd1K9kRxf9XyVTPmiZWeg1L6QnaVA1yy9BGB": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12Kiwi2Gvdf25VZY9VPFZrsvani5iZ7BdUiXZ8W4F6B8SKzBKpi": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU12KizFHZmhHUMgf4XEvbMxAhhc2nbjHCoQuGEQm1HgBGfuqnVXr": { + "balance": "99.276949501", + "bytecode": [], + "datastore": [] + }, + "AU12KjUP6jy3kWE32EhRFY24Ph2W4rubiXDzm14oxziofABeK4hkr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KjVMopSgDQZbkbm9SpRKPmkfGUPDmWPHuks2AiNS1yaVQFxQf": { + "balance": "673.237820085", + "bytecode": [], + "datastore": [] + }, + "AU12KjWJArquQJpVM4aQFzeLL9Vx8hUbxbHop8dMJBMaFCRQvjfJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12KjWssM2hGGsvKU4LNHbMtRuD966Y8teHuT2Pkc1cFYNxaQgeM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Kjfz4k4KNydu94ziGvWDswwgnoAWUsaZNmgSTgodgtabgDSRT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Kjh2fq2EzEAKgc3ArgMQkrncLnGccZAx3mQtMd1YsbkBGPKjs": { + "balance": "6987.227921813", + "bytecode": [], + "datastore": [] + }, + "AU12KjoFAXPBwAytTsGMBEVD9yDGrR1MhWFsxg58uYDgJyz8uSKk2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Kjqw8T5aCb15Q9p3E2zn88ADBuaNY5eYyiBC9uk5ZKrf8HJiJ": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12KkRi2C1MHKJh2Jcq4Yw9L2pAiwbz9Vzi2Z6a8Qfa5g3SqkJwB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KkXrn47XaaPZibSRJQhB2UaytkYd3Mqmk4A1z1Uo5rConPm5f": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12KkpTGK39QR6GUM3wPps1V7fAseCj2CMcQzRRRtpQxarP2Hyop": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KkutB4MSb7KFWjVtUWzJgoaTxe1Vc7iN1FT8o4CnHgTH3ykJc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KkwJewSXz9DWPtyTmQoyoqKuDnpBmtYKagL9xhQqyrqeNxL9q": { + "balance": "1996.169589730", + "bytecode": [], + "datastore": [] + }, + "AU12Km1K8N12qyG5pX1rwpbGy36z1QZS6jemmpEeiB6xP2PAkQmF6": { + "balance": "561.043445662", + "bytecode": [], + "datastore": [] + }, + "AU12Km2WEFsPBcjzfFGaBHZYVAk9JXKUjzE983zSMm98YsikeC1Vj": { + "balance": "2078.581437729", + "bytecode": [], + "datastore": [] + }, + "AU12KmQPSe6VfDfpRmuG2dZt8d9NKvxM3DLpACC5cniuhPbUZgGrX": { + "balance": "1164.154086936", + "bytecode": [], + "datastore": [] + }, + "AU12KmTxdhvA5Bp4zQgJbru41Z4XZECQMiYpgvb472n2jSPTkhuEf": { + "balance": "2167.047859864", + "bytecode": [], + "datastore": [] + }, + "AU12Kmk1cEPHEWguquoWe9R6mFYw89BWqAESoFU5jeLa2UbwSxxnG": { + "balance": "983.520461701", + "bytecode": [], + "datastore": [] + }, + "AU12KmkUoECSkzWJuxtpkJ8mcmE56waBGMJrZ3CtjtYmJc3pem7w2": { + "balance": "178.336176569", + "bytecode": [], + "datastore": [] + }, + "AU12KmnoLbXx4Cq85FpHXUfdcHj2RuxAFp9hL8T7xrebVoQLdrjZJ": { + "balance": "3084.471292687", + "bytecode": [], + "datastore": [] + }, + "AU12KnPwvNxuab7nBzBCKyz2e8LLuK6uiRnZ42SLNutrCaXavb8Rj": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12KnQJwMVjS8sHXD3i5eknJeDJmSRtWBeHL1gvBWDdataJLwJPf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KnSp5GVWPMVKyqFa5Z6LetNUTqy7wPPnBfgiR8SnH6PoAQ912": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12KnVM8vLoaVRnGN5vgKrucgQB9G7g9qWvjboNdnA4r6ciHu9v": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12KnVspsNnyAo5WhYgRs9dRqaAqCd8SMnvN2MByxCN7yMBEyP7e": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU12KnjUhpBfHd9eczVsNEns4X3RxmdpTHHf1X9MFBfkwULpJRvEc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KnkcprHRNNgiRDCZEasKgasgy3wem96GjKspA9mZmekjrXu8h": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU12KnrATcTMtWiCuRsuLPKyjXbWbufUdB54NRiqyc38QVTBpXLFj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KnrDuSFxmAeEh9SdvQZhwjTi7AXEQ8EmoLaMQ4zYaNKdSqFtD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Knt9xzSzWfNVtuiRPUbtJACSn6Ysrc2AzrczrpmaXoaA9MJ3Y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Ko1TNhTyDN8XNnEe6VipPxammpLtjPdGtxNA9kcGHzjE8nSBc": { + "balance": "2108.540073924", + "bytecode": [], + "datastore": [] + }, + "AU12Ko3aSoDs5EKjFmHghFz3hxqnwiYT6sWRNKvXUzqaxLJgykYGv": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12KosVdqa56Z3WSapqr4gwUtmYNLxtx9UsYQgHq9KUhMjythmuW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Kp3Ar6mvCjq66bGZzViKJiArQhCt3jE4ZJXLZGQgeYxFgVkhm": { + "balance": "5162.948657665", + "bytecode": [], + "datastore": [] + }, + "AU12Kp5wjFgjix8CSj872krpy1AnSBCZdTxBdwg6KCJakjVsiHUQ5": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12Kq2bR5BSAPHb6St4GJu2PG5EHGrh5zYMEpE82kRsoDQfGmZVi": { + "balance": "2402.634074731", + "bytecode": [], + "datastore": [] + }, + "AU12Kq5j2teV8iJRCTiAGdgVzJwHoJXo9jh6RQhyTtfC5nDT4AHKn": { + "balance": "177.059033951", + "bytecode": [], + "datastore": [] + }, + "AU12Kq9Xtorg1dWr6pDizFM24Jm4fwpRTJjrkdFiGNCwQrtBvcfd5": { + "balance": "5093.280724509", + "bytecode": [], + "datastore": [] + }, + "AU12KqJDViFQUsNiRPdmVMXBTJSZXhTLBTUbSXbrFYhJr6Mc6CMbt": { + "balance": "892.511755522", + "bytecode": [], + "datastore": [] + }, + "AU12KqMHx1bMwtL6uizvZ9jshtn6568A6yfDmr61T5SmuuAc5YS77": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12KqR93u2MLi8kugssgbxF94hM9nHRUEaHF6Z7up8fECtUrNdNf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KqUPCd3VW9fiES5LiSTMAgfc3NJx6TXLTjVJwnpWwkzhHdUPU": { + "balance": "1531.021554060", + "bytecode": [], + "datastore": [] + }, + "AU12Kqg2qYZ8PL1giU5wtcau4ryKD1qJdQHz3suiFLdEZ9GjfnQY7": { + "balance": "1017.806530880", + "bytecode": [], + "datastore": [] + }, + "AU12KqmqugG2aCgCvoX5Vhakrdk5RFXpbRxmWDKHksX7V6TLbV1Pn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KqqM8R7ozDy5zKwP11WSoP7Sy1aSVLP7sP5ayRGEVjwBxLgGb": { + "balance": "872.977701320", + "bytecode": [], + "datastore": [] + }, + "AU12KqyfZt5ZRoxAoTV9kAhm2pFMRcRKAu48QKxRMCdpXMhjPBZSm": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Kqyg3hJRKUo8zPzYzzv3iCCUfspGKbtfbuVHa3RPEwjAUZxr3": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12KrdsUsMTzteautDRd5p4MnYQ8u4Yyhkyu1XMTNrReEL5Pm472": { + "balance": "13.404817149", + "bytecode": [], + "datastore": [] + }, + "AU12KroJNfp51xz95PqkHPjK8ciiQfFWpdvi5TZxbUSQd9VfyEGrG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KsSJtqw4BVnNTr9P2bRqDxVzGThnjMk5TwVEZLiAEy5UR1ngq": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12KsfPMFYqW2RHJkXJPX7RFRzRMKLLdab1gvswRxkAT265PTSGB": { + "balance": "4896.475297986", + "bytecode": [], + "datastore": [] + }, + "AU12KsieCRZiRNx7RoGe2J8YBFH7dYnb8L7PoPnoopZLF6Y4vFX7A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KsrXPD4YQ1dK7U45TH9PWXhPHv2y152CjGJ9jm6TJePENkXWN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12KszimVUL7HVgdKM6SFw5Q7kSEa9H6tVSSb9rfB4ivdLJcwSVf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KtG1sJQB2Ew63ccSsYxrSntWN4yhhGoRin2DAKvAUwNqTeUXS": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12KtG641d1S3zNirmi3YcDVeWMhZ7Zve66Lnt5grcizadoWcsGS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KtNAf1bJYhi2cHgtwMXfWnmHCo8z1yz6FuhVuK6Ph2R5k1Fvw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12KttXvyK6RTh1CiP8HHebtF7uTvAYn1WaUhNsf3VjdUYmSGc78": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Ku5er197EEQjqBz16cJdV8Ymtf2BQp7FEWQM8hqXvBY5pG4M2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Kua5MaJLCeYq2ZYTm7UNPM2YoXyMKkFVt67GgVjLAvn5QLtHX": { + "balance": "2643.711515751", + "bytecode": [], + "datastore": [] + }, + "AU12KukckQdGiwb3XiyRzuqZLupTLDbrTCeHbVj2iUucWRKH95fuX": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12KukrKjPtuRHPcp6EFxtStHEN5auMW8UGi9UuABStMpie9rWiX": { + "balance": "2265.481034633", + "bytecode": [], + "datastore": [] + }, + "AU12KvGPgmBzdeBdVi8d7PgziwjScPqfLUKBDRhutvovrP2j1k9FT": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12KvW1bbrY9ZevGYH3bbyeeF5PLfHKFqMH4jRKxXCYBGZ9nz69E": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Kw2SyJrsrhjfN3eyBy5mHZVtEe8W7DWcBQgMwPbVzuWTnF3nj": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12KwfAFRkMAzaHWBtpmT82WwBXRqXMorgXJGLHQHZtFZJ6ybbYV": { + "balance": "3553.663253750", + "bytecode": [], + "datastore": [] + }, + "AU12Kx3pWG8PU17VTYCpVFvhLveFpt1z6JrJH4QdTANHGj9jHd6YN": { + "balance": "1918.957527495", + "bytecode": [], + "datastore": [] + }, + "AU12Kx6h6r6ShUYzake2YNYsexYSGcQ1n8LahP2U9y51FhKvF5yAw": { + "balance": "702.163158639", + "bytecode": [], + "datastore": [] + }, + "AU12Kx9gu9CBNp1CXc3CjkW3F9GphcHkUS8dP1RT4gCuFSgoTzNYk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12KxKPSS1DQ2q2MBFpwpzFecZEvuSy4J7SRYnrzThPU68Ahimn8": { + "balance": "3798.040031091", + "bytecode": [], + "datastore": [] + }, + "AU12KxrKPmQ29KW6H4f5QvEopXsmCMH3XQDzF34PbNrNKTFmF96tX": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Kza498mr2uGcVvcGmqiYYbdMWVbaP98fU5LjHXpx7czBFZTsP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12KzeTzP8G7xrRAtiCEWdhi531Kg9kEbXnJsP1vRnuovkMWcv21": { + "balance": "2256.657454279", + "bytecode": [], + "datastore": [] + }, + "AU12Kzf9295GwUQkDo24mPDzDVGX1X5L4cff1nv78nJATx5pqeXVR": { + "balance": "569.807856249", + "bytecode": [], + "datastore": [] + }, + "AU12KzgQCYgiaqmwn1JXsoUHSEApD8UPCGXhB9mDnBCTo9SLHaV4a": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12L1Cxkj6xeZLZYgsXa62NqJTNfSJe6SgunzahYhpY96ayCSzCx": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12L1PknhtxH6Nkuk16DAo5YfbzAKmZzV7JNQvKnXBJEUFZQwgZd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12L1drHyY5bQvEUKY6ziDiyiShe3J3v7Xx3C7wEP93V31xD1NFu": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12L1gB3MxG4TgRbDgAv9BGCQRS7DgccsqwMmpZ5oh7cNFoDyzLS": { + "balance": "23.329483213", + "bytecode": [], + "datastore": [] + }, + "AU12L1ifrxU4nhBuX4SxRARWR4tpGoc8vxeF5adfw7AWqqbwzhaCN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12L1mzvMBZkatH6DHnwZ1ZWHoRZKcxZ3BZSXMop1kUF4i2x4JSo": { + "balance": "1677.303216137", + "bytecode": [], + "datastore": [] + }, + "AU12L1swMBNjMg4EBRpEMRvijkRvqE4HknDJ6fYzyGUa5oa64uv47": { + "balance": "646.040367520", + "bytecode": [], + "datastore": [] + }, + "AU12L1xbHEfJsCmCA1XoJa9NYgaudxNY8HQ4RA2tykzCHyBbYdRkX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12L27DQNtsyumN8JbGedqhUASPjRnVgR9RXaCYurX7zLtFT6aYs": { + "balance": "5237.096178157", + "bytecode": [], + "datastore": [] + }, + "AU12L27EkcKYgakJpYybw5NzC3RX7ya6XcpJSmVpHkWMa8vyVLuDW": { + "balance": "2419.093100545", + "bytecode": [], + "datastore": [] + }, + "AU12L2YQYN9PaJfxEMB3yRN2Mrn4FCa9ZVikH7stff858WRs4hMvs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12L2g3TVvaVgwBXcKwbrku3vzWKj5CMYALnhizED2vJvpU2EpAH": { + "balance": "1386.007029582", + "bytecode": [], + "datastore": [] + }, + "AU12L2h5dLDw5aTad8ZDxtwFHzSxTbzVYsdMvS2y6mACAsqXmuoo2": { + "balance": "176.647360937", + "bytecode": [], + "datastore": [] + }, + "AU12L37bUQnLUe7ac7yU3jMqTpvyA8pEK5ypxWyYYeufYWAyD91it": { + "balance": "872.573822042", + "bytecode": [], + "datastore": [] + }, + "AU12L3VygF7gEEdHrK7uhbhdnkCd5qZBipFMAf1CFmHgKGZ118gF9": { + "balance": "843.494258060", + "bytecode": [], + "datastore": [] + }, + "AU12L3oWnn8SsYDgxmAGRH1Ao2ZroqPyVVneWsuCLqUKoWu2QqZmd": { + "balance": "1907.565204325", + "bytecode": [], + "datastore": [] + }, + "AU12L3qqMA1sufoS1cXztHkBMyWFmfiLSKtHVNRUQW1dp1jibwaMn": { + "balance": "1577.299694677", + "bytecode": [], + "datastore": [] + }, + "AU12L3s8to7nEDgbxDzvLxr7xXY5CT5VBVfKtuQqBBwiCtu5yLxEn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12L3xM8w33nbwCTrcScEJLHNCXHKcLtToY8j9CqGRseTLg3FZ3A": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12L3zUrKZaSqzxfXSdcpPK4VjQaLd6nqYsDJFhGiKPDXCC38r3Z": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12L45bkj8ZXoaFg8ogsE3Q5WLU4EVYY9q32arovB5vJQ9NDh3MM": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12L46tEHZCgzmTW3e8fromkJ7ZAcwMvF4AcEMKw3rBhVYLUmrDT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12L4CAVBFuDNEP62d68L92Z4eLMmv3vrGNy61wY69ZnBc9Eg1Rj": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12L4RsF3H9CnMVmHtHRtXXKm2iRLae3JBeBpwJNff97ia7CFqS3": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12L4ww6vZYqWyzdGJzUxbTtp2MaYAfgA4Fic4L3yHmzofUTK57V": { + "balance": "5238.254179484", + "bytecode": [], + "datastore": [] + }, + "AU12L56xTmYsDLJtKY8sefZXyPP3p1EaPgFeqUbsgoYXL7dqxCMYK": { + "balance": "1372.432957905", + "bytecode": [], + "datastore": [] + }, + "AU12L5UtGvFSFyDTxYk5K3doZKgBeWQRdyJSLcnWp1jhcoAfyVngb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12L5r4RKCd9MWSCLJFBfyq59zBKbz3N1HEWXYXf5qd7EHN61E95": { + "balance": "1327.816862116", + "bytecode": [], + "datastore": [] + }, + "AU12L6F7oE49bRHd7GTQu1e5QHfmkV8wWYGjswJ7H4oaof284nqx8": { + "balance": "783.042925458", + "bytecode": [], + "datastore": [] + }, + "AU12L6Gng7cqWiiNwydTFmeuuFRVLTSrjDF6fKnGojwUVz9h9kGnT": { + "balance": "3441.901617821", + "bytecode": [], + "datastore": [] + }, + "AU12L6QG4JsH6seq59vTNC8VAmX8qfNEFbfAje7U2GGtpHziLD3Fj": { + "balance": "933.404634901", + "bytecode": [], + "datastore": [] + }, + "AU12L6QqRR3UraRpxyoUXtVcxch5Fy3PSDpjpnimJb9KCg3P4KDbA": { + "balance": "2687.908460150", + "bytecode": [], + "datastore": [] + }, + "AU12L6b5LpJP5W2oVWK7v9gfA3XqkjPKb2Ubgp3MSxbw1eG7WrAyY": { + "balance": "6500.540053369", + "bytecode": [], + "datastore": [] + }, + "AU12L6ts1UNYFdSjvHHFDbDJcvvraMpTr6GmzUfj4LUzSTcrnfAEG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12L6z4BdDeisZUxzYCxJVTBm6b6bKibVmPyUCmaKX6LT7LETr23": { + "balance": "1320.608254850", + "bytecode": [], + "datastore": [] + }, + "AU12L7TGVAmpZeMeqNvyAZkwsHTajkqnS71kN5f7a4kqqvjNosxMi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12L7juJku9vPeYmzKE9F6YexUzZZceXexEVH8xYb28sn2nESw2": { + "balance": "1622.575200531", + "bytecode": [], + "datastore": [] + }, + "AU12L7nYzqHNxmPciop8yeHVHTHsFZVQ3xfGA3XYNmMKgfmkiXVmd": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12L8WES3sF1WAnce7AsPvUSSZMUgtMQjC9BXZzBAudLnNdh3NtM": { + "balance": "846.008758488", + "bytecode": [], + "datastore": [] + }, + "AU12L8tTiLZ5Lw5uJn9mnZUSSnwfHQvGZB9q1rqPbdjX7fJrnPazk": { + "balance": "4907.457551966", + "bytecode": [], + "datastore": [] + }, + "AU12L9EVU3HepNmULc7fkCUZSndtxkbP2euy42m2Cne1fBgMCgKgx": { + "balance": "1164.953656867", + "bytecode": [], + "datastore": [] + }, + "AU12L9T8zmaQ4t2WPY16Q6g4T1JZR1t4apkLpxrfC92fdbae1dCAX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12L9VAhyWwVkBTf1iR1Z8Ws9qVTyfnunxxWG662HPQD2P9VPqCD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12L9fp855jwF2MVr3ANH6Ebu1M3ngh7F83gN2afHkCNHLQs3zm": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12L9w3C3WLcBuEMB9vbdSHfFAfLnFXCkW9BY8oknhTs2vFL9RHd": { + "balance": "829.408472717", + "bytecode": [], + "datastore": [] + }, + "AU12LA48Atq4n2Xk4Z4EcDWMHHYGj6e4sURHkReKxdp5b2dJBDWPi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12LBfbJrjCQETa3HEcnAhEAN5MpZ71W1W2KDDGb2MbSvWGpgqS4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LCGwQVfFYThmqt7uNZHQx9CRmZnestUNqBzzFd7wkPzHWSKdd": { + "balance": "2742.194589733", + "bytecode": [], + "datastore": [] + }, + "AU12LCZsscrMXDzG4ZJBjvqj5Ujb5nxAhFFbjWEqt3bSNBQP3YMRM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LCdqF9VDtwuopr9grP16EcFKwcmheWeHft9S5ccBTAkyoQbK1": { + "balance": "1636.930576632", + "bytecode": [], + "datastore": [] + }, + "AU12LD3nKbJj2vRBcQF5RE3qfTtGAscWsjnGUpozu3ydy3iqf2vLC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12LD4EXLsrDkain39U1B8RDQRkmAq9SLhXwybKGKApuDhutSDG6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LD7iTsP7zAHyKRLMBRHReui2txEv1p1gC26rvngPJ3F6Zyu6g": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12LD8oT5RfYjWbfyz2UmCxTbjbPDAMUBJx9M18gANRdkCLctkz1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LDhpUAaoj2uuT4rRhpUfK5kHNXu1wQdiLCATVRwiSqYPeDrVr": { + "balance": "93.961207398", + "bytecode": [], + "datastore": [] + }, + "AU12LECp7WHckYtRLU3b6XCnM79Hya253zyKLBYicxbmnHdTb5A6u": { + "balance": "1602.592813073", + "bytecode": [], + "datastore": [] + }, + "AU12LEf8Y2ipG8iHnpaiXtbAhMD7R3J11NUWz9jrheonbtzLcUdFd": { + "balance": "2693.521619197", + "bytecode": [], + "datastore": [] + }, + "AU12LEiPdFu4imyf6xfXACQZPSuxnqCmLcz3QARCKbm1859HvVD9j": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LEsp2X5Ue5PNEsDudAhzXtciy8smVaKFcPxojNC1d4psmk6Hc": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12LFAPVuHna8u4zdEPVLkxGWptAvZs9LdTBxrdRjYuzUaubPhrV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12LFEXpovZhK6gHtixB8RPnQESYxKHLr83a778kQhVjVnundEk3": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12LFPzqod9zPkmkMAKq9CgWL88dExiz1SkfL9JBhPYujGaFQT1h": { + "balance": "3750.516894325", + "bytecode": [], + "datastore": [] + }, + "AU12LFfizrPXc411gqZHwsBh4LHHJEryEfcqsYskBCuC9uYsztwQJ": { + "balance": "2475.191732492", + "bytecode": [], + "datastore": [] + }, + "AU12LGNZmYV8FWob51Ng3t5t7aCbWRRwSDAMoTcZW8gHTNBdVV6gr": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12LGuHoVnuRjGBXy3313dg1qDgEsrrFyqWbqh6aW4fy7GxdNR4B": { + "balance": "4581.386319603", + "bytecode": [], + "datastore": [] + }, + "AU12LHCQMs3ZMYDWys9qCWTY7WpEhTsJSYRn1uQr2xJ5gpDXXke72": { + "balance": "1884.461040853", + "bytecode": [], + "datastore": [] + }, + "AU12LHFAAjFZjuSfnpfZnqK9KQrwMZZ5f5hHkbECEJxpPKQW5Xuz5": { + "balance": "1542.184760581", + "bytecode": [], + "datastore": [] + }, + "AU12LJnue5zGXfFbJnQcJdYSp4xo7UDhCeaYHEK3iinC9aVjT6yNW": { + "balance": "1503.767953160", + "bytecode": [], + "datastore": [] + }, + "AU12LJs3NtGn5Ntzx667TAqMgN9roLRXoVCMRbp6YVCWKYpBVfu5B": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12LJuUnnR6eectxw8Gqox5HuRXSjVt7wMQdr8WHYTqpXjdbEJt8": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12LJw5en4jDtZH8sbjizxgeFaSz6KeoroTUHkbm9AcisyExmNzv": { + "balance": "3228.546990238", + "bytecode": [], + "datastore": [] + }, + "AU12LK5TFZWBKHD4NX5PCxf2yV7qHHFLXKNNAfbFBjcekpeZE77h3": { + "balance": "1150.997023748", + "bytecode": [], + "datastore": [] + }, + "AU12LKtYKAa4Zd6nsiKVpDFRkvLukwLBHs7vi4TfeYrwpgnBxyLRQ": { + "balance": "775.340094657", + "bytecode": [], + "datastore": [] + }, + "AU12LLNJSRzpWW67DdmTeNFTH41DRBSb6xv7SeQR5ogJWRjUa5pKz": { + "balance": "1758.397539742", + "bytecode": [], + "datastore": [] + }, + "AU12LLeqFtwaWERnj9HVC9ZKmLzBASP1V9s1juxV9dMJAt3X5gX3D": { + "balance": "547.313891654", + "bytecode": [], + "datastore": [] + }, + "AU12LLf3azNUgpNbLnFVEk9u2bdCUapv3mhyzCPeGewaGyard6vrH": { + "balance": "1474.114437205", + "bytecode": [], + "datastore": [] + }, + "AU12LLhdmW6WRhngLoqfrnfQ6K4qqE3gonGQHTukZ1mgLdp5AUbzz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12LLvk1fsD19QHvfTv2NTj7UqwyR3sBdBUPXYWA93ZFAqtBVmNN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12LM7YChfP6frtX43mav8YfPjVpzud6wmvoKEsjtHiATuGmDLhG": { + "balance": "87.115432266", + "bytecode": [], + "datastore": [] + }, + "AU12LM9TqbHFdS5t4WgWmZ9gyAmDRtLaSjW4BgrkYBe1PPvKj14tB": { + "balance": "1464.952319009", + "bytecode": [], + "datastore": [] + }, + "AU12LMXaDaMfkomd5njuFCdFUngtYpUBJfQnAq7TGh69LB9QSgav2": { + "balance": "1389.923401646", + "bytecode": [], + "datastore": [] + }, + "AU12LMoXC6WdFQm3nz2DyqN3zqkiV3BG296YKPHyFBFbwfEvv8Rd7": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12LNmP5socTMuDeZjoqfH1dX7go1EoQhLsXTnecWpJXQKnEGxoN": { + "balance": "299.928690649", + "bytecode": [], + "datastore": [] + }, + "AU12LNn8NXEwvsZrRaEkNxrU2p2PbfDHjP2CTMBf9VssToAvVded7": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12LNoPNiQbCJky7ovqHbSeEqxPZeYzsqG9nNJY9XmQqHQuwcFje": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LNqSiGueAeitqPkgMUe52zezNbrK3W9A6zgQgmbz54q1HxJoB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LNvQMaSvSGuT6GpTNJrdjSqHJ8geKSR2UHdsWEAX859Hx4nca": { + "balance": "1938.312590651", + "bytecode": [], + "datastore": [] + }, + "AU12LP1tfkypYnqYGcQKj8JhVrxwAaRNDGydmfVjrLJvWyorgbgK8": { + "balance": "575.359602552", + "bytecode": [], + "datastore": [] + }, + "AU12LPUNkQnt929UvAnCRZnYTsxjxnwPxR7DEkSw4GBGEeAJG5N5R": { + "balance": "817.761914050", + "bytecode": [], + "datastore": [] + }, + "AU12LPX1zDNqoVHp6uDkE2wcJsNfzonMokX68wAGCEtvAmZKKmBJn": { + "balance": "1875.644204614", + "bytecode": [], + "datastore": [] + }, + "AU12LQ8GWammUPN7pBGeXnGR5pymURWp6PyBnNNiezmQvdGRG1Wi3": { + "balance": "2817.633181257", + "bytecode": [], + "datastore": [] + }, + "AU12LQmLbGqyK2wGVRmkXN8YLWS1DmznLL9kbE3GJkxdiSfwogQkV": { + "balance": "4888.625691952", + "bytecode": [], + "datastore": [] + }, + "AU12LQssFQqf15xY6eyhnU2n2jkip6bJZXDCePC8Kf98LWfdeooAZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12LRBXwiqjsJETXgw7gYySzdqTvB31J9sLwr4Wm8dYDfbHXSYF2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LRLFSdrCJPwFnPLN1BwZyEKXBU526E31UmcqWQaEX9BT85UCQ": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12LS4Dqz68jncxfbCfRiFti4hriLXDa3ASCoPWfdybU9wnNfrfV": { + "balance": "2124.982776925", + "bytecode": [], + "datastore": [] + }, + "AU12LSSPP3CxYJ7rq2Hp3tpicvJ6atYsVay6BnuXpXT93cxDTCEqQ": { + "balance": "1025.027554996", + "bytecode": [], + "datastore": [] + }, + "AU12LSZ8UxB3G4Nz74eEkDjeiZgbjQZDNg4wsZV9CJicc6N4Prf7c": { + "balance": "1486.983510583", + "bytecode": [], + "datastore": [] + }, + "AU12LSwYnCbpocH83pSHCbJppK1bpVzTcwPT1ZT1AZpTn1z8TK2TQ": { + "balance": "4110.907418416", + "bytecode": [], + "datastore": [] + }, + "AU12LT5YdsjXVQ7FQgzyYL9M3FKKsHZPzwvKeCa8Wfg6YjqxP2S9L": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12LTd324n1zfZ6nad3A8bbCsy8RgGy5Z9F1bd3SQ4d5FXVWgUX1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12LTmVDtpz4FQUjdvzJJ6x5bcpsiEvGxtf1bpZySL7Agsd4boCy": { + "balance": "1413.130914056", + "bytecode": [], + "datastore": [] + }, + "AU12LVNTJWaXtE4nTjygxZFLRvv3hmK2GDmLkr1iVqCzxfDKDWn1V": { + "balance": "1368.892401898", + "bytecode": [], + "datastore": [] + }, + "AU12LW76bJWeEqZZZpA9tMqP5nvCop1gUUu45UiCJHKBcjRPB9QmG": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12LWPewuNuLioPRJkd552CEh6C1yGt3xUFAC3tGmZgfDtDypmwc": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LWV28aergKXhr5SKg1f1EkC6Bxs81HtPRGCsSm6usJRYFsTc8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LXyHx3YwsNzeBu3Zy5LLML7fHeSx4kMxZwveUhTUDc7P37kMs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LY1xupXy4Wv9LSs4HCkcrVbJVPoyGvE8KUduhbku2LyjVjSfD": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12LYdGg5QPsSDhoECtaieq127RMcxpXMpWWsA2HHBjosoW3YFwe": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12LYpRbJrQAa3UcDLTrWZTfKn2fb3SrXz8NhSAgf5rHjtaF9RvA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LYtoycTNA9cKfCdn7Vq8ccJaNebosYbikAx2pHQQePvk21LZ4": { + "balance": "37.271807745", + "bytecode": [], + "datastore": [] + }, + "AU12LYyo5LTWyu4X9Khn97YJXc7yUoMdhhZ22oEjK2chPzHtWfHmW": { + "balance": "1916.318475824", + "bytecode": [], + "datastore": [] + }, + "AU12LZ1wVAYgCZogL9LYQKpcPDoHepTfj5YDbEqiTw43BJcFvKqq3": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12LZKztHsPnr9m8Psi3VBQLVmuoH7X1BbyTrWyRtgsY2f57cGiq": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12LZNvPbZLx8wDwDhcKJFXjM9VfGDf3y9gi6t7dMEQh4xfZVf8T": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LZek3dsJtdR4DCtavkgK5Bv9nxHAcqGTwdx5m1XmQ1AUmq9RE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12LZryu4EgTtgyx4UYQDKYvFt1mzJgYRha5kqorZm6uRWtcaP2e": { + "balance": "4639.106889350", + "bytecode": [], + "datastore": [] + }, + "AU12LZtAry9ZGiLwhoMZpRD44MktBRGEBBqJmr3qtXAJMdMLJYbqv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12La5jjoxAzRoVQuQFSq3VjkEGPMetULNMBWGhRwzZAoyrZu4Tq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12LaAxs5koeff885AjGZhCybGXiBL7GmrtCT3NdAAKQouJ9um6d": { + "balance": "1745.807283958", + "bytecode": [], + "datastore": [] + }, + "AU12LaMpZ4Q9Qa8vdx7R82HbnaxFeNcoGgkPHYLXVnVRt4y4yMgtz": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12LagYqZHuhoDMB2SXE1vjgKmGcZmtyYdNDL7uWueeHSmCTjXSF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Lb7GafJueFnoCc4GRSXreCHWtYynLkzSS5iWTCsMVi6zue4rA": { + "balance": "211.314334341", + "bytecode": [], + "datastore": [] + }, + "AU12LbDf2cVcUppmdRHZFV7MLMPAf39H9HLVHxfpCkJs2mJSysMox": { + "balance": "1879.405869958", + "bytecode": [], + "datastore": [] + }, + "AU12LbHC83HC2tQpRnx3xZfPXhFnTBwr4w2cpo7pG59dngrZFErb7": { + "balance": "1722.556784335", + "bytecode": [], + "datastore": [] + }, + "AU12LbPsKj91uxn2RGzANpf8U2kS3VjUJHBhRgVPZt15vDM8PZEnm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12LbtRuZFMRAasmdfNGKeaURG86StnYZPhcgFp5HKhWAFoVe6Le": { + "balance": "2050.149742688", + "bytecode": [], + "datastore": [] + }, + "AU12Lcuk4igJirxu33QCsVzeNzsAxvvp6waX3tx6e4fksredfhF6e": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Ld5V692vuF5zZg3mDKjbf1ZniUrAGZUf5HoHN6DwStTMAsyae": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU12LdUj8FCQRg2XBzXda8EB8F3N1ruvTg8Fm3djNQUZ2GSz4NBCY": { + "balance": "2071.000578617", + "bytecode": [], + "datastore": [] + }, + "AU12LdfTbaxMhU4PD73FgZvpKHVthxri9c84iNKU2EKEUPh6QromH": { + "balance": "203.978539526", + "bytecode": [], + "datastore": [] + }, + "AU12LdjHXwDhnTzMAoS9qPQeH5WZAqT9B6yhZ7s2SD6rWapm7cvmo": { + "balance": "2887.872819274", + "bytecode": [], + "datastore": [] + }, + "AU12LduUyWBBq9oWFuz8rKUwBxsUwuTJcJsZcC5L2CHkm6YccRjnY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12LeG9gZqV9KnQBberbMSGZNzHhUc4SKkcazRy4S7hjDxsWfYEp": { + "balance": "754.333129472", + "bytecode": [], + "datastore": [] + }, + "AU12LeUdGdoqG2YwoNPeYqALNm12436LhpEUboKQ4cFxvC8aGrSyp": { + "balance": "924.902521284", + "bytecode": [], + "datastore": [] + }, + "AU12LeYi1e7tM8xkreeXJ4aij34LD9QauQVNU7SDiUWh4ddnquFtq": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12LecLsESj8nyb8qLxAFPF2b3aoTNxvcyViFGxopRi958S9PXbP": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12LeiJMXJakRYPizYA7kExvPSW6VLahkqYyE7YLJrDKmBsJVGL2": { + "balance": "1263.136806243", + "bytecode": [], + "datastore": [] + }, + "AU12LfW52B16zMwi9JJFQBu2HUPme4kyKkpFrtkfE7JJ7QUTerNwL": { + "balance": "4394.221956328", + "bytecode": [], + "datastore": [] + }, + "AU12LfXwSMsszRNwuHfJ9rkdDtHFQnXHe49e7TiPnkHwskumyKvSh": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12LfZsh1TTSLc3ysLdgGRwAqVbbysUKQsQuuKzwVZZKFCSaUKaB": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12LfffDL6kEVnUGXV8ompyJxfeGBjoWhPPG2PHPoqBmS8LinUyg": { + "balance": "171.820924482", + "bytecode": [], + "datastore": [] + }, + "AU12LfgQqUkyy29hD6hAhhdQCojjG3RpDRBxp9esnCcU8dB2pouuH": { + "balance": "2108.271234366", + "bytecode": [], + "datastore": [] + }, + "AU12LfppZbs7wmbdMBXtyQaBueuq6N3dvdHfV13bik3JWKB5i8bDZ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12LhAatctNXZKUqMZR9dkXgySo4oAagCiDvKJwywftVzassPSXM": { + "balance": "4334.477078906", + "bytecode": [], + "datastore": [] + }, + "AU12LhGP6XvwKXfTJCv7WX7rjDdRKgKnUxMBuHLncTwAeuPfv5KLi": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12LhVGQAHpimcVfSifWMVCBc6KUTuozMjHjP7Cj62EHr6a8GPjU": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12LhoUnh4mjUScH4jpqkaen9FZGsLBTsAoSzRdRuUDXw3Y4Fgea": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU12LhzJcDcQF5KiSToP8GXtYKhL2fg5rLdLEUiP21PpckrbjkeLv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Li2RQY2Ej7yP3W8wsWxrYvVQ4XbFt5L4L68YS6tMzjZgsNcSv": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12LiAuUHUFCGBWtu7rxePavePPDqVf9KzVU4QGKJPudPVXkguGL": { + "balance": "2433.317416463", + "bytecode": [], + "datastore": [] + }, + "AU12LiLNrVQPnusfKz281YhizBbEMReUVPGm7wiwhMAmW4SxtzJ5H": { + "balance": "4809.554560077", + "bytecode": [], + "datastore": [] + }, + "AU12LiN8qhKi5GoZobYsR14Dtc9oW7EdiqpFPrAYdUxYQwxc282Tv": { + "balance": "1642.403124910", + "bytecode": [], + "datastore": [] + }, + "AU12LiYteSjBRPxPeBLjsXE3zxQ8vMKcpnYoyoubqNzoUnPoucQBU": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12LihbhhftBdtSVcj1YR2eMgjV1yKCHuzYgFTJGoLqhuMXfhhBh": { + "balance": "1495.046458474", + "bytecode": [], + "datastore": [] + }, + "AU12LipcEWdUCt33kQuGdXL2c1QN8HT3eNxAjmrfW5pbZD5yosLmZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LirrmbuKvCiC9EHWHKzZMdYcrwUzdsCbaH6ZQgVRwvMgJqE7L": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Lj9iNVQm8rS9h9YxoUoT4SUdTThCEYf4TvwqjZvrK2QbaD3cf": { + "balance": "542.701815908", + "bytecode": [], + "datastore": [] + }, + "AU12LjAEMcUa5qHqbMU1vdxRb5ZYs9NEvXqpzRxhPQWPxLhNumRpT": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12LjN1BQuUfFqJ7KtSSX8HAKYgRBBTmeczSk1FuKKEQDx3qanGG": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12LjXXKXGagJQKV9RzqWeASwvyQ7yvBb6UcsZBMsquRmNw54ZaV": { + "balance": "3014.976387219", + "bytecode": [], + "datastore": [] + }, + "AU12LkRm8jnsQTTB1Pu2i6F5dqJiqcfXhNCgpDd6CzqpPfQnPYXZV": { + "balance": "4444.925316646", + "bytecode": [], + "datastore": [] + }, + "AU12Lko7G5K4vjwPPnxBVwbVnrjk7w4ed2cuZ3MAGDUQbkG8PbrLL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12LktFno667jtW26PBfAMGnaNpyjjQcAVCt1pAhkcrcPct1iJkk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12LmCVGPsu1tbX9Q3SKvoDDDobWguKCfYHLSvSj6tSSjH2VvETH": { + "balance": "28.545263863", + "bytecode": [], + "datastore": [] + }, + "AU12LmPB5LfCGwQ15vTJSbe9tQrZLLnWMK37HgFkFXKPZsLyx4d6p": { + "balance": "552.684788252", + "bytecode": [], + "datastore": [] + }, + "AU12LmRRwWVxNsjrUz18tBswYUx3L6twb8LMsFbUuz3ZmDhGLQKsw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12LmSUHypcW7kbyLPtJbjch5Fn4UsQKCMmWNNoNLg89temJdJjG": { + "balance": "4345.841088065", + "bytecode": [], + "datastore": [] + }, + "AU12LmY7UCzy9W2DjvWJYWctphxV545QxrUqF599VAVze2WuJ1Aj9": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12LmZgSMGccLF9Ei7sTgWnPksFLikQQm9pFa1KL4vkHWV8gAExX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12LmeRSLwr6MfJtoqvS13JcntxVJiSf9TCpRkPHUV2akPffhXz4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12LmfV4q8Bkp4KNpVV3Vm1ZWSd7J9GW8Nk7CNVPQfwLdsomHREm": { + "balance": "235.341593341", + "bytecode": [], + "datastore": [] + }, + "AU12Lmh6eZgAAsKZR34cAKBY3x7RGD1UV47PikH461KYrTjW5VCyB": { + "balance": "5499.900000000", + "bytecode": [], + "datastore": [] + }, + "AU12LmxjTanfiLPLLm1RKBVuMeHP6xacHzNJfNUjYWXdvdGcTHena": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12Ln6awqcfAqDGrHKbPtM5jskSuXpcmZvRmCbWy8f81WMVzupwy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LnG5NLGgjwzU4KxbL7C3m2qVBrWfb9qScf2N4nLW9u9Tc74tb": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12LnTNb6DGzP2wTaLKdEfSkwYzaPkpqwPVG5CZ6suXANfkCVcvF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Lno1VQs2SPHaSPf5RynJ3GtP68ARWudeBsCsBfSKZqEdw3oqb": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12Lnyp1iXpUu4zGqAHiq9LjBiHhBwgU8rJQHUqAKDnuE98LXajP": { + "balance": "281.260191150", + "bytecode": [], + "datastore": [] + }, + "AU12Lo8zH5rukkt5qpM9cEUqq3AwMDNrhbdZQ6SmTE7eoxfX6jr6x": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12LoDvfGiVdKjWpV9ohXMNbshYnqSzxKThy7MLehRrbTwzxcBKs": { + "balance": "244.332644156", + "bytecode": [], + "datastore": [] + }, + "AU12LoU3L8kPNi1xyzaoA8Ge3TUbQUp8F1s9eDYWd9xob4S5HzVoY": { + "balance": "2243.390193765", + "bytecode": [], + "datastore": [] + }, + "AU12Loh47cs4esWuD9s7NTGv73Mm561W2asBkUwUWDZ3vRY7oY143": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12LovJAAMwBKUHUBnr2gez9Ya5LgMNCxu5XKuedgNZGB7zaCeWQ": { + "balance": "1091.312259227", + "bytecode": [], + "datastore": [] + }, + "AU12Lp3eNPw6pdgxx2Mc4WRXTwvipaErS6w7tWtj8UXfCazTiMixF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Lp4WdZia7fL1D9QT4znsq3W9qQRw7wyJQTQfcqyVUarpbJL7Y": { + "balance": "5594.850703075", + "bytecode": [], + "datastore": [] + }, + "AU12Lp5pjPPWQL34NMmi3uoicr25dheY47KTp6HepvD4RkJzC8RCZ": { + "balance": "3564.787710521", + "bytecode": [], + "datastore": [] + }, + "AU12Lp7dLcrLQ8PyfPUUCtDVJ4c7t128Z19dCq3U2ge15MFVPh9St": { + "balance": "1303.016163192", + "bytecode": [], + "datastore": [] + }, + "AU12LpLWmUtwuyxgtZPHZ9DPQwRTNVrKSvBvYLXu8zDqWLirVuYv5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12LpQXoaPgWUgUz7UD48itHxr5JB3y75ZLUb2HnEmpybn2XTjSv": { + "balance": "543.963842707", + "bytecode": [], + "datastore": [] + }, + "AU12LqSLcsKGaQjNb75USTkAVS2nxpU3hA3U2cRh83J7aq8mRQwRT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12LquBXfn3MeXxLtdeKszHZuP7M97VEaTWd9G9Tj2ge8ocoJEW4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Lr7fpzBusZS4B2mr6LnjJvEpcf1cLA3923dxE4eu85kU2sWL5": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12LrFoTLqPCzwx8hsxboUbmq9Sc418gFMjaX4ykdVghnhiZkiwo": { + "balance": "2503.237718569", + "bytecode": [], + "datastore": [] + }, + "AU12LrTMXJLNSpHTN51MqaHRWxLSvgqAM6a4gErGfqX9teJo8HNDH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12LrnhYWXZmshaAXmDnKGh5U8DbCu84G6kkFD3Jrpi7vYehWdwi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Lru6reBQbG5gaQKyAgrU6hBsrMwfTiX2Gu3bJCNmDWNR5YRrb": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12LsA3xZbga7Di2S7QNjZVkbLaTYWa2mw5dcA8qFxTP2shHqKpE": { + "balance": "805.162284471", + "bytecode": [], + "datastore": [] + }, + "AU12LsCk89RYwjSPtzvfUmL3HHTH6k9bP2jBvSzKgMvHrQgcDbeWi": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12LsRWibBS2DuRG8uAdvMbeFCTAFJQS8rGc2HWmFX5UWHzgR7e4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Lsg4N5RkjaQ8KyJFHwPftrA5QsBVwi7BNwvQgBdokwLkzd4Ft": { + "balance": "785.893471025", + "bytecode": [], + "datastore": [] + }, + "AU12LsmtFUwCA4ow5EDykHUK1bSjfc6dEN9Zsdm9g2w9hbAU5vRMc": { + "balance": "1041.533946572", + "bytecode": [], + "datastore": [] + }, + "AU12LsyC3jJ9G7c7eFHUhpdxXVBEsnUE5ZqxgXdGqpJvfpi4f9qW1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Lt4dn714PPmCTfTtthTKigA9DpTj1E17TrfokYYusYWy1uKPi": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12Lty62UvQuX52kSWVEXoVWUbQ79QFktMU7q54Pffwsu8Cupa1i": { + "balance": "4809.232554286", + "bytecode": [], + "datastore": [] + }, + "AU12Lu7oDN3cZ5qieSaig25gVfPWimnw9Snm3CXv2XdSwJMy6kd3W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12LuCfwWZWCcs4fqH9a2fkiuwYNz3Vqx4azt2JkzE7tgqM8HRet": { + "balance": "1196.873598825", + "bytecode": [], + "datastore": [] + }, + "AU12LuMrDucnV1fLpuV8YVmFWWNVZJBHQeoRpi2xyyuHhjCevMuxD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Luh9qKp37Kmr69Y5Jd5G36aQopHo8HHy8kr96f36nxWKVTouH": { + "balance": "31.582981162", + "bytecode": [], + "datastore": [] + }, + "AU12LuprvtVUx1ZuNrcekWfXh9xQGub7cwskrDJzSfXUejnFZWy6u": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12Luq7qYuT6GHdVzn2tVWh73zrEdfMGWCR44LnwdqYtMKMUTYMB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Lv3uYaCVWTbLEW7W4QURmKaiECNzDkBAHJ2YXNaQvV15nfzBH": { + "balance": "1519.314053924", + "bytecode": [], + "datastore": [] + }, + "AU12LvUgGjviRYeHoJWLAv6ocLn34AiFRNam3CyVyfjs5FdCMvSBK": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12LviaiGAbhpSjJZyckhoHtEJSwfuePdMdWd6qMhEC7DWkU27C7": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12LvpAu4ZL8gZpLvvjSq2ycWCNHQf2EFMESP39t9Ve3KFz6Sz6g": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12Lvw7Kw9wVtA6z5gVd5FCu8ssthkx44HFCD7teiG7eiG7NAePZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12LwPuxp6a7gpbWHNHN3vy78CrdhF8qxKvXJ2V2jyqAhWLZbQN7": { + "balance": "2272.201960288", + "bytecode": [], + "datastore": [] + }, + "AU12Lwo8ygmXVmm1FSHpDitrU2crunAafa8A56GZFe3b3uWxcHmAC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12LwrnmE7bzBB6MhQga2bouoL3CqdzHEAnKQjARPG614thRzKfV": { + "balance": "573.987864185", + "bytecode": [], + "datastore": [] + }, + "AU12LxGpudtdhXCxs97Kvq8y95iGxpEHNezwDvK39AvSav3Fak4Kn": { + "balance": "4422.835073706", + "bytecode": [], + "datastore": [] + }, + "AU12LxWvvF7PSKNoF38vCMvAkv1gnBDXAEVMtMsGimMzcDKTsM69E": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12LxZQwuTkZKb72ZdGc9iG1eBnfonuBwiDjmK4F3XiaktpJPweA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12LykhEwZ7gFVGmwXAh4C8jUHUf3e5kTJXDrZiRdA7z9bhVEwCx": { + "balance": "9.716217345", + "bytecode": [], + "datastore": [] + }, + "AU12LyoRMsFGMw9Xa6US4K4y6hSJcnXZ1hHF3CQr2DEYXDLrZZ3wD": { + "balance": "2319.843226923", + "bytecode": [], + "datastore": [] + }, + "AU12LzC3Ce8yjFPcVFqxC9sc3YwG8uJA2VeQ7BEoiU2a5kbn2vXhM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Lziz9WTKoyE19M3Hz2L8KhTwwAqtfH4MaLjqtU5AgJ8vd33U2": { + "balance": "1340.384714964", + "bytecode": [], + "datastore": [] + }, + "AU12Lzy2mCGEq84tikxCzFBtPEHFiY66xbFg8ehmxQYDzxze57DFh": { + "balance": "645.988055763", + "bytecode": [], + "datastore": [] + }, + "AU12M1LMDAG98U3vegw8VF4znrCduSFqN1sbGwBcgKKjmwp3NurQT": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12M25DPmqURnM4LcYjU1upkbC8RmwL6fPHyxTZ2zQwKMztR3Vjn": { + "balance": "768918.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12M2KboXpmVB7JwKTQk8pDK5UvjVSDccXmVj5vw5JbWdLr9GxVG": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12M2KqMdsPSRoW59hqzGVeXTwaHjsh2wut6QRnrBSYuzzyLFCsg": { + "balance": "2624.686699868", + "bytecode": [], + "datastore": [] + }, + "AU12M2k3zj8K3QWhnZTQbUSd5PzGP5xuSawKTYZRvnRiDwW2KbC7t": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12M2pJzH8xe96sH47XSSVRc9HwahgWkjtFDKgPGR3HXDWAmnBpo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12M3KYSYL7r8MvFmhi5SS2mLV1FXLZdw2qf8kuMfnqzjuPR7oDB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12M3V3pB9iWe7cQNYcRUX8D53vLQranaBJnfvfuL9F3N929U8Sg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12M3bAjCQWyBze2jDvnGPTx3JgSSy6uj3xZoxEHmE1a5tGzfbBD": { + "balance": "215.238499444", + "bytecode": [], + "datastore": [] + }, + "AU12M3kBnjzLtgE4mUiewzn8t6hE7TQvRms19pTLejfAu5vw3Z2HY": { + "balance": "551.736825670", + "bytecode": [], + "datastore": [] + }, + "AU12M51NsxY7DzxPfcTt7tvxrYHEEBaVu5SCvFVXAAvA7mrb6nk27": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12M57W6b2HURAEXdVC9hJLNikzfZqTAxWk7KznnDCkRyvT3E9gk": { + "balance": "792.355031566", + "bytecode": [], + "datastore": [] + }, + "AU12M5Uu9LLbecaHvYCjpxYx3dxBJ5yhQbsW3FeKdax9pD9LsgoTC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12M6yF2Nn4v8CHxyXGwqL9maNQZG7pJVZhZFuTDRGdRrooW77d4": { + "balance": "1557.890776129", + "bytecode": [], + "datastore": [] + }, + "AU12M7JDxhZkWDZ8dzm6Ydra1rFMB7ZAnjTrG49VMneLWS8PfJkDj": { + "balance": "63.435992160", + "bytecode": [], + "datastore": [] + }, + "AU12M7bEjsDapFkLYBh8DbP1tbQhWdWU2v6FyGoMtd3Fk9ExHm1Gr": { + "balance": "20.255194832", + "bytecode": [], + "datastore": [] + }, + "AU12M7iCGhQhFLEpFSL4QNs6s1tRct3bAZyhT91jicvu4DA7ssfaS": { + "balance": "791.887681724", + "bytecode": [], + "datastore": [] + }, + "AU12M7mkWaRfhRSqdXJNMcT3aEqamkvPKMTV4uA12fciREQ4nSfbP": { + "balance": "2345.383186450", + "bytecode": [], + "datastore": [] + }, + "AU12M82DGfhmyeG1y7uCmEqgPdcAhB4YGqB73973PDLhV8xydgeJL": { + "balance": "1762.832394961", + "bytecode": [], + "datastore": [] + }, + "AU12M8E3h3XEXA9dVWmDGJBQFU2RGwdoW7WFU8UuHrCJSRQ83RASv": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12M8kGoXTyRbuTpHDfbvDEnp2UHfqWKFt32o2FAmPsFhARFspmo": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12M8onkLatz4AHE2LDdHv3VKGZ33DVcdUKLY1Y1HEn6PfPYtCzz": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12M8vE5VkAqw15fZqHE5Euw1TyyZKdzdsDzSEdBJUY2ET3cXm2z": { + "balance": "4398.308394693", + "bytecode": [], + "datastore": [] + }, + "AU12M97FmSAqPmk6V9R215mSk8Nc9bJPTRiaERdMroX4dyiKVyrud": { + "balance": "1083.056356872", + "bytecode": [], + "datastore": [] + }, + "AU12M9WLkGr59YcuPv1zsc7LiydS9MmBy19uLBMreojDvHeoShgyU": { + "balance": "2626.173318778", + "bytecode": [], + "datastore": [] + }, + "AU12M9ofDhqXv4Ky6qeNy7fUWn5CF981wgpdqjPhJR4hgLbfQEKjK": { + "balance": "791.734472245", + "bytecode": [], + "datastore": [] + }, + "AU12M9xbaf1NQMX99Zo4DN79m64RALtfN6LfKamwn4uiAjsm6xFBT": { + "balance": "2711.230652885", + "bytecode": [], + "datastore": [] + }, + "AU12M9z2gQ4qdiNtFozN6uZ7R8WmHw3WQFrVD4MkCpGDw25gzNyUT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MA3zdhUUs2tkjCGoaHjKadD58zJnU1ZvGRepxA4zDMeA1ZVr9": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12MAaaaHsqsn12Wy9q2RtnA2K5cys9beVAFccMamKE5b9iWPW8H": { + "balance": "1638.784622157", + "bytecode": [], + "datastore": [] + }, + "AU12MAmujnPJZpHLgS6YGqWkRE1sf2sAyv4xcqadsn1uv74pVZLPn": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU12MAsz16VPMpddkNSWZWZomNZNAbJ74CY8PqEYQeiiirJrKMXCs": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12MAzar3SJyUqaxT9oTZutitYYyiepyjEMcpVbqP5ieYR48qrgm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12MB3SmPuFQCjzS6sHQMz3Xr7Cff6cYbgfQqFpPPNbtMEQsaM36": { + "balance": "1272.447326185", + "bytecode": [], + "datastore": [] + }, + "AU12MBr1Z2F9SJ82tX6P2KXtzbAJfwLEarJ6rASotdPbLwEG4uzmm": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12MBvSWNHejfEHrnYYvTu51HpHk2so2CAyDLRw83f3xa7edM8FC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12MBxhgEveYYV7wLfQuAPR4qiHgvoFvi4Re3VVGxazPLLmizMKb": { + "balance": "692.472036345", + "bytecode": [], + "datastore": [] + }, + "AU12MC8ig1y551K9nncv7VRTS76ofXY8RrJCaCZbe2ypJzTjUk6qt": { + "balance": "558.491320594", + "bytecode": [], + "datastore": [] + }, + "AU12MCPp52mwzrUDmggopcc4xEgXXVramucrM92NRD9Xjb4t7ZHXv": { + "balance": "1070.685053180", + "bytecode": [], + "datastore": [] + }, + "AU12MCniiTwJGWGq1BsEBTLSeNyzFVdyPae9ohtin2vSToo3SPA3U": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12MD1YLfCvJTQBMmNj5f6Sx4c2jpQLVkewtA4VZG6ydwQ7zUncQ": { + "balance": "1592.140618626", + "bytecode": [], + "datastore": [] + }, + "AU12MD59C793Hr43HA2RoDi42H33xvuRg1MRmd2G1e68AcahmuFtF": { + "balance": "4689.260324332", + "bytecode": [], + "datastore": [] + }, + "AU12ME3Q1289apPF5Eb22qoGMdQc7mPE3HrWsy8Wx8fCAjGrqCr23": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12MEJLGgUvkiC8JwAn1ssXr1P6VDAhCVXKJsY6dRd3NNHHi9JXt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MEeyQXTu2CQ846ahDwMsvx3rFiXTsMbBWB6SunXdVB2NDfuzS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MEfnrZEP4CeKyU9gYn24mqG8qex5ySprwTQUWrM3cKZiT3NsB": { + "balance": "4.518986866", + "bytecode": [], + "datastore": [] + }, + "AU12MEok5ucsag3gxvv65Xss8yk9WiN5duZKR4goQF237cXPhMAjg": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12MF6udMQLW3AqaQcWU3BCdnCx7fHUCUaAgS2BnpQoLxsGPKw1W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MFErDtdFZ6xUV8QcZp6LQuf7Jv8TkQRZyhnMhEMEhCvsfzvyk": { + "balance": "240.628089652", + "bytecode": [], + "datastore": [] + }, + "AU12MFRAeyNJMz7F1Bh4haChgUER46PFz6YKZGFiaJbnqDTSAtKHa": { + "balance": "2250.405792693", + "bytecode": [], + "datastore": [] + }, + "AU12MFgMZaRJqLWs5635pvPWD6mWM1REicNn3uwnxLuk1F3vm3TiY": { + "balance": "2487.322080447", + "bytecode": [], + "datastore": [] + }, + "AU12MG2k1qCkFqRxUvcAzm6pA3DaqgHc8BCYJH9cEUDPUSnGjifb7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MHoEJg82pha2KFbH3SGACPDVgzXqFkeirEmdK67uMPJu5AjP7": { + "balance": "2511.724993291", + "bytecode": [], + "datastore": [] + }, + "AU12MHrFn46QoJ61BHxNCBZNXbuGbVyzHnpiBGQVAQ9yCgthhkP5f": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12MHrdkEsyqDC3RKUvYTYXUgVK8cf9H1bXnsoKNBHQHzyMdVGK4": { + "balance": "1846.883725488", + "bytecode": [], + "datastore": [] + }, + "AU12MHv45GQrwVzNL5amg3MrdEEPvCBtFWag4eGLjwUJB4m2B1Vr8": { + "balance": "2222.959885771", + "bytecode": [], + "datastore": [] + }, + "AU12MHzChE8XjPTHXJn9dfSTg2hw4guAvkWS5NvMn5mG7HwuEkG3i": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MJ63ybzYweedJ6wt8eeHpjMYupTqM8WvcQiDPmYWQ6ziczoRn": { + "balance": "1462.571299827", + "bytecode": [], + "datastore": [] + }, + "AU12MJCU8uZaXSbVN5uxsEyvhw3P8PPjhScpA7FCipgx4z7QapKUL": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12MKRt7w8JPbwTCmYE6LyEN8k4zYeW49uiKat499ZKbb65Esb6C": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12MLFjqxrp8mM91tVqQcviTomo9fQGZD8AgsXJj6NQobwzVigcL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MLHfsuc6jw2X28YxJ6bCYLekHmwdg8g7gJxLakQbTWWXjVsnJ": { + "balance": "1795.692269294", + "bytecode": [], + "datastore": [] + }, + "AU12MLcN8mGmsZyzFcXJxFxy3kmCnG3ApGKKbcyxQEZP7ajtXvkuT": { + "balance": "855.203193098", + "bytecode": [], + "datastore": [] + }, + "AU12MLyA41UbsgB4Y1rRbekuzzLm9wwLjgUyuRwv84iGuvkSvqNvb": { + "balance": "1806.283381404", + "bytecode": [], + "datastore": [] + }, + "AU12MMAoevgS8GJSMzTMw9tuoYNmBtaMReFwRXESSs2zVX4LAjvrL": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12MMErCMQi1y1Ly9jjxG3iDTk8EUBivTNC1pFEm6JYY9gDEgYn1": { + "balance": "1545.952144242", + "bytecode": [], + "datastore": [] + }, + "AU12MMPEKqMhFy2vFHRvhdGV64Wtt1wfLGSq5RVCWsKrunXKg7tyx": { + "balance": "50.330033003", + "bytecode": [], + "datastore": [] + }, + "AU12MNakJevXcS5aDdhFdhkVVPVDCZPSy3Ee5jNqMPdsGSEcW2MNP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MP5XoxQT2AGVgVvrU3qEQRzW9J2tcwbYQdV7cpy63stxBQxuq": { + "balance": "2557.601494906", + "bytecode": [], + "datastore": [] + }, + "AU12MPFrRsxuCj2JpmWPu4nW2P5wijm38C9qx4m5NC1ijkxzwT7NW": { + "balance": "2959.505101904", + "bytecode": [], + "datastore": [] + }, + "AU12MPJ4p4BBNVZEkvvfXANLQ1wN2qw41Jb3B3JQJQLXSH98r428P": { + "balance": "1841.820564514", + "bytecode": [], + "datastore": [] + }, + "AU12MPRgxuWWQ8EiP7JbUgasL28UXdxywecCSwyNKVyk35HThNaWW": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12MPgo6kWMnVwLAdNwKC3fnfecJAzDrkDYif3eFcnXoWUpxWKb2": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU12MQ5g2zRN1yPSMKqdg4HWYhawiNzBT6VEWFu79GLpJ3DvZ3ZaZ": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12MQJHupu1o8nATp1dAgsCBJBZGSUsYqNKSsxfm3ztqVbf3JM8f": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12MQeHiPY5njF84xxkpebXaH6FomE7zxRqY8bMk9Jw8vRrxtKkb": { + "balance": "4542.063244605", + "bytecode": [], + "datastore": [] + }, + "AU12MQpD22HUPXVYqc8fXiHgjcoP3MuxKNaK3Y7UzTdDgfrYeYyxB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12MR7mX7hRTkZb5U6qn6ErBat4jrRitKsYsVS3bRNhp37sear8t": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MRGmSeNgBmNcGpFWETNRhNrR3ZBugmeaYVoiLWFBncH4GRx8z": { + "balance": "3195.755994990", + "bytecode": [], + "datastore": [] + }, + "AU12MRJsqLWw1gmnPHNUh9GkQZRzmocmsyw4qrRcrtwTDhSUhUB18": { + "balance": "1194.075604382", + "bytecode": [], + "datastore": [] + }, + "AU12MRi98ZfcNMXTtaVYY5PHie6ukLoDGvE1RYtLGsDq3AS6Lfwvi": { + "balance": "2339.751772326", + "bytecode": [], + "datastore": [] + }, + "AU12MSe2RK7wRPMuTkvVdM8LitBVbxRzpaFU1FyZfafhPMoLMphjf": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12MTNhChhSJ5BshK6zo3SPeFrqYze5imRc9PRD97rmQW87GR29t": { + "balance": "1282.525063415", + "bytecode": [], + "datastore": [] + }, + "AU12MTWpxvAtgCMe3oNRW5FtEP4egYzcvrKchJyoqrwDQjYrVZQQU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MTXiLgnN1wbz3aVFteiqsxwdT76n9twjGd6wL9jX11BLAgjQx": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12MTePZVyhFM2uJesmhBrnKuXbo8DcXS9Txw6AEa9FZzTQwZrsy": { + "balance": "1007.487798702", + "bytecode": [], + "datastore": [] + }, + "AU12MU3VKcStnSUJbeJrKLGbmKzcgAP6sJVRFqfxCEi7Hi9B3hPHN": { + "balance": "1144.126092137", + "bytecode": [], + "datastore": [] + }, + "AU12MU8REkZiBP4xn1wZbDaZTWucN2iDebZWWDWf3k3xDdJTYgTDc": { + "balance": "2514.848529706", + "bytecode": [], + "datastore": [] + }, + "AU12MUEwqoDDCs2ZsiCJvTdD2Akp71HrsSdQgEV7Y6Gh7Xe9kJLjf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MURvNpbiaGwRXF9C56w8T5EX3GAmq3DgoLCM7SnTrxdn3gTUN": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12MUk8pYsRWCrQL6rxxSoAVM4iVpDmHJCrGVdfCsbdUV8Zzk5Cf": { + "balance": "1680.264529178", + "bytecode": [], + "datastore": [] + }, + "AU12MVibY28TcmceExeLpHFigeP9G12kuEaae98HMVc8qvPpQwHGf": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12MVjRknn9sBFQCsCs3TtTT4kfv4CALAjvUwGLzinFV8RktU6Bi": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12MVop2HiBunGpDQdyo6AgyHSBnravzPAT2GeDCrFqbojgH9riP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12MW4vYqNypb8KM6RESM5u54E5nxPjctzHExfFaLwqoJ9QJkYr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MW78t3t1uwACvwgFmaSM4D1pH3eSkS1CbL5RoR4ttUvCLBwF4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MWBM7GW8UsQ85rqNySQfVDJeDDqva8LpeT7rdcgd3vZqQvdcM": { + "balance": "2221.487972566", + "bytecode": [], + "datastore": [] + }, + "AU12MXEXE7T8GxkEgQdyoWA4uuZWuZpUkDMdofTaQdSj3n6k4b6jS": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12MXRZeHrwtBBSjjJW4E9YV3oYkKUgv3uRiMfSrBBV3PH832iGd": { + "balance": "3239.793453380", + "bytecode": [], + "datastore": [] + }, + "AU12MXV8CRNpiqQTAw4WQrZixQRCeVciiDhW1EzmyuCLEvJxYgnqP": { + "balance": "644.669632603", + "bytecode": [], + "datastore": [] + }, + "AU12MXZwmizPg9EbF8qHG7pP7nte9KKTbjsrANbBN8MQHg1fLETGC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MXdiUN2Mkap1qqmQFjFtwt4X3X7AwRBdEpuC58EKroesHJN3m": { + "balance": "7369.604119518", + "bytecode": [], + "datastore": [] + }, + "AU12MXmyccQDHwCBDhosCmNV97ZuMSPRbSUtvBEA7ePurWF4jFzLm": { + "balance": "602.349766229", + "bytecode": [], + "datastore": [] + }, + "AU12MXnJfD52ym4xc56uQ12PVTd9M6EURb69zKQTBRqc4HW6VBY3G": { + "balance": "630.187757068", + "bytecode": [], + "datastore": [] + }, + "AU12MXtDSm8uUaWYghXrRBEfJrHeqHN4W8MrKwCPChesQWuSS6p5i": { + "balance": "922.802976606", + "bytecode": [], + "datastore": [] + }, + "AU12MXyLe3C4HiMCpTnRUBZihyktBeV4aBtthCXcRDRyebrjWqvTZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MXyiYhXJJkXeFyGbptQTtjBXm1QFNHGQ2uxgCmgG5re6Lf3Cd": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12MY5pXcj3yBYSAHWexftTFiqFSSz7sq2s98DiFKtHrZ2AChvyu": { + "balance": "2159.269590461", + "bytecode": [], + "datastore": [] + }, + "AU12MY9BWFdTjxdrQE7pbHbn45ge1muK27c6RNaPNgkURU5wuZG9t": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12MYBMn3itBETUNobZ1rgwrCtzBj3UFnHkZhdD3NAHNKdSJXEjq": { + "balance": "928.634516511", + "bytecode": [], + "datastore": [] + }, + "AU12MYWe9LVZXdGgX2Lc4YxmdKkSsKXxhAtffUX5tw8Q8Cwq46Wms": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12MYxYAVE5C2Vsd6G3wWYL3yWJZirEqGvWA54HX6ouGWqiYxae8": { + "balance": "3252.547138425", + "bytecode": [], + "datastore": [] + }, + "AU12MZYtZDBgr4TfjkjSzyuuordrXqZZKrNHChS5ZN8fzkLurjFhE": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12MZZDZeSoC6hnwcYonSjvUXpkLqKdGbt1RZffYZds7bE46sbqJ": { + "balance": "538.607978286", + "bytecode": [], + "datastore": [] + }, + "AU12MZdgXGGo6TNiKBCSenFUBxF8rTP1R54wjy74qHWAuPC4XJsQG": { + "balance": "2960.764923195", + "bytecode": [], + "datastore": [] + }, + "AU12Ma6zv4qj8gw759ZmaMVwsz6YnX3kQzREgF5L5tduTPRXB9tQA": { + "balance": "1932.089621214", + "bytecode": [], + "datastore": [] + }, + "AU12MaH1go92fwdCkG6Eru4qeSf1gKu6TQvhZVMZSDDJtvWq8ftjf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Mapcn1wJX4UvDz1eZjK8tCHYrxUfsaDW7J8fxnkEGuL4y14XK": { + "balance": "62.706270627", + "bytecode": [], + "datastore": [] + }, + "AU12MbKe7gYK3LAEZBdgvSQUFgsfuUappPANnKk7NCNMou8yW6rjp": { + "balance": "1223.427709467", + "bytecode": [], + "datastore": [] + }, + "AU12MbmP3jDBUQS2PhetQWgcrjncJYVFpKxGy9zvF3P4o2BJKLarm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Mbv1PoFLU5e3qqfSfzoUwr6PtuvwGrkMfTR4PVzYjoU7UuvND": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MbyU9B14gjQzqgYtQMHpYvwhEQpb7PThBfWq2xN4y2NKRJbbS": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12McDcUGXdhpu4wNdbEnkaxMuLexE1Le9LRfgGLqrtzo8Uo6BpL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12McM6uT7T3Fdps3QKcBK5LDZfCHtMF5jtXUakCmnrLYW5hS9Eh": { + "balance": "3034.323301907", + "bytecode": [], + "datastore": [] + }, + "AU12McVSUtvLspTwSGMe8ygXim3j5C9Ru3tD3db6PyFQFcaDBndKD": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12MdCM4Eu15LirZPUAPmy7ygMogw6VYyeAX4rQ9x5kUS9KuSPB9": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12MdDfqQb3X9bsZCjctKCAAzGg443yHceXEVBra1PtRn2eyRfE6": { + "balance": "3060.040062359", + "bytecode": [], + "datastore": [] + }, + "AU12MdTtdnRj27d5oNGmrUGK6FatpUyA2uAUXPms3DrR1DBLWWxBB": { + "balance": "866.506224571", + "bytecode": [], + "datastore": [] + }, + "AU12MeCb9ZJdqrAGjb88PsZNbURtXJ2HD5KDjj7jQPdjjBmpVTRNh": { + "balance": "860.114714565", + "bytecode": [], + "datastore": [] + }, + "AU12Meb1e1j6eS9fGby5K3qtjys6qbKGkxE1dGdKCoQbnszgL1jLR": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU12Mf5yd27P1DaW7Ydt5Q2MKgEPCyctGr7d8kpdUnoiJSrMqNP4i": { + "balance": "1477.798097325", + "bytecode": [], + "datastore": [] + }, + "AU12MfBW5FcmYpSPiy9o57rZVLvFBDWp8GhYZCaD87Gif6qtw1VM9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Mg19qZK3qRyQhfpVPFNji8Bftk1cGSWezeYrMmYJjmZzeJ5gk": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12MgAqiYTBSeL6tTi9ZSyaYyBiE2HCSMTx6TdopUUdEQJub7bQf": { + "balance": "645.876935034", + "bytecode": [], + "datastore": [] + }, + "AU12MgkvsHEyja68Y7W55iHC4QWCtVQxqWXZ2EqJz8xxWKG4VWYUo": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12Mgt6Ujj5UbAoSAw9VoAEcFZ3J3wYyMvgbunqYnpZdXr9qAFrA": { + "balance": "1868.125191027", + "bytecode": [], + "datastore": [] + }, + "AU12MhA2rJ1GvgpGeEnKBt7RVCGEzLvT13mUGQtPuq7ug3REGx553": { + "balance": "1407.548449555", + "bytecode": [], + "datastore": [] + }, + "AU12Mi1YF3j32tNyRqeAnxMFmehhFLf23tFeYQUYywdLGCdxMGpQr": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12Mi1ptGVU1gZx8xf7Zmvam7haNd6sL3WeLA56pdcKiCD5aard": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12MiPEDTeedxpXXY8cem7hTQRaxuDM7BoMvRgjwZqwApU9YxUsh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MiU7uBkpuTUFNbYfiykjpExWGbGzhDQwhS1FMqpEbkZ6cmW2E": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12MiUfNMvs8aFH3N85wR5KLagP2iWaxQRMspDZujUu5atMpCNmT": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12MikA62wD3mQHvTwQcY6r3MnjdB8KbJBw7mSEdZopGkmYqxPKn": { + "balance": "1501.617037613", + "bytecode": [], + "datastore": [] + }, + "AU12MjAkraVwMtfsL2HwXv5D68NoJP9NGnMs6vD8A9Zgx7JEVtmAY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MjEryQTVo63dSuoNSLmCn7D9DLFksGZ53U3aCBEfXjd4tSRhR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12MjPG7ZixobsihJUtqURF3QgCqbYkTXdeNBcV5gvYEmSWkw25d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12MkBvQDtNMp6Kzb5nuNzyGhh7axfJGDErRHw5nuM6eQPHfUSmP": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12MkJ2j4mZhqfuRsWRxeNNdXVVp2ggW61NiN6QU4DHRNccivzHQ": { + "balance": "1643.106591405", + "bytecode": [], + "datastore": [] + }, + "AU12MkbWnrJPT5EZEGkgbyUEoXAx4peHRDikc68JVRyXz59ABSo5S": { + "balance": "3065.790229781", + "bytecode": [], + "datastore": [] + }, + "AU12MkdvjroRFd3mqLv1nPvPM1Z4aVmibmXMrXz7uBRf2Tk5rB7Yb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Mm4MaX4d48NPymBsFgpKVUS5fwb4XQGrccqo2QacDrFgZniVA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Mmk9paapsRRMAScmJ58GRVseMoF4ppabniBmzHtDdLVkj3HyR": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12MmrTHgrYuYTBFjjxhryh4URmz1LyxiNZHcQr4qs5TPdxZNPmh": { + "balance": "779.693380961", + "bytecode": [], + "datastore": [] + }, + "AU12MmzmsGLqAMmjbjxthf1FcG4NyfZv2EVnHFRA26CmT4tnFthEG": { + "balance": "1348.575538563", + "bytecode": [], + "datastore": [] + }, + "AU12MnCPkZRKCufyKsxfuroRNq361vtFbC1uoYynLxw5osSUvJSzn": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12MnN7Jor7d7j5rbmguznZpEugVrz8P9umrpKdGgyFA1AxELyV5": { + "balance": "1267.623235574", + "bytecode": [], + "datastore": [] + }, + "AU12Mo3Q2BGarqFEkWPEZghY9WmBbsz43xuKT38rWUx43RgqMWf5N": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MogMEkHrD47193gthd18TkFaNetP3xgB2bKrQRJQvin9DYvgP": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12MpPAMoY7Apkrb3JiqXToVo3RZ2e1HXrvdHqbGEYnEYLiPG8GA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12MpfzgBmGhq4sACutDhJhnhTgP313qNdqJyBawT5yzq8RL9A4a": { + "balance": "1807.565343714", + "bytecode": [], + "datastore": [] + }, + "AU12Mphee1LjueCYNxSCnNgk9cZpMHeTaNfp9wqH6vdmx4tKa2dFj": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Mpo8Hiaccu5NV2yBFbq8qZk1MMEf1CApMxpksMCnJ73iuN8ML": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MqZgFaSbWGFLPoNFUvNLm9ioS9HKBnyS5APUM1D5Ci8A3Zo9p": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12MqtVkyd33JgsLfPTHUgjiQnmgPp5SsrfS2F9F9z4MPNgoq55x": { + "balance": "4536.079662479", + "bytecode": [], + "datastore": [] + }, + "AU12Mr7EK276japDpnA9fCrUkMgSqWCvp5NDmKi4xsqkSQJimVNcC": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12Mr8hCqCviQxM8hYdd9Q7vaeEiYtNAzULcQRYQdiCPMHiXcAfR": { + "balance": "576.395510651", + "bytecode": [], + "datastore": [] + }, + "AU12MrFutQnm8mjsToQFQY9SzD2pBcyb2WL73LdRw2xdGcG7WBDt5": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12MrR1xJRoAcA6zo92eEwZjd5yYShNSStZVDrQYZziRoRZiUZJV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12MrciD8uHf3n5BjJmozA3w5y65VzXBpia2vQpRk24nBWKxWScD": { + "balance": "72.311636116", + "bytecode": [], + "datastore": [] + }, + "AU12MreVoy8e2T8oUTu1QE1RuHp9pNy8N6vmWvmgAmigpS8M3Xksj": { + "balance": "3196.247035272", + "bytecode": [], + "datastore": [] + }, + "AU12MrgzYQjjA1KXSMJXMgwb5jEdTxmMZn2mLXtD7WtTFAA7zAniX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Mrr2daqzbNwtA92NoGUb8esPWSPFtz5rn4vw19USGSueW58b": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Ms1jwb1AyznH4fwqUUgpx2zbsCzSJf4UX2PqRH5hFytzUjnjk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Ms8HRXJ8hTYL3ktaFTUmBgHyaHdZvZ1bXJwcTemFvUE7ZGzxB": { + "balance": "1791.021052355", + "bytecode": [], + "datastore": [] + }, + "AU12MsJtdx1j9X5EXffFVFEtptXmZhMJREKBbC1HrfKtibviCgVM6": { + "balance": "1476.320991568", + "bytecode": [], + "datastore": [] + }, + "AU12MsaRZpMosGSC6Suy9sZw1iPw2rA6AC89jWGeRuMobymRzSTPw": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12MtMFs3p3LQY2e521SVuAaTBL8E6d4mfn5Bbssj8t3ShMYwxAp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12MtRjSHEB3Hhw1G5XXSC5UbLFfuMPVyNTArNvonpLY4P4Dwjtb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12MuMcZk2YeNDk1RM2So9KH1iw1ZraEUWmKzHMPRobsesM6tXwg": { + "balance": "1780.489921857", + "bytecode": [], + "datastore": [] + }, + "AU12MumwtroLhSzWas6gJC8Fjmjvn52Rf7cAkJcPkhDskGKGMTLb2": { + "balance": "1873.224514609", + "bytecode": [], + "datastore": [] + }, + "AU12Mupgq2un9uhy9usVGjsarQrWPumRvh1RrniJV95LkDoYdbmc2": { + "balance": "1013.616099591", + "bytecode": [], + "datastore": [] + }, + "AU12Mv3pkFLJtCBwjKgKR8pPNcas6E4r3VtWK944T1o9mgdSgLbo2": { + "balance": "675.458466755", + "bytecode": [], + "datastore": [] + }, + "AU12Mv7ag6jzc5NrV64xDndAm3Eo2BVsk12FTYPbopg99KX3fyFpQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12MvGD1CSEpFDum1vJxbQmW3LHUnyHLJhaepAUEbjU7sQLivNde": { + "balance": "1253.886435738", + "bytecode": [], + "datastore": [] + }, + "AU12MwMDrYJxMDDHAretMEEHhjwUa62zMJrDKt5ygC5uZ5MoyzCtT": { + "balance": "1915.502095695", + "bytecode": [], + "datastore": [] + }, + "AU12MwSjxTnoN1PE3rjK2GM1xFBfu3P4J77pwuw47LAXGn5iY86B4": { + "balance": "2748.805867152", + "bytecode": [], + "datastore": [] + }, + "AU12MwxPgmEjcbyDCjM9zLXHAU4KW2UXE9WF62Kx2WZ7CELyz8yua": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12MxEpsPG5Vadr71eSGDNq9zhWsSk9L9wxiFYKD6XXYt8NfNLYz": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12MxTZAaFJ7LwPqUzvPk8zFmoF3mCRyny8LKMTv3kfLAUAQejwK": { + "balance": "1843.443149172", + "bytecode": [], + "datastore": [] + }, + "AU12MxzWTaqXJ4qdNgRALfRi5RqxL4oaUQMe4zBvpF94DEoX1CiMU": { + "balance": "298.823180953", + "bytecode": [], + "datastore": [] + }, + "AU12My28j7Tr2Hzgey7XUixLK9qY1uTK4JgusAFMAJ4hy7ugCwL4C": { + "balance": "3530.650030932", + "bytecode": [], + "datastore": [] + }, + "AU12My2t7jcoiDZD8NVfUi1RnWjAP683QNeRpwZdEp88TDLiacbFC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12MyL7ZCdS3T97kS14iRyLNXChFK8Nd8hQPqoDBBxfEq4AwGVnJ": { + "balance": "2189.858345766", + "bytecode": [], + "datastore": [] + }, + "AU12MyngiNQWsgn7iZq7EFTMrXhUSYMDmPoXiPEDm16xyLLhq5pww": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Mz8i6sarV1HtXuxkUkGGyQxnTEaSLHzdHiaH5GcgSVvSGU2LG": { + "balance": "3159.808840269", + "bytecode": [], + "datastore": [] + }, + "AU12MzLPd1CbFRQ1YEeWyYD1vjEXwD9hnJyA9LFiwJnuHHhq3RWGQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MzSgKdaZxugWNpuBDpzwtoFP38UjfQD3tudKAFFr38zjuFzyi": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12MzVcbiStTuCVVTgSZAiCW3RFXzHx7n7AnBhWe5k5FV6UhVxxY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MzaQ3C4CG5aoyURvk944B8coCDT25k1mYptyvcxU5zcbQpViU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12MzcvK15bCvPSnBMEe1sa1Q4yugYUtkHG5SsPnXR3LBhVDPES9": { + "balance": "3169.582091694", + "bytecode": [], + "datastore": [] + }, + "AU12MzgQGhF61tm2tZvBx24xF7mikkoZZLSfReZ2rgpmJ6sMEZMaz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Mzijo9SjFoyTyX4x9smWyiFwg4uhieEYN6xfJJjaEA2jAUmtU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12MzszU5GzNLPoQHY3s8vG1ziU9zpemSrfByGBSrBQ1ZEyb4ifm": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12N16J2WTCygUMtiSs4rjnZBqw82qvHYUU632GKvtpm5SEEMCPX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12N1CaWUeTyiNP4JRC5yhGu1YRT2VjbMnWLpYD6d41NYtGU15c7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12N1QCpyZWBgboFJFnoLJH3dsBJsuAm1VqGzFUpCgMvnQx8ubyk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12N26XYPjgYhiPYAuXfmNUsdMXqZFV6NtPxSFYsGMfeTRxpaQ2c": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12N2NBxkVNcreVGhtm8XSAwpfyEJvmbkFzUCuxV1NJbcgg12NPu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12N2amdkHFbG34h4if8EsjkvRappker2jFmFC2gXsUZmZbWQhuC": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12N2bUSs4NxxNTNzkJ4fe8LPu7dfXsxavSoMH8sKzwTFXkWyrZk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12N2hYq4NKoYB59egxewZz19Arpsuyc8xrwKkucLgK4Xnk8yjM1": { + "balance": "761.026337034", + "bytecode": [], + "datastore": [] + }, + "AU12N2yS7tfKC2o8aKEHaKx8f2GeQQby9eXxKrmN8LMo83Dusx22g": { + "balance": "887.731773181", + "bytecode": [], + "datastore": [] + }, + "AU12N3WUa2Lv5xJcBBWtGJVJujo2NoFStVBrioVEyRRoumL7n8g9g": { + "balance": "592.825262295", + "bytecode": [], + "datastore": [] + }, + "AU12N3oHyRNFJ95tYaqHy2Q4amygcRyvJqbyVMqBGYo6mpzhTNjEK": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU12N4Jd1UYEhUGwYbPdG1zY9QgfzdF3PTgE9uqrgYDr3ZjPmWEtj": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12N4Ka2EkcWqkUKw8SHa7xJCdcCiPq7gEAxJH12E4UtRhoZXnLo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12N59VnTy5DFFMqYS2btFuPJ7Z2KzkRo9FxZPkqqmnaPvSk3ogq": { + "balance": "2954.577647731", + "bytecode": [], + "datastore": [] + }, + "AU12N5hahQBkt93eE43qXX7Wgxn51VnLk61EgbuhmNbBuy6B1zroz": { + "balance": "883.512367589", + "bytecode": [], + "datastore": [] + }, + "AU12N5nZcb71xtroe1hzZhg6KgPcMzdit84NRshpuVBKz9rfZbMPN": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12N5uXFYJJrWEmHKL53t39aT2rqLeqYMbCk9L5AKtNweR16PbBB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12N6R7AFgRoMkA2NMKwYwYAFMUqdMDqS4LUzNTRJmeatEPo9PWf": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12N6iG5kwq9WfdiDbQq8eiXMWncQNxZXcxkt27KduwZBSDSXrUx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12N6nDBA7RRQcQTy8FRQmmAonfssfCmsCcznaTzNWVHjMaoqDYW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12N6s1y2oEtBQgrWsgKnYmdUWnZSQERFTymbpc29Rt3RgAR3bpn": { + "balance": "1936.377771175", + "bytecode": [], + "datastore": [] + }, + "AU12N8D5RayUfWgUoA6dFVpVTszTyxX2TwkHmSosK4VaHVr7WuSes": { + "balance": "6550.355710519", + "bytecode": [], + "datastore": [] + }, + "AU12N8Ng4ozkHmDpgAfKSkurZELnEQ6UrmowXKMAXVfdJncX38LKc": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12N8QwDmV7qxBN141FEV4dyBE1wi2S4e6YDWWvQXxDzfBZyR4ZR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12N8Y3GZKC76bJqsn2k32jE8N4B5X9gvbtr3GFGRt15Hu1jgZNX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12N8pCF6dpDdYaHZ9YR3hBLLyz2jv9X3kHVWm8UPe7U7W5U9GmA": { + "balance": "1032.854347947", + "bytecode": [], + "datastore": [] + }, + "AU12N92mybYxtfY6V2U2d2fiwGcvqBa4U7cAFSe5JYTUUhxgBF8QH": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12N9R9Ta8waxKhivx9VHLCSMPSz2ZWpyjoitD8aR69F4Xpocjjm": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12N9uAV85VTUriUDCAvSFfL8xfT9cpK5R2B9RLWVCge6yBRFzN3": { + "balance": "2493.819790861", + "bytecode": [], + "datastore": [] + }, + "AU12NA5DkqePTTECAurEFzpH7zpgpTkWiSyVWoFwWngdQ52G83tFr": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12NA9dF6ZFytsyXMY9AqpT1Atvs8cR4EuWpanjXT7VPCJEWAnyW": { + "balance": "1244.450606793", + "bytecode": [], + "datastore": [] + }, + "AU12NAPyMCtPaK8574SUJVLDSRrHfCkghV2C3HqF7QX4freJNVbfK": { + "balance": "3782.257054679", + "bytecode": [], + "datastore": [] + }, + "AU12NAWtQFm25nCcTxZrUN2z75un5pYJFwTz14W4RjFX8quVNk49Z": { + "balance": "1874.856713228", + "bytecode": [], + "datastore": [] + }, + "AU12NAxbUyLCq8etvRRG46Wiban9bkdSc3rVLgsUswz2ektuwEpvR": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12NB7KG6x3k8Fuw6NgACrpexrqa1kucMQgkD65ZWucBs6UzJ1rU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NBSWvaNgiw3vu1F8h5nxWyQHSVYwevkqQbTbntvSyVvQ2DRvq": { + "balance": "875.263474110", + "bytecode": [], + "datastore": [] + }, + "AU12NCi5VagWupXttcrJLihzSe1YVtDjgWA2fExBqLAqpo8CdfrNv": { + "balance": "2578.782472248", + "bytecode": [], + "datastore": [] + }, + "AU12NCsnJgeLdLQqCkcUNCunh7JkkAqiTPexsoSoWA5RjVCnmg1xG": { + "balance": "1714.305074765", + "bytecode": [], + "datastore": [] + }, + "AU12ND2nEeMbHetWFribJheTZtM2HK7kvaRgMb7PtKEHcSRPBeVpz": { + "balance": "59.220662780", + "bytecode": [], + "datastore": [] + }, + "AU12ND6SBeUMuNeAyYKkDUDn5kyotX7YaCCpNpiRt33SJ2EuEZNcg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NDLUe88A24qyJWkc2pdhZzPGvXAQ8DbNVrF4H9NNcACBFDGVj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NDRWAcL82ewv75bGaXSSyy7z2YP9QqYcYGRAa5nnKCqxNd22P": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12NEE7Y8tKYUpD2KZrBjLsYYPtMwkf6SssrSunmxVjQS3snb9eG": { + "balance": "2391.564193218", + "bytecode": [], + "datastore": [] + }, + "AU12NEX8AtqPHRyAw3XuiirSdfzqVEZJGLLho5622UpL2QN2NqijX": { + "balance": "599.271554032", + "bytecode": [], + "datastore": [] + }, + "AU12NEdQ1FX3eNMunnoCTDcggasZmtWAD9KMjLaZP33B7y1mihn6X": { + "balance": "1847.165005057", + "bytecode": [], + "datastore": [] + }, + "AU12NEwFDTyzfTLuDkLgDreSixgm9mf3goyw6Q9gzXVe3Zst6ayrw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NFP3Y1BPCNFS87usFDPHF7H1No8S4DmA69oYTwLXCGWJZMLL8": { + "balance": "1921.368024072", + "bytecode": [], + "datastore": [] + }, + "AU12NFo85BzmFbXqabeJNGJxgDsvLTUHVyWErUpoXePf7dhERM78J": { + "balance": "2226.163850806", + "bytecode": [], + "datastore": [] + }, + "AU12NGMMJ76PcMoDgUeYpyJiDrEzXivRxGUB4HChh64EiFwsBhpXg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12NGNCZMJHf84rQAcerigdtK2Z3NouLyUhuxtyAS8ufKv1CsNhP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12NGqtfkkcvuKwSj89ic7XGUf1E7KyBvrtpqKjtzoijZ477EGH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NGwN1i7kkBd4ouGtVCD9TEHbVXD8FttuS7WFxbcBgzLTx7if7": { + "balance": "1201.009691332", + "bytecode": [], + "datastore": [] + }, + "AU12NHCDD8Fimmg2ygXd1SWEktVe4ASawtfZVBD3J8SekZ1Cmftj8": { + "balance": "1684.467498273", + "bytecode": [], + "datastore": [] + }, + "AU12NHi58sJRjWncjYRq65AybQ6PYUHTbfzQFdjuCwiTXHPeRpc9D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NHvfgDh1fKfjj5UsqorZapj7cyZFejvwdWxBBiskRqcnShKNc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NHz3rouSUstaVajMNhgdcvhZLEq5nXwoMUiY5AGEcbuEEzosX": { + "balance": "751.435205416", + "bytecode": [], + "datastore": [] + }, + "AU12NJD6aUUUJZhxPvMzZNPDSGQELikd2YbGKa4cQ8jsyAVadSjmr": { + "balance": "2028.316976724", + "bytecode": [], + "datastore": [] + }, + "AU12NJNFSk8wmyfxrhfy2tc9TuNfmtpv2mTgxjfu5BoFiXVoTyvSL": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12NJNY1y7EAqyGvq63w1zppdx4PBA6zU3yCobKvqZafJHfmyBCL": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12NKYh45G5Qai71NrBmHwatRa4V8AnrHq7TQgiwxcAbd5tedwML": { + "balance": "1806.008087216", + "bytecode": [], + "datastore": [] + }, + "AU12NKZDrZ4cpdvgu132veba7GSjY4ih4tJsHbJ47TqA9Lxu1ih2j": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NL8XNoENHLzr3Hc5GJkiYg5HQE74wumJwwJTxk9B7Dj4dyZNo": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12NLRcwe2hNZ8NQkL9tKcAtW8SBfuuVAQT7uvnVG2ySqmd7YFAN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NLUcT9piWZnAmKvFr4iurrcRaL8mZHNM9PGHsEYedeEKvNu7N": { + "balance": "1918.836073168", + "bytecode": [], + "datastore": [] + }, + "AU12NLsEwdBWxkgzL9pskFwnhwP4s5egoA7FRPHodyNsJVinrweA9": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12NLu9aQeKDMuy4tKeBMN2bz7s29kAqsvMTucGvc32rXDRaGzkA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12NLz1cyBRnLV5fVMTo4HoHHu2QvwEXEK21JYGEsHcndSWsVyk3": { + "balance": "1471.713632937", + "bytecode": [], + "datastore": [] + }, + "AU12NMSyjeqtgCBdbxnbrrmAoA8pYg5comwjAREVVizMQsNegTjd1": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12NMWfXj6f2Dk4d1vA9hqqhHcJN7gwcA984rcGrEANNm4e8WxjV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NMwmPbZqd6eE1kqp8Tm5dTCDQjpR2hvhQjTpBgAa4EBsSx5sb": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12NN9B8tQguP1ZYNvo5N8oEcKPBJ2C5gvw231bbQPchJs3VgXvf": { + "balance": "23.618642032", + "bytecode": [], + "datastore": [] + }, + "AU12NNDoGATYUFzuenYeGgrX9BeqPwh7d3rRDwnjZoAMQ1iiYojVn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12NNWHrFR34bPrm5SExVZqvbebh2gtijbdmBCCczwTaddNeYtJP": { + "balance": "1039.341854704", + "bytecode": [], + "datastore": [] + }, + "AU12NPC6xXzQPzEXUnqsWUziFEYYeeWgZogLfEUHJWeXDNoNbrPUv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NPDRnT4i2BdCcvpiczgZy91Fb51DDZnnywTDcqxJtmWkVta6X": { + "balance": "1445.102156557", + "bytecode": [], + "datastore": [] + }, + "AU12NPa3WKYUKJkZCKkt7m3v2MZC6W46uhxibLyntmZiLw57entrg": { + "balance": "2023.587357054", + "bytecode": [], + "datastore": [] + }, + "AU12NPdGjfPNTW38KcchGFKCMjbAQ3UrYWTCieyb4TnnPRR2V8KNX": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12NPghbRUSLbPn5xfxni1nShYJsh2DRVdsDGZ2A6gfL37K89oCD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12NQ5XMb8BHhBbbiue4LJZB7viSahdD87LZp3namw8cqwGaNwe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NQBE181h3ytABZBZo5fVAZhkdfs5H6PXwem7RT4rZMwHWzrFT": { + "balance": "2706.601636465", + "bytecode": [], + "datastore": [] + }, + "AU12NQCXXqom1h3qcDHbtcwrb3bhJbwyeKAdkPbyxPfwknsevXuEx": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12NQUBCQn6PkRzTeqi7CBwZeLyh8qeE896izvrkw3x7kjVSLawp": { + "balance": "1621.495475313", + "bytecode": [], + "datastore": [] + }, + "AU12NQnUcqXH6GLsqdUHGftM1WgMKUKn12Z9E69R9KEh6TM24dtrG": { + "balance": "798.449699744", + "bytecode": [], + "datastore": [] + }, + "AU12NRFWLLxHDExFGgJxbLedHcADgq1tQygEWJ6WpeLW5DzQV3QRu": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12NRVCfR9iyU3pYpGCKesL94GnLXi5HRKrfQH1Wohwr5n1PDNuH": { + "balance": "1452.441135830", + "bytecode": [], + "datastore": [] + }, + "AU12NRVdZz2Q3iZ9CRvr4ENQPDeHmF6qXb9tPBfTHESewGdBddCw7": { + "balance": "4684.569642466", + "bytecode": [], + "datastore": [] + }, + "AU12NRgTPJaJ8A77j4KvXeGixKqqTEw7Xamrtw5advg5jcZLVSfiM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NSTo7cTy8Lrmy6kq2KhFMvSttndGPm1s6MdGfi7ysUTcdKuPc": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12NSoGd7SfJkpPAwS9XfdVpbCppRPuJ5in9krbv5GdQJqqAHUAS": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12NT5GSeo9HLW6D5sUpX4s4WGQ3U77UGqKTmrn5gsbSZVRHZLn2": { + "balance": "1792.324268922", + "bytecode": [], + "datastore": [] + }, + "AU12NTJoL9KnTXYE18YxFww7MKpB9YYoAAUdXCc2mEHuyJaGMfBXE": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12NTMsHSeBNShSH4dmiNsvDZhD2Hi5H52zSMVHNfrTHYg85WMNP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NTUKkowut5q6FwzZMhAWSfLgmA58gLoxjkFgBAMMLrLAKCi2X": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12NTvNsD9ReiBumc2nQai9WLzeJbCmpjTm5DttPZs7wkphRisi3": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12NU5vgLGX7KS7huQhGTnXHvTgcKT8hfh2pk7VeC1CAEEfGLwFm": { + "balance": "80.338779340", + "bytecode": [], + "datastore": [] + }, + "AU12NUeSDAmRqc8FKiaarHUaAfeDJVE8dTryNqbvrzaHsHtnpUN9N": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12NUf1UcXCZhSGsBp2jComPhv4Mqj9FHKKin5aC9oVY4jEQU1Fq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NUuA53tuHRE2iRm75tBQExK4aPXzH6gvmkWui6iQTJBMLJPe4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NUvfdznWFdZZjrpWZTq4K8hkuperRhcLuM3iRZAjiHnhrunYH": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12NUyDMAEA9Wrgz3RnfLZE5Gx6ce156o2CGzmTxYvLaKNzzd2PG": { + "balance": "953.586172425", + "bytecode": [], + "datastore": [] + }, + "AU12NV5HnF73WK6HdqLfQ45946w14HtyTVxXbxRxPAiTxEBWxR6eX": { + "balance": "1329.987548615", + "bytecode": [], + "datastore": [] + }, + "AU12NVrG5ZzWSLrC1wweEwXaPkvwWF2KNLLucsCY56MV3wNQKxcoF": { + "balance": "629.193925333", + "bytecode": [], + "datastore": [] + }, + "AU12NWEeMAGmt8UjjjURJ5VrdLxk2gt8g1VczXuCPcmP9AnCBm9uZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NWKtNDs5aSFcLqwJw9jj3sBZKo6um9VFVe92SNigK31bNtdCy": { + "balance": "4452.270917275", + "bytecode": [], + "datastore": [] + }, + "AU12NXLrzkJ4EWemePBQZSSG5JcxWYheyQcC1nhcAsFznk4c65Ru7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12NXtVzPbX4zSRfwZ9ZVtV2mkbVYiEVHmLW1KJofdEikYZjUj7z": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12NYMCFhyMhJ84haBa9CJpP7s1mjztd61ncKKR6xM2Xpa8WFCLb": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU12NYWafK8yYskSqfcGoo6W87VBL9uUPsrWqyCKWFSXfpKSUuyjS": { + "balance": "253.044468755", + "bytecode": [], + "datastore": [] + }, + "AU12NYZHsZf2uvDG6EbNtCuUdnQR2MWnfgKDnv5DNStJhSKeucGEH": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU12NYqPKHCZVf4RivKr9end57i5xn44jbfvjtodmtJMvh85ZSryK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NZ5Fxrbz1PJBnyLnhdmg4xjtzc952HA9cLivnvZ6S9GnW2PsK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NZ5KXuN2MK5fMpJpzmarCTdwYjB7yoS2j3myJSzZQQfsMd2SD": { + "balance": "2260.023341111", + "bytecode": [], + "datastore": [] + }, + "AU12NZaSJ18zmi2dCGEguv1GWwdaRDsepvuXdsJSopqaDRMgXvSqz": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12NZhz7hwoTq5xXss6McAcoGoTrW5qRHHPBgZcNg491Zh2ZkVWG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NaE69MQ8CVuA6KwzccbkwFo2DBEXcbxsQKFgF2MJdBMAYAsvX": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12NaHxWnDuwy44VFvZ1tWY1tnEcgobhb96bW5jCsi8ALtApFsb7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NaKpZckVPEtgJrbq2Fj9YZbLQEgRTCcGouRrbBEmXf4eYj42C": { + "balance": "679.829615228", + "bytecode": [], + "datastore": [] + }, + "AU12NakpfunypCZv1GtTSTKBB9SoCzeqz6mgVFf1nhEaJNSF49Nc7": { + "balance": "2180.074737532", + "bytecode": [], + "datastore": [] + }, + "AU12NamaL8A1Cv138ooUG44Kj6RZCz6cwrHhjqgqe3PHfgGezh7CC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Nb1ajqDYHLY3sdTr4qBxz4DutALFMF5UpfhETrHkMN6sz8vgK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NbPq8h3APTLYEsZ7pgfmBwqqaLwiGevHKat77G9eYjnDFvY9V": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12NbgPhBWNmhH9TsqgeSXjytcTSHuC29K9NTArNNRatTpjKa342": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Nbnyd9yutWyvza3Pbdm1HmMvSWJ3pd2C9xF7bWMpVMzLbJrHK": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12NcR5uyDrm1AZGSCyHCudkJ69tyteXSm6au4L1ZgUx6von7ct2": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12NcVqGFLCaRB2GFo9LSq5mGRZYZmSVPdvArnFvzcPnvX6tr27h": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NcnmAt4L6gVHVpGaFBKujL3ZCq6SbryaU1YQrtx6w4EQXih8g": { + "balance": "3735.457514646", + "bytecode": [], + "datastore": [] + }, + "AU12Nd6ipcXphS8GNUKvvmypSSSHngExcbq6SqL36bgNgN1hhVN5T": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12NdN8mTyRY9ecfPS2PZDfCx6EuMjVjoEY4J2gVynQUFkqMCJbv": { + "balance": "2149.958381169", + "bytecode": [], + "datastore": [] + }, + "AU12NdaSNHfNPNL69R77QzYwMzXzRhUSLtdLKUW3J7kScZGT3TpYd": { + "balance": "3470.261017751", + "bytecode": [], + "datastore": [] + }, + "AU12NeSJ9gpvmLYbo56iKDhGnomitiarfCCzbzKmAJGa3u4w3aCbD": { + "balance": "1160.702053743", + "bytecode": [], + "datastore": [] + }, + "AU12NegYFFNBRSHaPFGmRSqhautaTiRte9gruYRbHjPNfmpm2CkJZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12NenLauKmcN5pEcnzscgmAs1yrhmNz5wH2FgHfvEH21H5a6r69": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12NfdBkJZMxQy8LmPfs6JTZL1ZZhanmz5jA4rw7VzatsE11gMPY": { + "balance": "3422.948280695", + "bytecode": [], + "datastore": [] + }, + "AU12NfxBMMCyVx2e14S5YJTyNYtjJY7HNchsnMQ4xUhkmboJicqrV": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12Ng6ZTwMxnDjp8xpYSntxzeSCuw21tJzb2MNcWHwwUUG1fuuZc": { + "balance": "4515.082501756", + "bytecode": [], + "datastore": [] + }, + "AU12Nh35Mao6NZqwPiP7FZwYeJAyqmtf1g4DKoJyWx29LYbFF3m9R": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12NhJCWF9VU3WUsofVZ6yyCZkCUuWk43VTavFyFWr5FpFuCffR4": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12NhMNQosC9N8hpFfUxMrj8dX7mkozudcCNB5jLx7pNcGYFtxgh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NhhbADdb8eV17v9saxuRetuWe54PbHh7CPmgwgjrJrbmrcnYK": { + "balance": "1251.868387744", + "bytecode": [], + "datastore": [] + }, + "AU12Nhus5jyVue6zdwDmoZFUsG1TwVXLMQ9MFRdX4JtAWZ7XCgwZ8": { + "balance": "3173.556296435", + "bytecode": [], + "datastore": [] + }, + "AU12NiDP3XTzknmYbtDrV1Qns4QAT3t7SVBNheVk2HT7JHfQvMHcs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NjDXapPzCnbSAen9f2WBCTnvfiZyAfAp4XygYqLTHtrgKhhBx": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12NkeJyfL88mWKfRyPG23tG2SzrWxvepj5v7kUnBuZXfQVJoJtt": { + "balance": "4276.374918205", + "bytecode": [], + "datastore": [] + }, + "AU12NkhddpP69VpahUvY8sJKSidqRpvW2qrdeL58cFZJJf7ZEs3Xp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NkokwjGvrkDT9R6qaPCwmwKTByG6ZnmaEbhfCkkc2Wv1ULaJW": { + "balance": "1245.208607920", + "bytecode": [], + "datastore": [] + }, + "AU12NmWk4JnPg69mEdUQ1jZdoSXMMgSPM92VAHsCthA3q6zgMGa1x": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12NmXf73cDziDkDN4EV5aR3pzTVzTTLwLie1JRwkMWCaW9UmYtN": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12NmsVZTDPmZTwH1YwydqQWNdSva4fMNEj6QMEF6H8bNXW21aiH": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12Nmyerm4PBtiZLY71sprC9GS5tLJtEEt9sCPRMVio9ax15RH1A": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU12NnFLrkyiUx3ETXkeXb3CCUVdqUBJgFutzGZdqEwjs5Jr9kPsU": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12NnwQLeKQV5ATS1UESNnydNobF3MzSLqio8GdsF3wFaJFeHL2r": { + "balance": "878.999639404", + "bytecode": [], + "datastore": [] + }, + "AU12No73CRLCg5fFFbwpKejqD626WxEtvcH35qfRcKNLn48THsFgc": { + "balance": "4447.922550646", + "bytecode": [], + "datastore": [] + }, + "AU12NoAfouAhLzsBc6uZ6hNKoeEZSA6JVDAXuuwK6DGiLUyEe4B6a": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NoKhB3EdZvQAcAjK8uR3KMUU7C9m8L8bMNZMUSokQ1WXbxy8s": { + "balance": "1479.919960834", + "bytecode": [], + "datastore": [] + }, + "AU12Now1DASBixpEgLT5WAbGSQe7hee6B8yKvRdkqnL6dnwC6CWgE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Np2oWLZC5LwCqNGHC9L3snRukiZM6ERvpcJHo5ayXRu9UGmD2": { + "balance": "722.815057394", + "bytecode": [], + "datastore": [] + }, + "AU12Np3BEtxpn4wsbwdT3grhmUiZwh1VScryictAiuGhiXUYrzGX8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NpPTFMkxuTLNiCtW17i4npFnfmkXic2PsbGyQipQA6dzU8J43": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12Nq3pae8UGiFjVnBdEjBiqu67qCZdmu8PNwY81nNNZudvjj5TB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Nq45Ni9jigK2YJ2FDtUHpzL3mcQjA5LEJhZacG6B5Aoejrpu5": { + "balance": "1260.613627540", + "bytecode": [], + "datastore": [] + }, + "AU12NqzQ9VST1yiXpxbXKmE6iCezemswx1hiSumS1nu5G3rhxDZQk": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12NrCx9ct7eRXmvBSqpYF93KibLpFzXghGRp7w9zxsTBxkn1Pqv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NrQAi8a1sUrLdQD5hATGhRHsFqfAheoMQSFqCMTF8zkFsSMr1": { + "balance": "1533.378533501", + "bytecode": [], + "datastore": [] + }, + "AU12NrSeNZpg9PHQ5zwbYd7qGdVPcyFwM5VuX2n9ufqjy6T33oCrk": { + "balance": "744.416570642", + "bytecode": [], + "datastore": [] + }, + "AU12Nrn8U2BTGgdjw6CYRFk51HpqdQWtskiTrqZEktc2iEArb85jE": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12NrsrvTMwJCX1WMY6qJVa1jfePguzZDxD6xBc5HLdbjKDsDkTW": { + "balance": "61410.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12NsAi8SQQt6t4MsdQu8jPRNvXFvcGuZjMSwCvPHRMwx7rWwGhr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NtFLNvZANH8MUzA8TzYFUzSmpfvNXRHHXLCA5efvPq3Lxx3F1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12NtQua2vsEYEHCAX8H5Np1D2bTEECDczV4tQWru4bkbBehKMJu": { + "balance": "3196.135010618", + "bytecode": [], + "datastore": [] + }, + "AU12NtUb8RERgVkJ22goRFhWHhNSSmjuVCbWhRNVmBptWf1svCCko": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12NtXwDJpFam397pnidbTGFTjJRowS61g3QAwL7TLFWca2RyqjN": { + "balance": "859.728629688", + "bytecode": [], + "datastore": [] + }, + "AU12Ntxdb3atW13MzKzthfm5okTHtfjFeWLXDw1pckqYph6f4ozHD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Nu57sfqDM7yWemYeTD8GN2y7jsfARUcyRExDWdGsP7TPCVgdT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12NuCxEXbCrGARV57MwZ3jjSrF99k2wja3T1HYeDab3cwywRXyS": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12Nv41TFxFkbAcsauZzKkBCXChANPfNn1TvNWxBsy8XKeqnSr8L": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NvTjjvHW8tsuzwV5oNKEgft9fy8LDciXx3fBXNvknM7zDFS9m": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12NvdBoiZWyBqFXeETDegsd6vupmmF6yTHwnrqrDhcBGibZJeEC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Nw7Pzb1VEyYv23YNBXd5k4AVukkXn5CtEQXYmzGNxhteay7fB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NwDsfUNJ3eXo7mbSAj4tyEc8S3NYSUftk3x6Vspy4J4EoF2VR": { + "balance": "886.882502135", + "bytecode": [], + "datastore": [] + }, + "AU12NwK87vGgjKNcg5q2Dvhj7pkHbS5TrL2jjJbTvDgYMaonnWf6E": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12NwUsyghYjus6Necgq1J9QQsPG3uGrh45etuiiV18HsfB6G1Kb": { + "balance": "3289.384234540", + "bytecode": [], + "datastore": [] + }, + "AU12NwfkYtxXsXWJRsXgUfz94G4wmqhiXQR5TtMHaruPoZfzmRwUa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12NwhRFtWhSCafBqG6VqXR4TBqmqTDi3MtYWnbhffmVyJG8Ry1C": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12NwitqiFzPymaN6GuPmKm7mzLKKNNvZ4W8qsXecpWywLEqWTVr": { + "balance": "1962.976489559", + "bytecode": [], + "datastore": [] + }, + "AU12NxVnY9dAPh6jzTrgSVbCGojNBGzdgaYF9GwG4jUVTyPBabNys": { + "balance": "2678.899378349", + "bytecode": [], + "datastore": [] + }, + "AU12NxqaR2hVSraTzgLx87xwMMbELGvXeK3kxrK2vVJCzVUnFmUfh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NyGdKf5sW7zoKduYk9UyuN4mGXeEcquVY41ZkD3CqDMPADG8": { + "balance": "3400.533550975", + "bytecode": [], + "datastore": [] + }, + "AU12Nyhe7cUL44NXgMtqUstSjWqm4dGCbV7Kv82gAC7TtNwJFkw5A": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12NykCXNocE59Dfc32hvG9edJGxTxe44txWe1NNsBQ823vBp7dW": { + "balance": "1046.534814214", + "bytecode": [], + "datastore": [] + }, + "AU12NysMBrWUnfsouPdLAwhPsUP1egLQ9XPXXdn7XYVMK2SdGZES3": { + "balance": "102761.977369486", + "bytecode": [], + "datastore": [] + }, + "AU12NzRb7UtUrMXBf4x6B2APxcgjUJ4SxDnxwJgHCYqetdw2thvGW": { + "balance": "1694.651372158", + "bytecode": [], + "datastore": [] + }, + "AU12NzYbMqyh2TLaXu5XvjjAJbgguuaqrM7UoaMNarjha3yVSQkXD": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12NzsWGfRYyn1wm9QdXCUnfiA6E89no9FZEf5Kd8G8wffem1jxZ": { + "balance": "844.730911278", + "bytecode": [], + "datastore": [] + }, + "AU12P17PoVkARp4z729cr6MaZgngX6MYjauLqwcPDk82iRYcaJkmj": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12P1RhGNFwv7w93qoajNmXrjFW3er9FHf8yevFchQjQva595tAC": { + "balance": "3292.139821719", + "bytecode": [], + "datastore": [] + }, + "AU12P1T5XVZcR3AfouBvkc7BhUEzhgonBhgZQGBxXsWZoGPFbrP9d": { + "balance": "691.547985207", + "bytecode": [], + "datastore": [] + }, + "AU12P1tPEBw9cWGnjGFHCjsf6SobcX8FGoGgbD4RFbipaQYUwjJVP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12P2RcxhMhLmpmqDSy1pBb7f2qsSm9735HLAzkZFfAj5X3ZroWL": { + "balance": "1835.097357896", + "bytecode": [], + "datastore": [] + }, + "AU12P2X7yXXju7snbJMwz2bAZMrdFXKSUqnJXHVmM1M5myVpMDLWr": { + "balance": "605.769620634", + "bytecode": [], + "datastore": [] + }, + "AU12P2sLsjKJceBjN3LSCvJK8X2n9VDPZ88L5frfuNq5h3jq5Z8bJ": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12P2tiqzPnvp4wzjWd1CmjnHsNA5AdeAfHhSmcfGcKcnruK4EKa": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU12P32TXgCRHJyc3u9eiWPzsKRcFmj65EFzHEEe3xqcvJE7rFsHc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12P3EQpqVE52id5YrgD8oG2VSM6Y4FxjziHDM8PoU7vXgSjq5aJ": { + "balance": "5431.975190123", + "bytecode": [], + "datastore": [] + }, + "AU12P3Gsa3vSqs6x8pbZcnRMehTFSsyho4KKRLcqDykwFsxSNjaDv": { + "balance": "2324.108133697", + "bytecode": [], + "datastore": [] + }, + "AU12P3HgWt71n8sxJKXcNMBpzYobfxi53uoELXTBDvwu9tyW9q6kJ": { + "balance": "6.690299376", + "bytecode": [], + "datastore": [] + }, + "AU12P3PQTjMcow99pTQy3iQ6b4y9pA3uys3uAzpsiDV64nkfywPqj": { + "balance": "3090.120079240", + "bytecode": [], + "datastore": [] + }, + "AU12P3RZcBVWG5kgMhZkCZs4XQPjLZMoFvEkhXDw4t8g1ymv7czsh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12P3iH5kh1xXXXG25nnYp6XQffN39N6HsjNy4Aj5Ejc6qSci1ie": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12P3xUW6mG9DjRAa7J3VcnzWFup3fdNyBZS3fv5G62d4L41KtDw": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12P4FMy5pKTbFhKGEmSDbtdAdMJe5MfMGdnjhp6akptiuhC9Raj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12P4SihU8TBJoy4hfHGRH3ZWrncqxP4Fu6wnMZ8Gwn8wEwJXUbQ": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12P5Zic8qrwipndUjepLcVjokC5ALTvZx7stKNQf96k4e1Ub2fG": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12P5ciZFkXE4kMmNmxBJEx75LDMvYFNAybCiWZKVF62Z8nQAZAR": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12P5qhnkkN2QpL4TTtfNX8VaTUKMEi2JkofbU4U26rUG8983SVP": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12P5sjLUXeYPULXJkHGFEmsShkGqCSFhnBgPe8ANQc95psEoHRw": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12P61U9STFN99jN6Bkw1jWMJEh5hHk8H73FDgcM7vpuHdhFtURe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12P64gFHpKadf7ptcAkt5yd5ekb4XXunLqZNUsRwZpCyD44yFNy": { + "balance": "228.536933479", + "bytecode": [], + "datastore": [] + }, + "AU12P65hx5K18XQ1gayvePu8yE3degApifeuBCyxh2XLS26dpYphJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12P67pjpLvSm3zBkzPZV8TU47i2N9cDMBTjW2QNdG2ZinXjhTB": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12P6bV98ZV2qJ7s51swFgfiDdsRKb6GAJ9KBijUe72EKLv7UoLD": { + "balance": "882.146434965", + "bytecode": [], + "datastore": [] + }, + "AU12P7BMktsNeukafaUTxzf3mVNGfZZSCdteQAY7E1Kjt1yk3d7cj": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12P7GscdBfGh1nNG2RQUD5CEWQfdSTP8nABWGEi7aCTyx26k47v": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12P7U9Ubr86PH3foNXs6dQY39Kt2ppqe9KrzyyGjDhcdzgLD56N": { + "balance": "5259.460791455", + "bytecode": [], + "datastore": [] + }, + "AU12P7b3TY7XeVpkcomKnaoHALCmhvfLDYQy1CBgC1dg4wKc9BvVo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12P7kEvgXtiHpoZmFUEcLMqr2nwigNA3iBUBxeR16X9ppVwNiqB": { + "balance": "763.897447134", + "bytecode": [], + "datastore": [] + }, + "AU12P7mfHAc7eMDV93AKsFfRx5urwtyem267MJaiP6DeDPhL4q6jc": { + "balance": "1669.841834035", + "bytecode": [], + "datastore": [] + }, + "AU12P7yVfiU2GTfgZqZnpmmwd3JxV8f623sskBNLK1uJfYnLMj7Gs": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12P8Z1DxeGFC1G79ipDpmkTF1ABxsLn1Piy67JPyqbbd1TGomzm": { + "balance": "1317.331908361", + "bytecode": [], + "datastore": [] + }, + "AU12P93DareqLsHMqyX6PNiuNdfHK79srZrJzrbq4paomPys6sjt4": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12P9iTP2Pg8mwQCQdwYd9xjykKPtxaJqrmYS8bQSv1GwEJdrUXr": { + "balance": "1338.597939298", + "bytecode": [], + "datastore": [] + }, + "AU12P9kyvmFqeVUZfuCWieS14zmebR92pfECRG7vbJQeYtJyZLULY": { + "balance": "1047.367257334", + "bytecode": [], + "datastore": [] + }, + "AU12PA45G7odk9XWtvBpr84NyMTWpPyWLx6Ni4WeQXG6KzR6d7qa7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12PA6xzA5N2Np3rGsognPFhRxLy1XzE9T8UaFnpq43VFBv4Dkek": { + "balance": "274.210550537", + "bytecode": [], + "datastore": [] + }, + "AU12PB5LNi6RhCtfZfBm4ahJD2XyXyFuZTukkuzZ6TNnzyf2MGCTe": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12PBQsxkW7JyXpDd1mmo8nRNeb2GdLyzHG2W1Gvxyrfm7fksniJ": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12PBVVCcxPPmozLaeoBMmKLtva5SA7xaC6dxAHa3gah6p1xhduq": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12PBj96zFTGQah2ERfSn6qre19QEKJ5U6KrUmMmAQGKUJCBLZYj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PCBVrTBSRTABiDsZj576Rpd4cYKGNCMKWZ1x8TjGFUKJwVXQv": { + "balance": "1409.491039451", + "bytecode": [], + "datastore": [] + }, + "AU12PCKsxEFb6HPqFDh49SgHHa7ke7ffa5tNxExSh5eiLsQciKabW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12PCL63DsuZoz3KaPTmEfUus6oWNQKkaGzYAoXdiqK2TCkWm8NM": { + "balance": "559.239336672", + "bytecode": [], + "datastore": [] + }, + "AU12PCpb2o8Y4Lmt8DsCTKHTFu9hFhPWQGpcqrEm8f3VRhK2C5eFH": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12PDBPBW27fACPUBzq6AotUqsBXYQcQeCXTT6KWGcT315MyFEuU": { + "balance": "4577.880580042", + "bytecode": [], + "datastore": [] + }, + "AU12PDjDJQa6i51VDWHEKrnkRpRyPUxVsgWLBVpQy6YQbGqK2K3Dr": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12PEbzNofbSNTcbTy8HvgSAdYDXUQTNDwpxqiKRrRR2q5TZKUMc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12PFScwjXp6qyWEDVjUfpg1fa5tYcAUbLosvudu84xz7K6ybBsR": { + "balance": "2905.984151923", + "bytecode": [], + "datastore": [] + }, + "AU12PFungss8LPvwp16iZi9zYJuQs12nAuFzYDELjiKgw9Lb8wF59": { + "balance": "4786.808179687", + "bytecode": [], + "datastore": [] + }, + "AU12PG9smRSZDxs3zhvAEwKbmvJxM2y2YqfsevmoZ6SJ9S2WCkb14": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12PGBLgc4UtkhKPqdRJNn2vUFwm2HmYRRivNwhDSmqmdfX1qqzW": { + "balance": "701.785359720", + "bytecode": [], + "datastore": [] + }, + "AU12PGcgX1ao3KgGuqJ9aoZ5DLvSCZchoS89LBcaTDAJHgy9Cz6KC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12PGdq3zEzup8sJ6P25dH1n49BrTHX3gwiAKmtbR6DzD53NfejD": { + "balance": "2387.806019770", + "bytecode": [], + "datastore": [] + }, + "AU12PGq3ex3HyKuzMY4L6HCLmtjc4KDfs9ehbdCNFRAg6qBWSZdcB": { + "balance": "3435.322708861", + "bytecode": [], + "datastore": [] + }, + "AU12PH1XHq8Ut2vhbRHS3f7JUV4wYmVPHz2pkvHPnATq79T6Kcv5F": { + "balance": "1527.128601486", + "bytecode": [], + "datastore": [] + }, + "AU12PHCNYHVoaDYYK5zt5KF34EEiCofK5xL3BuVuZeEjrSXmaozqU": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12PHkMopB8sVh9jhsEB14A78VJfDjN7K5AdmXUb6DJDtvfpFmiH": { + "balance": "3649.988652999", + "bytecode": [], + "datastore": [] + }, + "AU12PHmmphyEzTV9t3TXS7Z5XBf16TrQwXMexe7R6hJBWZSfucVLK": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12PHqEjR52rySyfx5Pk1aKteMm1PpzvX3o7FzYV9NoZodWUX84U": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PKFXTFCR58dwWmg2QzY9vB3btfmBeKCmxRRieMhjAfa7Qnrju": { + "balance": "4539.250828961", + "bytecode": [], + "datastore": [] + }, + "AU12PKzwENukgDywUZBGqWgsv3ooktJSxD8HByLqCUSoWqUEjEtSS": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12PL9DZq3q1apKVwNwpdgnWVK2kaaRZJUW68ctqvw7xy6occA9j": { + "balance": "1656.506640713", + "bytecode": [], + "datastore": [] + }, + "AU12PLHf6zN79vWFeoryP8EXY2nmQeJpzSBoLXtSi8WwG8V65LPBB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PMBUUMtwfH9gFMwWjqCbHXvfboS7gewica7pisWfHMCyUWFcF": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12PMTeKFWN2LcHhmsoJqxQxgEoMZjqp8u1WZDxNfreaEkJA2ZD4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PMWT2nvEiuspAWr18coif4hbsfD9Q1eLLGy1JwKhMro9DjgUq": { + "balance": "1008.107372406", + "bytecode": [], + "datastore": [] + }, + "AU12PMavEgr427UGexeuhUsW1a3VJZWJX5J5qyTLucnWvdawH462H": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12PMcsTGsjGT4QGZkYM6GRnwDywMmrZuycBx8CJHuz8McMcuism": { + "balance": "1623.576139429", + "bytecode": [], + "datastore": [] + }, + "AU12PN5W2sVii5RpAbakSWX22yxEhXmAUHupABcqxugEiHJfdXG6j": { + "balance": "1596.685259052", + "bytecode": [], + "datastore": [] + }, + "AU12PNsEQt8Qx8k8covpv3jvZHD9k8z5c2VqnmNVfVm8TheuqcfMV": { + "balance": "1741.427191627", + "bytecode": [], + "datastore": [] + }, + "AU12PP4DhnFwfvvYmt9D3xRbXPwcJDqw638K7dpAt1CJWYA3CrfCQ": { + "balance": "37.186125846", + "bytecode": [], + "datastore": [] + }, + "AU12PP5eZ7nPreebhsZRX1xqz9hFvtcLu5eg24oVzNnczt85emL3e": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PP9utHbuWwBDQaZMWJNvWYPJM6o9xp5h95y91uTcb2E8CrM3R": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PQF1oe7u5K5WQ4rnyiAspW2D5tp97f158J4bPQSeLqGeTHodu": { + "balance": "5965.975038870", + "bytecode": [], + "datastore": [] + }, + "AU12PQTPzpdLKw6arkv1TkUWNmtCfh6JSDP2ff57ZhbDAPWa6hvAD": { + "balance": "40.419699977", + "bytecode": [], + "datastore": [] + }, + "AU12PQkoyjMVhckKjNVjb2t1kHTCF67PGW7XjaC7ENW52jofb16nM": { + "balance": "553.708684270", + "bytecode": [], + "datastore": [] + }, + "AU12PQrtJbK4iRYrNakDXBnobyE3PEWcy5LYaNyMEfZSCAa6ZKEF8": { + "balance": "2209.518107260", + "bytecode": [], + "datastore": [] + }, + "AU12PRHEiNK6MEbTPc7mA8XMBFJtkp9Wy8a88FFGDgMSotyV36Rnd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PRWWGvTs6jZURiWkJmnBoKZ8NFnMmmL5d1RmskvT8pHX4P2WN": { + "balance": "2180.220118216", + "bytecode": [], + "datastore": [] + }, + "AU12PRnozYivocB3Xr2i57RbsRYU3zui9TGbs8LNABA6vU4ic7Vq9": { + "balance": "15.396722342", + "bytecode": [], + "datastore": [] + }, + "AU12PRr7YvsAYquZBPa6pE9Fg6mFuv7Nja5YKuea91TVC2gxqnvXx": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12PSPVJpemSCatFLSMUz4dive3SEgVuEzq7Q3Htjtqtg2SJcTeD": { + "balance": "48.809197716", + "bytecode": [], + "datastore": [] + }, + "AU12PSdnpZwpQyVmH2UYqJ2EC5A4PEnhRaqJxndxBLECLoWBmYxG5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PSkspCKm8SVbRCQRXseH97oVE6E8Munif93e7JCVZbJJi6nZk": { + "balance": "2063.389639715", + "bytecode": [], + "datastore": [] + }, + "AU12PStFRCZf9FTYYKDkFmDjPakVGXTUnKRnLVmhmo1Zc4uvJnzsQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PTANxyuxmPL2BrfufX1TXgQZAGBMkdPCnJJSTfsCB5aN1zQWn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12PTDrBBCwMLJ54Pos1PZFt39mHE9U1AioHGg2wLrDoz9kcSAKs": { + "balance": "689.513387398", + "bytecode": [], + "datastore": [] + }, + "AU12PTTDZCErfT4uudkmbV3qRmYrY4uW9CBHLNzhBEPRBvaA5vCtt": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12PTZijuKmH8sz8U4cjcutfgxZKXqBRwwZaN1eGjpLAi97oUhQo": { + "balance": "3827.551846618", + "bytecode": [], + "datastore": [] + }, + "AU12PU1rnKEwUHThTUJeQGmeAyLXCGU2DfVZA3usB9J6Z5VDgWDby": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PUnkf2uBAa8s7bquTNS4zN53m7ij9r3XypZAnGvXZXwW6CAjg": { + "balance": "625.662485212", + "bytecode": [], + "datastore": [] + }, + "AU12PV1uHU7pw875NhPNyZpUJPEa415fNo5peNcx3ptgNHbSmFgbA": { + "balance": "1286.553042673", + "bytecode": [], + "datastore": [] + }, + "AU12PVCXGaCoV1V9Ct9cXPQ8XKvn3kjsJ3Na1ZY2BDJqRtnpwB1AK": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU12PVaEDW8K7JbWYeJCeRgVxYojAxcNyoi6eg81kAp1fnwUcC78": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12PVmQZYqKyA119bamaUUGBojfVH7ND2conkS2uEX9nf4f667ef": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PW1duGYk69aJ2xvw7WTQJ2LkgGhvbpyQuAMBxHMiYfoDS4EKu": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12PW4AJrvUmRxnFUntc76jrMS5kmWHErZTz2yfmmLzWMNUKS4gB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12PWm1dkvVBgLhUHHBXFPrZ54ACREKSQ9ebjM5MBRZXEZFPfyuD": { + "balance": "5031.036010017", + "bytecode": [], + "datastore": [] + }, + "AU12PWq6pNPqbQHSRM4ee4hWeBeHhph8K4jf9tf5TmRXRtiN45zda": { + "balance": "1140.011553098", + "bytecode": [], + "datastore": [] + }, + "AU12PXDiKisEXknpEDd3SH3wCauv1ECTDoUwNEUHz14GFVJceTmRD": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12PXESHZgzVxomqky9Ca9d9PTyyM7Kr67bKkL2naezp48A4uUy4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PXJEvBEw2DJ6gwVxseMN6YmrQCPmgDqJ3JCeU44zyDYwZm8p1": { + "balance": "1815.893212933", + "bytecode": [], + "datastore": [] + }, + "AU12PXMCxTk1VnEEavNNsJNqi6U3AuR6fvD1L1R9Qug9Hkm5jyMjf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PXx2rY7KSB5xfRgizdp4432g664a356yMNv41ibmfqnyZztj8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PYAGW7wZzY7ivgVDAUnTLrUpzE858iG6tficBWpDmPYXW7dS7": { + "balance": "1168.563154457", + "bytecode": [], + "datastore": [] + }, + "AU12PYL2riEV5LiTkU1AX37mCe5qocHjeYYiyPdu9wJFA96P7y9NZ": { + "balance": "1203.309427546", + "bytecode": [], + "datastore": [] + }, + "AU12PYfWsasFyMNic3D5xmw4rwoN5xiAvMa9ri58Cu57c97aCYDFq": { + "balance": "3624.717619394", + "bytecode": [], + "datastore": [] + }, + "AU12PYo3xrvupVW59pqFMAX6NKKzd1rpEpiaaqDvi7zq4YycqPPEf": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12PZLrRuQcAmkMk7c1AYFsxA6duf163m7eq6vZzn6QSW6DgL57n": { + "balance": "1491.952904590", + "bytecode": [], + "datastore": [] + }, + "AU12PZaf57TUFWu9m56M6jKaqLru4p8MsQoECjd6ZeVJCgBnCLwS7": { + "balance": "3846.226820007", + "bytecode": [], + "datastore": [] + }, + "AU12PaVEqSx3wgJwGjyNRWfPy9gVgzpESK2FowrQZWXLRmrgC99tn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Par2oPHPaGZpYM9tPGFu9yJCfRscess6WvBdhCM7u7brcJN67": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU12PawSPkYYKo64EByX1XshJecmUoMWo3J7nKHbBhr2SNqZzY1JH": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Pb5UnBDBkemFD85VS14u5yYNgngHUJXPJwJw3vbBBBjbfbrAz": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12Pb9p3ZqtWGCE7trcKf9WGyBSnQjVLGKYcAy4ghXsW5DewZGvW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PbcYr2xNDjzCBwCyZ6zbjqfqUXoriXd9dnBVADL1BUL9wi1X6": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12PcQyJDwzjE2TqwZNw2tgrvDMrKLvhrDZnBzqoLhN7J4GygVfZ": { + "balance": "733.171439945", + "bytecode": [], + "datastore": [] + }, + "AU12PcYtth56jRrfnX1ypmHnuSNkRPJbiJcaokc88PdLypE5JM19N": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Pci1U3L1QKJ433GDLeBmKCZT5JQiLbPPk4pYxfdgkiPtxr8kN": { + "balance": "583.850825737", + "bytecode": [], + "datastore": [] + }, + "AU12PcihpScHuD9b7BDqWpsY58ratUmrB94N4iFoyFNYLMfTSLYWX": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12PckaTJ6WhnQUMtJmfWcia6UviYsKW1dQbU2FPFsyXmyVHkGGv": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12PcsnAsqGHRhtWn4yeC5jwLeboVQVSnCTskBvyGtyyooJU9o8s": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12Pcznf12zg44Nt1ALMsS24Pf57W9QGAnzSxGmgwmpPvU33TFxG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Pd8A2mBye9QGuyjcf481TxKYfjG4xFsGdDhPGBaE3H55snys3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12PdLoVoAjNgUSP1QG4You49wspLraSvLVZQ1d6x77q1TYeupSr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PdPYnbmSbhA8kefMWpzXuJBc7gWKaJvmcJAAkEHrgUd4VYbaJ": { + "balance": "4101.662399518", + "bytecode": [], + "datastore": [] + }, + "AU12Pec24LLjhzESPyDMPMwd9xUtXLqQt8LMWSFJsY9Yv8b5BLf1V": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PetLnc69J2PENWgkwpc6DgjnfKviihbWSi49iVAhw1eCFGMGd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Pfb7WLpDafjwtYwdcEWyZuTVwMpWmjhBuBYJXFAeoRQSwbzuQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Pfz2ySAJebz39UBZizmcZ6TurUFPTF2iXp67QVWSsx65hwe9M": { + "balance": "5188.668952792", + "bytecode": [], + "datastore": [] + }, + "AU12Pg3M3rqP5e6K6ybp2XMSXQKFVg9Xe5XhBeSGKWeMrcANk16Tg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PgRk4QLWL4jHcqpNexvsu8fW6yhiGe4276Pvx3c15VRe3SHWx": { + "balance": "1464.983306794", + "bytecode": [], + "datastore": [] + }, + "AU12PgjrepSLR2MhffiMPojqYs3Y9UEiypW1VuxCZqWCNTTXbHHHo": { + "balance": "4346.051981828", + "bytecode": [], + "datastore": [] + }, + "AU12PhE48CRfLuVjSBto4p9SbWhJ6vofCzanvPajNBUfavmMEtggz": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12PhaN74ynkCQHrshjjzoTXU4up2HZE8CvWvjawe6rZjZMKvNto": { + "balance": "970.694807471", + "bytecode": [], + "datastore": [] + }, + "AU12PhmqkfWgsL2JSKk8Sf9ZpJhu5tAbqVvMC9XEFsXCY75oAYyVi": { + "balance": "1149.521209383", + "bytecode": [], + "datastore": [] + }, + "AU12PhsQS8fx72f5vFwGQaemEZzbDjPF7qjkarYw8G2fMzAjJYCM4": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12PhztWH5oJheGnZuiV4KXE8kpGjhHFDrZjGQBtr7N5uioZJnVw": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12Pi4cstjm7g57ubkxw2La6Q9Za4q61R7GHKwE7jJbUzrfShpBh": { + "balance": "4453.193002261", + "bytecode": [], + "datastore": [] + }, + "AU12Pi6RgFs7d6GJtAza9KykYiSQ6QGVLrPW9F1DPusjK7Yna7zke": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12Pi8jCnwRo7PxHkci2ZWRPtj3ru16hFjmdAmjbfALeSgvX4EFv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12PiEndLmfGdVqUQYqceFYLHteMNzZfVRbgz7nEYvwsxEXHqPcr": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12PiQjxkBg94EUq1mSkBPhUxNf4oymbyFpYpNHBKhW965oU57ht": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12PigKx2ZzNEABkLotMv4tKHQrNduZ8iPrg1xhikrZqjxaQrMwD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PirxgRN5SmRbZHJVus1WhWq496Mu39381WTfL1bmgTx7WyMPK": { + "balance": "6696.115696067", + "bytecode": [], + "datastore": [] + }, + "AU12PiyLMSSJwqJERiy2tHuFJ8XADdDpGTWnur36a2ELc2NG39pbi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Pj7Mwv3n6gEaTwyAVDzvawCBx7nutzuhgn2BFoAcAe16p2tbE": { + "balance": "300000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Pj85BpvLBjXct44CsEwD2GEALnVfYTwDCXWQ615rouzSRSeT2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12PjAHStJgLwGRmTz6yJa1mYy2FjF9v2ewrP4GL344GAHpq7avF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12PjHbpkbKD8ivtwdqBHF5BzHUYajv3fnwaebjxQZujyN6gDKNE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PjPMpCKZ9X4iG6czF52PpDkqsH1FNKhgx5tmmBZPqXXR9ntUT": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12PjhHhhWfUj9wK871yGMpWH17xKTp2zRhMPgPuhKPoQc8EhMSW": { + "balance": "1525.716234184", + "bytecode": [], + "datastore": [] + }, + "AU12Pjj9RoTjbvZbniiuL4pN3gDNGEtHDEkuFbmg5ATF2TQ3sugjx": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12PkA3ZezbzsLwCuLeyvuFbJG69y6pdS4VwNu5t8Q8cARU9SRnH": { + "balance": "5000.440643139", + "bytecode": [], + "datastore": [] + }, + "AU12PkAKPKnkmP1yexxxiFpcrBSDwo3ZkHWSgtpij168idXfGU6aA": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12PkUng8h8ZF9i8HiqjU5QYL1PDDxmxiqz3cERgLUBgKLvvka6B": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12PkWRUSztzTFAkCE6VPxLY8nukFSXmXcZRGHvAmq5jaieKR5rm": { + "balance": "2654.424206706", + "bytecode": [], + "datastore": [] + }, + "AU12PkdEcTBhGKT87ux2j45G1fWj8yVDJ4vyvfGjzFXH8jEHgeY3d": { + "balance": "2924.385931814", + "bytecode": [], + "datastore": [] + }, + "AU12Pkqh3nZJ3fDxYx7YL8c5XPAPFJFiEUG8fBKphi88gwyrvx3vh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12PkxucpFzsT3XxJQaT6Pz9ahWYjrtzJiebc3VNrJxvp6Mb2dgC": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12PmindYEJioeVq7uqXas3DhBwdMemzeDjVNJUnPZjqxC8pJuj8": { + "balance": "704.792606987", + "bytecode": [], + "datastore": [] + }, + "AU12PoPctdSmZTCaHy471DZ9NpvQd89sdLN2Qb9YWfcSmkaPeAxdJ": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12Pof3N6jskyUmmSbw8jxPdRJGDzRMUMu8gfFEAjSrtQK4uWFEi": { + "balance": "1471.496250251", + "bytecode": [], + "datastore": [] + }, + "AU12Pp54hFYCZzzZZ5S7HGJmMo4E1jtwXcdiaCuoGLfGTEhFByrjP": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12PpBfwN7EYM9iCcy2MrFt1gfhLzPj5oRSbQfwsmKy2hSV1wyBs": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12PpGpspdzMibX3N8PTEHEb7iGb3KLVRMxjKFcpUtWk2mYnky9C": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PpQnC1EaCpD3tPDHZNfR6xXY2ykKeaMAvkFmHrBdECbvaGUkE": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12PpeuCzG6PSD8Vv8AqFpcoeScM9JBAzSdQVLyuyW7GECA21BWz": { + "balance": "1329.715954971", + "bytecode": [], + "datastore": [] + }, + "AU12PqqfHkduCrbtDnDTBANeU7WwdxnVrHcrERD82DtZA3U2vHReE": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU12PrBbaeJ7biNxHhp5nAbqwcRwGe579kyCFwtL4zz3Go7wEkV3H": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12PrNpqKeAdDzavak8QEBc4C4iY38wrmET5bRGptxF9j2YrJ5kG": { + "balance": "995.969540252", + "bytecode": [], + "datastore": [] + }, + "AU12PrUFZhwQGY7Hy4qDRKCDFcuvUT9Vmox8NEcYf36k7NCy26w6m": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ProgRKCH2B7nXJckWKyD6DHnB4muUvRYcwfzk9kZq3UQaXqky": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12PrseJdLdGEyvpQB2pWeDkRm1hkKRjxHGiBoaJhxpLpE786KBH": { + "balance": "1353.190387012", + "bytecode": [], + "datastore": [] + }, + "AU12PruV3RuwdEEp7ese5NPLcyvGkpWRNXrwnSachBfw4yBJ8PX1Y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Ps86dZsLzDAeV16eSVdN2iZK3cQ2Gb1C2AZ84raFJCnVfe65K": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Ps9DVujhD57KK5STdcUB2HgmriFDehZ1xQdayg66HrskTcu8p": { + "balance": "3967.018734319", + "bytecode": [], + "datastore": [] + }, + "AU12PsBAUqNZRTc9XhxnRyhuyHTozmEhcygBhGVgancqAmrMEBq7E": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12PsFrf95SRXpt1hrjin8VHxsHBFvGaZA1odthi9jmhWds43T5V": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PscLWDDouFkaUtcEdy6qyuwLE1YuHARCLBbL4mLKxhpPzaVN": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU12PseFv9NzpHMSPLKUhNTfdxr17w42ayN6KwLBz4Poh5stiriU8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12PtcomUdpnNKmnDvT8xtbDmxy25mx2Q96jg8iLNhJaH5ar5CEn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Ptn1YiXdXaTYKJmchrmnHL1ohhBKYGqnW5zvuYRdgUe4tDwUU": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Ptz7DPuJUbAmagGumDynrgy8R4H25PnHzQPeqXq833S2gVUfN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PuV3Txht2p8tzyRKay4sSx51VdjR4mc9N4UtPJKPtrFmkP5xv": { + "balance": "1376.700054164", + "bytecode": [], + "datastore": [] + }, + "AU12Pv5Pcc7bBmuTB95QspzZUJRpgzwuyY5jiXowFF2CFJ27urLZQ": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12Pv8CL1kXXXfdY7tKAQzSr7r51Yd7XK5LUD58QH4dFRCGkUWKb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Pv8r9ZhjKAW79ng7eqncgJfrtM8YWY8DivUjcxG5J6w2H5exR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PvPykb8woibXALbBVdtPT6HRyhpbeFbq2o1aDazqdjyY3HHo8": { + "balance": "32.770157456", + "bytecode": [], + "datastore": [] + }, + "AU12Pvbs5bpDioCLvM3cNGLqkHYxRXzfqmvDoYZXZpM8ap9mPXAei": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Pvra2uczJPQX5M3SHpEimFbtt74zDt8oSMhiA62xewACUgxbG": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12Pw6pznMYM16xPSvDJp3tyVEg6rZVpWJu6GtV7ZQnDREVyTNPt": { + "balance": "3224.910274225", + "bytecode": [], + "datastore": [] + }, + "AU12PwFmAmLWTqx99rP9pWoEPgB1Noq3qQdVPGYkXNSWRjtxtCH3F": { + "balance": "37.525585408", + "bytecode": [], + "datastore": [] + }, + "AU12PwGVGikL11VZUEeGHgvcQgGyyeRjnEQVP23VbaRbjykAP5SXD": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12PwQ6Uo2UMvgVTa7RA2UosY5g9WVaWC9tmRmcsdrGNcELTD8Jk": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12PwYZPmyhDYh1dwosPgEngqtm12JKZCUxcnPz7GUkWTswKTJoE": { + "balance": "4422.372674820", + "bytecode": [], + "datastore": [] + }, + "AU12Pwd3rdHcPj7XnxbDZrE8GPGcCUMBHa2FugCqZsoeND2Z1snBS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PwjcNcnCTfbpXVn9QJMfgpvayTV4367KVzXmEwCsiaGhZFe4K": { + "balance": "1472.522874654", + "bytecode": [], + "datastore": [] + }, + "AU12PwowcHAoe2kWFS8hiWBwJjJ9eN7hZkZmDqQNyHxKJ3dhLQM9X": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12PxD3A7LZejdXqPQa8NU4vHaPxMpFDtWBwTD3x8AJAxgr1Ekyb": { + "balance": "988.863521882", + "bytecode": [], + "datastore": [] + }, + "AU12PxEfbSG5e6tVRs9KguxCvaXpyQVupSrPnweLU9choFJ86kMih": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12PxZDtLXkngen5qJw7Nm3Y9dhDccUZs2PCrzScm6geeWRAcqjc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Pxn2QioKoFsw1Xi5g9PvJ2trR2PJnLsRFcmGjEhDceyP1GdvR": { + "balance": "5028.429605998", + "bytecode": [], + "datastore": [] + }, + "AU12PxpceGqdqmyyP8N8cKZTi8THrksB67yf6AzvwrYji1eBwdcXv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Py45QsQMLhUMT5hxfVK8Sr6kNS6bsXihR2BmW6LtFEFGNoNDd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Py4K9MncqRqJdizEoH3Eb7kggNf1fgz8EsbZsfM6iZ1HWjMT8": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12PycFdYmvN6uhFs5BmiRW4HqYhdJcSYNMY9CK884kB6P3pvmET": { + "balance": "904.268122109", + "bytecode": [], + "datastore": [] + }, + "AU12Pz3BPa735AEKZ7pRYGTpJshG5bxSMNFfeneRU5VCXQHhGHLQq": { + "balance": "1590.883466479", + "bytecode": [], + "datastore": [] + }, + "AU12Pz3f71LFH3yMs1dD2gkhYA1pRqwn4sV745hSW5FS7orzwwCNr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12PzTXAgtGX7bd2mLRj6T4FkHqDhaLEBGDyi4W7pSdDTJefw1gf": { + "balance": "58.298635219", + "bytecode": [], + "datastore": [] + }, + "AU12Q1D3hgxZS9fn8WmRk11LneXihsWrTS29SmhqHqptvEkTyie5Q": { + "balance": "2521.820121057", + "bytecode": [], + "datastore": [] + }, + "AU12Q1Knw18dccLQh7pyptSh7VMiAbzVeey7E8RmqiP6um3rtYnWZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Q1WqeZFyuVJ1ARtLzxxeVn5f9cWa3VKun1LEEcDzMDf5XYDV": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Q1vD9pYtrxgBF8jdSGsH89ABfs12zPqWs5YNdhq8Tx2aXEiqz": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Q1wozSedUN1YzeP2ax2iNJQiTrbSWhyb7gea2TL9t11qT6Bxs": { + "balance": "2543.853016879", + "bytecode": [], + "datastore": [] + }, + "AU12Q2D7SW2tui3kNq6BzDDp14dsUUtTTDbNfrvgDTEMoTUsep9tu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Q2DfrVUA8czbn9fYZbbtfcrpnHAPuwKhoCXsjbQXmYVji3c7Z": { + "balance": "294.831937501", + "bytecode": [], + "datastore": [] + }, + "AU12Q2GjtcUChFYoFBKRj5S5MvHJDfHaTo91u2hK9k8MDXAbb8pxV": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12Q2RobzyKcpxXSiyymayEb7GBFYn9snaHTYcvG1CDG45AE14E8": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Q35Y5P7ZY9tdt6bmcFivFJcsHYcnAgvyrEnKxngFDwR4n9N6p": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Q3Q21v8JLg3Twhs2dpe2oy9QYhA85EGXTDRW29WXdWbR71dyy": { + "balance": "4252.257688219", + "bytecode": [], + "datastore": [] + }, + "AU12Q3Ys2BcqNgX3vneLDeawBZ9oZbxhXCfDufvF2spE2JtUYSNq5": { + "balance": "244.450145886", + "bytecode": [], + "datastore": [] + }, + "AU12Q3bfBSpb2nq45gHALeXEpisCVHhsZo5k1eWBM7svrVFchPwtW": { + "balance": "2986.787108109", + "bytecode": [], + "datastore": [] + }, + "AU12Q3xTEVvRVP1wHtGgPeWZzVsSXuc3kAqLfDr9Mv5iZYqftr4eQ": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12Q4PSdb6ChhDFn4T3bbX39NP5VvYEwnbo2XAdKmaAtV1NvRiKM": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Q52ThoQtxSfGSMR7YTfTRdUhATxgvEE8mjKxHVt4EmmCDJyga": { + "balance": "1801.214512568", + "bytecode": [], + "datastore": [] + }, + "AU12Q59PBkYVqgvNJGXaiuM1y4omp3BdinzCYQpJaxT2tfifmhe4S": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Q5AFuKGfuUVHJwXwqwDVyqnvqevE77HwKR86ZWKJmtEovUY2M": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Q5TxTjyR4CsrvA5z8TWxqesmcPw7iCSgJ1LqhgzTPi2ccSBre": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Q5Woi8S7b1zCQn6VHxU1iaqG5EpCE8uALGUbjuFJuJKYBcgc": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12Q5yQ4EN46ZX6JwYJsUveCx8H3szGNY6K4V1DbTbtL6msVwck": { + "balance": "180.830338916", + "bytecode": [], + "datastore": [] + }, + "AU12Q6CPAYv2yTXZemQ2XDAaZ1Qv1LzhHxy7oNZKGhqVaHDRJBMYB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Q6gjrqvzkwLQU6ug6qpH2ByrH5wxHvn89aJq3QevmSf18fxaa": { + "balance": "2607.884136961", + "bytecode": [], + "datastore": [] + }, + "AU12Q6oXWqpTaPekfDxdMHsRZikHZwqAAoSMSPUBhzH98zuVK5wR": { + "balance": "4058.460110984", + "bytecode": [], + "datastore": [] + }, + "AU12Q73Sdarb3QFkYVN8AFTygo4Qs4JPqjHXsogk7rcn5CHhpAMd8": { + "balance": "1133.291220378", + "bytecode": [], + "datastore": [] + }, + "AU12Q7H8pn81sbkizeotr2dyxkrq7yRGaF12hz5CBbL4LdW2QuPib": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Q7MjW573pZPmHVmzNdTHiSdTWEJgf4DfLu2S5YqkTPFMoeFMt": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Q7Ymw7qS95WPoEzdvpu98Tu3RBc9x27u6ikkqug8LhooBC4fb": { + "balance": "2884.405455537", + "bytecode": [], + "datastore": [] + }, + "AU12Q85Dy9qUaqV6158NW625BzvMMyvdyxBpgW68ENre6U3LjuCom": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Q8P4UMiAUNAgDiaYAHL2Y13GeEXH8p1u4G97sKfJ7TnPKj675": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12Q8UL3nyw3EV8ywqcHLAjimMuqmQRrwMiWNpGstePvBK4h8bQb": { + "balance": "4527.244051374", + "bytecode": [], + "datastore": [] + }, + "AU12Q8eCJPZ4CpmFjxWdvrZSFBAbTcjJwFJHiNTmRdjJe193rLf77": { + "balance": "7710.036811909", + "bytecode": [], + "datastore": [] + }, + "AU12Q97bpdToNh8VMrcMgjC7JqG7ZS258X9N8FeRzuRAYceBGef8": { + "balance": "676.777659796", + "bytecode": [], + "datastore": [] + }, + "AU12Q9Hf3QmtuGvGw4nC3aq53hBUtWBcvXJfdSpxe1DHhxyNKQadT": { + "balance": "5705.101535281", + "bytecode": [], + "datastore": [] + }, + "AU12Q9cXaeCdPPH51ZueNaEA49qwdfzCKoYLFSCuqnpwxVY2qeXxb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Q9n11u7x28t81RhaVtXAqXAKJFsSuo9dc5fipiwr3PropkvdG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Q9qWDg85Ka5wKES8Fx3minobJCJgjgmwyPNe2SWgpTzoyNNA": { + "balance": "1485.069658636", + "bytecode": [], + "datastore": [] + }, + "AU12QACPTckSF5qLs4GecCuM96LshhDJaVSxGtypY7rWvMXEVhN82": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12QAHy5J8GtGGKLtNCBXhaRQykJ28SrfunbmcRUDwPptpXaMoV1": { + "balance": "88.661913076", + "bytecode": [], + "datastore": [] + }, + "AU12QAVnwKM7m8pPpVZGPza9bwgC5PRJp2dAWCdaN4z57ay1vtYnH": { + "balance": "556.168915849", + "bytecode": [], + "datastore": [] + }, + "AU12QAzihr19movFCDMz4Pft7ie77qyLsZHq4Fua3RcpjUUKoBSEE": { + "balance": "982.764492952", + "bytecode": [], + "datastore": [] + }, + "AU12QB7mgUkiEFe8TZst85iWMUqf4xTwbAz8xJwGvjp5MparTtxWE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QBDRtRyQondPArnCgtNhgASN5tRwMttMe8dV4MY6ms2iyaYN5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12QBjHeznyuMjbWDx3y6UVXbQSfTXEEBFbPjYu6bSF2WnfkJqbr": { + "balance": "3326.029409521", + "bytecode": [], + "datastore": [] + }, + "AU12QBqSE8451nrFkuDqecxg9qFVSVGDdPPYDk5ZBKnu2Fdj1i8dV": { + "balance": "1216.573270950", + "bytecode": [], + "datastore": [] + }, + "AU12QC7qjdmYTaX21Bc6C19KWGMvsXU7c2p1gQoucpmgBmqPFeC8d": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12QC9BQNT9cR5fGbbn83MzXmQHBLA2yYdBWrXaPp3XUSG5C7WVE": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12QCLSB1oVGDZNJLU4MWLjSU3ppxpFraL2fM9Qj8y414AED3o65": { + "balance": "1786.200892394", + "bytecode": [], + "datastore": [] + }, + "AU12QCWcqLrwmgJSsFpqiBPFq727XcjkNn91YmiyfmMd4pZtvfgSA": { + "balance": "5748.598585327", + "bytecode": [], + "datastore": [] + }, + "AU12QCt27MB7ptHp6yENa74QhcG3X2Byan34aXdpdqbM33VwyTzJ3": { + "balance": "3443.651302904", + "bytecode": [], + "datastore": [] + }, + "AU12QCz8Q2TwjzvfSd7UxssH9CjGPXwZ3KyiVJjaseYWjXf1ex3cn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QDdVq1VgZfCW3FP617D7qspc9Qww2KKMGebvKaAo3AyR2KVdZ": { + "balance": "3449.149878178", + "bytecode": [], + "datastore": [] + }, + "AU12QDqSdfWJsx9CXPzeKQtYwkgkqF3wFHfsCctaS7r6vgmVHMgUL": { + "balance": "1445.275691625", + "bytecode": [], + "datastore": [] + }, + "AU12QE6vnbnC1Tv2afBV2L8fVaBz7E8BsTr8n9EyPpU3RRVHGK9gW": { + "balance": "3372.444186890", + "bytecode": [], + "datastore": [] + }, + "AU12QE9mALe6vT7btBtcGmzN1XdcxNoiphYYDbNoKcWbVK3aNsbm6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QEUSDiRzC1VeJLvEVtN3naSvymvSkTi43bSPY2EyoEMyEdav2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QEt7EzXiQhFk4GLdMEfP5mwdXTnnL54LerAaPTyLGYWTBfxhc": { + "balance": "825.378301116", + "bytecode": [], + "datastore": [] + }, + "AU12QF9LRcU1219YZwuB385vLJSNfZHSQZzKL2M6equuSi6opUCSU": { + "balance": "1545.589095678", + "bytecode": [], + "datastore": [] + }, + "AU12QFH3wnYqGNxAWitbX2KbG1rqqUKRd29WdasjMHnRcVGJeCM9B": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QFn7ryR83fP6dmhzhsm6jQSYiNxL3LuBq8urRCWytsji9cjdw": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12QFvxjFXxBXQGE9GWFStdec4ejqTmdExo4dzCWT6pcUAwa5Xxb": { + "balance": "1025.392119271", + "bytecode": [], + "datastore": [] + }, + "AU12QG4WaZAfrtCiP2Pqe7St7serioMik6GGnb6HwkzkPM71nMnQg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QGLuJ4dufSeN9E5D62RQAqVapRiHpfs78CAgoa5EEgafamDWJ": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12QGYFAjH7ky4rjG7uDfEoNgYu6j6KXsfE3GpdgbahH99ZkgPwS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12QGd4Huwi2XAFmm48VM1gX4Y6qkBPCYmJLK6PrZ8o7HBhkoxo": { + "balance": "2650.579184128", + "bytecode": [], + "datastore": [] + }, + "AU12QGhVkNRGMAFPwctHz7Bxm1Y3u1Js4ScskZReSkhH7fzfRquJz": { + "balance": "1148.248808512", + "bytecode": [], + "datastore": [] + }, + "AU12QHDo3v5BhkLLXVvfyiY5Q75ifFz1XE1oD19uoATAtPmfdvhiR": { + "balance": "924.686322235", + "bytecode": [], + "datastore": [] + }, + "AU12QJ47z5EdtbdMokxz1e9Xa1XonTPyrzrF7FfinnJssbEK2rexN": { + "balance": "1782.958988871", + "bytecode": [], + "datastore": [] + }, + "AU12QJ4mHtRGLUTpYN1t8UusVkTnSekXueZoQAdLUettaJfxShUGi": { + "balance": "2708.646507146", + "bytecode": [], + "datastore": [] + }, + "AU12QJ8jewdNhWpEFXh5Dz6J218Fxc5s8M1sxMYT7PpediGXMbSoc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12QJSKSaouC4qheEob9GH6MPA79ySkVcKxgdeQtxBhLXXjMHYnK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12QJgCbmgDhucquSJhhBe9iqHuEWbpnXZNWabq63WDWquxdE58c": { + "balance": "252.096551915", + "bytecode": [], + "datastore": [] + }, + "AU12QJpx2HnEYRD9qPD7bhTKmvf2TB6TbVi7EHX3MZ1bqDPiWts9z": { + "balance": "570.097555686", + "bytecode": [], + "datastore": [] + }, + "AU12QJupEjsFcG4bGWG2j34Zbx1wiLJxsyftL6FTFMPfKD4jqAHM4": { + "balance": "1747.428131678", + "bytecode": [], + "datastore": [] + }, + "AU12QK2PVeAryMPLdvFFx3ziz4ktRvUSSQTAMDGRPHeqwTA8gPzNA": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12QK6wHnZ7Pcd81HYvERiCA5nc1dt8b36VErKJFSy6PPTB6R7ho": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QKGG5RTfmTdLYuufqmuHRnbfuXpdYsUVDvNQ95ZCTn2o1yrJJ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12QKk2rEPRbbk3im2FRS8DcYzfm6NyyMhTxzw5EXhPrfNSp1RiC": { + "balance": "3521.784871649", + "bytecode": [], + "datastore": [] + }, + "AU12QL2HwV29zHpNkiNW1Zay6T7kNLmpuk8uCWbPN2tDAjuyMN42Q": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QLTCdLedxP4QsyEGDKabPJLSQzhGUAUtvjPfnZA3Xgm35Gy8R": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QLfL4tS1eHE5PbHymahd7XGp1zyyeZpNDdkqbmMtoknF2TyFq": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU12QMKZNCvTn3hYHiPzbPmPYY1P3UCiu4CcieApg7GGb4XX8tvyW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12QMKk1K28CkS1t6P6uJAxFnznorWjmMCKSUDz3wnXwDZNawty5": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12QMXuRsMPTHiz6FnFLPb2PRDjLGuY6sEZudJCCjYNHpFs1Ggt7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12QMeiwf35qA5LsVNoo6LrF5BeqLmsaaJBhJssu1yEDj5ZCBNxA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QMrJJMSBi1zv2fcgjxfdhgahJvwxQ12qhT5pqr2A2zGAAwgqQ": { + "balance": "1744.665279957", + "bytecode": [], + "datastore": [] + }, + "AU12QMsg2HXYPXJvtPuR4uJnvr6jRgWErAM9veVFn5bQLP5NGaxRH": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12QN2vWBofaoBm7Cv8Xgf4Gwya5tvtgEyujpj9A24niFR5AkZJZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12QNGdwbuWuC5jN75XAhSNmGQ4aBGmGR16ewGV1FwsH2G28S58Z": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QNNSfsWG1ayMAiqoi8icjDMLv2qkTDiswTSoaJBa7JUm9mzZ6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12QNWmdSvCYPR4vyNeEuTDMD8LAhp9vaceLdCi9Be2N3mySvGwS": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12QNXu2BmTXd6xms3ArSFiL1v2YTJsnhnybrAw5YBgnftwr4iCD": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12QNy7MwBq1RZjwjwEvRN138aZ1CohJxex91V35NobNhnvhrBtS": { + "balance": "2048.518501586", + "bytecode": [], + "datastore": [] + }, + "AU12QPBj9ZPCypXFxGxavBk93ZXv7oRzRBZhUDMH1Ly8fn1bcRw3j": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QPK1Fq95Eof82zWmWtN6pML8p9mzUBAmE4Esm7upcR7hH21hz": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12QPLuaoJEtM3maQEKQHQCkCW1c1j3f7F8CdxVibewfg4JVyQqU": { + "balance": "1543.050451508", + "bytecode": [], + "datastore": [] + }, + "AU12QPPZphpD9eL4niVGkc9NvzA3hPdGRmt3dKJB52oTsk4ndqb8o": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12QPR4QEBhfNb5i34udxj1j93Jmx7fLjdUMbsEnqLh5WG7oJ9MQ": { + "balance": "1460.634644964", + "bytecode": [], + "datastore": [] + }, + "AU12QPhdrY1EQJV3iyzePmaNtiGjCLDMegaoxryhfNFb6q83zmJrC": { + "balance": "2115.802827089", + "bytecode": [], + "datastore": [] + }, + "AU12QQ3fkE4qVPsEzfd92uqVY7cwWUTQasF7FVm5Msa14KZTn99ZT": { + "balance": "831.704745872", + "bytecode": [], + "datastore": [] + }, + "AU12QQDjGcJqCcWSr3EXE4ZsDEGTn7V4LZhtCqrDfryCgMAFmztAe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QQppYPBt5VgDZZWHfZC98vNFKeL6Wo4RMRe4J816R8UEvAyMx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QRmkoWugp3NhP9awKetMJXqY8aAwbfuV6dM86b3HVZsRbbEK": { + "balance": "1080.715172166", + "bytecode": [], + "datastore": [] + }, + "AU12QS1qtA8XJjcDYdzWiq5zEzdGdHF1JUkdkYg7sTvoYULZzz42A": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12QSw3LEKcBQQxQTr2SLJ7Zxwkrq9i9sV9wNfMpextQoMgD4ViU": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12QTZBLYZKTaqdKD4x6TP9ShdBkZ7K5EzZs8txG5XTpoMNYGNWm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QTfZSARUTyziSg6Uw51s84nA3HtMpjM6GHk5wXsPzjV7KdZbB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QTzQ9pii6wkhWyKE42wMjN5NMLByBGNzdA56HGxcJCerVUJ6y": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12QU78Y8zUR4SrxBrLPhdjJZH51KqZeZVj7Y2kNPsT67ftaYceS": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12QUz4gxAT8vTie3D9LQpkdLTMEnRe2MLZkzPxGvqRL4T2g1NfY": { + "balance": "2340.149982670", + "bytecode": [], + "datastore": [] + }, + "AU12QV1QFFuEZs6HeBSxU66JvHTPEukspQ2kFT8ajZVVtLX8UZLVY": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12QVGm5nS1zLpFWWpE2MbfvXMzPjEWaU38716uAorq9iC114i2d": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12QVQkKTFaXmpLZwenVnhYaN1RWzMYEqNJbLkEApSZDZEcXtDFi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QVQnXpqYUMu7Y6syFLRSQncBh1uEQWaZxTCMEfcejdu7WMG3P": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12QVT6w7bgmy87FhAnWPQ169iYX5q6z41DUYfitS4ossgcZzrPx": { + "balance": "746.768649922", + "bytecode": [], + "datastore": [] + }, + "AU12QVe98DXxHDzhn5F45Dq8f725TJpv4jfzNfmQKA6FbsNcdDBXj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QVifWMbaQRwqCQFsqfLm2dmedU766M39cgsxfyfFw8GcaMVaL": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12QW6tHu6adsfHDtmv9amih4ETBgwVFY5cDjPvv2w6YEGqz6WjT": { + "balance": "151.723907990", + "bytecode": [], + "datastore": [] + }, + "AU12QWCaeQtM7ChqC4HWTJoEHfTnLprJjs5k8J71USBrru2JoUdi3": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12QWWdxKMPYj6auJD6V56chcQVsbr353mn7EUd2Nhm7mN8uPVyU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QWmWv3eSdBEN2qV6qSKPcgET34Mo3ehQLr1EURFJ1D8VkkMWJ": { + "balance": "3875.928322994", + "bytecode": [], + "datastore": [] + }, + "AU12QWoVs1WXpSGCaGWF21c5JnqG1cBXnN3RpX6nWLBdTxBUyHWW6": { + "balance": "542.062565897", + "bytecode": [], + "datastore": [] + }, + "AU12QWqZBTP3DyeE5FNnbfkZ1Vuj5GwbsBTRM8DB9mPKGbTszrTtL": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12QWtvs6ZFJXrh68P2bpoaaK2xMdvL4bArdxE9B5CSYQYuzvssf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QX8pVG4zZHAmNVAsnvTjR6EGzMp2VwB356i2XeqJdK6QtavhD": { + "balance": "1483.090693423", + "bytecode": [], + "datastore": [] + }, + "AU12QXEb9cee18xdoWXxmnhfw54qHtB7qWdM1KDabxtEN64jhKp52": { + "balance": "673.735601910", + "bytecode": [], + "datastore": [] + }, + "AU12QXTxVGXA4YsRHoewg1PbFvx5cmPgGcESrt7BBBnsZnMUQK1B6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QYJJPSsB4jqpoGWvGHUWM77T2dppZr3C3yVfECoTUykpU4cqF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QZA4m7X6dt9mDgMypBkfbAaW44TQSBpV5eTS4cHkF265FPJVq": { + "balance": "1809.002571347", + "bytecode": [], + "datastore": [] + }, + "AU12Qa3w3YzD7jZTtKZy3aaAHccNYm3QTW3xd6SsrUJ7krD4hhHaW": { + "balance": "2903.634595843", + "bytecode": [], + "datastore": [] + }, + "AU12Qa4fWYRN8HUPQ8TwQXLpu45bw2HvMCmJvVRnPRghbtwX6dYmA": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12Qa7oL5pWv5yDPYBBb2pxMv5yC6U4G3K6gfsW2mQNEsUJ4HH9N": { + "balance": "977.431981822", + "bytecode": [], + "datastore": [] + }, + "AU12QaC9TYcJP8FEy1YRwFaRYLzq61s5p9xqZoLo3fJJHxAHaFbiX": { + "balance": "1317.800294679", + "bytecode": [], + "datastore": [] + }, + "AU12QaNfy5TZ9pFfdf7V5EvfcaDgiFRzpCkkCMCYZr6RrL4iCiNkR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QaQA7CjAcNhge5wDtKSStFxooUkkqq9KAdLQFjbsfNFz2LbQV": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12QaShVk1FTdRX4aQYZ9cx2pbu1zt7Zf9FvW9RqS8RAzPtX1WEv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12QadhFn6FsohxLArRZAcfXtydcKZLxxm87XyFNH9Vhq5hTuXYC": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12QarTM56xCiSUNZNbh2HJNeM5Eh69cDaTrVHw7fh6TiCbAKvVR": { + "balance": "759.197640971", + "bytecode": [], + "datastore": [] + }, + "AU12Qb87gCT8x4Z1N8ScjN8rC6afVHwjRq36QJjqy95nVLiSvHLvr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QberFKPNgCMXzj5wHKY32Va6v1w453igXmdSXiZdWqnYKj3Xu": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12QcP1jopqwr45T5K5uTPi1Fwi4J2fFjLnzVJcth6NJoSMpxpCr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QcZ6wKFZxcRcUCNsPk4aRZVQm46y7YaWMVBp3hr1k9hQYvLBX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QcqsFubLqxVXj4A6DVqLc1dGW7YhzVTYCHVAMYguzZJEip2gd": { + "balance": "4918.373462864", + "bytecode": [], + "datastore": [] + }, + "AU12QdBv7nihnXZ8MBdZTkvVvZSJWizp75h4SxzXRaUUBrek74uHw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QdLzgS7uRt1oMzPPPmQtWS7PmEmbA97fwuZbrJd6HqdLdF6h4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Qdad7EHdFHcegsQgLSSbBx7h3opyEeSPmh3cY8o8XJdT5Xrb4": { + "balance": "4899.182853137", + "bytecode": [], + "datastore": [] + }, + "AU12QduiMf1DpnQp1tpva8eoj96BTo9Me9kqsrZytgxWZPWsHhfkY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Qe3tB668YpKTPYqjDwL23CbdTshZZ4naRtwTWm36EtCMY7py1": { + "balance": "761.233977365", + "bytecode": [], + "datastore": [] + }, + "AU12Qe6CgGJw4thPL3yVwWpbhP7XdjARmS6cDVqFRHqRAK5eu5sxA": { + "balance": "820.515146701", + "bytecode": [], + "datastore": [] + }, + "AU12QeXJopCHprnsSrFrFAE7vRgfGHQFTSCbrcEJVTgxhaDVaZcpC": { + "balance": "5517.099857962", + "bytecode": [], + "datastore": [] + }, + "AU12QeY5Rd56ifxN4j7LvUiJQVz5XfaoFdQDiKFg6JDbAgvmNuyT6": { + "balance": "80.858085809", + "bytecode": [], + "datastore": [] + }, + "AU12QeayCF1vCWxdNnhxQ1eq84PCF4ZDgSPBoQabijo7nuJjdVQYv": { + "balance": "1139.258434159", + "bytecode": [], + "datastore": [] + }, + "AU12QetKFpq5V7oBFSydkqgKNA2Tzi134JJTG5SU6DJW2YE7Jdx3X": { + "balance": "1889.905664516", + "bytecode": [], + "datastore": [] + }, + "AU12QexCuUXemqX9aF8h1Qkp6ZSBwDeeHUPgBeLVRm6pMGdZH4QwE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12QfM5tuagA1V6ttWPMzwyc921a7YYKaa22QaBDFfxvc88CpDt4": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12QfUHvwrQvYLpk4RvDdb5a6ZmLm4YVCkbeZyqHWfsyNJLvGzSb": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12Qg66H56dLPfqPNvUe6pRXnSrPTUkBp3E3j3a8JefBpCt2Lsga": { + "balance": "3343.415689156", + "bytecode": [], + "datastore": [] + }, + "AU12QgCvPjwprCwwXY9BZYbCkoN2yBBrxzPMcwzWh6jnSusmS5XS1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QgXWGezmj4v8FdeXQSnJoSEYgVs3oTfdtbhVxiu9BAhhCDwhH": { + "balance": "3752.509174702", + "bytecode": [], + "datastore": [] + }, + "AU12QghJvVFcMQLq5aHHi6xE5YxV7gXPDSrSqu8tJqC2rdaaATF81": { + "balance": "5381.119439781", + "bytecode": [], + "datastore": [] + }, + "AU12Qh3eBXMkLGTA84NNiAhHu6BoCWXnH9huT3yamfaT6UWdMSAT3": { + "balance": "5042.950490738", + "bytecode": [], + "datastore": [] + }, + "AU12QhgtppEQ2DSFDH2ozc2DaMmzzz9y7A3Z9e78KvKcHe6qa1v59": { + "balance": "2190.817364916", + "bytecode": [], + "datastore": [] + }, + "AU12QiMxf3RGKwcJMYTptqaw6ZNVABaN5Hp82NyQx8HBTRAgQwtt": { + "balance": "554.781492148", + "bytecode": [], + "datastore": [] + }, + "AU12QiUUEWEvpRpU4jHynqJm1ryhPPMmPj4A1B5gs7MDmrrJJwSuf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QicGijdYTu8hidQTRw9tvX126sLRP2NHe7B5boqZb5i2x1yxm": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12QicjBwiZJk5csW1NNyhU8QZ7ZJ3TRH3SnEphvkGC2bFhznezw": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12QizZ9ZjF7SKNAhCuLSPw2854Tn1Cv8iAFAwzCwT8ty97Gm7dH": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12QjExTch8AZbPtoemH8q3eXamoei2nU5cjhwxzTfUB59oMd1pD": { + "balance": "559.938179736", + "bytecode": [], + "datastore": [] + }, + "AU12QkCfZ628eKcLFLVSbksrjw6wBEW6KhNeBSDBJnw4jgR5dGNYy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12QkGgProyrdhsSUuMtGWr7Cf4MmYKcada8Go5BkbfhodUMZJop": { + "balance": "4736.961386358", + "bytecode": [], + "datastore": [] + }, + "AU12Qkk7sSgoiFZu6PnNNPAYaEBRfoddtb55oUpkfqLiTaWpxmyKC": { + "balance": "3611.597713724", + "bytecode": [], + "datastore": [] + }, + "AU12Qm9gjCCgF1PCy1WbhCLbNdmgi8yhMN3yQXH5B91QRqsszFKpH": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12QmVsD3AyjMZ7RrJNCAk42J6nFoVxs6vjxiYY9AdQDtgg6eLhy": { + "balance": "958.499133994", + "bytecode": [], + "datastore": [] + }, + "AU12QmeHCJdFXu5rAFh9S7ydPJswa8wrRFitHyRBNJzPqQh7zL9Nt": { + "balance": "209.120377297", + "bytecode": [], + "datastore": [] + }, + "AU12Qmw5UVNS6z2zUijS2bJN92hZxZ2U4rrcpLaXawfdPr9RWPfTV": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12QnxVJRRHFhmAzBRHB58MdzYq43zjBrxtVdpHGRj7xP1R6hZnS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Qo4frFAvcABMat1DZi5mGvmvGxaQiMQEtN8yuBsf1FNRsufwf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12QoFgp6a326sDwfePhsDCpPBhbL4SAzk8dZmca8SmBXpcAgraw": { + "balance": "1314.311001114", + "bytecode": [], + "datastore": [] + }, + "AU12QppyQ5uMnfgJxLymscqUyBGxcqsSGQK4PLysvHVyuuZA3AXL": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12QqGcCTmheE774ywhCtTJBVq34Em6nihAJ6N5r6z9XVW5LUa8z": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12QqMyc9j97rBrUKP3L3eUXKxpQfT5QLhy9h2izau1PzEDogRsG": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12QqWykQxb1GSDEjP5dNjYLEHpm55sZhCSYn9KLd5jSz7HgP7HW": { + "balance": "2370.376520435", + "bytecode": [], + "datastore": [] + }, + "AU12Qqd4vLjwxH9ZQNkvNms3ZGWoAHiVwjGKmfva8Xq57cf5WBeZj": { + "balance": "547.787862086", + "bytecode": [], + "datastore": [] + }, + "AU12QqqrY2uU7pxDLYRcA5LwCtZkznkwDWf6z6NmN2R1wLmdAYLB": { + "balance": "2503.895863500", + "bytecode": [], + "datastore": [] + }, + "AU12Qqy5PsqYmPPaoQQ8dT69Vvji9c34JiTGDosPJiN5SvVH8W5E5": { + "balance": "3945.287827948", + "bytecode": [], + "datastore": [] + }, + "AU12QrNaKRff6EQPZyR1exnw3iWVEhU5bRjAFD7qrN8YNKEhAhegE": { + "balance": "2517.059569853", + "bytecode": [], + "datastore": [] + }, + "AU12QrWUTmfmRDvxz96WeQFDgETeYksXLAc2QRp5uyzi8BDUfPvMp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12QtdWXq6dpubKgiXTZ1pyfwRdKosJLms23dxudjRAd11rAkyFV": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12QtjEYwvZCmhdkTLRzGsuLYwW4xT1yRb7g6FDzsdi7zZZUY8Y8": { + "balance": "1081.772266663", + "bytecode": [], + "datastore": [] + }, + "AU12Qu3nQhKQSqELgqBErkp7ThQHeR9DKPCxXk33Ch5BiBAyca8RK": { + "balance": "1720.801610008", + "bytecode": [], + "datastore": [] + }, + "AU12QuosFw53qsZzW5rHMY9AR3yibDJfgPC9xGQMwTW33uTN6bbAJ": { + "balance": "2960.644747231", + "bytecode": [], + "datastore": [] + }, + "AU12QvRPax3KJ7at8zyDAPwnKWphS2ZELQxkUBdP7jYuA2mVv95ph": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Qvc3428kb9H69ESK8LPrpRpwg9FJRo2qq6oHrkmU7dTyoij7J": { + "balance": "1550.113604606", + "bytecode": [], + "datastore": [] + }, + "AU12QvtVxW8Q8fszCujzyNycLdBoSS358ApMre2cMDL4K47K8JN8p": { + "balance": "2200.698692253", + "bytecode": [], + "datastore": [] + }, + "AU12QwL5fzUCPnrSA6589HckQ9zUuKy3HQBEqFTwHsfUx1S2yB7qE": { + "balance": "2176.944825284", + "bytecode": [], + "datastore": [] + }, + "AU12QwNXDqWy7zaagqFfsZjSiCFtVJDHJyF8a8EWF72xBJcWt1CZk": { + "balance": "1893.016577152", + "bytecode": [], + "datastore": [] + }, + "AU12QwbLAeCn5tCbwoKrQWAN4Jqw7MuqoCZyH8yY7s8KS31xJHhiQ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Qx2yrRL9ok2X933FdNP8UBami8TKGnNfRsdAmJcM2uSjCYSRh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Qxbdy4aeJyysHRyGJUjEADwSHDZ6DzCA6oieJkMVVSyvtBPGJ": { + "balance": "2680.733873041", + "bytecode": [], + "datastore": [] + }, + "AU12Qxgbx1tV7e2tjSb1Cu8Zm9w5754yuoqyMWz6L7V71CBusu2rc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12QxutjNHYMLxnDsj95BGgwNuU1p7wCNpASFgMCr6xrGvnhMdeS": { + "balance": "2222.373983361", + "bytecode": [], + "datastore": [] + }, + "AU12QyajsZBDerCvJN367SLrLUHQvX2cZMC99HGBQV4eZT91x9oDC": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12QyrsxCyrmJN1AiMDnQsAVzL54rDCksGCe8kgLQ3ic4wwzaveR": { + "balance": "70.545574650", + "bytecode": [], + "datastore": [] + }, + "AU12R1Bv4x5uAuAYLecvENpgq962eXbRZgyQRpGUjm6UzrK3hRUsw": { + "balance": "2392.619686767", + "bytecode": [], + "datastore": [] + }, + "AU12R1K3Ub7mcX1RPHf6maF5h7yzM6xzYc4VY5MoWMaztT7misDQE": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12R1SoPCQ91qaetibrDzo5f3ujpt58Q5hHY2h7xa164FaCViv5S": { + "balance": "2951.628342876", + "bytecode": [], + "datastore": [] + }, + "AU12R1jgBjCfQ575BJJagzwRXR7donyzpcmdwYXwTWKv8qDhjs1Bh": { + "balance": "1396.633382841", + "bytecode": [], + "datastore": [] + }, + "AU12R1pNzwSTFS38JFoeQ9sCcBnwdATgyT6J6mu6nCn5CHKJ6Bbvy": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12R27opc5QQiVb1xEfMZp2inVnpNNFWLvnphEpz5xdBzCJrimKR": { + "balance": "8.368718956", + "bytecode": [], + "datastore": [] + }, + "AU12R2T6WJz8niWR2grscgCW7EFXnZ2cnmYgrcgQ9cMHPnWwpg6tL": { + "balance": "2001.058494558", + "bytecode": [], + "datastore": [] + }, + "AU12R2U5RvBRyXsNuS8V4XbYk5xsKyQbRQtHpKEyUUCDiVDzSkkze": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12R2nz3CkR8tXWixh42huj4BGaYZdeWU3npKdpnBTQJPty5T7qo": { + "balance": "1618.016177246", + "bytecode": [], + "datastore": [] + }, + "AU12R2s6BBiX5eGWx5v3DdZz3ki8jUqPp9fKdj3i1Mhs8gCjRCuSv": { + "balance": "1066.936333597", + "bytecode": [], + "datastore": [] + }, + "AU12R2uoHBsuip2GzVWEFcWYUhPfgyooHzEu3Ks622jAyRLBM772i": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12R2x5jNBgaD95RMpGgcZtS9aAu5tm9ntqproACSDG4tEStWrqo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12R3DVTcnoicDqWXvWk3rigtbshgw6WeKEEECCZwsvg4iisWM8Y": { + "balance": "2324.225539186", + "bytecode": [], + "datastore": [] + }, + "AU12R3HGXr3BVR2EupG1B5YUTcRJy2q6Yhswmme61oDDL61a6Y4gy": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12R3TqtH5zVkk1evhcBdB7cgTMLbWxwcxxPGgHrX7Cqd9kQfCwA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12R3b4gBjtSyu1EqpNg2Zwo14JpmrxMugi273aVrGqhCqkJBJcW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12R3dvd6iMX6VFEhM3KgsxaiR9kkMADPVqEXafvbovABVatC2TU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12R4XK9CFdmZG7cqGg75xi2WD7sAZCMAYBFkM31vRu9FLTXWFk2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12R4YFrmYeh8JzeMRrdj9E9mnx4z6aHTnAV8vWCeseXwkuqo16y": { + "balance": "57.755505347", + "bytecode": [], + "datastore": [] + }, + "AU12R4p6JdEnMmADH8CVMr9GgQSQKz7xHi9fHjfBaw5ZJxCHMqEhN": { + "balance": "3524.259897774", + "bytecode": [], + "datastore": [] + }, + "AU12R4x4J6ZFwVMciyoCWaCMvCaXpoTufN6H1e9FhtCbHkxzwwXPV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12R5M4Uj1Frz7Kay4gvrVS8uarGMWMtcF3cJUZUn492ezFjoyRH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12R5NrLYugFgtSPjrWnwuFwaBbiNrP6Xuuip5HkJcpJQmicFAHx": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12R66R42SsRsMe4SCeVsEPRCDQCiCNyfZwZwcHYNjLtiTwUom9q": { + "balance": "2362.195468810", + "bytecode": [], + "datastore": [] + }, + "AU12R6QiFf2hsRJcwP29Qw9xknKMWurEs8yCnzgQtKfxwDA19hCPs": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12R7gyjctJjYdnGPYJzGhD582fTcHBQcQumajQMfdocPyoQXfUz": { + "balance": "3931.046946168", + "bytecode": [], + "datastore": [] + }, + "AU12R7sbUvn5teMtaXZNuuk2Yp9o6H2HYnVDhPVzqCoP8PUaV7zug": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12R7xoFXMvZ6Gb6RvhhmWEeuKofAecKQ3okNDUy4UgS54Qfzwdc": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU12R8G418H31o86Ds5ANiMtV3WPZzZUMczEW9ZzifSUVoWcSv8Ub": { + "balance": "1154.161946507", + "bytecode": [], + "datastore": [] + }, + "AU12R8QGx7tY6G9dZzdsqy8JQK8TVUNj9XFkCL9xhhZygT95aJ5vW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12R8ejiHZKsLZUeuYBKyeN3z1yxobuNQeuN7CP7pV4GbroN2k1": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU12R91gedhbLCZMqnh1DdPu9WCTggwEFTKimawyWS6w5tFp9h3ZT": { + "balance": "1416.011721555", + "bytecode": [], + "datastore": [] + }, + "AU12R94982SFM4wnmZRx4RRyHBz7gbwc8FnUfkgwF83cnhHQKUimc": { + "balance": "1117.612840821", + "bytecode": [], + "datastore": [] + }, + "AU12R96AKEkMbpZzvG5WncoRjoJGukSsA4zRkVrG4zJ5k385Yns49": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RA7J8aFn4hBrFeDLpF9HyupbSzoa63J71sxorsEuU7EQJPtp7": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12RAEnKsh71EP6zLoWSDkgLKFsw6mQsPZ8KGMFwCUPiDUuxgGNU": { + "balance": "2131.035661276", + "bytecode": [], + "datastore": [] + }, + "AU12RAJetyde51gkJqMaZVxyHC1KhaTSzwYC1R8XaUaA89j8jCxZY": { + "balance": "1019.632304149", + "bytecode": [], + "datastore": [] + }, + "AU12RAUbni9wYPZaaCraveiMLpntrCUEutTffasNNEXppSCpCBPRN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RAkUufVmY4HChvyBHFDH193FMPVcqqmHHyqoxqv3VYoLg8dLR": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12RBDWzS7MJDQwSqaBLs17cx6qS74FKXnL6YfgGL4fX6GJt6kkJ": { + "balance": "556.295456178", + "bytecode": [], + "datastore": [] + }, + "AU12RBJr9VZsY6U5AagduW8hQbe3dehvjn29QEx4C3t15BzLhip52": { + "balance": "603.587037343", + "bytecode": [], + "datastore": [] + }, + "AU12RBoXweRMQe7twoASY4YpT6XaEkiBjzweddKgEN84KvTa7ois1": { + "balance": "2444.357827459", + "bytecode": [], + "datastore": [] + }, + "AU12RBq68cMaC9owCWrsLkUC8QcFqpfRTKa5uX7D2HqVXnDxAjFp8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RC4Adp4LxWaQu596WU7WV8GZRdbvmUhLiXUGB7Y3BMVqJwZnK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12RC9ny4RfJw74oBAa936JTqaXcN6CB6FzhikHQACusB2gCzdCz": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12RCFLa5uRLosSeCEopxJWQPfszL4YYs53hK1JYDJawWQ56CcT1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RDBeRYvfodDpRfUpAsCD6RtRF4axwkAFnefYtgUHhad54yVFk": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12RDVPqLf7TgPhponZZYNqKn2sqyFzrafAq5LibT49AzEn7npeF": { + "balance": "4210.828456271", + "bytecode": [], + "datastore": [] + }, + "AU12RDf2bqixYRSg3EmoRjYYGFYM7TzKfRRsEazpJVE8V7aLZYfMJ": { + "balance": "978.484729997", + "bytecode": [], + "datastore": [] + }, + "AU12RDptUDYeipNVf8NnZHwG7kooJP6WccCuLeHKvobjfgua2bqGS": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12RDqeyvBtQAoapFhx48JspeeQfEvNXB93sG5ZKVH22qSrK3TTk": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12RE2BGrReM3GCETLCWUMXEg6a6bi8tfPPbe65G4HCPVY6rZDPy": { + "balance": "1328.280476398", + "bytecode": [], + "datastore": [] + }, + "AU12REkf6DMJDYiNzkVBzi3Wp93GcfNjLWByKvVejZtCFGbvAUfHZ": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12REpF4yBjqALpEBh2uJND6mgD3ML9bA7C6Yzj3fReSBKR9pVEn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RFDszHtUUYvW8GC3ehSxzhf8yN1A926qYh7tJ6PT739kE242U": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12RFdCrC6bzcUAdf2QFSMde4q3Er4CVjjb5mDfzdhNQoPztALYW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RG52aFisaSabhXvJkrFyrVFmA4ALCHKjJqvrQNEtqzJhnB8aZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12RGEmr3QG3rwKave4qgizy8M6MhcFs4ujjWXMiLNz2BHaRh8u1": { + "balance": "1536.667913061", + "bytecode": [], + "datastore": [] + }, + "AU12RGHa3noYCDWPtJ1PZx5wP6va2Eg2zxNrpJd2Wo4i9sr1zvo2s": { + "balance": "3846.608232944", + "bytecode": [], + "datastore": [] + }, + "AU12RGYNyhUuaRqoJbSJ8VwHZm9ERqCGwnBs8FaKqtQzapqeXfx8b": { + "balance": "1504.502951876", + "bytecode": [], + "datastore": [] + }, + "AU12RGwCH5PLarTbwdRWFX68gQQnsRDGe3347aLmPnzwKKYyThrAk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RHCTk7jvnE4z4XGHTZpiM2iEiwtcajZvUaYWbFcS7Q63uh4F7": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12RHDXrgsD8iycGRrC8r7TW2sjmoPcB2SmvZhxrzjiwXJdBiHPP": { + "balance": "2184.331272770", + "bytecode": [], + "datastore": [] + }, + "AU12RHJdHL4VuZkfWJ47Ha8i82mVEYMfCr2F43vF2iyzvVCkscNDE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RHqQ9MiCkyi24nGCSHL3zHBPWAomdqeoSqooHYv66vZxqfkr7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RHt3RMrHzQuvrHy1xzbyDt8CQk3BmsCHUPt5NPhvKboDbJF5H": { + "balance": "598.480151193", + "bytecode": [], + "datastore": [] + }, + "AU12RHtrwQ7FHjRM4CkPusvsKYXbzbPDXhmpi3ZitDE92zS7XrKG3": { + "balance": "1597.163577713", + "bytecode": [], + "datastore": [] + }, + "AU12RHxkvmFVyyz7bPzjz3iNg59BQAZgYmtxa93BzRfZo2NY9AiUQ": { + "balance": "1520.603057924", + "bytecode": [], + "datastore": [] + }, + "AU12RHyo5gd1Vpn1ByrqDqpMEohQRdgkY6FkShfgZdRvUbyvxx16d": { + "balance": "1432.694383535", + "bytecode": [], + "datastore": [] + }, + "AU12RJKZY5DLjTUeT8tVEwTPNRAtqRzsrEHW1o42dNbVEgioA8Nhs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12RJZmhwBHWsB27QdDS3zRpf85NyC8J8iuqnLETrk3CrbMEtRx8": { + "balance": "2361.296170196", + "bytecode": [], + "datastore": [] + }, + "AU12RJkkns91tg92sSS8oSNHZzYoKiPySxVjaMgnMgtf5LHEuJWxT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RJvCXxGRxifxJ5p7pRUbcUkHKYacVhHcm76ESiaueMN1xyRr": { + "balance": "3360.601985947", + "bytecode": [], + "datastore": [] + }, + "AU12RKF5iVh5eKFRQLBr4AA8SjCrGM4mUkZArGwBaXA22jfJPe99n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RKt7CC9daV4JhmGYTYotD9kxhi24CJ45MKfvz7nyi29pnpdsY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RL5Rzn69XD1m7aK27PBWdkjzSeGC2PjTdZUj9jg8xqg5HB7q4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12RL8KXvrVJYxgHzaSYUjqNZts3xCDhoQDd4k3nHjEUKGzw5kbT": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12RLLxjRoVkkvbL64ye4eHLvS4RUjru9nc4k4jCGyaPd5zCL1ZC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RLhf5YVWXeJbrLGcpdP5pPxxxv7Bw6SYyeKhLbVeF7naXFEjC": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12RM11bQuDDk7NxKQupYZmX32DDUHQ4rXNtKwrVkvDv7Sjt6p1X": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12RMTrMgydbS2YHRtXtXK9tET8MaArj1iNgkdf33fVUJJWZLBX6": { + "balance": "4398.336989388", + "bytecode": [], + "datastore": [] + }, + "AU12RMV6W14n6tNQtJrbyxrM8WVfxcWmWddxnEFZzJ2MB7gMhwAVR": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12RNFzvdUbCVsdgFtS4aicYBFqmUTHcpTPfaLbYeEz6tr1rSG5A": { + "balance": "1190.176534977", + "bytecode": [], + "datastore": [] + }, + "AU12RNR75mnJdQmAR19Wovabn4HFp9rsCtYZMnuKk2h9A7CVmbVN5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RNVJhYhabA2qQfn41piWvNRU5RkFpwkkmQJYthXBJUwVT5PQX": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12RNYw8HohUxShcJt1HC9F7EhghBMNbiEXbPDbYbJ7ZFMHJjnhd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RNqj28KaiwScbDrf4Gm65wdDqzgwzZ9d6cnke4xUMA8yiE45D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RPGb2nEf8gT2YKmZjtUZK5gmWT6V2S4rJ1BB4HcnSEpA9ngpL": { + "balance": "1669.408843898", + "bytecode": [], + "datastore": [] + }, + "AU12RPUFjwkqxyLdRzySvmB3rYpKaQyF3GmarG9NutPN5ZYPRvteY": { + "balance": "5656.773377117", + "bytecode": [], + "datastore": [] + }, + "AU12RPZGMhK7koq4eBQDSdSiA1sYA2GoQGkaRe2bvFPjxmQBAGkuk": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12RPgSEqt8dx8RpcpXJN9TueWx2bGxu1Dpud5kC56JRDdRy4kaJ": { + "balance": "1028.662379774", + "bytecode": [], + "datastore": [] + }, + "AU12RPgr6vFZBfN4qirF4QWjjDSjYqftPxq69zkTyFbuZL6SeBypR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RPwGRNq9M5WTY2tiyvZsgadduSUFyXnwo9whB6pjSEKuHbiks": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12RQ7fRo8E6bjW44EE6rKfsuaffAYNeKYzhK4NxbxBqvqpanase": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12RQDdV69549ck32pPzk6qE2nCXSb2CnM4fzDKeuy4d8vsFJFvQ": { + "balance": "3490.361598563", + "bytecode": [], + "datastore": [] + }, + "AU12RQEoQ84sZEas9dGPLDGb6SD3mGWPJrBUeudNBDsZdCFgWJUcs": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12RRQnPtjDDq8iXd4oUp1bQ84Vr7b5LWzC18LkHsaFSLe6mcBNd": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12RRS1oT6iqgu7oCMeAbLPawMX9Gxuw3eZDiV3ZNBeaPRyg2Z13": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RRTogKqsGWQUc23HxWNpnAJ9VExvY8CAM9TzMrbCCqgq2nGHG": { + "balance": "2012.987241582", + "bytecode": [], + "datastore": [] + }, + "AU12RRTpGu8PnMHy5pJq6w7UfMarNsYJ3cR3pnLeZPv2aJBsrWPCs": { + "balance": "2309.050874441", + "bytecode": [], + "datastore": [] + }, + "AU12RRXY2jg3TYmBD5tZueYAbHwrR3stJTRU5zQQuzyjNBZJV9o7": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12RRjoAn71qsTafCrcP8t8jp13azpb9Dhij4rBvmf8LfKyvDpeR": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12RRm2LwnQKqvsFEVdp7rReiyQRh9TyLABugo1bn1WZaw95w35B": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RRuUauLmV3Wk5o7S4YaYQ2iTSPFNnnF197XrWquQStq5A7bmm": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12RS2Mi9os5Nv59r4nBgEsTBnwm4qHnjrGtM9nNhWnzWAod3PQJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RSSG9YnRAvru3ZunPrDrJihLfQtFPP8vyra6BRRaQoXDojrSE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12RSVTzeRD3VxbjuGLW3LwQFXrwhTobMzaRpqRWKAdsFQNrTrmf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RSYPcic9QAnnprkenGAmigT39FvX8UqJHmv4GYT6W9dBYcq3A": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12RSZ3pmymLggBS4WXxPUqd1EvkZU5MmNt7SbE2m86qaG2GQbnR": { + "balance": "3428.367172859", + "bytecode": [], + "datastore": [] + }, + "AU12RShzyQGrZm4V57YBomfnxrmc7t1bDhFAP733uefTF8sCVL5F1": { + "balance": "2905.809854701", + "bytecode": [], + "datastore": [] + }, + "AU12RSjpkD62TzKoZRHpvRMiQT3kKSGLJYJi2Z77vwtttxBPtt4vL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RT8eAkbaDNaXiSBGGR5DUg4GN2GbgWkd7gjGBM3xArSb6vJ3R": { + "balance": "1738.682740408", + "bytecode": [], + "datastore": [] + }, + "AU12RTgmWgm9QJ2v8yswFUo8HGZNEGhkD9rbxVscnRKdoNiZ87r11": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12RUKSPH8uZTPULJMfNfwAdDJGzgaWecj9xgvbLiw5wSRztvXYV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RUT3w1WqCRpeaterWYVxYZJYg8h89DWUT85xbtyXWJnnAVDHJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RUcNTiNQvhYvx2PeG3z6L8TYWzhqyt9A4zUoLy2uLgXuBFvyC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12RUrW7sMWKgu6G7EBK1emVcwwLyurjuvSkXeMd45ssMaA64ncn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RV57wRXKiaYbwBMbugqJJouUG627ymDSJ8MjaeSWViVq1X13R": { + "balance": "814.951385123", + "bytecode": [], + "datastore": [] + }, + "AU12RVDKs3qrqDLJU1J5caeGKiosDXUqe9jfyKFUZNFbZDKPCpyr3": { + "balance": "779.369776476", + "bytecode": [], + "datastore": [] + }, + "AU12RVP8rZSsmb96JbLQ1Xzihw7iUzah6VnVM6RWBw9ZmqMPuVcqT": { + "balance": "4153.352673831", + "bytecode": [], + "datastore": [] + }, + "AU12RVWpwewesyWRrzpJpfMeAbxGzT6LsE13AktytvoZpe7d1JaFt": { + "balance": "1.596456722", + "bytecode": [], + "datastore": [] + }, + "AU12RVzczHUjvKuCTm8Q7hURFUSL4Y7or3PwXKZ2VvhewfjgbiatQ": { + "balance": "4817.788936647", + "bytecode": [], + "datastore": [] + }, + "AU12RWQKcotRZbxNgbhkV1FXCUy9LjcdGr1U5x1RGcLCYX2AEMVs6": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12RWyvqvQYyTRX1g5kesSphZYRB68sgTsGLggQJ5QBRcwD5wmzg": { + "balance": "1211.007462262", + "bytecode": [], + "datastore": [] + }, + "AU12RXBrNLigdeDYKpmXqg5qGpDCXa8nX5GMCpdoggPJnR5UTtPeQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12RYNjHWTaNm1LaMCs3UTPMUzJne8nTFh5393xsGHzyMaEBxJaq": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12RYeqNpJvdbgVuu5Q8bXKs2AqLe1bzrWefMnyWBYF9dz3PyMgF": { + "balance": "931.778984510", + "bytecode": [], + "datastore": [] + }, + "AU12RYtCtvMmNqTXG2DY3YYqPD3cgRNcR6pU76osrMqVR3DyonWjc": { + "balance": "850.968973468", + "bytecode": [], + "datastore": [] + }, + "AU12RZUpseTUex7GDmRL46C2kmVC1xFsVx6RCmNc29zHZkDkcZifV": { + "balance": "1226.283360853", + "bytecode": [], + "datastore": [] + }, + "AU12RZmE296wH4eWgTfxRF54QBKwoNMUi2F7xZZ1i2vFDo5Kzad51": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Ra1gTHLq8UnFXbwKfxWRsESFntqDHVchBmZq64X8uLH3TyGbZ": { + "balance": "2033.916772700", + "bytecode": [], + "datastore": [] + }, + "AU12RaJDos1LuNyukby2eabYJBKpx5pQDCUtxBhUyuEXy3hBgb73Q": { + "balance": "3269.871699165", + "bytecode": [], + "datastore": [] + }, + "AU12RaWfHcrqHccse7yVSTojWnTH9gSpdAE9kUrwev49tTL1y3K9V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RaiFSPapksCiSHFjGh5ZhTVh11rZLFRkytsZkUdr8Xdy8f7jm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RajKdWivTTMbmNtEVymJjQ4P2Q9gDoz5DXW2jC79ztuRNJkko": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12RapxL5pcdQT6DXPnm9iNAJtyCDJjN5oKwz7XyXRn1yoFm4zZB": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Raz7bd6xQvdh9BcJHZv54paFkWiKFRkWRp64XddyeVennjU5F": { + "balance": "1134.730556909", + "bytecode": [], + "datastore": [] + }, + "AU12RazG2yfZoEhMiSys7KMjqNSkxLgeUcMb3aZsEzTxtRmAmYwng": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Rb7dJJeP1MhDf1viyjhi5m6odmBKwTY2d14RfuroDCPafvMSH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Rbb4AH23jdaigrEiVMFkKJebcGxw9yuZ6CDiTZZyQkC5WWPAg": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Rbf3wFB2B8sePohexhNEivVJxR77DUrxV53LqksP4MKWqN79u": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Rc15AK4VfutG7nASWwW7Nt5DTWJAkcqYM3MHWinoQ9WrDFBwA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Rc9thE1jiZxQpwNEzozEXkwQJR6BCjFvV6e4KV5kGn6mLN6uq": { + "balance": "1537.773419076", + "bytecode": [], + "datastore": [] + }, + "AU12RcHMXQmYEMf2sxzpFRmGDgzRSsGjKi1AVvofNhrnPibJbCqsS": { + "balance": "1519.884038604", + "bytecode": [], + "datastore": [] + }, + "AU12RcX1wkD3dzJtxP6B8ZSxy5j7M3TAxvQMYwUkHfC66b64SxMEo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RcZCE9SjMu5g8TPCm9MnmzJacFrxxHfHn6NJHX3Hqj9CCn33t": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12RceFBrQV7eqfARo7aMHX4nFfJayAVoyWsusf55pmyt3c1H5Rv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RcjPLoiLGHAvC3fikSYd8rhb1cBNfiwmN9ogrFrUe8PXYuFRA": { + "balance": "4604.448972674", + "bytecode": [], + "datastore": [] + }, + "AU12RdF7fBCKae3WqEVxYykHJZZor8t377h3LAxbLVLroenYfVdzh": { + "balance": "753.824546611", + "bytecode": [], + "datastore": [] + }, + "AU12RdheYz1uoDK8xgyhM4tPabm1CWjSwB3rdUT3CRjq98riGm4N2": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12RdrHhdw66D5pW3LCszPTD8xJhez5RwWfbF1GQAcN8UYZH4291": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12ReHNbAuHu6qqVA4Q6qy6gYcRXjdW1AUydyVPJKtQWkuK8SCkg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ReJejnF2oKeUiSXWU6ytGGa7nyjBgKUpeTdtQHvKTjmuGaLvP": { + "balance": "678.374538780", + "bytecode": [], + "datastore": [] + }, + "AU12ReNQRh92VLST2FvfhaKrWrTk8Hw1JstE3euTfyD85m56Nf312": { + "balance": "3732.568781506", + "bytecode": [], + "datastore": [] + }, + "AU12RePriXsrRHTegDuyM8vJDskBtH7wT5y5XM4ygHCc1iSpckXHr": { + "balance": "1907.014007209", + "bytecode": [], + "datastore": [] + }, + "AU12ReTP6agr9f73DmCUyg9tNmArD4hJrkiSguHvwFnYLD9fucWXB": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12ReqKtxQZ5GvEBrQEZoBd267PLcEA3GK8wYudnZWtbSMimsa9i": { + "balance": "2156.884022364", + "bytecode": [], + "datastore": [] + }, + "AU12RfQz558yWRRXGZ1Yb3WVR2kYDgU2KRpU3ab4gcgXpDMUQDveB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RfYyjyvzo4Gbw8H74q1uKyAjwubUigupHLodNVWnZQcmsG8K8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RfZT5ECU6xBip5tF75hRW2VGGebiqXXDCSveGEkJAQTL3C3uh": { + "balance": "2343.416857541", + "bytecode": [], + "datastore": [] + }, + "AU12RfbhuTYKQM69jAopzzLxHa4xjTkVM5PoNTnn4fzi4BqnRhZKf": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU12RgQYFaeEoYbDFdWqWaCHEctnb4dDgiCse8dw5mFXYu7EHqomD": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU12RgSTteD5NHGTjaBuLY1MUjxY1LpEMHnbt6daNZHsG7Axapemu": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12RgxmWutnnxKQNqKoiA8NppdiSn7hNBWtsMHeeY55cB77xdXet": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12RhjwsveFZzyrknpbPMoQc6p3jNhuHFVhd3NwQZna16yW8Hwdc": { + "balance": "2994.701573856", + "bytecode": [], + "datastore": [] + }, + "AU12RhtyjBSaQMVDsGm1yf1fYHEEZf4B5wNevfbMtnUppg4rzK2ax": { + "balance": "3415.257936114", + "bytecode": [], + "datastore": [] + }, + "AU12RiKxWa8cKKCvxgtM8MtXDiU6ikeaq189iLqqjTronYusrsG9t": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12RicvS3qCVQRmPavVDZcG59NSMHCXPJoaS28Nrkev9msHJknBp": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12Ridvur9wiG2KBZk6TUUvj214bmQZaAqTjast5Q77GepGEaMPK": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12RirzVrj4HT6eR5HoKTdTeiZex3GPmQhe51Pj4WgMswYn6fhg9": { + "balance": "2331.103720751", + "bytecode": [], + "datastore": [] + }, + "AU12Rj1rX9LrykiSQC3vzxqtGGXtkad1kYE5zK7Y7Ke6jjNqWj8x6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RjC1XGvpgxQ95nUpQYZM6wrZ2Vq3mrAdAzN25kJu8x8LACm9s": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RjTe41dobAF4orrsk239sXYaghQyKMMcpwQwm4q4p8952svHk": { + "balance": "3284.032993494", + "bytecode": [], + "datastore": [] + }, + "AU12RjgywM3XrGb5QatoyvLgUocQYYrzgJdr9gp6EHtEHbLjAfg1b": { + "balance": "1444.171152740", + "bytecode": [], + "datastore": [] + }, + "AU12RkBUcAdsxRBkheuAXKzA2S2F67Spg39tbXvbDNw97BFRd9V7k": { + "balance": "554.285410345", + "bytecode": [], + "datastore": [] + }, + "AU12RkLhjPxVi33414BGbETkKRiJoVmPds1H4x6HvKnxUgL7XEAsD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RmC5RMuZfChAtr31DBHPBR9Lt4GHEBHkXFCCTHTZMGKEM14uR": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12RmKbm2UCPMgLNrGg1nJ2F8cYhanUdjyhwd49MyWcinar85Cr1": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12RmR2Nujq9KxJr7QBxbaCn2SC3HrreNH8ow3VUytGQRKJTXWzN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RmiHeK4oXiWD8UFoisokkZoY8pxPfDenJkVp3KT8UkpAea2AA": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12RmqBV2TShoKD3YBGoCVfPKV1b11Aq3rYDTsypxUaRFPmXBVou": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RmqJzCWqdr4wpRaKR5rhQLqzWwA2VoLHPPx2Ft4aHHXDb1CWR": { + "balance": "183.168316832", + "bytecode": [], + "datastore": [] + }, + "AU12Rn2AUkruS7bu6x2uehCkh2kpW8iVC2g2FF1tDBM7RhXQgPS4h": { + "balance": "1905.657229691", + "bytecode": [], + "datastore": [] + }, + "AU12RnTmctrwFWxefug258EjWNpDCxxsxjW9bEdt5N5PzDSZqrsbz": { + "balance": "1852.456553992", + "bytecode": [], + "datastore": [] + }, + "AU12RnVat75yK7dvVuGXthBqniR8gaYqehyp1mamZAj6riJ9LJCZ6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RnpWyGUutiMJ5zBh1Y9y1s8Y3fSyxTrQ6VrhRc3vpj8ZWatrs": { + "balance": "723.776781727", + "bytecode": [], + "datastore": [] + }, + "AU12RnqKoLPaxUyQpu38YGRDztiREGH3oywpKzqK81m8jh6M7niDt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RnvsvPbPNHT48C3giFbuY41nnxHi7iGDpZdzF7patJEGjqk4v": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RoMCJs82T6qMVNt5Ys9pMFBZksGmLoQBvXG4SErL8u6VWGLqv": { + "balance": "6415.702318120", + "bytecode": [], + "datastore": [] + }, + "AU12Roccm8iaeYPXviFP3Y7RFnDHxD8pCLjSLrTmCZ3XgENqikeri": { + "balance": "3121.470293103", + "bytecode": [], + "datastore": [] + }, + "AU12RockcxDxTqzSu69y8Dd8SVa5cdRNJVzE29e5d1RhDSoSoXDhb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Rohxkuv7KsihwfdAi5PPU2S5eLgRGTyZEztMY2Mg5ciG1GGcv": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12RorGvjgr2J2MG8j8aYBeG8sSouzbfRbf26dExpYfvpxvsD8tD": { + "balance": "866.893723403", + "bytecode": [], + "datastore": [] + }, + "AU12RosQWnVmLP7ZutjFLeT6pgYARSvSeWFf6z53b5mX6YXYAG6ZA": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12RpJXDXJw5qTcspPp9b7yhEnrQsenUVeiqZD2hH4umJULBfDw3": { + "balance": "1323.996563256", + "bytecode": [], + "datastore": [] + }, + "AU12RpX8RekuruPDky4rDMAvJk4b8Lw457ctNLgzyQZ2NYX3Upa4o": { + "balance": "1069.529501777", + "bytecode": [], + "datastore": [] + }, + "AU12RpfqHPXCytyEHoPt5JddQdNHqp3U21TnLFiePRaJTxEzUFVVy": { + "balance": "3336.577022897", + "bytecode": [], + "datastore": [] + }, + "AU12RppLafWdw9D8oaSTQkweYZCNY4uFACNSKu9wC7mZDuyL6XCnx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12RpywUhb9DzdyXAcUZWDpzzpDiQoLatt2LVBXhizGKjKPCPqrf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RqNrZB35Ww4EFxtp4h6omuWAKw6csJcfqPosZog3P5i5sdyK2": { + "balance": "1892.200931989", + "bytecode": [], + "datastore": [] + }, + "AU12RqPMg4BcayH1ERE4NLDVkcSqAdfSkU1HJfbck8Ny82zXZvwCA": { + "balance": "2180.693094066", + "bytecode": [], + "datastore": [] + }, + "AU12RqTrpWxSMfjCubir1qH6j1hvtBd8XUHLjRMuWQQS3ayBgkjoM": { + "balance": "1720.686100246", + "bytecode": [], + "datastore": [] + }, + "AU12RqUqXarwpTQRtwfHnawxEdYcX61EhsTy5d3tjxVR345XwF31F": { + "balance": "1505.426668327", + "bytecode": [], + "datastore": [] + }, + "AU12RqW2viS2kGvCFNSzVvQshapz3LCbYw34uNzKR1rCuGgCbsMNm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RqoDX6q7t5reXz8WUPcxS4ghhqVhMJyQCS8MMKA6cZNxi8ASy": { + "balance": "1308.238289315", + "bytecode": [], + "datastore": [] + }, + "AU12Rrd6CYTbr4PHeP9uBWxR3sBuwRzTEKQttNVut3WKYa7iKNpTS": { + "balance": "2542.324812859", + "bytecode": [], + "datastore": [] + }, + "AU12Rshz8RWKjewLs1RRkdwmvMLpiopt13VzEKicZuR5fDMAzXkUt": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12Rt1Dh8JiqcNBZcLGB3JoDEHkoLSjsbn2wsgdQ8wifacG2SMR3": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12RtGw4biX3jZSDkr2XuZYpzYnvktK3vFaFhbzy985dCjrSvQqf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RtPD2V8Q9crSP7gHXwe93nGMihRrndLKbj4QcxcAUNfZ1oG6A": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RtaL3rg7iyJFaXdPYrCmE9JaSURcdMZsC4yabMgb5QjEVQz5h": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12RtjLu6UKbU1bB91cumMENKpv9EULztQauSZyd4i9KUCCbD8nf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RtkURyDbzeAt4hi6jVY1fhiYAcD9Y7LoTr1esYWtFDEj7ww9S": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12RtqywufAEgs67YHGJEkd3JqiJbsBo6a37s2JEog2mCkMjiAMo": { + "balance": "1101.981522905", + "bytecode": [], + "datastore": [] + }, + "AU12Rtr3zhU93zcBKuHQx7cKLe354oJobvLMGBZQixgdkxJHx9Rde": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Rtt8YTfn1tdur4fd1tvLCQ8sEa927CkCJbyNABhHssnPUgKG7": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12RtvoErhhX1XsbrHc2x6gJ6gi9S73zH8nS5pPrNbnef3S4UoyJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Ru5NCj2AiVVr6yT1CTiPToHDrCzdZUKmfpigVrDENncoESpwA": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12RuFRcVVBuHz2RxkaxDiaopKXEvQqd8XHQ14Xng76ccKk6B4MM": { + "balance": "1718.918677571", + "bytecode": [], + "datastore": [] + }, + "AU12RuNWUEq1TjL6dsfVABJLFDZFrvZhGdK9WE2sYYvbSSB1L4Byv": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12RuTekmrn4ApGgvHDYeTYbyAbjLj7DkPvQ1ptdn1hYKpyYRwg4": { + "balance": "1569.675605269", + "bytecode": [], + "datastore": [] + }, + "AU12RuhH2wMaV767jvS8qNDw44Ai6Hr7cKLiqEoES9ZWdenS1f41S": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12RuiX6nmKcsAXucM8gt3sD5r1EQKhYNb23zRg7YKJWFmWyciv7": { + "balance": "1195.739029680", + "bytecode": [], + "datastore": [] + }, + "AU12RuyKFpmJAHaBZyeoNcZRnYgWVWME6SkkyP4Za5QA8wBc2NZi4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RvKeomNdrAN72jfmGcq4bAebuQzstt4YwTxLbviW45v8VQCWW": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12RvQBgyzBuUKS9GeGSsQB6MRLE6LorzMqHdrfmzumx9ancVRrk": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12RvYRi8RbM9NDrqQCjyHReZHvvwNjxtX2aDbyoa88Pocd9U9c8": { + "balance": "3682.046186122", + "bytecode": [], + "datastore": [] + }, + "AU12RvgFo2QznWXyndW9A7orhN7RoHKfNrU4QreYKxtazhtyTuuhC": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12Rw7amAv6v2f4xREbwfcEScMnf5xGW3giUKB9Toesyi6vEtXhy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12RwDqhPPsxy8ESGi7Whj8yQ2ZWg7KT8qPc8FeQNREkkARUDrhE": { + "balance": "1256.763251399", + "bytecode": [], + "datastore": [] + }, + "AU12RwLnZVZP24EgM1bP5rtMAfvk4muVy5bzEs8iV7fWnUcWEu9d8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12RwZ8BJT8dVqcwjMFthjirg4JedLWZJP4zm3rp1f3cYQiefFKN": { + "balance": "62.169523573", + "bytecode": [], + "datastore": [] + }, + "AU12RwZmqxtza2bk4LHzo6kQaDwh983TPiCY5XgwnVsQiLHLoCd55": { + "balance": "2803.676663726", + "bytecode": [], + "datastore": [] + }, + "AU12RxF5oHaZYRZtGAFy251Mo6CeoGfvimEtmzcNvEcL69ptLAtCp": { + "balance": "1603.572345016", + "bytecode": [], + "datastore": [] + }, + "AU12RxuRniyEanHDZMscLJNjd2bWqiTZz6Lw1o95xbPfX6uSs31Y4": { + "balance": "2561.356592335", + "bytecode": [], + "datastore": [] + }, + "AU12RyPpKkdAk4F4xkAP6wZCTLwCjZckYaZu21BUii5sjhUdv8pq8": { + "balance": "1588.052999020", + "bytecode": [], + "datastore": [] + }, + "AU12RyQ7rmfs8xKqBSSaU3guboPQZS7vG6LXwi9vm5ibkKB5K5NFr": { + "balance": "70.683482580", + "bytecode": [], + "datastore": [] + }, + "AU12RyWK2MrtLUqgcy2VM6CkunwFmVme1AxxXr9mAVYcoSvSCMZsA": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12RyexVZkC7rmCzsTCzpdGcSZYURz2ozefU4HEEKQvTgsmeVvgg": { + "balance": "2500.396441700", + "bytecode": [], + "datastore": [] + }, + "AU12RyvJTukaWUshUJaRpK1cSAtgm6q2hPrLvmGNsT4AYCRinAXGe": { + "balance": "202.235963571", + "bytecode": [], + "datastore": [] + }, + "AU12Rz8m1BA1rCdRzCjKCAmfrYzZpQ7xoYTuaHnzpjKyHNmzoPMAt": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12RzAtQSk12ooZPeSZQZw2xQXvURCTJSHLvzSLa53Nc1qNyY4fA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12RzCJvBRyPpB3ToRu9Rmc9RvrPpCjoNsXsLxyzMDPdWQ59jbrz": { + "balance": "4100.149390813", + "bytecode": [], + "datastore": [] + }, + "AU12RzJxkQKyn3Hofrbn2EUM5G5mACpxcydXKvQTfUjbY6SeBw4J6": { + "balance": "2377.917300040", + "bytecode": [], + "datastore": [] + }, + "AU12RzPE32Nqd9yHkF4y2cr6BsgCzZQS1KXuAhewHFacmGLv1n5wa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12RzSGQyoKq3vTfheYsbt4CW8Sxbum4P28d4SMpJY5Cpdti4kxn": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12RzbtAcNY8az2sSpAa14SYfQv5QVnAXhsJBXdz6zi1NEAPBYjg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12RzueCDJMRyNjSJY4s5UBe5JMXB92V7mmaatKcms7EhbAkCvrj": { + "balance": "6278.895400880", + "bytecode": [], + "datastore": [] + }, + "AU12S1AK5siN2TWns3WuiWGXYfsTajkhgiVBBb8Mduqc5LjkppxP7": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12S1FNTdWDduvZnVQJ6b43v8d2VQQ8fxAKcHi3EBfyuvCs6azJM": { + "balance": "3357.651617961", + "bytecode": [], + "datastore": [] + }, + "AU12S1KaUgQbHrcyMSgFRVJiAhvuLkML1R2hqFoUJAXvk1FGh64PQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12S1P4TKkhwA2vDuA1gVFfpP7MQ97UKB4NQqK2SRTGcpnqc4xuH": { + "balance": "674.881187462", + "bytecode": [], + "datastore": [] + }, + "AU12S1ZYh324A1boizAuRWLNnd8rvuvPjZsyhWJFFGh12un7XSu5M": { + "balance": "2309.393171365", + "bytecode": [], + "datastore": [] + }, + "AU12S1iLQDL3qYCf4TxSxt9aWj4Pf2VMaf1T4Yov7qHbroYLuZyMe": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12S1qvTNrrGHxU8qgQ3epYJYML1QeSrP5kyGBR2cYKNR38BJ8D5": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12S1stHE9DzkFykswbMs6XEFwKpZxkAbz9y7W68rpGcgf98XLDj": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12S1zBpSMJCDQ9NFkA8f3xSkMTBmkhT2aNZtrtCTSQ9gwDEjRJC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12S2Dy11YBzuEJekXLB4HcXqW4qmzRbcip2EbtK5pzPkSqBFLiX": { + "balance": "1336.831312451", + "bytecode": [], + "datastore": [] + }, + "AU12S2U8f89sx1LYCCsuijGe9baFKHiMHSJxLM698U1W7d5g9fp1B": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12S2VhiKJU5QAupPvBdUU4xQRwnjcKVfsPQxnNC4PP6vKTPEruZ": { + "balance": "683.342938730", + "bytecode": [], + "datastore": [] + }, + "AU12S2gFeFCREgUJRztqT7acpTkBs3UvEf453HoPv7PmpR87NUcNt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12S3C4SGNfwnEri99hXxMJFpFXWjCnEMaRwQdH7f7x4TgywcwRE": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12S3EJnvw9EuhfYEGoHZjnRrGHfSfo5bPzkKEgnpyGfAm82wK1E": { + "balance": "1432.911210696", + "bytecode": [], + "datastore": [] + }, + "AU12S3ZdNZ2L21yUMX9htXkMFRfENz5uZow6W7FMoeeFkhz8wz4Ku": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12S3xBcWZWHnJf1AaqHJS97UzTNAri3ddaNyPVZVJysBMmpQ3xp": { + "balance": "598.277905447", + "bytecode": [], + "datastore": [] + }, + "AU12S3zwzYGFjv3nETpte9AMizMGsVQHhaQFV7m2t1jkCxYaYJgQn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12S4FG4SH2xNeLRsK7zLqx6oMGMgdnR2zanSDaugXRPhqXJWeQX": { + "balance": "1794.662136992", + "bytecode": [], + "datastore": [] + }, + "AU12S4fabifpc58CNqecBpmtck5CNhcmB13UCjLKj6iGwdvuzH9Vi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12S4rkWtcRfz9Z6K5hZ2BHgoEGsSDZw3MBJLBZadyNfPHE95LQT": { + "balance": "4765.729034840", + "bytecode": [], + "datastore": [] + }, + "AU12S54DMB7AF9pp5JWhMCsrMgFDfXMhgsdc8m5GTNVtQqQ79ejWP": { + "balance": "3365.897996299", + "bytecode": [], + "datastore": [] + }, + "AU12S55A9gwNHM8xTYisKj1ZDLoUJtRAoPJF5cxwpTnyaUFBHo8vo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12S5ANabfvz3cvWkiqy8rkFMJDr7Xf9tntzyu8eq6CcBaggnb2z": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12S5JCkfTqVfZQozwWPCEe3KdSPEqMSekvkx98MCC5b2sSTDGy6": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12S5XpxHUTnPmMTCQM1zRMbPcRRyJHn5X4wAM7wDQhjfVJ7J2yV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12S5d3tHA2YtcDpDXrBNXMgsWM6FieuUHuF7x8XHrczLEh8TJZG": { + "balance": "3820.411336308", + "bytecode": [], + "datastore": [] + }, + "AU12S5yHAR3K63S9QJjDbz1rFSXWyKyhFYRTMJY4TQJ7D7EjZ5u1Z": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12S67XqftZXqm4bGtPhpiJQxHcUbvCrcyinWFEqiy7ojTef8Ld1": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12S6dLmdWrHKaDAhrtLs7iJHF1QSs9GPK9fEAzS4JAdHPxXAzrQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12S7dPVkCJBRMVo71m5oijt5SFyDYMptAMou5c6patguAQ6xNzz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12S8BcoP172zrFRWqsw9uNYbDMBSciSzKkeaE8pGpqpAo7kebWd": { + "balance": "131.188118812", + "bytecode": [], + "datastore": [] + }, + "AU12S8XeswJi9SCGnPyJxbppHbM6DkQn9rNpYjs1YAYViZFAWZXZF": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12S8ia9uDRUrJ6MxvZvnnccFMmsvWgasXR7ZzpToNcuDf6aQvaL": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12S8t69F5X92aXeqBPkZM4zaKE8aFA5gjA5AXra9rPXi7urDPd4": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12S96zr1XTSeYf9XmwvM8T738uLAWgYH2xCwNvPEnNc1fmQ9znK": { + "balance": "587.558316592", + "bytecode": [], + "datastore": [] + }, + "AU12S9AYY69UfQdJc56FEomBwoL32f16wGWb2XDnm2p6Hi16nmdnb": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12S9B1N7pz6TRTZWGAozZm5drERVbitQXds5f3VAru9ymCwF6Ed": { + "balance": "938.273440946", + "bytecode": [], + "datastore": [] + }, + "AU12SA6k4oZAmUPJ5X61EkM3ui6k1CqShFuaKRMezBq7ZHquATvnC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SBEgt5oZjCgnCNTg8m4N6WyWKcJ2JvdCc4FahpFDzUFoDF7hf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SCZfZbxPB5vixbznfFpHszQ5njqWArg2kH6hXvLHU96fYW8Z2": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12SCbvXtroXhvJ41rusD7cHDBB1mi5MvfUWFnxc4LrwFRkMTrEA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SDyCUZkTaxjYoUVxbMQgmoDRc7GL8jMbRBZBWA3kipFdhho8f": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12SE2H4sjwjBu3WxfEVSKonZNeLe72b61XiPKeKaZ42UcCpDS7W": { + "balance": "562.899669374", + "bytecode": [], + "datastore": [] + }, + "AU12SEXCSQUdynNrCnrHaazg89jgNYZDmkfAcxpkrVEQ3UfLJcvrm": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12SEXXb7LebLv26AGNGFHNRfkCqSHfHbkG2YXRDvWm9k6zgbBey": { + "balance": "2746.854049507", + "bytecode": [], + "datastore": [] + }, + "AU12SEtPjnA9cCebCnQTTVDs1YkPbFDXxD5QY8SsKWiNgF8LPWTRr": { + "balance": "1130.929453644", + "bytecode": [], + "datastore": [] + }, + "AU12SFowpHRrnXyhkrC8C8PfwxxkPPtA8e73BZWqu4eK5UhxYkQ5f": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12SFxFUU6DPmLP2Dz5rrCEiyhbrAwdt2fj8JqM8EiGJcajwTwyd": { + "balance": "587.611321788", + "bytecode": [], + "datastore": [] + }, + "AU12SFzVBsSJb6i9XCc8ZQUcdWUQW3DURAXrhRDXX9vgHzhdeexs4": { + "balance": "1150.200660219", + "bytecode": [], + "datastore": [] + }, + "AU12SGzS6xGWjxjaqnzoxhqDfHE22WapBjHvMRG92xMwNrh7xYKkr": { + "balance": "2207.088635371", + "bytecode": [], + "datastore": [] + }, + "AU12SHxrLKqPuEwMBZWXA8xTGVFp9gHXagS7tP3UZMtaPehvXB1fD": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12SHyULBjbuHCZgvV4o1uaACzdvioGqL3wDn4Y28vCNqKW4b6KQ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12SJ2zM9WFRzNaNq17FMFCwBye2cWPty7oFBR4VnNfwgYJsNo1N": { + "balance": "1014.439101759", + "bytecode": [], + "datastore": [] + }, + "AU12SJEdEXUeCbrLVKcoaARXN2oKw8VYnJ9vrBfyem6v5mPXmcJrL": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12SJkKQRzxjThHaoV8BRfaMwfiyavqjAy4eQSHvg9nFe1yuvup3": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12SJoJbnwJfBsF3Cn8KSJnjopvP2wZVKRPWw4GDVYG1rxAa6MnU": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12SKVz7tGi2YecsFSzUWeATVzPbjkKSKj2ZH5wvo9RYf5KrRFiD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SKibFERJAXTBuT9PH2PqjzuyUbbqR3Tu4a2fTQ1FuGhHPrjDv": { + "balance": "5086.630923429", + "bytecode": [], + "datastore": [] + }, + "AU12SKj1mXjaX5VmiJpbG3jr4BxPs6Cj2LMMaUkhN9YXghr2pkhxP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SKq8b1zjzMma5s24wZGh7ybtUnFozq9MKSW4mSshEMLujMEKA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SLby5UkqVT6BD66iae6sPBy1SUxQyHnK5GL4xkoFHMdZ6MUip": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12SLcuuM33t6vrw92gVNo4Eb2VS6VTK6kBk9WV6LdvhgS5ZU8DB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SLeVk3ppgExkCim1fTSaAcFn33Pz7dtrMYfzsaFAQciwPQVLs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SMh3oYrK2FjmUuua2AXEnU8pMdxTtNiwp4Z3Jm6izuTR3dSxP": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SMv7CxAWe4YJ75ne9y8x5dvx8emr31eGJSRM7SquprCzKHfSk": { + "balance": "234.866288243", + "bytecode": [], + "datastore": [] + }, + "AU12SNFGRK7m93Bf2dHb7RoqCJYLv3VnhXLzYvUb3uUkJSS3uyhN1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SNNY3oDa6zUYMyHWFD9RqchtXN5zyP1CPmhUSWZTFzDv17yTG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SNPh2GPT5J4rHpq92qDKhrFe7ZZCjw3jhspuUWV8nA1dYtdJ5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SNsRtcRzBjvQEhZH5QCUTukSRhCmF5R3skK9zNd3fsx4GkjVF": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12SPbdeGTgg9CxE2ikoKEgLTxnS4hi7Q2TjV2r9ua4cHr5mj88A": { + "balance": "577.430703949", + "bytecode": [], + "datastore": [] + }, + "AU12SPu6yYHwwaADzjwja5bUyqsotvPxXHg2f8sd744DVe5zUigbT": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12SPvriEjC6Dqt7dJAQfp9EdwASxjBx35rQMbYKcEWsKZXzGELj": { + "balance": "1390.262995802", + "bytecode": [], + "datastore": [] + }, + "AU12SQG7NXKGZ65Mg1pNoSvTYP6BoPdKqmwGXTCpmZuXvwU7U9D67": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12SQq4hDmczS1qTqF5wjkj4hr2XimMM1ywbkjeEJuMWkBj3Si6t": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12SQvLZnuguhRaBAP1s6LA8UVnWKjqAdQ5bDFDDajWZas8J2ErD": { + "balance": "1203.987350802", + "bytecode": [], + "datastore": [] + }, + "AU12SRA2uTTWGQ7v5qUEc1HXsS2DFD1VcPjAKUvezhx6wmmBP5iET": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SRC5gLPioLYRW5aoaJUjqmcqQNJEuSf5Z5LFma39Q6TX95yL8": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12SS3heAEb9K6MDkBK8rWhKbjeb8dLyfqqsSFkGcziQDBKPcFfR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SS7K2JaQFvB5pE5ZU4nB7c2RmnJVWJkPjEEd8m79YwjCJBf9c": { + "balance": "2472.788217120", + "bytecode": [], + "datastore": [] + }, + "AU12SSFLPnBuA9RdTygUTmEP6osex7Hy6R2YW2dguCLZF2WMCGNbc": { + "balance": "6622.660988625", + "bytecode": [], + "datastore": [] + }, + "AU12SSUaBUkKaPPrdJwj8P9vWpREsi7pep2mdcG5bf8L5igrtNUow": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12SSWygqeLp2dshFjwxMzeCE33xUrhqGd4s7JEmbM1vCKsdA8E9": { + "balance": "1357.278629966", + "bytecode": [], + "datastore": [] + }, + "AU12SSc315uqziFmad3s9ky2aKaHrNb5vz5ePQbUMYyzKBnE4bhge": { + "balance": "1997.986856205", + "bytecode": [], + "datastore": [] + }, + "AU12SSfqJfus1TSvR2UpbSL9kg7g8ZrKJfZBeX3JK5BPe1EPeMuL5": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12SSyXoX3kCjPwFPWUhUuiPBdbXTey1sQRw2jQh4eLxVJP9nfB8": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12STNVGU11dEbbMvVeHHW3Hw7HUA7KNLAYyRodSUH67UdRMW7km": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12STX37v7hpRrcVnou5Uqaqu3DHZRP8boziw4JyqRyEqEsqRBvB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12SU13uqn16Wgg82Tidsek2GnuRYdiFAGdbmrZUEG2L8jXVAU1r": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SUC1A6xw2FV9HJUuy8uWnsd68zzzyZyQdG7TXJ5rFunCSFbUw": { + "balance": "1598.922037646", + "bytecode": [], + "datastore": [] + }, + "AU12SUCythJXoKv74UDsTqm7h82Utc2xgRfxN9NWKmvLubxhq3RRG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12SUDFjAtE3ZSdKSBQQtneuuNAKsT8cxnJ93sSpqQdu6C76NnTY": { + "balance": "1419.435261815", + "bytecode": [], + "datastore": [] + }, + "AU12SULPH9jTL6ymNefvJTghocdBCaBMYwH6ZuDdLC5XUeD7mHTzy": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU12SUVstKDMi8QK14UHC3NoAGTXewscDcmWQsRcHv7HGSMzk2e2s": { + "balance": "2092.664423814", + "bytecode": [], + "datastore": [] + }, + "AU12SVXxYrKKTCM1aLccTr1gpciBzaPLMXY4ZnBHhxTAuHaguN8Fy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SVgWxQQW893q4oj5G6EqfAVgwf4K8u7Cyh2AEXwkf9hiAJPLf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SVhVhaQXrfetWGkJSiAe2CN3X9mRdBmpWnh7k69DfRPMpCDHe": { + "balance": "1177.670761392", + "bytecode": [], + "datastore": [] + }, + "AU12SVoM8NwRCPzMwS89p9U78euVJP1a73h3BrVVLL4Qz7vbBHhGW": { + "balance": "1239.093991634", + "bytecode": [], + "datastore": [] + }, + "AU12SWz41zJ4xQcuTx9FZmvn7YwzHHdb3wpkR1jooogkErciug1sS": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12SY4V2jYJTgibjjoWvkLkqU6pcmUwar5CJExGXEHRHyUQcH4jP": { + "balance": "869.938761936", + "bytecode": [], + "datastore": [] + }, + "AU12SY6aP2h17ujH45g4HmJTkLzFSRQFf8FaQjJaLTaMv5YeFUbV8": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12SYLzLf2eSdRivNzKb3nLQDZFcPf3aiMPFbsicY518a1GNmCuo": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12SZtN453KF8Yck7uw9SmXwih5E6sY5exyvwyJuBthgTFs2hoED": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12SZytJbWm7MKnCpPGhchxtXy3BDoGu7EYDPxxuJPF9UoUuiroo": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12Sa2UE4wGCoj9QAbqay2PNwrqnp7gShxREvPFkqbpj3gmBsZRu": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12SaDL8wnvpNSh7sJnFWr3tbC38iPQYLS7YDUPo9kZEfdDhvQfv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12SaEogqbwiQXig6FjnTKq5CoJF7rZkAEqmJDAfcdr4o67kNrmn": { + "balance": "4807.249447331", + "bytecode": [], + "datastore": [] + }, + "AU12SamjNDhTsAMi79reKhsWKCP6aLNGFrbnwjeCbwgVuicGHA9Zg": { + "balance": "1193.825096902", + "bytecode": [], + "datastore": [] + }, + "AU12SasNRLPZuwowvPjwWaWTXx3xuwDXysRx7KFUwDJKRr9z1yShw": { + "balance": "223.557801530", + "bytecode": [], + "datastore": [] + }, + "AU12SbK968B8q6Yy9SbfXmz1pLiDWKiVW6v5gB68ZfgckVs4qtNef": { + "balance": "4.859160699", + "bytecode": [], + "datastore": [] + }, + "AU12SbgeUM8bNp69WW1twrqs6HekdeR5Yc8HRgDEPZ1cuBPUTo274": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ScmEv4HkgJk86L1GUmH9A8mcVRs4KVGEfAv62uCq4V7f7Xeat": { + "balance": "2405.282875277", + "bytecode": [], + "datastore": [] + }, + "AU12ScpyXxtWtb8gTDFLFSnbhbpxokWUfqEbJBhRhMM4uJG9RDBgi": { + "balance": "1764.576151490", + "bytecode": [], + "datastore": [] + }, + "AU12ScxUkaumGrQqE6mTDzV9M5kf2QgkPQRNR1jREf61ru3ydPBkU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12SdETk6WdohQGmF2bv76uJbdiw6pomVNKGQVC6v65G56agkH8J": { + "balance": "1430.252201844", + "bytecode": [], + "datastore": [] + }, + "AU12SdPzopPe8BJoN6FMoAN8BeqswR5jJ6MVDxuiW27p1ntyLNb57": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12SdR92V2Vt8Mb79XqSRefq1i7uuzZSeDSoZfacVqMt8TSqG4ik": { + "balance": "4055.647854307", + "bytecode": [], + "datastore": [] + }, + "AU12SdUxC1nWCABuVfdsijhQMQtX2nTwSFG8MqNjqpsSQFcw5Cy3u": { + "balance": "2226.483574120", + "bytecode": [], + "datastore": [] + }, + "AU12SdiSXQ2k3JZNdq8xALdvsjvgexhcwWuSX9suh6Mz4VUXzP9uY": { + "balance": "774.334106475", + "bytecode": [], + "datastore": [] + }, + "AU12SdpRqXbeCha6TQxqxtXVhKb8sMaZPMoXzE2jAJ91MEEGSgSqM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Se33QzzsMNRdAqopSHYSDFV3HgjYo8gE7RM12MYhC93H5d6oc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Se92gPbpXTKQoX757P1B4q5qBoxPzE6v9EE9RNuV7y1U5juHg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SeDL5haNck2pQrJxBLKJLzwXocuMfj4emuB3mS2q5LZvCYTLV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SeH7xFNepEXdYRDHjTtrEQqAmYqyNxSvDydTW4VEEqohcoCXW": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12SeQT7BoJ57SqfH4FHCyt2o6foSWuxkqpQv4hZQHurpGEu6vcw": { + "balance": "5766.663810188", + "bytecode": [], + "datastore": [] + }, + "AU12SemMRTjBC4zYoEiJxArNMzTBNdV6277qigQx51Uq5go9REFRr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Sewz43JDu37j2zfEHtdG7Ba3W7sh8PzF357mQbx8QP87VTMaa": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12Sf1Z1pLoJUCxaERA5hRmAMsS7GonjRUUyvZjMwqToNqDhpgsK": { + "balance": "1833.370678457", + "bytecode": [], + "datastore": [] + }, + "AU12SfH8VS2kxXaTXvfm6RaJxQVEikWjPDBFCk6vLz6HwJDaWxAXW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Sg4tPM2RqDLFkHvNq5hqP7PZ1AePxJiHGq5aAyAoLUyN1ngTq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Sg7Yh1ppSpJ31h44MSqkvWchnCA1m6RBwPY2DCM2jMKBSWdDS": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12SgASnPeg46m6r87Tguh7fTxtdsiXdKhUK68dGQN7p8cTKuCRA": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12SgLXH1kHEEEkTeEEqXo3NqxXHq3JjWiuSP1wP7WKWgvGwRsxM": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12SgMZDgNHXc65Liq9Ys4eQQ27Pjwq2hpL5KBeEMtaCU5Ev5v7u": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12SgfsG48HJmBVYxpQyQ97x4nrJK47TWGyF3g2UsgMVwrBd7Gzf": { + "balance": "2540.975746651", + "bytecode": [], + "datastore": [] + }, + "AU12ShRhgGgdsETwXgNStumtBPW8Dv7Dx3uZZNnA3Qu7HbVqjfKN2": { + "balance": "1318.501356157", + "bytecode": [], + "datastore": [] + }, + "AU12ShUuzTwoW7XXtkzJScNPvNZAgwGuCBMVuwzkq6VrJuQqyaWXx": { + "balance": "1022.323115343", + "bytecode": [], + "datastore": [] + }, + "AU12ShXgDARArFaCiu8hK83bog438jRbUTdBwLqTt2aF2dnpAhDhH": { + "balance": "1298.597538076", + "bytecode": [], + "datastore": [] + }, + "AU12ShruDisdgyunak3qS2tdoLGzscvyp69ZKhb8X3CqtXovybRBV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ShsF6swTHHXnPkWwRLvpyHcejY2eDzDMFH5qHnqEidWowxv2Q": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Si6JXJg2qHSaAwbuZQezWwQ2ezonwfxu4Vsfi21Mv9u4onAHt": { + "balance": "3913.804962766", + "bytecode": [], + "datastore": [] + }, + "AU12SiBjvv4SYhEvVbQYpoL59TkTF6RoC7QaMGMLhgvqBwqUsUjoZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12SiCzBQrDgci1SuteUSL89GR9y2Vr2asYKtjo4juuwt2v43ew7": { + "balance": "37.534092896", + "bytecode": [], + "datastore": [] + }, + "AU12SiQkm1ZBv1nzHHH2e9KDpvLXTooNfbDgH18edkCpyETC3obt5": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12Sijwwtuf4wutVGrfspW2FuZ7d8eeJKac5LTQ4RG1tgJ9HasKP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SjAoP2gtsNhmpbs9Jp34GU7gH3q3YE3sm34FK1ZejsAiXFFo4": { + "balance": "1334.108018276", + "bytecode": [], + "datastore": [] + }, + "AU12SjihRhbFRx7YjjNvTms2oSJcSKNWMbvzLUM5pRS38jtHefxdB": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12Sjoz9kHGf2DRQPXpqcxv9mavRBPAS6zcNjFsUtMzpPnkGghDT": { + "balance": "1492.502133865", + "bytecode": [], + "datastore": [] + }, + "AU12SkMMPzVDZpasis7WEUdXEgVKPkVUmSw9aQvjSBouer7hWK9GX": { + "balance": "11433.113170706", + "bytecode": [], + "datastore": [] + }, + "AU12SkaX5nvKpUAGF7Vx3s66nT5PMnUw2kXXqreFbAR6iJnVxCijN": { + "balance": "1963.496464961", + "bytecode": [], + "datastore": [] + }, + "AU12SkoAmB6SUZ8NNamWKhH3mHWQmCzNpATZJnJCoNNZvTE2LLTvi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SmBXsbZt2pjfonVKgHd3aQArGqtKjye5iZ2qLzAot9jGb8AMu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SmrWh5zcFzYNKvr62KmNHNWrXd18HKsyKF7GUZavWqTeZhY9x": { + "balance": "1230.091157670", + "bytecode": [], + "datastore": [] + }, + "AU12SmreqyvMAv9YtRP1Z279DbwAqzsMdQK5PjG6EzuDNy6Kjef3m": { + "balance": "645.033398885", + "bytecode": [], + "datastore": [] + }, + "AU12Sn1HqrPVxkDN2aLUzcM8KxwvLMpFWA61i6upQR88ZwKYDdxfX": { + "balance": "2160.150454067", + "bytecode": [], + "datastore": [] + }, + "AU12SnHcp3LdhAzxdNSXDsCoULj9FMb6qbDU4GwAo9SaqAR794cFE": { + "balance": "1000.637073314", + "bytecode": [], + "datastore": [] + }, + "AU12SncAG9zg66W6gLMT2ByJRN1Y7XFyRojz5rCHJmHvHWMLtXi89": { + "balance": "1687.203793678", + "bytecode": [], + "datastore": [] + }, + "AU12SnpDqTwkrcTAinrGqoKKaittm7vpEMJ4RBmoyarWd3JDk3k8Y": { + "balance": "971.503071557", + "bytecode": [], + "datastore": [] + }, + "AU12SoG9iTBHDeyQ2y6vZVocwioBHW2HmXG4q7mLFnyDZo2pxb5wF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SoHBDDQJ4wEt58ayfpFDSbMc114UbUdVSJG3g8gyoKLou7TuP": { + "balance": "1291.923670713", + "bytecode": [], + "datastore": [] + }, + "AU12SoQGiD5SFoZpRmE7DaryyGehFrjE2yV7AgFDFd7YGtBJ56dVx": { + "balance": "2130.172083594", + "bytecode": [], + "datastore": [] + }, + "AU12Sp1bCWZUZ6nkFFZX47kW5f1SMQjPCxuSL6tL8mZ4qiPDmxBJU": { + "balance": "990.636085479", + "bytecode": [], + "datastore": [] + }, + "AU12SpHTTNFQZwKrPNmGuX1WGchGdsvJDGE5yJnvHC9G4Y3RF4zz9": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12SpmJ4jqMtBzHrcrRS6nd2iBaNDWnpWnKuCa7WNc19HK9oasn5": { + "balance": "1358.444536480", + "bytecode": [], + "datastore": [] + }, + "AU12Sq8mHwiPnkBHrwtHSg4Ji46WmTSAPsVHmdmMXNXeGYjdQP9Zh": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12SqCHxXKT4vwu3n9HtLnjcrVcBKT1Vqi8RQ3cCNjDmqSywnDiD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12SqgLxr1DH5hfh6LE7vW7B44fAh7efzfkydYvuptdBKd8aCv7v": { + "balance": "2576.216440339", + "bytecode": [], + "datastore": [] + }, + "AU12Sqk5FQ2ScA8UozyZ1wfq61Kz1XyuhzFtGaY3b8qe57ytVva9b": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12SrT7SFvbLzYChbN9zmQ7anusG1qunHB5oVsKReE6JRPiW1Wu1": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12SrWQnHFcVg6bajAQy8wjNS1NPXLSDFCj9LCK21Fs96Jawao77": { + "balance": "4197.330100125", + "bytecode": [], + "datastore": [] + }, + "AU12SrxdmXdEFh7S4Sz8UfVGmaM6S6Xus5SvmQ3mn5YjLojNryckM": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12Srzs8XUxquNnxZ1s3FyuGsaySXDEAP5PoveLHWVubq35WXraq": { + "balance": "2394.331398718", + "bytecode": [], + "datastore": [] + }, + "AU12Ssaqt6Qzghettqd2nFDVFN4CLZFE2eA3cWnEg9nAnqJgWMHyw": { + "balance": "3377.884963837", + "bytecode": [], + "datastore": [] + }, + "AU12SscUtpKK5Pmsi6Fj3u9hGM6uX9HAzZJhBuTMomiHhAi9rGLAP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SsfSF92eucv9i9UzVVTrdrQftMf139vAYXLErz7rbx7qcLduc": { + "balance": "14.548912373", + "bytecode": [], + "datastore": [] + }, + "AU12StLZzeMW4onbPRyUAZS2hojLFo3tvcGNU5eUcc1YnaJRWAznn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12StMMghriDqD8uLUZy4ygaKyYGbEs7KfCLZijAYHNP3Bq6Ni7f": { + "balance": "1476.974436879", + "bytecode": [], + "datastore": [] + }, + "AU12Stiw1RMKnRFC5NdwmN27bWi6maRBSWjngiCEg7MEPseHXEjQ8": { + "balance": "923.874950476", + "bytecode": [], + "datastore": [] + }, + "AU12StsVQ8miShgqmSWKqfzkkXdkhWXoJKJBR987Cgwv14kgrUej6": { + "balance": "909.972676102", + "bytecode": [], + "datastore": [] + }, + "AU12StuP1LK6xCNtmKKVZBmoxjoZ8UjoEgGx9XNDLZzG5fpS5uEoA": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12Stz4PwNQiKGg8qSGSZKjgLL7qtLiKGPhAmgHQZfbnJam8K6Jj": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12SufhnpUcHkFJQHfSXZpGXHs8cKEQUzzQjn3UAFYT5P5VrhUK": { + "balance": "2129.822650057", + "bytecode": [], + "datastore": [] + }, + "AU12SvgoKEoce8iyF8RkGBx6tsQnTgLRicv79sa7eGTkn3j8eBggL": { + "balance": "71.584896054", + "bytecode": [], + "datastore": [] + }, + "AU12Svuqus9gqyURUTTv5Uqvwzf9vwM5fhe7VzMFT9oBUdr7i5jaD": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12SvxfJxrYmn8xpQmbTFdpMD8gL2YB7NQx2MeM7QMdLdtRVZTBV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12SwEzE42DuSP5G12BqRRtGeGB7ynEHtwNXL9wq4YytESXUjGiD": { + "balance": "4649.743153389", + "bytecode": [], + "datastore": [] + }, + "AU12SwSRpkn5BRSfqfyhyKeWRq88kRkyBxWmYwW1W14c36GrCxwcF": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12SwsTtK4BCNA5hbSePuC1cNyrmzzXpSNoeZ6he1sRPTH5GHBKe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SxH7oZPZ33oXYcxoKyfZvXK5815fveg6QGxHpvCajnzKLTS5L": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12SxXFi2n4FmhpbTVYWb3YJanaC9BMLkjbxgjWhhX3PCcVDz4yQ": { + "balance": "597.167831652", + "bytecode": [], + "datastore": [] + }, + "AU12SxkjN62S6bkE8PPnyAAMj8gtgoSwQJyhnFnWjBa3H8z6zvJjC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SxrbhFBDUk2b5CZyVr3MRns43Cgfr8BEU92jL1Kr4dQrM5wTB": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12SxsAmYs6He5E6hrkW3WGqQLX4AvY4WTB4133XQmnxTEZisuFW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SxuaZ8mooU8msFfbS6EQrXMds8UhUFA4ynEeo2xJQQ6YRnc8R": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12SxwNRXz9PpgD8Rt7w6NMEbEVcGhRxYxiPULQDK91imUwXy9zt": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12SySgGxrKJj6hSrK54dNMi8wEJrRfJiVbTiHQAMzHdNKCfbBt7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12SyULNQiHfjjhB9EDU5iAe7oyD9bXeedtQfXpcmQgNs3KFaXpH": { + "balance": "679.105502752", + "bytecode": [], + "datastore": [] + }, + "AU12SyUxq1aDeevqNxDBWUyA7qGBWJKXtFsVB6mec8vCZji8uTvzj": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12SzQRGf12kEQLEvSsmQu8pjNFsDo6mPbMLvugwV98yLVgKZvyF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12T1BdrLfrhHZQpTjNihJF9AXbRoYJ93AbLG6TJzLp6pBW29JYR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12T1KJA9YBiCem3Jx3Cizah1E6h762XL2KtRRWmsWqzNV8DLrb8": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12T263CCUK715bekFCppJR4b6z73uZR8Hj5yHkKMwA8zJkVwsmN": { + "balance": "582.572681089", + "bytecode": [], + "datastore": [] + }, + "AU12T2puwJUEYoHbt4BJgre7YfmfpryvNDh3Y3Aoqj2jpEyRT7LyM": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12T2rxDD8HYoXKzsC6gpQi1af8uynLGkh2h37z9UHdFbeqmeupi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12T2sjWYtfkghs4phwab8BWYrqAz51ioi2Gmxfnb7osQaDHmmc5": { + "balance": "1108.654251628", + "bytecode": [], + "datastore": [] + }, + "AU12T2vRUvXQRRozo1xhKaLJUhSxM8CQdArJKsjNVUEiAAvr91AP6": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12T3XxE4HNKg5FMarz1QpMFcjRu4n7WwehpdqEZVTkf1113vsK1": { + "balance": "4655.530778627", + "bytecode": [], + "datastore": [] + }, + "AU12T3hKxyVWj1Q2bybvWHWcYYUeYQVLdmd6EMcEAvP9n3Xj1fzq": { + "balance": "731.954345303", + "bytecode": [], + "datastore": [] + }, + "AU12T3k6GvsdPSWAtwzoNSniWiMYNvxsfQcJwPdDDMweRwsAP9zwv": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12T4EFpBhWxUy3GGyC1Zvgp4kAYQtk4VWAgZye9PrD38cxCGQwS": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12T4HbYNs6nVJHJRpZx1cwH3fxDMiVknepAu7ukd2sWUhCUMPKb": { + "balance": "988.926887936", + "bytecode": [], + "datastore": [] + }, + "AU12T4JK7JyeCiGZwRBq7d7FDjAfLBdDfAp4g4iVvq74huJYUeYys": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12T4YFHhRqn4p6ggnM3TWViVFHKNMi7rSc27L1CUXHgad5Med3R": { + "balance": "1689.289248626", + "bytecode": [], + "datastore": [] + }, + "AU12T4hCNSNMmdHpso1d6aUqeqAW7KYaFigoziZfvy9CwDPr6JV4d": { + "balance": "1199.128804272", + "bytecode": [], + "datastore": [] + }, + "AU12T4hPr22fTniaePghW4a87ZpHbHxMdgHNGiuiKFUhZQ7qnCxr9": { + "balance": "279.926112266", + "bytecode": [], + "datastore": [] + }, + "AU12T4zvAYr3zGiuWzsvacgYmnSdjshcm39Sb61717cJF8Lw9keKQ": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12T5EMYp13eRm68ekMErBzRb5CZGSNNTa3QtfaUPo9432WHoTA6": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12T6GGzqpVkGrPfFx7mwPvBrGajqc16Jvsb9fmc1o8sL22SriDR": { + "balance": "1000.183341057", + "bytecode": [], + "datastore": [] + }, + "AU12T6SCZcHdfgVYQkyGj62YE8ethk3MdYjEWEA9rjaVSGrCREBxQ": { + "balance": "1308.591158215", + "bytecode": [], + "datastore": [] + }, + "AU12T6WDd6VffmS5Zuo93aKQZiPmmybNYqQu78GisDat9p2oYyyx4": { + "balance": "530.379876908", + "bytecode": [], + "datastore": [] + }, + "AU12T6sSrYmTprzmVKdh4BrXXstR2xEJ4J7kvaPcJQ3ZcB7oyh2WB": { + "balance": "615.686131456", + "bytecode": [], + "datastore": [] + }, + "AU12T79WrsnfKtwNcT21iaMFMigSJEG3Td4qCoUwBTJM27Lxcueqg": { + "balance": "929.969058825", + "bytecode": [], + "datastore": [] + }, + "AU12T7D53MSjQP8SCG3VYPf7uFmUBqa1HnEJXu97maBmpg8orFPEw": { + "balance": "31.371817530", + "bytecode": [], + "datastore": [] + }, + "AU12T7TPKDzF54QXnAamNb9a4RGrE9JjLHQGN55dYrBd287GPx7HE": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12T8PCgB7AhtbGuJJG4TXHqmtnbyPc6g7gByxfaYwfByvmCYJW1": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12T95ATPXbzVt7HBHyV69gmwycrncuBcdTMMrt4GDxGV1Qh9jgX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12T9JFaDdVuiqQYtc8vEbjgoRFVvL8uH4yHLFaM9BZHr1u5GjK8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12T9Up9edGGsJ1QQGRWhA4si1LdiAABCLNsBhtfFfX7JN3bSQtP": { + "balance": "1627.739774401", + "bytecode": [], + "datastore": [] + }, + "AU12T9c91tvUEAz53xSreFufTfuYjEi2fTaPnLuWfLkSQXhJEDeQs": { + "balance": "5514.351132161", + "bytecode": [], + "datastore": [] + }, + "AU12T9chxNHSPauEeWP4oN9NeZh4y5NfBt33F611id8VgsYFBBfm": { + "balance": "1727.676940755", + "bytecode": [], + "datastore": [] + }, + "AU12T9orrSfYsyT69TDFpPLBnmKSEN59QfAhbqMwKZ2fA5qZPvtAb": { + "balance": "2165.534069673", + "bytecode": [], + "datastore": [] + }, + "AU12T9tQNxrwDmHs85yV51UqrdGQ4oex6z1wxtt2wcqwf9n1oYhpA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TA5Vrf5rbtByXYvCPKuii5T9KQh7HeTBcZfG9WwPU9j8uk5Z4": { + "balance": "613.823784113", + "bytecode": [], + "datastore": [] + }, + "AU12TApQrgx83w647NcV3kXA2mVTR8HUXKbHV89NU1hHNbSMVNVXk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TAriU9T55BgFocZYohH623mp1pU4vPXRk7HR5SX9Cw2ZA9swe": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12TAy4YqqvVFBAqTqDYKcNZQnPi4GA5R5y7pV2EkfsfAmAxuxtS": { + "balance": "1566.580370442", + "bytecode": [], + "datastore": [] + }, + "AU12TB1M46vjT9HjrCDc4JfQbcuEEs13JNXiKukmgKcTzxr7MF2cL": { + "balance": "1149.017258450", + "bytecode": [], + "datastore": [] + }, + "AU12TB39YPxwMDZdpESzcmB6wg3saPq19eyPoDJ3Wb6k5FpamUyXS": { + "balance": "1555.555254957", + "bytecode": [], + "datastore": [] + }, + "AU12TBLDhvPPsr2bj9o1UFfE2iKgLVp9xAxZAQ6WB18QwBJNVh3ot": { + "balance": "4535.173448929", + "bytecode": [], + "datastore": [] + }, + "AU12TCNYze8xwJN2NALtJv1GvHpC9YetPCHvk6Fsqq1y3WUBdr8Cs": { + "balance": "615.656338087", + "bytecode": [], + "datastore": [] + }, + "AU12TCNjTgRxH6cvCc9DS4fXqiqEhivps7Jbs6z9Y2A9utudBq2Di": { + "balance": "828.820292608", + "bytecode": [], + "datastore": [] + }, + "AU12TCateahnZbBLF7SdxcHXCJZ2VRxR3uqp5ePHC3R4Zhd5WpVdd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TCnWdFf43tzBora3HAq4jGdDGd6HFZ6SUJt8Su9tump2gJPxT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12TDMEFLnf2hdPSQwfNwUBZZMvnpbHcLptPoV45yxapsaRQp62E": { + "balance": "1386.224994206", + "bytecode": [], + "datastore": [] + }, + "AU12TDUXoSyeioYMS8vc88JT6epH6GM9SKr8UUhZNmJt1MYza4XPS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TDd7YpaY14MTW5fnxMjSK3pzvdGnEdSTyv2C1AkTx7qwXNEbT": { + "balance": "1867.952832492", + "bytecode": [], + "datastore": [] + }, + "AU12TE1bq8exE6R4TeqqxqTCbUjHdFt8GqRXBCei35yZbUfzisZQJ": { + "balance": "3493.910305132", + "bytecode": [], + "datastore": [] + }, + "AU12TE5cmqrooudMPGtfAnSJNskctbqUwPGwJQRQxYrJgGbEF676N": { + "balance": "735.458300115", + "bytecode": [], + "datastore": [] + }, + "AU12TEQfSqUzk4jhXE9pFY8VAmS4bqxpMvthCKPQgvox9Auf9mnDa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TEjhMNgVzRbPZ4Nwqf7eXbYN3BvNLoVBRXa8khr8X1p8z4NnJ": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12TF1yfJJ28VWKvVRJTDW3hn5ZmQDzMB2QLbuXpBMhWnvmAEmkD": { + "balance": "4608.048412700", + "bytecode": [], + "datastore": [] + }, + "AU12TF2sWeXevVtFcGsANkhwyDcmxf7MSmRXSBuDoEbQk1rKuhQ3F": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12TF8K6tKQNBXn9wwSZFPXJbjuhzhwKA1pHNjr3wRJYAzq1V6QB": { + "balance": "2587.749888794", + "bytecode": [], + "datastore": [] + }, + "AU12TFHVEBhdqr5RyktpWTZSsubvTGMESeaCvoVNnMrW2oV1dw4Ui": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TFVFubnWaX6TiWZLeGD4Dg7TFcrdMUTerk5sXGzHN5poFB2Sk": { + "balance": "3125.722519166", + "bytecode": [], + "datastore": [] + }, + "AU12TFjZFDm3EMN4YfgKUL2CYsYxZHc96VEP1eS4xrzjdR5JddiDc": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12TG17siDDvzaJESMGZgzbzzba4G4FsGkJ7z1wXXCsh9Qd1Zv4p": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12TG1cDRGj8G3oMRtcSGMBoyWpPba3Hz637RqD51Sqv7HKbyoQq": { + "balance": "2445.133593293", + "bytecode": [], + "datastore": [] + }, + "AU12TGSFpn27Cnzxb6MKcq6ybphVCchaapgFKpdSHXvCHLxmeegig": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TGe3ZtnxQrKTc6Lq21FsS9JF2ExY9LdkGikvsKBP5Ts3REoHv": { + "balance": "3019.427709415", + "bytecode": [], + "datastore": [] + }, + "AU12TGkYSv4ompus3yv3hRo5WiJJyoTQRLPmYWm5csRzDuFs9qVF1": { + "balance": "251.093418629", + "bytecode": [], + "datastore": [] + }, + "AU12TH5Dho5BnRvNd5G4myFsNLFfMx6xESiGT56mxy2SUj3DmC2Mi": { + "balance": "6313.891740747", + "bytecode": [], + "datastore": [] + }, + "AU12THvLN7mVPbh9fARNoPLBog3ewdEkWME9m5dwvtmvZQMrDbpnJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12THxpeYRfj5L7UsH2UKak4kZeg5bFJZCyvQGxq2EjzMJWoHnso": { + "balance": "1500.519661672", + "bytecode": [], + "datastore": [] + }, + "AU12TJmM3QFxbZGDSp7WzNnGwHzcBRCsfmXQmpkWcNHKSPGqoWMxC": { + "balance": "4277.838297473", + "bytecode": [], + "datastore": [] + }, + "AU12TLM9tzYyAv73g3hBtjziR2MaPtQNj1oGyMxb3xuZbZwpSgf8Z": { + "balance": "4857.434124881", + "bytecode": [], + "datastore": [] + }, + "AU12TLYceqgFqZV3n5qqfCHosq7orjdJWscXHYbNEZBRK6fEfUJip": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12TLoJFFcA9PyfUiRm1wHSHsSry9SPgR1CgikKFKhFRVhXDCan7": { + "balance": "2857.586130237", + "bytecode": [], + "datastore": [] + }, + "AU12TLvayeyvtoV4GKmtN5NXrKLZ8Knrjvjf3dh1rzav7xdZqQfoQ": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12TMFb7oW65GmYwSYW6FqK9hJMbDiWdEnNKoQczHcShJZUQFHfe": { + "balance": "1608.259441747", + "bytecode": [], + "datastore": [] + }, + "AU12TMLeBbgzdxGv5ZykEGbFp4LAgVGLvDHv6uJetfAqF1weaFe4w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TMS4tFewSuk175JVb1BWFsuFLeYP9vRMyENakNbcHFw8kfcSv": { + "balance": "843.008980144", + "bytecode": [], + "datastore": [] + }, + "AU12TMg8S4HKGHa7mW4P78bPiNBcQGtnuBEwyLPsRwiYXer1XMBJn": { + "balance": "1474.339198863", + "bytecode": [], + "datastore": [] + }, + "AU12TMitfj27VGSvSQdA34VqPhq9Jn76ATYCVHXLmGsu8N67Ybe2v": { + "balance": "4520.323380837", + "bytecode": [], + "datastore": [] + }, + "AU12TMtjfXUcdpZQWgYjmReU5neT1t2ve3e5c8xSu6SyPCM5LXGqg": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12TMwXJs2msBn58DFZRcpnDyMtEpCc5EipUH7nVeT2f8LEEpc5r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TNr7RctvJjujEywMaWnaA7SxMXdA1a7ZUJVRZNRuP8n6Dzb3v": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TNrweVcQY6DR2s3bCVEg7zMm4kULigSBnmPtBVQYbE4eP8mRJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12TNwb5MDk9S1kYBEFzjT8AjfyYG7sYZzjZtQsiX8Js1f7GZajz": { + "balance": "869.409813497", + "bytecode": [], + "datastore": [] + }, + "AU12TNyo5NSGdwDZ5wq1ZMPSVyj2xY99Mv7nVAwv5nLLgRf6RqKKo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12TP3QRF8kRXMaDMcS3EUM4tA1gAQ3SdM6BEs5biiSXrrmVGDh5": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12TPmP91VvRpdGoHg285ebdCns14s2Zp5dfxeCG5jaxhiDmsmyd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12TPoMQNErGmrGi8ADWFGddiUrfAxtXS2ordXUxopnMTeZxeBP6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TQa39x8vNJt33qjJFuaMWNvQKf3CHYwCQD719oAzWPSD7Qpvm": { + "balance": "3489.432716172", + "bytecode": [], + "datastore": [] + }, + "AU12TQrh98zouVPSBuBT9ktcSecKGcmZqXFfKgv2N14pEGqJyNYrT": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12TR6CXKoVWJTFvWaR2yo9CDzpZkZtj7vhPQyDmbvm16gXM6AvY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TR6YVwyUnBmjRrr63HHQtmFDC9Lzuk1MvcG7kp5PwSVJcpvyY": { + "balance": "899.911120231", + "bytecode": [], + "datastore": [] + }, + "AU12TRnWv1WLPMtzGhamGkTTCgHpjKbhUi84mcvtdJpAgKpaRbnrQ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12TRp866u5HSp6b4nb8R1jsTPL5PeHEEJxNhy39xeyxktZchD64": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12TSvvS16Fgv5YujXLN3BFqNWYRrP2ptKcWmPZEH2eT3rmEisWk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TSyubvVNZGGzwXo2nfDhrxfxK8az5LR7t5iyjg1AwFCys3oxL": { + "balance": "3163.368106392", + "bytecode": [], + "datastore": [] + }, + "AU12TT2Sck4A3Y4ZA3PSp7gJtwF95grZ4u9hXoWqvfWAuvYobaFM": { + "balance": "1163.121838286", + "bytecode": [], + "datastore": [] + }, + "AU12TTadXxjpfoC6HEgHRs5oWUZSwc6sk8gszoXpq1XEKdpzZQPfs": { + "balance": "846.291651419", + "bytecode": [], + "datastore": [] + }, + "AU12TU7i6PUQJGc47zCP5nHrtQLBYXxEPNTYjuZNiPXPdxhQ5MR7h": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12TUSbbjRiodi6jJRXBNMdjPAcmAQ3hjeHACBqnvpwst3c9VJrJ": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12TUiGit5ybWD5kPnY6gQyR5nPS3eFq8kbAH3VWGkyQFgsnikiu": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12TUkKUAQSyFtL6Ago34utBMY5QCvC3jcvEr93xAV6VLgrNNK8C": { + "balance": "1247.106460886", + "bytecode": [], + "datastore": [] + }, + "AU12TV4pxqdiU3HcCJCzdZesPVkbLn8osZ2ftk7JkLAbEJdePzGj7": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12TV7yRpp6UA4MQiZPEdiVi2baMdiFiD9aMk9QW5MHKu5fT1Zv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TVE6jzcNs969GuW3mY9qGz75pzqv1Vyzy3EfcE1BrN2uA8BBz": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12TVTieRn6VY7t8VfpCgv7VdPRC43raaPWNnz9teQQhEakVHCir": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12TVhuMyzRna7Cn2bgsKC3VCNz76NLjjyvDpcosimsk3Hn1QJbB": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12TVvTMygJWf4Aqm4wLPijro5QUMPsFrAYfZdmDs7Xu4CoffSVc": { + "balance": "2276.967360965", + "bytecode": [], + "datastore": [] + }, + "AU12TVz1aPpBgE4Cw3AMUUToSvCx8o6hRimjKAFS2ek19CaQVtMTu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TWob76i4oq4HgKcTuQ6WF7QZoe1ajaZD1a3ZvUAcpgdhgxXFN": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12TXzPNF1tDGP9qk9P3yDX8zncXW4jSWt13XzT7ueTVsVKxHREX": { + "balance": "2697.138542980", + "bytecode": [], + "datastore": [] + }, + "AU12TY4zT4DPVAhy6o9XpoqUJQsg93P9SQ1fDbwxnXwGEwCLNRheW": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12TYHcTy7oG3yTSPwdweR33XM4ANe1oiTkpuVt5c63ZEw51CgjC": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12TYSQju68DxRzfiBkkpo4dNqK2BaDZWBoH3vWeUuW64RnQ6kdm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TYfXiuLyPJo8R3pfx6pLiAmM9mKFkpYPcDL2nBz87ojvfDWBh": { + "balance": "2046.698420742", + "bytecode": [], + "datastore": [] + }, + "AU12TZDVe1wj6TQ9zCu97onzRj1Y88pXyKvBn2piY8rKmPzC2DxwB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TZifzNvxmErrAwukDzvXRZr3EJu5WDZFpfKMw3Xw7gpcV7S7p": { + "balance": "859.196677405", + "bytecode": [], + "datastore": [] + }, + "AU12TZwQ1iXWaG78r2xBfb8Ypo7iAPrnnx4UHkcEk1eYBxAvZpqSN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TZzhmXQST6YUngHtFLUdaQhGabPnX3StQQES6sNyB7Lqvp5EY": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12Ta45JMbK58zEgyTuwCZLjKTsgVwAbN263PiWUQr2dRzqvTbe5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12TaBDoG7SXzAy3mfXKH1z6Npk5fAugwNRgoHUxvnS1NXoynrY1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12TaaR23iT9mA7Rz9fXt7hnyhu8GmZy9wo1vQRwsKCwnDXWCccD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12TaaeB8WRPUNuhxYjT1XFpCCMU3U4yKWfMLYKRgBJyH1WSgXzY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Tabrz7x9NVAa7SUWJhwtaCb2F7oDSNptPbqiFETuqsVDrNPv1": { + "balance": "2650.898798956", + "bytecode": [], + "datastore": [] + }, + "AU12Tad4yVCF5GJTVxrK8xEFpJhKo1vSHtx61526qFaDSXyBAgZDS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Tak2cZTisABDqeH495aqwXevUS4fsdRV1kiXsTpNEhV8wRjsc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12TanxL5EJskDmJaqojUkZ762HLkVMoCTsSeS217uRMBpTxE8P2": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12TbQt6DrrLtrkx2B1nmcf4CzYcdPiy6t185UaaL8qhpi1pEoxd": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12TbVyFGQ6s3EQ4z5odd9Dy4kiVAycRDNPHE8mUEg2bC8pCdnfi": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Tbm7jLyRMphf5KY3R3R8mcsvh1ur9VaDrw9vF2EW2shADYPwV": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12Tbrtj5McMtNJcX5SrCx6mjMdgXcTSiL631NFtb6vt83oLrx66": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12TbsPSkozm74goS62rJyjLWsq64EQCEmnWoeWpyDJCUNLFobqV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Tc1Mmp6ncSA2bfKvSRGSyMTtRTGrQ1eJwJfLmKhgwyudSoLHZ": { + "balance": "4817.135640234", + "bytecode": [], + "datastore": [] + }, + "AU12Tc73YHHDEjmswW83JreRYxWqi4EJyZ6UP9izH7EapdvGeprUY": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12TcEtBRqcTwiXCuXuLrPNYY7PJZhF628DNXSuskREYNsF6XNX7": { + "balance": "1595.762322469", + "bytecode": [], + "datastore": [] + }, + "AU12TcFA4rfguBV6wiQ2wjTDZKtcQDKh5HXtPLJLu6NyeP84kchn7": { + "balance": "1560.587915359", + "bytecode": [], + "datastore": [] + }, + "AU12TcZCuTQjH158nfP1hdBB1QFw9uEfpNDNhhGrtFYAFNmnd7PCh": { + "balance": "4324.996271639", + "bytecode": [], + "datastore": [] + }, + "AU12Tdy8LmSDJjjB1ytckd15dsCxRG1FiR4k3EbDPhB66GB4WH6fw": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12TeAW5isNm9XxbehbYEqzsgcdjSM3aeUL2FVPrNXF4aFxuhcCq": { + "balance": "2051.602255131", + "bytecode": [], + "datastore": [] + }, + "AU12TeUSyAvvf7dN53QFVeuQ1mfW5XLHQdb2AkRYi8XkWkSraHcPt": { + "balance": "4432.822325144", + "bytecode": [], + "datastore": [] + }, + "AU12TfVBVCrPyycdmymcQE39L1quYhNQ1BPbjvzwz282qAG2SA469": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12TffZros8c6gMZJViwMCftafBxqVU4BJGBcxwrkTDNj9jYpF3J": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Tg5BXQT5t9UeiiWw7bLbt8sqgN3cJJTXEJfnDF1bSbLpHSsi2": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12TgWeG2YwwJrhqS13MkR3sd9Y3k4c76jrscqMY7F7A49QxHnSV": { + "balance": "2894.066602636", + "bytecode": [], + "datastore": [] + }, + "AU12TgqzHb92tvuiqKYEk3VmSYVbZFovB8eh557PAC1GsCgqvsJ3Z": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12TgvdZwQRkZCPtzKrwYoCuCXEF8uSqQvgu8BfDKCu5oaXU1ei9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Th4VEpNGuo7jeg6kooqNPFzmL6QVG9EDLuKgLK8cKQHtWi9rE": { + "balance": "803.587444091", + "bytecode": [], + "datastore": [] + }, + "AU12Th8K9ZynJRaBjwvAfmr4py2JMEQB6iDSfnPa2AyzHZXWyeQ15": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Ti3d5v6PQp52uexmyjLS6n7vdBR8N3ozDDVHptqWZYZSS2AbQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TiAZxaeH3SrpgQLyEfb2vfKfUfJYxtMTUCs65CjBKpwt7ViFk": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12TitiTDGtT9iHS97MUim2msjVuuvEemqYoNhRNWYMm5VfcjT32": { + "balance": "2760.434907518", + "bytecode": [], + "datastore": [] + }, + "AU12Tj4J1vbauFZnYHcgvU1F1LQz2MhWQDT1Fk5tS2ZuVvJQLaKpY": { + "balance": "1760.582160201", + "bytecode": [], + "datastore": [] + }, + "AU12TjDozUBe9oT95wmu6GMkt67zP16iDj8xf13Rvw4H3U3QZ2WCP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12TjMpFhQcJ1jkj2nvunVkvSsWh9tppHRcM3cHkaTjGoCmv2HqU": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12Tk67eVZyR3myKsesp9mnn9x6ymQ52NAR8kuRoAy3joUzAxPsf": { + "balance": "91.289882372", + "bytecode": [], + "datastore": [] + }, + "AU12Tk7sLvUpDDd23wEi4u189WRvR6uZebsPZfyNnwAYEkYhKhUB7": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU12TkacqT7gdm8YtG3NA4m5c72sYxbtAMBtFXqyxz7eA5qtwzNMk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TkxpCm2DjdQehWUsjPKqjFm7VkY916F39tBbNra71jTSUnmky": { + "balance": "1549.838231059", + "bytecode": [], + "datastore": [] + }, + "AU12TmMijCwpSSdtG5Wbm2fgVXUgfphaKSeQZQihJUBTAnyPqGx6s": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TmQnsSEQUf6PuxskcdKd8g2To9jxMEstfTfZpN3R69HFTZsCA": { + "balance": "2396.558346029", + "bytecode": [], + "datastore": [] + }, + "AU12TmcyReMU4axxSwF7n9xK3XouU1ciiFh3uS5RDT4y8CP8s8T9Z": { + "balance": "730.848475312", + "bytecode": [], + "datastore": [] + }, + "AU12TmhAoJ3YixmGawa3WQ9aCGnAeSRkBLy48La8XR49Gpkp1LrZU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TmrY5RfRPHo8xR8ACFBb2Eo297BcvVHkvQgPqtYu63sC2qxLo": { + "balance": "1024.277732819", + "bytecode": [], + "datastore": [] + }, + "AU12Tn2mqb7EABbQwaxarkLU5L4qiHx7XQ9UDarxJrFxf2N67C5Kz": { + "balance": "3190.767953727", + "bytecode": [], + "datastore": [] + }, + "AU12Tn9otfJjJ2JSNd1WRVt6JnoHL5KvgCft57wyndYS2HDkGnSrz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12TnaAeXKKF8ZiBnnnFyrjVf6t34kb5vE6Q1sqAH1mSvVCx6Ybn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TnmjLtp66a9DwuzZL14LGXtHpbY4viZpiWUsA3kkGPSsAXrNy": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12TnuLR25KHmLyH2PCanUBKayfJPsFktoVrWyyvtXZDrzchHea3": { + "balance": "1350.611771803", + "bytecode": [], + "datastore": [] + }, + "AU12TobKnNdb3gFw9qhKX5XDr4ejWirVTbb9YYdiHzDes9QGnniVY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Tof8D8e1j7oK7UMSTurSK6gtjdCiJGyJ9RCtEJonYdLKxNKKZ": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU12Tp2QmtvGTc2pka55zYtR4o2mdAr6Pf68LA4VVw2SC6WNH8BRj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12TpQG9imTTXLLAsouWCwVjC7WBMbYx8sTZFmBfnBoMvRwAqkHq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12TprHMWdpuG9HzEpTnUE4tPaoeN56mVAT4qcCe7AT1VGfiNVzM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12TpspYHukhKw9RkUR2zFV1SPFDytmM46y6fNv5yzjg29uVEavU": { + "balance": "66433.594333809", + "bytecode": [], + "datastore": [] + }, + "AU12TqAxJSD7SWfrtfSVbtjkwamFSJLoe4jcRpjCd6yzRNYzw8b8n": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12TqGKURvnDjTGnfFpkNSJ5qtieAzwpVwKMKhQZS6EHmZ7dyLFx": { + "balance": "7222.124721521", + "bytecode": [], + "datastore": [] + }, + "AU12TqNMxgu9DT7szDj23rEHKYkmCiNLdBes1npNV9odZ5HMuHchW": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12TqeymQdxcqikL9jPL3BvCmbdhfh3efSgCCRXwDA6ENepvUnc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12TqxiZ9gvcghdQx6nkKA7XZQnMbmZf6QYTvNuvdk4L48YWPYyQ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12Tr1LLYQVRkjoQwvENhV3SjhRC8XsxRhvfcLZQKBAjGVJ9ProP": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Tr1wt7zonsyw7biLUtYH4GeLQ9RGh5S8kHjPu7WpGtzVSWncw": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12TrH8NL4fD6YzVcZCnCzbbDvqxPUk7KVVFicSWwva5hMrdysLr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12TrvWhcjZT8V5s2Q8yyh33ycKSPxjt6BE844qGiTab2N75bzZx": { + "balance": "3312.712154220", + "bytecode": [], + "datastore": [] + }, + "AU12TrxGt9pGsyqDprjZiQCDjgGHvCotRkGQR7f6mGUiXdvVKMJyz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Ts5EH8Bj4sG6YL9bus2VSwDkRuKrwFsP4Cz6yMrkB6Y3x9BHc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Tsks2PsnDzmF9h1fr8CA9pdn2rka1ZZXxw13YTNTTkZA1S8nP": { + "balance": "876.913788047", + "bytecode": [], + "datastore": [] + }, + "AU12TstEPh9edY6C9MinHhHM3wpW3YAhw5LQm8f5nQ6cYAB18bMhS": { + "balance": "3063.102603039", + "bytecode": [], + "datastore": [] + }, + "AU12Tt6vRrWeEeUb1mKoStk3mn34AQVW1bAgtSBsQaqZevcB1sBo4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12TtRdzeYFJj8VzFiUuC3kB7xuzTuASYk63zEVKJ57LZnuGJH3u": { + "balance": "3782.765051436", + "bytecode": [], + "datastore": [] + }, + "AU12Tu36WnRFXPMdNS8FJPAYnEd1P53uLgocKCu8VpdUXs8qdhyYZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Tu7NwF2iwGFbtVHhXLAT7ynyTqokViNSeojaTSVNjMhY74Lkv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12TugCc5HVoCkzXWWaFDURWprAQ4qLUvVkoQTL1e4A8izR7Z8KB": { + "balance": "2024.556947941", + "bytecode": [], + "datastore": [] + }, + "AU12TukrJ6GigHGoscveqVaSPXUsTy7GYTPSsLVMAseDPUbKjdQKn": { + "balance": "2084.516906389", + "bytecode": [], + "datastore": [] + }, + "AU12TumwzaRuJJE9Neq11capo2ugtyf7A3DnqTeWKsqQ64EMwkHmz": { + "balance": "1493.038041106", + "bytecode": [], + "datastore": [] + }, + "AU12TupDza9w9sYDfd3sBojFinGXs53CPYsbqofjKdWsDXYigMWJP": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12TvUscYCNN4VEFu47Wj7SjazzLiGbBgDeBy2m8XLcs2KKNx2jL": { + "balance": "2156.649126419", + "bytecode": [], + "datastore": [] + }, + "AU12TvjC7deN17THV12vZKmip1Jays488bi6A897sHUA6nsy5aEF": { + "balance": "2714.215269690", + "bytecode": [], + "datastore": [] + }, + "AU12Tw19yg9G4PxwsAV9wCUaSPTT8LiSdFauuHxeNZ2sMFhx5ozUA": { + "balance": "645.666941153", + "bytecode": [], + "datastore": [] + }, + "AU12Tw3UrvdEqk2QYnxCq9ioFGe8rxZR2PJscYCrytojLWSjKhf83": { + "balance": "225.823939328", + "bytecode": [], + "datastore": [] + }, + "AU12TwFM5KwSrNWTNEkpr2TtdDmLQUUFgKcpEogReiobvhNCvN73X": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12TwbnrRc3mC4oobhrfzoavVKgWKn1SxTc3CwPVHudNnLCEkyvn": { + "balance": "1580.426838644", + "bytecode": [], + "datastore": [] + }, + "AU12Twcu26NLW1WZaNJi2N9yEJXsJq3WiCC7D8PfE9cD39MPcsocr": { + "balance": "1452.496698648", + "bytecode": [], + "datastore": [] + }, + "AU12TwpXtW8tLkbC764nAuyaDBBcnoyxAcQdQEae7NNRygwdiXaXZ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12TwwaoYeDZq8SPtmqAQp14wvzEf5rJU7w9zrVHT6FvK64FBUcj": { + "balance": "577.917031502", + "bytecode": [], + "datastore": [] + }, + "AU12Tx56GQ4zQKTPSS4nWxkrSkpXzYywWgig675kPckutWUNS29Mu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Tx7izQupg2G1cafsuCvrBdKNRd5qWxYPxVZbe6BWRNwVBG85h": { + "balance": "3608.049440042", + "bytecode": [], + "datastore": [] + }, + "AU12TxgNcKcrbhez3yQpj5JQhpRfDVGcbuoK737NW7JF7aQR5E33E": { + "balance": "1917.158052579", + "bytecode": [], + "datastore": [] + }, + "AU12TxrBqDwHVVtRchLf3SEC6hDoXfJTuKXRdzk6T7jvVu1Mp2GxS": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Txt2xnC7DqBHBGzLaEJcvNNyCjBWqGa5nuzx2b6aqfa6fW3Qd": { + "balance": "178.760007759", + "bytecode": [], + "datastore": [] + }, + "AU12Ty81RN8hiWNYnpr7k3D7eVzHBugtYhwdfcEZDxKxHtx1Ywn5L": { + "balance": "1929.385490433", + "bytecode": [], + "datastore": [] + }, + "AU12TyQ6mJ3jEz7STXmBQYFVa9Ka9imHUnvsWDGdvuvRELedSmp16": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12TyznsbRgBqUujmVzWrDyYRBSLCXiFPdW4nb6rDn6T1c3Ejjw4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12TzKE6uJUAZebksHpahRRaFyJgS39jEX9NU2AHRbMRThhsv9Zy": { + "balance": "79.207920792", + "bytecode": [], + "datastore": [] + }, + "AU12TziFgPDQPsWft53vzqqwtAfZfzUri2rsbcLRLsAGvZrA3K1rR": { + "balance": "750.661910854", + "bytecode": [], + "datastore": [] + }, + "AU12TznGJScf5imxcTKggcbtDYuVm62Ttv59VHUdaqs9cff1dZ2fn": { + "balance": "912.625686435", + "bytecode": [], + "datastore": [] + }, + "AU12U1GZ1XvmmbLaJf5aaqD5Xt6ivhvStyur9n1EHKeuvWdkB4CwZ": { + "balance": "218.774454835", + "bytecode": [], + "datastore": [] + }, + "AU12U1KWWvp7XQ63KXXeEEM2EhHnKTozscehMEyT3A8FBApcMADxp": { + "balance": "2026.689347800", + "bytecode": [], + "datastore": [] + }, + "AU12U1ZKGfxRGATawAHaGpgeh2dBhHP5Sgd73CBuvHpKaaoYTjbQv": { + "balance": "1586.981739807", + "bytecode": [], + "datastore": [] + }, + "AU12U26pxqKstrjx6P5uaY3V3mnMnBeRBHx6qF2UA56sF7hDdTfNN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12U2DpP3QnkMhEZApSe263eVAHHqdRJ7B7q8US6CNnM89bo3kgg": { + "balance": "2749.769720380", + "bytecode": [], + "datastore": [] + }, + "AU12U2FtonNkjGDEUdtrtPdiLoXPCGS3RYiuGevZ5h5tvTye8VWjD": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU12U2GZSXRcQpB9Ke4cxyRfojZpPuyD8cFcNSo7mbzz2hF8MY2qd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12U2XQXJWQyYRM7A3fLR1MaFZZuZETraJFQ4G66fphBeNY7mHxs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12U2XkXUyzfMBbGRMXh4QVVe1Eku9F6kxLHqGzijeqfi9SH7oWW": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12U2aCUgevUT8ZqZSxx5NHzVArtk6PbCvcUWM1dzZHUYCPjXVeg": { + "balance": "1291.344691570", + "bytecode": [], + "datastore": [] + }, + "AU12U2u7sfTj5aBq8fTpwsDosFVYzMvcHqbTBsmmA8kxh6SkAcwgL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12U38FfDuAhWf6XdejCRYHqoN5yfYDCbgSXVF5Ljs1CSYgiJoND": { + "balance": "589.697984431", + "bytecode": [], + "datastore": [] + }, + "AU12U3GGbUTHzuizmAMm43SLwTTFFzsCgPi2zJ86uZPC4ZQik9cVL": { + "balance": "658.404901216", + "bytecode": [], + "datastore": [] + }, + "AU12U3qez6eAPHhRvtYaRu7pJDVaMmKP32niaPVR6Yjqu5qLHRK4f": { + "balance": "873.761264936", + "bytecode": [], + "datastore": [] + }, + "AU12U4B68BNWhXTuubGfDoESBkoFnargfHoXcKGngaP8X642G1jfx": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12U4LyCaTzmRqQQaJgubCxtPdCvG7UPSRJ12t1CW5wo3FntkaDd": { + "balance": "1796.314274493", + "bytecode": [], + "datastore": [] + }, + "AU12U4VduSQhJiFMi8dEuKuGdgZEXVBAi6mpYBWLE3rpy6X846Vza": { + "balance": "2189.729447608", + "bytecode": [], + "datastore": [] + }, + "AU12U55zG3FJapqwXiVXjMkrijzwtycB7gyojqqArpdWv6m8DKgDX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12U59xxP47AGJkRPfFUAq5DoGPxALpC2eN8h9K2ZZHN1fB26ECf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12U5dVjkBRxMqPJkhjthAecPqqBuYziuR2tnvHY7MFcnMx6isv9": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12U5sS1YTETn6b7pk2A9u8sEUAmSK4FUMFFbDyhE2icZu1X3Ev": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12U67oUu2VyW24Q7au19vyh1zccPHDnzWmQnNJGF9ww29BV1BDZ": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12U6LTtYwkFkJkrwzLCPQamzyvbacsxtYun6iK5KFJoTqqBke1v": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12U6ZwSQcrS6hExJc2TW1wRYAWLKJMwPv3ncjMbirF8bXPSVb9c": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12U78uNVGdMJE4HpA3qCcMxMc39ererpjTuY34sHdh3cvcRBVvy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12U7DK2MfsGZXtcMMG2GVNcB5A4VQiKGB5GCoAXjbqsKmsWmHKB": { + "balance": "12.379984483", + "bytecode": [], + "datastore": [] + }, + "AU12U7GnMEZwYwbGntTHecNqpBZyf4BPUp6sSG9PHEViaGwEygvy": { + "balance": "2616.275434366", + "bytecode": [], + "datastore": [] + }, + "AU12U7L4YWZ5D3N5itMGv4odXfEahwsvMJMUUbVxLsxJbdY6neg8L": { + "balance": "1389.081138844", + "bytecode": [], + "datastore": [] + }, + "AU12U8LyekzVzoqg4m5Azp3waiPs3F2pyNGyy9kATYsWszp2GSGc3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12U8UkUyMPuybsonwCP2boLH58ACiz5zrT3VM2eYeDU748QT9ML": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU12U8a9iP4R7Jz3ECuxsKrBgugjFobWMzwkmbrgbNK7bFwKPqsu7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12U8eFJfCe71Avsgre1zFTMKSmoqWS4AJoWkvjFUt4TPU8hVDUm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12U8njFmTWQTPLgGgX82YrEMvPcADRTJzeBqtCuTtxeRdS2Du6R": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12U8vT9VUdaPXTRBLoej3GAdj222LxjATSPLRst3CdLK89v9wsd": { + "balance": "779.244533255", + "bytecode": [], + "datastore": [] + }, + "AU12UA2soMfxMUYNocXySXSGaxttbGzKvbKqDXDntnSHwowFsyiSJ": { + "balance": "833.178585714", + "bytecode": [], + "datastore": [] + }, + "AU12UABxHjX4oFjtzCikzqTn5bNNLmQeQzngGQNRZRQiSF7Qg1f9U": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12UAhZ5rWicCgimA5ew8XCzdwhJpMoaLoih4ZEuiQ1pvLxot3Vb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UAxiwxmVfTt45vNXe8NfsjJxghoBbkzMLR98dDeyjqPySo7oR": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12UAydsJBdnCuqbmpkXsyFSdk48YYVDnZVvdCk9r121aVhBsbWQ": { + "balance": "1148.311957858", + "bytecode": [], + "datastore": [] + }, + "AU12UBMaKc3XkNAPjBMKemMgjHJGqv9QTEQEdRtGLp9jKAGn6i7qC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12UBvLcyyRWnn1qiwkbirTb59n43nnSdJapo7qHfGZXntuDkQ7H": { + "balance": "1243.718638728", + "bytecode": [], + "datastore": [] + }, + "AU12UCRawiJ52wU2QZ38ijK7Ahpg2SV8AmV8BnX57boPXGZtxXgav": { + "balance": "1492.140198787", + "bytecode": [], + "datastore": [] + }, + "AU12UCTTMtosBL67mjwvjoLRaUhipCEugyWgrKAAb4MubnyZ8PTgb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12UCgo1CwCAeSrudCE7f4v9BJi9gyGVUabqQHKAJJ1uiNmp3uFf": { + "balance": "1780.754800831", + "bytecode": [], + "datastore": [] + }, + "AU12UD8Y9gPVo9r9YkZrBjmpwxjUzK645iaryp1BzTsk7ASDieadQ": { + "balance": "687.824906560", + "bytecode": [], + "datastore": [] + }, + "AU12UDGoftfzBWt6vtDvLfDAtz6YAUWoj7HjXPHhn3upaDZBawSHW": { + "balance": "3332.586622090", + "bytecode": [], + "datastore": [] + }, + "AU12UDLXsMDnWcxQKgzpEFWAxpDjVDmLTGuj6puNfmHoxAPXkBTi9": { + "balance": "48.654171311", + "bytecode": [], + "datastore": [] + }, + "AU12UDSA3x5mKhuHqc615v3WEeEELpHcia1gnmJBg2ZjnJ8aNLeW1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UDWA4ZhBRUEvBB9nNE5vhytGxVHnGc5LwQaZu5PE3ZJ86stFm": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12UDhPTwCjiZP6tJLKmX8dUNpdqwdw9BvcCDejPyYosh4YBE1UD": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12UDpSaKSNdVxTce66USUSbTko7UyfTLY9xtYfnu44QXHA1GCri": { + "balance": "298.885334593", + "bytecode": [], + "datastore": [] + }, + "AU12UDpXCJ6SRSyUa1fdYKL5uSGz86WGk7xbJEoS5DKoPfs1JiuiH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UDxc68fFBpTvuy98CUJpdQeXCFqtz6Z4btcdfKyGAzWc8ncfh": { + "balance": "1274.292389752", + "bytecode": [], + "datastore": [] + }, + "AU12UE3NXY6mczsPkYF4q1qKptdWEgbrHj95rfoqtjkTXAtQKx1in": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UE97s9DoJa4xSRUJjSf78Rtt5Q6tJhDBiaa6KfFhSg2Rf4ujn": { + "balance": "1677.273580190", + "bytecode": [], + "datastore": [] + }, + "AU12UEBCDaBwiemxJEdcFhqDRXSdbau5EfpzTRq5vN8M6EU5goap6": { + "balance": "5023.632723338", + "bytecode": [], + "datastore": [] + }, + "AU12UEP1bSoWqVLVw8WUyNpfmG4S9duaXUG5TpWCSvdHY5ACGftBN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12UEW1VwSxMGa46pcFvzQfahmD88PB9EcRdGVYnnk43C7c29aTh": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12UEoFzqtPcrshqnsrLK6So1wPcimJxFjmT2YzeDef21ZNNwBaa": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12UFD8HVerWuvNv7K5LQmcHpgGvfR9SpMigf6D2bG2ozsuYbZvb": { + "balance": "4757.603125373", + "bytecode": [], + "datastore": [] + }, + "AU12UFEHk3wwo31RE4S4YsdMYg9AHrJdkRG6a24odaKDUyAiLYcfi": { + "balance": "1486.019262232", + "bytecode": [], + "datastore": [] + }, + "AU12UFRQ9JFypSbmhLVDHbKzkXjMcgKw7i3P7SPnLEJAem1W2Vwe6": { + "balance": "3019.084382554", + "bytecode": [], + "datastore": [] + }, + "AU12UFZBeSonr36rjSF2TcCAkR9bWfm5tpe9qqXyWFFyjJrHKqSLH": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12UFc3zU4X9ewpaiNTQPXpgAdmovFDbPsqCXqqEXFvJhMGk3qW7": { + "balance": "1430.292238101", + "bytecode": [], + "datastore": [] + }, + "AU12UFgyF7j6siAP9YgdfPj5SmaW2nRVM2ZHbpGuFSbboM6WrrGMR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12UFpAa1B9JhKgBGWn7pqF3qWkxUfQAczsW23Ma3toEpckpqCGV": { + "balance": "1423.528217013", + "bytecode": [], + "datastore": [] + }, + "AU12UGNPwcxSoQmw3GU5FUbxSwpe1Hu8g1iWwZCLU2PNH1je2RA7H": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12UGSRyXtPr6XpQMz3RLLvqpZzefaqZtgU7x1Kqsou156CQac6o": { + "balance": "1596.616275598", + "bytecode": [], + "datastore": [] + }, + "AU12UGhRRjieR1YXC9NhTiRCQ8XBjSMPiYsP7uLhCsVbFZvAJGTiZ": { + "balance": "1262.087352601", + "bytecode": [], + "datastore": [] + }, + "AU12UJGpTdVMt9ihomtPEkFhE4eJECWYC3YvWDveAng8d4vUvawvC": { + "balance": "2706.359190690", + "bytecode": [], + "datastore": [] + }, + "AU12UJf6MHQRxq7RFV4MgcUXKEagurCW3fC8BM6iFJffzYzGQz86t": { + "balance": "2076.548207114", + "bytecode": [], + "datastore": [] + }, + "AU12UJvXazCNVceysEYazvFRjAxR25DDMjaT5X1swQ2dBBnextUhj": { + "balance": "1493.679225836", + "bytecode": [], + "datastore": [] + }, + "AU12UJyMZ87c8ax5VmyX9zr4ToqoPjeR598NYivkdAgotVAoVAqa8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UKHB46ySjP3f7DiAaS3z13JFLeWmiNHph8UxrLM5QVBCgsfp1": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12UKVzjrvGYAQZnroBu81t1sG1f9bkgRHDytrT71jaH3Fm8Nmio": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12UKpQtVMTRnysdQG5o5o5udUcsAfd9HcVUEu7mavQv53xmQgxA": { + "balance": "1019.069186671", + "bytecode": [], + "datastore": [] + }, + "AU12UL1yJWMaiTTxHXXgTDhyzbkMLnrQWEQKbXgqjYGnw8243BqDa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ULTdZmHVQygw9TvkeLhG1Rt46WfbdXMU14DraTs5kka2BLdCG": { + "balance": "4103.878937519", + "bytecode": [], + "datastore": [] + }, + "AU12ULWDTVAi79kRMDgiyCV2bBS9d8fJ1PDhNm9zZKMbFXVq3QGXw": { + "balance": "3956.235476034", + "bytecode": [], + "datastore": [] + }, + "AU12ULd56kKBRggbH6249AqEkKBPDaj4awFqfPQ4RJQFrJDrptmMy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ULe94WjXM7yGgqBoEcvzDoC1UmmZNbToj5vAM8dEmro1DEnBm": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12UMPdQ8Bx9qC3xySxMJcNANcfdznjCWcHAb9FXERGzVmVkBbe4": { + "balance": "1859.539831202", + "bytecode": [], + "datastore": [] + }, + "AU12UMbDjSecaCSQDaZxicrPi2mcv97oJCtcKDW7bjPADh7XsTNbf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12UMiuvCHC3pbbzdTr1oyKthzXLuaMEBkuZg54Zq8Zs96ArLXKp": { + "balance": "225.667751939", + "bytecode": [], + "datastore": [] + }, + "AU12UMrk5MujF86Hv3ScoF75YFcMpVkfTAxWB6nCxyFsJ2bcLinPq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12UMwjADrmFLPMMaj8Zty1Svc8geoYFPE8q6euNaZYAVJQvtt8T": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12UMyE16yCDr9pD9VP2LQ1fnvwBh18RP3N7XoTsi94k1feMFN2p": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12UMyWcwadLPCynfWMm7qsdwRTebXEhfbaBCSj9KJjEKYtGYU1H": { + "balance": "889.978886112", + "bytecode": [], + "datastore": [] + }, + "AU12UNCP52UFFMkYWk3GiroH5vivD27xTFHmrFUKowGW7m1KUi6Sv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UNTqbCTujDBUPZ71iPEcq3ZaLbU2EXpVcC37KSHiP4kcj7Q2V": { + "balance": "1589.465087315", + "bytecode": [], + "datastore": [] + }, + "AU12UNgQZp1dKdj7W5qJPVMdjwEh7BcRt4hUywnrb2SrzW6huZWnz": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12UNtkxScXESefo2v4PgVXvqmKxUmC3bLUHpUiNBSeThJF5WRP3": { + "balance": "1202.879147182", + "bytecode": [], + "datastore": [] + }, + "AU12UNzeCvT4etn9pCYJdrp4VQRAFm8H4kxhFTNTURFTNve3QyJ2n": { + "balance": "35.418228659", + "bytecode": [], + "datastore": [] + }, + "AU12UPrLE45uWDtuRxDmHQjFxwrGyjLK2MDjUfmWq6jkzfZac1eGN": { + "balance": "723.430123989", + "bytecode": [], + "datastore": [] + }, + "AU12UPtDKFzLg26dp1wenstumAiXnUrUbUbB9cXLcgCosY5KxK8dJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12UQq2dgU2PfVvBzgrQzcZRhp1x18Vx8J2CoDZgtpzzN8iWH7sP": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12UQwyhBzv3NoCY25Uij1hUTPo5FT9eAWPRrWjxd4TVVa9ZfwRK": { + "balance": "1901.025998122", + "bytecode": [], + "datastore": [] + }, + "AU12UR13w12H8YJgwq8E1G8CxGiS8arZReK21hemS877RQ5NLGbim": { + "balance": "2220.618693962", + "bytecode": [], + "datastore": [] + }, + "AU12URESR73phaKe9mSp5iFkBKWhK29AajmAyfn52SbfyCHCLRACM": { + "balance": "2645.718913336", + "bytecode": [], + "datastore": [] + }, + "AU12URRHeJQfWjuf5GwHXuqw7YkaJDES7ABMoJ1CozyeWKmouAvra": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12USCnYdZTuee2iFTYWyNx37HHUwY8VzxRUZ5Ya9bypKKRRhtU5": { + "balance": "1159.991303800", + "bytecode": [], + "datastore": [] + }, + "AU12USPWeGG5RyZ5wJded9Xug4iZc2FcD7ZkZxkNQMimDFmzgUwQz": { + "balance": "850.084320851", + "bytecode": [], + "datastore": [] + }, + "AU12USgH4UbyWV7XmQXUgxnpxS4qqN7db9t8qdDSdeUJiKuWsLXnV": { + "balance": "2424.711742321", + "bytecode": [], + "datastore": [] + }, + "AU12USgmC3t8AWVyrj3gnr938TtqpVseb9RrZPBgFqorZbanE7U6K": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12USwvfHMW57TiMXzRsrvZY4GpWphD7f3Jw1T7Pfo1iBN4piQ82": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UTBnRdjvCFh3BSrVKv3wCcfGrXpWVarfzuTdd9qWxsSdhSMC8": { + "balance": "1111.430304040", + "bytecode": [], + "datastore": [] + }, + "AU12UTDgDsE5YfUMVotqYT424W9Ys4ZTTSrPDX9mRDxRyBfWTnq7z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UTVKfS2Y6iq1AbJTWUzZyKA7EFRjWQm2AWZpjh2wgiHHxq9Qn": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12UTaZduwLfne32GjHTM6dH1un5NWKqUhup64cLAjKAcbihHQmp": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12UUD87pNhYB3Jb2ns1BcaQSBhTAXBQFFhiTbq2wU78ZjKWFSZG": { + "balance": "2879.076908858", + "bytecode": [], + "datastore": [] + }, + "AU12UUU6LzMg5tabLNDAaXzPiTPWDGabS3PsqBmTyWjPfdjvY1Fpc": { + "balance": "227.546832160", + "bytecode": [], + "datastore": [] + }, + "AU12UUnqDQxxGZ1sHDRdM86HNutqXWhwbxjs4XVNk5ecuYnKLKbV1": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12UVrGr16WgBtier1aWMpKzXE189zN6pJk4aw6Xj6cLF7Lw66id": { + "balance": "1377.756194977", + "bytecode": [], + "datastore": [] + }, + "AU12UWBYCp88aq8Mcqysng6ixkfzqxYhf7avm7QBnddmfUUTfMWKq": { + "balance": "1887.909966855", + "bytecode": [], + "datastore": [] + }, + "AU12UWN9jkQLuRd9rMKByaHQ7gumsSj5nmx7Q5sHNrZLex345xfEw": { + "balance": "3782.191595228", + "bytecode": [], + "datastore": [] + }, + "AU12UWSCbDMCdg4JvY9U6Gyjwv6tvUkmVpvEdJ71kCqFqKpMAwLis": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UWSbLSpWafLTYfaEm6RFUEYXMQn2Cm1hM6t3AoQ9EHNe7cDeq": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12UWTmJRmEBqGHmuhQFzarsccafc6QDEgC2Mmpk2gaBj37mttGi": { + "balance": "2126.762867797", + "bytecode": [], + "datastore": [] + }, + "AU12UXQe8CjMi8yaUxV7ESSb6yBg3CNgVa1jk8RrEemgZfPesJpsy": { + "balance": "1524.277239196", + "bytecode": [], + "datastore": [] + }, + "AU12UXmsUW5puPJ58LDhRe6jTSg1hQ5NVdRKrdzWm6MjTETnmoiiQ": { + "balance": "93.302156548", + "bytecode": [], + "datastore": [] + }, + "AU12UYKMrHNbpj1taJkvJfYGKxg2y1kgXKL7MUdM3Ka1d2fztrith": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12UZSpFWgEBVGB49EWGZsrD1DMCHB2Ehf4q5xb2Sow1tM8dLHTP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UZZ2PuMbxhfvTS7PezznosPaZ1Ed1geSo71mbSxFEXNVmhgVh": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12UZnidqFxKUSfKK8xgquhRhNTiAqs9CLaKnA3nxJd5g8JVthxo": { + "balance": "2643.566305078", + "bytecode": [], + "datastore": [] + }, + "AU12UZqK6rfZSFYYcUJZNjgpAc8xEdSmZogYLCpNdP6F1gxWcc6Eb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UZtf9deLSzRKn5xdmGCHD6SqNjL83HLYLm9eEVJmPPpe7tEMY": { + "balance": "655.893237023", + "bytecode": [], + "datastore": [] + }, + "AU12Ua3AZc3Li4w6pYwsjGtxtAsSpy9UfnWGpeMfFZd6xSL4D2aZB": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Ua3Ey8SEDNXqFB4wKLEP7JxbY7fraF9MEQeaj5av3Px6ZkALG": { + "balance": "3776.594296914", + "bytecode": [], + "datastore": [] + }, + "AU12UaFmWq55A4D79Xws4zqkgJPiuqy2deKQSysfyU2Y4QVTWRYyF": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12UaLFRqNQKAgMeeUVEb3CAAWNJXjacXP7kyGhwvocBt88yXK2R": { + "balance": "1344.917584708", + "bytecode": [], + "datastore": [] + }, + "AU12Uac5pAqBRUodtmoyJotFBefpAz6y5QpLzXaJ9yeJ2wvTh8Ft3": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12Uaen3Q5HeSL1nC5GWzQxHA1jopE9F1inNBL29VCXsH8HzhnAX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12UajX3MR3GQbX2o3aJLNrrdSSZDvmYATGfdSEE5GfeGzQgGsYZ": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12UarpZazoecgf6kWT7N6kYo6Mb2yaXyMEBMm67B6DKhizT5e4L": { + "balance": "1497.939110076", + "bytecode": [], + "datastore": [] + }, + "AU12Ub2xWJCibonpg6oKt8HBa8RG3zZ8MUdBBL3RqLXn9xEkdmzFA": { + "balance": "3699.495217878", + "bytecode": [], + "datastore": [] + }, + "AU12UbqYQhBL3GvLrQXsnPrGArgYKLp6PS1EG77BXfmk642UW8TNX": { + "balance": "257.137415441", + "bytecode": [], + "datastore": [] + }, + "AU12UcV668tNzycvgoP8xQPd3yxk2XzDFBu1EaED2CazUWisWDBH9": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12UctK1PTFnpVqQcS736yzaq3CkdjBzNqZZRUPvqkSMegQy8XVe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UcyxoZd7cYcnTJqrh2sr2eNP7cDZxCYxLSmkGHjatgxsNYHXX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12UdSsDWSR3XPeNJeTdrtxRN1ij3byLtFbX8v5wz4qK9N47brLL": { + "balance": "4617.871738739", + "bytecode": [], + "datastore": [] + }, + "AU12UdsRo6aCrGNNrWcwdJywfbMKEYGBWf9FTcTXhtT9aRYpcfkMM": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12Udzjz2gW7FJfdjSn6r4YmweFmFyNy6vTK3dvX7zi8GRQsy9Cb": { + "balance": "7480.264794376", + "bytecode": [], + "datastore": [] + }, + "AU12Ueao1z4uLvdNGPDqDxRXbLAy5vJfTW17VUCGrWdszMtZpi1Vr": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12Uecx2VW8L8ZJ4xKsVczfaUcCnGFA85F97oCpDd9ecpvAX8kWL": { + "balance": "3925.467039159", + "bytecode": [], + "datastore": [] + }, + "AU12Uepam1jKfeQGQhXMrdEpAobs83CjVq4PMXrjYHiJ5D2DyJTa9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Uet4McW6rYgCGjEgpN2qREVKpSJeio3imxfh8kjpnjwPeqgFq": { + "balance": "6149.209383038", + "bytecode": [], + "datastore": [] + }, + "AU12UeuXgjrqLTExC8BUcTo98H9LJGe6Tn6WK2R9xckZ6VTrJXxvk": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12UevRm3SmkAPTXyxhP6F7uWJjnvt6krkbd4Kd5PWBqYwfuYn7v": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12UfJSfS6WVXaviWiSspQqyjojwbwqxSMNyru7HNYLLcK9kAWBo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UfQNW1nR4BnmJnAbNgRcxR1u8DRXvJAmTQnqmCK54sphXeEZY": { + "balance": "1037.854343602", + "bytecode": [], + "datastore": [] + }, + "AU12Ug5ZeiRBCNeL2UP4qKcRVqANU6av3VHRk6cyxsUyjXEvr3pk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UgG762RVVBXFrjw3f3Wfvfz14Q59iBgsfozjy8QhiTmyBkZCW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UgbwZaw41C1KpwFfEZgR2w6gsUL1Fhk5bE61SM3gNJTMajpxi": { + "balance": "2575.402787230", + "bytecode": [], + "datastore": [] + }, + "AU12UhFcrpmVL5GLbZYWxMks26jvwhyeauJbVXS2jq9SFVkRbLqZD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UhcTcwog5MhdoKh3TPJbqLUUL1iTfC4qdzijUTthMrbem4FAU": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12UhvJeoq7SEDD72tWeZCM6A4ftHekJ9D9F9Zd2EdqFRqvhdb35": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12Uiec1pD2VL4P6imMNtkCmDSFZ5YLhjuMLAbKQZkL8v7nHHKxA": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU12UjMs4ktZVq4F35BdumtndQS1J3AXcPVjNmRUwsWhRbkFENtCQ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12UjghF7m5mx5LzEEk7tpppgqis6KuRKd6cmuw4ATRo87zkgQYt": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12Ujzd3C1XaUD77mRNCQBfEJw3JKGED5qgXWDGCpam5jYcgR26K": { + "balance": "1684.000653498", + "bytecode": [], + "datastore": [] + }, + "AU12Uk98p6z9ZxSeY5VpULLuEJPnZixwWsZE9FcVaBchqopVnbWBo": { + "balance": "1834.952788076", + "bytecode": [], + "datastore": [] + }, + "AU12UkEzggD2fFrMycvVwuX2a6WWFpiqhcG4uQuga6ioDFLzopVbv": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12UkG6j7QHS6VviWB4jikGVB7tBpxNRxv6RFyKDfNeVbH7Cn5as": { + "balance": "4059.594783443", + "bytecode": [], + "datastore": [] + }, + "AU12UkS7Qs7qbyQvV5Gnyf6bxiVcbmHj6squEzJRDwsPYhShJ8eaA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12UkXXVkqMdYxHhdQt9tqyAbx1WvZVbtBoXLwUD733z4ULcM28K": { + "balance": "43.081902373", + "bytecode": [], + "datastore": [] + }, + "AU12Ukmms92quXvAm3Kaqzi77SmdiNGV5AGWGHofXPXXRbrtp2Ehu": { + "balance": "1204.608471793", + "bytecode": [], + "datastore": [] + }, + "AU12UkrciB6jT2jdeDgiAE4BmxPUHcZdqoobS3Xwzro7Axtn4NY3Y": { + "balance": "1295.702432322", + "bytecode": [], + "datastore": [] + }, + "AU12UksnePCrWZrjQGucJPhH62HTFrdPrVgzd8gCiPTmWaN6BAvha": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Uku4FYVzy2S73oB6VXodrcwDA7w3JyXgRRJ5a5hpzxj2D5AXB": { + "balance": "1567.415617198", + "bytecode": [], + "datastore": [] + }, + "AU12UmE3cZxX4K7kjwVErRnk28nUnjxwd3n9rt9k4hWVLrLfo4EBX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UmHAUpe6VqEjWWbciBH4bnqSkWRxeZuFGcPM187f52Ww5h9V6": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12UmHtyHejTz5WFFfEAjdQxaES8f2J5933mGJxERh4vXGQ6DaDw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12UmKugHkFLsvrgb5dKMKY6LLa6ZTFgVw6KZNisbt4bV7E6egXY": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12UmfPevQjTnHWVMGbTUmpvsi7qAjW9KFd5q8Nf5GT9BAc6pJGd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UmtQtRySs3Y97QkW19B47XtScQ1RK28f7Vu5obPrWXC523UrQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Un3piJh59LCYZQeS7srpXhQZLmo5sdeFR2xQwTQWc3mtwy1EQ": { + "balance": "4011.257837561", + "bytecode": [], + "datastore": [] + }, + "AU12UnV2RZ8Cs14QiqbUhm9AKNwHAj7KAhxmN8MiF1PijDoc9dgV5": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12UnyjSAxtfFrj3zBehZ73wL84v1rowfYYpLvnv8EfZ3EDE9Pwq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Uo2opwW6koLFMhX2EftBACoxC3xS786bKbKSZzR1SHhKiTj6g": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12UoGUWoJuLUQomRqyGvU35mMtHKJjawNHTUBF4iFV8rCzKATP": { + "balance": "2178.407080304", + "bytecode": [], + "datastore": [] + }, + "AU12UoJr13kGsqYL6ZZLBW3ASS7tKbUjhk7jjBDJECnQNDUA6pHQF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UocFcTbvDrZHyxrvqw1hnDpUb8AVd575qCHYeApnBcibH1sEL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UpcMs3WVrhSktAKau178GXU9pkN5DjWMsDGUzvY1dTjS48T3S": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Uq9gLPyVFJbN4P83b4j9BvjMemiT33aqr2tDAxr2dsew6kp55": { + "balance": "3296.171677560", + "bytecode": [], + "datastore": [] + }, + "AU12UqDFk4YAuPFB6zjiQgrqcy4caRCebzk9b3eqaoS3sS59nF4Z5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12UqHjawyiwJBMgM8TBmBm8e4jbRMBC9oAwvYcsmBVropB2bFKs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12UquaMS8cEqSEG65BbQBXkp6waYNFiFfeziw8nEeZ4W4uU6m5d": { + "balance": "1608.467931882", + "bytecode": [], + "datastore": [] + }, + "AU12UrCFc3GyP83DgARjv8hjiY8JsNisXPLJiSeGFjs4NXFkjVvME": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12UrZ27JntRnNFm9ey8ekTVv5WbGQxyEfTDjdu7V9WcNwdN79H": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12UrpXYEPZD22K5ms5PZ42gDaDicxe65JfhXfd2J4afc1aNgAiA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12UryApPRw18YmK9xnjKbxYH3cx7Ff1QkLbo4gfGjaT4CHfaGV4": { + "balance": "2837.989097014", + "bytecode": [], + "datastore": [] + }, + "AU12UsEEKGZcSzCnqkU8DFsxN24XeVpL4zB9AQcm7oP1TqkvJ5e4t": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12UtDysRfqXsVSnaFw985eMijowb96ramBD8sdvoYspSXXTNs9Z": { + "balance": "3617.030018641", + "bytecode": [], + "datastore": [] + }, + "AU12UtFsvL8QpP8GRqM1od3rJyAE2aVEGgAgvzgM6uz7XzVNT9EQL": { + "balance": "987.686735723", + "bytecode": [], + "datastore": [] + }, + "AU12UtmG9xuBxVpgkYELHKMMXq69qYLFJzsGhRBPkkayBE65yzqBW": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12UtnW6TBB4f48Ts5Ee25QS8PS4qV6J5bxpxkzUGMw9SdWy9mPd": { + "balance": "1207.445483595", + "bytecode": [], + "datastore": [] + }, + "AU12Utr9SC3jdZPuDDToC68wNN463EgkEg8Ydi6RykaGebMrs4Jut": { + "balance": "35.565559279", + "bytecode": [], + "datastore": [] + }, + "AU12UtszxjC9bkf3QspVNPT7aFw82wu2F9bY2Ks4MJFJTwBWKhiwN": { + "balance": "1231.871218493", + "bytecode": [], + "datastore": [] + }, + "AU12UueQ8pufkMSgRKFCmBLLqpCg8iwtoVhgd7LqXrepKZdig6aWM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Uuwddudg4FCL1dK37CptjrZSqhjRhzQrGYoWPx39it9msDsAi": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12Uv9AJWPUZho4A23ihFXK8SZXEoRCWjWipUx8UCaMJbLDmbENn": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12UvAcndPhEv5UUvz7huwjnuFN2qPCn8tmQZwfqdwfuu1J8WB1f": { + "balance": "1460.607327223", + "bytecode": [], + "datastore": [] + }, + "AU12UvCSSgPnCqboXDT38thXkMpMjxBJnyfugZ5wcf39jQ38aU3W4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Uvm9iY2gR5SxiEouPtfBegaQ3FZyZi3SeLRc9Y1e9ZeBk93H1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12UvocH26xgCCnX3gFLDULz68jSkGLXd93e83ndwwHzrYRYnaob": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Uvq92FkAHfqX7Srw4jbLhR9oMJ2qfxE4BhtMfPeSremJmts3m": { + "balance": "2674.176513838", + "bytecode": [], + "datastore": [] + }, + "AU12Uvtqvgk3M9q6Jm14CWdL8zcCTiviYQV9ibMfa9RNy6GLQ7SzJ": { + "balance": "567.548331446", + "bytecode": [], + "datastore": [] + }, + "AU12Uw8R5dB7V3fxRx2Wj72FAS29bpKZyPqb1fCwdjEhmv7gA89y1": { + "balance": "2057.884195741", + "bytecode": [], + "datastore": [] + }, + "AU12UwJTPem7FDyLbL9QqFGXzAZ7LSRfAPQv5jePNA9DjGr45BqEE": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12UwTmYRRtvF2D1ymjardiqkyUZ7xr2PcNM96tYjTqqxVUuAtak": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Uwg1nMDkdAjMZH7jmmaaRRkxrjaJVFoorCGfqXFjxCWZZ1acF": { + "balance": "2213.205612001", + "bytecode": [], + "datastore": [] + }, + "AU12UwhwMMvjPwME1PTQqSYLJWBNTfBT4pfv4EriJKRXk6YoDK8gu": { + "balance": "1786.088427177", + "bytecode": [], + "datastore": [] + }, + "AU12Uwi8ZHcqUo2csxuakaQTC815RpB8ErRtbr6dSJRcZcgDJm793": { + "balance": "1260.850199416", + "bytecode": [], + "datastore": [] + }, + "AU12UwwPW4Kf5SkYv7WKnJqjEiZWLf8kVBuGufoYtwodqXDiUyGXY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12UxRqfJGtFpQEdmJaLStRGtUBuHyYkVepVRTsm9kBfJKET6RMn": { + "balance": "1574.333292297", + "bytecode": [], + "datastore": [] + }, + "AU12Uxwq7meW6m9oqAKGoSsYDU42E3GiqywvP5qE3pHD1aFtcncLC": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Uy7ZYUUDZF3wy7LLdHgC7JvoMjcH3VLZBwgJgc3bTY1U2FAiB": { + "balance": "4642.058968728", + "bytecode": [], + "datastore": [] + }, + "AU12UyEe5x5ZnvNFP5wvfkKuUGXq7jhteeJq9ZfhQ8WNRcVT9PhWC": { + "balance": "2013.780862041", + "bytecode": [], + "datastore": [] + }, + "AU12UyjcMBq6tjx5YvrsWWgVeDxkuK5DpR7BfTgaWwCMY3Gx7rwBv": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12UzbMSjeTy3o6HtDL5eL3pL2yhW3kBRV9RWXBBv2bYraBqbLa5": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12V1LHPCzK6zCTyRaNoQSyqiJk5d2Lxmjj7uHUEja5k5E9Mwd5G": { + "balance": "838.258368317", + "bytecode": [], + "datastore": [] + }, + "AU12V1gbrf6mgTg8szq7pmpbz595JhXiFxLT7bpFtXu34xVDgK9Gz": { + "balance": "556.463099336", + "bytecode": [], + "datastore": [] + }, + "AU12V1hW5QrByZCTLs4qGH2dghnLCNvHfLhJJFznEyh8CtvdskEvq": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12V1zboiJ9cKG1oprFTC9YtxEXjcdX275Vo1sAK17rSQqAQ1i1n": { + "balance": "2829.477284642", + "bytecode": [], + "datastore": [] + }, + "AU12V26QkqR14Zp7RV4Kf1FqD3j9DsyMjVJdJeoAXUnsgr2Roa8BS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12V2DEWhGzR7mJsxDuLtqjEJJYTJewE7w8WnMSZq6Hq9cFanMLg": { + "balance": "3408.710828219", + "bytecode": [], + "datastore": [] + }, + "AU12V3Tr3GVuhCiA4jo5Xw5GNZqSWGdEeXxd26mgZCYUd5f2Zfuvi": { + "balance": "2374.965047594", + "bytecode": [], + "datastore": [] + }, + "AU12V3njvBNjgrW7gj7MD3uzntVrSbr4xyhJU6ykZpyTGcaVtnsmY": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12V3zP7cbBepX7SqDkqefAiybdCtCtXMmR6hCqSDNKbGAYDo5bE": { + "balance": "5092.087410117", + "bytecode": [], + "datastore": [] + }, + "AU12V47hw1qHq22GUK668bSzz4BWTgXGpju6FixzqRGP9UVCDsP31": { + "balance": "631.360001956", + "bytecode": [], + "datastore": [] + }, + "AU12V4PYbt9tW442pPxiCm7V66jkDnpCTJHgoG5oLPWxg1LnKvDNL": { + "balance": "2010.669038962", + "bytecode": [], + "datastore": [] + }, + "AU12V4TtbdxUXgGGP4GSxZmA387qwtArwt5uzUAMnS3ytGz7j6r9x": { + "balance": "2891.941782784", + "bytecode": [], + "datastore": [] + }, + "AU12V4Wockit6RJLHQa3brAxgwQSTwAhLgxrMgqbK4sz3RCzSfkkJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12V5C3ivcaCDVWMvm2DVqPK8BYqfi5aqGi17GUe74dytUb8Z4hT": { + "balance": "964.881905570", + "bytecode": [], + "datastore": [] + }, + "AU12V5NM1PdTxg9gzW2QxRukqtdKwrKoQAVfJo5K4sxYmo4tWKGWd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12V5Pxc8bVyYbKHzPYtZtMbaPsw8Q3zVR7a87RU3pduzNV3wiZF": { + "balance": "1131.980983877", + "bytecode": [], + "datastore": [] + }, + "AU12V5cgG4i1SvR74UMvsN3FC4rvrAQLcDmba3rqFJPx2YPaTgb4j": { + "balance": "1361.402830612", + "bytecode": [], + "datastore": [] + }, + "AU12V5xsPNCuV4WbMQ7nNjZQ5mEPSxQWZXxZoqVeWcEF3gxKVAmjX": { + "balance": "1082.300279348", + "bytecode": [], + "datastore": [] + }, + "AU12V5zhrTvqjzRYz5rwUX499ENTnzVhYkWGZViQVkWNemXsDaDwM": { + "balance": "843.284281197", + "bytecode": [], + "datastore": [] + }, + "AU12V6Eohq9M71FeoLgYVeG2NXiC38NsxKMfCUqXrRxKgT9hhxSQS": { + "balance": "1594.619218618", + "bytecode": [], + "datastore": [] + }, + "AU12V6rdenzcbMxCVtoukE1VU38tX5okMnEZz5oP2qehvrpok3Qnj": { + "balance": "1662.838718995", + "bytecode": [], + "datastore": [] + }, + "AU12V6s5TD25MXNbXKPvd3jiVFpFevjoVu6PgVNDtUAtaGRWhedtr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12V74zVKCBG9ffiUJawn9AQP3b2M86vB89SzMqutoiQ4kj2gqqK": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU12V766swYCfRCoZerzLrYmhBsasJsdJVPe1KEpqDbYb1QVEMPj9": { + "balance": "2241.580927228", + "bytecode": [], + "datastore": [] + }, + "AU12V7BgkUSpxR3Md2iLddc9Yf2f6mcGzdDxK967XXPBMvPxk9S6o": { + "balance": "682.026369512", + "bytecode": [], + "datastore": [] + }, + "AU12V7aDUuKNffnNKmBJqu2ABCHcnEDZqtGr3FHVm6qfwrCcKhYvu": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12V7i4A73hpG15PDEx64HDKjURL6GPXCVoU9eTBsraNeTCsvxgS": { + "balance": "544.359772114", + "bytecode": [], + "datastore": [] + }, + "AU12V7tb5jK3wqRfMNsMvBCxz4HE87cQrzLUbeGscc4PhoTQg2Qjn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12V8LGidHviiU4EES3vcmS3SBaC3noEkvrUn5cnUoJKFCs19RvF": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12V8NCwUXH63aH6vHaGZsgHAZLeUp44vAEaLscZBK9N54Evkgh4": { + "balance": "970.818712414", + "bytecode": [], + "datastore": [] + }, + "AU12V8NHXzzbLquwvDbjReWUrNgbgkfLBa4EkkdeRs32AvrnL19cK": { + "balance": "1174.076836495", + "bytecode": [], + "datastore": [] + }, + "AU12V8sYg3wnVwJfADuyzXuVu2sgVUYices1nPFwTuSTmGGoQpXgA": { + "balance": "1421.442418169", + "bytecode": [], + "datastore": [] + }, + "AU12V9G3vWwHXSxKkXaxo36MDhWo7cveddj262unAZW9HCo4pzfm8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12V9Ps3tnuB2Nv1YfsGGEffb88mPBKrDtkFcgUGWt3bP9wq6HX7": { + "balance": "1169.030139494", + "bytecode": [], + "datastore": [] + }, + "AU12V9ayhMmUGhyXKmBuganiqnKuLYHJ75SjSfm6Uuay8L91h1kk2": { + "balance": "2556.901345377", + "bytecode": [], + "datastore": [] + }, + "AU12V9ycSd5VRz282m9vhY9zcq9rYR4mbokAjQg5QdiEqAEmopK2c": { + "balance": "1013.809023606", + "bytecode": [], + "datastore": [] + }, + "AU12VA7jnopF3LCaUkKn6J3Ma8p9gVJHVis9QZxw6W11J4CTUSepz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VAGCWatLhvWoacDgnYVJdrDBHif6agpzak3M5XXe36qPFuUAf": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12VAJJjqzCW4JgwuX6p1Nwq17YjPrKoxYNbqSAgooXs9jfiFKi8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VALauEwcfeYd9a2pCobzM15uwLSFPAs3J8TyXXCoJqYoiZVcc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VAWJSytfoto3ur7ZFdBTv7cf71FMjjnyQb9r5qpF7mCaAFsm5": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12VAcwiG75YuYufBKP2j5nwLcUwNpRTbzWwUtoTRSWCgfLsvWxY": { + "balance": "65.706773765", + "bytecode": [], + "datastore": [] + }, + "AU12VAfJmEPPnRLELLQqR7E46sa7HKq2cvmfoR97gd8MyRhnsJTbL": { + "balance": "1399.060253259", + "bytecode": [], + "datastore": [] + }, + "AU12VAngyhShA1i1BH2iYJxjAZGHe8mkRPGhpG7t2UPUvCK9KMrXe": { + "balance": "1564.663297370", + "bytecode": [], + "datastore": [] + }, + "AU12VBNkQ5V1LhVZhbD8Qv2FnvRKstMbDR3nDbVDS4ARpEBhqmbB3": { + "balance": "2380.377623596", + "bytecode": [], + "datastore": [] + }, + "AU12VBZzTpatCD6QYi1coNUzoXzk14wRReGFAgDNVFJo6jsjZowM6": { + "balance": "5382.566847413", + "bytecode": [], + "datastore": [] + }, + "AU12VBtU8tMkNKgBD1SwKxkuMJoYSQQvvwwqNGKZ1cP1jbLzpm8Ez": { + "balance": "1162.346134066", + "bytecode": [], + "datastore": [] + }, + "AU12VC6Q4P9p6tWQ4iQ8NnXzWb5ukLhX8WAukfUaiqTZCVAMDZhno": { + "balance": "31.481748071", + "bytecode": [], + "datastore": [] + }, + "AU12VCUmWeRY24HT485k33qB7RDGad9dTx1uLnwnrviEqbppxRVaa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VCd4HXEJYvPFbF3FPsXTaHCjkBmSHtBYZxLZ6UyBUS6BgG4zV": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VD2EaZmcATAZ4hmYbvmqqKbN8QjTiKSfDsuugY74z3yga2Y3u": { + "balance": "1918.086354811", + "bytecode": [], + "datastore": [] + }, + "AU12VDD2Z5AMUNzbu6PHAgLZXPAgNhwXV8ihJFpTxQvYPmCWKtC7r": { + "balance": "1804.139504044", + "bytecode": [], + "datastore": [] + }, + "AU12VDFR1FNde6rPnwQMw8xhEk7cUteDB9SkghUjjfnD2C5MQHSCt": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12VDHJHisR6vaXpHPpLqetuYuYT7wdkBLF3ZnaQ11jZ2kCkpNo5": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12VDJqiWMQFz8iP7EN8YaGdmzcpU57bJJyLUaVnroKppF8EWGbA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VDK8R4umHcF35L3xXnAPpxEG7uLk4ddAHoC9kCmJFwEsPBert": { + "balance": "3031.052202416", + "bytecode": [], + "datastore": [] + }, + "AU12VDa2AupTCF8dbRyuSzvqd6qTWK2QvmG5upA83dimUW3a8tVZe": { + "balance": "1533.145745170", + "bytecode": [], + "datastore": [] + }, + "AU12VDcJGgQmaET6THTnU4BJjboaiC5A27CHQpTy8dYs1MVnyeXGQ": { + "balance": "1706.291580496", + "bytecode": [], + "datastore": [] + }, + "AU12VDfvNbCheHCve1Vw4xWTWsQMrMyTRcKUQ8wLeLdDKwbcgVXqB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VE9JRhN8zdQQaVYm1DxjJfTRMfbQt53zQV9YRypL6nyJxp8J": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU12VEGRYLbH6bJQwMvbpHSmGVpoETgrK32KyhqpsmYGMtnuYgbrT": { + "balance": "2255.747792119", + "bytecode": [], + "datastore": [] + }, + "AU12VEPtGx1cdRjkQWLfHfro3YsKWP52am4WsaVvJswgJX88UVVb7": { + "balance": "1583.643732726", + "bytecode": [], + "datastore": [] + }, + "AU12VEU6i43pCUjyp2LnsAq7m5RjU3XLuXWtSGzuGfsFPLgXfBjJB": { + "balance": "2026.081273706", + "bytecode": [], + "datastore": [] + }, + "AU12VEYXoVScbVf6o8fWsu3MBJBGq5W4665XaparUr18ASCG4nkJb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VEenee3zkG2bM53Xngmy8Gz8TkD8s5RSe1EAwG6BV1xWMRCaD": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12VEhjhWyJn8aRTV4bqCn6hfoEzKRECZEg3uS2XnJdSRYFAAkKB": { + "balance": "2659.617432374", + "bytecode": [], + "datastore": [] + }, + "AU12VEnU1w36KnF7SzrTcs4Qwh2CJJxZ45LqVdyJmBDq4UUA6uyDx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VEoNfcWf8EtwNXgTnhTgA6VmTQBParNe2QcNAdx9aTgJ8FDRd": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12VErcT7SPL2TqhWpHXucPsdCrVB3yURwgM9rCWEJfjpdCrnoQR": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12VFRazKQ5vSh8f6yns7nfBsSZwH1TFuhRB8Mb45BGpKgjN4wSt": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12VFRpgQevx8e1sGCDcgutATWcPUZsXhRzoVL2zudtA8NjCLLnA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VFbKfe6uHcYPqwnZmkJS3o7VNBwPLMsuqygm5B2VzAKFyVyqZ": { + "balance": "814.140514005", + "bytecode": [], + "datastore": [] + }, + "AU12VFemUWfSpVapUSB9aoKB6KMZX8wy9CWFWaep8NpG7BvPJDSso": { + "balance": "5041.639701368", + "bytecode": [], + "datastore": [] + }, + "AU12VFoe9ynhWcENqxRTCmBvtVPRSrzUrfcA2SnGjX6rcWh3rJPXU": { + "balance": "3728.977311049", + "bytecode": [], + "datastore": [] + }, + "AU12VG8AzH4mPKzybMZ9Ez3pci6NjjrH7QciY6JVaiXXADizv8T2J": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VGM1NeNTQLiQUyiKC7L4utx3bfybL982EZrmNtrteP9BtM6wR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VGZD3DVsWdgGuqp7eFWUyoE28fbxvk1Vg1QrQ7cXTQjSJAkHL": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12VGn3sYALWCYnYYr8KjRpgphnbJrKb3riPE2ypcDuuRLZu4wk6": { + "balance": "2268.270882377", + "bytecode": [], + "datastore": [] + }, + "AU12VHDA7y12DvSQxNS2n2qw4m96oratXPdZ6BuRHwd1bfdqS8muf": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VHEZkyyLzQ8CvtnNrzugG88EXkNhH4fDjTMn7FfZKfYd41obB": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12VJ5jHmqymgPqXi44EUeUJyMmLKKLKeLUKs3gPgjwMYigBdAQo": { + "balance": "716.423756070", + "bytecode": [], + "datastore": [] + }, + "AU12VJGPosYREspJhdZQmnfuh1VVga7i4SnXPeAjzTcXoDiPtEW6Y": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VJqreoPG4i4fRhamNUHRMpTDguyrjBY9NRobA5UEXgwQAnbbh": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12VJvmzCR8dndtAezPQweWbR46Pkwn69y56RjQJzSYbqfTh6E6q": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VKDPabQbkPHtoof96ouAjD9pWmLxBKar6LR5FJxTmjdjPeDDp": { + "balance": "1630.084203750", + "bytecode": [], + "datastore": [] + }, + "AU12VKKcYLZYD5RWnubrEG2VttBHnyTz7TioC2Vtdj2NWBvih1tb2": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12VKMAdcZ2WggJ6yBFd5Mc4rHCtxF1GUo8TXBhsibjB5GyfaSTK": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12VKqHkEwAT4hMMcTrN4P9L4MAc7uNm1LxhE43Jmt6QpmqSANYT": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12VKqyoBAMp5wpoU37svxq8DLGsrrnCKtFGz7JoTtZiv2cSuw72": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VKtdFDBSDygJtbFLDtDjzvQPXK2C384R6f1ZVfjgpraYNmb7W": { + "balance": "1801.034910694", + "bytecode": [], + "datastore": [] + }, + "AU12VKwX8WGsKkkK1TTFazeTnimGcggiArR88AHURariYb6sEc5e": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VL8hDVcatLM3VoBqBW9dUc5mS7WBnWKL9GtCqj7ed14kD4rDP": { + "balance": "163.571766648", + "bytecode": [], + "datastore": [] + }, + "AU12VLFNW1KohQW3rvp7pHKQrLqKmHGXQQAECNf7PgKb2Vjph7LkS": { + "balance": "1616.858103731", + "bytecode": [], + "datastore": [] + }, + "AU12VLTk1gfrX3UT3dxD2Bgg6HWk2U5y3cEouhnGeHYqSaAupKAco": { + "balance": "221.868158466", + "bytecode": [], + "datastore": [] + }, + "AU12VLU7tZqMjJkm8Z8YyBAtvDtmEjrZGxNGL73vrEWontKn2hY23": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VLkAmmMYQEP5QEjqGYEr7iCyzaW2i8hMjHyUbVdTGH6GacaMY": { + "balance": "2516.512421426", + "bytecode": [], + "datastore": [] + }, + "AU12VLs7trZRyRWZT3iaQmJnRnMeuDfHwSFeVFVtvjYur7hg6YG1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VM2Usb3czrpfunUMgSRJ9VgEHpat21TxCCphJDaarHtxF961y": { + "balance": "1200.431031527", + "bytecode": [], + "datastore": [] + }, + "AU12VM7nWLGEEzkb1xFUKptmu7EH5qYFekMWrhRBzAg7csWiCApNU": { + "balance": "1090.242032361", + "bytecode": [], + "datastore": [] + }, + "AU12VM973Ym9KuXW35vEGeDQbgeHXE2UUWvJkMBQm2DpWxp1DGrUm": { + "balance": "1799.540195061", + "bytecode": [], + "datastore": [] + }, + "AU12VMdUqxTSm4SHyhiA3BYzjKq9BW56ezYqbQgtLsipNRiuRKRhP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VMySWLNFkLKgcdgq4r5Yxnen8osPwi4yEz33pTQTTsQkg7wom": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VN14U5kZxduww1TNfAKnJji8zM3hAwUmo1RrTFefGeoci3bQA": { + "balance": "1825.068749371", + "bytecode": [], + "datastore": [] + }, + "AU12VNFAWy5YA7FXvcCEFybXRvb2AcWrKficgHwrTASnhqi9hLBCG": { + "balance": "1502.606037773", + "bytecode": [], + "datastore": [] + }, + "AU12VNXAH25u4FErY9ks8qzBSBVwvux5UETUiboXYwRhCV6qj8dz6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VNeoHqzG3DJW1R3wWFDQH9Asgugw5mrR6ZNFLDgfbqEif4yUJ": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12VPdoXJLQv61qn5aZrb8T2fMBL8cDaJnrmkXK7VrvC9KfiFAYb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VPtp85p3GbXzJL45TMPPcbNXvCR2Gng3BkgNRzwNaK6a4RRPi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VPwzSgMhVjaAx1dvZV85uzPUXAXZJsYtG2ggFAbSPaqvxkSm1": { + "balance": "603.850600672", + "bytecode": [], + "datastore": [] + }, + "AU12VQLFrE47zAQ21mPFckKZjL9qsw3WWh9tzvLm4ZAP4t6SdrEFE": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12VQh2sq4vK1QDX7sgTUwdBqpj23ewaiPksH3bta3jW9rb2muZ": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12VQhUbwkQCsBFfssBGiE2yJUSqdU6ZTwCSdH7Fug79wNXvK2BA": { + "balance": "1369.678864281", + "bytecode": [], + "datastore": [] + }, + "AU12VQpPXpTEXCdn1twBjwVzH8oGs6LdLKAiQ9qjmEvfdMMJoGw95": { + "balance": "2178.135267785", + "bytecode": [], + "datastore": [] + }, + "AU12VQsTGoKTSpH7PXdW6gR3sxWfwjpYBFq7HasLfUgwPGQmi3BsP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VR18xGEgD5VDwrzFwocD1LovPrKS4ubTNyPf6PNAYivfNZFuM": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12VRiAv3BaNKFKMZAjRHJrhwUamxLCUGzpsqeHgjcu5xvHV2pLV": { + "balance": "2440.285577502", + "bytecode": [], + "datastore": [] + }, + "AU12VRnsfsVFQbvavUjUW5P1Cv47XNZb2twyC74ERiu1rwTVXUst3": { + "balance": "1491.483181146", + "bytecode": [], + "datastore": [] + }, + "AU12VRqsYmw7n6tSmTcdHyTEuNgH9feYvVoMpQqo5ep233fv9ZSmF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VSEDrY9B6jYP53A3vM9Va8tqgq3uJLP8qWrGcNRRuaNgRknhq": { + "balance": "1857.989438348", + "bytecode": [], + "datastore": [] + }, + "AU12VSQAhDtczaUYu38t5AuSJHX3tQDNPyCZ1iX8h3KqXKsAgprLY": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12VSUPdYLr2N6b2937moMojPg43taykZnR57NZnhCU8dbjvSnJ2": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VSsr8zRbxKu5LNZ3QsiESzwW8ULq9ZQ4LhGMP25DFSTjfLxkq": { + "balance": "920.825754112", + "bytecode": [], + "datastore": [] + }, + "AU12VSutsbsM7Adzwy6sXLzToM4WXfuvE5r472tzMp3J4KLacH3Jd": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VSzdgep8xMcsBcWdGTAS8ukbd1WmiCaiaqhEKRUkLNcdbCAbU": { + "balance": "2681.753091213", + "bytecode": [], + "datastore": [] + }, + "AU12VTw93KTRtS8mtqMbgitzp3RD2ETZ6LyMqqNGFVE6JXGdFraRY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VU2z6Kdd1MZfh3uZuqkqCqwdBmAuLWEvfqiAshA9Snm62Csqr": { + "balance": "4354.889157860", + "bytecode": [], + "datastore": [] + }, + "AU12VU9Bvb72EUmmvhvZDqzyA4zdjWjZoBeUbaXhBmK1soz6zNmrU": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12VUJSixBUwaGZDfyjRJY6Lde7FnPmymCCxLuMfxJiG9ixW2Xom": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12VUXK992Dopa1XFzZVAe3BwyRvB1bvLpcxHQaAnoKfts9zocJ1": { + "balance": "1927.761285920", + "bytecode": [], + "datastore": [] + }, + "AU12VUvduqnnHniEDnNMVgQnbgyCGyvVYspPU2cqc4ChLGwZRVQZw": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VV3XstdBTzEdvbwXLg6jSjCAdAm514Q1X11ioQMkJG1sZAQXc": { + "balance": "1058.027162816", + "bytecode": [], + "datastore": [] + }, + "AU12VVDafEu56aPaXS1g19zHP22xrLRMemdXaCbTCdaFp8asWKxQP": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12VVLZhwkWJnr6cmB7n5PiszDFmJiwci3DGJhavbMeUVgRdVjZ7": { + "balance": "882.806955466", + "bytecode": [], + "datastore": [] + }, + "AU12VVPmRideeNQbE9ZKFybJYyS9HxeAiLEqdoaTBymNjnGapP4dk": { + "balance": "251.034089769", + "bytecode": [], + "datastore": [] + }, + "AU12VVhfRte328tBLR5xZkwuW95CpuxMKxHxZj6E8adf2Xns4BEw4": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU12VVuXFtdiPZCeVotFY8BctiNQttG4LqSTar6NYWRGPeZVk7R7S": { + "balance": "2166.276166000", + "bytecode": [], + "datastore": [] + }, + "AU12VW7wNj6528vLVRrhxSH9WDsTFy4VkZEUpsbW7rC4B6w12MM9y": { + "balance": "908.567524013", + "bytecode": [], + "datastore": [] + }, + "AU12VWDv914pVfZ8AGTiB54Ltz34DQn7x5tWAG6W2K2EjaJeMN6tU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VWP1WRSQh1Esp3Auczai8siXrMsn72HpMJo4Gv8vpphNzuM4u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VWdyLnK6qe9Hw1CPwT1BaxPPUesgCPTzEpks8Nvokx9Z9SMSQ": { + "balance": "1392.735783845", + "bytecode": [], + "datastore": [] + }, + "AU12VX3r7gbGQe1KuwMXvrgU4ZUd6fD4fYs21CdFprCFoWLcdVPdd": { + "balance": "761.138039206", + "bytecode": [], + "datastore": [] + }, + "AU12VXuhpYrh3ZnXSQr3Dr4D6UH6Z79i5M1KDe9ZHFNx3FRHrviYm": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12VXwxqPfkQ5LBhMNxGWFPJbh4zYvg5Une1gTGR5fyjz2iMxGK8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12VY2sRMkhmx9ZmCxE5sWLtR2e24NLp6qcPgFRkRFpUVJVp9stW": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12VY7AVhnsFzxdoxHd33c8bjTu8g3mHBHTEcZV8JY9VVHdy2v2K": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VYE4YtVWYpW6ZvnjpKojQAQybSrVfhqo3KMzHLRmyC7dxm6fn": { + "balance": "946.669125737", + "bytecode": [], + "datastore": [] + }, + "AU12VYLU1SWz75omjctSLYzQtgt3Wkehe5SfkQK1T18hmcRw1JEPx": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12VYnZR4xor2CZZ6LyHHPxWdGuXM4uo2UHkQED2s9R9ZBQgq4wK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12VZEk68SCHV3jVZunPeGtPPtupxGRnJVyPMQgcmLKmyLtRV6dM": { + "balance": "1703.834544810", + "bytecode": [], + "datastore": [] + }, + "AU12VZLNU1dyUVFKekCYdXZ9yxV8pG99FkvAi6XQhpD9zH5DPw8Z4": { + "balance": "88.438345725", + "bytecode": [], + "datastore": [] + }, + "AU12VZWdyM2UxpQEVfx7HnSguKLqRubYfrgXwaPj6aUnYVHnefLN4": { + "balance": "806.466302070", + "bytecode": [], + "datastore": [] + }, + "AU12VZsT8nzrJ83fjwpjuLSqTUeDoYkxVXUvoVaJi2DgbfPV29ioP": { + "balance": "1673.533052333", + "bytecode": [], + "datastore": [] + }, + "AU12VZzGM1vFjXniHvvsxD7mkByqf7KCGnkjn73LWntkQ5jRs3qeL": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12VaZDiBroKzCELP2z8zH8pmgztBk374knbkAL87x31849pSeef": { + "balance": "1668.253249621", + "bytecode": [], + "datastore": [] + }, + "AU12VaaJUsxdQaodpLUsAC4PomiBJMGScaVLMVCufyeGiuq3cFDTM": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12VafXWRSRRWJfwKK43mdVKD11EbSnFk4gZTrV6zuA7Kt8rCYyf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Vb5aYWKZQiXDbU4c5v2We8h49vKt611RvymMxgwZXDctLdqu": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12Vb74AVt29fpqux6gJGPJ4V1BDvrMD52fdqiEFdTSMMEoUgMXe": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VbGyoJK4Pc37paALTjJTK3AgVXA3cxMBPjZfjzbdATJ8kzDgn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VcFWzG2HurhuB1Lbzz8qU4UmF7XvRFNoW4vaKwoGceT5p8bkZ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12VcWQMUXQAQsQZRJJhKtHXiW3c3jhtPHynwn8e7Ze3D751G7Wb": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12VcYv3BCtApyoapvuNYmR5oyMRAybYRYZzjDwzPhCAw7jodgem": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VcooKzGzfmtyvPnjL1A6HvGpf6DLkwA5EDxs67gsXpyCUukKR": { + "balance": "1607.312680356", + "bytecode": [], + "datastore": [] + }, + "AU12Vd8n8d3uEbGoa8cfxgJ21GBhSjj8fBzGoeV9mjnjKr722RaQn": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12Vd98q91VZX3HV7B9FNEpr9fEKbf1TvvpULYompVwv3iLTWDwB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VdGycuvnudbpxinz9VP92W5nyC6rV7ZF3DNZmMmatuNThUALu": { + "balance": "2223.663498242", + "bytecode": [], + "datastore": [] + }, + "AU12VdqoMKFbFLsqBP5Dkp82Ag8KhDDm9EKDXNJqvRLosGhPkFgtp": { + "balance": "1379.392416154", + "bytecode": [], + "datastore": [] + }, + "AU12VdzNYMzdxuwNtygMmtjU2uwf72Yt2VPMVLQJ8M6jD4EB4QqCw": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Ve2EKdqbCdS4Y5MMmo6fbQ98sbu8AcN8M5GwtBNtkYvFjzFec": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12Ve8NQEyhFEo8aY8Q3PDNfp35oWCxry58iLArhTcqHYfgr6rhW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12VeJaq3nYenVYyFDwVwA32cHwz6DFC7Q7izMHDAU7g8EwPYeDS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VeKq4pwVcXhrmJCxNgm5sNVBg94Wa6euvuRebH9hULQAHHzHE": { + "balance": "798.310405173", + "bytecode": [], + "datastore": [] + }, + "AU12VePxwUFb5ha1Utrmv8L71RjESotzFenHiSTiaLrQ1b1gvmQQb": { + "balance": "252.146835335", + "bytecode": [], + "datastore": [] + }, + "AU12VeV7u6YZCC3n5kfc3XxvkbBHyATjy2z59i2yev5TUeTnv8H5w": { + "balance": "592.095845085", + "bytecode": [], + "datastore": [] + }, + "AU12VeWkQ3NmiQUL18DhjP1L4Atop5rJBXBeML8AfYnY1t8qBFvGR": { + "balance": "4031.431466074", + "bytecode": [], + "datastore": [] + }, + "AU12Vekfv4Y8dA879d1ikKYaUCqD6tmTXREbUe4d85sq9GamaNvWa": { + "balance": "79.078078620", + "bytecode": [], + "datastore": [] + }, + "AU12Vf2Kj6WNSMN8kZuU8XN1n6FCCK3h3RbceijgozKpq4xfX7Hb2": { + "balance": "582.831993342", + "bytecode": [], + "datastore": [] + }, + "AU12VfkzfcbyHqdYB3h4Rus2MsSTN4VPSavCKkJGW1os27oEq2hdM": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12VfqP6EC6Rd4sDPEeupGLNcP7YtBYaCbDcu233SEWFzZjvhLuM": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12Vg9Mg6GCAUvJVC9uBy4CEw2XFfDdqwPLdG9Dn5Qnvbk6pvoor": { + "balance": "828.413067291", + "bytecode": [], + "datastore": [] + }, + "AU12VgYE9EKir7pkpD7K4gpUEYNsoQNSt7tGnMcXA1cg53ncP93q7": { + "balance": "2612.189691152", + "bytecode": [], + "datastore": [] + }, + "AU12VgqxUyQsCzD6mDDifytoEqkNK6UgSz4oVHbhEhXxWYLUZ1utp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VhBVpEubwPV79UAfKLU4yFVDhN69RtKP87jAnFQ4U5mgd89F9": { + "balance": "1843.151923122", + "bytecode": [], + "datastore": [] + }, + "AU12VhpiLQFVCaoDyvpKNbhMKyeGB18RjGb14h49bLfcCuBdJXMJR": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12Vi2ZymuaEzoZCXHu4ANMqCa1yiLzMsa8twYzisQZDMSj5Bddt": { + "balance": "599.218952159", + "bytecode": [], + "datastore": [] + }, + "AU12Vi9V6Fsq9HMh9ge88WJ5cgymBGc3oUX2F6WpRqA5HdabPcPt5": { + "balance": "11342187.399000000", + "bytecode": [], + "datastore": [] + }, + "AU12ViCrTxUSHJR4CZ35jNtFQ1geuCtynCKqjLTU3UMpWNmQ7vde5": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12ViGQZfeL6uG9AHN1FJntF2QKr4m51USNTeXtdoGS7Uqyf1Wcd": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU12ViULBHcS8Z2j19QDwBhfynR18VSTVVhixApBWxzVQZys11ywY": { + "balance": "4619.784462524", + "bytecode": [], + "datastore": [] + }, + "AU12Vitf5Qe1QDAs953xm5eVCX2jcxRNG3Hso7L3jv3LHgFK3pUST": { + "balance": "1092.096298426", + "bytecode": [], + "datastore": [] + }, + "AU12Vj7xEqC4n156TnyHMDkqxrqhye79mw2LgBgb7awsqcKWf132F": { + "balance": "1700.103369120", + "bytecode": [], + "datastore": [] + }, + "AU12VjLq4oNgGKbodrtkr3FuXYHvgeiCVwi3pKMLnTjJxJbfuUnCL": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12VjMnLgzRK465JAJktfrHRjnKauPWC8tRhghUYbuwQxdKYNTYo": { + "balance": "2490.157492310", + "bytecode": [], + "datastore": [] + }, + "AU12VjWqM5rAdCK3VUGucJz62vAGhpPW5YSYC1Sz4LGSiVdieSfud": { + "balance": "755.608338316", + "bytecode": [], + "datastore": [] + }, + "AU12VjmvLBFpe1MgPf1t2MgsjKrBo1fCR2HBXiEZedZtyx6TQWy3x": { + "balance": "2235.815116464", + "bytecode": [], + "datastore": [] + }, + "AU12VkM7ji7gcpouka49GnseyBE519XSypteLLwRasGgrJM4iMiF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VkRcc4yVTEys7SWG2TqpjsFEoAhwCWs8no7FxtuBksjGmjt5V": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12VkSpm9ujDCTUnnkVkGryiNM5aTW6qkTRd7YQX96xbtQ7aiGnv": { + "balance": "5344.042828823", + "bytecode": [], + "datastore": [] + }, + "AU12VkpT2MGPx96FdsGYc9Tv322bss4U8e2WxCMUw1SbNTDXPPJk2": { + "balance": "1192.945174265", + "bytecode": [], + "datastore": [] + }, + "AU12VkqivAKGfL4eNLTr9W12mBvr6jux64aBxzgp9AyNkJuiE8jHN": { + "balance": "2208.284336222", + "bytecode": [], + "datastore": [] + }, + "AU12Vm72Mfq5KZNAPY2TUJQL67frsbUThTJUQa3i51kk4J6S18e4f": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VmFV1rPAfLLtUBjCNorXWbNt4bBLHmEbacqSMwYLJezwCS9g": { + "balance": "2289.605639765", + "bytecode": [], + "datastore": [] + }, + "AU12VmP3gYb5wCRGvWpZL3qnQGjQx8P1Urkr8z3pEtsP3nkyEdU1S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VmU8Rr3HoKdf45uU2Rimb4SHeAcnSXq3rkeogRPtG7KHABqHf": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12VnBjjLBHrU6u4LwVh5esgSCuUX83rgfpaKQArmxN3e7G3YwSL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VnaDTS69FbVssVktPEwAi1bNGYSVGFGatuHJgCHZ8qDgQiLF7": { + "balance": "732.527313865", + "bytecode": [], + "datastore": [] + }, + "AU12VnbuDqH664Z8FgZ5K2PzgUg7jSSXkVvhqhq7ZfbLqm6fidsrJ": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12VnwPtKEfaVb3Fnmzin2aUo5i57SCVnjSSSxnbZmwb5BoVh4oM": { + "balance": "2356.715333474", + "bytecode": [], + "datastore": [] + }, + "AU12VnxSFMbGB6r2QvUb5W1R6uGqrhC46qZnomk9p6NWAS7deuEFK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12VnzfCyRjykcY1Vkq6JkBzT4kdcZkTHFvyAdW6Nf4bQnjq25MV": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12Vnzs7vtSXv9JmRUmjaGd4AqmGmr3QSsyQnrBPSWmTNp3xMbzZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Vo6QRQ1G9shbiM7n8HKKB65NnnP1baiD1JHeDxGhtTRrqEtxE": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12Vo8QdcZG46szo9SHBWNBcu9h7jN8evzcJJNXUQgumohr72eok": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VoJLRSSCuFCzenSjr3cZurQkTw8FPGNzeHxy54deDXMz9BmdQ": { + "balance": "1655.749219156", + "bytecode": [], + "datastore": [] + }, + "AU12VoKMAt7x4xC6Vu4P53WgrxHTpGDNMqCAkq5X2bd7DFpafSiXN": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12VoVeANTpLJtZ7C6HDsLNxhQujAmvUzAa2miNrmGnr6UKt24r7": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12VomwDBj6QPyZgotcNUFwy2bx3JLA2AkmRxMXJ2F1owWCSHoQs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VomxK9BCgSgwcSPmSCg1KBTHYyjaLnUaYL27hs7apKrNGovzQ": { + "balance": "3395.786836008", + "bytecode": [], + "datastore": [] + }, + "AU12VopcQ3jGGuv1xqG7pKqCnb6ZHrWfYbNPfNSMW4MJUdVokJ2Hy": { + "balance": "628.511666465", + "bytecode": [], + "datastore": [] + }, + "AU12Vp7kugZ6e3hA8fhfUnQRez51oBRc9xZokJPyb9B6aj4ncRRRJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VpGfsfW3u8XJcTCsPBJJkcx74uoLzrca77o6c6AZ3YnfQ98B3": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12VpqwrnEWcGoU58m4j2nvXWpPJE8NivtXCtT2xG6deUMYEc6Q7": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12VqL5Yh4uhe6teiNzU9vUDq3XyTWMQKFyJEtUJiLnHhDeBX7Ty": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12VqMaFLtRRSBsFBNR7zWuNZy9mmQYRLZ1MBomE4s1YHN3rXCYr": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12Vqh9PaSzQLM2BT9h3s85N4AYkR7tiL9zHu5Wq1aGRzLpGjNnK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VqnVF96QMtxAU92D8bARjXP8vk4cEFTMBYXZEX5fhK12QCgGN": { + "balance": "2524.267906783", + "bytecode": [], + "datastore": [] + }, + "AU12VquUHTB8RqiUh6ipZyzyHcBANCgVSU4qePnK4RDeufZt9KY1D": { + "balance": "1613.750590907", + "bytecode": [], + "datastore": [] + }, + "AU12VqxjLzmGFhoAq4aPEShrVE5NDXkh1tcgZsBjsGAXQPaUpg6oh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12Vr3mCqeLc1sjjfF8iEXozEccjg3XU9uK8ngsrseVeqktpLPRC": { + "balance": "2025.594632593", + "bytecode": [], + "datastore": [] + }, + "AU12VrDZzb5ridyvq2q5uxG9LG1MC4hHvWiD3oqrnpxo6LeDVfQac": { + "balance": "2560.626734757", + "bytecode": [], + "datastore": [] + }, + "AU12VrEh5XhtESkBB1mLsn3Rdsh89W17M5fNvA7FHKtCgFWPfsSU1": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12VrjsfhCax7LCkCJioGFh6qRYKZNmgpkrqFWEAY5VcgHFeeaa8": { + "balance": "1955.878520024", + "bytecode": [], + "datastore": [] + }, + "AU12VrsrouBLMVTWA1XSPQVhXsLhRshwW6V9ChZeS13F9YBtRc34d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Vrvwswj2uUq631JtRnF3iyBoFR4Yn1EnHke1nd7Ti95Ke4Mna": { + "balance": "556.897200056", + "bytecode": [], + "datastore": [] + }, + "AU12VryiXorMBaeYhwkc6ZBfQpLiKFgLx13N519FpQUZw2nuaDUYi": { + "balance": "1687.457552424", + "bytecode": [], + "datastore": [] + }, + "AU12VsPN8csBuoDE3NuEYyKs8Cmi7StrohEAW21JJtFtcEVhbyWJv": { + "balance": "1385.488869502", + "bytecode": [], + "datastore": [] + }, + "AU12Vsx3sxJZT6z7VSnFwcrBK1pj2XW7UEt2wbwR5qZc25w5LaTNa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Vt7bMrs5LTSJzNsmDBuNqT8Ecef2qYejUJXFEjQx4Nzt8dLPm": { + "balance": "1536.302198271", + "bytecode": [], + "datastore": [] + }, + "AU12VtHXe1Tj4ZrqsMqzrqur7Zay6nAtxeYW5bgQk7bqfkZHj5wTH": { + "balance": "4359.234141738", + "bytecode": [], + "datastore": [] + }, + "AU12VtpTdFgdBJvz2o2dU6NqFahMbzZJ9q8zJ5bx8mFRprnzzSdbc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12VtsRZtvRcBpjKX3SLMvED2gHM6NvhWhEFhLy4UaybTLPGnpx": { + "balance": "1944.592490726", + "bytecode": [], + "datastore": [] + }, + "AU12VuFhB4MznZ8YCjsMpWx1EVvQhJ6XJZMqoWhs2WDZisHzHndh": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12VuPqjhZaSdHsuzVabc6FtNN84cZ5K33EWm81e1JPAg6zMB3NU": { + "balance": "735.534924475", + "bytecode": [], + "datastore": [] + }, + "AU12Vubu4utrAj5Ti4QaDEF1RZ289fKwQFjZmN8sucicDzH5BHLDV": { + "balance": "5178.724724503", + "bytecode": [], + "datastore": [] + }, + "AU12VujT62RnSYC8FPg3Rmci3R79birbo5uAYi7LH5bGgNrgkvYwu": { + "balance": "2707.890944720", + "bytecode": [], + "datastore": [] + }, + "AU12VwN53UHXWxz9qskMfvDgXPM2CihoaJodkWcwFLo3AemVY9tL9": { + "balance": "5100.236786367", + "bytecode": [], + "datastore": [] + }, + "AU12VwnkRVecfC5JZS7MVcD21PHvAxnmt2JNofWvnyE2DfGZQ1gmb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12VwxmhDXJa7JqGRBA2iJwnh4EQ5o6juThbrcwBSpABWx4JPfgs": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12VxDoNqBdoe9bADRpfAobU1ZfV3CeWZ8TksZXGutP3czvkxzJu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VxFaYNq6vZ6zRVC8AxDVmNWYnE6Smmmmq68yKzGL1XqXmHpAa": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12VxGigxZUmUorVkyF6m2UeCsYMQc67sYydGyf9qnnPTfnVpvBP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VxnkhQXyahdHVBigoU74F8JTpKqvQ8HypmEriegKBE7i1fSQS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Vy2buRjXsoqFwWnCe1eMPuafzfDusCrTavYsUnzcEC8ayaZDU": { + "balance": "217.379058388", + "bytecode": [], + "datastore": [] + }, + "AU12Vy9NQneWDTdJTaBwcLBDhaTh5KHWwgG2f9axys4JsncELRB5s": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VyHgG9ZRobyeB8Wwk1czG89UpYYzQ5rnxJg755nz1fWydRNky": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12VyKCzdpqprAspKzsxyF6DUwnEox2Ums69AWAd3Dd1wc1Q1rAA": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12VyNCLgEGjLSetiScQP63zgsjdbDtc721RYmKPTckWkbpuQYdq": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12VyhkvbJaDZFxufmcC3CF8dhLDj38fD5FV2PvohcrH6EUsRNXr": { + "balance": "1304.971058111", + "bytecode": [], + "datastore": [] + }, + "AU12VyiTmhYrnGNKoNBToxmLSeTMYMjN71QP7VE4pEznZ2EAqSUB4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Vykqz9wDZUbFDntxg6hjdnC4nc2yGgztRFeEPodjKvPHUFf7n": { + "balance": "1992.186959258", + "bytecode": [], + "datastore": [] + }, + "AU12Vz7CtF61txua4kqJDVpT28SE2EMGQPa4DXX8hfd7ycCFpauan": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12VzSSwqrB4QSzsJjQ3Yabhc4sYEdy4a7QSBrN1ELHM8iK9iZvU": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12VzkFTUFiVPcj1CvkJ7zK3Bp2kPsN97kUPhjFJugbHcWDdDtge": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12VzpuR8hth28VVbTnTKdf2FhDnoqYRGbY9CMXpsdRtP4giCGkP": { + "balance": "4698.321439340", + "bytecode": [], + "datastore": [] + }, + "AU12VzrNK5hFGHzSC4wR2VStwUMBgbGLy9cHv5PxAqPMXne6a4VdU": { + "balance": "2269.891108249", + "bytecode": [], + "datastore": [] + }, + "AU12W1Cx1DHmnkhJr4wJos6S3s46473cLbKkAzevVEu8h546RjQJ5": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12W1Kbq64beVMwbBZQYLDiEsqyRMnyP721vPfwy6QdB63gW8Tz7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12W1f9YQAdnXybamXnt4kB7D7YbbadRyH9zHT1FQybTbbxizUqz": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12W1mNg47cihB1ugqTMdHHGipiaFjLnXRUNSAiKzfDPQo4RbZRd": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12W2Db8mZpJHJK9XHv2rpS7AVkMC6x24wSs82Fa3gmoijG49MT8": { + "balance": "1047.074755947", + "bytecode": [], + "datastore": [] + }, + "AU12W2MD3mXYq5GUq4z9tZbb31byxNyms89hzsvyty1TijHteUNPQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12W2cHjoinqhdtQkeVYjvoc7VkbhJxkkA76oe2fN3FCPgK74zQF": { + "balance": "251.396001425", + "bytecode": [], + "datastore": [] + }, + "AU12W34reqGpf2dq7iDtnmj7iVSBBPmzp8q1BESMGkUddBURseHeJ": { + "balance": "2866.504767331", + "bytecode": [], + "datastore": [] + }, + "AU12W3JqdYBqAdAS5jjmXkoHkaLVJfiBYQeXgg9Kknz5Hbiy6spmd": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12W3omomcB7yc2DwTDHq9nFa563vRpJ3jbZupby1AiLa4Eu94eH": { + "balance": "3032.702252395", + "bytecode": [], + "datastore": [] + }, + "AU12W3uaVhvjMrAKcpHJHUkKKXiDcaY1Tdws94aVqQRGzh7c6PLXp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12W45DmLJ9169JuJKZ1YCNxvuEodC7UHG2Gg7BCxbJLRnKT4js7": { + "balance": "981.280543063", + "bytecode": [], + "datastore": [] + }, + "AU12W4Q7NbSwaNENtDr8E2KtXQjd6eb2f2EKNEcTfhWkKXez6Zhbo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12W4XnfYR93s3B9erVc4kEbeCYu4zaLtYsDRe6WyXrTZg93oArD": { + "balance": "962.575571993", + "bytecode": [], + "datastore": [] + }, + "AU12W5hEGguQ7y4LYpdEVLFnvYgYWM3hjWmwFFAaZBMzrJve8dDKM": { + "balance": "4172.346088283", + "bytecode": [], + "datastore": [] + }, + "AU12W6U91vGsTEgWkpUjvmaP6jQocP7ZVY6GayBpZuo2QoyoxfmSJ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12W7k8hLYrcSTo3z1qq86rhQVBAs5ARJqRkogC1L1zfQAuyLeKN": { + "balance": "95.996174763", + "bytecode": [], + "datastore": [] + }, + "AU12W7qdXqCWHAXuFem1Xnp4dXFwGy8qiGdP9eQHFYR7ynDUcWDrD": { + "balance": "1066.669176821", + "bytecode": [], + "datastore": [] + }, + "AU12W7wbSpb3Y2G4qZh6HCnfakA6kwi9dq3gYbGi9TQ1DC2QWFN4w": { + "balance": "803.543277826", + "bytecode": [], + "datastore": [] + }, + "AU12W8HV7CjGRzkk1nFZYQaubTKTny3emqkre9cUpy928ismttb71": { + "balance": "1306.813491829", + "bytecode": [], + "datastore": [] + }, + "AU12W8niNTHvyJDUW8y4nsydmrQore3GxrDrRygNDs7KjEXkZ6a3b": { + "balance": "838.150948154", + "bytecode": [], + "datastore": [] + }, + "AU12W9JgJ27hRqk3xAfE1UqREs3FohvJkTRTFKXbAeizyhme6cDvF": { + "balance": "1600.828092845", + "bytecode": [], + "datastore": [] + }, + "AU12W9LLdqGfJaLDgsqan5HbihMfFsWwvX5Xw5CuZro9EpS1iDoJc": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12W9VczF9GMdtg1kuxg1MJubsJacdY6h1UVkuuRLho4LT11xVJN": { + "balance": "1474.028365011", + "bytecode": [], + "datastore": [] + }, + "AU12W9aPBC4aCmUGYzSPmpWZtcPcWAGGGBfKz14KPcHecCy6TFCj6": { + "balance": "1668.159479038", + "bytecode": [], + "datastore": [] + }, + "AU12W9dBuHVyHBZyunoA33bWge7TnWv7HBNN194WVFvYb4Zj4TdnK": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12W9mPrLBSFwRGSxMG3eqL8zV1dmULrwpdF9Bc1JUJgtJ8M2MUE": { + "balance": "1501.730196011", + "bytecode": [], + "datastore": [] + }, + "AU12W9mn3r3muQohgu7UC8hCywGYZSnz8VirKvQriMLmmqAVganLr": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12WA651prR5TKam5nLJVnJd2ZHK6uXqoHaPFeCG35CmU4ucPWpm": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12WAE8rLSoeZMAp5AbkAREbAk5KqNnJEh3vyXHzi9GkafqpmCpR": { + "balance": "6092.946617037", + "bytecode": [], + "datastore": [] + }, + "AU12WAgrqpxYyd1krzSRCtpYueE2EwYZpi6dgSxUvWTNqU6tDKLFE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12WAs1s2u81jRwREqEaSt7PPZ2QtmLAfyiZovSY7qzPBeouUFFH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WAsQnTVHhB12S8VETAX4GfQUEbE9vm95yRqwj3BS3rszLJJCy": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12WB3QCj1EHj5pgTRTkPfRArQoFaaiYVKTGu4UjoUPoUMSsHE1e": { + "balance": "1127.399287124", + "bytecode": [], + "datastore": [] + }, + "AU12WBHn2Vx3f2bQvt4QSq2n2QaFcGoMLHqNaHcdjSJAa3AoEP5Jt": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12WBPDwa3FLovzH2mWMuiR5TEreHYzwcZRkovPaLThomofs1BTt": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12WCkdBPajoV5zANzJmwXYhbdaAgDzvFhxLwkFFMRcEsVGVXrEQ": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU12WDNyGJXsEdsPfEHCCRFZk1KeXdRpQSQxnE9poz8Pes456FCVE": { + "balance": "1036.354788616", + "bytecode": [], + "datastore": [] + }, + "AU12WDP7kvkcLrWkDCnBw4ZvdDZ2xqf1ZAazhKUdSS2FWs73moX5o": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WDuoPcw5uzUVXb3VhipFpxXXaK26fxCG6aK3gzgTRjbkFNXxg": { + "balance": "5157.443318319", + "bytecode": [], + "datastore": [] + }, + "AU12WDxRjGmNU7oyEQ1tSuV3sqMEzAmbWhyuDcpCvXVdkiNWxHRaD": { + "balance": "2744.800440095", + "bytecode": [], + "datastore": [] + }, + "AU12WE3qaHqcKTJYBLZwVQLqkWa54NK1UUHEZ7Qa5TfgJ1p31NEtU": { + "balance": "1734.056448978", + "bytecode": [], + "datastore": [] + }, + "AU12WEQhmHirPnYsXZhwQGj4Q7gcx9dxVm9JEzk1G7dTVKhhdDC8o": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12WEUpdbapJRZZrUYjhW3M8o7H5M8VVRbAoozTTkkzeYvB8d74z": { + "balance": "625.761955394", + "bytecode": [], + "datastore": [] + }, + "AU12WEkoxCN63mNoK4BQyvscGadP7JLEL6duDuLUFzHqbPWoRqxDH": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12WEpLhhNmXoyQXG4PjTxWPmD4ngb4yMgNvT6ieDoVGo1kfHf28": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12WEuijhDWDrH75LteSzxyiZD98vPrknTJvhQHV9aJPjUaP6yGr": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12WEzmWNG8WcEyvtHHux6p6WmgH16XZLrEVAyXp5EJrYQoQZkBr": { + "balance": "1080.402613724", + "bytecode": [], + "datastore": [] + }, + "AU12WFVeBeUF6iQi3ebDmCM4eNdEGJSHmMZp1kNPvtXqw2ijUbxE5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WFeE3QCwzcjY8xWJ3yxXfCo5ydnaC8bMhY7bH39F2UYKx3LXQ": { + "balance": "3216.979179226", + "bytecode": [], + "datastore": [] + }, + "AU12WGHk3jH9BkqGre8LRLVhu8PuXZuN8eajHJqPqDKw29M7V9rWd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WGNzRkHAT6e6mWTBSDuVKaunNRxJuFkvfhFYN1LhxtsMNzV6P": { + "balance": "1436.384475431", + "bytecode": [], + "datastore": [] + }, + "AU12WGgDSKaMFupDK4ftYZTW5N6hdsogpYen9ynBkEGEXi4R5Fvxi": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12WGuKjxcGtDepKXSsJuhRCjj471hpM4jckEKZobLvrFjodZcap": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12WGyngheomfUGx2wqtHFa6LE7Hin5MXxAFbqXvsxenDT2PgMpm": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12WH1fv9wBJWZ8jeCJwmMWRtXySrCxZiprBhN3rTi86mHKqHV9N": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12WH3ehAtF4wwRsjTMviiMpi2V3RU5NpjFcgoProiMfjxPnADUB": { + "balance": "1431.772814729", + "bytecode": [], + "datastore": [] + }, + "AU12WHUTv21xzW4ngoiDFAYL87RzZcEUwb3tSgikJLHHXpksU8Y98": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12WHbxUQ7WECUpA41LBAepktnjoUH6BZNZEao7ZXN81u7sSZvim": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12WHeeUQqgwcPJ4D8pmWkRd4edhdUd4GCPys3cN6TSxZhCQW84v": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WJC6kTjF928zagViA4hMyNAqWycs2oG17mPuGEdRiBzNv8MqZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WJSS2xRjptj27a46xaGvv4hksMMeM6U98XChgW99j8ptdzKPi": { + "balance": "1219.725595204", + "bytecode": [], + "datastore": [] + }, + "AU12WJdFXTPw3JHsr9BzEXxoqdtxAxnAyUhzWn82oSDnBdci2MYHv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WJs32VczhKvdctStbs5pqTXWyurt7ejCaxGovQSCoUxySASdf": { + "balance": "2449.151451634", + "bytecode": [], + "datastore": [] + }, + "AU12WJvnuoSAW2WheqjWaF2mG2zumGtMXdJvf38KjkcGeUe7zmYrc": { + "balance": "2865.702897140", + "bytecode": [], + "datastore": [] + }, + "AU12WKmU82rK7GrRGajzE6eFp5jwRZqUyEEueWBmrntWmmSuSn2sq": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12WLAr5WGjEzxXMXZVQnkkd84YH7gMxPYv38uTqyDVdvRaVBcLp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WLAsfT2pc8WPxZA5Mxu69aji29onBB36fkoTvjm9LRsWZ52ny": { + "balance": "3374.401428702", + "bytecode": [], + "datastore": [] + }, + "AU12WLWD98oWbaUyDDu8CDig7Tc56j4dGr8xim4HDWvnpP9yujAaE": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12WLcFPcFswoAA82FSgCSUxm8MkwoNRJSe5SPV6E6yR8CjfqPBp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WLeEzQ5k8zV3MnGThx8gtXq8LGfMXzdDFEcTEwjmKhnEwqJ1b": { + "balance": "577.701887216", + "bytecode": [], + "datastore": [] + }, + "AU12WMALSYLvo8nXQ3nUV6x3vSa6ViDbdKVKZkJPnKTZVhLcYetTm": { + "balance": "1885.931425268", + "bytecode": [], + "datastore": [] + }, + "AU12WMDxXM3SWRAdmCqVax5DwSYGEpnoU6ndmTgR6uZUwZQgPaWLe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WNhDrtSurSKjDHSFR8e7tavyHfqVEPdg7bDmmMeR767xah6X1": { + "balance": "5180.152025246", + "bytecode": [], + "datastore": [] + }, + "AU12WNkPv3o13B9Shx8nddz3iJoXHqpLdL9frDXTZ67RN9gqBHjTU": { + "balance": "1749.330197028", + "bytecode": [], + "datastore": [] + }, + "AU12WNnMQL1u3nuNrbGDmARcCcRHTcCEisS4oj3TQXSoFQwVk2oh3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WNrgMpTJECWcQQ2V71HYSynKn5uUJE71PGF22gzP52jmuV68g": { + "balance": "1444.809395697", + "bytecode": [], + "datastore": [] + }, + "AU12WNyodFKKZEnFPm2s4o6qeKQ3FCBzdqcq3ddXEa4qXmWbobxWk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WP5SVzER4QKbWktbr1zfv4WAAxHnkkS45PsLjQrW3zLLBDP6P": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WP7YrVsfvTyLfapQJWK97sWrazx8kK3mSXdrJuADiCgr3Vu2o": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WPJJUKovLik1KcNTPg5u42nwf7u2uxxr1YupeZEAXF6f1mos5": { + "balance": "3107.502207669", + "bytecode": [], + "datastore": [] + }, + "AU12WPZHuzJBkUy7nM7eTBK6CRaV6iH5tBmfjuggN75Rz4X19pe8X": { + "balance": "1702.486413665", + "bytecode": [], + "datastore": [] + }, + "AU12WPzW2u5kQfEygy5jSNQFcqY7LmZ7jQWiA9MEZHRLPVh6mdPDR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WQbwxgm4a9StcjcnzJFUcq2KcBFfkjs8UgAhAJPZ6vkGHdnF5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12WQjTz4qWZfaipUNmhJgtGpNFqzB4HJngouxtbPZAuNhUJeNE6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WQqqhwxboJS3J5yxwE6giZw9uuqHGjRqzET2puNFTrUMNXz5k": { + "balance": "1265.894760390", + "bytecode": [], + "datastore": [] + }, + "AU12WQyr5Y8625Lmgt1sFsSTRjUNuEKD6hupMcXmhHgqD7qQgZtTP": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12WR4PBEVh4LgEKwsZXHzHFL61fMvRrDSmPGeqNUiULkWd1iDsB": { + "balance": "5461.017892241", + "bytecode": [], + "datastore": [] + }, + "AU12WR57csitC4yZHNo7rgTnsd9WEJRdYBHG5QHThjntuLdHsUpkm": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU12WR6CLL3M3TWjamH1Y39Ur2i8Rq8guFy3AKZCoarUCHrghzot8": { + "balance": "676.432362005", + "bytecode": [], + "datastore": [] + }, + "AU12WRS4QVGriLvnWfopfGGetRNu5obusTmoSTtH2imQDwPuBHD64": { + "balance": "710.751958270", + "bytecode": [], + "datastore": [] + }, + "AU12WRVdugT8KZL9TjR7R5zmKgBp2rrCu17HyVAugaGuU7eU9puaE": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12WRoHkNzpvGkZ2rwnyHKGfDtmhS6yxfVKRUHhKXuHBydefSKNN": { + "balance": "1030.905680510", + "bytecode": [], + "datastore": [] + }, + "AU12WS3GsHnGPXdhm8233Z6zNo2136CcxZdmrkedYFeVcbdqGaqsr": { + "balance": "94.410378354", + "bytecode": [], + "datastore": [] + }, + "AU12WSMjcQAxZtZRXoAz8zL9kB4uGhezfUSKmgh7fawRDtTPum2EJ": { + "balance": "3260.874571437", + "bytecode": [], + "datastore": [] + }, + "AU12WSW6J3jpw92R5Qd8LRFed9ue94QhLy39ndy1ereJEZxWhspy8": { + "balance": "2933.552879816", + "bytecode": [], + "datastore": [] + }, + "AU12WTJBnJFXjLcx1i2yA4dNq47qfSx74CME2miKJmsv6SUg8SCRN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WTXXngXLYvNjCV1QHvNPbTZUKHQZHfXZnFPzTQCrGyhWSDBtY": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU12WTYgBQUvuWHfDRuVLzxXpjqhH4XawsbhdBZuhLzocwuJkihBL": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12WTc663ZcJL5g2s5h7PhsxSJrh4NKiC4om6xp4vjbzwxqWokX6": { + "balance": "1552.973050159", + "bytecode": [], + "datastore": [] + }, + "AU12WTwyDRf6yaT919z1oJKM69JziP3kTvhyLqefu46yeuE8VzFyn": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12WTzrTDUAHzNoUSrJXMiaUhKN9hyGCq2sQndaqpBCgNcj3mc5S": { + "balance": "1641.758970796", + "bytecode": [], + "datastore": [] + }, + "AU12WU1aZW3D9Pe48PtNbm7g8EPUwVL6AWq79EsLJwFfoBesXo9bV": { + "balance": "2479.044585394", + "bytecode": [], + "datastore": [] + }, + "AU12WUD4Ni5AUjuMGtfJLfkDHjzXXwkPHBwAKpbdvzj7LCMo57oqJ": { + "balance": "872.050076916", + "bytecode": [], + "datastore": [] + }, + "AU12WUWPhgnCbXrptg2EJ6HVgrpTzo77M4jQJPegjmx5oi9PDafrw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WUWuWvZF8vwqEK1co7iJbcT9DhP87huJo5tPhtCfg1dUqpiGZ": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12WUokEBgSWBXFVgvxfxpXo4eSytYKMYnMmdZCZFtuuitn95MLH": { + "balance": "3864.450826537", + "bytecode": [], + "datastore": [] + }, + "AU12WUwfvVsu5bh8i1SM3YT5hVcaX86wynn9dgjegccTNdDE9qUyK": { + "balance": "1171.755217628", + "bytecode": [], + "datastore": [] + }, + "AU12WVURgRsLDzF8g2qrvrZVCdPHALHgreZoyY8yp5kLxFtfcf1sw": { + "balance": "739.406515177", + "bytecode": [], + "datastore": [] + }, + "AU12WVUfNRaxfPJfSbnrM7pRjgKeYDuf4cub6Ap1NK8xezybvZQ8y": { + "balance": "1766.858403465", + "bytecode": [], + "datastore": [] + }, + "AU12WVqBNLkSCLWHHbR9sQJQx6Rtc1HVwfXWkfsT8jvSczp9UQ6ht": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12WVyd6C79BPJCtRAyscPfMZdtoYLrQYMYnUe6sP6BpYuRHkvVm": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12WW4SoNsk2nuonkP8TCLfux8weTTMhaGjzhVJPwvtgLq6NpSrb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WWc1rvPLN3otJCFCpm5G2qtYzNaB2NWokmurmuf7tcRYiedmB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12WWcuYCyEQT9xrCSP6hQd8HvZ6Cmy41JGeci3r9HGqgQ3UNM72": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WWr2sxiGrAXzo839tKuxJaAhrdWmJEHjLduvDvDw3hbbt7qSx": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12WWsknnCUHZbs45BdNz689cexECTyfqASDiCwaPqbUKGGpGCsU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WWvzq2QKKo57oGj4Po3RxT7eojakGoR81DvdE8pf6T4uB5cRp": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12WXWdJJ8zvAWCDG2jam7N1xV4wNpsmqpLVA6B8gnRyRndu8TdS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WXydHu4kFHZb7yETUch8omAZSfaEZMUaVWaw5M9LYLcZgUaL2": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12WY3XGVsnDBDY8fWLHJAxzaZEgebxjYVCviqCRBRw6q2euSWxD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WYfDcfT2vs2w6cNLHyeppVLfLR16pCMc6UCmrjsA2qDjKwUfB": { + "balance": "2253.331808861", + "bytecode": [], + "datastore": [] + }, + "AU12WYheQVyfBYEJpmQRBJGzDmBKaUpWqtuzZD3dXWd48LH7DQwEt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WYnHVYDHYQs1suBqdbpqkx2gBFJ6SRhYwVcEJYqpzHLJqpkq9": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12WYq3Uz8wvuQjUJFbDyYzLhAm5PoDmw4YpRnTvwUDuND5jjTaR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WYuoGiwGgdJGCMJxUnqTxYYHj2oPboEFiDRtCwXSwi7VDuDNF": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12WZ59yR64aQ5AtWN5KGsTBWJDeT3GpvyM9Qb2X36zNVWXPgNHp": { + "balance": "68.481848185", + "bytecode": [], + "datastore": [] + }, + "AU12WZEktPNuAEspadorBYmLHsY5rp4cyZps5CgpzDFQCZisCDvEu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WZTzo5MtrrGsqwS4qjQGayCejNEuTfF6cp2UhVyLS9pT7yHm9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WZVYrxByiJoELfZaXvcYR5S9LxHiVgx4gKfo7TTwRX5qVFcWM": { + "balance": "3307.900510990", + "bytecode": [], + "datastore": [] + }, + "AU12WZq4ULZMTkNEsnVruGxbtMM2ezM2FEtvZ3NvbBcrXXhyoojk6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WZqNzYhGbEf6kqXZe5fHQ2rXR72MdKYHS9guvP22GzuFiaiyJ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12WZripQcUkBzkUgGTpapG61DLFFwLnVpfja1oBmzNdCJDgHRno": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12Wa56uMR37ioKy8c97d3BV2VRTAvFLFXHU7F3yDKYX22DToVQn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12WaCFcoXBhpdt6HTaUSbLqwCd8r9bSSjwqzKg841noYA15P9yp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WaGhtMPp5s6zBhheLUrWf3cNgk1rKnR6BqCH6PxqK1i3yBwd1": { + "balance": "745.785513235", + "bytecode": [], + "datastore": [] + }, + "AU12WakdgkT4niS1SSwcTdxtTPGXEp1MMfRCfomtR8zk8uY9r33A7": { + "balance": "3761.776027826", + "bytecode": [], + "datastore": [] + }, + "AU12WamwGsusWBuMKwwCuZyHWKiuFfYcE1NPaHtPkzmQScLk5G4BT": { + "balance": "2618.431287330", + "bytecode": [], + "datastore": [] + }, + "AU12WbAC16Y18x9i2wjuFW8KhdnBQqaBLb6GXAcTgd7r5Q25wy83A": { + "balance": "4429.742768436", + "bytecode": [], + "datastore": [] + }, + "AU12WbVcnXMKyrUuTmBPVreTtTNAExHkuSir2MQJq7kXR1WseoLiR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Wbx5kGKviEeE2qqjSgWXMBx2choTyBXsaKrhq5p5caz3n7KFV": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12WcVJrn64m3yjiPUKfKPYL5h8mhRq31CS7DjSKFLwp6yKGY9Jt": { + "balance": "4027.701535747", + "bytecode": [], + "datastore": [] + }, + "AU12WdDy5dKA2LbyYhHk8K8JzgWWRgxCcrHphmzSaniB9hp3BXG2X": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WdHEcwxKYhRkHH4PEfDygDnkatnyHeSHLaXSu7zZuu5oHi3if": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WdPJExetEDuaW55HJo7D3fVncUpPaB6XAUAwkfk7xW79yt5Am": { + "balance": "2128.741402634", + "bytecode": [], + "datastore": [] + }, + "AU12WdQXTYFTAqqYHHhBHKw8eZxuJP8PKqcXHN8ktsBa8LCqa5xXZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12WdTGM9U3VfzxF55Pw8fziHXASKcQRgz3siTrkSFF1JVApVcoW": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12WdfDhnS6KjkukrQpVZE7b9wm525ZqmkdJTJkKjFHxpYs9zKRh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WdfEfYHDnbFd28pZyKJnbUQaYev2ygeQXH3TT8VLVc6uAssYc": { + "balance": "6387.520287305", + "bytecode": [], + "datastore": [] + }, + "AU12WdhdBZY1wtN4c4mgYM4VVN11u15mjtbhVR5zw4MGMnnYwxcyv": { + "balance": "936.557013939", + "bytecode": [], + "datastore": [] + }, + "AU12Wdtk4KwZjuXp41qMkEY5w2jMJ89GsD659hyDni3gP1YRECLps": { + "balance": "5545.244779756", + "bytecode": [], + "datastore": [] + }, + "AU12WdyXomDyi7eY4QgtjZfDXzxz1BDGNhgSmVNhbMYjkV2Q6pGRu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WenEVok8qdtCN6CfjLHgxNJdkpnEN1cQsk4vHu9outVrKgZpH": { + "balance": "1204.158229752", + "bytecode": [], + "datastore": [] + }, + "AU12WewYpSg83Wmx9QM6fCaFD427X1jNbnBRbjQRLjidrZNPgfP3y": { + "balance": "67.713194730", + "bytecode": [], + "datastore": [] + }, + "AU12WfBUhEBVCLL16v7jFVNndPkniGhpYXuyxApDoY8gpUWAYfGbo": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12WfCAviBRQnQ8aCbQuFhogbQvnYEaQCFgWVCiVariUyMcxk1bC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WfCUT9LXYnWBGg8cdP6xLp3JfRCXsRyu4eba4pk3SJG2GArTK": { + "balance": "2259.156202398", + "bytecode": [], + "datastore": [] + }, + "AU12WfUKEcmXg4kV1aSPpwBHJLJpXsS8vf2rc2vccb2YgLCLggWfq": { + "balance": "1304.905371644", + "bytecode": [], + "datastore": [] + }, + "AU12WfdUviJavGkenNggWuvaz1xJLXE41z8MhUvSsLo5ZW5YTDauU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Wg56UNvfHkjKEaqERGVQnv7dHfyifHQ2LukWEC2V9B9HDHSRi": { + "balance": "1424.730926030", + "bytecode": [], + "datastore": [] + }, + "AU12WgKy9idQmJCVNtWiG5KyqXDNX6vAW7igCRCC6172iZ7vS2aNs": { + "balance": "890.463212463", + "bytecode": [], + "datastore": [] + }, + "AU12WgQABxHDytSTVKKoStVEqg9UM6mFecDBhWwBMvCNuVTQCveUX": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12WgWAK9U776yjSbX3AKTni7h9NRRvM5mP1M1wexWEbvtx8VXjp": { + "balance": "4641.204096508", + "bytecode": [], + "datastore": [] + }, + "AU12WgcTxxqHNqdHUQMrw8e6XQPoHhTSxgQXGRndwjXNtvwA9hjoL": { + "balance": "4479.152303291", + "bytecode": [], + "datastore": [] + }, + "AU12WgoyvfuaJuqnStq6JUys3UqqezXth5rfn5VkqgrwtKb6Qsjdf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WgtTdAC8cHE6pswPcTjhkqS8we3qADJrqfTh9Htq7sknVCuWC": { + "balance": "4539.327477061", + "bytecode": [], + "datastore": [] + }, + "AU12WgudmLR7VnserLPGJJvaqug8HiUzS3ooAQa4QjFGYkfuiP5Es": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Wh9MZHeJEtEz2vs6Hw6YX5XZhJMW33ZERJHbkGtfm45NtrJzS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WhAd83rVKdLixBDC4R83bctNSGBhSR3b1BV12Ssdh2MxLGv3C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WhDU2D1JZh9DawV8pSzkvKZHsRj8jWHkc98h7asBfQnT9y79M": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12WhDgyUX9MPiND8upDPx6uC1R9vqAQFzcpeLjj3QQLcaj9xSjP": { + "balance": "805.018219757", + "bytecode": [], + "datastore": [] + }, + "AU12WhyVjrc36QEwye1NVn7hTKfpCyGKrP3TkktF8yViYKvjDA5Wq": { + "balance": "1015.375074553", + "bytecode": [], + "datastore": [] + }, + "AU12Wi6W5pR2jDhXLqpGVtYzDxYRbjaDUCzaFyMeRbJmQUrG6mjaD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Wi7o58rfXumeG11Kjn17j2ytkMsEruVowq8NNFpdKBSZCveRa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WiuxahMtqcifwqE3ptZDTxkJ4GyLqtyZVtJamdF3Kj2KH97We": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Wm7uTcWJcfjeLkytRgGcD9SBKuGN83xnikuTwVPExuVqJs8vG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12WmKQPshZM1naZTXVM7WGMnrZqCPufSh9uS8PKyTfN5yKFua2n": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WmNtdTMGVJKsQ3kqJUsx3bzWCoHVBkxZk9iwLB14dgHEeGsBw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WmdWsQQWTYuVQFyJJiASFM13iHWrAt2zFNLPmgTFcKST3VzAX": { + "balance": "4716.504296910", + "bytecode": [], + "datastore": [] + }, + "AU12WmkiBotzndjMij45KiAcApNw1zmij1UHSJ3v3WDVbchmEVReG": { + "balance": "2553.965934055", + "bytecode": [], + "datastore": [] + }, + "AU12Wmn7neFdP8Ct2n8RrviVaED5ApqVSW81FbxaeviUaeW5v9AS1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12WnCPBWVfww4bxjfJ4ke34sXKRGeUpinC74xnCTFHE5W81Npjf": { + "balance": "548.307872254", + "bytecode": [], + "datastore": [] + }, + "AU12WnCbaY7cud8gQmnJ662sTFw2gxa2kaEx7RCRmQiTvtWEsb9wy": { + "balance": "1530.969079977", + "bytecode": [], + "datastore": [] + }, + "AU12Wnqn64tuT58kQZtCmDNyGyQqEKDBRx8xp7ZhRL9eJZPSVNUKZ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12WoGGVo6UwWNY2UTQ63p7P4oM5fPqnb6uHvxT9Ls3CZLDpBfuG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WoSYY5W2ikLMrAXw3kiyrrqjL4jrT1ySSHKCq3fiUPMBPuFse": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WoXukaUBfC1xwuzgx5LAiz49bixeasxUK4KQ3iVsUgXxjB7YS": { + "balance": "758.547198196", + "bytecode": [], + "datastore": [] + }, + "AU12WoexTbRYNvihzAC8GSQCBY9JFH1AEfUS2WRfTantKjod8JbjN": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12Wof5gE7hSDKSiNVVeaxp5dov7UmBUzsam9tSVjy8xwYRzAqTn": { + "balance": "1431.504444207", + "bytecode": [], + "datastore": [] + }, + "AU12WomRWP5xgn2CtKtEohP2svGbnB5hcRKsS1oJCkBXGxoq4rZJD": { + "balance": "3443.907519061", + "bytecode": [], + "datastore": [] + }, + "AU12WosBYur7XGnXAWGcgeGn7z8LULXffmdfzK87DYTZCFZcvi3mq": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12Wp4HKDxjjQZhMqKr2evA6qQbkxthukbS1C5q9NRc6os67uhcc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Wp4LvSmN1VQM5hxFaaudU5PEKSev8mQoM7ioKdbJvEzFLG9r3": { + "balance": "824.187793251", + "bytecode": [], + "datastore": [] + }, + "AU12WpStpgdZLdLZbe3YGktpXCDNgZSMDDBhdnPynGAau8V1XWhnX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12WpU3fDNTkuxzvy6fwBYp9bBfzmCLqmyJ6WkU2EsdySo17bc6D": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12WpcfG8ELYbHCQ96t1Fq59gTU6rhYzVhUczo1kyqQpKjxLDDLr": { + "balance": "3149.361602532", + "bytecode": [], + "datastore": [] + }, + "AU12WpsJyTo57M1yBqUEm7Hn8WTcFsamke3qgx9DrB32JoDyHSN4u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WptWYQ7n2gZSfyueQc5aPzvgEoG1pXQxnLQ7sofgJ5ppjZ6vf": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12WpyxDCieeJCDoDWdgvNHxH6yDPoiRmk5QDbqNiXHxxGbsthwD": { + "balance": "2024.887754453", + "bytecode": [], + "datastore": [] + }, + "AU12Wq1iuLzjtvnVVsgnqzfZ3b9nBf7LSupCaPcRsVKEHtCaMkx3r": { + "balance": "1117.678896996", + "bytecode": [], + "datastore": [] + }, + "AU12Wq3SucY4PuFSsJSYUfiL3ds8nnAFkBepsscWkxQ74ziDFFYyF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12WqUpwLdsYx1FsPvxoHenBmkNgYxPVWfuvGfxjamJ7ofQ5sCwC": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12WqWiBFPE6rSmF8Vbv2X8rG72BhUUWDHMHKmcy2PYX5HcXhpAt": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12WqnM7m7KFXVCeXySJVG1uCgCW9oCf8BtbZtJC5wcp6qdpiWxN": { + "balance": "1484.980744034", + "bytecode": [], + "datastore": [] + }, + "AU12WrRExeYBiPtpYdEJELpZGK5eFMoS4L2Vy4xM6LpSKXyy397g2": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12WrUybHgtWrwXkwFhgcx5fAXE94YKbqMhh7VAkUNgmD5ETu6Jw": { + "balance": "1452.093247980", + "bytecode": [], + "datastore": [] + }, + "AU12Wrx7rEtMKU7KCMwBT8AUbJLdUjcPFKJq9q8KmzYBLDsA1VEam": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WsG9AhgbaThxCR2EqBCZkYRiSaDrpE7h19dpXd5Cyynv6bj2a": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WsGbejy8Ua8KuaxPTgbFGvP1MoPsDUNJxSUj1VHDEM8BFBjha": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12WsVbToPkruqqegFJfRMYAKKA9MwRALJni92b7RgkM7unUWeZ5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WspxLJqFAx3A2M9fW2PY7dT8WM4TfVsFQbrgShPJnn1iVCqVf": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12WstwZQQVfm1pSv4xRibmcCUTsApW6WBRr4XWuvqKiaqBVvRrX": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12Wt2WqCfn8ARS3zhRZKQ2Msx4fKVfVLNVArMghHWxmuQiEE1XH": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12WtFwBCF1NvhEFi8ZeC2FCmhPH5vZZvamHU5za9XrWX9KeSK5A": { + "balance": "3587.966238803", + "bytecode": [], + "datastore": [] + }, + "AU12WtQNoD3HVhdMczrEeVkTJUaRavhBuA7tUSzAESRdSkwBx1aCy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WtgHgH8kFNpoVDsWKuyBsPxbDE6L7yY1ufJoapURE4CJJpeM9": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12WtiH6WcX7NREaYcexSt4NB6LMbXE3uBSmtzngcoovCtmDMiB6": { + "balance": "1167.303235982", + "bytecode": [], + "datastore": [] + }, + "AU12WtowcAkzeqRNXesbQaswSzRzJ76SEGwYwTzz4KVTz9UyircCC": { + "balance": "1730.256962717", + "bytecode": [], + "datastore": [] + }, + "AU12Wtu632c2nDayq36efQiR1RW28fCcFrbMDELitECkadh4LpzBm": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12WuZ8WetDMuVU1KhTE9yWrjDd7WNnueaYFa7yBUCnJFktr7TR7": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12Wv7KFAW1heZ3rauhrp9Y33mfFGS4Zypj3mWMk1x2nSCga2oSv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WviRkDFbS26gyWcVdTnzsLU6BREjXae224MNphzHrXimKfL5V": { + "balance": "546.661973607", + "bytecode": [], + "datastore": [] + }, + "AU12Ww8aABL4Nu2Rsa8nkX6gQmgw6x9UqAAkW9shVfqLF8FThHqK9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WwDZhKAhrvMnWVPFdPhZDRvMhxZpQZ333Z9UcPubALtQByW4N": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12WwQbdLpPKWrDU8VDsKeV19g938sJGUWGYiU5CmZ1yTDxKWaCr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12WwR7Cc7aVq6zdmbZZkF1r31GmJwJkrzxTkxYS4JUX66Twsi3G": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WwXTwif3PzpKN478ug2297qEsfEobStpqF1LyDuEfwzC6qoDg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12WwfNBMRujxHnKXAcEqEMW77LNm7J1UkNqG1mte1z6jKApS755": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WwwYcbCBVQv7cB7Xoe7K9riPscZCAWm57WxcsgNhdG8S7AwkQ": { + "balance": "55.614081728", + "bytecode": [], + "datastore": [] + }, + "AU12Wx445hgGugjUvPeFh5FcmegzvpybbF1TjpBjidrxuQd5unQxr": { + "balance": "2321.964155045", + "bytecode": [], + "datastore": [] + }, + "AU12WxPjGiSsBWJFSH94DMCkppJkkepBZi1eELsjD3aHVWYj22sg": { + "balance": "1682.567239222", + "bytecode": [], + "datastore": [] + }, + "AU12WyNSnG6T4k2xq4kEjkxjcerCBM8hcmkeBM82KDvMPNrDgMRWF": { + "balance": "567.178503729", + "bytecode": [], + "datastore": [] + }, + "AU12WyVoUjqDFvc6v7b1nDciv18Xb8mo3M5GcMs1Q6BegaEd9YayP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12WyuvMWQnMfBEc1s5bs8rQEhTFHtyHJ2yq9hPs5iThGcta4jLT": { + "balance": "1299.642424453", + "bytecode": [], + "datastore": [] + }, + "AU12WzEsH8yHVi6L53kTcvqiU4rYG5XTHTcygdj1SrTQykjhcJBsD": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12WzGTf8rTY4AMt3QP5PBg6ZtMdpNDRfwnkgUkHu7iPzAAd5nV7": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12WzhBV9RD2q7dqVZmbk9WxrhxcXGNYNXsHVVDuf3keLX8Vajca": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12WzitLy6PnbDDHqLYeKEBXsZZAy9qcSwCvyCb92TCrtFnWrep8": { + "balance": "1873.693225136", + "bytecode": [], + "datastore": [] + }, + "AU12WzsUsRSQdZrHfE1m1EmFAfp8ghRxWwz56AQdLvKCS8ubPgea4": { + "balance": "51.847400904", + "bytecode": [], + "datastore": [] + }, + "AU12X1BCCtVT4wkia5gt2a9FyU8JXNiGqXL18nEhs9TcALW7ejs9": { + "balance": "2007.265744235", + "bytecode": [], + "datastore": [] + }, + "AU12X1L7ktAJjMn3foUeWtGaqMcnJNNbMssqrb67dzF8ij3qE2TnY": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12X2DtFYgTQfkqs64s8hp1b2KywvpcH6SL3RJhKfTRVs1eBKL77": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12X2NkDu6nHFgCxSoUmAoDGjBtCQt4zpUZZzd28D8iuVTNSR64Z": { + "balance": "4538.203483745", + "bytecode": [], + "datastore": [] + }, + "AU12X2rkCmrHDfY8Tt4VehvcvMWbLKJPkckpJDvUgwVYDaVcnb2zR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12X33K4TYdKKszeusS6JJ2svd6ngTgmW1mc4QSMSpMMJqGGKVZ5": { + "balance": "1835.400362139", + "bytecode": [], + "datastore": [] + }, + "AU12X3MYv7pfWQJAoDfrqZxQp9RmtyBFTMbKXDB61yPyaYyzYqGZK": { + "balance": "581.756644688", + "bytecode": [], + "datastore": [] + }, + "AU12X3Uixtoz1mMsHrqFPRYREW1qRgrbdCeX71e213EQLoEVtSCW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12X3apLX8eVuFayCQ92PUUpPY5SNpxMV95Rc2uGXjMDCUYkCtBJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12X3bTuD5WfY3qBgNGpjqoQ4jsDrE7zcSi9GNMLKGaNh8DR8wso": { + "balance": "707.430570261", + "bytecode": [], + "datastore": [] + }, + "AU12X49htJhPJRPPFTkAAzQ9vyeDrFyWgD7UrMcZFSoeNaXC3CqJA": { + "balance": "2291.189046206", + "bytecode": [], + "datastore": [] + }, + "AU12X4DJ5ZiXojUogp3181ENLKZiXWbcHbc44KmppkupKfuNLrJ7S": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12X4JmeGXbLgFjAsCuG4NZYWMPgucYiD3xNmKdTGVy1fXxAN5nJ": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12X4LEzZntbuFVMKzcu7Hs7bjco2kuw4ULSgktRZK2RDR6o7HC9": { + "balance": "1301.767611382", + "bytecode": [], + "datastore": [] + }, + "AU12X4PmuD1MbPfk2daHxUHpYaDortsEsCHz3cVUXR1VTFRrdAL2o": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12X4aHa9eUyieehCJ1Fe4qPqTyTfGNoBhm1AGj4diyZoTN2FKoa": { + "balance": "3265.617226221", + "bytecode": [], + "datastore": [] + }, + "AU12X4bYh3NToj7bh4P1ATbENeGj7ihmxHZFrhUJsy9k5o6Gc1AaR": { + "balance": "29.094410081", + "bytecode": [], + "datastore": [] + }, + "AU12X5W93RjGtBc6QPkAuJDdkcp9ma73DFmQz8SD8fCmJ7dRBt2BF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12X5kkK9CsxY41T12gjnxyD9GqVdo2bNi7nxM48EQgdMzREmnAx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12X64eJ4sAcybAr3z9HTgCG12s5Gh25n5CokVqL7pKBCzjBvgdq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12X7AgV4v1GBE4vxoYX4RnkBWGSYt6ZEozULgxa6v1hwRBTGrXp": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12X7HLuT21Wsq7QQcKvv8ffLnqR8HMDVuGp86tCng6NSQt9875h": { + "balance": "775.402396548", + "bytecode": [], + "datastore": [] + }, + "AU12X7JV3m5ehfj2pKZSjwdFMiZ4BTXdTpVLoRTuxyS9XVHJiiQid": { + "balance": "914.000848315", + "bytecode": [], + "datastore": [] + }, + "AU12X7Qgdy812dvwrJj1TCQ7sS8TeZUE4gCvdLwoLzeEcWQLCJBDd": { + "balance": "885.789350966", + "bytecode": [], + "datastore": [] + }, + "AU12X7aCsdXPED7gPK8ENLP13XyigbQwJj6fT1WNYSTcerEJgdHU8": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12X7dBhuYoWp43uFUjRG27pVmFj2oYTeoaSzDM6pHJgpcKuzgH8": { + "balance": "1386.482223861", + "bytecode": [], + "datastore": [] + }, + "AU12X7ecNSDrMn8HZgnEhtS3VuqTAqf5XHT9RXcMg29biFydFsCiL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12X85zZ2N76RRKA6GgbyqwDWuYySPwG1v2mXa5VgvnC64NHU98a": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12X8rQSoz8aWHVqyuAnYLu1XrjP8AYdzXygFvnbp7nWowycC1EZ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12X9RbGvxcN16h5rAG846VexGX6BPEKbLgP9uSsNbEEFVNQQU41": { + "balance": "2123.626437684", + "bytecode": [], + "datastore": [] + }, + "AU12X9Zj7hXDJJZ4bK7tnQYWzHETbHvyZmYJoqH1QktuDirpKRcSF": { + "balance": "1583.691893391", + "bytecode": [], + "datastore": [] + }, + "AU12X9c9N74bfrJCZK7DGoGSeEJsC5pyDhQynDjqhQHkDN5GK1865": { + "balance": "913.605843401", + "bytecode": [], + "datastore": [] + }, + "AU12XA8xKR9AJKRCCoutLDwtbWp56zkKeCBaHFUBQFYSub9yErEUD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XAPcGGHGB15dCLLfjRC1Z623ULxx9gk223Dsp2y8rfTdYntgZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XB31DEYsw8VoSoD8mNPSt5MyUYaYdkxW4WLmzFxr6LgDbY4us": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12XB5NpAzfTvWnj4iqC3yPnAaqvwTZczd2EyaT7G79kUWkKP69W": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12XBqrSMG5pM5sT1DgvhwGYoZohF3sy42S1fwpVet8GJgUzCrBZ": { + "balance": "1289.333363314", + "bytecode": [], + "datastore": [] + }, + "AU12XCP1nXkafNPLNyqs4LJEprMUzVxD3wJLsKG53m1DTaGkrURSa": { + "balance": "842.431722493", + "bytecode": [], + "datastore": [] + }, + "AU12XCgw9EcdaiEA4iD9vM9UR3UndTMC4v3MmaofKmD7afazXT4CH": { + "balance": "92.250948379", + "bytecode": [], + "datastore": [] + }, + "AU12XCoWLHm71zzkUrr1Nhwjvc8VBybL1avipawJ66PHJMbMAJqbM": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12XDGDNzoZT2mmD6o4Wn3H8kiewZ4HyeqRsDFzwH62mKP5ewxzH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XDJqQZE5iUgwToti5eZGT63Rn6W1GEGavHnWADz1XxgVvqNGK": { + "balance": "1840.052744301", + "bytecode": [], + "datastore": [] + }, + "AU12XDVDwcMQLn3KUhCkRQv4RuP6zCzMxVTyn8oFr19FRbLkSq83G": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12XDZeYpZ9ZxngEkGFwcNUhvpLrBCp4fuXSKd999EGZwMtwcgZm": { + "balance": "2514.105849833", + "bytecode": [], + "datastore": [] + }, + "AU12XE3EmqayXEHgqRUy4kifUAzMbhZ4SrmSZsRDRZ8zW44wXcFKW": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12XER6pWuQ18AGs9AgQmuZTkGBNRPUd8QfEVspjDQ9scMDgcENa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XERKnNBDoiA8Af6UrcihKfhcpFHVRnnkQYxr17YMvqPvLRZVg": { + "balance": "1975.554826374", + "bytecode": [], + "datastore": [] + }, + "AU12XESkdmSkDfMBftcxHcDg8TLR4nzyRJkTF6gLera3QoKbMh9sU": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12XEbbCUS9jcSXL2oJGBqm7BJCGtms1dkZuZS3tfszDB7CQkFn2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XEtu8PbeSMh3nL5dJXffbwWuYujo4xc7gqKDbtzvVkiozhYV6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12XF6VH9d9sNNWiu5HCkDrPNsPRpAa2WGwy5RhFCWSzuyDS7ZVx": { + "balance": "3558.654095245", + "bytecode": [], + "datastore": [] + }, + "AU12XF8U3HohztPAMddfyeBMdNYBWgNmPphZdmYfyinLouNfRH9Fu": { + "balance": "885.837086668", + "bytecode": [], + "datastore": [] + }, + "AU12XFMEHpjKNs8FJcqwUUcSrjkKR5FHNxwkf36s52B3MueznLNKE": { + "balance": "1198.787959648", + "bytecode": [], + "datastore": [] + }, + "AU12XFP9Vdi9agXRXWxFZZJAavDE1Z537TmYS1uBjPxGoHuzsZjQJ": { + "balance": "3898.428866374", + "bytecode": [], + "datastore": [] + }, + "AU12XFZVKCXp4vxW5HtmAm8M87BMJTpCm41G1fhazkMESEXzxrJqq": { + "balance": "1411.245655071", + "bytecode": [], + "datastore": [] + }, + "AU12XFfhpqsW55pHreYoavLj7AejCHYVdWjtDksAeswa2ZASWijnz": { + "balance": "2170.161379464", + "bytecode": [], + "datastore": [] + }, + "AU12XFwZzzTsAAF9ZuP21q3U3WJXrMpVjsghPVP3d8ZNADgR7YDvg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XG1fvMt9pXtB2gjp2UEnNieDVNVdYLYn8NUAYpbBdvgw1Qc6K": { + "balance": "591.449755131", + "bytecode": [], + "datastore": [] + }, + "AU12XGFtfWDTfXm6vpq1VXuRqZ9zodEg8JMc2QGBpG9d7GJCguCQp": { + "balance": "2218.830512322", + "bytecode": [], + "datastore": [] + }, + "AU12XGNLVAteSjfKADcUyFwd1cRWcC658PHqC2C1GuQLQ9A5iA5MZ": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12XGQTK9FZdyGyb4Mtibir8LVAC2SqF2NkB1AW1QWdaA8h72Zcf": { + "balance": "21.394749076", + "bytecode": [], + "datastore": [] + }, + "AU12XGd6qKWx6bmy3rbDgnihLAfkvVrgUQf1BJHBPAepWV8DYJDCs": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12XGjMDggSJreM72EAuLvw9TehxXK3wZaUb2QFv1bhcDtSQtyBh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XGrn7HufZvrpo3NCJ4vpncofns3szgkuGy2NuKnrZVRuiMwHm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XGrryRaVwZvQFMGYepnR9zPxyZPc2ofCTvd9vQpZvr45RH1jk": { + "balance": "252.337337371", + "bytecode": [], + "datastore": [] + }, + "AU12XHBrBjLVibsoK6bv4SxSz519g6KsUauTejM1NMgiDLy47AwwN": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12XHppwQbMtYKZiB5hPfiyk8WeuWXt3Rt6UF3X2SE8CcHqofiAi": { + "balance": "575.158556868", + "bytecode": [], + "datastore": [] + }, + "AU12XHqZRZsGPkdh75CqkLJCMiRgF8dgmA91XRSj2Bg38PDVuADda": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XJ8mSZy7Ddj6H79qtwj1mh7chTRk3MK4yMHvkH2Ei47zHA8s3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XJMPLxKCUiaDMqbTRQ9RQKRjEBefvKELMbfhDiyazykWwbn24": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XJVjJS5nHEnWKQTkAThm35tzShkbwixYBDvjrvPBW4JGqVS9A": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12XJumwMU8tW4tB1Ekzbmm5oGxrXmRfXsLdM7wfVNdsXzRXxjAv": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12XKGGwJwuRQmDQMupvU9HCDHdtda8QYrTKrcSgcaJNrfJNrB5u": { + "balance": "1084.795183879", + "bytecode": [], + "datastore": [] + }, + "AU12XLCTrw6V6cTpPxWYWZjnC44vYMmxJqZVbt8P6ijR7pquEhy1L": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12XLUfYQntSX9AqjdSf7uJrtp1686HW5KY3X692iQs2zeioehPo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XLqxcxcMt8BUW3Mt8GJJFcGigEbvuSbD1w21wk5CvYNfG4oKA": { + "balance": "674.469026876", + "bytecode": [], + "datastore": [] + }, + "AU12XLuzYkabNZDhdXnnTsVbXeR5aZiCYPcc7AHZJmMGhWHh7Vy8L": { + "balance": "1218.494582201", + "bytecode": [], + "datastore": [] + }, + "AU12XM8FDj9dEk4kLFtti4Y55knMnCfDHwdtTxfEgmGaEDYUJY2Z3": { + "balance": "1219.119847881", + "bytecode": [], + "datastore": [] + }, + "AU12XMFJxgC7CkymwjcWcvbKHUFMy47yV7uurd68Qkich33Z3YCjR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XMPbouJaut1AvK6FuqYtppZ8seJgWJ9xxXoTNFbvAHSVGf9nS": { + "balance": "866.015292649", + "bytecode": [], + "datastore": [] + }, + "AU12XMcfj3JLseuZN1etYjLCUnqJQSFe2afxkdw2fZZz2ofAA1F3z": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XMeQBKyn7cCveBjdTRQwgMhbPDX1eCgGL9CAgbkTAQkVBPt1i": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12XMmgDt3SPu82UxzsvggCBZV9JiCMrzJxksGMsDc6gEsmapkFH": { + "balance": "3074.858704178", + "bytecode": [], + "datastore": [] + }, + "AU12XMsXCkdDCzD6jLtuoDLCQNm36wRwjtMryhuTh82xEYddm42dj": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU12XN6ecGGEFSepazkDMVFuGgHradJu6BBvEpw7FGbGg6Yn9iBaK": { + "balance": "2440.964299575", + "bytecode": [], + "datastore": [] + }, + "AU12XNmCZXU8nBMoQBJcKmDNpEyALVP9q3Kptowdk8aSX5GfAi3Et": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XP7Wojabx7uvKkW98Lw7YH9863ddxvUsL9P7s7hVGkRhXWNir": { + "balance": "2359.125959227", + "bytecode": [], + "datastore": [] + }, + "AU12XPDym53JDWwMZXuuQPQGDtMMej3V7enpB9cPmaRvXxEJ6vvrG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12XPVCcxgbCy2WFb3qKVFReE4BaRUo5HDRwTgGkgnH1J1p212j4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XPrEyBcvhiqWRAiyLzmWqi2enHtHyT6gaALSiTYQQA3rSnCew": { + "balance": "2774.737332324", + "bytecode": [], + "datastore": [] + }, + "AU12XPuBuauza2g3tGYWxWmTCgKEWsH3VE3xvHf7W2cgqYVDDdo3V": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12XQ9mp3dctbg1wz4YRc2Q1J9YuPzKvUAuacNuFo3hJCLfNpjLt": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU12XQHqHEMiPmJCWxpPYwiPMLn8ki5CbZfJmEBxJEjGBZwmTTMhL": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12XQkPyzTTrubrMc2pGZKevB6ibYgX2AeLcRefb4Bf3EkDnuBKm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XRFfha7vTLT9JkAQks9zyYVg5tYgqkCBBzRzHZp3BuFHP7PAw": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12XRvP23wik2iaTxzYRWrgqVbjdRhiL7X1y8Q5Zk2LhpX5hN7Fg": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12XRwk6ZQE6ex8TZ3HGSxjavjqGMMVhPycctiAHkhwz4T6kysu2": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12XS5FyRsd6JzmCHPmKxNq9j2N5UwWPvFhK9SYANb1zz4tCzXc2": { + "balance": "1585.906163522", + "bytecode": [], + "datastore": [] + }, + "AU12XSJtoaJoFHMgFpr9xKv34PJK9i9gaFNkiE2rpErqQkprS3RC5": { + "balance": "866.933986405", + "bytecode": [], + "datastore": [] + }, + "AU12XSSdp6oqiKMMzaUFSeq4dVhAJunSusVcFPFxkNhi9Kp5HXWXM": { + "balance": "1703.297342843", + "bytecode": [], + "datastore": [] + }, + "AU12XSYK91x8NvtPiay7zfxyrqyNvTBKaMNVg7LQS3bVKQX6txQa1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XSfQaXCHStV9ipXucrY2mr2jZPCD4uXEXTw65JYtxfYDvZpPk": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU12XSi9oUPPnazW9DiSsJzCxEG5jikoxk6aG5SgFic9Gy5aTpvyH": { + "balance": "563.428799520", + "bytecode": [], + "datastore": [] + }, + "AU12XSmHow1xwN8a4R6vkpDJPt8SHyGm4XBHoUKUoSoNYKByLnPKA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XT9hwKqs3hbx2DpfGofBvtLEDCK3TMv1acKPTQ155zwAAjX5i": { + "balance": "1667.379978403", + "bytecode": [], + "datastore": [] + }, + "AU12XTFDMnFhSP3FopZ8ahnsVWmtxDascpgQgaL5q9x6bndg3b5NQ": { + "balance": "904.238663579", + "bytecode": [], + "datastore": [] + }, + "AU12XTLrF3u65WahjAZEjPyMBdFTUzydP14cvbYJGyKTADo2LFUFZ": { + "balance": "2404.069951496", + "bytecode": [], + "datastore": [] + }, + "AU12XTTJSEdbjCwE8QJMCz6jZm67urAv6mLmX4N15J1k3h3QndHSM": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12XU254os6BcQLtrmQSffLfwLEhcHUpqidiUnjLNRzG5CCXtyRC": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12XU6PosUUDXd9cRjx1w7uxmLQFgT4gALsWYD787J8kavSnGH37": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XUmwTXaSmuvY9HyvgCssS3YVaUTBJbJsVodypRmRm4ojwd4tb": { + "balance": "3119.441947099", + "bytecode": [], + "datastore": [] + }, + "AU12XUsDYjtWN4qv93XzzK2FJ7S832A4zzrhYUDxyC5ptX89PqMS": { + "balance": "2058.319032384", + "bytecode": [], + "datastore": [] + }, + "AU12XUwUsEjhTrN6PJHPYd9Y7aS3dWxfZKzoyLEJGVG5SiwN76gEN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12XVYdBKkPCHEEy4RD3eNt58uLusVRKgujRsHbGNvddnj5TdJEW": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12XVaoeevyR5P4rKDbf5xgeW8ggUAFbSS5Dfyy18LM84tV4qFf": { + "balance": "2495.554546878", + "bytecode": [], + "datastore": [] + }, + "AU12XVfWFniyRGcHVv5terijq3zUVrumftGx2FbhBL8sqMuSJZQib": { + "balance": "815.872822408", + "bytecode": [], + "datastore": [] + }, + "AU12XWXCPepDD8Fmvk4FE2wVAxtabyFYPHCJGpWAZUvbwm3Tk7otY": { + "balance": "765.336582836", + "bytecode": [], + "datastore": [] + }, + "AU12XWww7S55ge37J3iweENt5qAC2vsUx7SK5fnnTpRo22bEV9GRa": { + "balance": "262.852626442", + "bytecode": [], + "datastore": [] + }, + "AU12XX8DXoim2w6LsUXaDLfXbS3dwwrdZMgA48BTrAKw5QTumCH3j": { + "balance": "3185.609006996", + "bytecode": [], + "datastore": [] + }, + "AU12XXKr1D13Bh1Kgwj7o3ddsZagWcF2yfsWKMQpY1vjWjheNegp6": { + "balance": "994.203990682", + "bytecode": [], + "datastore": [] + }, + "AU12XXZVAW5ALpUQRLezhhcdBPsnHwA21UtrY4qYf2tfr5d3L1rXd": { + "balance": "1386.735341478", + "bytecode": [], + "datastore": [] + }, + "AU12XXi6cxrbvite71VNYQkds1pr27Eea7TNvoyTHxfoWuqHkq2G1": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12XXxPYxzk9j2JvY8SehC39pWX5pQyWxMbsTp4BjFnXZcGhqjWX": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12XYUxTAWFGUdeyUoaoJvaTddQQYghyaDr5Ux7jhU9hwUWs3iQ9": { + "balance": "1895.896316945", + "bytecode": [], + "datastore": [] + }, + "AU12XYb5hU4Eg8Vj1Wg3cHCXkRAYJLHvegVrwukF4r47hpD2yRM4a": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12XYfAwm1VzMcumqHfrGRh9GJkYxinRfnUynfQJMADTs9MisKy8": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12XYwGDUSF4i7fU5topqsvGKaNuhv3AcmGoGiKFzyUVtSxknHtz": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12XZxmtg7NB5X7s8fMHYyxPd9idup9FadfhhC2BAhKbzCT7T8a6": { + "balance": "4974.438398991", + "bytecode": [], + "datastore": [] + }, + "AU12Xa4FzoFUewsERSReYj2RyFQnZD2J9HkKnB55pRJW1VKMJoxYd": { + "balance": "3478.694132253", + "bytecode": [], + "datastore": [] + }, + "AU12XaY8BfxtFjwZGpUFwzgPxyGw2PimDomzXRA8EsH7tmU1smzfv": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12XannRsUdYsSabQetquEKz3c4SmNkRig9SH2cwKrVvuGSsCtxe": { + "balance": "1258.120486358", + "bytecode": [], + "datastore": [] + }, + "AU12XbPrbKW397xdTGagCgmcJgyExntHQyNBhCG3mu1wM11Uf5Qxf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XbSNJ1RJ18NXwzL2kjrTC9qM9eh565iHDdbTLCJLtAE3SyShu": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12XbWSvqSatMG3M3iLxYJsyysoNT4PcfWTiAtRBxZknsfYCBU4h": { + "balance": "5425.173139052", + "bytecode": [], + "datastore": [] + }, + "AU12XbaHwSc6CxCi4jr6qYFvjAjEipEx6na9Bma8eeCRPBfTyFjAe": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12XbaVfcAb6Mr1ikjeMkkq3tcRMZLHr4QdJzgDzDxY4HWW87CZF": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12XbpAfRzSWqJhvSkdewNP9X6BmzMp1yVCRCNt2CztQcX3v9rKq": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12XbuHnMH2LtvqWQYPhADh6e1HjyLhoDgTBgG8TqL9tYG74N1hV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Xc7xM463rsdpC8kS4GG6pD4xmU6gHnu37tjsy9yPBSGidj4Jx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XcExKxcdwnVL5JKCPAdj1zNVq4qzf1qSe4wXYfM1A88a6wrPE": { + "balance": "116.683546184", + "bytecode": [], + "datastore": [] + }, + "AU12XcNwZDL7tCBnjki79F1Qw4hZwqbT5S1D6zjXFMoePuzvuoUPd": { + "balance": "4349.937514348", + "bytecode": [], + "datastore": [] + }, + "AU12XcdD7wdhU2GQrk7GpuWHkNTGufLCaHb74P6pgyQUuyfLkNA8a": { + "balance": "44.389189542", + "bytecode": [], + "datastore": [] + }, + "AU12Xd1tbUNYg6KZgANCjBrkD2QM7y39xGeDXTpuPmz6nM6B73RrJ": { + "balance": "3703.966326739", + "bytecode": [], + "datastore": [] + }, + "AU12XdYMp13A4wBHzEHr4snVRn9eCLQLC9We6BVJQHxdCT28LirWE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XdbGn4mQT4ZmrNgisABCquvoJBxAJRXZwq26843L9vykAAgke": { + "balance": "2704.568942925", + "bytecode": [], + "datastore": [] + }, + "AU12XddAeG8iGei2osiaqAMH5YEw3e6DcdBLXCGgw3bFgXaRQkdjg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Xdf3J4jp3S9NC9zxnfvRPhaSGJfg1wcmugCHtpKxH2a3PskbZ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12Xdx36K5hB3EzzMuXnpxbAQwahQBfoBy35nMPVJRm1rkV2VLnT": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12XeNeLtDVnq3oFn7pRPZorqsziZxo2f3i5E9pRPUqhu5o2pbFK": { + "balance": "854.677414935", + "bytecode": [], + "datastore": [] + }, + "AU12XePDZahn1igXMQuZ6rFRUMfAVPx65DYXLDMdtDZvATNtHujvM": { + "balance": "783.858373562", + "bytecode": [], + "datastore": [] + }, + "AU12XeXRDC3wDtRtisuvqkM2tbHyg3QcAi9FFUoPLV4E3bHmVoUGr": { + "balance": "1281.667833586", + "bytecode": [], + "datastore": [] + }, + "AU12Xek2WgRqB1BkG8kQNq7nHiRpfLMzkFZVKGnGvGbFKAXkBWcXE": { + "balance": "553.876691151", + "bytecode": [], + "datastore": [] + }, + "AU12Xeq3NGv3XYH42V9qrbkKHzduFMVS35d2rdXrgWrubkVq1zETX": { + "balance": "1691.838764562", + "bytecode": [], + "datastore": [] + }, + "AU12XetQfT6VK7XQfoiDdKzipVkjLDGEWepSZk3Nj7K2f7N6mLAdv": { + "balance": "2174.552766655", + "bytecode": [], + "datastore": [] + }, + "AU12XezugK6vxJdsbQrUS1vLeM5KHeugUV8pmn17fK2qk4CH3oDik": { + "balance": "683.842196920", + "bytecode": [], + "datastore": [] + }, + "AU12XfKksFf2tpFHoW1a9xbpxBxHzfGmbgeSMBtMdtMgj9jTQjFt8": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12XfRBtJyrMPAjasmtcyKD4TyzXw8jS48Hw6TpBJZvpnVdT9hjo": { + "balance": "2608.247919255", + "bytecode": [], + "datastore": [] + }, + "AU12Xffuq36YyTbVFEwD6BZkw7Zpz24umiN4EkiqWohuPu8AAMVer": { + "balance": "2087.790508858", + "bytecode": [], + "datastore": [] + }, + "AU12XgBxD2uyBwuRpZ5G1rkidw2ZCGmUbsgGiCmbkFgMzgv3nMgps": { + "balance": "3759.138525890", + "bytecode": [], + "datastore": [] + }, + "AU12Xgor8MUPiMhjiF4WF4S1mr9u2kMFjv8YU3YL5cBQ3Qys6juys": { + "balance": "1655.611980255", + "bytecode": [], + "datastore": [] + }, + "AU12Xgys96vD8cEt4H6wM5rbfQSyF5MpGR2HnHPLfdhsRfWSDaiLa": { + "balance": "4159.554425836", + "bytecode": [], + "datastore": [] + }, + "AU12Xh8rai3h6xxZtq2QLqQwYXWTJpgs1zqj99UDBrekFoKq4uPUc": { + "balance": "1901.081018024", + "bytecode": [], + "datastore": [] + }, + "AU12XhmNY7gfmmfThquvEvtxV6YfDqFLURGkH62qyZZ9GJEa1ZibE": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12XhtxyAqwfT3HcDnMeWWyjPY1ZuxPVps6cHe6U8YMMtL652eYx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XipxMwbL9tNSXmfgbNz8YfZXpBHsJom2Zt2nXxiKfkpw2Gguz": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Xj23fqXWGRwmhoAdNoxqaywVXmoWWQ6eFfdYdZzGUwAPEBqoS": { + "balance": "1428.709846995", + "bytecode": [], + "datastore": [] + }, + "AU12XjH6UQNBViHRtipXMojKyW2JUS5Sg29rY6A3FeToELUWoNfEQ": { + "balance": "82.058793437", + "bytecode": [], + "datastore": [] + }, + "AU12XjJPMoaXcPf5oRPG3u4Dw1SXZY2UkGD3fBG8T7UHzRk6pVW5K": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12XjMEw9t9SZkrHsVwJZHSvpLvkjX9FnnFbR8MGJ6MdgPL1jbJ9": { + "balance": "597.046110728", + "bytecode": [], + "datastore": [] + }, + "AU12XjSmeMwbSuwSLDJXij4FKoThtEQWrPQsRwF3XLAsbNE46uvwF": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12XjjfVx7QJgyg3amh4fR7t6ewhVoVYvbznFtkPbNWt4BuVR4Vz": { + "balance": "2197.220473226", + "bytecode": [], + "datastore": [] + }, + "AU12XjrFY3mJJveaxeypdLiraaDCsAkxYEDqucaKhQ3wwgtmG169s": { + "balance": "1947.270649010", + "bytecode": [], + "datastore": [] + }, + "AU12Xjwy8wFLEaK5bi9iYab2CpYihQm7JfBuV1y7AAWDQ5xCQoLSn": { + "balance": "3352.443802758", + "bytecode": [], + "datastore": [] + }, + "AU12XkA3u8LXCLQrKBaJqJdTas2diiNEttnL3LHykvug2khU3EjMq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XkX7Sw7wzLxUknfF6DiLopqSZJddBmKQLThdk85y3Fz4MnwEz": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12Xkg4bLyq9eVpZaCBK8i1XfuUzrvKSXjdrKPY8Laeb1i3vtCBU": { + "balance": "1122.329690012", + "bytecode": [], + "datastore": [] + }, + "AU12XkuV4a9iC5Ze8UMMbjMp6FQ3JuBXiC8FcQFPBegVH9YRcucu1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XmJLTbUZBj6REMjcahZGZLksJumGkP6hRp41kcPdbGvNMignJ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12Xn5Y8uTGhaS2Y8DjzyabYxFLn26xBCTqA4MgvoMic8kUnYcXY": { + "balance": "2599.584467229", + "bytecode": [], + "datastore": [] + }, + "AU12XnLnLYh7WD2zHFCCFEezTanA4mBUvw8rKj54ik6GJatKWQ1SK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XnLzwreU7zqHJSSbFNyjEVrq6HoiU6Jvud75U8N5QyMgEtth4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12XnTKSwoy83jFzD6dKSgrJhMGRp7Dtfcb25GQFzoX9QGpbbRAE": { + "balance": "3014.428121699", + "bytecode": [], + "datastore": [] + }, + "AU12XnVbaD1hA1yBLkiYRaHhg4zLoHMnLgCVYoNrw3VMgLWQ7ThDZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XnVbow2mT389z4amHnYFcgWPWPDHuqaFxWwU14tUEwa8sMgyP": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12XnfG423tBxgHyPUMKKeWvFvmcdXF9Nvq6unKyHEwrvJDCe3xc": { + "balance": "2190.194396876", + "bytecode": [], + "datastore": [] + }, + "AU12XoE6vcsYGepY2GnmJM4ghhdtBHKvoTSwbcvcwvbyymuR8vuET": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12Xoqar42myhsks3NCdwoVTckfHA7nzbbaJRfmhfdzGYHVP13n5": { + "balance": "773.773483883", + "bytecode": [], + "datastore": [] + }, + "AU12XpBsAWC2Xk9f6XkvsEwqFjqUMrVpa5VCCTWgJKpkcdy67VMzN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12XpKwHXxqnjMLDHJmGKek4Pc8c6MZhbiRbiST4KCqL3k7h1uUa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12XpTa5YFrM7BDMHKWWwueY6pynURo4h2aSW49c53MqYPcxfVRZ": { + "balance": "15.068506695", + "bytecode": [], + "datastore": [] + }, + "AU12XpqN3TXs1kszNA17fHcxu1Qw4MFyvJsUNQV2QzzHemZuANm1R": { + "balance": "1576.303396040", + "bytecode": [], + "datastore": [] + }, + "AU12Xpt3Sqd1EuQFWECNd3SgZR4yk5RNQaewYdujocFkWa85G3TbA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XqoGAzGVnoQnSMWfEyjt8q2xSFJjBRSdMRNuuhrTBH3YotpXX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Xqwqc6yM8QxJmE4uXvipaJaZMeNsTVPm38pCDtGxczHZgiWnT": { + "balance": "1544.898087854", + "bytecode": [], + "datastore": [] + }, + "AU12XrGGboKSUqUmYwx3mvQgudL1NnHqc9XeG8iuxdwWzFMmB7B2b": { + "balance": "951.925745718", + "bytecode": [], + "datastore": [] + }, + "AU12XrUFprptVQjEZUhGwe2wb849DQkX9JojjQnL78SxLtpTqsyg2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Xrh2tjv3bqHr6tnbHVjoJCg5nJ3bkGULeRcByoieAsi3iVK3J": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XsZrEeeQiKT7WXKJZc75HKtg128TK4n7TmVez6D6ybnmfxzeY": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12XsdzT2xYUPMiGXJSPfBPpFTT1BKxAKeyjnFkGahZKU89ihYJ5": { + "balance": "1903.592972779", + "bytecode": [], + "datastore": [] + }, + "AU12XtNamQNkjKxkL69an28VBq888dii7q8b17QHJq6p8NJVgGPhH": { + "balance": "2004.819935738", + "bytecode": [], + "datastore": [] + }, + "AU12XthgkBbs2Z3u1dhRoHRCdpjZjvwizfVFsRATq82w9yhMinAzS": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12XtrW21CkRa4K2YADnB34X9YqegsLkWzzY9pN6Wet7PkRajfpK": { + "balance": "1434.788624906", + "bytecode": [], + "datastore": [] + }, + "AU12XugqWvtaW61TCaWAHXYZi5MZJPqFkTxKbJvGe5ErqZoxR78b8": { + "balance": "3945.498567757", + "bytecode": [], + "datastore": [] + }, + "AU12Xv6m8syenLJ8FfQ4HiLSeyavCmEdyS697bZBaPbhXh9n1EHJ1": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12XvpbTfoG9W6qk2XvBV7yQsQtMZYemVHK9TVy6kmRyLBo2gXEM": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12Xw594ub3Mw9G6zbtLpFY2j1jpRSyuewsg1tJh4EfhANi5c3qu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12XwRaU8fRVwnzm1mLeNRH5RtgoTD6VyQWiyeTLucGt4iAgPwNj": { + "balance": "3225.275877448", + "bytecode": [], + "datastore": [] + }, + "AU12Xwd7tbVhrnY8vYCjjQpUMJQMMboCkxhdja3CKrQZnZwm4bsh6": { + "balance": "2773.600470636", + "bytecode": [], + "datastore": [] + }, + "AU12XwiyUmqPojhgiDfiBktg3QQYLQt9o8EsZZVuPuCosgnoKGrkq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12XwmxS9ZFyQ7NyvC8px1LmrzdNJKL4QRFq9BHXsdCpZAPf3Q1U": { + "balance": "137.788778878", + "bytecode": [], + "datastore": [] + }, + "AU12XwwGUMHXkWGjJQ9bEcp3Wk2jQwni2cLgfdz7xCTE2dE7DSz3k": { + "balance": "936.027930941", + "bytecode": [], + "datastore": [] + }, + "AU12XxZC9dLtEKC6RkCUrmz9TcKcx7ykTD9W9yWYWqEQrzHdexGJz": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12XxyiQBFJXurAyctMzJWUyyezk6D19y4s1wwXZjYTjJ1qN2pGQ": { + "balance": "970.213824872", + "bytecode": [], + "datastore": [] + }, + "AU12XyDM4WNu61ebLBLnpoTnowPgfaXbei5i7UgCGoUJ4KQuA8PE5": { + "balance": "6478.823374123", + "bytecode": [], + "datastore": [] + }, + "AU12XyZZvB3uLhCKCZBc9kS5wJ78fNUY4mN6H46ZESAqV7z2GWP5A": { + "balance": "2256.598483029", + "bytecode": [], + "datastore": [] + }, + "AU12XywiCFo9G1mfniEZLXGy4JYs7JJ7bZTA5rbZ3LjsJSfvDNQ9w": { + "balance": "2280.320131362", + "bytecode": [], + "datastore": [] + }, + "AU12XzLQCrJicGMMRfJyr52HRMCHSof2ASxyAkkMRxHooYXDi8F5H": { + "balance": "1627.586214466", + "bytecode": [], + "datastore": [] + }, + "AU12Xzt59vo3eNBF2yg1xyd12qxfzFT6SbHcGDxQh4amwMdbpPNwB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12XzxscAazEUT1LQaTsfMsWrFpZJ4mAqYtqna37m59UKe5JRtbz": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Y1ZCHJKjzuVC56G55X5S637BUHYQt8g8mVdNnGWAkeN87UmuC": { + "balance": "6128.214445466", + "bytecode": [], + "datastore": [] + }, + "AU12Y1ZNFLV9Qgk7Q1xGtjkAbLgPwi8fLFX6WBXXDYnYMWidG9g36": { + "balance": "4986.106413618", + "bytecode": [], + "datastore": [] + }, + "AU12Y1nKRzZWGHewFjdZASCNVfQBmnefXWRwADKVMTy6fSn7TtrwS": { + "balance": "777.562099977", + "bytecode": [], + "datastore": [] + }, + "AU12Y1nwDKXQfsNoTRgHuHPWV6ss9oBXZfzfB7hdqQZQTMLSUmkhC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Y1pDmrxWFpZanfYESujrtSs6i6jRFhUW6caBK713k9p7zMoUJ": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12Y1rRCNFdG6BikwsMVuwndAidT1J6WzWqngtcPpny6Vi9U1AyB": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12Y2CLcQtkk8n4sAvD4LkdkBbffn92yeU9VcVJXhfkgJm8w5BME": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Y2DfwhmFrLyRjFtfVoDp49vCioqKLX5Nxo8sopn4YkZh3zevF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Y2NYm6urEmqgMYuBFqVqTaxymcAJfT3fYtwvNa3x5dRe8CJ9Y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Y2XHTXv7MUYRe8PbXzjmnBB9HzMRDQNXbtAv4dtxs3pDtT7Le": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12Y32EModrX5A4V59EUvQ8A72VW17fNgCRaevAJxUMidwcubqfi": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12Y3GdGQwPjDKnrGHfpoNRxCCxkZTvHE7ZNQ9jaRJpAuNswTtac": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Y3Rd4RiBQg4chNsMiSyUY71Zert2DSKzfwq2T1SR4Fu9ExhFM": { + "balance": "1230.945233423", + "bytecode": [], + "datastore": [] + }, + "AU12Y3n6t9JCQq4GysrbCn2YBijWL6YxraFkDbE8Fd8SQgCVPrqFC": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Y3uhkTgaXF4UiS21AwK4TsPmXCEyNE5Yb9eVncMpPVRLmqBPb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Y4SwUN7J88Y6VHXgtVZWZpka93iaj8ivqheGtc3rgbi9aYFQc": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12Y4fqMjeJ33VP99SQNyjQDqQqHn9ph7QYpgpKYL6MLivgLXjDy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Y5HVdeZPpZz4dtdoB6eXPqTkLg3jkbtwj52itbhzL8ACk1VKJ": { + "balance": "5299.056601498", + "bytecode": [], + "datastore": [] + }, + "AU12Y5jrb3iotfNdFQw3mkT5qeZikzMeZxi2Mzac1JbygJd57a7nz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Y6sTS759RJhy82rFCnZm5tccWJzbB6fxH79A3ujPNTjtyHZer": { + "balance": "2320.197632411", + "bytecode": [], + "datastore": [] + }, + "AU12Y6wTK9jj5tAzSfhBYE9Kur63fudkiSXqVJUZSEqvDstYNBtWh": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12Y6zyMDF4AvpuQn3NfGhPRN71toz21gDubtrtGwALgMZDWkWs5": { + "balance": "6392.772363411", + "bytecode": [], + "datastore": [] + }, + "AU12Y71WbggFbBPMmx6WTS6xLut8L4b2CY3ETLMuwAFPVchoi5y47": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12Y76HpXJ38szhykQKJewaWB3ezU5qeFrfT9Jht8skYzyhW6j7a": { + "balance": "1998.257817703", + "bytecode": [], + "datastore": [] + }, + "AU12Y7DfsZnoSCJA8xL1f6hwDik6aVCKUS1i9MYZ7GZso1MFNVmX2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Y7E3aNXGr1pTDamB3P98Y32k6fHFSAQxt8wHTp5pREAuQDWNY": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Y7Q3Bkb3MGuptqkETEWUeuCrTzmbzr882QiiiJayGSisJy3x5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Y7StERXYHpE6X6iZ8ZypGdw3Xz9WK6fSHigDZHy7aiyqaQ6bC": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12Y7Ve2ahks4bGpUz6QXjy8A52ypbE3htznP5iB4botBknMscdR": { + "balance": "3193.761757861", + "bytecode": [], + "datastore": [] + }, + "AU12Y7xAbz8DHwegRKXDMbUkuaFdbCpkLG7PZXhC2ZLDUnTWTimT4": { + "balance": "3191.234551101", + "bytecode": [], + "datastore": [] + }, + "AU12Y88QMp4K4n37Ppp5bkgxbSRcsoz4uiJUWa6ezdFJByLKZyuK4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12Y8P7YPYN5RAZTMFjiQ7HrCkzY6XDAixYxb3aTJoPLUfFut7d1": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12Y8UqYtoJZBcjW3VicDA3BWdSdh4gSfqrU7uhfvF873dba359f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Y9dtaCe28ZFjpKrVyLF3Pc3SyLJuM8zjG3oxNNQGYjfzX1C5N": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Y9hEXzuZZLQvsJe3V12qgHeqW56edz6u5Bw8VRaKG7RBC9Tk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YAMAPv1GaKWzyFvPnJWtCgMdLZbqkvgy9gYCC4kjL4HsoMKQN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YARvVTWxoRdiMAuk5pbygwXxCt5ttgTUpNcz4HcQJX7mouVVj": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12YBG21kNiaqNZm2PmPqBRoZ5xGdM9op2RmRFJhijmXUb4V2top": { + "balance": "3048.586381606", + "bytecode": [], + "datastore": [] + }, + "AU12YBLSANQuUhTi3AkQUMrhceHeZbyenWmewRD4EYPjTz41zSL8n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YBVA3zsX6ngsg8QeJiMea2hs2sjG6YuwaEjdXHoeHNgGRhoq6": { + "balance": "1765.330295397", + "bytecode": [], + "datastore": [] + }, + "AU12YBYHwH949gmdPKTa6cLj4Bd4X5coc43uWTkjS3kQaXdXoJYdM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YBoifSLZd1qoxNX45LR4HRGCMJhcuw4dvPotWn2HmRx7oy79t": { + "balance": "3428.238218445", + "bytecode": [], + "datastore": [] + }, + "AU12YC78JKH4gHFDK8HjDERtev82r8wdLcAFnpE9TfBzNi9WCNGw8": { + "balance": "2926.068551254", + "bytecode": [], + "datastore": [] + }, + "AU12YCdZpNkBdboca3uEWt6AtgEQ7AHHCnLTzVf24HkyWi44EN3iL": { + "balance": "1431.119756391", + "bytecode": [], + "datastore": [] + }, + "AU12YCdw9XbNAt9fYHcA7gm3DphZkKnpcGvEhQzBeLVoJE1LwRRAj": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12YCf3tecoTxtUHfPaHFmpQzHEHAapAA33DiY6SwiXY9Lj13x1T": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YChYzMNPUVCWzzzfeXdTcdziLCusvZBSMEpExynsVHves6zYe": { + "balance": "60.359780503", + "bytecode": [], + "datastore": [] + }, + "AU12YCm3SNhXj3t5JthEr2r4fSjuy75CKRXjhwsp8EvEYQMAysmaZ": { + "balance": "3291.883292456", + "bytecode": [], + "datastore": [] + }, + "AU12YDmdhZheyoA4rh1nJkhMMYB6LQmJGCQBkgQxD1LMgNQapbxph": { + "balance": "1895.533810268", + "bytecode": [], + "datastore": [] + }, + "AU12YDv4NwQzqQfK3QFhDHSo6p1K7vzsURwXa8v3586aXsaF2iuu9": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU12YEDBzBWy8xfuTK5zda4KsoFyNqVNLYAoQu7XGFjhERpRye93P": { + "balance": "2902.131942801", + "bytecode": [], + "datastore": [] + }, + "AU12YEHBBmbnDTP84eeuaMvCJuV8SU9poMb97dBhp1PLhGsnJYNvn": { + "balance": "164.772601233", + "bytecode": [], + "datastore": [] + }, + "AU12YERMAdZ8CT4yzTv5GTftnTL7cNhApRPYGCT3D6Azuxu7hsi6C": { + "balance": "1536.913935352", + "bytecode": [], + "datastore": [] + }, + "AU12YEi8QcvDRLv6oVaLMda5PgS9LQHGCv5BhQaXC5dB4JJmAfEKj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YEjhfqDje5KjBNzENv1Dvpo5hh6ELfg3DCL9dNnX3iWK4Y9Qk": { + "balance": "1314.477524825", + "bytecode": [], + "datastore": [] + }, + "AU12YF2x3K5gKpzdt7c65bxJV3BKG4N8NybojbSScBZYN23YCpgNp": { + "balance": "2114.984346570", + "bytecode": [], + "datastore": [] + }, + "AU12YFPceabfwpCPEUividZwzeW3Ae8KhEV3mgh5KwtXEmzZyCo7j": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YFc34tC75vqDGKiqMs7YJfxjmE6td54RF2r4qGtebFMwt4QPx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YFgzW8UkMxuqvNDdWNfVXhiB8q53n4jsEGT3cNVqucyZe5Cwb": { + "balance": "1528.988373062", + "bytecode": [], + "datastore": [] + }, + "AU12YGfvLfPFLRJ7XMWpBsnkBjFVsuseqeCW8yPt7FufKREQTLkLD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YHEqmTXSdteH3bPJYxuhoAGtQgydobtncq3xFtz9mm11cruNm": { + "balance": "26.122254406", + "bytecode": [], + "datastore": [] + }, + "AU12YHNTrBh8obHLuwhtaxqsBqzPNx3uNGCVte2pjQw53bNSWfcjt": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12YHoWPiTc7nfnfLs5LdXVGFkiAmdVS2CpSrX4mkP3wgpm7vetG": { + "balance": "829.272425362", + "bytecode": [], + "datastore": [] + }, + "AU12YJ7R3d9Mg3xDcmYXCopK1AH2W7NGtdZ2AEFzNDSsdGCkaAvJE": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12YJEVGsj3mHNHYwzxW1svsDN2KuUYpHqFieHX2do6NzWkHSPwd": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU12YJQpkxdw2EGjFquAqFuv1CUaFtiRBSbjRd3P6MYzE5aHZCMu4": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12YJV1EcaxcbhGnEvH6rWbuvFW25uPL9wgc7SYkUFTU4TS7nuEg": { + "balance": "1031.939239432", + "bytecode": [], + "datastore": [] + }, + "AU12YJXNkHfjr6kFpay1fkneXbEDnjQrD13t2V9aa8ibEgUw8WRBU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YJdQfJja8MwkdLPP1mmzTr7ZNqFoEE13kyMgV75GXpDG3CTSs": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12YJpwRCCKbMKEwYrc2cF8AZxTE4VvG2YrQdmJuB4upFGMDFH4m": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YJuHrZBHtc6AtKgKDpxv2Y9ck8oKSCfbCuEGxuVL9SnPW2VTt": { + "balance": "2733.238255721", + "bytecode": [], + "datastore": [] + }, + "AU12YK2qj8eT1UAMdpb7HWRk4DQ64gVpvMBkt8aLTW9KapGVzj9WQ": { + "balance": "5539.161172799", + "bytecode": [], + "datastore": [] + }, + "AU12YKAJ9XoeemCi3BmvgdSvwkMKJ6eixK1KNje3CKZTTzpyKgEBh": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12YKSM2iQgzMevyd5cRzkdB7YvxYCNxotVtk9YxuEjmSH3PxaoW": { + "balance": "2117.773472340", + "bytecode": [], + "datastore": [] + }, + "AU12YKXmJFGWbSM7e422mKNkkrneqUoArXZ7GXYKCH4nHhmvbqBkw": { + "balance": "2778.517492171", + "bytecode": [], + "datastore": [] + }, + "AU12YKn7nZS8Aorj7Wr7j4YcgP8w8ZfGt43b2azmixCwBTJS1SPDh": { + "balance": "2920.609294818", + "bytecode": [], + "datastore": [] + }, + "AU12YM1MstxR5pAVwuh6dU7VJFLDtgbbd7cQH4phPFq7scUmvoTFQ": { + "balance": "3998.890261779", + "bytecode": [], + "datastore": [] + }, + "AU12YMhuK1ZZfzjQPFBStvqEh7vYBHnGjG2FaMZApWRsrEbCzR9Gb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12YMja56WootLFMx1FHSRx4tin51iiK8zf25jbnEisLthR5kY3o": { + "balance": "3155.683849606", + "bytecode": [], + "datastore": [] + }, + "AU12YN7Kx1DARnxk7ncZv6P881XJ7CvacH2qSjfWRnw5UFy8SoTHP": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12YNDs8wRuTKCg9YgErLj2tagCKHebKR8pJbpvwWKowBNk9cgJ4": { + "balance": "2512.754243164", + "bytecode": [], + "datastore": [] + }, + "AU12YNF9nC8F8yEVzDTsdMkomoE1Rv4ZYnueNKUZRjKbJxfLbs3sy": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12YNJm9BxGnBR1w2beaH6nViWCTGctQmb99T7JZgNB4haAxqDwp": { + "balance": "1881.759039030", + "bytecode": [], + "datastore": [] + }, + "AU12YNfyStbV8mz2heN2DbfUMk3aEzwgS4JVktkxbXjimf57Xptaa": { + "balance": "2237.426421727", + "bytecode": [], + "datastore": [] + }, + "AU12YNs9zzpMecNcyEP6ttJQAcVdmLJyx8vJuvcf9j4ExpAidU7vw": { + "balance": "3689.803085329", + "bytecode": [], + "datastore": [] + }, + "AU12YP7Lo6sBcs7iSYW7CpvUwGexJd9V8CsF2J5bzynW7PxMmgQjY": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12YPjRNQmS5VhinGmqbYueJ797s6caanvynD4ob2rmHWxPNmkpG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YQQeiLjncAcEyJ7iyQ4j5gs516SSQ37VzTJV5AxeaKpEKx2bC": { + "balance": "3023.529886658", + "bytecode": [], + "datastore": [] + }, + "AU12YQcLT7PTMAVh85tiy3RrqdJXXjZAsU3oJoyhL8tRJuxsh25G": { + "balance": "62.706270627", + "bytecode": [], + "datastore": [] + }, + "AU12YQd8t1uo9FLVkCDZ2jHspsQyz2f9ixQYbFfDAZsvdtzSZC7Gr": { + "balance": "1898.531590225", + "bytecode": [], + "datastore": [] + }, + "AU12YRCeJu2kctA43m169UAmSrX5b8C7JZijZrxzvXFCHdkg8GNj1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12YRVEA3DoTyE5Sg96e4yEJhS7Tbe6JH6RiT3vcE2NqhDbqUGor": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12YSdT9uvh5xhwLzBph8fBSG959sH7M36PdW9eBPfYuDe9Yzbpn": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12YU2i4PUN9kfY2piD6cM6RXfCQtZN6awkAztHsfwakB8o2vxBm": { + "balance": "3.698943292", + "bytecode": [], + "datastore": [] + }, + "AU12YU5ERHJj3eTr7EhvtVfHX9eqDevzeVM7mymbQGCbXeg39J8Xj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YUBCBSjTNqbNnUY8w3tadtpjHUsKBgBcvRY3h2q2qWyCyDrEE": { + "balance": "618.348395800", + "bytecode": [], + "datastore": [] + }, + "AU12YUWaefBZZ93ZeGNCxT2p3wEhuQgfr8kunnhQUBjV8YJtWiD1b": { + "balance": "82.862626000", + "bytecode": [], + "datastore": [] + }, + "AU12YUt3Ex5ZftrfhapNRbjn7xzG1Dhb9dxM2zymtu7NrDtioL5qb": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12YVSrSTsbqgsYcVXRmmW6Pwx4ST9p5ZYifNDLZ2Kk2NJugXYSh": { + "balance": "1501.762124334", + "bytecode": [], + "datastore": [] + }, + "AU12YVYw4tLGFmdUFieWQ4ZuNoE1dmhz9hpDEApe4LmhXttQmu2m7": { + "balance": "204.644044524", + "bytecode": [], + "datastore": [] + }, + "AU12YWvjrp3784eEoiobbK9vsEJNuAbCe2B6Dyura4rNtfo3aXCXw": { + "balance": "3.485809613", + "bytecode": [], + "datastore": [] + }, + "AU12YXNszhcyLAufiN46ZZ9KYGsusVrry1sW6seM6FbUrQ7oQQjRs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YXnExHtbB83HSukm1ZnEAHfBhx8U9cBQgE9BfP6jw1ztnKogA": { + "balance": "1756.220462517", + "bytecode": [], + "datastore": [] + }, + "AU12YY5YFxEHEYHyNWj3g8FwDqHbCYjjUC8XRVKv3X6stj3o5HYAt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YYP2zQHD2E7eqsBP3stHyUVGx8AUrQo2hXSFQL8JGbr9XHWck": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12YYauJ11vYC4799yG4Sdme616DhTZr1ANcmSbrLuH9b4AXWsLk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YYbdCqtgAyWvtCujjJideZjbE9Xg7kXwezKiyahWfjwNm1NSz": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12YYvWsjTWt4tubFwupB92WTehAjQXpDfzrw6tbxBeGjYv4i5XV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YZ2arFdmzjBwqW9DPXwQixn797RqJecMKv2eRv5AGADFV1VB9": { + "balance": "1353.103895096", + "bytecode": [], + "datastore": [] + }, + "AU12YZ2iGLbR15taysJeAE3QknMsgRkjEsCtjRH69npq5AAdTGXyH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12YZ6oGhzwhxDUbBxiE47JjXAso2yfC3a7amfyi8aSKJsq63vKn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12YZ9NSHRQnBXtfoA9dJpvi9dGN7WpLqRtEsjbtTDjZYUgEyWr2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12YZAqdKmJnB3mFUJuxpuxuBe3pxzLMMaua86VgmbyG9eESnPP7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YZaYJU3NTXhfgUmttMZq5rATFBpVdKwiN7NDGrMe6vzYpusoH": { + "balance": "4414.855487106", + "bytecode": [], + "datastore": [] + }, + "AU12YZcTzDk4fjhfvsiHURHaPuZkAaw7cM5icXKnj6Bx5bqAZQCQK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YZmA9o3U3VFNWjNWcZBkRNX8HJpFQUgqnXwv8GmanpgbzNXyy": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12YaTs3kKix8fCwqKu5mMqFmZqmrTZNFmxe24cXUSsDXsF6dAAt": { + "balance": "1042.995016054", + "bytecode": [], + "datastore": [] + }, + "AU12YamFUHwLQVQ1yYMShA2ghFo6fjTmtgaqGB13BAMVBYbbyt3u": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12YaoS6M9ZjZGX14Vfk6nQUgLXwmZ9pBXx7eTCzswNFcvPE9ifV": { + "balance": "1093.532785250", + "bytecode": [], + "datastore": [] + }, + "AU12YapRaiGJ7gXu49P9T25i1iq6VYY63AnNM2sMDVeNBe8Muq879": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12YbAkfRw8Troit5QyQSL97cKXz4dwKBhCTdPFrYgzpWaLaS16A": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12YbD4krqoSXhnkkAvFRy8Z3WNWwkJYSWJsCeE5F7odTAP3RoLg": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12YbLoBTyKaUGBqGx2RWDVAk8DKVyEj6CftwbEXsdNXYhL5E79P": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12YbgLZ663AuAcNYaj5bBx91pMmg6BYVUH9AegkbVjids2eizRk": { + "balance": "4169.273381129", + "bytecode": [], + "datastore": [] + }, + "AU12YbrD2efAv14weUVrbB9fLVzE2gTt8Vr6uEU3QzBX9FG6Qu1hM": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12YbtDgSR1kAn92tXSTYcUpFoxzwGu45sKrChnQW7GB7DhLDvKg": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12YbvTAZ6x28DvyMYat1wuoQjtN1R2Lxy1fEAahmAHss548Wk2B": { + "balance": "1634.206984974", + "bytecode": [], + "datastore": [] + }, + "AU12Ybx5iq9UWntttwNgzWu8uZqNJnpqiqopLx4ZRXABwwiBQQKG": { + "balance": "1735.234326007", + "bytecode": [], + "datastore": [] + }, + "AU12Yc4R7poHL2GUF8UngaLD9BpyLw5rYQusEXo4xAGFV7NUBTk2N": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12YcLzAzqUqkEQwaQ6aBHLaDfDSc4kFQ7QA2Qg4zCPwKFeFP1Tw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12YcdVgVk6nAhsjnj5Py37mB5TeW53DH1yBQNKxz3u1JbdGcyqz": { + "balance": "732.785200137", + "bytecode": [], + "datastore": [] + }, + "AU12Ycfgcx57rVWo6cpvNmQxizZ9kb3kKRdVuVwrDD2rHG4guwrP1": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12Yd6wEZf64MNbPiSDQD2b2U3d5Qx1vh9wWqufwJa68X95D4Uqs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12YdL1X8wp21tGeCD4V9gNnwfTiN7UHGgmBaDWXBVWEc2K2vc6C": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12YdMrj4x1cMUJ82szAxVoehvuwxD8e8cAkp4JUzkgkrDLw7q2F": { + "balance": "37.052301820", + "bytecode": [], + "datastore": [] + }, + "AU12YdVCi6w3DAfXksP8qGhuRtnSBxfKx9va1sjgptkCrFXPnSQZk": { + "balance": "900000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YdcvMX4fmKRzxUVN9AtqkBXC8eML1BXBG6vtBRmr3zQoBJtUY": { + "balance": "876.044137908", + "bytecode": [], + "datastore": [] + }, + "AU12YeXY7rpzJ2YC6SQdS3D9u1FGxwekcjxwcdjhPTZdkj76dd17b": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12YfGeDMYhrgZN5L3xynbEzLsfzYAjDhkqbsfpkzUyLCUwNdHFg": { + "balance": "3258.666528830", + "bytecode": [], + "datastore": [] + }, + "AU12YfMGa4fXzSRTWGpawpa1yuzzsTRzF4QrTpz1igqtb8t6efQhS": { + "balance": "822.778426198", + "bytecode": [], + "datastore": [] + }, + "AU12YfRjdDKMu4MkCvdRiHcetb6rdyDUBu9vn2T7mBrU1jvrn9bQc": { + "balance": "1591.626307198", + "bytecode": [], + "datastore": [] + }, + "AU12YfXbYWcB4s7EVmShqAS5J7tbxFAHETvVBZwEMicu7TYNw1Jtr": { + "balance": "3923.672161413", + "bytecode": [], + "datastore": [] + }, + "AU12Yfgsju4jDWYqQQaBudAAXRRu2boHc3FkEei6wpmzSBcAx2ef2": { + "balance": "2844.463516111", + "bytecode": [], + "datastore": [] + }, + "AU12YgBi61dhXhNZFssw9m8Z65FtZKNJ1TqhG2TzkXCWMcCECL6x2": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12YgCLbzHKpUr3ci6eQR2p4S2j2Zhbfi3kPJBC8UjkGm2Rp8EUt": { + "balance": "2341.517232832", + "bytecode": [], + "datastore": [] + }, + "AU12YgXxxgm88ymqeR1ZzqfpdcsKdyxV2567YKitYYix8YGgJUMJu": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12YgbRRd9P9VFztoH2gw5efSiPEgv3LjnHinFDVsgqDw1RRSNsE": { + "balance": "1546.154203899", + "bytecode": [], + "datastore": [] + }, + "AU12YgyuqCBHgQNTJKZRrM21d5FvwQHNrhEXqhidYCL9on5SVGTHB": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12YhQSDofYy4iqtEobz1xpAJbrbsXDwwvkcETocksKudzCRp7L5": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12YheBBAQRckyxBy2fQZNEBg2bAHfCrYzoSKssvAAUuHDASLwBE": { + "balance": "1707.069223899", + "bytecode": [], + "datastore": [] + }, + "AU12YhggJFGE2VqrQwhzXeT6JbkS9phMCcnAoLo8heQAbrz3opekv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YiGJ8jgNJcBmLoQiJPksQTbxcquvp6t77su1tBWkJ6TTwUVjx": { + "balance": "2219.233416768", + "bytecode": [], + "datastore": [] + }, + "AU12YiMEyXhPVMFWQrAriv6euQi4BC2v2P8gtxuQ3QCZSswu9uEq9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12YiMJEGxeLt6YV1b84yRM6Y66eLMs4obo7FdDh6QonVcAw482Q": { + "balance": "3726.993886945", + "bytecode": [], + "datastore": [] + }, + "AU12YitSszPNKeou44784xR48ddecwqtmshdzodeuc5bCy4FMqHky": { + "balance": "186.427694140", + "bytecode": [], + "datastore": [] + }, + "AU12YjxAmmWFqjw38BZeBZwfbwaubs5sfKYSXLAYuhzMvb8upCVwG": { + "balance": "798.949892753", + "bytecode": [], + "datastore": [] + }, + "AU12Yk6sbmde35hPuy5YDSLSFPiwSBpUdqjpuURWUA2UoUN35DrU3": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12YkoYtkFYMTuspP3aaK1mYpFPehkRoYLvFSk1gnxKgAAcaikgp": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12YoJXVRTwgyBTHgffxcHnMWhkwpqn245Q4GWZYARbo8ofNEXbC": { + "balance": "1685.787063802", + "bytecode": [], + "datastore": [] + }, + "AU12YoTNuDBTyfA79LriQXYDa7RpS2e7E26wYehmswhQC6tbw6i8p": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Yoch1fPcxa7b8z1BpV3Z1wuepE6MFXD8yCoG5QRZA1mgEtBtu": { + "balance": "58.997433706", + "bytecode": [], + "datastore": [] + }, + "AU12YoyAxUShwgdce9VtHEGjX6ohgpdofRSXXyF9GrH2YctSfHDF9": { + "balance": "590.006394197", + "bytecode": [], + "datastore": [] + }, + "AU12Yp1Rb8RydvsvwFyXxjvWF5eNVMbZxu4iznb1GSkaynf82W7rB": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12YpD51SsFikxjxVWaBABqNmXiNtPnY71q14zi9ZHGEu9dF5CQ1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Yqh82aBdVuZUNNJ6GXT9mAZKWFsUEuzFarbJMHLUUNtpyvaAG": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12YrT7WTQkX8JmeXUaKMQMTaV1buq7CzDr9BfMkapkt7eTL1vQq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YrVLPtE1F1iRJyTZJs4ZWAVUSbLAaKhFASZV2MCXR2bUzY4Kw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Ys4re6BcwEPN6ZNNv8vJ4RNRkSuKSBH84FtQ22BMst3zzT17N": { + "balance": "3672.662285819", + "bytecode": [], + "datastore": [] + }, + "AU12YsTwJ8rpM92DuQTS5q7gRFQyqByWW8BXPYRRt5QGUUPRpDdKR": { + "balance": "1478.157593712", + "bytecode": [], + "datastore": [] + }, + "AU12Ysw3sHQPdKm6z5bJnGYkPfUibbSNqRKCW1MqhJsL8aYhAYryr": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12YtQ3mLy5rqKb1oPa3WrnDa97oQnLjLoGQu8uHwbXgCVKu68Sh": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12YtU59GKoJvdD1M3ksuDmDo2ZvRSb2zCtoycK2u9ikNSenJGAE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Ytne7kMeyhDpsbNSCpTBu7AJP3Nzaz47W7nQAkQn931mpygfT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Yu2r7MYeTtDjQwuqLE1m6uL5A4j3yRm5UHoTi4mpGG8t2qeTQ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12YuWpWMLwh3ZoytKDSSE1oLuhnNpLs3SnYPcXoXFvAcz5amPda": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12YuZDay2uZxCfiS8THfTuJGhtrvK2aAzZpbtk3cPATcHfaLy2D": { + "balance": "2727.139064829", + "bytecode": [], + "datastore": [] + }, + "AU12YufwNGrccX8VM2Pc9pMYg9m5RNBdVYNvvDjDKDftjqoKJG8eH": { + "balance": "582.128171436", + "bytecode": [], + "datastore": [] + }, + "AU12YuhY8SDoXmxb5BoDczeh5cf1qHkxzWy4ih4FJ7crkW1TdDAgV": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12YuoU6ne5iNbu79J3fCDHfZ7x1YYWjY7jwAi21C32fXEgM4A3f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12YvYcPYYdPW9q5vFEEcRXDs8R84dntaP2E8oyYGCtSobxNQ2Wa": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12YvbjboyDsJDwAkyYguimfxMSdKRyb7rmMAPNr9KiHz9XsR5RV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12YwWD44DQPa1Qkuak7ULyeAqckAQAfA1vNKtAwv8Km9z2Qhuqd": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12YwkpsKTrStCodyVhDiFhoHvSFGyVbepzpRriDSi2SCQD9bCkV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12Ywmq5f5zmiMVnvrzYZT4cPdkoaRVokkSNn5arkNB9MD3i4PZ8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Ywt42p4zkcQvPX9cBzU7vXXQMmHJ6t2EwoB24NNJRWhrDAHYF": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12YwztgZ3fvJfDKcHLBzJFh49HpkW2FzuzdnNPg6Qtdrttv4iEj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12YxMfNSM6TZNXf7m1YDRDxJhnGUyVFUfSXedVCPzzsH8dAwWi7": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12YxVVE1yZDqk6qGQdHrAtzanFtx3dfpR38rSkEHLocoMB2MfoT": { + "balance": "4421.495641845", + "bytecode": [], + "datastore": [] + }, + "AU12Yxm6PN1uEinKd3oA7Hh28U2kYDgA67RHDYgfGxSnBHXqfGPzP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12YyACQxwV3Ra8sn6YioELCorq2GkASHAgLctgo3EnskgByTkEG": { + "balance": "1992.524758425", + "bytecode": [], + "datastore": [] + }, + "AU12YyR2o11GhXnhruVcwqdEnoBuRuZcqgKiwXyzXrZnhn9nyEkpD": { + "balance": "1765.230869578", + "bytecode": [], + "datastore": [] + }, + "AU12YyrnYirf9w4xxExmYs8tyGs19Te6ac2szoDu9NRR5ZXDvD2gw": { + "balance": "1316.167402680", + "bytecode": [], + "datastore": [] + }, + "AU12YzHRYNsMW7A1Gi9yCMeye9pa3H4GNDn1ooWEorSdd22CeoSoA": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12YzbZYR2yK6yNjLoxjrBCx7qzAacbK6TfqoP9aRxEf1bLQ7oES": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12Yzkkn4fddETaxLRCeNyW1scZDFxbCzh2ejMNXA8yPJBUGeBrH": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12YztC9HjQSHb17yzqnZkLcvD9CRZXUb8TyD9VX1QkB6E5yzbJU": { + "balance": "2614.255495552", + "bytecode": [], + "datastore": [] + }, + "AU12YzvaxhkScontdgeymUWUKRssHn5Sqb4fvAqbh3sJMuKBGvC9T": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12Z1o2yTP5Gd6VphLi6ojB8FbUQf2HF2fAtQ1CinDqkS2er2Lhj": { + "balance": "87.408951596", + "bytecode": [], + "datastore": [] + }, + "AU12Z1q1nxJWmmwhaConqkYCGAwW5ud7ktarNZfcAhLR9PYhiJ6uk": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12Z2bNX2KWVKxab8J3iP9TQ7X6GRChNjyo5LL3vnpfUKYPbQQNX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Z2woNMbwKYnc8dwLnRtmuQsxZw4KNCuQbQbjc1nKGCpTmbpmu": { + "balance": "99.917610752", + "bytecode": [], + "datastore": [] + }, + "AU12Z2z9rQZFp1z3SBqTMiKe7gKgd35wspWRrFzbaE2XfpBbYpBGc": { + "balance": "3247.689196148", + "bytecode": [], + "datastore": [] + }, + "AU12Z3kzAeHQKhADAajvtEd21SNSu7Zxv2wBoFtTJXarkB17fz485": { + "balance": "2096.343269335", + "bytecode": [], + "datastore": [] + }, + "AU12Z43h1dmD16thPC2SKAz51ghYcAoVfr1sQVRwQs22DZpNfeLKh": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Z4Dhu63cu9vbqivHRG4WfuS6BzWuCoauQEwmp1a7yuSVyXqBT": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Z4RYCZvRRoTz6h7xxcsf7NCzWJpgEi5C9Vd7PrKBJCAzQvynv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Z4hAyMXQzZBrnE98RDNffdpAFViVk4skHyCLt4yiGUKiUFg7E": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Z4rUWd2jUkMpC9PGYAEcan6WTwmhMYZV8NPJgqZpySK6ApxFX": { + "balance": "2460.054654325", + "bytecode": [], + "datastore": [] + }, + "AU12Z4sRbyQuSu6r2APy9XVyv4A9nniXzmhk8HMe4dyih1YEmeCsf": { + "balance": "2395.970107553", + "bytecode": [], + "datastore": [] + }, + "AU12Z5EVUa35GD3FwNgwxNDszSnBLnAAE4tbRFaSASPqQsH1Qv8Uc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Z5Fz9Xx4CCfz76bqxJnnc4BRkMwmbAXGopn7CfwayWgqPB6k5": { + "balance": "821.596354453", + "bytecode": [], + "datastore": [] + }, + "AU12Z5XRX1RGMjXzb6pDvtP4Xeg3Hq67pMTvw47YK1MvFrSzLWcp4": { + "balance": "1869.646719514", + "bytecode": [], + "datastore": [] + }, + "AU12Z5Yo6ABCxhtDxZT3FBqKYskMoMRN1kByPoY3FKgrJ76ha8fvF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Z6B814gcCZnCmYw56jQ9Uh6S8gT47aJ5qYTAeosEzfdbtLoEH": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12Z6zGuRiRCRzxESnwZDzdNDnzCKRvsNY9ry16Dw6Zt6e4kAbxZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Z71bbioLNuR2j4pteYYvFrJvPAaxuMH6qJLNPLxBiAKKveVza": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12Z76a11APRLDKxLMG4ySPCrrcF6GsKyxuyYuPHNUZc6kEdGhV9": { + "balance": "1117.664217614", + "bytecode": [], + "datastore": [] + }, + "AU12Z7B339mGLE1HCnQM2CE2SRvnZweSRCBbY4s11zRvjU5URenC3": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12Z7BpHtuTLNWTVSigsUQyUhgCL9eXt6nwtJpzjMYt27aD59ZNL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Z7SJEMvCU5zX8rV1oscQg92LhxgVAfNQG8AvMPkNQoAwQXzXg": { + "balance": "3095.172759797", + "bytecode": [], + "datastore": [] + }, + "AU12Z7Z1H5q7XYfPyFZ9pnYtaiNfbhVYtYGdUAdnk4MAfS64wdaf7": { + "balance": "857.189026512", + "bytecode": [], + "datastore": [] + }, + "AU12Z7sXzWbZ4D8SjCTRXWjhqkzayqhwPXbtFHW21Z9gg9WCnFmUm": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12Z7szKFURxaJkVnfbfKEvH3dUtQdUz1YhigoR81QTrt8nETCbQ": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12Z7vZRmg8hYBPqiD3WbvnqgQmnYjgYkUKrsBcEeSadXcgZGdUp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Z8A8iyu87vVqomyLCaiwib9x1kHbgp19NDSTWJKfruK8B6JBw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Z8TE8RD4J51wu2gEV89TQnanyQVq74URXYKvd7GQ5KbSXV8aE": { + "balance": "2255.420956778", + "bytecode": [], + "datastore": [] + }, + "AU12Z8eS6CrQJRMGroX3VXWqz1zhukyiSg12cGYzii6DUoNo1tbdD": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12Z9HzNNqLs93hpCkGJMG5WDkyuYC1XMN8aq3rwQsp5dMvyTTv6": { + "balance": "1631.625622274", + "bytecode": [], + "datastore": [] + }, + "AU12Z9TSbB5PRZPtM2VZJZ6bZsD1XGrzxKSkUZPs6Uo5uMHSGnwXi": { + "balance": "1718.993502158", + "bytecode": [], + "datastore": [] + }, + "AU12Z9i3y2GcVZ6WJLohwzLaYiWPybASQ2zQhQg6rG67eNwJFtLwG": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12Z9jJs98k21ejPkAUjcq8vZsQCApkTSoK2n3zuHM3fWcA75AB8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Z9uPi6rsLWkHCkeACYZsf2UxGat1SE5NMMcVoDdg6NVP3G32U": { + "balance": "3641.337754902", + "bytecode": [], + "datastore": [] + }, + "AU12Z9uSG3Ys1kLbszLCKAgCD1LE77BwQg9nkpCoGpVK1CoqyGs6V": { + "balance": "4990.085535254", + "bytecode": [], + "datastore": [] + }, + "AU12ZABs228HMuqe7mgQnmGLkQ5wZZbdVHqa3fC8KUYUxuZh8EVpC": { + "balance": "700.941033982", + "bytecode": [], + "datastore": [] + }, + "AU12ZAQYH8jG8M26LwZd5Jj2vocBuAFy5Z3k67U9JQAXM3oRxtawg": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ZAZb9nDeM4zk1YLby1PPE7CRzE1wKPHPunLPaYmuG19hZCdWo": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12ZBkJGJsUjMqKiXoxuaKJQyfiV6bLXDfaTycX11Wnw2Bt6VaRA": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12ZBya4cPccrCUWLzBYoyHKH98VwE9hozDELU7YxKsLHE2BWwXx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZCRcMXUGV5wz5iyEK3xhhAAQGAESe6dZqxEr1iCAtTPGwuK2y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZCvHF7L5kfhyLqpvFYuAGNgycTVW5Ziatz6izqFmRJcbxUW3U": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12ZD45YTfdwFj1k5WVvyWycJhnYkbvBhTNZVD8ttSz2MgUAGAGC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ZDQkczfyXV6WNnvbTYhHHDLpUU5dK7GRCyuUWQgvKrotT5pPA": { + "balance": "810.747402065", + "bytecode": [], + "datastore": [] + }, + "AU12ZDbjwGEzFQfro2R2qwrBRidEnDuNh3BL4wuJJQSHgBz436VFc": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12ZDeK8wwNXA2LujsVG9TqtBDcoEAu13gXUNgmozrTk4QcKVCvm": { + "balance": "2545.200645660", + "bytecode": [], + "datastore": [] + }, + "AU12ZDhs52jmq9ztBy8PHrFJZeGwbFK2viVCK9m5PZrYp9TJAX5d1": { + "balance": "1720.819500129", + "bytecode": [], + "datastore": [] + }, + "AU12ZDo9xkCw2uTngTTcMEjHyL9hjrX1yWiJc6ZwVjkbZ7LaJFTCt": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ZEP5YscX7pMU4pAZqg2pUxaxo3zcZuQCsXQ83BfK93YbJbCz2": { + "balance": "3106.732713808", + "bytecode": [], + "datastore": [] + }, + "AU12ZEkdcUZtaWpXM7mnGgGmWssEdrqkiMBa8LuAzKoRv5dx66mv7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZFRCnTyGBLCRf8iqkHEeAh7Y4vbHP7Eq1CJDLn4g1byMaz3zZ": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12ZFWiRtvnoq9eZHcyS2a9vaJ9n7GFCd1snrzePwBx9FcsvbbfH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZFxXY2ApCB54nVZz2FscAYgW5LYECW2q9eN9by1YshxWw38oN": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12ZGApTqL33uWBJLSx84HvttAmByRNsE7skVk2woiBF5XDCsmcn": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12ZGfJeYDy3KrYZ8m3sgxL8UMETJGUmCuuNtcrvvkZznHcnWhCK": { + "balance": "3069.682268556", + "bytecode": [], + "datastore": [] + }, + "AU12ZGtjJ7td6ScfokgR8KGZahLiwcsTSQ5ZDJWd51MboK4XqF2Zb": { + "balance": "2422.618871662", + "bytecode": [], + "datastore": [] + }, + "AU12ZH6yoiKJBYxF1mHSTZ7nanQvjoLPuyEcwbsSHXBhodS1vwjEe": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU12ZHSzmApmPGHosRzes5n3VuqxqFTXVVhcBgLCEoeezLjV858gT": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12ZHUWaVzsqc3WZZa3rFUL5N4AEUd7mGokP4Trh4G9ME7om74ds": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZHoNBcDUT3TnqUGyWKRWWcf9bbfZNAhvisr3KWe2UEyBDpKXJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ZHtFVFVboLJhu3RWctASo5dy6w4rEZzaLLDxN9PPpranBp9yE": { + "balance": "3714.978183813", + "bytecode": [], + "datastore": [] + }, + "AU12ZJ8jPvVrEDWmJMBBvsKG3DYrPyzCqnz44zfNA81qmCGc7L8T4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZJREWvc8dT7amyChuHZ1hcfMSwxSA3oQgr8urJMZFq3Myk5cf": { + "balance": "1919.555054532", + "bytecode": [], + "datastore": [] + }, + "AU12ZJsLBDwAEsQy3MNpkRS6ZC1qHJyZZZangqJNh7ijSnwo7Zqkg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZJxYPB4S7H52xAxcStNMjdCSBQMjAhJx31FnqF7ph7wGqfAQj": { + "balance": "620.199333636", + "bytecode": [], + "datastore": [] + }, + "AU12ZKfXeNQA2V1gYTTJAFz4v8Y5ce2nPXEZsMtfuqhHuMjthXoyw": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12ZKiFqLRo6gKEcs7jJRksUk3pX2FJkkYyZe1sY2WZKACife6hZ": { + "balance": "1511.932380945", + "bytecode": [], + "datastore": [] + }, + "AU12ZKky3rGVDNW4d7ZwBSUWyYyMj94yqgEELvK2mk93gdkEpGNmr": { + "balance": "928.545583386", + "bytecode": [], + "datastore": [] + }, + "AU12ZKpSYTei79Pwkr2bKQ2x8FauohvFk7wG126BqFdmDem8Nbbd8": { + "balance": "20.750231570", + "bytecode": [], + "datastore": [] + }, + "AU12ZLQygjRFngtBDJfrwzweDnE83M1qwcJmVq1LrWuVjSGYoaqsR": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12ZLXRMSEkAUfNydkeuG4wH2RvibqPsbT5H2JiJAmNsjaQ2toSm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZLsh3HcXsHCdTvHy7UcZgkY1Hmo3T7pS4tCkzmq7rEPKyvho6": { + "balance": "3646.316042422", + "bytecode": [], + "datastore": [] + }, + "AU12ZM79mDpDAn7yU5tyEA6k8zYE36yom3fvMMxbfvA5z515V3Za7": { + "balance": "4805.236773808", + "bytecode": [], + "datastore": [] + }, + "AU12ZMGDrH3Xo44Kc75aun36MVH1rcG8QtdXha1BPn83W4D7Kcwei": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12ZMbHirRYBptBb3EWPxR8c1WpqChY1UK5SyPfQtH9zsSQX9tEs": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ZNHr99oE5wiF2i5GA7Wjcb8EPfK777Wgk8tiSEC83aCPEopJP": { + "balance": "2143.678870465", + "bytecode": [], + "datastore": [] + }, + "AU12ZNL4kU2tZxkYwKPQnyMSCLqenJyrD9TJq43PVKC4R7WF7Mofv": { + "balance": "3815.630042634", + "bytecode": [], + "datastore": [] + }, + "AU12ZNbgUTi3GWVAptnjM2Narvtc56DbKieoD4ZYVUcMHMdZXazLN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ZNfjPaF5rx7jVAwAGyKNegLBWWuQGtotkhsFySSyAD119bFUR": { + "balance": "2052.075115302", + "bytecode": [], + "datastore": [] + }, + "AU12ZNhn5hFSmgtj4s1W916f8FKMPtT2XxsUdy3mdH8pfABJsknt4": { + "balance": "2001.184085309", + "bytecode": [], + "datastore": [] + }, + "AU12ZP26w3LrzKBtw66RhuuPWfNkf4FontSNMdWf12vC983EKKb4R": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ZPKF27df9rqQ8GqUwKcs2EHMpkP9QhxJvrV9xtY4eKpnGKP7P": { + "balance": "655.476351703", + "bytecode": [], + "datastore": [] + }, + "AU12ZPNHE9aUaLQgcn5JttCqT1He7yBck4LLDJH4qFurLVHVg26YY": { + "balance": "1677.822451437", + "bytecode": [], + "datastore": [] + }, + "AU12ZQU943dCoK84koHWoXzP1T6SdxpnWQbvvj2JKkDNDQZobDgJ1": { + "balance": "3896.435763812", + "bytecode": [], + "datastore": [] + }, + "AU12ZQUyk5pfUGXciob4SsSYexSkGeqAsnQwFFc8STwHwEdjYEYV9": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12ZRBnuDk9e84Gfxgvj4NFksWUxmjm4X4q2ziDq6rptE9Xh9D9r": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZRDCyoPzHD1ReeW9KCgTaMM89tePGm9oKbMV98CJb3bW1otRA": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12ZRH5nH5kNxLr5xAZFMiPj6HjQu7MjUfBcrNTZtBmpaverVp56": { + "balance": "859.989586821", + "bytecode": [], + "datastore": [] + }, + "AU12ZS6KwUeBCUG2smUsHJxMqx3wkFz6R3cURec5KT1PSgTMAMeLk": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12ZSWs5wj8k9wo7bJfGFuGhJc34AoUvgiNdqSPkNJddbZZMmu3Z": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12ZSX8VS6xkn9tqsPjbc2Uvo93X6i3MKyCzEFafkv5Ek9edFRbA": { + "balance": "3190.393845913", + "bytecode": [], + "datastore": [] + }, + "AU12ZSbENdQ5HYgZkuthDgGxpmfHnvKAULMFhNL3PCSvnRFHBKXQc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZSueH3miujeQp2LMEiN9PKDCJKT6iuuzgHjGgKHTGwunheJ4b": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZT66tRsq3nk5mwTcCy4ryWNM667Kpk7KGBYGHsh4asiBtT4Zz": { + "balance": "1130.610732663", + "bytecode": [], + "datastore": [] + }, + "AU12ZTQQ2LHyKHnrCaxoxZCM9H9aJrVX36UNqB4jtaQWEPxGEzpUq": { + "balance": "1509.580599374", + "bytecode": [], + "datastore": [] + }, + "AU12ZTkqkq41cY385av3s2gHBUNvQd3dNf4vznJunScvSj7eogVqd": { + "balance": "1484.650944320", + "bytecode": [], + "datastore": [] + }, + "AU12ZUXMjymNVVm272y6YwzbehWDa1cJ5wUmmqQqVjdZwGxSchSqd": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12ZUc7zN6A98HBVir54bqqMJh73z7v1pMpHCCuKptq3NjbxKCBK": { + "balance": "1091.310907768", + "bytecode": [], + "datastore": [] + }, + "AU12ZVqA8FhHvpWJEz5QjWz4jce26YnY9ESg7tGDXzsHAzeydy7Qw": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12ZWNQupub3xqxrKwVnKceebHrxZN5FHFjnmxmEgAwkvqjN7kms": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ZWYuNLe16shFPEe4h5jv6nrYMSZTyWeF54fzTPkQkhnvDz71b": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ZWpfHy45qoGqmLtQmeFwXCiyUYrx59KDuqZzgCai5g96Lz4Mm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZXYNwvNZXCXgEYpPk8tqvpnCMxbqYg8zdfDQfSwnvMYiHTmL2": { + "balance": "1734.374042241", + "bytecode": [], + "datastore": [] + }, + "AU12ZYtSbqJPdmfYHhvtg5pcFHPpBYjQKof4ucGcL9AAh1eceCEUy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZZEASs6HKg3tSJcAznXdeXu8DhH2vaKkNTbCznLF6f1uddhsV": { + "balance": "7.393201716", + "bytecode": [], + "datastore": [] + }, + "AU12ZZGCNSMRzDURm54Hjm1VmUA5RFedyW5MPGqR5tm3wdnGAQqnf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ZZixgpBQsmW7QFGmFdqUPX1Av7Mv8ACfpXTKM46NdPcWitVni": { + "balance": "2453.702202117", + "bytecode": [], + "datastore": [] + }, + "AU12ZZtLChT9znFXZQfaB8FmYgR6dSxezY8VkR5Kg1ZjXGK1aKHTm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ZagrXsGdxt22QUk6BerDcCyLzxHUGFkesH8RaVPGUoVfCZWHe": { + "balance": "537.162750834", + "bytecode": [], + "datastore": [] + }, + "AU12ZakXpAuHMntgFM9qjYh2VB3jAqFm9XZNLMkmigxnnfVZ1v5Dx": { + "balance": "4467.917239448", + "bytecode": [], + "datastore": [] + }, + "AU12ZapymGLkht2xfHMB4CqTDjxxbvcV4e5gqE3aq1x75V65BFnUa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Zb8CZsjxQk8C6nBDofkYhG1eETsrzAZsPsUKRCSbRqsne553V": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU12ZbFH3tdQL3bhrb9bYDYgj7PavbtoUSa88tp61v7beWgs2XVYx": { + "balance": "2289.317793602", + "bytecode": [], + "datastore": [] + }, + "AU12ZbSjd53JNdLZmsVarDFPocaPTMeqjpjXyNtPc3NWfYM332PbG": { + "balance": "3241.073546855", + "bytecode": [], + "datastore": [] + }, + "AU12ZbfMhAVQtkU2P8m9ujgjyCVAkpVnWZ9ieGmT6tayU74jRB41m": { + "balance": "1027.927215201", + "bytecode": [], + "datastore": [] + }, + "AU12ZbhX3XqbHwXb7UqosBq8Dm3GETtPr3Q7mon7Jij7U6fGwDSg6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Zbm4Pik179Wc8fGKwDQ2H6JiuXCecHxPwYFdJgcnpZFAbjKsQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Zc4gq8NX9Jw4CW9YGvBbyXSw1aDR4dUjyf7D85kXXYj5A3y2b": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ZcRm5H27zuS91RMyKWmZDfY5kN5ocnJ5wHUUCEk3u5vVQ6oou": { + "balance": "2938.804742402", + "bytecode": [], + "datastore": [] + }, + "AU12ZcVP2YgiRD7nh855Rip1W19d8PL79k3c1u6JRLoTkqoudLXiT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ZdLUeh5PMvYVBaGMji9jQA9NVRZuV2XVxxKRsK2M94Lf56uH6": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ZdTMkLUF6a92PTCvibRqiLiaFRpo7r7pKP6Y3PTn4frmScxZF": { + "balance": "1507.813629382", + "bytecode": [], + "datastore": [] + }, + "AU12ZdiRpxeLH5yncofu81c1PoWGXKbTgwdBzwj5JXfSbnzxKH9mm": { + "balance": "183.367068189", + "bytecode": [], + "datastore": [] + }, + "AU12ZdmnCXAkn4hjymoGcNQZzWsAYou86yRyVzwTmDqn1jfaM5NsW": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12ZgWJUnXYBMfyp5ixtnNHUnScbsrP2V8HLX3qy3YyzxKfcE5TM": { + "balance": "2756.432788045", + "bytecode": [], + "datastore": [] + }, + "AU12Zgd5f2Fw9fhagMCZoQ5YQjHQMbWhVyhFeW2S5c6RUTQUvoEoB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZggJMz7ycf446Gyx3C5iedzjHPfejhQsWXAG9XvdeZPbBsJXn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZgsntX2xFhXBo2EAa7ThQXxBTZ2HCQWWomc6Xr6ZYgrkJt1rM": { + "balance": "90000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZhPkHn9RfV3T472cMXrNpejXy7fvLj9csUeVXFRDSRx4XBH8R": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12Zhr39krSSdorQSqoHx8BwhBG5sJdZWHYD8NyDN2q4Rye44ScS": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU12Zi6oZ1WegvuCXtrzY1yP59ZoUnnxYtZARaLg28pw7j8HMyVp8": { + "balance": "1152.268086921", + "bytecode": [], + "datastore": [] + }, + "AU12ZiUfFJsR9XwFypWxGWk4Z4bsGMFfc9v8NiZsLd785qDvFG6Xk": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12ZiYST8WAkCiqxNfwTaAFWt8oDqnFDhDxCrKkgVFPdFdNnsbXP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Zii2toGah94dG8fFk31iDDu2JNA74fmrj3ViVQ3Ls1F34GEik": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU12ZjCEaezkhjBKuSVFmU4KXmQFwat4RT42RfAsJ2eMcZgHjTkXB": { + "balance": "1155.571707230", + "bytecode": [], + "datastore": [] + }, + "AU12ZjCqeHabzCHZz7gs3oP7SDLC46Sm8cVPcAz92rbJv3NovU4kX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZjWN8j9iiQuUk3TLyxSph6t4wwmHdX94HUShvGMSRtdSKGa56": { + "balance": "1373.892600042", + "bytecode": [], + "datastore": [] + }, + "AU12ZkB3gQrz16tjE95FcvyqmM6R1ycsaZYsVZ1b4ZJ8qaGvFrEMu": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12ZkdQT9KSz8G2WafFv5QpsohW5h9hiAEXMg6nWso29ZVVZCoAf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ZkvB55xqBRnr6sLWKzWPZvL3HAGjVutmB1SP39xLsK6J39RA5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZmN1Z9seQWwtkHukJh74ks1Rc1bFVS2eQwyABC34wiQTJDFDc": { + "balance": "67.855893847", + "bytecode": [], + "datastore": [] + }, + "AU12ZmS5Pf1cqmgD8F9fytHa1oZ2BWefQkyqiWYihZMVgETq4tM43": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12ZmXp6N3iMbKif8hHgvjEYr8dCUphJAwkPRxJX9ua83psUeAQt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Zmj9TYbJUhQ94WsshKp7S1Zp8SfBu742BGyhhHFykKTZghJd7": { + "balance": "950.008512254", + "bytecode": [], + "datastore": [] + }, + "AU12ZnMfm2o5JW8cmSdanXWqRPsCMEkJy5DSzRo6v6Ei9KQE8M2qz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZnkMJ9hUR4xJUbWcg9wgU1pk2hcvuTBe3vhnCCHcJJiygSyG2": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12ZoiRyi7ctnAQNC7yDdjHvhWkz1nqz7vV3x6vjAe5upxjmRp23": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12ZoupoU5FppRfEYHFiNwsVXQzAsjMWy8bw67vvGdCgqj44Xry3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ZoyWdLvRXkdrs5rV3rkZR2ExZEPGQwc46XZMt69yhcBbgZatK": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12Zp1eCPiseYwLs2iBB5kR38ayv1phVhyeTmVNmaFyapd4xJVwc": { + "balance": "5315.811736448", + "bytecode": [], + "datastore": [] + }, + "AU12Zp2uvxSsNQzG7d6uS7EpL5DrY1nGrbGHCXT8jTftoZbW79WFk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12Zpbac5UBse8HHpggZWqKcb1fHQdSbiqY2P2yMLPv1svTG3ahe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Zpy7cojxTcPBk2ttKoPenqaiwQXd9rwsyJGDDGS1icxE2exKQ": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12Zpzs8rto77qMmt7ecoysovYVG7jdhfw7avbgdB2JZR3tdo8ic": { + "balance": "4614.851789651", + "bytecode": [], + "datastore": [] + }, + "AU12ZqDYWhdnURFewwSvVu2ef2T1TbjvJzKyFbp1HpVQr4RZ2dSfV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZqDbCfGKXq9J6EHX7kHbsY4teqfz2A12N72iuGcbknFa2mAQN": { + "balance": "737.920323838", + "bytecode": [], + "datastore": [] + }, + "AU12ZqWBDuaaNyCBHiDdQpQNPMur6Wv1BeUCThUNqdrexnL9gdsTj": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12Zqh555iF7cfPdJZKEQt9tT6fRyQShEx2G7X2U5TZP84inrcoN": { + "balance": "5757.036776368", + "bytecode": [], + "datastore": [] + }, + "AU12ZqtUpdcwe5uwV6joufPaEb2LgShaFxn8wGcxa7Uvtt36u1tVE": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12Zqw11tdy1uxhnxQngq4FHzxfz9sxXWYmHBFrUYexv1Yq1anoZ": { + "balance": "1935.798634982", + "bytecode": [], + "datastore": [] + }, + "AU12Zr4JqEYBzZAonAWsGQcFC4FLwcT37Pb2xSk8NF7deJDZASLG6": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12ZrSe3rDLmutWptUFuVddAEFve2h6Wka5v6UgTvA5Xc7MtHVXV": { + "balance": "1714.894132996", + "bytecode": [], + "datastore": [] + }, + "AU12ZrcDKo35gXjGpdvJbjAJq84Zj5L8NAky5T61p1NUSkVt3WsFS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ZrmEJ3Rriun6SV9Jy4sMAUw3BKNZzRvPLVSNHEuyNVM2LX7mV": { + "balance": "2022.590720949", + "bytecode": [], + "datastore": [] + }, + "AU12ZrmjZRvxSgt12zxMGhBoieRL2zpYZ4KQzY7xGefmZKAVz64sr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZsQKJVY4H8EccGwRpoLG94ZTDNac3Gp6cV7eghBX4cWoNudhz": { + "balance": "170.401866351", + "bytecode": [], + "datastore": [] + }, + "AU12ZsU2963518mVqh14WJup5rNbi1yKUBh4pPmPfdwxPkhSfybRY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZsX51D13rQViZSgF8EPh8Ke1Sc2dtpM9ehXMP9nomwS72YWeU": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12ZtBUisi9eYrWTnyfbfM7tRMxRNjbJ284kVoCtBiQp7crwNANG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZtC1U1w4fQKbUof3NoDLHDRoh748vEwpfCV3eMtjLbRuaMSsb": { + "balance": "803.784544488", + "bytecode": [], + "datastore": [] + }, + "AU12ZuDHcJyxpRfJAzPdLGcaukMGVRJVNR8HKAznX7Gn7fbVwa5kY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12Zuau5sFRwYMopf2kzkHUTi58c36MQ9mjJwEomrUoKpgVGHmU7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZuoEbGHAinva7X7oWesWjHXf2j6D3aXRAKACf9dK95StVWFLb": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ZuvAPAAtHsHahG8ZUHjEBUgksRyvwGUnLhEe1u3a8psxuE2kc": { + "balance": "1693.730094009", + "bytecode": [], + "datastore": [] + }, + "AU12ZuvawUxBdTW2tVaXV66ShA2p6FwRXYyG5rZss7qFLWeaJpBsb": { + "balance": "1404.054937299", + "bytecode": [], + "datastore": [] + }, + "AU12ZuyM7Nv2azVLh3yrDjt9ySNCbsDeHMFLHSFKjwPgob2tEc8GL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12Zv4xCZ1EGV7jP5Ws1dkEecpYLkt6v8TTJqGso1oxwqBFqBvua": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12ZvNHGm65fmBqxkrVBd4TyPLtmfycoUWbVodhwvc3zimy2c8V6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ZvTcH6QTqjiMLj4X4cph92jPruFzg3EgdPP5Mk2P6X5P5kUhK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12Zvi5dwkTtASxhw8HhvYLoAARst7KgJXRzKXPEBntJ6Jc4Tbqb": { + "balance": "3677.588859103", + "bytecode": [], + "datastore": [] + }, + "AU12ZvxTRdhTuAGtdwucZdozDegEVE61u4dXAxryVQYwwpjkkM7S7": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12ZvyipoiyLDSBHHev623JSRNhCyRc9cTfGAVoKRe2H1LL1m21A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZwQvjknmdNTpWJzvme9ecw4V2JbgDRnME2Tu2zJ6h5bnA36sK": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12ZwcRPdnUFMCcomwWF4rjofgUthjVoabK6TLhwiHjBnzRCe9RS": { + "balance": "1863.343574969", + "bytecode": [], + "datastore": [] + }, + "AU12ZwdU8E3B9XzcvwJovj3U7ci6t6peiVBqkK5AyHoC6mZ36MKrC": { + "balance": "905.344483398", + "bytecode": [], + "datastore": [] + }, + "AU12Zwy3X3vb14Kf89N63PAG65TVWRKkw8tNtqz11ksQgT2H9r5e8": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12Zx6FXd4Qzojswe8HPfmsk6xJFPeQNesDweAXPFkwZgB3ewWhd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ZxBPFw3jBmaqfTr5RtUN49EhjMAaTBymMkDCzC9orobaWsE8J": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Zxf8RcPPRC3bxVMv6q9qKsFeipFQTYB8oWX1dzeqEcNr1ymD7": { + "balance": "1516.858530326", + "bytecode": [], + "datastore": [] + }, + "AU12ZxfDSBsk5xR6B1PEzSHNqhm6wD6mBDwwsh7PSHoRihkgrBKzQ": { + "balance": "1749.109702178", + "bytecode": [], + "datastore": [] + }, + "AU12Zy2UWnQgh4FJPTxxyxLRTAWiuwtJS4hzV5Fd3rAh7c2FwaA8c": { + "balance": "1396.583717634", + "bytecode": [], + "datastore": [] + }, + "AU12Zy9ABoVwA6QgLeBvA6yarJfnU9wohgsghxM1sPFUBhHzVJVZt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12Zybmt7wuaKK38PrH871BszVkcW52BjKJpu5P2rHvwSXVwUYX2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ZypZNNztvXJSCN4nHSAJ5qUf2UK1tZGyJYDphcU4dzApkuZGd": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12ZzADVqcNH3VazQEkvyQMyKxFxVNe7fua9ueJt38Ai1wYqczpv": { + "balance": "1132.914654600", + "bytecode": [], + "datastore": [] + }, + "AU12ZzChQaAz164cP6dyXzCDZq7NyQxFvoFaVzJBk3nUZCnZdqhQm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ZzKBbmuFzw1wL7YxxXPEzPpZgF1uNRtbjxiQyJBzh1PV8ps31": { + "balance": "1455.326093089", + "bytecode": [], + "datastore": [] + }, + "AU12a1DpVdMkrcEpwmpTSBFCxbfs48So7wK8C1UR7MnFov9DyNNJJ": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12a1Xw4mQ2ND5SG5of85MqdoQBQuBwY7mKZXdbXSZTviLSx1e8N": { + "balance": "2613.551096970", + "bytecode": [], + "datastore": [] + }, + "AU12a2KRKEt6awLmmEarWVgzp2B6oLU79CPCP2VmbH1JnbVnQhLju": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12a2VVcwtmYN6ZMF2rjLkmw397No916KscnLPACQRYFComxZkFX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12a2fBZxNZwxLBHfZttDkdxbDRauvhspz4cdGun2mBYt4m4e6eP": { + "balance": "4946.346710644", + "bytecode": [], + "datastore": [] + }, + "AU12a2fMgSaSh3jRByqnaegUkTMMjgdb3M3hBqxTyQY3SvggFeqvb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12a2nZDnJjuykgCgRQBEKVHoLLmbGn24N2NFBUscr24V224z5HG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12a2upgHbxZQvxViU46G6WJw7uRFNZSbDCYn5M1LkwsdvLFe6W9": { + "balance": "2553.062517154", + "bytecode": [], + "datastore": [] + }, + "AU12a3StP9PrK372EvSyCwtz2nsYeEFsh3WnU1wqFmRP5bPF2tCaW": { + "balance": "3533.847607722", + "bytecode": [], + "datastore": [] + }, + "AU12a3cwRvse33St8Bt5nxPwAdZphXcu7GvQJmYFiN6c8nhHxBHC7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12a3gaqgy6NH8SSqJ1ri3DfNPheQi64j47SnMsNyfUZV8XwSmUR": { + "balance": "93.867385122", + "bytecode": [], + "datastore": [] + }, + "AU12a42cvDE5voYPQ7rcKemB23t55VhdKqy5GEgsgcy1SaeQeCF7e": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12a46Fowdt8p6mG8pmgLEaMSnsYMqfmHBF9w5ah4KUxmZPU85x9": { + "balance": "1071.153473285", + "bytecode": [], + "datastore": [] + }, + "AU12a48R2eZiskUvfhyq1fLkz45gQGwkgiz6jozaGZSXZakUmq3qb": { + "balance": "1874.820756875", + "bytecode": [], + "datastore": [] + }, + "AU12a4M5UEZ1Xdp4kaK3bmrgbCGZh1mBVa8EHBwKU4yHy5TL4LQet": { + "balance": "537.510867396", + "bytecode": [], + "datastore": [] + }, + "AU12a4RHaxur8wWMY8pdCLP1CvPi7kudzsWdcG64kdmuVLau2CF94": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12a4YKH8Dn4c4FTeJBKejw8U3NVcBW6fsGXV3ycoG3HNiDE3tpj": { + "balance": "6104.214070914", + "bytecode": [], + "datastore": [] + }, + "AU12a4jcNUZ4D74ZpDoY578VTGzXEoJ39SJEBRWSPGkcJzpCiRRuC": { + "balance": "49.450160520", + "bytecode": [], + "datastore": [] + }, + "AU12a4msU3CVKqe2PMsWdxosu49eDfUuZrRHYT5yaj5Zfttvx6Wfp": { + "balance": "1149.205679370", + "bytecode": [], + "datastore": [] + }, + "AU12a4vup7oU7wRpySQLZWjAj1aam2nhzKYNizdT3uZwcvVvetS6M": { + "balance": "1988.474125310", + "bytecode": [], + "datastore": [] + }, + "AU12a565EZokVJ1bJs3VonhqRaNJLxBzLdm6HhvLjrzdWjfb4vuF3": { + "balance": "288.316485143", + "bytecode": [], + "datastore": [] + }, + "AU12a5mzdaCMjBd2PgmGbeJnxhHnY8og2z7nKKzBaFzUyDFKwaTiF": { + "balance": "1349.749260650", + "bytecode": [], + "datastore": [] + }, + "AU12a5uieahc32CZLQRyU73ThMkgxg1gRW3VbinmMthC2KkwDwyrQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12a6JzyveH4cA5KncDkVMy8a9KUZEsqVLwGxU5MHfer5N2FMRVX": { + "balance": "2445.268964246", + "bytecode": [], + "datastore": [] + }, + "AU12a6XHkcFUSyPQXMab3W9NUj9zzko5obWvBj2BhZLN5BzaFbvdM": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12a75KvhVixX1Qp92nsLkwJtQ3BbUzkvNG4hkCynArCLkcyddan": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12a7EqJr5c3iRFbt2pu9zQrSHUGT9aTosjCqamPAtqPiwgpnTXr": { + "balance": "205.603712647", + "bytecode": [], + "datastore": [] + }, + "AU12a7ThFznpxuFDe6y9fsgguAduijhibxVGsKRm3cMFDptEasz2i": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12a7VXo6M7GvrgDPd6P9kHzvN5SxeWw4VGAi9zcQ2UACft8b62o": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12a7zkTfN6stRLtqhbAK5AFgpMgy6LdRcDocJqKnrsqK2B5MHoa": { + "balance": "54.013300353", + "bytecode": [], + "datastore": [] + }, + "AU12a8jNkiLp2cit6rTtaoPNsLj3FPZqQAV8Vh5spDcRGhYzx79Br": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12a8sSpK6nF2ZLRYVRjvYfwcQ68dvy6YLwmt2MBtzJCJeKbK97X": { + "balance": "3608.102886729", + "bytecode": [], + "datastore": [] + }, + "AU12a8uEvCDMjFgUS41hegYDpHMLNUASzxTW6uSuENstyAviVd74m": { + "balance": "3468.483766971", + "bytecode": [], + "datastore": [] + }, + "AU12a8vaws3WMhAFYpyE9FWGbEF6z3T4wTerGuHvg7HCuwBXfeB2y": { + "balance": "708.690828075", + "bytecode": [], + "datastore": [] + }, + "AU12a8xxF5Xd9sJm98UZwExph8VzDxvV6K2BMQP4kp7QM13XDwSrc": { + "balance": "128.984383061", + "bytecode": [], + "datastore": [] + }, + "AU12a8zXKcjPF6KKFTsCbypNUB1ZRdDyTJ7PEobp74hXjRpTUVZky": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12a943SNTsqBAFWgyuyZ36VmxCJawNS4H2h4xDQvgg2aY833pHm": { + "balance": "1591.046254094", + "bytecode": [], + "datastore": [] + }, + "AU12a96pFPn5XY6TG7VnXfgrRY9LmLD1FXPAD8L92eRELJFXQDJMS": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12a9Xep9o5JrGh6JXBC13CAfAGCuGEByT2j2kqFv7uxhijTjK9M": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12a9vc4XaDZG7nB2iTBhCPA5TipqN3r8D1qsNAutXs5tYpxTBXc": { + "balance": "3212.235626542", + "bytecode": [], + "datastore": [] + }, + "AU12aA4sebFM1ZfUWyRcbfuQqWeNFyfQJZSYsLHZdJzyqJxSHtYoZ": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12aAMeSXRqrSgu19aw4dCsz9oPbLhijeFozJDc9vfYZADJGGZbQ": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12aArZggbwTgsd2xEdqUZJDktcEuhhxherq4CtdsPTByN6Q55q4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12aB3gj4zFQVTMpZwF3womG1zh7Bs5bbkC9qV7HGy939Ec13ien": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12aBAJurk5U2h9dte6BRmdg5mJWwtidFwjbugBaWrs7d43LgYvV": { + "balance": "1600.621864900", + "bytecode": [], + "datastore": [] + }, + "AU12aBDytS4CCicCuKdPyqsModkjTG6unE6gCixd8MLM9Tcqr5dxb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12aBaHqzJPLvyoayTLADoj5x55AvxXxApWR2KPoM4deJvPTSAXf": { + "balance": "15.429130779", + "bytecode": [], + "datastore": [] + }, + "AU12aBeJtFHtEYxFUhHujS8oTfv5KFtgpx8QXcEmVPohrtMkA396R": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12aCn3xyoHVkenQaTTMsKuVJV4dcmHX7s8K2AuiCbcFm45m7R7f": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aCp7RyNZBQ6BZWx7MKXhPTwDaV72KUfxohQqC5bHBrfJpzh6p": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12aCydLMoXczpVcDFJdWxawLfNgATjZLmSWxdes4hH8QTmwGRzB": { + "balance": "1711.718069991", + "bytecode": [], + "datastore": [] + }, + "AU12aDUjzGcRDJuDKwCSDQZV7MuGn7Jd4F5U4YuzFsXCr2jsXSXyW": { + "balance": "1375.020675848", + "bytecode": [], + "datastore": [] + }, + "AU12aDn2ojRyUVdybk4HL2AvTJ1Xs2EDLKGgxoSz8nztbU2jUc2AV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aDvwCgHURTs4A4tq44FChjTv2k3vWkZYcWBtE3oLPFQpFp3QY": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12aEekT68VuZ1e26f9MbS38bwFpSPzybfvm95f5pnBFcpnZHA3M": { + "balance": "2516.625502204", + "bytecode": [], + "datastore": [] + }, + "AU12aEsWjNgAMWdcLKeViFBLBPM9EGJjT4X3oVfv6mVnoQvZ7qD65": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12aF2tPhYu5iKYqpqrvANZ7RMXdY7rr2YbYpk1TFJgs68swPJq3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aF92sipCTQ8vECt18FM3Xg1MynnK54mRucpwjarmc6zojYkLr": { + "balance": "2216.731526053", + "bytecode": [], + "datastore": [] + }, + "AU12aFVoN7mPnvsCWSSygGj4XRSnPpYm6UUE3K7Nh19TmSEbTkun6": { + "balance": "1365.850327412", + "bytecode": [], + "datastore": [] + }, + "AU12aFZr9vCSuGJkGJaxqv7ND85vrkLmC596CGYq1kjq8gtusLeU3": { + "balance": "643.956807778", + "bytecode": [], + "datastore": [] + }, + "AU12aFccayD4eNyQVGhfNasf6m1vZXSdJQRFoREwSPrm42DTSfRi4": { + "balance": "3641.738985702", + "bytecode": [], + "datastore": [] + }, + "AU12aFdydmVJdoxF43eoiXqSEcj4BxU188XWpcD6xLtD6r2cR83YF": { + "balance": "1676.563885042", + "bytecode": [], + "datastore": [] + }, + "AU12aFfHAZd9ZQadMNWKfvu4erTdLu6vsdQg1xoKkWbWn6SuyE6pF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aFsHCk3Y798MWyo2dKNjfp5hrM1ashXJcwUiQYKHnSsoFcUvA": { + "balance": "1901.890280704", + "bytecode": [], + "datastore": [] + }, + "AU12aFwhwTYiGREjk2dwyoEMKg3jwhTP5gnGZ27TkwGK47x9WcUvJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aG8G8jNoDYnMoN7H6kP3Cufi4G29M2pLCCyXM412yicDAtXTG": { + "balance": "1963.748321993", + "bytecode": [], + "datastore": [] + }, + "AU12aGhU7xy6KCohxzQd4JYgmLZCEDaCskR9157P3NoyPmhk78yzF": { + "balance": "1306.263236888", + "bytecode": [], + "datastore": [] + }, + "AU12aGnYitwUufRqdmCUGbuRisykrYvykmDRWFZnLbYJMu8coFzor": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12aH2p7Qc5mucwmsFUuUtFvfLBMGYcJyL13CdRrnzC8NBkuWGrP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12aHKB1sdPXbTZt91p7pmJs5df8XBTDXhHCz7aAumMm11GJeuWz": { + "balance": "2375.255427457", + "bytecode": [], + "datastore": [] + }, + "AU12aHVwAT4Ei8Q5apu2BSpgEkdWx1nSoW7gszYp6eND7qhuru54b": { + "balance": "2788.303645990", + "bytecode": [], + "datastore": [] + }, + "AU12aHZH1T65XFbwtyqYgGoT7AFyTCXwZCVpYg7p5ZCRZ2L1dAEgj": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12aHthT7CboYH7JwCnmGQLN4V2d7VnMi9Um3mVg9PLmZZ9pd4u2": { + "balance": "1836.322061936", + "bytecode": [], + "datastore": [] + }, + "AU12aJ4SAv1eL7bjvUBBYyBzRVzbZsyXt5Riw39wkgcGRMjYZ5qRW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12aJL9oEFL9NCAowWxeWbs2hvtEbHja9KyCyYcqEDPEKyx1Upth": { + "balance": "2658.036928040", + "bytecode": [], + "datastore": [] + }, + "AU12aJUKijLz5EDQBrjpysrmVhxr4jJDqjGE8oatWNLaYX9cWfmE9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aJWEL6PNEs49gzecLUB65MaNRV8afHwXXno9ma7HAnygrmTQL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aJZVdSqvFbsPCtXtZkb7bPAbvCWcwLZuxA8Dvt6okkgXLAcjQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12aJd3yucKNZJ1L2RXywm7DwmqnAcKEprYn7uqryS3TXS3Nc5Ez": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12aJrxq1RBkrfgwg5xyPdBdapwzJNKwPU5Eb8RR8r7UYpziV5xa": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12aK1uSpvzfmfok9ELzreKKyxxBNceXQN12X83uNTkxRBLbMtTo": { + "balance": "890.583679177", + "bytecode": [], + "datastore": [] + }, + "AU12aKCCLHd7RELnBb5uRTYtyQz6Wmbnv8wyjPdCobk3yZgoVQezi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12aKCGegpe6qzGyxrUPyiDa7We1hpPVKd5ncbhjzRMnz44JHpVY": { + "balance": "22.655964928", + "bytecode": [], + "datastore": [] + }, + "AU12aKjh46rqEqKqvAo5JLhETJy9CafAeaYLhNq5vAJeH6JvkCU5f": { + "balance": "5916.702069385", + "bytecode": [], + "datastore": [] + }, + "AU12aKtYauC8nYTVjfQdEjsRJGVUBjPRNaSeZUbMFiGbhGeoCe3F3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12aLDLKRzZ8hAyD4UVbYPafwGgPiJM23VKy275MWUgkF52LbRp5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aLbfhBWegY8jRgshnfkr3vZUvXJkdagQxGVarmexTVKRBFpLE": { + "balance": "3603.541495431", + "bytecode": [], + "datastore": [] + }, + "AU12aLh42aTPMRNtVSs5CD7GqrsnYbDnBfRd7pyRjbPy13LT8V68M": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12aLstcMPJkL3mdHd8XKhfFrYNCxRi7sQpVjVKoWn4zXawnsj7H": { + "balance": "61.359231539", + "bytecode": [], + "datastore": [] + }, + "AU12aLuBGeHhrqe9MdbBU4BARgHhs46ibgHbzzWexCsk7jM2hasEk": { + "balance": "3165.777165738", + "bytecode": [], + "datastore": [] + }, + "AU12aMKuXUDhmzFApyAQNLq6Jz8A2rpSmyMdRu7TvuMdZhpHcdweY": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12aMLU8m6byCMGTKmEaVrzgCBL2ofDnjNKkaHmpWKy9zKrP458K": { + "balance": "1568.952204672", + "bytecode": [], + "datastore": [] + }, + "AU12aMUaRRqZ56U64YEwpRVAGfgvZESDCzCG9mQ8bjLTcirrThhaX": { + "balance": "1415.155203169", + "bytecode": [], + "datastore": [] + }, + "AU12aMa1YXbfkLdZeJybobZ8xWcFM6v5RY5KyCqf7AQqdiyNSQDrQ": { + "balance": "69.903211367", + "bytecode": [], + "datastore": [] + }, + "AU12aMijhEV8MhjgCXFzA1fHw9fheKqmYm3VLhww4yhmQ4ukfXSVf": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12aN4m7WRVfzR7JboJbpreZ2jxQDPHQYbUPgqFru4fHVjAC6Yyn": { + "balance": "1683.887218769", + "bytecode": [], + "datastore": [] + }, + "AU12aN6gYp7dh6eBr6SPDWK4RSXxyLZCzPRH4E1GokcbJyJG839nQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12aN8nWxkVZiPNmpGKMvhHMmXrfYWNKp8neFSYbqfJrUgXifQBk": { + "balance": "1660.196249225", + "bytecode": [], + "datastore": [] + }, + "AU12aNJdt9n5SKutL5FspRfN4W24xDAYXm9QMwXeGqQCxy9DJSRSq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aNMNVpTEwVhJJ2zgnpok1n2WppMdcx6ZwAKNZXwCT3GWnqxHG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aNaX9nZs6dxsvveHAtB1R8L5hPb8vf124Sbunguch4cBA9Frr": { + "balance": "1864.263061252", + "bytecode": [], + "datastore": [] + }, + "AU12aNoyGB8ehCpyFdgPo7JxjRv7ZMcxcanEgEcw3UBNLJs7tsk28": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12aNq2xsSfTNPUH81Jd2owE4Pms3nE6vqX1kJ6xFtf6CNbxwbGf": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12aP493N6gMKGKVkmEaaX5cRmWzWRqFFcsn5GqFoC9u1EwgNTa1": { + "balance": "3.308658541", + "bytecode": [], + "datastore": [] + }, + "AU12aPAQzbx7YToTDmZXP3FhwHdMuUMME9dzrUvWMcELuhm828pvE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aPGPSjUGaPiTmvRjWbmsFKkXmsbLK8iSuufS65d2raUETiwaA": { + "balance": "675.451921759", + "bytecode": [], + "datastore": [] + }, + "AU12aPV4zKVhuRHTz5QcrK4b6WRYyJK8MXwa1CGanbmX7ZfVX2Bor": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aPdacthu4F2ySgfuKEgieqWCNeCY7WKYFfQLYvZo2s3H1PyH": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12aPwYzD6GnSroPBYSvLtpCn6UtZoZzuDNfWuVna1FMWgPVcafz": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12aPzTU1CBLVx3hbmVA1gTo6kCsjoJ2CuSsvmgwQzAf3Dd486s6": { + "balance": "2646.373591632", + "bytecode": [], + "datastore": [] + }, + "AU12aQ4inbsfNg2Jyqt3Rgtdsg3dLzaKkJAzLdAD5nZPeXdPcmGiu": { + "balance": "813.846026805", + "bytecode": [], + "datastore": [] + }, + "AU12aQSoVWndMtQXSAwLpaXsLUpAxq7LTnxpmFPGReRa5sByw5QyN": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12aQUDYJ4Defg66LTQkimbKjK7uC64jNHyr3kZfWTLXm33NoWhy": { + "balance": "264.107477501", + "bytecode": [], + "datastore": [] + }, + "AU12aQrXxjBcJocXpY3dUKPKoM2NoSuxhKHhrcQ6rPxAeF3F8TNMy": { + "balance": "1310.018590108", + "bytecode": [], + "datastore": [] + }, + "AU12aR63EKEZpypwYNFxZKpGDwHmYtYYcM7SN13c33E3M7CEURugL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aRFepP6iFVfQiMsbcoT7TRjzS4AXvRiWwk4hwJdn4zZhtUT5v": { + "balance": "2879.586014467", + "bytecode": [], + "datastore": [] + }, + "AU12aRLpZHpLfdQcqXGYzQFXVCwP8jSLHL52JJpUYr8xE6PhWtMzr": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12aRgb6BNGrtN3PNhf2LpYsRrLYeUTsoR6v4MfeEuYTm5mYi8vw": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12aS25RE4U3PkPZKvR5AEYnZeWRm2Xp13FCTX2q3zHXsddZDXHn": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12aS9vsZT2pUMcaJGpQYbxr1BqTEGNK4LHLTWWTWgcSchZju1Ab": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12aSHqP4C2yTydv1hsQeSuWGiGuzxWWtx1GTYDttH4ATRpqtdw4": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12aSRC2PaykABhDPNaUKMXPwFcMSfrBiVv7ayPEVYsBDmqNQdir": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12aTFJi6d2WSqf1Riim9w3uVahjjSBqFUKgCznLprxjUjkG2SxX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aTj9GuBZz8pe82Y46CWMQKgU7hDeJLZWcjZwRgCuz6xMjSMXm": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12aTwFHdVYK3EbStKwmYMjfvUssTqHtZ53cPW4uBSC7iDQbCJhw": { + "balance": "5502.825431916", + "bytecode": [], + "datastore": [] + }, + "AU12aUANgZVuXMGebkuoLfsia2n6bqPZybaHQostZnUbiYWwnTksm": { + "balance": "1847.579698406", + "bytecode": [], + "datastore": [] + }, + "AU12aUFW6YyH7L2ZYMqqgD5onyXELNSLAK2JnMoaBr63czM14mZdC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12aUPEjxxXzEcBxEWguy6w2KmUBU3mc8Y1CWeveCyH4TqFAadV4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12aUrt9CmJ6ojJcLYonJTCj1AaBL9ChfJzoDiNoCNwmTxR3N7Mg": { + "balance": "1208.453922291", + "bytecode": [], + "datastore": [] + }, + "AU12aVMCBJtE2U2iE2G1W6FvqpqFCU9Won85ZRWx2Lmhnyc5mwpWu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aVPpisCEADEM4LGioVtdcW55TUz4u9HzZTeiuY6zG25j82Yu9": { + "balance": "1251.219942907", + "bytecode": [], + "datastore": [] + }, + "AU12aVVdS3nx6mbG6ESKqL6XewGfF8SQNu8eTqseqTyhu7wVEPUPB": { + "balance": "236.215855553", + "bytecode": [], + "datastore": [] + }, + "AU12aVzq9s8gXQwKfpDLEiHJbqEekqLKWHhaqvfLPdXh9LdB1oMGT": { + "balance": "6115.424216456", + "bytecode": [], + "datastore": [] + }, + "AU12aW2sHZWHEwxNm8wCLJANcpfvKdxMa6uxF9G9fAWS628uZEsA9": { + "balance": "702.384536740", + "bytecode": [], + "datastore": [] + }, + "AU12aW7se7RyJ8kzWcRYFgNxRvnEDmPK32eCW3UPgrHSoB6bKmKEZ": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12aWBdq9hqMsGNKdDGgvr63mS633sukWeMRpsX1LxTofWtJned4": { + "balance": "3690.565110819", + "bytecode": [], + "datastore": [] + }, + "AU12aWDx7aMdDNKgQgeWwqK98v6zZAYa9yubuP36s9jLGDgQ3W9WF": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12aWNfjvJSkt4mvpV6SmFgQuP6pSniJCnxjdQ2KyKyA5SYKfTiC": { + "balance": "567.331910718", + "bytecode": [], + "datastore": [] + }, + "AU12aWv7YaTpFZjmSF79t5VLCdstUj6FKKinAYFsEzswPhVEKYuFu": { + "balance": "86.915539903", + "bytecode": [], + "datastore": [] + }, + "AU12aX1ShVEfCznraXP2hmaggc6Mc45DpWH7zq2K7d2d5gMzznSG2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12aX8njoxscWUQhKtGdFUooN6hv4xfvPUXjDFzYCiV7u7XEWVL4": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12aXFSiCMQdL2pYz9FNPpHHMVejDabqCqXbxcx3KXZkLmGvN7xR": { + "balance": "1118.235950633", + "bytecode": [], + "datastore": [] + }, + "AU12aYBuw3rzUDBrafox6EGr8ibDk91j47ULaGJftJ2itp1mdc8y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aYDXWGy6RxcyC8jtNDPYGmgMJrtxhypiUJD5AYUU67Cc4yyHq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aYTUTZAFaJzxAgHFcg7e5GA3KQVoRbxfWVyUAisQZSAnbqLWC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12aYa2j9krsnLaoMRXCXBkuC7VezMvN6b7aN5T9NX9kVkJnxrkA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aYbMy4QuNpB4wnHge3VRqWfNYKx3rsk4RmWdmTM741oLL9E2r": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aZ6bkUTizyPK5WZug9yjS1wkdEpdqRJMWWmoPnZprDtqBwUH6": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12aZMhfGCzr3kaj3SVWfyRQHDBQLXU7x7LCwX1Qy2w7wjVgySZb": { + "balance": "2022.352759232", + "bytecode": [], + "datastore": [] + }, + "AU12aZmaPQPrCLrJ5fSZXCk3oXVN6gCAN4Y7JmFbpQQfzDzqNSou5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aaJnWSF7j6o8TMvqcK9dtcupR4CzbXS4ArEkQy3Ux2C2Mfytk": { + "balance": "553.069994431", + "bytecode": [], + "datastore": [] + }, + "AU12aaKCrqt1Cucyit9ZxLB7ndenrGJw4YLYaQ3DRcEQ4w7mSdJk1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aacdp9SX8XWibVfYAwUgzhuUBPeXwcW55CdZH25aDVmzMsb26": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12aakFjbVxK2ZmYzMWiAunyf2T6NssYPfypoqxWnZ97cHm5xBV6": { + "balance": "3996.989780107", + "bytecode": [], + "datastore": [] + }, + "AU12abTp2ms9j8tHobN2XsDNkziBpuDQhvQU5JJzLTASqRNCddokZ": { + "balance": "529.622450444", + "bytecode": [], + "datastore": [] + }, + "AU12abb5LfHoXCb8XGoamRUZksgvGMrJEwWJGJBiGMDNUupBdCxgP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12abfr7ivBLKmVk2ifCcJ74WbBfTzoNiMwoTZVYRYJufRx96ati": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12ac4GFdRbYC9zPahzaEY6yrQGZ4geNwTj5Yp45sygaU1msLXSd": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12acLc6yZ9yKBCsgsM5VZKJb3jtRjsJjUc74MDLSno3tSrbujWL": { + "balance": "4344.012921189", + "bytecode": [], + "datastore": [] + }, + "AU12ace6s9WatydMUGkMmRykppBS6wYhJnF9xzCztEyh1YTQczyu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12adFweWLJGwGHhscXgUXKvMHNRAdeGuNQuq46J9mi61cJVaV7A": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12adJKZj5oRMEHbww1NR8gqBWQhE9J5ajhqymVndSQWpE75pKQ8": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12adoGUSaeBHZJkkTZcDp3ShvutUi67bTLnzfP7jfRTNSP5EADn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12adugQ6wpc8G6Wq3aJ6H4AzXkyxTewvWp5pmr6rLuFHqtqCepZ": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12aeC92bnM8TwUcnttCjTnEdVG3hfSDVYTMxWjPb8LDwZ8pZ1LM": { + "balance": "2174.231991640", + "bytecode": [], + "datastore": [] + }, + "AU12aeLk6WPu6hwrW8Ufbsi1jQczAfCN4kfhzSEqbvtKhUe4zpzfb": { + "balance": "2424.293369522", + "bytecode": [], + "datastore": [] + }, + "AU12aegAfkddyk9QumpBgBCBxzKF1yzTcg49pEayoKuYYj5YTuYPj": { + "balance": "5455.363811040", + "bytecode": [], + "datastore": [] + }, + "AU12aewAta42fqWZvNoXHKGmBU9BDLyA5sSr3f6HVFHmrsia9Kis": { + "balance": "529.541230555", + "bytecode": [], + "datastore": [] + }, + "AU12aey7m2cqqabmonmnootqBiiqub844P6xLgLN1Y17givwWsc8Y": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU12af1CEEWusbWxwpkLgnqZFLV735m2WMDkGZNsoPdRx9Q8bG5Pe": { + "balance": "1233.117872630", + "bytecode": [], + "datastore": [] + }, + "AU12afFRY7bsBvo3yNTKpvaGJncmxwQikvkLFfwyTEiBMQhA8ThAu": { + "balance": "2548.287437564", + "bytecode": [], + "datastore": [] + }, + "AU12ag1ea683ZiPYSRAMpoVuw7GV9jZ13KKeZS2PZ2HboXgkB4X8H": { + "balance": "1464.899773320", + "bytecode": [], + "datastore": [] + }, + "AU12ag4FCgXfKdnn5rrVpdDiKC2VgRUxbgTib1z9WLE4ebo8Kr81o": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU12agFJWvrQhXZXZYRWL6Y4NTgm4WVM6RLXD58Z2D1kZMQackdFU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12agPeePeTkc8mFq5CPgpuoJzMMhkpFxZYD42wP3se19CpAcnio": { + "balance": "69.796082410", + "bytecode": [], + "datastore": [] + }, + "AU12aggxe12SnEKzrxazxsJooYuHsgXQG1yXev6pu9MRnp7ub6HaG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12agpGktRX5349A6cVyqTSa2aEhz5H9FNDBbRYyrMdHDo8mQDyw": { + "balance": "2099.034456909", + "bytecode": [], + "datastore": [] + }, + "AU12ah3JsBYKYuitFZVJmHBFgyFRCNX8SNqz32GpJ9fQdESkBhPEn": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ahE8FiZDRr599rHuephDMBMbUxBC3LFjFcyFRD9AE9xn2hJbr": { + "balance": "1385.095304857", + "bytecode": [], + "datastore": [] + }, + "AU12ahWDLyHSgyrXQJR6BCBpfvUvEhNA9vXmhFMjSmoGL9g6HaGoQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ahtiER1vhg1Nz8qZfZUr9aBkzzyJw1FKkHZEB1iHszuCqK98": { + "balance": "663.229271746", + "bytecode": [], + "datastore": [] + }, + "AU12aiaGCzrVgXa6MdBR6UzrGsuETpmpMJ6Chkxy41wXNEmEPcHLc": { + "balance": "6351.221363416", + "bytecode": [], + "datastore": [] + }, + "AU12aic9ivfzWy5TCPgM5wjskVKEbd7BRoMU57nM9XqaHracTQ74f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ainkmjKAMbKa8iQvAUhdmDuWRFnuuUsRM1HLsC1QnrvBkjytf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aiz7JmKYyptfe4G8tmm24Ty1Df5Pp3zs2PekcC2YAkPkLf5Vx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12aj1fP1S2aRHSeBUnpn6KDFVVgEd8HsWHVdJKuneeDTMfjkCwS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ajoHCFwQ94gwzNvYoTtKFzKKrRmhh8VBmCwoDuAH3qfFY5BVS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ak1LG2VFRZ1fYoLV8WLycFibkdcxk8ooGEpUEsBnJVbBguL4q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12akHZCpf8NZDs1LYLNwTCrojq2Z7QJkK1Emy7Uc8MEUKWY6GTH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12akLRyJfg9sCfixQGvY1Cfw6dmTftvNsj9qN4HZXH3bLvE5LRE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12amLQGWRFmCZCVqYbGNTi5RoSutVVyQXt5Hn5JdhGLofthGcJA": { + "balance": "967.133586723", + "bytecode": [], + "datastore": [] + }, + "AU12ambs5GP1TkPHg8KJ88p5vudekkTRhxk2iPRywjELQcDBeXg71": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12amg4XPCjyvzoykmtsjLqz5FqsT7xaBfvAWGmR9sNA7gw2AVeV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12an3hT2rnsmRBwdFj5noXzuxERbKGbo5EAXqJXGjzi82jz9fiS": { + "balance": "147.708940469", + "bytecode": [], + "datastore": [] + }, + "AU12anHYwbRNGEWon5riykE8Fcy5DeTihqYdLbNJUPFxqAFqLCBGf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12anxDc7jzPq3k4TauQ5XMqGv5S46Ci2yjqd7WgXioFiC34jABL": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12ao3QP2zvYngyaYL4J4tqHXxwfZBez4HoVXQHJxeeFjbMb223f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aoEKT6MpSgc6kcGNRkL5za8QFd94hbwG7uGCCEeKuQDiYKMUT": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12aoHB6YasgiAD2jeupqTFvUWqa26VeqxYBajkP6WdLHn2k2Adu": { + "balance": "2640.742590347", + "bytecode": [], + "datastore": [] + }, + "AU12aoQSCfbrmyFiZpAZKba5Lo3eHKAkE5RyhC8ZCJyCHDTj64JrW": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12aoQgfcU2L44G9MXgK5haY8x5ARm8R2CuaKrJPFtAgPmMQ2LZU": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU12aoYWKUEFoKQz2HTD1Sx3uzMjMnhXx2CoyxjMQxVXRcCsJJ39s": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12aosymU23xPSgxnRWNFYooRycp9832myh7yKfUDaxjnLWmvu6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ap5iDSmi54RZnjPS1sryixsZ6iQYBqg8v6fkEunUDt7LUmfpf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12apfdHH3UjK4ueQboSsLnMJwi692aaKNuyX6xqaawbGq3FiYvq": { + "balance": "3623.700878314", + "bytecode": [], + "datastore": [] + }, + "AU12apv572aMkWWMVWLPzovpNQrR5n2XmiFoKxxsf9PDJptKrySaq": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12apyZFvPgmJ2kDYdy3UBP43HgzNDtcn9QbsHLF7gd8yh4aTbDx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12aqRPx61XSk1zT6E4yyH2wS1vqZJYjzxmZeqwhadTGg9tXyFVV": { + "balance": "61.056105611", + "bytecode": [], + "datastore": [] + }, + "AU12aqXs5uMXW84xV2pvttU9JqVUe4p1JXPRJQE5C3hhK4G6QU1Vx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12aqY6D6q6MLUrJRw8JG6WBmrLn7ZWTnfBAdoaibvd6Ki9suYTR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12aqY9MRWNZCHRnqETGAtS4s67atKata1YCCQXqwSUKM38ViAt9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12aqjur5BFu6NZt5Ab4LTZUQentHZ9pErW5ajYYKHFXq73BcyWH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12arEN43GTZY3bUJJNbZUbAWSxgxQ45i1ghooHcRtey44YvJv8w": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12arRWXT2mWjo5vnc46aimM82CSwizow7vXx5asDk2rmDuE1gXj": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12arihW65diQ46vSKjYeSgx5gieZtfAWZfqHvnJ5npuTf4G6Yn": { + "balance": "1823.109766931", + "bytecode": [], + "datastore": [] + }, + "AU12aru2fCNwYAecGanzmmf4B2SsuZSRfoQqwnEX7qSXwwYps1z1G": { + "balance": "5885.849742768", + "bytecode": [], + "datastore": [] + }, + "AU12aruZFXGWDx67sxjEQFoN7ARNumbvfYyJv87AUEuiyAELLBsQp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12arumWAKAToY6qwrFLhZ6wUbeNHH6m5ETi63ezLh3kdwVX3dvk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12as4SDBLn5wCGzKXshmDb8j5PNXjJ96QdVJ3LdwTHRfGMUjTXG": { + "balance": "2386.299085783", + "bytecode": [], + "datastore": [] + }, + "AU12asmje3t2PUWa97yuvUYSNjmAZdXPfDEemEwpVXPzGfzzcu6Dt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12atDJkHSujckTMZSAcEb2ygDXYpkEojuHEvm35DJfGz6qUBhTh": { + "balance": "2221.031146269", + "bytecode": [], + "datastore": [] + }, + "AU12atTDbkcvu7mnnxCamW5FE7wyNebEzf7FjgxQZRMmPYv7Vf76U": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12atqJM7wrqNop55y7Lfhuh7GKFBAQNDR4429gDFN5Vym5UStAy": { + "balance": "4674.222384253", + "bytecode": [], + "datastore": [] + }, + "AU12aueH8stm9S1i8dgsVpt15v2P8Einy1hE8ta8EKJ4YQ4TdFfL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12auer64HtoMC832yBzDmB8M6F8kMNQRyX4eEdkaW3aPsAnPxas": { + "balance": "2769.733276081", + "bytecode": [], + "datastore": [] + }, + "AU12aukrK6pDvW8FB34bGEnFvoEqYKrUP1YNbSMmituSD8DJC1wGh": { + "balance": "3128.443607529", + "bytecode": [], + "datastore": [] + }, + "AU12aupUyKtxNY4VxoXaGeJA4ZfLw9oyLsCAqT7jKDjxLXxh2mTYB": { + "balance": "887.951369323", + "bytecode": [], + "datastore": [] + }, + "AU12aurXgjwg8BWzwzYaGeM812KBEySRaX8TKuFVhMNP2NuHScKni": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12auybkeC3HRaG5KuisP42N9fwRfLsdtqBrHL1tgPNqvzPnmmcN": { + "balance": "4498.136715154", + "bytecode": [], + "datastore": [] + }, + "AU12avpj6XxiJsLJjTH3jS94wPjKyaKpXa8p8eKEu2tSZsA5Qqpg6": { + "balance": "4938.562060835", + "bytecode": [], + "datastore": [] + }, + "AU12aw8FcpkrfNPko2y5b2QF28nNc6K34cA5woiHn9yiMubPjYCQZ": { + "balance": "1206.753894926", + "bytecode": [], + "datastore": [] + }, + "AU12awCZg8w3Et3VVwSWqjgVHWwmT8me4idN63DwWVk6D8pjeQpEu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12awXcBamRjVLpaG5N5qkBGAXhvTtshKDTwTW6xBQoUwxzEPSx": { + "balance": "3509.777799764", + "bytecode": [], + "datastore": [] + }, + "AU12axjUD9SGrXYkABE4V27TL7owXfQvNXgCLBX8e6Z8kYkfEftbS": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ay9gFz93VoZPLubkiLpsGNAzJTWVqVnPJajUg9MkmJV3xJMPd": { + "balance": "640.597008555", + "bytecode": [], + "datastore": [] + }, + "AU12ayFGkX2RsnERDXFjn4o6Rw5kfQxKU1X4Tu9oqEqqfgG5w51py": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ayKbLwMSCmdS369eCMUf7jdPQ5jrdWuB9PomFEBWif1YksL8w": { + "balance": "996.014336091", + "bytecode": [], + "datastore": [] + }, + "AU12ayLXLLMPpx6VHCHos1MYkdsud7nXtdur1WpNVYmXm3C6GHFcg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ayRn1jMLRKXyWzGzouTtBU4weCiBBaRLZW2eB1Ld3RiSrU9Y2": { + "balance": "1025.229662612", + "bytecode": [], + "datastore": [] + }, + "AU12ayc1LVx5jRP5uhdnXxC2dG1gtJZorRBhdZeSRi2Ah1W5DqXAt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12aymyMuf6yknWmsMLT8QbcYSjfRiRZsZyB4ZPxDaCaLpbJHEwN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ayvkWPDfbkyMkmQ6MGZQa5rRRCk8CegCXiPqBx2LCmquGoKyt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12azDdQU3KrTgTf4QM3Hoe5ZWe1pMtiC2KWYASFiDNeEhcCNd7r": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12azQGqKcWt4qCSQ5CUBtDYeC21k9KL4mW4DuDAurdnFnftWpCN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12azQT4RMgke9d3hMeHgwrX9Jprt1LscvkiuputSKCQP7UWYvWJ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12azS3g1SBGJsqaJeYMzh7ArT9Ez6SFgqsEVdjAsPdohWzawU3v": { + "balance": "546.134135924", + "bytecode": [], + "datastore": [] + }, + "AU12azbszBnKHSwBp4VKvR1bfzQdXWYwnpnEHyii8bCLktNirzAXe": { + "balance": "968.610712790", + "bytecode": [], + "datastore": [] + }, + "AU12aznDk5DPGSNKAjBT6fhAap65UgVKUMGfR6GRRCXWuz86Bqamz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12b14CsKUrFzXAPeL6o2QLfNCLrydDugFfzvRqXyw75Xpy6gfm9": { + "balance": "40.969094154", + "bytecode": [], + "datastore": [] + }, + "AU12b2TAQD5EK2zx7S7xjEyKQAdaZEk3N2ntj9dA2sorr1m43zhWz": { + "balance": "1039.520286048", + "bytecode": [], + "datastore": [] + }, + "AU12b49LenARXqQBe87ZiVNttHHdmvCQHH1v2Ma6zm8sNfFgJmbfY": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12b4hDqLPHygueZQUq9cXaoW6qvYs56YgessRFj9aZpZmKgSPZz": { + "balance": "2602.400590472", + "bytecode": [], + "datastore": [] + }, + "AU12b52Z9e5vvLcb1KLhYGbQjqEwwVFLYKYpkuwLbSUE2Penikn4k": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12b5dKDh72azWY55GmvMZ7hxraeZs6utp4R5Zuqqf2NKw212M1u": { + "balance": "3163.887808618", + "bytecode": [], + "datastore": [] + }, + "AU12b5enciDwqz5jynEPh16kqgpDsZHQ2tzknoUmMRgXZRNw7421W": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12b5kPjKQBCCye87KdSC3GBvNa4s5obUunsUSz7B2Txip7CwnaC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12b5r6PziriUxE69AGgdoQ1BWfgw4mqjSZNK3sHzozEqz2eUH2w": { + "balance": "1841.004389802", + "bytecode": [], + "datastore": [] + }, + "AU12b6tATASsGNeBAnjKDh2UfN4sj3SkrhBgaDfSZKC11HMovZuow": { + "balance": "1387.105159671", + "bytecode": [], + "datastore": [] + }, + "AU12b6zdq5EarUNbtW9AoCa59RE8rxzBCc1TBno4GYtXKbTtSpBjr": { + "balance": "5610.417046815", + "bytecode": [], + "datastore": [] + }, + "AU12b7nh9kdUKASfWuQX9MFEoYvsQ86RmjDbSyCYdG1Evkx5S6zcr": { + "balance": "4124.394499980", + "bytecode": [], + "datastore": [] + }, + "AU12b7pbm4EzgNcpKgLqoGkH75CU5EAn4R6UbH2aLJDdwy46z6WVi": { + "balance": "4485.665649590", + "bytecode": [], + "datastore": [] + }, + "AU12b8iGGHNsaezR4Zx9TXwDsmF1gj3MvM3THDrYiwUiu72gst5sq": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12b8oUfxRDbnSsvz3gmzKQSpo1TQfDGdfDd2GMABMt7ZtkCHLCm": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12b8v5iWzQSejnjPbpePuPsBARhYVXU5bEdX2ucfT3ou3gaeUka": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12b8vqH5X5ZGXisNLb2WVyZhvJR4xrtpmUGQ9K9JhnCze1KM2Nf": { + "balance": "1299.831217450", + "bytecode": [], + "datastore": [] + }, + "AU12b9GFe37NoviaMbTeHNEGYaan7Y99RTC2haA8N72LEnpMQ2S1z": { + "balance": "5146.032510586", + "bytecode": [], + "datastore": [] + }, + "AU12b9ukeqBuNy1MtZ49d7ZS2hc5istm6S2dyQxZyPkybdCHi6ECH": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12bA3eEJjkZxtQyA5ZzBq6Yb62WqaRsSbjNozisk6brJAuuHutG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bA7Z8fzvSnecrK7vdkNHfvLq5n7Y2mzjhActJkHigQv21L73F": { + "balance": "2684.291727395", + "bytecode": [], + "datastore": [] + }, + "AU12bALCxHW8EPZyZ4F655D9v5CjSsvW9D7KuToUMDzTjdwDrKJop": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12bALXRGynsxJZ3trBG5ggSyXXNwtmYftDPHtiiYRUyfy48ZuQg": { + "balance": "23.035417308", + "bytecode": [], + "datastore": [] + }, + "AU12bAozTF4GfCw375srZVnto785CZdyPCXoDrzoRi75RD3jxnuQw": { + "balance": "4017.912429465", + "bytecode": [], + "datastore": [] + }, + "AU12bB3Q83LoTu3YEbYT39PKczqc9K8PczrTic4Ey7pwnEGSsSXvT": { + "balance": "1246.403376738", + "bytecode": [], + "datastore": [] + }, + "AU12bB7iY8zWicyguTDU9RySD7xx7yMjiv9TDNHWSBDvQo4FBU2Yi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bB8KUScNn63cJ9PrLoufoz2HxvyJ4bWQjEzqPbS9hKXhjGbVU": { + "balance": "1857.522109870", + "bytecode": [], + "datastore": [] + }, + "AU12bB8U32x4X5Hze3bRUdb6DfNqFfTeDd9ukwq7cmnraHYPo622G": { + "balance": "211.153465181", + "bytecode": [], + "datastore": [] + }, + "AU12bBLGzbDLqmv4VZUhSm9jVpJBQ1VKL3QwvUxDANZhJWwUkdPwM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bBjALsDPkMMhArwgrj5XyzrLY6dhxxac67MKtge8y5SwKFgTV": { + "balance": "2375.150471974", + "bytecode": [], + "datastore": [] + }, + "AU12bC8GTLxqJcic6HbFWraAFHsvrP3VmkEBBSfs2xmadCubo1cH2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bC8zUTRYQnM6L59aPK9ZsaGLu1nECw8J8fE7hvA5C9mWamjgg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bCX5HrTtJDWn2CtCLeiD9T5529TgBAFmgEUdD7koJyKoLdApu": { + "balance": "538.982305130", + "bytecode": [], + "datastore": [] + }, + "AU12bD2UswD1n24stxbfNkiXuMV5iwno1Z8qnkFPdeRD8PtAe8xhM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12bDE7X8twqYPh71iBzjQWUXNWFyAxGqE9rPj3BBBaVymbyb5t7": { + "balance": "1856.690217347", + "bytecode": [], + "datastore": [] + }, + "AU12bDnNU1SgStCBWto9P29RKjRzVU7XSeP5iwnjy4S8Qdday6pY7": { + "balance": "2914.753888469", + "bytecode": [], + "datastore": [] + }, + "AU12bDoux21C5W86ofMBSAdkuwwzPyWUtMjcC55detNqsRoMAm7Jg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bDyb9nbafGdG1pE39P3ar9kpoq7jd1sg9wt66MtHN7jjenbTs": { + "balance": "4499.281045694", + "bytecode": [], + "datastore": [] + }, + "AU12bEL5GYHkvhgorzCLAsF1ERaiceoaina4sygpWRHaREvZRZjdi": { + "balance": "3705.137900091", + "bytecode": [], + "datastore": [] + }, + "AU12bEPxyWTRVYDp7uFAi2ZWXFuge4RGLQyGZbaAyLvwVrDBNZwJ5": { + "balance": "1021.854252141", + "bytecode": [], + "datastore": [] + }, + "AU12bEim2zJEpeBLjCYZcqNeqmfxpEN7LU1EhUCgqjYa4pmnoZP7T": { + "balance": "694.593112629", + "bytecode": [], + "datastore": [] + }, + "AU12bFAhbmfxAY9hDWknU6B6TyqNTVBtuP8nCbZ3yBG2zHoSdfc3R": { + "balance": "1647.831159569", + "bytecode": [], + "datastore": [] + }, + "AU12bFTdi5vPFn8e3P9ju6EuaiuE4WX7j7wnr6vZecb7r277Atp4j": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bFTpNxjSfirf8eMaGTCFyfi3kzpmaW5iBsAw8VVR2mpkNPu4X": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bFkfWetscsHoye7d1M1EQu38Uq6bcdZoaULZDdj3Gpfbvf3F4": { + "balance": "722.030111028", + "bytecode": [], + "datastore": [] + }, + "AU12bG6USHXiViSrn8vk2ppFs8yicwxL5JbBiJizfzSVpskDMxxZU": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12bGMe56KuEyhDi7U3iPBt6DdnNmSN9mT7wKsAGcRACQuZUEnXu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bGTuv9VNEpY459dgzTTSAzXxELmgQLA1oPXzby7eMj5rXAMKE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bGtB2QWDEbqpuLG1ZuTP3EJLN6NT8tpFnfio4tRW7NmuA6Sb5": { + "balance": "546.486528944", + "bytecode": [], + "datastore": [] + }, + "AU12bH7Ybdu2oMnrabwfLTcWE2bXq9u2Lznx7B45TJud9PTsx2hPX": { + "balance": "68.064716100", + "bytecode": [], + "datastore": [] + }, + "AU12bHG7uxrxDDhpzYPBC6YrasuVx1h68gYjAjX3eS7VXKsfKv8UX": { + "balance": "4585.694874460", + "bytecode": [], + "datastore": [] + }, + "AU12bHucYfHENEB2oJ2ViKAHVxQit3vUvaPbtKucPhwkruEPAQ4N8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12bJ2UDNQUS6JdJNoCxDc9CwHSw6dr42nu23GTH2gBYRxdFggYZ": { + "balance": "35.299879352", + "bytecode": [], + "datastore": [] + }, + "AU12bJBpEC651kogt7epLAc1nVpJcQ6pqRbkpGAYpJQrbfVEFGtF6": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12bJshKrTWCQsJg9chSZMnnhKsknPuMRfBEzhLhGfTJ1TvxCcG9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bJzJAXEQeVsQ4redqgjCqnd8jKVwowEL9GzxgBE3Bez5EJ6vi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bJzPWCi3zBS47kqBRKCjAYSCTondMre5mDgJNAWJTZcECNDUY": { + "balance": "1181.525653376", + "bytecode": [], + "datastore": [] + }, + "AU12bL9R23N4tdYUhUkmofuv6viwwuwwvywbaA5kfdW6ZgTSxbSAi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bLCD8tz2gtgoV1Zw8x3vD1vEauAZkPoTEZ7SpM5X8CHNxBpHQ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12bLQgqZMPuBuwjsMq2LGomdTm6iDZ1xsEvWRT4ekyzPwrsyDom": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12bLvi8CmwvbNFuwrzmGzmKJafq5gX32EYaEqnqZJUGj3aeMfaC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bM8URV11RuAPejhDmQQq2iHUkPCAq1mVZwpsreUrunBcquSxR": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12bMPdupw18VFxDDXVim8VyydJbDFNTvrcaAcgACJDsjoa1RfU4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12bMVppjyJTURJtP4d3aY8afixFP5DQF9MWrtvAkwkBNZhMTSjE": { + "balance": "910.965961057", + "bytecode": [], + "datastore": [] + }, + "AU12bMZnTjvqqy5DK1idxbfMwxHnrcFxLv6HwpBdwsdrNhnRc7Xty": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bPUsr6vhH1qVtjfPfGBEKHJZTz7wF9BLiUgtcx6ZKDXtfz1Ss": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12bPXPa19skdUMUzJwNY8PPcnPg61KNF2FTuotQVdCAscmwTnzx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bPkBSDrpSNcYRNriVGpDDJwigzdHWQaYRha3XQxTXYnS2yrVS": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12bPmpudbN2e49HZMU6r9WWB1NnuYcLVUkEbHLnQtXXmR5b1nLY": { + "balance": "887.877208032", + "bytecode": [], + "datastore": [] + }, + "AU12bQ255aD5cPchHvsLNNmADXLkRD4wuLXLH6JyJxwP8GHXvE7nV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bQHehF3VxUDoxazJPvQi9A3dr1o2QvixZLAonXBarNMUgoQx9": { + "balance": "1271.768452442", + "bytecode": [], + "datastore": [] + }, + "AU12bQYjgGQY3aEQW7fyE7jke4c41W6Qtvbu2KBcRYnVEyeQySnSA": { + "balance": "3744.975958840", + "bytecode": [], + "datastore": [] + }, + "AU12bQjYtntMVmYixv5FxLJsjDH2pbzAaCXuy7Uy35HpUxmvtjtBt": { + "balance": "1398.171308511", + "bytecode": [], + "datastore": [] + }, + "AU12bQnE9o1cuc8XEKiMg1fv1jXNQnWZ14gM5ugDbnJBe7t6S8V9v": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12bQrF5cScbr3P6Xqa34rwBJrvQkjhLugwim2sjV6ZrPmPK4HJ8": { + "balance": "5242.253364320", + "bytecode": [], + "datastore": [] + }, + "AU12bQzCcFbRb6NT41DAMQM17LkWTBUwpS5wx6mDM9LHVovoq59kE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bR9XfLBrrkvdi4x6Kv7ivS8N5tJK3aADwYy2HGikuS27NkxSu": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bR9y9rKPwGqetrwDnUQMFwZQksbfSWaLuLnMJFrpD8RaKt1yi": { + "balance": "687.247054532", + "bytecode": [], + "datastore": [] + }, + "AU12bRiUGsVLTz4MRCkw9dmphybEmSBKQpCJUodxr9nshtBj2QDY6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bS6wD1dmzHYs6KnFPh7gzMjqfzsYaa8TFVUesZhQvWeAGgnnQ": { + "balance": "1632.982874071", + "bytecode": [], + "datastore": [] + }, + "AU12bSAbb24bd76DMh1bfWV3uT3tmrK43rfvHx3up6ZWW8ZWosyE1": { + "balance": "2056.919761313", + "bytecode": [], + "datastore": [] + }, + "AU12bSEDwSAZmFtSuJaZxfbaQi2MPnkdMcGwsudhjWmF8tt3DQj5B": { + "balance": "2373.166265650", + "bytecode": [], + "datastore": [] + }, + "AU12bSJ1pwBM9AiteH2xDyhwEYGbR982ZivJufUP1KdnTyKRUD28F": { + "balance": "60.634020797", + "bytecode": [], + "datastore": [] + }, + "AU12bSMpKz5huaZ1cYTmJzRuTNJRPJKaiMBYNQNRmuKu2W4SLsSGw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bSzxJJbttFbybGSxoXJd19WtQMkYBAYRYK6w7yeEb47iAXBRj": { + "balance": "2083.097725285", + "bytecode": [], + "datastore": [] + }, + "AU12bT1Eqa8dsJW8NjvJHWoAGUxHE72aJsh5pESkLoYwuhaB2EjPF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12bTWGSk5pwwxDVipfER6frZerhkR4CBmbvUWNFzBMLNdxKqhg3": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12bTb7zJP5MhcoequrJXVrvVAuSpRMFFbBz42VUy2Ryu6a5TmUB": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12bTbr1KARqtofQVkssJZTFQGPB8R3Nr7BAmKT2bZVKwhyUanoF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bUQmSrfE2cXKTwDHxZZeAAGxdHcUzvcSxpQ7dPZXSRvzbqrmf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bV7jPZxKjvqhqD7itiLENi5jYzTpj4bdgtdjx7RZCkdoh1wGN": { + "balance": "942.836208277", + "bytecode": [], + "datastore": [] + }, + "AU12bVEur476ryTz6hZYU59KHSPE8Lgu58jV3wG2wwmKfWbuS8WQH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bVP1kv55hWnUaqK1GtSQQJwKJsTgiojLpy1Y5HpXpFZX8B2Af": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12bWcD3QEiMaQks64D2ptBfQzUMr2NHNxiTycEKq5rVZM6572rA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bWhnJJbg98WJpfyg84hBYwwiYzw58spFd2sxhMUWRZe1VBWE3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12bWmGbKhks3wNHADXBix54NAtikthXoe9NZBDfNqmraFwP7F3H": { + "balance": "57.386307011", + "bytecode": [], + "datastore": [] + }, + "AU12bWvh5NJwLwj6CtHSHjKxuTNUASGTDEm4opaYuugTQ3o78qJ3p": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bX2JbcDaESisHiReJwgJ41fD3d8J4gsn6BGzSZjDo3yRnLfDV": { + "balance": "1224.711740931", + "bytecode": [], + "datastore": [] + }, + "AU12bX2nuFX5Cvca55TzytUVthTZd2xZh7S4dXzdmshunkQ9MHtPj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bXPVvDgLJF9c5sbEQ5LGXuzRCr2nZDVhwC9CDYv91vs9uUr7G": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12bXXNfoYwKURT4yYas3NQdHjGvTjDXpHwNmaGoQQ9Uh6M9oUee": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bXdbfPQU3ymF4ia8g1JPAm7csTaiYBm7BF1Wbuic1JWMrVKcq": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12bXjshQivDyd99TgwLxa3396jkDVEuRwHSUKMZGYb35UNN4woY": { + "balance": "145.751116032", + "bytecode": [], + "datastore": [] + }, + "AU12bXsPtFqhGiiXym65CRL3gXEMoiMeQgBNZapVrYCCkCxkjXdN6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bXsdByYZgMFEEEcRT21kV4rmU6JcmWoPVHpKGMJ6gmgEuZwZ7": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12bYEN8Smp6N3sdG9u9ejrkZqMAtw2N4YeHgnxkMA7Bp49jESfr": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12bYMoKVHvEYsZmeEDNfXYK7ft5TBBQq2eUqXJZS8ecQ2MQ4SLB": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12bZuWwFEFDBuGak4BFrxbgBmE8cJYFyKyPScJycEHvnwJH62xi": { + "balance": "831.214515637", + "bytecode": [], + "datastore": [] + }, + "AU12ba1FcYEAeWK8LQpGGYRzhrFLJpKAygzzqDLB6QhGmtdRRm4fY": { + "balance": "5663.009949559", + "bytecode": [], + "datastore": [] + }, + "AU12ba9FRZJ1Ky52SYzbSmDZKT7E78X2ifqNago5JUGRxXdzrFxsd": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12baBCMkkWPtUuAVaaxJA6DkPjU6Sd54jftCSH1Ljqjjmv5q1dy": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12baMpg5T27WvyEHPppvZAoaapQtFjFNJp4RvpjZV2LKzLxcB6K": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12bam1PrrzjgtHcYMUVfJinrcjBrGUfPXA17ZDKS4hNXzC3DYGn": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12bavk4zQXAQ4oa5y3SN4UKJh6g3uSwGA6vh6AZRuS5h5nRyiXA": { + "balance": "726.406912882", + "bytecode": [], + "datastore": [] + }, + "AU12bbSd5chCosvCm6mcVeJwdHCJg1jXsECwhGnpqBy5ixo6T61or": { + "balance": "2799.299253606", + "bytecode": [], + "datastore": [] + }, + "AU12bbXVi6BwysLeC1v4CWcRjn4jk9bEzda7w3FLeD6ujuEHhwBe3": { + "balance": "1628.803516779", + "bytecode": [], + "datastore": [] + }, + "AU12bbaFgeR6TjDffTwtuxJvhymSmq2X5iReVmy4RBx9WrbN2X41o": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12bbdTHaoU9rJ2zsKNKN4SMFRLDoncM9SCyYTZSE3njEbbi8Cro": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12bbmvBzC74S1wi8PSb5qgfr9yB8d9QhXqyBnXZLaRGEbse4nx7": { + "balance": "3.306012560", + "bytecode": [], + "datastore": [] + }, + "AU12bc8HRUW5hp7Nc8RF4yqsPHQ5XSVNo3GGYUMDB3k8KtDj9TCo7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bcbQ4geSC3CmURFkMTL9oCrMtz2Le4B6VXfyuQWeJU62o6Gpw": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12bchsCAExV4rv7Q8oadpESL4KLbSWSur7GLjPoNuzXK5Nzqjy5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12bcjBxzFhtYYJHchtKMP13dwHhQigurrMGMunyjLmamuX6D6ns": { + "balance": "1520.573052038", + "bytecode": [], + "datastore": [] + }, + "AU12bcoE58uFho6HfTJ8f8pjjrKeg6wXNVi8FxX91MgKAHKmzcSNq": { + "balance": "3039.728596754", + "bytecode": [], + "datastore": [] + }, + "AU12bdGAy8YevxYsH5HtEkwBPM51GS7MTbyz6tSh5aAHszefVxXFi": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU12bdHCd2Vjvnqi14jSJJFxKDrF6Gtbrb5qHjF6RBCgAqbYZZ1tk": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12bdNffME3HncDotUVqU673AwMUAu3LuEaf3erKnH26csaz43Xh": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12bdayNuHyX5Sx7mbBxQRpSJEzpnh8xcGs6FSauoC4cvcycsN2e": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bdfpvuah22hZmgZ5QwooVHNgXdyhYZTMn8yxK245YdCQ9U8f4": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12bdpHDw14hhr49LxUCwZnmSRAtYqZx5qVXbUbnTLmPf9aivJpw": { + "balance": "2820.142103623", + "bytecode": [], + "datastore": [] + }, + "AU12bdsVgRKydpANNA5QU5qJf87pibK2cQvuTb44ZeuNjHGCbR8H8": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12be2dJC6sVSWypyAS3gKmtor1ASwVMfKNUHGnQs8W5WzCPBwmU": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12be73F7wbWGob5zg9dMvgPsGHkiHRgXkDuCCKGaLScHMXw8fS1": { + "balance": "1336.390265168", + "bytecode": [], + "datastore": [] + }, + "AU12beGdRjUBaovWBvyR4SBagjPB4eTgmfZz5DbkS9S4jxyTynWTD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12beUPzc3UbDvkGBx5ZEyRmoesSSZcoQB1mLyYJgwBPPQasr1HT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12beV2s9zcTZLW2v4tam4Eri9RSRPTRKajZAQwzah3jXsrhyhBE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12beX4oJw4ZAdw5k8n5a9M5zMSq8THCvB4Smz6G7f3h2N9WvzBc": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12bf95iPN9fE6CnWLLAHQ4nZVZ2TMyLbfMJXGDZXTZMtW25SbMS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bfEPBtbJwbYsMEnkW2boCx2BBtVfwRgbxCyZgjTg5iwW1g8px": { + "balance": "622.080621729", + "bytecode": [], + "datastore": [] + }, + "AU12bfYfj3bBPbFgYS7FRDA8bMjehkm84njJXiHjp8CGqN6kEDL2S": { + "balance": "1866.702290128", + "bytecode": [], + "datastore": [] + }, + "AU12bfguDhQsy3n5qA3hFNh9wRGqBndtutJ85YFPUa1tEJojGiEJn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bfmcbKCeP2i3eQR8e9Ztw1EFL4c6RCQHaJu1cwkFdTiqBzGMb": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12bgnZN6vjCnTdybzNL49hw7T76U7r1MGVnPpJntVUUvxKNeLQD": { + "balance": "2171.582059738", + "bytecode": [], + "datastore": [] + }, + "AU12bgw7WcnR2AmA7DMihjiMdV5dsiQnqZey2tz4fgQCn7dmwNY8": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12bgxibkVfAuKUSfBrfFfvB9rGK8V78arx8EC6E5pYQoQhcdbP8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12bh4nDkp89pGPe7ydZAGi4sUX1y6DiujngprUjMKwtRwzNwoF3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12bhTsGcgja3oymCHfLmpjCzLoWVcpRapcFeLwqoe6g8an6se9n": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12bhgoQMnFrNbeTRwQQZCTHXZALYAyMovgGWZ6X7Wf91eAhD8x": { + "balance": "4692.925891406", + "bytecode": [], + "datastore": [] + }, + "AU12bhmXNKWzGQyw2kSH3ijz6unzsz3JcepDL5FbF5vaFkdHxV9j7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12bi2Nb4hBZpsWYCrmQ2SuaJSXX1mL1XjvYU2XQp91EjJ6D1zNJ": { + "balance": "2066.746625356", + "bytecode": [], + "datastore": [] + }, + "AU12biCTmmbGCvhbdHsAMxPfUrQGkuzbAmsVS9EQnwvUtcg9VCkZc": { + "balance": "3.093141370", + "bytecode": [], + "datastore": [] + }, + "AU12bitx1v3yLzxbkA26pL8naxoDEVzAPoGE5UDJAykBsyb3qadKf": { + "balance": "3500.936789560", + "bytecode": [], + "datastore": [] + }, + "AU12biuXAg5arqX3vwnbAmXDCtcShZjwQ1rr2453BLpfSV891ZcQF": { + "balance": "4155.854533493", + "bytecode": [], + "datastore": [] + }, + "AU12bj4iHXfzKVN889D6FNxUCqXTWeiz1XBJT9mHREFqSrKfEkLnJ": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12bj9wiyvQdYLWTJnWVxm9aJYzV9siJWbZWuMiLSZGXfjNNb5SN": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12bjKNhibYC9q2sPKkCPMmpW6r7yuTJvWEaqQ7XwcWrz4tazzrT": { + "balance": "934.863452262", + "bytecode": [], + "datastore": [] + }, + "AU12bjQC9bD79WpWbx6i7877Z1GqBAzETkdQ5gYUHiLzpBRPerbji": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bjSNyeYpjRMAbN7kJPAa6VVjYxHDYDQ1HeMrVqezJyJw3DP3D": { + "balance": "45.305411543", + "bytecode": [], + "datastore": [] + }, + "AU12bjoBXv7uc9wV7Tki8u4rhJkPYW7FKoAJjQUnWUMSpScad9aRM": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12bk1bann7migg2PWgRjAbYZV4A9hx1YmykwzdwBrQoecZbwtZu": { + "balance": "1475.248684554", + "bytecode": [], + "datastore": [] + }, + "AU12bk4CbQ4yrxpPmgmoZGasZQnZzYdiiforV78tT6wkqG7s6sLqF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12bkf82WVDhEpKGWMra7brPoMMwrAfDui9RjcVZxYvFPQY1WmDL": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12bm6y4NEpodWDgUvxAwwTqWHaEDJMgtB2MsT6dwgHnFndM2DDe": { + "balance": "2128.622634972", + "bytecode": [], + "datastore": [] + }, + "AU12bm9iiJ3eW2Lx7y6kLrGqDjGnLEzbrisuxcqmATGEiTofGZpNa": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12bmeKZv7h89G4HDXTdftfE7UCB6pNFn22LBA45vVu5rmJkVMAv": { + "balance": "1119.320624979", + "bytecode": [], + "datastore": [] + }, + "AU12bmxiPvsjVUifrpPta9fq7xUe6MMTGwDMrLZk4EULcQoWVTAje": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12bn1kaJjAFGYzjpgj77kqvucTNK8tvn6KmBR7NA1nzAqYz2w9k": { + "balance": "32.194980468", + "bytecode": [], + "datastore": [] + }, + "AU12bn3CFs3NbASc9nQYxymwuza1HSVi5XdwfdfjmSw374CuxVZc5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bn5QJB17mzyuhAwTbcPp6ybi75DidsZgNy4EusLYQNsnFmTcx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bnLUPd5jS8CvA4Grjv1cBHXQTwfgKreXk8Xa5xz5r3h1KixzV": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12bncjFxnxJk4yWkpb5VFNc1FkNCevgnCyAAffwsupVH4rJqD1m": { + "balance": "853.344065650", + "bytecode": [], + "datastore": [] + }, + "AU12bnuyioeofy4aGetEvFhZKTSTbL1GHfg4hGoonSGCAAFDbMk32": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12boXoU1uSo19PzFU1RF5q3QgvzHT4dsV6CrP2CSa8TNQ4ApmmU": { + "balance": "721.761269154", + "bytecode": [], + "datastore": [] + }, + "AU12boe2r7DwMp4xqwqfroguvEwaRUckten6UiT7Z7fU12NjUcZTb": { + "balance": "3670.718939239", + "bytecode": [], + "datastore": [] + }, + "AU12bopMJ1mgwQjoPvHEtodBe5i1JzASueG2Q2voKzaUm38MqCLDZ": { + "balance": "923.585422538", + "bytecode": [], + "datastore": [] + }, + "AU12bowcpG5oif6Py5cQCQHvnC8LjZgycQWP87d1kHkZB3hYxUkaf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bp2KmLMeBXcMJNegg2j881hteZLKs4q7ZsmvBXvMSim86SrwF": { + "balance": "1114.573102438", + "bytecode": [], + "datastore": [] + }, + "AU12bpQrddReTDGw3ZLH1mVf8EAbx55pYXrZqToQcuCU8uBP7d4z8": { + "balance": "1753.781420118", + "bytecode": [], + "datastore": [] + }, + "AU12bpdAeV1ny82hCYBpZVnnJvHLmqBkUxVTKTR1hn7ELXo915DxS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12bq5kXroHa7u33ey73oWQUGP6Y5JtrcV2j1thXcLmt3j1t18am": { + "balance": "2328.461912074", + "bytecode": [], + "datastore": [] + }, + "AU12bqBR4k3bxaYXmqwCvV6F8MeXojrGPpFUmKXyWJd1Ccf4HJVTJ": { + "balance": "4721.667579192", + "bytecode": [], + "datastore": [] + }, + "AU12bqWHvJZ9iWakD2NSYujWqx2AXvb3Csps43QmU3mxBqqJNb8g6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12bqXuu9r17nH9uV3Vv7dQi8CAHP3shnGS3BWBJSykmrVmCsruM": { + "balance": "5496.158437763", + "bytecode": [], + "datastore": [] + }, + "AU12bqcV9L2Q7uLaHPsvY7fBcPPKnj6duHVYieaKUXayuVtpQjVTh": { + "balance": "5005.513346433", + "bytecode": [], + "datastore": [] + }, + "AU12bqhUZmMUwBpz9uu5efwVEgcLL28tYz1tkRzHTwJaH3cJYKAYU": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12bqutXU96VUXu6USjgB2JwtctmNBqY8M8SbZT8MTrHA5eYiHu4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12brc1eqXzPjERus3izewtQACPhqfwHETim1nV1VdiNMsMBoj8N": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12brc4nff1opffrfeA5nH7jnqRjeMfNseMCyye8iNj3Mhr8yM1S": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12brnTp6E4WUP8Lq8AxNXdUVmPma3ZTfkAc7J9Uo6PWqSLjJKw3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12bs2D5tL25vtUHbaAsWhTcNtKxwNdjCjNo2UwbPQTtUiD9BsV9": { + "balance": "1788.364563777", + "bytecode": [], + "datastore": [] + }, + "AU12bsBKJHepd9vV4RpqGyahHhER1wD4XJtoxkFQY13QkKj6nQVeQ": { + "balance": "1357.027658178", + "bytecode": [], + "datastore": [] + }, + "AU12btCkwiMucsBSavwfTHbZRU6vgStvxatqUJiuDYpvybc5mYc64": { + "balance": "2359.224326464", + "bytecode": [], + "datastore": [] + }, + "AU12btYzN6gDBQU6mwFayREDs3LrPYQjYjYdtVJ64SfcR2QCJvYt3": { + "balance": "1419.285394547", + "bytecode": [], + "datastore": [] + }, + "AU12bthLrWG1L8wohhaqD2PN8t5E4nQYXyCJaJzPStREbCWL1b8Pc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12buVw1fZc2L6y57ovnzhN2VKs9uCMUqq51taL2znX68SCZdAkQ": { + "balance": "61303.200000000", + "bytecode": [], + "datastore": [] + }, + "AU12bucGovMuFECfNMQQBu46qKxBzpiUA96pCw7StMifoKyBRK7Ne": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12buk7eA7w94xKNUNCXomw3JdjFZkeHXKhdvkJDV7oFfAcRpwg7": { + "balance": "1049.458537546", + "bytecode": [], + "datastore": [] + }, + "AU12bvkDa8xMy8vhHnbkuA89fe79hdbXdeM5cjLo2tutbEPQfpvrU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12bvocY3ADR2YtQterUcFYUYVPYhYBvU7k35RTUnZzqmJk9kCqN": { + "balance": "643.470746431", + "bytecode": [], + "datastore": [] + }, + "AU12bwZcrf5Bivj72aGKWP3eZAkqt1PREb124eubnvC2a6VLEJip4": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12bwqWrTvEnc8ukGBhjLzCANWNPoNzN1gVrXaMT8XQPUwEz7Z99": { + "balance": "2016.051244844", + "bytecode": [], + "datastore": [] + }, + "AU12bwuqjzMQXDJe7chU5LajQxdK9STUYyEhHBYKQoWpZBFAk7igQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bxBAjPg6qZ6RPH4eGxdpPKZYE4rke2Se4sqqrNJ9JBE2zHkKD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12bxGfe2uBrcRiEjmv2KoAyksPvsi41uRE3GRaFkdzZpT8PiPp6": { + "balance": "800.679306071", + "bytecode": [], + "datastore": [] + }, + "AU12bxLsVfCZx6viij5evmDTS2e19KMNLyP8o7n9VCMLKrrGcYRbm": { + "balance": "1576.683149899", + "bytecode": [], + "datastore": [] + }, + "AU12bxu8LCC1Gw5YZ7UMmmJSAaEiG21ZiFWeQvbrpsucxMcq43BXW": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU12by5kgErXhHD6Z16kyr2HxVp7QNz4nx3CNHpyv2Z3t5WXawWv": { + "balance": "936.517803349", + "bytecode": [], + "datastore": [] + }, + "AU12byZsLB6WPoEzKJzwDEvwo9QKHhQkeweNXkHyBQTKia5kakmw9": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12byp7AC9dTC9Wq4yFTkpxiCT24zaWf2DA2shFvjK69FhhdKHRR": { + "balance": "1365.716807428", + "bytecode": [], + "datastore": [] + }, + "AU12byu9a7pueHfLo2RHuVbKzDdcGD5ssknFeeV6R8qi71WPRfNrH": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12byxByJBmswT3CUVYEn8BoKkmZxy1oQJWyKuRz2nSjtXZ7sP5k": { + "balance": "774.906988847", + "bytecode": [], + "datastore": [] + }, + "AU12bzCDUqWYZtoPEsWupokMgAgKv1KQkXgUEoeCMpvH11GJPQZHg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12bzwPenPuQAusc2YtrK6m3GzwZsoZs9oEzPfMByt3NEbRozC3a": { + "balance": "1640.211205369", + "bytecode": [], + "datastore": [] + }, + "AU12c17kdrJq3y8JxgrvbdkKUb1SDH44vJvS56maTFxWkXLykZjsc": { + "balance": "2048.345207530", + "bytecode": [], + "datastore": [] + }, + "AU12c1bT3vcBpi4aCajyBsEJR7UnvgruSYdTh6e5GVxdbeEom1BdH": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12c25pZHZSW8LLkvyqvGZTSfXJRbcKEY5ZaqN4Ufvr9iMEhEhzS": { + "balance": "751.040902263", + "bytecode": [], + "datastore": [] + }, + "AU12c2EVz6JRy7BSV1zQ4H2xy7Ux5GFaUjmMdLQt7iXfZjqmJbere": { + "balance": "2522.377751612", + "bytecode": [], + "datastore": [] + }, + "AU12c3BhFBmii86S4uhwsjqY6dLke6YwPjo8TnqzbD6dmbS7vXXCx": { + "balance": "1343.347614725", + "bytecode": [], + "datastore": [] + }, + "AU12c3Jutsc4cAEzFuAouDjMsFLRHnRMDVUT16oRVXq8Y98eqVD5p": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12c3iPo3mXdNrDcXaa4pcpZf7XVTLhk9bSoLbYzng3d4YrDxuck": { + "balance": "1862.835586479", + "bytecode": [], + "datastore": [] + }, + "AU12c3rvGgW8ZSwXzY8MpHbQBV2M2hk2qm3WbWfwspDdf6LJ4M6xM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12c3zCuF7BjfpqCFSaue1kiPgnNAYcoWGtR4JhGnZQiFRS8JrKp": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12c47tdMpbdsgkdeGE4NZQPWJMZZRp9ATrsuJsXA9NTuvupbxea": { + "balance": "2529.121368433", + "bytecode": [], + "datastore": [] + }, + "AU12c4FizfUHFucUHAgf7RLPo2djFXsRt3W4TBR8wxWHSb2FbaQm9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12c4s5DqYcUP6r1Y3eV5F8QZh5aFh1YcQjK2JMHfKEGvhomuwYq": { + "balance": "941.296347825", + "bytecode": [], + "datastore": [] + }, + "AU12c59CWUzS8kWrXs9cHon29veBEoKwLEAGtbfP4JWvTTedt919x": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12c5h3iuWFiV7pN7woamXEUT3MKB8U2FPGdExdtWDMbdahYdnPq": { + "balance": "552.022579210", + "bytecode": [], + "datastore": [] + }, + "AU12c5inkk7tdVxNDgZY7DhGM43StbpQGcEYfcCzUaBWVpeQACHNH": { + "balance": "5649.919552770", + "bytecode": [], + "datastore": [] + }, + "AU12c5jbgaWX275i2cPoA99iFQp5tdb3TZjrpkiFVQrCi7wHCt2SY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12c67Hkst4iTU79NmZzTVmeE859PhTdv4E84zSSKhWxKnTniJq1": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12c6CErJsiqnbXbpj5kMhjBe7vRvvisA6WoHXUdaAXSpLM87psG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12c6VaNFW9aHZT1QaZ4Cq3e5Tg8Nt4myrAMbqMHaMyGYZjQiGzz": { + "balance": "681.610215231", + "bytecode": [], + "datastore": [] + }, + "AU12c6WiNnU3zWRiRXDFiP8RhqRsFqBf3PEX5DdDBeDY6qfq3Ba8d": { + "balance": "4837.194767818", + "bytecode": [], + "datastore": [] + }, + "AU12c6cD1qLceu34XYfN6jAXDRCwPCqX84zGWgqgYzYZdbFCoqyeK": { + "balance": "1057.273666118", + "bytecode": [], + "datastore": [] + }, + "AU12c6juQ9HG5nnpHek9Esca3iZa6ZqcYuLtAEJ6iQDC313XwRTKi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12c77YGUWvG1bHqWFg7NnRSP3r8X4TRgXnsC16Ty2NUMfWgQAvm": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12c7ML6VGLcjoXnfv987KsP4rpyDzJdfNZBzb2gRFXp2YDoFW2k": { + "balance": "1124.540159221", + "bytecode": [], + "datastore": [] + }, + "AU12c7S71VFzdLqoBKdKCUz6PfkHevQq1B9BUC4mxyHmnSLyqxg5W": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12c8cJQMXwmGY91VAQ7kvnayJSgoznF1SiKY3nfQ19f6CsSvwo8": { + "balance": "162.541254125", + "bytecode": [], + "datastore": [] + }, + "AU12c8eCBvS4A3z8Wki1vFCA3wmMa5Yp5XsAQjzAEUgHVb3rqYDHT": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12c8y8JPgWv82Pzm3MQfyqJezATDX2edk58k92sJVB84pR8Pkz5": { + "balance": "3212.643152536", + "bytecode": [], + "datastore": [] + }, + "AU12c9AEcjZycX2k29S4RGWdQpjcMiS3sNFZamw1ouyPjdFF9RGDV": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12c9Pe8bKSJC4BLgtQoAGA8tjPXAfkgKo4fXdXBzTHK4vkw1rKe": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12c9sfH6hhJfrQmBSnw3m4mrKviYjB6m7Dqz7iyRwAAJDqBuydJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cAAgrfeccaHvunCr5i68LfhMhtiYyq8bWzdrqoSMRbyQwCNBN": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12cAHXznqBkvBhXsjuuvUfa5XdGbv5zgCh94VctNw6turHpLtY2": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12cAakdL9deEuPP1xWXZnECNcBKKKma2cKx1Kn2ukoNepb5ZHdB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cAuFN7grP1shUbgtDzN6MCGcKyxmY2C1U1vBLtyAcubhzdfP3": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12cAwbdiXeuBULx5qBqk1Q8LqNmXg4uTZLnCQXSgDaBfWYAHWn": { + "balance": "1811.751080008", + "bytecode": [], + "datastore": [] + }, + "AU12cB8rE3JZsHQrsBVNc1o55wL6awosgzKvHDsxjE6dwq89uuZN4": { + "balance": "1650.886216992", + "bytecode": [], + "datastore": [] + }, + "AU12cBHBU4WQTqqgVmqEVkjM82P8xcGqnvjt9pAwyy8H8ULya81Fz": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12cBoXZZbQT2wR9CpphSPxB7dYQijPV25BV3XYZgwz2HGuTrRF4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cC4fQLrDo2Rdw83KuZW4Dr8aFTjYrL9j68A8W5cukr7Gr6m3b": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cC66ixWiktN63gJfDntVvixn7GS4L2hx3BNW35GLTSWnYaLqo": { + "balance": "5284.621170300", + "bytecode": [], + "datastore": [] + }, + "AU12cCHWqiiShJHh9vkXkn35kXyZuWpZ4gEr5ohkURMtZZPt4sYJe": { + "balance": "1486.424568388", + "bytecode": [], + "datastore": [] + }, + "AU12cCJm9ztxBEr8rWAJct9h6hwxZAAMR3C8wJgYwSksr4Y9TboCw": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12cCkqDQFBsbeYhko9KzP8ULV7Z2KPU5Ts8V5vsquLxLa8sq4sN": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12cCr6rrXcd58asuGN6KSkiCvgB5E2dWGMJp37vEfxwoWDYXvVC": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12cDLDDY8mcXdU9e8J95TT5qP8FGJFtCg8qXeY78RFdC7zepVoa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12cDNDZbSoXHw9Yopj18yRBpEvPUhJm34vEsCyx13hqWRgEBgGH": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12cDuqnKQGMVvgU3eCopiaqcdwQJ6EDsebzsVQm4VnWP6UH2h3n": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cE6MgyqnNc9GvDRqgqnrFgjC3JZdM3TDXtn5JVm43BHbm7X1L": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cEZEKsUn1J2oPEuvWSdkkwkcr1xQu9YBK834TBZzHpvkeEA7V": { + "balance": "4623.345602629", + "bytecode": [], + "datastore": [] + }, + "AU12cEgJ87thRmQiapU9e9kRqvypej9Gqj7QsfMsBGJ5LS6o1kdpp": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12cEnr3qCTg1tc969YHfS4pXLA4DSVU8RZFCUXnNqXkFJddniPH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cEtuYN1ga6VSajFNLPkYucSuU8bndTHUeGhtHJnUdyLttPx49": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cF4sYeT5tPSNwvWPihJcbdA4AkaAgm3itbabB5nygkgJ3w54J": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cFDMTfmg9GzmzUXz8GjR1b4QSKLiAGd2b6LjJ71emERhxxR8p": { + "balance": "1327.292544189", + "bytecode": [], + "datastore": [] + }, + "AU12cFELkWSTNjQwYDVpRE1FgY2UCpULwVkfS6KRhpsbDBc5C4NvX": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cFc3UhD2ePwXf4AFG8SGyC8oHTH2uqA7gQiJ9wJGpev4bLzei": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12cFesnPGyk3zQrUZYWkgajc6mmzgCRgH1RjjvCg5TuJkuMDuRA": { + "balance": "2373.964753997", + "bytecode": [], + "datastore": [] + }, + "AU12cFiKBuBfDVMcrbxEk1dQfH8TPDHMgXM4uqjYrdcvPgx1xTKG5": { + "balance": "3468.102268294", + "bytecode": [], + "datastore": [] + }, + "AU12cGCHVUFkRAfFwnWouibmCNCxta4MQmbZCV5VwdgPntDzVGS1H": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12cGFQMZnxRrNANVD2dbAayAWfChtNgRXv2hX3SiiBSjEHNLDyQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cGnjbcdiznpsxNEuXsH3jxYt1fLgy86hC9WYrGr862msSgHYJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cHKQTndT2d1zo8prUPCwzzdrX19BqyD2aT4nXeZ6ebSsmvahr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12cHTxQ8RPLVE5gjwod5xF16JCWCrLu6hsh9dgszc9mz6qittiH": { + "balance": "1338.104771139", + "bytecode": [], + "datastore": [] + }, + "AU12cHhefu4G4nPJqcQhb5U2xCAaX7Z4S2jMvMHH4RCwsytB5q4uT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cHwPTeV2uw2vrsZNJ3ovYLLRGW7ptWpk2BfyT4yiNkWhjnCCB": { + "balance": "2597.335442862", + "bytecode": [], + "datastore": [] + }, + "AU12cJHgc1uBXFYXivaNRvVrSpmgGRC77W2XZzemtqvejqqqZWuyf": { + "balance": "1583.045972938", + "bytecode": [], + "datastore": [] + }, + "AU12cJz1dfumC62mDdWNua2Nk3uWsVyRtpi6pyVJ2K6EU4gQDq4V9": { + "balance": "7215.988542656", + "bytecode": [], + "datastore": [] + }, + "AU12cKJGnqs79XKLNYfdpJdFXXMB4fTHaLVFeoZZU22tcPWj6Mqa5": { + "balance": "3149.735541095", + "bytecode": [], + "datastore": [] + }, + "AU12cKXArgGADN7amRUkhKKB7NhUpqD1EVMWz7BzjEtcHVwF78JRi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cKXVTYZwQXX7ghDNNaaUPqSLoijAy91PNNnPVVZknTNCkEELi": { + "balance": "4734.794152225", + "bytecode": [], + "datastore": [] + }, + "AU12cKbhHDoEhQ9xh7yBShvbFTRCK68a1hNdXC4ncmpsLVCeQhb8c": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12cKkWsmYe7JbWTSiPdbuKfwr9FWYBFcuBpwxKUycJZNBZAvzKv": { + "balance": "3617.571272625", + "bytecode": [], + "datastore": [] + }, + "AU12cKqUSoFK2nkz629JiBRnLknatXMD3R1mA2WTLbccuag2p9PMX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cKteG3haC6xLhKy8RuqxApBncpfDW6krDkwtHxTCfR7SPsK1f": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12cLxennzhe6xTU63LABgHo6fbtz5eacsmo2FMJE3QpbLvoBz7R": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12cM2HZgzyYGrERw3fHPRAn3JhQg4JTcokTTSM5mB4pTLMXWxih": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12cMARA9qUajWSpjnf4gzAaK82tpRcMKUESukqsBbk9NmonVjPj": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12cMfffPEM3AoiquHKnqEYYYScZ9Zk78JY44wqUVUJs49oqLWgZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12cMhvsR5EgkmWyKXy3NJGXqTR5RqrkidsEZVWSr5THrNJ2SpfW": { + "balance": "2712.648746627", + "bytecode": [], + "datastore": [] + }, + "AU12cMwv5JVU9UfWn65UBJbKie2c62aDskuW1Wvxczb6vd2C9WpAb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cNJBEGJVKifuymNTs71R124RPsJSDU8dricRzpByjyULGU3b1": { + "balance": "698.959657537", + "bytecode": [], + "datastore": [] + }, + "AU12cNJcvLnzNKJxf52ZzVLYUdEcb65tXmuHP6j2rByKLuLFDc1kb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cNKgXGLG64JGEfPTVJJQ9sTCtpkiTfwpXYx8GMzXQhHDP76v1": { + "balance": "622.316183697", + "bytecode": [], + "datastore": [] + }, + "AU12cNbqkt9TibkoSewurG23BssoDh4V35b1xHZV3eV2PaRVdB7QD": { + "balance": "1698.712054358", + "bytecode": [], + "datastore": [] + }, + "AU12cNw74xUp2usz2exJt1Sj7cF2zcPRihtcTTRChzmfpULDf8YYo": { + "balance": "2808.040929685", + "bytecode": [], + "datastore": [] + }, + "AU12cPW7g5D7RLmRnoP5SBAnfJZtggASQASfw8yfFs5K8pMykJCfm": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12cPzhuHkEHhpQFUHWpJh59dDj7fE2854hbkVC6X62iXrYbkvwH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cQaodNKJruUu2pRyd88YYNtPVeWvU4fYRi7D74cC51LKZD53F": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12cQnF4XW3R7tm4vEMB1aRm99ZgyaxTTUBXmd4GsBNefQM9NoH7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12cRLHtHE3EdJcRT5Ppfp2ifVM5kmJGPhJPJLgSFovS7iqKDoCF": { + "balance": "92.847331193", + "bytecode": [], + "datastore": [] + }, + "AU12cRPgpPdCokgJ6mr8B88TpQ4V3Tyk1t82aCxxoVk1i7RtHa5kp": { + "balance": "185.924989287", + "bytecode": [], + "datastore": [] + }, + "AU12cRTXMaVqBBGNT8dvVjt8DprHVWRkiBjdzUo7izUgeZ9FMwaaz": { + "balance": "1686.523631740", + "bytecode": [], + "datastore": [] + }, + "AU12cRUkZebtCALpNLM1Gx54WrRXwTCUKqqMARR1ZDcU8jSrwWnEJ": { + "balance": "2824.598161366", + "bytecode": [], + "datastore": [] + }, + "AU12cSF5caZY71yR4dLMRGC3GLqqunNuTnv3xAsh1UFG18tuYnnKh": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12cSGZPeyHjWkHWW9QJiTWJS36US9i9uaD41WDJkr751PxWa9jE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12cSQYcbyrgpvygGs99Zij4nFR8DeZikRSVGZ21tpHKYqNAvaj": { + "balance": "1686.889751647", + "bytecode": [], + "datastore": [] + }, + "AU12cSdSckVxV6RM7m5XU56k6AXXXLqb4YwUjtQy3tJK4eEd2i2QB": { + "balance": "1014.495585436", + "bytecode": [], + "datastore": [] + }, + "AU12cT2RPySnhr4KPzVgDB8F9WfMrtCHWemqfXe7dntMtYUVWViTy": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12cT9YkRYXGk1UPBmJ7hZ6nwbySYCKC9SDDpb8TG4bjfaD53WzW": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12cTKtMvKDsXFXBsG8FSDkkD4nLTNpMB1vrWXjHhtVPD7Fze7VT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cTT5z35HJQWWXf8jJRC7qMBJKJ6aGKLYSAHFmb6t2C4ej2k3i": { + "balance": "750.791876828", + "bytecode": [], + "datastore": [] + }, + "AU12cTVWWkK19wHduh4quiUBs59xDPc5kzwYQD2gYp3qvDHqLbRX9": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12cTXDEQagLkLPDibJHNaLqEo4s5zYyZLpufEmCgriJSjKPYrRv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12cTdyLNTLEbGVYxbhAUjZhK9dfmCvpKnjn134p2Y3jMSEHVjcH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cTyhLTrVJ6JN781BPUoePdnNZ6cmXTKVX4jiG6HZ3Yj7LF9vb": { + "balance": "3257.536611244", + "bytecode": [], + "datastore": [] + }, + "AU12cVS1rYG1UqsLuNsoH19mZrySXyV5DxQt2aFLYFcLhYbDEoZNd": { + "balance": "2536.548602803", + "bytecode": [], + "datastore": [] + }, + "AU12cVg52udWSNdEQ3RQJQCRFMTgHZiGA9f6Eb9MJQpp69JM9hNwZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cVhW6oubsmDQ2sQLWzzvs3UZp9zMmEnaAuf3SoGkcpvZroA5Q": { + "balance": "1585.027928596", + "bytecode": [], + "datastore": [] + }, + "AU12cVx3tMYj5C9oJQMePGx6zwvYFpzTQkZDY8ErxyKFo7BLDcnn5": { + "balance": "931.662524057", + "bytecode": [], + "datastore": [] + }, + "AU12cWEA26ZzUN3qwHeTPcde5UHtCQAsJ8DYVBuNSc4Gi1gPSnBju": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cWM1bmb8usXRyw3UKYW2AwbfZKb9mtbp2VqFub8aRzua3QGoq": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12cWQ6Q74TQTpDHKq5E38spe4HiGRVjKNFLeaS57StN1cfttUJ7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cWmAck4oARjCRmf93MHLFYydq17fPuxGHixLTBuPcUAHBUnr9": { + "balance": "1534.537412937", + "bytecode": [], + "datastore": [] + }, + "AU12cWqvp1z8Xp2Y1WV3kLGqVdksjLib2bhvMzfK6y8f7WDDLhanb": { + "balance": "3735.019030625", + "bytecode": [], + "datastore": [] + }, + "AU12cWrk2f82dgQ1xhJjtzqmqwALUhsZ6wNqgnCK1XnT3mCBZjrd4": { + "balance": "3680.450274207", + "bytecode": [], + "datastore": [] + }, + "AU12cWtvfWzXPHmXod2Y6j2poPbzEjXGSbeALEK3gi8hr44doKU5H": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cX56sEBUbsdoN3tZLNKxwVUc3shNG4ApN4URgcYUgXiUTtMdx": { + "balance": "594.111572339", + "bytecode": [], + "datastore": [] + }, + "AU12cXVE5j7ZtZaKbrZygwNy2WubKazAJCRg19xncZZi8awcbB7S7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cXVY9HwPphUmux68xVR6MHZCffWLE4rEBFgcEUu3Bz6kpbo53": { + "balance": "28.846566140", + "bytecode": [], + "datastore": [] + }, + "AU12cXe4Pv9i226bRZap3opDX2dZmyee1fgZ1j1fZdiFVMkuvfPVR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cXnbr5wJ6u7tN8L2kaBZDn8brQiswTHDzRrJ13CaX2MVK5GTK": { + "balance": "45.046871237", + "bytecode": [], + "datastore": [] + }, + "AU12cY14RcbccoKwDqbZXTXvhqPNjAW1UUgmDGgDwVwpJtbB7RpVb": { + "balance": "1262.596865341", + "bytecode": [], + "datastore": [] + }, + "AU12cYAoeRcSzbg6Bw4YZqrRFfipXJvegySY4riTFAJifZZ4Z6GMe": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12cYwWoKi5UnRR31s8BSa9s2cXWzRXLkNhr6aBKaUEttKWk1c6C": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12cZ2cLg45Sfovn6ApgJwiFKeQ7CY9uhwq72tpXA1TCoXFC2nTX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12cZ3W1u4RxhAgdbAnNxDdQrm8hSVho1rQ1msKkoCDpLyM1AKcC": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12cZ5LXdJwpPmy5wSTuQN5aeCcTAnz8ry5iW81GEDFTefXt2mdK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cZ6kmX7PQpJfpY5hnLpgrw26mJ8tWyCcMxde667z3bL8KUdj5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cZvzG5mtdhXbXH3SJ8X5tHftYWJvMNBaiEVXWmay43BmQD8Zc": { + "balance": "3714.532083892", + "bytecode": [], + "datastore": [] + }, + "AU12caHwr8zBJtxM3b9G4pYWcFwa5v8PL3Hdz5g9djb6HFiEmrzrf": { + "balance": "2620.628608529", + "bytecode": [], + "datastore": [] + }, + "AU12caNTo4RoX48fzEAB4Hvbf39yayd8CPGvvJtFdwMwgMLdwrjQx": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12caiwkW5W13KwfHbdGa5NXbUK21TVoTBbW6eTZsG8mNLwbLtve": { + "balance": "28500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cam5YHax3uiZg6YtXP1T7Up6n1tYRJTFXn3aNFerZcugWG5yD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cbHieEiJxn9TJM5CankuC1GA2tD5GE3ySYRdN4scdEjf1fbcq": { + "balance": "1920.145570873", + "bytecode": [], + "datastore": [] + }, + "AU12cbc8FH287raFiBnqR8Wagu1Cz5LuqPbmp9SgaK9L6k9ykUt8H": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12cbvSGRmpo94vUHBpscuJ6eUzQdR2VL9vYAFpLzB4bUsQG2icK": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12cc4xqReqoi2CSeY4EyGHmXWk3VtF8Xhbgy92uXJPMqbvfcY9V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ccHW6cmUdvhZQzD23xLQkGLT5ENnQhwipWwE9PzCzjPECdTML": { + "balance": "2699.545306105", + "bytecode": [], + "datastore": [] + }, + "AU12ccVniB37iXyvzhdMzfuDccrTmHzsZdAK8gmFKWtSMymJbRXxR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12cd3mBFWhWPoxbRG7i9DCukwTRgp5aRGFzoxDk9pQjcUHcWMp1": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12cdCobfmsJc9VgZt4MEbv1E6kFSKce5EbdkANZWwpX1768mCgV": { + "balance": "1121.094941341", + "bytecode": [], + "datastore": [] + }, + "AU12cdN6yBazmkDu6FFX5kxtp69yfc9dJpeuxsoK5SBamC1cgAZAB": { + "balance": "1045.503772146", + "bytecode": [], + "datastore": [] + }, + "AU12cdtgoYCkVwET6rLjJg3xDJW1vjVEkXswqHds6T8LdgW196FtR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12ce6mpWb6j63pZ5Eh5Lnt5KK3gmr2AZuTZegqbBExq3wpUgFPW": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12ce9Scd2GrYYuGjy8erdB6byp6rPYDx8MGu7taxaP9fEE3bsuH": { + "balance": "3235.349859844", + "bytecode": [], + "datastore": [] + }, + "AU12ceR1UpL3z5u9wdrd6kv33FtaZTXzUJyXhi3MQnhPBeLnfJbpM": { + "balance": "1618.747778401", + "bytecode": [], + "datastore": [] + }, + "AU12ceotxFaLQp1m5xCJiLdXAFf5faM3amX7WVCu1YmfBVy5CRrHq": { + "balance": "3694.770464603", + "bytecode": [], + "datastore": [] + }, + "AU12ceqgiqLQP75yJScDTaDgdi4Ha8W4jfgPaP2vBUDRexMcmgDYs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12cevKAw6p1hdUt4zZBi5x5GtBus6Wn6pJjJtAMkd1PVLsL8kjz": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12cf2cNiG6BDevbhLHwxgygZ6QjyTMhsomyCZ85XZn5Np191CUG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cf4wgewJZ6sQyz6mTTD9dsUjWGpRxFYaPPkEqEKAcMwZoL73k": { + "balance": "4498.161667599", + "bytecode": [], + "datastore": [] + }, + "AU12cfGRVqbXY7fmWPme9pqg3SMHgc12WYsGtdm9DbGao6yC4KnPi": { + "balance": "730.322315753", + "bytecode": [], + "datastore": [] + }, + "AU12cffWHu2HtDeVz9uT2E4L8Yfcv25bYcj4aRZFEKnSf1rFenu9q": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12cgTbvWMn7qigye91eYQPWbMWYXwL4ETpbNjXcvmi9szhuRqHr": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12cgVau7Fi9a1VdhW3jHm7KQLjuSne8u7T5ypzw9YWdg2XYAXZ7": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12cgnWT2rvNWzWXSyvw23vQFfoqJo2D4B17ENXYBGzHEzfrn5f2": { + "balance": "4782.677748821", + "bytecode": [], + "datastore": [] + }, + "AU12ch9yFvoNEHppqRphQ97zCE7K8czyb8K5iGBtLDyUKQphW3aDG": { + "balance": "1952.732698718", + "bytecode": [], + "datastore": [] + }, + "AU12chEjomnuBJfW3MPgwaEAS8QiLcLp7iWRP8BXtjyr2TGnki5Tu": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12chNRF8jQGKq6ZAZ6KwndVNtyt486VWQbGmUPZuYYGXRhx6MeF": { + "balance": "2652.255574810", + "bytecode": [], + "datastore": [] + }, + "AU12chg6BDhpLfyrdLHM51hYvLNsqwzAcdVRgxoZQKQDaeZdn2Eeg": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12ciFwBo88ZgEUrzUg8gcXZ7pb4iXmEK5TKh88Csf31vE3h39Ee": { + "balance": "541.031713137", + "bytecode": [], + "datastore": [] + }, + "AU12ciN7vP6FQF97dND9FMtuWduuhWmqXGfZ12rUdP25N5HApgV7q": { + "balance": "2011.815539127", + "bytecode": [], + "datastore": [] + }, + "AU12cigwHPEdzUCC74X8d7vf2naBKTjV6Rnq2zoccufND2nDGDGSd": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12cjmBBRjSZTN3o2G4AMc2DrrSia36xYYZyx8yqNMfhaLRB3Xfz": { + "balance": "1839.801717317", + "bytecode": [], + "datastore": [] + }, + "AU12cm3gSAjKSpXXEHWw2BmtkLCQ8GTarvVP4j29jT1WLJA1RpNWZ": { + "balance": "9.369905808", + "bytecode": [], + "datastore": [] + }, + "AU12cmGPSmWDmjamjtBWBmNE5iJeRts6FaGbd9FTfjNy9nF37PdeP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12cmchfDzf5N11dJY2Nm6aykQMiJMajtTVqb7LcahcePvZLpFrh": { + "balance": "526.702636488", + "bytecode": [], + "datastore": [] + }, + "AU12cmfyoYaWPHDtah77BGAYR71WSaVBxe16irQeaipmDA164fCRp": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12cmsxxF1shHiuxurnBiCgg6bkhtvGJCV5wGDjzG2enZftHSXE3": { + "balance": "3115.192974317", + "bytecode": [], + "datastore": [] + }, + "AU12cnEjJDJ9wWcvU88RQHh7JrVEFJ3LmQXJsuBix8eJzHSHXAHGv": { + "balance": "2123.736152479", + "bytecode": [], + "datastore": [] + }, + "AU12cnTgQjeH59QiDmyVCoDi9c2CmEAiXW2EyGpfkKPZHfxyMRRgV": { + "balance": "752.301302386", + "bytecode": [], + "datastore": [] + }, + "AU12cnsKVVs8L8a7yHdZJp19QZuEtVQHhGutyvte2zLiSs67jAHi5": { + "balance": "1694.958076519", + "bytecode": [], + "datastore": [] + }, + "AU12co6bfvFcHi89UeNd8hb7v1dhrNYdyPW9zKjuSaPfVUMAoLrZb": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12coHfVJaAe8EeyGtqcvpqaoChCR2zHiYBpVneesvkk8pWJET89": { + "balance": "5587.812175968", + "bytecode": [], + "datastore": [] + }, + "AU12coPHVKVnTmS8vU1oBVnzo1aEnZYNiKUuGrqRBXjKFRmrnVGXY": { + "balance": "1650.187103296", + "bytecode": [], + "datastore": [] + }, + "AU12coUnujbASDkWwY6WpFkyx8aCMrpBQeVJSGGrENZyhVpNA2zuT": { + "balance": "4551.003843758", + "bytecode": [], + "datastore": [] + }, + "AU12coX4QjhkifCrLbyvnM91jzU8t4JdLjXTNJvWsacXEacHWPhYa": { + "balance": "2578.478376902", + "bytecode": [], + "datastore": [] + }, + "AU12coySbxeBB6j2X9a4gT6mMrJGrsNfBh9xSzp9dwJ3cJ2XBbesa": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU12cozUHYHhtVRR1dD3GpAb6FcWBJD28LEPzuZU337jnKVm3V1TD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cpmP3mJb5Xiag6XsURd5vaJ6o4RYVjZxXtAp9tZLKQarpF25M": { + "balance": "1095.698102016", + "bytecode": [], + "datastore": [] + }, + "AU12cpoUiHco19QTGByYJb1zF56NRhaYH7xkboeZ5dXVX1EW9uJ7h": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12cq1nZ9vhPNQoiwxqo69GkLyEMVArzAwKNnihKiDaihGP6Y1CB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12cqrThTwVdv2AGTfmFD1aQFkKoX7wiEPt9aTKeZbvFjFuW69dZ": { + "balance": "2703.033790786", + "bytecode": [], + "datastore": [] + }, + "AU12crxagAjeSENMi6jm5NGAYzohcbbta53Zfycj8AVDcQ49jpKW3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12csKnyDjd4GYrzg5X3hYLfMc9iq7krNRsfNsFULC37mQfwbhBa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12csN2f65urMjNG3BgegHmgrYL73zhvLnAEHSkwdT6oqcRLfJgx": { + "balance": "2215.666354484", + "bytecode": [], + "datastore": [] + }, + "AU12csUfrD5P46kfdNEnCmGVY8iJ1DeJN8MWkjudhFGYCfRS5irji": { + "balance": "83.989818160", + "bytecode": [], + "datastore": [] + }, + "AU12ct7QKstL9evuhEbQuEQQNeK9MM4EkpxqMCPSxYRcF6sxusfRR": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12ctCgXBEHS9xjgGHhwh617tH61yi6faW8CUiLNJzreiZ4uhnKA": { + "balance": "966.089623692", + "bytecode": [], + "datastore": [] + }, + "AU12ctN1mXznjTToqkTtik5DhLJgP2h5QdW9kxESFVBShJgN6PKcM": { + "balance": "660.319277268", + "bytecode": [], + "datastore": [] + }, + "AU12ctxSdv9m5F38a3nqK2waXkyxF8yoYuAC7zCWnLaNbxfQxkVg1": { + "balance": "628.349780873", + "bytecode": [], + "datastore": [] + }, + "AU12curvhgNp8FuzZAoKxWtKefKXJ65U3rVAzAmTpxmFSi3KAY56v": { + "balance": "1610.772935238", + "bytecode": [], + "datastore": [] + }, + "AU12cvBRGNsmY7oRih4f5h4BuGYosbFQa5ePezMNfNVVsFcF7x6TA": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12cvCiBnLZwNghgoiqijFQR2UuVZ3gpe8KrsmwSaMjQWAWHCCmg": { + "balance": "59.404892693", + "bytecode": [], + "datastore": [] + }, + "AU12cvE6PRxS9SBJNVDM7vQReCg3njthujz9AF6UiMq7fi7hpbemu": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12cvtU8gZ8VHxw4q5X36H1JNNAhPrP7cvWz7kCpcMVVA5cmKL7G": { + "balance": "2576.709430287", + "bytecode": [], + "datastore": [] + }, + "AU12cvxRM7k6fpPbA4haJ28smhoAEWvW2tsqFmATWva1Z3wLAuiBL": { + "balance": "866.538662921", + "bytecode": [], + "datastore": [] + }, + "AU12cwKuUoWRzbsXc5drD21JSWizR187B84aTUA1QQwpjaJgDjfVz": { + "balance": "883.910614434", + "bytecode": [], + "datastore": [] + }, + "AU12cxP2XV6FNEEFqjoAVtQ1n3yp8qV4xeWsGwsMJaMoRLeq2i2xz": { + "balance": "3758.001482479", + "bytecode": [], + "datastore": [] + }, + "AU12cxujN7PNNdKd1BidG2z6cCemYhxPTu1xnogjT7runBM4J85Ju": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12cyK2WEbMq5QUekfw5C3RPeQK6PdrHwGYHKfzVieamMzse7XW9": { + "balance": "739.469351169", + "bytecode": [], + "datastore": [] + }, + "AU12cyNmz1FJbW7HeJvapxZUUfUgCb3tLvvrt3JdEa9Fv7ADtGokV": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12cymyX9Kh5T5vnHUuXmQsiXcbMZ84G79q8EC5Rxx7utXPokwYU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12cyzeQdJkfQv3s1fdqBcaZ1Dq21qw4mK7CcvMRKjaMXMk8LR8Q": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12czMiQDkKFjhCohXDrCSFu9kykpWcYgkHd78YffvGZVRjRqPgd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12czcphvgMWGVXnWEC3y9KeVLDpv9H8B588K7nh8APsSseYEXx7": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12czoRNrJWMfFywfsCiizCihvnQG2QS7hL2SCgRhdmAHR3WoPkr": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12d1895Pr7S7BkZSfnPdVHAqEnG2KqF3DNZBdi2m7hoWsbBggNL": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12d1NUvEUgpG27wMJUKgBXTQiU7hsQHRtTLCNgfiwBxjcdN9Tp1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12d1Wyc7m12n8fxo7TxwhnvTtVWMGDk4rLJkwpC8uyrHAqGDDHB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12d1YSCruPXiYoCbuCjEJP7CfHjXgxa3rSPd3KTyrRTtjNcFfNM": { + "balance": "1594.623332849", + "bytecode": [], + "datastore": [] + }, + "AU12d1kV6zyGbvKC3GCy2KUzb5YfCzfMRoxD7nwFQBbg7xLMp7AF7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12d283TdydyEy7hsjGPPSUtL8MztEaScsbKxhMX2Xuo1M9x3hnC": { + "balance": "42.910131679", + "bytecode": [], + "datastore": [] + }, + "AU12d29LpQyT9heJvQhuHqwyzh8FczWeo8DzG4y6fkzfYuw5TSzv5": { + "balance": "1102.428451150", + "bytecode": [], + "datastore": [] + }, + "AU12d2ZDVHepHPwA2Z8Zc4VnnBoCk7BcJ3RfqUv7fCdKFRBs1PaSn": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12d2qzeKG9cZMPXF5wzdfRJpQMfjSCN6WfzDhsnW1MbDmK5iLf3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12d2scEo4bxjQCNJLnS6GwVD5Esxd3jYgUe5m2etTCktw2gp5L5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12d3DiDPquHce1PZJgW2x63hKLSBznpmGPFScpGpbbjknSYG6A8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12d3Z4YbVa1EbQAuS1jAb9DVUqMvFwyHC9snpzbNFoxH3cfm4d6": { + "balance": "550.929787036", + "bytecode": [], + "datastore": [] + }, + "AU12d3kKs8wEaBPpUjbiqk7m7EKuKZvjWt59CbpTiPMYNyw8x53XE": { + "balance": "1871.126215280", + "bytecode": [], + "datastore": [] + }, + "AU12d4L72CBKo3gJNBvUYcze65XjBBeoBJFiFc5fTLNmSi4Kzew8H": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12d4nzgbSeLC8DRUDBP3FAf2pErpqHvRzWMYK6LWUeqnPhEvi7s": { + "balance": "1125.237254306", + "bytecode": [], + "datastore": [] + }, + "AU12d4ouJhqEotqTEEV2saX9bqgFkPQyQV6MVJDG8SEcwAS6RYugi": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12d4x1pkop7aJq1FjhZMQNHjDyeiYPoByGNdKMLfqYMTQmZZwcE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12d5Ee9MwX5n2VHw5M93Ug8EZmwF4YxCGrSadxJtR7yKKySxZg4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12d5HTo493TJcoRyac2NDePCipBD8q97JwEsj4uoENzt76aRcbg": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12d5hdzV6YNX4TgtMXpbH5Ai3Gctt1NFN5XZGs4YqHmoaqaWTjG": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12d6FaTP599FZL7pdxsAFQjjXWGaX97qbhidEToVvUJShAcjcdk": { + "balance": "982.241700531", + "bytecode": [], + "datastore": [] + }, + "AU12d6Khd6pehfTLLGQf9rPrZQN2Vb5BSVbYDQjfVWJPekEtnrJyb": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12d78vJJbcpU3uexUBY73VY5NWzyZirwpaNdQPTY2rzewxeVcSv": { + "balance": "1786.510722136", + "bytecode": [], + "datastore": [] + }, + "AU12d7HUjPKzWjfqnHNCpq4VRGZenLG5AdngBzxk9Ygt26FHKbAsU": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12d7MvFHBvogkTAP6Kp1Y1EAmb8zbXCaD8jWNq2kxV1NEA7YqAk": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12d7ZNygJu3Cz4RbHvyrsAaqYHNrEAKcf8RzWaQQfwChm4Un4He": { + "balance": "5728.498698658", + "bytecode": [], + "datastore": [] + }, + "AU12d7orDijiLiWYUWGbtcygPX2Dy8phYxipCJEk85jqK4QQPGxSA": { + "balance": "1299.294488093", + "bytecode": [], + "datastore": [] + }, + "AU12d7tuykTph4oZuRfG39qkt4ibKkdPMQQqY9aJFPnEhhezToZcL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12d8NkqF1rpGFBWBrGLZYJDA8ZdpYHaTrVW9VrAdznjLU7YGcy6": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12d8fauddNRY6wrvXwDnz7deGwZ7jLNaECqHxaahyjt1knLcqsk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12d993coUKFssd3hnXoTeG5irFXxawLJ98mZMd2wCBbhReLy6Hd": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12d9jundRRWDHr9beQscWLdSsoYz157JReGmKe4SDAre5mqXCGT": { + "balance": "944.342812970", + "bytecode": [], + "datastore": [] + }, + "AU12d9ukxSYJcV8sh7EqjzU7ks4L2hGC3nyvFDxVbpUtMLQtX14z3": { + "balance": "2162.851296932", + "bytecode": [], + "datastore": [] + }, + "AU12dB1LdstkcyQZ7dMueJLUkw9mu7nWQaKpSwbWZFiJqqcWUyX7S": { + "balance": "1994.271288859", + "bytecode": [], + "datastore": [] + }, + "AU12dBMU7SdgrX83SF8x6TSwBFdKRr9KZiYSwCnrMWVKddFyVX4Dm": { + "balance": "1814.189196319", + "bytecode": [], + "datastore": [] + }, + "AU12dBo5J3RaCvXPzvXYpwLPwNWLvGQUzRSvxPjpCFcqfEEJGjiWd": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12dCQW4ig4rMLs3DtE9aqoZp2bdsGM7y59Qv1npzU9oLPjKMa5x": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12dDCtdGSQezk3pjntSCFjEWSJU6GzjjdPakwL8WZvyUefkQ8Z1": { + "balance": "565.663979114", + "bytecode": [], + "datastore": [] + }, + "AU12dDbxC6HL3WKCURdgCNdi6ZKSAFG43bac4qBLxqRKDfRWpsmoW": { + "balance": "3138.681822654", + "bytecode": [], + "datastore": [] + }, + "AU12dDcYFzNz7v7TBgNHHWMBdXHm3Qz3mqqmxLmMM4M5E87igBNkw": { + "balance": "1925.569254940", + "bytecode": [], + "datastore": [] + }, + "AU12dDuAgxykZC3bW8779nNpTVnefKf8FxJQ2Fh1H4hTUonw238Rf": { + "balance": "839.807667538", + "bytecode": [], + "datastore": [] + }, + "AU12dDwUM7254Cqsqj8dPbRscC7oDJX58odVTbC4KfWM4R3Kkxey": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12dE562FGs6pDiDnHBw814FUJPB7cTCxtzUyJg1qVH2rQbpyYgc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12dE6TJYJ1qce9YcDvFU8gQp23qAEdciQWTg9mQ86F2D6Qxe2X4": { + "balance": "3743.149676164", + "bytecode": [], + "datastore": [] + }, + "AU12dE95L87c1xqLZ4Ezxb4TjFSqwhiSnTXVFPFwkhNYZXhLGXykr": { + "balance": "982.308711154", + "bytecode": [], + "datastore": [] + }, + "AU12dEXyCuaMJ4LmrZn1JENt2tWAusL4TVZPsmqn59WRyniKXqKR2": { + "balance": "202.873404118", + "bytecode": [], + "datastore": [] + }, + "AU12dEmJjYV2PWDsxLvPjFJNNG2nd3hF3VGCpEavSVgCyPWDBNkfj": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12dErd6odboKqAFfeaNHJiHzCmcKmjSXd32Aj7xDamN3WV5HSms": { + "balance": "583.830537282", + "bytecode": [], + "datastore": [] + }, + "AU12dFCqtn7KSMVgTWwkEn1XD3Y15vEbYcPfsHLZdhFT5VTV2SQw7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dFEe4e7gGTACfZ2EZpvh2LFdvpsSbQ2r2tJcmg7zktkR4msbK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12dFU1ZyiezbpZCJ1P7muGBWX7quenh9Ntdr5HT4AnHrKRUHMdT": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12dFkv84UmrSWpEv7YYN9VTHFGoRoXeWzW5sijKS12AabrJn8gC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12dGV3z59JT5oURbTQnx54D5HZwG9PVVAMUXisqgAM91ELbAdTC": { + "balance": "743.008870897", + "bytecode": [], + "datastore": [] + }, + "AU12dGhHoyQW89B6osokVKXTmFVjCGXJTyzzpdLcogwPVfR8rfaFu": { + "balance": "6435.147275963", + "bytecode": [], + "datastore": [] + }, + "AU12dGjsPEziTKnWAeftM95CgAe6cpCR8s6GM1wVdaEo71xTZkh31": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dGmpzWowjNAyzKFbfS1gNAScTwsHTCcN3UgpkwRpkKJgQbTyt": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12dHLhhMz9DKDyjLG47Mjqf8FwHzVgGTZ3XL44io55D1Yzdcezk": { + "balance": "55.597671754", + "bytecode": [], + "datastore": [] + }, + "AU12dJMZJG27mcKrXttVpY8KyPTkvV6DzDKTaYHKPWiYiugZVVBeV": { + "balance": "76.359467646", + "bytecode": [], + "datastore": [] + }, + "AU12dJuJDHG4jazjNpSnYKknAVtfifN3XmwuhUMBqqvm2oBsH8s4g": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12dK4EtSZ91hVMYVqM5ELrgUdSHhmjdX1318RgRcjuydX3JjYLk": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU12dK7FpX3D4eYP1FQfnBvjemTUCKSAi2XUVnsDYLRqNXhNuz5rf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dKDjQf7XSMPHtPGmrBJgY3pRAcXiNdNfQn7Nxf2hdgD3gzgQs": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12dL9oiRvkuZXasvg78EoGNJnQMjH21BMEV3WKbPERvWdP3Xxo8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12dLAycpxBejW9469yXxbjeCoPw11qjeZs1GmKMwVhhnnjQLgD1": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12dLLcZhvPHMg2YZHraAquRvzbupyPvsdnnJDPzHaGszaHmPCmm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12dLRdhiBS3ZbCJZGgNRUoNpvan8bX8kWMGtTXwxb22L24GHVDd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dLZPojJkAdR2y1az16eaigC7XzfjxYsoDQde7mxbeoSvakEYV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12dLshutf5naE3QpSTzLGKTmiAbaMPiTvs5ttJtUVkUarRGnss9": { + "balance": "1579.853323727", + "bytecode": [], + "datastore": [] + }, + "AU12dLsq2nSWhgLFLerWqiaCLDzZebtrdWQZ3z4doaSDpxUgv8a4n": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12dNBLnSDHKNFEbdDJufppGr8U5bJvRptuxiLNMjKyn4R711H6s": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12dNXr7jYcc1524F2wnXqLZvK2Jc8b3og3UPrHXYKstv1wwinQf": { + "balance": "654.518263580", + "bytecode": [], + "datastore": [] + }, + "AU12dNjraLFuMaanxddPRsCJF8dcAS8MEZ5uiMGpBpQC9ScSWV6Ly": { + "balance": "145.894442863", + "bytecode": [], + "datastore": [] + }, + "AU12dQ6NZ4ETMUUHQB3uaP9y1PnD6k3TLyyhRDKHg4jVnfe6Zgh9T": { + "balance": "1715.915725369", + "bytecode": [], + "datastore": [] + }, + "AU12dQG4jYp8Kbw9AMNj3gxZWQUsiBgipvEMKp9iMUXvDdDVaCe7v": { + "balance": "1021.100142466", + "bytecode": [], + "datastore": [] + }, + "AU12dQVCPqBWBcmV2yvACK1dz5JZ6mdPMt5hf7hxpyfY8CJFkXBPc": { + "balance": "1897.730318304", + "bytecode": [], + "datastore": [] + }, + "AU12dQghGNPQNvjZZoGKsUDPVJR7JBbo93g69FmXfDtTgF9UqLcwN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dQvHeyCkxcMWPeU29ZNsVRadUMPc1rfQisNELVuZ3ykL1CMrP": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12dREnY4ifZfdewYP7bEXaYmU14MZaMziz4XFBowTxvNorTnb4t": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12dRSLZmcmBR3t4ScGeX2AA8ST6tkJXwqY6mZiNAV5HHdkXmC7n": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dRkE3KRsm2JuZZHUJ11cWxu7wFkxFVsY1SZ1Wfd23DLqPiP1Q": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12dRtyVJ4vPSAz15K4bm5GYucSLAXhk824AioxqcaNp8meDzEuP": { + "balance": "56.333124563", + "bytecode": [], + "datastore": [] + }, + "AU12dSTktcK1H9qRAJvdbDA9vjatydP3JT4Ek8hv6nAWggPXvCtzL": { + "balance": "1843.872626717", + "bytecode": [], + "datastore": [] + }, + "AU12dSyaSGLyYTfsXSg1bTWEHA9P9iXkdwMyTBypV7YfNAB1oy9ZH": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12dTBxEa6Ach2qH2BdsRJfYB4WZinJQVx9aRBXUx4tQDkJ1gUHK": { + "balance": "1447.077822121", + "bytecode": [], + "datastore": [] + }, + "AU12dTL8AgcRJGEpyjNU4AhsQu346XEGVDhKEY5Ce6w3YDHs1BXx3": { + "balance": "1727.808515616", + "bytecode": [], + "datastore": [] + }, + "AU12dTZfTri6EtrLUb8Em16R1nQKejHfKecdsCapmnTxVTaXG1euo": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12dTcHuZEyK8R4iQZn1ckBEfNgWXySouA9dJpCYcGuPABebz25A": { + "balance": "1310.767874095", + "bytecode": [], + "datastore": [] + }, + "AU12dTdxoiKRtVRuefU2krFUmaefn8Ko9UmjdV76VYJVTVTvCjGPN": { + "balance": "1839.980414343", + "bytecode": [], + "datastore": [] + }, + "AU12dTkhNtzGufEUZZrmGv1UiTGSWX6fbsfYG4BKknFBXiwbsu4Cv": { + "balance": "24.177637821", + "bytecode": [], + "datastore": [] + }, + "AU12dTnvPF4MBT6wnfSTQpn6hckKsnwCzXJFHoE2BeCnG4FLyb4HT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12dTzN2j2Uko44mbxn4ZigfQubb5NUut14FKRZ7cGjXd1RUSWKu": { + "balance": "253.180562004", + "bytecode": [], + "datastore": [] + }, + "AU12dUQYvUnE2H4edQ1KZKRtehfQv1RRdcPzLLTTPDwW3dfDpZd5R": { + "balance": "1081.653434188", + "bytecode": [], + "datastore": [] + }, + "AU12dV7euG8P23qUmsB64BLE4CjdV4R6xkVEGv5AmzJdLV7NQsCJA": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12dVMW1vK5aLiSywBLQbJTc7xYiYoQ2EivqJRGcnLG8XCtrYQCu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dVPLibvaoGeUvzN3pCjh2NXu78n3LQqMAbnqfd33xo8pyJd6h": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12dVZ7XhYtwWuEe7zKeLNzzHaTNnNEQCedK7QRht7mydkghbYWp": { + "balance": "848.591823244", + "bytecode": [], + "datastore": [] + }, + "AU12dVZFcZmcHxY7ewH8kvsycWiwC1L5NcjsMt1WyuuccFikjFTq1": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12dW3NTGDgWCNJB9xGrreM9K53qMhB8tVUQaBbwjANDu2WLprK9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dWUuYuhVutTEw9j4DEJg8GwYUdE48xrd9Sx2zkKLyvai2z8ZR": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12dWge2xRgEW8Czf8HzR3qkvGdSPwfSM74Cn461QMTaPeqVavJZ": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12dX7WJ8XbN4LoKr6KrcP7FppzbcjJDhrk2q3qf5wkSwPagwom3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12dXXrB8xkH3ncL1ZSxZS8wj5MyLhPNQwbmXkHt126vBAgKZTA": { + "balance": "2823.287167202", + "bytecode": [], + "datastore": [] + }, + "AU12dXyVoKK3u3NoTU6WJPfSQuVDKvM1f6LxyMEvRBRdUjxUfDVAf": { + "balance": "4485.109106091", + "bytecode": [], + "datastore": [] + }, + "AU12dYA5xoV4pVaHtn1N6XCEBw7G82wNMEfZpW6H568UPhBPd1vce": { + "balance": "1587.592969834", + "bytecode": [], + "datastore": [] + }, + "AU12dYgWJ1JTiRMhm14iYchP6sBEZbP8DsY2gvyDDH4LTE5zyDhYD": { + "balance": "1544.367534512", + "bytecode": [], + "datastore": [] + }, + "AU12dYreWrYW3x3nUGHf68bi9eXoDC9fQ8iKEhpjFnFVJaVRA4ou5": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12dYuWbc2La9At6j2RDWBUoe1t2xPETGbFkNJEYEch2NH8CCybm": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12dZ6H5ouJz82cidUR1549zHYkTivkrfdiLH9nMnUwJDCgR835Z": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12dZaC57rLjsJSkgmHjACpwBJzHYy7XhrK3ohavDtD6AtXrmLg5": { + "balance": "2426.280342509", + "bytecode": [], + "datastore": [] + }, + "AU12dZfsNmwou6hXzFF6tSUHD3itisUH58mz8ADUVRfUqJHdnYoyR": { + "balance": "1002.308930637", + "bytecode": [], + "datastore": [] + }, + "AU12dZrGGBaEuWtUPsRDCteKr5SV4WBAay35rgFgnTVQbaqVwBFyx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12daRottZQnmLxhaH3F69iRAtFD7Ws6iYKSYhGoxfdRGc8UtYv": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12dahMUEmA7T7Tc9GhstXnpMpnyCzUqdndCM8tGuXZSHy4ujxQb": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12dazaGraPF7az2uCTTmXMcMUrWjGEs6seTDwX7f4rDXoKA1aHp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12db1ozgJmUDzdPGmAMXD38R8gbfxJ6XKtPkm7C2h37pAeyk3Ti": { + "balance": "1298.053363334", + "bytecode": [], + "datastore": [] + }, + "AU12db4kmTV68RA3FZciCZeT8Vf9uBq7wmyTakbfZ6FHiDKQSQRNN": { + "balance": "202.192596544", + "bytecode": [], + "datastore": [] + }, + "AU12dbA7hWCNBpBKFFAFv7TbaN9FRt4Dx1BsbPoehRBwUmjT2s5gL": { + "balance": "4940.260158977", + "bytecode": [], + "datastore": [] + }, + "AU12dbTyu5unrttTg17KMSk7Crk133FJfeTHytY4xinY7EMTyYp7D": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dbid61wEHT9AzgxfR21rAtrjzNPGhjS19RqzPizzeKrFPxYMU": { + "balance": "6487.653986010", + "bytecode": [], + "datastore": [] + }, + "AU12dbpQjjSh2pWTFRDTCB2GgGSEsHSNGiiPyMrXBgSNR17Nm9EsH": { + "balance": "3157.923655452", + "bytecode": [], + "datastore": [] + }, + "AU12dc1as9tyvf4sAwAKe81v8CCp5iX3En4mSbiUsjCwcddoE5s4D": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12dc2ZwQE9rs7pE78SmRnMET8doBAs7N1U3n3WEoseGLZhuJoSH": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12dcGBVbgvpMfxT8FphCrf78QtTh5X8dv2ezWCFgEvXCPKde939": { + "balance": "3654.749151916", + "bytecode": [], + "datastore": [] + }, + "AU12dcMBLLb2UhdcnEAcYVS5eMH5YDjNssik1Q45GEfmMxiHEDb4N": { + "balance": "96.310448561", + "bytecode": [], + "datastore": [] + }, + "AU12dcNgCUZ1HQJ9oj77ce67RhUYjjW5JziBuyAxhZqCLxec1CsRC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dcUMb4cr9opjC3HbbzgR1qNBhh4cqKQTJ2ng4A7cT8qRCRQAh": { + "balance": "1723.889779660", + "bytecode": [], + "datastore": [] + }, + "AU12dcXvzYhRQMix2CF9hEKCjd5kY3oogyq7KzgwL4L43Gya5qgtw": { + "balance": "2206.847266237", + "bytecode": [], + "datastore": [] + }, + "AU12dcctBbyhfTcy8pxLWKTSpcv4E7jWCzvJEcR7vSPD7akjqLMs5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dd4b5HoSTz6S95wcNQZnufnx3LWpZ3gUDwAFJVhVRd9Kwr2M4": { + "balance": "72.338873069", + "bytecode": [], + "datastore": [] + }, + "AU12ddQdcxtNTmJz1cGrjqmanYsC4JD6u6aTRE2B3nkhp12EsPTht": { + "balance": "3178.002130722", + "bytecode": [], + "datastore": [] + }, + "AU12de8EUkKNf9RhFUXTLpo9fTNTmZJtTjeWm3mKTi4wKvSiLRCHR": { + "balance": "5810.729199490", + "bytecode": [], + "datastore": [] + }, + "AU12deLV8oGHBRNY9nmvj7hRquzBWptQBVqJivDngV9ChrgRqwNc7": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12df21ip1Jq2JqThng123TfzGByjuJrDWpnSz25RZqbBJ8stZeM": { + "balance": "193.610800482", + "bytecode": [], + "datastore": [] + }, + "AU12df5sNHpLFJkxSHmvb1iBt3s76DeLvjAQiyfWWWisNfX2g1e5U": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12dfNpCk12hoz1zRnw5gs5zhV4oQVNSjRfcf5Wv4UqgrKXwFf2B": { + "balance": "810.659634648", + "bytecode": [], + "datastore": [] + }, + "AU12dfkoeQ27FsrdTnwFkXufUPMQiTnUoDY2SLTJkfibwJk89mmNL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dfpWhRbtVpmRb9mH25PSynKzwwfs6P2hgkJFuGkMzzJdrmGTd": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12dgNHS3z4DrW8AzdNLBJeZ3i6g3kRz7kCXo9W6F8hUvaeiwPR7": { + "balance": "1583.574985053", + "bytecode": [], + "datastore": [] + }, + "AU12dgumSzMGt9ae2NF4gnZkmxegqLFn9QU4SPM5qjEakmVCGBahm": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12dh9YQg8wL4p7829CF9VdRpSUuTi7SiDTUzuFm9pce4dEHEt13": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dhbJcKpmGCGm5aKnFeFQNi2RbDwNo6VapXi2c6oSncAePBUqK": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12di2p82nBP5ewK4Eq3TxPfzn4U2onXmksrRmYek4f9WqLSnRMG": { + "balance": "980.809715317", + "bytecode": [], + "datastore": [] + }, + "AU12diApcZmgVT7j37MNfK9W5sP3DyasfpHv3JRAjUzNtYeswJuzk": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12diPKEB24n3sid28SL7TxH5Hy3fXTjLecPpJVEKi5e8M6FhZq6": { + "balance": "46.336841387", + "bytecode": [], + "datastore": [] + }, + "AU12diWzPgWru6oyxnrNQk2w8yD4GuxSfB5oLv6V1pUiSG9Lw3jWZ": { + "balance": "2512.830668256", + "bytecode": [], + "datastore": [] + }, + "AU12diiAEA65AMbSM1QRko3pgSP7Veufv7VaKCsmfV5z3s6AYRF7C": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12diyNFKkaedu1oV7gwWbf19JWo6qT15k55UCCVV4GsePAsY3Ye": { + "balance": "73.420408026", + "bytecode": [], + "datastore": [] + }, + "AU12dj3X3dpzUKXVCp3pjVgXv4BSwmXrCFVrwmqHcAEjVYKbhTfRX": { + "balance": "2865.635053085", + "bytecode": [], + "datastore": [] + }, + "AU12djM3YqYBWhCeTBDm2VKAiinyTdzfWBFY5YuNwYLbK9Uu26mc5": { + "balance": "3722.209567582", + "bytecode": [], + "datastore": [] + }, + "AU12djQn3PQbyvSmV8GdKL821vJnDqnQwWjoV4KDs2erGDoR8DBgg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12djiTRhzqYeYr4qmwTyQuHENUmYdgpZdnCwwPavJaVjTkPaovT": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12djtBtSRihbrerEVfQn6oekHvHd7gtf83tTMs2B81jN5bRY3EV": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12dkPjC2UT9Zu8PhdrLia2xNfXWBDBr7mFHg1M8XzEwutQ6opMD": { + "balance": "1592.188675678", + "bytecode": [], + "datastore": [] + }, + "AU12dkUmVRqkmUW8Zr6sLTsQKJp2uPrWeTaAaWaqo8g6Q2yZm4yro": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dkXeZBEndYLbmLVMJtyDzj37pvGeDMjVi3QL82bVUmMjet6e4": { + "balance": "904.963787167", + "bytecode": [], + "datastore": [] + }, + "AU12dkZvWXW467owjrXd3Z6e6CJPrrDyqe6gRKHbAKJBScEiTj1wn": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12dknynjE9Ss9P8fUbwz7GtiCpXDuZmgx2JRKmYL2CmeGYqH2gM": { + "balance": "1887.116571137", + "bytecode": [], + "datastore": [] + }, + "AU12dkxGiYEyS4e78eU1Qcbhs7fvEN1Bi1XCtnmNLzs7SacyJruv5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dkzQQPTavReVX6gjgY8k3wtpVwds7uJq5BcbnAqvgdyNnJ2Ry": { + "balance": "1563.557689286", + "bytecode": [], + "datastore": [] + }, + "AU12dmNb5NQHSy9zW9xdY5duZksKJTgEGqHSZu5jnfcXZaGXPqN97": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12dmxULjw2oEsRifF7Fc3eJGnQHr4ZMJRuikyUnsBAW7tKzdtM9": { + "balance": "5135.499943111", + "bytecode": [], + "datastore": [] + }, + "AU12dngRJejn4KzKio5HT6fuDHJUCTQ7rmzCS17SgYTVCugnD7SSq": { + "balance": "2308.464706109", + "bytecode": [], + "datastore": [] + }, + "AU12doBH8tnrxYSqJhYNBGWtoYVkB8BzH7fiEsWbjQmTYcaMuGWXb": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12doFEzqAuTSXiqLtN2jU6RiJP9CkTBGfHsovXRCU5phZRciAhs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12doepdQkDMqHoWzhpuNu8HJUSH5REXPLSwN3oKj9U8kADCeYfr": { + "balance": "92.728759474", + "bytecode": [], + "datastore": [] + }, + "AU12dpRXmfoACty6KRqAwwQMJaKnpgT1xcMRXPycH6WRTd43YER1f": { + "balance": "1846.842955362", + "bytecode": [], + "datastore": [] + }, + "AU12dpXKD2BZirK8zk8Cvuyz6J3SAYuPBAfNuFzrbSQJB9SMEWfT3": { + "balance": "1595.810765068", + "bytecode": [], + "datastore": [] + }, + "AU12dpitSKvBYoEToZ8pBMiHhX8AWvdhR8QamxzoEgtxSzC5m5Wqi": { + "balance": "646.454936930", + "bytecode": [], + "datastore": [] + }, + "AU12dpoNUcAXtKoMdbEQaE99dEyDHQP5zr7jZgQGotuN7JNm48n72": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12dpw72TLVQ6a3aX8qXaJTysVroALcy8ZqoqNyNaaiwbDX7qPkq": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU12dq2jjUpmJpaiwx4YYafTHE3TAQ9BeMXDuhHCoAmMbvEAdnTcw": { + "balance": "3396.373952032", + "bytecode": [], + "datastore": [] + }, + "AU12dqAjwVzC7t2gHwLSxLqi8UWm6Kei6NaXVAWymbniEtQUnQj5w": { + "balance": "582.483346112", + "bytecode": [], + "datastore": [] + }, + "AU12dqBuzJKfefNMDyncVUfEjaxV4XSzyucY3SDDRNjbvA8XDnNAH": { + "balance": "83.755427187", + "bytecode": [], + "datastore": [] + }, + "AU12dqKedWc3NiRA2n8UfapX6KSC6e8v24kBhs2cCqHxQuFnsNmnZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12dqv7aeB3ktJDdVVjgf3ud5JUeneeTteRf9HGAjk1Gsr4mz3s7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12drRd44d8zvLwoa9cwqafooyJf3xZgo7T6uj8gWNfKe8TAfwEx": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12drRdUVX4fJEQGRYTqKkSvCkbehbCDSDk9ATtw9KS6pQ9HcQ5o": { + "balance": "751.791874292", + "bytecode": [], + "datastore": [] + }, + "AU12ds2B78qqTMD3pXwjqRpBKEZnsxRYSyWUMZTXhnpeAokUF9nzZ": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12ds861TahB4VcVeicXwKL7bJCqYStgqfnkVj2wQtVENZNG8cmD": { + "balance": "2475.676244881", + "bytecode": [], + "datastore": [] + }, + "AU12dsJGQY73NdxAkTGusq1ypDuaGFfrtZmqYrRPXMoJjaxQKBMwj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dseq6wEoRiGDcD16RDYSg3DRtn2UJJAvxFPVJCCJYiLTL76zs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12dt1Ezxehf3yaRL97PyLBoQP6qBL1kbK5UpCu48B3Yz8ydfYYM": { + "balance": "4409.070761086", + "bytecode": [], + "datastore": [] + }, + "AU12dtV5x1ZkjAiJNQiDVyTVV6h9upbueRX9PyxzUrcBAoPDPCucZ": { + "balance": "3352.522664516", + "bytecode": [], + "datastore": [] + }, + "AU12dtcMBNmHLZAQnqcnr5Z4WsFsgEnTowpieThZPysCWHd8Lfcnp": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU12dtcWX8gPoJt2oS5x5RN4BrTwF7j5CQiJ9JzAEfPKCVRLmMtHo": { + "balance": "3277.683339956", + "bytecode": [], + "datastore": [] + }, + "AU12duEbUdMMxCQtg2XGwpeZVmnnbzjWtQokfNKCMC1tzvD2quqzy": { + "balance": "52.296168772", + "bytecode": [], + "datastore": [] + }, + "AU12duFqBr5kKod4KNf2A7kfS5jSWMpUAUHbWGT6HnB9PwmAxjNBs": { + "balance": "3030.743815910", + "bytecode": [], + "datastore": [] + }, + "AU12duKmX9h293wcHsYowFYMQ6z7z48wUNG9x6ZrSP6fotciNAwGH": { + "balance": "2939.572931593", + "bytecode": [], + "datastore": [] + }, + "AU12duV48wHtUswzzim9YUc82bx7MdkSnCWTFxBrBiZbEC29aq2d3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12duYPLfd2WCnfrPYZ2QAJqb17uoR4CBbkaVSQeP6QAfx5zSk3A": { + "balance": "1540.088197754", + "bytecode": [], + "datastore": [] + }, + "AU12duxyMs7XNkrmjRXacePHZgLzFPdE31NaD3A4Y9GM4rTeHCxkm": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12dv5odCcrPvgws4Lk9ZxiT7hxg38UdWwRxf8kQnzUHTw31XbaN": { + "balance": "3248.996739600", + "bytecode": [], + "datastore": [] + }, + "AU12dw6fWcMuEzXxM45ww1LGxDte1dLFo85TCqwFNHcNqHmyLVd6U": { + "balance": "3963.358758864", + "bytecode": [], + "datastore": [] + }, + "AU12dwG6S1tZxwSNSEbR99ndKPPfsB633FTKgPMPB7m9EEEXtGhie": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12dwXwdfWKmrCZp2oLp23W76UiUpzce3FukEMPdwLLeReFtQWdo": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12dwefgLtiKVdrkxsTSm2Y3372GA2xmyQ3Df6SK6pKTcnxtoMZr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12dwnD6MpQLX7xXsVDT7YCofPcn8iir2mfPG6CQ9aGznkxbebK8": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12dwsB2fL31BSmNQz7tx6UE5u9QD5Uf6uNN2yVSv6vp3HLuMvNi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12dx4fznE3ryStZ7dFSxWa9MyHi2KECjSTMijCNQhxCuPUh71Xn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12dx7SaAFDR8tXDjptcvreHS22vbBCeaoVVaH7HtsUm78SJVey3": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12dxLjuJLftChwuSwK9TZTAwMZnhmKa2yCK1Phu74imabgPWe5Z": { + "balance": "1499.034856379", + "bytecode": [], + "datastore": [] + }, + "AU12dxh5dSXwQTHfBVZZAaJubXwDdRJLUhPR6fkowC43FLtmutRYW": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12dyF7eJghbCvqqi1Y1Gv5qFMkHq8hJjPPS5dXtSthnMYf7uVhs": { + "balance": "679.819597616", + "bytecode": [], + "datastore": [] + }, + "AU12dyPFfYxXsri3fK2mardVDpJwvFGSVrrfx5y2FpSmnkeXRZSzy": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12dyQyXV75qtcrGBQZRetTEx76dJDwPMwSkMqfiXoQorXnkuz7h": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12dypufNbw7df2zZqh4cAHEohMZRDLfG4E3NE6M9emJpWj32bMz": { + "balance": "653.114293129", + "bytecode": [], + "datastore": [] + }, + "AU12dyrTFfVaK9Fd6kUqNMNhYzsxHMf1tbhWWcHsV5Bj3dVZZsrRe": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12dz2t4HeEuzaZj9eDUKqmyxCDWVXFuWDC1VxGsUqsS9dLzpGaj": { + "balance": "670.855963540", + "bytecode": [], + "datastore": [] + }, + "AU12dzA5kE9Xbi3X81mp1ADA5fzfq3khaCQXDxovuZLXyij5U6nYe": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12dzBbzxzYmeQQdcP6ewHnB3gurnQJU5nvvsjdhp6M495ARZcYK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12dzLbJg2JywsFUg8uKm1L1KNea46n8gRVpJjyKqV9FV4DEQXdS": { + "balance": "3086.833431517", + "bytecode": [], + "datastore": [] + }, + "AU12dzv3zJtbJsFsCw5FGKXJkwEpQikSWecvEKz2WfGtdBbnHwx2R": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12dzyP8baRfZHp6Rc2ysuoUGPGE5ZBqvUsrQSMCnJAfmJtHv9Ne": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12dzzvgKkZkEZ6PtLe6smesR46roKTKpoWVq4Qr5p9yTfoHh7zj": { + "balance": "12.522863459", + "bytecode": [], + "datastore": [] + }, + "AU12e1BRPpZe4cbCSTSqEvc2Gzb8vdAFkfQZ9MxW13qVmjHXCaK1Z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12e1WKNQbrLqqvJxDSENMR7mUq6xWpr1usDgT5utsZVqyPbxZfU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12e1dXMLgwgvWLZN657BzUpitFRk3N1YfPUuAd2phDGhQ8JgCnB": { + "balance": "576.672754290", + "bytecode": [], + "datastore": [] + }, + "AU12e1i4ZEHL9vVvU4rfpw81WgB7QgEBvmQPZf5ieZL77hZ1dCzgj": { + "balance": "1400.135749836", + "bytecode": [], + "datastore": [] + }, + "AU12e1pfVUPwFasfUf6TbNubov98MufCeAUdhRkVL5czUGWd47Ttt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12e1smmq5aeJwc4KZ4s9pyTMwdms1n9bcc9wQDwwndn8drkoGC8": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12e1umQHix8vRMM2Gwe5H5CxMTgYT2nKPCZcNZgp1rnDbTXZXNC": { + "balance": "5498.986184306", + "bytecode": [], + "datastore": [] + }, + "AU12e2Gz7zNUkWsREt7Cai1GYceJxYxHsrKFuJ3pV71GiZGg3Yyyy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12e2N91Fw3xfLcunE6ddToJGxoJrey39vCpzKcUBZjyDBwaeQXJ": { + "balance": "2117.231109771", + "bytecode": [], + "datastore": [] + }, + "AU12e2Sw2gpthHAwfKJUZGv1Bhfa5GXdS9i2qs7Qbm1mGZtcrReGu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12e2x9VENnd99nm2b82Mgsr1mZoVrwo3VRPGTGym5wqLuPczBSB": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12e3Tjy9xofW6vfG5ZWAzq6vCCHUPbacmc2LVcagboydqrynQ7Q": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12e3XLH9REfGS86DyHrAYKvWigwbD6L9hfRYYb4j76yZe23Dh2X": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12e42nXvjvFAzqd6m6kzUq6NUUtVEns3moCnR7WCXy1qfVBtVj1": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12e4ALac1R9d49K6YqTvuwf8w6ESU12sNGw2ccmdrSPHo7i9o6m": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12e4z4m21GY1aLMNTUpWZnYYiBLmB4A7N8JEndeiYDerZ9ah1ct": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12e5CsHky7JBHaj9WTtcFV1ifWWAtrSXyvUYJTf43psz7fVjiwa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12e5M3jAA8728X4yJ6mmvfVdjomwx6kN4BXdLu3DpKdeu9ViAz3": { + "balance": "2672.543447720", + "bytecode": [], + "datastore": [] + }, + "AU12e5Qqnq5eWzyWVFiFXeEpgygcH18FPsNK75K49ZrmCLJy6xFzb": { + "balance": "1511.649463640", + "bytecode": [], + "datastore": [] + }, + "AU12e5nvrC4yTedEgnVyKzqnQW8gKbuj8g7KjfYVLNaE3b7CfP1aL": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12e5vEakxMn8bWqzTvBFHkTsw4UNK15FKhSBqhPWVtQbfSE2Pkk": { + "balance": "704.123468721", + "bytecode": [], + "datastore": [] + }, + "AU12e5xrTtF91JJ7CZC1ckcRVEvdEWGeHtS4cMDq4H2s7uNqD6CVx": { + "balance": "2019.240623405", + "bytecode": [], + "datastore": [] + }, + "AU12e6MvjvkSzFKyzRRzrYQm9bvrUGuxoFkHKMBNh4DbzqfZWzQx6": { + "balance": "1422.923795276", + "bytecode": [], + "datastore": [] + }, + "AU12e6eqvgzzXUAx8TKLHAChPSnhdMzmyfkmhQeMrqhzdkPSHjCWp": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12e6t6kaiDxaTkUPQiov1W8ak65Q25vZbRci7Ln6pLMwJcKEUbJ": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12e6yzFXZ8fkJok1iygbRMok6aZTRFNnqEM8woqoCzVJ3tJu9oe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12e7aFjJLUypgZAjn9g7Y6iAV9J9pdf8aNcSycvFYMtw612Bw56": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12e7iPSbnFMDeMgsy6RpXXHGVVxRb7oNtton4PD6JM9PfvGpBnt": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12e7jJgnSUqvTMDyfWafkYGX2cRzW851yu8eHHVCsT1uXCVXm5w": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12e7mgh3bJwQALCZ8gB4LhX9mtr5Wad57GCx19gaW1WdiojLcPQ": { + "balance": "2502.534639187", + "bytecode": [], + "datastore": [] + }, + "AU12e7nqCv97sg7W4TjxENiYukvy9ncpikeDq14AL2NzNfp3AS9MH": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12e7vC9bD7gGnEiT6pLikL6TX3UEibt2vHxVq6xXyhMqH8m52vw": { + "balance": "144.126923625", + "bytecode": [], + "datastore": [] + }, + "AU12e9CcN4DrpMypz4QUJUXawmjfXrA28ARxiS1TptPiNPKcqHpcf": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12e9Q8Y4kNTUVFa1KdSo462u9DX6iv6v6srgzhhFxXHzNy98D3D": { + "balance": "1046.574735179", + "bytecode": [], + "datastore": [] + }, + "AU12eACxiDsTuUWc3QRTkzGcRoS8jPXCic93wAXDEXPLaedScs85y": { + "balance": "203.425163027", + "bytecode": [], + "datastore": [] + }, + "AU12eAWuUryyEuJf7aS3FzCJu1qxp8wcGsSuw5tmvATn7zzqntSCX": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12eAcrsoUST3x8soseBJeqSkVsGfHTu7NQL1Bpfuv7mQn198hkz": { + "balance": "539.615740605", + "bytecode": [], + "datastore": [] + }, + "AU12eAv1pdkSkkdM6vwcCfPYWyihsSzwzhUnG9j6LHWGa7RSK4vDS": { + "balance": "3664.863352805", + "bytecode": [], + "datastore": [] + }, + "AU12eAy8ha3JeuHDaCxhHA5YGsHWZvNSxQEyth1VnJBLAV3kePr8M": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eBA3UUYouzz1bJZYXBBTQXEmvyEVGW5AxXWQDz8Jso3kSgBNy": { + "balance": "3013.314959179", + "bytecode": [], + "datastore": [] + }, + "AU12eBJVBxpZhxXrvwS5MEwZvFvMPhCGxnBbKXL2SzXQRhM2cVwN1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eBSNJXapxK6M1F3a9ACrboPtCM8AYSZCqmrV2LKyXb2tRGPfH": { + "balance": "1780.335366748", + "bytecode": [], + "datastore": [] + }, + "AU12eBYJdcGrnahtSk3F7nNLsnGMRJtoCeaegkx7HGzJfKKLfTQZW": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12eBkC9xALm99YGjaTXQ1pD4Aqtu8ePbs7JDqXkoh32SmiFpX6F": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12eCAUSNzCodeqMdov3Cp1gpBceWb5VF8mG336CikwfZPRLx7J3": { + "balance": "3496.418376052", + "bytecode": [], + "datastore": [] + }, + "AU12eCQ5VidvLK14Fhwv7BREyzLiD41LFmKsCu9Wkok6JXLywA5UB": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12eCp6D6EsGDQV5tx3dzPV2TpmLkKocriADBsHfpHMMwpbr72Sz": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12eCr288fC24KFdBw22aJ7mqjVjdWtDSntYv6hgFzxVocFV8JVx": { + "balance": "2343.640247099", + "bytecode": [], + "datastore": [] + }, + "AU12eD21eyJKVkZVsYFPYEQYtAUKnro26tC33zHbXVrxo9verPtRY": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12eD2SqToxu77fHTFaGCD9sisuJt6nG2S3KURGYLUFiQHZ7V2zb": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12eDAYVM8qvwcMzVr2w1euFP2Tt1nthiJDuVU8bjbBH2iLrgLnt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12eDEadKKfVEpiRAn4bAY1ugczB9WQdeBu849YokJa2DhMs9Yse": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12eDMwKn6KcfUKsukGakmEEnXnziJPsPLWAt2o1ZHA4wiRwgjY2": { + "balance": "858.900115021", + "bytecode": [], + "datastore": [] + }, + "AU12eDQdRTQACFtSccvLHpzGWQeqTc4yg78jS58v5sdqYnR54H1o5": { + "balance": "194.176228419", + "bytecode": [], + "datastore": [] + }, + "AU12eDUw9UC1wibUs7qr2VFhd6GxwpTaqScH9Q3NU8e5UqSA4NH3i": { + "balance": "1904.054855371", + "bytecode": [], + "datastore": [] + }, + "AU12eDVFyTaKg5BfZSAoCb6kUJJBnWQjYkR69fxSnDQ7tK9j5MVg6": { + "balance": "1812.064975544", + "bytecode": [], + "datastore": [] + }, + "AU12eDgbmSKbnqC3YGxJLHC6xRfDFjgZ57bdcstCyHHjD69d5kByr": { + "balance": "1519.777759301", + "bytecode": [], + "datastore": [] + }, + "AU12eDiXjSoxMPsav4j1x8b4vFtG7y7Ep7m1SgnAxviUnSibPH1uq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12eE97gAQ7TjgsPMcabrD7BfwQewDNvAVZUzFeAT6bRKkBBxCJ6": { + "balance": "1886.151231622", + "bytecode": [], + "datastore": [] + }, + "AU12eEHizTb3cM6B1UYxt99JuqHRveA3DPpYZ9TuzQsQ2XY2KdxjN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12eEn5bA5sArHEVc1tGL1KQBZRZbc827B7fzuBF82f7a6Wk6Vr4": { + "balance": "2030.751568072", + "bytecode": [], + "datastore": [] + }, + "AU12eFRpPDRDeUSXte88tJ1FgT49MF8vBXjZWn8iqYrG2mvtrENSB": { + "balance": "1064.330112014", + "bytecode": [], + "datastore": [] + }, + "AU12eFZiRjVMd5NBXdwbFeWHoqGgac9nWVF1rAk2MVqZzy9SKsJhq": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12eFfjRG2rRb3pZLTfxMi4bMMgehHmvYgmtYStFRE1BCRp8ryhE": { + "balance": "2922.413110621", + "bytecode": [], + "datastore": [] + }, + "AU12eGJb5D3d5WmZUsnga592tHxA9ByAyDaNAddJt5hTz4gZcaJ39": { + "balance": "4564.575825517", + "bytecode": [], + "datastore": [] + }, + "AU12eGV96h7pf88XitzBwygh53pPYQH2yx2PFro5sgD6KmjDuZcWH": { + "balance": "908.372558138", + "bytecode": [], + "datastore": [] + }, + "AU12eGWFiUFF6PzNsdvbeVkE3EgZd4MmNgTm65AtTKTmAn5hmtcfo": { + "balance": "1747.530487904", + "bytecode": [], + "datastore": [] + }, + "AU12eGkcLR7ej57WoknBGuddKoGmQLRpBW5JrdCkH7GP8r3kciFYq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12eH2YiydoqXMmitZu756ufKo5AqbTCrVmd9JBvD9SAhf3C4q3L": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12eJ8UJJ2DED7cM5MjSHm3ksBnAFSnXVbSSgQmhY9BkmUxdYcm3": { + "balance": "4391.742329223", + "bytecode": [], + "datastore": [] + }, + "AU12eJHKZmX1xRf9Evzbop8NDUn3LSjMSUvefJCV3RJ2LRciQdPL4": { + "balance": "2367.731019051", + "bytecode": [], + "datastore": [] + }, + "AU12eJJmHrNeTKskDZfVeeqDbgvnZVmG3pu6Dg7ANmSDmbjacHsLx": { + "balance": "2020.366233499", + "bytecode": [], + "datastore": [] + }, + "AU12eJSusSLouUFJH5Gd32CGuzHZgdmtqVzXJqP1Pftjz7gctoAc": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU12eJa7hB54qJbEPvsuGBi7Wuzh3Tz3CXxg1goeewPGdnFsWrkNS": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12eJuCamxgKatVjayt9VjwsZyW4dbjnAJA2wrEySJC94p5zBbGJ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12eKjsUasVUjzxeFKeBwKsiJVMgWu2VPkpqZdhsLiXaEgAEnp7n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eL4xqjrac2c32T3M5Kg7E8xviv4mjJAB8unWg99mv7hbANat7": { + "balance": "1509.212056725", + "bytecode": [], + "datastore": [] + }, + "AU12eL8cHjW9BirCfz7gA1XDh3FvUYAMizfCSPHi2r6atq2FRbuFw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12eLD2A2uQw16gpP4zTe2gcZy2gLLtHY3HqiFFxtkxtb9N4B888": { + "balance": "3604.058422164", + "bytecode": [], + "datastore": [] + }, + "AU12eLJXkUkiHXNbQbidMHu6RgSaXd5TD2CKecY71AQWWNj5XHEJ3": { + "balance": "2620.902843389", + "bytecode": [], + "datastore": [] + }, + "AU12eMEy6yeEno2warvvfADjmDAc3vAozqwnAmDcYwvqEsbxSJEF2": { + "balance": "1445.399490728", + "bytecode": [], + "datastore": [] + }, + "AU12eMMLsDFfJ6wAZs3SCnTQcacPyrDDq5fFxQEmEV4xpya9pQ87p": { + "balance": "1615.073748270", + "bytecode": [], + "datastore": [] + }, + "AU12eN8DKoc1WpAu2osC9R44DbmGWEGhq5KkDnsz3F5Ke3ZbhkAhJ": { + "balance": "1663.343202591", + "bytecode": [], + "datastore": [] + }, + "AU12eNEpeRmsmhytvyPUuBBJGkzJPPU3umtAJMRHXeR6KsP5WRNjP": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12eNSZTFo5uNHRm3joWFSMVHu6FrqXT1vfJsqc6kmTRsvVxLKCL": { + "balance": "1999.324058564", + "bytecode": [], + "datastore": [] + }, + "AU12eNW1Wa2kz8o8qViw5UwNeeeYSdHbjr9FSDNM11ngrEDYMHzFB": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12eNdgVStZqyyP6w8B1saZP7gyvjKVzX1qXWgj1KKx8rMbMSFjA": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12eNdtPdybuDsTnhrBcHsNVicTLWCjnFMuo8w6nrg2d2FhsYca2": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12eNtb43dgeFAzZ5aTkCzU9D34ifMuZfPz5XMgmrUhrD6MHNhbS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ePMd5XpU6pyjW4ewr4kykSaeg3S4JHnMzB4YsbEG5HMyUuQfx": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12ePPHHwsRmbJkHHovD7xJy493cBK1DLL8H1KMXHJo9MwUbSR8C": { + "balance": "529.038128206", + "bytecode": [], + "datastore": [] + }, + "AU12ePStVFixFUA6tcwiFgNhU72WinStgH5GZ2qwF5jp1nqkTktjY": { + "balance": "565.910435225", + "bytecode": [], + "datastore": [] + }, + "AU12ePzV1s9H7bQY5g73VKTUwg2YJaCRYWNdgLEfbqQP45Pp59CeB": { + "balance": "1587.321653028", + "bytecode": [], + "datastore": [] + }, + "AU12eQ5PdAF1Mx11rtuD2Cqe1FLfwwKcU63AkC5vcybVMvAtY4nmm": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12eQhJscEeeyssKeYKdfekLeTcFqp3q3eQ87GoENhwbVW3WhANu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12eQqe6WqKwi54A8crZVSsT1wTPnietdcjrtT2UU9TJKRAUB5f6": { + "balance": "4820.248408254", + "bytecode": [], + "datastore": [] + }, + "AU12eQuyN7rDvnP8NT5eLHoKk1WmnEAK7qiscRUaRhv19FhCW5Vgu": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU12eQvMtcuL9TSWRT9WSGyCUr6G9nF2L9RVeLFqAS7ujFoQ6daK8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12eR3h81TnoVUUZxiTYqQt1HxMT6rvZPVtEEdbBYei3DYHjfbzL": { + "balance": "737.950415195", + "bytecode": [], + "datastore": [] + }, + "AU12eRAfQE5mhosgCaabHYJc5t7kVY5Kv544w6FRwakN3TevF6a2": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12eRAmcosDztUURsgo39x8du6xxfaCHSYSzMGRfrn79YcQU7b86": { + "balance": "1040.592743250", + "bytecode": [], + "datastore": [] + }, + "AU12eRKRL3kmLhr374ptmhF5x6MAYk2HEjcma6GVdsyoHxJ3rZSS7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eS7NEUu25dMsF8SEpMVfR8NaEQ9kpU7Ziz8Ncf4eBZ7j68Yko": { + "balance": "1942.294016855", + "bytecode": [], + "datastore": [] + }, + "AU12eSbeGJ4e1QKkAuqcf5XPMR8oT1m1f4BahDqKi8wi1X5rGMbpu": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12eTAkAptbDdHTrgJr8nnN8KFjktcMdqsCQQG5tKG6skuVq4aHJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12eTK4Ys3nz4h3DyXkbp2TyTCJJJoQKRHf6HsoVWDNebqhHMTng": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eTdMm3mhwxcyLnYHyS54ugbtNr3xdRL3F7HnaZa7bP3PDRtzk": { + "balance": "1490.303308813", + "bytecode": [], + "datastore": [] + }, + "AU12eTeaCLANBVp1X9rU3HXXNFfXmeRX2rpxR3hNsmq8cZ19BmF8U": { + "balance": "211.784165292", + "bytecode": [], + "datastore": [] + }, + "AU12eThoTSS7kFjHvAZ1ikyP7NAawQQ124sswDVrfFyWXwzbNwLn3": { + "balance": "892.058692351", + "bytecode": [], + "datastore": [] + }, + "AU12eTrR4usQA4BJtFAiX2p5ZeLh5ej8gU1FmAQDc5hwZJ5vr4Buw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12eU7tiApw7CWF5x2Kkens2VRZ7rALkz1t32rZ5xQUGc2xfrKgS": { + "balance": "4655.817117063", + "bytecode": [], + "datastore": [] + }, + "AU12eUPnpXqyKrfXMezi4VjitUZz2zKipPoYbLV7hu5SEjuiKpgbC": { + "balance": "2091.788325853", + "bytecode": [], + "datastore": [] + }, + "AU12eURJVAoGW5k9XvPKnd6YKPYeMAsefcLX7KqjY3Lm9nCv2XJNt": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12eUspJwNShDJM5RkdYZRY1Dc4rPbRxTEgrb1VxfjKUbhk3vDA5": { + "balance": "3244.933389058", + "bytecode": [], + "datastore": [] + }, + "AU12eVTrGqDFu5TNjDJtuFi3WBiktpSy8yuvYtCfzYjmWbwWYYUsj": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12eVrVnNbit2kfiQdyG7ZHrj56SwR5u972rkQXt3DTs9n8KB8Lq": { + "balance": "642.869476516", + "bytecode": [], + "datastore": [] + }, + "AU12eVyP3VgWPDyuSefhmhe2zPWfoATTdJCvERDPyXFkMqE9gmbxk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eW62SQQR1Q1qTKzaNg5Mg1hMHc4fRnZHMD2cGg5RuWJPaBXDz": { + "balance": "5460.434799747", + "bytecode": [], + "datastore": [] + }, + "AU12eWQgYH3zzPpTTa1iN7YjTvUtWoRJp8GQDRESGJ7Pz5h2SAuhi": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12eWWSa6AnmdJVFxqFqveMAZRBhZNBt5gscTgDCecyJ2JuiLDh8": { + "balance": "913.701124092", + "bytecode": [], + "datastore": [] + }, + "AU12eWfGBdKEVnhZhr4pDCZBuYRZZnaEksXjmrkehcBuKjuQgK376": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eWk64xh1nV59RdCnru4WjR5USRJraNQS2PSh43Bg7Qq1ZjuUs": { + "balance": "2433.875973009", + "bytecode": [], + "datastore": [] + }, + "AU12eWm7gHR1idyhhcBm5PfAqKp8GJkGE5yxL6cAByfQiUSELDa2L": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12eWt9WHWzN5oMv3XqLm9JErR6fMxc2PANM8Hbya2VBov8vUHgm": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12eXcF75Hy31qPxoo5xWbw8uM5tQECE9oZgjwhhWr5q9caxRgDu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eXpiWB8W3dJVq1XnDTpwcXLy8kznorr2JYm2H9FHSJn93mQpA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12eXtVxfaWLzzfmY5Q82nsCh9omzeFPBL4CeVBDkKua4xF9GsfC": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12eY97qoB5Jo9jKiQRhYX9NcJvMGrXvVDNJabUzkj5UC8TmWgTT": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12eYM12p6xn2hroM9Q2oNxEFAURaGs68teCbNbuuPYhGG8MUXPM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12eYZiC3St8XYhL8zEiyWYv3Us3ELSiFGwY4rmcLtDUD9rFeWTB": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12eZ55QP7vguJDAwvUgibMb72oNiRWRFKby2pdiTsBsANfy2aV": { + "balance": "1705.523251755", + "bytecode": [], + "datastore": [] + }, + "AU12eZdLVBF1hsWKdhc3xdNKQG577XyUBbuw2tx8ufMwYXMxjpjZo": { + "balance": "2075.153428782", + "bytecode": [], + "datastore": [] + }, + "AU12eZqFgSsk1FnEKTTH9cQrcjakVjkdpP9wniAfKyfJdNK55LY4J": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12eZzQn8et4xrF3RT2xYrBs2TtwhDsn35m161UGPtNJFRWToDyE": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU12eapkxjZXSL22pdrxCMnphNNRqa2ButnKEizVuL3ENVLRGkJQb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ebAHCDo4BVYU8mRYKjg4SvAMC3aXE48Q5WUNhMCd42d68bDe6": { + "balance": "1155.505333402", + "bytecode": [], + "datastore": [] + }, + "AU12ebUj7d79GxBq3caNNnnJPDiPsV6XkyZ1XDx1rX65Q4HVx92ki": { + "balance": "2937.751998638", + "bytecode": [], + "datastore": [] + }, + "AU12ebsAcGtRZb2co3w4W8Wa4rihbLPnBkPk5BHHuL1DyHnbVjb5F": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12ec6DJEnLRgSe19PdoLNkjLWCnwRD1prQVm1mpMSQ3hFwfBYCK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12edLukCSKjxuod6yEGyHxjH9xFJLTXZb2NKQSbV8vryrgq5L7e": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12edWjS8sqL5cPFEqk2AsHwTiuJtVBhr3q1otvYyim6T1A3AfSZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12edaXgpkipU9LhR67jkf7rqxdP8vWafrg6J2UXDRezJ4AGrmZa": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12eeCpGRG99U6ws1gNVXNZgQMv9qCAZoJrbSdRm8RhZU5tpWhz3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12eeRfgsV9wQ8bGTanLrc4dyBpc2EM48qAW7JA1UQHjUaoYr8qS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12efQVbizZraqHhPX1MGmo4qFzAXb5GMeXwemNVFgFbbRJVH7HN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12efRVNqvGksW4jGq5QRrpQc1iifiXRC7DJTgMLaVNVRzZhrbWb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12efyUCbjxAjZb71x6ib2Xj4CnrWYBtsNtax8wnScC4q5VaGkFe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12egQTqrikniy2wMbqsseXaMC9QM8Z9XtR1g1vzXU75D7bpdABt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12egtuttdZy7NbwCi2oPcThD13HUhvQfqKZmdoTUsUYTQYNZEEf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ehKurkgDhmxpvrTcuS5iQBfqXiUq8HiJSyZZtCKRS4nsNgqYg": { + "balance": "2206.317764691", + "bytecode": [], + "datastore": [] + }, + "AU12ehPTemqtRDu2Y1TJ58vCt4dsQBoqAiLo7iVLtGuofyuYhhiH2": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12eiMBvhVu3Vwy97B5Zd7NcBX3G4qMAycQELzMbeSk4v5CkWfk4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12eiViPpUSUyRY6jE5z8nvmQ1x3BKQ3Ps7audLQ7dGGX849iStY": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU12eia9bMdhV1z3xTW9W71nGmazGAf73YvN4trRHASgbecLrMddF": { + "balance": "2347.684238821", + "bytecode": [], + "datastore": [] + }, + "AU12ejV7rcNGT34NF61aK1cKbVDcAyCP6kq7u877pyh1EiQEzLVqH": { + "balance": "5348.390115930", + "bytecode": [], + "datastore": [] + }, + "AU12ejyZWD46yJhZ8n7VfqaqFuExAgbAfTCeyZMPPB51SM3dmeeTN": { + "balance": "1098.952725137", + "bytecode": [], + "datastore": [] + }, + "AU12eky7gtZis4TTZ9e9d9fp3PkL4GvDP5Tq8Lh4coPhT2JEoS6Nu": { + "balance": "964.666807542", + "bytecode": [], + "datastore": [] + }, + "AU12em4QXzpsyouuyUHob9YLDz4dKP7BPnWkBJo7iENM8cqJqWTi7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12emsBAwqAEzYFfZA1dZWigQu1PU1XK4cbC6bXmxVbs3z2pBzSw": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12en4d6tiisux8PSP6D8ofFVUBj8pjR4EZ8o6iNPdZkCYBfkikj": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12en677NxyDhYhyvQePyhkASGnsiuREMQdae1EUYJHqjfDBik62": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12enP3eewNMDHJHg7A5uTJSQyFfDe5m9MGDcJENoKYyYkA8DLxG": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12enR5X81GyJ3K1MBrxKKzzpK5yTrqMKqeV52cbQA44gswtw2C": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12enh9NmX9DzZfanCs8YKAxZXkwaLL3suECb33jXpQ2rrp1qftE": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12eoDks9JrqyBRxTRqGXt71PaECRAVRMB5nYtKXB2vWRgR6M1Jn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12eoerDWEzjLGkfqHHeuhYM7qonScDvnu6i5sFvRWxEV7rrWuBe": { + "balance": "3609.760297872", + "bytecode": [], + "datastore": [] + }, + "AU12epJ6sApoB6HJGvkndoaNDfNjrw1efQvfpawrRBVxjAD4Mzty1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12epL3sAMEojDecRvJVS1iZGyMaUWAQgPHoH9KqkvWweLwXumCC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12epVBHqZDePMfFck5EJgAWyVVfuzekjdvuipd2a21u7gKok58f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12epZ384sbyebuqzD7VcMawmrK27ica81JJ6NE9Mfpn42FnN3hm": { + "balance": "4825.514241207", + "bytecode": [], + "datastore": [] + }, + "AU12epbgqiDNVrraR6fsDyHBTRDgst6r3m5Hpta47eFpwnEMvUfLx": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU12epd3bhfnm3NbZcdwCc3DPpSt12tw9NJXgePFa2eVvuRwxFNHt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12epo2L5mFnYfYUDTZeGYKdxgytMnkN1JdjEjoKh4KprVFSJpZ6": { + "balance": "1947.378686596", + "bytecode": [], + "datastore": [] + }, + "AU12eqVhy4S1Wy7yTsjSt1WSY794mBvkVvXu8AzoSEGmRcvZNzhDS": { + "balance": "2875.645991113", + "bytecode": [], + "datastore": [] + }, + "AU12eqYWdo5QrH3pdAmCSrgWUL3dtCLroavMwmgnSa1WCVYECJHjw": { + "balance": "3.649255181", + "bytecode": [], + "datastore": [] + }, + "AU12eqa9aEPT78TGmarH77bmbWyVEB27TiFNBTXr67bVpFtKoFBXN": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12eqmyqUCdhL2oWURX2NCSjdeTbpmEHqoyunZ1TR3ohnnrYL4yC": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12eqo7GWkfSpqsYd7pvLVMSjom4J2FVBrSArfCsEu9s4SCVX4Mb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12eqq9yrmQvRCZPpksjYcLM3mLv8sT6dNxbSZMwoTjvGizcVY9u": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12er9fxT77L4XBavqKJnXaam9mXKAvZdereYMV65nKABm62kkj": { + "balance": "1494.140040652", + "bytecode": [], + "datastore": [] + }, + "AU12erYaU1pYbwxofoL3ZyQZGndFbHJbGNsVeTT7xQNCWt4SbBweD": { + "balance": "4983.377186887", + "bytecode": [], + "datastore": [] + }, + "AU12es6DvaA6gugXj8vSfNaidtAub2hx2CgUrW5qUxBiSYBUJqMkQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12esGykSjzxprzTpRGLJYRzP44aUt59wXBLmJT6mkvvdoAGjbt2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12esQa7Nc7k6Qvu52JQVXuzQXc1U57vpaQLPsUwaXqRB5KiWMFY": { + "balance": "1325.536001126", + "bytecode": [], + "datastore": [] + }, + "AU12esgDCZKTB3tWcoizxeS3ukrcV4NYZmL4h6KgdCW5KJwNCSh1a": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12espo2VnkFi5xfyv16FhqTEUuf76Cy6U8aVq7YWUN13wNW4xQD": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12esu2S4bXy1u1CowpnrAbtaSV2Npf533zwconpU51Bepif5sPY": { + "balance": "2829.428047304", + "bytecode": [], + "datastore": [] + }, + "AU12etGvekJdzezxY6eqGbugn6CkifrodiZvuh23QHtzsuSyy1wt2": { + "balance": "56.418996287", + "bytecode": [], + "datastore": [] + }, + "AU12etW3Gs9ZnhEkwjPPS1eyjkYhgPyGymYt7SUhHs4LWMNdufXZ7": { + "balance": "1972.953366011", + "bytecode": [], + "datastore": [] + }, + "AU12etrztZp4XjfJjs9ZzwHTcm6SZgZv9tJ5pvoRzWofENpr3nV61": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12euFPBT86i2iq4y69mzaNyz6JCoJtd9doGcMoPCgAZJGDYDGLa": { + "balance": "5473.891584905", + "bytecode": [], + "datastore": [] + }, + "AU12euMaExBWTvXUfFLuaodAf2xCzPMLhK4oSkEEC8RF3XTuqK5cP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12euqMEtBFujd8uLaBurDHgRBLwJhNCrbhY8uEuKnGHHLuePmEf": { + "balance": "2679.976779504", + "bytecode": [], + "datastore": [] + }, + "AU12eus7qNushsP5RacTjjJCtXCXpfJaQs5JKKMSPNoGW4DZnuniP": { + "balance": "743.986104336", + "bytecode": [], + "datastore": [] + }, + "AU12evCtwqHYxPuJ74De1Er3Lz4U7BoZhsm7v1JKLVxho5Uwx5b8T": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12evSXxogGFWLCHCeuZnsWgvK9hBtmjg9zUTyKwY6tQZDuSBiK8": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12evpHd53g85ZgAs7FWWckae9SA6ZvqiiTukQzGTUSuxc4TdD4L": { + "balance": "5473.218090183", + "bytecode": [], + "datastore": [] + }, + "AU12ew5Dq9sW3Tr4b73PZSZtLAMwqhjq79N9B6YtnXCyvDNRgY9bA": { + "balance": "70.957095710", + "bytecode": [], + "datastore": [] + }, + "AU12ewGUXecLrHpx1MA5PPca2br2x4xct5UCN7MZYP7FtwsBQDNo3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ewjdNxWMFGKyy7MQDkN3vEfSXgM4kvwmmCtc2MSwjWe37P1MQ": { + "balance": "906.447334823", + "bytecode": [], + "datastore": [] + }, + "AU12ewnY5fMffUqrsfCkFKm8UQWgUtHDEfVu27eSRZXLQgTyYX37z": { + "balance": "528.965517018", + "bytecode": [], + "datastore": [] + }, + "AU12ewsXYFsKeYhjYq9nUTrtjHaB5AjypS4jH61JmdKAiT7G6oGpG": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12exEyczfpSGpEiRY97ZwxgJ4U41VwLfQVVujj7EEdEqwCrCKy9": { + "balance": "2789.636281347", + "bytecode": [], + "datastore": [] + }, + "AU12exKZu2un5b8NuXGN63wWUCB6ouZT79zB8kxwSTALGwhS5u157": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12exPCCAEnkSNPiMQ6KhmaGobDSxqZZatLFUCefdieoRsJ9Hgj2": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12exrRztdMyvTFDEU1a6rDkF8rT5zphgJ8ucAtQTj3G3G4hA4Em": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ey8kytUxw1duHbhy28MhSn3tR2DWeqxGK28XiqHHNX4qtthdR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12eyCC4JuV7VWr4tsvrVL8xE5FCu9NzGQ5U5jod6mhGrx1MdoF": { + "balance": "724.217043555", + "bytecode": [], + "datastore": [] + }, + "AU12eyJcLxpzGQRtsc7A4J22KAJjuDXVNXjB1h9yKAnx1PqBVPi1s": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12eyZV6iN6FnCmmcQ9vRa5t5k586kWbA4VQyxoyyPnXgtT9bgRE": { + "balance": "280.381422934", + "bytecode": [], + "datastore": [] + }, + "AU12eyhQDttPUSWkwA9FhjzVjtt49oyJkWHiRmzkDq7EfNoC3XnPS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ezaRxTRrJGw4n8pYecN5F7SCKxfEntsfmCS8veCKBgARoRwrD": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12ezbnE7nePN4wPup7s3KotUgQHgt3jiJNkBdZqyXy1RgErYzkg": { + "balance": "2045.851633023", + "bytecode": [], + "datastore": [] + }, + "AU12f1GfJPFs7o5n5spiVReWVdfnL77owf5C1aGhRiFTECMXUrY65": { + "balance": "4398.040849982", + "bytecode": [], + "datastore": [] + }, + "AU12f1aAL2imJYCDm4BbZN5GewCanmwdEAdBbEBDR69uaRRGZNiPA": { + "balance": "1109.236453900", + "bytecode": [], + "datastore": [] + }, + "AU12f1ceApN8NZZazJzQn7TPb3twGEJeobVuWSk6jqcboPrWKvFf1": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12f1qG6nznGjXRBA9we69Dqq5tJtpCXnFuiGdh6PC2wsZ9xnFv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12f1wm7P7dsHA2v13JES5tzbm21j5B7sDSxhB9NSUx2PMTbeaBv": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12f28xVB66cx7jWQGC2HNS7aQmipEJTidgQa74H3ssH2mTGRc4h": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12f2P72URphfNt9rRNA2tfaf53v64r4sgAPwdzbxiBv7Vfkud6X": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12f2fjrTsWSeYdSr2KfkioKs7mqPbm1pQXDsdMuCg1iJQXKWTBp": { + "balance": "725.453684981", + "bytecode": [], + "datastore": [] + }, + "AU12f2upbvhKPUevxxV1EuhhXgSRE1YvFEMYawqKerPqXsMHX6RsP": { + "balance": "1558.373386990", + "bytecode": [], + "datastore": [] + }, + "AU12f3eiwNgL9gwztu8or6rqtmbu8NzTWzVqXvknKy6FBHttnExtQ": { + "balance": "3940.024689552", + "bytecode": [], + "datastore": [] + }, + "AU12f4CyQy6T9y7yaeiQbyjiV29tbu9PCL86JruDaqBQGPunDyGyG": { + "balance": "915.901980195", + "bytecode": [], + "datastore": [] + }, + "AU12f4JitFaR8QNJBcPevkwgGq2hW7hKYMSST8JvumPez9e4ShMGe": { + "balance": "1854.852936222", + "bytecode": [], + "datastore": [] + }, + "AU12f4S4H7C8gjzFAvHqTLYCaJjpC3V25jihcXTk8ghhCy484qiD8": { + "balance": "754.749265974", + "bytecode": [], + "datastore": [] + }, + "AU12f4Yqbde2R8qm19JEKUQhFsuxcCTKkCFWvYDMAYQegkyLMYPcD": { + "balance": "1731.140359037", + "bytecode": [], + "datastore": [] + }, + "AU12f4ZRJYFXg5JnmSfEcWLjGhbVGgCgfLeqqayrHENjtdNcaBDvs": { + "balance": "1859.392185751", + "bytecode": [], + "datastore": [] + }, + "AU12f52SFzayLhT9KvsnWNf5MsBg5c1xwx17zpfR5wyYDKiEuC7iS": { + "balance": "1429.346326774", + "bytecode": [], + "datastore": [] + }, + "AU12f5CA86mgoK6ivGiTavH5yXvm2qRqtqerZubdqHiCx1hCo8wSY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12f5dvaabiJVhwYQ1YmGngzeZWC2S4s3ueHNBcTkXErh5mr19r2": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12f61Vsfi1PecpheheCHFP6znJ9tifM1EV2VRi3M19o2rnpUadf": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12f64qph12aAjizWKLHsqD2BVw6QzeX8mgjKe4wyYJDd7sBF3v9": { + "balance": "187.020522811", + "bytecode": [], + "datastore": [] + }, + "AU12f6W7FnPdCnLxiQ3wScZ2hkaFdqmWNvzwJXYdCEB5cQTkQkSco": { + "balance": "2492.105742446", + "bytecode": [], + "datastore": [] + }, + "AU12f6d2EYNegktcQcq2SEVoXmou9Awcz7EXXwqRZje6v7C826M2b": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12f6imXBFDAjdac5Kp9NaUsMSQ7SCf7aXVuN9zx4uUyXf7PB8rX": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12f6rJ8HGtVgHx4bjcSzEA6UZb4stFnFc1k6nMPdkiccXibE9KZ": { + "balance": "779.888186886", + "bytecode": [], + "datastore": [] + }, + "AU12f7757csHfg8RuRJJE4Ee9n3pQQXR9jDRvndv9gFu8RjA2kDL3": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12f7AwgfHDNFr3KUY9KvuwfHxWXWKrX7eqDX3QWJbKMeC4GAPu5": { + "balance": "2941.208810454", + "bytecode": [], + "datastore": [] + }, + "AU12f81KhZAfmKyZCGvtfCW2DC6gRfqGwZ4ZTK4GfBoHBVJxPTNWG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12f8BWQXENJmC6Z8S6LfJ1q4UjiHAwygwgGEmm71zZ1dKNf2VG2": { + "balance": "4562.428435867", + "bytecode": [], + "datastore": [] + }, + "AU12f8CHjNRh9akZBMtNtj9y5hznWGoBB3M9AuVkgvGWTb269Hfwk": { + "balance": "1088.607012721", + "bytecode": [], + "datastore": [] + }, + "AU12f8iA7BCH1W64qNi5cCDBgjx1vbBUQCt29ch3sMEpzVdL1Fozu": { + "balance": "674.800246608", + "bytecode": [], + "datastore": [] + }, + "AU12f8kZRTCbY4Rq5MoarZwoyMoioH8aFT3oku6cGZAV5vGWwrQA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12f96tMRAqDQ8AF69Rtqi4zKpgkPYYWW89RN3a8xG63wDFiSts4": { + "balance": "1748.259849848", + "bytecode": [], + "datastore": [] + }, + "AU12f9HrqWPQAmrYXCpuqWXCPcAfeAYu3LxBwcHsVfyN9L2B1pxdt": { + "balance": "1747.005979242", + "bytecode": [], + "datastore": [] + }, + "AU12f9L18Q7P74v5SsswV3UjP3y5CETmZqmfPJhVjoCt96me8Bst5": { + "balance": "919.995971209", + "bytecode": [], + "datastore": [] + }, + "AU12f9mJTVwUmE9hnaW17ZsN7ekkBUBFBjfZAcCcFq76AQtnoCk2f": { + "balance": "770.850879729", + "bytecode": [], + "datastore": [] + }, + "AU12f9uNnaDsiLusfrkJ8THuSpv9vwZdx7eTwjq2CyitzPUYtmcSh": { + "balance": "566.963371548", + "bytecode": [], + "datastore": [] + }, + "AU12fAJrYTRMno1fbUzmpMLDWVCxeYd1HH9x2dQefcbf8Aks2Hfzx": { + "balance": "2988.784402685", + "bytecode": [], + "datastore": [] + }, + "AU12fAMti1qkjztBzWHnb52KzYmjwvYwFRNoaJz2jksnkA6Xd7qcc": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12fAabepe3AWKJjN1Eqn6niDFYpijUninfxkmb6nthGLhhuQQyT": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12fBD7SDRUDVAGfqbojQwPVCi6n824QJx9znxSakC2fXWzbgWpf": { + "balance": "7743.321717767", + "bytecode": [], + "datastore": [] + }, + "AU12fBLh1sLMZSsgQGPvfb5FpEApUUXLD4Uv1sohXnBtDR6PPg8Be": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fBkHewZXVmuyb2qCpjVWV1uxSWwsj5nMDPZmbWyPW7EW6io6b": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12fBscKWa45QWTq8AWCoz5BKY8AzTyEeLT9iz7prdpEUWfq9whR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fCMZee4SNtBvFHTD6AGDA6gXraWNvQy887haGU4f6zVUFoRPC": { + "balance": "1802.868877785", + "bytecode": [], + "datastore": [] + }, + "AU12fCQtH74tzde2n1dAjJvRazvhw82iKVbZfmhbKc8DEnsxKB8Lz": { + "balance": "1527.133825738", + "bytecode": [], + "datastore": [] + }, + "AU12fCeucMLvLLML5wFKrXX7TEkqhwhsqrBZ5m7UGM5LSNQFgHJqd": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12fDEca7vFiWY9fRKuJg1LXuPzGNDf9Nw9YjvMxp5FsyqdjUaus": { + "balance": "578.562845470", + "bytecode": [], + "datastore": [] + }, + "AU12fDF1DhWenV9xVHU7pJfvupX8nZWirLjWH9DACrrzUyRU9j9eT": { + "balance": "1557.685119172", + "bytecode": [], + "datastore": [] + }, + "AU12fDhQSznMTkX1vAE6HhS9C23ogqrZa6UqFMiNv1pT4yYUVa9Yo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fDjm9VNGRZivudxXcGUKVkEmMfRxM7ADq59HjTApbLsvskZ2w": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12fDrkWqoRjUbHowjT8NKsHxGoT1syvx3DG5zKoXC4s9pcmKJdP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fDruSYLwLbGkUFETVT6k3SUTvSMWEtJFy2UfuapfNiM4zv4Uh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fDy4uhZwTNbfxQs3RzZoohwC6CYF91v7WhdJthGvCPreyNpWc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fEDbtRtrJhsFKrtP3TwZcM6vNqih98aF7eHuSwTZDqJvBZYNh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fEJsQqspXiNv7meD9Z9Hp4P1aw6qbp7eyzGFjCjvSmT3vRzoJ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12fEMWwSkjhQmXywKDsxR9Dw7paAELz31Rxga8EgV8rbnFX15Cw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fEkidowQKbh62RBjLEcn3omizPWj8AwrNGuf12u8DdqPk2a6u": { + "balance": "1995.535806860", + "bytecode": [], + "datastore": [] + }, + "AU12fEm5TriWd27FwVdisWZc6FdWVw4TT8qFsARiCD3z18E6duUtd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12fEqwDXVE3X8Bq2dKnPidBRwffJxHt65HLB7KFWfw3hMTKSgh7": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12fEugnLgv9wnTX73WvGdZxjbFRe2dWduevez1tT12sY6M7XHik": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12fFskQgV33MgiRJLTaRKRvtHE5YKxyDYMhYWo5rpAy67CuMQXX": { + "balance": "1845.932159646", + "bytecode": [], + "datastore": [] + }, + "AU12fG2DCXYiKv9ncU7pPicYAQzH8KWUKBRmysHvGjra8LCGa6hku": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU12fGMbi1qJiVwhvm4dvJNXVKGrrKMMNs3sSBZQwhXNEAKz8bTir": { + "balance": "4822.241601944", + "bytecode": [], + "datastore": [] + }, + "AU12fGRvCLBKgbcJ5fkzX8bjjQr2GXdeKiY5re7Y92KkMeSdr3dqy": { + "balance": "1909.271863553", + "bytecode": [], + "datastore": [] + }, + "AU12fGbfoqP8j8eMpZUo1whQ4EceYU47VS7FFxQdwb4CqwtRZ7pjp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fGhn8HT7GN5ncoxHWgvkZgAaX5rqDqd232SKiT1d3beWwhRN6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fGwEJWbZJs2EejoTH4yJFj3Y3g3VUkHg62taeT6CmPoMBRFf9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fHK1wbvgTNekLWMJhDDhaAX6KYGA4e535aNDJKBa677ectFLC": { + "balance": "1473.729387416", + "bytecode": [], + "datastore": [] + }, + "AU12fHRbytRVdjqx1LG1yVviCi8jMRkZ676iHq7vJcxsxzJmx6Mbs": { + "balance": "1226.326999013", + "bytecode": [], + "datastore": [] + }, + "AU12fHm7MC6byBaydNhSu517Xj1XomqHVD2WF6k6Bdmt2ptSFmTKv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fHtSBrUwpUaVQVhWGw8yhYDbKjQKcjthcDtY9DCKoSEo9HDuX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12fHvSi7gpEHpmA9H4y6DRUVgfqyUSnKr7pwsYTYGtCbCEfDLEh": { + "balance": "1000.420238068", + "bytecode": [], + "datastore": [] + }, + "AU12fJ79qjgvczz6aF2bNFiq3xNsBbCqG8HV3r9zYBbPnmfjrT431": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12fJF7a24uEpbjV28h6KFoHJN2iKMzGfo3wwSFLLsvaKvg7EYof": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fJLcD5aQ3po5BrKd4BcF2eZsr7vnNYspx3f65BfKcVBymy3RR": { + "balance": "1676.458311242", + "bytecode": [], + "datastore": [] + }, + "AU12fJaCuxugUCBtPPDYkhWXwSZyB67ytzWauTuJDM8Nry9QxPXAi": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12fJbdvYjuvwncyf1iqjFUYMMqPxXRTVRAGMuTmSBqntPHeQiqA": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12fJfNS2yQC6fprjRtZK9DGcvqnmvCFA8SHB2ynbYNA7SKEYUoj": { + "balance": "933.446066289", + "bytecode": [], + "datastore": [] + }, + "AU12fJo8DGj7YmdjmQNSSnHUQMRT2JeWXUNhHxDnaKZsxBiJGZVbf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12fJtiWbA76AVBQxT9qBfQym5VL7U1ZgeKorSfMZQEEkPApgVRX": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12fKD7sJJxHhzWBQRosiQh8A4T6x37jqPpE6wQLajeYPs1FhjrU": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12fKLeM3NxeWJ8Wx4tFNTxkoYYmRKVB9JmXipS6asjQPfpsfUHk": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12fLBgGpw4XKgcf2Yx9NkakWELgoeibckYfbA34LxeYM6h7A3hY": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12fLJgyr1xJnrXiZSkFdwmELSntDQGJmJKsBW9bGSC43Ust7PnH": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12fLSxZCrMZ3BkvTVbrDmnv32hKE6Ea1KBi8VubsdTaSvJu1ccX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fLVQTSkP9k4HHG41C8x77KFbR3vf26n6gAeLG7t8xuA6hXJeH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fLmBGP4rvYMHdTNcMA7PbDGKHt2hUeRmuLaTBZJi6zy7j4mMf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fLmem9bbnG5ZdhsbJP2SKptF7vxzMz9oGYsEYRprfAwtyS28P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12fMNnQdkkHiKupGKDMhNVJi2EX9WxWntmzV8i7HaK97ewKvD8": { + "balance": "1296.032578663", + "bytecode": [], + "datastore": [] + }, + "AU12fMZXP7iCvhC3kmbarKpdHmHBBFBHW2HzFNDUbuPmaU5yKXHW4": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12fP1duB2LaAsgHeAeHbnXZV9FCp3Z9FKwSU2BGeLEfFp2PHVGK": { + "balance": "1353.810729042", + "bytecode": [], + "datastore": [] + }, + "AU12fPW3Hzdva8hWTLRkfqn4HrKb86R3y8XMmnNecc7xUX76vURvQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fPwJd62t2Rbjer4LVfjd1FyWTv7FLYBnbbKMEhQmTXDmVn2Zh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12fQ9jzFSaV8u1PQckDACyymuqydcQzfU8f9DwnDb5a6FNYjZ5P": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fQCoZ3BjHrpWcw2YGDDLG9KfQXqhQyS18yDt9wiNbeHSsZSjY": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fQF9sNtY9AcGMPx2KvDPHEop5AFDMPZ59EYW4jQYLh56mt7ER": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fQVDPC2Cn9M2ijkgLsztuEjpNViaUK1DKYLVacUPVMRno5J33": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fRKd6xy6JbakNpaFS75WTgXxt3fgrRSKK2wExpHaKTuZm66kp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fRLFdvQpJpWNQtvxUmyZcykM6pBeqZk2b763rMXQkMXZ1V6hE": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12fRZ4ehkq9VyT2zC7LrEgjQocAWaAN6KZTtwLcDKR3yiDmPThw": { + "balance": "2986.083081105", + "bytecode": [], + "datastore": [] + }, + "AU12fSLLXfdDM6pWUi71nBHs66tNh8UyMHTNPDCLqEtP6XW2qAPTT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12fT9fHX1m7vSCkSMehgtdSRuFBpra1twCa4fQisqXLBurffz1G": { + "balance": "3613.944002171", + "bytecode": [], + "datastore": [] + }, + "AU12fTSr8uuiKKEiRYcVvxdPRSouavLM2nqi1BDmqvvn2Yec1bd5N": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fTYA9qzQTFVUwgc1L1vDXQ1Mguv5LN92T2qdM8hgXP9RH3rdA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fTx4iDNkxpBFfMb7ExxWcpW6W3kzcYtQKYRaS324r94NeRrEh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fTyZMy1udkq9X7UsZjdthYRfouEaFf38w8BtjCgwrFwADxUFi": { + "balance": "2323.639707154", + "bytecode": [], + "datastore": [] + }, + "AU12fUVo25PvmL5UQhBxmgfxnzKz1P4outZzXDRXuQGCSCg4MTJwM": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12fV7K4hdpfWruAKkpoyksr4JjBBUbBtKYzRDUKksDBtV48RKyL": { + "balance": "668.198691343", + "bytecode": [], + "datastore": [] + }, + "AU12fW2SLXXhYYGBsHeQ9NmoZ8iobV9eZbQtWMLdiKq9HxkVVhTMo": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12fW4eNyznRcDfez88bAeFs2LsBoourCP8bnw9k1RDqnnSYXm4S": { + "balance": "1008.673259469", + "bytecode": [], + "datastore": [] + }, + "AU12fWvjuXU1XQ9N3w9Y44T7zdKcFP1wiboZ2hzDKVKYT2JaPwEkj": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12fWxGRf6fktxGghdshPKV45vKWmY3Dn5HCCf5aGHR7ZrTv4rWj": { + "balance": "1489.659046300", + "bytecode": [], + "datastore": [] + }, + "AU12fWzT7YYqVC1vqAw5LTaNotWJVXz9fhuVbyNSybN5PZMpAxTTN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fXPAzuKKnAh1mAFP55SLVkFXS1gjZ9yBf5WnGRoTnf5CWvKws": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fXSF4t81JMuWD3MiVVwHD1CWNPSHEkP64c7BFPZ5r1EmsGMy7": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU12fXXCKZR9ZuY5tkcAagQ9mnnS4M57xxA1DWeoNnxSC7x9ZjBeX": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12fXcxKyVRWFxWHi1AhgE8DhzYeKdMpRDnfDKEKDdgPjusT25nA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12fXf7AdVgtUEpZ5sWNsMiU9FqUWhQeVyhXqBxjMJZafwxAZX52": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fXh8xwMVDhsjzkH3b3zQJUjA6NCYAktZfvGxn444qabH2jmRJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fXn9C9huJPKWYe24gFMJXAMxD5ddQU6sTQ3VgvWfvsEoZYbFo": { + "balance": "641.178744284", + "bytecode": [], + "datastore": [] + }, + "AU12fY2CTrixv9KEQ3Eaq7CtHiaYyHTfUcEy5XqpdfxduM7F3KnBm": { + "balance": "276.316083845", + "bytecode": [], + "datastore": [] + }, + "AU12fYdRknnsQvUofb23Bv6zS4bffqbaeEBMbAoVRJkBYoh6ifZ5E": { + "balance": "27.694573999", + "bytecode": [], + "datastore": [] + }, + "AU12fZ321GJ3y8uQqMfJftcABdR71gEWde7HHtSP6CvEMvbkgEZjM": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12fZ7raF11Sfu7bfn4g66XnzDXqsXJBfheAmwC7TMGW6UVSeTtR": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU12fZWWxfEW2TzzRKG7hCvPBEidFWMwojpB247vseipWkdx9sxq4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fZjLJ2Kyuab698pgpiKYKyA6VjhSsAmpsVpUkK1xAXD8np2Gs": { + "balance": "3131.847334186", + "bytecode": [], + "datastore": [] + }, + "AU12fZoda3UUnMBdgC4HwTttToWYV4qqnQatS1JR1Gw2WKC1HQAB4": { + "balance": "3121.599910011", + "bytecode": [], + "datastore": [] + }, + "AU12fZyrX9NdN2QaT32q8x7gf2HnSgYoRAF7TFGoZRhcqGScg5NB9": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12fa5qv2cWNoJXuuYAcGmnzRQqEhVx5hyHDYsfbRDfxof2n8Cjc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12faDCNi4UKbJkuHohfYu2a6Tv5Efs77Di1bgFXosVq9EaNqyxv": { + "balance": "1292.724207743", + "bytecode": [], + "datastore": [] + }, + "AU12faGEBJ9sHNrPPuejqHDRRXnSHf3WtjYdkbpLLRyZfgJ3ZySmw": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12fasSfeBKAeDDNc549JvFPuX6Uis2tVrFRDpG5ygGTCcEGCPGz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fbC2UNjyAx9QjLco4rmZH1GAej566u4eZdX4H6HsHh7WGauy1": { + "balance": "3212.470025714", + "bytecode": [], + "datastore": [] + }, + "AU12fbExZWdn7CSFMBa5w7yQX5Uci35ZDjJqPkcosaJ5sd3w6NnF6": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12fcFrgMKxmNTvSQQyZYQJPrymif4G4SKQ7eMv2hkJZZTtEmBK7": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12fcMrejxR4v3U5yosf728y4RebHdwmCZCwDitSisYZrmscCzov": { + "balance": "3124.193012765", + "bytecode": [], + "datastore": [] + }, + "AU12fcN1KYwannS7VqEZbUczTu5iWtqEdoNkFvo7MJuJ2L7kt84rt": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12fcttLDDNkQk6ya1wAUuwQ42mpwMmoayuBYZDVAevfPBHTkzFY": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12fcyGcBi7vtUERue9F2tPdiWEjR61HM2yV4wzAkUL9LA34SnzF": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12fdRt1bPwfAZEWsYZAx8TjSj6sEFXJJ3gcgzp9HXayG7moptb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12fds58N14Q7sFhrJ46EEoxbBU3zh4Dr4HbyBe7kYy6fgN7Sthc": { + "balance": "1499.652727036", + "bytecode": [], + "datastore": [] + }, + "AU12feeKGrUm1m97YrX6pBW1FSnUN8sHUv9sPyzYf1gPrpUeyTRz7": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12fewt3ZnYi8deV6GZbV5GPAtWf1ihemjNbtRLc5pHEpwFfTAjD": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12ff5cYGj6NeG22MEMJN7pSX1j8eFGPtb8spZpfdz6a1RSNsrz": { + "balance": "644.187695110", + "bytecode": [], + "datastore": [] + }, + "AU12ffTyqbhFTgbrgNGYXECp2HjB98zS13mwM3WE3vv6QyfHwjHUf": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12ffXcfuboJ9XY4qcU72gbPzyRxf5dcysfZ6BhCqwDuRx788VK6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ffdREt6PReiJ4xjsDkBhGHfWp5KKSKBDihXAXaCMqaacmTPa": { + "balance": "1154.084759538", + "bytecode": [], + "datastore": [] + }, + "AU12ffe12WFB1V48A2RRDYGd9NktFsZKZ9hXrnQeSAfRGE6V1eP8D": { + "balance": "3056.288837290", + "bytecode": [], + "datastore": [] + }, + "AU12fffgbFKMRiQc8yzMe46Qi4KmPArxKtX62sZYWGEK3srYp1HY2": { + "balance": "1741.254728896", + "bytecode": [], + "datastore": [] + }, + "AU12ffxgbyRucvu18giKUUYKJeewd8tzRy3veK3DYKjCiuMuLaAkD": { + "balance": "3939.532921621", + "bytecode": [], + "datastore": [] + }, + "AU12fgJ3oEQ3HGkhA4DZgPRCSXTsXBE8FxLTrX8s1drJ1qtuiizxG": { + "balance": "1175.343436756", + "bytecode": [], + "datastore": [] + }, + "AU12fgK689cd4zEpCBKxsNScSS8QqgVn62qGMYZkwRScpugSTPhjE": { + "balance": "628.088199500", + "bytecode": [], + "datastore": [] + }, + "AU12fgREUiedi1oa2sZ5t4QE5UTKhi5SZWv2LZMrN7bg7qbyyPjpr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12fhNFsickFX1EfNyx9uoDsh9h9oD6aGgGiSNqSnkaZwv77LLEJ": { + "balance": "632.912802762", + "bytecode": [], + "datastore": [] + }, + "AU12fhVXFMobb4XwA9KBY9DGtAtjbu14UPc5UuADaGUgthGEmErSP": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12fhd5FZd3CJp9hKeo3HxzDnudQP76RFippz2PH8N75qeyNd6xq": { + "balance": "975.883513853", + "bytecode": [], + "datastore": [] + }, + "AU12fhvXfGm4c6iG6ERyUyEZDag2G15hcpCMRP7ki9WDmjc8NuFXj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fi5B77FZpYQkW54r9VNV27DmydsP6tsLgWJokRBV72waH92cK": { + "balance": "1811.183209405", + "bytecode": [], + "datastore": [] + }, + "AU12fiHFngeb439EdcXFYjBNuKfy1vnS7Zi9Fq2JmHypnPw87pjZ5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fiX7CcCYZjDKDZTSTsqzqQTKvT2GwiMd4XH5nAcJJiPkhJ5cK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fiXhnw9Xeb5xxxZvDpnNWSGGGa9v9N3uSnTNmrx8d7ax9jAr": { + "balance": "1694.477191233", + "bytecode": [], + "datastore": [] + }, + "AU12fjvC3px8BHxxzDK4kXVsdHuYWbP1mXa6qBtLZthAzkAZWSQ1": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12fjyo9Po3TehBmqE8gYGqGXp2Ct9rmrcACcjDZg6UH6MoQs8yy": { + "balance": "4013.780854029", + "bytecode": [], + "datastore": [] + }, + "AU12fkoR39JToUNC8f4967fNYsufeZY2T5gdGqwrJ72SwRBcCHsEV": { + "balance": "1373.221126905", + "bytecode": [], + "datastore": [] + }, + "AU12fmLjCAxSN4nMNEtWCiTj3zet7UkK8qdQ5dPw43GZzuE1toewh": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12fmM4tn9zQHKW1oY6VjjmAK7YHhsMpG898h5iaszCYm2dKzsz7": { + "balance": "2245.695272486", + "bytecode": [], + "datastore": [] + }, + "AU12fmQ77RWZBNRBpADpvCJWR7AGL2Y8LfR7Fm23zCtatbb5XBCPR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fmXbAN6D95iPgPXnRrwf2psosBRSxqNJs378KajGjwrDKBQ9v": { + "balance": "1157.426749046", + "bytecode": [], + "datastore": [] + }, + "AU12fn3Ywc2LV7s6hEwePbDjEXZMRHSiJGqUpWKXYnMNBoYxaphHs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12fn8dfSwSGVUdQiJUUqWHqjMyMQJvp6eJn6STELHoYtuYEJZpP": { + "balance": "2754.514950718", + "bytecode": [], + "datastore": [] + }, + "AU12fncxfRWjTiczHTYJ43nqYD31W5gijbWzKXUBZkU8u5u7Ntd7B": { + "balance": "1328.135501303", + "bytecode": [], + "datastore": [] + }, + "AU12fpNRcvbk1CJLg88Qusb4EXop3f95driTPeRsQpLaKbJq3p8jx": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12fpVQtMawLXFBqhEZwkmssDroaEopc7G8t4ojmzcs9GneoSfbR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fpdDUp8fvpCZxybakPRZPi47g8pD6Y1YXrodWhDHngXK5yqTE": { + "balance": "246.432415690", + "bytecode": [], + "datastore": [] + }, + "AU12fq7xMh5W2eVAWy5bZpaoVR1XBcToEsj1XSrpPuUJPSZ441Boq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fqDyQBKz24KfRrEn9VevHAgCEXwYjtSwmaZqiQvTxe5ZwVfkC": { + "balance": "864.214642269", + "bytecode": [], + "datastore": [] + }, + "AU12fqEJHpqSWz4KQ1B4K7r6rPKzrA4jqnQ8DBRXXJv1JoQ24ptRu": { + "balance": "659.340066975", + "bytecode": [], + "datastore": [] + }, + "AU12fqF6GPUdeAoZBfrrpSmsKcoX2xMgjufYgYfKhLViVz2n4NdKK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12fr2umLqc93Di7eJceVUGZ751i4WWuLZib7Nx4fWhY7Fh6xa4t": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12frEBGQ5tdGEZ4YDan5EbhEWFCuDGrzD3UDiBoVV7rkjj1v8TD": { + "balance": "3109.270456299", + "bytecode": [], + "datastore": [] + }, + "AU12frWHej1YFyLYyQp5adNNMUK3SnoYzsAL9jPWc6DrFvJyUBKGW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12frxDT2iC5t7cmDpo3ZzcJLp9K2F1XapYBQ6gbkfF2JV9vm4Hy": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12fsBrYL2gVPRHbsi1Xm1u8qpVar24bszeEYBJivpSzvDEykdft": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12fsLdxhmZR18Xf21eQ3wQLS7tV3m27qD91JGnsKkRAbdMnhHEf": { + "balance": "3235.308277168", + "bytecode": [], + "datastore": [] + }, + "AU12fsZejTqrVcYRrQtbvJyMZF4xb8i29WbGT53MQHKJ1xqrq7TtA": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12fsh8XPry4q8ufR5vo9xGbaA5cArsm7heQsmM7FS25EzRujEn6": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12ftDJz1xf8mNgLjeMFvF6JciVo78JVRFMXzjXJ4fSW4Qoev2SP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ftXHPAS6TpqrBpjnsnMq3y3DC3SYxMcbX3nubs3yn1PorPpED": { + "balance": "612.681194664", + "bytecode": [], + "datastore": [] + }, + "AU12fu8znQbtXGCJyN63VwkS4R7XWWmHwwn6e9hKqn2Qq2qF2mPmd": { + "balance": "1532.715123979", + "bytecode": [], + "datastore": [] + }, + "AU12fuc6b8CZwp6uRvaofJ2DFK5s5JKKw5GzXVBT7kAm2eoJjKXYN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12fudcwdZ1zpeGH3rDT2162BVYznMzSx9jrc9dkcEUVDF7E7LNr": { + "balance": "728.670078053", + "bytecode": [], + "datastore": [] + }, + "AU12fv4D2yPq9QXK9d6aRHw7PRr9fiAEtmiGeEUwK9ob8ZjoDZHYy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fvFuFQeem2YMiqJf4bJCVCSGfESvDTQRjaUfQ4EakZvEdbBFb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fvZYY1m6nuDEzvLAi4eZLVUruos3pKGgPuPyMLPYfAJqJcqnm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12fvfYb5pV1esyx6s1rHVQdnBGRxmrYwJA8e24oMpTxzLuy7bsd": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12fwa2rAd1rRM6EQ1JQw5XxZFNtaHNEUieAxEAhq5zGV9jkCSqn": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12fwn9UL8boJhJSnFzTffWTPqR8eZebmBhGGZKbBqBHJxmrHPC1": { + "balance": "2109.116457156", + "bytecode": [], + "datastore": [] + }, + "AU12fwzUda89oe8Gg9XpXTPSuJ4mtUYqWKucXYeavVbFfYJMuDFsi": { + "balance": "1176.577690662", + "bytecode": [], + "datastore": [] + }, + "AU12fxBoSr7f4oo9QZU4JT1VVaDd75geHfZXsPcnsq7QKhYxpPW9g": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12fxJMpCsFgMdVqpFZ9ydvrphp5R3VoobUnrium712Ay5prcVhJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fxSRkYdJzRBXkKoigDzure22iUNtsGqbU5iGFkQTgC1UP3ZGY": { + "balance": "2516.413198961", + "bytecode": [], + "datastore": [] + }, + "AU12fxbQh4XgD9th4bijHkg25DyszQ5rLeLfGCvCEFGjQHczdWAzd": { + "balance": "2022.846688839", + "bytecode": [], + "datastore": [] + }, + "AU12fxpu3Zrny7CjqmEqEd6H121zkGvFpjUkUG2GgFYhwMrCvYFRQ": { + "balance": "1930.704889193", + "bytecode": [], + "datastore": [] + }, + "AU12fy9X1zAdGpAT7mSPisKoZzh9Yh15RZ1tTs1Jn9fhrNFUMQH7y": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12fyMhWo6qRSnjaRyA384FYNVpqmXarLyJZS3LaSDUkWKroqoeV": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12fyPMH6jZxoPyjnFwc1QDrosHdaCkbshD9Z7WZPoEDT58ytVCt": { + "balance": "1231.948467739", + "bytecode": [], + "datastore": [] + }, + "AU12fzn27EDkBPrT5i2kNpimDUMUuW7m7Tg1pPXnxtdaUPrY1DmeA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12fzsrYg6gihKqzJiThDXS89u4LUAX2ALuuQooPc5hfDc2LkpBT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12g1Jmf3UokDKzBVWzNSvq4krN9g98XuWXVKNdhkD6JzgiYtDj9": { + "balance": "714.289246752", + "bytecode": [], + "datastore": [] + }, + "AU12g1X44sKaAGPzox6ojuTHAR4FJUMg5jbDtYHoCFvSVTLAApUuf": { + "balance": "3826.396334866", + "bytecode": [], + "datastore": [] + }, + "AU12g1xvgWimW8WGL64ZZKXFQutLzkBj2ft1GzFEkfevttQS44x6x": { + "balance": "131.188118812", + "bytecode": [], + "datastore": [] + }, + "AU12g28evNsd9rq4To5mkcexc2q2NK49UNTqXK5tCMW9C2nt2kceh": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12g2Kj7ASgbrrN9ytiZZVKLL81c5EcyTL2JMTtKMNXds1J9DYJp": { + "balance": "2579.447606588", + "bytecode": [], + "datastore": [] + }, + "AU12g2Kq2n3wVCBUrT94Q2kSbHmkDnhTQ28JznZcwFZitBnuGpyEB": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12g2N4SP6BJGQ5P6res7h8nVtLDVRUyeqsWM3s5W4FFR4uN4qSi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12g2wbcXpRjEPRxqaugpr9i9d6kRH6MrGgnfrfpK1DzyUW6qmqE": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12g2zELaMhT2Wm6SQeN19MNwPYjy5fW1tWnnyYHNo3t2indxKfM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12g38jrZVrrxokjsF8M89zohNEEjW1NENGg47UJRHUr3errDrP3": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12g3q7A1uajX4xj6sodZXB8Z592HHnMeB3cazEni5aohf8RiGjD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12g41d7t4KPGuL64vVmS57irz4DKG1ExhA5Qhex1x98HHJCxvoZ": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12g4Vk4MukoyqjeB3QPv7B9UXcPjtvJ5YB3KwFYhyLVBZkjgQZ4": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12g4iAi4vij1vEZanVdync2RdNzTK2ufzwg9wqwEtTbR7J6jTTh": { + "balance": "4217.969471460", + "bytecode": [], + "datastore": [] + }, + "AU12g5Gu1sHnZMb5CViZDnS3miBjZu8Nn7Wvk5cmFcg27h6LFjsQh": { + "balance": "154.837164506", + "bytecode": [], + "datastore": [] + }, + "AU12g5W9ifYtsLn5JszwDqfcoYLqPZaUZcNDkqjPgDUNvsCqzfaMW": { + "balance": "1963.857611237", + "bytecode": [], + "datastore": [] + }, + "AU12g63DZNouazBPCf8yEpGbgieVVmCdBr7DChJdWfWNzrvq9dkmV": { + "balance": "1086.845242065", + "bytecode": [], + "datastore": [] + }, + "AU12g6Hjea11onq3Q52YkaQPJojjWHasVZQAAU1A3sCDXk7yxnfGb": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12g6RAdg2aoKeA3yuWCZHRRGsvP8eZMxinpZxh3hh61xadNb1wS": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12g6wDaGkMY4ALvofnCAofoJqpv5g7U77UpfpeQkX3hoZgiST8d": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12g7VmLWKGdZU5XVWdEWKK9u2RbYo8dhxCsr2vAfvStwojNA3nY": { + "balance": "2125.473661420", + "bytecode": [], + "datastore": [] + }, + "AU12g7WQYpbCLQyLdeHTGZr6JU4JzCmcNKmhXPMFjfdvSLnt8r81z": { + "balance": "921.168506542", + "bytecode": [], + "datastore": [] + }, + "AU12g7csTagENPGgCgZ4a1FdDYBeM2JvxosezNRe6yRHJx6TrHyKu": { + "balance": "2332.213466766", + "bytecode": [], + "datastore": [] + }, + "AU12g81gGjXiPTKNzmgNyPqdrPNTunKvyJktmKJ74RtHNd4LsW7DY": { + "balance": "1663.499050912", + "bytecode": [], + "datastore": [] + }, + "AU12g8EH2G6hnYtTGfwykDtz7FhaU7T7bjDaX6qcEhbEihUvRRmDc": { + "balance": "2395.540187375", + "bytecode": [], + "datastore": [] + }, + "AU12g8q56i9FT4eA3r6KpQo916cT3riVRhK2bCqxBHMaLQuuRetVt": { + "balance": "1994.566343675", + "bytecode": [], + "datastore": [] + }, + "AU12g8qyZCDBM2Eb1J11wryyUBvzVpGnsvBTxmocxmqs8Lo8PF656": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12g95ajBMNZKb88dXset6q65aaoMVNemrz3xHfeurxZS8H4njZf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12g9E13xp5zZmPXgsmBUSEVFNG3jazmXz4SBrzbBjUET9febb5K": { + "balance": "1780.370278835", + "bytecode": [], + "datastore": [] + }, + "AU12g9No46ZCendUTBjUY6YquyEL2drZW8c1yiqkCM3WLVJJDSsqr": { + "balance": "908.858742014", + "bytecode": [], + "datastore": [] + }, + "AU12g9VEEcYcNkAZxbPwg7BWFPdAndE4xMYhckcf2fwtYTAF258Gr": { + "balance": "961.415876234", + "bytecode": [], + "datastore": [] + }, + "AU12g9ZqLZkGsH5ciKqPAj3QP3azCa6EiuQH1mUGM4rXwjzzPvXWz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12g9dTFhZADin26zyDtk1gCS5iLjvEU9Rednw3WnaPi7WGjDv9J": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12g9mHdqBoumXButonQAkaTZdhef8ggVhbqCaGt9tr19J4nddbS": { + "balance": "925.474548455", + "bytecode": [], + "datastore": [] + }, + "AU12gASMxFBkGJ88eLnaUrc9Tx82R17xZwQsmTXjuhaF2CpDbXmQN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gAkkJAcVD1xEnycFv8usiqLcRdRt7iajFt9ghoK7hvojEiM4o": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12gAqnjkrkhyRxxTV5ApkDGXD5CJzgHK7QNyBrX39nvLpTB5Enm": { + "balance": "6298.384385280", + "bytecode": [], + "datastore": [] + }, + "AU12gAu5eydhYZGrAcH5KocmsnagrfXHgcDqhJTiPToudDRK5c3Rc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gB1EzCXrLVWEvAvk4v1szZjHd5uSqFQeRfa6SRvuFfPVH3YbK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12gB32cX25KTCGx2TDHvoJVqzMHxxqFYxuTgQx4Wp9B6U21dBtN": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12gB6z4ENp97H6VMCeM7a5CfrqdShmgPYe7Fc35V8rcDDzoeoQT": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12gBGEyMNEMePJDifAMdPBfybgB95pEXxXny2U3YB2NtZoe3VDJ": { + "balance": "2144.132520748", + "bytecode": [], + "datastore": [] + }, + "AU12gBWCddys1zcKYqv7unQDhjSkXQxMLNuHB86SSpevjSk81js4g": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gBZc42WVxyDu6KEF45EnxWkQqs9boafuUhb43wLVmnyJSYFuV": { + "balance": "2266.050778866", + "bytecode": [], + "datastore": [] + }, + "AU12gBbZzVZCbVET2G9Re3vQNqBjFeANWAzoCZszMqpK9xdMX2Ygk": { + "balance": "90.139287511", + "bytecode": [], + "datastore": [] + }, + "AU12gBnpEy3NZkPLyJbgU7RX5zuiXB34Q1KjXiZAHK9Asi1GMqfMo": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12gBqou2YVihdNx611yMJKcEbmEgXpNyZrPT14bCBhh5Av8vTX2": { + "balance": "258.488549529", + "bytecode": [], + "datastore": [] + }, + "AU12gC3hqNz6evN74yUicwcb61ueNVnD93svEYMQrPCXmdkZjdMU2": { + "balance": "1003.955592409", + "bytecode": [], + "datastore": [] + }, + "AU12gCLC2QEhM3RfUE5iytPX8E61CyRCHQsxccdRs5azSV7A2tHXA": { + "balance": "2477.000708675", + "bytecode": [], + "datastore": [] + }, + "AU12gDqs8RwDVNzpkkqwngCJbc7AZ5u387cKKzUM39dzka9ZN47jb": { + "balance": "2938.566183263", + "bytecode": [], + "datastore": [] + }, + "AU12gE2XaPmWp9gvNzjfYs2VUYgKnXiR9KtkuBgLwwYwaKfnaD6qH": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12gEMQo3yJNVFBp8JUB2qboMQPMx7BiXyu5rQMQQZT3Mvu92How": { + "balance": "2478.876193924", + "bytecode": [], + "datastore": [] + }, + "AU12gEW5Cz2LfBeNQg24jNppV9HmzTr61Uf6tVCFqFLHHkQu3J99D": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12gEtRK4tJxT2xkXyDbo4mrPbLbuBxgNvWPdnp6sA48ye7SDhER": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gEvCmtjQwguMAegoFSXXZHqexgvb3ep2oM6WzBHZLxsdGpauG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gF2VrLLDXgRaiTa95gqj6x3ofNdLjoRwToJ8Hd76L4G84zcJZ": { + "balance": "145.577880606", + "bytecode": [], + "datastore": [] + }, + "AU12gFMFGPv9KNqr2o6ef7sCrpFFzrtqGarReCizKuAke124RLc4i": { + "balance": "5520.539238362", + "bytecode": [], + "datastore": [] + }, + "AU12gFbKkaKZb7fVo4s8nT9MCZBYLCRoghy9ZPYgDKbvv2WZgYpRe": { + "balance": "1661.540772763", + "bytecode": [], + "datastore": [] + }, + "AU12gG2x1PLJ2JkAhbYiFhHtEHbjvcSTTSCZFeecfuUezLgMrXgDU": { + "balance": "8750.100000000", + "bytecode": [], + "datastore": [] + }, + "AU12gG5Qm3AYys3qAoTBaGUgy3WLdCrQAYGgkjVU2jUNbSNjkhTRf": { + "balance": "2140.860046594", + "bytecode": [], + "datastore": [] + }, + "AU12gGHeE6dWPe9GonAcuip9PujLrZB5DZuYp1DHZEY97xvtno1Et": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12gGUWKSDDsVz2YJqkgf46QVJdhdL6K1avJZuu3h8cpGkFgbRuc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gGVspAQxneTRwxPdbsCPkutfd1hwKZVPRCzyiQmbwZ5tT7ghW": { + "balance": "745.320778393", + "bytecode": [], + "datastore": [] + }, + "AU12gGiL6xThqPpoBMoK29WCtEgwb9FV5kexrK7Ko8FyhCjERvq73": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12gGj6V5846YgAGuf7gEfhstgM22qrCYBP1G1WTXY7hvnHF19jb": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU12gGjxAv2BCQKbQprihNRaUsYV6ztQj8Hs3cG3VAKLnRkKEQsDt": { + "balance": "4460.913895450", + "bytecode": [], + "datastore": [] + }, + "AU12gHaCZzGpuXv7EGtXX3rup2qgaNHnp3M4SsTbzNhq64hEvpiHU": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12gHcKD96VvSmnpnU1oxuJp4D59SyR8WJ88iqeSsGn6GLrkqkvb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gHsq128LbyttQHXhDD5rpDr23rbwS14kQX3fgn5p9VyZpDn7H": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12gJ3h1CNW5dqg38X8EfgdvPmvsDCarQ2ug5WpWfAJyXkf7NsrQ": { + "balance": "840.413656911", + "bytecode": [], + "datastore": [] + }, + "AU12gJNMdrg4WsvcTsWeTcsdSdUYJ3bsXUWjKMzXrQDD3Maam6nRA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gJm88S3HZCNsCCjjqPPLzj9Zg5pUDSYzKzoX4Aq21RAT6LBtU": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12gKDW9wtbU1qMmD4w4i8TYAeDN8xizd3hKA1evXvkYAauMF6LN": { + "balance": "37.338249589", + "bytecode": [], + "datastore": [] + }, + "AU12gKJqmhaouU7D691dSV9XbZVLuAN321nzv2KEq2YjP65mLYeEJ": { + "balance": "1385.196113157", + "bytecode": [], + "datastore": [] + }, + "AU12gKTS9hg91t1YYSdKhnzjMkmjguwbY4XUtYA2u6ff9zgkGvRcf": { + "balance": "5266.869715504", + "bytecode": [], + "datastore": [] + }, + "AU12gKUNMWsgwWKJ8SoxXyf7tA46MDUbQbkQUV1M9HLZmKZ1xixmX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gKaMn8zxAtnKxLa1h9zK8pntWSTyasz3H357MfzCK69FJrHMv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gLGDdqnkAnU4bUh1bKpgdsJoj2e1mAPpe2KJ3T59GWFkG57rE": { + "balance": "3142.109364753", + "bytecode": [], + "datastore": [] + }, + "AU12gLWrLWJUjXYtiaeM3SF6UjePx9hnBBqhArc5MtohoTKWGPYoR": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12gLnY6QqovGX4afe8FEUwEw3s6hBBfD2iGsWXaRiaP8W8wDS5a": { + "balance": "2393.426583698", + "bytecode": [], + "datastore": [] + }, + "AU12gMDW4xuf3p5QVBF5FWS47b3vCRUnjzAGfy4jLDDWRm3gBoWYh": { + "balance": "4090.566001790", + "bytecode": [], + "datastore": [] + }, + "AU12gMQmGgEDDmpYvYqFZyHc3iZEV97i4vzPCyhGdRrSfmeoxYzBM": { + "balance": "1433.660542718", + "bytecode": [], + "datastore": [] + }, + "AU12gMtyGBKwL5c1FwiY7RRzk32ek8yL8m6gh8Mc1xdKvnt8EZ6XR": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12gNAMyt8h8y4iwqqzsyFdL77Suep3A4FWkeGqFH4WZozhtt7G8": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12gNK2v4AUiaTqLV3J75n5Em3brC9PaN1zR3zpTKuhPXvcHAadE": { + "balance": "729.996134404", + "bytecode": [], + "datastore": [] + }, + "AU12gNoBsrYpLQKLcjhvavo2MY6PTk2thW9oCD6ut9QMQoGhhpRZd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gPFYZ3keLmaCK7mhhM5r6EBV25m7EdSsjKsLVsvx6obUY8XfA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gPHTbLEHk9c1zJHaA7YWEPC5WyrBFXSndstBubbKj8n8rL9qA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gPXsyA5dYtBHc6y32mxJQAnVJxUSY9SHZ6CEVEaErUGVdSpjf": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12gPY3gwwoF9h7ZnBASPfcaYTanZ6EghRaRebxSHUnKiPsznwVe": { + "balance": "3560.473041126", + "bytecode": [], + "datastore": [] + }, + "AU12gPgVtuVc6eyTL3VJCE5mpx8XevuS4r1n8zTBdgepyhFMAhmzz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gQDrujw599KGFuFDDcnMLLEXHEnwweRppJEDxBsx6XCGnqmDR": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12gQobXvbeFw6JAVhL9hce3xWo1J8m8sW5sdnr1QX6FHEJG24CJ": { + "balance": "966.751198243", + "bytecode": [], + "datastore": [] + }, + "AU12gQruN94X4MJ41jzmNX6ghLpEAk9iHXTUxsgagLXLXFazkbwo6": { + "balance": "5119.916775466", + "bytecode": [], + "datastore": [] + }, + "AU12gR5dKQZeTGPkQPAZCtvfb1Exj1dfgRJ9z2cyLHxHG93hmKsLp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gR9Q3wGhsAsq3o3TjTLqBqB3eUV5T9f6o8ZhYq8gmcPDA4Vfs": { + "balance": "95.470927173", + "bytecode": [], + "datastore": [] + }, + "AU12gRBhaHv95bewxGZEkqATsnKMQ4m4rgfhedMfrvzMFz17Fckit": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12gRSjir6HrQoyhjwy1TbhfKvkxGP6SnnGZUX4K4Xhqx1VzeaZz": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12gRqvLDGpR5Git9sr4i5KURepeE3veKXaPZdAYH78HwzddQ1XY": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12gSDsk7EyEs8LjVtdkmDVFiDaqRJNjnuNf8SgSYFCShBgxXJEj": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12gSrT3dJhM1bodApWBi2iauYax1sVV5r5cBFMjUiDor5mmTqTE": { + "balance": "1010.412238692", + "bytecode": [], + "datastore": [] + }, + "AU12gSsgaKPektMVg3r221MzuNH1ZXmHmsu81qpcRwUPCfkD1WbYS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gT8bxEaFoYLHxjtWZcMZFgb8HhR8uWzEJKRZKG7AqRmc9Hugm": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12gTP95Uqw9Noeqv6jSpBb7sdxjA1s8k4f2C1jmS8EB2yoYdcGA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gTRnFin8LkLKBYFesRXFPSCnvDQEQF29J8WpP2UAaFQw4vqcz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gTcfxEZ2T8xggMA3bjDxkph88Jy7wD1e6SqkupP82rJ9nX7Gp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gTz9X2SbxJra3h28H7JDFGp4Kf6nHk2RYmuXGVDJqKxbBMAWr": { + "balance": "1491.949336678", + "bytecode": [], + "datastore": [] + }, + "AU12gUHAs3PSBtAqjKVYaBX7BHgRunRL4tj1gtmBNSAnPMGV2bwEJ": { + "balance": "989.404147227", + "bytecode": [], + "datastore": [] + }, + "AU12gUutVu8XhjHy86NQzQduWnmCRid2WRU9Yz2U1UkkXawRUBFpH": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU12gUxEA86X63NtSpHDqWxHCDmKDCXhqnA2DsufuhQXerGM7YnrR": { + "balance": "1728.983122029", + "bytecode": [], + "datastore": [] + }, + "AU12gUzosYJ6mqqEy1AowKZbXkjFrPjk2wBxbDKeegc86hKVbbAcj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gV3EeFGss2fprBfHhxvFREYdZoQ5y8nB1ojCeiuwHdiDiBpeS": { + "balance": "1510.916166357", + "bytecode": [], + "datastore": [] + }, + "AU12gV4rnmn9QWsnVfjNm5dUiMN4up86SV7ux9LtvRAj6amU6dsMJ": { + "balance": "3657.694438843", + "bytecode": [], + "datastore": [] + }, + "AU12gVE9RbfkLFVjoifKo3KyudxgVdkDSGsdDhjcJhD4Bx3yToFN3": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU12gVe3zLFZQet2pJpWnN8kaEgkvMbq9TTBrpifqv4Sj5wgQBKpD": { + "balance": "883.234784036", + "bytecode": [], + "datastore": [] + }, + "AU12gVewEpfca4feiApNvAg51VCjgyWdXPyRnc4YpgujYDHMxvFDR": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12gW3Cq2tDpNuhLKTjRxTpe5N3JbCBc48Cy5Zf1CcBiLWnocFWA": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12gWXQT2szR4p7NpmpMPrqfUsJae45QHsk7NWW5RsC1mWxVezmE": { + "balance": "3043.243415764", + "bytecode": [], + "datastore": [] + }, + "AU12gWyZfokBr8FfiiPtmzVmkm5ia5mzVC7X7hsMyhHTXyqdiD8Mt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gX4X25xHzUTMYDCjag5rvWwUptjfZadLUUi581qutWiwmeNZU": { + "balance": "1124.241819980", + "bytecode": [], + "datastore": [] + }, + "AU12gX6kLxZBWQWumypHGGWvsdpmW8Du3RRkYzmnUav8DxNKheQZe": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12gYEJM6PhDFUVfQwFmFeEwncQ8ie7zcVFoMd8jc1dGPoev7fDM": { + "balance": "3447.197060089", + "bytecode": [], + "datastore": [] + }, + "AU12gYNhA8XqLoQSE4WN4oLJHgJoLgMEC9qnsCZ6EyU25z5t1y9u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gYRoU2GeF7M2FwynTz7zc39usaPefQtFf2Uu3iKK9bTypYUPL": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12gYVeYxuE3822iyy1Abo21xi46sPtzWEoS8fc4D2wuAAandEU8": { + "balance": "1371.137838203", + "bytecode": [], + "datastore": [] + }, + "AU12gYdfkkRV7FbHgPpk9Ed7jWN4SYbnQDqhNT2dsEeRSPNXcM4DL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gYjvSvBFHUf6SFiYNFP1pcM5FgNQDPQBKEHFcBAzaiSrzVmFY": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12gZ4ot2xbctEnAoupTrrjpqv76bLEB7yMUCeiF4AUcLuanuqvp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gZBZGWdy8cGDy152vFZUEg7BhBqxoFMYN9F2qmCCdMbcGqGj6": { + "balance": "932.995602576", + "bytecode": [], + "datastore": [] + }, + "AU12gZmD9UZWpCP45R4xhcvk5K8CMX16CEtTLxEhjKhu3t6qs1cRV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ga49CmcTxoiHnMqoTLJ7ZpN5Lc9kW5RcLcnxV16ATjzUjFXGc": { + "balance": "2134.689687319", + "bytecode": [], + "datastore": [] + }, + "AU12gaH3QfF5kSXH2JfvAarFTaW47bE9Zqobt7zD9YDUcXhGyWXfg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gaJNKhzvroB7WmQ7KP4qxAqJi3C7fnobgY9MGyNyJQvisjtCu": { + "balance": "1208.869256146", + "bytecode": [], + "datastore": [] + }, + "AU12gacWt7ZwNn4xKk42WVwtbaBDuemDfybYTM3TFQX2Bc68QqEb4": { + "balance": "205.339754009", + "bytecode": [], + "datastore": [] + }, + "AU12gauKP8HP9qnogcUqjezGK6Eo9wwzs3nSyp8EeHC6TP5Rbwmwn": { + "balance": "2651.731010218", + "bytecode": [], + "datastore": [] + }, + "AU12gb6Zu4T8E5Uj4t99QAQCwNfjNx81SZCamaQ1ax8cXDgCdLewj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12gba8ZNUdQh7CfmR7r1zrQMnUJhude1z4ynz4VkUBy2amBuvcp": { + "balance": "1730.898703201", + "bytecode": [], + "datastore": [] + }, + "AU12gbg9V7LVVyn1WvyTTZnn4QsnmU5bHPfhdkYR6Ffffu7mLv3sN": { + "balance": "3902.084024397", + "bytecode": [], + "datastore": [] + }, + "AU12gbrSKZNaeNEE3b4MeV7mtZ4M2pznYQqV8ZYwLN2XmgQXaSFi2": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12gcVWophWkV8atRPp3ihXWh4gukinN4niyioXTf2iuTXH1eGCy": { + "balance": "675.892516537", + "bytecode": [], + "datastore": [] + }, + "AU12gcXdY4SVNBuNtWksmYbFAMew6Ry5d9p3475EdGBgsiQx3m2Wq": { + "balance": "1107.171683645", + "bytecode": [], + "datastore": [] + }, + "AU12gcayN9xi7iwxLCJSMQyVwN6TeBQT8jCHxGR8MEDg8yAZecX1a": { + "balance": "3011.082258032", + "bytecode": [], + "datastore": [] + }, + "AU12gcjBrv2vjzVjdfyij27xBVvma3tdw2BoNVz76M534DBTCp6u2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gcuqyDXFSLnvQRWkhFUis9yQK9TPfnSpsv8BJfGQaqBJAJkwy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gd2Ab7YQsd4aYXZZx9SKrjzmjuygxSqFXAugYFUgc7XUq3tYn": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12gdMfSKQw7M4M1Pi7uBM4LKeGprTdoqfb9bGdTL4tyyduYtZep": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12gdc7Q9LEiNjBxE6Ljo1fpwg7Xx1N2sJHC4RgcMuEaJtvqMoYf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gdkGi2kDXD6RgbXkpX2DZPWLpZJs3LxjSF74GCQn9gPt1BpLw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12gdqij7pYBDZvKo8sMJbAgqaEKh7tb2o6ZNAbqBwb4HBN5bBHm": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12ge4T2q3vXbajquVvnFPoCCF4FTswU1xJMEzuwjDLPVpxA5NZQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ge4uQP5jdsodfvaSXQGHoALy8HkwHetavnm8JhjiPEJnsaAmH": { + "balance": "1107.996516882", + "bytecode": [], + "datastore": [] + }, + "AU12geBxFNQaAJGdtvuTVDaoEF48Gf5XkpzyKTBAZLU92FDeQ1SAH": { + "balance": "3284.725224868", + "bytecode": [], + "datastore": [] + }, + "AU12geQMC14Rmyj5LPBHyLKhP3wb28hQtnwWbCPVQj9tWfnS8QpFQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12geftgsFP33Pg3oS1ErjyhN5PESB4NRCmiCYFfGQ9DgqbZrg7N": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gf4npyL5NF9Coo9A8HDQzVDoQo4f3xqehEoL4jWPG9Rp6xrVE": { + "balance": "3102.935601692", + "bytecode": [], + "datastore": [] + }, + "AU12gfL6SbjhxfXbKpJxdC9Mj8pTCbj7AEDyPWMAPon9pyZdWk7T9": { + "balance": "519552.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gfLF73uWfSLKXfCX56SFcjF7aeh8vB1VtazewrBySxuusLVD7": { + "balance": "5853.675288877", + "bytecode": [], + "datastore": [] + }, + "AU12gfSSoGNdwA8WCkrrcRwAj9x2nuXTuMKDQZ9Vm82HTmzgv3GCi": { + "balance": "2356.798123708", + "bytecode": [], + "datastore": [] + }, + "AU12gfdMiqYxivAz7jwtvrKdfcSrd4hinxEdqLR2nZVx8LpMm5z8X": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12gfu9ypqyoUTTyuJRtiKeiPsNwtfdGcKFenPTmWGYjbosn8YpC": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12gg6TZkEfy9RWYSkQjQpiSShMZf5dKnaQUpidJLmjkoKxcFbjX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ggA6nAzJE8pT5AVgJW1h32d5uXpzqXtkdJ4dFgSZ5UHCYRHDo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ggPjqSE9y6p4eV8dh8A3S9MJN4HiJKgeoVswkUmK3gw7rZdim": { + "balance": "2752.823652549", + "bytecode": [], + "datastore": [] + }, + "AU12ggnpn4SRdYFePomFQeF16UfEB4CzwhJwENCnhMNGS3vjxVVNq": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12ggpMkz5NxsivC6qc1XTz9evcrihXnwLYeFzEqGTetnjbaVG5q": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ggxKZo3UkKVagdsmZWEMUycV4kzGt2iTFQhTm8uwWD1bhw9jP": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12ggxeEpP3iwybyw9tYUZSCSCEAWMGmHNViSW8CZ9MSXrDpTLf7": { + "balance": "1289.855813054", + "bytecode": [], + "datastore": [] + }, + "AU12gh4KoD6TkfCD6UrJWdPSSvTCPn9RHVPSYzZ9PHBSggGz4k477": { + "balance": "888.970809397", + "bytecode": [], + "datastore": [] + }, + "AU12ghMJu824ZtHN1dew5rVV8sqpg5ukKVqYxyKCnrDPbsd7f3bpf": { + "balance": "1867.866056705", + "bytecode": [], + "datastore": [] + }, + "AU12ghVZGjWARKuL3iZMcnpwTzzQYxvjtGxGZNevCTykcHsHxuGx6": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12ghdQV9gJ6mN9VtqnNWF5CrPVyy3Q45xjCre9id3RPqVYiudZg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ghiuZCL346WNbNEHmbJNxfsM3wEQ8jQ2pnhcHP2pmyfmP7s89": { + "balance": "778.617483023", + "bytecode": [], + "datastore": [] + }, + "AU12ghnNs9feiRxkSqR8ze1jKFvqH6jajWhuo2kssY75uFHzjZTSF": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU12giAFFjTz7VY5zu1oFUM43BijzpP3W2afHZ9LEvDETTnwc8MsX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gicY2bqzqqGb3poeekEGQ783ujAB8XWbgnUYHK9xfhPCyCvZk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12gie1HfFei3zVEZaELVYmTUPhqjTrrcJ9R6Uj3cjAd2PW1UKkf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12giu43VK7VRYEGf9oSBcSSpCeiFWG32doZtqFL63dLY7b6Ywwi": { + "balance": "620.658362888", + "bytecode": [], + "datastore": [] + }, + "AU12gjLKgyw998w44qCYL13dmZKSvkLaxxxSMgLPRPC2tdTXhbJ6Z": { + "balance": "1690.968780675", + "bytecode": [], + "datastore": [] + }, + "AU12gkZxWD6q8KwEWi1z8ZtgjwmKEASy44src36Y2kEVNfzuz4Sqe": { + "balance": "2228.944685710", + "bytecode": [], + "datastore": [] + }, + "AU12gkc92DzL5m2FKhuVfLvqURCKGXWFbG29SKjq5guH3ERgTnu9x": { + "balance": "2643.031191393", + "bytecode": [], + "datastore": [] + }, + "AU12gkyjgoqMVVGbkAdDB7LqsoYeCyMnLUVNEvaeKUKyxV1g1b5w1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12gkzH8Nj4rGK9Rj9BDDRqjLbbEeVt8Hp38hF1LX1prryKsSDnL": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12gmBKUb4WNcJnzt1y71Z36gGQ9NKLzUZiYFHEP8hkRZ4XMsbhX": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gmFjigkdt8NT2W1xHbMizGmBAxtq9KidugihbJGqa72bRhMRA": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12gn3157LYH2hncZZzYwXdtezzbYMfMLvZRvaQ8ReG3djhUH8hG": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12gnQn1rg2BTv96HzwK8D7nNquR7RRAEWP9KL9AiTxbhWzZ92ME": { + "balance": "1455.481853624", + "bytecode": [], + "datastore": [] + }, + "AU12gnasRxz5Wa5aFBcQ4NhFFgYT6gQDTG3WJmgyyvbJKp43t2FK3": { + "balance": "1028.251292491", + "bytecode": [], + "datastore": [] + }, + "AU12gnauhatKw2YGUtxCsSogZp61J9dxKwfLy8je74JtNBpZ2gKQW": { + "balance": "1793.787155123", + "bytecode": [], + "datastore": [] + }, + "AU12gngEAYqqBoLjoVj1jHVxSU9tXuCMqhQNWAj9KxpXWfUH5XEjZ": { + "balance": "1332.026311636", + "bytecode": [], + "datastore": [] + }, + "AU12go7kmr1VGfHLm5MCXnDGKij1ebLyRWb1afnchhcWJDRnwWKyw": { + "balance": "73.581259398", + "bytecode": [], + "datastore": [] + }, + "AU12goDHQhnyNT9MB1etZs1f4RdVM4bPwLC9cVdKBF2cfXchSwou2": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12goK2b1qWPUrzsLsgGtMYu968C6NBL8hRMS85quUFJLEFQeTfp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12goKutLBKfMdrAKQPtNUetFKsi9e22eVXEqes2GGX4eoRCD8GZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gok37RcdrAKH1bgCombWFL1rT1LuddfSBt4Di46XogZF4vLd8": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12gp3tPt7BJkNHhU4XCUeGp5n5axeK8Cgbu7nFq7qkfpzhAKn2u": { + "balance": "1039.985980731", + "bytecode": [], + "datastore": [] + }, + "AU12gpDp1HKhnpGPFVocRMYx6x5fzAwAgwtBdXFHrrgKzzq43Vu6g": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12gpFWgZZXb7ViQeTVEYKKzxHiVB989zYhzL4eqBVCBbqRH5bZC": { + "balance": "648.127116859", + "bytecode": [], + "datastore": [] + }, + "AU12gpGAh6wvgwsozmW3RC2b2rxqTU9bjwi7MyBtXC6VsiejkkkCq": { + "balance": "1323.557961602", + "bytecode": [], + "datastore": [] + }, + "AU12gpQSqb6PgC5kWR9YexbvsDCYLrsuFYSC8Gp2b4aY7pUKw7t5T": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12gpf6mGLr4Zodrb3N9FRoSVacVNTbNQfkriLKnr6sg33aZM9HW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12gptavFCuZKBvbP7FdY3JfadwAiYHxXdHs5Xk9EaggdTckdaim": { + "balance": "2102.386062049", + "bytecode": [], + "datastore": [] + }, + "AU12gq6NwgbB29NUQ3baefJbSyBZpp91VjXoi6ErMN6T9QyW6uSdu": { + "balance": "165.938148683", + "bytecode": [], + "datastore": [] + }, + "AU12gqDrt5iixjETF5JUyPK7ZSMv3iR1btvVQbWJo3ETcJwZxa2oq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12gqEyFJneEYcPr9x4ejavAD8uDVwYJ8WTAyf9w5hyYetFA9AQv": { + "balance": "1626.695487264", + "bytecode": [], + "datastore": [] + }, + "AU12gqzbZHVYwoep6sJCvaVAi4Tu7wS5vm4SBkz1PhBDgvmKNfHh3": { + "balance": "744.550164365", + "bytecode": [], + "datastore": [] + }, + "AU12grBheggvjjeozWBeFqq28rYjJuerTqVH25XgAwwpLYGmazttL": { + "balance": "64.228005213", + "bytecode": [], + "datastore": [] + }, + "AU12grh5LAqa1qbyeeYVefVCFGP1mCpQ7EEC3MwRq62JUpk2vBXDU": { + "balance": "927.160803604", + "bytecode": [], + "datastore": [] + }, + "AU12gs5ENSaGqHPYGRXWfvp2FZCYZMqXn2dzMtuhwoEYxKoyhVBuT": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12gs5bjHhYECzdLbvKwag2ZT5TBQPvpRCYW1FTabukvdKAQ4vgC": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12gsFySQjXbUoWQrB7hHPfnwpXHqtzr7N7r6MxRsnED2twNWVS": { + "balance": "1142.755072074", + "bytecode": [], + "datastore": [] + }, + "AU12gsaujZvz1r8iL3vuTGz3TiyyBvwHzstxhEWSxGP5fEFJYXJhS": { + "balance": "5537.724144548", + "bytecode": [], + "datastore": [] + }, + "AU12gsbePD9hKDFUrSWEBfoN25qJ6wc61ZonQUXXbVZwQEBTkuZQx": { + "balance": "15047.579245120", + "bytecode": [], + "datastore": [] + }, + "AU12gt1R59DjcWHbZvQfssUFWBYWHn1x3KimocSBLiWxy7Vsp85EK": { + "balance": "1541.624101279", + "bytecode": [], + "datastore": [] + }, + "AU12gtgmkg6zJvLMeV8KgSYU2521qVfuQbwCBcy4bKHswGMdHWhSN": { + "balance": "2583.399751614", + "bytecode": [], + "datastore": [] + }, + "AU12gtsX2cjCseaeWS1z6zFysxcgHZ7YHD719ymDx5tjS2PpESNfa": { + "balance": "1034.473699254", + "bytecode": [], + "datastore": [] + }, + "AU12gu4ePFHyFr44up6LHjD8ihUjzFN3Gz8BmA275bGeMBQN2cLVC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12guUxYK2oj4SzXmzkJ4f3hbzVbAxHw3xwgNftqhUz5rqGxMVeG": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12gud6wMC5NU8WQczFnzpBGVWoyy46AjWD9cWdJVs3Qk3gm7Pum": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12gue1quy2tDitiur1UAbB9SU7fs4zVJN84W6m8Kd6ZDpQp8kkY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12guemg1ZAMbWNwat77juGvDnPmJNnKiidSzxv2UqWQwpf3Me3a": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gunZm2wU5HBCJsTtRBeKJnhesjgNChTbccGAJV62u7g27VaZG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12gvWj5dqthkdnZDfLB47wLWjE6iSLEUngHve2Qvngde28SfUFG": { + "balance": "2834.332149941", + "bytecode": [], + "datastore": [] + }, + "AU12gwJxHfCDkziM3XjQkihXhQb9SHBtow3ts4ZUCoQPtvoUcm26a": { + "balance": "3691.597193432", + "bytecode": [], + "datastore": [] + }, + "AU12gwVKhh7kHLfNYCDj9o6FqaYWCZdfZZe7DgHFgdhTJodjWVTiC": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12gxRiVpHw4PyaUe8V8bYkoNDCsMgfX3X2RXhEB9e7MVyzfqiFK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12gxW2cqG734eYdsoRPp2jNTCQ5E4m8nrb2Uuob6oLH19CynVLr": { + "balance": "176.091918069", + "bytecode": [], + "datastore": [] + }, + "AU12gyNhCfmKX3avtGoocP1ZQnHS83mk6V52iGDQdf46nD2HbzCxx": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12gyTx9pTbHUypiu4gewj5KGnGqDtsYjaDcJyQ1tivtyDqgf1j9": { + "balance": "740.140219606", + "bytecode": [], + "datastore": [] + }, + "AU12gysBPtMAPFySWicaNoLSyZbuXjC8Tw3xB8rThqBC3eoVkgAdh": { + "balance": "1051.394057519", + "bytecode": [], + "datastore": [] + }, + "AU12gyuuvzfCyFjtgfGUHwM9yM3iD8Q5PCqbejefQoy7x3SZQejgr": { + "balance": "84.983498350", + "bytecode": [], + "datastore": [] + }, + "AU12gz1jakvpGGqG7JkMzNUe6VtAQc1bQFUd3UPkhBKbXpAkywTnt": { + "balance": "1667.949967202", + "bytecode": [], + "datastore": [] + }, + "AU12gzoKuPQ2PCMtpEf7t8bNwxBDQ8rPQWLUBszJJZwRFyKhefxiv": { + "balance": "4207.329049756", + "bytecode": [], + "datastore": [] + }, + "AU12h1WqPzouLAQK9D1MqLtiYVrAAZhCJR3WUKq5BNzp3EHx3VQws": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12h1nLbWMB7XdT2guffwJwPpzNCTPjhmR5gZhBF9cg3EH2AH5wy": { + "balance": "1401.186733005", + "bytecode": [], + "datastore": [] + }, + "AU12h1r5n1qcKG3DDXkGXemc6PhsFciNdeGDKaa8qMbafTi3UH52h": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12h22PJ9W6BuBBkNaVFj69AN7vksdxCnXvxYuTS8CKs5D2sEE4w": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12h2PrMqHoauetQR1q5Y2zd3tUew4JGT9zAPMqS43jE6kHPLfao": { + "balance": "1793.117192918", + "bytecode": [], + "datastore": [] + }, + "AU12h2Q1khVK3y1Exu96qws3tiUnQvwneD68o656HgKoiWhCwwzWc": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12h2S14XadNuzEi7FK2YTCXDfZTiCbA8KNyiWWDyNiGGDiiELa3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12h2YiqKMBRVMe2WwJVvU6DhKi3NC6SoNWZS4JFyWgPM3hGzK51": { + "balance": "4839.712285371", + "bytecode": [], + "datastore": [] + }, + "AU12h2yw9QLnkABZqgN4f2ifutCV8DTWrMyc8UTj3JgWbJm9x155R": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12h2zMZzvQk77b183mfhaZn6dunY4azAU4VQ9WfHFvysUTP1yMd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12h3K42RLGyCYj8KwFaQubdn3VMWLgGLW1tdKwP5t85B5PUWtRg": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12h3kL4osvpqvubX6PvhnUv2wsrJsbApZVGoBVE1LDmeAWsTZq2": { + "balance": "1398.354820514", + "bytecode": [], + "datastore": [] + }, + "AU12h4XvCSqdccQTWyUpK1Q2mciXt2ete76e8vTUykVXxRojpePmR": { + "balance": "857.937124602", + "bytecode": [], + "datastore": [] + }, + "AU12h4i3D7WHsMdNQUBc1KpW36MCorMXRoFgHYtDQkxMJUvAdDTRg": { + "balance": "1793.724302543", + "bytecode": [], + "datastore": [] + }, + "AU12h4qydHzTYNw4p6P1ZUhBJfhJBUEkxsQ2pPkx9H2qm3cbXnYJW": { + "balance": "785.365428320", + "bytecode": [], + "datastore": [] + }, + "AU12h51DSLcxF9cqVAoTRefpXZ3z55VGr7guk1J7cBoVkfy7VohN6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12h59Fx9bMebNeW6mGEaGDmPetuuyqg4jH5L3kh55FSq2xZDnJQ": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12h5EqznGgG1cfrgiZyAwHuo9tD1DGA4AyW4RzF5guBDYpcCshu": { + "balance": "2346.109797740", + "bytecode": [], + "datastore": [] + }, + "AU12h5m3ZUvU2pgRbxKXQq6HhCmC4y92AMJg1A4W179CbL2Q4o9xS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12h5qKxZE7QMJrksQU48t6X1MwsVwch4n8LB7GMR4ywpj9aZ4XS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12h686XqonZprpS6wwsavTSiGa9hG3iZjcacUN2uJz5hwRwW56N": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12h6LDYJRnAqBXBzMg7pGvkXxJ3jrPTucmBZvgytQRroMvcq16x": { + "balance": "3644.368472183", + "bytecode": [], + "datastore": [] + }, + "AU12h6hWc1wF4pPFNdJj8AFLE99C1zbbTqp3rq5C3ZcaE4CNqip73": { + "balance": "2686.389597766", + "bytecode": [], + "datastore": [] + }, + "AU12h6xqWjZLAtbnKLRRhcNP36ZrsfhaqwYJXNxzJuQZ47RtocqTe": { + "balance": "2202.345057040", + "bytecode": [], + "datastore": [] + }, + "AU12h7g1LKExxxZKQjX7EU8Ge62ZH7xC99YY8oQtprSN7vLfKvUGw": { + "balance": "4181.658064023", + "bytecode": [], + "datastore": [] + }, + "AU12h88Q7QSvFC3csuA2SxRfxAti1ndUfEuM53CjSEEPCp5c5EP2F": { + "balance": "1267.509690784", + "bytecode": [], + "datastore": [] + }, + "AU12h9PzYgB3JdQt4WZP3sMSvVKVMKznyJWRVpea3XXwNo82spZD6": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12h9V6XhxseCZAbEgTGejtJCLkVf8uq1to12WiDaSWCHiiXgGTH": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12h9eUM3s7SWZVLJNnYx4fSv3ADYgiKQYzqqcu5aJTvorYoFDjw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12h9oQsNyay9rzoMwxfPUVKufCjYYE4fdt8oabthwFqnfeCtLzQ": { + "balance": "1370.076811610", + "bytecode": [], + "datastore": [] + }, + "AU12h9vxDtKb3ctgnAsSXGaGjwvFcDKHNLkR7tbfSrQwxvRgLrkY2": { + "balance": "963.979411680", + "bytecode": [], + "datastore": [] + }, + "AU12h9wskYDoe9dqr3ZTS3Y3tXa1MdwdMAAVN6QsXDsL8KVYCyjGo": { + "balance": "1645.948286726", + "bytecode": [], + "datastore": [] + }, + "AU12hA4CA7AshmbugczAZJ1CMVEHvbKoyYxnyrWH1zA3nCRiwBTMf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hA9djmoihjbTfLJYajeixTZm2DNoVaHVXo3C6WfqnyHyG4TWc": { + "balance": "2324.195470140", + "bytecode": [], + "datastore": [] + }, + "AU12hAE2S8FSMhtBkuMUb9FWzY53u1wqDdGQHPh2ypiqJhsAs1i45": { + "balance": "964.321470276", + "bytecode": [], + "datastore": [] + }, + "AU12hAYm3nf3fhBQdahiLLVjEDuPgBnTDnEu1PqewYqdv2JsgXsA": { + "balance": "685.183883203", + "bytecode": [], + "datastore": [] + }, + "AU12hAmKC6Rnq8D8GhHBtZQD9R1jVWGQgrhUzj2t7kzS1XF7Bi8y6": { + "balance": "1183.079594710", + "bytecode": [], + "datastore": [] + }, + "AU12hBDF2AaQhgu4k1aJBdYKbYdLzCaewc9cbs8aGXBAtdzy6Tbbh": { + "balance": "1713.651417795", + "bytecode": [], + "datastore": [] + }, + "AU12hBFmceRmyTJA49CKFGDA22FKX15QBG1uuL7Xzy7JL8eM32rt": { + "balance": "2992.556900726", + "bytecode": [], + "datastore": [] + }, + "AU12hBvFu3jV7wJiPTc2fXdckFRBhWhyWkWt1N5XZ47rDikRGLS7W": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hCR4dR2kEZZpERqFRELSr4sVEXVnFrFpM5hf9z5ZjUGGJMp9v": { + "balance": "2018.221281700", + "bytecode": [], + "datastore": [] + }, + "AU12hCd6BxmKiNadhXNYHC8vY2jg7rmMTsLhQt22jdtrxQJerg6iU": { + "balance": "727.489755364", + "bytecode": [], + "datastore": [] + }, + "AU12hDfjZ36Z5we7YueNx96awu69SdGxRDSY3mbDjpTSwWdQ8tDLU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hDp6TZ8Q6X9QLyAXwuyCTMdMKaR4g2ak2Mxvf2AhC3p1Gqpcc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hDyQCt6cBjNnmBS9LWzLU8aTeACQjZ33guM3EKP6gLCgGjirK": { + "balance": "2376.275141554", + "bytecode": [], + "datastore": [] + }, + "AU12hE362xAkmadPjWvwLAcNr8YLmNUStp9FiQhvfWWT4ijuiEPV9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hEkQJoLvFBPb8XisuhCMkHJviC6XAauRyB2F9TsoUE5Ahx8zp": { + "balance": "3187.556709101", + "bytecode": [], + "datastore": [] + }, + "AU12hF5rhWXxmr2KnVuwkMbdQfY1m62Y9tEbru4d4R8KgYvZfAkV2": { + "balance": "75.590061199", + "bytecode": [], + "datastore": [] + }, + "AU12hF5z8cLEcWS1Xw2BAetc5HhXdA3gvQZ598EnpM7WRQzGqFvnB": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12hFkgibzfQ79smFGZTktQnAmLy178Ta93mA88BxTwpJw2hJrP2": { + "balance": "789.941640082", + "bytecode": [], + "datastore": [] + }, + "AU12hGFJBkoNxyvT8bhVrH6vmZjGTThvx8boa9GdRzBrvBYQRHQrz": { + "balance": "823.032645241", + "bytecode": [], + "datastore": [] + }, + "AU12hGH5Y2tgtfDTtTGVmiyu49Enq7hUhKUU7zfbG275bh9Cdrfjj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hGnP5kdkVaWu2s9TnYYTXzPfibqz4oSX8R5P1G7MpFkmcSCvG": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12hGwjBERj2gPRXRDSW6uoZFirfXLDKvSipdeWb1oN8UDbTKqoS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12hGzuZjkiAobHuNcWHZt2oiJBREtozF5UvJ81adtoCFdWa9J7B": { + "balance": "5564.251611049", + "bytecode": [], + "datastore": [] + }, + "AU12hH8ipVvYjPHbVg34dUi1z3TEFWCBZEvDu3rUgneghg6WHoBa6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hHPMRSRdWy8ggyFTARnQGNqQMod4CgLhpFBWpgaDdbowjPhzn": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12hHQYzsR3XNenfA5HBc1ZsNJftquXMykWVvf4y7EAtzxBSzGdY": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12hHTAqsAqp4trfLHiqzvPYp2ZQVEiqSsiyr11AMLaRSrE4VhM3": { + "balance": "1621.096187248", + "bytecode": [], + "datastore": [] + }, + "AU12hHXKqdwVSgk8Z5SVHY5fLdpZBSbJCXjrRHabrgxcY7rFEdD3d": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU12hHxh2hPYFNCfLGjftJjqZ462QQLu5ggMpRibiqiUuyEcCSRch": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12hKEPFbyxgFxoyaBGTNvMhGkJ7gBKANK8tmGyXYfsV1JQFsceR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hKUzB3ZcK8LNipcg6fTnTexZEm2bvDoNuzBKKcUQBhofxE5rM": { + "balance": "2282.441605783", + "bytecode": [], + "datastore": [] + }, + "AU12hKaZuUCcWv47sR8XcCkzAZ9qqFtiPrn2fcDsuxgFFZWW8Au8u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hLDANKXf4fCn6o1CEJ9VyBSZeT9fp7ezvFxyWAJz7oGRx4qnE": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12hLMbbVQkfRtBatiua7MYSqXb6RnHknVZVBhuC9QChFKNNbXmJ": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12hLXAQePav1azbFbJGzJWQn9qQHhUcDuYNw4gzUjS9Hi2hKY1b": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hLn5WjDZX4Mmp4pkrexgF49fWSDJiMx5txhAihwxi45eqiDWi": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12hM9r6VGL8TPQ8dVD24vagM51PT39qM5FcU2tpFwFECHmmwPnG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hMC7so4JehVPAngBnNPPwqvwW6UgtVVmBRn3M43wPQKLadTTm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hMe7VaViAZrxZGnFSXMUxtL4CSSYZb2dm1nFNSNTDYCKG7XgV": { + "balance": "1051.035175942", + "bytecode": [], + "datastore": [] + }, + "AU12hMhWpeDj8925Z7wCGs7RkM6aguMzuYwi1yFMcDLEN6VCZHJvA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hMp8qerFQZ1EgHtuor6DpnX32xKymSDxfagwzEa9hQNAw7SRy": { + "balance": "1236.262830811", + "bytecode": [], + "datastore": [] + }, + "AU12hNgWrGZgDJPiq2NrTezc4Eq2nc2kH34FTLzgTYJcAgHRxokUu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hNkhVCCk8YDN1tAJG1p88LUuiE8gQE7QBSmBHiK2x6E1jDUDC": { + "balance": "1024.999599516", + "bytecode": [], + "datastore": [] + }, + "AU12hPVNJvvv62TYwVpdrcjVT4jHA66UgWJ36hWs9cBZ74SaXHFeB": { + "balance": "5863.395985273", + "bytecode": [], + "datastore": [] + }, + "AU12hPXDT3sMXXtFso4pFXeUaNnSEZWBvQNZ3fcmeVeEgaDz6snGo": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12hQxNuu9g1n1ttDPZxjbacGdbANy5h46EZw86fZ5WBKSt6ve26": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12hRrRKC8LNVnn3ji2FVtkipJWoVukH3GYpJH5wyshFf5v3JSpF": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12hS1S88xoUt7aTJEZmKXGJcu4nfcY3Z763eyCW2jVGBVoRMWtG": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12hS3qdHfkjeCRa6hUozBQWTHFsZ9whhEZUMxzzZGm7FG2woXKi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hS99HD6XZshjYzvQAwh4pRhraetf16x7Mp6Hm1YV1m1Vibany": { + "balance": "1885.910038367", + "bytecode": [], + "datastore": [] + }, + "AU12hSNTjtkMTgAMWr2B7xiHoxi1iUFuyhGUHqRyUHRat9mLjGyEx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hSnYwoj36ukSeLuYVCNbFK63Q4GGppgf1nAB6Rr12FHMWmaAe": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12hTf9bdEbV1X7rNYm478DQtGHxR98JJ1SWp2Q8hyFpKNWHPnGs": { + "balance": "1848.226614528", + "bytecode": [], + "datastore": [] + }, + "AU12hTkErZfdTFeR482kmZTGEF4yRM9bN6KJDD8Zrpi55MH82raGM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hU5si9W9koxgJrtyAfNVkf6rS6qKBbkzqGtEheoDqvbRsN9Ys": { + "balance": "968.696175670", + "bytecode": [], + "datastore": [] + }, + "AU12hVMYS4kcesL28YQ9urhufZEgosUjvDHR1tMvjHyRsVz9SgCCu": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12hVPLafnR475kvmFKc927GroTWHm745PhpJowZ9b7npMjSnTdy": { + "balance": "934.335909019", + "bytecode": [], + "datastore": [] + }, + "AU12hVoDHK4qdjMTX9Gvhz1PU9TAadWzf7EH9QNbMYCWND67MUo3b": { + "balance": "1881.735650296", + "bytecode": [], + "datastore": [] + }, + "AU12hVoqkafq2CXt2U8NRw3pTREJJXeK9oH7cUdrgitgLaugcY3X2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hWSGBxHp7J2JBcu8h7yPEe2QuWgdKKyZ13dv7DzNAt3WYhzaw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hXBe8RwXsXmqk2ok9yismsXcLMcSnH1A3qDkvVvjhUQHFkNV": { + "balance": "2010.758460190", + "bytecode": [], + "datastore": [] + }, + "AU12hXo8aewE9gnRLJfHz3psSZSXZbUYkSeE8nBa1bK3N8w29kEUM": { + "balance": "1772.591345284", + "bytecode": [], + "datastore": [] + }, + "AU12hY5R562p5ZUFVNoF7ZrhYMVvmzSjbCbLfA1UdzQtBX25LnWTM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hYdJog3Cm6kQAKDyeupzRehLEv5DwYqH5UQXnPwiNnQ5Tf7Uc": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12hYf9yTyCxTizJQV7dUsgRyfXEJSVyZm3JazWQRcuAiMg7jxxr": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12hYtrGUA3AzDQ7H8FHKsfSWSi6BBYdyKLCP2qfp3HMddC9GAFF": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12hZGki3sw2KotapxfeLq2tfBJqiXRxn8wojJCuvZU2UAUDy67t": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hZHKFD4zgW27TdjgTBd8Q9DdgDLK6HXVCUXpA2jJ8nEkG4eGr": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12hZfEAvrqyZUP2AEWa7zJxzdpMZbnuK4LL3NtAiZunEgmwZtm6": { + "balance": "562.889094164", + "bytecode": [], + "datastore": [] + }, + "AU12hZfYQavH13mD1KWtuWwHwjJ3L4ktXeJ5z9MWu4D3rNUTfRh1c": { + "balance": "110.933085528", + "bytecode": [], + "datastore": [] + }, + "AU12haA34NKqHoi3f9M95Wdfn4M2tMdSzpxTyv5NB7icogbsjjqVg": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU12haQyBf1rs7nnpyoyBxBAJ6mdC4dm9vNUqNPAVbrj3cQJExMLo": { + "balance": "2010.988114980", + "bytecode": [], + "datastore": [] + }, + "AU12haRpfjBgk33xe7VceQ3vAZeeAZnY6oDMQWQhS78qrzUvvpCNK": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12hag5yV5kPvPvy1R6fjiocTyq1MiMMwQaf7JSiN3TTy8TWPsc2": { + "balance": "3760.616605454", + "bytecode": [], + "datastore": [] + }, + "AU12hb6D4FM89umtKHsez39sxWpvGy3wYf38Lviv3G3Bm5iYfGuH3": { + "balance": "1806.040156648", + "bytecode": [], + "datastore": [] + }, + "AU12hbWSjnJyfkcQbvy7jFGdie4mNkgd4iZFaQCU5oaRuWqpTBn5i": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hbaPcud9mYmYVbgHbi5BtyrCtZTqJgTouTe17sErouDi7P6R": { + "balance": "232.115587793", + "bytecode": [], + "datastore": [] + }, + "AU12hcgLkxMDQ5ASvWZvi8VqmKk1JrmdrnWznXjgHR4fZNWp1Ct9m": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12hcoGE3ZcckGT5g3XcrYMFU5a76UoXEQ1gNfpDchxZEYWfk8AE": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12hcsQrs6puiEJJJUFxEMvqcVrMdXuV3BsnJeALreNBZnaUG1SV": { + "balance": "1728.345716548", + "bytecode": [], + "datastore": [] + }, + "AU12hdkTWHoLaJoJQSVMc7qMopHsRuh73Nn75V914tzfETeihrWh2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hdwyHvhLLE7axqjMAcwMr4woRK3rzMSpWzTW1HPmmQcsrbkDr": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12hdyJZrRCh9N1RsCvWnVVfUZybeDWdFjdvnUUggTEZxAbjCCTC": { + "balance": "5011.359244704", + "bytecode": [], + "datastore": [] + }, + "AU12heYWRKwPQCZ2tajj96bgKdC8AX1W3xDfRmvJFixhBm1ZtaXLQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12heacifABi6fymcxADoQPRwvkKWqoa5WfRaZgHeJ17aVAxmMBW": { + "balance": "1344.006764196", + "bytecode": [], + "datastore": [] + }, + "AU12hef1wQJ85mv82CmD5dxsSzJpx9SfCiLZysd4qwNUV3UyPQTCF": { + "balance": "1049.780402570", + "bytecode": [], + "datastore": [] + }, + "AU12hfFUy3joQiLDbpLS7iCeyxqcJrxKLqpJmDDzmKZPnCW8vYRq3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12hfn97wsjeLTFDjsnBidTw5hHB7cwr51jqCEghQQb9oVBqo68J": { + "balance": "3057.046777050", + "bytecode": [], + "datastore": [] + }, + "AU12hfz9QnhXF6RfPmDk3mDcixr4k7pQDkL4wNee7yoAjN3vhmPoD": { + "balance": "1689.123559014", + "bytecode": [], + "datastore": [] + }, + "AU12hg943LWohaeynmM1kUjtMKDp7MhuzofhNSpDjPm8FJU6T8TVH": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12hgH27EoA1hngY8deQC4bFB4hjH3hvf287k2cpB16ZuSNGuXBs": { + "balance": "2975.475084523", + "bytecode": [], + "datastore": [] + }, + "AU12hgL4GnmSHFshkGUXGRoombuGwWCfUgMt8YLsijzriuTZQgdDu": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12hgjzWZHkKrBUH8JoF1jcaW4CtL4mJyJTnG6YKY4yBejvFckvZ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12hhBHSC3qnBJ9d9pLYVrhBeFmEdrVReekxM7gFqPMYWZniGDiR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12hhD2J7rxPDhERgWLsPUkgw7euRnmKeUkFLD4JB8Csc5WzH5wJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hhUigu5iT6qcAreF4JWQARqNQTevdgokUDu43jqv9exQmijYU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hhdgEbSsJoqZy6xuW3Efu6JW3f4pTqwwP6L3ocQwvHv3CnNng": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hhxawV6ynF2q2XGAHXhQEs6SUfAbUmLNRRq1LjnLufbcQd71F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hhyirTmpFQmgNRoMZFgbhKJaQZ32hciGqZhiMViGxoKbZ1enz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12hi9rP1imSfsCP8fSwHd4Y8GNpLL9B85BfmyAgD3PQEJ5FnyGg": { + "balance": "5491.099086378", + "bytecode": [], + "datastore": [] + }, + "AU12hiJotKKMjJLE6bDFsiMBxB9AjF9hChviZsBcFGtynhJJqczp3": { + "balance": "1035.190209433", + "bytecode": [], + "datastore": [] + }, + "AU12hibXvatwyNQqpmoBpqoYy54SfyZ4ftuzmN52stgDiieQ8xDrW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12hihKUVPTejHUVDhjXVx4zGFWiLH9fj11bxqndYufeQJnNnn1y": { + "balance": "4467.256954266", + "bytecode": [], + "datastore": [] + }, + "AU12hj1FvmCfZEVnq4t6ZKqU5g2orAsL9dfUBxKH1LAq4JRUad5iE": { + "balance": "2347.582110350", + "bytecode": [], + "datastore": [] + }, + "AU12hjeZt2Lp9dJ5hcysBFui2A3Qyyenf4sh6JToK2f9Ve7RYGnay": { + "balance": "1967.124248722", + "bytecode": [], + "datastore": [] + }, + "AU12hkYoJ4LfTpVRP1DXATN67vgwjL9nfUUdPNsAXR4jLsVCFhLmi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12hkpWxuFKBDm9XYi3XgLXu6oby4Z9UHHxD4bRA27eFCbVN2HRA": { + "balance": "1385.329241473", + "bytecode": [], + "datastore": [] + }, + "AU12hkrYRpuLTnriDbUJ4gbDApwsiC1waXUeMh5FDZiTQC9RBwT4C": { + "balance": "1437.571495533", + "bytecode": [], + "datastore": [] + }, + "AU12hkzEfk3UYDJ4dZtedstFezydbFXc6TCU7b5UFuYBDRCtMHdPv": { + "balance": "1569.768347993", + "bytecode": [], + "datastore": [] + }, + "AU12hm7FbxCgXRAzYoBNSgm9YwGJXq6VDQH21QFWq4mA8ETGr1KGV": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU12hmEVg1s9waVvGqHBNo49WRfqzbzvjkYFMUNHQotrR3s5RndMr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12hmY19aFHhpHTimMbAQRJW3oEHyziQ7UrfB4rVpBtfs6BaoSHh": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12hmfUK4hAzvXJjP7xZae5Uo8iMFcNYHuBDbcnbKRkNDP6igBSB": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12hn1nBoGWfuaD6NBDxTorg7bUZTNhrgvswTnX1zHkDfhwp4Sef": { + "balance": "997.457520059", + "bytecode": [], + "datastore": [] + }, + "AU12hnXte2iUPj8hQXBSSeBvAEDNUABomnCBFXnHRP49tQyywTBNU": { + "balance": "889.811574154", + "bytecode": [], + "datastore": [] + }, + "AU12hnh45q83bs7QfvqVSuEHQiQp1iDHLc9oa6EuLa9QKKHWA96Uz": { + "balance": "2997.918249761", + "bytecode": [], + "datastore": [] + }, + "AU12hnk5vzi9mszm6fSVD53zpQUfRhDh2MbGRGz8EC7ERyEfDAWwc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ho76PaVwTCq4ksKPaDyPyoYenz4fH2bwZAGSCnTrUBF1pb5Eh": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12hopAqA3TQutQkLB4ggn6PqPHvkhtUePYmyFSedD6wEGtZBr5g": { + "balance": "1962.429313411", + "bytecode": [], + "datastore": [] + }, + "AU12hoq96xQC6v5Zk5KSDC3NLG6XnNqCo8cVNYBWYeq4NSpQXAZpx": { + "balance": "3552.559630170", + "bytecode": [], + "datastore": [] + }, + "AU12howgBQ2z2QKTr8DZcjomWP1jNzQgnKp8fioJMkJwBWtuGH9DD": { + "balance": "1898.118940060", + "bytecode": [], + "datastore": [] + }, + "AU12hp4SLZ5jA9jC1iop61zpBPhaS3WQQ1ywRDN2YAMkWfUMtmzKM": { + "balance": "1643.223698373", + "bytecode": [], + "datastore": [] + }, + "AU12hp4nqqH2DxbHzMMSbvJ57F6TKhVEMNykhVct9YgpXDruJ938E": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12hp8JV24VpnknDbBc3zcVyqUf7A6D1wxN7sW4f3zSPbYH1Gjyh": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12hpAy1aQNWQ25U12K94GcXiuhcCEHPu2m6n9soiPZsu6gNcrP2": { + "balance": "2501.200197530", + "bytecode": [], + "datastore": [] + }, + "AU12hpHqtcq4iAAaqc2hnCwHafxN6V7vWDQGfxiVeUsjway8BkiMf": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12hpfswdoMv6FJeaiq5ikUi9UuYbZahDWzProW4c9EhkL9YZQLR": { + "balance": "3986.557960745", + "bytecode": [], + "datastore": [] + }, + "AU12hqHP3EYv6EZ1Zrs6UX585dQUSo7uzvXK2bLK6ix46Ld3cs1D3": { + "balance": "275.114254024", + "bytecode": [], + "datastore": [] + }, + "AU12hqWDfp2akVon5WXmE4wuXRzLpCmCH879gZxCPFaZkiwxFMhxF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hqnHg4jiULS7wLBg7nPmPrRHKGWhe3uWCMCz4KMpLvn4u7MY8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12hqp3GRr3Zwi6Xi1fUbnhxzooYJVzgWwgKNKdqNPLCiJm5r6bC": { + "balance": "4697.971009230", + "bytecode": [], + "datastore": [] + }, + "AU12hr6MYrAqPd7QHYwZsXLv4qn6LfsBFcgJCKazG9Y1orqJKBN7N": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12hr6PRS9MELDLBBMcofv3iKWUhyUg6GUEUgdmtaw2VZcpbAUeL": { + "balance": "1668.181942088", + "bytecode": [], + "datastore": [] + }, + "AU12hrADU8gssqhf7A6J8fAhXceHwDzeJiUbQBX3rShhwZY33Mmto": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hrDdyH2zziTBjUmHNAhYbpi5z7cy9UNT6wJZ46Uyy8Kn5mWru": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hrQMFFUfjwyGUV5qhA7235Jr43B3cEpmurpH1GuLC3DeNM5dM": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12hruYjKAwHrCrnngRf5J3zugwC7Ah6vL9gmYxVv74yZwRPan4g": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12hs7ZpqmBwn5KqG8ZAQHzpnSw34ced3xzMjRxWorYFk1G42x3y": { + "balance": "2106.055184359", + "bytecode": [], + "datastore": [] + }, + "AU12hsoVHZTz7Z9bF5wuTJ76L8QmjFXBHMYWFoDjmgEpbDAZ5Weuq": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12htBm7ZcYAKgz5gQPUJCohzUFdmopfVXfijLcv8dVtvqBF6Seu": { + "balance": "1301.620323891", + "bytecode": [], + "datastore": [] + }, + "AU12htVW4NRijK4xTYuQfYscJtpE9hHT6JxsxfvdTqW3GgA2Ccn8p": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12htkWfN5Gou4LKcpziD3PR9cpjoddASrtviV1ojCdT9xAYxhkh": { + "balance": "565.695957396", + "bytecode": [], + "datastore": [] + }, + "AU12hu87y16YGFmesXhjq21CANvUjMgRRFmVJFEkYowcmro8gBsPo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12huC2RXPVUCymsc9Y3PwFBzZbKs1qe82tS7TgBNb81zZVunrvi": { + "balance": "2100.865134270", + "bytecode": [], + "datastore": [] + }, + "AU12huFMiTebJXBWMg6BjB5mMX2yZq1bapkHcgGtkmtMCyw1Y9SfQ": { + "balance": "1203.214951787", + "bytecode": [], + "datastore": [] + }, + "AU12huGANUu2ma6uTjgfbexMrTPfTUyViiv7YbN3gXgZQnY3AvCV4": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12humdcxBvzT47KCmLkjCXgKxuRPAemMc5JUrYap1L8CJGabmM6": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12hv816Qwt5tWZPYWhwENdUMz1hRSEsAPJGoitg6oSJDiojxREK": { + "balance": "22.174094710", + "bytecode": [], + "datastore": [] + }, + "AU12hvKygqTiSkDgqrJUjXsCGsvtjGxPHKLRUYuhMdxpPrXAmTJ4s": { + "balance": "1109.922312378", + "bytecode": [], + "datastore": [] + }, + "AU12hvcfWaF3SC996WX9R4v3hrUkoKWiNsZojSaUqAmxszFWFiXCE": { + "balance": "1815.611981319", + "bytecode": [], + "datastore": [] + }, + "AU12hw5jqVxHwFSQ8uAmiWEEHk16gSLvk7nxd8RoPP6jgwhkCxrmT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12hwJ8nomPQ1LwXxR8gbwxnkTn3LLZtJmZGSKz2Se6VYNK2PZJP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12hwRLkY4UvA4n6KFKRDVc4g9CLJXzqMiSXsRjSfWSMu5BYXQ8g": { + "balance": "1994.721781386", + "bytecode": [], + "datastore": [] + }, + "AU12hwi9vZPAieAVKFR6ao8zZ2u4895RRmLJxUwqk19HzH7ZSzT1p": { + "balance": "2295.385146254", + "bytecode": [], + "datastore": [] + }, + "AU12hxq9KVBjWCB9xX1rFaL1jbBav5gG9hyRk5dEnmKwPBYy7RTLk": { + "balance": "2234.597689450", + "bytecode": [], + "datastore": [] + }, + "AU12hxxr1WVeLLsPxgJwy1DGfg2Nd8H4T855ybxkWxsgsY7ZRQ5ZP": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12hySr2qFbkuE4E6G6yvZwhdEbGZYV1oooHFkXsQpLagbuq2DCG": { + "balance": "767.479337735", + "bytecode": [], + "datastore": [] + }, + "AU12hyZ3EirpcJAmSxGKJ4EfWQyc1ufFTBtnV6KfJf8qtBC4uu1fy": { + "balance": "964.418380329", + "bytecode": [], + "datastore": [] + }, + "AU12hzyGqQwz9HYrKyQTnU2YBivqfjAqmhQzv8fP92eTChejhpkh": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12hzzn2idAefqNi6ZUVJY1R19mMQPkWR6qmPi8V8V3F6wHS5Evo": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12i1P3L5YWh5ndoT1dymCMieqwDJsXC5HQ6z1SAgx1UG4HUiSvC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12i1evEU5GaYEcHRMmm9ZYxRTF2TzxNMgZETNntx5VFWrBXgeqt": { + "balance": "1284.370532339", + "bytecode": [], + "datastore": [] + }, + "AU12i22gzDE9d87qRnbHXMmZbP1Tdecm1KBT4rBa5NncxDqSjisce": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12i23ZdFpTTu4UKUEQieFgwd94yAeXe4YbwGEWiPS6JiBJ2SLge": { + "balance": "1976.237068644", + "bytecode": [], + "datastore": [] + }, + "AU12i28F4ZE9BeQBGMzE8uFP3Ap2TDVjr4G75XSdHcUAtHDE3oufG": { + "balance": "1068.502299639", + "bytecode": [], + "datastore": [] + }, + "AU12i2LETj383SiKT4S6Fh28HMsJXUfWQ3gMmAQ6MUwBG5nRZNKaA": { + "balance": "5964.208708716", + "bytecode": [], + "datastore": [] + }, + "AU12i2Pt1ffpt4nYuUTz9UyVjBBeDcsDwHXQtmwsERe85jCdy5F2Y": { + "balance": "2033.887102023", + "bytecode": [], + "datastore": [] + }, + "AU12i2UHN1cz5UsuG6iX6bBUq7rqPzkHdAUy9VWY2Ui2ojsLKLuNT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12i3R2EfyA8exnpe78juUQCBLwibCv2C3ZhP7e5xwD3hD3hvAG": { + "balance": "2438.411518593", + "bytecode": [], + "datastore": [] + }, + "AU12i3f5438rUtLNektsVL3txCeuZaRmBoW9Yoxgphi2yVnWEN2QN": { + "balance": "3246.664961123", + "bytecode": [], + "datastore": [] + }, + "AU12i4CmegH4Bvi6VBgmS3NKsS7SPfEsnDpKRLyUjo3PQEPGqmfd8": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12i4THRBNGmrZyDUJcteSh4Qmszx6Vcv9eJhiSwjzMuJ2gtph1w": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12i4W6LL6338k3j6JjNDBeA1NKxoZgQv4THe82aUR4DT4quQ6fE": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12i4XyAy7kHqrGp1WoQGtQjGsKus7VDqaDCL193owJ7NxjAy86u": { + "balance": "4459.988793605", + "bytecode": [], + "datastore": [] + }, + "AU12i52MGWNxY9BwaBpBUpe3SpTvMHG36taL41iE4ehwfMGELnXab": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12i54agggSMjgz23EooZSWVEQ5SrFnZV5HVAx8jDkW2DCHNy6kV": { + "balance": "613.131482824", + "bytecode": [], + "datastore": [] + }, + "AU12i5ns3GXPYkuQPfuuTVH5o1RoHkugdhG3bL3Jnxar9feMtm1Z8": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12i5sGdxtASTMJUSwhLXGwRGUTu9foJ9KonqwSwsmVF64fmkM5o": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12i6FBGLHivgzZ54BPozCh7zSptzqLcdV6mKGTuRVscZ49Qd4Ea": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12i6wcnkLa4Nk5tBZ3qPBUL2VUpZxsjaDurL6HPLFB3vCQmrLfZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12i7AbGvXGUThYEZK6wGBxEeb1HmcwHwjpywtchgJqoWZXzBk4F": { + "balance": "76.912148181", + "bytecode": [], + "datastore": [] + }, + "AU12i7Wi4AqwpLhhn25KM6nbqc7uZghwFBJQvuxFYfQ9ph2HH9PmS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12i7tEgFWXNdSvmNRhuCChydrFG2GLboB49WztjRAsJzM7PLzAn": { + "balance": "1574.306468209", + "bytecode": [], + "datastore": [] + }, + "AU12i8PzuXnQL6Lqoyio4qN9rvNGYRLSdYtW4YvQ2HwE9y6EPpS2E": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12i8YFcvwakG6Mak2Hfa1T8p6NyufUgCVCgtpZrq4NkT2yqpfAg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12i8YR1PMZivQ2Ue9HoZ9KcA1QzzYExVVWkFhBqpPdNuQd9uyfc": { + "balance": "535.748582527", + "bytecode": [], + "datastore": [] + }, + "AU12i94eLutCJYCLbnoyLsUvbJSEQX26CCgtri6Hp6ygCvxkW6PDM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12i9NSQZhSNpaGkjRFLCyFNUW6piEUXEkZn9QN6PqHPWj1JA7MW": { + "balance": "1110.034355348", + "bytecode": [], + "datastore": [] + }, + "AU12i9eX3zB8JytHXYnBmcLtAg12gnGcykrGGJ7zMyhbBiKy2UZfw": { + "balance": "732.430839232", + "bytecode": [], + "datastore": [] + }, + "AU12iA1PmfG6nZnJPGjjVSL8LFyRLyMY1ufD7fND5bXRnkviFkAcd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iA1n5p7TR9koNikUcgDsY3Dyq6qzEpHfbEmQZabnQ12iNifcn": { + "balance": "3841.699762481", + "bytecode": [], + "datastore": [] + }, + "AU12iA6YkKW5S78HKoB7aiU8HgrQ7nuE1kztmj2J7R21W53xijzd2": { + "balance": "1702.778802832", + "bytecode": [], + "datastore": [] + }, + "AU12iACUU5Hn3tihY5JVDZ3asJKpeHEZN7C65Ram2RyruwkSBNzX3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12iAmnsP3ZF57PgvQvUBdPnfadcXaK2gsh3wXUwhvdr8fMfQufs": { + "balance": "1367.874368929", + "bytecode": [], + "datastore": [] + }, + "AU12iBmPqaoxwJV7uydkAHsGamU8feZJX4Q9H9pfKQz1Y7rFh8fQy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12iCcBqZZHoYZXmqqVVZw7GFzbnioo6S5prmQtFEQ1dT1TLb36z": { + "balance": "2149.524370584", + "bytecode": [], + "datastore": [] + }, + "AU12iCvoDLVaEuCaRCHZGNHmPGyWqFxJ4WL16gXVMCJNYPctEEPn": { + "balance": "228.112827319", + "bytecode": [], + "datastore": [] + }, + "AU12iD8AqTStHzxa2cSjV27EXBAujzQt2qMZdXKvkmhxcvna7zQkW": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12iDVMd1vbH8KR5yEwhpsxeJuwtyFwc4oDaHHY924GQKvmZabDw": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12iDuF6C8gZTfFAFzdbjQ6J4GZnqRaBSSEmJxCq3XDxL876UctG": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12iE7bLp3NXGJRpCYW2HMHbhGXAN9T31V14DwWpFivSxULyaid3": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12iENxdEBuTERJJiUFMh1Han5P4tcZb7Y4Z7vbsxCU44F3Gfhx3": { + "balance": "1227.297972070", + "bytecode": [], + "datastore": [] + }, + "AU12iEojGHgtA2tufBFM3hyTcpGuu5WzLR2LthmdZWuLgxgyV1xPK": { + "balance": "1363.120803672", + "bytecode": [], + "datastore": [] + }, + "AU12iF57SXfC9mn4BJ895TXypbz5op7dWouEYmt7HkQAePmX5wSVH": { + "balance": "856.312966168", + "bytecode": [], + "datastore": [] + }, + "AU12iFGDe2UCeuc7Wo5kAMYhfMk4woESeiLWewc41P74aAMbAHBw9": { + "balance": "2735.335808388", + "bytecode": [], + "datastore": [] + }, + "AU12iFRPLEydbjcHBLxXXBWAAXpxBfzyejEYuAAZwYfX7nrR7L9Yf": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12iFfLXYGrnrAjiieXV5kNxzuhA6voarUDTPp7szyFPzEsm6CHo": { + "balance": "7.107072209", + "bytecode": [], + "datastore": [] + }, + "AU12iFiqoo2WMQF4KZJt9TojRLBkD3E8bNpeBEtvKvmkAwB8L3Xy6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iFo6Qq9GHA3j8zvNPBEwew7VtyKKmJJseGqr8zJRXqV5U7kca": { + "balance": "6451.403281646", + "bytecode": [], + "datastore": [] + }, + "AU12iGC48nyd6KaCko8vDXfzta4Z4bxmHyoLUqatwXaMi17RzBCWn": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12iGHJrBtuEJCkfz5fhKncU3q9Set1ddkSqmVQPvrkireNL1VQL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12iGVLnwzhyUdpymydaDFfjUkcz9RHsPinKUwAqM4sHqvTnUozY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12iGirJH1n1oRX7kybNw5LFzNf5wQsnf2w4qkhf1iVNRPeJ1vgj": { + "balance": "2409.237860126", + "bytecode": [], + "datastore": [] + }, + "AU12iH67xBrzKqNqQsgDr1qd6TorYsPhhrY9gqXqgJJaYJv7P8WqM": { + "balance": "601.268894470", + "bytecode": [], + "datastore": [] + }, + "AU12iHdeNVS3rXkdwptgv4xiwF69atZH3qETNC12DGjcsHdfCG4JM": { + "balance": "1380.776541203", + "bytecode": [], + "datastore": [] + }, + "AU12iHukBLWhsjbHHbKjeE9SCPzWqFTrrL6aiNSZdLP9MQLRAq1C7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12iJ2Jqpfgtp7Nm4zo4StBE7pDZvj6X8dWTrpzvh3KyymFfkQLb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12iJ4Q21RT6BTFk8yXudRKGb48rUS5P1VAUvdPMeoprsrLjuZ93": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12iJ721rRDWiZQYBDKuFEmzNp7NKMBu9MZnTEDm63g46UJHzhXq": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12iJFEypZyyUgqwZYMeGVqc7vZtswAPwcGifV11hkvCGz6nQXGy": { + "balance": "1237.046320150", + "bytecode": [], + "datastore": [] + }, + "AU12iJQrWtms9W8U6aFAwTNRhvM37ZAybteabcjfVn3BwzrXPbqwE": { + "balance": "2432.746076204", + "bytecode": [], + "datastore": [] + }, + "AU12iJvqhkwj18jtDWyxJC7FBmStJrAgc6nGop6NVnjfey9WvtQVM": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12iKCAidMAhudXHgw5jJNXBbLy4EtnSE9K3DiEBLU5VQpiwYE3h": { + "balance": "627.477006462", + "bytecode": [], + "datastore": [] + }, + "AU12iKL6Aica5K7UfnVNwfQVknU2ndCCPCrUUjaWPgdrpSRmpEXim": { + "balance": "1976.747862348", + "bytecode": [], + "datastore": [] + }, + "AU12iKhRUwah3abFDUUVBsGxad7ix58GtEtsyawb24UXu3wAPb9Zz": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12iKvee9ogBYRoN1isGDNhETfB4brq189gZ9p9NMs2W3wEJRYLi": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12iL1hKHUDvDenm58vzX1HuoMckuQnYTWQizp1MtpSVxpdifydD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iLE5YVw2a2FFFrvayfCyuMcLZfi7raNS3fBhmm5EfnDT5FY6M": { + "balance": "4658.538813637", + "bytecode": [], + "datastore": [] + }, + "AU12iLPFvXgRnke5CUHrG1RkxU7jkSy4E57EnFU3ZtEYE8khhcXh3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12iLa7uKu8exc6fWMfHkR8soUP9WMHCaaSYMs9wWoZ6GddkQvtU": { + "balance": "1058.500389610", + "bytecode": [], + "datastore": [] + }, + "AU12iM2NLuTMLSVRxDtVwNXeCAjaJTBemNfYaJjmWoQLAGzmqoSyK": { + "balance": "1786.368710095", + "bytecode": [], + "datastore": [] + }, + "AU12iMjT5rU2zdFaVPupJ6KX4RGVPxoUa21Ux95DXuvibJpvQXQWF": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12iN78QBKqYL7oVELJyKTjbS7NHxSjnKq48czX8HjHcFi8JBn9v": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12iNzoAEK8SrphRHW37epUF28iJaAeTxsJCPEAmZfia72Dk4BRH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12iPD1CpjpGkByNbiNThrL5FNwAL8FnGQ9qPDuesvSMbzBegULy": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12iPMLCmzdoDBAQerCXpt6JVYhiko74MjjmJNNXDQc4fsBDt2XH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12iPhkcrr56nRG6RuneSweJRdjhiKxoMdDVWcJdeazqoYG9xqqo": { + "balance": "1277.645387031", + "bytecode": [], + "datastore": [] + }, + "AU12iPutscQzFGsaNRQYdTCa3TwCLCAnR8ydTK2chGmSXEEyvVYf5": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12iQ96a97tBzawQ8XHmiRBdVKrGd9oKfEqXoM8wRLHLdUCXherk": { + "balance": "115.394923218", + "bytecode": [], + "datastore": [] + }, + "AU12iREivjvi4TYvb72txyuatrdnCqUY9seeGLa4WXaxrhiGWkUW2": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12iRPV2AbA8HJgSQ3n2etm7C6TapZt4SXY6JjrDAyjQMhSsAtbg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12iRU92Jyi8kisZJt72bVwEhTVbGNeBkjP42n41hY9G6gz5xJjn": { + "balance": "2512.723486164", + "bytecode": [], + "datastore": [] + }, + "AU12iRk3K5XCTNeSQAAkRDccR9KEmFADMs5gzRAAnENmWqHEcaVDJ": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12iS1EGxzxuHtFbYg4Mit5csyu3mvfi69LZjiLpHyq7QVvx1mD8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12iS6JSYWh2n87C43nR19yv8zrwcVoswPZbkbf7etigZNxdBSE4": { + "balance": "2246.215177948", + "bytecode": [], + "datastore": [] + }, + "AU12iSU6kMUXgJCErXaAkDqDTG4jjNE8ABSVFXjw9goZPWAh3zA64": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12iSxeY7MNpXBGCZ4EXqtK5gvffgfrQ7k4eewFrSgoHZ6ZfTmCL": { + "balance": "2288.752380380", + "bytecode": [], + "datastore": [] + }, + "AU12iTfQycDoruGPomMfzNaccc8KAPFGTHX7ukVjQ3ZvJUH5weDT3": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12iU8QSZPVRHcgmiJNjQnkaQpFoBCyoMd7PyePsK2XzNUY9v9g8": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12iU8dDKGw3Q2dAL1oDTpbZ4tocExVD8QrifdsUiThmPAF6DjTd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12iU9ywyPd2Q4pPNDVWHn7v3YZom65NqTqmfaVar8vNLEGrWpKe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12iUQ23FetjtCLAah8iTKqKJdMLzGSoFn37gxVTrGLapKhEBn1p": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12iUbdZsn2quec4iFYo9nW2QGv1BigKTsxnqWJHYmfwXGUPuApt": { + "balance": "2544.802142798", + "bytecode": [], + "datastore": [] + }, + "AU12iUc7AXE4Fwp8GyCo1LaMTdiLJakMEKmbEwDHT3h1cmjKo1DN3": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12iV1QzDLBYYVUQVKThQaSYvakoLMekbVJ8LdJokDacVFvzes96": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iVAUGBjr4FChe3GhM7epZYKjRduC9fwdbwKdBc7hR9FXFHDBp": { + "balance": "19.515225796", + "bytecode": [], + "datastore": [] + }, + "AU12iVw4xd5yGY9KXawF9oz4koJLGWcqY3TCZ8KLqpba88gMUDesz": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12iWHv9RxEQHuBRnC3ZqJbNbACMHpWsuuPBBAzFxFwMJWwnxtzz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12iWMpPZ4ZLfjs12E1P2esrvTtSA71rrtzUT8UXuooRKXS4r4RG": { + "balance": "1013.205126926", + "bytecode": [], + "datastore": [] + }, + "AU12iWPb7F9aDhAzNa2dWmLqTRQp9sFMrvWnZUx3q3uL2Znx9dzFP": { + "balance": "4756.607931977", + "bytecode": [], + "datastore": [] + }, + "AU12iWqQPehXGu6kUu3JzMf4HAwqxSDns4BCV2quQDqzbfyK5kP23": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12iWv7xGRgZxRWLdzVuEMpVsUDxXgw5oEP3e7FNBZpGXcfbjrwd": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12iXUVS6bFhB9VSJJcsd1XcVhbzkDZ42jmbGPdGEv7ZhfFfW5Aq": { + "balance": "2890.164134251", + "bytecode": [], + "datastore": [] + }, + "AU12iXXEquztfirrwzQzZGBmQQuqEQnoYMa5CtdQw9AD4GSxAtM7T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12iXd769tgHZWRHMY8XVR4Eb5VXEBQiWo4DxuUKSB5rYp6LrP3T": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12iXhckUZUwHDjBceaZcTPeQoK3SqvqWGaxtsaK71xDm4HHB1Sj": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12iYC1gZFDdwkDGTRmFN2gD8VSG1kVG1XatCdbKDh4K2BnB6JR1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12iYHgFpTynfYgJ3GDmnaRw8gDigVMKYKEJeyGTSa7p9idvLzAv": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12iYSeVsuTxkRZeHE53pZ9eAWFgLgVBKA5CmeLUMWQeYn9D25nq": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12iYf43xoyZA9ozpD7Mm4MrXPewACLBbcZ9i8KzyC5B68UXYZdB": { + "balance": "611.629649762", + "bytecode": [], + "datastore": [] + }, + "AU12iYgZWaX98erk6MwJhpXtAznnfipzDgZPPp3a8wsJJXAoPnUev": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iYsxwWniUt4BudCuj887wdLvFnBBwp3nvYSzGQLey4P9Ty3SG": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12iZ2nL476kmFAkhDLWfAzfbC9ZoTQSpsaZUT5vvexbpfREy8Dj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12iZuecqKdvmz5zF4gwgyDCaikvCJw8ajaMDTusMNywVDBFXcRT": { + "balance": "3242.448586028", + "bytecode": [], + "datastore": [] + }, + "AU12iaNbvzqPxRvuDqDG3QWkvX1VjRoyZ3gQc2aDYR2Fs36CywR6q": { + "balance": "3741.913367795", + "bytecode": [], + "datastore": [] + }, + "AU12iaS2tYKmTiDo6g5pQ1sXY5TbLp9F7nGNrSti2KxfRf7qNFZEq": { + "balance": "1377.836722549", + "bytecode": [], + "datastore": [] + }, + "AU12iaV86HKdLksYmVy4xiv9QQg156f6YLAi5dEhJwbumstsum3WK": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12iaXke5ZoCtRtX7DLGoamEbqJ5RWfCNMJH3yVewjMGMJWsxvFf": { + "balance": "1976.793238968", + "bytecode": [], + "datastore": [] + }, + "AU12iaybyznKhwZjZKc1HDVhEi4fZsmzy8Cpe2yS45oezpVBzkLyv": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU12iaytWMFVkvg8c1dq5AdBQ3mQQakEk67eySjecMVXbFD3zaP5u": { + "balance": "2785.502718418", + "bytecode": [], + "datastore": [] + }, + "AU12ibJcYLMddYUqMDAM99HHD3QNTT4S2m7A8xXt9tisKhSFMhHQA": { + "balance": "1889.915902611", + "bytecode": [], + "datastore": [] + }, + "AU12ibXUuVbPK7sZRZdMJa1551eSw96bt1tHXDj5R8gT2GZBMKLGb": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12ibxPyHGh8q8HZWoQU3vRkGj8oTY2xTMf3D3E2Ew9LkkniiExi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ic12zejw1RH8J7YpKsM4CyfCYXZ9fK3xb9dCfKkMfjHkCGDwd": { + "balance": "615.934587340", + "bytecode": [], + "datastore": [] + }, + "AU12ic1QbHGxkVZ4gCBWs89WdyQDHHUBVGAGo4r9Ah1nPc8G4npTW": { + "balance": "4065.243479654", + "bytecode": [], + "datastore": [] + }, + "AU12ic5Y6qpsr38GaeV8L6UMuRSrgT3ZxHhcBCwY5sDYp1EYVSKjF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12icAwaaPeWFNms2MVPTB2Qc9wYha469rRbdTrmF5d8xB1sq1Ta": { + "balance": "1682.034039894", + "bytecode": [], + "datastore": [] + }, + "AU12icaf3FGveGuSR6tVLFZ4AQsAHQxye7J5MGouocRf8aj4bgas3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12icdeKBsaLAXjUgT95XqBzgzwya6XnC7PYEgQXGYdPVnwFfvSy": { + "balance": "1363.978250198", + "bytecode": [], + "datastore": [] + }, + "AU12id1x5awPaW7gZbDjik2y98e48uXzNqYWFAd8nC2r6QYGfqxEk": { + "balance": "909.709198635", + "bytecode": [], + "datastore": [] + }, + "AU12idKRLBH7wmpNLA9utXiFwZAmUm4CuPcnRX49KnUZVaMBcwjS9": { + "balance": "1692.627689475", + "bytecode": [], + "datastore": [] + }, + "AU12idffFDo61P4mGr4hc7f4QnCNGiAjkv6YKv3vZoYBgeF1CgG42": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12idxBQaz4PMM4CPA9LCWVp7R9J9Q3LoWqmSYTsB1ZerpUq7g1g": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ieBg5HyJeZfzw4QMP5tFi4m5WYkUPC8eH2bHLqSCfTdWkTiUh": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12ieSEf9JarPDnFp6UZaGCvP9akZC3mw97GFRgRjJTFd7speaXx": { + "balance": "6569.816683383", + "bytecode": [], + "datastore": [] + }, + "AU12ifi7CRWh2CuqPZJQGJMzYTKqELZZHHKTfQytnxE3M7HXQmGcc": { + "balance": "3568.370342607", + "bytecode": [], + "datastore": [] + }, + "AU12ifzGNHNvD3d3imMEX5SJL9yjCsAyp8CjCCDtBZMEpATv3uPYq": { + "balance": "654.373403136", + "bytecode": [], + "datastore": [] + }, + "AU12igAwYLbQ1meFMNopMn6jPnmnxLiqtYR2Cah6X62HAwt6CLVVD": { + "balance": "1131.432995685", + "bytecode": [], + "datastore": [] + }, + "AU12igDdfZHes2EbYh6nS5ciWGoX7YifDsEjutGjfXpa5dYAQsF2Z": { + "balance": "4372.647993459", + "bytecode": [], + "datastore": [] + }, + "AU12igYYNM5HWyE6bkf5cieziMFtCaRnQRrXCZTMaskqhu7wW46Wu": { + "balance": "3781.640029796", + "bytecode": [], + "datastore": [] + }, + "AU12ign9aWKCVF4zHoRzCEC8JTY7FKYAjU4dtd3GsG7tDuzZZsRch": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ignTxLjSm9hvpa98qZ8uVpRjxKVnPKWdmvh5tzdiQMX8voRZJ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12ih2zx6dXSzkPkUkv6taGS36jXpJd6LQAMCf1g7KLsahuoEpQM": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12ih3fA7WxDwDQSvvVARU4vYyevTpPqh9QwrMdJ8jwSrEPVyaSA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ih6GUkfZ532n1HyRsgjU1gu9412tewUgsmxm41yxppYkhqXQ3": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12ihXbi9jjoY49PsQh6k1g2otfEEHcg3Ut9hmMEEgifaZUiq3xK": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ihbJbE5USYkXXDD7KTya9GQBuWt9gBgsGpSGoddZY5nuRUfBU": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12ihiy2C4hJ5P3kvaM8J5xLk9JcrQFEncMitxFQkWDVhhE8EYaz": { + "balance": "2271.167295762", + "bytecode": [], + "datastore": [] + }, + "AU12ihrTsGGvHQHvzMBNd4HP4puc6syxEkP39p5f6oFNcKhiZ4hMe": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ii7d1HpKCEb11aXh2YgwKxQVkksFDf4FdAYAGuSqUhVuMcq9m": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iiRNcu5Ys5cfeJenaNmrmE9gygmcJYocG3ZgkLYKoecB22my6": { + "balance": "815.998018782", + "bytecode": [], + "datastore": [] + }, + "AU12iiogiLqomSkwmQbmMT7ozhJ4cJ6tAaTPeabZFj3rfR8foAjSA": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU12ijHTPDj1DFe7WSyY7HV812zfMnPAhUH8Awtms2g5NaNyVxtCs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ijNe6L3P2x3CpXSL16TUxhSjGWSCHxrGpmLAksBG8B4VfNJiN": { + "balance": "770.484725234", + "bytecode": [], + "datastore": [] + }, + "AU12ijRoC7DQvtndMLkG4CzdwNQL5TaCRoTJ7rhyXKCfefjUr9bz3": { + "balance": "1237.530847486", + "bytecode": [], + "datastore": [] + }, + "AU12ijc3tJzUsx7b2watTGEGJgVCroGpFjEhKAeLMfwUpf8Bc7Tpe": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12ijitgLfSToXEj6uVXqNoPPfjY3ZSmc9ttBP7b27HARiCbL3eS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ijwMEqcTuksajiZrBngYSa51k4VVfCZ2SrNwmrA425BboNkG2": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12ik29HESnv7eF4hVxNWCE7B3qvmsBHPKE3Y9UWY6WzdW84wbCB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ikKssSRvf6PtPi68ayG51yALosNcNmaYaypF8K9UL6eeZLoCB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ikQCRm9tKct7xz4ovfUhSvBy68GeWGwtUTRq174Gjk86M7ZjH": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12ikVQkAPw8YkWSqP77MUae1LynPKpjx68EcV76sR8eHCodKBzu": { + "balance": "959.278618770", + "bytecode": [], + "datastore": [] + }, + "AU12ikWqfd1976SuQKytGtT6DePoRGFRVp8FsezfHkWRKdDdBqyZq": { + "balance": "720.932399840", + "bytecode": [], + "datastore": [] + }, + "AU12ikh8LK9xMZk63Lo9ZA8J4VpqcxKk18vwfv1uBYAFSNa5bgTfC": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12ikiaUBhtEjC8n9dWf8vrKMRYRqpRubAFyzwNZhknfCq5ZaUqd": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12ikx5iKkULoMjHhbkXZ5X89C86RE7RFQfxb1h4qVp96AKXEBvV": { + "balance": "3000.647635878", + "bytecode": [], + "datastore": [] + }, + "AU12imPwJ1NeRvLigV5JMzb8WUTAULNEFToeD2knXbFSK5TjzEdwq": { + "balance": "652.196425663", + "bytecode": [], + "datastore": [] + }, + "AU12imb7hjc6YK7QbWhXwZZSbvpHVWmiizwopBS4A84NdCAKYxfJ6": { + "balance": "2382.304364880", + "bytecode": [], + "datastore": [] + }, + "AU12imngsM8ft3Yxa7vRJmvD2VP74rG3pE5uuwnjbZrqxp4bPeZjR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12in22697LiJdJ6Lszri7p3cLAnEeUaNgU1dZ84Arv2jhgt4rUA": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12inKTye79LQLwy5VsjpWNbH8ZTEceihRXh9TtNtyzvi82Eehgt": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12inebNZLHxF5KLD1cQ1F1D2LYUo7VJHxVWabf3zfo74H6W5tKR": { + "balance": "24.006099156", + "bytecode": [], + "datastore": [] + }, + "AU12inx8eHRQVrFeSmzjVo6Yv7RMthp9Wv4Qv1ePXghDXktXjDsZX": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12ioLWXZxJVqvn4sgUuN3XYMuZ6v1X1sLQDFuEBkaV1NiifpMMy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12iou6W7erxyHgq3YKj9zU3J7Eezpm9PtgsfbLtYzakEq8CaL24": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12ip6K46X3qC5oQTtMsy9ZZac95SKyXExp9KUumpkpPUBpAbpWg": { + "balance": "4003.915070497", + "bytecode": [], + "datastore": [] + }, + "AU12ipMrEbzCKyDDEeCRbJPcaD1bJJeUyrEGfSCVz7YWcEBzQw6Bb": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12iproeLpq5MLjoNuPPTXM1u8rdGdTR4vc95Sd6mvxXVAguKKy5": { + "balance": "793.338232960", + "bytecode": [], + "datastore": [] + }, + "AU12iq8UyqyX7fjEUM7wjdyihTrWsRZ77x38GLpeP1an9epo3GrAt": { + "balance": "2498.532774118", + "bytecode": [], + "datastore": [] + }, + "AU12iqLe5peVBsr44WXjwkvH78TqFrWeerqVpbHrGmVA1P64NJvzt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iqSZ1iB3vCusYUnB3Q8F9rnGMXJDw8EQ4mR3gxfHk8Wx7HTz2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12iqiBHAKKm237ka3mER4cL54rYuzQKua9brtYvAYacNLj12wJQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12irK4HuUY7nfn5GKiVe2Yb29dAvsTpG8DnUDizf2Fg9v4jJtcb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12irtMnVGR4N7kSgK1np83zUFQTT4ewDwz9a5kejmgRusqU735b": { + "balance": "4273.324615348", + "bytecode": [], + "datastore": [] + }, + "AU12iruvhvjMs2RDtWhoKQn1WBBFFmYLDhcfNEFimTzyv44LJR2Cp": { + "balance": "2.580001002", + "bytecode": [], + "datastore": [] + }, + "AU12is3MGbKWkG5rZ3YhaBUdowjA4vUXbKKPa2Jn7nXrJ6YtbaPEr": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12is3Wqbzcaov2jAsQczDW12D4KZDsin3YoLK3Xtus2oj3bdS4R": { + "balance": "1383.887320524", + "bytecode": [], + "datastore": [] + }, + "AU12isJJfE7EYg9DGrJUZNn7XuTfDxEAsauZmWD7DsvVjEk6ScRth": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12isLtPyQxTvWF8Uyn82m26z2Bntt64JcHDpf8dWqDCdCBSrVSX": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12ispVPxZPUfYRrNHUgtNefyv9D2RMTzeH1pggz6uhxypcUw8kY": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12itHKkNVLRF7F1E2t2cWSZdvc1eC1LLttQ1fPqFNZwFbp78wGZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iti8HRxDEn32bLgBueZcn32EMGKABds9nnmRzetvxV6aiGFjQ": { + "balance": "1598.267201457", + "bytecode": [], + "datastore": [] + }, + "AU12iuXEqKkytBXmjBFdFdxf9zLjfQrVt8FTYJbpcoiCPbmscfxPi": { + "balance": "4387.556929628", + "bytecode": [], + "datastore": [] + }, + "AU12iugTNK615zwkLvz3Rg6ziFmd6PQrrnezj2bhdW2eqtkwp5q7y": { + "balance": "4759.192799022", + "bytecode": [], + "datastore": [] + }, + "AU12iuivjM4aQP28enUb4p5BRK4MKW17dmYbGkVvFKtFLJMzizFRK": { + "balance": "2174.220572123", + "bytecode": [], + "datastore": [] + }, + "AU12ivhd7dVfMNX5KZy1eLHJFYnEabK6VyyHyNorfXNLY1af7toMN": { + "balance": "934.833567801", + "bytecode": [], + "datastore": [] + }, + "AU12iviWiwRDdSzkzEXrQyiKWt55ozZgLtB9jRZwPvq6Raqktivft": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ivzrmFPosXnCS7KcaPMWdRvc6gV4LtW1ooQwAEwG91LkvK71a": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12iwBGKevAuY8oiTZwvkrzJ7nCaq3j4VyeKbP9VnCWMXx71FpWa": { + "balance": "1317.025655722", + "bytecode": [], + "datastore": [] + }, + "AU12iwHErZwgJaF3iJtt7Gsh6MPnmBs1Xs6iGAEsy1B93zyG2BYh6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12iwfsaJFB22DtZ6626AtQsFuXNbbwv2hd33aFgoSLApF2Z8DEc": { + "balance": "1872.723899505", + "bytecode": [], + "datastore": [] + }, + "AU12iwrh6ZgjfNSei4LhQK3oA5Hs8UZsjCm35yDqneTPad4rimp4P": { + "balance": "710.310197994", + "bytecode": [], + "datastore": [] + }, + "AU12ix8GLS5RH1kgkwX5sgdTgatfa76D8zJwC7WVHHhD1igDGWb2F": { + "balance": "1219.944930426", + "bytecode": [], + "datastore": [] + }, + "AU12ixcZQPnhauPaBsi3htmes3Puu1B2KFPDfwP1rQdZFHuLD9wFd": { + "balance": "2.991364120", + "bytecode": [], + "datastore": [] + }, + "AU12iyE83xE65Teo8juc3N8qsRsqNjqs4wPHcThmz59hbiniMw6wv": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12iz6dzCsW4GjFAgSBh1pS7aSaZiB6WTTBz3ryX9fCga7bNngzB": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12izNAa4z1noD5imHQfypaFA6meBMF8cUWHoCh1sdWzMyaFUofM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12j19Nr7P5nkv13Yx3PrzzC8PMrDvpGrDijFmdy3oCfH666RehE": { + "balance": "782.670400959", + "bytecode": [], + "datastore": [] + }, + "AU12j1C1cZTAM5UTQkrPXMYXASdAjCBc5Ve27HuLkjM1ZHpf9bdTp": { + "balance": "1451.034538430", + "bytecode": [], + "datastore": [] + }, + "AU12j1J8oozfTPMCFXwcNhPF7xA19Prkdy7LG3EctcS1WnRDYxCdT": { + "balance": "2814.193403441", + "bytecode": [], + "datastore": [] + }, + "AU12j1JDqfrh4uTwktzT5MgGpDv3GrSvxfktKQ4R9a3atSVJJwEkt": { + "balance": "1823.512069225", + "bytecode": [], + "datastore": [] + }, + "AU12j1JgsazLYF9XkBEUWk7wLaemBe1gY8MkAvVYphcKqD5CRFcCY": { + "balance": "1532.323671184", + "bytecode": [], + "datastore": [] + }, + "AU12j1aVCz3gKN2MVvAqe5WTEu4zjgh9Tep6vChdVoUippPuXBdTq": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12j1pcRKbGDdpStpPYU8E4HgUK2vZmLsb7FaHYkZ2GiPgtDepnL": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12j25FxWqvV7EtcaJtwe6NuDCu2VnmaKheoEFEY7VZdaWstr3PL": { + "balance": "1511.156771216", + "bytecode": [], + "datastore": [] + }, + "AU12j2SkPi74XoVtZEQay9hHcGE1JRDU824x7DSTMs3uHd3UkJK1i": { + "balance": "3280.076892868", + "bytecode": [], + "datastore": [] + }, + "AU12j2fLodZZ27qJjuRJQbbBdfgVZiGEo8fiy2T91RFpXJfn1hgp1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12j2uJcMgKULiphYEwpBQa44sm96ytX1jBv1EL3WptuvDn5mP9T": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12j32DnGRmnoA2XjEn6mbUL5wfevUX1gy8Xp8rs8uUb4begjArK": { + "balance": "75.082508251", + "bytecode": [], + "datastore": [] + }, + "AU12j3K2TFnfm5waS8bKdRrgj4N9DVivPWDVdfbJHr7XhjxSEUHBk": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12j3QsJTTrc1UboDG6fGT46RHLyG1y4aSpP4Pk24Nu4LFMTVbEq": { + "balance": "2522.062863407", + "bytecode": [], + "datastore": [] + }, + "AU12j3R5MPXnqAYB2B8JQ428AX8BXDuNtuWgr4keYvvq7WvwAwgFW": { + "balance": "2051.971588858", + "bytecode": [], + "datastore": [] + }, + "AU12j3cKUubY49CX77fYSjgwr1Dy2jXZEuGmDsxCMakwH5DojxcH4": { + "balance": "1405.640499641", + "bytecode": [], + "datastore": [] + }, + "AU12j3pjoZdCLLV8C3i4uxwb1zcQP9DtkugfRRgBh92sMT5K6xs8P": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12j45KeakZe1YszTNyzCHhwuVD4QGmGPzxt7fEdSWktWAnRfFCg": { + "balance": "130.766276912", + "bytecode": [], + "datastore": [] + }, + "AU12j45oMEoM17XANnLSR7eQJm7WLcktw7Ywh8RJAKBUGgV2QaGuo": { + "balance": "2918.586595031", + "bytecode": [], + "datastore": [] + }, + "AU12j48MzD2Dtx9511c161QSriFtBcpoyiLBDPVZxBDNuxdemMJi4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12j4MZjjD3eRyPBagwRCYfx9ULep8WV4gxhFT5VAr6c4gzdwadD": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12j4RxcNzySA6zqzBDzxjH3Q5KFpVjEKZE5fY59YBwT7zTTmuYF": { + "balance": "1479.450601120", + "bytecode": [], + "datastore": [] + }, + "AU12j4uLvF196T8qbt3o64PfavaAaqUbHJV1dj6WkwzXN482H1MXK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12j55QCsRiGr8AiKFh7yJ8Zc86Ck9zoMa97jDkMTC2EAY7683wa": { + "balance": "2651.598449636", + "bytecode": [], + "datastore": [] + }, + "AU12j5U1XBKT1NKYcqvNb73qGUarCyAtJJV4nWMk9LSvL7bc3yDjV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12j5rQ5SsNMrwQFshcB8skjEXo2rCFik6mmqPeF2qZjnhDPttsC": { + "balance": "1096.913019142", + "bytecode": [], + "datastore": [] + }, + "AU12j6F13HV2uUyWWvpFV2gTAtss7SudXZZkfcBa9DHRcNmNUHeie": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12j6JssbxaQhS4gojvgELeAzDdkafKgTSdhUxpNBWqWhbfJTJ5E": { + "balance": "641.132869999", + "bytecode": [], + "datastore": [] + }, + "AU12j77nLYzzEErbX5zdDBzKjXonJGxa8PmnPq9CbR7ZybLDHSAEd": { + "balance": "3257.512860842", + "bytecode": [], + "datastore": [] + }, + "AU12j8iJCZGKCzVvyRMoA1yjuHxe9UvfcgzMmwZaMGAd3DkcA5Z3a": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12j8q14Zpk1VbVD1PsHXhkSipZwaX7agEnUXMZniDyBzpYJ3YYC": { + "balance": "2.596853326", + "bytecode": [], + "datastore": [] + }, + "AU12j8zPTdmvCJVe37e2JDAabnV9yh8jqkorJ65p9nAgmSB42nxyy": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12j9Y3RccEFME4qPHpjPcoJVTiotEUYP5wEbqftvr2BbZitJ4w5": { + "balance": "2828.298647794", + "bytecode": [], + "datastore": [] + }, + "AU12j9aTWqyC38fxvhEviWmdeZa5KNtVqspVXuSE5JHr9GjPNPt8p": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jAB1uF6UgBAZtqJcScscKJQypdyVGK4JboJozckFFu4QhYfbq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jALxPz3eie8RKLgjE71yc26ZFNiMm787vd1rqunt8pTij2Au9": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jAPPXDtEZKnGj7mQmRjCXJUW7RjYuVJa4E8THnuNPVtzQJidB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jATmkmZiNJGsHEJeFaEkVUAzrT9tvv8AWfwMViCdNyZe2xwFG": { + "balance": "773.426310162", + "bytecode": [], + "datastore": [] + }, + "AU12jAdQWfQccBc2fwTvQADLpmwTuYFweQHR3LDQNngg8XEYEkosb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jApmKe1txcQU2F9EKQg1KVzuH1x1Uuu4X11esiyx6YuER5gMy": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jArqjyVT6kPkRvGQBXuTzC1M3BbmqPG4KMBTEa4Kuqb8VVgRi": { + "balance": "2378.664085013", + "bytecode": [], + "datastore": [] + }, + "AU12jAtkAhi9gqwZLaUDLnhrhfYVZJG9xEukmSnUt4W15AjdKp5XH": { + "balance": "1110.278350247", + "bytecode": [], + "datastore": [] + }, + "AU12jAuiKZjcAQfkJK3PQsAxV5jPttikSP2w7xmGqEFJWzYNVzfqS": { + "balance": "682.878412410", + "bytecode": [], + "datastore": [] + }, + "AU12jBb7UU1zF8zznRwLAZKV7MpiEk2JmPnnMmo5Jbr1N3RqErAeM": { + "balance": "1969.698836596", + "bytecode": [], + "datastore": [] + }, + "AU12jBdBpYSvjgbvXEZYoqCazwSXEm5mdLGBUvKNFastED1hAqMgD": { + "balance": "588.939906572", + "bytecode": [], + "datastore": [] + }, + "AU12jCGWKE8VBNAjJAGJARFnqQWptY3JgoEjtNbnufRXiVBWR4P8Y": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12jCMP8MbjYNyy4mi6xwgiXz8G6jFK6q1wMuF3xzTDinCDUWHj9": { + "balance": "1304.502369875", + "bytecode": [], + "datastore": [] + }, + "AU12jCTpKPCyMmE5sFB3prYzxkDgnNVLagK64syjmKD6vfVzExJVH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jCcQX4Jc3S9SsT8dJsrL3TTiasZBfV1nsyn8EhtSFpwcpwJ8U": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12jDANX4DH1V5sbSR4WR9QixLtk5y57XRWpB5B63EYzPaiWwamW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jDLt4qrXd3LmNNiMTBU6TvXuGGH3tXM8S4BNexrCMdGAK7K3p": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12jEL7uLunzaj7yZMrYELk4DdHncMjxVzhr5spH7mqAX8fEHpD7": { + "balance": "1909.839243119", + "bytecode": [], + "datastore": [] + }, + "AU12jETw5AWgQAN4j9tL91USMzwNqsaUwWWff5kwCtk9mHFe4gCHw": { + "balance": "4902.610981904", + "bytecode": [], + "datastore": [] + }, + "AU12jEoxh12RU2JWFx77R3s6zoSzKLk82ZQuecqTL7MY2Ztoa9jzz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12jEwxPx6Tegcnwv8Yq8U9VndacTUyRpEWRQkWDqqJUvaNG9Cr3": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12jF1UzBkD1csuL5bDMWJomCE7NoGy3PYbc4FizWfhpYTRejKmH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jFAWwGQPShqAi2rgLkvRQnX44jnxyuzb2Y3AnJwytzwMTSVG6": { + "balance": "615.933158653", + "bytecode": [], + "datastore": [] + }, + "AU12jFTBdDqFFtNftyTJ5bvoFGGRFBpWFrgXQ5nFDCAzVW92NoznB": { + "balance": "1574.008353567", + "bytecode": [], + "datastore": [] + }, + "AU12jFVA5SJbVcXFB7ygzwkSKyrkuSKfqZYhi6iZot8JUguLP4QBL": { + "balance": "69.179756455", + "bytecode": [], + "datastore": [] + }, + "AU12jFnJXDdaHJjoWAzw7DMKPYdA44YCjikqnpgqKuV8vVB4XjEmM": { + "balance": "1079.553490541", + "bytecode": [], + "datastore": [] + }, + "AU12jFnkKAGQSxfxXdBzZYRGc39HAWoWz1iJNtquZDowdJJtSuDYQ": { + "balance": "1404.941772772", + "bytecode": [], + "datastore": [] + }, + "AU12jG4rQ4zn6oqC1tEVzSEzST17pVmsgSREXE1q4mgYYBKanA9ju": { + "balance": "5089.923494475", + "bytecode": [], + "datastore": [] + }, + "AU12jGCaZZ4Dn7CDKczEvAwGU1LtHQcbGNkYSwKTVjkEcQNDrj48N": { + "balance": "1618.360612132", + "bytecode": [], + "datastore": [] + }, + "AU12jGpyCoU3EfMEn5i6o1tzXkuf3bs6sdpa1pB42tVWShRNLumrz": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12jGuSPdB4xvdrqCH1TDTmeSvUcTYdSdpxh55gZmGWaKSyLNar9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jGvoAiUFyR7C735myAXZm9tP7vr6imWGjePJjUhfT6Tm7m2V4": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12jH5WwfmcKF2ehuNR9YUng16j4G2vKLPx2UY7TzV8ittXWBBbU": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU12jHNRn32PZQoFkb2Mo7aJX2HLb5Fn8XinRUjz2vyndxAdfBXrp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jHP3V7UN8r4y6JtMEcv37kczVx6dZ4pRwALhHLFEqMGVKYDi5": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12jL7aepUVFiX9wAT8QWnZGK4yRdyeBVe5i4aDtxzgna2Yyn9Ln": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12jL8GrKvr3cEj7pYugckHYYUni8wkPKjDwBwzsDkA1SrWWcezQ": { + "balance": "76.675776431", + "bytecode": [], + "datastore": [] + }, + "AU12jLXTCiatP17UKKvRvb95UYHS5Di5HcAAJsFfC6Fbqx2fPAg5f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jLZpRBFwGsqXQaWaWbAYwzvMwNx8pWq1TJG65T7RBjzxKZS5k": { + "balance": "14.175111899", + "bytecode": [], + "datastore": [] + }, + "AU12jLoS4J9xYe8MzhCSroNd61CkkpGwfqFyZexkG2zdercjUrQEf": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12jMAna3G3pKtTGENEDX4roLnWwszHwb6NW1mHvpfDReQeW75b1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jMB7xJu13ZPW6uUCqzH692Nd8acRNonLr7MtJkt5SspicQMFT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jMBiaDfBvtXuibeEydFhrPARZXQQANKZ3R1ouJzYNoyjJEeie": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12jMDX4mLnaiSU2MCycnodT6ga8PtLKyVm6dppjRnh2M4xTFreV": { + "balance": "1355.936299652", + "bytecode": [], + "datastore": [] + }, + "AU12jMGzVDiHDnWehZiE5rDEHnp7ouM69WDAETCxPLz1KLaU5ztYr": { + "balance": "3939.168882170", + "bytecode": [], + "datastore": [] + }, + "AU12jMK2pbhKTm8Z9aRGMdnoCt3syXoH6hEmypD1WRGVA1HQaphyc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jMyEJp6Y3NmT47hV26dWFvaAgiCuGhe16TufEM3eroV5fhEqx": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU12jMyeJsp2pu48r9pACb8hEr9g2jxfAA4RphugG8VRwUN4oxK5P": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12jNHdq9X4LcMAAg8nTQKBC4c7Nq5jD6x74JikKH4cUn1ZHjvUr": { + "balance": "5266.819674062", + "bytecode": [], + "datastore": [] + }, + "AU12jNJfTe9SPrerthfouxGRbhuJ9m8bL2MabjzfBFTahpm2TLsyG": { + "balance": "50000000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jNKzZ1K7VF7inon93fGV2mQJHWee4QMhrMSbLYLyJWWCosQT1": { + "balance": "932.012093773", + "bytecode": [], + "datastore": [] + }, + "AU12jP7vRfuTgbBcveKgS3S8wguYdv2dC965Z64t4DQXkcY97B2Nk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12jPcjxkUKY1J5pbe3unA95skz4AdU5qVoNe4355jqVGxz4ZtVp": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12jPgoNWCmD8Fkmc4fcxuTUaFdYLrLfzi4oNjGcZbf2X1mCm4aG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jPvCBWgs3T1cgnG4jJcuZZwAZ7Rr2GYBVney23pwrauCkruVd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jPwX3r3jcS2s7Q7TFyB1YyJYuT9bAWzP7vV9Pk7xiQzHrsUJP": { + "balance": "4208.594234821", + "bytecode": [], + "datastore": [] + }, + "AU12jQ9adoECK4iaVjTnEZg1tg7UhwxTfDeV7CwNUwaLkkFcKvKak": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12jQYJmAE98ru7Bs33qFTpNG3amkJ89zyKYwsx66wpKtqV4hc63": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12jQuYHv4H9ck7ewLKtdvZgWa1CW7JKfQahDE5WMdXNkur15F3G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jRCJprbzpd981v9qBAiEvhuqKAywMK8UBNQcq3XWfK7FDzGGF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jRGNWuHTboLUwmmd7QqqLwwgasPWyZLXKjVS41iEvoSiBauNc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jRe2vMetSS5gcG2C3BWUzDD8cQzMAQN3G1dd5HeBPyQWroyS2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jRpUxRM4qBsnSkHanEKdg3vGFPG9SuPPqUXvrB23mdW9WMZdc": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU12jRv1ixkZMrRU4sgtq6wvnW9edRnb9BYFQfTMvj3PzyCfTHVEV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jRya4a5XVUGLsurFkBxyHQDBwkKUf7mkhhtdjCNwPZJRCUjWJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jScJNqgQKVqZK7hPnDMnUxkHkCrf9i9gmaaqt6kAUDgLfa4n": { + "balance": "1112.148936027", + "bytecode": [], + "datastore": [] + }, + "AU12jSgkHGsbwEpEkZMjdxbck2Sd8yoAEshc233scgggsvaCFUnWy": { + "balance": "1305.326064670", + "bytecode": [], + "datastore": [] + }, + "AU12jSkGzuLHatBUcd2hzzytWyMkuQSXvVxzK1TSeLNBXq3qwBKyR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jTG5BZ3iKTxWJC3zenGr7geQuft3dCd9YsLptmN3nMdiPULyj": { + "balance": "1297.844099254", + "bytecode": [], + "datastore": [] + }, + "AU12jTXR9WtJVEBsEkiJm6JAabqMyg1KrnyoXBzbBVxzUAp33yWik": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jTbCY9MnAD3DEzBY8dtF9ZTFioFxAZiYvoygJZrEw5uCmTkLt": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12jUCQwdfouN2m9G634NJxYDWJvg5t25vScyCtKrCGtr2a3gCrS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12jUgBpeE1ZGaFHc1nvjKt1heNkegLeQ2dr9gK5ecmREn8ezwuE": { + "balance": "2225.731663532", + "bytecode": [], + "datastore": [] + }, + "AU12jV2Dpu2gnXjCzCvpKFh2fQ8gQ5vmQjct4pTGHVB4XEsqv6Tyy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jVLn8NsiKnEBe5GYBFTSpjVYZ39wcWPHtPVsyuaWKadDfDL8e": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12jVNjme1F1bZkT784U9qf8Tz6348nnrCLYSzS2xDXrDd7c5UTT": { + "balance": "617.819787536", + "bytecode": [], + "datastore": [] + }, + "AU12jVZ5NTrRTXLJC9r98YFR9pSrLA5KHbKD56bo7biUPGfWYGjHV": { + "balance": "4944.927998521", + "bytecode": [], + "datastore": [] + }, + "AU12jVbw5U9qjnxSjQHtNqhw2CBnAb4P76HjQSM53rU2q9bAMFnG4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jVbz3mvKXwQZNGfj75TTsRN7u8s5AqAGwrSv95JXcSVKV4Dbf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12jVhkkkDa4iviJcZmr8KHW9GPQm4KT84gkp9atyigxLoCtt5BG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jVhmTdTjDdAeeTtLjXPM6RXVq9QgXhmwfzWGuwXXUYwAUSboT": { + "balance": "2354.430175445", + "bytecode": [], + "datastore": [] + }, + "AU12jVto7BbF1AvpTjH3q4P9mzAazjRDJGZsEYNr77o1nkR3resHy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12jW9og9Zikd162W5P4YbwXiLEKQNM9FPen8Y2ttxzp4gcmLd3i": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12jWBBXdt6viPQtRLoao6SduQmGZJ5ydSjuEDdbwzWeaMGedEZe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jWJYM8z7jpdUHk1tqsUjEmzTJhkYJYwuNeUcxKe6kXdofoV2V": { + "balance": "2978.678843880", + "bytecode": [], + "datastore": [] + }, + "AU12jWNJopHhCpsLjxDEbrMQcdTXaBcepSn1mxS33hh1EqXxU18aL": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jWRQaKwe9QWncJBHuN4PZ99Z8YDHadeGuFpGvCyTQGuYoCaSo": { + "balance": "747.665417336", + "bytecode": [], + "datastore": [] + }, + "AU12jWWq4HZkudkXyqqBZVn1kYemvotzihQPCwb1zdHACJnFRcrYX": { + "balance": "818.133506620", + "bytecode": [], + "datastore": [] + }, + "AU12jX3pdyJmhSNMUa6Fktr87MVtczAcER64v3h5zQq1ApWjq2EZT": { + "balance": "3543.166686546", + "bytecode": [], + "datastore": [] + }, + "AU12jX487W3hzT5rvskiF9EJ18aHiebNgrAfxRwPbTfgaTsmCTtr8": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12jXTseB8mXnFp877Ltiua2UmtqBCuPdFRa3tR9uGd9vFEoAUXv": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12jXrbr7qtEMv6R975vD55etRuKwRkbRkPBeBLg2ixoftYQDj2U": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12jY4thZXtKR5CEc6CsKRQkRAxDiqygHEcFJLK3MHAbwMSX23Fr": { + "balance": "48.318980562", + "bytecode": [], + "datastore": [] + }, + "AU12jYKY4GLLMFFD6BdQw6t6jfbz4DvNUn1XRx22ofWXYc5DXK1MW": { + "balance": "255.271531072", + "bytecode": [], + "datastore": [] + }, + "AU12jZHWpZL5ccEPhhnk5SyrWVnSssq4beMmqb6vekdXMhtzunMJU": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12jZPR7kLj7YBbm36EZgqaj7rjUHmxyKNPmss2aPSCXzY17JTvQ": { + "balance": "1696.650277486", + "bytecode": [], + "datastore": [] + }, + "AU12jZp1pXUZ4WbZKnQfuCYwuWdEnZXsbnSGJJtUyFx3WpQHpLrhC": { + "balance": "664.288307148", + "bytecode": [], + "datastore": [] + }, + "AU12ja1qqahXV6RwhnFH1mmFStggnHiPRDsMBL72ygbVNSaQTreTp": { + "balance": "4307.476700773", + "bytecode": [], + "datastore": [] + }, + "AU12jaEz63LTKSxzzM4S9KFjLgHxmsk8dzPbMmSLebjLSeQbQvxQP": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12jaJqjoHqurToFWDr19uzjcvV5WSJb8UqFEKFD4mZPFvhTC8Ha": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12jahXurUzwYU1BbsoaTNZzn2p3a6n14rHCnd2V9MLEHToKZPig": { + "balance": "3333.269299183", + "bytecode": [], + "datastore": [] + }, + "AU12jamBWZqNKx1ka6uZX4XEGcRVNnyHYpLt9fm9ksfNSqHPBv4SB": { + "balance": "0.032110567", + "bytecode": [], + "datastore": [] + }, + "AU12jbLqrAdNRp8BtAw3FyMwVaYKEFVFB7WVS3tdfXvxu9RerxUXv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12jbNNhWxXhHToVN4GErTQPUTyzPysWaWUEKP5rNQ7LH7EHfG4g": { + "balance": "1827.423946128", + "bytecode": [], + "datastore": [] + }, + "AU12jbu3AsCqYX57LJ41xFXtd8U4dLnF75eynk9BtSyTYwtD41MpT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12jbuhMTj7oVrc8X1hXbTjZd6mTtATrEXw1uCBcFKKGw3efsdZM": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12jbwfPjw1r2t4xY7NTQh1x9ittTj2wNkDxPkRmzuAfRBKQCCam": { + "balance": "577.003865518", + "bytecode": [], + "datastore": [] + }, + "AU12jcCjSVRWvrWrYw84ZW4e3JkLYcjFCZRrR9RL4iEXWCnRNs7Qc": { + "balance": "3710.905149147", + "bytecode": [], + "datastore": [] + }, + "AU12jcjj3svbWWL78qh8orvwdev4TfJswuNGX8HDUZssiexpPGGK2": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12jcwreFwTqrhZ9TnVbUr1wb8FEQFWPXazwT31RxWreEXwX8kG4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jd6cQXMJyoftsf9iH59xsNyqag7F1XzapJo3peAKnaj6Tj9NM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jdaqdDBQQ5EJjkYkahyvrLa3mjpjYJQnVmYrE6RwVHGJ7shAw": { + "balance": "1262.754631723", + "bytecode": [], + "datastore": [] + }, + "AU12jdxceuHmqdVhd4Gc87eHCW9yKq47QTsCKs96s3tqay6VRjJbv": { + "balance": "1562.497388445", + "bytecode": [], + "datastore": [] + }, + "AU12jekT2oArVi3D9Qoup1iBeNEL5J2QBjYDUZZeCeXDDwAvmf8jc": { + "balance": "2160.309575342", + "bytecode": [], + "datastore": [] + }, + "AU12jeugKeVB4En2Ted9R8qvLVSWGV8rGaD2bWFGNDPK11dD43cWw": { + "balance": "1394.687807034", + "bytecode": [], + "datastore": [] + }, + "AU12jfc15zREjBwWxNrF1wWD4Ei4scd4RTYfe2RgU9PSpoCxjnR3U": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jfr96PkvbwbyKrGYCquUKfN7bbsChVauBRXaQgfEcQWPwAQzN": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12jfsGZYJgpzHVqNsuHLhiWi4KcW9pFA2MtWuzkUrqzU2yjcWE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jft5PKFBWGbVu7GyziDqEybH4ofj4RqmZHUaSuPL2hxCneWAM": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU12jg1GoVVAqMRjbcegJnRzAnGzhoGvLnYsC9igKjYVwgfCJrYVD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jgcE1LiCz3jWwDL58iwRVjtztyYENar9N1Av3pqSyTuWeEK3m": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12jgxpZt8eqBvki36kiKxc2Pr4sXHpashQTAKVCWB6f1Uouw8XH": { + "balance": "1379.358779778", + "bytecode": [], + "datastore": [] + }, + "AU12jhDjpCvqLS5SUCi6Zmt2LxJaFVyTfq6bMznW3bGbPVuRYAu3c": { + "balance": "1180.023427636", + "bytecode": [], + "datastore": [] + }, + "AU12jhDq7HJgkqEGgEKmGD9tdX4xhpJbAgisdysbiKUhF5kq5Mttq": { + "balance": "1586.835022955", + "bytecode": [], + "datastore": [] + }, + "AU12jhUsyRJWJgLu5vjK1ah5sTwVepb9qmcEjkPjhDLhMVHtNWU9B": { + "balance": "970.881096626", + "bytecode": [], + "datastore": [] + }, + "AU12jhbCenEMUwPxw4mM92wfRuMmjxyd2q4qerJQtDUagaYajoqkb": { + "balance": "5358.285844895", + "bytecode": [], + "datastore": [] + }, + "AU12jhbfEsNDuRQsTyU3hYDTr749DNnuwgD3J3tF1cxW8SjkmPvUg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jhjXyk1hiudbeEPA5vrTTs55NkSqVK9oy9nuhVswsUJn12s8V": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12jiGrQCVjV68NP1mXMQ4iuGG7zuWqWGdwT9Bftukiqxda66oj9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jiPVVbtWJqRAvMaDeVpsPSiAmqkntY1beGL3fnuukLvTdcWj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jiPzPs8ak7ptQ9747USuGLfGiGjDfUkBxUkUXwAXMS4VvZNNR": { + "balance": "2684.019375477", + "bytecode": [], + "datastore": [] + }, + "AU12jiS6UbPAZBMCdkqfXMrsHn3HuYzUXtd76MnDHkmSitNwLZphE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12jiSRETAS16cYEGGc6bqGApKHPd494PHDtyw1Wi97ZQcmma5N2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12jiXNPjz7etmGT3qtqdaQphePUAADFt5TRrH7mEgdwS4tpEyJ2": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12jixhwvFKDidtQCjcvEsvaCJvS896ngReci3f9ELhJpnX4P6PL": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU12jjBtcHyW8LQGDJY3inZxrByiy6UVXaTiCyKKmn8D2jGC341AM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jjEYiucuugEmTFA34y7Wb3jVnYqv1F4nqifCCnUcZMjiGnnU": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12jjMRBNoN2sxVQs28wyAvL9zVXr7oh1UsGTSdNC9tV19oZkp6R": { + "balance": "1791.813486132", + "bytecode": [], + "datastore": [] + }, + "AU12jjNeVMFPPfp7memJhS3Vj6Li6WmfS1bXoxvjVKujfDzjjuX6K": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jjXxqdYFF7GVa8m91XvoKdqqq8BUhxRLXaaCEJao2MECSTQEj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jjhqcx7nFKbPiTLBKS1xnpjT7bx1GHw57qFyG1wf2Nf4aAdXC": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU12jk5bPeascRgxhpZSidGQPksmKQt4UUGKHdPydrH9vPSY6sz1W": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12jkBbxtoDgJGYxQWWtQbU5pXWyedUUtn6hAYfAzMzntBENv4vb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jkHnT8UH3x5xQjYyubFdssH6MY95X1T67paqfKMHzTo5Xvqr2": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jkRbRkzJjUKbUPGR4Q7N9TfojbEkWRaos6jyCpoRRsucPPr7C": { + "balance": "876.845855366", + "bytecode": [], + "datastore": [] + }, + "AU12jkkrvYWt5rgzgtmHSYTPisBKmrc8W6Ltn97rFzhtbZyriEcvH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jm9Htto7mHshFwvWd3z9xKbYT26wB4DRTbDjzoTZA5MSWek7R": { + "balance": "984.491824778", + "bytecode": [], + "datastore": [] + }, + "AU12jmJtMiqq7GfgBCoP4sDtfwiSXCshDyQeTzrtS7PryUGUnB3Fe": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12jmYYPULHJvf7LfWtzDAeyTgqLvUQcwnNLCphZj8to6wJMAcHu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jmeUtGsi8C5z9NdDPnmxZzGzy1asuXnLDU1GR3nH1PxtwzGFh": { + "balance": "3787.081994340", + "bytecode": [], + "datastore": [] + }, + "AU12jmrL2q752NyRhPmvGUyhrpyiDTx8ip24BVVrSS9yHCa7teMk4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jn1ASqbdzgj95KS3Hn1GahWPy156qU5kTy8veRLA1ravtDpBu": { + "balance": "1674.074577857", + "bytecode": [], + "datastore": [] + }, + "AU12jnRhZHBbVmoY7M6MewAXsrRTUjcz5YQRnmrz5BYm96jMJVoNX": { + "balance": "4492.021374347", + "bytecode": [], + "datastore": [] + }, + "AU12jnUV7bBb6UF8wgfZVW9i3fwUm6cRUoQk3q7xrfjiC8AAL3ium": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jnaW1muwwRLG7PuZmFMrzcJUNc4aXSAqVagwsybUucbdMnPQe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12jnmrzkEWr3bSzuYicgDvWY95zWvFVQPy7nARSwc5NNizqgzSt": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jnnZMx8xfHbpF2PNoNbuChhw45rJQqc9v3BjJkVUcBG4SfLD4": { + "balance": "720.436932720", + "bytecode": [], + "datastore": [] + }, + "AU12jo1fkbprKaScdmkSYVaXMaekXhURV79V7CGY2ED1eWoaLUktn": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12joMS9eD8aiqMjSGE6gkyrGkBvFmxWdLFaBc5fVvBrVvNq9j3d": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12joXDnpjTnqiWy58dfxw1YHoBewVZkjPMgePCARUqGyAieA3vY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12jq4BhXuNkq6QdVSbvoVWfYHMNdCUsmhdKMzGQFN55s4LRiGcf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12jqGJqA1itMtobTSH93n1QWawk1iDc8qsrGGt8QUmBtPahvmBa": { + "balance": "3185.396795611", + "bytecode": [], + "datastore": [] + }, + "AU12jqRSjddvynzxxvyvgBS3onaojB1xRN6RCw5x2RVD3xAZBQ2rE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12jqTDLzXtHoDpjhWpVWRxWu5q8UyRm9c1ApNw95wM2JvW1Yvh5": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12jqfs5LfD63F1R8aE12H2VsJd866sXFuBBrh6e83mohxErmg8M": { + "balance": "2841.828031268", + "bytecode": [], + "datastore": [] + }, + "AU12jqhvuRHifZkTrCsAgdfuWHmmSXFoQqQNccoC97yT7QLkgkaeN": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU12jqmq1H6dVmCdNHNDa2QKivcaHUGBZtvxG1vXntwJX9LeCLmLo": { + "balance": "42.179848255", + "bytecode": [], + "datastore": [] + }, + "AU12jr8Q1nirZacvnANBwRPcJKjX2SE5dz2u29Ek3Svb5PHFR1UWm": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12jr8nNN25skSzVepvwQ4p7N3PbUGS2gY1xmWVkPc3ofhmfsypL": { + "balance": "1800.540312740", + "bytecode": [], + "datastore": [] + }, + "AU12jrHefar9KvWYDbzZTsyPWhYNsGnPTW8a4kD4YLwDqru5SY8MQ": { + "balance": "29.110914501", + "bytecode": [], + "datastore": [] + }, + "AU12jrL3jnsPdmFW4ToK8ERWUyNy4Yxc8sheecFfxRg6MRPd38tNP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jrLFSn4FBxjEeQr2LaRZF7U16qozajjqq14x5vzLLmvMJV9WN": { + "balance": "45.143033901", + "bytecode": [], + "datastore": [] + }, + "AU12jrVnUtvLWrUZLtHsc1W9BZYSpFBUHyLAQT4hDnAfGQyqqeEXE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jrpRLU4DakFmRZNDMS67wDmRZ39DK5FPPCGvZGDQHVoKFr7jr": { + "balance": "590.291071336", + "bytecode": [], + "datastore": [] + }, + "AU12jsCfQzVcAm7fp3eHtj4UpXwpKsVGt949QYBZuPJseV3rB9Nsp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jsnsfXSXj8AHjc1BJAVmNqR2jNHjzPUkMVjnnTZAx8iWiaPzx": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12jtmwQvAtZEgSsGC37hnufjmXYkdbTAGAZLzutsHSTgKHVoy8j": { + "balance": "1663.833203529", + "bytecode": [], + "datastore": [] + }, + "AU12jtzLsV6r9E1aoAy6MxJ2cYvp6zGca31JQoSmMTVcjpoQBKFrF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12juBf1MUTzvhdDAsDJneiKhA3bjZ3KtcogBP2uHQPX1QTYXAQZ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12jumQnY2Szjf8iDWHrBvp6HpzCmg27pJrV4eyz2FQmhQ1Kn3xw": { + "balance": "1622.072684158", + "bytecode": [], + "datastore": [] + }, + "AU12jv3z1iF8cT6eKjzjsTjjLtrFQ1T8rmBD9TQHQazg42cHEodPk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jv4ivY6Y1DUrqBGqF1QfwNcmdr86Q4KS1AGjt2dyhCHbj8Bj1": { + "balance": "1102.083970885", + "bytecode": [], + "datastore": [] + }, + "AU12jvLaYcinLDBBgpj8vxdtbMdYQKDe45cgh1Qe8pqP4c7t6KEpf": { + "balance": "2880.717499374", + "bytecode": [], + "datastore": [] + }, + "AU12jvYLDsXpWGnJRSUWvLq8PsFyj7KTa5Y9BDUDCNPTTacCDU4XR": { + "balance": "595.963015134", + "bytecode": [], + "datastore": [] + }, + "AU12jvfY5zXH8XkWsJ2Tv6e7GxYkbtYpoDdcDKB97F136tsTxHqEa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jvsXNtrEorYCMSEr3QWopC2Lvyukp69jLoEWkD2ojoLwmrCs7": { + "balance": "59.963698597", + "bytecode": [], + "datastore": [] + }, + "AU12jw7qjzk1aaXVyhCaAgkZF1tbm1dYvyCgcxySCkaPn5i3jBwmp": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12jwBqs6tb6v9Zzq86dZVoyrdwerhfLkwHk3SF3fte5En8fVS2Z": { + "balance": "799.271297643", + "bytecode": [], + "datastore": [] + }, + "AU12jweSVbzWwvAHw2yKjGWjqQTAzWGLuveJn1jbS9npWw6wLC6Bn": { + "balance": "935.343106547", + "bytecode": [], + "datastore": [] + }, + "AU12jwzVuLxVEoQ6aWc9ALpHbCxog5RWJDoKJKa64jwbQmQWmgKd2": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU12jx3bQQxVyUmwf7r66rpKwkbFBmscADcDcm9FZGAWUrj8B3YJr": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12jxHZr67a8BSEJXLHvUa11ajZivjmESW6PuwLuDumBP1PHyujW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jxTtKKmuAzJFeqX6dGR8UNkaDFKPrZ4ZGm1mci1m36N7WGpVn": { + "balance": "907.743996244", + "bytecode": [], + "datastore": [] + }, + "AU12jxaqTHmFSJAirfwRm419g1fK6STheJSsEkp9CUAzLqBcPqohf": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12jxctkG6HX6ddhVajtA1ghZ9rCzmD62AAc1kiP3xhJMrV3ZEvw": { + "balance": "973.080379899", + "bytecode": [], + "datastore": [] + }, + "AU12jxmLh4sfkJLxFuWJQ48Nb9R3y4xKJpzDbXVBYC54vrFy8TcjK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12jxqhLqs2qxTGKNcXy19a5af25UhPFkPPjgpAtr7Uxsuw6keZm": { + "balance": "4577.738495778", + "bytecode": [], + "datastore": [] + }, + "AU12jxsfVb3wKXaT7u4qPhqcBawmEfuN1hErjVWMaeu7mdyZmcsKH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12jxzpUrGpAcQYgfe3jrsQ6RvxJm1Xm8A9oNd1QXLGrEdSeBEHA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12jy94osi5YMP9fpU5HbukNWYqB9FHcaD1LdVxu1fseW4mkCmUs": { + "balance": "1976.018129579", + "bytecode": [], + "datastore": [] + }, + "AU12jysVkNzz6wA7MQc9CrybsVfcEs7XS8JTpNZzeve5TZNHzjEaL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12jyveWva1yd5rzmDUc8Dq9bcJYYcqf87XcvqFpaefajxYqkvhw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12jywJ5GMenfgQQLJLz741r9jNFxWXZUrjcKVTfka6fZp14Sdhp": { + "balance": "1553.163913393", + "bytecode": [], + "datastore": [] + }, + "AU12jywcYdMUr5PktZ5id22jzjDdf1k3f1XZNvWL25LcyJHcXkgCX": { + "balance": "5431.721194528", + "bytecode": [], + "datastore": [] + }, + "AU12jzUgSYTkxHjEYr5bYRBYME6jvvUQnRDqTECyJJhrJbeJvfSsH": { + "balance": "2004.333540423", + "bytecode": [], + "datastore": [] + }, + "AU12jzg15HYdz3wGBHnBNc5vHw391uzUGen2xpf5PBQSHPPEoGhAL": { + "balance": "1997.276158068", + "bytecode": [], + "datastore": [] + }, + "AU12jzm1uAzBQSDpLZTqqusCov87h3Wc9U7JNEsMVZp52tc4jM2pm": { + "balance": "1839.935374953", + "bytecode": [], + "datastore": [] + }, + "AU12k2MGc4dhhrAQ8CRhTCFAZAHTPxRfurZ16wZv7rrrhUW3PcfX9": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12k2aWVFzfDeJwFgU24viy5sUUrx2vWs3242TJMG69qK8NWz8FR": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12k3DAb4GHz9KjWHUPVfPJgeit45oUveu8vdw1R2vY7bbMhxNSZ": { + "balance": "865.639220901", + "bytecode": [], + "datastore": [] + }, + "AU12k3NQT9g7XWiFRot9cKzsXN8qBRPNZVqm7ZhdY2HkqCR9f9Wbx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12k4qSuMH6DrJLpPbjHMV6971sNsSDVNbGNKtB6mb4ixbWh7RaM": { + "balance": "13.142100513", + "bytecode": [], + "datastore": [] + }, + "AU12k4rhpBNviukH8jLzhkNgzJdsUeFQFQxEp5RMQKTN3zM7TDmCg": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12k5PxxrvnMibMk8t11KdLGeeMAxCsoDvrWp29GefPVewmegLQC": { + "balance": "15.291264846", + "bytecode": [], + "datastore": [] + }, + "AU12k5gi3rxAQ6pq66s6qs9DkYKriyhhpLwWdh3Smfdt3F1VwpGep": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU12k6rYN9d7XLugKgAtb3p5J39Xeyyt8RUGCrUPWFEkFRwBcWqzX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12k7DdoTTAJ4qgmGCYjXaSGNzG7bhzq2dFfPhhZStGssDSn9Vgk": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12k7Fob6rzCwcKT9A22258WdUHc8e5tbFbX7FwXJuE4q72yohxd": { + "balance": "2834.330347049", + "bytecode": [], + "datastore": [] + }, + "AU12k7R3TPUbSGvdEBfRHQLbt8HaXMowijWbJNyptJiXzxJffdCVp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12k7SjA189gWXFFMJ55vuwKePL3EN62eKgJrv83VngdnaPXHote": { + "balance": "3019.434196364", + "bytecode": [], + "datastore": [] + }, + "AU12k7abr1u4XAguZVsrW1x1GHVSo7HFr5vQ53dM68Kb22usLE7SZ": { + "balance": "1487.247472457", + "bytecode": [], + "datastore": [] + }, + "AU12k7adDdyiLoV4Y8JowH7v17nRkPtaxAvDThTifnoppB6p9oSKt": { + "balance": "3923.407828824", + "bytecode": [], + "datastore": [] + }, + "AU12k885Wy8Dv4cNLNLTYwwg3MEvNU3TXzQ2cFy1oubQtnLALDNP3": { + "balance": "1375.408438833", + "bytecode": [], + "datastore": [] + }, + "AU12k8HCnHfe3e4JafbK4HvbccwACQFJ6MM3Dh5pDZHmC1h568naN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12k8JqUfz4FFYt5oqesdGoFfZLARNjgAf5uzKCeWx1q5LaRnKGt": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12k99aXTpdiRdP6cqXzHnQbd7N7puvS39H4aYepp3UuB99LDXQa": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12k9GsxkDiBSws5A8uKGEPadDmM2M41gLXLB7K863RsgCVEdY5y": { + "balance": "3597.995572460", + "bytecode": [], + "datastore": [] + }, + "AU12k9Sg1JZ2nepVUKTsUdqWs6bAfBcV7fvE3BD4fPEWXJXfxjzry": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12k9nJpCafcFXRaaTMpCcZAEviAs5JcsfMihAcHBabHCqtcUJp8": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12k9p9RmFY879k3GDBBvRJYnqWXLSjRaQWwLCm3UxjyDwXe53bF": { + "balance": "701.115516762", + "bytecode": [], + "datastore": [] + }, + "AU12k9sTzqq9AASmSMke7dRUgAYgYbCVypaWqMmpSYBonDTNpusbR": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12kA43gYRs9ky5UyAuL4iPHwyouFpL7uJNN6VxLZQPRW9ck68aU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kAkwZ2fQUP5TZx34rcNJ3qtZKdpejiw8qArTSsCTP3xvQzJi4": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12kAsZQY8AhKdP7Qogx85p7aqvfZ5PPWuGocvjeYeeUhZSxyZAi": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12kB9ctTMvKtSuUh99CTWzgnyfwQsZ45Sac3c3WBxyCPrMcejde": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12kBeQjmbVCNhpJsJNYJgigZz8nwmugvrpunFn8wgJkRGKKWic7": { + "balance": "805.467787211", + "bytecode": [], + "datastore": [] + }, + "AU12kCLc6MBi2ctueJAAcARC7NaqJMGNHh4BF6PmLLyKUnUrtAAs6": { + "balance": "2419.290003536", + "bytecode": [], + "datastore": [] + }, + "AU12kCfMZeyCB6WJZ8eFDB7XPZrpvuRYJ12zxvEcRDuaBdp63qAgK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12kCg33DKbXdzy4xPSMwMtCysu5xF5bumEcSkofkqZjqTQYZPTc": { + "balance": "3016.991923584", + "bytecode": [], + "datastore": [] + }, + "AU12kDWeTu3z3PKiYkfnAiECiY6vUFGZuospf4TVmwhv1ReZyoC1C": { + "balance": "1273.504217623", + "bytecode": [], + "datastore": [] + }, + "AU12kDg8LzoQc6SmHMrhsQ7Cy23tp1VEi5JPNAcw9yUCCTyi3LRNi": { + "balance": "787.951757103", + "bytecode": [], + "datastore": [] + }, + "AU12kEiVU8a8LB4xfUjQKtq5547VkKM35Ray4tQafyn2qNAkyKMuF": { + "balance": "576.915545229", + "bytecode": [], + "datastore": [] + }, + "AU12kF1h2YWy3547o9U2DcfCn4sn9GmGKA78nyB8BSsqZKdEMkF8k": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12kFD1YvNYK1z4zL5JHkdqT3jrwMtzwaJc9V2CzJ6fLs6nrYXh8": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU12kFLFX9BhgVC3duYpvBdYzLFj7VbX5JunE4scRsbSMwAnrj5c7": { + "balance": "2152.794712885", + "bytecode": [], + "datastore": [] + }, + "AU12kFaE61KJXCXw4iiqwDz7Z87B5nLubZ8FVxZ3imGkdTLU9DW24": { + "balance": "4740.641128881", + "bytecode": [], + "datastore": [] + }, + "AU12kG3qBWg66jkhtQBNuhU4EEQy3HJnvRCpBKdjYHodRbYcewoVw": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12kG4a1X8wqUwqdo97kH5CjvMEY8PTMPj4vQfT1LT98FBza7NB3": { + "balance": "2002.151867935", + "bytecode": [], + "datastore": [] + }, + "AU12kGQ2V9hX9TyHrswcjWxfSqUbqNCSDuHuHMhf8QeUXKSVrLTan": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kGS3XpMrnuX47TmJHNu6uUVmy3hnhXLzRpqJPPkPxAPdXoAyz": { + "balance": "868.750042774", + "bytecode": [], + "datastore": [] + }, + "AU12kHCLYC6yw9a2ECdxqcpKZXqnbALpU2zETW3HKCvzPKSVA5HiY": { + "balance": "6.115019204", + "bytecode": [], + "datastore": [] + }, + "AU12kHYS69WTNKjuf7HFZY9Bz58VqdMKADTuhMQiMoHWb9wHrh7kq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kHsL4k8VrWjPLcxLnYLkBByihDv7E4BAGqQxtcsz9d2dP9ywx": { + "balance": "1284.774364931", + "bytecode": [], + "datastore": [] + }, + "AU12kHzpDanbBodHarRFEd7rdudcWSUjEUNxLgHHY9XPuT6fHYAYx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kJ5qbjQtdo2HetiyLveWLTswoDWatS79ANz6sHuG4itHDb9u4": { + "balance": "3721.045320732", + "bytecode": [], + "datastore": [] + }, + "AU12kJADR1ZYRDN3NwXjSvF9kPqaYPqBBkSVt31t8uy1y8QKMbZyw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12kJPQy1F1P3xqLQgoiTMu8chUmpvAtfiwnqw9RADNgKL8o9Jrf": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12kJZcQ6zkGKoTP1nEtZdnZ9QSXJCEc6cLvHKPhRxxocwN1a7n5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kJbzm8W5Rj2Pp9vkATp14F3TK3GYfLsCPw45MLNszYnYuz6NW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12kJgK2HqD9sKqggPWhUP1vqQkc3gZvR7Zipi6zHpfuJuJqKHFe": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12kLc4YyibjDD31zBZgNRxSLEd4FDsZ77tnGAX94trvBMFxZQxc": { + "balance": "1382.425548980", + "bytecode": [], + "datastore": [] + }, + "AU12kMThnemzzBK3UknqpCzcSGAPenNiGPLUJ1YDsMGLKgrtXbuJo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12kMTsxdgsYSmndMZdcR5CPc2Sw9bHamP7PZJHj3WPDebYt5Ccy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kMXxrEm5jDyM9GoE2vGskfnPxb57hVCiexU66wKaknLXgpRiB": { + "balance": "1206.401365235", + "bytecode": [], + "datastore": [] + }, + "AU12kMsuMp2uWPhJuMh6yyyoJWrbiMK9gxeapENj98gYCxdmksmj2": { + "balance": "1614.944562225", + "bytecode": [], + "datastore": [] + }, + "AU12kNQ6RTecbNjAUiBbqausb39SSnTJCeRXQoNG2JqMrizGhj7V3": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12kNcEi9sTJyfaa2aPsCV7T4obW1fcydX43zrJqNKDjwjUxhHAy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kNif4xzdAHogWQ1JyJKnQ9ZJhvqK5e1cDazwHT6u6Ev4cVVin": { + "balance": "636.702720834", + "bytecode": [], + "datastore": [] + }, + "AU12kNyWjyQJJJAcjWrktP3sZJuTbA5zzM38yoTeFG8rvuk518sau": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12kPRTpTCXVdDgE18dvhj7PwKS4bGjZQP3tyKkdeYfcm6kpPicb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12kPVi3j5XtCCwkSvPE9Zm7ViKQZoKWAL3f1aifDvnXLLbfb2C4": { + "balance": "1933.756750659", + "bytecode": [], + "datastore": [] + }, + "AU12kPp1QELzeoqjSNDb8gmanSXqg2s8roJoivv3mDuERDD1o24SL": { + "balance": "80.136831610", + "bytecode": [], + "datastore": [] + }, + "AU12kPpZMogsww17hrcnXvXApgbhYHd86K8xzrsW8BHxcasngw7Nf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12kPupMtkfo39GLgYwspVnt4KznqWvxxjqDaZtLLSbXNqw8joA6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12kQVeTHNB2oHXbbC1Ets5QapnjXXXMyzWwhmrLR6cmf1ajjZmA": { + "balance": "2787.875054534", + "bytecode": [], + "datastore": [] + }, + "AU12kQbZQK2ov2aGCqs5aNdJw1V7Yyn794DUjS8uWYxEu4RYgPp7R": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12kQzjsAX12EqD3cSGnAyriqVgn7spgQcb77Pd5bqJHACnV8YEB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kRQ3rzdjDR5D4bT9qDvoKFt9zx6BrQ113oLSUbYDMizMeJmf8": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12kRgtvSXxcqBG9bmSoexmtZEEUW7Lo7QdRGbGayNFnP8ySzh4t": { + "balance": "3051.829292329", + "bytecode": [], + "datastore": [] + }, + "AU12kRkonG4vMxdxeiYrfcpeAS3cP6wE8TMdLNEEn9HSRvyqBC3dJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kRnwQgCzNgPwAZ4UkrDDpaQRpRs7q2NnsP4ZAyeLG8Vw1JtSZ": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12kS9HNW2ydKmGRJv8CHoPxKc43ENn9qpFVYJbqFL5iKCzBiWFq": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12kSMz7H3d7a27Fr8RS613yMC6KFugwtwiVc5LUFUjRRicrRb2u": { + "balance": "2084.891241902", + "bytecode": [], + "datastore": [] + }, + "AU12kSRLKX6Qion981FcSY5wNUb6xryuAfvxX35h3zA2ygTP5NgRp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kSy5e7s8ytCGdSMTxLFm3wcGngf7AqgpnUwtaktp4Cdo7SCcJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kT8cZLi4Zhj6m3b82EtNg1Hfv247hxYVQSdnNaxcdPRwCTKPY": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12kTDEsgLonYvLhqiwKQCjdJAd1oBxPXeydz7X3NM2gg5qLujzd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12kTZ8W8xPWtjA5QEoX59mZqmsEYSTLSRbMJ4cKN62FVL8bFXJp": { + "balance": "3921.406061805", + "bytecode": [], + "datastore": [] + }, + "AU12kTpYuAbFrG1kGa87tS2u4cStWviV1yfxYkJJ6b6JpsggcBn6e": { + "balance": "2783.265177604", + "bytecode": [], + "datastore": [] + }, + "AU12kUPqPe8DpQ5EE3BviMrGzwpYqxypFBsgzJn5fUSMBYvN57Lin": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kUZfyjhkvp48WJSMDutgzGtF6DKz71CjmUpCn2fdRMiREoRtM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12kUfiZ395Hp6RsEuQts3VhbsStMWnVyvCQRKcsW8bpvRLJC4wC": { + "balance": "1132.642316539", + "bytecode": [], + "datastore": [] + }, + "AU12kUsHrmAysqrK5NqKKB5nR3kGmqtDXsZ2t75xBigiFimCD9kCX": { + "balance": "148.890179225", + "bytecode": [], + "datastore": [] + }, + "AU12kVm1mJZ17wwbcGDgy8SmBm2J9uD9RFCb1w1py7AnERBsNv3UZ": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12kVqARxDSt3sMrfBAdtSy6fVhwSsTGfgD6xepA8DeduB8poSHE": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12kWAxaVmdpNdZyRHQSG6CWp7iJ2uuwQVL1mQypQf5Uosbf8Y2L": { + "balance": "676.755452640", + "bytecode": [], + "datastore": [] + }, + "AU12kWuec3t2mCvEpFUPcLL3Ejor14R4BZv61YACLYCPaxU2WAeNk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kX7tup32JezRhZRWg5YvqnM2QzffqRhfjVfJRY16Ez6esGWa2": { + "balance": "72.388095831", + "bytecode": [], + "datastore": [] + }, + "AU12kXKyiHn6vsqjFwd4Xf8X2PzJFGF15FiyhxgoqQoFy5GtqsT8L": { + "balance": "4773.803732015", + "bytecode": [], + "datastore": [] + }, + "AU12kXRYNo2Fh2s22ht3Abw3CCCP7JyJtS4x6LskRWPotZ5vGSpPH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12kXYkJ9HEsVwAVJJs4QE2zunHAUiAYXqFzTDwVnwSHGL5fTbnJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kXdrDp1B75xW4ELtTC6SYMV6cgbFiTqjBCcCR7znGyYZwGyv5": { + "balance": "1409.856176265", + "bytecode": [], + "datastore": [] + }, + "AU12kXfqycX8hUZVzSadYdrPttxyNstySsQUm3BxrCiYBrQQc3Q2b": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12kXmuUzFWP6E7HkVYzzy6p9CekKCgshsQz4Gx4GTXDWJScuQax": { + "balance": "235.289357973", + "bytecode": [], + "datastore": [] + }, + "AU12kY4CWCgV8YLQRKUkBXAiVE7FkFbSa3q1qYNXeNuHiCSZrbypu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12kYkB4NMeLBQLUGH4DnwkLwiDnmaaKwtEvbvkKbnnahXXQMH1J": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12kYndSpP2EEUNGhZbTQ3xk5KxrBQ5cVbytpcR5YJVB3conhTWz": { + "balance": "1694.077741450", + "bytecode": [], + "datastore": [] + }, + "AU12kZ4dkYzbLwhYUygwiMJGEvGWXPB5KT9EB1UUTDAvEGaHbdK1p": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12kZKUum2iBk7nV34oyhg3LSFqqF22q2aarPKw7Y7HCvJgj4VU7": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12kZgR1XsBG6ig6t4f2aNKdYfHS1Lr3B3j45qJFvFcUWg6Kf5pL": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12ka7AxwbNMmgxm1yy5fFLPnfDHASMsdAvrJafoFYK5UyhfQgPv": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12kaUkjjaG1ZcctyYMPRErBR5WwhMMufHHQ5TTr6CFnSxRWPF5K": { + "balance": "223.709724672", + "bytecode": [], + "datastore": [] + }, + "AU12kaWnTPRUyQEdHMmQhWU6YtZEtkjVpqkUgjmjcGzwVYi86jWuB": { + "balance": "1267.262942090", + "bytecode": [], + "datastore": [] + }, + "AU12kabpyNxmJX2J4aZ6ivBccJx676F71ePKrEEM6262NQS4Z73Aa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12katTDHf3aSoRj2Vo8yGQxHnXCmJ6DZeCsodwufqHPMfG93Qbq": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12kbAm6GFBU8TZFfXCp15ABiaNwbzCTgojx3DYw8QfjzcW52fTQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12kbZ7QoHQSMwb5qLESG2GhrEcxkBJLHrqZewfyiXtxkyNgNDps": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kbq5Ndx73JtFmoUhp3cqSCVM1YT8v4BUQHdyzzYAHCif9iVQp": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12kc6Zjo8EPxmsfC3gG21zoxZfCxMVkqEvKBYCpXzNVe9tzhu2N": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12kcEMGuaeiF4adrgCHzDrg7RoFGPEQaCpK1m3Brs1Q44wApxv1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12kce5K4RPsd3hrqCL5jUnHoxiprfwvkfdc6x95b8cZrBvse8j3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12kctQ3X39jyUMV1w38vw5FwwzxoXFDqj17w4S2B9g3M6mpLbi3": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12kcxLAjBfoohXYDbQXjJYUtMrGsmGtCscawiVa3kEz9iirK6wT": { + "balance": "741.246420526", + "bytecode": [], + "datastore": [] + }, + "AU12kdFvGZ83fDHpYfsA6oWPRStRih46rCu9Fbh6XvC4hDDEXuX8Y": { + "balance": "1609.319092796", + "bytecode": [], + "datastore": [] + }, + "AU12kdYFKfTEwGkCKhJQE8jpZW7jNgTWhpDykMmnDQw5vKsqNTK15": { + "balance": "1258.910807735", + "bytecode": [], + "datastore": [] + }, + "AU12kdfpcjWmuHUxiQyoriBv3TBmAwm8vV5UooAoUZWPtu4tZjhyy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12keF5Gydp7LXpK6EQ7SoMfDw1Bn1ZCFr9HJgaVf5EnrMXSAuwp": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12keGbFPSf4o8eCvj2zkq4CMVesuecxpidFv3HX4U29RoAskNWq": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12kegvhPpXQoKYJNAV6qJnUWa4eyeahcaULP9VjY1L8RMDo9emt": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12kfW1dnxXXdtzfLDZYJBriT7sMGUHtvn7Dji8itMwvoq1Znc4M": { + "balance": "685.347262755", + "bytecode": [], + "datastore": [] + }, + "AU12kfbw6jvtL5mX1esP1LPouC4dpcwhyR8vdUZjTEzCxz2HZGhwY": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU12kfwcWMVHqyDy8djHq5FrAsqCoc9HGXSmJ74xhAqVYXS1fbN4U": { + "balance": "549.501348164", + "bytecode": [], + "datastore": [] + }, + "AU12kg1cBcYVQFKyJ2HwHa4Wz9d8Z98BvaqynzmpRsE1xiqyHcAhd": { + "balance": "6054.082377528", + "bytecode": [], + "datastore": [] + }, + "AU12kg4rfSNAhxmzPe5xcHeFxRZfjXH9F32MNE1ALcQmDgWPjWMA2": { + "balance": "1222.677264481", + "bytecode": [], + "datastore": [] + }, + "AU12kgWU5E5frDapwTFs4RiJoTUiNfXfMAk9P5JDdyCahmMym2cwj": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12kgjCS8jQaPFefvHvaoN1XeT2mQySGEZA3A3AqrQY5FJkKoyKy": { + "balance": "1631.214667326", + "bytecode": [], + "datastore": [] + }, + "AU12khkau39abyE2fPRpG5Tt7ChbgTvfx86VCNBmAPHeMmQjVSHf5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12khtQt3wz4GiGd29RQMwkRmjqGWyTdoHpLVEN26me4WkV3Y68B": { + "balance": "139.438943894", + "bytecode": [], + "datastore": [] + }, + "AU12khtobffu1aRkWKR7zw9CxCB39HoEz2V4HTuQqZga5CacWV3Pr": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12kiMT6AdSPH8xVyVofeSfx4eLZERUbdii6UUVPTf9FuKKvB41r": { + "balance": "1299.661295722", + "bytecode": [], + "datastore": [] + }, + "AU12kiPpkS6q2ZdfznrHMa9jt7tuKJHsbaVbTqmdyhJdbjJGxVcvU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kiWP8NudGi2NvFtk2Nvm9FTZKBr6pbWpf4Md7gLQFPKAtUuDz": { + "balance": "3340.300451923", + "bytecode": [], + "datastore": [] + }, + "AU12kiZkVHLToJycFKjvu8RYX4FRM6kiMVLKfoCpoifMTZvFiNcXC": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12kidMrZe8WqkCY69o4z8wSr4CjytA4C1LNsNXRwjJHYuwZ757m": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12kit2XkCpChdxbU9fz8zvtBt8xdB8woysMtj6JNUm2Eccpnc9u": { + "balance": "1073.744260489", + "bytecode": [], + "datastore": [] + }, + "AU12kit6tiUW86h6i8E54ATn56EL2vJs9eWztQQYPb7D17ev6DfgS": { + "balance": "1585.730616005", + "bytecode": [], + "datastore": [] + }, + "AU12kj7UTtt2w1mcvnbUwNtGuhKn8dBoP6aWVzmTz6t8si68DPTXV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12kjiKhkvFkSLxo52bq9iwStqZ9nkn3SNHHCmabbnhaxv1rVY4A": { + "balance": "3536.464523441", + "bytecode": [], + "datastore": [] + }, + "AU12kjxFaPmwkEKg17VnHz1XtsD3tq9eDQCN6fS5EJ4dtDdVmcTPp": { + "balance": "3154.391387097", + "bytecode": [], + "datastore": [] + }, + "AU12kkVkYjAMdoVxd9Q7xnfcj6uxsh6E6QaZqLy4iQDD1BkYobwfr": { + "balance": "800.121073106", + "bytecode": [], + "datastore": [] + }, + "AU12kkjvN3aBVrFiimJgRDasXV6JFcZiYX7Ra7QjvgJayFixSaG6L": { + "balance": "1397.293727301", + "bytecode": [], + "datastore": [] + }, + "AU12km1xZAQiJbffKmU7a1Du3ZFCPC6kbbXh1Ti37WW3ejLf24LCc": { + "balance": "1933.955528974", + "bytecode": [], + "datastore": [] + }, + "AU12kmBs4AMpLBpifyvVPAYCYhudUArqTxZbC3JpLGWkLyfuPPVoK": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12kmZppAjJDcbsptXw9ZQehBmz9hBYbeeBvULa3yoWojXzPyBcR": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12kmo2NBnrMyC5j1qtcqfe7uziNYKDEBv1gKqghGG3XNvsb3kQ7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12kn3TuWRZ3TcZ4oWwas4VxFdBPRbFFwcJyQjnTFWUmrqxAW8uh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12knCUQPMER8zGzx5tbTTjvR8qsXa1d1wf7QpM5DCmLsNsMxwbi": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12knGec3AE2HpjLdhibzRawXa9uH7NNEuaHNLW9dzmSWgXJzCbx": { + "balance": "1968.181501447", + "bytecode": [], + "datastore": [] + }, + "AU12knHy8y72pCBciVvoYy7c87wMR9i1zMYuxZPMG4NYjuECPuoVw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12knKjHYvP2HTjEHn7Af1wzgYweu6pgzkH78y6RC89px8YJcedF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12knPC7iShzbQGAMnaHQUTegzU5nkGyNGBYEMQjKnTWFRSGfyCm": { + "balance": "999.260564686", + "bytecode": [], + "datastore": [] + }, + "AU12knQiwpjLWo7dsYnsEP9HngARVY5iHFAzNPwmQAXrij3ZcgEeD": { + "balance": "1517.370476366", + "bytecode": [], + "datastore": [] + }, + "AU12knjEhTsQdu7GPpodQ3PZ9uRJy6LBG1nWe4k2J9RCja3BBPvdZ": { + "balance": "2206.299896078", + "bytecode": [], + "datastore": [] + }, + "AU12knjHbDJ65zpjnJxxKoSY7zwmw4X54yfscxp55prG4fJNFKSzk": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12knp2qrPLrhFSVNissxMRucohm4agycw3zvEPQzt56ZWmqqZQV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12koA1vVL1b4qFYypC8jU4JGvLFpu2W3ANbrgQrN6Gvhm1exD2Z": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12koXLQF6F2bpDU2RpxoExERf4iUPWpD8ohVx1KbLq3PP1YwqzH": { + "balance": "1884.738994629", + "bytecode": [], + "datastore": [] + }, + "AU12kpYb2HagpDQeyZzFt9PkJTp8zVi2zxp9ms8AVAfSg66vEPUK2": { + "balance": "2487.372296589", + "bytecode": [], + "datastore": [] + }, + "AU12kppkfGNhSPwx2rcRpxZaYrJ5oRvZpEqyTneGU1h9xSHBirqAX": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12kpynHfdRQLDS3TYM7XYqpxLkJdDYKFNr5fyed2V3AJQLeQ2HP": { + "balance": "1563.858206256", + "bytecode": [], + "datastore": [] + }, + "AU12kqGj82jxcvnK7XNGzGbCFEpeug66DvpYSWuLY8HVW7mdaQ2WV": { + "balance": "12.998045759", + "bytecode": [], + "datastore": [] + }, + "AU12kqGsyqtZYgP16YHCDUmAmJf5Xtbaer8b5u3FwXQfLqEpeVd1H": { + "balance": "190.712968954", + "bytecode": [], + "datastore": [] + }, + "AU12kqZ7NMcQnJgcUAxCt7jAymMXeLWVkSeg9SzRgdrq6m1V6QqHs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12kquwjuekmmMXFh4Gi6EVpTdpAz6iGsP6fBXfY2bZoPr7Hyiax": { + "balance": "2935.999166282", + "bytecode": [], + "datastore": [] + }, + "AU12kroS14zajBjWZTsjKynbkvgEsipD3Dsf4xE2pHSbZviARpLQv": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12krunmBE4SVA5z6ssmQvhAsj41Zpzxfa5bg81CEitpvC9GdncE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12ktGNCYQy3nNibjoJufi7TQBS6hR82DMB6gWUN9mL7Unwymrzp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ktKDybgRtDPLRdMYpsv7jEo5GFvFBUhZjmCCRD4aZd8Q9EymG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ktKQAFSxahe5o68U96zTXxzLv1KZ6HKzzxAPHNV4C3EUJyMKS": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12ktbP9dXueuxFycLoiDkNX7nrcykZyRNp1FQbMN1KkYXJ29NrH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ktfNaKfqVtQgEx53CHmBPNVxRWGhzisYCEQ3H5iyqVFpcDRHc": { + "balance": "1706.697913523", + "bytecode": [], + "datastore": [] + }, + "AU12kti4GxEHNhF7rbs2dLXu2REGy3dN623Hq3WJxbPsm5Fpa6xsc": { + "balance": "602.892864092", + "bytecode": [], + "datastore": [] + }, + "AU12ktngjGkjM3f1GguWonRcwvtd8rZsfCE4afs879J9UHNPsJqKL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12ktvzHLdwuQtYvCpb2Q96xMofwPoHHW7y5DapnXWCkd3eqoBev": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12kugeCmqrUuYvZsqy8E3NGznBEUARpfbQGucRfJBQNB7fDyCTT": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12kux2NEfUTxt46enSYyQpucRzkZ55bGwoGgf6saKSToXjG2gqH": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12kv3WovZzhV8ULJiUcvAwuzCUMuBT3qLiRvjVPQgtj17GpVdqM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12kvFx1r5vK7zEa9121yqbedgXxND35fcnnyQV6vt6a3TETBRSx": { + "balance": "563.314372316", + "bytecode": [], + "datastore": [] + }, + "AU12kvjTESRoDbzM9Ey2Fb3XRJKzuddzjVL5KXzTGJwS9axQ6zXVQ": { + "balance": "1427.177219498", + "bytecode": [], + "datastore": [] + }, + "AU12kwUJxkGJoRCMkkSHVUkmNfsgUd4KEND3uatrvP3EXXQNDaooQ": { + "balance": "738.727247160", + "bytecode": [], + "datastore": [] + }, + "AU12kwdPbkdU9S7Yp5ME7dm3dGMMdrVRuRsQKJ9Vq8UACmySScRnL": { + "balance": "3875.170735497", + "bytecode": [], + "datastore": [] + }, + "AU12kx7MPLqxkJyiHZg6QNhWY5cDPAWgDZkUbnZ3tKeQngcVrTAzo": { + "balance": "3139.941462427", + "bytecode": [], + "datastore": [] + }, + "AU12kxC9nB1jM3JdnZ7gh7arpeomz2BTSsKaQTxRNzZZHXuT6B1wi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12kxWQ69p9hAUQrCfzc1msTy9KEVZouPb4eNXArxRaWSojbzRwt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12kxXaYNuyRBBxQo1MbLs67FS4GnoBJSL3j46vT4TMm2fJMjGXR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12kxdN59SFfiBhrBHW6Kini9abweBwb8ifgkqQM49HE8HabPBj9": { + "balance": "6603.998697096", + "bytecode": [], + "datastore": [] + }, + "AU12kyA1B6K4iN88sKHuLDANdeUhEqJM5zKtn5o7CAjVkSpnhHecB": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12kyJRsyZ7AToTqYF3KcDz661eWYkMRefstv1Wzsd66VGxkdG6Q": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12kyg92DUjY5yMnJTpzZRBY9ogpCxeVfMZyFo2SUNfowLDS8bG": { + "balance": "2823.539656658", + "bytecode": [], + "datastore": [] + }, + "AU12kygDZgvQgiRk2iCGZgo3uCZKvdmkQcxdn3ixJ65EAiM2a19XT": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12kyj3PoMCbMJiMGeXJaZxfNq1CjNnc5KDM2oYqkRod7AeEgX9b": { + "balance": "1906.480211007", + "bytecode": [], + "datastore": [] + }, + "AU12kyjvxhwK2SxAqJycFy6Xi8pWcWwDTbbDSxdrkc5xsoyK3aBRK": { + "balance": "3081.991316155", + "bytecode": [], + "datastore": [] + }, + "AU12kz2XoKKsML3RURTA5rqeVMcJ5uwEriTZRRgDAmF5QtKtmRChC": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU12kz2es1r6fQQD1Uv8KABxTENXeNrJQKoYnmZpntUoL12CxeZha": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12kz6csWvhDgnXBQ8q98PJUvFtWjM8QBM5vuBoUvqj6kd5zPJEn": { + "balance": "886.635677058", + "bytecode": [], + "datastore": [] + }, + "AU12kzHNSCYgt6PnT6fDgBvScUN5e2E8CB9Hs7h9bgrTsSwaNjrm3": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12kzcLcJUTKYgDUEedbf3AnY8ZBYSGhMqbxypMs5WF8AXJjbzFE": { + "balance": "6363.210962522", + "bytecode": [], + "datastore": [] + }, + "AU12m1CQdoRaZiA64Lt9thTPxEomSkc6j3fNnip55xFEbXrVGyaKq": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12m1NRgYT6BmCPxeJ8Yk8jVwhqpDNf8UaeaTicDkrrqQcHXiYci": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12m1bQDPJjDTD1GeDDNWExJcLo8qoAdTp6tWTPvuNMjGS1WcjnZ": { + "balance": "1905.262857512", + "bytecode": [], + "datastore": [] + }, + "AU12m28nctNpffxu8JFaVvwAD8awhzBEfVpMMo2c6i3zoffJrrtKo": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12m2bMn4xxPVLNZ45NGYFyrfG2DKQhX167VTwgS7UC7Mb7eFtjQ": { + "balance": "3211.100864870", + "bytecode": [], + "datastore": [] + }, + "AU12m2d7FGVHfnZ4k18ykJTf9NJ9S1QPYaEcnC1nG8bZbgav27eYM": { + "balance": "602.823316144", + "bytecode": [], + "datastore": [] + }, + "AU12m2xaCbGgwBJ4WkmouSLJeioAA43rf9NNHWGv9P7oBQJzqwrov": { + "balance": "1550.341735802", + "bytecode": [], + "datastore": [] + }, + "AU12m36Xen3FQ43C8fXLa2JW1qBiZHmCi2uCTdWUVWkkqop3xc4Qv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12m3UHgJHBX2PQvS4tTqRwAwgjoyWBuUUuN63qkxVb51mgSvwRZ": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12m3afQJeXSyqNrVwFCQzhY875MsPBtYirhgL6o8KsNoXfDdY2D": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12m4ikUwA7LajggSHEkQYwMreKYnczGNLVhAq8MTXu7wj8RvmwB": { + "balance": "213.232673526", + "bytecode": [], + "datastore": [] + }, + "AU12m56uaMTPSi5ep1MBjq9bUDsR5jTuWkFHSgd8vydkVT4xRoCPQ": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU12m5GzUfAzWqprX4qkrHJNMRMLP16szYnM6HqbtEv6KVZ9r4jcd": { + "balance": "912.087266892", + "bytecode": [], + "datastore": [] + }, + "AU12m5JexNbi4iFqNzDBEQTh3rZ64dAbWK9eN7NZmZsWte88BQ8g6": { + "balance": "1375.296702075", + "bytecode": [], + "datastore": [] + }, + "AU12m68bXVCudBuaxvBFkAxyvgSy9r1JGBj7HzCG2NeaMCakNNQq2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12m6Fqp1bizbNgxdZKBVLXuPEbhDiMBfD5GkvrXrLA7wd9PpYYc": { + "balance": "3523.334550699", + "bytecode": [], + "datastore": [] + }, + "AU12m6Ndey6vM7KHb6r2EWpmTPVh9P2QMazoN5B9niEWGLViqrKpd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12m6YB17frbNiagkZ7VMPy8pLW71bC7DF54A4jHs6XKsC2z8Mk2": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12m6jzEC2st1qp2uB57XKbRbj9AiCYFxpxpQwmFv7rNwLN4vPTN": { + "balance": "3315.641014937", + "bytecode": [], + "datastore": [] + }, + "AU12m7L4RFLPCFZP4m2FRKvTdjgsMt2H3w6ZfoV5zeoDg67tos4Yu": { + "balance": "4882.360381227", + "bytecode": [], + "datastore": [] + }, + "AU12m7kgKLyEwmNQPpZwuCgnYiowwcBYsR29VYKpgxZSiHzhksgvJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12m7rkweQtWhypRLb5rrQTq2uDQmXFtWSeLWJxPy1NzM8roKKSz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12m7vsN1LTcNaemhzkcoC2xN1rp5R3WkzwKzVCnAJnvL1zfN3gL": { + "balance": "2295.619145326", + "bytecode": [], + "datastore": [] + }, + "AU12m7zgHCdMBfSXLsu5d2Tq6EsWKtUS4gGHeGqRAVx38RyKhceRC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12m87ZFNfQqhSeo9SccAkhpnQGy5LnW2ncy583SKhgqcTWdjCsC": { + "balance": "2902.355896334", + "bytecode": [], + "datastore": [] + }, + "AU12m89DhYLMb9HEx58JH2pnRE8zNQ1G3m9SjeutZX2UoUUnfGnYo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12m8C8BcN8fLP7gdgzer4ax6ZjbdpREPHb5oPhS38XRZoucihSP": { + "balance": "732.508500020", + "bytecode": [], + "datastore": [] + }, + "AU12m8EZYcTVFeFhKvBxdSad3aewKJCVGguerbyabH8rMSbbkC3w": { + "balance": "38.807975385", + "bytecode": [], + "datastore": [] + }, + "AU12m8Ef1b4nYiVCAJLzFWHGu6hKHCZ1oNcdbGoHfbgtBM12AdUNk": { + "balance": "1777.295377294", + "bytecode": [], + "datastore": [] + }, + "AU12m8VYFHfQGWVUYD12LAMQWoUbgXXfJKTxhoBTAWeNB81HZz8n": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU12m94wAhDT2uz8iGU3aYQRDnRdPMsGc1BBnvjNXZ19ErUfNXq4Z": { + "balance": "1999.201621942", + "bytecode": [], + "datastore": [] + }, + "AU12m9ATFeaqyGGrRGR1ReYNRBJEAFxZ8AqmYr9yUBssbaKtd7LpM": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12m9EXQzJEDkLgy2VXZ7CLBtetapVcc7qCpS2C6UAtyvtzbn2eG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12m9G21K1i3EqHoW6BbiAZ2Cu9VKMTak9rvH6CDHd6co3iDbt1Y": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12m9KhxaNEkf5PJYgw1DJe2Yz2XTQAFzipueC4V1639Z86WFKbz": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12m9VH1VGYPcTRN3Mx2eNes5MCXV4TaGficbpHY75KbZxHSzGxj": { + "balance": "2488.447307178", + "bytecode": [], + "datastore": [] + }, + "AU12m9Wxhz7H9nnAtmjBVcuoBDw9cYGcp3phX1MnmswP39MvuybZq": { + "balance": "2749.801667618", + "bytecode": [], + "datastore": [] + }, + "AU12mABDjeyk7RV98qBe2FwkfCbMdF6a8fPeg8Euaem7XQmofYjgf": { + "balance": "4986.128407254", + "bytecode": [], + "datastore": [] + }, + "AU12mALP2wdnKNByxNLfGFeM5fPoPjXBemjsCNvkro5kYt7UQDC8A": { + "balance": "1800.734698252", + "bytecode": [], + "datastore": [] + }, + "AU12mBUDUVNZ478MrkBa4cgMRznaiDTy45ZQV4UVDxLU43ErodMJ3": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12mBfAmYp5Lb8Vy5mQ3JhrnKffgWg24TXTGQp73Ekb4743YLQ4x": { + "balance": "90.143629740", + "bytecode": [], + "datastore": [] + }, + "AU12mBsRFhS8Pui2bBVkUFFUS6mDqRwbtnxQtHSJBU8DzLpniqov2": { + "balance": "187.702383290", + "bytecode": [], + "datastore": [] + }, + "AU12mCRihH91CBg3buCMTLjAJqcTbfveXJkSnEfWZkj9uu9XD3Vue": { + "balance": "5463.717135059", + "bytecode": [], + "datastore": [] + }, + "AU12mCUpSNV8Q99JV1PisG28tdXHpvsdMs1UZL5DBd5Ntf54BS5XH": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12mCdgeuAVLNPXQGftgaVyymWoHL5zdG1hyCkxiRfEzpAnDN2zV": { + "balance": "3842.430522112", + "bytecode": [], + "datastore": [] + }, + "AU12mCmFRcyNtMH7T7VFt8K54fJGroEWbQJLgrurGcebH7ZLjaV9v": { + "balance": "3383.368748736", + "bytecode": [], + "datastore": [] + }, + "AU12mDPfRoHTQk4L4BVEpY8mF5JeJJX4bbJH6CvsJEctgNc7yibss": { + "balance": "3556.058720560", + "bytecode": [], + "datastore": [] + }, + "AU12mDh2GdYyqCkTux4gMzicJ7TuwfoE8LMELnXgGFR3va8FZVyjx": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12mEGm1J4Svs44uuFmFvJP14ofXaTKAtrkgmwTjNRpMcJ6XUvBb": { + "balance": "2840.678204192", + "bytecode": [], + "datastore": [] + }, + "AU12mEQK9yuweNUuCrgaxdvpWNdFGRekZYgrBB9yMGG9jD4HGjE86": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12mEemXrxhgE4FBWHeKsNxJ8dzDHDHGyHjtfFucKxzR1x2bP2va": { + "balance": "1780.579313114", + "bytecode": [], + "datastore": [] + }, + "AU12mEhgKURKXXqPZrm2pE9Y9iiYRpPLRo3d76fHamyoCcFUhAkTk": { + "balance": "2251.115985305", + "bytecode": [], + "datastore": [] + }, + "AU12mEthkFXMBLJjrGuF1t9SegUKZgydzUK2VEkmSRcTVXN79SDr9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12mEyi7HiayH4n9FE5BFYDoXXTXaWNXGKtvzWiqFPJmqzk8dU1n": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12mF5yo2s1H7GuuBm4CxWVH4Dfg2wd6U8eP9WqT2vPMe8gxaoq6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12mFGpXnLwWpdiFLypkCTgWkswLNdsjKmMokLFmotzLbTEDFMRm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mFkAjjshBaMDWCXJKBqozQncXzGcUfRCVmJJam6nj9PvQ2hL6": { + "balance": "3072.729469318", + "bytecode": [], + "datastore": [] + }, + "AU12mFp5RLu958sCyboizMLKiKzcaJyfAE8NHMjY8LAgJsjF1Zcg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12mG5WF13pUA1akLVwZfJqLzfLVzeNUZhiAXTAJJEExV9KUg4BE": { + "balance": "806.640244065", + "bytecode": [], + "datastore": [] + }, + "AU12mG9rHrUMrhbKbgHbHDQwyoCZBbSWBnzK6W74ePjogq8g1KfUt": { + "balance": "682.470908851", + "bytecode": [], + "datastore": [] + }, + "AU12mGLwGvxk1kXwq8xSeQLEZwwQr2B94eNJx9djzwv73WNuiKS9U": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12mGVhs7LNGnRatFS9XV3dL5UufZsuK2a734F3QHa1W2sBPZiSH": { + "balance": "1394.401048997", + "bytecode": [], + "datastore": [] + }, + "AU12mGhb1v6uJdRRzdNSHHmY4hpPh9atahM95BXKj3kNmr9uLzxoT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mGjPGppWZ1M66bYuDH3kraK7AbpKkJXrLYDJG12fSeGWsqmTi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mGqSei4P2wdVUM3czQRVhmS4wGZG4oK6Th8osmau27viQ7G5X": { + "balance": "1896.405832780", + "bytecode": [], + "datastore": [] + }, + "AU12mGtrSEoAa2tdEorzcWQjrLUd6wpKM34EDAH447FmF9hMFBThG": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12mHC1pP9vBm6Adeug9uJcJDdqV7FJ9iP25mhnj4xECi2tHT67U": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12mHY3VuTDz273ELPUC7AFyxpqEebnoN8tZDNrPtNsDSjxsyqPh": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU12mJ3exCrtz2RoPyiuf62NnP7ahtKho927uka42k6DRkNZN346p": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12mJDNTsL6Ngk69bULf6KxfchJwAcM2M8zFqyRWiQf4MXkkK6fn": { + "balance": "1450.596968068", + "bytecode": [], + "datastore": [] + }, + "AU12mJHksg8WoT5qtGVbaCv99nfJYsroW7j6EzmTqKQrNDzBqqtF9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mJP3uLdbJxVeJPsQpUZ9Hs5TQPMMkmwUrx9zBCG8Z5f9sjfqP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mK1iRJj67n4xcnBG8RWdPuDr4hKTjc11eW6ShxssZKHib1JS8": { + "balance": "882.704284327", + "bytecode": [], + "datastore": [] + }, + "AU12mKiK7RZVCRHBitdDz3LZ3kb4UubcQJzuX3327eyzmQdAiPL8a": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mL4xv2emNSCh4MPvEeaxNxrurgLwcNHX9JbGH9kNDGMZDX6E3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mLVBmTpTgk5MVU8N7c5zi69D6Bt875XwP6viyDEVNQ6T7kdQ2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12mLVkHSgbv4JBnPfYi9pLdqR5ceGNpRYQA6jnhbK8ssSRyLqWo": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12mMFPuzf4Du3wjDsq8N1pFqCYSvjPUS8N4tpqQRRNYJZLPmWDw": { + "balance": "1481.283713725", + "bytecode": [], + "datastore": [] + }, + "AU12mMFrGoiwbY1frBDfRLFsuCiFZ9uHj9CaDLREBY7TRfKCoP99H": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12mMZd1mdCut6SXZWnD38RTxhtLz3y532F9LHVPLazHQf3WyHwE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mMdJTkX56a1bbCUtuSdaBL5ZdfhGKQjfDJRJ9Fzxu9bbUtDid": { + "balance": "793.380933127", + "bytecode": [], + "datastore": [] + }, + "AU12mNwZTkr2HKwQfDaA9daJVUFCahuSENFizwAbN4i7PJ79j1JD6": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12mP4KHwyanXY3SZ7qhDYAeQiRKtWg66w4RZKkX55oe933EZL1Z": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12mPaWikdr9H9iMFpWLphCvuw3g5dRJqLt7LLYHxzHWUEUcGqXj": { + "balance": "3024.722949928", + "bytecode": [], + "datastore": [] + }, + "AU12mPkhDL98Txeo2g4E51Kzv8gM3d6ZrMTFpri8PgNg5TMboZTea": { + "balance": "2158.705157175", + "bytecode": [], + "datastore": [] + }, + "AU12mPnDDWAqyqeng7hU3tqsmV7dUMzmnqtNXa4W8qtP37fkbmiE": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12mQ93cuEJa5XQUvUMcSyBNobTgGWR7dhS7XfDzTTQnByDnhZib": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mQNedt3eExmfwy6MJgSCKpwH9e9ujp3D2d3FVDM27p2TNVDDS": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU12mQrz2TsyXeFronfJgJVshinqTA24aMtd2PYKHhCJ2FyFJ5Pui": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mQxd2cghkKjwsgBd8ogHdNjzbbe5BnC7wtVnu8Jgg8KeSrQtE": { + "balance": "167.975042849", + "bytecode": [], + "datastore": [] + }, + "AU12mR3CCrotqkdhyCtsdz3JPig22RFMSrApUXCif4Tn8KiV2p9ok": { + "balance": "676.243648136", + "bytecode": [], + "datastore": [] + }, + "AU12mSJ3639o4GpKKjuMf1rGqfL5Pu5euWCw3xHNvdGiPDiGS2MQw": { + "balance": "1563.981186415", + "bytecode": [], + "datastore": [] + }, + "AU12mScUvRoXUETeU7NrBBaKFf6R4obdsojccZi59CUfqaByWUzNT": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12mShnBMdsYyeSphUpWgd9u9L5vSD66nEYaJiJXXYmk67X1DfFo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mSsvtH7VhggJQVu5kdwKnqRCiuyysjgvQrZkn37LoR7ADuMcc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mTQJAubfMFPHrMMBRBV2nEHa8Qh4bJm1vx9rasfXctB341sDa": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12mUDyQpjRX3oMzaL6mszJwXrTivqdrUWSZ99hCYFVZgkeqmi1P": { + "balance": "2124.522548347", + "bytecode": [], + "datastore": [] + }, + "AU12mUgQhWRMsj6CbKUfV1QLfBmWwqEHtbFAZo3igysi4gpgybe5W": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12mUivEsFZbDhQppf3Qe6ZKsnjLPAvH6JnW3CmpcSvZKVetmpFm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mUu6H8Gc6ZAJTKnrY5AytpLaX2va79oqdwpXg7chYv2UZAkrH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mVLrLN9AmzanwXT2PJBSa7m6nhcJKnqUhsz8CU998np826Nia": { + "balance": "1883.789960347", + "bytecode": [], + "datastore": [] + }, + "AU12mVbeVMLCEVYt6X78AgfyaS7g4xcmHvgCmfkXc7RKNGKXrEXvu": { + "balance": "2068.248784090", + "bytecode": [], + "datastore": [] + }, + "AU12mViosLGZVGE2XppWsf1KteJy6BB7HyGGQqfxy72pZ9DVyVPs": { + "balance": "1686.483222491", + "bytecode": [], + "datastore": [] + }, + "AU12mVuRkHqj7w8vmuXmD5jc4o4DvEMyAvV28uec4uSXn7guf4ZWe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mWCtmvsdP55hBLuLwfepatoxgVT4xHsKR74sf15KnsbYSrLQa": { + "balance": "778.628198889", + "bytecode": [], + "datastore": [] + }, + "AU12mWSPvzXMnkR4QDGL7XpuTYYkwyGAi4p1kV5ZU8mWUSDSyavJv": { + "balance": "5181.437273588", + "bytecode": [], + "datastore": [] + }, + "AU12mWbXeCGSqDcTirjSTongmV8dd2wagRKHCaDBkZfGc24zPF5jh": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12mWpZnuhmrT76H18cqQWnxoUnJLoAPHM9tjfK1Zqgj2Jc22YPG": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12mWrQctipT3jfq1AebBLww1bhQzju8PH7TXAWKzkKFF6PesNxJ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12mX2H7ehWarRJCx76UbUZVa4NRpRPtmdB7acVn84xfWzEWvCa5": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12mX9XYayPj3gqnubdcogtL6oc2yGxUbq6tJ5joeSzVpYtwDM4p": { + "balance": "1655.265159423", + "bytecode": [], + "datastore": [] + }, + "AU12mXL5CiRQTTcnTZu766CXgxQL1pYFFqQ6mjqbghccYFstgvtkt": { + "balance": "3209.507523966", + "bytecode": [], + "datastore": [] + }, + "AU12mXVFdaeJ3NVrgWVeUpCU2zNDMv63dfEw5WNNfgKfjuTYhasiN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mXiq4cxpFVPcy8LzrNTLCZbTGcYieL1LxwhsD7TV8mEZyCgJo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12mY2koA94e6hLPHtotXt16i3oHfdrNMMLp8uV9XJ6BkuwxcLAU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mY4cr5MJ9oz4vNbn3dnYpxxgw6XvBv7YfRURzm1JeX8jKvNy4": { + "balance": "2055.048764923", + "bytecode": [], + "datastore": [] + }, + "AU12mY9jQoWkNzA6HQtXUVZL51nSELGkH5sNyD13RahzokP3VSzNq": { + "balance": "1064.340801467", + "bytecode": [], + "datastore": [] + }, + "AU12mZC4pLaAobCYFAHn5svkQBp8gwN2aAypAdke2aCLTNUQNGhjP": { + "balance": "3215.902401032", + "bytecode": [], + "datastore": [] + }, + "AU12mZFdVKkP91kkXeRwKsRLjKGsNgkyyZwUyhhsMc9gWSsEwCBcX": { + "balance": "1439.875944732", + "bytecode": [], + "datastore": [] + }, + "AU12mZYBsH7Ax921uRdo4Qduh2nyHdinuHy1QqZqYaY8xz56JcR7S": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ma4v4ZniFDvLEb4449YPh3QoupapHaLPhBSmByUQXvC2Y4jDs": { + "balance": "61956.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ma6opUJsbYpJ48CYNT2Ejj6kSXZkij1wiR6iawjf8AMzZke9A": { + "balance": "59.819221020", + "bytecode": [], + "datastore": [] + }, + "AU12ma7AkqKfWR8gcUhca3bezg8ka73HdjZUdLxjfZ4PUGrByNGt3": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12maqTFAKxMTyd5J2AmMJymTh23XKUtC2HoRfnDTrNfiQvzLFxh": { + "balance": "4008.083386928", + "bytecode": [], + "datastore": [] + }, + "AU12mb1PSGF7sgF1JmVVUmn8upxabJYsznLeUZjK7QyZAmTbPQ6xF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12mbELuvhzRsbuRATNvxPMy1emJZm5i3UWPGkS9bmEqptG69WRm": { + "balance": "1823.407894416", + "bytecode": [], + "datastore": [] + }, + "AU12mbU8tSTKkawC7GPexbUtQJATNePiDCpmk6pgZnKdpkNFmpFix": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mbWCYXZxYHzrTtiXoKgrcghxzXBeC6qp499zqphZRPXEfsru": { + "balance": "2170.484061778", + "bytecode": [], + "datastore": [] + }, + "AU12mboAygsYoWzfdJpeJo9zMjyRZaT9iJUzNhuUPt49E982zfii5": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU12mbsUB8G1bdnBQDFsqmCU1v6ngrkZVeuG8dDbKHkSo3wcVBNm": { + "balance": "1623.760718216", + "bytecode": [], + "datastore": [] + }, + "AU12mbzHqTu319goN433xXeBZeVBmJ6ps4wRC9mTAHEiDfni2YjCg": { + "balance": "3430.222961567", + "bytecode": [], + "datastore": [] + }, + "AU12mcPSKTVCPN7rm7JJaeEwhKBAVFkrnUZSgbvfUXSaLfWnPXJFF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12mce8jUW349WnHGzAe9oe3oQ1UZ17jQLs2GdYUVqqFu4fhZHmb": { + "balance": "2281.064462929", + "bytecode": [], + "datastore": [] + }, + "AU12mchwXEFZNyATkrRfhqtUFsJ1NWSmRt385t4AoWR3Bkfg6DuXc": { + "balance": "1975.910646611", + "bytecode": [], + "datastore": [] + }, + "AU12mcn56ynwSkWqevhvCV72hWa34XzS54pjtNZenGgvnmHodPKjX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mcrt5DLXsJ1aYcyh5BsdNkHTCYEAqfyceUjtXqvjcuXo37Per": { + "balance": "1818.408553893", + "bytecode": [], + "datastore": [] + }, + "AU12mddc5cAsc3mf66MkRwbCe8QdjquYJW3eLvYHqum7ZvAeknc6R": { + "balance": "137.788778878", + "bytecode": [], + "datastore": [] + }, + "AU12mdfjXQPjd3SwpgJQ8ZMqELLT2F8fYQwaDsEJYdYWrxq7VEu6e": { + "balance": "3315.670035949", + "bytecode": [], + "datastore": [] + }, + "AU12mdzhCHBAZwQoKYdrrXo8UaYgMsDSt1EE6jkXNNF52AJNYpoRp": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12me7ArBGPJDVzhLkZK4bVbn1r359JYqwKGtdYx5HX9oDdpoaUF": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12meVrqZbtswucmoncFv6ZgAsV6zKZdHjFhQXe1Z2HRa2prdE64": { + "balance": "747.368224702", + "bytecode": [], + "datastore": [] + }, + "AU12mf2mRfmVsXPyHKcGnGN4SaYntAUqnyVx6z9RLUH55Hbvn4zV6": { + "balance": "1689.718367577", + "bytecode": [], + "datastore": [] + }, + "AU12mfGgJKfhDf1MtSbhM1rWiGRjQbEkHLmArVTFKjmwtgPuV6KZA": { + "balance": "3510.054860944", + "bytecode": [], + "datastore": [] + }, + "AU12mfX5DUzQotq731N45hBbjmrR86Uyjm9YEymzcWoyot9P9N848": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU12mfqEg5Acpf5JeGZ9x29boRTNE7KjHiuv26CSNpR6qRyBTg2nr": { + "balance": "3507.555357436", + "bytecode": [], + "datastore": [] + }, + "AU12mgVx934p9Pzrdr1m35fGZ693aTkza1b6itwuMmyjY3Ws4nhcE": { + "balance": "6178.523853121", + "bytecode": [], + "datastore": [] + }, + "AU12mgYfgP9LBVykvjDFyXKNvN5iUVGG7vCy8TGz4WWHpAarhCWE2": { + "balance": "5725.062887492", + "bytecode": [], + "datastore": [] + }, + "AU12mgoEdJU7M8XY8RKXaVvVxAWK6xdM2aYLrLsAkm3X6kNggzDHu": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12mh47dxyVbp26HiWE7vCyNS77o3h6BSqGtUCegkUS7xfphqERL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12mhNN5shnAANWxq45Q8UWVtPk3M1MRrfUqVKk74kKCLVEW82Gk": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12mhoL83Wxvjb2LAdQ66TGhWE99RZB3dvq1uGacXF74FaRqnmJ4": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12miGsdcaZzTN3AGHniSP24azRc1va6cnzjP21PHi1xBvEb2AU9": { + "balance": "581.500969711", + "bytecode": [], + "datastore": [] + }, + "AU12mioUi931ekuYYopufGjw8aeyTCxqDk7dA94G6BxU3bG88a9EN": { + "balance": "819.849364377", + "bytecode": [], + "datastore": [] + }, + "AU12mjFGmD9VcsGrjq8DodBd1TuXNdAdpipiVWLhF6kxQ8yDDNKyn": { + "balance": "1605.286317625", + "bytecode": [], + "datastore": [] + }, + "AU12mjZYxzcg3eogAvnP6HYutVMXUjYqqnMrJ1TJqYByYPdSTzRPa": { + "balance": "996.274022908", + "bytecode": [], + "datastore": [] + }, + "AU12mjj7nA21dT9vmJXDAcPBtTNQYfU5Y9KQXnPSq14asEdyFXwch": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mjzGsfkayxh9DHGeXfm7acUNvGNkWtrUQMYByjUAP6LuX2YSh": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12mk4Xmq1RakkvHpLRZjcfqZ2s6uZf8s4ogYD59d1W4cURdrK6H": { + "balance": "608.331548127", + "bytecode": [], + "datastore": [] + }, + "AU12mm27XuCeBhQdFe3nYTfkrwSWLZj3MFa8GQf9wyWSX78eqgVPQ": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12mmGm8nU7m53CRsoVJE3VA2YiLkxwRZrU8AvP1SCxKEHMaSnxX": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12mmnfctLMxAQBehvFqEYZfyQ6uF5sWMZow1U6rs5ZVorkWzE4n": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU12mnLnry6SqCZK9PJh1pgSAsfA6J2onTzSnBhzTtwpGRk3Qy78V": { + "balance": "5561.599756958", + "bytecode": [], + "datastore": [] + }, + "AU12mnU6n3ijhESJPtDS3Gbbe5x97BqsS4HiVy8TCsHismroQ67tT": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12moBAE5Dj5vqzEAwja2eys77AHzscsUEPLQBa3b8AxufvCMsCR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12moZBXXJ3KsM1Jse8e7Z8xRPCsJ5Bq2ve7rqL7QMT1RLivCEie": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12mogc7evvC8haSCqhhENh7WsvGfrHZNJKvXUmaBrwgwqvV7VrS": { + "balance": "1671.730963114", + "bytecode": [], + "datastore": [] + }, + "AU12mp8AHnyHTCGaZpnDJEE4uD4kGB8Dt4Y6b13GpK9B1d9CnnzDj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12mpAknAzzC4DN6KPaUgSXjDJJCrjWQqrjuocbCTDyoCETnYsJR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mpqev3SxChtS9WNriQfw1gTy2SxM3PaVmKD6JnUs2v2LP9cNK": { + "balance": "5281.194997120", + "bytecode": [], + "datastore": [] + }, + "AU12mpyt3X7LyGMoRDrDMWp9CmyJj6bPS3b4EyhV6sRSM52a6kGiM": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12mq5GKNifu7fkNZYUPwuMvMehH5tYuwdQtrss4k4AUiD4XeHMx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12mqMYz1Mp45A17kX14igT9kwVDgMYs3h8CqjLNNZH25GDf4t87": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12mqzQxRNZjySXwxgpwhjRSy2bsYf9xSsGVCpZBKE6KWr7i4WvA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mrSpLWGay7SvUw13X5SyP9Aunwca7Q5wTxsePicQdJEwp6ftR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ms7tRfRTKLPNhLBkDsXPx4kF2v5FpvrzUfRHa1pgkjERDtgnb": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12msPU3GwA6zhXP34WcVsWN6VZaMGaFV7nodePvCVkWnzkqUy9M": { + "balance": "1690.644479883", + "bytecode": [], + "datastore": [] + }, + "AU12mtmYX82wyRhgeoQPZmQ9kxR9b894qQuaP5X69UvcAdnDuWxnX": { + "balance": "85.892241149", + "bytecode": [], + "datastore": [] + }, + "AU12mtzeyBecbPAF96gyLa4eaa6rWffZ8mKo8fgaKj2iZzpsURm9N": { + "balance": "74.642749042", + "bytecode": [], + "datastore": [] + }, + "AU12muK9qvhjKkmP16L5exivaTQLVuHqBqxpD1WZaEspziLgr7dqy": { + "balance": "2004.622882432", + "bytecode": [], + "datastore": [] + }, + "AU12mumD3rz1aHJUB6PNZtvmf2TvH7waqNxmYqr1vFEXs6DwVGNCe": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12mvDFsEMUy2JRitbah9f4gBR3Xxr69p3HdakiNFibybKJM5Jkm": { + "balance": "28.653841661", + "bytecode": [], + "datastore": [] + }, + "AU12mxEyAtRRx99hexBZW9nF6VeTQ9d3ZXM2ijVang5Nf1CdthYdf": { + "balance": "2242.253851772", + "bytecode": [], + "datastore": [] + }, + "AU12mxLE72cNFPtNBHm98CYw7vGU6S4JeMJe71XzZ6CbruHk5eDDB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12mxMD3pCM6UDt18APjRyjACMfkcTQzifYv2hU7VKPVkqwgxCfW": { + "balance": "722.718391932", + "bytecode": [], + "datastore": [] + }, + "AU12mxRg2PxBxZqKoqEcSNyqVhZ9utthivMAxmFE1d4s528CM9XyY": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12mxY7M56ngsLBSurYRXZtpjr4kAfUvMucF26f6rTd3piQaLoVK": { + "balance": "3109.711341443", + "bytecode": [], + "datastore": [] + }, + "AU12mxcoXd7VFbeSCsewr1YJb962XmQh71tQ5k9fCwguXqN7m2qrF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12mySK6Yn39NFa9jkGtBYsyn8NqAAtCEMACXdFKwtaLQn6pyTxK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12mzbrfQx7axgqrqd54b5KuR2q2XfTcCTu8reiKBrP3jYMAVCdE": { + "balance": "1085.769583929", + "bytecode": [], + "datastore": [] + }, + "AU12n1E6n8YGVLPVefXkR56r24n2J9KcNRueZes5gmoAPWfkd78A5": { + "balance": "1948.117378249", + "bytecode": [], + "datastore": [] + }, + "AU12n1Kbg6HmrDH38j8ZmmMMQCqSEy5V7YQCCQDcJjym8v4RgR8AE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12n1RE1kSRL8F9uAZiGC1znkt5fieZShUvqLFUbU9H1Kv6vqmo4": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12n1hy28zzY9Y4JcR4xCvtZhtLyFq9WJEZoAbF79D78p871Hcaq": { + "balance": "2952.107327910", + "bytecode": [], + "datastore": [] + }, + "AU12n2MnTKUGwbPAVFTaQvPJe9dUfeYRjFYga5eSkUXV47GYFd4rA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12n2WMhPpMnTfStJaJnA1bSZs9EVBKURTcBoeKXTUA5osrWPPgY": { + "balance": "3167.671373151", + "bytecode": [], + "datastore": [] + }, + "AU12n2XAdcQV9jZTGzch621kJUB8rdBLB8yttMUY6THJnneoK2zMH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12n2XBe9uA2kEd6FxpT3wzbMk1Q9b2CSzCphixzEfW4ZVbCN1SE": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12n2aRXivnkdZcg8odHqUUjzz9XtfGdABwUBP86LKVD6jC2uWBb": { + "balance": "1285.175346633", + "bytecode": [], + "datastore": [] + }, + "AU12n33kGtdDP5Q5v9UAYTEvzD2wcdTxpaiB7aT4bfAeCQVF6rtpm": { + "balance": "3342.009235224", + "bytecode": [], + "datastore": [] + }, + "AU12n33ncqEsJiG8dEZD7SbzooY3VCEuLF2fnTjbv6y7LDCrSsqAs": { + "balance": "1828.397829152", + "bytecode": [], + "datastore": [] + }, + "AU12n3ezyN1dv2AXWs7urPRGZPSu9LH4uCD1UNEjBvCNMYmEks7b8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12n3nEppNBDj3Ubg7MGWLZ7akcvX2iFBF2sNdtJWDKmj8P5E5jU": { + "balance": "5130.492010359", + "bytecode": [], + "datastore": [] + }, + "AU12n4VoGTr5tAhkY8r3UStJNHaf3TpCgr9VrDYmvdcro3qjrh3Jx": { + "balance": "1421.574686800", + "bytecode": [], + "datastore": [] + }, + "AU12n4YBvCNEnvxwcipXyQgVsaTLoWP6FXCk89hsBC3AZA7qqHpbi": { + "balance": "3614.144676023", + "bytecode": [], + "datastore": [] + }, + "AU12n5RZP7HMJa4nKAaLkKQ2abWrEYeB9udajwG1JN4McVdC1qXZc": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12n5oy8MFNhpEAd2W1AR79Ty5DGHr4cGKHGGDD6Ah3yD9u7g2pJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12n6QasUyKV38Dq22E2bXKX65RfAy4R4CqFN2Q6tcq7N6MtBZTT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12n6ZRBcDyo2VJJKk8tjRfff3HS5ia2NtnSoQS2zKabn2GdAPtb": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12n6akzLjbL4VvXYewKQarhP4GTQo7cSx6cNqtiKqy83djUqEQu": { + "balance": "1612.603981578", + "bytecode": [], + "datastore": [] + }, + "AU12n6hCRjnteyP3afoEq3EmDd4ovFLGaY2mfzgJNG9nvyq5dRAdU": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12n6nteUawVPhf13hXaravGzpre8MxyzZ6FP9Qhr1avRApVr1aE": { + "balance": "1198.635450732", + "bytecode": [], + "datastore": [] + }, + "AU12n6rbRKQzskZMmgjz5s7g5vVmyz5uXLF5yyQd1YKUvqLtKU3R1": { + "balance": "2502.081741520", + "bytecode": [], + "datastore": [] + }, + "AU12n74ULpG7pCcRW1SdfRS6KFW1Wr8ZHEkLiLMQ2tDYzXpUTpffy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12n7RX3D9PemWxwf1XbkPVzBeBgi9AXtcRGSQSxhNVchN3UNbyE": { + "balance": "36.940999649", + "bytecode": [], + "datastore": [] + }, + "AU12n7uZ5QHWkd7n7mLr3bYwqc13xA28RSHYRFH83Tb3EHuZ54KKk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12n7wLw9MuUhC5JVoqBqyxDwuXY3BDrZ4apk614sMA6Rc23dQFQ": { + "balance": "1023.581142565", + "bytecode": [], + "datastore": [] + }, + "AU12n7whmwyovpkunUBwikR3fi1YYXucQE3zpWqauEwnLbyuzTEmK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12n8QTz66qUNwPWg1qZJrTkV5sZT6X6N4gH33YhYa2XDZwbCcXU": { + "balance": "725.841959989", + "bytecode": [], + "datastore": [] + }, + "AU12n8pida6WG2eFVb5Fxh5ppMMDeTY5M4LhMXHURSMnZ1C1NwmjN": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12n96xTcmLYGyy1jHu1FqifTLjhGmoMgFt6pUjf9sLm8eXSRfwF": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12n9ERyM3Adz2e4xwf7ouNHHwAuFUSVFxPkGuPNhPCLHTZsuxpe": { + "balance": "2188.111222532", + "bytecode": [], + "datastore": [] + }, + "AU12n9KDFF6DH579NHyHKpPRiPfHCE2MCy2ZaHUKVQewViQZD5vrg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12n9VH1612NLrDEn16h13raoAZZQVe1MqoB4q4MAicEUqUdK3xk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12n9azy7pemLJC8xRtey4QRy1cByUYPpwDsuQ9pjmj5Fpu5ejVK": { + "balance": "2357.203287649", + "bytecode": [], + "datastore": [] + }, + "AU12n9hpePJ7ofubzW8HXU8WyKyxpoqYypt4P4Y1xUG7AMheBJ4DQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12n9jBKqQJVcEt4wvtQuMZRvstVjr7WgndenJ54SaohVkBwjBRP": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12n9pSaJvkSgyDdi8dLtroQcJyJFp3CeG7SAQXEuVyWBCgXGja3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12nA12v7FxYRHdyqT27EPAUeYhXLcFMow34h81xeKHTiRQBLJQ1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nAYmocNH27wt5uT1yyJAFv1hM2ENhUvJCXw8RRw1YG9m4dpts": { + "balance": "986.569473917", + "bytecode": [], + "datastore": [] + }, + "AU12nBSWHBYyPqezc63zvcK3ZXksJQcUSfem6n6Rj4na9DG6dqnc9": { + "balance": "4699.544101626", + "bytecode": [], + "datastore": [] + }, + "AU12nBqPk8mLGyfJKK5Rj3HVsKnU535TDkfbLCkzwsekgnBZcfP9N": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12nBss62v6piU7mpbUHsnkhizEUhBsi7mMTPBZiuQSo1A6bdmQJ": { + "balance": "2173.249011385", + "bytecode": [], + "datastore": [] + }, + "AU12nCMjRWmHEvrUY9f4adZTxUvCWiXXEVSajNvaxoWRdv6sSktCc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nDUSU1LvyEaBEbV7QhoKuY3X6kBgB4nURB5SrrrFzkTs6uJdx": { + "balance": "4161.296391331", + "bytecode": [], + "datastore": [] + }, + "AU12nDcsaRu54sYBdmvqZhPtaFHnmX8ChZjCzJrnhgXZjhC6kZuko": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nDqHtct1NxcP8kHd5CLvZuTEtTvPjw5Hw4TMXn1YNyLT9zFLo": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU12nE8Eyp9b4PQndiqbNsm7Yp5rxotMotTBPXcR6Mb5hjv3buGh7": { + "balance": "1597.893781796", + "bytecode": [], + "datastore": [] + }, + "AU12nEsqQsEUHf9SJ5PgQmmu5e2N33MtCvaydE4MZWSMmWAbwsXYs": { + "balance": "2358.121447758", + "bytecode": [], + "datastore": [] + }, + "AU12nEyXXDz83QjCCNhcfuJ2oQjNm5PmQCiHNvt4fUhmZSQnk9SqL": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12nF7fPuLQTM3U1tusmDYhoZRH2VGxFggAaMZL9UhaH8BBJYaF9": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12nFMoGgrR1awqfDzfsxq57kSZMHnUDkEydVCyr9nKZEVaS2KHB": { + "balance": "5498.165836974", + "bytecode": [], + "datastore": [] + }, + "AU12nFdgTBF4JfhcWna2ES3WTtrLg8WRLdgc1wXUcnKDtNWJef6Ry": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12nFihpoS7CzjqxZTc7AqPPVyJfEHL21pqxhdt6y8SvsU791TMM": { + "balance": "3374.771730803", + "bytecode": [], + "datastore": [] + }, + "AU12nGBiBryuMRRyRc8GKtnwL2dLA4GGMPBZ6TZAmYTKSMT1CKF8J": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12nGR2qGhyscLVq4qm5aTUUrFTEwk1vmxRR8Xc4xZpFpaxFXs1B": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nGhKm5G5gCYaouHQno2YwT1rTezJsk5JQJtrr1VYFneWAYZqK": { + "balance": "2127.293685894", + "bytecode": [], + "datastore": [] + }, + "AU12nGr7fYzFyzv2MdSmCgf6qR82H7njrAGy8C1nkaWYYKDyqvqKa": { + "balance": "909.924899826", + "bytecode": [], + "datastore": [] + }, + "AU12nH4WhM9JArXAqRD3UUW3ciyVyveQKGuQF1iDUTArcDnhRiK9B": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12nH7RJi2btKeS1jFioxWs5SHkEu8tov19xoaaeUzVHELbGYbPz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nH86m6X6JRT6FP9wosKFQntvpMZp7e4tmjUtN2R7WaJXdMmTh": { + "balance": "1400.881456126", + "bytecode": [], + "datastore": [] + }, + "AU12nHKsuFkotiMTXWAP3RWS1ghFMRA435SdBpu2EFSH4vNtc5E4D": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nHW6K81V9u7ESfUz8zBmWPeXgsyzAFLREyGx9xaCXBmCRYuEv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nHWybJpcmG636fcjdDUmLiizVubryPPMo3m6zbqj8M21mv12q": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU12nHtQqY8NDkRYyas7JiKRwtnG2HtGQ42a7rU5vjkwHxAjPB8Bo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nJF8DUdPDd4Y33E1UefnGh5kJdCzE11EQPmrX5459MkoBg3Xp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nJSqpoGKMyZx9hwqFCLD1PQfrDTY65EJSvnCxtnsFhvPhxG6c": { + "balance": "2281.669076019", + "bytecode": [], + "datastore": [] + }, + "AU12nJV3gcJqStFMPNr93su7XteJfVexPJJ646dcsPNv263ssButc": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12nJyf4rhj4YBA2WTMVL417HKJEUr6bWG3Gtckh2nYnJ1GGs7uq": { + "balance": "829.912477672", + "bytecode": [], + "datastore": [] + }, + "AU12nKjMHJAyr9hXqvnYUAzyCmENWB78FKV5kkRyuzRFvHXbjgcKS": { + "balance": "5971.575334543", + "bytecode": [], + "datastore": [] + }, + "AU12nKquRsjSLhpmsM2QioMw3SShGW7RnUTK829yUYTVEz67dSj8M": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nKwiYPffYacd7EXWk55WA9FbVzyGEHJREZn84MkvB9nZ2rk1G": { + "balance": "2188.306343312", + "bytecode": [], + "datastore": [] + }, + "AU12nLHArCm4NzGr4uTvGZDLQ2iraRMscbWEShc7UnunTSC4vCBM7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nLKHx4MDL3CA6oxPbcp6By1qE9JfZkJaEZ1ULkKoqburmrMn1": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12nLUztvZh5ju95RvoU69M6WYQ1N5hkygdGAoW8C3RSbhan7bwm": { + "balance": "1453.390456988", + "bytecode": [], + "datastore": [] + }, + "AU12nLkG3jKKezwAsE6QY8ZrEDou1gjf7eNDH11E3gBXtoM7TX7Di": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12nLkRUfgZU3A38fFK647qMgXcZ3bhZbZSHrZfARmi1SRfvewFw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nMHA2KnKNs27X8AuCg4356n5BxsMHAY23y7UXDHKL3Yqidbt1": { + "balance": "3220.266445450", + "bytecode": [], + "datastore": [] + }, + "AU12nN1Uft6krQkVgCeBYdKcMUgCtT8hJSY14DsgFX1RzDrqzNR2G": { + "balance": "1942.041181761", + "bytecode": [], + "datastore": [] + }, + "AU12nN2qLHmqbdRuD2BHJuktPRHX1pUEcvsNHnML4eF5Hz8K5p2e3": { + "balance": "1317.587915702", + "bytecode": [], + "datastore": [] + }, + "AU12nNEaL6u8GNkfst5oXxDmuocG3xk7uyPqLqxPqPzDCnFbn7r15": { + "balance": "5302.026018611", + "bytecode": [], + "datastore": [] + }, + "AU12nNEcqnyUSbVyLjYXNf2jbdfmyaswazV2UnwLqBZMniVog26KU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12nNPK4FSz912F9BsyJtyzw9cyHGgycVHHEj7P7BeaCt14hSSKy": { + "balance": "1673.153339227", + "bytecode": [], + "datastore": [] + }, + "AU12nNPLgj7YqUYxupnfTigCMXbt3mfgGzjo4wj68nNyxFmV2124M": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12nNZHSQanxSRiVWKFqP2dVdbFrXwqgHeExRmc6Pn86NxeuRGBK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nPPgXvHPKwn9aLiHuMLZbWLTdEu7pcMGm6TnRL7ce3zs7PVpL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nPSxjVq1EYgo2EJWRpmvcfRq9p43eQX7j6Pe1PeZfTi9QoAfG": { + "balance": "1272.165600502", + "bytecode": [], + "datastore": [] + }, + "AU12nPcHNqeVAgT9toQdLfQRpjbCExwqCP9Q2jaMim9G2Ckq7Jmqx": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12nPtA3iddDqqhh9cDRrv2Y4iT2VoNRfrXeMpVDFUyrtxfQYtoz": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12nQunzKSUCviDCqF4UpyXPpY4NS35raNafA29UyHKue4JDzKai": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nR28rvBdY4wyuwhsunVZN7wbinUpUt6tdPHBfgiokYPj5Ltsk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nRHPFxLkiwL2GGU9BdtiuCjhZH7DtTLwuDLeLerrLiirPQWw6": { + "balance": "1705.170500571", + "bytecode": [], + "datastore": [] + }, + "AU12nRT5b8nQzB5nRM7VYnNGZ2qq6jo6DU6BZMuPNm3qsU4kHV11A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nRc2HVFwLhtMEv53Vc1PD4cJCimgydXS39MxxLjKJLB7z37Vf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nRsGuxFPqBTE9kjGJRQEp7fGzpCyemqh4NvathKHtDPTDjLFV": { + "balance": "4093.928382681", + "bytecode": [], + "datastore": [] + }, + "AU12nRsvBPR4G3bV7TtoH91uZn4S61nfNiZ3g1ENe4HrmMMjcBZqv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nSYUpKN7wotA6T84M9KZtu9o8yYhUH9LnuGk3wTjYm5PgxEQD": { + "balance": "1582.042630897", + "bytecode": [], + "datastore": [] + }, + "AU12nSiDQshRHB7ZXBw9J53sUurufSSvyuxYbnzBDedxEnh2M89yc": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12nSodXbZrzsZGDnQWG45LhfqwZu1T4utD5gEfZe8YSqEXT87Qj": { + "balance": "3060.254449331", + "bytecode": [], + "datastore": [] + }, + "AU12nTajqqd58N2i8mU6Rg5FERpfbcL8P3YAyRQUbuWEPN96AMjKf": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12nTep5mpPNZsYfXGLWgKb5ZASbhzrCDZdeU8kiLyKaeFvUYaPH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nU3BdsPRDKm4zoir7gJGZSJxhsobZLrQ78pt8b7FPeUjNPaQF": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12nUM3eSGSjiVW3bMRg7DEDQ6k6JRc88JVkFzymtZRbzKXkjgSZ": { + "balance": "2713.010721946", + "bytecode": [], + "datastore": [] + }, + "AU12nUbDuDsVmSygQwMVCXucsTEaEPY2wbg44p5JHVtbwJZsyifqw": { + "balance": "1853.690633978", + "bytecode": [], + "datastore": [] + }, + "AU12nUfN3EiD51DUxSp7Ue8zaHM3HWxhf7RpLssjPmpka9rAwMRan": { + "balance": "2946.539413978", + "bytecode": [], + "datastore": [] + }, + "AU12nUgdsoVkgSpxMJjrKcfNbCswHLYo1dyNJmyJfugfEEt7EfeBr": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12nV7A3pn9LXkRQTcC6J24wtsYUUdwBbhGAjjvKMFLmW7Uee1qF": { + "balance": "2852.644580896", + "bytecode": [], + "datastore": [] + }, + "AU12nW8M6spXn8k772bVqF4NFsiLt3cG5ov8G7NY7oZog5mBnniVK": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU12nWMrJjoKQyo6Enuh6FgNK6LBvnUjmj2A1fNKr5K61y6s8Ya7s": { + "balance": "2785.889774683", + "bytecode": [], + "datastore": [] + }, + "AU12nWQtrDDdWKDamSpMNwGs3YzuweuT5woUBKXAbFiMsfTjq67sD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nWTDVRfTTwzdpkZnfUtDceF1Xv8nUNTbKHsUQD15jswev9X3e": { + "balance": "2294.125053203", + "bytecode": [], + "datastore": [] + }, + "AU12nWTwDXYnUxwbZT4mXCmiJ3dEWinxcAuWDMXGka56n4abNzutB": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12nWsVFxEgfeSfvpV56rPyroUCMqzSM49E2TaGDsCjZRmUNgLdg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nXFRFpk7vQvNk7uwxEFvJJk5Mu38XuxCEQhNoRAyMHiz2EGbJ": { + "balance": "2948.113672511", + "bytecode": [], + "datastore": [] + }, + "AU12nXnQ3uHBKTy7hdgGbjF5AsEVQUtz2cvXPm2XY9noynaCXa9jp": { + "balance": "231.984115993", + "bytecode": [], + "datastore": [] + }, + "AU12nXrRC6wpDFtFQ6k3KYcijFhGYkHJy9z5trnPYX9PuKKEx4sxX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nXwWP5ifNK8maN7XxqzDfoWgN9jjZXKfsnJ1d9LWPQZwWBgV9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12nY671o2L8xdgYXggbWYi3C7rpRtHhHDL8tcvEzSkdZnWGw9eH": { + "balance": "64.574799149", + "bytecode": [], + "datastore": [] + }, + "AU12nYPhZ8o6jWu6PyqFGUQncmkKhqQHSSx6ngq9CH9Js9rqbKgYo": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12nYSwkJZdH852Nh8ihUeLzWUtJoJQBDv7a1CYKHAf4CKQAsQej": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nYsbGZ9DPtkSSWzcGYSz5UdoKjasF9AJ31hp3mMj35TCV9BhP": { + "balance": "3948.353158916", + "bytecode": [], + "datastore": [] + }, + "AU12nZ1HUMZXucHHQXkz9oe7FQEbuJCfRFbjTZ87YjhmYFFqME1MV": { + "balance": "1653.342143130", + "bytecode": [], + "datastore": [] + }, + "AU12na5DopbKXszjtJEBdiekwJEK9VdkUXbeHwr9Vkr8MmrXSUDYD": { + "balance": "5019.992383539", + "bytecode": [], + "datastore": [] + }, + "AU12naNnBhz79nbnVqPJpFxqF5rFpeVyofUYefm3yMNHoENoZQV4V": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12naVBfwjhFXtW2Lht245z421qmV7pUqGrSyYy5XZ93Psa8pqqB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nao7sbpLhSTLwo5tkygu46RYcsG15MNqXbHkKUZtgMFNLUjH2": { + "balance": "17.898508222", + "bytecode": [], + "datastore": [] + }, + "AU12natgVfoviLHZ2ADPC8wezaMHatUHmojhAqeMxs3zzsA55h9ZB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nb6fQtezGFvYmkbZK4onVk1bzdDMvYLkBRPKok92RxY5JZza9": { + "balance": "732.939573730", + "bytecode": [], + "datastore": [] + }, + "AU12nb7WB62pJTeKgu1mVqHZEC4J94GF5rp5bojowhnUorPJ5Jfef": { + "balance": "574.504946381", + "bytecode": [], + "datastore": [] + }, + "AU12nbEwFZ46X3UYmuEaYwxShNg3ne45LAvH9JYJyaUEyo584y94U": { + "balance": "2117.673574080", + "bytecode": [], + "datastore": [] + }, + "AU12nbFhRRqNmctN1DC7kkMGKQ8rgNjerGWfdjpJ2UX5j88HKazMC": { + "balance": "2882.095302713", + "bytecode": [], + "datastore": [] + }, + "AU12nbGJC8adM8BBvsHiJaexJzs1Cc7SqpAbH9uw8rSNe81FunV8Q": { + "balance": "2971.680454740", + "bytecode": [], + "datastore": [] + }, + "AU12nbY4Yz8rmnMLTboHfk6XgtbpA4WvdEs573wE1i5rxLenGQqvy": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12nbkX92u4xzr2LfKydwgXvQJmapg43g39wcqJyH9tqeEWXMh1h": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nbmzy5FiwpHDRDw4kRFkTkDzeWyTh8dVjnHkHtg3nkX1yQ1fh": { + "balance": "2364.303969913", + "bytecode": [], + "datastore": [] + }, + "AU12ncfH9dxQGs3ev3eZeYLdfWHhamC81VX57r6iFrY1QrNiE73cP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ncjPWPC7RW6ZUQ5G3tyktGujqrsgxZ7kghiEexq12CBAgDngf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ndF9zTHD9836AitG9vkQP8y4LMnBo8NXEM8U4hyimZEbASjSN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ndyfvCcPurSBZfuUNy57WLEGCQe4tfteJLvFwLVyE6v2RhMW8": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12ne1NniQhpviZBFMHicgiztR1DJT9vrSUcWCtkYixcRY8tfps6": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12ne2mUvA44ZnoHco7XS2dezmYQpRMc5SnzT1ieaac6Av8NWeLp": { + "balance": "2874.633002780", + "bytecode": [], + "datastore": [] + }, + "AU12neZ5TmhUN6oAWfPok9kRK9waDxCBtkeCyW4TEXQWfNyvMmVaJ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12nebG5t3pSe6hmmUWGLfVN9MqHCGFrYdS25diyXwz3hBtyXwFc": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12nezbzg6SNC3tm8YK3mpm5tJjxzNB63YZSS6ED6yJe1LiNdNpV": { + "balance": "3449.901057104", + "bytecode": [], + "datastore": [] + }, + "AU12nf4zEv817Z9RSjxtXr8nHg8AG5aPqx89mxhecvwMicgeYWmJC": { + "balance": "1577.451493747", + "bytecode": [], + "datastore": [] + }, + "AU12nfKbghJcsNB1Pvr9KRwj5gzdgquSUZ5U11WsiKBpvRqjGGyDG": { + "balance": "1477.717629432", + "bytecode": [], + "datastore": [] + }, + "AU12nfh4QShUuZTJCps8591fzXZ11FkgUCURfadi2U3NcoVHQEsG5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nfs4dAXFWLXyRnitt8y1e8JCJrAj9nUWa73mv6yggdLeugxvq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nfudY9bJxAe9YJMSGJG8zRduSJ5KknNk6VPviRRgjobzLfmWE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12ng1ifoHoHhmntMUrHcuCcKirrABHAV6NmufeCHJ3oE5u1GMjt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ng4AsrELZfmCmuVXW1BgbXg3Qp6pJ7LeabMaqfb5sNzhCKfVK": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12ngoknsXyGbVRKtcCPanZujVXCfjxUaqB3ExMFZny92pPV1KfV": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12nh4gjWTCwidjhWPBnN2QYyMUJPPpkCwaY8xy3xopHkigW3dxU": { + "balance": "1324.481758465", + "bytecode": [], + "datastore": [] + }, + "AU12nhNjuoAjVtNF631RReLWwTNVirLspVi4sygX8322NYzbAwG44": { + "balance": "1899.600053174", + "bytecode": [], + "datastore": [] + }, + "AU12nhzD7uFQRhyXdfe72q1HhtLJocZSD5WrNcvGmaHk3PbkRWWLy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12niMTmY7u6SE9on35sWdWu9EcpmPx7ssjDGTTvZxYvtCLC5ycr": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12nicmwBKkgs3EJp5GxBMzEP7S9jJXpCQ7nJLmxEdZrRXMPhd2z": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12nj89jZbweUQ7dG4GfXtACjrjULaSpKw4P6WWKSUVSeYgkqDFY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12njS8XfPtnR8cxjUYBVhRh4yRv652KPTMqscUGVCNSqFWYcom5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12njacApi6ffc12YmmjXmCoWsrTwz4KCq33oEg2Ehjnq1tCiCpy": { + "balance": "1811.318689787", + "bytecode": [], + "datastore": [] + }, + "AU12njiEd3pNCqwxzMBJrC9ecwkjvUX1LhM1rt3eGirSAYNMLakDe": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12njkHCrB2MTFDqLnrkS5kYJerD37Yx3KYJtJ1m9eSunXyt63go": { + "balance": "72.607260726", + "bytecode": [], + "datastore": [] + }, + "AU12nk4TckkoXMdcABXEC8TDGvUoa9NdvihFtWGUEKk6FtqBUmUM2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nkCS6wJbpSQ49SxKPX1BABQBmh67RDY6rBvJNdYtH1Mnw2cva": { + "balance": "1677.778264684", + "bytecode": [], + "datastore": [] + }, + "AU12nkUbTgWJDqhgS3zXGhtk2Q6Y4t6pcS4iT9SpRz4b1pugQZyev": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12nkZ91MTYBZtDpnPQiuia4p7m92eqcJMGayACX1Mo9xD1YT2fz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nm32GXkea7TpLEtS1pQTSqZJkmtE9CfrYUWGxax9g5RRBGvBG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nm7tarv1Bqpi7zte4V1H8tSsAdAaeT6FTWVRctb4Rk8oVcKPF": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12nm9QLrwA9nZeD411d4YyWxWHmTyEzz83z1ctkj6gJ94XXMUNc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nnAVhtSDe9TLJgUvTaUCgkrrZmH5ras2Y3mQPbuSfN14yABCF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12nnM9rJkXvD1Q7XAGA2fFzHfL7uS2mSQcyU4nLQwVhvTyUy4eL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nnSsoKJVKkph16NunpvicoEVXtV6wJmZv91CsGRU4hWQv9hG2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nnVLFS7Dpr6W8d6EEa7TpFgyfRgWqrXnDrd1n6Lq6WtNxo5Z": { + "balance": "4123.688436255", + "bytecode": [], + "datastore": [] + }, + "AU12nnVdgMFiirydh43puyrv9z5nJXa6TyMS9ugA3XTtWYbhnEfya": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nnYKBvUkZtkY2ZyGbnqgx6gvSwLdfhFz2BuGnUvJpm7tHr8sm": { + "balance": "820.829939691", + "bytecode": [], + "datastore": [] + }, + "AU12no3oNDmkZmRLAKubFPyDJvvLDXrh7RwMrtzjsaVeUj38PMgfg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12no4hviigEv67EZbVii3nZd5nRNCSDNAEgkj7gmvTa27LXeYrP": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12noJgJdJTfPyyHxohkuVtFgRwxSotZPzC3cjvKm2naV3vFaCdR": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12noQ94KHVrpFdMjM2d82nUQBRooccxsPmFRn21jTL6AdXpZjDx": { + "balance": "1891.840533837", + "bytecode": [], + "datastore": [] + }, + "AU12noudLPxQ2C9J78h28SGosHd1GEosdVrFU8sXUXBpbeBJ7UV2R": { + "balance": "2703.177671954", + "bytecode": [], + "datastore": [] + }, + "AU12nouecZwUwyiMXVVn7KFPHrEdriiuSBVdjJ41ZizBoFLqyfVMD": { + "balance": "845.965171581", + "bytecode": [], + "datastore": [] + }, + "AU12npShRAaBxPz1F65CqaBK7VH8o3dJgQeAvfXbjPY6aCN4V66qC": { + "balance": "1776.865024286", + "bytecode": [], + "datastore": [] + }, + "AU12npiZxSYjx1SszBubZd5WJBFNMjKfBfsK3a9NsYN2RfQVWYAVR": { + "balance": "1028.049473498", + "bytecode": [], + "datastore": [] + }, + "AU12npwLCXntkcaqVoSLxcJpVa6uuob3zMcDgnTLToMG1vNih2Pb2": { + "balance": "117.695049424", + "bytecode": [], + "datastore": [] + }, + "AU12nq4NTthvv6hBLDmLTRunP78NqSR7oJs3NLoZyDLQnJthYv6df": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12nqybQMJR66fxMHPZTgKcUqcaFLexr2vbzhs6DZ53hsAi1aV8V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nr3oETM8yxPkz1RX85sAPm5qxyENUHeLR2RziUQxQmWxLBq3q": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12nrBLfwXe4M3JjXSSj8UhKaL1xUR3VsDaua92tJg9cnrmkYTo6": { + "balance": "1305.949514291", + "bytecode": [], + "datastore": [] + }, + "AU12nrScoEwGCHycgyYGDSuYvcDQEj7fPMAiDg1zaHvUUVqZ17Fpm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nreAKFkp52Xv1DpfSjay7DUtVdS7c1cGHWTwXDBNcjTcczjj": { + "balance": "1654.132382044", + "bytecode": [], + "datastore": [] + }, + "AU12nrjFfAGxRxYyT1tfxPhB91fLeLBune3RCq3CP2sjwuHVQEk5V": { + "balance": "4711.589925203", + "bytecode": [], + "datastore": [] + }, + "AU12ns9CvRF9dNkFN1pZKhagxcnB1r5Bei1KEX4wwUFLauTGj5mNt": { + "balance": "2227.844790622", + "bytecode": [], + "datastore": [] + }, + "AU12nsLMoEFvW2MiKY4axmcHUQGqRDRmvn3unwSUU7TVbBmd8op3S": { + "balance": "3735.779582540", + "bytecode": [], + "datastore": [] + }, + "AU12nsMnjuJxnVMBC392N1Ccs9ugUtdsGV19tyH7QHN7ekmafGq8K": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12nsNZqtYu9PBsKy9q2pchRKrRMfmuEucAFVXx6nYvNksdE5ehd": { + "balance": "645.982871185", + "bytecode": [], + "datastore": [] + }, + "AU12nsqrTN71GTTyVmNL26oi8A3ry3yRVJzTGBQBtx2j4ggUm4Y9C": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12ntYLXvn5SZ5RCNg9CkTxuU87ALeYndLXHxRuM25UG9toioiRB": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12nuP7Wk6Tsmn9ZeFxowtJn2yc85LqSeKAbzoAeUnckDW65P3qa": { + "balance": "2263.134763597", + "bytecode": [], + "datastore": [] + }, + "AU12nugFJLhokKoqD6o3Jro8Kq4j74e2v5P8DTrLAHEgUpqejLX5z": { + "balance": "2427.523500519", + "bytecode": [], + "datastore": [] + }, + "AU12nv196GR57GuK652Zh9VNvKDKUzZ8LLZwB7k1HW6bkSLnzwehQ": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12nvXKzt5jCktM7tYckCcAvn7YuNMLFo8u34SmtifcGvPPkKNjE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nveem53FRrGoZXmLuTPEFo566bKse3i7b5gifGqbwVTPdRwHt": { + "balance": "1118.799554603", + "bytecode": [], + "datastore": [] + }, + "AU12nw8QARgerJy9n1MSGhZuW1WRzzur7ckZe6eou3Rh4iQD1pMaz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12nwGYNAtMgy3X89pjnFCSJ1pm9y94U8MAnaRF5qWAZ9NyBVVbz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12nwUQC7vx31Z3aiBn2yJEyPaQNKrjL7dhrEF5pEADm2RKzCivz": { + "balance": "978.805944063", + "bytecode": [], + "datastore": [] + }, + "AU12nwVpdmgpnfrVecLyfR2Hkw6NoHhSZ1DTYZiWM36NoKzgPMz82": { + "balance": "949.532297924", + "bytecode": [], + "datastore": [] + }, + "AU12nwfnrSr7bWUP7BRijV7a2nFMXA6RTADgyQMBvyG9dscYtuJKM": { + "balance": "2713.729046056", + "bytecode": [], + "datastore": [] + }, + "AU12nwiKR3mVDu7MdTXSW3y3y51pEhFFCKx23VdMogwef97Ntj9G9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nwoedsrgmwBXBiDCcs74YbFRtZVRxM1qxNdPhC8D5FjKdoa9L": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12nx5q5QEGzadmFovSTngc93DFswsfcb5rNYm1W8oHkU1G5Qtkk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nxAovwF6693MoRXRq5ei9CMp8GWYd9frwPTWG5XjUTYiCmDjH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nxPzgo1sK2y49Tu2rp2DhPFzP4wmzeyAUamYSKJfabSu1GNfV": { + "balance": "2224.991788936", + "bytecode": [], + "datastore": [] + }, + "AU12nxazkGcmRSjBQxUpkGEb6e1hgtieWabnJ8TCkFseRbyjBQq2W": { + "balance": "1682.389564648", + "bytecode": [], + "datastore": [] + }, + "AU12nxebxD6oZw7ZaqAjuPs6yL4e2rWJFYwdSnBojQffB5pH8SnkY": { + "balance": "1593.579349886", + "bytecode": [], + "datastore": [] + }, + "AU12nxkMtxgRJ4gWveetJXCLiAZkEqAHhL1cGHrXq2RaPL3AQbuUu": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12nxoD4WkgNPPcRibDNW8zpNJ3CHjGuJnD6WNrSPQT8CNjvTVPq": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12nxwYGfKoUBD5johahNi9HdvD7UWjq2ukoQmGeShhYBzsXjaY5": { + "balance": "2108.948999816", + "bytecode": [], + "datastore": [] + }, + "AU12ny8YhwmWUSbjrQVXwByLvtY15sRLVAqrDWTu21nrTHMuv8S6B": { + "balance": "3713.697007486", + "bytecode": [], + "datastore": [] + }, + "AU12nyPNHEAJUxs31VaHDVFqDDoSwp5JgtRzu7fmKf9rZvgea4S6n": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12nyWPNi3B7EPCRTQKjbRkdtC116VTSaqKCxAMqohaMc5heEcZB": { + "balance": "4338.868484458", + "bytecode": [], + "datastore": [] + }, + "AU12nygkent7SZxXzhSFhFcigZ2fUFb9bom2qupN78nSeWpX1Cb8z": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12nygmmjZjEDdGtdGYUiDVCjFk2B6SJWK3bUijeC75wj58rW6Dq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12nyjvcKDevUH9rc975YguwQuycX3kk1w7vXuJZMH55Ni8f4n38": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12nyrCnvu3Z9FmZKdiRKKWhkPYHRfb2QPc1sUhm6juQH6VSF3Qr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12nzFireXuy99CZQqdJD2SquQZDNczFigEGDqSE47wsGmUXriRA": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12nzM2VCYnro7n7AGKHezyCkSccqdKdiZskXo3J3Qr8cj8EUiUA": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12nzNBCPNqUJjDkEfyqmHkifVPM4eBRJrRgB1FcPuazMjwoNR7z": { + "balance": "854.890586557", + "bytecode": [], + "datastore": [] + }, + "AU12nzPEyyA2kosubnwE2yViHkJKspe6e2YYky5xCbqwHR9s8kzvb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12o17QhL8vmYBmUHv3M2yTu9RAd2gcyTSdS1BUXGpeDrYbdqGc3": { + "balance": "5469.562513502", + "bytecode": [], + "datastore": [] + }, + "AU12o1P7Re4xNTDPC5XXAqzZktTecDvBsFCnnka1jD83PzDVA4avt": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12o1ZZqSDb66r5QKEFpHwSJKLR817U5wrQVHXSMtMofBiAeDT5u": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12o1jAeg2EhPb6KtCoFLXtBCzVDVT63R2Ub9n2p7hoerPUiVrvF": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12o1rn6km9TSWk2aFZoF5X86ovWve67YkcKtKCsjhQ9aDsm17WV": { + "balance": "963.283158465", + "bytecode": [], + "datastore": [] + }, + "AU12o1tJYyHg65S9Fii8tpH3h7uB7RkVb9rEJDwxPhezzWYeBadtD": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12o24vN19YUuvXwC6ieJNdnqRfWn6myfMuAkm9HQ57GCJCkBRTX": { + "balance": "1307.245265629", + "bytecode": [], + "datastore": [] + }, + "AU12o2Aqw1wU4Bu7Q3mvLa59emD7WBuCRASfAfa8Cxwn6ChCdRCkY": { + "balance": "1504.929905516", + "bytecode": [], + "datastore": [] + }, + "AU12o2EJn31NcGHimTosYtQLzz23fVX7j8rjM6i5KnmACXYM3zKFc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12o2uEXPEtgpqes8GhEFeK3shpY1EPyLWH5zNrBtcqp8R8dfGFQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12o3gGWC7H4bn1zUTkvMsNkUm9KkTCpHJCjX4NoR5w5QXsf3Snq": { + "balance": "2420.293189244", + "bytecode": [], + "datastore": [] + }, + "AU12o3jxF2r48L1xiyfWnntTwrG6UdrY8x1ejvA6dghBhe9cJ6X67": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12o3oDtSnDbcUK4GjqjkeUL4wvtvGCwKKMiyXzE6v4Xd9hTKnko": { + "balance": "2543.568942926", + "bytecode": [], + "datastore": [] + }, + "AU12o4e4673s5QM13aUSFWJ6B9om1Gf4K6cEG4eJ92MYJG3MnSvDP": { + "balance": "6054.374824614", + "bytecode": [], + "datastore": [] + }, + "AU12o4gGcJ5uXKtXqmwtiUhaAtMZGBhoohPCCptFmVyM9u49GYmNg": { + "balance": "1565.222320996", + "bytecode": [], + "datastore": [] + }, + "AU12o4wsNKsRBW4a2qjW3rheRHui9jbNWvfk1ZjkM1DwTjn7qgPyC": { + "balance": "889.092816224", + "bytecode": [], + "datastore": [] + }, + "AU12o5R513yKxV4qenWnoeeJfCHHPaB2xtMRdpa4mEiDDd6FtywXS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12o5qsmztj7PvfqGWBTiBVo7tSCBx8kcJvjxpDWQEPgfDymvjrx": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12o6hdsH5tzpiqujE7z2WYnc6tpXuyfy8uTp1bS8gyMWf7M6XxW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12o6rgpmWTP3Sea1WwHUEaKKTZXMfCQC8MBajnefbkiWq593qMh": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12o7EuF3tBaJVmSkzcMmfmLRnUsQLvSjJJrk2xFPYVQKXFnHNaa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12o7MhZD9HB9EsJP25uAXa3KJSVKcpffhSB7Tycd6m8bZBGyJVY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12o7ts7U1gr45y6CUXNgXMe2zCicPEV9PGLeNz6X844r8r4ueVy": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12o859Xe8L247mEKN78xC5kePhmeGVtmyPqa4RE6hEcj4aW56NR": { + "balance": "3688.696968389", + "bytecode": [], + "datastore": [] + }, + "AU12o8BHe2ZfXcmFZqNb3SYAaqnHDMnjYUS7cWsiiKWqBMeY9cyhR": { + "balance": "236.178501520", + "bytecode": [], + "datastore": [] + }, + "AU12o8ESkETBHpetdPQNUjPvzsymuXdfjdantGCiet6VE7dhxtCWu": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12o8Xyf1nGWrpf9GW54UuhB5iQq936BC6myccDpnMRSjdi2noT1": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12o8YnxVZ64bkmMuVuepFGZ8j14F4s75eo7dtazrkwGMqxDDXRB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12o8bn1xJJSo82ycN8sqtNojW51JnQjJ5NRLcRgmPBq3B1DBEe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12o8rw5MVhYHRJEgBT5S1sgqZXZPbqLtktERrL1WQ8eCYoBUtiZ": { + "balance": "1751.873111942", + "bytecode": [], + "datastore": [] + }, + "AU12o9DQWcqzYkhXiYZMpXbEB4ZkXJ5YAbdRUuwF3RA8GBXhyGw8z": { + "balance": "1632.620648118", + "bytecode": [], + "datastore": [] + }, + "AU12o9P2VGucjQv93aQunJ124pJL2rfRziu3qX4sZ2GnwJrrKQATo": { + "balance": "1036.816657112", + "bytecode": [], + "datastore": [] + }, + "AU12o9SLiYhAbHaq2gbkgya9jXmCcUXZ3dK7iC2ipdEZg3cBhFkVU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12o9o7r2oUEamPaxHpz6nFjewAgYKiz9Di7sFag7bMk2Nfpp9mM": { + "balance": "1459.690170916", + "bytecode": [], + "datastore": [] + }, + "AU12o9y4Ya2kbq7FpDN7cXdLLGiFKxTjEuz2xexv1ATfjGEUQu25Z": { + "balance": "1086.120810019", + "bytecode": [], + "datastore": [] + }, + "AU12oAK3Cb3aFV1FEGE7JbcxxLTkh6vtSim6RwBwFoSx2X4hMqRba": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12oAkKsPSDLYsGnnZp9keTERAjgd8PTDpQKm67keRrdSi3XPRNa": { + "balance": "6360.872701614", + "bytecode": [], + "datastore": [] + }, + "AU12oB1yCc4UoBo4fsjVnuWQbx41t5L81jsb64uEc7hPVhDaUCFjU": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12oB449gtkPPmk7kPe74UWyb31aGqyQQbJtfgsKMPVkeRoyHi3X": { + "balance": "3162.394969001", + "bytecode": [], + "datastore": [] + }, + "AU12oBVYW1QLSRWHRctDRYbKZff4uAQ3snfDMow4JWx64brjuME2M": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12oBXMpTnDjMVrXuwhAUtadpmQp4hYhGjrL7xFXcnbG95EELEtX": { + "balance": "59.275569824", + "bytecode": [], + "datastore": [] + }, + "AU12oBxz1wHbzCGHNib5qam7LepWdPCufffrm1WxnsHsPiUw7oKX3": { + "balance": "3555.502703501", + "bytecode": [], + "datastore": [] + }, + "AU12oC62wbu2U457CLjyQSh9eiMXgVPNN2TaMzogWvLdhtnyYe7Zr": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12oCgXgDpKBaGXUTAUv8tRYkVV3cxkguLW4FXJbvkDd66VWMhEs": { + "balance": "68.616562508", + "bytecode": [], + "datastore": [] + }, + "AU12oCjarvTXDhxEavqNVrMBcnemavzqyvp4zN2pXm7aHde2G2qcz": { + "balance": "2554.639117743", + "bytecode": [], + "datastore": [] + }, + "AU12oDXkUjPpAPd1GnKZLigZ3H2VTFXcr1SP33dWgQtpk7iQ1rVSw": { + "balance": "834.346497804", + "bytecode": [], + "datastore": [] + }, + "AU12oDqTs3xC63WZvYVWkhfswndMYh1b9pxERKEn3Cm2pB4BHBSFc": { + "balance": "1745.058030861", + "bytecode": [], + "datastore": [] + }, + "AU12oETRBUUGaw7swxuMxEcLAGmTxTi8ndibWhjNHRXNYjgkgZwrd": { + "balance": "1396.527728043", + "bytecode": [], + "datastore": [] + }, + "AU12oFW1NFiNhbvkD34YmXwD54e7mUonantXBGofZzwb9v6QVL932": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12oGGth3QWoUGwF7zYsWUvRiTgZeLX4BLPUPSrKVgJqKg8cf8p": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12oGaFJLX7eiy94HLnB6d3yJpmePDpjPLGCjcXWMPNFBXCDSt2G": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12oGqbkojKYvVb6FyUPyaM3LRYyZGfyXjexFVHzm7kjyGxdFGG1": { + "balance": "2297.417040085", + "bytecode": [], + "datastore": [] + }, + "AU12oHCFm5eJ3n9WxPkJLPikiLbSAqgZLg41RTeJagnmKCoodYNkn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oHEqtAMkxLrv2B46CfVpJeQ4evJ6zZ8FdKt8ZwJCWrL24NuZv": { + "balance": "1748.718050984", + "bytecode": [], + "datastore": [] + }, + "AU12oHgKmAieAfNhMu6PGJSCXFKpbC7xR5Jv5gNPmy5TxDmELYQwf": { + "balance": "35.957533757", + "bytecode": [], + "datastore": [] + }, + "AU12oHnQpqciS7CJ8Vi3sf6LZkjXqumnnRFbd3CJdzVFbR55h5vGc": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12oJ2EurEHaiwYxz88gYzN2yjf3d3yJyxo462FCeJQabWibeoq9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12oJYDoooCvd4hE6TQBsV5B3F3mJizqXLMnKdzVCRmGoatZHsfe": { + "balance": "1539.647623290", + "bytecode": [], + "datastore": [] + }, + "AU12oJjbzJ7FHpbqjah3vngNmpiKCHdA5GZtYqKNy8AizZLrTLaJ9": { + "balance": "3513.478941140", + "bytecode": [], + "datastore": [] + }, + "AU12oKB4AYGEeeczC84JsiWKUsd4hk44qSA8BQ8ZYiaeVJNRMGwUW": { + "balance": "1551.546165204", + "bytecode": [], + "datastore": [] + }, + "AU12oKCDSU3sA5hcR2ix87L1FiacVzExUPfFGZcepXiDAJDygdbHC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oKGmaHXhJ9vXPT42Mskw76iYAmWV6DW2JJ22LVUEFBRR1XZNH": { + "balance": "1668.395265318", + "bytecode": [], + "datastore": [] + }, + "AU12oKYbsMJDMCRguKWKNRuG3ZxXN8P1rFUfuzeQp2QzrGQtEXzUH": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12oKf7erohRuZKKBynvSFquLUZi2XFMjnV3uJKN2JeQimoM58SB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oKnuUEsLqutA3YkbyPntwL7SFYHwDEeTUoYgQeovTsEDG65uS": { + "balance": "1918.627404558", + "bytecode": [], + "datastore": [] + }, + "AU12oLQefhaENytDaMreVp14wr5b399otopRmM7hs9jPKCgHLHbMu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oLSVCPZMUN3nx5Q18LMG9HRKTp8WK5xfbRrw1qbGDrgL9tiHz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12oLWzyhodvo3ASaU8RTvbzLadYhABV2Wpkka9VJtuBwn19Qc9h": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12oLZUu7iC59hra9ZibtepeNGzDikZ6so289yQfHLmg7MXGPhAJ": { + "balance": "1196.543807901", + "bytecode": [], + "datastore": [] + }, + "AU12oMRcLFkWnWkLPNTiAWY6BnfW9JQxAunFVHaotJJyvQUv2fDiG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12oMfNh9UtTqtFJDecxhKBaKutnTt7z3DvS5KLUr7SsYHqPhLrV": { + "balance": "2090.622030051", + "bytecode": [], + "datastore": [] + }, + "AU12oMfozNfM7uGcHNDTnVE9S4g3DekZkrz3AmJDQwKNixKuFitUb": { + "balance": "751.666117968", + "bytecode": [], + "datastore": [] + }, + "AU12oMmjxAxmWQPAMac1Xb9tSf3LxUVG5jRhDjcBPvqELg82wwHaV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12oNLNUHPaTYx7zCPLV66MHP3FEnsPfqjPz3NgxVirhQoKc74mi": { + "balance": "5241.678969575", + "bytecode": [], + "datastore": [] + }, + "AU12oNez6Qp6V2DmsMtUQ4zQbcidBM4TJzEas6rNFK1VovF5WD6XN": { + "balance": "3153.546269987", + "bytecode": [], + "datastore": [] + }, + "AU12oNpaDyctBw4uBvaQLKg7Fy5gCJtnrbVHNbTh3BN6qb62iYEo7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oNuLrB7f4fqCBxa6c5zZJLcSt9J6dvhVSZwFLPhXmLDb87Hfz": { + "balance": "2337.785207994", + "bytecode": [], + "datastore": [] + }, + "AU12oP8SJNfYC1QG5sEkt2ZvNnEvH616XEm3AdvmgEUo53Q7NesPy": { + "balance": "1864.555676297", + "bytecode": [], + "datastore": [] + }, + "AU12oP9ridYACPt4esJNx12K9ShwvZqrMpmSTwxY6rQWz3atWTgk5": { + "balance": "798.998977492", + "bytecode": [], + "datastore": [] + }, + "AU12oPXExsVMzyGVXaGwCYtp6KDWDP8Rfc7QUiQ7E1tKrwJYui6xJ": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU12oPyH73kLiPvV9BnxpFYicq5w8jDsNMK4SMXzSJt4hc6GJ47WK": { + "balance": "3218.300967822", + "bytecode": [], + "datastore": [] + }, + "AU12oQ3Fs6pCycenoR42rniFm5HwqDfZ89hGq3kFm1vC3fFPuqZQF": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12oQ7NCmBSC8RVV6jB4TN5uugs8dgcfnJYwLotq8vhB1uxnYnma": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12oQm66K12Dja1ziE46r4G6ztVry3XgM6BdJQGrJNRoQDC6S4py": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12oRGgKLfJMAEScL4mUe98Yi8myWN3y3N5bf2osKqXa2MP1P2vM": { + "balance": "1357.332013047", + "bytecode": [], + "datastore": [] + }, + "AU12oRMgiuG7jtgCTLyhv5iJAX6AWSy1QY7aj7pSPW9SCQrAXLEsY": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12oRVkuHJd8E1fPCsfTRyqBoH5BuPXBo3D4DZG7oBfkC7xkyQUQ": { + "balance": "1490.999127405", + "bytecode": [], + "datastore": [] + }, + "AU12oRWD3ZHbPaSju5CWGa89cpy8dYKCHEYTaMDjMAywNxWPFbbe9": { + "balance": "1332.951725086", + "bytecode": [], + "datastore": [] + }, + "AU12oRn7AeMH96DW4Y1tWY3JqNgL7W8YfvbKou4gYoKjKv9yHKUVX": { + "balance": "9.480012950", + "bytecode": [], + "datastore": [] + }, + "AU12oSHqFAVHzSwiysiPNDjHmkzAgfwVbmaZdbnLz1qDhrJHBwNKq": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12oT8aQwYUkTmst3Gi6PS7DDBNPQY5Xqjs14DcRackgvpD9XRDQ": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12oTs76VGkV6SZUmVQMt6AGPf1uGH69n3f6iLW5cUm9ovUH22Z8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12oU2vaUU7eTsY6JrcfuEbx7UympW62MYHD3nH42eyG2r9seCLM": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12oUA1sKhBcPexrXtyaabQp2AaKhBqmG5PvS17YotXz3uHcSaFc": { + "balance": "1832.176282751", + "bytecode": [], + "datastore": [] + }, + "AU12oUU6yNDex855AVbnbCCbxq7A1y6eyrJz7sTeuDc62DwN8juaZ": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU12oUW47pbnkFLDGRstfej5ZxNdW1gAfwrdTigTDwcBvQ5YHiNh7": { + "balance": "1803.469434784", + "bytecode": [], + "datastore": [] + }, + "AU12oUkTKVdxtVfdQrxNRmcCS15raESzjak6Pq9JiEtQBsS2ej6ev": { + "balance": "1365.743797313", + "bytecode": [], + "datastore": [] + }, + "AU12oVKHUJbjsU3sV1S3GfNugNuuqUzw4knHggR3GB1hqqo9LFpgo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oVbBU7RfjXDzhpWG5gEmhakZmAoriTLeMHFMFJkeyVF5hr8eQ": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12oVswEMFdJZK6ocvrNuyLbNAfZTwvU4UA27owmft5orzaZAWiQ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12oWU5Zz3jLFVQ53yQgLZD4ENuJZHUwoGHv9imbZ6gK9QUwVwNK": { + "balance": "1439.137422220", + "bytecode": [], + "datastore": [] + }, + "AU12oWY3ZaJ7ogGijajQBFmQEDTW2RSP3Qjveiwtz3d9Ey3CVmaQz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oWqYY3tFGAoa3zUKRifLeBe37fMhLGjToNfvvfxZpKo3sN4uE": { + "balance": "5180.006747211", + "bytecode": [], + "datastore": [] + }, + "AU12oWqpVdxDkfwTfWzzjk4hrvdpLi9LdwrgT3Wxk43Yob3PaiS9T": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12oX4uWGRPsiYhzY1CRHXaFFphfNgL5ReyhCYp1nL1BH8gKdwBd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oX9bgHEQPdAhMHviJCWx6JKBf1xoP7zcx5jC7MGXDGda4Xxxq": { + "balance": "53.182637234", + "bytecode": [], + "datastore": [] + }, + "AU12oXM3TEWBPAjaMQ31JbxF5JPZy1tqNAFKvyo5VC6S6gpzaysxi": { + "balance": "814.650433353", + "bytecode": [], + "datastore": [] + }, + "AU12oXMJGv6aRrqT97b7hUvzXhL1Kt7BAaCaJydtRns2GszYuSBsh": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12oY11791n91VG3Bp3JWfcPBDBmH1XY4dR3qSLpLoBUmrGL6DAK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12oY6fqKFtKEgaDJ957gbaftm3G15kEws67XHUu5ac6fRfagfSf": { + "balance": "599.748038332", + "bytecode": [], + "datastore": [] + }, + "AU12oY9LuDbJuR5PoqhnVQzTe4xTrMvh96cGCsggaX24daTQYWXpt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12oYFnsVRHncDJSXqR8epzf2rGc5x7GecV5f9iBKgYB6kRF2zJ4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12oYjAYRGFHgeLt8tTm7jxWypZPxknici28iVy27FZWy3MTF74X": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12oZFvzeZeUyKAT66D14FJKnuhpfuF7DVSEC7WaDnCzWiSdo9LH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oZQVUsp5nH5cE6MawDNUXhPKXYoq1y6Mu5F2dKUM6KFAGdBNx": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12oZTUzdSJVt3NsjbfV6tWJMERHVNT81g71tYhKVm3siqeeVbPY": { + "balance": "34.053892898", + "bytecode": [], + "datastore": [] + }, + "AU12oZUh2VAFveZiYpdeTf6Ce97x2zif6DBeNuMfSMdJnECNhTfRt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12oZZHKF7fyxPtmcE86gHNLskXr4ZSHyUjUeRjSDkpjSqddtrwC": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12oa4SeXow9ARpcHwJEYynQ67j1wRaRAjNaEvrxC15Z6nyjvaNj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oa61njtTL5x31Y8pNxPLH6QRW29fiFkfhnrnZoNEUyx3R1hNc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oanJ6oeDmtcjWtQdaKfRfr68awR85m8JZ8aY4Y4pzx3QvJbkw": { + "balance": "3877.950995283", + "bytecode": [], + "datastore": [] + }, + "AU12oarGASwwzyyh7fyoE6QvpXiBH5y8sWtvgSxreYTkyFb3X8aeL": { + "balance": "1692.919198990", + "bytecode": [], + "datastore": [] + }, + "AU12oavAhrQrTW6AVN3zDzW6UYw45MprysNK8juzTgFb55t5U6v9k": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12obHajMWgQXK7sAqDtzUDr2zMp9om9M7L3xhMZbUkRBcjj3nKJ": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12obfp2zzGpT4rjDMJ2knpnbemqDaAMLRj5LK8qHn9S6omajh4s": { + "balance": "12.982010178", + "bytecode": [], + "datastore": [] + }, + "AU12obi6VZqg5kJepaReWEqLt7mqj7RgEqDSN9bfNGUyK5UP5z2vK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12obiYkScduX3Krp6Fefq7cgFGHzqbkMgFkWA9FwtRPjkZgbv31": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU12obkFUqDdpJrn823btiUytrwTAU7L39H8kPbZHHdGfwf3S8udS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12obvtLTiDT1Q3m4FuAJKDacaCoZBbtY17c933g5z7Z24XLKUvg": { + "balance": "1540.146856838", + "bytecode": [], + "datastore": [] + }, + "AU12oc6MtpobxFUiu2dsjtFgBxR9SQWFGtjjxTzfYuvNMjwFyx5zk": { + "balance": "1571.667592158", + "bytecode": [], + "datastore": [] + }, + "AU12ocETSTz7Go9Psnf876WsRETdtT8xT4wxBTd8Zc6Uz4exHVubT": { + "balance": "1410.443639397", + "bytecode": [], + "datastore": [] + }, + "AU12ocSxcTrb9jCFaHcCtHDNHns4rmrNjVN5kDd35va4FkQnuWW6d": { + "balance": "1299.073254244", + "bytecode": [], + "datastore": [] + }, + "AU12ocgNYiutzprGQQJ8p1XK4e7dGFUVBjF2DDT6MhtDaX3zWtCV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ocqvrc7ThoJyWZ12TyAek6hH3s8mKvfEqXWi2VRENazH1YU17": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12odM38jAmDruwpAsyuLzPezzZNGcMd4WBQiHtazSjLfgjdhB15": { + "balance": "2649.767020892", + "bytecode": [], + "datastore": [] + }, + "AU12odMv6ViuVGosyQ4J7AFTwKoXkH6xxHmFVhiBYojruFEBn4KMX": { + "balance": "574.732995177", + "bytecode": [], + "datastore": [] + }, + "AU12odypjL7bdiJETc7DwJL2vM3YXuMih9hvFfoYBvMNdnxp4H5qC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12oe5KAaFK4kbAkppjsZhRmASWF6w3jL2McDs8BYBA4wYzFtmJB": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12oeEPfJAKJMXdbA7Z4VakBWibdD8M2DBHxqF6j4aAAwtNCf1cH": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12oeWuBX4xMn8ii82QmGf2AkMjQj1BktAt7Egf2DAQPXiU1gLD1": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12oecUcVHveWfwwyayQ6q5BzYPdxdkeiqWErmCES4AC5JfxsLWh": { + "balance": "2543.084304749", + "bytecode": [], + "datastore": [] + }, + "AU12oefMF7L4FGjWb9fyhWDM7WuLxuKbGJikv9sy2kJ4d7xoXHpPr": { + "balance": "3217.532211234", + "bytecode": [], + "datastore": [] + }, + "AU12oeg2rNvgcDGpXF97bWYGbgYuoHxnpsRLFdTgpz9F69DdLvVUP": { + "balance": "880.982596247", + "bytecode": [], + "datastore": [] + }, + "AU12oexgoLeV8ZAZLwSGk9pstBUFpC1iznPafv91ymqKmLMzU6qtZ": { + "balance": "4697.140217213", + "bytecode": [], + "datastore": [] + }, + "AU12oezGECp2AKGcYDCki7j8SaYocpjBBwJxJeD84SvQ6u9o69Cxp": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12of1oFJARsVRCazpGQA7BCHP2dt45KFt3u3Tzct5QaZVFJUGVF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ofgDi9FjJ1eAyA33dRy7sPk2fFvNJLWMiVUW9jFtoF7YZoef5": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12ofzuyuV7tp29KGPgnUPDGhpb6rehzui6nMNArw4ht58S9Hqa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12og3J5ikJg3bwqWMuNG4kWcSbn5qJWh5tyTbXZ3mzcdaieU39b": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12ogKsWjrg7moiPQHbiUbZEmNkgnwR4XyhGAwYfXf2jP42tiDGX": { + "balance": "1971.822345814", + "bytecode": [], + "datastore": [] + }, + "AU12oh7co8kqKk5Gzvdwj9EenqTefefYj8kCchJJG1NfPvnkzeT8z": { + "balance": "2564.821226602", + "bytecode": [], + "datastore": [] + }, + "AU12ohD4Ust4CJgwyvtkmfocmjPy3q4oca8LNzwchv5TSewhzcEqz": { + "balance": "4887.691373113", + "bytecode": [], + "datastore": [] + }, + "AU12ohgQew82eBTXp814MznUmt2HLz5fdiWWAXrxxKn43a5vL6eFQ": { + "balance": "545.328230708", + "bytecode": [], + "datastore": [] + }, + "AU12ohnK3yhKZXW2pkAL44L9HdAQ7Rd9finpqVPawDc5f2DLvoEFf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oiFpJim1FsaoERLppShWWazGpitTXHmtSsi55xB3Ccmu8UEXX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12oiLA5Kpc6MgLLEbw7WbHj7ZmqAW1piaxKMspTL9bwnvhe7TNF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12oimyUCDgvneCM9Vv3nNTU17J3e1Ahq9tXN79Ss94W5eBkKdo5": { + "balance": "1424.805723407", + "bytecode": [], + "datastore": [] + }, + "AU12oj7T1MYTxxqama7oXrzHc5qZPgUgeCPvN9jFaww2Jy2PReSvb": { + "balance": "1019.184829847", + "bytecode": [], + "datastore": [] + }, + "AU12ojDUfke38CmcnJ5QPuqaCtDMz739dGwQE1HhEDSy46npfZqCa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ojpk3mJVw2HmvWrhxzHuy7gfuhxbR2rc7BYVNS6bGYa12QyUJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ojsCu6v17r22EjpW4Sq7HSAeKMqHbfhTy9u4ffwpqA8r3iGmx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12okGp38hCyBwQ1ydXa3pzdFP5kboXnW8zPvo1UH955xdYcQNp2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12okRjpDegu2ubudjPQQ6odxfqkz8YoPxVS8nzHo7eRrSXvD22D": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12okWYPV4YmojontdjW7Cq5GoNRjYvwfjWEkbLAEcNALrvhEekc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12okaSxLJAhaTzV3Zm8i6or4bQ6fT63bkmyAefMH9dyeuLNfiCi": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU12om4Xazo9ZVDA7cBNHwd4QB56PNmvqok8pVbbrUGdaLT1KJT9y": { + "balance": "3734.489772855", + "bytecode": [], + "datastore": [] + }, + "AU12omJhXBBFLm2bTfBxTDMWcJYDgstexSm6e5SVcMjJwbyCTXaSe": { + "balance": "2114.632983386", + "bytecode": [], + "datastore": [] + }, + "AU12omQVc9oqgMdf9pdLYmssFLxegr1AuVGN8hvYd2XGBXnAr1r9G": { + "balance": "1908.949339832", + "bytecode": [], + "datastore": [] + }, + "AU12omsD2DWPFheYR2ZU6i7ThmYqgwnnAz8phV47ce964muiTH957": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12omt16aAVQJBRniCDZj7bYNF7R8PQX7HM7PtdSUEQHJJPiFMq8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12omxXf8oZ6rF9xxZ27qfY9vSWvTtqcTyocS1xBEwQ6HCJyREY5": { + "balance": "1259.318774934", + "bytecode": [], + "datastore": [] + }, + "AU12on4SPN7281rAk2sW7JQ1QiPfpSxGVRHubVATJJttqhUvgNqmR": { + "balance": "57.634049761", + "bytecode": [], + "datastore": [] + }, + "AU12onAnGy1iq5FwXu6iKmX4h4qb6kg8DLUfy1Yhdiy2SvtEmnL2s": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12onM7izeGc2Q2HCip5Cigpiiieccv8ZyE4VRqwmrwPFUp27Xdg": { + "balance": "3175.546005889", + "bytecode": [], + "datastore": [] + }, + "AU12onQMvSzhCQ6TSd8JRzBaqiYYBQZK2tmfjHMYkHtdYDhp19fbH": { + "balance": "837.227840241", + "bytecode": [], + "datastore": [] + }, + "AU12onZ2WyUpbtjs87xnAUGoMZCMKvhoXzpCu4KE5kmUBYAPY6XYW": { + "balance": "599.366233635", + "bytecode": [], + "datastore": [] + }, + "AU12onhhLrBspK1gQVuYDgmvCu2qPubsb97YnJTmdD8iNrSkSWPZZ": { + "balance": "2646.167096019", + "bytecode": [], + "datastore": [] + }, + "AU12oniRKLVLioG38kH6XQVgovCbsEmQ2ia27b9AqybA9cyzMLxNH": { + "balance": "5040.408770897", + "bytecode": [], + "datastore": [] + }, + "AU12oo4j8yL91aEDt7V9NbtFB1FdiKYsV6XXwkoWsZxGUm4HgawHC": { + "balance": "1362.982396298", + "bytecode": [], + "datastore": [] + }, + "AU12ooEoNP1KxVEm6CC7tGqtyQHrbaC2Bo2rnvMw6dsFLbY9ZFt9Q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ooPZVJgJ6S9EpkfV7DpopaUUFmg5xCJrRjVHPPaqyQ7phhdmo": { + "balance": "1869.696694290", + "bytecode": [], + "datastore": [] + }, + "AU12ooT4L8LZEzyBQ9XAsvR6wy1nLe8Ld5oKKCKXJkiM892XZhx6J": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12opGUfMMHnRvB2ZnYgLkuQXFnwEGWxd7WiCPN2zV5FEf1iQnNY": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12opLj76CU7d2ZFZ6KAhFwgonMdc6KPjm7pd1xcHRNe4YcsK1vh": { + "balance": "3019.825603196", + "bytecode": [], + "datastore": [] + }, + "AU12opx7nS2HzeT35pZbEbRPKweM2Lj3yp6du5oDsrWJovEa9RR7F": { + "balance": "1374.184607856", + "bytecode": [], + "datastore": [] + }, + "AU12oqRqZ5TQFVEFTYJzpwBxEtn6buCvFUTo4mi6L8GQ9fhCiBMN9": { + "balance": "48.935908708", + "bytecode": [], + "datastore": [] + }, + "AU12oqTxuocpGHUEbAivA63awZ14kCdwb7b7cobuiuyRigReRFuM2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12oqdYGbmw6pNVWfufavJgPzqDLzvL9t1tHT93c2NicQCCTrwJh": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12or1w7e9HvbnhYNZeREUDouUE4wGVwZJLnYo6GL3dBoECwU72A": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12orPf14hQ4gaK1GtK8Czvo1cBPwJffKDR82RSjFKPRFBXP4BWt": { + "balance": "1443.098616178", + "bytecode": [], + "datastore": [] + }, + "AU12orS5PCv2GEufo16FD675p8zF4dmkKpHBPPyiZiSKv9rBD2kjp": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12orWBRSMb9sENBSqsu1ykQAYmf9TiELGJQcWKjDcPocRd2pKXT": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12oraHtMR6bA5hdsK2mUhZxLH2v75hAJFyfrbmVWphqBtM8o7E4": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ormzyeQyJWsmwNQytdrmjyLqU8brasXLQgtubRgWu7HeZ86WK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12oroPkYLsrparGmupC51hfZcR7uEBEhM9k1m1QaKj7dDnVwYEp": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU12oruGNthAuTqaEpntH5fPmDhAGymhjDo3puvCrsVQwz6bMfKib": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12orzxVEuZKZEESPoGARPtffzuuQcrWRvXb4ahHLsE7eNu3FRD5": { + "balance": "798.111732670", + "bytecode": [], + "datastore": [] + }, + "AU12os3LWq9UTPiLbmMT2dyxyhNA9Ex5bPcqzT9egR5yVeQUdJYro": { + "balance": "2784.602171316", + "bytecode": [], + "datastore": [] + }, + "AU12osDF4WwNBg3PEh2r6P5cfm8j6kBGD5aiW2PUXM7TZKecLf5QJ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12osQB6uqD3CJa3HorePcPiJWx9DLJ5eZquHFSA3UWnfiKxM6E3": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU12osgrgY9m5ZQzeR4hTUxhrwGJeautEKyt1Dm4L3zgdLcDvfuFK": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12osv1pVRkW6nRjQzPpAenS4CTiwfuswHLmH8bNRAxf1FdJcJed": { + "balance": "3277.012699159", + "bytecode": [], + "datastore": [] + }, + "AU12oswwvUPESSX9gs5KYaF9kfo5zDR33eMiQRPMV4HHN2ATHQNr2": { + "balance": "3113.273308810", + "bytecode": [], + "datastore": [] + }, + "AU12osx8Jz31yqiSMziBg972mZWBHwqea6MTi9N9p3S8S9fMat6ge": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ot8xzhJ1nAinx9cqnUMvREQ37xuzUWgaLqw242XDLAP5wcFdu": { + "balance": "1141.963201415", + "bytecode": [], + "datastore": [] + }, + "AU12otDRV6cjT1Ms8MWrNGw2L47PCHCdtfAC4GrWr9SJM7kP8ynP2": { + "balance": "6000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12otFUnxC4URLku3Mpwnk9c9TzBnTa7PJHTyQs1jKEZBLnBWHoc": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12otKf4JT42kh9ywooh3ufdYGQjjC4qpFaWApyHrySV4JsrhdgQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12otu5brhsv1JdXyqhqBgxuJgJXKrnQqkBtGjzDrQA7AbvVT1jZ": { + "balance": "6695.943567208", + "bytecode": [], + "datastore": [] + }, + "AU12ou2j6fbrU5xu6tZdu1dVHHGK7TqAB64SmxPswwD7hge88yBen": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12ou8akff76rAhM9oodHgRPZFC9qxghHUqcgPnyMtg7zN5r4GNS": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12ouBRbSvgZz7q4AeNgZtTDYN66dMu4CzJuT1VLxWCKNPCeVQj8": { + "balance": "198.019801980", + "bytecode": [], + "datastore": [] + }, + "AU12ouDT7BpSUzNKgYqipsFZkjtw7WJARqJe1m6pmkUTfoEiLrrB5": { + "balance": "833.191666581", + "bytecode": [], + "datastore": [] + }, + "AU12ouJSz4fpydpmSyEceLaEMtN4ssrLWFH7BqW4jC7MTBAUWtGML": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12ouambveGBriKp1DSLuJgXda8utuDrobJ1iqRBsGiv7BZLfq54": { + "balance": "3040.695426522", + "bytecode": [], + "datastore": [] + }, + "AU12ouhChrD4AV1L14amMNsiSavEscE3VKe5EWneEie7wnVQJLtZf": { + "balance": "1065.754476897", + "bytecode": [], + "datastore": [] + }, + "AU12ov53ZajxBwvbCHKCo6ypdevmCch1VRYwskhR6oDWeTdKZQgKa": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12ovNBX1KxtHArGF9aegUWMq59WabXUBQinqZkDrmi7LJomxiBS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ovdwVwSzaKQ46imnGmmSrpvjKvAHgWyM4dMGjL1TtHM1RvN4b": { + "balance": "3947.718713237", + "bytecode": [], + "datastore": [] + }, + "AU12ovv2SzZFwqCk76FCx9mxVbXY3AtfJMbrL9FkC4bswuwp2GhJX": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12owNC81iRzPxKVa6JvfhKWsdm78KwSEoMPWkKR5XekpN1ngr5u": { + "balance": "4391.500760358", + "bytecode": [], + "datastore": [] + }, + "AU12owTFqJAGgP2X8TL2nYtunGJdPNJEW3ubN392exLz5sHtpH9Fb": { + "balance": "5179.511064008", + "bytecode": [], + "datastore": [] + }, + "AU12owW2ZVEHafdkYhSZLCZAqFGGeQmnCjWVdcsqPe6J5Zft5PLFE": { + "balance": "665.447084127", + "bytecode": [], + "datastore": [] + }, + "AU12owcLiSdD4RnWCAp7nzGf2xyM6J7zC5UnGS4fycz1cZht4XTzQ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12owhjYHcdUyxmTPyH9HumdUzKSZ47k2jfw5QmJ25JP9J7acAAN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12owrVabjHXFNp9kURS63AJMPDwcYRLNAQkjwqop6yL32xPzfy2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ox2qwVAryX77b63qoRMcnr5T8mQ54mwXJ5enPNwT6i8tTPpte": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12ox4SxTav8bPTjQVsEkxZkiAo7Y5CtAHLcQP2FJtiRKoPSkfXv": { + "balance": "3962.939989526", + "bytecode": [], + "datastore": [] + }, + "AU12oxuq7wPn1i65Q1NxZGcKs9Wbez8eb3Lxpf1YNRu116Ks5huEk": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12oxvNb8b9gNbFBXksHcEQVH8EANuUxdefZHGPweXzsUCYhguxB": { + "balance": "1464.609932440", + "bytecode": [], + "datastore": [] + }, + "AU12oyTzQ8z2RMWsri9qTuhrc1vNCacwHbZ4uL92nBVZLhsQb7sLj": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12oyWaCC4udq5sFM29KJdN8yYXV2SLWwriN7tizCNDWnQRDodL9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12oyhwxjFZ1Kygr9ks3jdnBEb1rhrgRSWBXYAvupSMkJzyXTZqo": { + "balance": "2146.488306983", + "bytecode": [], + "datastore": [] + }, + "AU12oyrYnh2L2jgKXxeMxeasDwgMgZsbdJCUiucPaQ7LgyvGTNuUg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ozA1qZ9hC2CZMujpec54DRRWzDr4UBEfoSZdw89taRTGCQvx3": { + "balance": "19.291876846", + "bytecode": [], + "datastore": [] + }, + "AU12ozdVgeJuHz32yLSKLZPrF1FRpPU8gXidXSnrrqQv4Utin9WKL": { + "balance": "2707.324598323", + "bytecode": [], + "datastore": [] + }, + "AU12ozpEKpo9yZ7iw7cewwLPx34kqTiCsd2dZWhS4D7tB47tj4NNj": { + "balance": "3317.724800978", + "bytecode": [], + "datastore": [] + }, + "AU12p18v8SN4eZtMRXmD3WvGRmvnyVf9SmTDEdmp9NcMiaCgX3rA8": { + "balance": "1452.281027195", + "bytecode": [], + "datastore": [] + }, + "AU12p1USKLWZK6DNCcjHMZpskYG6yCmzZqb1UEoN9nRUke34Sxi5z": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12p1UWu3nPt1aK6c1PsZjQ81otCTWZvrnLxKjf2xRKKqHApD6R8": { + "balance": "3004.329273723", + "bytecode": [], + "datastore": [] + }, + "AU12p1UoURk97zn3qLWKHHbZjHBSBkbVg3avbSnPj3Hg6i3Wa15f3": { + "balance": "947.394367735", + "bytecode": [], + "datastore": [] + }, + "AU12p1xrBRrFcPFRm498RAzm9G7R7kREjvyNYGpTUWXFFHm14EYd5": { + "balance": "2273.311427511", + "bytecode": [], + "datastore": [] + }, + "AU12p38H9mLQPX9XrbTVkgjHzrdDfC38hfH3eYdc6FDRmz5L4RErC": { + "balance": "4610.502734857", + "bytecode": [], + "datastore": [] + }, + "AU12p3Eps1x3C9tW7bXw1R1vV1Dxbq2xATb8q5wG1iU5gtRUnqNbM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12p3GrEq5gEvxgwUFyVAEBDnD6dphDY9vbJGsFxwnSGYw41fq7g": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12p3Qe5TvmasXqdb9Gk9LycHUTwEeNvBqxyY18ZFvAhm8C9C1c2": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12p3k4zsYoZ18Ng9YK558oP6Hzih43YaZjHTGeY7DXL2jbFaVeM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12p3yUrQerQzuqgxzF3BpXnCUVCjMHK7ggkg51Urg5NMzQU5QVe": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12p4368Xs4WvGaaiE4Y9vE83KnLN5PcLpgUJZdV28Foio1W6dor": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12p47ANoFjfff3j8xxFDGAGiEVCYbQTrsrtxwGSwdtRxXjRNmHK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12p4fUNsgPSe6JYBzBSieGYHRHfYPKJ4XBsMxkg6KKQHPV7k9Ly": { + "balance": "1179.201843538", + "bytecode": [], + "datastore": [] + }, + "AU12p5j8SzsHe99p2Ls2v3bdLExjC58w5sGj67KVFoBE3KfaeuC2B": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12p66bfvHy8jbcdgQBPTdom6PMYkQevJsj7cMQjJwGGXt9o6wGd": { + "balance": "986.031385866", + "bytecode": [], + "datastore": [] + }, + "AU12p6hQbAhdEDm8qeAUbVjwYKg4Wwdg6pZ14VNmCBYzBi7mQy1tC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12p731Za2XaXBfouvVU2e7vgu7BwTxkdqQVXt34wCExXWYwtPjg": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12p7eeAj7artsnj8hg8fAbA9vffsB6Mj6rVHNxsdUP3BWpM2n9n": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12p7hwpAQzxrbB6NHvKj4i9oCX6jKpT6BxKzAhzEbyNwQFz3ABT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12p7rShmzHknAUJWQf36HddWUzmf7dzeUVN1jzYUcNPWBfi3nf4": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU12p7vacD4T1R2isNjvLmdsJdfeJ8ekXhjkAqTj8tore5QakGrG": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12p818GhhgJjANGqRgnanJw44iqMg5EdgcjzsVNi3ertpPNZG7Q": { + "balance": "2994.032445065", + "bytecode": [], + "datastore": [] + }, + "AU12p81SDxsBt52HGBLjD1sUuGPaGaFpVzt9hhQWMWQCAAAyBTKaq": { + "balance": "975.182550821", + "bytecode": [], + "datastore": [] + }, + "AU12p8WrLcBUEDWpraUGFYJ5xbsWByoKeAnLGkkFV5Pihjuh4QwuE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12p8YgCDQBQ5MdpcDZHnxCqZCZGYQwcTCm3gerjDZJakGU4ruvK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12p8ggSS3MxhR14MyjHjabwHE4B7gsXvcTr5RtXsb6Cpx9tJ8k5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12p8zqiRJZVmhtrNiCqMAzZefSfPweNL4UiJzWEF4zy93HtrbgC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12p9NduxzZKHK8TuNepUZKc6gwSzuT6msa9NcdGNCbSPSqE4Rcc": { + "balance": "28.211770876", + "bytecode": [], + "datastore": [] + }, + "AU12p9UjZxxWMaybzovztbfGJtH3rju5cC1ZgmvEyzJV7zWkV4Ahy": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU12p9VsVTqX1oTFTEjRXWWxVL8ZoRxvMhSp25KHKbUF4emtabMLT": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12p9w2T6Bp6Qxa3dfqNZnyTJr37aLfxw1eNno2CzwjMVkmP95EA": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12pA3CkCTgdqajyiZzFPV6xjoXisuYdAPtqxckxBs4egzNBMc5H": { + "balance": "591.050318133", + "bytecode": [], + "datastore": [] + }, + "AU12pA6jg8VCwpNk2b2GkGwpyNCzPWv4rGd2WppJfNGyDRhdLtsfC": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12pAUgWAZGoZYbSPrFmdJBdHpF4SXkaPmrVvR9Pk2TyyBjkhoPD": { + "balance": "4584.120383872", + "bytecode": [], + "datastore": [] + }, + "AU12pAXpWqYzGL35dzAZVkYHb87TYe5vsZaRGA18ps7j6aR444x1k": { + "balance": "4845.365897457", + "bytecode": [], + "datastore": [] + }, + "AU12pBHSTSZ5fKkyjQHZr13K9jR9jwsAWxNm1GBVDD9FFTuFs7xB9": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12pCQSwavkaEMDDhvYeyfsXf2vhak73C4Kjk3pJBwPs6vva63hD": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12pCWj2Q6qgpojVEZhxeyUqJPoSxf2EvX9p7jcnBvUnYhfxw6fR": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12pCis6PYxLPgxuH18frbpQmWbB2C6kviF5XoDyT1qkKQAUvTkF": { + "balance": "2745.038940364", + "bytecode": [], + "datastore": [] + }, + "AU12pCmrGFJz5fXgBZp2G3aemmhpRETSx4vMEecudezzWCrgpz467": { + "balance": "1342.203338417", + "bytecode": [], + "datastore": [] + }, + "AU12pCtFv2vMNyeHLCvESNYH85Zfms9Md3APzEa3GkV3EX9q1F14J": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12pDRKe66bNH7BeYKojanrRfUHbT7VFS5ptVe91CZsBxdrtYwdF": { + "balance": "968.561577203", + "bytecode": [], + "datastore": [] + }, + "AU12pDZa8Vcftt1grzjdKSVpegwKQcGS3dNbWRs4VbBDFQv9ttPvA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pDorVqCxfeRv4VUBPA8Dd2EqyZZ21ESChitueUaFcY53g7euT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pDq5E6CafLZAKzFDfo6AFseqSkjPFdLk747KaXScxsXYYyN6Y": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12pE4KAc9XZn21T1iMwdDkKYp6986aNiWhQq29dXW7Z6f89SDSx": { + "balance": "635.711098918", + "bytecode": [], + "datastore": [] + }, + "AU12pEH9PuZiyr6PuF6c1Z5QTv8Mpca6UiFVTY77tj8vanA6BN8nB": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU12pEJtKs3jq6ocmMmoBYEgQJLbYip7nreKTjQRzZKhR5jVe6u6c": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12pEX3UWcMYWbRnmhViCg4Pb4Sr7XrqPAMwA8257a1W9UhbAKcC": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12pEnumxbFz5Q68NYHtHBZpJi9m2CRGWnwKQ73ye8DVGxQBW9Tb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pExMXw6CmFY3sYTAXPqTNDkop2Tt4Cjgehqp3g2HankJQLFtx": { + "balance": "878.317328592", + "bytecode": [], + "datastore": [] + }, + "AU12pF13LRKjy5NmY6cBnG2tKW7JkMq6gHUPsmerwPAiF2sdp5ecR": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12pFSmS74DGEGRfM7H6VxRx7n5LP3ZDTB5EJB5woxa8o9XqfrCZ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12pFnfJX2JTos8kUDnPKrefScvACxCfwMF7qFwdMLqDdZqbs9EU": { + "balance": "921.587779201", + "bytecode": [], + "datastore": [] + }, + "AU12pFsbej16i7hAPKsSUNp2ae5ymUSMh3xS7JGNvUYHZZPcLs3aV": { + "balance": "1625.821429474", + "bytecode": [], + "datastore": [] + }, + "AU12pFxfJzCpKo1r8yq3VCgwcLEBUuTRaz7BgwAT2JjDThtzk34gM": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12pGYpJx4dMYerGcf15hiXZyFV7HNPy3Adq8x9ckjoDGm81RWnq": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12pGiwCiKKDrCoV4SnVe36vYnLS3oGBMwaWbRKZLEkrSxX4gA8e": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12pGkHwMHcK8zh1zmUoFL9f6uGf6EfBojAjnqTsB3DvPU374sx3": { + "balance": "879.838866748", + "bytecode": [], + "datastore": [] + }, + "AU12pHFQzFLZugnE5kXSYWNEE3kyYGBhQWfUoYNptJv7fmWVA1yuZ": { + "balance": "1738.471086532", + "bytecode": [], + "datastore": [] + }, + "AU12pHmzku2R1VHeMDHJ9rA7KpuwE1ND6bKbpbapwKZoBXhWSjGNq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12pHwhrTNYyaRy4FkCDSPfYJtGkpP1NrTNmnCCoUcoXjAV3X8HX": { + "balance": "2671.109577248", + "bytecode": [], + "datastore": [] + }, + "AU12pJ2JFv8GYeaE3zDNLxRwoAqKpXD6VDrQyBSofy6yQuGMyivYP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12pJ3BKkSh5UWL7ZAJ4Etw1u4s3FhxeyZZVDq3BKnLNMZvvWLLk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12pJPz47MzhxUTRAJ8hCVd3ogKkbifapDyhwXkWWfV8aVbsGtEr": { + "balance": "3530.886443838", + "bytecode": [], + "datastore": [] + }, + "AU12pJi76NoJGYUvjYTuK3TRNNZfzRrwdJUPnPBoYTezv6yBLFmac": { + "balance": "2167.604509746", + "bytecode": [], + "datastore": [] + }, + "AU12pJvW7ym4RRap7FeofbMmDGGFsY7wXi9Z47AbdwnrEdwWgZaXa": { + "balance": "1632.896367871", + "bytecode": [], + "datastore": [] + }, + "AU12pK45YgZytgrC2SL35fTMjefEe9TuDUDUjV7WzmL4akX8o9f6i": { + "balance": "3931.193921248", + "bytecode": [], + "datastore": [] + }, + "AU12pKNMKUoq93VwHn8CaT1yvbbbms5FQojQC74eKxgMwtVHvwsdb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12pKiwA1MF6LVP9CsjaQHt4dttdks72aYxNaK8ViZjeMBjTWNA7": { + "balance": "3390.726941504", + "bytecode": [], + "datastore": [] + }, + "AU12pKxHWBhpgwQFmmwJ62UGBZ7uxPAaDf5hdxPgLidS9y1mVgVaz": { + "balance": "3037.275318398", + "bytecode": [], + "datastore": [] + }, + "AU12pL7tay58WhyXi49BXmESmLbENearo423ZyXqgqkQanMqJTbrN": { + "balance": "1190.997630648", + "bytecode": [], + "datastore": [] + }, + "AU12pL9epzYj8C78epFUjEFjaMDMLe2Z2CgKp8kksxU2ZiaSvihLo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12pLJKTPA4DrpcNzZtJ3JMDW9xFSr3PwXNAsMX2uc3UD9jPBNh1": { + "balance": "739.505702882", + "bytecode": [], + "datastore": [] + }, + "AU12pLXKfeYwg292821BZvo1pApg3MnmYoVNoTmXvpTEpC18MyeZ1": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU12pLXdnruUeQyyZWmAQE4GLK7BAqkyE5c8VroZb1tm4DsLzdVL": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12pLfb1mNQCTtUMx8uKWfgN1Yn8PrTDKc3szMbE8LTVhsdVYEsp": { + "balance": "3327.625429910", + "bytecode": [], + "datastore": [] + }, + "AU12pNFB24kZh4dEL2WLixK2H9SvtLopHp1h5DomvWZzR5d84Vgcq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pNH2mpNRXQMPZ66qRiZbTEop468gC475b7cqZbcVkGQVuWSHc": { + "balance": "3798.588952871", + "bytecode": [], + "datastore": [] + }, + "AU12pNioXBibGhNbtwggmKaf6qYNGK8xxPLNK1DtB7dkkLBvDRDqV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pNoXhtDRcgZrKdw4QsSoQdh73t791NaoYKqqDMxoc5cNdw7qX": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12pPKLz9uZsR2KeuKmr7aVSNtBnvFVA55aGCjq1ceyaasxvryn1": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12pPemEqSWUUThiBxYv5CvJCjU3kzj2Ki1DqTNpo4qWb8Cw2Zss": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12pPoB59JJ8eMmvTQRE3GaCrDvbtK5SDCThHzYu5CY1wsmqqtou": { + "balance": "1625.348354377", + "bytecode": [], + "datastore": [] + }, + "AU12pPpvrDEBRR1DMit3o6pDZEiKGvucaAvK9LX4Dv7wQpGEExLRt": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12pPqmxSkZorMf49gGJ2TSBtSbWqqDSvQ1FX6VS4ZocYCPc8QdR": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12pQEL2RFpLanbHNRJ3zgE2ShFs7Yiayqu6p8F1wBy93ye1Zvmc": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12pQLKh1EwgNeuRN1QdGVCDJYzxfVBF1NX7zb5ZFEDqihVtUzTt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pQcwgu1ifLcFovYQ45gZR1dxSBVR8zK7q2iQffCSVBFGZHXFr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pQd18H8oEs2MMxjZthvmGuWGuDpjGmvH7QqZkW6CJ8g6ebWep": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12pQpeYSftVoypy4uYgBkkrSMgn3XxrMM2vsv1fr9m47d2k9och": { + "balance": "1621.138760017", + "bytecode": [], + "datastore": [] + }, + "AU12pQq6PBW6Fq1UegPqg1DKKewwvMZod8a45DJono6an7dN2MsmU": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12pRRBjNqSXxDjnpfP5gR4pf3F6Qguf3wJf1VC7gNEmxqYrc1Uy": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12pSBd6LEDhNKHKzstAGdnAXW9PVHs4oG8u9tSnSF7Gt5Nj6Ktb": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12pSHEgh12R7MWzvTsdtk5X2hasqaafZoti6VN9vH3ubzB1zp8U": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12pSvW9vZHQKEfzhFu4da6JqxUdckMdLitppSwuV969hvkeaNgt": { + "balance": "1233.499346708", + "bytecode": [], + "datastore": [] + }, + "AU12pTG5D6qtLtCUZ59623bzBcb2gzaCpontv3GxbnGXMXW2UfstV": { + "balance": "1838.794374871", + "bytecode": [], + "datastore": [] + }, + "AU12pTWyTri3ab2jkhBREmkZg9Kzsi3xMNK8z9mthcnT8Njd4qugz": { + "balance": "1834.627907266", + "bytecode": [], + "datastore": [] + }, + "AU12pUEFSLMuS99Trt2h7D94gTpfHi1nM6He2EJ7e7auMCwMvo5iV": { + "balance": "1258.598818952", + "bytecode": [], + "datastore": [] + }, + "AU12pUuP5oPFsivuMEzvYttuUv2eWzKCYJ7kX8pLU2wP2NrSFf8tS": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU12pVM83Csj4yCag5fj6mXyLycNHgQcZgAWU8vAGrf52CsN4ZSKd": { + "balance": "2058.369660688", + "bytecode": [], + "datastore": [] + }, + "AU12pVea4nxhRDEwaw7JPHC5MsSNygNGQxi5o77LcWjyuaczfgHRH": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12pVgDdTtC1goXNE1kn9gJeCJvLSPZbqBsqJDy9tfzuUaoJpQvx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pWFKmigZk1U32ZiptpQx3xCEdbXwnsCgN8jS4YCdfyGBMqjLT": { + "balance": "808.536948586", + "bytecode": [], + "datastore": [] + }, + "AU12pWL9JTxkw1WZeuVtAzucLwDR8fNqz3gjHL8gKzFheoJyzWbh5": { + "balance": "4412.553975142", + "bytecode": [], + "datastore": [] + }, + "AU12pWanz2MiTiY1fMTyMcQ71Vsu3h3L6fdA3vYicwCnxibDogXiG": { + "balance": "1387.168533755", + "bytecode": [], + "datastore": [] + }, + "AU12pXFfmg33V7LKGaFCksFenZjaQrwNYVNAqWy5jadmnkYcjdbbC": { + "balance": "784.394263906", + "bytecode": [], + "datastore": [] + }, + "AU12pXQ3ygK99rcEKaJiptSavjx4gKGzEaWhoVqgUce8QbnsuBinZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12pXpnSXVwZ5kSk7mmoZkWAJuHh8MPJovxJEKLBARX9cgCqrWZP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pXprbSmoMbfgFG7UJmKQV5boAmQZj7cw1FUS8uPxpkethgkdr": { + "balance": "79.565525793", + "bytecode": [], + "datastore": [] + }, + "AU12pXtx8FSuySrsA6WG51ZHkfet8soz2HFT2dNzFKHrquUmnRnnf": { + "balance": "6414.103963487", + "bytecode": [], + "datastore": [] + }, + "AU12pY4muXhN96VvETwiVRHj4LQ5NM2RdnCW3g6MdYpiZwhAX4ggp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12pYHbYKVdZye9PSUB16d6y8jY2SvZFSzujqPNtAGY3KbHMb82p": { + "balance": "747.530941742", + "bytecode": [], + "datastore": [] + }, + "AU12pYKpXrvyD6cus1YgVVJ4XJjrNreBdv1B7XLvY6SjqonXphzVC": { + "balance": "554.475346877", + "bytecode": [], + "datastore": [] + }, + "AU12pYqbRrBp4qcgPfoLYsmrRwReE73We234CenDjipc4a9WRXidC": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12pYrHScKTq83sFu12y8Dhvxmhhsc8E7x2D3NvEUhVnsyYmohtZ": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12pYt9Jfe3sUqv8Uoph798Ptp1oXVoWDdJoHesfMUY1RNknp4Py": { + "balance": "719.758852628", + "bytecode": [], + "datastore": [] + }, + "AU12pYz57SS6eQzxtquctrGBczP8wFyPX3wXHirqitzcAYWFQmjiC": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12pZ4ATTRbaC5UqPCPFbnN1pkEhemWyj9LJJBv7MwDb1yyDywA6": { + "balance": "61.056105611", + "bytecode": [], + "datastore": [] + }, + "AU12pZBxYKfrnw69tMZBzs4bHC42RmGGdDDuq4fHdeu446fQr38Fw": { + "balance": "1266.838060897", + "bytecode": [], + "datastore": [] + }, + "AU12paGEC1hxbWU67Qm4JqVTWJRcV7GtqKTQbb7RFdUioyzuw3Jt4": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12paLoC8EqARM5qvzsJLEZkaSbFvE9DfAst1sTr3UBehj3GHyeL": { + "balance": "2640.947182760", + "bytecode": [], + "datastore": [] + }, + "AU12paSHxZLVP3B1Cfq4aqsEhwqDuAn2FexUHafXoQck9AXaYMyHk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12paUF8ScA98AjTWeGq9DdemgTviXDRMEhzuQfsqg6ZdTbhJHmw": { + "balance": "2912.025036373", + "bytecode": [], + "datastore": [] + }, + "AU12pahuCwTD9XkMTwgTNm52J5WVhy66MXcJFcCfD2bNhpBeoa61K": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12patyV2hzyeJb4c7G9ueVSCvZqWyKiwR7aDScfh2NWsbbuxzcG": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12pbALgZmqNtWSVfd19dxKvnVEDbcMiJzH2bdy7xfUsWLKyz2b1": { + "balance": "701.387166718", + "bytecode": [], + "datastore": [] + }, + "AU12pbAPnrxqV9Q8PEcRXrraEFHnDUwLuVVu1rVSjeSG4CC95nPrg": { + "balance": "541.338821704", + "bytecode": [], + "datastore": [] + }, + "AU12pbezgz29uPoMSHamMXXtNhkbVtU4mJ7bggiiY2WE2LoY2EUyU": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12pbhqnLkfZJHZyuGaKXW8JNXRL6tuY9DPNMG9Zjbt73unPnCVt": { + "balance": "818.153035701", + "bytecode": [], + "datastore": [] + }, + "AU12pbnRRkbdU7TXFGjNVU7oU4J8nnKJFgJZPxhr81VZYBLVpAPij": { + "balance": "2149.637059582", + "bytecode": [], + "datastore": [] + }, + "AU12pbvCL7B2hg2poqZkWdRuz5XeqtMqQyoyK4aziHgMxdq4H5Sxx": { + "balance": "45.908418249", + "bytecode": [], + "datastore": [] + }, + "AU12pbzU2TuyPnAxn8GPLRrrg1TZJqetg2Cs6AM7xXjzJP7cFgPLT": { + "balance": "2790.766284416", + "bytecode": [], + "datastore": [] + }, + "AU12pc1DxYNu4Y9Ag6XRAHxdihxikEgGYXyUaU3HSBvHcev7jhxSL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12pd2DzDMEYhhTHBd5Tpypq5mwebeH6cTJA2XSASEWNuJFBnvSX": { + "balance": "849.501777754", + "bytecode": [], + "datastore": [] + }, + "AU12pdRMxZWCJXVprLn4JAtd1cHAEoJxVsoMh5v429qNgA6n38As2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pdWRYxDRCswuJwqK95zL7rCNPsEZ4WFWJFZQSpPStUUq7T67d": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12pdXmNASzFnhSSYhboBvXa76NyAq1AbMHLkS7r8anQmVYnT94v": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12peBYhS2xnggEx6awBSzR3CU9GEYf1hbJ84WQCBXoA4FY3Ncfi": { + "balance": "2118.912369726", + "bytecode": [], + "datastore": [] + }, + "AU12peuP1nQ8aDqChRdxEqZj992KNkX3sW4RyAxYQCm4VG23mwaHE": { + "balance": "970.125170448", + "bytecode": [], + "datastore": [] + }, + "AU12pfD77JsU1i98sFHkc5DQnF3ZM5Hzro7Bd7FiSgzA9eLUeuLAf": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12pgDAfyehTuS8rEuk8rzCk5t8gvdhAwH3TzRAnNsjSL1PPCLi6": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12pgDfRPZSrB6iBuGtyS1FCHsXiypfND3fv654SrzVyY1qiMGeT": { + "balance": "1022.715192830", + "bytecode": [], + "datastore": [] + }, + "AU12pgFiFjfEGNmy3qwXQgnJnLrE5Uz1ugRum3riATXqAc4Ps7wKy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pgSTCb1hrjzG6jxBMRXJ5hWXuQFagQEiS18aBHuzPJ1e5fReg": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12pgcrbu3Qki9cEHMBQPzHFMLvzxeHeUJFFJzSX4k6MF6mH9XBA": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12ph5y2cw95D9JBB5Zf1Sfmr6XHSKLk65XJa8Jo793tsuBRfy7N": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12phMniU99MGknuS1PYaAZEFxZkWzmXEaacYaCUYKoBJwd8AnsJ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12phgmnDjU2Q9BANT6EqwRe1p8xNX9joy744XbUhPjqXfjJ7eHL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12phqDhjAYXqoNKTpK81RcLXFgQqUzJ7TGo1BG93BVHmFkuksvn": { + "balance": "3524.820464715", + "bytecode": [], + "datastore": [] + }, + "AU12phu3BXfgYKGrW26G7f7stkby9FEfFpp3e2LUCpcg8VUcCa956": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12phwxk7myZhYSRsgafeGPg5xM5FxHj4gKbBcfAaWniiwL9Qkax": { + "balance": "3020.315577123", + "bytecode": [], + "datastore": [] + }, + "AU12phyTdamBQ3oFWwcjRvQyVeKkKwpGs6QKXPDtTvEwyskan634a": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12pi4sdo1gHaSNUPTzhPgNmSSXHLrPSBczDamCxHhrZaZX2RA9q": { + "balance": "4226.884846878", + "bytecode": [], + "datastore": [] + }, + "AU12piuoGszKizoHNdxjnz46GwdFMCbQGz9eRJcwtXHm8RFcu93NB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12piuuYjUsqV2kXRYMas8XJJBSyuCXN5pEr9dGvP4KVnGnLYrTY": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU12pj2XboaVXYNmuyLpHpT3XdjaH4zUg7ZpjFKpLbZfe2yNtVoyX": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU12pj2xc636ia3TaVeM6ydAmgedXeAUgpS7hS7F7TGs34XbQ74XN": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU12pj6PzZERLD7PzuwaEqMrrkNH1PkXLYcXXKaCWg64NPkLikXEB": { + "balance": "1616.267918767", + "bytecode": [], + "datastore": [] + }, + "AU12pj7u8AX7mqBYgQnbADVxHUcLe8VxfFkAytvy9FC2ixpZ22tQn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pjATDtc7dV7CofBAD3JLLsvwzvrzj3njvaiAp9KwtsdJLFuRf": { + "balance": "4599.378586910", + "bytecode": [], + "datastore": [] + }, + "AU12pjPLjE9yDiGSbv7L6B9yyc2bhhopx16FSzgxQKjNJ297bopza": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pjUQPboAwYJGmTpxrKMeFYrMBzbErtuSdNXvTMFk2EvVP9US8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pjfnYy18jAgmE25eEiRkrkJu5HLPqMPeph9VNefq9Saup3GQP": { + "balance": "832.954717372", + "bytecode": [], + "datastore": [] + }, + "AU12pjzBJK4oy74VVAGJ3C2zgMoLsUyruTyLZ76SiWoffJfjHZcnb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12pkMLoHjSbZRVC1vW3r2mw7et3Tmi6HKEt1rDGKJ6P5TbsiRuV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12pkZ5pztmCD4t3CQmeoiePxYad4N7Y2sa73EAxAFeNj4x1zhW5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12pmSTRJSYU2p6sEz8HYkg9rJiHsYHPLCixVdLZdVaJ1M8jeotF": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12pmodzGJ4eM5qCSWXrPKcvUXbfMUgdxtbyYDFRbHZxegTJZjgT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12pn3EawzvoU1ce3fAgp3CUfpNAhyUcWb3uAQ1cbXCZMHQSGD2X": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12pnEkh2DHxPacRNWQwf9tBRLK1bARSnDWw1Co2WPCuuZcvhGYH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12pnV3grZ5nqdHDqpYcy5bawMLx7Wz94rE2t5NmQZw5XUijmjy6": { + "balance": "801.548973496", + "bytecode": [], + "datastore": [] + }, + "AU12po6wudreZZ9BPifQz6YuGB9Bn5ipLVgtdMAqnMwt7bfsyqGMZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12poWNTPHDnfMGtf1orL62AdJ2W7pAr4iex1PFeWFLWmH81VX3j": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12pofa34ScmBS4z2MYAFsZeUBSY5AZ6PWfmF2ozR5Vipk8wUUbE": { + "balance": "110.472048404", + "bytecode": [], + "datastore": [] + }, + "AU12ppHFxQ9k8WosyBmFtfyQVGQz3MF6mJ2cdxRUjgDsj1BN5h4i6": { + "balance": "2923.783278737", + "bytecode": [], + "datastore": [] + }, + "AU12ppb7NdLJFBPxQq3EmbJXTbXAKCcuZGD77DLBK4y9S9zroytLA": { + "balance": "2240.305281570", + "bytecode": [], + "datastore": [] + }, + "AU12pppe8x7xeQpugmFQD1wvRH6Mv3d4QcsYLo7oKLKofbmz3SzK5": { + "balance": "1069.503234479", + "bytecode": [], + "datastore": [] + }, + "AU12ppqifoV5PMktHEB5RPVoyQUvZp8uH52ErqvwiT1FDiF1UXRuS": { + "balance": "1490.451663894", + "bytecode": [], + "datastore": [] + }, + "AU12pq2m84Ru2DHm7WoXhYWJ5CtKN92ZopRzAGgwSJs9oydX4KFrG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12pq4zgKbRqE3TvakaBaP9VV4sLuHbSxbuzKB6gD9bp5eoxGr3h": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12pqRMSHnoCjfyCizzEaYL8jc7pp8eJLZCxpFN8sVjQtAvjDETp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pqc2yAVr4NfLLsMX9qqsHE8RQimkar2Hg4hNgEckXNpnHYbj1": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12pqdrGymYNVrq3xmgk8V78EpSNFdmnE4PgNSFeTx4RHA1B8eTH": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12prSVYn3qEDE8YS49xtezbfYQvfA8BypmxMZdkHjk978JipdUF": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12prcezi1fwWXwhW8dDRdzz1S7jdnEFaZwHr5vyP4XtUbkDCAjR": { + "balance": "2191.243336367", + "bytecode": [], + "datastore": [] + }, + "AU12prk7LVF482DwiVdZNoeJB7E7E1fPvBHsqAF3MSDGrLeDC32P4": { + "balance": "2736.024534816", + "bytecode": [], + "datastore": [] + }, + "AU12ps9268K8eN5hpwVjxNP18XesqRtSjvQVK1koaUd1DNj8G4X7Z": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12psJBLt8xj38u5AAyEh5hBTJmjasGsWe9mw2vRZ4hPkhxiXR68": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12psK7gdX5rCwyNkX3Z8kSWxC2zfbM6Wp57MHfpEVMjZdha3F2W": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12psYcD6vE6eGnpdJ1mDMfr5Hn6BTY7rvCGqWEqY3ULH2pbj1ep": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12psmAbaRoZwaSGWjRD5Muzbdq5VfJo5hTb4UvhyJCphDWwJ8Si": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12psuBxnsWErPPL1nhWveBCAE93yoBxd2NkCv5Ygzuk4KaApbXf": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12pswXdbnjubA7rEi1wr1m4eAUBTV39Yinc9gsEdkoBr7Y3inDn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12psyZH1fYXeRCtUTrBKMR1q7WJEx4GqR2WgZjGu3EM4kPfVqzg": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12ptDmJSJbcqoFaqycpMdAq7R3wSvxGL58g1NVLSRzLK2HbLBo5": { + "balance": "2667.299733160", + "bytecode": [], + "datastore": [] + }, + "AU12ptEbJCzFavHc3r1oyCrncAumHnmyx58aZiMry6U3QqaZSLPv7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ptRgTf6geQaEEmTpVMSGQubc5L5Fp1JobggJsgrEeSNHrVQJk": { + "balance": "920.720931156", + "bytecode": [], + "datastore": [] + }, + "AU12pttAsVFqH3pqm4FmHYVSK5hLrqYAyxfWL8MidTTqGyCsydtba": { + "balance": "3268.436048246", + "bytecode": [], + "datastore": [] + }, + "AU12pttfzog75gnXpaYFmyXL2kCGm3qs91A5ZmX2YQPQi2MrsnPgr": { + "balance": "4.482231114", + "bytecode": [], + "datastore": [] + }, + "AU12puUc4WoQzzenDbzXtGBToe7jmKCMLGrRj5dHD2owcf5kiYJue": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12pub7ddQC8rrZLHCPe7hCYeaKw8sSRciW9BzcX8aV1hexzsYzs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12pueKyudgYyeabbJa3jhFz9jczwdkEBQYUEYp4EbszJTpaHnQk": { + "balance": "677.000822947", + "bytecode": [], + "datastore": [] + }, + "AU12pug7XMxEkTCDURd3tepaBf7tSmEDiBiuawAL73tWCkoNwHZuY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pvV41pHE9sHjTao9GFY9GNhaAeKTbDscYjzpVCbNyBDDSzyhn": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12pvVmrfqDAezMqsvmy79VJjvTPwir2Yr7NjyfxepgM9rEdKtxo": { + "balance": "1553.444358538", + "bytecode": [], + "datastore": [] + }, + "AU12pvWPDtLeGwV2dJ8oE58mdPsqYdXmiJtisdVWHpFHJdKVey413": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12pvbMeSnSoShQifJC3EgNa4SwPRqAEtfXbMT738Te8dG4p4tML": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12pvpyb4FNCkzbaHz9XEX9t9EANM5zr9UKJbgyMDgbfFugDbXvE": { + "balance": "1309.016250577", + "bytecode": [], + "datastore": [] + }, + "AU12pvxKMtjBgm5EFAVJt9mbzqL5CTLFTLt43SQwdfJZGGmvRNzVM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pw3DdW7d5cpES3ELhKcxh2thsuAo4i3DCjcaVnc4TjX9CkGBi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12pwFvzGZ2MQZp9oAEDaZVckBqEu8n2CQxQkjKuSAv34WQDJCQo": { + "balance": "907.940302958", + "bytecode": [], + "datastore": [] + }, + "AU12pwHYvryt8cWiPoVK31UC1ExUeafh2K1UB2yGtPBxi4QLy8qUU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12pwJf6QPE2q2NJ2GvL45t73MZPRkh99BZGX1qhPnoiQ4aXJkpU": { + "balance": "582.268651198", + "bytecode": [], + "datastore": [] + }, + "AU12pwgxmYzJDjHQGvSDAmcGEPMxDfQA7ZFCpQXgAc2XvJnefkgQn": { + "balance": "1235.059631994", + "bytecode": [], + "datastore": [] + }, + "AU12pwvpLyUv4AkP2qFX7qmCUeu1jxLLCCrBVYotVHj3yKyR2qTdx": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12pxsYK5MBuF9GeoNwv9CQ1M9dc5ZgVXF7YZvq3KtPz9Bbg15Ao": { + "balance": "909.013833464", + "bytecode": [], + "datastore": [] + }, + "AU12pyAbz3gWkCcHMqrgphMhuQTJnr9XFocTxZ6Xhk648chD73Uqa": { + "balance": "736.181240042", + "bytecode": [], + "datastore": [] + }, + "AU12pyHJ6wwbj1VDuKDsz3sHiFWjjSuNHrG31U4pBwrJ9s3VWNKPX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pyR3GtDCgFSwFEBwj1f2cBRyckgbTr2HkvgmVRQ9AczSiRiAE": { + "balance": "859.316351736", + "bytecode": [], + "datastore": [] + }, + "AU12pyUm4d3dPr6jCJS1RtmtVx7W2r3S1HxGpfTTveHdKYJTkzW5a": { + "balance": "634.164960604", + "bytecode": [], + "datastore": [] + }, + "AU12pytxm9qW3VYetwmeBUbJ3U7FCDixNf9Dm2CjsJ7WsLT3rV4QG": { + "balance": "223.858837807", + "bytecode": [], + "datastore": [] + }, + "AU12pz8bEPj71zjaZ7vHhBBhYSDowEuFokyM1s77gHScstUuNRBFZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12pzRehJMW9NjewRLen66aRxWuW5KwaWpu4HMXubp7R5qbJBKbW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12pzXyMLDhLMFdGwUXANCzrYgEztvDZATvsK97g1tfg4QWZyFN6": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12pzhyHVsUPPUgecNDfgLQWxL5VTwzzbo5FnmuDNSrEMonp1rqH": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12pzqM2R3o2A3SdkjTFoyiBaNbKydsTo68KRvJK4YnYNx88Qe7R": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12pzrNbFxJVpcWVGiMh498LVvcJXFWeQYivLQiRiYEtzmYyNzxc": { + "balance": "1312.809611098", + "bytecode": [], + "datastore": [] + }, + "AU12pzvACbN495Lp8Af5dM3oCf2Gp5eUaqYHJy3gmjUHdN57S7oNF": { + "balance": "3183.422588817", + "bytecode": [], + "datastore": [] + }, + "AU12pzvo6JLSW4FG9E8qGAXuh7MFj98PkhwVyJ48R52XjJ7G8wGVL": { + "balance": "845.075945504", + "bytecode": [], + "datastore": [] + }, + "AU12q1CUZrCoCbCNHchFJUJRAGZT855rVQpr2ZprLgdG3W7fPDAZu": { + "balance": "290.945586888", + "bytecode": [], + "datastore": [] + }, + "AU12q1WjMY3qefrBKJJDkNkfvFbkpDBvvCttpxo8CDre6n1Za6mAj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12q1npbPx7Y7gHxLCud2i9UhRyunEKAWcSSrNgsvhk7kw8ePkwY": { + "balance": "183.168316832", + "bytecode": [], + "datastore": [] + }, + "AU12q21spNeWu6pTxBwSwBJKMmbiADSrMuEZ4TaVEPvdbKhcTLbXm": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12q2hD2FCnrEEy3oVPYwzSJpypp7N9K1isMSrLrXeqhtxf2f3aq": { + "balance": "1657.772828610", + "bytecode": [], + "datastore": [] + }, + "AU12q2moooZguQoQPMVBYKXm1vZokzbP2xP3oLboGiZqwNCkKmLK8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12q2y6np65dDYjk3q9QmqjM2SM8UKmMCuEyHEVuwsqLBcvfNGQf": { + "balance": "551.097906116", + "bytecode": [], + "datastore": [] + }, + "AU12q35i1Y7vybgdHeAjTSsNjGwTNgh8V7DXTPnRT48qGU6EJabUq": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12q4RUfRmFo4fAu4righvzj8WKpGEysv2JozEmGZDFZnLzmvtEb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12q4xy8CFLVTezwgfbpE5Jc2La7kHZMhaXq4LBHWgCYoXM6RYui": { + "balance": "611.888837050", + "bytecode": [], + "datastore": [] + }, + "AU12q5bgxuTgmvLAmThF8UUmpKhbYcRZnBPY7LAnqFiMesFWY86u3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12q6EVEvv1n6wHbaAcJwSNfWQXTrdHGFyMGhEdVFzLX1xES2ZA3": { + "balance": "857.622782542", + "bytecode": [], + "datastore": [] + }, + "AU12q6mq2TaDUhG2USc6ueWu9QGnSVX4stNrUkj6NNGFBuWFgMedQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12q78qiKSh5EDsFC5PkJ4Ktun2AabDMman98bT8G8vLPCc3gRR7": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12q7SnaTUeoBeZZgAq6XyMs9P5Nm1t8N78PS3CwBmEhRthpAT14": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12q7e1JLEB88ozQsgvSbK9kHd2AkgLj3DURwVao6hcPfHMNyh9s": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12q7eNHna965HvUjkTUh49fCmsx5EkfnP7Fbd85MMF88FEN8Kni": { + "balance": "729.692388877", + "bytecode": [], + "datastore": [] + }, + "AU12q7hbACCfHLmdh9wo1oQuafnAb3wZvszy4JKLpmbgNb3CZpVwP": { + "balance": "2975.407128498", + "bytecode": [], + "datastore": [] + }, + "AU12q7p4nSi9HjcMYXjK57Gr2RnMepsE8vP4gHGexYF58ZTmJWXF3": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12q7qaFtqUgHEbpPtoopxzcpLFw8ZkoLoNNsMTf53rJHFeqCW51": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12q7tsgddbYDyoYRwn9PnBjQZdag7c7GjxFzTWYiTHsrrGSuG2C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12q7u7EBHSP6egi5MCrkfURwHe8jirMHSZNrbec6X3qbm5AARtK": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12q8P2GxafXQ4sTDMRSutEyV3HRN2SKXSQGTHKJZ5RKC6QjGQrw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12q8TLpbNTeoG2wgrv9a1Yz88SaVfXD7CzBQiJG9Hz4MibGxAK": { + "balance": "815.302342329", + "bytecode": [], + "datastore": [] + }, + "AU12q8pui7nnvHiUzVLY4QmhaiToMBdjZbNpjXuFhjRsnVTRKwifT": { + "balance": "5.120513823", + "bytecode": [], + "datastore": [] + }, + "AU12q98r5Jpq9zdTv339g88p2KXMku3UUZWRwtfnc7QuSfgebYdSQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12q9TiYz29jtfJscr2tjqRZNTGzFjgVDRgnamdzr5A6sGN9QT2n": { + "balance": "138.814456894", + "bytecode": [], + "datastore": [] + }, + "AU12q9Xs2faFBd2ZRHYN2EdnF8oAd4MQ2oD4JMhu5nTLiRyTNESWK": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12q9aXAxSBvriBKhMj3QKoTqjWSM38CZsqf6ekDJkm2rcwEmv7J": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12q9cVFjS8D4vmNhR5DguA9bkGn8KzdYBNNC7NCavf4etS18zJd": { + "balance": "3591.512945063", + "bytecode": [], + "datastore": [] + }, + "AU12q9iLm1dqDyou3qg1PqQP4AfXrj2xoS6QvKZoY9rigRPDUvrBC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qATmX1yn11Tep8XY5Ec9WGBADwRQwATAy9K6ACxHcrqsBT2e9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qAgwvHjuHSMDtFVaNfEV9ocZmdfnV3Nup4nkwVC2JtCm7g5NB": { + "balance": "1634.645429099", + "bytecode": [], + "datastore": [] + }, + "AU12qAiSTCxvfPgKD1UjcZYgC45gdrhR8QdYVeM9SbD4wx7QtidNo": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12qAyGRZrspbgygxgmVifwyX3yQCS9TnPVd6WMJebs92SdZe2wx": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12qBYNFqntFVgiTF8SnpyC1B5y1iJvSUXDxvD3cZk8gG4V2YTav": { + "balance": "5278.576340585", + "bytecode": [], + "datastore": [] + }, + "AU12qBtWcj35BVzTJbSqZNUKvXMN3LGeuMrduAsfcVA3g2cXH1gX8": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12qBukhaYR3ReStKwe6D5ykHePwUT48kT7cHAWC8VFdFZ69sd53": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qC4oTKJtiDtnRrKKkdJJYnVNDYD4ZsnQGvAHnUWPn6E9mWkJb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qCJmfqV2ogdF884dW5CpF7muCrpP9p5c66wUBR1HiwTBHckhE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qCaZ8HoEToRbXiEjW4b8T5DBKVmimZuLr64CPxJMEhc7aqzRi": { + "balance": "914.192805582", + "bytecode": [], + "datastore": [] + }, + "AU12qCehbPqjGbAbUCxW16NnxTGtWsWjBPdGLKM4c6wtbkcBuJ46W": { + "balance": "292.625320410", + "bytecode": [], + "datastore": [] + }, + "AU12qCpUTVCujECawFXEcMqd4qus8L5XMZc7aHMs836SPWPnNksrz": { + "balance": "1373.523995397", + "bytecode": [], + "datastore": [] + }, + "AU12qD5XJj1MLgzuTTiRFmMRfBsUvG9T9DR2sreG8pgtrGMtWNAA5": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12qDAWCKThkC3vb4Ve54J4wJF3wEthXV3cdpPMCDPVAibzBfGM9": { + "balance": "1348.082631824", + "bytecode": [], + "datastore": [] + }, + "AU12qDXu9T7xDT639DHkNuYxHXhYArC6W5V5vj4sEqpoAFb6vpJgQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12qDbGjzGkCC38Ff2dFr8G1BjHFWRNJwRNU4hHYD39xroqBimwC": { + "balance": "137.788778878", + "bytecode": [], + "datastore": [] + }, + "AU12qDhWmmZygTzKw1AMiKSGXPs9tT8C7zZkw2u3bU6FfQVehvguN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qDxpKiqBqdrmkCATwrFvKhnH5MyQTkRr5JfojTRdTqyzE5XqM": { + "balance": "3573.029195107", + "bytecode": [], + "datastore": [] + }, + "AU12qEPZ6UoZiWae3VwDEnoCfZpq3pWvuXqD1aP4wpLYndpxUD67U": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12qERMUKscrCtXHKR5MrGyhUCpB41HwyZrkrvpJpmB9cew3hBr4": { + "balance": "11.530592327", + "bytecode": [], + "datastore": [] + }, + "AU12qEVrqH77bAYtk7F5HqqjJwX8uyVc9MMXNGiJopL1puNLFvgVw": { + "balance": "1912.629298730", + "bytecode": [], + "datastore": [] + }, + "AU12qEYBptyC8a6x7YFoekwkpzvCqkahrWpjF3S3TzdRLhERGf99j": { + "balance": "1672.791895454", + "bytecode": [], + "datastore": [] + }, + "AU12qEfufVN6rJtXsZFWa6RPqoFTbkhn9Nw8p2RvpXAQkPodZpB5D": { + "balance": "1446.051696629", + "bytecode": [], + "datastore": [] + }, + "AU12qEnCe1hHujYczho9NmLgqHtUSPFnm5Gc12Hpw3FSxx4gA3MfX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qEoEkLuj1YinAB78S7YGd13Kue5udJ4czxzb3w2uA74ui8s6C": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU12qEqaaFhyJVsHYLTjCXWzBmeBVp5pjgVYjzjePHhAdYK5GUryK": { + "balance": "6555.085035321", + "bytecode": [], + "datastore": [] + }, + "AU12qEsdNvtCF9KmTWXNDRMK2jXoE9DzvpyfbvtaMchRVDJ73eir5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qF4Lewbz4eJsuN84DBLfhgSXpGHWmZfQRr4fe3iDgbWkwnekg": { + "balance": "1114.628561095", + "bytecode": [], + "datastore": [] + }, + "AU12qFEW7phsQwgxdr5wN6LEZaCenD9qZkJiQFVJD8fsxu83aYTbv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qFNoTnsdsHriyJ4WcFQ4sQavqMBK1qXrg8NWBuKJ2s9crKFYp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qFUynyaoqUb9fhKhn21qKEdCKocqQ2ij2CkgMf7HUoTcnreMc": { + "balance": "777.670987646", + "bytecode": [], + "datastore": [] + }, + "AU12qFVesbcuy6i8AJWKSzaysTFXT8rPyPxw9DxKrtsuwC1eWWbU5": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12qFjjHFH9ZvGgsNKNBT2jpyJt9x13cn7QkbmTz882nSCy3GBn1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qG4tmgm9G2r13ZMBpPjghLkgFpctigcEqhtZ3rQgHKDd6i5zo": { + "balance": "4203.666624280", + "bytecode": [], + "datastore": [] + }, + "AU12qGR5KAg4G6j6zpNjprtTKceyNTbhwy7aUdSM5SmMCkRp7RUND": { + "balance": "1927.973581722", + "bytecode": [], + "datastore": [] + }, + "AU12qH3hzsMNGBFkEzaU69hCEvLPUARW9py23Vth4StFgRjbxFAVv": { + "balance": "2484.684145026", + "bytecode": [], + "datastore": [] + }, + "AU12qHASDY6GZENzoKLSSY4jo12VSPQUrccVpM6KumwbzXyeD3ALj": { + "balance": "936.102124234", + "bytecode": [], + "datastore": [] + }, + "AU12qHiBLz8FcDNKN3R5Uki74TghmHDKManxyv1y3szozNHfGnJvT": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12qHmAi9rnnDAPS1BpNixDRcUPrjEGFdDhz7hHWMzyZLMros6FV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12qJVM3BCTCu8tB7e4LBVgNFB7aEJs424DvKNp9qQ2Ycm3dRHwa": { + "balance": "2541.131630523", + "bytecode": [], + "datastore": [] + }, + "AU12qKKLYfPWJJn69PRcycJ9xdt296FtR2TGQvvJ9NGntvo9hbeQZ": { + "balance": "98.691217352", + "bytecode": [], + "datastore": [] + }, + "AU12qKLydd79qMHP3otSFZKshcAg4uQviXGeYg2ksLKs9iJkiUmtT": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12qKSeyPHFYegDHqKAJ9w7rGVvS49funPBAoXeGURfk5AVUxzAg": { + "balance": "2834.810289748", + "bytecode": [], + "datastore": [] + }, + "AU12qKkW5nFZUx1MocagWGRSJstm6Crukqip7U7nTEgAWNwZtXUWz": { + "balance": "1575.024988468", + "bytecode": [], + "datastore": [] + }, + "AU12qL3aCHWBHsJF8T3hQL1i5wgm5uyrWNSZYEhtKteXrDBsohHHX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qL5k9hHoF8arXb4AZE4hxeb63T9QzpzS8F2wS12wSPEDpn2zz": { + "balance": "562.983609273", + "bytecode": [], + "datastore": [] + }, + "AU12qL7zi65YVZm5is7yhJ89nh6zeZim56CrvZdmAigYpEc83Xe6y": { + "balance": "652.836241415", + "bytecode": [], + "datastore": [] + }, + "AU12qLHhrupvSpdVCvYdJuutwENL9qKpp7tQwvYqZBf73BMgkFwTN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qLapHJve67iR79dmzXu8UpVson6zog2eVeM8b5wd9cCmJd9Nn": { + "balance": "1376.553016856", + "bytecode": [], + "datastore": [] + }, + "AU12qM7ry5UAASTdnEEpbrgoTNQcdxHvpaTLNHPSapB8zKbR9gFFM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qMB6SrxvtbyCHF2NZAXRwivsr1kA1dons7qBVGjm1pRa8At84": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12qMWLAoEWBAhwi3NvRsm5Fa9Pk6S67wXxoWXeifD7pvhpSkKzZ": { + "balance": "2324.813149932", + "bytecode": [], + "datastore": [] + }, + "AU12qMcxmHPcrAAyP62TGBECZoMMf8pgd88U2ziGnUbGdBXEjHKWz": { + "balance": "1486.878773953", + "bytecode": [], + "datastore": [] + }, + "AU12qN7jATaywiwk4kPYtExj7ozkZVzfvPHjiXXKZzCxKJCu3vza1": { + "balance": "1474.787434378", + "bytecode": [], + "datastore": [] + }, + "AU12qNVAxwhzJqbtensKqBcYmtkyqF3zcEEqYAzvBAvdXf89XqmWg": { + "balance": "4365.375576765", + "bytecode": [], + "datastore": [] + }, + "AU12qNbdC85NuTB5PGEnx1VnfJoyDTy9zEDEXxNdm2gqtMzo3uMXs": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12qNiQh3WeBPpyMPikk23AKsbbKGdS9qv2juS92hqb8h6EZg5XT": { + "balance": "2573.485500666", + "bytecode": [], + "datastore": [] + }, + "AU12qNnAHLNooHgrDvAQisxcGwA3vqzT5gvwAu7V297myLHh7FG26": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12qPDbN9bpop6ZXsmS8ukUKYhmmW3hLo36HqW5FUi52eKs91p6g": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qPXFtc9ymBBcuHUN9WDnTuCNpjNBzuad9FfWQ4kw8BRqwVKC9": { + "balance": "1800.637529612", + "bytecode": [], + "datastore": [] + }, + "AU12qPcux3Q6mv5P6Uw8kNgcEjEzUaMfHoZrMqTuCCmeUpPa5Kakf": { + "balance": "535.761339533", + "bytecode": [], + "datastore": [] + }, + "AU12qPv5p8MCNrtZTtHYQ5fYV8Xod7RSH27wXZitjvR4oB4JVcjZx": { + "balance": "907.845993800", + "bytecode": [], + "datastore": [] + }, + "AU12qQLG127PsEFcpu5qnapgCM3tdX3hcxES8YoeW1b6QHtLAaquW": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU12qQM5bGBACySgEU81xoDbrnp7a7AheZ3KuzpnyH56Ug7mZRKso": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12qR8NK6ge63L1JjCMDTFxHDmY2SLFQyvroFb84mQJTv5WLLZZ4": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12qRbHg41VSLq4s1rBb38d2fB6ejENiRdHUAwoDCrfETHDhWbo3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12qRfTZzpsdfHo7E5t4R7RDnY31Jo7sGXfrw1oinXnmQzQ9M5ZK": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12qRu7KwThZe1fjZbqM9qjZ5fPJtD4FGSsmVopEurxjpoFxWzCK": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12qSRnX7TjhoBrH2W4JkiNbSzno1g5Rna19ALihxMRHJ3yKhzCQ": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12qSfof6oybog1m8UPHCLYLhe7YbB4yYTGNPMfWM11b8422LTkh": { + "balance": "67.683759185", + "bytecode": [], + "datastore": [] + }, + "AU12qT64f5mLaqQ8NZmkCEh8d7KaHdSQWNwmbeURRKTUPzwTVEuiF": { + "balance": "3311.818006441", + "bytecode": [], + "datastore": [] + }, + "AU12qT7UpNZ9DiDGufFPtjABcLGHou1ph3eeb6efWs8XyUZ1oUP3C": { + "balance": "2659.567728756", + "bytecode": [], + "datastore": [] + }, + "AU12qT8zTmCkHLmwFHhhZRBxzmn6YWcqdtPg1vfsLUXojpY4sqMmz": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12qTQpXjfSa214TgbBwmcMwwS9VweLSUz6UM3tVoUS25LD2z6Mb": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12qTgU36qZEPoB6Zd5woef8J3yVQVXGFWoFbYSenF6yWfT13JEo": { + "balance": "1381.095258133", + "bytecode": [], + "datastore": [] + }, + "AU12qTgZXd8ceVKiGG6mZ5Dezfpk8Y1NqHNwF29312vQG7Ud94wAP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12qTpPHV8kcMYq7H2M6QNMkGgeUuafjNZY3aBCAM3VWtcwnDFXo": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12qUcgJ5qzLkDFaxypzYKbWhACE53T1erJer7wivtCiCrXxwDMM": { + "balance": "1374.819085204", + "bytecode": [], + "datastore": [] + }, + "AU12qUczGThNSnJBimFb2Wxu6eHVgUQFnPi2p7knotqmvYbeKj8kC": { + "balance": "2067.482770435", + "bytecode": [], + "datastore": [] + }, + "AU12qUxNjsu7QKzK7V6G9KFZuTp5mdu5SvMT6bapPHFi2D9njsN1N": { + "balance": "246.688356378", + "bytecode": [], + "datastore": [] + }, + "AU12qVRX2TiKy6j5vMh1WmUtHUyL7d6FUi7uddu5Na5oWxad9Htit": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qVSMzoZDp1C1ih1YTwK5rexb91p692UpA5phKmJFDWWLAJZFp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12qVYmqEvRML7LXPUu7Dtrf2dbEvAnyMAqRubxKpBF3LcViheb7": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12qVhFPjMy6QntqtjdffjwbA5zGm5NavZUXKd7hGrNAg41h2uXx": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12qVwoKZDh5wafC7TNnzv2xSVgKNQ6myHsVw1SScXcnE7FND9Tu": { + "balance": "747.339801899", + "bytecode": [], + "datastore": [] + }, + "AU12qW26PvaKfAUbQaZqgGZ4G88mtCFEDHSxXPrtoGBn8CVG8DvW5": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU12qW3xAbksWkHMJfF1LnEqLwqyvQCx2iY31mCwsnFQpwv5CeGMY": { + "balance": "4750.912881193", + "bytecode": [], + "datastore": [] + }, + "AU12qW9HJhAP7ens67k1sHiqTZsXfV7XdCQGUnP9vKRfUYQSpexsf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qWaDSbwa8x6Dk5KXgwmfWEpeRf1Cds747vN1F5SL7zsytJnRs": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12qX4fVDoJDYXW6M2k549yc7kgZciquynoRjAMhZxKhrb3Mu9Tp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qXAJe9JXLxRAFcD1jjV7Bk7zp8ZMFCn9dUmK8MX8tbtWcWqaW": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU12qXai1bSenkTrcLmaGgVAMFJ7RzYgMrdYBe4fhkHXGTtyyvWHv": { + "balance": "841.922890603", + "bytecode": [], + "datastore": [] + }, + "AU12qXirCKqsv83BTqGLbPoZXypr3Q7xBR2uJnqCZJVGWMrnCfdbX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qYQrdDjvQahzY92arunzCKdbD6cpezsrKUu98F2mhHLkUrHqp": { + "balance": "928.930906582", + "bytecode": [], + "datastore": [] + }, + "AU12qYWqS9vciSUhjSdJ27odwqtpoYxMmxpPPZnbNQZCkrVkPix8V": { + "balance": "656.476980772", + "bytecode": [], + "datastore": [] + }, + "AU12qYwpauhMfw7Sc1F9xnARMxPCbSN6mKGHhnSxng9gBEp5Y29dH": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU12qZ6DTgZe4bMMGZ5vad9qRbbvnGb33H2R7p3CSdp3D4yvWSJF4": { + "balance": "2863.673505460", + "bytecode": [], + "datastore": [] + }, + "AU12qb2ve8BEg8K8JJZCzkktvBs9uUPXdekRnEjoqGZXT38M3vbkA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qbJxTKre1zQATtgNyhFY7pxb1m7EAyDEHfFzHXEo1p6AXKoR2": { + "balance": "36.718645603", + "bytecode": [], + "datastore": [] + }, + "AU12qbQfvQUUgCbvqNzBMuu72zXJMCQCE8uHB1uDZMqPaQ3sN17Yh": { + "balance": "1744.846993864", + "bytecode": [], + "datastore": [] + }, + "AU12qbYVPq7rdwUtVN8CRW39cuveLzw5GeoMuYqkZXJe6bfur5uFP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qc6bob2ygNoeCVSEs3vaieLFHenZwCu9RpzzGwqYMpJTm55zp": { + "balance": "69.770233279", + "bytecode": [], + "datastore": [] + }, + "AU12qcALCtS4G6pYQwubzwuXcbTdhebateiaNfbUkdoy4ABTz4WQW": { + "balance": "2560.555622255", + "bytecode": [], + "datastore": [] + }, + "AU12qcEZeHDXkqYeB8KdT2nMwqzoDkXbDkBbYdaJCZ2jWgFt3kcRv": { + "balance": "3107.073265150", + "bytecode": [], + "datastore": [] + }, + "AU12qcNjocoYCR7GBXz9Remct4Eo5jGuTF9LdSzwdJrkuaqRU3PcB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qcgawDxDrf9P1JpRh6sDdcLo1cBcJWZfM9JuRcXtrbpTurXZa": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12qcxM5c3o2WyZogym41VxwtUJM7L8mSQ5VLJtm28nC5nuGujtJ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12qdHTEjsFw41sbtxsq72hV8MXHDA9BpZJrF8JewQTayXpBPTE7": { + "balance": "3573.655559891", + "bytecode": [], + "datastore": [] + }, + "AU12qdRiYxe7MU5UfDCS2xX2FjN4ejuYUgrM1Pe4PrMC3VSwiHm9h": { + "balance": "802.205742304", + "bytecode": [], + "datastore": [] + }, + "AU12qdyPmU7WWZJgi1yXjcw2rnePgJXS7Fu1K49RUujHrjxwWKLCC": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12qe6ZbaumACkYZGidzQJhk85EEf6CharN2is3eJCSB2LM4EXgs": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qeTR5zPRSPc2n7y18F5NjefG5aF4YMQSebStt4nfbeWnvDe7m": { + "balance": "589.963110653", + "bytecode": [], + "datastore": [] + }, + "AU12qeUBZA4mmtpTmvo8hNYkC6LP4dEN8T9ZJFaFFHqNypCKGnsRr": { + "balance": "1983.605089808", + "bytecode": [], + "datastore": [] + }, + "AU12qfGx7NKj59txfpAtFEi8akYec1qq8KCgEqnPL118ve4tkEiDz": { + "balance": "4196.103654067", + "bytecode": [], + "datastore": [] + }, + "AU12qfiiTvjKuBQhdtsDu4TTmBD2f4aXu1JY9ge4sggtqYxJDv6B7": { + "balance": "1334.832517243", + "bytecode": [], + "datastore": [] + }, + "AU12qgBHg8urQAtjuAzhzr2ECDzAtJDFbMTTkJVbWAZuxGxpgjb7R": { + "balance": "1196.290341351", + "bytecode": [], + "datastore": [] + }, + "AU12qgVaNwk1WgtcJLGLpkw4g4FQA9jMzJPHmnXz4iChEuH7Kz8he": { + "balance": "1148.054212450", + "bytecode": [], + "datastore": [] + }, + "AU12qgkvcYjZWgYhcZ7qjX5anzhaBezzHwzxUZAm3eTBL3wYNXfu1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12qgweCQ1b3JW2ZazpoT6soe2qXaNDY4t7iDuQaXzidbSZ4LnBV": { + "balance": "1122.199598744", + "bytecode": [], + "datastore": [] + }, + "AU12qh3GfeMmY3w42bwgfMrwErj7gh6vQBH8uYx84ZdBTvfrHcBMe": { + "balance": "1084.098146282", + "bytecode": [], + "datastore": [] + }, + "AU12qh7K5b8UzJQXMVxoAu8huy85fHa8aqLQDFvKhN1NUEF3BWJ6A": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12qhX875kWHeiW8RTwGmwgTXMLFDKP6z431Kt8DkVzryhYB3HM5": { + "balance": "911.840833214", + "bytecode": [], + "datastore": [] + }, + "AU12qhcR9TYbfAe5wrUHg3b9Reqk4VLMvHPBtoLUkVgPpf7szoFB4": { + "balance": "18.884682879", + "bytecode": [], + "datastore": [] + }, + "AU12qhuHzqJLbN9K5u3iwYCV3J83wbh1A3uNR1bHYugstGJgEbU1h": { + "balance": "934.324856744", + "bytecode": [], + "datastore": [] + }, + "AU12qhwgyLKJd1tJWhiTLpdwFtiWyqEKejjXwXA6fd8xHFu22M2WV": { + "balance": "921.416520388", + "bytecode": [], + "datastore": [] + }, + "AU12qiTGeuN8yEy8yjrmdMgxgaYouVdXXvP8zo2DM3B5AvvqWiEpy": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU12qikhPEh8Y15oLbt9xyX9DxHpSqzbNypnDJ2izLcX4TV2ToiJd": { + "balance": "2194.517635616", + "bytecode": [], + "datastore": [] + }, + "AU12qjG1y5xLsewuuZxXk2XJimbNNHhWfNK7aqMdagEeoH7xhrU5T": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12qjHmFzx8JF2bkW6aCtpEvr6xhMkNRp47ETpmwFttUtpxBnpAn": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12qjPsyiZrVUaaxqADk8JQQHF16raALC3Zr6sbEve7moKVZsWiF": { + "balance": "2497.283935197", + "bytecode": [], + "datastore": [] + }, + "AU12qjXmQeub4UCpzuxcX6v2RVNW3Ma2bbQAt4eTm2MhmAY4oXmJd": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12qjcTVQ3nYwJjtL2cxQZfQm2S783GndEhNfLL11YYgVmrPTyfN": { + "balance": "4233.715591291", + "bytecode": [], + "datastore": [] + }, + "AU12qjdEMNTj6TXdhMqQUa8GE6xjVUWTi6YJ1xkAfD3W2Tw3gQwt7": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12qjqzSruTcJt6reRSvE6UphiSj9HNP9J2mJR3LdHbdfUhqBHGd": { + "balance": "1591.062272487", + "bytecode": [], + "datastore": [] + }, + "AU12qk4SZTgfQHvE2PWhEY6UdqpSJMYPhQDMZTqskR4dnr7NybKzh": { + "balance": "8677.561990510", + "bytecode": [], + "datastore": [] + }, + "AU12qkB31smMkaHw6YRShtwFGS26zN4B3gZEji1FEZtd6PssKQfvA": { + "balance": "689.421921318", + "bytecode": [], + "datastore": [] + }, + "AU12qkuTTMW6k4sDZW67jFr5gnG9u7rABsH4UM6hQ6ekobRZY8tJt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qm9mjqSN5bKQeMYiJz44dmc4rW1cXFshmK5u6QDzuVDkMZT9Y": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12qmWkCZfPn4KY6Xt7miErrQURZXt4GBce2acdvmF24BqQgLrYu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qmbstPkGew2ahhuoNDVPDcukeBYZEPymetUnxFMjXCsmRHkUc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qmeFcNXGZRr2WQbYPe78ttM9wQjWTWD3jmaqtK7AUiVdKwQg8": { + "balance": "159456.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qo16gQvAM8gjcFiLLXZQCzyUswqdhpTDgDRybMeCjwCnGWZ9X": { + "balance": "2176.273174393", + "bytecode": [], + "datastore": [] + }, + "AU12qorJxbypcGc8voxXt1ZduELnDSbQdcTUPaiJhZuff7Su2nE6": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12qpwHEwRktmhWz7grQuViYSLesgD28vfTJnjHDJeXXdEmU2wcL": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU12qqUau4rxhCA4EA6XF6qw3EmeQZZCD7Q5uAE86AVS4vwE5QKQS": { + "balance": "1424.428151205", + "bytecode": [], + "datastore": [] + }, + "AU12qqxxhC7mT7muys2KzwiKriS1HjWPjoRhu6D2ZxgB8hmP1kssd": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12qrXtG1qHmwyXX4dj5XTTBSeQK2MNttw2dF8QWUo1sSJuMXujS": { + "balance": "3459.842173226", + "bytecode": [], + "datastore": [] + }, + "AU12qrcLHHPakqTHqns47JTXMDbTyaSSweD6jtJcxShZwgaqY8MuY": { + "balance": "940.874873918", + "bytecode": [], + "datastore": [] + }, + "AU12qrfdwdCLxz2Z6jYAd96hQXwY59jpeuPGB7x5qtdv5cEpyb7yW": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12qsg1sdEbQasceiEixfVrGSs35QawcpsbjRsAtiLfME4LCcufn": { + "balance": "75.285270875", + "bytecode": [], + "datastore": [] + }, + "AU12qtNp5mTSM8XdFv8rLLq6GhbDE8yrrLg9pWHBe2CC6hgkY4Sd4": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12qtQyVq8auybJZPwtG6K1BNB35miEXYw55VfToCzFvy12JvxXp": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU12qtT254QNbX4PjFUPFrNETkLgjc8AAjTtfXyek5vHwwHW7u3Eh": { + "balance": "1420.795163589", + "bytecode": [], + "datastore": [] + }, + "AU12qtYdtLCnJBSg6Q7n7CiJ4nAy1jr3Rwbj1ykoxBAYh58EBgN7U": { + "balance": "2914.234639859", + "bytecode": [], + "datastore": [] + }, + "AU12qtdmRjLqbu6UDzUY9rhLoyFVdf8tkFEJizZtZ2t68AXEvzqQS": { + "balance": "2471.281404401", + "bytecode": [], + "datastore": [] + }, + "AU12qtjAHdPdtjo1KLGWrKpu1mVUmnAGX3PDBJcsEL34Eg4xkEAMy": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12qtxU7Sj8J43JqJo6ABh4AEVetN52xotBk6zuU9pmwFT6JcCwb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qu7eHjQ3RCnbWgmGvA4kqjtf5sQRxaCsKLgPV7zBgFWn8H92v": { + "balance": "1131.216171321", + "bytecode": [], + "datastore": [] + }, + "AU12quJSzZLsEnKvpZt4HfA2326x7bUBD5QAMVxCPztvfQCLPpmyE": { + "balance": "1395.527292045", + "bytecode": [], + "datastore": [] + }, + "AU12quL5C5KRmMSUWSeS7ARq8w4VsveVa7NqXfFB9uwPZrU6Lt17z": { + "balance": "281.618738228", + "bytecode": [], + "datastore": [] + }, + "AU12quUMnvAYpBJayN1NZrNMujgASTpeBCh8jtBNHnPkA5g6sCEH5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12quauTmuca4BHSRzXnuEweYFybsaVRYUvRydZa75y6vpDPE3JL": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12qufe4EWrA11nUYUZZSWER16aNTcxfvJ5JrbFEerdRPByjGHHn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12quhCMr9YCLk4E4EfJtKB4dCwgckkN4WBKtMGrTWtbovNBp8JY": { + "balance": "1484.944286798", + "bytecode": [], + "datastore": [] + }, + "AU12qur1d7fDXhwNWS4XN4rXWsvwP66xUBuWE2YVAQHN5s8avdmTd": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12quu1riG6bKLANw6pNp9coCF3cbPoSji66rgJ6DPsVEctQGBX4": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12qv5JvTAwmbVjxqUYDnYq7G8ZQhjukzJufmZFe9EEqD8rDQdQq": { + "balance": "3118.339336696", + "bytecode": [], + "datastore": [] + }, + "AU12qvFFDpHidAG9kUm3wHf1Mn4RMV83E3jmmooZF5Ys6Hc2uqAbn": { + "balance": "84.034749712", + "bytecode": [], + "datastore": [] + }, + "AU12qvGbyC2X16Voyx4F4A6HzsVvRP2gtPPYMU9BUzmne1RBYJvS": { + "balance": "1402.505614441", + "bytecode": [], + "datastore": [] + }, + "AU12qvKDJoEtsSNM2JDf4hMD1aiMksvsZFA2YFqy6QFLTioUgnGn6": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12qvUJo1PiLashDpZ97GYgbtcLcbZJJKDW1WP5eM1AGQuirkyWo": { + "balance": "6692.290482707", + "bytecode": [], + "datastore": [] + }, + "AU12qvkjEuoEeTvdeazLmM37JCMDtbGSDiNJkTmPaESGw492tjN8f": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12qvoRuBRr4eJZ6KM2c4TUgiRvVik91M9ZmBxz3MMwkwTA9Cki7": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12qvro8xBQpLq85qyTsneJjLZfn31D9bU1gfhPYDz9fK3eqHT4X": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12qw3CPwPyhahYP3hajZx6ad1hzf9yhz3fUgbcSHrVGMeSQDGvg": { + "balance": "2376.637860446", + "bytecode": [], + "datastore": [] + }, + "AU12qwNMc35NuGFo7A6E29TzsoSJZxSJUK7tFtaMP91dVJr52yDnN": { + "balance": "1456.644467715", + "bytecode": [], + "datastore": [] + }, + "AU12qwacBdG58hwS7Qvh92gMR8YJfSd3PMBej2qkGgRnawHg8Xgi7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12qwh9TZQG55Lkftuc1FB32iLTBepxFAvCbxdfWoP2ieVpShG8E": { + "balance": "1699.328257555", + "bytecode": [], + "datastore": [] + }, + "AU12qwo1dhcRkuGjNkuTsjfSJ9TrLVFASzvVLrLta9qh3ijQQkXzE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12qwv2vZMhGko2EPUEMyM6PBY6TVPFVEFfHxFqyrP3S7eU5PpP8": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12qx1XT41cYJkVhi71778KiqqnpWpsqvuDFAjRxaesibUXr1ipg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12qx7ooLEYJBgpscrBuNHzVGrphT7RU5q2WMwe9fZwgxtR7G4o3": { + "balance": "1558.971289312", + "bytecode": [], + "datastore": [] + }, + "AU12qxBqcD4HV8KDxxP84Fb16iy7HHX3yET8xfVN15GRDEU7U9Aoo": { + "balance": "4640.111665609", + "bytecode": [], + "datastore": [] + }, + "AU12qxNbxzNZmWWPVn3UJpz85ckFHv6Q57QCR1cGuX1cnrm9AX9ZA": { + "balance": "1106.369839687", + "bytecode": [], + "datastore": [] + }, + "AU12qxaQ8vG6f6B8d6K6x7KWijw3cpJqRgZ3zBJYJ6VptqLtJSLQK": { + "balance": "2441.488125248", + "bytecode": [], + "datastore": [] + }, + "AU12qxmF7CEq4xh4EgSARN5WUR6TurvwhUKeT6S4MqLKqrEH11VFC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12qxr8Px8m39abt3mCMKur526kXF25HAnXKd316FoyaUscqaPiv": { + "balance": "1027.345956325", + "bytecode": [], + "datastore": [] + }, + "AU12qy4yNF8SG75ZX63XCoRS6wYrNAvReoCDoZ8cnXwth7LkRimy2": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12qyNpaiWtjsNKgvGP5P2yEdk5ygyYWVxBFKZ4QZ1TZNARLhbd1": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12qyTfsPW7gjziFZQ88NQhUE7J9KdQp5Uzmab5Zq6nxxmbxpRDU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12qydhu7KUGyoEyWNBCRSmab4acaBrb3TWqrZyUf7QEwPrVAmAi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12qyozUtP1CDDsjZwxAhtU3TBCMUbhM2oBYaDZujwWxkwLsEh4V": { + "balance": "2758.269648628", + "bytecode": [], + "datastore": [] + }, + "AU12qys2PZCWcMguvNgSwmrxUv2S8D2E4W21U7m6YXAsEF98E7tFb": { + "balance": "544.836967366", + "bytecode": [], + "datastore": [] + }, + "AU12qz87PbNsg3YRiVzePSYfVrM2S6G11FWZ8UkxhoAYpPoQwVhcq": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12qzAbKeL18PiCByKwvvT9pqCrWUyVcy6nDhnGBrN2W85ASR5gx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12qzDWxpk5wjvpv4QTCyqbmWEFMerrXfbt9CbUmiPR2kAfbn6ed": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12qzDdsn3SSx41G3jXgLp15GGiZyZPJYsRGMnk48TMbnib6qrWk": { + "balance": "937.367836065", + "bytecode": [], + "datastore": [] + }, + "AU12qzvPhqNbTLTzMNHY6JuvnoL8DfuNZ1E8H9RVHvs8NNxWoATmg": { + "balance": "2060.921684003", + "bytecode": [], + "datastore": [] + }, + "AU12qzwcx5S2LumfNTePTcpSQHdziCy396qbpPunap1pX7ZwDvKGX": { + "balance": "1224.396337624", + "bytecode": [], + "datastore": [] + }, + "AU12qzxs5msdAUGkziu9eneP5oPWUEtpWMN5X4NV82CmxgtgoDJQM": { + "balance": "2060.519886987", + "bytecode": [], + "datastore": [] + }, + "AU12r1e2iG5WyEmPvrjAGvKnjPxuf8VfDzbsZHVN6rPeWccQPp56X": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12r1fsaeSKQFFqgo7J2GvjyUHiTEByTP9qJfqbpadhiWNhzJFwx": { + "balance": "1818.015470140", + "bytecode": [], + "datastore": [] + }, + "AU12r1usAzXEMFh1ZutEKTjrmT9JzZ2Qd5ypbWgaAEznkNbFHxnk5": { + "balance": "542.223119895", + "bytecode": [], + "datastore": [] + }, + "AU12r2DDzLjnHxmxFHR6ETzNPrM2MHffd9pidRNgKFK1SYJV2VELS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12r2UaP6c1jjJinKhGS9UHs3H8ZJQoNmAn5FfKfYqQHiS4zi1Sd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12r2kcVmsmJ6tCd51WDYtxKqSNVqrvmWLxPqAiTs4T5a1xeYbdV": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12r2wBSbzvqbGtgULUZTHCgjrSFEZEFxrzhaCacHuxUtabRGTMj": { + "balance": "1226.260135463", + "bytecode": [], + "datastore": [] + }, + "AU12r3dKK25pufTiADMSnNRqjR6FFqy9e6fv3LnnPfEfeB1tFyBTe": { + "balance": "1778.154225163", + "bytecode": [], + "datastore": [] + }, + "AU12r3nZtuKPeStHPENKYx8xU64sJ5JBFgXbmGWKvepV38y8Yrxpf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12r41oVEaspakPD6F785BgY3uUrK7poAbjd57zc6KTHsD8M1263": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12r4HfkN6jcuvwZSQTPSwyg6uqBBygpvmPEnTC3nhah1WjasdkX": { + "balance": "2272.787023879", + "bytecode": [], + "datastore": [] + }, + "AU12r4aBntQ6BEqFbLdymNXwkqsRwvx5iAiJ42UXWK31TFdvb71ty": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12r5GE4F3CtPM6qsaJDoQgBWxyCrjtt7zhULp6MhwZxvHRY2VTV": { + "balance": "964.107605195", + "bytecode": [], + "datastore": [] + }, + "AU12r5ViHH9YCUy6SaobQaGQYjSGDdoBJ5vP6oHnYr1recbQjnCWH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12r5cNLP23DTabwtpB1A2ZcMbJrao8LQttHcJr5twoNoRUGfmvD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12r5dNgAw9EmddG3NxPkFbB7vqRSP9L26mzeruSsiPNEtsmVkAj": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12r5doUj7sWDD465ymke1kb5twC3MAEv5nJ8vM9SLAY87pA6NQE": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12r5f9ByCi7Cg8q9jU3WfhE4twjhQ4jcNACUotKY9z94Kbwe8AF": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12r5hWDuCUKmF6D9aZjDXmrhzdtuLnQmRgbMvtBmS46XK5BCF9D": { + "balance": "2895.564956383", + "bytecode": [], + "datastore": [] + }, + "AU12r5nDsJsBK6SGhWXYZzg48SH1XueW3MuuMYwJ6M6MX6pZwEGkL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12r6Tv2mcET2G4dEjQsN3FaUdNwCTzLxJeEGjmKDvasmy9yr6aG": { + "balance": "3796.496519322", + "bytecode": [], + "datastore": [] + }, + "AU12r7PC57yfyNjefTiACAQ2i1CXEbRr19NJYrpFiAFLZTYSMY6gg": { + "balance": "1408.512311920", + "bytecode": [], + "datastore": [] + }, + "AU12r7uGGabDFWLMPUFX4cWvWk765aYbqWszbR35kKQwcXJ2mW9MC": { + "balance": "2556.312057603", + "bytecode": [], + "datastore": [] + }, + "AU12r8DCTAk9R1WrARdG7cU97NKUDB53FWmiqLa5Y5R8jSMaV9U1o": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12r8H5CPRqMe7GpJyWMJo65LyU1mVanyDGj7hpbVoKzGor12XqD": { + "balance": "2075.474256738", + "bytecode": [], + "datastore": [] + }, + "AU12r8YztkadH9EMbdqNJ1KDd6jwzTqdtHnvffureVF1UHjHA8jYC": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12r93zfHei6QhDgB3euf7Frqt1rgjksfm4zbsp8WGHLjA6BQmG5": { + "balance": "95.331851370", + "bytecode": [], + "datastore": [] + }, + "AU12r95GjdZpn9X97veHaMLcyo6HWZqMP1W2jDdhWGwihFwatZcew": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12r9EEAdoMfVEzCLKNpQCjfS4KrAenwbEfsnN3ZPKKqaFKFTSbV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12r9JAXLoWfgBxNQNhPG97wVHhUxeLHQs4j5ktAwVFVNw9cfLc7": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12r9LBSGGfNh5o2VH1sQroMaDDPbEzuqBv2dDFnqCg3YwDXMJbW": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12r9qX7EBd18iXxj5pLg8DRn159i68fQeLbfUKXmsSaxc9PeSLC": { + "balance": "3893.202742213", + "bytecode": [], + "datastore": [] + }, + "AU12rA2XTDbKieQDzonkXEhbxHiFbDberex6dtM6ofTWmLPimAZeQ": { + "balance": "1563.915278162", + "bytecode": [], + "datastore": [] + }, + "AU12rAL8Aq32fzUEHU86ji3UPwezeXdup424jSqL5GvnSdcWLAGXB": { + "balance": "1996.742043153", + "bytecode": [], + "datastore": [] + }, + "AU12rANc49Us6E1p6qt31hxPCvUGFvEghh69w6nbZqFcADtpKy4cK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rATmkQQxpDXXJJRYiJR2NLTc3zeuqtpo5tdzYqrwsarXkzwWY": { + "balance": "1445.768512881", + "bytecode": [], + "datastore": [] + }, + "AU12rAi28hMdSPn6ccEXMgcrrW18znneMMHkuELBWyggSJpK6F5E7": { + "balance": "5396.681460956", + "bytecode": [], + "datastore": [] + }, + "AU12rB3SMMqoGihmYJTLD2hTvuymvkSZLUJA9hF9KkKWiN9REF36o": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12rBBfuHH7pvo1EiXnfcnkZ2i2t4X9ca9j3y29ipuR3Xhxmb5kj": { + "balance": "998.358525903", + "bytecode": [], + "datastore": [] + }, + "AU12rBQzadH9kknncaDk9gDSjAoL7pSv1geVFG6iZ69y7JhpjuBYU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rBssY2hkTYiFtQg6bbRbfURibQrv6cmykEFeP1PhQAwpjnpan": { + "balance": "1009.734786418", + "bytecode": [], + "datastore": [] + }, + "AU12rC1Xa1SiDM4r7NMDQtaQqxBQE96nRYxCA4y9WKo9YQ61UMMJo": { + "balance": "5266.678107942", + "bytecode": [], + "datastore": [] + }, + "AU12rC7Eq4CSUZcpPxeRn1cgkc3cCRkEJLFRN31rULvzyXSVQJoZP": { + "balance": "702.123527324", + "bytecode": [], + "datastore": [] + }, + "AU12rCnBnamaYQc7BeJYtiatHKV34apCi1QjxieYCbPhVCEK92VaQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rCqUTNR3a17SPSK59JiKatBhMN1oJSrHJEgPzKeNwFZN6acd2": { + "balance": "2450.562016540", + "bytecode": [], + "datastore": [] + }, + "AU12rD4rjfSDoNHmWjxYAHcHN2ckVgwpeiZUdquGdqmyVapTqLR5v": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12rD8PRLCsmV6u9W6B6eU9qPFwsEPZVwEHNY2WjWrGJyoqLcnDw": { + "balance": "1441.128670206", + "bytecode": [], + "datastore": [] + }, + "AU12rDBx7tyXPoG1MpASKwktBqLzsHgBfgJSu6Gu9FHU5RoeXbhBR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rDCHzmriQ8TmpAPGipevU2BhKCP8rN3AmjAeu1QixLrsnxCxS": { + "balance": "4452.612871529", + "bytecode": [], + "datastore": [] + }, + "AU12rDSPz9GjZA8PrnhNUYsemabGDeh7JFqZVzJhZghkomoK41WS1": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU12rE4Vyhz8SodpCiRz9Ni85nFcCFteQcTKgetoJzkbLqGpbLhbw": { + "balance": "2718.238837955", + "bytecode": [], + "datastore": [] + }, + "AU12rFAgUD2X5qi4JWBDeFaKVTMN2bEcgkxfjtxgFdKDhu7y2vzD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rFLFXC5vaSEUxjVHZeLNYB21LAHtaP1mkL4GEKw9ZsBH6xM7t": { + "balance": "1351.694326919", + "bytecode": [], + "datastore": [] + }, + "AU12rFZ9TRCzp88kKkKAQty8EewmMEeJvYpkQKcLdkK7hLgvActuo": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12rG6DUzDo1duW16bYSsCMMaafxV7JtuWFqegUvHSFJX6hB8Q1R": { + "balance": "906.343770957", + "bytecode": [], + "datastore": [] + }, + "AU12rGLLGPGsXQXrTuCC7HdGEUgk4YJ7MYdHArsN2fEqBkB6BFLDa": { + "balance": "246.015364578", + "bytecode": [], + "datastore": [] + }, + "AU12rGQbhD8Nz23D9mb8n8Ku9zt9HY6ZD5ZqRieWXnJnFyaU4c9vN": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12rGUg9kUttbNW6GPD5StHfx6ErzVnc3YZZqoicb14NEzceo9Yf": { + "balance": "2357.050836908", + "bytecode": [], + "datastore": [] + }, + "AU12rGUrf4PVGYpBir1Ssm11vW8LiwxM5VcMS1HEpgwG2jMqkAHWx": { + "balance": "1585.241533384", + "bytecode": [], + "datastore": [] + }, + "AU12rGWnHGKTzaPv9x6vYW9zbxhtmihQ6TqJrF6VYDcM2xSDJuMVv": { + "balance": "2650.542828908", + "bytecode": [], + "datastore": [] + }, + "AU12rGmhYnhx331BmdDiKayJ7666byxt3UtaxkS7Zjq4r74gpL4WS": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU12rGoXqmKs9YvYA6c8uiapQNyECbrxbWTPgZu6oeXuDSNj3h9WP": { + "balance": "3390.483168272", + "bytecode": [], + "datastore": [] + }, + "AU12rGvAnuActQJT5ZUVNXMPE8FsFTMDyzyDUUCUfp9XVD5MknTJm": { + "balance": "247.749934502", + "bytecode": [], + "datastore": [] + }, + "AU12rGyXFaqUJn6HDSJMgvRpAtWBRVh4uJScQsTJf3WFibrsnkQFF": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12rHDGFPL1H6AZNfTKQXkBrNyNwVwv2ubr6syfCEhz2tUZBQV1y": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12rHcWbYEVy2VkroSHNt3cb5C97PdFkGMY1RmC6CzDUfbJYsSqd": { + "balance": "2889.368053630", + "bytecode": [], + "datastore": [] + }, + "AU12rHjFRxeWNaAbj6JxkPGkeqBvDEL1u5Tzspjy9h3pR2tUsQQsT": { + "balance": "1447.608558928", + "bytecode": [], + "datastore": [] + }, + "AU12rHoDvjMuteRz9Kr9GHEgfM53PZZdsw3n9Q7CZLRMLmJaHDzQ2": { + "balance": "1028.528424107", + "bytecode": [], + "datastore": [] + }, + "AU12rJRq8KkyVUaPEVdR9hD1VKMRQLyHcRjmFY271PoLPYSFoqmnz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rJiQs8Qarcjtyc5QHSUm66rKTArf6m8bkuhQLEdyCdNnhxHyZ": { + "balance": "1559.483758770", + "bytecode": [], + "datastore": [] + }, + "AU12rKo7wZkgEQje3EuNp2vyG2qDntQ72Tf44pFFPBsior5EBhenL": { + "balance": "3309.200428007", + "bytecode": [], + "datastore": [] + }, + "AU12rKtYQTjKqUFwribVTUJrohJcYN2woCijWc2iCrRH6PTLGQSak": { + "balance": "656.451531582", + "bytecode": [], + "datastore": [] + }, + "AU12rL4bxQ6iU9mJvwYRpGGGtt1NDm2T26pUqqvQBTD99RMQwMBgc": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12rLFgroanmQijTzKetHRQw4KNamVyn4QdAoUo92jCkav93DjhK": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU12rMVE4Xghbtuqc4fx1mVLFNZ6Hf7DDHGRk13Cf5g12bScb8GhE": { + "balance": "2030.510238375", + "bytecode": [], + "datastore": [] + }, + "AU12rMhirSJiFoQrtVdjQtMAAddbWs4KpQWbzotqdvd81kXfKqHjJ": { + "balance": "5238.374066846", + "bytecode": [], + "datastore": [] + }, + "AU12rMpiL8DYr2PHdZYzWp2r1KE9wY5Z2mfsDg8TgF9LmGgShtQ3s": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rMv88zCvuHwAx4kSinX6jLqva2ZuAVHFXedv3JQvnChDHT7JG": { + "balance": "526.052338966", + "bytecode": [], + "datastore": [] + }, + "AU12rNS3urPYoLeX3byQutwgiQYxGTUEjZk2zfGkrgvfVjRLLjdKG": { + "balance": "1674.905099421", + "bytecode": [], + "datastore": [] + }, + "AU12rNaMoDjF1kVCxSS9DsemikEQ3NCwrEVHmuWqCiPRd6srn2sm6": { + "balance": "2626.312016807", + "bytecode": [], + "datastore": [] + }, + "AU12rPjmTWofdw9QoFWXfe7BuKrN4yp4isyoSNkipiKhxD5ijns98": { + "balance": "1118.820206639", + "bytecode": [], + "datastore": [] + }, + "AU12rPmfogRtCPENkcQsP6F2GqpX7AMdVv3ARStDvpWdWurMS51Hc": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12rPoiQBtwy991pGdKZ2PJLULQS46Khx9EUgsaiJAzEvwsuErNz": { + "balance": "1739.554385410", + "bytecode": [], + "datastore": [] + }, + "AU12rPqK9MnbhAkzLMmfEhRuSGdnLeRpYy9CsRQcwka4bQ7fPzLbw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rPqPoJuTLUQoCSVvmxdVK7YCyPPeVYLnkVtJMzM4vozVNWmVF": { + "balance": "1391.284069915", + "bytecode": [], + "datastore": [] + }, + "AU12rPwhADURS5936YvdBYmtUy8wjFrqHL5MBKdkHUMb6TH7YQSrj": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12rQ1RTd5mrJ1Kf4NJf8vhfF5UqvXnHHNxSKbErmDsJisEvXF7m": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU12rQ29hvxiEqb6RLeXTCGcihsf2WA1DEVSEuNAyTV3Z2UCFvWmt": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12rQ59Gd7kMdKvqSfod4eYkfN6Nfh4tivhTAdSQk2BSZXM4jgq9": { + "balance": "1420.056893857", + "bytecode": [], + "datastore": [] + }, + "AU12rQC5ULsjuaMe97UNKeh2uDNwXcVT74oYQEMfvw1PYVVmG5XNc": { + "balance": "3142.870885414", + "bytecode": [], + "datastore": [] + }, + "AU12rQFi3tWxdpcejhZZa5caeDVa4ikNzQCbacXHfuSmgiV5Dmr4r": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rQS5XLTcpQBBfm4SbKaw6HtM2WuAnqDePE2vv82vNeRTiSjTU": { + "balance": "234.525478209", + "bytecode": [], + "datastore": [] + }, + "AU12rQaMhhb7kePZFXeVPFo87iyLs1MEwbLvFaakArArTy6vw3x8W": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rQnkQemyir5YD4enLUwQA6qbBhMfbgqF5i4CaWFrQ4rrRKdWE": { + "balance": "1989.201976900", + "bytecode": [], + "datastore": [] + }, + "AU12rRDjGDf7Ney5BebgvqiFBbjQgACD3dX2ayS1FpeJKmDqXrXow": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12rRJXj3sc4p7LAxxgByhxNacYbhcrszbinRAAg9un81HTH9s6e": { + "balance": "852.888825669", + "bytecode": [], + "datastore": [] + }, + "AU12rRRy5EUKSKEBRUxJXwxiM7T2AWmzQJo5BuChsJBNPGJnjWpMa": { + "balance": "2801.064098093", + "bytecode": [], + "datastore": [] + }, + "AU12rRgFxqawoFNh4ya9ThSKSrjPMn4FhYMqcVPmQrTj68CpmQCww": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12rRtSyGjfQYCLg3ZCrxMLmh7nAf5HVLiMkkxNCZKsY8CVRJeL9": { + "balance": "2669.384073476", + "bytecode": [], + "datastore": [] + }, + "AU12rS9opnNfU7iHFdnetqYZQQ8sXpuPLNHdfzZJGncNTP7HeF399": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU12rSacwkFNVsgX7QNmgtrDuG4iKwuGWpaH29D7JD3XXFqzSYb99": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rSkgPuG8TafQTkBTbKCSVJENjSjmspWh7BKx4wjDjtPeoyRgk": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12rSqtXj368p2WNwWmUkdCU6QSCNkEPeNLjtNdfDE58A4E19Twp": { + "balance": "4903.737808157", + "bytecode": [], + "datastore": [] + }, + "AU12rSzVBkcCPAGZTr6FzvJDm9htJ29FZssMCqURMtkLDwD2JF3CL": { + "balance": "34.426454848", + "bytecode": [], + "datastore": [] + }, + "AU12rT5ksNZmyuyekrdAht3Mywe6Et8tm1AR8Mm7SHXNPe5cPzaEo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rTEL5XETAUyPL4fBL1horeE2Ue6gRkg861Aegvq14zrkxetQK": { + "balance": "1247.290919078", + "bytecode": [], + "datastore": [] + }, + "AU12rTF1bkryrgQN2nWhqGYi8FhAXvc66NVUPj69c4q8u9xBJciM2": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12rTFPgUfXYHzmaZKVddPzSgWvRMtfD1pyvyF2HScEhWvS1oKLh": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12rTNbZAvLrWj6t9Wm4mY339evoPnXgeJmfP33An4m85jsQRkRD": { + "balance": "1863.678894418", + "bytecode": [], + "datastore": [] + }, + "AU12rTXQ6DuQQDaC7qxnSNaPfvpBQB6xfPVEisyKFJS38DB7Z7Kmi": { + "balance": "2184.872424558", + "bytecode": [], + "datastore": [] + }, + "AU12rU5e4N5pmjREqhaytfdMLEP8NusgirqSowcLqoVEewkxpJzA8": { + "balance": "3277.022346047", + "bytecode": [], + "datastore": [] + }, + "AU12rU8D8iCvuRcGEFPTMHsP2DkQuxe52mHn9uc7MRjx5zcis6KMb": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12rUBLMqhuk3om6mMeVFi7J3ZqNwRJaqXs5oGrS5PxDGSWNj6mR": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU12rUTgXLCr89d6g63Kcxo12KqkmMmA598Jb1X3xokp9ACiSVqwV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rUjrpVQR6DdJTx2Lb5kk5sEU1KY9xC6UMdS5hsiF3BpRGa4VP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rWH5NyFDKGvhDYBntr9Z7yuPUfj47JofRs3sqpwMv2EHNcwY6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rWV9jXW2cx5hiUTusVf7JvpuPi47Lk1CDGdFkyAXaZWyptp82": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12rWbRxhiLkm9jhGw1vcm3x26Ysq324YnuDtZYmU9cneUTnizWM": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12rXBXLf3MauEs3KvawL6MMr2XjNBfCjoojDRKAXwfM9wch1Cds": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rXDehAZJdsJ9GQsmj1pkBywJyRDkun7we6RD2oSTQqd54yMkL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rXGdQvN2eBKeS3FqXTA7aWokHmMQrreSx93KNycwzMAinDFqh": { + "balance": "1830.870236247", + "bytecode": [], + "datastore": [] + }, + "AU12rXUqNYGr6EzprRukiUqECmUCBqqCBdqnFUx73DHZEHWyWs5h3": { + "balance": "27.776577965", + "bytecode": [], + "datastore": [] + }, + "AU12rXqMdHXviPdFq1CxadtN8a7oRp1bYNP3RckwoU1Kr3x94ZoKH": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12rXyL6VvRQKHp7rQJ9a8FsSmBQuQ9UkziywhqNNjHA2NFusupM": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12rYCW5ipEMm1rVE2VaNMdq411DvGBwCYkm2XkJz7oZ1KJ49yYa": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12rYo68R7HLDtbxxGcT1kWeiKaBeDn5rav5HYTBbtyYZg3wxysS": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12rZ4naU58VFGA6gDz5qtZguQM4M5EiCSpKS2qKAAAQniXLA2yV": { + "balance": "1910.474036231", + "bytecode": [], + "datastore": [] + }, + "AU12rZeyWEekwFBMRchpHCjv9qr99Kajd3zk8MFizMt4cHXswnST7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rZkZrKusp1B4wKjuHNQXfGaswhqYQrMjFu3Rxf3V4BeSsYxJc": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12rZrPV2TGDh3zcikqKDZBxGejHn76EofsRsRTP1pHiLo3EMduK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rZvLtfKtWLpJWJFRe9DCEqP5oa29qB3mBNo8Gx8dU9myM6iwL": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12raaoKmKg9USA4s7usbHETh611xVffKtu5G4FNVFND8NkMdwXC": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12rb5iMDQXeKP4oraJHY47jxPVB1QvZ9wVfRuSyJ9rMcA2T4dtA": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12rb95pTcN31p6P8XWVkY5KTpNp56bTkbi2GnY599dVtk3SGf85": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12rbfZg4SrA8g7X61XCPDmTKWzAoHcGd719yBA5ELnp9iNVUyjx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rc47TgYE1qhaVD9uh96cQzjgtEV6z2NvWcyvb5E8EBsWRyZTL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12rcLV4vdEPKXJu1t9Pm1ppNF8uyGyfarsnKhSCSf66Qbq4qKro": { + "balance": "3721.165760624", + "bytecode": [], + "datastore": [] + }, + "AU12rcm2RVv7sb1xzTWw2hTo3Mz19MwkfeP9jVBJVGYsZi3nuHHWo": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12rcouNi2XZpisJrPDzhDmWdQkVQHTtFDFW79rxNXW1zWaG6WpX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rdEEC1yZGngaNEKqsFrFC8N3ctqkXJGdtbqWSUuTPKFDnV91o": { + "balance": "1530.456622168", + "bytecode": [], + "datastore": [] + }, + "AU12rdJX4F9dHu8SCcoSFoufoCPpaRyv2wsPdxN8N543DoKtkkXzj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rdSufLTZSeR1kfPFbn2VdzcBLxhqwqk5P2bHPoD5Ti5zouk5n": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rdp2n61TgaTxN6sB2yAKwzG1J23NRRDdpfW5iKFTi8gvPPuDS": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12re6EY9qpV2MW5UZm7PXHG23MRNPom9LMpVACJvemazcnX1cPB": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12reCAQVuAATL94f1x2Vr3A9huk6vEGVDWh2oW1U2zLatLxzkkM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12reNZEsrRBnsGjuHxtZ29EEGh4jPtLH1CsQfQ9f1gtwxz5GbUs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12reWBQVi8an3UFzhSuJyvZTyTUMiGyhtxozadbBAa2944fcMwt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12reZWW3M6UPKQkPZRDpmRnDNBeBZixsgsatvKXMqesjqdJGSfE": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12rf86yod5WSXGDNEDVCa4bx7QhHQWz3qarQuTaAQFUxufSanvC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rf8QaqPS5FRZqaVE3qNyb7oDLSrwR1xcTHH6TxbANGbbw3yk4": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12rfhMatixmtXo1Sxegz94LVpuc514WD4wkx1xte6zPrB7qxSwo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rfn2cs1kVtYRQPthuCLbou57cGip5iJHdyVuNcYZbJsMCXcxX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rfxASKHRn3DeumcExb4BvHUJwqWe6qDzrzoTLLHiiBAWqXYKV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12rg6yoVcF95tLKoJJwseEqHZ7TiARsVngyX7Bx9sY2X8Ub5umU": { + "balance": "1340.922496694", + "bytecode": [], + "datastore": [] + }, + "AU12rgJQZvYN8Vjnd4MTqp95F7dVrkDHf3RtcUZPE6rGaty2Fh6H6": { + "balance": "1133.994507057", + "bytecode": [], + "datastore": [] + }, + "AU12rgXrL3Z1zguw51AFjoGZqvSFVeqR8qncpKyiSzKRHFZKg7HSL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12rgpgXRr3SUQs8ERbC36vB32xLRY9Qt7Q7VKowaHDGZQt3ybY3": { + "balance": "3410.000104280", + "bytecode": [], + "datastore": [] + }, + "AU12rh8FRyHMwto4mr5xKQUcGuxoqFjFyhcNKDturgXsAezA2xdBz": { + "balance": "1201.297021242", + "bytecode": [], + "datastore": [] + }, + "AU12rhAUPwNLmcGeNu7S3NQCrwZXrVXRSQBHh3eRTyYXDL8M3nzz7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rhyJeJMxqRLN6XF5EnZMggZUsFZk9Cn7AYKpAYyjU9U3BSmBU": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12ri36grkiRdK2ixssSB1HN3WB6SjM8GPQcAS9NUSaMmm977Da9": { + "balance": "954.548745086", + "bytecode": [], + "datastore": [] + }, + "AU12riVqzSw7VdeWFYjmEGcnnhPsXFqnXzdV9qY2Hte7mDFQtm9Ud": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12riwcpXuKkYcPToZG61D85ji5sVBL4HdSzY393TTEiWpPYN85M": { + "balance": "2871.549082477", + "bytecode": [], + "datastore": [] + }, + "AU12rjctJ3qqAVM9RgvnBiXwfuHfdp47owaPdgraqB6yggosywwRT": { + "balance": "78.756112024", + "bytecode": [], + "datastore": [] + }, + "AU12rjdWiiNRccjbq7ZoHNZ5wrJGhAA5N275PoSXJ1ThZQnn1yAxN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rjeCoHqRiVwsjYEkPdStYT1ayL77dEVes5WknX38doEphZK2c": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12rjngQe68wgsDdQc3LyF5kGkatgB8NrWJ5HnyZtwTQmDRStqgd": { + "balance": "3343.463880170", + "bytecode": [], + "datastore": [] + }, + "AU12rk7iLZwyPxJF6Bbz3iiw73wmQ1KjpE3yoZJyxQ9H48Xhw4rai": { + "balance": "563.408323844", + "bytecode": [], + "datastore": [] + }, + "AU12rkXNK3LTg3nMiCwGZGw49AieNYJW5RZC9JywZAy5Fa3HyeQKU": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12rkkEtEAbvrhNve8LJH12Jj8fiQtoCz67Z27cnjjh65mF5Wefa": { + "balance": "5850.961226526", + "bytecode": [], + "datastore": [] + }, + "AU12rkqHbcNJoDjXscQnPY6gtmM5uqV8pYyRLGqqHKkwBHQy8xAqb": { + "balance": "3885.089210431", + "bytecode": [], + "datastore": [] + }, + "AU12rkzdcEBimtHtZtxKG7f5NFaY2tSGma4yGPLzDSQkExf3cJ6zy": { + "balance": "4.970300103", + "bytecode": [], + "datastore": [] + }, + "AU12rmmXK2b3xGJGQ2vNMtKW87gfr6KUiuGjvUCnHbrR7UeVEZgwT": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12rmnvr5siN1RBsWjfguo1VcPPibhmj6pfTuc1EUSbFAaBX2gVJ": { + "balance": "1271.818098424", + "bytecode": [], + "datastore": [] + }, + "AU12rnZYrK2uSANSLBYu4oZ5CnERiJNRzhLWEqrXThceJG6UNrSRS": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU12rnvsMHYJEZbNZyipcSc7bda17tFkDrufZPbcXzf9MgEPmbQYS": { + "balance": "4609.439552508", + "bytecode": [], + "datastore": [] + }, + "AU12ro9Ji5Vn3GaMc1GKHdEqcMrYyuJ47tCQLPm96mhHJ2URFr6iq": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU12rpeRuvT3vGbVHBB4pjzQuFdWEw1jTaefBepsuxXLy5rTG65aT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rpwnNbUcjUvVNwH91soQvT1KhjNhwe5KK6DRqnScNqL3GmMZ8": { + "balance": "1737.993960744", + "bytecode": [], + "datastore": [] + }, + "AU12rpxvWxfJqxsGvEmybZoFLtrsFrpfHf6x5CeZACwXTwGjV5rh5": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU12rqCQuPXpjsBQPG4FmqxiRyj8r65hQv4Czs4Vz7kjLusVTya5n": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12rqXKUCpPNBkh6Wakgm5Hm5SopgNSLDp8k3Df1aEoPkJFsBwvS": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12rqrzxpGBgcrU416GKE4eDJ1cveyb7PTTKC6tuyH4oLkKcMqqx": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU12rrn8jTTQPQU4uoey5FZfxZ5Rvt8MLqjBq5p7cFgPaamu9nB8n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rrohNMAhwFRrMFqpce5XaJKHtqpJtZSxzYGBfzi5jUJjrgVWm": { + "balance": "5640.907046616", + "bytecode": [], + "datastore": [] + }, + "AU12rrzYYBR5Qhc3KNNfcDUtZ9aEL3WN27kLguFwgxzWvdJXEq3yg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12rsTpX4pBxJxSzHpZijpLwkDHrgB1bhyHiq1CL5ZWqhmC63m4R": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rsg2bfbJ9G8BuEsNtVqNWASNCfpLV5X38EjQntgrq9prKEmzs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12rsqWWwsucEdSGQ4fSqzAkMvpcbvADtPEwzYaTp2oRrwfzirxh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rtYV6x42AQUfPUzKFDSfMUjy4GGk8K4qYDoCfXtg6Nyu4cbv": { + "balance": "1125.701580482", + "bytecode": [], + "datastore": [] + }, + "AU12rtYa6PAPE6ajstceswQhCFVMN1ugXGFVKKNH5A8MykeGPquBn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rta1vCegKuvL5uvtGJr6gymaRjmFfLXhcBaxUAXj5HruBNx6T": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12rtjUDzRvLwBZsS8bR84jnEzQv2CrVwCUTm42SZ96VcDRbhyzK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ru6ZuZQSJrSSb48A73FNJoSYKT2hnZBpYswKpmUeq7PnqapQZ": { + "balance": "1329.725023741", + "bytecode": [], + "datastore": [] + }, + "AU12ruGwHMesyvEQDsYhQo4xRjeFeQS28NjDsDSyWjjp1PnkYippA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12rusCULVcxTMTD4UFD6PxarcByPW1BqqaZVkx2oT3azedCj63j": { + "balance": "3368.732541171", + "bytecode": [], + "datastore": [] + }, + "AU12rv1UXntwGcnieqJDvJr4WTHdPScm2GgL8SnXwzuSjDC15SDKZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12rv6y4utMpZg8cES5AJDty1QWwNUEqnUUV3wPtMCKNkJsPFb1S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rv7yTb6vcYyBizaKX7LSD4kTixuJtsSt3pRmS75G3e6yDFTKs": { + "balance": "4570.921510270", + "bytecode": [], + "datastore": [] + }, + "AU12rvqKCuWRGt4piNV8EU1LwmTkAYQgjgzBHUZ5dsLVbDAPv4Jg6": { + "balance": "2479.087731877", + "bytecode": [], + "datastore": [] + }, + "AU12rvzKqhS7EMd3fBnJmxavYBwp3dTD8fBu1QRgtPH9BpdcG54UK": { + "balance": "875.273063210", + "bytecode": [], + "datastore": [] + }, + "AU12rw13HD2XQwx3Ffa3isMYzQHvxubHJoj9k7tQiSovbNpE5Nmv7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12rw7MDJq2GBZoqLNoD9rc5opvpDHGWFKC5qZkdWtU459b6gUMe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rwKYXPnFV7dc9eL93pf3WxPKP22FXjJArKmt6j4gmhpmJceZd": { + "balance": "1628.196338669", + "bytecode": [], + "datastore": [] + }, + "AU12rwZ89qizrPdy6gjZUyCocTrjvtQ5bRc3rLNRQqMc7EZEDaqsQ": { + "balance": "728.881656323", + "bytecode": [], + "datastore": [] + }, + "AU12rwfYw7LExSNgkpEZ3mUvzemkK13aGoZRne22MxzzHFLNJPPuk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12rwunERGg8NLP2arQG9b2tAqC2nFqp4BJY2529BsJgRvD8i4z5": { + "balance": "3400.331530252", + "bytecode": [], + "datastore": [] + }, + "AU12rx4Jzxe2ebEopCj4ydQNkEmvrGDkv4CsEA2r3FMMCAVSAuJia": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12rxFimuJznwDhGk4vsSLZrGM6yFdKaDkVGA2ifi8cRD14WW63H": { + "balance": "1612.602154887", + "bytecode": [], + "datastore": [] + }, + "AU12rxY4o6PS3aLwhfxRmCknu1BJsM69cvACoFcbAujWosA67XyJZ": { + "balance": "2366.005000046", + "bytecode": [], + "datastore": [] + }, + "AU12rxebamXdrasMSNBbwzyQrgv3hxBgMUwcMtC3FyQ3Dr3dnLuqX": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12rxtvckQSF9XtG2i6mqc2PT1pAokT6um9Zcn4WeiZ4vcEuDpR9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ryGpebkFKGnKvGvh18wwRwUL7AypKu1ZiuUyW3ZkZ6AdQ6Td": { + "balance": "5307.080164568", + "bytecode": [], + "datastore": [] + }, + "AU12ryJ1xzUvQ85jqr4QK1dXgcYAZuz1o1dmCr9ngTv4LGWwU6Wz1": { + "balance": "61.056105611", + "bytecode": [], + "datastore": [] + }, + "AU12ryVQ3h9LBTMpuahqfvZfBSe3oTGx5nZBAtEA7izN9pABzxffd": { + "balance": "5331.781167694", + "bytecode": [], + "datastore": [] + }, + "AU12ryW3B4TEmfPVhChob1i2GxAF7gttb3K25tSq7zykhUdNQb39Z": { + "balance": "4563.690736660", + "bytecode": [], + "datastore": [] + }, + "AU12ryZ7Hz4FKY821UJBZdjqYsbcgPbrK2vYAftFD2En88Xd2qsZK": { + "balance": "82.472448936", + "bytecode": [], + "datastore": [] + }, + "AU12rzEuezn8sLgcaYd8y2eRZrRZKnMDDEQe1F3dqgwxga11vLeLo": { + "balance": "598.525568234", + "bytecode": [], + "datastore": [] + }, + "AU12rzTgXyw24LMPGZEvJnqVFDtADM1F7XQPGj7ZPojdsgwLKMob7": { + "balance": "2101.694188841", + "bytecode": [], + "datastore": [] + }, + "AU12rzdnvVgwZtCS1TJ3Wh3yb8ucPLDeasWiLNmqDZ8wXEbrkNw6o": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12rzpw14xMBm1Au8hLquR8wRYR1aqe3NJapWt41TWAxH5g6zPW7": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12s1SLg7EV6QQtsZidRQahmfKDWY12mRnxZ62mXziFe25iWAwAJ": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12s1TpMMStmZiWmuyJ6tbMLUx7Rr7HuGYwsxcAq1yVNXyvUL5fj": { + "balance": "920.410724500", + "bytecode": [], + "datastore": [] + }, + "AU12s22z7LAnps5Y4V49EHBbJsZUa4cjr7hAdEjDdRr4Lu7DD8GnB": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12s2WLH12B9n6EYFKKZTJV7D24gvXDcri38MRDzEZ1CvDNQuqYn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12s2paSUMNKgQwHS8PMjUMUjWCmxFjfyugpUWrgrjP6V6CGAmLQ": { + "balance": "541.812343687", + "bytecode": [], + "datastore": [] + }, + "AU12s3rkx4SXnx6ghDbeaHPxAxDs2jvgWnPtq2aKbbwx1KBp4uh3L": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12s4bR4jaT1MnrSKVSy8kGAKg1HYcxEARDeFRkLNjxGXPdTmwG1": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12s4qUQUbYKDhVYgyeWr9KCBdyTp9Gy82qZJDvPpRVud5bLnJ3p": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12s4zed9pTXCYJSEP1q8jx5sm6qgjCrqfv1UDMzg7sWSD61XC44": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12s5RNVAZWN7ARQrUtv535zVspkiiYucccjeg7p9Cbfr5ShZz1P": { + "balance": "1576.975268906", + "bytecode": [], + "datastore": [] + }, + "AU12s5gf7tQSENHjCHYeuUa8y2KbmcBRsTMJMH7msJ9YPxUcmyfGS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12s5uJxZkhFuWvdgskFtYrQx3GkZkRDBqCdn26j6DCNzsjVHEEJ": { + "balance": "3443.950801232", + "bytecode": [], + "datastore": [] + }, + "AU12s63a8hRUKR3Lzw7f4Xy5P3zNjoTVLbwYcW7aFStyxB6E5ko17": { + "balance": "1104.050694699", + "bytecode": [], + "datastore": [] + }, + "AU12s6hb9MG2TXrsPhXgRwtbYWv3YUUc8qwnhUL5q1cXh5W4PRvxY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12s722RAfv7e7DMoDLdjvjGGd5yZYMJnh8sAuaDsMHxEQfzyJ55": { + "balance": "153.058490615", + "bytecode": [], + "datastore": [] + }, + "AU12s7TSs2WFgNy7C9YqoMHJPpyoYeRvU8HPLM654gLsw15tb75Ww": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU12s7VttshsUJKtDPheztJLUfWat2f9yqtYvMTgn3Lf9nkzPXEyL": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12s7aSEKXvDQUp4fB3adDYhhpfvAuXbgNKRmvA9k8UDKhBu79XR": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12s7xex56mc3Lh7JRfqoeBR9vgUy29J75iFRVasPhuwUahVu27U": { + "balance": "2204.713542300", + "bytecode": [], + "datastore": [] + }, + "AU12s84BU8ejmo8A6jerkTKM3g14Em4Xi9BeJUWw9c1WCMnsE6qKj": { + "balance": "2899.536536973", + "bytecode": [], + "datastore": [] + }, + "AU12s8PcpsCc4LyuJXkvpLitsSyRivMLYtJfBWm2Q3yh2Cttoguko": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12s8PjUz5saW5NzKScw48jm38Km56m7VCr4yiYcADXcPkaDdha1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12s8eGxmvG49YXcFiqsyc7WjfBjwikKTTd8mSBdEJmBfgkjkKWG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12s8srzz51sXY84wZZVubd3NY6qKz68w8g7CC1aUnY4pbrpv67G": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12s8trozdM8cHzzXbHuG4RkGPyQ5wmeqnjbR2o8H1ScSscraucn": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12s9FPzEKDsjFf5PKGMH9wBDddZhEbM1a8Gskfodnf5yUJBwUuk": { + "balance": "804.946407230", + "bytecode": [], + "datastore": [] + }, + "AU12sB2EaKuR8vaRjdHYyeeSGSaBt5WNEm4X8x8QPK7g5LR2cAc6q": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12sBUVBN6fWnCHJ4eYWgcqkp9frAaUkwqrmckBP1NafHBWcGact": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12sBZit6gXgUmCAJAkvwbU9c1g1Zs4DWjvvcHy9iyms5PG2Un3V": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sBjAxtmFhzqkE4DvNXcgiGWNwNyFURimQCKgSf7tpYPeZGejG": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12sC9oSqyq7KGuuaJDRRSv9JW2xnR8JbuxP6duuRK5QQL3wYC5C": { + "balance": "733.317242882", + "bytecode": [], + "datastore": [] + }, + "AU12sCjMWhgooER6WPsMwLUvG8Z3jxPnkh7SofhYRZDyNgk9augKc": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU12sCuQpwUZAaB3fruWf4LdyHDuWWxVYsf46mawZaxpdUBSfg3wq": { + "balance": "1602.820513068", + "bytecode": [], + "datastore": [] + }, + "AU12sCuc32idYV3GjYzwgUB39iJSnnzLB9ktjFgV6JHccicCG9BCr": { + "balance": "934.184334184", + "bytecode": [], + "datastore": [] + }, + "AU12sDVHfz5yDUEhi2JhZVdKHW7HsLKAhqUwqAAKcREPB89jFqZn4": { + "balance": "3725.038851227", + "bytecode": [], + "datastore": [] + }, + "AU12sDzqPcXHN98MWLQDbKDiKUqN28VjvCnh8XZZY8xLx6Wznjd63": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12sE6ZaEzjNBpgxsXkzvk7u6eegDB3gHHgxT3sVebKDFJtXj4zi": { + "balance": "2031.596563057", + "bytecode": [], + "datastore": [] + }, + "AU12sEFsNHmJgbLxtftaRx8wGBDtFK3dbyj8WrvtBnGuifHyNHB4r": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12sERL8gpjF1wLZxnxAyu93sp5daeEUN9NjANvFb7KvG1qrhYSU": { + "balance": "6368.039967724", + "bytecode": [], + "datastore": [] + }, + "AU12sEZp73nqt2b46BeLf7BjFyh9oFEA8VqJU5NaHmtUB4qZT5DZH": { + "balance": "3592.235348753", + "bytecode": [], + "datastore": [] + }, + "AU12sEv36nKdQRvBggdvcEqS6tGi6Drbu8QfWY8ft49hH7L1xXYV": { + "balance": "2539.574544731", + "bytecode": [], + "datastore": [] + }, + "AU12sFWAuxPgmJsDX9mM5J9GdSpcJFjFpZ8XGnEvSbWU4asxLdHoR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12sFyyocpKWz4h5sQzMhUESUkWJCMYvcNpmb2Jq55RKPV3Rs51R": { + "balance": "3788.087562790", + "bytecode": [], + "datastore": [] + }, + "AU12sG1DPHUfWFn9HaoeHnjHF8HD2kvB2piRjNK2DiBvRM4tSYRXx": { + "balance": "2146.716574555", + "bytecode": [], + "datastore": [] + }, + "AU12sG1gASyTDsYcV228WjR1bcF1mwgDjofF1QZJA8RU52pGKU1PU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sG2LtaaNLjKCjrRRSvzGf53T7PPj57Z4mVrQzLKeV4JHCmi2M": { + "balance": "24.110677959", + "bytecode": [], + "datastore": [] + }, + "AU12sGBpgYb1W5BbrMb5YmCZPn7jSmAuT48NstMMEdvAq2DAzk4r5": { + "balance": "2644.575135527", + "bytecode": [], + "datastore": [] + }, + "AU12sGhwCoqnNgwZpnHtenaTRkzb8uia4wwBLQm7ipuuEymQaBLxR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12sGmpbusXpv3wLyT7E8d2N9s5p4bDP9VoSWiDKS6Mn3dcs9NX4": { + "balance": "1010.753862404", + "bytecode": [], + "datastore": [] + }, + "AU12sGwqWozSz3WcoUGCRbDYJis5SE6UxbpJ9nDR1w8wzAX7J8dyi": { + "balance": "2809.020550502", + "bytecode": [], + "datastore": [] + }, + "AU12sHRkEQEmTR3BM2whE4Y7PTxVwAvpcVsUfoLSQLzt8SNvuJ17p": { + "balance": "41.104225803", + "bytecode": [], + "datastore": [] + }, + "AU12sHUs3ukBHxZhNREvNicBSVnrw6qykHDChDTzz3knSkt592bbn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sHbxHk6x9cGrzJ64Nu7G4kBxdtm6WJXKM36YHzY3vHJ9huTtD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12sHjKmSr77S57Tw33WjRYBjSiTRZpA1kyEvPSRpJ7uHAYG2YXS": { + "balance": "2915.128866887", + "bytecode": [], + "datastore": [] + }, + "AU12sHqS57Vg1LV571ztaCxVVZ7GKgySGtbeCnfHKBNPTKxbNt5Cx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sJmZD7SkTcuVxYme5BQ5oMkAKE1TgTfrFB7QJuW3SLBrGKof": { + "balance": "971.764630170", + "bytecode": [], + "datastore": [] + }, + "AU12sJqh3iUMRQzuAFj2AqqynGbiF7etPZnXCpmvbJKSmSZRANz3p": { + "balance": "1047.876419012", + "bytecode": [], + "datastore": [] + }, + "AU12sK6uRfApEvTicgCXoH2J8Lwk6qiTESJHsV29c2zHq8YBMNoPC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sKqDmwkcUiKsVztvDW8CcrYQKuyY8WW7ogKpWmpyRQfzVbNVb": { + "balance": "9.694616046", + "bytecode": [], + "datastore": [] + }, + "AU12sKqnPjQ1di55exoHzU3J7mX15yo6Tyb4BFWJEbKHHdEYdzgs2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12sLT6W3jw1DkZr8QYKTPJMaqr8aR6jFvRDR3XBKmoFP33E4Ejs": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sLaCX9wfNF8RHnxFpQWBUt94zf3yts3UDBnbuDqRhpwMzDnuk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sLwVoAC6VVzBR1qKNzL582au8U1TCNRgAR1KFTSB9ZNvAFExc": { + "balance": "3848.026910658", + "bytecode": [], + "datastore": [] + }, + "AU12sMGVjzQj5M21r5D4JMcM3qpVTGqreU6Lfuk5fsNwL7JgT6WWV": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12sMTmiTwWbDhbaXqvWjaUMkKzeBgmYbepyk47Y5NjeyqoPKLwN": { + "balance": "3467.728898182", + "bytecode": [], + "datastore": [] + }, + "AU12sMWpxLCnVthegV99xk6wqpbJeJy4WKcBxnY7UvnrtevkzY331": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12sMku6xkqgtx2Jg7yD2zypvJ9h1qYzZzKb1ge1XUxiUR5aAEf2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12sMvRK61Nmq28R5Ne5R6RZNhxtkCPeLAtaxVdqNRHGHQdPJtMv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12sMw9RWWW8P3KFGMyQPS3Nk9JuUyPqPYs1H4rR3KKwQC3QopuD": { + "balance": "1872.206310407", + "bytecode": [], + "datastore": [] + }, + "AU12sMzsPRci7YGb6vSZwUWZvxrZtKfjvXbnCaiBPpMrmwegQm2oQ": { + "balance": "1321.699346233", + "bytecode": [], + "datastore": [] + }, + "AU12sN7vxRfzJap8LbxhRiUSn2EqhZmXPcCFthDXwMa7RohkqTzF8": { + "balance": "2261.835616392", + "bytecode": [], + "datastore": [] + }, + "AU12sNYX7CRfN2dPfYgqLvjdGSQJunFBR6Lc4XjrXPVqwpjerv25s": { + "balance": "836.704134623", + "bytecode": [], + "datastore": [] + }, + "AU12sP4JWU14jg3FUXChd3CrHpuyttucZmKBfPzfvPafpQS4Lehb7": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12sQJcPqxQ1LSzoCPxdSR2HABqFMbp6BsAP8jm2trWH3WPERrB": { + "balance": "2724.550156820", + "bytecode": [], + "datastore": [] + }, + "AU12sR1TJQ9v7V11GLUDTrZCRbtMjfLHqiYpW9U56sPxuPSx1Urfc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sRRnwo9Fs9hLeTTW6kdyZSGJxeBkBdJS4NC7UtmRAaFxqEWqn": { + "balance": "5442.282236586", + "bytecode": [], + "datastore": [] + }, + "AU12sRbwmzSgqEd7BrsLwFy43B63tdSk5NgNtgxFKQ7RriSbBeuQp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sS48KHPe4pPzMVXoVwyjKagwMp5SvSRyGTQCHdnacBDxZsfQc": { + "balance": "2761.451186257", + "bytecode": [], + "datastore": [] + }, + "AU12sS7D2y47M6FLEXYShdwW7jfmVryfEgxuvLfHKaWmsX8HfZgo6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sSELFm7tk6cSNJKLdaAkGndUQwhNEguBqUbURJFwpnmTxSE2N": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU12sSKu3AGX2dDEhaY9dgiwTpQXwqqToFphPKVhnyQV7JvWxZwpW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12sSNg8pqQCRa7Yb3rmCotJRZvVgAgze1QcDZwvU7HzYUxgAn2F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sSTBwB26JSUSsMWm6gdWyCba9eHJo8r1xgyLc9JYt9Nuu2bCY": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12sSV1wktGkHddvfV3iQV2qbaLcbLiC1ga4Z1mTsH2QYq1KwEsJ": { + "balance": "1074.335222464", + "bytecode": [], + "datastore": [] + }, + "AU12sSW3X6oTszthuF6oxENed1VMLnSYnn2dBKzSpaaRcMTwhi5HE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sT7cJLQ8piFeL441tLXUG27pJcGV3PkEKEbrQat6xPePXJS2m": { + "balance": "1532.580768487", + "bytecode": [], + "datastore": [] + }, + "AU12sTeP116Gqcdjo4Nugdzd9QLv3fd8msbGrZv1ShsGyTgBPsW94": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sU64RWy9Kh2Zc1pnHQQ3KHEYgVuEBXjFUEdiznoWLtmGrAh39": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU12sUHyu3WKYWpKYnhA7nikAC1PqKygptNy9PmxLaWyRJ5VNmhLB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12sUsMRxRVExjpGgkrevuJpq71r9RWhXSXchCLuuwUn4Ye7rVKp": { + "balance": "1805.335572305", + "bytecode": [], + "datastore": [] + }, + "AU12sV7apgLnbqnaVZoFidwhT9TnMkgiKFhxX2HSGeeHxm6cUtkZX": { + "balance": "3649.537835655", + "bytecode": [], + "datastore": [] + }, + "AU12sVTDLKPCd7U8ksjjeu6Ge2nA9DWzJtDhx3x3ztcRwziMbSKJH": { + "balance": "3486.885261028", + "bytecode": [], + "datastore": [] + }, + "AU12sVZtn3hzDTXvAxfXZpQr8zCuHSE5a92FjUfcntfrFNUEzxenR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12sVcfVfVqJhadBUEQaoMvszFWmhY1ztiopTQw4W7pV2siwr3eU": { + "balance": "2622.430253799", + "bytecode": [], + "datastore": [] + }, + "AU12sWDVh4bnWgNU5joABCXZHmyequPcu4jW3zfbzJNi1xJsT2XHd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sWedA4dWW47LsTStwoDocQ5TfgF1DNLYksNieCTHAUHvNh7DW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sWzK7h6KQjEQDSsatKfqRERTFgNL4H8i6suV1EZVaZ43NU64a": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU12sX9GhTnXWEXejAgp5PNNPiZb2EKoJmfB2CBUZDKQdqoqrRJWe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sXRT4mwCC2u4Lmhxm6hcub5zfv7a9ikxpRqCnR7UgWBJiqKeW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12sXTr5n4syif8nrHKLTt7TDUnwWryWhDpbTwcu8Vh7AHqPVTAH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sXspuTqpJdBnRu1mVnizx7KAJzXQvgVE7xKHzyeDTeZVmpLWQ": { + "balance": "2758.089717100", + "bytecode": [], + "datastore": [] + }, + "AU12sY1CMsnHKqdQ98dcayVaAi3QiLEku97MFgQJN5dgw48oYGhmo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12sY3Uv1ifhjNKrb3T6pKHpo6Dn33jHNHQrCc3nKvWBsoVQ4aaQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sY5LHV4k1s5Zsi6yY8mzXF8e8oheN6fV2hRHFWn3zdHFVvvJG": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12sYGtAfuWvTi28MbEJoVtYpdP6vQ6mEnHtqsWNBZb4tJZ3EeUV": { + "balance": "247.406080861", + "bytecode": [], + "datastore": [] + }, + "AU12sYUX5N4gecuAqwkdEN9jw1c4gP3zLLhYs4PmGFqVgMuEVm4AG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sYVAz2F187fjtmXwFqzdaSWZ8veXWyaeecP3rJtjadjxMBUt7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12sYZ8GUudu1TMijbES32Wpd452s4UhB2UazTQMajkEpuwiVgoB": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12sYsQxAyndgDocjqjg6hW96YDhicrtqSk8AMymLEH7dvBoPGC6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sZ53VQq5VY4o9JPYqFVU33MBqpPXtv7EMvoBtVkXRo3KGtxDG": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12sZ8GnQHRmSXTo69vzP8oywZQX7tNJxsvViQSpyC7jqeD6SSrU": { + "balance": "1246.661204390", + "bytecode": [], + "datastore": [] + }, + "AU12sZYtSocWQwm5wprTe1FLQGSm3d3EDheH463iKVdptJiVw1nqQ": { + "balance": "3687.254353963", + "bytecode": [], + "datastore": [] + }, + "AU12saQ6oYmYdFcs4kx5zfyAFXg5Mg2Xv82E8yubCb9pruN7cwiyc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12saRvwjqrJe5kXTUvzXZSi3ZH6YTLgdayTw6dew5M59ZBHQtqr": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12saffB2J96S6e5P9J3Q4Xo5hVhtz1cMJkNHP9S27KZoYYPepED": { + "balance": "1640.185487614", + "bytecode": [], + "datastore": [] + }, + "AU12saw9Mimw9Ty4yzxjDBpFBf4RX3gtqxyV3QgwmsLSemFbsDmHY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sbFtZQeoStPWkfCoAft9YQoGw6oovJp3uwSdJ4RHTyAK3S6DA": { + "balance": "2433.599811279", + "bytecode": [], + "datastore": [] + }, + "AU12sbTNmM3pG5dDadvtv267nwWcRwL5YJafyzmcANRrkEuK7obYz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12sbvo15A8iHCrDxJG67LQmEz9yMpagEGtjDHj1Vkhkkki8soUd": { + "balance": "775.362848474", + "bytecode": [], + "datastore": [] + }, + "AU12sce7bTSLEW8zoRwBkdFFFMBtXMJaYpSUUiske29TYRAPb8zy1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12sdDdRuCRhGVZanHEArS1iFtgsm9ZpvkEbQ3HvMsf8FkQA48Ti": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12sdWcEGcveVHJoF9p99eKf9Ef2v6XgPoLssvdz459nxGQWEhBw": { + "balance": "708.040041678", + "bytecode": [], + "datastore": [] + }, + "AU12sdi9FmZ1YSZ16gkxfZ6RFfhwHp8ybhhH6Gtz6yfHg92kUynUk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12sdwMv5kVFKVYavC2Kv8FqR2tNJnQLhNsW3RT7be9X8gDGPpjs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12se3h9G6xvjf6sdibzRtnU657hYLH2RQ9nhZNr3KADAL5jukvE": { + "balance": "533.267849087", + "bytecode": [], + "datastore": [] + }, + "AU12seNrZdfJmjzbbw7brxpM6z3RNWK7WN3EBfNiL6RB7X6AN3T5F": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12seWc3LXHQAMQ1dcyzsoB414aGMgfBPu8rneAprA43YFYfT1yw": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12seayUf8kF2eW2uGngE1HeRUnztb1f5utKCecyE92W1MN21PcU": { + "balance": "1422.183977396", + "bytecode": [], + "datastore": [] + }, + "AU12sernP3RrbcGXX7p4faJjYTdmJhZfRLSxBixcfCGZUmcZcBKYp": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12sesP2B3eXFRDFKGbmXsXHrt4BcgSL61vvQubhs1PqK8GQqMyJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12setKDSSZmRdyZr11cy6QGYNfEQdrgXtvktGufNQxTanLmbLT6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12sf2aKGbVo4Y8toLSUym2Ctsn396KFT8KPUdmSaYc1kMQ2MgGP": { + "balance": "718.464661700", + "bytecode": [], + "datastore": [] + }, + "AU12sf8u7mHcJZwE43s64qaaQL51dD9j882HZ5ckELj2ijvtJ123y": { + "balance": "3793.922240342", + "bytecode": [], + "datastore": [] + }, + "AU12sfCC5o2S16tsMVcJiMhMgEdUQRdypWySjYyK7Pp534hgXxBcG": { + "balance": "2380.999861954", + "bytecode": [], + "datastore": [] + }, + "AU12sg2JR28pHgAQMoPToxdaNVBRPupEWjruzLRkiPQ2ncKvzhcjL": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12sg4pdJm79JVWndFkSQfj3mQgQ6M5gBb8iFo5sr3Ci8UZpS6gL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sgAoaTScdmDjfJe5Y6RijYhQF5KSNx59XNDRV518MkN5PMnCn": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12sgaRnDjdcNZTdDNxCtsQDbk8tTHmfrYeZfywhnCGx2oQ9s86U": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12sh5qjokDj3UCnCrKwLFnTHEavqVbhQdKdSL9LUnNYWsbvFtCQ": { + "balance": "168.223488259", + "bytecode": [], + "datastore": [] + }, + "AU12shAqFU5i4tMVeW9Uq8GyGF5dMD1GcjWp9axQm6Tvm1TMUtKmB": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU12siDnVEWiajDb3FmcXLysk64RTVhdbXj1zHJAJZK7N3tWVzqwG": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12siu3nTHkVWZSWCuZq1fZCMiD37sU5cZF3m1683XfCVTRn8MHX": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12sjP1WU1MaMXCcwqUW6y4uzAocS9fDZWrQzwZRYgyZUc1f6HbL": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12sjQpy5KEfAmKvi5JyzyDDdE5M4Mta7geC1Xhf5Jsuh9VurS52": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12sjdtt9hFHtCVuqitHEQPmpUgKDWFDTsFJ6MdxnQfTNAf3dn5N": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12sk1a27DUbg9zB9KnyLE1GwfCiX6vSKAQTxXGSFozVcifrVLma": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12skJUFPTi1XH6L2UdnrHSFu3yAj5krsKF1Q36z1f7Qr6NGAFoh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12skPj41DUC6joQrEQ2eJryGBPH6J3KG2m9miWM6wmjiwTpyfW": { + "balance": "1369.922635928", + "bytecode": [], + "datastore": [] + }, + "AU12skTezARJwj4jmnboLkYMtu6pdRh5ZS56mWyTdNkEt8nSDrgEi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12skXEa6Z3CbPFAt4gmS2vwVExosEMFEJBWHMX5e17ey1paV9Ln": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12sm5TsvCnBJEdbSyZ3Xer8hrRqZGXCX1TNPALBoi5dNTBjrJ3R": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12smJYHx3rbvzpXxqeN3uZCuqViTbi7iNWa82oQwBhXGwcp1jZh": { + "balance": "1026834.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12smPGArytafuoXKU5wj7zr4ToffBqhoY7Ne4swnRtUEnF5Zoqy": { + "balance": "1387.206150349", + "bytecode": [], + "datastore": [] + }, + "AU12smv2fJdvzjBmyPaHo23snu2ZWbrarKjSNHhiMMZgotX1nvXoF": { + "balance": "850.623677326", + "bytecode": [], + "datastore": [] + }, + "AU12snbq5f3dr2LQqkFqY2byMfeNxNsKVbJsEAM1XMK6Ck6u2ndqC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12snqbPHyv1J6vttGFVi4bTqYiQUbKX6zKdsdt1BFBiPi6kyhFp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12snr98Ct46gjZCHsUryJdpK9Ea7VT92JyYDfGNVEZp7jRwEr2s": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12snrxXTvv8QtVrbPQvFXNvadsCv8LLV7cUBaPf74iRZt8QmTNm": { + "balance": "2589.732999393", + "bytecode": [], + "datastore": [] + }, + "AU12so1KbYWfxYP9f28DzYudt6oCjYi7U9BpRE8RgKW83yHUPnoaV": { + "balance": "2842.165183146", + "bytecode": [], + "datastore": [] + }, + "AU12soGycEz1GBJmEvFvWZjU6tLseRd2SLwjQngQFzPKxEZahXGwu": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12soH7oR9XVh8nHw8r7jgdGiJsdR7Q9bpXZmFhPaWSfSmA8ehTR": { + "balance": "3165.348433840", + "bytecode": [], + "datastore": [] + }, + "AU12sogLnjLfiTMNWXQ88QtCEboXn9E3yKMiQhDAWa7eXnwSFdcEh": { + "balance": "5.502311067", + "bytecode": [], + "datastore": [] + }, + "AU12soks7pYV3X34HdAzpWXM6TgbQ8Pnwedu347amViZJHadkPgkR": { + "balance": "1139.923699924", + "bytecode": [], + "datastore": [] + }, + "AU12soo6mWH8axTsHzKwg7mqH6Ae5YoY8AtxFnLfG2Vbsi8Z4byBA": { + "balance": "5460.831445405", + "bytecode": [], + "datastore": [] + }, + "AU12spFNqbZns5AAze1Atb1cQNcEGEKdyjnJnwbYSZytpQKUwpkMR": { + "balance": "1409.175933912", + "bytecode": [], + "datastore": [] + }, + "AU12spPruPv27bBVSy4f5U2tpzSxRVQS7eqUwYGEijbe3LRKFvR7L": { + "balance": "1789.170751027", + "bytecode": [], + "datastore": [] + }, + "AU12spThQoj5xuKQ6katUcEBUPwGmU8g9oSS2WminySQWn3xcELnU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12spu4fGhjQWCTGmSDhnvkCGeXNxqHMh2HNsn52KLiGuDBBTupq": { + "balance": "2250.357371479", + "bytecode": [], + "datastore": [] + }, + "AU12sqSdymuaQjZyKE3c3ZfxiEKqKejGd5F9Xy7wkS2Teew8R2oPV": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12sqbMUDYSqbm7u4iqXpQ4vJxrffgRJQ3kn1tGhy4hE2AeZQ62": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12srC6oZD8A3mYqA5tVL556injkVWSvgVScNdxJaWqtCsbyeFyf": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12srTf8D9pcMXiodzwxuDnKVQKWnk6qsR1eCDzSrKT3qJpg1Lyy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12srpQiJHgpeGL5gDPS5kCRtJiEEwreziX8KXsbjRYtJAP6E6i6": { + "balance": "869.461597307", + "bytecode": [], + "datastore": [] + }, + "AU12srtXvtcymqbZ2hm9T29yzsVvrg8PfWyeMNKmVfhhZxEGRW4PR": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU12sruCmxQjMuD2cGuSk8ZHPjxcTCRh4oiKFEAJGdDQmJeQ7warC": { + "balance": "3644.912647135", + "bytecode": [], + "datastore": [] + }, + "AU12ss1xjyHn7KmNz2pF3dF24SKsts9oUcUYQCughGVk9bJwd3AE8": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12ss8ewQdh3XnWNAe66PoJZvodgWptZUS2PSBMxgWqz2PC5jQU2": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12ss9LF7owMpfqXECmGQcA8MhWLx1ZzAcvgNHB5XUkLYNqnfdUH": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12ssqLPwzUF5n9EkPHyrfQsHsPjeF5P4RSs1UxK1MqDhLTWLtyM": { + "balance": "1012.488175252", + "bytecode": [], + "datastore": [] + }, + "AU12stN5HTJ9gDQf9qGtXfPQs3f5PJu3QWYQnm3ZVj9PjaM7KyRRN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12stcQEjuXMjPSZ787oKSexxcpyXG9eYbBdDmXrh2tyjhJYxuto": { + "balance": "1133.380004976", + "bytecode": [], + "datastore": [] + }, + "AU12stgetfFwWYeLNwVdwR7NsrEHK2qZQWexBTnD6xBWoiLrLkqmd": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12stjdcEx6eumgAFeXga6tFyT2vnmq43Xk5A7mbeqxBDvgwcP9w": { + "balance": "2481.863055146", + "bytecode": [], + "datastore": [] + }, + "AU12stmS68ikiSUsptp8Y8x8sda3bSnzkj7i3pqhPkH4Bt4kSCVv9": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12su7NURb8hqrwL2Jw86yCsHJyXruCVMWU8iqRXGHqVoo3u4keZ": { + "balance": "2733.671261983", + "bytecode": [], + "datastore": [] + }, + "AU12suHK7KKLrWwkoR2FDStjCEv4GzH1yh1SAQQKRuWcDiGCPiXZG": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12suTcw7B7L6mmLGW99jafqeaGcHzFThtqb3iSzvr3qVHbZiuv2": { + "balance": "1036.053525774", + "bytecode": [], + "datastore": [] + }, + "AU12sv1FYAgQoP4h3DBQpn4Wx78ChGRTcotHVbyLxE84QmQTVNxMt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12svBKiX8GLactrU7fcNW8jAb7pmBFFfkzG6ELi63CpoRTKf1K6": { + "balance": "828.473344278", + "bytecode": [], + "datastore": [] + }, + "AU12svKbUZ2drVMPgZFV692AkzjVRL6CuweUCRhxW9GMFNvLi5w7G": { + "balance": "1428.106133265", + "bytecode": [], + "datastore": [] + }, + "AU12svQWgQ1iwyW3UfpFmYYdcq9wYbCr6bTJQBJRLKoLZAGUDsjBY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12sw3KQt5cs8gQrjHyRCqAYKKL2N47yhLFAZvQ9M5SvGfuPmV8s": { + "balance": "785.767361164", + "bytecode": [], + "datastore": [] + }, + "AU12swd79tpFgbPe47MT1Ti3AuYnArGm31XPt3T12RkoTTgtKCfPr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12swm2TeEacJvTNQGcr8bdCxjT1RsrUxNyjSDwBH8GupWV8h7ZB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12sx5spejxqueUvNctz4d6VBcrzdJUMzLumAHGPM1DmiZhJbgZz": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU12sxT9YHre4SUk3JiX7mQyjr5xzHRSwVYoQApUrQuGMbFECziW8": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12sxitWX1tN3eiBe7jcXFhbDGGCS6aJP6ufhVZeKMmzQ7fyJTgr": { + "balance": "950.610743955", + "bytecode": [], + "datastore": [] + }, + "AU12sxqutrvfq9V4zBhAcuooDd391YLMFWrHSSaCCXH3dGvVgkPqD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12szHviyA2BQtjm5jSJkcKsPHnS675Vg2bjpZj7xMmrUGGdxZWh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12t11fXviJt6ZkGo4VNQ4C66h1JGGCMZWzB5Qit5aJdap1RizZY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12t13CyTfvWjvcde4KJNJHBC4y1VnLfvCsvhPofhwx6HCYyqd46": { + "balance": "3266.766605437", + "bytecode": [], + "datastore": [] + }, + "AU12t1rgeE96S834WdF3CiWPBLAno5nyLZA5YorcdR3yyTYSyH4p7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12t1zf66oRm7aLkjfR5y2tQt8bnZsQMsdDWLd5wqjt2MECaQDnQ": { + "balance": "638.400526506", + "bytecode": [], + "datastore": [] + }, + "AU12t2PUT6cfPviRHuBY7XdLA8tisneQMR3ahKdD4cgKZ41MB9evR": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12t2RzPpcBSESBHnvzPUv2yJQ5oQKucoYwdet6zQBv6KEHeHMSw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12t2mnxAhq4cSNnCgSsWPpfmR4WmfRLXFV29umV1t5J575Rmtsx": { + "balance": "951.241937681", + "bytecode": [], + "datastore": [] + }, + "AU12t3CRwe9WqY3A8aLtstQHMdoyP4ZToZRdPcfXtKsbrfFEt12P5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12t3hgnLL8qNzVFaUH3RstiUQKWYQeSygy1VUsv4QPeTE4hs6iB": { + "balance": "1216.362944876", + "bytecode": [], + "datastore": [] + }, + "AU12t3qSbGqJuNpH5LPC6sY7cJngyPXNxuKC2LtsaBRyymfhCZ7YN": { + "balance": "4673.017064262", + "bytecode": [], + "datastore": [] + }, + "AU12t3s5Jrw95s8uVMLCDuWfbt9CW7mHSBhshwhLfYEYhbjJk5ukQ": { + "balance": "2741.123098837", + "bytecode": [], + "datastore": [] + }, + "AU12t41xnQA9pVgMmir6GwTKMLR3qM9n41D2BFCdMmPohJqcXnoRU": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12t49preoqfxmZjNNMUcbgkyYhLUfT1mRMPefzhHa1LgTrHGH8T": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12t4C67swapd2LFFDsyfg1qeKyMzu84uDhN1cBUryaGvPPUcuJM": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12t4UY7HcELw7mM8gWkHQqaYVnjrc7DVBA14d3p3S4U5yk8VB79": { + "balance": "2161.588581685", + "bytecode": [], + "datastore": [] + }, + "AU12t4eQjetPqnSxnmmWpGgE3f8vNePdjhYxyaAhehCXbDQLh7YZd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12t4fvi9stb1hW294EM7ZfCR6QqypTDeebJvWPZvMMNCgvykE16": { + "balance": "3301.952229005", + "bytecode": [], + "datastore": [] + }, + "AU12t4txXJU5pAU8WuQNm8C2mb1DWbk56VxnnoTSnfxXnDQ6TR9A9": { + "balance": "1440.668630544", + "bytecode": [], + "datastore": [] + }, + "AU12t55ad9J6vrQoynq5JjwUCHthrQYyFK3feRZeyuEGmGyGfFj3c": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12t58kJYxZeX3qdVqToV8fzTn5D6sHV3YwSUdYYE4sdZBbwDhTx": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12t5Ds2yiRwC9ZRBoSA8ew7jioc75Qr6RzzJjqAPwV1Xd8bvU56": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12t5JycjVUY5Zr6PygDjP4Vj8iiDGZJmwHH16jpQ1iW3ot1iV2i": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12t5pL8Ga5FcvXEau8d9juFwnQLRQygtWy6eXgTbXtvtWXUMZ4J": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12t5y2g3zLpW8BpScCckuiznsmxAnBByx8XoV1PMXhmRMk3ZaPb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12t5zEGkTkgd5NWKL92D4p5T35fxENLk8emSkSSLN6US1M1or4u": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12t6JMVq7nguTpf7KAk8bGriSEJ3BTarqyhKBz1pqBPVtj3atvg": { + "balance": "4033.488204273", + "bytecode": [], + "datastore": [] + }, + "AU12t6Y8jA4ChZoCNGa3W2B516w5taa1tztatN13peDioJtdKNukt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12t6j2pRh51nYgPjCQCkfhBYoF6f9BzVZyNbUSBeSdmMJB5v7t3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12t713yyBAPd8Ks59PHamSvuiSRf3cZa9PASbx2K6LrfU8MAsxZ": { + "balance": "1267.186114355", + "bytecode": [], + "datastore": [] + }, + "AU12t7792gbpzvm6ZXu4nZyZWy3hnmFJYpyUfQjnKyPXFKR3H2bbf": { + "balance": "903.984314291", + "bytecode": [], + "datastore": [] + }, + "AU12t7yP71AaYL61sKmyv27TD7EWeMZQkGB5DRX48wwiFeoDzNMTN": { + "balance": "2887.912315704", + "bytecode": [], + "datastore": [] + }, + "AU12t8HjWEyBqFe9fNh9GqiBk8FWCB69i1ePCAmtEQAA5KJ1dz5LK": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12t8VdxcZqSeUgyBPYqF7rjnKNEkBdrBG1bZPJ4fvnwzG6yHexo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12t9H53T7tzT1NFr4Q2C8orCrvAPM2QHsD5oKFHaKhuXbrBzxMK": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12t9XaebCeAF6tV3pQ5gad8EMdnCcDEWVUSGWHHgNRK2nPdW62A": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU12t9ZarxZfk61W1qLPXQMeUNGDpq2pX6UYiRivcGkaSLekX6qix": { + "balance": "2353.950292522", + "bytecode": [], + "datastore": [] + }, + "AU12t9ZfHyDPqN9jDndXVwr8LqpEsYX55pxBGv2V6RF3oEkSpAQ6T": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12t9i73ac7NWSxznZqmAmmmnbx6xvvL91dh65KJqChdTjR2ZYLQ": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12tAH168kpEjg6BmDVuFBFSjqrVesXBKPJk9UstJP9q2wC7eP7P": { + "balance": "3010.170191025", + "bytecode": [], + "datastore": [] + }, + "AU12tALa5twtKv5XiQpmB2vJCLEi3oRBCabEyVPiGiSvNWxnSaHrj": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12tAZ8Qa1gHcvTypnNEQoRcJxn2LoCq9WVceeauLZu9V4Umkgs5": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12tAva8t2ay6QUdVyhNFQkkSaREFhyNjWZMEjByPfCgPrQbnLT9": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12tAvh16wcneMFMc2cvkRaUrenPWmHtdcu4HSjPTSrb3NFgSLh7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12tB4f7AeqvUF4pPFfw5n1mLnc1eqbHjQjyzp8uw47wBwMwiBsh": { + "balance": "1787.268006367", + "bytecode": [], + "datastore": [] + }, + "AU12tBAyuXwBedbTvajVa1p8qGRpv4UBZBGUBKp4mU4xGCYx3M9cZ": { + "balance": "1956.259781786", + "bytecode": [], + "datastore": [] + }, + "AU12tBJ1HdL4AdS65ZJZ32iTbnzEvRKarricGcUqZ4Le3RX9ckJ7T": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12tBU1PZrPxvAjDoNM32MYuX1qZtBn5giLxXxiJdg6zu8jdqLeL": { + "balance": "771.968142203", + "bytecode": [], + "datastore": [] + }, + "AU12tBX5yHvS4bihb7DykPUdpng3LB7hPBbYtDV4kxSAqamk3BYN1": { + "balance": "1777.079860807", + "bytecode": [], + "datastore": [] + }, + "AU12tBvPYRqbur6GSqxiGiFVCkNibTSAryS9G9EvayHpJgHH9tCrD": { + "balance": "1467.740043644", + "bytecode": [], + "datastore": [] + }, + "AU12tCHZdNwueh5teSU9paqJF2HvcKAMVxeARVFZ5e6K87V7epTz5": { + "balance": "2714.484634199", + "bytecode": [], + "datastore": [] + }, + "AU12tChLtheqYgKvkLoKf3KarUybf6k5fR9rrKf4AJP2CKJ7dbag2": { + "balance": "2207.316105840", + "bytecode": [], + "datastore": [] + }, + "AU12tCtR84EiMhXAApzCcXyZjHj7tD3c7pjgjuxpRT2PFyhCu775X": { + "balance": "963.538620016", + "bytecode": [], + "datastore": [] + }, + "AU12tDj8iR9QZdBsaxJVwaXyUZzPFYvTSpdEFQN3EkQkB4a8U225i": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12tDqwJR2r9tPix6MjR5vNVeQLmedv1Xkb72i2BTeKmw9FpiTd3": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12tE5MHjyidszKKJZfnbusa4gV3k8W1k9wfA7QfyyV8E277v5dS": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12tEFmno6MTCX2AjagLL9rhmD1RjQaHjFD9b6agcFPLDY39ox4x": { + "balance": "1227.497381721", + "bytecode": [], + "datastore": [] + }, + "AU12tEJQB1uVbXxK1Y5hXp6bGEEP7zXWv5LWnC84MpJJkyKJk7LFS": { + "balance": "3890.484052819", + "bytecode": [], + "datastore": [] + }, + "AU12tEWumWPenvLiKmWvBWtyDjXNJPYYX4XSaEFzYwG2EhUMqQsr": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12tEfDPqdWmbCbY9DuUZegNSJKgBMqPcbziLAFpRgLgd7kQEex2": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU12tEnhvvRQqGx54vn9sZRGYjBc9N88oBqwmWV1pUEXBgFJneDJ1": { + "balance": "14407.000379728", + "bytecode": [], + "datastore": [] + }, + "AU12tF3PeqiQPTguyzdTnp7Pcr58ZBu9hA9mWymJ73dDJRxMXQQjp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tFSyTR8j53r9voFxvg3e6mLPEB8aMwFZdBcmNjEXunMn3uQgj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12tFYE5fWUkoV7VuEVMqcEkMRNY9hGBfPL9LWHjdVN7dRTBDR7Y": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12tGVEzCSiSA2Kn5cFPW4655MqkPVHunkbeLCBuzTeYnn2CWNbQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tGb2mukDzw4aZ7ezT5tEShQ7eCwj986abXjFAT6mmpx4Gtepw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tGbVTQbr5QwWvvmPfjFUponqh2FM1A1yenp3jLJvtWDF82W2o": { + "balance": "4564.055706976", + "bytecode": [], + "datastore": [] + }, + "AU12tGu9H3Xk8BZU5rwXGkHYdxezstn4maQARdGLXTCBTkRCCiiiS": { + "balance": "5047.912565025", + "bytecode": [], + "datastore": [] + }, + "AU12tGwjXioJQVwV2B2h3wNtHuAgJvXaVZuiFb84uM9GT8wBKaHxX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tHWbGbzed6QgPbzw7QjiF7UhgmqcMNjWGW8FuZCTV32iL8aNS": { + "balance": "1307.866677832", + "bytecode": [], + "datastore": [] + }, + "AU12tHb2mGrcaw7TGF3HoHDBVcHeZrf6HXrEydyLL6szwJzjjPqJG": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12tHvPCFH5gAGQDRyUfRadrCFuWRhAb9ihZRUzDPhdcYR4aviv4": { + "balance": "3721.756753322", + "bytecode": [], + "datastore": [] + }, + "AU12tHyFXZTPAWVHtFtgXzf5f6pf6tevby7RFU1VtZfTHSTaaq5k4": { + "balance": "5615.276981182", + "bytecode": [], + "datastore": [] + }, + "AU12tJGUqsNDjxZxioP4LUzHif6vUKVkqNvdSGRtWMLBXFt5x6R94": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tJgTo3mmu9TyjpdExWNb6Eh1dnBeuaCfojMBYpLhDLW2AbrkP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12tJxpncoy2LmZcisNt2NBxTs7954vdL75LWACRSgaiuujrbvEo": { + "balance": "4507.455308297", + "bytecode": [], + "datastore": [] + }, + "AU12tK2pZhMrEjtbuqX7Faz4Knvx9v2t9isKtMc36BfPcxJbg3Aqs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tKB4vHSddQbZjstfDahRFoJnBioJ2iBzr2FcCEzC59h3mTSVD": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12tKXNi1YUGp16SY32KXnr3Saxzd7DRiSFNGYoxDfx4jkzkkq78": { + "balance": "1498.040267792", + "bytecode": [], + "datastore": [] + }, + "AU12tKdNVvyYRdsFcHYFWQhntJMkwLtaF7DsunGgEqsZMqsbqhR1K": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12tKoVLXqRWHefbWQVVBXtMmb68cCBdfemKUEeRsHnzvAyMFUkX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12tKsTsBRGWpTAebJa4kZizp9eCeu325Wr6wMkQwGKb185VQWvs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12tL5Af5pN5jvbp272eQe8JDnFGFvdhoejcqTKPN3CRtyhh1ort": { + "balance": "1482.275405510", + "bytecode": [], + "datastore": [] + }, + "AU12tLfjME5rLz8gKDKnyH5uaws1VRioWA7dTpJByGPYnGhXsBrzs": { + "balance": "1627.475284335", + "bytecode": [], + "datastore": [] + }, + "AU12tM8zPrg8ZUdaPg6x65xFU6XqS8R3vUdubhiktMEezCVYS938w": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12tMADUHtvsZhq2NiUQZ8HX5P2nW7Sk7cHGFUu2926Z5Sv6j9Ja": { + "balance": "1372.703320877", + "bytecode": [], + "datastore": [] + }, + "AU12tMJWnPGdpqoNFbZxX6usmmmCjWzjRiHgpJw2LyLrt8ShnftrG": { + "balance": "2420.568847079", + "bytecode": [], + "datastore": [] + }, + "AU12tMcF4YEgzCKK25mcPwD9abiq5pLak1nDBN37gvXjidg18sZWo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12tMg4MLxHN7zn1wcEfho142Qtn45Jq7z7GScCWU9Xcauiqf3Tb": { + "balance": "985.674979653", + "bytecode": [], + "datastore": [] + }, + "AU12tNAs9i8ThFpVZB7ZzvUHVZaHZsnfbPJZBnJswR5vPZFSromEb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12tNBV6sKr4JHXDsEpFkhW6tHkVPYbpSnJhTePgDAkUrdRsx7gX": { + "balance": "1157.399712515", + "bytecode": [], + "datastore": [] + }, + "AU12tNFma4Mtt2qtnVhhY5v3A7m73tptBad5wKo5S1XtTiXs8BL9W": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU12tNFsfJyCwxXWdrNAh191sqgzvxqrCG31UMUjiQwN88JXya3Dn": { + "balance": "2089.855180294", + "bytecode": [], + "datastore": [] + }, + "AU12tNTvcvQZBCSZBVQeJGnhD5Scyu8Tsziim3QBPXpS5b27HP52U": { + "balance": "4307.627148140", + "bytecode": [], + "datastore": [] + }, + "AU12tNfys54bXAY6SGAsghNiUHZ8goNx5fcE5m4JP8ztiMJSeWJ4G": { + "balance": "1311.263766106", + "bytecode": [], + "datastore": [] + }, + "AU12tPh4jDhGq5NZdAAhbD8SLPJPJcfBc4S2uWyWw5NRcFW9Jrn29": { + "balance": "26.063207142", + "bytecode": [], + "datastore": [] + }, + "AU12tPpzmG3M5hYL3aCessEWCFbSVqc8rHdjx3VnNAvj6CC5BA7Wq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12tPrQcKDw5XkhH12QbV2j6LdjZMPCk1vz3J35CE4xuUp1L1p5i": { + "balance": "586.711812289", + "bytecode": [], + "datastore": [] + }, + "AU12tPxmEkxNfrFeDyzZ7de2qdUMs27XLhckJzG6pTZtC8MbGapms": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU12tQ1pVTdcyTzUBQoXu7mj8ZdvGcn9fNrVoKvMVqrHTEFv3Qnm4": { + "balance": "1069.928997241", + "bytecode": [], + "datastore": [] + }, + "AU12tQLBhpdHA49HCB7LfsJDgrr5jHMd5nptuMfvh9iR6yAcwKftE": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12tQhFsViP8uDzP2yy9WKSeYuWhe6rMzDQkk1hwpVnqH79qQcA5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tQxdQgHY1VyXuwbU2bTWX66Znegvx7c1MQ6A4Epmeu151CffL": { + "balance": "1305.783819151", + "bytecode": [], + "datastore": [] + }, + "AU12tRDoEF9LPSBwWm8WsWjYzyNWi4FHui43E8MbUELMMC2mAdkgG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12tRETaqj8LipmMs4xRvif7AvT1PBzAGdQdCV3KnXVPAkfRhbyz": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12tS3VLirVDgYyRNgDFxz4q4voog9vEgWrEobhCKLM38RdBQXdP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tSPuzE7iYfcL7MnoBemsERovg1qg6YGi2Mzhx1xn1WN3M83Mx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12tSRGZQfdYLsQUs5DkU6vLVbKaSSgaaTjrQDsUAH1xy4BReWFA": { + "balance": "1057.122223782", + "bytecode": [], + "datastore": [] + }, + "AU12tSb1dbszcBfyRHo7YaQFA4WtU3Law67z9rAj4jmpejQ955vtE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tSvMW92zmTNQNcqggW52XY8iyudgWAc31ev6MhvDF1gXibTKE": { + "balance": "185.264908261", + "bytecode": [], + "datastore": [] + }, + "AU12tUN8P4GehPhUdWhRH4JDeRA1jSC3sXbnffNGAEh3heSADJhSB": { + "balance": "1033.025586980", + "bytecode": [], + "datastore": [] + }, + "AU12tVbdsMJftkuciq3MqgZDUE2RWMhZrrmRSuNvZdQJYyqe6uQwn": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12tVcFPVPwkmqPDPS4D36pYqN3vyogobcormFmAs2uDa9MQjJQe": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12tVkhP7KfcVGWm17qBbDs8MzkxVUsyhDBDUHz4wJviGkiNxU6G": { + "balance": "686.855582104", + "bytecode": [], + "datastore": [] + }, + "AU12tVqbZU5EyK6UDeAd4B2VS2vbzADcHGDE7nWw225p3WDYY3Ep5": { + "balance": "4449.956670021", + "bytecode": [], + "datastore": [] + }, + "AU12tVxRHrB19diLMmTswY3pbKqvkDdNXF7aRou6HRt98rn9o3wPb": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12tWi1mYZZzq1nVdu5B7phWaspkaqf5RNRUm6xeWSzAx7DnA2tg": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12tWq5QiSQbZAN7YzPeYgrq5oryshnWnALiU3HHu6TLgveF9gJp": { + "balance": "537.109498726", + "bytecode": [], + "datastore": [] + }, + "AU12tX7iZPUi3YrHz9GyMfJsec79t1LpsVZ4iAyqE17uTKkq2uiGj": { + "balance": "2223.617205868", + "bytecode": [], + "datastore": [] + }, + "AU12tXYgwW845CqJRmbRo1wYHjgY5Gywy9XXXYzF72UaBD8vMMtm8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tXa4aoTUH34uvkjUAt9YmrQVWrweCbvzaT25fSGf9jNepuUJA": { + "balance": "1913.054779363", + "bytecode": [], + "datastore": [] + }, + "AU12tXb2od7tbvfN1BYdTKj23fSEuVY2pteBh8E6Bs1k1u4PsiTXL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tXiyPfJKt4nyz6rkuQJqeQ6ReGer6Wm7iV75SXw7911zp6VrQ": { + "balance": "703.827150766", + "bytecode": [], + "datastore": [] + }, + "AU12tYG4RhSr8wpL1HDDdWUrUDpWBWPPAaubjaQyU48iTEoSWDtrg": { + "balance": "1774.761803510", + "bytecode": [], + "datastore": [] + }, + "AU12tYiDnLE9YBZcuDcMY9oT133jcCTRFA5ixw77vLF9TNHAkAQLv": { + "balance": "3426.982985369", + "bytecode": [], + "datastore": [] + }, + "AU12tYoak4KCczkABrCXShiBwnECwhZUDSX2kWgZ6eCNbCxPtJm64": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12tZ7wNJTqfuMNnEbZgcoQzHuWbSFrAxHkXsk982vPEGDB6c3Wk": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU12tZCvmkhfDCp6DqSjgp7xyAKqpezLbMqfXRL5QH2JVFPbJQLBk": { + "balance": "3938.899069653", + "bytecode": [], + "datastore": [] + }, + "AU12tZJW1KQ7TkGxGUvaDQHGSYabstV34jPzaJLzgUh1pGWhD5DNv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tZKbA2isad2toik1nohiNhg4BdHxMzU1w6WduCwiC7BhstmZa": { + "balance": "3165.254739576", + "bytecode": [], + "datastore": [] + }, + "AU12tZgogEAyqgXGUqYPwTev9PMshFLoGUu8PgbuTaaygp8MSXHHM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tZuxcvfUmWktxfREdG5UtSNuHYMBnqdrZKzaHDtkmVgp1Vd7X": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ta2RnZ7GJk4c5g4jHbj2epL7XcjzU17vcKTuNkkS7BqH5WbwC": { + "balance": "1473.044399730", + "bytecode": [], + "datastore": [] + }, + "AU12taFffpEr3UMHt58UtEXq29kZ1e4WwiPodEa9AAkxTVsxSxyku": { + "balance": "4606.915782726", + "bytecode": [], + "datastore": [] + }, + "AU12taa4dq8xAG3jf821gGyXgWhJybc224nidcZnegVsUfmd6t9bN": { + "balance": "4888.091606013", + "bytecode": [], + "datastore": [] + }, + "AU12tam1nte45ccXFJt6wP5pNhyHKfw9nCFv8oh4FfmXaQekGnte5": { + "balance": "1543.658710865", + "bytecode": [], + "datastore": [] + }, + "AU12tamdWBsYRWFkrmPmRH6MiGpCQLT9mu9unZtve3dCdFRmy5N9p": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tb94CxNcPADgjaBSRCgkomLndxZLMYZTZdZxxiLpUThoBW18v": { + "balance": "1652.764086746", + "bytecode": [], + "datastore": [] + }, + "AU12tc8RzSpXQRdGpkSh1jhaeihbizjVQiy3aUbw61jiJQJ4Q5Sfi": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12tcHZoewawoN171K4TdTR4NqN19AuQi1vw6oVgP8WT5vhQeiWf": { + "balance": "3657.895672976", + "bytecode": [], + "datastore": [] + }, + "AU12tchsX8XwyEq51ZZEY488kSjBeWuiL2VKyzE4Mmea4eRZ7ejiZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12tctwXMRyoqKbupnvHqjLEGR3GTuhv3JjkiFUWva9WGj4zwBU2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tcycGvWm6syrDfLuJ5bTaSR1sAAysEhsqSEmbqCtENtjUESxJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12td1cYnfjux4FxesBdgo14SSRw8FDTtMxGdZd6vF9KzJLJmSje": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12td88X1pESKgHCv1Qo1co8kvoEPyg2hJo79PkaFXkbetG8TUmj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12tdFkJeXo2HV4yf9Cgw9M2ikChW3sVGncixzJkenNzx1UfTKWe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12te2kvij74zjLpBhtnv1LiHy5tmPbHq9decrdyx2yRqg2Kp74B": { + "balance": "2482.014366248", + "bytecode": [], + "datastore": [] + }, + "AU12te7bu5vE6S9fBiY3gogpeSyaxyTnbEPALdFuAcNZVmv2Y6uG7": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12teb1cJ2XxHZfdmTDXsHyDfAEbbrtt2voe4M4Ms8mwhjvYWeHe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tedvjBPjJeEHFdvqHXQBJCge3EQawz6kBQ2Mc1CDo5bSktngh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tf8FHqtaR2MH1BxqbxgpVJjfqPnV2c9Td7EWFj5brqFkb5AEq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tfGeDKjzgGKs47Yhve8DFU5RuYgvdm1fuoq7D57j192wt4QmH": { + "balance": "983.143638974", + "bytecode": [], + "datastore": [] + }, + "AU12tfPsaPGcXKcybxAMZguTLFt7PbSiyQDzzcwKAmmsLRZ6x6byE": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12tfTWQ3edURKaAE2fpfyFwwVXy8bvPcnkTcHSEgVxzMUcM1syj": { + "balance": "3515.708566447", + "bytecode": [], + "datastore": [] + }, + "AU12tfYoehpPf9hF9T9T5rtqecmxJd5BLBmSKLq1G6kr3kdtdCqED": { + "balance": "887.967387081", + "bytecode": [], + "datastore": [] + }, + "AU12tgNu1UB2ytXhNvsziJ3MYmTdHd8x7UqvxPZZ3wA2ig2C6UhBP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tgWGsLspoZYHRZXQ23c9YWEo63beWqQPkRWuVPiRDzsxNeK2M": { + "balance": "568.472993522", + "bytecode": [], + "datastore": [] + }, + "AU12tgXBDYv8JJQLsGqUHV4oqNE5ioJpcQJvM26DAc1nE2EwxB3kZ": { + "balance": "1707.350805170", + "bytecode": [], + "datastore": [] + }, + "AU12tgfWGcfZoeiU2UvbrkepCy1k2W1t2NCEJ96VFgz2EQN1BrFvh": { + "balance": "1398.898561576", + "bytecode": [], + "datastore": [] + }, + "AU12tgi6fkVFZUdRpRe9HgHithAPdFZW3BJ96SiEDvsWaquH1JGRw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12thBvKQB3pYn1fypsLD4jREkpQePdVWGHoLH9WLsK9Vztu8roM": { + "balance": "588.353286441", + "bytecode": [], + "datastore": [] + }, + "AU12tiGCMpcoCTG9f6fZJXyyUKSS9gy2TuSFuSKnGRd5qcAGLGb3m": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU12tiHzRsi4aKV2gEanoiEagzmkwq67ApHEU1aiGAe4nV4X3qhFn": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12tic6WR9S2LC87dskMJxLKCbJ1Gt18uPfaVAHRUGVxpGvcA1QH": { + "balance": "79.207920792", + "bytecode": [], + "datastore": [] + }, + "AU12tj2DsH7CXuxUhTEYnYpkqQW4mPxGScyKUaUogsYfp6yTryoMS": { + "balance": "1267.606407343", + "bytecode": [], + "datastore": [] + }, + "AU12tjEss5hyMhYx1KxqQtJDJKN6BpWSwBppekW2yD9sNMNcMoo15": { + "balance": "633.483182044", + "bytecode": [], + "datastore": [] + }, + "AU12tji4ZkoLFo3kqB5pxmzu8uXE45PcBJPQTxJrAVxCgFDpbp6LA": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12tjqifcoSKTQJHXuFxWHsPWnMZJMd6hNvhmNa2nVzv1n6se4ft": { + "balance": "1772.110630835", + "bytecode": [], + "datastore": [] + }, + "AU12tjrDC8Fk6JfNxDYhSEcyHi4knRLGvkCMkowpkezRqhe9WxJ8R": { + "balance": "698.927978991", + "bytecode": [], + "datastore": [] + }, + "AU12tk7VMd35ESJTxXH4A24CG6B2DEtM772Tuh3Woxziua6onUoqL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12tk8CFmq8S2JYZJaPpE2wpSpjpveUERHv23aFTrRVAAYQmTwzL": { + "balance": "1678.913929537", + "bytecode": [], + "datastore": [] + }, + "AU12tkVR91CKJNdPANsxT4jDy7VD8Vyy5GmxzfprRSWxGYfiLZDPS": { + "balance": "1703.098625425", + "bytecode": [], + "datastore": [] + }, + "AU12tkgi23V6ezLx77Jry1sqNnvoVYbTboEYTFajGeHbxAs6qGMMv": { + "balance": "5071.435491563", + "bytecode": [], + "datastore": [] + }, + "AU12tmLQ37w9a1GXVV7sBSchHmpQg7NxmRA7Hi4TVAxQC8VpQCqf4": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12tnBuxMXy1XUhKDT66BhhgSR9jgyfayY6EzdB1xUJ9kHJ3XbHA": { + "balance": "1353.081418045", + "bytecode": [], + "datastore": [] + }, + "AU12tnHEpUJbBTKs4Hyx8DfrnArNBTcQKxDWkA7tyodcbZHi53y7r": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12tnRpVWQjgC2mwSRgacCh2joKPu7hyxLMEL9sxr7e7otojrmaq": { + "balance": "1548.281937734", + "bytecode": [], + "datastore": [] + }, + "AU12tnpwtHZFDy8xisL9YugBU7qHeHi8gKUyGFShKjoydmQ4tVBvR": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12toJfvYLTg1oHzGhnGpE4ub1t81LfWb9dmThHw3AJn5zSEpCKK": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12tp98HL3zrCaqGGmkRyvgwMCJbMmzTSkmjbMJ74WJJvRVGavie": { + "balance": "1671.533586537", + "bytecode": [], + "datastore": [] + }, + "AU12tpFPjyr6wQm93ErfsaGJMt7MNLh6SgvQqUrNEjao3PmWBkecR": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12tpNfqtgD2rmYjMrasDEnPbrwdc58GMviDvvLQx5m7UQuirfHC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tpYmLXbPXAiZZENPxEmQpyJ69UmdfHaM3B4m8A4A7UbWnr491": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12tphjNsjE1ZmeSRTEW8tVjRMqegXBgsoqoe4WaubQy4qfswmof": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12tpziTBFiWkDUUF6uxfFzPUENyMRLYZ9kBiFAuz3iAhHqJ8bCC": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12tq1x4BRH27QEsGEXDr1XcuMuejrM1iHCZXYjnmWQhmUEKUo52": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12tq9SFRp7nzPeKxFJowpDkDuPPv3zkKuh2Y7oWNhj99WvUSTpo": { + "balance": "798.189219172", + "bytecode": [], + "datastore": [] + }, + "AU12tqCvaXcGq8SWRwP6GUp6zjNAGfJW3EnRmMzuQf1EcZ9xJnkP6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tqQpYarj2Lcs3qz8jVqq7tuRM4k2nkrP7V5HHZYFp96CMFS39": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12tqTXQCT3PZ4goKT9iztQMyMrzt3jrnwTzTy5gNeRGmXfztdux": { + "balance": "934.044874019", + "bytecode": [], + "datastore": [] + }, + "AU12tqWQLxEnhCaBN6xT5VgBDvoiLAvutNBcQoP4BBBtWbNMgvz9K": { + "balance": "788.910998496", + "bytecode": [], + "datastore": [] + }, + "AU12tqdFU3ScLUsfwzy92x9Ynd6YJSXoZGTDiG1a5TN3ju2ZHvJ6U": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12tqnWmknqgoVhqKBQVshn3344ME3TQC8eWqdrRQDoiLtoBDBd5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12tqxYHyysUVdP9ohcjC5BXgC9zzVN7f9eWUFFtPQEQELpxqbuj": { + "balance": "1311.889228251", + "bytecode": [], + "datastore": [] + }, + "AU12tqybuvjqy2c7cKPWxkHLHwHf7VDFzhSX6hduFyr9EQCTWrYRw": { + "balance": "8.179348491", + "bytecode": [], + "datastore": [] + }, + "AU12trhugZTY5fEVam6dr2hEF9SYuw5XDSj84ECDDVeK2SAGu5v4x": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12trwyRicVAMaDCck8yKxDYFCzcpHvj8Bn6mQ9fJiaxPwoQUTji": { + "balance": "731.467343789", + "bytecode": [], + "datastore": [] + }, + "AU12tsPEmUsS1h7hjnWHKktoC5fXP1Zzf5Et8oeHLpxiQMpzmTGJN": { + "balance": "662.892143539", + "bytecode": [], + "datastore": [] + }, + "AU12tsjoD5EyLNMiLF9xJAXUHghYTu7u5xDRytsz4ZEL33dT5Yapg": { + "balance": "1345.338778915", + "bytecode": [], + "datastore": [] + }, + "AU12tt3btHzGDN4nPKFV11NhLix5hLqnDLgREpR3PdBSXpMifGrbV": { + "balance": "1213.518277964", + "bytecode": [], + "datastore": [] + }, + "AU12tt57DtjeQWFWZcrobFvw7HmG1x6iQkNQNvwxCJjN5UjNc1tu4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12tt8pf1VHuJVhcUe3k8q3Km3nkVm91oJxFyRLkjyjZ4mrrzmmJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ttRkXBPR27MP1fRTiRjSFpCMHcQ73iZiN8auwxT4LjfN6Ufj6": { + "balance": "572.086193692", + "bytecode": [], + "datastore": [] + }, + "AU12tteH5Gmbgv9LbuUrhgjSrBPNcERZZ9sNK9UmA2ntsZhbZoBgo": { + "balance": "565.085612932", + "bytecode": [], + "datastore": [] + }, + "AU12ttwGnUei5cR5MYPYiE1dgvggDFQVVfYvcveZsZ9WzzNr9HmPY": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12tuGFa3jQUam9R3uGArhia5EyqEs8TDD6sG7muwAroXibVCtj8": { + "balance": "1454.537401040", + "bytecode": [], + "datastore": [] + }, + "AU12tuvparDHEb67bKbd8pdpkzH9uYmB7UXmkRSKzsCS3Gby4UTWC": { + "balance": "1826.880579294", + "bytecode": [], + "datastore": [] + }, + "AU12tvD8JY85NGbvLaF6e4aWx6GjqvuevbggEJ89y1PT5329Lxmgc": { + "balance": "2226.213886218", + "bytecode": [], + "datastore": [] + }, + "AU12tvsCoeG9kRzEbPhe7MAs8fNT6Ba1NbULHFyVPvzbWW5rfv6tX": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12twHidfsRQJMnaqsvV9Zfxjtv1vHkF3y6tsJiFThFd8BXk8DET": { + "balance": "574.254857648", + "bytecode": [], + "datastore": [] + }, + "AU12twUFs22be1uzWRhNaepZc56ZP9uEVDgJwnz92zbGoiji5z7FZ": { + "balance": "674.608432420", + "bytecode": [], + "datastore": [] + }, + "AU12twYhhceAcKoqEyTsuwYnAKXWD1CRBDBemmGBvFkC5SXATZXic": { + "balance": "254.272043831", + "bytecode": [], + "datastore": [] + }, + "AU12twgf8vHbmVPvePSiTvGngdsYxmcxSTtSMGbaSLQUcGqNKG3Dp": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU12twuLRjKtFzZiTSLhDTJV65bPsRhKTLLjJ7KC2WApFDai8PAHc": { + "balance": "2244.311128408", + "bytecode": [], + "datastore": [] + }, + "AU12twvjaTWg9n8r6NWApv6SRjGLs3SrTGcQgz9LGL2Pgjm6z5js1": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU12tx6V1yu2f5xeiUqueYwLGma2hbVPbAu2MrTJWiY5HGwW2uupa": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12txTbdPWzv57CAgqEUvPCt4hQsjwyvTabpRhUPQUo85v967UVP": { + "balance": "2513.571990551", + "bytecode": [], + "datastore": [] + }, + "AU12tyCeu4DkyKc3EDX5HHKD9TaPdCtQAfGxTFTR44mQiCFrpYJ2M": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12tyK4tZVjwpkexydgjZHJEpbcYUVspxxa3oTiyeMU8tZDVDdZL": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU12tyVGD7VfEEcgfp8afLwBd1Nnx1GerxvKQNqRGWrXDhUtcQcR8": { + "balance": "1453.616048077", + "bytecode": [], + "datastore": [] + }, + "AU12tyyrs7PshvWzDZs4UuFLGqxU53J3vLExcjWK2rpkF79z3BTq1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12u1GubwXhkQmexXrMWTuyBC4vzezXTDMYKjBfYhBmb3Vuen19N": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12u1VGMTR4GNLe6AWFkqbsBLNSKc9Y3Kkwkf39vi9PnCT8N5mLN": { + "balance": "133.662346315", + "bytecode": [], + "datastore": [] + }, + "AU12u1ZkaWMbGQ3rB6aNBHH967WVwd81jpqgQTc1sbGteo72oekbT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12u1aDN4FZJrdkGx2USZPf6GEiZNLt5Cix39nkVpn1Fn97J4N6e": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12u1cRX7Kva55eSCERbBynog4gJm8D1bJmbQRkAi4JqwEyumYye": { + "balance": "789.642082573", + "bytecode": [], + "datastore": [] + }, + "AU12u1fUDaG58Sr7scm8w8nJpRo4bk1d12XNp73ofnb1WFoWHorm7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12u1jYgFwxkg4rf3pxUTKMrssbTPW45EiUWnvJ1ig2MKM8ei9Nd": { + "balance": "4861.941636619", + "bytecode": [], + "datastore": [] + }, + "AU12u25iut3i2n8r1G5q4K7HXRjQaRC3ESrpJ51Rhe7APUuyWWukj": { + "balance": "2354.374613996", + "bytecode": [], + "datastore": [] + }, + "AU12u2E1UnJEvBQdm5fwFDgV31n6Sh4jD1HAfVrdFrpmXhkwvA3Lx": { + "balance": "1591.788372783", + "bytecode": [], + "datastore": [] + }, + "AU12u2F395MgbvjnjvKmqwAzKzD8XvG1oNTfoQo6kCBzGUtwjx95Y": { + "balance": "1245.977265787", + "bytecode": [], + "datastore": [] + }, + "AU12u2wDr9CkZATRDKCqRq1akukL85uVjdAMFyPNphKzzBnYY5zQJ": { + "balance": "2229.305686961", + "bytecode": [], + "datastore": [] + }, + "AU12u3131VovoFEJhccsbDyVrUqMNvizP3e2sVxCJbfPULDmjB8FX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12u3gpNVgM8bayhVCU5szUxg7xeikzSzgfFr3CWjCUkGLTXqACL": { + "balance": "56.105610561", + "bytecode": [], + "datastore": [] + }, + "AU12u3ya7oRMwDBAS8VyMpqxpALp4X2J6ApayUMceFXZ7qAWsPRbP": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU12u4YyEJAyDJa1gKsd63Wxkqtfh7ZVaEwNnBgUSGNorJCspFMBf": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU12u4jTimmiMpQvyM49BiCpGqNbvSeiyjVyYvXw74Tcc3dbGxhP2": { + "balance": "4199.361809544", + "bytecode": [], + "datastore": [] + }, + "AU12u4mEBGX7Dys2hMEWCb4Bkt6irEEpZWieVit5npqS58zchbUFf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12u56ZnNQpBXcEFFvFJQoNFjggoauKK5h5z53QXPJAj1tzSqeZJ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12u5B7qu2dFghkhNvVG8sger5WFphRpxfDe8yJ9mDYwPA6u3MZF": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12u5DoaSgYqhjcfpJXaGQanGpDTtiqLHwuFE3vbZTSaC5cb78Rj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12u5nEgknqpzVsFuankiRAGDkHcQXvDqfF2Z6RyaCo7G4hzKjN6": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12u5oPouFTFzHZvDXZpJqr1H3W9haBSkS8KWy8NcdsA8vUM3Kip": { + "balance": "572.507975610", + "bytecode": [], + "datastore": [] + }, + "AU12u5tJqwTaDvA9o8g1WgrUv7uAD4oXDoMeGzFKio3UmhxRpeKAo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12u64JkDh87CRgG3TWApKezRbsdp5jT34corj9upqgQmansx7S2": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12u6LarkKrX3NyTgkhdGSSGfVcuESY9itFYXXE1492BphyZrMae": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12u6U2DuXVNqBFG1BZkZiANAtJgCVW41Es3L5DhERLHyMS9F4Up": { + "balance": "3135.501705000", + "bytecode": [], + "datastore": [] + }, + "AU12u6Y3ET8DJHi6UCKDrtCc94R5CAjUYqadTHaHa4iiazJ8kFLus": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12u6p2meHCdwHoUz6b3Qo9H1bVmRrEHYBNt81YNGzac5egF51oN": { + "balance": "3448.588292545", + "bytecode": [], + "datastore": [] + }, + "AU12u6wnBA6ry8sYrGPSdHjukaS1aAFUSetH65pKD5tvzJu7SQ8YT": { + "balance": "581.184490183", + "bytecode": [], + "datastore": [] + }, + "AU12u71xxGuUB7nrrH5Mx1wCdHmnAYy9ocbVVf69FHy51CENidqV5": { + "balance": "1255.356008177", + "bytecode": [], + "datastore": [] + }, + "AU12u73Z7ax3brNtNHGLFRqaTQrrb5a2eSrccq7kZUMejfthWLKcz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12u76HvpyAi8QtChBb4TqhoYdrDaW2Dk5nCGC5hA6oj6rf2DM9M": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12u7M7SPt3xgVfCyNA22LKpS2h86crbMmKdmRFKhhYKk9Ant3ow": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU12u7yPaAjqTT1Lbc7XVSdUexwAPqt7Wg7Q65MoHuSWNVNFBDaRi": { + "balance": "2928.774446812", + "bytecode": [], + "datastore": [] + }, + "AU12u86qsnFgEPUSSbxvz9ZpdM3Mep9yWVVE9uRh4dBroKS1aMzYk": { + "balance": "1650.941508169", + "bytecode": [], + "datastore": [] + }, + "AU12u88KTbNLzC41L4aMPTTF5q946N99Hwhvq4em7aTDoLyo52G8x": { + "balance": "2173.466178580", + "bytecode": [], + "datastore": [] + }, + "AU12u8AUkUJ1guopaT8T6AWjbQqscPEAP2MqXdZerLTLVZuc5a3rR": { + "balance": "623.822281406", + "bytecode": [], + "datastore": [] + }, + "AU12u8eZ7EckJictZp2rkN1RhnDZmz8YKAefTxopqqHKJHQSV7E7J": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12u8fpPxmKLMsXzfRExNyuAr6ztmZPt9v5PYUMy8pCQt7GtWum3": { + "balance": "1630.424339150", + "bytecode": [], + "datastore": [] + }, + "AU12u8itNPmWDB5z8Dy1ipHzo5qgdjs6iJ7nBqK1wjxRoiZQRrFSK": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU12u8oDKqFyJBgf2KNSizh8JwWgBtzNYs1rQRHXoeftiAy11aisL": { + "balance": "594.120806871", + "bytecode": [], + "datastore": [] + }, + "AU12u8yakC2vNzRESwwdFjx9Vh1Wm4XJFGquVSUe2TqLK6e2mHQuf": { + "balance": "631.312124210", + "bytecode": [], + "datastore": [] + }, + "AU12u996cA7rkF9EEmKB6oFPAQAtWJJxGdPiydDuyDGctQJ7FADEA": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12u9KtJYDRxtc2ePVppHmUu5eYTeozdwv7v8ZCc9Tny8uMs7s4H": { + "balance": "51.691606372", + "bytecode": [], + "datastore": [] + }, + "AU12uALDACXMvas5Jtcd7WRSc4xgdXDeoaAzUAW4gZ6EdTn5ScM6T": { + "balance": "1014.551286367", + "bytecode": [], + "datastore": [] + }, + "AU12uAnX3Kt6hHBm9SRP9LMhrz6Ep6D8Knh2raEcDrLnU7MMBRu8E": { + "balance": "1467.340287602", + "bytecode": [], + "datastore": [] + }, + "AU12uB67YVK1rMzcThXNwdYHJnogU7iZGeUMRmTDp8ZxcBefGEkeG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12uBHqg9LgHZc1d5vJWDMqWH1oUDJ7YwYm1SWYvCqRmn4fikQDH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12uBd2aoPZpkDrAunv3ViQbYAjS3AkAqLoM4JTKzXr6wDurAMqK": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12uBdt8fgnvzCAA1T69PVdCyv6mDr7HnftiUzb19U7zFKwnqb5p": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU12uBqFX7CWZJjth18EwHfMpmKDr7ihPpqK1edRgMLmQ2jErTDDY": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU12uBzt78Dy9PjKUjwjXrBr19VwuhizLSBfPsJdu6e1FWqEL8DhT": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU12uCDt4QeLqo1MLn5hW4TwwTR6wAjtVKdhRAwiDwVfWdZjy75G8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12uCEqVST45uHuAj1FNcVMBXr8GKZLnnSechbzoy6QW1uKVQtzp": { + "balance": "32.586287524", + "bytecode": [], + "datastore": [] + }, + "AU12uCxqN1frMsqvi6oqe8mLpWaun6YSzSy74fip4Lqm5Bfpbjfsv": { + "balance": "1856.265259110", + "bytecode": [], + "datastore": [] + }, + "AU12uDRKPCSy8WwevVYbHN8yhcusYo1tak2kuNHHB9cNrUBBf3aXk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12uDZhky9Dykp183YCWu9TmuTicWzN85j9qNsfkAZLedQ6tdCK6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uE6m78AdJrhHAHySTWTNjAzY1kGWUxGkHX1c5WM58TSqaAuoN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12uEPammnCBrBThtLh6kJsWbHRc9JE8E8p46gsf3TAfJRXUUnFe": { + "balance": "1627.583965887", + "bytecode": [], + "datastore": [] + }, + "AU12uERCFuSbgfKtH9jjLXJJaWaXynde4xjb5zcFyr4Yuy8kKVWKr": { + "balance": "2068.374980224", + "bytecode": [], + "datastore": [] + }, + "AU12uEdLNapMvoDL8xVk7WVUSweqNdsDvj52mt61QJs8J8RCbApLx": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12uEpBsZempipWFMaTTS7vUk55PmnhVtuvRYh3UMAMg5bg6nYmb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12uG1sVdaJ4T8yDgLq7RvCg6XSrxEuUoMCZnLW4TGG1cpVFjVMg": { + "balance": "1760.392336327", + "bytecode": [], + "datastore": [] + }, + "AU12uGi92ikkJnQAYrycwBaAGKHz8FJajUHKGZsAunqtD6RbQ4eYV": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU12uGk2nLDxZjPVw916oAhqg91mFAiWy3q14quqjJkX3wxaALPcu": { + "balance": "3480.320171366", + "bytecode": [], + "datastore": [] + }, + "AU12uGskqa8sCFb9cuWVjBFY13kBYtWUws64zJEB4vhwWCwSH2aYk": { + "balance": "1255.320701888", + "bytecode": [], + "datastore": [] + }, + "AU12uHHmvUQvVraY5wusuHaM7ggoqsQRaJY7ZfZx5wP1YaLsMkHN3": { + "balance": "59.355214422", + "bytecode": [], + "datastore": [] + }, + "AU12uHSG9ktpJ4ZUxvcyWiDngKhMZeddwbfNFdhNgWE5bNCEXVf6C": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uHcAjfKZWDazq5ycsb2uUZyiMHCFAUsFuMHCGpKFfTGbHFgjw": { + "balance": "17.532658931", + "bytecode": [], + "datastore": [] + }, + "AU12uJU1isGbzaeHCQmf61a8rDauzPXFThzGNr6Sm5YwQfe9SyV63": { + "balance": "4308.844325792", + "bytecode": [], + "datastore": [] + }, + "AU12uJcW3aku9PewC6fjdpwbv8darc98F7xqagGd7x4JeY8kfEWum": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12uK6UHLvP56WfDKPx2XrhPTRvQvkzg9aJZQJrqXHJ1yVH31VwG": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12uKLWH3pgYbc3FMAhK1nt1mWv9HAgVgmGVipa1we9NTJ3WQs9N": { + "balance": "2633.512260115", + "bytecode": [], + "datastore": [] + }, + "AU12uKLf9rZipToGENHuKA9pHmYYWesmsV4QAQUxw9YunXPhZGEC5": { + "balance": "2219.349806611", + "bytecode": [], + "datastore": [] + }, + "AU12uKNDVynQLdBEm2K9BVZGE5p48H18mfEhB84g4aq2eM3gEP7DL": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12uLeiiP2JzbGoEGBj1WC8gtRrZNzwgcbfVDTBV6t339CmNcMKe": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12uLincctzxX44YDoyoo6NCurFVEfr8DTnPuHhiQbKNAaXVvsrQ": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU12uMKebuX3AHPPrYw84AjC1NrJbdw6tE2jJihshLA9iTXAPM8Aw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uMMzJfkahdUH77XQzf68xWXoUbaYo3DtiZ8NuJnrfw1xSnm6d": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12uN8ChCgkSu6jwTb42n1faM9r8ePDqQRRbxGqEJLj5ZSoY1Xrw": { + "balance": "2652.103230548", + "bytecode": [], + "datastore": [] + }, + "AU12uNXwGr6HTnkSyitoZVFRiuB6QQB2ipoDDer9gaBtEUxPiygKz": { + "balance": "61.163864981", + "bytecode": [], + "datastore": [] + }, + "AU12uNY36PrK5Nkua3RgLFZ5vd7qA2sUcDfWfq8vTpSUnHEmPZLdY": { + "balance": "1375.322772968", + "bytecode": [], + "datastore": [] + }, + "AU12uNzJXQa3dLHVq4EVgkhnQgd9yqB33TrKY8597MQ9e9TrY4mfs": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12uP6rUqEeZbooKiUAvmSruo2jtqXNHdyNVWb7miB5Q3aV1bpzo": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12uPJRaM3zZDiLnkuCXyNSLFWs9h4Zr7aMoFpjgLx6CAsgA8pZ6": { + "balance": "1245.416968109", + "bytecode": [], + "datastore": [] + }, + "AU12uPMZmpeHyZvWEDtaPBvGvP7m6YqEW8psCPKD7tndAaGxCdjiR": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12uPhTRn4KX1GFeWW8fmz4dfmop3X1ewHA1UY1YUXtwDqqmM9bd": { + "balance": "80.858085809", + "bytecode": [], + "datastore": [] + }, + "AU12uPwYVbmWK7gm8pAo6YX1Mo7ArtTr3d2Br5rMTopz2onB2YfKD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uQEDgYLzVDrSc5WRGnuGTCDWV6wv5XXuv1iiKZsSJmmAqEha1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uQKCXUKfzgHh2oXf8ow39RsjaB5AoUNy16UhBLbQDG5LWHtbV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12uQXiXDbNnM3ApAx1Z9nWdU4wTM7AeP3SuKWu83YF5vcNkDDXb": { + "balance": "2044.494605355", + "bytecode": [], + "datastore": [] + }, + "AU12uQYRtP5h6F7vyAUKnzXUHDQUzGYcVv9wPqDjvSUWhDh7EoA5Y": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU12uQuvqdbhBG9qG6Fc68Zsc75Kd5CBPvA7esWvCftmDGwKiKBrn": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12uR8ph8jk8R1rvVrdEwK6eVtB1oNpTR1PFvY6M8GJTykvz1JNa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uRChxn8dF3foA8YXWRhqMdSNMvz8C8PsWLkS3sTaJHL5rxo8G": { + "balance": "1167.811482403", + "bytecode": [], + "datastore": [] + }, + "AU12uRF1W3eeHM9ixGDAwBzwVtgMRNvZWfHT73wdPd2SQ3Rmfye9u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uRf2aBpYiRSUUYYbC6pEYnZYtccXmokRRcZqJUkMrLAu3kGxT": { + "balance": "71382.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uRn2mHt2s8yjB2hd6f7h2zRUzvi2Dx3XzSHxJrQWymFxKyR8v": { + "balance": "953.885908700", + "bytecode": [], + "datastore": [] + }, + "AU12uRomdfRenBfU8wJGYzXKEq7v7rmAzqHoepTa7PeNHvQEKNGKW": { + "balance": "1125.196690615", + "bytecode": [], + "datastore": [] + }, + "AU12uRszmYVjnYXbca8eA479pUooVxuvNhnCJU5pE18zV82czHb3z": { + "balance": "744.811289416", + "bytecode": [], + "datastore": [] + }, + "AU12uS2pE7RScNn8LQmuY7EcQGPPccakM5ka2A47ocoKNx9cQF5H1": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12uSJLgNduGtpxeo1izWqBBh386SQ1DZ2Ly9DwmJEDzQJRqmzDd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12uSXcYoY9B1CnJvkyspK43dDrGTjMLUFfY2zLyGN8hbt2eDuDh": { + "balance": "4358.675877435", + "bytecode": [], + "datastore": [] + }, + "AU12uSe4NTYt6fKM8HTLscd11f9691g8VJdzPVtRXghagEM5RSV7z": { + "balance": "3547.028417084", + "bytecode": [], + "datastore": [] + }, + "AU12uSfTrAo9WDumxwH9CvsGJUq98C7PKrBjXoxbgcGxV2QtDAhVE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12uTVyr8NfKyHn5VZj9m2DoBnzk5tB4dX1XPWqs7cEc9KSmoUix": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU12uTdh25qGaLMpSLeJyGdEcm5vuwLeJ4E2tcxW2oe2WHzunz8Lx": { + "balance": "2035.449210891", + "bytecode": [], + "datastore": [] + }, + "AU12uUGFfJgv762HuznNND3kLoLBaa8xCFtZF1ywYqjfoELvQUGkG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12uUUgjVmsHJhZsvAL8qAkUc2bnD5yznpeP5TWMGDV3JSKY27dw": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12uUhcZUF7BG47Jwxmo8RKUchTyrc7ckKntUAeDAbBMLmvBJrm2": { + "balance": "1139.313196425", + "bytecode": [], + "datastore": [] + }, + "AU12uVg9BmVZr4MiZJTwkZxU2Ge7XD81ZFTsqTPifhCiqRBtf5wEj": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU12uWS8go2bSaMWUBTJC4f9UYuGpCP2HuNpaG4bX74sR3VWs3TTq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12uWUpvk8QTd17kbt3wpPhVAHGXJxNTqv4ASfvzhKpdg8UEvCDS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12uWabjUpAZnksC4PBz7qXENXEtXuGSbQhgyNecR18yreCsdQFG": { + "balance": "4991.146996026", + "bytecode": [], + "datastore": [] + }, + "AU12uWyV4ht3jo1MRNphcVgvvRTzZhGNijrL7S4eBd7RfDfFrQJe4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12uX1oa9Mniwv24t8JhipF32U7bTFfeYjgf22LKeVAG3LBkzj6U": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12uXZsyGuuWrWswwsiXUuinExDeD4BPVN1L8dTWyiYmdWhwbt8M": { + "balance": "834.298844221", + "bytecode": [], + "datastore": [] + }, + "AU12uXi1r6zUJhjQUr6vscszsP1kMJdPMrLE5YmnorkkzapbhunSN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12uXqgZX55tWyCB8giVmp3Xh5hcGvK7pzPgasdpzCWp8qoUCKR3": { + "balance": "3369.173973283", + "bytecode": [], + "datastore": [] + }, + "AU12uXzowoqfk78yc8Kavjbzd83yzqNjyXbmkc3gstxdXD31QFuEe": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12uYJY7MtwpTBiLNLnQm4PwKn2LQe1MV6CmznUXyN5rnrzTdvnN": { + "balance": "840.337347497", + "bytecode": [], + "datastore": [] + }, + "AU12uYMVj7nzYrdj9nq5ar91MBWmtQ3bpP7ND6LjDPM14heRjVJw7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12uZ7cxwY8oNtQNP3GUDijVV5tiJW8vtjmnnUUNHh39oMNGme9M": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU12uZwgKJFFiYnKR7XsNzmZtS9HihWUcNWEqUUYCiBeZy9TzwavF": { + "balance": "1218.460959278", + "bytecode": [], + "datastore": [] + }, + "AU12uZxDg5Qp2shUe8CkpxnueyieuBL83TtJFXu88kg2DFdTzVXgV": { + "balance": "1786.783187612", + "bytecode": [], + "datastore": [] + }, + "AU12ua84ksgw47LBKWhYdounz1MVqo5sYtBwYxANWa5dkV6srT7x9": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU12ua8qDoVshKuCsCcWKJbq1EUd7uDsvbYMYMJ2vNrqnWG6xCkkM": { + "balance": "1786.090132721", + "bytecode": [], + "datastore": [] + }, + "AU12uanHcBbY49zohMXDXuRLQiqXLA1vhzUm9eG1bd2fkdoQBEDhC": { + "balance": "1516.335956060", + "bytecode": [], + "datastore": [] + }, + "AU12ub89JCSHGuim6gJzPZ13gLk3HReZ9F5f5ZD1yiMwPgNMk3Pfo": { + "balance": "1780.013056387", + "bytecode": [], + "datastore": [] + }, + "AU12ubYf3Tbn7Yo37abTB27VxDuLPyi2hexTY9DojiW5exunSHLfm": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU12ubhKmSdaDky7HbeoTsfzZSWKvudEvbu9mETdSPQMAmvpPrwER": { + "balance": "1590.652144850", + "bytecode": [], + "datastore": [] + }, + "AU12ubmChkFQF2xaR1i61PjJuDvCdKmhFitCdA7Dyj89rRviV5FXx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uc8vtRp7UwbrUynjbULgpiuvnH9dj974gfqDGM3vs8y1otXAo": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12ucWHbLWgFzATg12krwz88p3H7JjybSXQLBkKieTNUzJd785N": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU12ucroVn7GAadAmD91Ppf3UnPYU9EYAgD2c9wRY9ihqu7294XMw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12udXk89SQnK6Pnc6VsC2bQmXdSaCMvprrcr7iVQg9bgijj6pq9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12udf6xL3dc3LoXdxHz8KDfXAe7SSnnTLih84G1HcaRt6T9LVxc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12udiF42CQQL5hCor7Vy1UZ6aS1GP4WD64RmzrMRg639VUM952m": { + "balance": "3924.535757882", + "bytecode": [], + "datastore": [] + }, + "AU12udqQhBE9DjGJqxwAL7CuZLCnFjQ5X1Ftk6S98dPhLfZkv2ja9": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12udvmsdiubP7xzQnNeTR1LgdwTePaSb9gYimtxCFC1US39HTLY": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12ueXBXLCQ8vzsCEieosnQVrkAominAke64c7XeQXdsKThhbJou": { + "balance": "2493.628797903", + "bytecode": [], + "datastore": [] + }, + "AU12ueqtsYA4Hz11PYjFcWnbC28j79qwFnN7Ye61vS6MNFXY7tnAa": { + "balance": "104.903584363", + "bytecode": [], + "datastore": [] + }, + "AU12ueuXXrCYw6XrdaeNBK4mcReBFyKLuGPwcz8xwjDgue8uPs3dm": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU12uevSxh2kKvz3duTxKdTXfCGmjTXLXaerd64cK5sH9Cxsq4cLM": { + "balance": "2206.221531567", + "bytecode": [], + "datastore": [] + }, + "AU12uf6sNhAr1AGT4XhfMzFCenSgd3szfQgybfMoWqQKCrUbpuJgp": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12ufRNsF3JVgQDrXLtWParbRkfmxuWp1cAuncnejFiukWwyPTm8": { + "balance": "954.677818620", + "bytecode": [], + "datastore": [] + }, + "AU12ug2dHwcqbdGHD3rBikxwp3Yzj4q1dZf4vzZbKM8Xe4giJ9mnf": { + "balance": "2304.322825588", + "bytecode": [], + "datastore": [] + }, + "AU12ug7LhvZ7Zm1j3oV3LV5V1nBuMBXCptStgZDSg18UKYpRPthdX": { + "balance": "1021.347111593", + "bytecode": [], + "datastore": [] + }, + "AU12ug8NcXKxWwjF82KCBzvADVBw7oNCjdBvZ6REGj1ehhpJLR9gc": { + "balance": "4739.049734425", + "bytecode": [], + "datastore": [] + }, + "AU12ugkCLS3HR8j6nv7eYeaWnpDxHK7gz8B8GzM2hFiA6ZzYx2Rz5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12uhATmg26YXtWJbJ3ixK4C9DXxkmAkfdCY49GgHMc9mDeJM6QS": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12uhQAzsTF7dfADN9bKkJf1RUqhYLbpGhMriL7XW1jZn8FhP2dJ": { + "balance": "2903.819308502", + "bytecode": [], + "datastore": [] + }, + "AU12uhheVtCW15SnagvdfZgjEo7MuJfx5ViUD3pYMU1bdJq53N3qa": { + "balance": "4022.771557820", + "bytecode": [], + "datastore": [] + }, + "AU12uhvQSd6xuiSf89fxKF1K9AeWNh5rvZcEQzBEazjqxwGtpbfWy": { + "balance": "2679.378287808", + "bytecode": [], + "datastore": [] + }, + "AU12uiV1yZyLtF8QnLB7yxW92KCg6VSNPhbaA11nDeAv3eGq9Pu4Q": { + "balance": "591.253280655", + "bytecode": [], + "datastore": [] + }, + "AU12uimZgu3cPWTrKeMRtLH2aC7VsNPaqUMH5iLmH6W29dyUS27p9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12ukGAhbo8dCGhXcJSRRiQHV9rUinmRNW58x9QzTeZE4TcEeSJ6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12ukJBy7ksYDehCJi9zCHTBPXK14zVZcfnFU1fYBQUyxY4LLcfq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ukLhHLhfjHmu2BrBk1whzPqs7rXy8bKX1LmawH2TXgiNLkbMr": { + "balance": "1095.520711007", + "bytecode": [], + "datastore": [] + }, + "AU12ukVdPzZhYju2YUsa6NbAxQwwZ7nPTaDYoVhZzekTWneKzzpXy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ukVweX3KrKmsiistH13YJCqLdKdyVHk6Do7FKLStckAWsp8HT": { + "balance": "94.332554642", + "bytecode": [], + "datastore": [] + }, + "AU12ukkxsbFzQLzCqPASSs3o1i1k2wZQ7CiVDYzgQgrWQCVTHi1DM": { + "balance": "3833.848697959", + "bytecode": [], + "datastore": [] + }, + "AU12ukw3FeFkwu7Go3mNsSKgkvVwDEyTC8uxTVmHJChobqtkNDjqg": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12umFok7cdEuWubyLapDf1Rej9a8ttBX1sBmUzdyJHem2SGfDjw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12umLvVpnEN4Dmh4XDpNopTdqyeshBWPDnRf9QECK7Xa6YUuKkK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12umYLebCbDBa6YjLRbBcGBpzVbxu6zmmqQMduU8H1pMGYZ2FhN": { + "balance": "3395.651128980", + "bytecode": [], + "datastore": [] + }, + "AU12un9dAyJZti1w3bbLUCaxbGcAwBzaXYA73zbxbSoosEiY6ESeT": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12unB2sbUe8bnJG2eBthBtSd87p7v6Woh131BMpo1nYZKRhN1qU": { + "balance": "2880.595332058", + "bytecode": [], + "datastore": [] + }, + "AU12unRoSMcRb3RDg5a9gmaked2VkVctN3dPwHYUCPyuXy2DGKHqn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12unTQVEk6Ju1uvDYMJuy1HYuj3XaVqo4ze3fRsjJENGYpQvLoL": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12unhkMZCmrk5ZHz73VkUpr1YQoXtUoHmmNGji6xVSzocUcimLA": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12uojyUJUCRRuEEWgVcsD1yP7RMjEozW82wkN17BWyXrsHqRFJs": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU12uowbHKBvd8Fpf5eUceD2eoRvNmz89i5apmsSYuj7XfjXMPGcL": { + "balance": "1376.226139518", + "bytecode": [], + "datastore": [] + }, + "AU12uowdRck4Fk1zr1mY1dM4PHyZ9V3v4cKyWAUbksA1VY1YhmQDz": { + "balance": "1118.387237814", + "bytecode": [], + "datastore": [] + }, + "AU12up4eQWapjf6os1mWTqHk6kvTJhbDqtmXnQvraLKtXCHkRV7iv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12upKjwrQyty4uhXJCXauAeyj8yZd8ueC7VGeC1J7cCCqRDRysT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12upUivV2Wex5ju1QHuTCWKdn3VVN7kZkYznPExPfhsvsnrnKmV": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU12uphsbhUw2ZM2bvuB7jF5XahVtbaQfAxhL1twLhDCsrjPz3xsx": { + "balance": "1633.770547767", + "bytecode": [], + "datastore": [] + }, + "AU12upkqomhe97WPrJLGU35n1HQRf26tttmoXBUyHFijbeQak5zYD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12upoHsqGoRf5YBZJzXpVUDeUMaEia2pVy7UGpZhRLXNFBxi2tN": { + "balance": "1815.961045184", + "bytecode": [], + "datastore": [] + }, + "AU12uqSodNQfEesrYj1tyutzLWtzLsmZKcK75XAE22HZZiNLWoRqL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12uqZeZgnhWzcjAkwHrQgETDy9QPUTQkC5hyodmWvbCiJFNwKNi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12uqZvpfKddFGXKzbrP2kPFBqnMPDpeHgaL5Pxfr7ekDJcLvfuy": { + "balance": "1305.480693237", + "bytecode": [], + "datastore": [] + }, + "AU12uqmwuLnYGxQ9rBC6xmuteHaqsjDoEm2k8z48swLsf6WyEDqVj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12ur2KHuVUVdqsvqLXpZs12NmKSMiH2xefcS9REkmcRe712gzHQ": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12urRgbTu21Uio1vV52ZDw5rCsdZBt8VHBNB3r8EMcUy2C57gPo": { + "balance": "725.100839562", + "bytecode": [], + "datastore": [] + }, + "AU12urj5Pt8vuYYq9um9xwRDqiBf4tgV7pPh2L6AyMMgPtvfPButd": { + "balance": "15000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12usGVKfDRfTmy84k7JprWVhwEsTiRFgWFcYpxnQGkF6CRnwBct": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12usZddBEWh1MmrPJn36Yg3tDgkwYjrfF7Loh9fkEhtBpwCXZds": { + "balance": "3466.981988019", + "bytecode": [], + "datastore": [] + }, + "AU12usb484FM3pU64rF8ASQUrQLQNzFN3JkVRS76p8JXPf5uthjKp": { + "balance": "2084.227236860", + "bytecode": [], + "datastore": [] + }, + "AU12usjuRBx4afrwYp8qxf2n4b75ZLXGSA61xc4cCDUU73QE6JjaA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12usrmWvnWahMV6jJaFskrtoWVPDmQug94Zi1gtwyuTa7J8hibe": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU12utQKsUtF3WyvTxemaddav9B1mAXeENAVi2wXwe7mokCEKQZvq": { + "balance": "1645.133541807", + "bytecode": [], + "datastore": [] + }, + "AU12utTnjwqncjaq1MAH5z5ywyPeJXm5cfEKEFYAZvzFDLVTWAx33": { + "balance": "5695.272610874", + "bytecode": [], + "datastore": [] + }, + "AU12utXZsabKDJm763ci6fenz7CSBLX5ahkPKn2ZbBNsteascUHhp": { + "balance": "99.387587668", + "bytecode": [], + "datastore": [] + }, + "AU12utam19wzyw2ca3jsRZ67Xe2jEyYhYhgHWAo54UEC5XGKtaZ3C": { + "balance": "2177.251334398", + "bytecode": [], + "datastore": [] + }, + "AU12utqQMYeewLFNiU5rCdAJCdmPPstFWQNoNR7nwPKK7ozPaVS2w": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU12utwtK5VdLbPD9gX29KaSdkWntvSMUVJm6hPmL3uscqDXNTUyf": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12uucmcfcndjsSxKutgwKLyhwRGu3fwoRbHJSmhtpWELx7112kV": { + "balance": "7304.499837108", + "bytecode": [], + "datastore": [] + }, + "AU12uuhVyk5rWP315TdZFr1WtvixUAFzfDJkaWcjVddqYJW14DBEu": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uviGoFLnhxKEgBnLWhrEDCos5Ak8XwMib9jGStCBicKKzW2jT": { + "balance": "84.983498350", + "bytecode": [], + "datastore": [] + }, + "AU12uwRLovPpiAbP1bK595wWQxL9wA79Mt5aCzVCmyNWRUxqkWDJs": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU12uwjSnFC9PangXr6QPUc4LJxPxvrqE8VddLY2SDGET82tHkSK8": { + "balance": "3119.442131644", + "bytecode": [], + "datastore": [] + }, + "AU12uxs3Cc16hmnecjgoQrt94A6By3yU1Lq2AxqsP7M72FfZWwZ28": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12uyAtFwBuSqSAougghZtSc1xzsuwk4iazkm2DwnbnixPtxCYi4": { + "balance": "745.472916998", + "bytecode": [], + "datastore": [] + }, + "AU12uyNtPWcKCzEBbxriuxDMtinmaweNB75RV7rtHzm6XQGSJuZAt": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU12uyYVxz6j4EZccFZXbVcsQmwZmPmffCEqkjwfy4ixbXYENydrg": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12uygP1aD67CGyJ6YoYMLrihgeeBzmCxX31GUeU9xYmvR1UFrSG": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12uzW3e5HiuVVe5KLZy3eJPHjnWWpPuYBVUHUhuYNa3yY3JVTVE": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU12uzh91QxPqCCmx6oPZeXX4nc64TMpcAxvJ6tF5Bu3Fs3mfjDMF": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12uzk35eX1RRXrCEBDKqUSMjvqCgZjB7HY3cqrY7Kfon4d3MDSu": { + "balance": "103.135313531", + "bytecode": [], + "datastore": [] + }, + "AU12uzn27qkkbH57nh1B6soYARPb86N1RcWvrsYQDgq8D4wFJXYS1": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU12uzoUqbNcyN13dxkRQg1F5jTvzUsVJmag5eGR2UUZikP2wXebo": { + "balance": "2991.740886896", + "bytecode": [], + "datastore": [] + }, + "AU12uzz2EaLFfY4dVnbKEZZTNzds5moZStfFJd5ncm5P7rN9vceFX": { + "balance": "1123.237714630", + "bytecode": [], + "datastore": [] + }, + "AU12v1CTdMHHcwn8PBF1hAoiztMLZiqa1WC3W87jQd7RjdtBWnNYL": { + "balance": "1177.255882426", + "bytecode": [], + "datastore": [] + }, + "AU12v1FZjhPHgPWbmfhbjdkD1WDZdvbMXQPMoayHkhsbim4sB9bN1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12v1dbNVPbuGfU6kn3K3RXptfF4kZ7ExqLnpAjddAXX8Qwq5YQa": { + "balance": "279.238847798", + "bytecode": [], + "datastore": [] + }, + "AU12v1wQVRi2fY6pb6X2FFJfBEkwPqXVqSP6TCMkYiDiFTRuquM6": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12v2NFKBkbfqn8JzYnRc2Xxp7wjepgc7oAF1AxiGQLPdz7JoDnp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12v2az3fJJYy5esvmLaFBt62y4QMeruMzT2K5sje1UYWDSnXF3A": { + "balance": "1360.004800358", + "bytecode": [], + "datastore": [] + }, + "AU12v3GU9SE8fiFp4gyHYRQG1Wx9Js4Au2ePLKU9cCya8bPV4C89c": { + "balance": "1258.007865826", + "bytecode": [], + "datastore": [] + }, + "AU12v3Nad9KM9yKPGAcigXXxbDoPJH5T2tW9eN2yNpKceC5aBXAgY": { + "balance": "893.044431890", + "bytecode": [], + "datastore": [] + }, + "AU12v3YJkSoEcZt46vm21nVnEb7hvBFaTvCFVYgxZgNebGGBdazLA": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12v3afy3MxMNGG6Kmo1dfiNz4zAQATk1cdBPADv3iS11PbpgUoe": { + "balance": "1285.798209295", + "bytecode": [], + "datastore": [] + }, + "AU12v4eK8VmK8WcXHfsnvFLtU2B9EXQycv79FhPUgDxiTzgjavnEK": { + "balance": "561.431357407", + "bytecode": [], + "datastore": [] + }, + "AU12v4tEV7vGbkgQDfA2UMjjft9XAvjXvLBYcAizHABjzZdyVnouc": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU12v57haY1mT8P7FVum5Kg25P1ScwvKDcwfaqrh8yWjYBBzh5fAa": { + "balance": "2647.982599693", + "bytecode": [], + "datastore": [] + }, + "AU12v5Ek9cgTBGLo2E3FHGcueM2bLWM3kgHDThdshyfgWFXAu1Pwa": { + "balance": "5656.289807441", + "bytecode": [], + "datastore": [] + }, + "AU12v5VBLbDMKxaKqEZLAV7XKZ2HAsafPzC7xr311vThshfGSsK9S": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12v5Z5GezrAUjXy72t3i97MvWAwGtW5d8hf5jkCrwndMntbWeCG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12v5o3yDbkoCLvwT1Fa8RTdYfYSUhaSWL7YmGnLA1osnSR9nKEZ": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12v68jjzmcu7F5hwZPmF7AhyMSwGdvCjZufVcDp7Xp8hjB6qGca": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12v6R3S4RCkUzM1hNtcxoYA3Ub6jCeJbdhU4NdC9pH1nhYBcvAL": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12v7DjZGTmhNK8cDEmsFCZsvfmajNkLjaoa7s98F1iuhBpPpUdL": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12v7XTb1E6FPsf3qHPmnNN151SfxqP7aHsPAxHtenXRELumwxjV": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12v7a63TQFzMjVJUCMFAxqe9Fb4apaiqLxdJwb5gQLfuV3Kjqj3": { + "balance": "1304.513774058", + "bytecode": [], + "datastore": [] + }, + "AU12v8K3e5S5T5RER7oMTQPspEGCYe1DmB8STBdzEGBekNoNjEJ9k": { + "balance": "2848.993171318", + "bytecode": [], + "datastore": [] + }, + "AU12v8NHczdoyTcte32KyBG9DjgMSwsUvezCWoxcoTNkn4n7niDC4": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12v8R6tCHSxeMxttRfbPng8bXhTmYqaMVzMACkEGaAfpbbnxs1T": { + "balance": "1185.612872642", + "bytecode": [], + "datastore": [] + }, + "AU12v8h9BfbB58amZEqr6d7AJuxh5qLrDgmwqZJAAvokq88zppwSx": { + "balance": "1029.744325350", + "bytecode": [], + "datastore": [] + }, + "AU12v93AAtkVTsFKZCBSpbrC4fE19mqdZQdmJrMwGijZs9QY3U6ac": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vA87ZRaMTX4huD93bWNggpnvRpPCkhZ8oWYS5YCS128chiHWw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vBAeSNS3asgwbWZzkWGtNkVH5Y2RfE37qmubjEi8nwMY5Becm": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU12vBW3cc3oowJeMwUuBnvEbhj8k9mpgAFUMbsRSosgkZGWhTiQV": { + "balance": "3391.939877616", + "bytecode": [], + "datastore": [] + }, + "AU12vBkQ7ZHzLiPFs6eQie1dm7CngfeRoPxqgeHFSBjmefmHYCmm": { + "balance": "2394.710292892", + "bytecode": [], + "datastore": [] + }, + "AU12vBqvYs849tUxDURMYgHJujN8VjJxcrrEB1A6TnoMDk6cuZken": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU12vBtiN2nh9gbq15sGUQsrBWWRMWhDve4ct8LztLMHTzmqG2A97": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vC1ooZE2KcpuuhskyN1cWYLfBd2p78GNxCWhKEpnn15XL8rr9": { + "balance": "2420.928080740", + "bytecode": [], + "datastore": [] + }, + "AU12vC2RpJLZ7r2Dz5VtKLrMBbbucsdG9sH7BSptuUqmZG8ihUxiT": { + "balance": "5981.625993148", + "bytecode": [], + "datastore": [] + }, + "AU12vC325jw6ZWcXGm5e1WH7EtGsc1JUadzjJrWSZYyGQdKXr9FNb": { + "balance": "5969.213228703", + "bytecode": [], + "datastore": [] + }, + "AU12vCLy8t2eTsEdjNVsLcP1S3WUdEtqD9DCusqy38mt5mZHq1ENg": { + "balance": "1660.364064344", + "bytecode": [], + "datastore": [] + }, + "AU12vD36Qkq5GKah2RiGHh9Vqp4gGg7eAYB6usZ2UJQog5xA6ajQY": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12vDbN8CdA8m8LMqf7GAKt24MiDDyVwRwzBC69eMKLYiMjjamXe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vEFf4nmxP5dPKgzcaQ72kyQwosjHNps3LrSUxXr42NWzwvFDH": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU12vELwp3xkfDYa2PECpvw2X45VgSVDiehM4HRAqP3TPa6ZCQmtd": { + "balance": "1248.366470925", + "bytecode": [], + "datastore": [] + }, + "AU12vEm4TXc1MyLKTTnh46o6SiPgi5Hz863T3jgQR4UUoTeHocQ5Y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vEryofuCqorD5ZiSDmyojy749GakRDmn9AwCjHzGiHe9Sr1UY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12vFS7hupRWdizuHnT3n8ZxtUJz9AdUcWa4zi1uJPn7p6qHDsMc": { + "balance": "283.748036842", + "bytecode": [], + "datastore": [] + }, + "AU12vFXZ7aHNdepJbz9FRSqTCocnKwJ1DXgKRMbyGUZj3y3uRMJrW": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU12vG38hg9vMF4CNFkvZ88NbfywGwrSQzkVdiBJ9PBYZRzVon3Q5": { + "balance": "594.426986896", + "bytecode": [], + "datastore": [] + }, + "AU12vG4dh7oiJGVjUCofqkagZuSoqK41eDwThFstRswFrygDZHwL4": { + "balance": "2033.801446124", + "bytecode": [], + "datastore": [] + }, + "AU12vGDs8CkaygXNPQBR7vHfBk7PJLvrFevXLXT3dgFZpnLT9Yuhk": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU12vGHbnWaYuhUvfUSiAaceWYx9GJYdCLE1xmTaMCGR7qFhHnLKY": { + "balance": "1690.666727716", + "bytecode": [], + "datastore": [] + }, + "AU12vGUfwG9oqCvPwnKAGVcHKvfH7ouijkspRVdtiNBVVCHEdf11u": { + "balance": "5769.623882132", + "bytecode": [], + "datastore": [] + }, + "AU12vGYHzeHJqSXjgGov9eHmxU4pQowWRKHwL4SehJttxecfR6ohG": { + "balance": "4261.053284157", + "bytecode": [], + "datastore": [] + }, + "AU12vGkjkyGRrBBpKDkDrmThAbWNuEWpUyMsQVqUqPSEng1hDnRNY": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12vHPcY7UMyviRpeVXmmcEQD1UkrCBAC11sKZM5UQajn3XRB4K2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vHbJsJhupGe1EbEG7EKHraaffbHLLgYSvJeuprwssF8PpGGKW": { + "balance": "3724.105804350", + "bytecode": [], + "datastore": [] + }, + "AU12vHd1xGx518NioHHovRQMKXh8bzhwoWobajqHhvVMPF8z5Pkfv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vJUNgVZmDgKnuW8g5EmDVQ6pHtk9W9koQ2YTbgPiCNQbh5Rqj": { + "balance": "1460.808925121", + "bytecode": [], + "datastore": [] + }, + "AU12vJrCwuDVfhpBMPcAdvQTqeE6gMo6cd1Lsiad7awCadcFY9ps7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12vK7nJYq5evk8LQHueqHQ7ifubanbTJGpSnBn5Vq891mRSusQF": { + "balance": "1767.360827632", + "bytecode": [], + "datastore": [] + }, + "AU12vKAFeo1raKSbjhmDq4wPf4KpqKdv7K3MtCo3EKT4X16GhHrZE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vKD4BhDL3YDSQ9R8nDs9Gan27C7aoBjGM5WZJvQYPrm59hhxE": { + "balance": "1490.301817840", + "bytecode": [], + "datastore": [] + }, + "AU12vKRBvUFnxxqV8tnRP93zPTtEBCeFJQGLU8r3qBLBA6YvwFr7T": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12vKYwvEYXsYLXUCeqhQk3jCDuhYm4Q5EZQp78C8YhhyETGx9F9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vKp3m8BuU7X29USqvKiTTpiosunbAKTPsUbzvbj9UXPvgBcut": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12vKreMHW3NQNKwa3eSGGxZcvJ4FRK55MsbSo8kPF6Ca3774NVC": { + "balance": "803.345826546", + "bytecode": [], + "datastore": [] + }, + "AU12vLL3RLD3DUhFPNJRF84acVh4c5UwLbYvR9oJrhseR8gK8HT1P": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU12vLUotK45ejkTkY7p4TCVpGxpHsuWecsg88wup3NaZcZGBXQLo": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12vLXoVS2H4Fnmxo12DS7Q9w1y1DCDFoJz4eqs3gVrd48r9fJKD": { + "balance": "1962.658750664", + "bytecode": [], + "datastore": [] + }, + "AU12vM4uBEAr5HhfwAYkTncVoHBtEfuReFFiEB8igx4kbFV5ZdmG8": { + "balance": "2099.578368321", + "bytecode": [], + "datastore": [] + }, + "AU12vMTVr4HEfeYi5YugdXWWN7Gygo27bP8DdZ2qtWspctrUREVAE": { + "balance": "609.937572296", + "bytecode": [], + "datastore": [] + }, + "AU12vMoHgvzjL7wtY49LNC7bhXqxApbAzS8iHNEx717bW6TLcVgTD": { + "balance": "3332.966384207", + "bytecode": [], + "datastore": [] + }, + "AU12vMyYhdRHUyng6kf2vAFjmaBDBm8SH85ESEiTZLZkRbJPiWqH3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vN1FB2uoCwCnkMhcfFVC8P4qeBmhyLU7cuWp624YoG9s679Xm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12vN3iSJ6QPQfSHgGim6Zw8kc2PW39mNThFpBvm7UgESqVB9SeR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vN9xkMSYzNFBjKKUVCDbSS466EB6eXHUwRRSVgXB4m1DJg4a": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12vNMEpHoAQ2mciNQCPrXbRaDXekPCC2zhSS8KxVk37VQpeemaX": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU12vNSoq8PutcHHeXKJf54etBpebpKiKsJZEG9CyDJZauu1o1tYk": { + "balance": "4853.089115408", + "bytecode": [], + "datastore": [] + }, + "AU12vPYWiUjbTXYZd7wHhWrPWiBKA5yxNhJwfYEqbbeYv3t4tBua4": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU12vPgj6ZjKVfgjf5puxer3fr3j3CZ9wmsv5XL3ahSrn5xEArVag": { + "balance": "2468.592415586", + "bytecode": [], + "datastore": [] + }, + "AU12vPkgwoDJyeXnmUm3N4TCyTRBCLgv1UVRppH9RtVKoXvocFnwZ": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU12vPp2mrg7wQgGBsfiwMWmdtVjPTHfhbcuFmeLvAftbdauBCdBA": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU12vPw4uUcdVQ35NLhPCVHGPKq7eWLnBFBovagFDjN9d4vWWRxcC": { + "balance": "1546.701649711", + "bytecode": [], + "datastore": [] + }, + "AU12vPzRLAkEk1LmPRaE4eKQPEKZfWF98hfijb8hPnF3ZUaiDY4rp": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU12vQBVYGAU7J3Rc9A3zUnuYME3pG89N5wL44sv9hyNHbft9njvY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vQDsj2834PdpG2nF8crz5dYkDWRfo63ufsKSBVP7z7Qb6H4o8": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU12vQSJ5bNEBZEaVGx5VJEJSQcSojYekLVTBWkJsxk5ECXJ5rXfC": { + "balance": "1496.924943823", + "bytecode": [], + "datastore": [] + }, + "AU12vQUa9QM4UBwnRhpcWC837VaxEL4jPMVdcU27ekh7m4amvx6JW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vQeiDjLU4z8V6yh81sZBzem1Z8LsHxTnKUScFvrxio9q8bFR8": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU12vRWG9tJyEx56Ltd8YbWjrk3xw47ZhSyrVRJoxUeE498BZYrjg": { + "balance": "3139.289423734", + "bytecode": [], + "datastore": [] + }, + "AU12vS2oFLEUk8CVhrKTN7pKrGRBmQzkq1Aiy6kCs5LVAdYSEisFQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vS9iZeBs9GAYYQDLxLs5DcV6kK7nSPxvY7had6EXE61WywPbz": { + "balance": "1432.807515371", + "bytecode": [], + "datastore": [] + }, + "AU12vSoJGBKb8GLEBtRY3pdsehXZp74Ejyy2zbCFj9kVvJ2Cs3zVZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12vSpWMgvmGpGZmhYxcrsK2ZEtb6Yg7TyxHJs9xvfJyBomxbSeM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vSpbL7ost6Ejg66qHuBXgDcTfMUm7BxQJFhjCyAVTXTqbED6V": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vT8HPtgroe1S5dSBgzLCk2NqCuWGMLbYd8Foti3ANrUyVeRcb": { + "balance": "2081.217017884", + "bytecode": [], + "datastore": [] + }, + "AU12vTpF1887WkZNLTMU258pzFFbf9odsVEasbRE5JcLP4hazmLhb": { + "balance": "3031.946088854", + "bytecode": [], + "datastore": [] + }, + "AU12vUXxeavsJH3xRATxXSn51y52pmuQSoBU3gYWwaZEyPutWGDH6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vV5tvkhpVy2KRAEWur9EVZMJoSxvtNQ1k8LL8h4hT4ba63Zt2": { + "balance": "33600.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vVPRv4pyMNLDy1NgDojxxzrrLvE9xpSR1sjcZPirASrh59Vcw": { + "balance": "13039.710337721", + "bytecode": [], + "datastore": [] + }, + "AU12vVQ2mRDnyHUPs6QLfPS3wGvC2wFqqrxGGaAWBrsmFXAVgCmyq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12vVmwcNxpPzWVbqP5ruNFc2xwNXQM5iAbPwp3ruGifRmAwRAcr": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12vW5csSR4oUcjjPCkDKwn62sFCkL6qF3SZV6iBpGpqyxkQiY7h": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vW6Ee6hkeirfpY6z8paDZt1hD6HRE5rBBv7HuKWexsEzKDxkg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vWX4tnj7tehssNZCd6igGekBfYZpH3mcy9ccgSpY1CAKEBhgX": { + "balance": "1104.075824211", + "bytecode": [], + "datastore": [] + }, + "AU12vWX7UDjcxmdVJmVBWckFV3PMhFw21G2XEzmdJt9oTCwHzmjzP": { + "balance": "77.413596933", + "bytecode": [], + "datastore": [] + }, + "AU12vWi1SdUZ52ss6NmdmBQKVMmEHA19SSB3fp1zHnFuTjxqvMS9M": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vX5FxBczzvqMMYZwpXxFx9h4Uhtt1bZfywsj5qPJwRUqHEDaX": { + "balance": "891.247445134", + "bytecode": [], + "datastore": [] + }, + "AU12vXAZR21pob5GRRpfWgX6BaLxmU97mGhJKes2z6SuWAeiQGazn": { + "balance": "1342.037083662", + "bytecode": [], + "datastore": [] + }, + "AU12vXKiDRWTdDFFfETsuizw2kDydGaoYC2STuh1r3rQX9ydmRixv": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12vXxzdxDFRYHmfnsXaqVv35cJvWazvTkusMqYZkSqwzkanxJn": { + "balance": "554.290942141", + "bytecode": [], + "datastore": [] + }, + "AU12vYEFLnBf5nfkFVwaGir8NRG43MygNXpXMNhSPZW69dHQgcKyV": { + "balance": "1985.800191482", + "bytecode": [], + "datastore": [] + }, + "AU12vYEZsxsgo9b4B6VXLNZjxJbxyMCxkePjAbz6DwmYiWVQcsXJq": { + "balance": "758.089078737", + "bytecode": [], + "datastore": [] + }, + "AU12vYPsscQqKTq7AmhpXWPZqxHVnoo7yYKuye75etarLwjUofugb": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU12vYXmnJMsRMUXKfd5aT4TqGPikgfYj59bnFqpCqZmwvVMhRLuz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vYuBan4sn6nyR4xaCja1B7DCFpc3M1kg4hbmQjcSFon9LmFMx": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU12vZ6W93vvntUBn8Kvjuz4JjR6dzEwkZZexZk53k3zYB8j8hgak": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12vZCusQFEfUqkBpbRTDwoH55rtZvY5NBHJ74NxkYiVBznEDXCw": { + "balance": "2005.374990330", + "bytecode": [], + "datastore": [] + }, + "AU12vZHQCKm51JquoegDahbrnSvXWRXBgHsb7MW2xMmM3wAsbw9CK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vZPJvdD71Ycqci5unCQpcvVRCRMM8D7wVwW93tKdvRFMKpMes": { + "balance": "3796.813144301", + "bytecode": [], + "datastore": [] + }, + "AU12vZvQkeZS4cYdEvRstV8F1pvwEgenDd5esDxKvDcobEh5pQt1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vaAVv2KYsKEdNJ2xnmPQRTXnbVghasAL1XehxUtQtQmtk36cn": { + "balance": "1684.576334204", + "bytecode": [], + "datastore": [] + }, + "AU12van3ZcRZ2e4sJ5XE8gbXDd7BSxPe8BjkTNg32SvkiqT5qVoc1": { + "balance": "94.645032265", + "bytecode": [], + "datastore": [] + }, + "AU12vb36To57iHiJ2Ch7A3raHYfzrZCZKjo7qien2bBGbE5CckSxw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12vbm8MV5THKF152kB9vYYwM1fmSPzcgXq1Nb1z1qqmscFip9Ki": { + "balance": "2991.282859228", + "bytecode": [], + "datastore": [] + }, + "AU12vcFrqhHdKSUB11EMFMyjqd4pcptZuvWuniF23qTqJ66MNQhsx": { + "balance": "1898.026796285", + "bytecode": [], + "datastore": [] + }, + "AU12vcG3pMLqnKkF7tMYEa8aQj26wxsmFSh9vzdHNKuVJpWjvwEP4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vcJhMjv6NBifHuwGNngMLgZmXv5W9qjwrHxonPyGUmE9MrhcL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU12vcKkom1AQooVN1tYSWgKTP6soVF3cYUQdnmL2ejyvFyjFbF8C": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12vcRNNneN4b8PcGwFdwvFguWmHveddTWeVGnTvUZxZfpwj8avN": { + "balance": "1810.963442290", + "bytecode": [], + "datastore": [] + }, + "AU12vcWhobszMZAQBTEzouZ2uxJMhFeoREm8aA6PAdLpwJSRrCw67": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU12vcgdYAYN6vAx46o5BH1jDVwb4G5gdnpwV2TfWoGt6mX1qQg72": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU12vcxnM2vWUevPhYENDaX7iHiY314NdKijGHHjJ8EXqrJAVTBmw": { + "balance": "1969.827285612", + "bytecode": [], + "datastore": [] + }, + "AU12vdN3fS5V6tczyBDtX8HQNABD74QfcpsGsYw2sc7PLATJyGrAT": { + "balance": "1524.104929936", + "bytecode": [], + "datastore": [] + }, + "AU12vdWrtx5BpVoe642EpdRGfdwBL2k9w5QXk3iJg3ZmwDXDnJyKt": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU12ve5VvXBcEsUw4TaZgsu7fGQ5AqFH79YRwHv1zSPi5MWNiUdYX": { + "balance": "838.131168066", + "bytecode": [], + "datastore": [] + }, + "AU12veyxFKAesm2fKXhgfUgUjjiij9G2GHyksZHmYnFz8ttNrffA4": { + "balance": "4795.276577465", + "bytecode": [], + "datastore": [] + }, + "AU12vfRv7QUGpPceiL4tWPzPeBSscB43uWb1ukohGAejNqSotCzr6": { + "balance": "878.874618639", + "bytecode": [], + "datastore": [] + }, + "AU12vftBkXDHSRYk9A4zhe2Rhnf4T4VZQW2HdMLPDiTGyrbhZ67jH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12vg3CSdWuJJKtfe2y46xGC9FdYd7T3nbh6PsSRc73SdQfHwCUE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vgFRzw4whGDiTUTu7phmXkUabBxFM1ao3EWEUP5BwDc7u77MP": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12vgHSmt8uZuLXEhefvb2Q325CtfiryE1oy5abjUFRQWb41epYb": { + "balance": "1401.238697799", + "bytecode": [], + "datastore": [] + }, + "AU12vh6Y9iS6AD7DJ1EBoUq1WVCrKBXNTEYbTzoNVt1uVuKuqGmfm": { + "balance": "1434.304687871", + "bytecode": [], + "datastore": [] + }, + "AU12vhdrUPmRbxfVK5wAnQkvDp8Ybu4v3tKhEZgTttJ3r9qzoKowA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vhv5CcLgKELUSuF8vPo5B5DJ4M1AdayEY1fzfroNWErkafzDR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vhz1qHJWcpH58GuYbXnvnYLhTBQaWj3BRoPLQRDQVqKEE4HZZ": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12viU4Q6CYaiqi3dUaCtTHasYa6pA6gNrqELVUazq4B3KetghmZ": { + "balance": "3126.336408952", + "bytecode": [], + "datastore": [] + }, + "AU12vidVRtwucaEc3Fhz6Fwx1kMviux7pCsCuauCfBgjBXZ78pFtV": { + "balance": "949.138152004", + "bytecode": [], + "datastore": [] + }, + "AU12vidij8KuU4kbgynBjRvdzuZjgLDXS8Nevt95MLBbeUiXQEebm": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU12vjJWxoxrZwAY5Dxm71YoPSWnUEkyMqy5CVwF3KrMUKhmVr7p2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vjcNG4yxZ8RUD9nFmeYbrLs9d2ajx8tARnZ3uhHkM5jqwrGq8": { + "balance": "1867.049961750", + "bytecode": [], + "datastore": [] + }, + "AU12vk1tHqBVV39dFZsqBW35jwysG7jjmLrhoDu8pziG1zcN4Z4py": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vk36JmpX9bBvQH6fjTaxCBRTBP3R7LNVxC79KfcDmvBCnoDEx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vkQSWdMnJuiTS1Q1d7PKbeU9GAfrMbdFQxbXew3rEFStaP9YZ": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU12vki3k2Ec1S7Cba63Ck99D7ZACJoApgbAxJWSUnxUyNzkEPGjG": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU12vkmGNsh2WBMdxVCLJXCgcti1g6aGud2KhtvCymDTurBUTwNbd": { + "balance": "1013.427520154", + "bytecode": [], + "datastore": [] + }, + "AU12vkp8PaMnqZTwr9AW61pkwM4AguuKqUWUE5SvSCWUofA4nbesd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vkvXgizL2eDF2nRhCGbhVTnefQDVCg5XL19F4H35X7Jzm4e1W": { + "balance": "74.275433926", + "bytecode": [], + "datastore": [] + }, + "AU12vm1KZck5e7hURj4MjrVJubnM6ihHYc5D9JfUvaLf5je64MXyT": { + "balance": "1830.872860892", + "bytecode": [], + "datastore": [] + }, + "AU12vm8JcQdjAnoP7vN3S5TEFz5Tz1KYACGd1QTGsLxRn9QpX5GUV": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12vnNk5nYVpBK6YPeGZgREuXMtUSZTo612SugKbdgNkSacfrBa3": { + "balance": "1521.587766834", + "bytecode": [], + "datastore": [] + }, + "AU12vnUAtvzW3cfYtCvUrXNNFbEPx8ZbAd3BHqr27QyxxjZfPyzao": { + "balance": "590.042864391", + "bytecode": [], + "datastore": [] + }, + "AU12vnY6r5yUCxarhCZazkSwyHsymToySYjbHggxMGWUzSSXFgM2M": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12vncRG2XDni1RZkf2d7H5bwHCDPTRhv9Uu9X2K6qFfdZi3ddcH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vnrtzcpuYdTqoVrPbNfhmTQTGVdHWCHbrdxdrNujpVG1V6QWz": { + "balance": "1624.750378255", + "bytecode": [], + "datastore": [] + }, + "AU12vnvMV6UrohDTFHDwtsyHEozw9JDZgEvkhVxbHVaKmiDGo3BfB": { + "balance": "47.597161386", + "bytecode": [], + "datastore": [] + }, + "AU12vo6h9UYEKfoAwiQTvv3Aq6gwdD44yihqnoftGRynYGcegNngD": { + "balance": "2587.336484345", + "bytecode": [], + "datastore": [] + }, + "AU12voRZmBCsVrXnftjEpYio1N3r2KrnFMaN51x87LJtbHXpEQPRf": { + "balance": "1934.322777048", + "bytecode": [], + "datastore": [] + }, + "AU12voWE5m9TGji12mpah9m1X6cYBgiXcGe1XqWKD7PbDA6EJ78nS": { + "balance": "3169.587856847", + "bytecode": [], + "datastore": [] + }, + "AU12vouGvrPk1paDishBgo1pNcHvnojQiaVNuef8YfDFVB9i3ZrBq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vp9qwZCffsNw88cbcv14XpgEKUc8yNubt1NzabU6eQWYjRxno": { + "balance": "906.327762675", + "bytecode": [], + "datastore": [] + }, + "AU12vpEsqf8JaxvCAEZgPwjteiZKFttda1iW6jH5zHzW1RXYSU7k3": { + "balance": "2423.897973194", + "bytecode": [], + "datastore": [] + }, + "AU12vpGRKhejBCuxG4YqyXo6DxQqXVHAdhPh1QVj9J8XjtUW9TAJp": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12vpMf27guxVu7DiUNNVVuxtgppuQbBbDdZWEhRWCEjDn7oEvDA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12vpWapnQpG4fXg6NeHw2aeb9SgfC1wSTQA8xwBJXfP2Ff3kkND": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vpcUvByK2TV5VWsJ2xQ2T5qM9GYUYMn7ojsJNZBQrekbZp4f": { + "balance": "5438.886506114", + "bytecode": [], + "datastore": [] + }, + "AU12vq9QMHvanJJ5BWpYtwgNDGjQud9Kquwkq76ZVv4CgRwUMe1CN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vqEuWvnPB9yZKEpDakyaTRHDaZgvod8jCFukmJsJRobEDWeQo": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12vqf6jRGgZizHQKjTNNogttygfpRnab4qchFp2dWLExrqVHs3z": { + "balance": "1779.813919264", + "bytecode": [], + "datastore": [] + }, + "AU12vqyanTN15eadajcLzbehC978f4tqFctE5pMMk9iEMUtq6jtMC": { + "balance": "1487.825444026", + "bytecode": [], + "datastore": [] + }, + "AU12vr4CEcRj175zGt34ynuuf9sTQvSnCWPgJbhvVapjtaaanvqaj": { + "balance": "5122.181454167", + "bytecode": [], + "datastore": [] + }, + "AU12vrK9AdsAULzs46J5gzeMxMb23wTNV4tBQZ75ku2oyC3VC5agx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vrMCoCBdPEiwVFEzDyo79BhVsH4oiXACDSZKgN3e2vDquFVRA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vrbbvKHqvSzHRTRNYGyVqZyavcggJddanTvyH1sASA4i7m2as": { + "balance": "3777.369353722", + "bytecode": [], + "datastore": [] + }, + "AU12vrt99f3DZKMk2UimpyTNz3Z2wd7oBobEC36vS41kJwjyanKk": { + "balance": "884.852810603", + "bytecode": [], + "datastore": [] + }, + "AU12vs5zVLMg1oJJatG6im2VoYFqigt8cPA89GaR3oPDTEK7mHNmB": { + "balance": "557.424556497", + "bytecode": [], + "datastore": [] + }, + "AU12vsGEpJD6gTecyg8NUPUTgcZkhcZzVDyMmDrCyt6L1NeYwRTVb": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12vsMPRXnzE15gjTLPyz4EzpznokQizqBmTsZWBVag3L1Ay7WrX": { + "balance": "262.362793252", + "bytecode": [], + "datastore": [] + }, + "AU12vsciHshWjMSFzgdve7yhHd6MuDxRW4JquHsupFZNcbxa5X9TA": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12vt83bkvEV9xdpYv2KwrTtWw4UAtgjiiRv8tVW8BytFYXbkoEh": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12vt9hAyBwtiyFdQmUHQwkikkKVVoViCi9CZoLmf1wRyhYoC1SR": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU12vtV3okwSxaikpboUo5BKozAEWMohMnuPGfKzLTyPJeGYKgEnD": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU12vtqHT8gHNDPQD11VrQFt3Ew6Ee2mW6AdwyiWBRn934WHQXvXH": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12vts5fKLMr1vkc6kyJx1KnmNy4NA9Dv3Lsa9KSb3f4gk8pAiVF": { + "balance": "2282.790832168", + "bytecode": [], + "datastore": [] + }, + "AU12vttAQ4ZDEUT6WsFBkm4ZrYtjrC1edTd9jXzS6wnw14fBFXK8Q": { + "balance": "1322.152006706", + "bytecode": [], + "datastore": [] + }, + "AU12vtvgX4gLHsV2EkaXY2FZA3FD6KrRFaRoTvgQtUQuupfxga8nJ": { + "balance": "1940.631947204", + "bytecode": [], + "datastore": [] + }, + "AU12vuGW56hr3eJa9qUa9uxwxuT5ZUdLWPJQ4sXdhtDwrfp5LZxmb": { + "balance": "925.539944701", + "bytecode": [], + "datastore": [] + }, + "AU12vuMmhiGe5B5stWr1cyEWnJDiEtEHqkv4ThAaEXifzsyegAzRS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12vuWcvnDoQrYC3SPdayYzAHSKF88v83DEi3B4uFBXgtJEjeGf5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12vuknSRqT77z4gSoUreeqiz8zM6Zzg6VgmxqTVYhJTY7rtt9Mb": { + "balance": "935.418609579", + "bytecode": [], + "datastore": [] + }, + "AU12vv8ykFsZo2QHaLvRAWuSDLt8DA8f2AsdzW3zC1v1DVk8wxkSe": { + "balance": "2490.508054521", + "bytecode": [], + "datastore": [] + }, + "AU12vvDs1pZtKbPGYwpn7nmt1RKmQ2gJfthv2p62M5ssNr4dbyXV8": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12vvdgDMMpyATCvTqRwyM5wG9gLhEmex9Uj89ZSJG7qAqZzUn3Y": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU12vvjoitQTEkNYuNNSNGz3VhZpER4JzNTPkw82ETq3fJv2DX2gz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vvsg6EL6RgH1GT7deMQYGmtUATq8STEHkYhTBTLMMGuBPeVt4": { + "balance": "1186.971106026", + "bytecode": [], + "datastore": [] + }, + "AU12vwJMv5qDfhD5PoLvz76uRUDLgSsGkV8j4cgT77uYFheDFwNXT": { + "balance": "155.984594545", + "bytecode": [], + "datastore": [] + }, + "AU12vwV1p66ZuSt95up1iXzf8MmKEGNxr3L43QcYwSGKZn2sGLrBG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12vwe87GodfXVaBTLcaEHAg6LhY9MdnwrgMmemzBCMEz3V8qb8L": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vxJ7dWqAyG9h4KSfezgsqLLgSmbJD65xbR5YbEfKgJKnCW2Pk": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12vxRwsugJ5agXv5x8UBd9y2SQopmARZftJcdx81STcwsRuMSAE": { + "balance": "1316.497370509", + "bytecode": [], + "datastore": [] + }, + "AU12vxSL8E5ePUb9KAY5g1zRLjQsBYF3Mt7EqRm6VbssfMvR2qMHP": { + "balance": "2030.264098349", + "bytecode": [], + "datastore": [] + }, + "AU12vxrbD4YAvuLhgk5fq7ovhkCk63SqvAvxjwqZtrFDzbzssBRA6": { + "balance": "212.098250898", + "bytecode": [], + "datastore": [] + }, + "AU12vxx4ycxW6BUVwNEppW6Mijnx3HdxG6r5f1P4HECtvkfhRP1Ea": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU12vyL2dA8Z42W8rxHLHf6EpZyzDR3gPHyAk9adoRbXTnDTKTTqE": { + "balance": "2401.774629452", + "bytecode": [], + "datastore": [] + }, + "AU12vyQEREYJc9iYK5rdC8rNNeC1pbGqyhxCGVwMvKg36Stx2YGiM": { + "balance": "3065.984003330", + "bytecode": [], + "datastore": [] + }, + "AU12vyXShm4k1ajDPDsh5EdKfbEeZA92ZU5L2bqGuzLqayiyJBV7U": { + "balance": "2694.221732272", + "bytecode": [], + "datastore": [] + }, + "AU12vyYiVdtnQfpSTfWNsVRHBdsPut9eXC5sa7Edqh9v7cnNDg7an": { + "balance": "4993.596560512", + "bytecode": [], + "datastore": [] + }, + "AU12vyYwU1KDoAF2yXVAstb9mZeNui79uoxba9gvALPVqPvpLjKkZ": { + "balance": "1442.796759350", + "bytecode": [], + "datastore": [] + }, + "AU12vys8dQGE3BSr5jEUSUoEXXzbLPruxr7ngSfP75zDUTrwS6jEg": { + "balance": "3974.191039818", + "bytecode": [], + "datastore": [] + }, + "AU12vzeWC9UWRA4kNwdr6ypM8EcNkF6P3Qm8QeVtnQq9g2pB5iS9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12vzfLRhdnHVisMBudxrFHHe8XtDW3bw7xSzZEcmEqjyN7bA4SH": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12vzojesenMrbgoiX3NP5GnWrBBmdYjyYGx5bM1dpYpLE4KV11d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12w1F2S9XxTQn743mqftG358ydWRdH6TrZFq2h3mDnTcFwaJ8oj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12w1L5bK3DD89JH2LMb1goqxP946SEgdF4aKtQVYaz9WBvxGT8E": { + "balance": "1844.884370474", + "bytecode": [], + "datastore": [] + }, + "AU12w1fRZJ5oyYRJJJ3chauZSGv2mgonQzB7XRP2gcPqY6BMe1AoM": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12w1vvCm4UEyuDB1TxkqSeb9s1wCzPFLVh2iQFAWBRf6ffUxzYQ": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU12w277qHAWQdaSzKQyV943FuSnufBYUVtJfS5Ckw6735jhE2rWX": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12w27rpQU7N3X6BNvQcqEXpDCw6nxN9mauk291szpjCmUqbzP3L": { + "balance": "583.887212424", + "bytecode": [], + "datastore": [] + }, + "AU12w2EmKbpg9uZExmkij592JzAAc3ysvaDMazg5Dfc25swNTHWAm": { + "balance": "2189.142546545", + "bytecode": [], + "datastore": [] + }, + "AU12w2ZoWebLgqtdcyhNZrsaRtDTFiYM5157kDvNgPCd6MQ9x6629": { + "balance": "57.165235925", + "bytecode": [], + "datastore": [] + }, + "AU12w2uUGnbGavSyM28xYZh1U3YCXJHvcf7DhqbxJzMGT89HRq8Sn": { + "balance": "1676.560304971", + "bytecode": [], + "datastore": [] + }, + "AU12w34Gri6L3CKRbRxEaPgmcg8edWauPSVnA5kqkBaR3LnnYB6Hu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12w3ZG2ZwDi5oAPQ8cauG52KXtJhY7BUKVUZxCsTthuBbD1KWX3": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12w3hPcXyEtTEt4nEjy27Nf578ys6LwUNYpAg5mAEpwwCMGTizt": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12w3mtNrAafKRBvQTi9XPTsZHR7ULt7LZbqfWsVh6qcTCVXKrfS": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12w4LkSqFb3VV3PC9yeCfFznsP8WU71yqAF8kqCSaZxaKFjt165": { + "balance": "857.457971377", + "bytecode": [], + "datastore": [] + }, + "AU12w4YrNwg25PjdRANtLkYUMFgxECrt2R2ncRD5kZ7H9GtM8ChMB": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU12w5D7s7F4tj9qSidsJTgpZ2fWZjPReQ6CXN8Q9JtU1MJu8J3qT": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU12w5LnuqcLiR1gVec3hW1qohmwkjAEBPZTXq8rFLHwVrQtFsi82": { + "balance": "595.469044951", + "bytecode": [], + "datastore": [] + }, + "AU12w5XoNMnDPik26eNAQmZC3azFuaetknTuvCwp6BzMYuoauWbFL": { + "balance": "1519.941804081", + "bytecode": [], + "datastore": [] + }, + "AU12w5cBrYKhcev5WKt8keAYgrCytJZZNtwRai2nGWWX5bCXULTtB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12w5jKN8NGop2VJsbqkE1FAwc3nBhVL8V3tUW5hWa8g2iyw3MfM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12w6SV2wNd5Ag5iK9hpbbnBoUwh4BWbdhAhp3wDhCH7tWg3c8Mp": { + "balance": "920.002735471", + "bytecode": [], + "datastore": [] + }, + "AU12w6TxPYj5x1mQzidkAEvaiTswKLthg5C65hXbRnJcWvto49XwM": { + "balance": "619.721666453", + "bytecode": [], + "datastore": [] + }, + "AU12w6xreWVuYcfXyG9J7phbrCjkCAChQNRnuDjbqyjCSjMDv31Rf": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU12w71JUjNAquAs4SgiSoo2tmXSQoiCVhBRZNF6gxvCozXDcXDhF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12w7DuaRPF7CAps4g9LZyoEKmaSQvKgHL8doBPrwDmFmsXM7bnK": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12w7cYmGgyq4Qmien6hF3AuQatVZgmyqfbZZHWHe7PVyL9NgnVR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12w7jqU63DPqA8tDtbccdz7BUo7tgPY7QMbDZnHwcxoqadLE4yM": { + "balance": "2611.465343563", + "bytecode": [], + "datastore": [] + }, + "AU12w7saUNiXJ55ze8p7K6J2KDxCDBhovb8485SFzhHnoaEdZ45jh": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12w82x2zAaqhg4ctdRkHNSHHs26H5jDygUoFakrkEgHPh8pgPPY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12w8QH3mVTZkhG45bNGS6vES15xffiX2FVu4mqCLEnD8YC4stgv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12w91hGznmSa5oK7JErt7sjXLm4fLvZgWeUSDUZQ8KENDw6vW8B": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12w96GsogGHjAEd3JRbDMeJGFvtq9Z47sL19DVm1xmHRzaVvmSw": { + "balance": "3402.392464842", + "bytecode": [], + "datastore": [] + }, + "AU12w96ZquTdtqFZwyE5jpvQwcDkvvxXT8mpWx7rtipYNbtGgUAVM": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12w98gkjs1f5Q9wstUCnQJvjCScq5zB1sMbShgvmEFGL64quoAw": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12wA6MomMYHeEsUPcaQEuPQ2Smxcm324X3as9ZiFTebD17AbJxX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12wAWHH4a7z8xVtBY84KsoHCdJzkM22mxVyzeEXeyBdrJxyxPzL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12wAuw46p3GAgunmSeDQRhiT3VGf4vjdfHonXJ9tmAk9GLGTpkL": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU12wB4nMpfyi4oFbsb9B8mQuV3HoKUNYu4TaDAqgyh4gofEPssn4": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12wB79UtRbRirqbC4QVCwotcv7ZfTAgycqQWopFtHeP69v4cKpP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wC5hMQghcy1touxb7XS1MvBSQuhoNb1GdxxEUu9mScijPR742": { + "balance": "2433.184371628", + "bytecode": [], + "datastore": [] + }, + "AU12wC7oA77cRS2XYmY4XPGbQx1EioBnEDJZwusfQBEHMxaRJzKRd": { + "balance": "1622.638763374", + "bytecode": [], + "datastore": [] + }, + "AU12wCNF1A3yTqseFTsmUWA2AKvrHy2DHEXx81rhc9GC3oR1ZdgJ6": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12wCYPfQie2SDJqD8iKdiXspV1GBqrsqGRib7SG3P9EnZRbkezH": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU12wDwiq1JeEokg6oWtJ14fR8knHHN3AaJHLgdvQTbKzgJG9odE2": { + "balance": "1739.990317822", + "bytecode": [], + "datastore": [] + }, + "AU12wE4CAuV6Ww2155k8hLDRaGznMwsDLmWVfRYVZsxDozzNhUXQw": { + "balance": "3758.248383536", + "bytecode": [], + "datastore": [] + }, + "AU12wE4JcTR3Brob788yjdSrj6WBsZegyzAdhdCY6sMZzP5Z4cwvd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wEERp4Aara6Bvg2BzjpwPqSZyYgt7T1STNf8K9yvagq7PWJ2h": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU12wEhsHcpXGvDyd38A8rcYvSKHjUa2XJGi2KoUAB12Pfey2goKS": { + "balance": "1365.522561551", + "bytecode": [], + "datastore": [] + }, + "AU12wF7rVnhdnknLQA2pEz4i1TtMGSSHufRuam8koW6BWttR1cr5H": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU12wFBrq3oG6Jn51ibtqHepKCSypUvoXnWqdZ7PKrBB67Ka8CuDY": { + "balance": "2407.469724131", + "bytecode": [], + "datastore": [] + }, + "AU12wFWkifuQkn9MQnasoM2ZHuoPbBah6gfG2AWGnfKR4qaofhcwZ": { + "balance": "36.732787348", + "bytecode": [], + "datastore": [] + }, + "AU12wFk7yAvoVKtxF8fQ1Cy3hEwKWxCrbWUXMGMCEiPbRo2AXKAMi": { + "balance": "5265.973510919", + "bytecode": [], + "datastore": [] + }, + "AU12wGWYgt4ix8nxghea4hVDWzunHx446c8jk8G8gop1fTEA6XTY5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wGbhNnctk5XaXyoxgNRAe3DqwL6giuQqehxzEqogaitaFH1Bv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wGe6fcjLfLKaSPhtV3tdmdKCmmXZRhff3DHs5HyA1byAQLMpH": { + "balance": "1268.698134797", + "bytecode": [], + "datastore": [] + }, + "AU12wHiqPegywtdWyXGr9dY1Q7oHVXQE59DkTLeLY7XxcHkeFy3Bn": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12wKYXsoMgyMPixjVAzGt4beTshuXzcbEBSLqC8o77V6doDgALg": { + "balance": "5452.456985658", + "bytecode": [], + "datastore": [] + }, + "AU12wKhrXaB6KRSXdD4t2HDSvGfmDBzaUAFr2FN1FdnQrNBTFuHje": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12wL7X4YRxQaLPeKmhtdYvoXvbB4uxjK1MbuUpzwnLuqgScZ7x3": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12wLJpG1wqgfaN8UA56FFfrE3CS7ZXZKFbn6Mi1X6SV1np5bMK6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wLcnRPA8cxaFCJ8Tq5iYG33necDGe3sD72fa27yZUpnuW5f3x": { + "balance": "2585.354966472", + "bytecode": [], + "datastore": [] + }, + "AU12wM3L8Ww5hj1qsxGQBoUptZKTNYNDfNxYZvnHpy1GQBRH42KSU": { + "balance": "774.572592941", + "bytecode": [], + "datastore": [] + }, + "AU12wM7HWZjEkySvvfVDaMbLxuQsMzpVf5evmDKSb2rjq4jzyQ3cQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12wMA7FXbHJpDeyc57eMvmCGVghLbkR5ovoukot5wXYxPCACssf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wMZ1SPSXy7JonYKy5RdtteXpB5pLKkmzFU3ku5GArNrcbPbn3": { + "balance": "2558.120766030", + "bytecode": [], + "datastore": [] + }, + "AU12wMgVG3wmfbypxFXJbZUUrMDgEA4pjYgrg5wjUYFSnMQGrcqbb": { + "balance": "2113.424093450", + "bytecode": [], + "datastore": [] + }, + "AU12wNLn8hzKYZpyGjw5MVweUqP9JSpSA2zBqwdDXACXeXLEfoBmL": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU12wNToifp83y1YQo6GYRLdZKKqyxpT2TqqPNfZ2eLhwbQhkWGz6": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12wP5gh7n1usaxo2adM1aV8pYA6k5puKJS5FgWtpVtTfegRiPXe": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12wPXY3t8LHLFRbQ5nswcgNutgBzg1sn3d3hp1nAK2GtMGfvvBg": { + "balance": "1740.720480047", + "bytecode": [], + "datastore": [] + }, + "AU12wPprsnCbq6RQk8Tx1TXdwjn1GaGM7LNyQatnSbSZr8ueQ8Z3H": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12wPvQCHaDmpBDQ3rxTLhkhdANU1cpEZMW9YdtLErnSQHH6LNjY": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU12wPzQw9Z9EZGoz9ncJFGJSfQmd7NZKGQh4MXjSpczMQmoByHd7": { + "balance": "3112.722421668", + "bytecode": [], + "datastore": [] + }, + "AU12wQ6NAKAeTggeGRDaCNrkt4ySQFQJbeN6XuBuE28FUFrAtQbvk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU12wQ9CzbZuf6KwixdrUSXebg6v3kToEjdEoYM5eyAsQxVqPbWbv": { + "balance": "1609.509973363", + "bytecode": [], + "datastore": [] + }, + "AU12wQH3KKCQwJKB7Yf1S2p6qpZYrQoChPBKVMNjiHnekU7UVfDHC": { + "balance": "2879.341670388", + "bytecode": [], + "datastore": [] + }, + "AU12wQKafBySrqPDQPzBLStJwcriyXWpQ41bfupvtf9JcZRDtuXcp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wQmDST3gJVF4boNJDvtBccMurU161xsZkXx7kadCupBDkpXQq": { + "balance": "1353.256502715", + "bytecode": [], + "datastore": [] + }, + "AU12wQnWV7Hq7TMgMuHxSvoh3kcftdeyKjbvzXaYRCQydMpMYaLrg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12wRV9CcDShrG5xzHD9BBpoPG9Hmqy8khkXVxjVXEyZZ7k37nnj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wReBMqyZfXAFPuUW1g5Np5GJSHpXTdosxXFAbu4Z85hQWKYPh": { + "balance": "3429.153964667", + "bytecode": [], + "datastore": [] + }, + "AU12wRqMe6Kqiz6ZzmP6Kq4fQPb9qaJniYS6PcSWeRKsFxH4NYsKe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12wS1WV6mwP1oiK4thgyqxu1WHJ5VmDU16Wg5cUzBgo9CL4eQC1": { + "balance": "631.482339572", + "bytecode": [], + "datastore": [] + }, + "AU12wSYw3i4f9xwBmDbYrtTXJ8nLZfmLMnhhJXUDBK2eku65wryLY": { + "balance": "4925.651872892", + "bytecode": [], + "datastore": [] + }, + "AU12wSd5pRSyr6DTUoTmeCDUBfeVaYynkwdx8vpGd6Pxj9K41dzoj": { + "balance": "561.918314756", + "bytecode": [], + "datastore": [] + }, + "AU12wSzVhPHusNbLgoY5qJPTgciwkSq5j2fzwDMCHCQFYv6W66JZN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12wT1KFxwWJWpkmUXXiL5wJGT5oxqYihzoywBSFKDjwNcQeWUsC": { + "balance": "4408.670779952", + "bytecode": [], + "datastore": [] + }, + "AU12wTCCYbCWKdXBLKQdshzdygdgJdUZ21Xi77yBuyNj2LiBu7KCe": { + "balance": "2420.699146457", + "bytecode": [], + "datastore": [] + }, + "AU12wTGSuUGjniJuMUTyAuKNNiEcUoAJTpCTGfmojqaZseKaCW1vU": { + "balance": "201.606698253", + "bytecode": [], + "datastore": [] + }, + "AU12wTHUo7vXjqG9ATqpGCqYoiqw4duaaTcTTbzAr9TXapPbLik8D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12wTWn8M2wMCk1sZwyyp6BP6nmq6pmi8rT3enLJxS3dsegLacsL": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU12wUjWigr9Emiqqfu5fm3vhY9AsKVQ98jvTsSVTrhPPmRtNfaRk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU12wVAyoNHs35TQhJdWYn28tX23eFX8KmVvQuzJiJb2AK8GQ5Pux": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wVRSvUmY7izbEiHmmvTFZSEhoViSk7GnWYp88EXLt6hwzJ9T1": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU12wVozMMWfh7zipn53JU6CtvCtaLZP9w2JwVcruLmcLxohMpmbk": { + "balance": "1833.232553323", + "bytecode": [], + "datastore": [] + }, + "AU12wVxXmQYYr1mSAoCPC8p3NbW14pr9MAP72Myw5kCeHFBWhLhrK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU12wW22A3FAkR3KDowUGWLTUbYFwqRqbeHip1ZLgNrSqowaS1myg": { + "balance": "1447.722987950", + "bytecode": [], + "datastore": [] + }, + "AU12wWGe7jsME9NDj7ihMtYbVwyN1Ytv57D5qJYAEqXzt5ZAkwLUe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12wWtFAHFso2ZutUPGYYF688GiJnoNBe1fBmMMweiUo1vC4nGW9": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12wXaJKkwYRU4rHFScwh24wxK9uLfAYMEq3mrKRY5pZrgyQrHTd": { + "balance": "2174.097978868", + "bytecode": [], + "datastore": [] + }, + "AU12wXerTjopU9EnJ3ikscpJ31rwR9XSpD87dSm9ezFEquK7mEFmp": { + "balance": "729.287540652", + "bytecode": [], + "datastore": [] + }, + "AU12wXokccseVzVoNjfVzNPrtQk6nWoCw3XgcXGA8co3r3BUA9YGb": { + "balance": "3213.845048727", + "bytecode": [], + "datastore": [] + }, + "AU12wY5agknTeGLiVmrkBynZHPAsEBxqFeKChEugiR575UrUPZjiu": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU12wY9k2znoEgygkzy55FQipEd9aFH8UnBTRHUf2x7ZX1rzSBGBR": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU12wYCLHcarHdm88fk8tzzTud1ejUbrxNcJk2kHF7yzrwA8VnGwc": { + "balance": "12.041224140", + "bytecode": [], + "datastore": [] + }, + "AU12wYiaqvwdcbJfrsPmFtSBNynRui9gbSVg7kTkqcb81VdSv66YL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU12wYs2UtR4XqviaQyP3kqu91VjYmuofSWasang6SnsvcD7sqPbd": { + "balance": "4943.310829168", + "bytecode": [], + "datastore": [] + }, + "AU12wZCJDU7VCZtUFrb6q6uQE7aY5VWE2XHA3Ygi2k6aaVn83MgST": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU12wZLgka6GVJbH8tFHpJREgKqeVuqsbuZYQ3MRsSMEnHkSqgriS": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU12wZZqoVtzeeVUw23MtinmgQZeWcrtdMGfdhco3wbGHAjqAhxuA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wZabCJoykrnnZkhRsUDPCBtyLNUwCP7DmytaLXSWmWAR343bA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wZe1BCQtJC78xnBRJSu7yYmCaLW3ZxScKSR7ExYAffFfuQXGu": { + "balance": "173.864619577", + "bytecode": [], + "datastore": [] + }, + "AU12waC6R3vtCzSqnKdrJWTek6DtNngbhbBFyqqCPSeVhpN3DAQRC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU12wb6XcJabwoQGWC46HqFEnCVFsrv6LssZW4199uMTYUyWJtMYo": { + "balance": "1394.513627989", + "bytecode": [], + "datastore": [] + }, + "AU12wbLPyDarYENb3SE25ws4hybt2g5pM7wUbcFkcFZEuz23pwGu9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wbRTbM5BXdsFhNP9aThNeLmThFLJAYwhKDFVdAzH8uQTChXkG": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12wbpXJsxhYSVu5HVz9ctRX4Ep4Kw2tcurYvcnqWmmDHdDGH35Z": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12wc8ZuZUzveCDKzHJ12wxqeBvZ2MH9MuPUogxM936whZr9ijxN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wcg3u3v6obKtZeDGVNCpNSDrDMJe7Zj5X66NNnp5LEMNiAeNA": { + "balance": "2359.609732875", + "bytecode": [], + "datastore": [] + }, + "AU12wcsa56RmEwUjVaBdGkGYue7EZuU2B6RgTxBZwPdwkNrMvgD43": { + "balance": "121.287128713", + "bytecode": [], + "datastore": [] + }, + "AU12wdASmx8S9v5dt6Rzj1ykdQaRFk7QV11buCo2b8X8VGXaPGKhs": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU12wdUG7F4o2CmZ25pbm6B2T5FuVyKLsJQEpK73d7orGUuWpUyL7": { + "balance": "4765.159205638", + "bytecode": [], + "datastore": [] + }, + "AU12wdUsg2KR2cvNJ1KrYHFdeZZWR1F5YnNEsGsbDchG7qT39znhE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12wddMyJecBKVDu6xJpS2Zw5Kuxa7rSzhcUPpG89RV6H6wE3Ff1": { + "balance": "2675.295957068", + "bytecode": [], + "datastore": [] + }, + "AU12wdiduZCJMsGFCeKTcsPB3QKe3b3b23Ra2neVt3WSuJykc3f1F": { + "balance": "3247.204477523", + "bytecode": [], + "datastore": [] + }, + "AU12weH98gHE5uz8XzHqVgk49qjnwQfq1tL13ig1JLMJeWFgEHSg6": { + "balance": "209.457027224", + "bytecode": [], + "datastore": [] + }, + "AU12weV4xJbaV7LmWvTk1KKKNLJ6o5eYbeUcs8U5Ph7zGcBV5D6uC": { + "balance": "3685.730480119", + "bytecode": [], + "datastore": [] + }, + "AU12wehHozxKFJXAVCGC47uugCPqvMtRoY865h7yBvnWYKrSbfCnX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12wepAJAmQ6gRjizVaVxqifg1N9MRoN2vLVjFuCTdMs9oXX6dW8": { + "balance": "1676.988620573", + "bytecode": [], + "datastore": [] + }, + "AU12weuVkMttMY1VZhQiyBLppzNuvZXg7ckRxd9bVP1Ce1CV9RRWr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU12weyyX3uFcU5in6cK9a6Y3J3WKSuvr9WYLNPkYdxuHYqVdVaoT": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU12wf8aYg5kGcaxbH8DPFoEigedBnR58c347K9FBwXWCL828LHbf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12wfFEsFUWK8YNwdnti3HTowhMMXCet6dxDe7GCpKQJA3eeFScN": { + "balance": "1570.728455300", + "bytecode": [], + "datastore": [] + }, + "AU12wfecZEg19jah3CZzDmrrx8KsjFaCUVfBGbPh7J6gaa11kkcF3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12wfusiYJiKLYP67hV2D7kHZSdc6YAbL82APznXaqp81k8Asfbh": { + "balance": "70.957095710", + "bytecode": [], + "datastore": [] + }, + "AU12wgPsBjHBGeu6SnvE9q3P7XrgYU5ApnCzyfv7vFe6MLUAnrc7k": { + "balance": "2081.138573710", + "bytecode": [], + "datastore": [] + }, + "AU12wgg7HonrStpoLvGb4R9JFLRAfnAARKefxVdurokfpZgzgqGba": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU12wguoa5pm2bkStG6CjBirdGifGHCkAnxSYM7avpxFgNyiEP58T": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU12wh7M6bjgqZbRv2qaoxZ8wSnt9272T8GJXsk1GqvvKm89Pwpvu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU12whAkci4o4vMUksnLjwiFXxboj7TU5hspR3zUhn6b3ZE7Q8FeS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU12whDx5krwxKfQowMqWSQUFU3xo7EWNX9q5B9unwtMDgwfk8AjN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12whGny7jkJCGNFWwnharM3bWYCd3cKzns3L5jA9HnYvVjE1k4": { + "balance": "1424.925316510", + "bytecode": [], + "datastore": [] + }, + "AU12whK3KYW7QNZM6BSqsDBT9DeSpUnQMeLVKHLbtYVdXUbmdmp8X": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU12whYx7ewy3PkbAE9k32HEQdgMNqZEQC35X6UZY6jFiiWJKAfbz": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU12whvNEWEGbBt4CaAyMDJ7EdKRkMoWuXzvxFcvfbq9oecyrwjK2": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU12wi5YgRooUasKyD5wuFcUnxJ86voVzJSHZ45P7xQs3uQ4pJzHg": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU12wst8dnKLftHNAKKhzjHvhvXaeYtHQk4RdtAttFty3MLW7oz9": { + "balance": "1573.991397434", + "bytecode": [], + "datastore": [] + }, + "AU12x2M6eAXXFDgYTBECwqyavcwGyZz3rGnMzcw3VVZrThrq1jXv": { + "balance": "4803.584151770", + "bytecode": [], + "datastore": [] + }, + "AU12xDe7T2y4HNMwJt1RYnXpDwBbf9kRjQU9N8GwMzmbjgBzesXs": { + "balance": "1246.447492864", + "bytecode": [], + "datastore": [] + }, + "AU12xVc9Vwa5wsi5cu8z99KRkvjBgVQ1EPiohkuik3w3ozLeB5JZ": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU12xbJCkukjY3k5fiF2HtZzhEkv2h1gMnRqMQQx3XPG8w4XsBF9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU12xn3XoZkCyPYJmFG21rwdqBnoC3hB3RTuegyXgRjr8z1f8Tvu": { + "balance": "1308.805742665", + "bytecode": [], + "datastore": [] + }, + "AU12xt9Ph84yMTrN5qZNU7faonnEWDiTidxmKkDyB3FUSRs74URT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12yYnxmnQMXZF34C2ugtufCBQLKqKXmeL4k1LBMecCcNhn2cpg": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU12yff9qaRR3aDqoNPDDykjapgjYRiofy9boXNLjoECWqZGv6kz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU12ywC5cgey8u6BwVK3qtjC8nGoe3frrwfpXQZ5sm2dzHkZz3qV": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU12z5F41vHrtEAigWV5aVRM2anW8HDzBp8fesydSEqmUce3gro2": { + "balance": "1863.997485085", + "bytecode": [], + "datastore": [] + }, + "AU12zFK8tkt1DaDPphM46ePRbKB1vddaUErwyvodSEqFA7n3V1FV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU12zeC4yDak8b52NVZv1K2Wx3NmZ8uWZDvZzrZZpzRyU7BsitHY": { + "balance": "13422.876037282", + "bytecode": [], + "datastore": [] + }, + "AU12zqvcvnNPqC8savVBP8arvYL2HVUPnVU1nk3nZbSUzNQ7xkbk": { + "balance": "1747.525418744", + "bytecode": [], + "datastore": [] + }, + "AU131Sfwdft1VbiYhUDvjnnmF7fH8P8cP7wp5B2m9JvAyNn74C1M": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU131WjCh5ns2CZ1T8WM5j8TYxSSuQ56mkf6hhLEcEKgirusW5CJ": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU132ynbZDHGQ1j7xwH9fkLpdTDwmN8oWnMQmbM1gyiwqbU8rU7m": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1331ADACJZSdkmEuNM3EnUhCWGVrFdoSEUo4BpGf5DDpDCqmB3": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU133FGa1Z2eyaZ8qmhFaoScmRQuMfRiuySoduxW1PhguJ4YgPMP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU133hPRipqcmXmJPr7g489Q5r1RBrTtTQcaSaWKtanWgsJF3Eqv": { + "balance": "263.810416430", + "bytecode": [], + "datastore": [] + }, + "AU134Upr9kNTeSqxuBz7mF9oDA8JMpgx63Pqm7duRqDwAKgn2ggs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1355M2BCYXLye2Yg8fsGW7sM4vHyhrQbjBTg9GYCEcwJ4hQbLD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU135Lv8KBFN7CcjxZ7VMVvS9ZC8UrXUPAs6rgLimLHtofLqTC6s": { + "balance": "3626.862356961", + "bytecode": [], + "datastore": [] + }, + "AU135V2aFwaRkcgLVaHFD5QLNnJZ31ffMuk6Wp2Pma4Z97qHB9U7": { + "balance": "3497.150875892", + "bytecode": [], + "datastore": [] + }, + "AU135WXGBmjYLdog122oSXzETy6rcPjNKd9onVqoVjNUXj28Leme": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU135uHuu5G58BF3ch69dyupxRxnSz6UWXJ8rYNDwC4CDo5fdxaY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU135y2GXAp7vXitxKXhhLP2BMDCxXdMm8pYBaeHZ1G15c7wJAg1": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU136m8TzFNPxXkFYCPHRsMCgdYnEGn5MSMJJNVALpggSd789bP5": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU136ySscLzGE6n2vfJu4SATkSvG5giSPHpi8FisHCw4qBSPUdxJ": { + "balance": "742.949897361", + "bytecode": [], + "datastore": [] + }, + "AU136zpX6UhVZ633MCacRTW8oUEvS1tQLWVpQZTPpAro5DXBJsG6": { + "balance": "1310.446151724", + "bytecode": [], + "datastore": [] + }, + "AU1372KxzR5LkyHWJqDbj88eJWbNGe64rQTynthJ7xoY8VASHotA": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU137EwGGixwQdjKvEBXj5UCNNtyMHcrw4x7h6ek2KWmThR474es": { + "balance": "1265.287299676", + "bytecode": [], + "datastore": [] + }, + "AU137bYvNXsvxaF8kb6xCS2dmYGggH5fqJt1q35gtecPWSR2uHXk": { + "balance": "1303.583185172", + "bytecode": [], + "datastore": [] + }, + "AU138PM2nLwxEh3rJtf34PdQaKyMAAXPksVCVWzMv18ENyzmCBF4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU138SEHSZsETWTXrxxRx6DwUZLVvCBz8ZV1cRxKVahvSVULn1q5": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU138cvoTxsskcosSmgV6ppobgvcgADUdAmSGg7gbh88mqrvz48s": { + "balance": "590.081523527", + "bytecode": [], + "datastore": [] + }, + "AU138vY4qpLyMj6TK65kah1BKrWzFNwSV3i8WZEWHnGDAL9hmifd": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU138zEjPzuhaSGTzH4ZnhP9TBnsYzvaSQXimsCSVE4ECjzuj8Wn": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1391wwocXfBxNCLMJrKFgPMaXgPuN4omuSYgYE2Xv22e1MMqFp": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU13971KGUBrrSx3YfWUCbecsMcGenJcDykHHLSs8o6BcobxLKWv": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU139CULvgUC9MVaNFi1aSy2iKupHrGn6Ai7Fr7S6PXdqMEY78Kp": { + "balance": "1263.751613473", + "bytecode": [], + "datastore": [] + }, + "AU139rBNZPWk2AyCorJUAspvuJKYs8bn5CYNeahhwJz6j1Rtgs5R": { + "balance": "1911.378001696", + "bytecode": [], + "datastore": [] + }, + "AU13A7X38DPRf5DWRrjdZ1mfmxbrQKCUBQgg2KuULzEh7BgaPecn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU13AbpxqaoE913iedScmVuMyHB5cNSJBLM5Eg2jkJEjE84RwGNe": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13AncEn3JUcrq9h9VB1KmKeryLNUo9uvYErc4NvDh4g4BKZJzG": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU13AoyiF1s6hJGiHd87E6gbNGr79Pk9J2yNjXKGP4YmU2wGyaYE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13AxS3Jr935D7AYSkEF7Y6YXYq7zfdjM7WWJ6StxHBVB26D1Tt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13B56jPzMKDUgxofC8Rz2o8RsXQFpaFwpZsixoiSSM7ZFP6vQH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13B7b4dZmwxpwHCCyYfe7cJgiEyeEcpixZpii1XbQTnMSnJkJg": { + "balance": "933.746351680", + "bytecode": [], + "datastore": [] + }, + "AU13Bcgjbh7j7G68jF1BMzjtjRJB7A4FMJrijQuaAJ9NirN3whm5": { + "balance": "535.065975383", + "bytecode": [], + "datastore": [] + }, + "AU13BpUcrrk6Rs5J9pbtPMa8xN43Z26j3CsEaARu8XKAzNrmVLYL": { + "balance": "2252.924427748", + "bytecode": [], + "datastore": [] + }, + "AU13BwjVEhxQ6RsxNepPuepXuWu2sxEsQgAZ3mXdzeQCnxQ9PwHZ": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU13C1n7Wx3fmZE1zYqAxCyKZy75sGiF11sLW6UNezBJaXHzaXsL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13C4nR7NH2RBCN54dmEu4TRcXH6dZWVu9M6zNzSYFDpfo15Uaa": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU13C62ChAy3gpCxR2NxvfDn5Q64fxrYAyVD2b6iZgmPUYtcG7p9": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU13CbWDpffXCyAFHUYzfdrJxCzhE1yf7fDQDrAqJLR8T3CakDqP": { + "balance": "567.595922201", + "bytecode": [], + "datastore": [] + }, + "AU13CquLjXF2YFmo5Ubp9F7dckcf3AZbhRrJJbbQXPiue55pTW3w": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13DDHLwwXE271CcsmPFsPzEmEa6Qrqjnq7bxVFotsYsH3EKssE": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU13DGaFLXfApCXZFxdYwpiJmiKM8j34LEghpjtzzqRqK2RVKLe7": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU13DVynCvbc6CyMi4jierBitFdfprvyQoNjujKcohkJshsESE4W": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU13DeKv3sYfFBfAmh9dQxVevUSQsuyRXu75h17kxoLXij73no6s": { + "balance": "2831.635744504", + "bytecode": [], + "datastore": [] + }, + "AU13DoJTd4R6BM1cxwwqvMxfRNRbv9yPKchD1PzYZLGg7xmp2fwZ": { + "balance": "2010.883776056", + "bytecode": [], + "datastore": [] + }, + "AU13E8NvPfSphXa6iLwMemBUERkKyGxSCc5iLoVKqhyW5uJaqjbL": { + "balance": "2515.102088163", + "bytecode": [], + "datastore": [] + }, + "AU13Eayrxs1JUKw2MRhh3o9EvRLbHVuCuNnieNgD57ZnXk5RfTHg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13FEKJLShWAM4ADWJVUPfKuFLhpfj2E2fV1zK32r2CBzkGcg1L": { + "balance": "533.769191213", + "bytecode": [], + "datastore": [] + }, + "AU13GCq18LUMoDXpHAErrXi6JFGpzT3zhWS8C4FRaKrtwbgtPEVr": { + "balance": "785.781148628", + "bytecode": [], + "datastore": [] + }, + "AU13GGcNvVg1SLZDKagREgAsoN9ZvzHfpeoZqP7GqDKEbZSVrePa": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU13GnvXYwDrJjmCJvhkAxT4Hqd8apr1d38Vs3FQJMMXSd97FcfN": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU13GrT1xwjnkjxgLzZC99bMEaaNno4SFMJp7rKdfcqSRuDh6XfK": { + "balance": "2591.333007739", + "bytecode": [], + "datastore": [] + }, + "AU13GxC7kZomXKtMmW6ygcWN2LyejWdh87FcMayiX9SyKXud1gHb": { + "balance": "2945.185492511", + "bytecode": [], + "datastore": [] + }, + "AU13GyJrVmET4fefVTzWoYX4FsCaGLqUhGigxZ5cZsswgkKjXPW1": { + "balance": "3579.988105839", + "bytecode": [], + "datastore": [] + }, + "AU13H7Z2VdkLHmJPTK2adah7uva6FzkPPuwV4pAjgYB7XWBpWC9W": { + "balance": "935.217224642", + "bytecode": [], + "datastore": [] + }, + "AU13HPwF1JtBS43pBYzzQofE2kartoJBNaAZMksH6TXa63MuPjwp": { + "balance": "4500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13HhhQS2cXon4Qg6k9tRkUKzSzF8NTTgKem6tAqN3BSiqNYNHh": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU13JAXY61y9P2hDyYfPUHUfTzCkXh9DWogoykFL6QnYzwVr5Hz6": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU13JXi8XZDy365FU3stdir82NcK1SHNsXHWpdJmVwJSBpV56jqH": { + "balance": "1966.893934364", + "bytecode": [], + "datastore": [] + }, + "AU13JwktiH7vTp2dtYNrbptz8DZ5VXdZywHeWcau3wLndNbASFM1": { + "balance": "1742.463390216", + "bytecode": [], + "datastore": [] + }, + "AU13KGdQ9d8P4vwF1JMDFDmeemcRP34tFUUGCzQ6GZZXtPgiREjZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13KZLcPfhGeSMsFYG2YeGbRCbucpJoaDynzPq89fLCSKtBYuud": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU13KeWdjRqPs31cAuqG3mAb5DWaj6X1U2Dbfase1eYMFrkyEGkN": { + "balance": "910.740068478", + "bytecode": [], + "datastore": [] + }, + "AU13LEYmE3X5vrocnVEehLS6kL13Y3DQUCQCmxT9v3ba1zVWFHwx": { + "balance": "1384.179660383", + "bytecode": [], + "datastore": [] + }, + "AU13LgeFYksUuZSzfqdan8bQ54riok6iWhtvUMuiXjbRwB9QqDPg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13M6jMw8cyNiL4HptCyNTHSzMoeTApPaTjkFbvB64m5Kpb2Dms": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13MM8x4MNATHZuBEqKw3Sr2qgrG1KewSQZs6qHU4uDGrJmmivH": { + "balance": "18.552289036", + "bytecode": [], + "datastore": [] + }, + "AU13MV5seUE5nNkx35dJD9CEYa37hJdCvnFbWmna7hYkAsFKuj6q": { + "balance": "2038.039712917", + "bytecode": [], + "datastore": [] + }, + "AU13MoF1j8Jj2qU4oDq8TJTz2HNGmwcXZswYbDaVWkpHzJbAM3uY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU13NH57ruK2AeGNBJxtpuoU2Dx6KsdTSxAq5wp8jz7sR6n6EJka": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13Nr1YvKNZ5CeRyTJZvNzksRwvNyM5s8X5e6MZzWVGTjJjckHD": { + "balance": "861.947152693", + "bytecode": [], + "datastore": [] + }, + "AU13PADupyeHcadbfKNjyMeC41m7pC8y53tk7ZJ4wNbePrNxSohG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13PJKzL3MqebLFGgLTtrC8infLiRScxPoZG1b44bN1GQU66SZK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13PW7BVXhDxyxo1mAEWNkoMBqAD2DtgnptGMdxuXBspyiSng88": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU13Pa4eqbN4DeDYgGUnus5nG7kKXMpZkF2T4SkzfJJubdZUyWxK": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU13PeEQfFossdMtVvYUdQaaqA9UBzAS6BQBLvE3uJeANrXLHVzo": { + "balance": "4126.995720495", + "bytecode": [], + "datastore": [] + }, + "AU13PmWJaBfZxAdSK6a8naDjww6Y1STz8LqUrKwssYLoaD8cQgYF": { + "balance": "2273.578899379", + "bytecode": [], + "datastore": [] + }, + "AU13Pvx2imKsjWqsiBmQzLzf4BKmizA6h1adLEEUBXqhGPn8HGDb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU13QAZjvofA7Cg4eLjFgR882dwdJCgQVyYqHFa6nvXipkAEuFbt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13QMHdKeq3jFAqC6SnRWPrqcmFqDqBmBqLD4YLKvArm7FmPWrf": { + "balance": "8.881681311", + "bytecode": [], + "datastore": [] + }, + "AU13Qa5LuCGMufdDiPvaD3m1KYD8YnR6NmxUDKdw1jDvvRR6t3x4": { + "balance": "289.561672483", + "bytecode": [], + "datastore": [] + }, + "AU13R4AQ4Jpa7js9DX6EzUg8SUTJuQ1PnG4Q3Mu46LjxLf6ud4WB": { + "balance": "3237.544415131", + "bytecode": [], + "datastore": [] + }, + "AU13RMbJhmgEmApAYTPdrKnYYfyNs4sXps6npqcBfJ6aZ1VhAMGz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13RSDoFWVMoqeMx7WeoEM95kFgqiq3SBXn25uM1rZ7rgyzDjJ3": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU13RUWHt2uWNc3uohFu4iTJhAHbSYbTiKSrELEZNiFSwCXuV2uD": { + "balance": "1699.326060674", + "bytecode": [], + "datastore": [] + }, + "AU13Rocp1hfEPDE9L6tGXav7nnySdCmrhz7hP93KgQDVMrsZrC9E": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13RtXdf8DVicjabo2nSvocHebxdDpfqrPjnsAL4WTWxyAVYGyW": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU13Rybh5aES3DkX6aPEKLnbP4op6e7M9AtYBsY6icikgLcELuJZ": { + "balance": "939.919776656", + "bytecode": [], + "datastore": [] + }, + "AU13S13tzRx7NFestW95P3C4FQBp3Um5sqUBQyZzde8ZF9hBCBWi": { + "balance": "1467.417716507", + "bytecode": [], + "datastore": [] + }, + "AU13S1FuSdFqLugPCpksRft1fVSdDZqNnWjiwX8JxyNkLAeVTBHK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU13T7QfX5qMGYDhaFRJXKggzsgrKPc45YsXQkNA5aN4YE4w4nJG": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU13T8k1c5AtMTEcAJ6grNT7u8PcjXWF4Z2vGDQLgoBhdteb3xkd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13TEUdeWmhgk3rJpQBgF5CEVagtdZMMLqTnofWvUPtzvbaFpux": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU13TGiFWNwuhmJdif3Me4h5U1vN9DgkzbJjova7qTJDtzp9W25P": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU13TYUkFXtdDxFBBsWffZmNBtGaX41kLpuffKq2Zoqm5ojAvtF9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13TyHRndULDEtr9AtGogbZAADCzURarrpXhNu2wQQkoY8vH5cK": { + "balance": "1926.531345967", + "bytecode": [], + "datastore": [] + }, + "AU13U56CLp8APKCEmrDwFgFzzw572UuAzBZcmZNQmcf5ri9W62um": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU13UBMc1JRXqQyDwKxWkhBhr5jYLBGMVsKa4Wi8gX4HrVs8pj6C": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU13ULmEdnoWGDQYLMzxXmANrRWWoHvzYbZ66TEdg3HfHV3XLzRp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13UciaUVjeVZzYdGRDvECi8pziqNgLsE1ZDU4wtqs9QDtEt5RM": { + "balance": "3581.441481201", + "bytecode": [], + "datastore": [] + }, + "AU13Uf2gtSmWt4M1axmL88EYGY4dokSBK6tcmjkdg9sTXEayd5Ry": { + "balance": "3031.120320213", + "bytecode": [], + "datastore": [] + }, + "AU13WyiK7LuvPbhNpLkSaDVFWkECBqNEoMkDpZuWxudkuC3dx963": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU13X2ZD6nkzYxUyhADeUTazMrragdrV3Dhp8yk2sC3srWCcubmz": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU13XoD3AhNCJuZcZ7VvMksbWL15L3655jMrzcHSnLRquGasRsYX": { + "balance": "32.933972292", + "bytecode": [], + "datastore": [] + }, + "AU13YBbPKmgQCz5gEPJ2BMD7UtBTpNAFNaUyadxFSGxNYGQsS2Ak": { + "balance": "2083.660798400", + "bytecode": [], + "datastore": [] + }, + "AU13YrwrCDAS4Ah9ZFG9vF8q8rjVpc2MZa6j6WYDJ51pHmCMG252": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU13YsMhQGb4YgPXgb4GWqaLNaR68U18vEN4RqmgsFpnbzftwP6w": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13YsscHerox1YWZzbrUshaWdziBex5Tbcnbr44VzGQzRDMuQEn": { + "balance": "3409.831902952", + "bytecode": [], + "datastore": [] + }, + "AU13Z7NhcVnAv3bT8ub7ZDgYAWqWxuMBDXLopF8ayF2s7F3Kzr5U": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13ZPj79oeAeB9RXUGyiEJbYBrnK5fS16ciqd3HFY3KegwK9dau": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13Zf44GTezMTsdS9JszQ9TbBBQhNefi8GBcgLpYMTvHGqnmKqt": { + "balance": "22211.710472372", + "bytecode": [], + "datastore": [] + }, + "AU13ZkurXpnzkHATQY9JPQoY28LJGoZUwvfFggGUjpGTh3FRhaQf": { + "balance": "3025.878926038", + "bytecode": [], + "datastore": [] + }, + "AU13aACC4FoGDHUGeTfSfnysJcdoCXqu1yksiqnF9wJ9WjCfCvjv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13aEa72BmE6MedD1KKSkFDPT6yT8RdHvHxhckiq4XTKCGzxNpU": { + "balance": "2686.108838414", + "bytecode": [], + "datastore": [] + }, + "AU13aGxgty82SzSm5zFoRJE2Ty9Nmg2aR5YvSP1XTkJ6k3bVSJsB": { + "balance": "1310.261742828", + "bytecode": [], + "datastore": [] + }, + "AU13aVaGUiAX9NgV2DsJWizYxznmQbD9AvNbeRGgKWVFYnejxjSG": { + "balance": "1566.019043342", + "bytecode": [], + "datastore": [] + }, + "AU13aameMUhGfAT6Fu6osrtMFc7zecTmkQgiRcdRczJMSre9GN7j": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13b5hyn8SEb2KqfZPv7xynGqAeXaGrwwp2zw95gsxKzHEZAK17": { + "balance": "24.650506357", + "bytecode": [], + "datastore": [] + }, + "AU13bDgxeRZ3YCnFQsbQfwTEHys2T7gELHznaN2Cov5ka7XFQEc4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13bjRTEPAJGx8MUJAfMECjDV2R8uqSWe8yU44Q42zmTaZj9WEc": { + "balance": "1133.122135106", + "bytecode": [], + "datastore": [] + }, + "AU13bqq87NFidiA6jRzaqfLFXdemgzbqYnokzFkoaf5vScr8fAuW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13brH1LkesbQdMioDXMBjnZ4EnYTx2gsvgGS46FRhiqUVovVRp": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU13cgGRFaDZryoQkHCo3Yvin1Yg8HVGGticy56BZitib8kAKh2i": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13cgoCkXvqaS2mSjo6EY6FxbNWuKHFShVenZQStZhLciMjiqBk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13coyYgFGFbViPkoZiNerJWEBDJcXxsEXdSK7BJsCmxDVZkwfA": { + "balance": "1220.880230684", + "bytecode": [], + "datastore": [] + }, + "AU13cvNu8xhRe7f4VMJNMEps8RhVJUYfGv7DCXxB6rbDZXHkVDbw": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU13dCkZCsViYNfoBzTf79uRWrVeQtPe5G5Tm3vjnsmkj51u7RhK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU13dHoh8dNTTMoH6AKYNsjPEmPoxZhLqkixtiFbhbGgWgv9wZv8": { + "balance": "1177.505661632", + "bytecode": [], + "datastore": [] + }, + "AU13dmK3mwuDRsDaQLDFVFys4RbWh6kwvtYLogMAJHpXKyfr3Z8u": { + "balance": "2769.977601892", + "bytecode": [], + "datastore": [] + }, + "AU13dpg7f2AMDtGcy5aDJakdtRwfrA8QgVxyJQtE51aiXai5ErwY": { + "balance": "3436.525042956", + "bytecode": [], + "datastore": [] + }, + "AU13eKg8jEhoAz6Bddw2kMdT15hHFgiguyh9FTzp7Gjm5VNqFbiw": { + "balance": "7251.771944470", + "bytecode": [], + "datastore": [] + }, + "AU13eMo3td5zZRrdm3BBkJwQFsuqiMU6rhZRsSb9NkXaTD6oJZwB": { + "balance": "827.426221890", + "bytecode": [], + "datastore": [] + }, + "AU13eNFaTk1VGM6odH61kpHyeWXiyhRKNAnDtWvsfUf9GBa6iFUy": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU13eRNg8siWP8UqpkpuQ4PHvouqD38e8Sgfaqu2SDgnwd9RX1vC": { + "balance": "669.509180944", + "bytecode": [], + "datastore": [] + }, + "AU13eqnRqiPssE2iVqjQFN1Fb8BxnS7nQin3ZPFqiMuuSJ1xdZn6": { + "balance": "1244.005676617", + "bytecode": [], + "datastore": [] + }, + "AU13es1YLHk13jwv8BXxkddzZoXu4YNv5ntXqZ1KVtvzPrsL6ogt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13esoGkjnb4jEVouWkN2HB2qXNYpm2ueSWCmkw4RP1jugUUXdW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU13f7XwFd79m3YiUxezzegTCbqrGxPkfpfAqzuajhwNmgFTAYYx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13fHz8V6gK89b8FpZngzfCrNniDcPBCLc1YQ77Qj9DjDpPUXvn": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU13frMQaC6ogsPpxj5ud3rnEMAPgYAHmQ8p584iq2ozNRaLMnag": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13fuDphuikWP2Uz7Q6CMJ67DccJyRZ2DqqhB4bvfRghuco62pT": { + "balance": "2509.294863077", + "bytecode": [], + "datastore": [] + }, + "AU13fxwJUyDpW61PHx1ZmeC2yH2dH87V4chwE18KReLf9Qc3ky2N": { + "balance": "2335.194702252", + "bytecode": [], + "datastore": [] + }, + "AU13gLc8NA9zBMiddy2oj8fWtnDTSG6WBmVpJCR72ueAE68eH98x": { + "balance": "255.335376367", + "bytecode": [], + "datastore": [] + }, + "AU13gNJovXncmQiEpcjpzWpPQvRbH9BDaxH8K1zmYzsi8faQaRim": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13gWcFKCgHEcfnU69SF9fyxrydbKmP6Aa8nkZMFGsf6i4fkt4c": { + "balance": "163.854556821", + "bytecode": [], + "datastore": [] + }, + "AU13iEAykiNuUqQ285apTnRSVgfP2kM3ijEJqNWbHziEFUYYWNt4": { + "balance": "2656.003044072", + "bytecode": [], + "datastore": [] + }, + "AU13iWMep17eVAL8wCjAFhu2pHzcvvdEwhmJ8n95pfd777CKs6Lz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU13jRB3GwgLSWiVabQGUz7gAbN8gaQbqyQSKE5g9gzb9sCVp5gk": { + "balance": "1980.693160791", + "bytecode": [], + "datastore": [] + }, + "AU13jzQ6vibNsRk4bbh69xr38qDMgiEQeTt4Fd33Cv2T1vXieGGW": { + "balance": "4020.012750740", + "bytecode": [], + "datastore": [] + }, + "AU13kQGQSa46gDgFfygTxHKvt4iqr4AtmvaKXVfuBG5fTVqoEPUA": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU13kZYSm9qGXHGf9Uk7ixmLPNwZVuuYV5TzpxsyR3fH8PBdmT3P": { + "balance": "586.857971016", + "bytecode": [], + "datastore": [] + }, + "AU13kdtSgjbG1Rh8KgEBTgGLG25RzZ23sQjDoYehBtMcAwLA5HDa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13kjn4ApZLrJ2kMGeNYGzmFKB9j69u2sgCzPa144WFKxeZuCFD": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU13kp4gk6V9ZjVnRQWL7rXGRhkYnsUE5U18Ay4y4fKpZ9oR18cP": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU13ktuq3HpMfJNgY9RdLvSv5gLpmYjDDMNbPLBbk1vggZqAcq4d": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU13kzv1XipXRceSADyChoKrukWa3kgAsFSz9Nb6SWxwX1rumkZb": { + "balance": "1592.417879890", + "bytecode": [], + "datastore": [] + }, + "AU13mVNdKXeB4LMZ7vQ4VKjFtXecANZH72ddN2rfQsdjtkvHest5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13mphED5KeGnX4taLdMy7zHxYHkwCWafdmyv7PHjrZHhsaTUA4": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU13mv7YBb6SWnWwtsis9thKdUXyp37rDgdPkwqNrKsrm1HvGLQR": { + "balance": "5937.703447387", + "bytecode": [], + "datastore": [] + }, + "AU13myEXFD6HpSt11A3YDe69w5KDHJmwQptmFC6odn4chnfJPpPK": { + "balance": "51.197618186", + "bytecode": [], + "datastore": [] + }, + "AU13n59wtrLoYKePDHYmwmn7b4Ah3AwwuPGAcXWV12Yj6smJWwK8": { + "balance": "1236.967128102", + "bytecode": [], + "datastore": [] + }, + "AU13nGuEra5fz38rmpVtnWmKMXS7VD1FwZAvYFxZXbyswHoeRQ1u": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU13nsBwTc6ZYfHhRKVeX3Ksi14CSkfeP9C5qA5daGTQz4H9X1Uz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU13nwc25tiWdgpoe3HvxEtd3qcAF2E42YJYoKDQjegaLseaFwAi": { + "balance": "1732.196788924", + "bytecode": [], + "datastore": [] + }, + "AU13o2zph7zTYYBz1Nkm5Pi7GAoiETdBwEDQ8xfV72FFUP4HWFCn": { + "balance": "2868.623009119", + "bytecode": [], + "datastore": [] + }, + "AU13o8cwqT19HP3Sks5TVNLmUxGNu5uFW4fiXsrqh6fwfCp4uTre": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13oDdHPefqmY6NqmD8hpACY2qq6eDVpFotyGUf2eD33EBjkftp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13p1P17FozT6smToW1MUKcrALUVG7EPLniRYhBD5kTM3d2DDK2": { + "balance": "4581.013044680", + "bytecode": [], + "datastore": [] + }, + "AU13pfH2VVgPvue2TM2GXskvkv9iWs5u5SzKUxUrdpQ4MqS2jqE5": { + "balance": "989.308045474", + "bytecode": [], + "datastore": [] + }, + "AU13q2z3GGkAHUp3c11Le8Cnvz4QmAmivEbz61k89JQGzp5jUz5i": { + "balance": "1252.694062705", + "bytecode": [], + "datastore": [] + }, + "AU13q4pwPKQYtxsbgqBx8xDJapEW4KZzfuqJcGMF7vp68twHEBKy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13qHWFgzkR5jF2FvhC3p9YLLbMD9JKAfikpvRHRWaCpnCSxW8N": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU13qMMf8JpQNoTpptLZmrNNcLWUNfHVh5g9gfCWEcer3ztDnhNS": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU13qcd24c9RBkXgq4Hy1koQDXYZQeG3kzQoV8r5gAp6Q8w9zRPm": { + "balance": "1679.896204845", + "bytecode": [], + "datastore": [] + }, + "AU13qn9rGNoKhyutbijEyb7mvpef3mLPEbn3pCt74344puyQUY6v": { + "balance": "2093.659197795", + "bytecode": [], + "datastore": [] + }, + "AU13rDXCsQt2N42JAgkW3XTQ49pbr2WX2TxvrYs8sJ6qDFGUfXr9": { + "balance": "2267.375795285", + "bytecode": [], + "datastore": [] + }, + "AU13rkXtv2wvpJwRQreKXdNNAYHj6wuCCSTPd67trhUAcpTnkXtG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU13rzfZgfXqxC9ShCpA3NCZXYb5hrwrYeC7EdWxC7Y55AB5J2iW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13s56Ucw2ZPMNtKfuZjPsSRcPgFRcHsG5bzUhnHmgLyHhZhfbc": { + "balance": "1234.035572281", + "bytecode": [], + "datastore": [] + }, + "AU13sHvAjL6QWCM8RGLnui22SFd1qqSkZs14JG1omQ4znnT1GkJh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU13sT4RRSvM5CSPHg7ofMqKrB7i7nWXHJUZVisNmj3wtFfgdi2E": { + "balance": "11454.177139190", + "bytecode": [], + "datastore": [] + }, + "AU13sdyvbpPDKJeKge6DWmP6oZDE5egAJQb1vinVFrWrobx7w4KN": { + "balance": "2246.827113025", + "bytecode": [], + "datastore": [] + }, + "AU13sv1Uzb6PjHRLhxVTBPLRgqReikA28A2FoqVmpTxh4E8Xvzge": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU13t4zQ8KmL8VCfFrhhh58DsRoucwT71FntLXjayFf5Uz4YDiPg": { + "balance": "1020.103712489", + "bytecode": [], + "datastore": [] + }, + "AU13tC1WwtadtYtP4JUCNqybuonPbCEXf9ecTFYLTt5DKwzqE83q": { + "balance": "803.129630653", + "bytecode": [], + "datastore": [] + }, + "AU13tTwiyfYNc5UZUPjXWb28thmzyzuM1PCWZW2TukECT7AkAbLS": { + "balance": "4303.582324662", + "bytecode": [], + "datastore": [] + }, + "AU13tsio7vBYD7BBPazKGKiViZ3vNzHZsurGhWsuq1fpQvxoBiF1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13tw7GzvbQr3SQXWZtK6roxLgdmhcWz5USsY6kbaktJ6R3FUV6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13ty4t1Bd9s9C9hXMDvXZDqu6UgY7NyEVMJG1hKcZwiEfpFyJA": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU13uK8ndGyd5XCCq5wkBZD6HQ3BA2ztECzWGq7FPpUxjZmF8Rf6": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU13uXgPKv4qTrZEddDzf1pPrJFGiDpREuKNcdgQgAPcbPtZXQNG": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU13uXzbHYLiUmCY5He3Ru2vQcdKQt4eDGjQc2NwRxRq2XBAVvVJ": { + "balance": "955.756234636", + "bytecode": [], + "datastore": [] + }, + "AU13udDf4BW5EWSXdnDKf5skkJ8ivAmDCvKQSQpSZqbzLQg1kurV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13uzMtNLuWnRd9SM1HWuMkS7XQ19YhSECjUBNUEAmiJH3cAnMm": { + "balance": "555.905242714", + "bytecode": [], + "datastore": [] + }, + "AU13v3RqiQmj98ksa3CFa7nVetPqxYsRASiKKK3Nswmks9GBfC9w": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU13vFCa6sSAWrFQgBNZdVxkFX7sZD5K285xF4MLPxg84cqAeULL": { + "balance": "1433.450123711", + "bytecode": [], + "datastore": [] + }, + "AU13wR7pveje64HNcWj7EwPnBBYEosM1e6HJY7Zp6KL9k6b5ohut": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13wdAzVHWsaKEZbv5GtDxUj1xEqQ7EYAuQcbea4HqQ2gV8YwiG": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU13werS9phSGvxcL9emG1JQZ8RM24GBXtuBzHGrvStGV9kkLNux": { + "balance": "4322.642219734", + "bytecode": [], + "datastore": [] + }, + "AU13xDqYGG2UfEoXjhayAQdG7WZu2DiDk1y6USmvbxNsmTn1pzh2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU13xJP5brewpUV1jFXhYg6J3Lchsjw5nKUNBhSd42fBcbtDz5wp": { + "balance": "2192.429555561", + "bytecode": [], + "datastore": [] + }, + "AU13xbbcAjDfAdi6B6gQnWzVdwZU4NtiRg86CtQXuVz32Q7R3Abf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU13yAWqkNLfV68BSur1UtT3jJGqXTHFMZjyWD3beuHBD1jU7aNm": { + "balance": "1711.349302972", + "bytecode": [], + "datastore": [] + }, + "AU13zRWbCFnP5M1w5ZgZ8Vrp3pYVkxHPrkRkV5hXBPmogAzV3TWQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU13zpZzNRjgJVZc4W7aPekAfNiuot8kJKWBnvyYYHbZyLsLyLo4": { + "balance": "235.754610406", + "bytecode": [], + "datastore": [] + }, + "AU142AJK5UYmk7AXGRD7YcrYvZct6tv9LweUb7Wq2BsAWTwc1waC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU142KXiXeWHiPWVosip7xjueAH6s4Bz7wXwcD45mK8QH8rtjYcW": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU142Nh6eiTg94S4SKAe8MjQJ7tiYHQSNCN4kiXRuCVbzrQUgwRy": { + "balance": "1334.959675868", + "bytecode": [], + "datastore": [] + }, + "AU142ihUPug37YCydDUEcXrnAKxJpGEd9YXmd1cWKLkAS2b9iaFF": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU142s55tZxD7hk7htuZgAojd9WdyUXibNGodb3CMS6jSKHSki4U": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU142zkbDiC2pU6S5KgmTSz95xfuzgKFsYHiUpcpS8j9p4DS61dm": { + "balance": "2400.005411560", + "bytecode": [], + "datastore": [] + }, + "AU143HfibJSmT1xsfzjkAvkGb7gr6JSQNR1mPNKL3bE9Tznokf56": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU143MuUSbmhzRkMWZcX6sgfDd8CNAhWfk2ZAC3bjoHsTmGYPrwe": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU143NrJYZ5sHb7zdRK1E2ADbta2cmAFGjSugoSaFLpVoaWyJfPh": { + "balance": "2189.707815148", + "bytecode": [], + "datastore": [] + }, + "AU143PyCqaA81dmudpxVZeTEMTEpz51PnvXLevESHufcZGJpxxQw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU143TS52pVdzA3PeExFUsSyP1QZM74CSUb1d5zFwGHbz3KRqPqP": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU143abzDTsg7EyXuZLDjuKyWYm1mJ4nGPU6ENbjEqdehJQfpivx": { + "balance": "5190.130532946", + "bytecode": [], + "datastore": [] + }, + "AU144FQ28GauXEcfFRTeAooGAsyJyXVQwCzuFKRNfzDC6NFsbctv": { + "balance": "558.870736679", + "bytecode": [], + "datastore": [] + }, + "AU144LwAahxsSNT1Ps2EtDbH8LF1sgqe4dMtEzCE8FD39bLE9Jhu": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU144T4HDQYivSPmHVseyLdnn9HFhNXuWDSFFc5yYLDtzZS8mN2z": { + "balance": "1640.121772487", + "bytecode": [], + "datastore": [] + }, + "AU144a6MZSrAC6TpwFogSZTiddst6iUDWRm5KwAndrFRuhdiwTNv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1458yUEEh4AENNJw9vkJZSgjXGVQGq8kxMtXaiAWnegLuyWwGc": { + "balance": "1082.959881698", + "bytecode": [], + "datastore": [] + }, + "AU145UL4Udmp9FrPdU36m7npxnL8yjei75VQ1cs1KdezAW8e2oWf": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU145tLRxytrH8YujtXhsBH7DgKEEuUX77AMndASgEEmn8xz6Zas": { + "balance": "4306.143541146", + "bytecode": [], + "datastore": [] + }, + "AU145ynCfjawaM6c9Zc1y3EhcnvbcbBR357rboqTLosoR8z8GqKz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU146KmGvSodnApUKqEAsE6iuC17CfEjdQTkwc5bn5zjeXJGHGwX": { + "balance": "1049.364148653", + "bytecode": [], + "datastore": [] + }, + "AU146TqjpjK9FQsCYPjLZcKkdTwvujSP8rMCNGMuRkzRFn3ddo7m": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU146dBCJfeMHUTPNveBJ8XdmmC8Y9qfGXUatSU6bvALrHoFMGM9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU147LXjnB21hkWDPKdFNKVUhv9Geuir14Jp181an5FfU14LktY2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU147RbGo84gtkia92tysKZojhyEEZVJNZKBQYpwZ913S8kJXRq7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU147TYZJLh296ssnHa2tnmYo3vvqNP3w4GhCieVXQGunxebZVmK": { + "balance": "1472.567341836", + "bytecode": [], + "datastore": [] + }, + "AU1486zGJiBStRxMRA1mV7hZP5MH6ANiV7zeWffGuHaUAG1Yg5uo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU148MaBYNb2pKrNjEH8wwoum1b5B6aedF1ztBguKiiN7v3zC1QP": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU148YTd7KQJhr7ZgxSGBQCBknpxVnTVfacVhhR4Hifxzo3EouQs": { + "balance": "1715.815584013", + "bytecode": [], + "datastore": [] + }, + "AU148tDAg1fvByeoQ9DUs1v1s5ga33ZDfqHGKUKiRtdGqkVaq5j7": { + "balance": "3226.018057408", + "bytecode": [], + "datastore": [] + }, + "AU149echtiRy9NvYHaqUJ1WeBuUYMwaTBjBDyvshbiBRj3ZFzXQe": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU14ABEAcaD6MPxu2eXH3KK7iQKkVB3nbsNK8LCt6HagNDX88JQE": { + "balance": "3283.258553933", + "bytecode": [], + "datastore": [] + }, + "AU14Aa8pwQDHJfaQ1S4hzgUexTqSX95dJavF5Cf7BxEAEp6hKC1g": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14AfCksfWTtvATkAm1sP43zcvev1tJFiURZYDmh8WzG22r7mvc": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU14AiZs15Yx3AgWQAyGh1t4Sn7ANPr6wTZdNmY6aYdfCPrpDTzG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14AnG8wd39RPqpw8zH8DEPEpgCUKCrFuWqDVR6naUmtcDnanHi": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU14AwfFqGscUjz6mvjZCC2gv9Q4nKHX4DJUN9ZSmGkti8FCGxkb": { + "balance": "259.757038699", + "bytecode": [], + "datastore": [] + }, + "AU14B663MdyWsSP2S6vsrxc8VB3YdcHqH8d3jc99nqNVxoq61GJ1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14BaNMHJaxjzLwMU9EEv6F59FKXBwY7zRbXpNR7ScJ6HtUtrx9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14BcGCBjqVponxQUr9MRp8mfNQusfPGNrqtgPMhmGyC24f8QT9": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU14Br6oBqqTWpWDnX74SHVoBpEtQqcAYftwkF2wdnhcxd8UtWSq": { + "balance": "1659.688871032", + "bytecode": [], + "datastore": [] + }, + "AU14CHTDnAhBo3QbwVtBvTZNgCxywBfjHuDzVnGEAZJ7mreGmDGo": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU14CXyuHWD4rbAaZBkbdywsWg9GdKEeAaJ1wmtxjuJ82yPoSXBw": { + "balance": "5232.413321245", + "bytecode": [], + "datastore": [] + }, + "AU14CiGJ5iee5MofHpTSNHVywE1RKKjonv2aPcyJn2TBpVs7LSLc": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU14D3kLceYso5MgNpGKiYxqUt9FYjgqJawWzxv7uc5dBSH6HDYb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14D9p1C2G9vHFViwKjXM9szTfyFS921uCBLVsG4CNqS5Q38iog": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU14E7EXB8YHfKwmhVjxmZjkeEfm4Kwqk4HnoTgZmxUerxQVoAgT": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU14E9uGPCVBtfSSKxALHQTs32scjzHDCY7hvh7wTeLuNw9fomZy": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU14Ea28i6PZUZiAJ1qwGKQuLknbKrTeccytUKwQcCFBcdDHJaQi": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU14Epkr5sixVfDYeqguTvF9nkvyS1TRjNaRfWvoSyR8yr5hGXTr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14FCT1mRt8z7mNa22bRevUyy1LNFSWoCF9dRiG9xHAKDRcAQh5": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU14FWR6LpRdhHVw5yKae4hDq4J1G4rdg5RqPAhDCT8Rf1gqypNM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14FZu1WmCWah3j2nWB3Q2rYU7eCJ5zwqkTogb8fJX5nnYgdA1Y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14Ff3WTZfY3ezRncKkjKzbxADmRp4y4AJWazrBP5vfrt87ARHM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14Fs9k9vM1y4HnE4S41ogAxMSJ6qvbRXC3vPqowfh53Q8YKVYw": { + "balance": "1185.683211503", + "bytecode": [], + "datastore": [] + }, + "AU14GGgB1jK8VGdqFEu5xYvwaNHN7foh78wHDSCRDD5XJ6HNVbGN": { + "balance": "1557.338051967", + "bytecode": [], + "datastore": [] + }, + "AU14GVuw69o3Y8xBZR32poLqtXv3pLeix4M1rh7HAqRLwsdXgmXB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14GY3NrdvbbKjkK6PJXnqPJE9row46oxqhSjc789qokA7xxDad": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU14GZ57TXeTddbB1z6aKSdaDhnm8EFweCnM1YFMEpyJT6VD4EhY": { + "balance": "1719.168704658", + "bytecode": [], + "datastore": [] + }, + "AU14GqAneWns8sT7JzLEDMaCWeGbX3fxJiVLf4KhuXArmGoQnRAY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14H8AB9KNocLezEYHaE1neF946cceqZRBur2Yn7etLg4K2TAuC": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU14HH8MYQuXwAqLatFrWf2HsQR2yp9x33ZjKCjKMd5YK62nwqEc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU14HJwhNsUvpCBBUshDqZGSTX2Fb6x9okhPGWj5Pwar46Kooe9B": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU14JF4oQL5Nahsyzsdp62jb815jXS7U8CiF7iHzpg7cne42TY7f": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14Kb3EG1o1LgMgHx3oSbvwFPq6x8JYqoNaspPzjHcxxg75Komj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14L6YDGZEtEFQaNnzVdx1cznhvjAh64smNm7y55rVAUzn6id2u": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU14LEk44hUh8FEE5YHEbxA3U72hXgRAYQ3XpZXpm4GD35X6QY1S": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14LJvSyPeCitaQYZuUwRFSzXVTTzZ8XXxCkeCVvBNUSrUnf1kt": { + "balance": "2026.540591267", + "bytecode": [], + "datastore": [] + }, + "AU14Lbo3BrNAwsbZ1B1ATEPKta2A5jAned9RHSFcr2NQhiEPmdRA": { + "balance": "672.849513058", + "bytecode": [], + "datastore": [] + }, + "AU14LoPK7dav1ddm8DWojUpmHkbKtn6aD56jjNoM7mVHMkLvmt45": { + "balance": "687.629460837", + "bytecode": [], + "datastore": [] + }, + "AU14MCbFCt58teRZq9KWu4c6Ndr6vGKwPHcqaQqP9cWhREXG2odd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14MSKPQrGpYP63JHu5EAHGAhPdk4oqzcafmjmq1Eh6ziW88i3o": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU14MW16kdzee5BTXBfNXum5pj8zXdcSmCmbpPCgroi9VqErCpAe": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU14MXXJhUzaxxefpQVMTQgsLgvx6P6e6VXgr4RfwcwtVH94G8Ka": { + "balance": "689.338347669", + "bytecode": [], + "datastore": [] + }, + "AU14MZswCDfKxUyNfpgxGQnw9qnCCrYtmiagtXgAMBP4VxuzQutp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14MerkgBZU1WWJUXN1Mi9N4oXbQbS8jRPRGipoFvXR4hGMjMur": { + "balance": "998.787855198", + "bytecode": [], + "datastore": [] + }, + "AU14NPcaLs3byPbBPLfNkLEyRJwepmMh8ZvEXehRfq9dawKSWdnf": { + "balance": "1290.423365213", + "bytecode": [], + "datastore": [] + }, + "AU14NaT4V8jNtjb18WpcfVB8WiRt8XSeZsJCRJ7sL127eDowYbLk": { + "balance": "48.511891532", + "bytecode": [], + "datastore": [] + }, + "AU14Nbw6AJpRHBp2Je7giSxojhSe8r2zjfjdM3sZaZRrWAUUax2D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14NvAe5G45CExXmHYZyDwAYwDc3XTs3T6i8FH6YXWDngCnFCMy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU14PwSi5NHEj1XhkwLJfX6vG1WWdhzCFdGDGPDbAVRTAxsxZg4k": { + "balance": "3510.015361791", + "bytecode": [], + "datastore": [] + }, + "AU14QYeRPudyiuR3xsqWtbetAn4mbqm7T9X3zdGU6AsvDT6qgAP6": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU14QgLanbosv4fNMk7XtQicXHE26vGRwsqSMWTLj5piUbS4R9sy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU14RDtBpqQ1USjwtJHEEqxXoNnbmuEpDTLyaF2uUQKPuXHfa2GS": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU14RFVYzWT28Qpom8iphGzokm9kSTXPp8jvLBMAkszkFnL7rviM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14RzsKFQmZrxHrFtp3LkiV5nn43usZTvhjWGAtad6qZjdTwZKM": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU14SB7m9GzzDMQTUDxihxs8vPU5Mib2Lc4hoiWc3u9kCkzgi782": { + "balance": "1688.740046415", + "bytecode": [], + "datastore": [] + }, + "AU14SjU17xpnJqJTPu3gmZLHeBre4yphNZjXMKAJKWXxmibD7YVH": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU14SpBPhYCZjBcPr3ctDjuveDPsg5M7M8fGCfUCoND5PEJATuqB": { + "balance": "1479.484078170", + "bytecode": [], + "datastore": [] + }, + "AU14St66Bog6n3yVZhgh5BtgU7LtsCT4BVSBKA3NvuzjpWmtZce4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14SyZgamYCLWWH5J6JXyAZHSRqm54m33VaNPBnG7gHAeC7w5SU": { + "balance": "618.893516768", + "bytecode": [], + "datastore": [] + }, + "AU14TGQ4dDLXWufRHMDipnMQAMEgYHdhqWJQmSMaXmLG7ZV7YvWf": { + "balance": "1420.885825852", + "bytecode": [], + "datastore": [] + }, + "AU14THXhY1SQUJRhwPMhmVUvd3B9fC4Snky8XnY4x9YWxoCUGGTc": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU14TKjgoXxMF5qidEPTLmeuRULBFXkiwE1LXW6si3o5V79t6NeA": { + "balance": "4426.637878785", + "bytecode": [], + "datastore": [] + }, + "AU14Tqp9LrDNKW613572m7tXt6BjwLswL7Qa2qpbwZcWPvsy5dj1": { + "balance": "1014.196107235", + "bytecode": [], + "datastore": [] + }, + "AU14TwTDm9HK4vYn1cPdJ32PghMboWuqaGGepHXfERb386kmmyz6": { + "balance": "1664.293888940", + "bytecode": [], + "datastore": [] + }, + "AU14U9QMNGDWVinc6q6hP8u51GMbDovenaXTXieWvWqEfniNLNAK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14UFmWpGhNjFanbszaEFFykPv2B1MEVHq2yop3WCFPJYd4VDEt": { + "balance": "1303.753128706", + "bytecode": [], + "datastore": [] + }, + "AU14UesyCAs1LaCQvm7en8nMNfvHBBmqQsQPz21VgPrsUpYKXSZg": { + "balance": "3353.643731853", + "bytecode": [], + "datastore": [] + }, + "AU14V7ACtd3hkRwhD4V75F36e4UiVAxfYnwfJWjb3QgXMmv3rYPy": { + "balance": "1649.010138228", + "bytecode": [], + "datastore": [] + }, + "AU14VBAmk3P99Sv8Fpt2ZhsFvhL4hzgHdQc41cCni2cHvd4eKa4e": { + "balance": "1307.224026556", + "bytecode": [], + "datastore": [] + }, + "AU14VMb2L7YGVmACiocFQNp2rMRMgFgfG7EWobNWcSRn6HH3chEm": { + "balance": "1437.718921222", + "bytecode": [], + "datastore": [] + }, + "AU14VgpiWrABZuuoKThdqrPyscMqsgocttKcrYo5VNwTq8bvB7kK": { + "balance": "2495.724642944", + "bytecode": [], + "datastore": [] + }, + "AU14VoDrhD4QhAJVhx44CetLrpTfms53S4LJzt4uTngBQkdXW1eZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14W72njVVrcKfK3DbYe9Stpobbzu5LqkrhfuPuksrq7Hcm4UPL": { + "balance": "833.949497144", + "bytecode": [], + "datastore": [] + }, + "AU14WKYHY6xkS9wqQZiBgMQnBaHZ35rUDZSAGyJobuNFuV5n3qwh": { + "balance": "3171.667952166", + "bytecode": [], + "datastore": [] + }, + "AU14WTbaTkjB7DFvpFnDGNiVqD1ZavSztvDu9VVMuaUy8wFvGPz3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU14WqmAT4BYSrAmssauytqMNatgktjsDHf1XLg8ELQxA8b3Q2WM": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU14XJdWQgSSVEwfyR59cQ3uiBkTq7sGD1xwmSkik3K4dPTmNwD8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14XSzAWXpvWXK6u1VWJjhv5er267Zr4CGX4HKpAgQnj782N2PQ": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU14Y34K1knNy8S6cQsaN4MpcgHVX2unrTVGdge8niRM35g2VzZn": { + "balance": "1850.938702558", + "bytecode": [], + "datastore": [] + }, + "AU14Y47Rw3KzQ8ZTdwf8aVPHhkEzJCPAKRqyWzmiFEJdMRckPJJA": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU14YapBczwK3dk1xQ7CAVAvjAQjVyvEd9caBajRvjJcm2mYnEV4": { + "balance": "1966.972651071", + "bytecode": [], + "datastore": [] + }, + "AU14YptGvwYhjJLaTuiBNBQ6PLa8mgJ18sEqmjAM7eqk3ifbbQyo": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU14Ypw5birxJiRoEhe6Z7x74P4zQ8cvpBgFoj4A9iAJTrViUjfJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14Ys5oR9MkWhQomhr1tsXpgevWwUrKZB1WUK6vyYL4WhjNKzgJ": { + "balance": "1321.063189135", + "bytecode": [], + "datastore": [] + }, + "AU14ZdNqfwcDqgQjURZHJethkDqDi5ytwGLL3mr3PPKCiECh1JTK": { + "balance": "819.193385054", + "bytecode": [], + "datastore": [] + }, + "AU14ZpQ7D3kGD8F8gYXsdsRXcs218tkfsShmMqPxE9XnTGA9PHqb": { + "balance": "76896.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14aQBDsyeFN1c7q7UnruNckjAKavBYL69AuCpgosB4zZ2rRhDh": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU14aXxW6tN5xBTFDPrphqtX2oBbqWC7nSpeys4VdenzsJrck5cG": { + "balance": "2088.102654398", + "bytecode": [], + "datastore": [] + }, + "AU14apQqoMtZtpe6ToKGxh4keZPhHLzRN8pVGe3xk8hWKC7GLKWi": { + "balance": "2441.474062443", + "bytecode": [], + "datastore": [] + }, + "AU14asQoHo5WbCGdHyv3NrnoGQu6owY7n2znxSZNE5ZmPJnYPHQh": { + "balance": "3741.615698071", + "bytecode": [], + "datastore": [] + }, + "AU14bQBuVRaCaJY8JvaxF96iHyD8Qtt1579sxKDgDL37hCjQ7pqv": { + "balance": "1256.490097556", + "bytecode": [], + "datastore": [] + }, + "AU14biucdG4Ry4PHrufWNQDJBh7B4PYrYumHUnYRUn4XAgbA8B1R": { + "balance": "1485.805686654", + "bytecode": [], + "datastore": [] + }, + "AU14by76uRPN5UcbedcTvRP6edeDd9sXP6SE3TLnmWNu5Dae2NXj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU14cAv39mq1bnxEoMf7STszYntRNo4sh7thXcVhVfdXrazc8Uia": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU14cGRpdruszwBRDaQWdVMF3gevQ5NESVGePybJ4BZDMEV1wJgv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14ccrVGLbESDJBfCA5FqKpJKXnohL7KMeqh59fgh9poSyziqop": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14chFMNBEQU83CeK3y2gHsGcQE7vG8bMqYrBupS4E3BWngBAWL": { + "balance": "3285.120263893", + "bytecode": [], + "datastore": [] + }, + "AU14dYQZsMbi8AxocyhkGrMziESzh4CjUo5LebWrAfJKLdXhk6aE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14dtu7FGxQKpWRRZAjqkXCyfLcbovq1xsdx2ENAM9nCjXC2sWC": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU14duubQD4ZXTDDaS2J8bHafE1ahG9BRvogzjXtRwbkv2HyEp7X": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU14e3FiSfpFJRuNPpRJyziNvPJiTusij9TcX75hujSi45FgRpxV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14ejTWvWtuP6SrYCLxWVxdQD64DpYoa9yJVNr49q7JHVZD3Q47": { + "balance": "246.429824149", + "bytecode": [], + "datastore": [] + }, + "AU14er739LvQjP1hTWYJKboQHV3yenbKefHSa7XssSjAMhv5R137": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU14fWnesbYgPxYXq1fzGEuSuXiABFdKKgNf9rMg2yFatU84PNEg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14fd6nZBivJceNeSRXbuCwRtuEiCApimQMduoBBiyumqPPgwhc": { + "balance": "662.219789619", + "bytecode": [], + "datastore": [] + }, + "AU14feJZs8qzcRSeqRFS1chcH78g4Hy6kozbYgiN9sAMswf5s1mq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14fjhCp4zXgXos5X6kGQXYkpBs1AXDxNwCGHDzfZfSbbLw97UK": { + "balance": "2621.491954763", + "bytecode": [], + "datastore": [] + }, + "AU14fmcZMdP8bDdhyTMQ45NhG7EErqmsFKcqgQLoZDYqmg6ddbvy": { + "balance": "4369.155707353", + "bytecode": [], + "datastore": [] + }, + "AU14fmhrr1EJxxP4AT9h1pnhvciYMmjV7C1Y5kdjxDemuWC22wTo": { + "balance": "1504.775465520", + "bytecode": [], + "datastore": [] + }, + "AU14gPD2PYBkMZoPJ8tNgyXHcBA7DVAmNC3xYGAUdEhhCv4G5aNh": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU14gWGnhd4BKEdHp7bnF8xtuvQq4wu65bDwRqVqf6jtkVodtNiB": { + "balance": "1903.135363533", + "bytecode": [], + "datastore": [] + }, + "AU14gZUzceLhFG2Km3vogSVCSLmTtPe3nufg6f4WatMaarqYRjeE": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU14ga31sLGTeBMypAr5Th7WqFz89yxNBsoY3AWh2atGGf5riQWf": { + "balance": "1094.641373199", + "bytecode": [], + "datastore": [] + }, + "AU14gbztUXqoskbkg2yzaFdrG9xdm5osn7bcev47R2rJhaLEuuCs": { + "balance": "4572.076790485", + "bytecode": [], + "datastore": [] + }, + "AU14godz4vsusNfyfSqDoZn6xSKEpzQ6vkNDGYw6sNCVjJqXtdze": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU14hJZi8Gn7LTw55goU5KBUkDitBEwCixfDPVVcAzp2CoJZexxf": { + "balance": "887.687463159", + "bytecode": [], + "datastore": [] + }, + "AU14hKEGNph1N5HrZiWK9kXkScvbu8f87pA59jk33vZrRyvKR55T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14hhLvbefG3F2o6rYcBVHfWQNrLDbca1eNPZ84PGQVP63kREMQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14hsSjk23PbM6k7SGUgpVjm951PVaKg5inpPbD7fh3FTy1jUV1": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU14i5W2jNdNwrf3fz2Kv3FVBdUfSAJCp4yhVbC4PfLUJh4wZfjA": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU14iAj6bGWxSSB2PcdaLdUTdfFr84gPkMQNKLTHBerkR5VyBjjG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14iEth42hQFF6xQpSVUZcd86MBMphUHdoooUrQ4oGwtgvc752A": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU14iKqmudVw8rd98mCbGegaX6wRNtagU43wMkdXed11rkPMqgp8": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU14izhWaP3Kt5h3tGkzCXfHK74XeU4gTr7QS3J5RnEH5PU7kCkq": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU14j55EiMjAK9V2jc9sCa8v23EaTTzAciVmzrfowie8a9Bom3r9": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU14jSHxygWBp9VQK8un8kJhM1T3oUeKcmTkS4x4WQ1FboZYEUnR": { + "balance": "4727.786975555", + "bytecode": [], + "datastore": [] + }, + "AU14jvDBY3ijwdmUo6b4DRTGMQGzhp5pQb4YNmFxHrHhvgTysnJB": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU14k8Yq7FbEpxgXPXREASzJx9kExMtZ3FqeDftwcvebA4spu1sh": { + "balance": "987.197137255", + "bytecode": [], + "datastore": [] + }, + "AU14kGcvfBCd6nk5BiTrX6gX52vH5DXA9CUnMtLFDYSAXtim8LtH": { + "balance": "5834.643859290", + "bytecode": [], + "datastore": [] + }, + "AU14kRqRGGvjPPmyVK6tNPoyXytPSxmfkFhUZr3oAuPEh1VtFtLC": { + "balance": "1594.557980156", + "bytecode": [], + "datastore": [] + }, + "AU14kw71QUe2ZXNUEADSBQihMPZKQ4vozc9iRGhPFiDCfRYMiaR7": { + "balance": "1311.311157993", + "bytecode": [], + "datastore": [] + }, + "AU14m6KR2sugh4FUKNL52K7KDUF5yK1pjf9UtuXu3kD6vAmBpcjv": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU14mCSaUn7gbUSVAhhiYkFeQKzgDgmb5Mw2mt9sNqMx3W1nSezB": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU14mLJKX6VjVnuTFQcep1W6vK5a68g27YQZEbMU62JS7gVSGMVy": { + "balance": "1610.985633325", + "bytecode": [], + "datastore": [] + }, + "AU14mMMmU95rsCAbUZkufuq3jcScGKtwW72oK2FSEpqi96xEYRgX": { + "balance": "1688.988650061", + "bytecode": [], + "datastore": [] + }, + "AU14mfB9efnCNXE5kK3knz9Ar7Lft6Vymh8yFwjZpxYXg1Zy1425": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14mfT4x1cJM6oUDxGQNjMoxWTGSRjkFiPXEgS1fjcETjzDjQFE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14mqzybrXPBF9GibebVL5tiQWJk7FoPo2CmNeRosSYc8BDabXm": { + "balance": "1383.550900314", + "bytecode": [], + "datastore": [] + }, + "AU14mujdjZZuDQntpUSYA6UdEH9tiNjTDjNkjqWcJERkqBMebsk8": { + "balance": "2601.713915021", + "bytecode": [], + "datastore": [] + }, + "AU14mw5PD6Pu4jgMjsdrAgfhyn79xs9prSPCjkPjBYDZae8FodGR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14nAn1Kjkf8WfeC7zgtDGwvfiMZY9SsE8axBf2ZbXVE8u5h9W6": { + "balance": "2131.240639396", + "bytecode": [], + "datastore": [] + }, + "AU14nEcuf6AqV5ZaYSXgrWNNwgqPHyHXfwLnd2sNoCWYv7oYLdtH": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU14nnKUDkBF9XrHnMbHUXkJVHws5TECJbvnJ4ikoMhbqFvJ1VBS": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU14oefJ8kaumADjmxm13rfSEvbQQjAvSoBMEn6J3Y34WL1gVTJX": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU14omhTVBMvAsN4JG7XEMf2rrgiYz8dYeeYuyhAgA6SB8c6PTnR": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU14orWyFV7k2zMU475X3MfZFy59GAnXeht4RGnCHjz29iCv8DHa": { + "balance": "1343.783341682", + "bytecode": [], + "datastore": [] + }, + "AU14p8HyxfsYVXnHEv6YyG4zVET7Tfv6z1DbzmQSrFuLxR5e7YUA": { + "balance": "848.596653377", + "bytecode": [], + "datastore": [] + }, + "AU14p8ZCXdQVkNcoDRMHTu4z5JKJudSdYrWSXJWbp8mMmXAYWmZq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14pMMjuKtSQDYCernjHE2cHAgScR9jckpcBJ75p87dyidv64Ti": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14pW3mmEETfUqJaJ1BdYHjzCxWuSjbZPHNn7uFhWdYcuQ46Y87": { + "balance": "528.424634172", + "bytecode": [], + "datastore": [] + }, + "AU14psnhu3GAVpcV3sJxJQhWvGGRnPDGFHKmfnxSma9gn1Gz43ud": { + "balance": "2167.622095032", + "bytecode": [], + "datastore": [] + }, + "AU14puDku3XeULhRSsrhVYQ6HzTFnJiRTfpTcyXq8nMhBwht2b6n": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU14qDurdUWtW1qfbMjqjASgyaXqVrsF5uubntqQwZHYeXtGPhp2": { + "balance": "2504.720365213", + "bytecode": [], + "datastore": [] + }, + "AU14rJC6EbG4cWnqFwXYMMc54gEjywEUYLbXDgEZYgpPkzMmqyg1": { + "balance": "577.458455158", + "bytecode": [], + "datastore": [] + }, + "AU14rqKyH4W1qhwmGpuFjF4QuPvUdumfe5WjawUB7pVh7ut8BKH5": { + "balance": "2232.475268988", + "bytecode": [], + "datastore": [] + }, + "AU14sATUJg76mbDk9RBT8ovd5zaTttDV5ULvN3GR4eEerpJDzYCZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14sezBgRksheQ191uPYgJ1RBVhkViWhj96FvyBMTAdrefN8oZF": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU14ssXeLRbaCDsnaJyJP9Y7mTEMHRwjMiiHDarEKiFMJiHCQieN": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU14tMQwE25cWakygQNbuXWrMZ9uf5WWinYPwAFqkKYq87skWjHU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU14tgPMKYC7GnQ4y7ngAiYdW4AHobAeeprQ3KtfhqtP3saTDgBP": { + "balance": "700.026373995", + "bytecode": [], + "datastore": [] + }, + "AU14twJ7adNy5W5CH2icfsSjDzjCQT3ymhne3Zmaah8uVXs74KqN": { + "balance": "1149.258287330", + "bytecode": [], + "datastore": [] + }, + "AU14txVthDxd7Mj87zrWvxDa9arTQX2hnzufJMu5Xa3yBmNUAai2": { + "balance": "2241.508624853", + "bytecode": [], + "datastore": [] + }, + "AU14u1dXReBNLiEMyMeCLqrScBFNhdTs2rsoQPkx826dnNVuXKLq": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU14uLxSopfvERPo6o8ans9KgVpZL4BJDMs25cEpYhmtFV7AnJcn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14unfsEyJMvYrjCsaCBo52RhLyxk7thdRUkd9mr4HeftFo9Rte": { + "balance": "16.711643246", + "bytecode": [], + "datastore": [] + }, + "AU14uwM1wQaPLYMNVUuwT1y5XqgvcmPHqvRfNT1rFWEs9eeUpY7t": { + "balance": "1502.108459054", + "bytecode": [], + "datastore": [] + }, + "AU14vDduwGoZ92gUvijdADWWEPiCtwRj3SK7trDz358zCiN7ZUZC": { + "balance": "941.541832802", + "bytecode": [], + "datastore": [] + }, + "AU14vJszKrdmXpu4hHirfPU1PkVwH8dreQPTLkKoVAGCJctUT7An": { + "balance": "123.273948935", + "bytecode": [], + "datastore": [] + }, + "AU14w8nFcKh3toKGLCJ3y4PDNdrMZYWHNGEfzctRAnEnUNAr6J16": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU14wDNrfo6d3fQjm3A1wUQ8BTbWThs2TC3tyMtTpuPatKhMCBVm": { + "balance": "65.659029827", + "bytecode": [], + "datastore": [] + }, + "AU14wSiHfKYAdMkYxziumPrYoywYWRw7XFK7pUS31TJ2oMgNmvHZ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU14wZwXoJdpFWpkRkLtWf9C6foaLaZL39o6hh6tDstvmzquxZBq": { + "balance": "224.656400153", + "bytecode": [], + "datastore": [] + }, + "AU14ww1HPGCHuoLC6jx5QFN1iX2mw2pKA3L1dhSVqm6vg2tMKFmg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU14x41HQr7thMzh7gN1CNXZdLoHjsWTi6jcra9qGkUQ31Y6XTer": { + "balance": "3939.106506889", + "bytecode": [], + "datastore": [] + }, + "AU14xEZQSeMToGjheF9pXubLLFCJb8CyKuVEgcUCD7U9X3zSGP5e": { + "balance": "1349.673784366", + "bytecode": [], + "datastore": [] + }, + "AU14xNwKxopKyv4zuYzDKgazXYEdTtKoHCXs37L5LmQ5gFbXvv4t": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14xbouawe4dEXss7GRe1Vmo3AjviDJ11443hx448Cu5P9k89Qp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14yW4nCaaoEBKeum9bioXtr9xfdkHngTeyxX7TcT81qERx8zk3": { + "balance": "1770.934597456", + "bytecode": [], + "datastore": [] + }, + "AU14yacPWmZuavmaJMJ8FLJLBWEqk7G8awFDqSa3yk2JN5ALpGuT": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU14yjpzgB2XmHvnRdHbw3SHXudsDpPuQknpvDa8qxNmtKVs5jfG": { + "balance": "1013.980974467", + "bytecode": [], + "datastore": [] + }, + "AU14z41neoHCJ8prUEM4iEbiM6rhcnj7WUmgHxSCBRfEufCE244K": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU14z49Rwg8hLh8MC68HQ3rCs6UwAb4Fj84vqtC7am5ycocKM7kB": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU14z5x9P8mR5ATSKsnHnTQdToZfsFxuLpW919ZZVz2EFHj9yP2Y": { + "balance": "4628.733589461", + "bytecode": [], + "datastore": [] + }, + "AU14z7AsjqphLkbXv7u3omSrQ7BcHHkyqqijMvihXpGZdFYwk3cS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU14z8xpBJ3geYPPMzSjqx5nu3QQvZfW7Loeod7GqGCphp6AMFzC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU14zeo4C2JGHoAHXWHWDbJ2ZZ1rYTGEvXDJxkRq4wPGZzTu5L9R": { + "balance": "1301.834435662", + "bytecode": [], + "datastore": [] + }, + "AU1517irYMBfvJo9VbtvNGr7wyVZaMhNyrdF43W18H9NZF6HjWo4": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU152mdbUZmp18z5yAUiuxbECX7qg21Gu1AYLQexVjfZiMUYAVzJ": { + "balance": "668.025396674", + "bytecode": [], + "datastore": [] + }, + "AU152vaRruTyv6fH3Kmz6YjHfEi86yzoezuThypUdjnDQmQGjUXV": { + "balance": "919.341249191", + "bytecode": [], + "datastore": [] + }, + "AU1538oQYqrTQ6YeAuBCN3cidWPWZiZRzaqCnq5ZPQW9NE8C9Jpq": { + "balance": "1656.006806619", + "bytecode": [], + "datastore": [] + }, + "AU153DE2xFxrizUimbjSyCab5eVVC4bQGnr5VHvbYpu27j6DADHb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU153GZj6VydzzcB5iYWyse8HiZYN8sWdfc88UkB7KEBATGCeptp": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU153LYxYMQ1VyYjjsYvKYtCDepXwfZcBUujMWEQewhKPnkbfyP8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU153Soo4M19A2pf6kptfn8YaXoar7CQTYHXXQbjkxMBfZ7i5PJj": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU153kURuDRaeGYadPz52quCSuzgXWsJqX86z64NrfTXdnWDHjS5": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU153yWscwPTSwYcXnHiMuoawoS8J626y9uE2t6Q84Wa3nW1Syp3": { + "balance": "1668.130949382", + "bytecode": [], + "datastore": [] + }, + "AU153zkBjQRQ66emwynXZ4osh6bkvLhaFJjP5BkqdQCp4erBgjvd": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU154Xn7xCgdZYcusCtoay9RAQtVVbkMmdEKy6L8uFimx1YSTJdT": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU154dq3TtLBU5keKSVzezWW1mv76PP9To5ZhtAmEDGqjbtRJkKH": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU154iWYVxfGmdZbT4Bba6vzXmPqShzK2xfbQpwmSZXcdgvruyCQ": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU155BfoyqrEs5Yw8Mxu65UrqesLc4sS3qiZd6P4ph79mCdbYXF6": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU155qVbGAeZaEdAgtFVMQjLiGc9EL7x6XH4JxFmNrf85ZcrWvBM": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU156tFMzbqEevoYXRLn6rMdMJNg7f7Mi7P1vXXvemndNsdLwSe3": { + "balance": "1325.922032311", + "bytecode": [], + "datastore": [] + }, + "AU157UU8g1FpKYb6Srm2nz6oy4Gq2ECGmXYd9pg5yqxCxNYU73by": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU157UsA3qTxJjhahx7zJyPm5y4B1wr4dNV9CYaynebmqWdHpjU3": { + "balance": "2581.090834537", + "bytecode": [], + "datastore": [] + }, + "AU157Y2PLSV5fJM4VQTHYdEzSoBKTDCXCppaGPdm8E8mp9WnMxAe": { + "balance": "818.586276544", + "bytecode": [], + "datastore": [] + }, + "AU157jpR1uwQEKdwFhsL9wiX3XXZVEH6bo41sr7RhDGih2YnJTbP": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU158scs9byPz4DS2HGMdZvkMeuR2zcZKuUPnfVWWi5VCdLyhJCJ": { + "balance": "96.770103169", + "bytecode": [], + "datastore": [] + }, + "AU158z4TucKUFzzmuWjhf7cVdauFZCkDaTi4N3SBCsHU2nVeLTro": { + "balance": "5376.470990582", + "bytecode": [], + "datastore": [] + }, + "AU1591qsBGL3x5QKyZ61ebaATXxw6r9hHXuLpaotDTnyF9Vaj18w": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1598jGqVzudmZWAj1ktnTu3ypoUJikH2kzsptkHfUm7ab8MoE7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU159EQ5Jbq6tvuQT8rKmKVWmHmfcTPyQyBicXvC15ARSeDCGKW9": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU159UFyKNFkQFcyZt4SkAFHCMeipkoxXEjFj2Df5UjMJzHeZCq6": { + "balance": "1458.403166200", + "bytecode": [], + "datastore": [] + }, + "AU159ewRbksYVWyAnZhpHMpRwHNjK83wFAFaRfrT1N2UoaB5ip2U": { + "balance": "1383.159905081", + "bytecode": [], + "datastore": [] + }, + "AU159yivd5qUN4BLkn5F1sprKPReTFFEMA2V6PEY8innQTustxv1": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU15A4BwSRNUAKtVjAbvy2khumnKK5xdVjn1LeY7YQ7bec1vohSy": { + "balance": "1980.901693972", + "bytecode": [], + "datastore": [] + }, + "AU15AALn1qFxXAycxPTJV8YRDSdrycMEdBbhJEutrvK7N6gkbpwB": { + "balance": "3490.804619073", + "bytecode": [], + "datastore": [] + }, + "AU15ADV48XJEQbPyGgwsyee8zo6kiNcKLV22mnBdJtccteGNK6LZ": { + "balance": "1090.101668981", + "bytecode": [], + "datastore": [] + }, + "AU15AGBKyNaZ3SdUiicqvFexV6zxMBVG47ZsY8DirXxhVivVUxfr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15ALXDfG8WLVvJ8M5N9TBEReB8YQ2wPVyeG9tHjq6faqhVp3sG": { + "balance": "708.376012115", + "bytecode": [], + "datastore": [] + }, + "AU15ASJWs9KjiYhmJ9ocJKuFeoMHrkUtV4ecZrQUWS9nwE2yoRtF": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU15ASd6SYyaWbtui2qJLh3k9zX6ZRNg28c9YQui6EyadEBVHXUs": { + "balance": "2032.431040463", + "bytecode": [], + "datastore": [] + }, + "AU15Amt5GYWFqjWzKQqTqz28TMrdfnwfE6HNkSwVvJafDWZBqY9P": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU15AtTF2dytFe67JBUP2eY93mjAWcNDXG4upAQ1EfivKV5oi24r": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15B8U9yeYSGfd1KzwGBn1BoPBkPwZNP8TVj8BCTnME7P6RXJFK": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU15BCY5DfxTDzSmPNX9DAVhqzPit5p4Q3pep8PeN2qziZCuRXbX": { + "balance": "1027.496285142", + "bytecode": [], + "datastore": [] + }, + "AU15BUWYkqnytrNLejrEiZtE4RVouKRcayQCzrhocAxchP6ss5Lp": { + "balance": "2361.276142858", + "bytecode": [], + "datastore": [] + }, + "AU15BvcP98vsuvgqWVKzfa8ChCX9x5wtpNbo7EhptLDdC8nqedyZ": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15CCFvfDUUhqFmoTD5RsBiyTgDVHGQKDhT5nevqqRye8WkZWz1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15CTf244mkTmmKMuN9bBjmVzzfnztXx8B8YXgkzcrPZyPXuWEB": { + "balance": "19.728589049", + "bytecode": [], + "datastore": [] + }, + "AU15CmCpJUHmSrQYdTahZEoAEjBssMiWTX8JXJ4sHPnYcwh4b72K": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15CnCuvefRve34dGRYA3eFjG2BXJbMdC6D95oY3XscBtXqRqYT": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU15DCFYKWzkwVTcHtAgf9K2zFcrBqrsB9EXExfSzv7mY37ZbPoc": { + "balance": "561.393174461", + "bytecode": [], + "datastore": [] + }, + "AU15DCij2eFizRYcC1QLx97Xq6y9Ji3WYh26zGE2resDWMv8tnH6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15DkD9GemFg7uDaB4rzWCVdzgNcJg1qWXmNgxS1dkqvJoV4QiJ": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU15E3MmxqFJHnhtYjaLywCgVJPfDhczyAfefJoKsPRQUdYyfY1i": { + "balance": "4189.197339974", + "bytecode": [], + "datastore": [] + }, + "AU15EM6X9XS8tdqsNPTJYE9xwyzLSzS5ZrRXunTBZWjZwv76qMj5": { + "balance": "4321.302006737", + "bytecode": [], + "datastore": [] + }, + "AU15ErT1pb2P99ksyEa37rMFuKA7SZcfCMYRhn1scztwwRq2zdHZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15FAtaqBaZQkU1b6Hh4jGtvqoqL25GSnhyZWeJo2qDP4dVSCRp": { + "balance": "1022.952097977", + "bytecode": [], + "datastore": [] + }, + "AU15FHNUsohGMxoDQFCz2a1QkxNCgJCCVDtfZ9MmqAsv9Y4menHA": { + "balance": "1843.923167888", + "bytecode": [], + "datastore": [] + }, + "AU15FKpUz6pHh6B4xAScxMgLXJrDKbyfWnHs2ZAuPdyvSwSELvko": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15FLJe3cvXcaTi8XDToxzJ43ccDd7rpMAXT9Gvdr7XmpkjfY6o": { + "balance": "1163.533704076", + "bytecode": [], + "datastore": [] + }, + "AU15FcuT7mYpVHkPLv2N51vcUFzuHoydaMyELTnYrRaSr3KaYmSM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15FezcXY9Uc1vQF3YyMVb3sxCbaMSY582Rj4SuNBZPvQQfS2ox": { + "balance": "805.940619164", + "bytecode": [], + "datastore": [] + }, + "AU15FfnbXggB8YaUCNsTpCRCtX7pFdgtdnpKoKdQjwsDkZB5Jzgc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU15GFnoCsmTS6J4nPijasqNq9qouJdEZx9Efep6CesVg6fbmwx6": { + "balance": "1099.405569675", + "bytecode": [], + "datastore": [] + }, + "AU15GQ63Awea4YHhrnZxSVUUdzfagSeCuPsbz2oB7GMArdULkv4b": { + "balance": "1764.491798904", + "bytecode": [], + "datastore": [] + }, + "AU15GgG4udBNteZxCLwJRD1RoR8TSuxzPEP1A5wcZy7gPsTNtMKM": { + "balance": "1472.230878794", + "bytecode": [], + "datastore": [] + }, + "AU15GzHq4mfpuRaVg3b7RqZHKs55jehQLMXMXftWrfvHXvkZ5fJV": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU15HHscvQiuZWqrWhT6LafXit2x6k2KBQmNs8U98FVVBSh4Vknv": { + "balance": "714.071436677", + "bytecode": [], + "datastore": [] + }, + "AU15Hjh5er3oZU7dt5iYQpd1LM7jxVe1ZTyEKXYiiybB7jtwzXze": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU15JwQEaH4u6hT4HhFCrg1cYFJzed4wYjisU8evsq5ttYbaaFJK": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU15K4W4Q2B6LdHVNGPEfq95panABFNdd2juwynU8LBhReu9ea51": { + "balance": "771.951158748", + "bytecode": [], + "datastore": [] + }, + "AU15KXfTjJHg5ZSqEfsuxnP1MAjHgjva8zEzbXmTiWBS4o1YPHiJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU15Kck6weuNaRTrwJPQ4ZGM73VfySaYdYyVeekBsnhi3V2C4Xjf": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU15Kq7BYn94KDEXKtAHD5pyvPgTGnZVUM1nHWLF2BohBVXXqLJg": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU15LKytD51hxC3cLaSV452Z3DjdJD4uzSaDxnt2NZj1BCBU93NU": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU15LVTnP8EQVcEDXAvnabCJn5KJkGedt94da6S87PdndxvvHdiz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15LqCdjoswHEqjMJbu86SBPCdf5NiySgmRt9tacokMaXdqj25m": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU15MBRWn7JoSrJg1SfhmNUpyxtWV3SHZoBbc2ptHuug7PPyovgc": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU15MUMrTvMUpFWiRvVboYC3FyMPRMDSjvCwtLJHVBnfSQpPay1f": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU15MUZNXuCRCZFQXvZ6gmLXzdFGai1QntwSA5s5y4fiVqYwVK6n": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU15NA38xr8xYtGUrV2joK5XFimKYVefhAU58b54QtxRwHJRfCEa": { + "balance": "5798.755776661", + "bytecode": [], + "datastore": [] + }, + "AU15NBcp3zkK8UnzL92BDK6ih31pVTPk1S5Y6hnyNntwoN3UhTcp": { + "balance": "2547.426780761", + "bytecode": [], + "datastore": [] + }, + "AU15NGy7Z2tgucsYmR7Hb4pgAuDh5BX9sHHEYsZtN3oYZKVjCwAf": { + "balance": "1520.346135231", + "bytecode": [], + "datastore": [] + }, + "AU15NdhsmjnMU8DhLiJhXDGh57RFvxhFHuekp3jBXYqkrQ7jPS8z": { + "balance": "152682.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15NnXpoowzQS9gsC4u9dTQEhB1kFavLd2CwwpvZaAUMrJMgL7A": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU15NuSRdaG2SFp12d4EgNmr6Pv1hsGgBHEHGk9tfLej1bmktEoT": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU15NzRnyJHgJqm1pH2Wdw62eqvqa5k4nKJXCysU5E38Aq9GYyBN": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU15Pc9wdTuuNfs2TkqfmgaGvCTgS7ogiX2vcgre5wm4URw4XT35": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15PnrTFE6xZuxbQYeNHu5pbmsW1fkYJbakHm45ssPxrqXPTbzf": { + "balance": "1508.122555675", + "bytecode": [], + "datastore": [] + }, + "AU15QWR8gmhmBXz3A66LkNfTBmwmesJ15JxQLGZ2sTqVctRTBKjF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU15QcKRAbYVbnhXQsTDV5WPGcvHReWxR8c4zL5UZXh11iq3MBfN": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU15QcZAiXtQHhbQtzs4D3x7BrQb6QppQqyD6MmsD6mgpVFNBJ1x": { + "balance": "2272.787040286", + "bytecode": [], + "datastore": [] + }, + "AU15Qry9QUxRFBYfDtpec4EmGvjcQqiPRKcV3ozeqXXxuxV3qn33": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15Qsk1zytkGgjaZx6ciNhrfpQifjVWkphwmyG22xZpBnSSQVfk": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU15R7S36oNtngaNTRQfkfD2PQwqEoY3Pha5DGbAhLEDW5bpeCjG": { + "balance": "5647.666779032", + "bytecode": [], + "datastore": [] + }, + "AU15RF8oQtUDpDPFTtE8XkZtpEcXhLRCYBrEWfej4xPKmTuktJmN": { + "balance": "1338.740543396", + "bytecode": [], + "datastore": [] + }, + "AU15RanxfLKnMEHdfV2SvYTpUtrCJz9vEdKNCYEgeJBcZfZC9KnF": { + "balance": "2333.207729873", + "bytecode": [], + "datastore": [] + }, + "AU15RbrsQWqQSoaZ2FDJGo6vgCfspYkC5Nou3kNqJZtwg9thkNY9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU15RkVo9U3xyYWj1YkZzWUQ12DmFkmRcRz72kxbyR3uJqcsW669": { + "balance": "4505.014330181", + "bytecode": [], + "datastore": [] + }, + "AU15Rx3amGiQ28B9wta8fmMtY8DVbCTPNmyFi3Bwk9HSYMyTN6D9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15STBvRMH7KsfiEwFET3BxnCZsNwqVNjeSwKvuvqkkDUg8KAcx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15T8PEchM7fDfVaQicdQvoaFxuaKFDoFFkoKQKJLq7Era448MK": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU15THVDghWyxf2KspMs5TxpxZ4wfznRTbUJVVYDZryNiJZXTFbs": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU15TKbkBf6kj8HePTor9QLrJkDkCV2LCUppa37AbHfgPtJcNcJR": { + "balance": "1663.695552463", + "bytecode": [], + "datastore": [] + }, + "AU15TUisb2L1ZAMdzdvx3UPrpzFvtP72y269iSHmvXAnbBcUgs2b": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15Tty9JRVGDy9LoHjwC6xQCLL7KgLJuCR8oif2usH4rXgyB3JK": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU15U43cRzABHJojgaqsdqoVe1s8YpmromX2TTkj49HYUK4ihkuk": { + "balance": "1007.164928798", + "bytecode": [], + "datastore": [] + }, + "AU15UKTKi7htA5p89pAnBzY1ydy4JxWQDQ68vryFbn3AKuq1UaFW": { + "balance": "838.054611896", + "bytecode": [], + "datastore": [] + }, + "AU15UTnmxeQFowVzsifjXMvXjX86YTXb7qwKg5CHGB3Sn4T63qPg": { + "balance": "1269.922340485", + "bytecode": [], + "datastore": [] + }, + "AU15UcpVKGCd39YRS2xkbwRAfUTJT1ESmPgabuiKCFomGCzEpCpL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU15VNHjgbWDV6ZMA9YTFQpftPqecVRfbjFsKcRP3N5uQxq5HDKg": { + "balance": "1449.650930012", + "bytecode": [], + "datastore": [] + }, + "AU15Vjmx8PcoZ5He1wtTDEWN2iQgnyZc1Qnt1fCg6LQBLDU5AhwE": { + "balance": "1203.072396539", + "bytecode": [], + "datastore": [] + }, + "AU15VpoJhNMZHhTGCULg56CSFzDbCPym14794guKwHjqgDC1QcCz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15W45GtR7ktBHjgme5UrcZbgSZJZzkJg4p2a5sHrJxYgLdco6w": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15WMJVMEV6WUggsmoQTuu2mzicTZeRHDB8wqGPkHkKDHkasXdq": { + "balance": "2541.340766785", + "bytecode": [], + "datastore": [] + }, + "AU15WQGbLP9aq1AiCbB8VnH8KGhWaVS16FvfcSYpvq54xGSfcLF6": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU15WsagmUTGwXVWAFNQUUfN7pdxtj8X1VNhK6j5fBvm7pAYAi5t": { + "balance": "1866.433353596", + "bytecode": [], + "datastore": [] + }, + "AU15X1H4djzvhyhbHZhrZHPAJGENMHzPcuZoxBdofxiGwA8grrmk": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU15Xdh2eCeBYMUVjizDwfTbFWJ8aPBL7HgvuNCPcLoG4ChtwWYt": { + "balance": "1320.841855406", + "bytecode": [], + "datastore": [] + }, + "AU15Xq4JbfVT5XPMyREoFcFfjmM9zdf256qFpvFfPysERrd2Qzd9": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU15Xsp5tgAjL5Q7QF3P7BRoAaRpFseSJJbxPMZS9DhkEPZaPtqH": { + "balance": "1453.279170200", + "bytecode": [], + "datastore": [] + }, + "AU15XvC1fEM8po4mjVmEc7SJtBw7JkdETfDZnvKDKimcgC5i1EwF": { + "balance": "1252.163373425", + "bytecode": [], + "datastore": [] + }, + "AU15Y5kRAJ3vmVgL58K6SPTZXAP8Qq42Rv9C34wje1qPr2bjZbXT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15YCUAMCeB6mQ17G9Bj5wWga1DHNCxrfw188EhrUaRiKSek652": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU15YRcm7c8nmACrMUXupdxvbWSZN4rfHQLwWjpRnRe95epgVpWF": { + "balance": "5123.813978878", + "bytecode": [], + "datastore": [] + }, + "AU15Yq276UKyF7gEwfaqxHyACFJqndxGwBN1hms2vTrYQLXBvtHF": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU15Yrnp8PLBYKWq2fKFAK6qhCpZabbFpksvdruo4SLS3wxNZY6Q": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU15ZAx4h9tia7SE4jNKeGuPA6nXUR2GUwbVERGY4z8jgCLJVWnQ": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU15ZNzeCfnmMfVShnrZrEQNz2YFQ1DZrnz7MTugcM8u1d3JHXCs": { + "balance": "1422.590432042", + "bytecode": [], + "datastore": [] + }, + "AU15ZSWR1BLCRpfEXScxBnnu1oH39g9emVk1zj25ptPVFVZDMg3Y": { + "balance": "1740.743546079", + "bytecode": [], + "datastore": [] + }, + "AU15ZWbvNKQ4iwQrNCPDhAfzGvnTVuxVhn1nBs8moQ3MPswwpsLF": { + "balance": "682.614972510", + "bytecode": [], + "datastore": [] + }, + "AU15ZdKLthyoDRHbsi2m4yYyVtgXfHR8c2WtGRrCnkwa7hANc9K6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15Zphr5hWTGey6GbW1zQpbZmmQhAhiMBLXMuetDDKfivCSmVBs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU15ZpqNejxgJ1tsYDzgEyNuEfSMEm6LpP9f7hZriCELg5eHRC2S": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15ZxiUPjqcyMFk1YV4ooKCyiHLBi5YvEhHUFoJUZn9Ag8EH23d": { + "balance": "2522.596333631", + "bytecode": [], + "datastore": [] + }, + "AU15azFyiJWhrAJtL7dgRKcHaZCv2PqUievmxYcbvFZYhnNrUa2f": { + "balance": "5007.194817752", + "bytecode": [], + "datastore": [] + }, + "AU15b91YFVayWY28fakMuNBWQePWRhwTEeddaVEjLxJ6mEfWZqaV": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU15cTLngVH2rKxSqmAPufKAuwryMUAAJckrtDgSiQCBHmNaNuJv": { + "balance": "1758.107282932", + "bytecode": [], + "datastore": [] + }, + "AU15cZX2A4bGWpfLxWHC3hTAJpFmEGbKFVhJV6oG9y9ybpzUFwYv": { + "balance": "4442.218154894", + "bytecode": [], + "datastore": [] + }, + "AU15cjoHvN3Huu4LXiUC9QFkcrUHnSfdATCEN23GMc2hC2SjSxuL": { + "balance": "72.301845731", + "bytecode": [], + "datastore": [] + }, + "AU15dQxY9Kqqi5DGMkgNKNxwLt8fsoWwzX82ia6fHF1yG7sN31Gh": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU15dcZsZESBn1RjUR8BXj2ymwaeH33bpXFR43RCVrU7ugBd2YqX": { + "balance": "5077.395284647", + "bytecode": [], + "datastore": [] + }, + "AU15e5XgbMd7EpkKeBJ4XcURJbjG6tBZi62My3R1Ed5X1m5VckWW": { + "balance": "1516.099318876", + "bytecode": [], + "datastore": [] + }, + "AU15e8F8tCrWG6Lkn1weSKWg9h3m2ZBxQH7Gb6tPpxA2yZTHDszh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU15eAdymyKJWqKK1NCCgbQhKDwbj7tRRZ7PvPubkQ27fd3uE5RA": { + "balance": "66.447991729", + "bytecode": [], + "datastore": [] + }, + "AU15eFT3ExzZPCAGA5zypaATDGDqoJjWKvJimi9MLa8P4UkSQ2Kt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15enrpuxGF7ceG3cekWLuFLfvCkqN4btho91oYbXJ6utGUfwjw": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU15eoLxWQVj8m2X9TzGhYgQhg6dUX3rpD4gTk5oewoWo6bWLHic": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15eob7MuVGbJvvytRBR5UuMwfYHfa1jxwk9gDeRMoDpLfNZ4kn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU15fhfV9vqVZ2rQtwDfPCV8SwcRKpaWyUgkGnRme6s2s3sHMckU": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU15frZvtDYVHSpopFKANXbsUprUEBTu6cZskqnGinrdKWeSdvH9": { + "balance": "3562.707767098", + "bytecode": [], + "datastore": [] + }, + "AU15fvBSnk8Z966JqjDRyRGHRzTFwjL3DvS4Bj377jcHFm8y9mye": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU15g2jLUuxGkEv9ycZoDof5YzTz3hZ5sXG9dPWd52iCAdEeZkjG": { + "balance": "664.126871653", + "bytecode": [], + "datastore": [] + }, + "AU15gCPMe5uw6fQiZGtvKJZ36Ftv1h82MqTRMeSewpJJviU36Wo1": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU15gkEb9VDGnukiYxu3uBMzXGLGCqtRYNiSFbetaDWfxDGLrxP8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15hBoWgPEJAmtYr2p4whHSheh9gWBUSGepPnP1ZckRfTLDBtFk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU15hD15XXrSEze8WKZUcVp7qMYaegsRmhCuExVGGnqbUBP3j33o": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU15hWy3Coxa6K5gvGah5Mva2GtkLPpEUfv5FSUtKfXVWs9x44Dc": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU15hfuDYfwU32u9dwx2osucv6J2psTYhhgw9DQiapcqtZXJC3E1": { + "balance": "3921.274718889", + "bytecode": [], + "datastore": [] + }, + "AU15j7Rd5opqdGEHZCUhRV8qTQWeoC4GyBpvXZ7SAarsetJ8539y": { + "balance": "2664.040499519", + "bytecode": [], + "datastore": [] + }, + "AU15jMTyFN2J5zvwTJ76sJnJPphchSxZE57bJrQMoGRTsnjB9CDK": { + "balance": "4047.165463766", + "bytecode": [], + "datastore": [] + }, + "AU15jdKpw8LZiGsUZUYhaV2Tzw7v23NG8wrJmprhqpjEMqeG428t": { + "balance": "2424.773380633", + "bytecode": [], + "datastore": [] + }, + "AU15jtDQRN5F1L1jnTUN5TY3mDuLwNAqgjgKAvb3waGy5VP58T6K": { + "balance": "3107.171519260", + "bytecode": [], + "datastore": [] + }, + "AU15kJTtA6QXJNmNjeSSoNqvXazxM2kV7YY8xVVH4y72k44ARFLd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU15ka7fCB8jDBmRfFsirZ5WzRSX8KcUHsjHfwqYue9hAHcgMfDR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15kgAi5CiT9zpzd1bqzMkd78P4a4HtxpbGsLLnPr4odg47ZJQw": { + "balance": "979.789621517", + "bytecode": [], + "datastore": [] + }, + "AU15m4H5HpmbxzseEhNaUW1cTt2tFVT76XZyRg7eUn59WJ376DdA": { + "balance": "1548.220750569", + "bytecode": [], + "datastore": [] + }, + "AU15mDe9NZFczcHifSwXQsBnaSH7RGxyqyCaE69WAE8TwLoiTiyC": { + "balance": "5219.705746280", + "bytecode": [], + "datastore": [] + }, + "AU15mZZH78CNniBXo94nzejB3i6Z9VoZgjLi6qZtwfiuAruVVZkK": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU15maxjTZwj2R9tXnSufoY8JczgFbkXmxjjzTJ6XJY54MPJkGRD": { + "balance": "7372.620447078", + "bytecode": [], + "datastore": [] + }, + "AU15nPcB3rQNSqG9i6fyoMaFt2AQLQwGsMUY2TTN9rBBEqC9RKWJ": { + "balance": "1124.986502187", + "bytecode": [], + "datastore": [] + }, + "AU15o7mSMVLfivKngYVGdqph3xbmwTWWQNLJ79SuAEQ3qM3GyoGZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU15osjmsyjY3KoE3kVJMNya2NrqYfN1N1agQJ9mQAdZ8ocmZuQu": { + "balance": "1486.234098622", + "bytecode": [], + "datastore": [] + }, + "AU15q6fjRx8hmxdKpxFgQpfKjmzCY2isRho1DWMQw8H6fUnw2A7G": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU15qBGyQUd5zviGyvMsdF5i3EcM5YgxBpdpdupYJW1AfPpH73R5": { + "balance": "256.150999142", + "bytecode": [], + "datastore": [] + }, + "AU15qGWaLXAcfCzaN3RnbgE5BfZ4bnT9sDxP5bxLBiDFs4V8nFoS": { + "balance": "3315.694175433", + "bytecode": [], + "datastore": [] + }, + "AU15qGsZi5VEgGoiizpwhnbc2pL8frQucq7NkCKskRucye6KFLwv": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU15qKRid7gTcfz8NpuzFhbozV2Ab9fjymmKLrH4rdqjyFCGzr1t": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15qcN6QmEqQuszteQmdatLD9PWHNy4AbNw5XEGPBX5wUYF33ud": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15rEBZqe5R6EkCD5XPSFFX8dTV3f8RMFCKEFfhiHGw1h1wGisL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15rK6Y1qcpp4nCis7a8VFBa5yGGZ3FrmfYEhyBCKfuzuEDow51": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU15rNfUzmP43g4yrsHDvgwyxHs8gPAuXvXVJjLgmaP5m5yENh3B": { + "balance": "2344.651681173", + "bytecode": [], + "datastore": [] + }, + "AU15rPJ4pHfapYJDARvQdA6PdLjMj3VtP6WD4aYvL9bLAc7tNFny": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15rjayP8o7ymnn5UJM6WMZ5i957JdQySLbmAsBrmZmYHFcHjMb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU15s2isUF4HQDdyADGdR3j7LAtw16TW6ZirsnRPP2Tcrrk9Aejd": { + "balance": "550.564336674", + "bytecode": [], + "datastore": [] + }, + "AU15s3pfND9W7CR8yq9irdtLYehVY4JBwW4iECokQKMytR2nwDE1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15sCy7HwezpcPm6U9a8wqNYjxZPWxLakHdgt25XEc2R6pHZC8u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU15sF5uu8qciGAtdsrBYutWwvRS14PW6ThsCGPTu1fvbuUCteZH": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU15sGCXfWXcrpPNEB9uhQp3K8KETK4maokQWVLqziwieCneWHRa": { + "balance": "1289.373107924", + "bytecode": [], + "datastore": [] + }, + "AU15tRMNfFWDvtNuSioimvtkfZLn2BULCT99iKoQZZ7PKi4YpRiV": { + "balance": "2772.812181493", + "bytecode": [], + "datastore": [] + }, + "AU15tYzNehYF9ZncTXQ1RX4QZZ5GBWPzQwZDpPQQjXCFFt2cegL7": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU15thvWKMxY2wYuWkwR5fTMbWwuFDTk8hzXqRXy9HyLnh9Yvp1s": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU15uYHaspNfFHQai2geZwSGrJMZoPduc7omw8Uy6MKVjJyEEJka": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU15uhtpumPU7QjwbqubfuuU1wJqADd1gcr1SZJ81YgtX8nuYjYo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15uurvenyKpXUwwWTRVydn3afZk1mMR8DSkcT9eDTSFfwUv5y9": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU15uvytvHzWY684zGMFyA8MP1dsJ4RrNSNCXUQ4f1RboqRw5yiA": { + "balance": "1319.010114112", + "bytecode": [], + "datastore": [] + }, + "AU15uxM3JrpNyh655pphjRPZ5yy9H3KMVyvsJUWt61a4NqKgFp19": { + "balance": "180.524596960", + "bytecode": [], + "datastore": [] + }, + "AU15v8R656JU3pbLVUEuRXTjUW5dgDsK9U7Vc4AU4NfYayz855cT": { + "balance": "1384.443866267", + "bytecode": [], + "datastore": [] + }, + "AU15vprjffjHwxUQMyncj1BPxbWRJbAVhoEgRXb6urfkBhbeLbKh": { + "balance": "4970.445550990", + "bytecode": [], + "datastore": [] + }, + "AU15w9N4YBRoytmjvwtkj4fri8r55dn6aNiJnr8r6eRSqRmh36Q2": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU15wrBBQ2DRy1Kiatbnb6JtEChmP1YsFoa4AMj8dLNWwUSyUbiN": { + "balance": "3934.887869768", + "bytecode": [], + "datastore": [] + }, + "AU15wwBRNW8UHvuoq7Sk2j8pnGok2JpWnDjT3Cu6XfnNwGdBhEJb": { + "balance": "825.377986716", + "bytecode": [], + "datastore": [] + }, + "AU15wyH2oV8YxDvVG5HDVMiEbzUWKF16te9AatNvaeU6jHQL247h": { + "balance": "70.957095710", + "bytecode": [], + "datastore": [] + }, + "AU15x3w6L29btjYoJ8NyxS7aHGUKqPLxBG1hg8297pdy5vxD2zxp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU15xKtBq6m5gyoG4uoEGpFLJEu3c9gfwKt3G6UDyen8SUxwsFZ3": { + "balance": "3348.344915849", + "bytecode": [], + "datastore": [] + }, + "AU15xZBfNGBRe1iPsLK15Vq7QmWMPkSj6hgneRnVDtNxPK1tJMXu": { + "balance": "4235.930728614", + "bytecode": [], + "datastore": [] + }, + "AU15xnQnRLQQn7krXxagfZ5K2ywGXcGtrXaPf6Sv4uQhHfysAT74": { + "balance": "1394.396810323", + "bytecode": [], + "datastore": [] + }, + "AU15yjYnQog31Tc2nGA3VnmNRYogEPCVmnXcntKf9em1pVipqa45": { + "balance": "5308.802437393", + "bytecode": [], + "datastore": [] + }, + "AU15yuVR1gh3MdSzp3KqR98FCVfaP6PkfvweBuCey7RFbwifV4PF": { + "balance": "2992.114213701", + "bytecode": [], + "datastore": [] + }, + "AU15yvV9xVpj9LCV2V51RQGFrgkPDejPpkqX1MLycmahMuzazBj9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU15yzHUaze6orBgwRefGyhPEqVJjiGo7jgiCYGgATAcCsvXpud6": { + "balance": "5506.094896552", + "bytecode": [], + "datastore": [] + }, + "AU15zF6R6G6dXbTh7TYRL752fngjQWJkiNYdSjr7vm1ts1c4vaJR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU15zHE2HwMDNAXNSST46FY78nthFF1RaKg6PHEuKYcYJVVWrZvu": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU15zYtHeBEBJmArTM2xw2a17ShKG6mmvxdpwhT5niRQR68wrjjN": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU15zr31QEBkGCKapqx8EVCqShNSuAKiCYaREX9kTr2dHZg7QehB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU161EN9qusdgvGh6YenfP7GpttqyvmWMAgakFmvThNzoHej1LBf": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU161TwmZq8ERSZF6tBLApWHCaBmQ1ZCQFPSCiKuetThKbnvFBdT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU161fLkokX2RwRc5FzPo3mhbknSwQrMjjTa8rtBAPUv6Y8rgXap": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1623PkyF783rouYtxhNkbbQ4GQJJUdLgM99nsHuyzckipGcmR9": { + "balance": "1201.198521599", + "bytecode": [], + "datastore": [] + }, + "AU162AqYV4ZCkWAyoqAu7UX7wZFiFSB6KUAGf6ReSzyBdXGckyQQ": { + "balance": "547.852108934", + "bytecode": [], + "datastore": [] + }, + "AU1634Si2js2wdd4qD1RmvSDREzqCW8u68ShKgraMrbkDbJWc1rj": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU163KYBwKJDSUD2892qFrnD1kRo1R6wLknVoJyVqhkawr3ajyyX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU163LpD9HDNKbx4gMtdPgaFJxgtRiNumaDnWJd3JeaMWS4Vz3Xg": { + "balance": "1123.681536695", + "bytecode": [], + "datastore": [] + }, + "AU163edBnwp9yzUXoZZjLMiZSuCbDt3CUp1GPo4QH4w2zhfE7PJf": { + "balance": "3846.206389609", + "bytecode": [], + "datastore": [] + }, + "AU163nWdiEGkVvrN2t62kNNApwHHFqR3PA4tuGeipProh2h7HHgQ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU163w3mJSDANoanDuDifnsexnYQRjfmLAciQrekxsziRPJTuuvw": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1648zTKeFVubEiVJHD5VPm6hDzyLr5XueFVjzrrReFH9DLTHGM": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU16494UZZWg5MVzTSa7B7Qvg6pp4DEEfpaJxFz7zNanTjm1NyeF": { + "balance": "827.065975245", + "bytecode": [], + "datastore": [] + }, + "AU164DVaUydLebkQUHCuZP25bmakrTTGV73SqWHp565ejFBcNJeF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU164UVcwfg5yDZzQhZ3cR5Yw7XW38Rszv19JyyACVgxC5X1HzBt": { + "balance": "2900.670165944", + "bytecode": [], + "datastore": [] + }, + "AU164ijPS248ToCUNeno89u3gjttuUpvSNJDBYrWn51dPrd5u6gS": { + "balance": "3304.565981218", + "bytecode": [], + "datastore": [] + }, + "AU164tk8P8icn2kv7sutNQ42ui7cDm279zC9jpdZFrYtrLZQJctM": { + "balance": "1370.143869579", + "bytecode": [], + "datastore": [] + }, + "AU165J33G5FBRDu2k2YUbuhFdnEusULqj47WfrkeiMW8WRR8wErM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU165Yex2Y9Ejk91gydC25aUaxp65kL2WCk5CTYtnLyxdu8xwNPR": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU165ik1tA6BJmZjWcKPGk8UmjV5Bm71CFyVvzAq2X2qXqKhDumH": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU165rW5K7BwnZKu1ATQLh7NVzhyZkZgB4rmA6JyskGVXWWKboyW": { + "balance": "162.284258737", + "bytecode": [], + "datastore": [] + }, + "AU1663697ezTEWY7neMg2JL7vy9RYRP18rNAmysmDCRpCk2u4pgM": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU166EmWaXLQt9hAeAVBnFvZrvQt3CmPJC8iiKDdDJJmd1geNoQf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU166Nrdh4jYrwZBHiEih1fn9zxb1nj1661PKDYEd21CdxpnESjx": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU166QUzEmeTzX7N5ujeCF8pa2DQVKs2khHPt7BJn29adFRXg5H5": { + "balance": "8.838196984", + "bytecode": [], + "datastore": [] + }, + "AU166jeBSHPNupw23WRax5Xo5fKaCnZhuU6VFYaGq1yZPqH4rtb7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU167GDZCb6EFcJQr2vARGkpF2dcx2hkUgCs8X4M5MfFJoVBLaSp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU167HnVjUwJCEkW5ZX27NHjBTLf8jMbqS77f5UxgCrwJ77MQ1bY": { + "balance": "4650.262626216", + "bytecode": [], + "datastore": [] + }, + "AU167PsfmJbqr3MCsAt6H9TLrBNsFJGsUN2Q7fd94TM9QKRqNSwd": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU167QGLaQDkvCema378ub2rHbaxDh4CbmDCGKxxz4bTp46mwEve": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU167n4jAQmzsgc7jsSWaRyrSAffYi6zUv4Dvf2rmZUZRaQ7BhTk": { + "balance": "63.019532311", + "bytecode": [], + "datastore": [] + }, + "AU167voU1yYRvWq7Pn19Te2qPmp1gsxRCiYHgZ3xRBYNutTERtCn": { + "balance": "1441.092427278", + "bytecode": [], + "datastore": [] + }, + "AU1682EFvQqDR6UyKMqbw3PcL45pr3h418c2SQhWfGnGACEy6Lno": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU168Q1hLEvAKTEaydApLBy7nBSS17CZJmX1eex9uqrrwonrJWq3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU168ZpDJueVH2ozp65nM4CzkRvJJwV7J2isf6NsXotYkxpykd7L": { + "balance": "2853.629638723", + "bytecode": [], + "datastore": [] + }, + "AU169BG8dwuicskw4D97CzPGGzHyPEWq9YAJqxUQPajE93rgZX5x": { + "balance": "3803.275846240", + "bytecode": [], + "datastore": [] + }, + "AU169E1WjeJq6kFkopwcyGfB6zjCWAJX35EnerWgrBhJprP7qMQ4": { + "balance": "3579.063994519", + "bytecode": [], + "datastore": [] + }, + "AU169FpdyczFg12naQQwpxQQ5xg9dK43xwvFrSXjDLAZSAcjjYTh": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU169NSZVXn7RcJoZ2c93A6MC87LPtW4GYsVernXK3MUFXWagBgp": { + "balance": "2662.405691464", + "bytecode": [], + "datastore": [] + }, + "AU169kupJR2MaRTmLJT48rseRLWzm4vf7mL9hg39LZYCmNvQL4hM": { + "balance": "870.659443068", + "bytecode": [], + "datastore": [] + }, + "AU16AxnPr2DcE1H38MarJ4c42weqptJr2MuCsSkH6FRq6Wa7yGXe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16BiPPdR7w8U5XSaCXCiACKW2U1ZzqBhJY5iWBbdQf5jiETfSM": { + "balance": "791.906374824", + "bytecode": [], + "datastore": [] + }, + "AU16BsWvYXHtSvUCrsZ8UsrdvCD69n2hNyZNaSTamFrsXxUWNVHo": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU16Byb5P18z8Rq5ookDAK487QduT1YZhWqvrRJJBbZRji6exhdA": { + "balance": "1897.504131706", + "bytecode": [], + "datastore": [] + }, + "AU16C6zVoBZLB9fpWWHP3AyPLDrpd95js81Z1CqCTVeHKxST8UrP": { + "balance": "1168.787178290", + "bytecode": [], + "datastore": [] + }, + "AU16C8md6nAtXPKfRUTgrxkgJDbuJC6LmvUm39X5zUoExquzzZrg": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU16CG7ZMCziJ1c4rY6tWT1t4tdJ3WrsmXpRJiEKpbcqJvb3LK1V": { + "balance": "1393.509763972", + "bytecode": [], + "datastore": [] + }, + "AU16Cmfc2LNSR7C5zmoH17Ef5KmqxDd55eCikctsqripLrDNKcfN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16Cuzd54kucrE2Ka5HReKwvTj64qFeMbVnmxsgbdEGToLvq1za": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU16CyhxekETFtWDCPaGfhQ9jPqi1kJPqUtrJRfNVzR9Ec8KuXbd": { + "balance": "1152.800455254", + "bytecode": [], + "datastore": [] + }, + "AU16DjbzVQjznjewyyikge8k3249LA8HcY72qqQuHZ2yx89LA1fB": { + "balance": "5093.568864661", + "bytecode": [], + "datastore": [] + }, + "AU16DjjXQu9t54qbbrTtF39dUr72s3g9EfPAs3TpiJRfdq242n8G": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU16Dpih6zmkw1NV6F3gR9mJ6bT2TGgWUTZxZYNVjs7ngqCMDzWF": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU16DvTGsBpr9nub6R16sJsE82jS1J5ZYmX5u58pQXAdf4pX1uBz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16EWPdwgsQDLweUNKWrtiLdAmscTiAJnVrtgPNji6GM7YF2vkb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU16EfX2GFxCDyMeF8SctdE2sieP4xP26XtLxCAi4xou5hyvFLi5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16FDozwNShm4aEf2FBVkyCXdXDrvDXtpL3YNgLGRpAZjfmoDM1": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU16FNaMUHgDGneJpAVx9bTMqiTtreDgC1YvrNP2MfCXxTRwGSqs": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU16FrthmVGgH4CcnBKRqpGwnKMg9SBcUmCHDJgqKPy2YST8gb8f": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU16GH3kShkM546cCn15wPHxyngXjvzWns2HMrtciBZy6FU45oND": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16GV3vmFErcPbur5VJGJmR4TRSkRKzxJj6c5BVqWG8CrRj7zdr": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU16GjzyK94H4SAJcg4sWfBgBBzfRv9TvzWwQz4J6PALbNrqhMTQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16HJndDv2LaU2YFRmfxst3Z8VoaXaBSXKXLnxjMbu9sQpgAkbx": { + "balance": "1642.817191922", + "bytecode": [], + "datastore": [] + }, + "AU16HKTcyVLtKq3pLccMqbVparJghicWow9Go5UGtHaKay4sqWDs": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU16HUvFaZF16Qbg8UdGeiMxy6tbBhnD2NyQGHAjDxRTfoiy4NBf": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU16HkoiC9GgDa4VugSaP8hccQdfHTAaAomEf1mTgQJQkvn5WDyD": { + "balance": "1072.389518311", + "bytecode": [], + "datastore": [] + }, + "AU16JBj64EJccGzVz4qsE59cMCzEubZb4wDR4S1XthuGE4QmDgc3": { + "balance": "1673.837573843", + "bytecode": [], + "datastore": [] + }, + "AU16JCKtx9hjLYG9jVPiQmwRJMsbrd4akXFiRcB2oxJGMRA2dqKd": { + "balance": "2822.231304046", + "bytecode": [], + "datastore": [] + }, + "AU16JExFs3xNpJonkpEY9bD12HWaZU43YXF2Keh6RtNeBjFXKyyL": { + "balance": "3845.661338192", + "bytecode": [], + "datastore": [] + }, + "AU16JHQZ7A4FAVrWtFLBw8mRi3MacDxEYTcKRF7VbHK8EJmPkVmv": { + "balance": "31.017036292", + "bytecode": [], + "datastore": [] + }, + "AU16JSTcXJvEwpEihhpeGneWbsCUC2XSeNmhn6N6BMxpzzQ5Mn9c": { + "balance": "200.016153103", + "bytecode": [], + "datastore": [] + }, + "AU16JhadPo1nv5Cej4UeSP3PjL1ghaTydHku3bLPhMst8zEGmeCy": { + "balance": "1007.779424043", + "bytecode": [], + "datastore": [] + }, + "AU16Jt38mdRmo8BMGga5Z8r5Kvt6Ue9j4iUtoSWb5oTv7W7o4y6T": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16KCoPAxMUJpNLT9HDPs2VdS4oNgmhSwJyAh3p91VVKA13FRwf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU16KK53qQtwbRYWqyWTh4Bje5dXxsWwS3qJ8kCqEDFLJ2ZpPJfP": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU16KqZohEAN6F9snPRx3236tE7Af3LCtZ5fnfYFDK2EQzCPR6i7": { + "balance": "3950.872061308", + "bytecode": [], + "datastore": [] + }, + "AU16KzHJCiQb5RJk7T3xqnH5N8g4hqwPnzrXCCcmVgGhBbV4iGmN": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU16L26s1xucEodrCKzUsBLzymp5EtLafnDNsA2XV7K8n18aQttY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16LGt44ESCDxwyLccDTTG8NcNFozACH3dhfKhv6rqdEBqW3uvn": { + "balance": "147.644836448", + "bytecode": [], + "datastore": [] + }, + "AU16Lbc1ChUvJXtNkzS4qcY3gNgXaZpVA5JkFos2TadL16APZJyS": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU16LgtinKc5dhJpU7p481CMaesPwRjxMXryGyv8uhnoEZDH1mPY": { + "balance": "2393.898011737", + "bytecode": [], + "datastore": [] + }, + "AU16LjX3MjxGXV1BkDQix6KrdmyUdVAwAesNmfobbvxyKPniRfzz": { + "balance": "2584.160222053", + "bytecode": [], + "datastore": [] + }, + "AU16LwDzEhFC5kdfe5bv6WNLiibqwYTJZn1F4ZU2XmzD2g4JPM55": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU16M4hP2bt1Ln6X7DSRG465givrqq8BJsY263aHkPMbx7pQcxXB": { + "balance": "3507.880223596", + "bytecode": [], + "datastore": [] + }, + "AU16MUtChKoBk2Uh6HhgwGb3LgGNuRt68sS6nxboqBsxSbXFe9Qq": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU16NCQMxhMunMoAJNJpAHNdCN9xirLn7C4LtqapkC5pSHA2VmWW": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU16NZp5TCzktS3djsZov6BnwixQfSjyfTktkKxAa5jd7tscMpv2": { + "balance": "1355.302621055", + "bytecode": [], + "datastore": [] + }, + "AU16Na8kYHXeoxYv5Dqiv7j38m6HrudUeZADkvBeKYWmXBKPbWwD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16Nc7BrTStn715V1BpsFgXhUamv5NmQUj5c3hha8MYhkz8BCri": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU16NeAJDM94cRLRrFrY22TnDqDCZAYMtcdd5boWV1DHH2R1czXQ": { + "balance": "4053.497813590", + "bytecode": [], + "datastore": [] + }, + "AU16PEjj4LhFE42EjuxWkdZiEGwpphbZqCJUvbFFLQ8AxfHeYp5q": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16PTe7js1MiDftcL3m9m4xepDgV8o9Pnx4AcYj25cQLtY5bsDZ": { + "balance": "2350.708421393", + "bytecode": [], + "datastore": [] + }, + "AU16PW3Pj3jQRN1NLt4NR7URBa8srX5jo4kV3hrW1hvDrjcAHrpw": { + "balance": "265.973090438", + "bytecode": [], + "datastore": [] + }, + "AU16PWzkuyn2hK5AgsavDeq1NakJQLFsqM1QucowUGA9nztBZ6ic": { + "balance": "2038.707417042", + "bytecode": [], + "datastore": [] + }, + "AU16PbiYMFt1paLKX15jRSvSdME5Q21fWmvqB3bRbTkmMvn8hrts": { + "balance": "3018.369243122", + "bytecode": [], + "datastore": [] + }, + "AU16PgfCCnGvUomKCA4Ed6DuxshQDBNPPWLxdDm6WbdDnLsmekVH": { + "balance": "61662.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16Q41B2o1yYnwQJ6F8tK4J2A1NfX6pSC68H9JaniZoGnWCLwC3": { + "balance": "977.347962215", + "bytecode": [], + "datastore": [] + }, + "AU16QJwiyrUMR4HAqeABQau4zYRGqFxz8eQMK7eikxdZNWCrziuE": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU16QV8xMWVP6zsYwrL3NZ6qSF89T5hvWjJR6ewgJeyY3QbaSQX1": { + "balance": "1287.973738370", + "bytecode": [], + "datastore": [] + }, + "AU16Qd5QRi7BokxBq6GN8W6uyM8injsnf6BQFbrGBbmxnxfMpkk6": { + "balance": "4505.708423484", + "bytecode": [], + "datastore": [] + }, + "AU16QdiuP173mJTADyimNV84CRLmcerpSFGPDB1PKPj9fZYTrLqb": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU16QskknbfJmjpr7EjFXxWMEVUWGUHAQTwv9aj4fAHknfn36tKV": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU16RCMd7cr1QWRgcz7duK3jJeXu7qfv1Pjqnfz7q1SQbZHjZ4MT": { + "balance": "728.857089077", + "bytecode": [], + "datastore": [] + }, + "AU16RKP6b9C8SLGMBxUNPdTngmYjXKGKCfRQEVPqffx828ryz8dw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16RPopE7T1nMwutyV4zhLuSp1onfMDhArvQvmTQi4q9J4kaTgP": { + "balance": "1010.392342247", + "bytecode": [], + "datastore": [] + }, + "AU16Ra8JyLvhjMHdtgMVKPc8gjKQNBv8KeQGbMxN4rwLEqE2NK5t": { + "balance": "1172.952649600", + "bytecode": [], + "datastore": [] + }, + "AU16Rg3YxnRtM2vtm2QUPZrzwxqMvb1oA3Cp2LDSW7eM99qMeExj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16Rsrn1ga5zxDod2dsn6c5u9k3V8PyjViHhFY8NurGQCtaVU6D": { + "balance": "166.879743679", + "bytecode": [], + "datastore": [] + }, + "AU16S2WfSi4UsRhA3jEYP3esSaMSaadMfxpvyywdQHxtgyV3kaNH": { + "balance": "141.818275802", + "bytecode": [], + "datastore": [] + }, + "AU16S4EZDEwa4CkXVR2Vhq5s1ixT8wHztwwtepjXWdRotsjsBFj2": { + "balance": "625.946474165", + "bytecode": [], + "datastore": [] + }, + "AU16SC7WbjKn3Qz6Gm3fhbYYiqdjnySxyz3V3MFFqVkAHJL1wpnR": { + "balance": "2073.003607924", + "bytecode": [], + "datastore": [] + }, + "AU16SPLMqvxyEVL5HqpUthppRGbwxEtjLYvxvzSQYNRfVmWGSPQ9": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU16T2EuR8PEeEKbHnPZ9L1KAkjk4eeE5CCZjBqfCYTHnEWedJGM": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU16T7BSZrdCZ9GfhHFjqryCR3qkx5c89BQ4dhudTCByfWoanfCw": { + "balance": "3386.193966043", + "bytecode": [], + "datastore": [] + }, + "AU16UDMXZ9svDcwjhz3k87SxdyEwWXhN61Lw6YwyaFbfKGeEEd9A": { + "balance": "1648.165822610", + "bytecode": [], + "datastore": [] + }, + "AU16UU798fh2NC7VK7JMA9TajjEtYSuhScXvFfv1nYv92WvMTMdN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU16UaeE3JV1Tdf2REjCpPU3SJmxJEF4YPJ3ZpVhyyoTbJgU65Gp": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU16Uhvahg7tbogVCxd9Y3RUKsDrYCo6kZtVL2uyU6abaFsuDEut": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU16Uq8oUYY4u8ebzxyHGDCVfSLbRvyHxxDgLxWymY5q8zLRC4ww": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU16VFpbGiMTuudKTCCW8V1k8cUYtzYvAYXzGsuEgMpngS3bjHW5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU16VaUKS6BarUYES5Kr38z8E2BMJhviwxpc6CNVNmdFJwtDYQ22": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU16VyBL36uh9fPysZsU34a4uS8uWTVScUjMGJX4BSNjst9jYzaX": { + "balance": "91.394718528", + "bytecode": [], + "datastore": [] + }, + "AU16WfkgU6FtF7AFRnMrkCvaz4dhCuK263d91xNRJbZWDMVQz7H8": { + "balance": "2720.544616642", + "bytecode": [], + "datastore": [] + }, + "AU16WsP7qSTNeekvLjjd6kWK1B4wRo92YpcLzMf5cEaN2xRcuJFo": { + "balance": "1905.200975322", + "bytecode": [], + "datastore": [] + }, + "AU16WyqxZfrN8KUv98kLvJ8yVCAxhAycyV9j83wARmSxgrb3q5X9": { + "balance": "3283.966967219", + "bytecode": [], + "datastore": [] + }, + "AU16WzVN3aVYk7QBzvjjyxdt1WbjwBw7jRwKbcEmFb5Daaq7JbMv": { + "balance": "2793.677132776", + "bytecode": [], + "datastore": [] + }, + "AU16XAytmHfjGdcRFSA2JWF51gX5s6NYHNbdEAYkH7fciEBsiMhy": { + "balance": "244.549914464", + "bytecode": [], + "datastore": [] + }, + "AU16XT3ef7x7gvDSjB9uD79dSDRrYGottfTXNfWycJyT9dAaSmCN": { + "balance": "937.539324789", + "bytecode": [], + "datastore": [] + }, + "AU16XvKoTzAxCmeR1Vd5nPQq4EbhuubZ1TgHu6mWNENaZh1H3Uaz": { + "balance": "86.877182196", + "bytecode": [], + "datastore": [] + }, + "AU16Y2ZXKx1FAUYSwz8w17rc6ALtV8PaEoS8BEC6GLux8Aeffwvk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16YMnTjdiUGdBoiCFZnLUFm4GKXxdGB9DrNGxmxFHAxjrFmcq1": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16YPw5f45wzJKR9uS1my9vGiLQrLYUKwuS5b8nSYXW6eR5SdRX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16YooeYXhWtcw7ue8w4TnsMNp8T814cYVDCZqKcRBG1ojm4VDo": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU16YrjP2pz2cXs4JDZSTFvV6vJZjsu8V6aisivPmY83u5zf7gmx": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU16Z3K7FfQmruDfwqKQsVp6iZTWnEeG4j93qxyphW52PShsfb3k": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU16Zd2X3oVx79xSs2wvfMZnEXMxC9bfXra769bhCgVQmTz8mLGd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16ZeqRjuCm4j4eudFEDo2h8yDyVgc8gdXcAjhVPWVdCGSiYoJN": { + "balance": "68.877233355", + "bytecode": [], + "datastore": [] + }, + "AU16ZgT5DhuD5w1aSb3vMa2qmajsJwp6hdCgfKjCqRPZ5zfSnUCV": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU16Zmcxm3Ve6ftMzDkA2zBUUcbfTvtSQFRxFaveYhkpKVENyuhP": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU16Zx5U62NKS4ngKNgfSAm5KsAVGZvmYBa3tFyVXDyBr2hw8Lim": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU16b6utACqFEuyz37QXZtqptLsFgJs6ta4JMLX2ywYwgVZtfwFs": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU16bXPfreTSzg7kHiSXweQzJErYrrwXSBQBor4tYByo8rrDDumN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16baojRjDv96sX5bwbqQYVxRgzjzjGYfq6xYmFrYYwqeNbWabg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16bk24yN5cieTQrHaQocHCp4rMKLx1GiLK1EeAw99vFJeGmZKb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16cXZfAZvnRf1t5FJfyUoLSCLFxaTWHguZ8D6Dsu7kcC3Wfgp5": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU16cgN3M1qnz7i2wHBkXCrrA698XzCSib5Ckoun3m7HXFVYdrW1": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU16coLSDFzQdbgd2jZAxPjMHZ6k5SLN8orvEgiegYhFb755KbRn": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU16cq45cyGbE7eoBypSG6RN3S5zVbzA5B2qJ5YozFozvPN2phjZ": { + "balance": "684.019265268", + "bytecode": [], + "datastore": [] + }, + "AU16d5xHDGNNAaaqvMxbiXBGQsBoJy3rfKuyCMYvgbnsuMMREiTU": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU16dRFAAUk9nxPZWdjhoRbMVK3WvHLMGBVuAgDr2pW4LQzqoDS1": { + "balance": "1399.627645376", + "bytecode": [], + "datastore": [] + }, + "AU16dZkFvpw3Tyzo2nmuCrL5U7T39jCZYjw6YphaYa8m6Vwu1YX7": { + "balance": "4802.955072952", + "bytecode": [], + "datastore": [] + }, + "AU16eDpBAswNPC6eSEiKLnrNARqxV4qrQ8QWor6wfC1SLagH6Mke": { + "balance": "2975.207855561", + "bytecode": [], + "datastore": [] + }, + "AU16eUBzdm63ib4JnaEDHuSVTZruPMLf7m51KHNtxWbZdRCCBsgv": { + "balance": "862.649607714", + "bytecode": [], + "datastore": [] + }, + "AU16eXZf7wUE7urhWKHC8aBGFSSZWND5QWkDe5uMVmdHVfQEVmLf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16eZRgbYYnhnrYeoA3omjHS6kL3z4gp7SuREcn2zYhJR57oZTF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU16emrcT3BgyJD2c5GP6g6aetU49ZKwoVh7gYdUbADHasSqXTJT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16f1xtPwLuAqfQuCNTonjxanCWrs4gionRS69bVha9n6DxiCEb": { + "balance": "3995.711723538", + "bytecode": [], + "datastore": [] + }, + "AU16fvJJUMfnox32zkVGnZzp9JKsit3c7DcTcTGQemaErDJocXNd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16gSygfp4rXPEN81Q9PMTpk7YNcQbrxKgZAhzqTSNN6rVtEX4w": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU16h8FLw7UvKhiEYuXtpKUr3aKEQWU2J5GT4CBQDTa1K7zpNKnG": { + "balance": "2373.919437418", + "bytecode": [], + "datastore": [] + }, + "AU16hHiKPF2vu25KRRW16uwxEwY7qy9fwTFCyZv4pr58racwty1w": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU16hX41q13xb1DADx3kh535vqBCbifNmok3b5gesPZmuvDkthev": { + "balance": "5502.728018333", + "bytecode": [], + "datastore": [] + }, + "AU16iDMsRZZzkKBGWJS5dx4KwFB1nt3un97L4CM3faMLiEB4358y": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU16ib3sxWVKCZGGoMytYyXJLd6Aqrct14fAtYXY5FmxK9NUPYdp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU16j4dfbLkRkqaLFTo98Sz8jLvNhdMKd9ag3WbTG6L7yWfWiPZV": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU16jHWKPmzVoUK2m7t5QEu2oYScnSM3mtFsPFEaLrLz8R4U1atW": { + "balance": "2584.326580924", + "bytecode": [], + "datastore": [] + }, + "AU16jK1wrBQV4af6m9W2pbgMYaVERT2qpHZfpNZFV9oxijxMSwu8": { + "balance": "2116.878530832", + "bytecode": [], + "datastore": [] + }, + "AU16jQDYnHTv6t28MQk8o4F4KN6fUPok5xnv1uVFUJbAXviBg1zk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU16jV93FdE11mpNMRorbbpAEUWqWPr9xhvvFtUxPmCuxuCXCqQ9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16ja4YKpKUrUpDWZPpbHUUwSbuQhTbvCFiB8fjCbk7qx1TXMyM": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU16jkJdhCKtxTrNL9YNup1LXobRhxiTsRu3nGYqaoQe4MNyazot": { + "balance": "3787.082390985", + "bytecode": [], + "datastore": [] + }, + "AU16jq59jqG423NqiwUoiY7Qr23CE8XWnG9xmySf7g3MbUY1ZCuA": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU16kGFkKgci6s4AnmCLLnmAXgDcpJTerpPzKQgrthHySHEQAv8L": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU16kiyszp8gzgaYdQ4k3jUmk4wiupFsmzuDcjCNKMHKk7kKgfEe": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU16kwXkWDps8PPP1rCgcjwj6od9WP2fq6u8UEWo58drKvvr7HCd": { + "balance": "1166.612289657", + "bytecode": [], + "datastore": [] + }, + "AU16mEoZytpFZKvVjEP4rkH898o9cbwYjKQp48PNWGK6QMPPeSmJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU16mJN95V3Gi52zycFahrExzN9Y6STqTbNZNB3mZ2zNaVQD3XHd": { + "balance": "1434.761772691", + "bytecode": [], + "datastore": [] + }, + "AU16mX6Q9DSfwbAmVh5oDpgw4mXv8U6T4Ggcw865NYj7NxAn4CjC": { + "balance": "921.426871810", + "bytecode": [], + "datastore": [] + }, + "AU16mb41ikuu8aL9B69uSVHCaYUvTkT7WqTwDRbFY3YcAcRkDXv5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU16mwn55YL5ftja2yrXMoEVQ49YpxjPopSawgixHNLdNzcHiug7": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU16n426GADySiXqeFMN76GniXmb1fqbhjxQbjbgum1NuCemdRYc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU16nRxgnTBKJ2j8wBw4aNn8QvCpzgc3B1BiJ84SBGEuxm9c3qbC": { + "balance": "2848.330710239", + "bytecode": [], + "datastore": [] + }, + "AU16nXSXm3FkWqWgzbMGudUpXp5y5NsFpcicxxzGG7PUyysL25Cf": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU16nXhvfNYvgoStyk9DUP2zARiFejZhQdGmTZQXK648opYMNpT4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU16njQkmskuSQuaMEA6pehYXcHcJ8Ufj9gXpFwWFDRdLbm8UCcV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16ntVyss1Ae7zDEjWHa1RWEYHSXvfYGcY9dfb8DYPuPjTN6kKL": { + "balance": "593.875264237", + "bytecode": [], + "datastore": [] + }, + "AU16oQXVCxB2wjVarmbMizffYXanMQWrrcybCQ9V8s9xvfqKc6kc": { + "balance": "2031.970941015", + "bytecode": [], + "datastore": [] + }, + "AU16oe2b8GZ6Z3QorK5y7sBnpCjMBVxtiUCyLoYfhZhM3hfZKyfn": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU16osFqaYjgoVuEuMapoajS6HoXcny1t2R6TTh5SatHSsK3cbRn": { + "balance": "3619.408236134", + "bytecode": [], + "datastore": [] + }, + "AU16oxdkv9VupsAsUXq8FD8DKBi7NPQnDkMtwTSe3bGzHwEvox7V": { + "balance": "2812.555334618", + "bytecode": [], + "datastore": [] + }, + "AU16p8W7Fx9LyG6BMKjP7KA78qXkx5cAtKR2gRHf4naeRFrNVWZg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16pWva3NRPR97HUcKdBTUDUj6ZsMDnQWuPd6P88YGAUgps8NnG": { + "balance": "974.942966973", + "bytecode": [], + "datastore": [] + }, + "AU16pXbDzMziHz6FYohn8jSHb2sqUEzuedv1GLNCdgmY6pXThqXu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16pjantEfRQtQa1CwTQv9uupBDbwrYGJjtHQorwzJ4hbiFMs8i": { + "balance": "1556.839637595", + "bytecode": [], + "datastore": [] + }, + "AU16pqF7MPHf7zicEiZokVVCGC6zxcndqUNFCp1HS39RzWDcHX89": { + "balance": "1031.926401783", + "bytecode": [], + "datastore": [] + }, + "AU16q1jhTLwSnZ8tR23UM95bN2JALP1DKaNwuMx6LBDojjSQfiCz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16q4dgs8ffFPTLvkRWbFuuby3XyamhHW9f83qW9jTn8K7zUZww": { + "balance": "1646.989275562", + "bytecode": [], + "datastore": [] + }, + "AU16qJHUn2sd28ua7jaPT2Zc42M6hdYUjd7hip5uFhfeAU7Mr9xM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16qm6QDrmbkomrB84Luyfp7wZWKKGbDLQFyxkro6nyFSZd3uJh": { + "balance": "843.560785287", + "bytecode": [], + "datastore": [] + }, + "AU16r5xNwpqsTuc29kvk35QkZ1UABMffPq85ciMvLdixQJDg55dh": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU16rRDuVTzeCNAsbiHbh7sA5sV5zLpSFfJ94nHKPPkzLmMXrZaz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU16rab1S1mMfkooLU89fgNQjV3bWhhkZM9s5GzPLEJhuo6Bcn2X": { + "balance": "1077.508606626", + "bytecode": [], + "datastore": [] + }, + "AU16rdqRHvgUXLyNuc85dnayXTeTc73d3hpwAXqdxssc8nNrXhEK": { + "balance": "5885.073421050", + "bytecode": [], + "datastore": [] + }, + "AU16rygnyMn2KK2BeL3QCUULWeQ833o5E81cBWTmTjJ34HBPdsvD": { + "balance": "1899.338000990", + "bytecode": [], + "datastore": [] + }, + "AU16snYh98Yjk52VWL1NADiMzhhkkcg9t9ES8Yg63e2M1BFv5Q83": { + "balance": "4126.044631223", + "bytecode": [], + "datastore": [] + }, + "AU16spP1XmZ4L7qvwbEZjTv9XDHmv5MSBTSN4NgSXsCVkmiaFEuG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16sqaahpm5fjLAg6mgD9zAzLQK9hL2SLWx3C9eHDzU8XNbTS8Y": { + "balance": "888.100851346", + "bytecode": [], + "datastore": [] + }, + "AU16tBejfmwnDxpuEeZaa9PghxAX3W95g5uWg8PhtJfizq66W9tx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16tVh527HeNP9jfMNzHvWspjfzF6S84E5ybagiWkgpE5BCbzkz": { + "balance": "567.941489235", + "bytecode": [], + "datastore": [] + }, + "AU16tdNZKzeV7hK8exPGGJWj3ngwmdye7QsvnFaFfodyxAYndLkt": { + "balance": "5689.959146116", + "bytecode": [], + "datastore": [] + }, + "AU16uA2rpTCvbyMUTUC4MDTWMBPRQZUebbGhBT7tDMV8bYE6kjEg": { + "balance": "1384.936084163", + "bytecode": [], + "datastore": [] + }, + "AU16uiaC1mJik5oWgf6WwAKEAsLCvo7scbffBz333v6mTGHhQYFP": { + "balance": "3717.581637498", + "bytecode": [], + "datastore": [] + }, + "AU16v7uayGHz31LgJqeMNpmYwMTyXjhbdZu96W7JEvyKSgTJPHM5": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU16vNwYm95JriAvjo4JjbRYPWKducBF9VSW7suZvdhScm7mZLd1": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU16vZo8jqGz3VweSUYaai1VU8LMhTMc9FkQSR7QBGrxkKmt1AE1": { + "balance": "697.437254342", + "bytecode": [], + "datastore": [] + }, + "AU16w1W5sgJx2Gu6i7y4g3yTTmyMAirx42UmJMmyBNkxCo1d4otK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16w1ZwEuQojUadekJDXtwwQfpPkdXHeEy4dAgg74hvCDhynCAo": { + "balance": "888.055637740", + "bytecode": [], + "datastore": [] + }, + "AU16wCnQpootptZYMsL3WPUg18bHhUbpW8nLJuAMEhM9Dzj4f5Qd": { + "balance": "1815.179757071", + "bytecode": [], + "datastore": [] + }, + "AU16wRnbyJaTkFinkE7Bgs1dT14sLYb8WaxiEYgTmGoQ5ityjp8p": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU16x5wCbyDaDr6JTEok2Q64HiUefUh2hLazhiX2ELJtSArDMuSi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU16x9LCBf3PMw5rCZsEszQ1hhfdJciZCEpLwY1JmWJXNeGNDYnT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16xD6AujuJJguoqR4BQAmTzZp2wQE8F4DxUdfyFCaqpuh4grGK": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU16xfhLJ7j581pVjhJCeZRLw8AdmsjSJ3wcTH8dBjh6c1yu2EVi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU16xqwdYE5435hzaq4kzjnGtxsZhQFk4Ds4ozaKnZrk3Nzz1Zpd": { + "balance": "3572.010651781", + "bytecode": [], + "datastore": [] + }, + "AU16ybi58gJGo5SZL3ZDbZ8rpT6ZszpYHKp9PG3y16cacjb8CgnJ": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU16ybzdeTe3usR7rsQAjh2DTKc31f7G3yJtCx7RbwkTJ25QMYa2": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU16zFEE7bfodZkGCqkGRPTu4riWsFYG82ZMbwjCBCLmBnTt6hj5": { + "balance": "2160.797915534", + "bytecode": [], + "datastore": [] + }, + "AU16zQnkujuC5scwqzCpqfJJ5gbQC3p2uYMhWX6QQzgaWiRmRmvc": { + "balance": "1567.093302620", + "bytecode": [], + "datastore": [] + }, + "AU16zTAqSPJ3Z34zpYJSj4DH5A2Hsu7r3zqGQRnUW3gqBHEwqvWL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU16zzXcPqjaZSaWcvStftK6zxPtUdTqYvDVxUf2TuQQZv6cj6vM": { + "balance": "1051.992216405", + "bytecode": [], + "datastore": [] + }, + "AU17121ogR8Kc2VWq2kvKUTv9EA9QPPDakJ2MXw5UkWsndALuQht": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU171671r4CJozUqinoVr7MQCp53Xt5Km8Ri52vMTw5PDnGbKtNd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU171H9dfTghKVCP4RFQo2LKgd4VrHWuQeTSa6756XfYgUVFFMV6": { + "balance": "1182.161450811", + "bytecode": [], + "datastore": [] + }, + "AU171yjCgy9xwRePVwCqbCxDFHBNqBVbisVJLwkqKiPjM9ShFm4V": { + "balance": "1223.672631185", + "bytecode": [], + "datastore": [] + }, + "AU172265aJvgWtZJmZ9F3335UKN8EYM3qWWs2tvygYkJ1SZcNFwb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1729eHDabJ7eJMmg1DxWvp9NPBXetXek6QnK3PTKUGC7hJEgyU": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1731GGDmW1hdQY1KmAUsVPqYwY5KYWpEtiXD7deBFq31327EMQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU173DjVs8aKwLtLPLqQzrqxZEhMd5UcJPBbjBcSjcsAoPvJkZK7": { + "balance": "1313.721748397", + "bytecode": [], + "datastore": [] + }, + "AU173KKZudqfb9WDRBBRdWoztQnxjbrjLpuxjLdmjbABiucxRqsq": { + "balance": "1250.816501656", + "bytecode": [], + "datastore": [] + }, + "AU173zDsrmiNKpTnWUFsv3Gnbys4Dha6cjmzFSo6VPbXb4K4RBqe": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU174Ko1J65t613zcDgXw5V3G4xzEjkEixL8YSDTJ93s4HcXbT11": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1756TbQqzSJWF1SL7f1WdJAh9vxGG4JxEthjkV4tEH8ZkGMDXi": { + "balance": "2111.640837779", + "bytecode": [], + "datastore": [] + }, + "AU175pGPqgGhX58Q65UqZmr6yAroYnQN2rZLuXBQWfDUXLtb9fDa": { + "balance": "7.341545683", + "bytecode": [], + "datastore": [] + }, + "AU1761Nq2DQhj36qteSu2ztGSMZZVGcMhiBusShNbg3nG43SgLg3": { + "balance": "573.028926358", + "bytecode": [], + "datastore": [] + }, + "AU1767hfZ5Lcjou7ChkRrFFDEpBX82WyByhFPfDp1GYryXYnsxMv": { + "balance": "2807.908763040", + "bytecode": [], + "datastore": [] + }, + "AU176P8WZbFJXLBU5YaWLF7csKyFtVLqWpoEAGMowx4hY5XSpxe5": { + "balance": "203.982024609", + "bytecode": [], + "datastore": [] + }, + "AU176dw1kwvomjPsXmyZwNYzwpSnLAnUXQjyGZyByGvvLD5rLnvv": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1774C3mtgZADNqnZmskSti7DuwEj7sLQ5ygD85XAWsoiUeEYp2": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1775BzUdxRL75ryNNLtey6ckM8B8EDLgvzj8ATuE2kSR2KRZ46": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1777hJtBSL7K65kuVGxEKhtpJEYXUfD2qi7DYmps2S4X1HQVaf": { + "balance": "864.360759177", + "bytecode": [], + "datastore": [] + }, + "AU177C9FecMdDqArrpSBiRKSYECznB66y7ppoq6Tv9TWpYf6wABS": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU177FDAuj8vL92iFpoyv7huvpr1vUcgbxyZXRtujt9QQfFQjfM3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU177YfbwCM4sdSVmn9HwMsvk93DwyE2vNSEMNrV3dV2CJNYKjoR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU177b3bea2CELLCCeXQ2MBtwmpBJTxt7DvSiSSFXyc2TVjonpPG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1785wrmyWoimHyMAmbJRopFLQdbvTKbPxqZz35yDMzL7gTsaBv": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1788kkFsN2HbiE427MqAVSAB3dMkj8ADU4XwXVCj7DAJMF3Swm": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU178cWrL8Ym5VtH5bJiSvw1pUG3M9vDVyyZWuYgjBx6fvWtgFTX": { + "balance": "1398.613204347", + "bytecode": [], + "datastore": [] + }, + "AU178j8Qas9njSmP9S1TmrdndS9owoeRbSgNCFgN5sjL9HWbt5SK": { + "balance": "1811.481915619", + "bytecode": [], + "datastore": [] + }, + "AU178nWWnNpVCcUza9pQBUM4zM2zWbHvL4VmsK37PcZ4Uhc8z1Ah": { + "balance": "3358.898407000", + "bytecode": [], + "datastore": [] + }, + "AU178uvJhD2z7K4HB6UsVZn4ejurToNaqAcqH4gmhrueDvsicJ4J": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU17944PgBnkTmK1acFj29R5YsnKADSWfEYxdusdv8JCgn314pRX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU179VpAz9wYk2JJzqDiuPvkwkEZ3g5xUvdCm1k8udqzUX3paK6T": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU17AFWazJxoGtQYdWSUrX1ZrfuXoUJaZ6vfBJHaAfXj2cr4vr5z": { + "balance": "2206.689565878", + "bytecode": [], + "datastore": [] + }, + "AU17AMPHZvsT32xFP3EGw47aijnivhkTwSyqMRjD1brXGHjhaUdu": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU17AQH7Vah9GQRXMWtkxX7mYt3kyWF5womQiP5pFCQrH5Z9VkLU": { + "balance": "1379.449126109", + "bytecode": [], + "datastore": [] + }, + "AU17AcCavuZt7cCKVQuQyvTAQuyFbD316WFvNFHJLxC5sGovywzC": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU17BBLtadTiBT6j691G3ueaPeUqYSnXj6MWQZHsx3mrDKwquvLB": { + "balance": "1357.301750114", + "bytecode": [], + "datastore": [] + }, + "AU17BT1jzm6QYHs15Ahu3m1DUFHjdCVMcrLdX8GEnrWSdCkDZJ5x": { + "balance": "1328.709379261", + "bytecode": [], + "datastore": [] + }, + "AU17BZwrjEYMaVz5QP9wksbJGqn6VBkkTaiA4ySEq82rb9WrKepE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17CKScJkgvekUdvomn5n7DdicYdkzc2hjP5QWB6CnZh2ageCZS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17CbvBMcASfK5Dja43rXYoxkAfoVfJKkv4MAQZMLxdxhwEseM9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17D75FgmGokX22SCJb2j9aNwge56YASMT8MWYejm6GMoFHk4fe": { + "balance": "2457.137525830", + "bytecode": [], + "datastore": [] + }, + "AU17DA2qV8V7YWkvAGvEFWrwonfmP3fJ6qgm29GsycB3UeGLYmxS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17DdXcjVSq1Yxfiak2jqccHFS2HNb8cQjzq6CefykqoHr1WQWj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17DmGe4kTPFF7sHn2TbwgDidZk7TvMAKg3k4F1FnpTMrn2bRw9": { + "balance": "1333.903168499", + "bytecode": [], + "datastore": [] + }, + "AU17Dws4zuQ46V7LGwKjasfrhNCTqDyXgH29g8Q8yppv4gNKWLgn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17E9ATEufX7BFpUZVR8xzgTthaq7SSgN1m1f3KkH7skjgmjd43": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17EdGjZgW7tvUHD5JTRQYoz78s5qCzJaxbCLFiZp4pcy978c2D": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17Ehd27sCkdugEqn1H53q9DAFadZbZUhxuJVKX9qYvfiEMvBX8": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU17EuwiBZuQ5nL2kurpVPCu341UFKULUjBRSKG9T4U5otW26Hdy": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU17F1sRXraaywg874RDUArveAJhAReXCVVDKQCRzwRdhKE3UhgM": { + "balance": "78.973418247", + "bytecode": [], + "datastore": [] + }, + "AU17F6CmULAk522Ci7Ek6MSQ6WjYfZe6HjDmCTEoXajoG2Nusawi": { + "balance": "2342.874670328", + "bytecode": [], + "datastore": [] + }, + "AU17FBjUmxxjukxhCjGzNpvr4y69ERjoejVpjHMtkuwqeWdhXVEP": { + "balance": "889.798857712", + "bytecode": [], + "datastore": [] + }, + "AU17Feb7Dnsp5BqRpnUQfezPTkT4mj5D6AjR2mQXGvFPjmuvkz3K": { + "balance": "1090.073274126", + "bytecode": [], + "datastore": [] + }, + "AU17FiENRuDcANP6EMWaEU2eEvv8j2ACDi7vJbu367p5RRfPKmrs": { + "balance": "2759.613850738", + "bytecode": [], + "datastore": [] + }, + "AU17GDkBB8wChq4k2AeTAT34wSWj8gY5CA1mHJB558gX8a9gmAZ7": { + "balance": "1825.446076655", + "bytecode": [], + "datastore": [] + }, + "AU17GXDprpRAXirsQDJHkhJNLiNBn6zHLrdCGiHmzTSc9voX5FPd": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU17GfBe2fWwSbgUTTXo9K5YGMtTaRPnYYMBaVvX74FJxfgZ2JxF": { + "balance": "76.732673267", + "bytecode": [], + "datastore": [] + }, + "AU17HJFzy1yWPhFXG3binB2Xb49EokFY892MF25TzRhi92E1V66V": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU17HKq7JS1UQvK9fN9fcK7EtE75wEii3xQW2z1yS3uHJiNvHTKT": { + "balance": "1186.415915802", + "bytecode": [], + "datastore": [] + }, + "AU17HZ7KExmQ1uxzF7a1fXEsW7rV97bdJFh1c2cWUDaG6fuXydjd": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU17HgMawnx6YkK7g2fm8GYe6ZQXRCAFKwQvMaAbPDrPDBrCkmxK": { + "balance": "1759.868107699", + "bytecode": [], + "datastore": [] + }, + "AU17Hu2AGerZ8RodvNHbYQBkXoeDzctKyB2GVAYBxH4xxrBPQrPy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17HxQkMADtBGStx9hzMmDktx3gh3Evj53Eeo2RBQXoyTootKRt": { + "balance": "1449.959587282", + "bytecode": [], + "datastore": [] + }, + "AU17JLaZ6CW1H8mhFk49kkSh7cpNhL7EHpmHED6XSqdPHww2oyQb": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU17JkEyr7owPREfvevnkQC1zHzLHUWGPddrBT6aN55TgRB8UkJN": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU17JmXZUoSez3mG5fYRimTgFE78dPA8v3unjNohu41Sym3zhuV5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17KRsMHcY2Mce7PWyYWhjJxDyAE3tp6oMqwMCWaqxePBNaHLAt": { + "balance": "185.055480376", + "bytecode": [], + "datastore": [] + }, + "AU17L1kwwZKNKy9bHwHHycbLTMEag3WhSzpgm8K7F28yvk5YtoG3": { + "balance": "241.921009361", + "bytecode": [], + "datastore": [] + }, + "AU17L9xiviZSYHS8aL5na4YgN15mk5TisinSUrnwSmo9Pxron5jp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17LMjbswzSdtnceKduRBqC6xrQXrwU3yTHjBdePRyy6FBa6x1M": { + "balance": "1024.570578855", + "bytecode": [], + "datastore": [] + }, + "AU17LsuqcDXMKGp83Rm1WvzcxsSBdRQj5JxAsK13CndssfYimm83": { + "balance": "1372.064189961", + "bytecode": [], + "datastore": [] + }, + "AU17MKvb5gNopRkfB5SNGSNbwaPaZMXYCB5iBt2J2LHJkCsGsz6Y": { + "balance": "3844.461772887", + "bytecode": [], + "datastore": [] + }, + "AU17MPcS4tEcvWcAmJyYnFMKNpHiU6bvkecmrC3dNep8Q4gB5UoD": { + "balance": "5681.539459731", + "bytecode": [], + "datastore": [] + }, + "AU17NT2jURAJCZA9LBUDMYLU5nPdMHmrfkALQfTuGMmryf7wHC5G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17Ngk5JMN3HDE2H3VE1njummWmAbcse7NGf3586y816rUMRHWv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17PZAk2u1dAuVNLeXtGAs62xtaHCd1zPYMegfbxRxn58VLXSLt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17PgknKZuWqVZuw3peAoKkosvaJBTGfrBVU72PRApV87bh31kY": { + "balance": "2672.078822932", + "bytecode": [], + "datastore": [] + }, + "AU17Pm6YBjhSdTWnzWfnUBa8JZmQNqnEcJym9fLo7whEqWAMSXSs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17PmU54iyxDFK5MkKuMDLDxJ6vquw8EauGUWcBnMwV4MNuy4tv": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17QBaGbvqhYunMf4KWiB8A5kwec7g1mcmt6AziKMQbgbfwv6F8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17QDQsWT3MujJCVeEEUe7tpFaroYcGiR74TzWDz9mkEcEZCyQo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17QDb4gaLEBuTGM4ypbZse3eEfzDaWB4d4xwDd712EUHJieN8b": { + "balance": "1664.965860870", + "bytecode": [], + "datastore": [] + }, + "AU17QerVvooVhxnwQnXxcnF8wBBe23nWso9EntreSm79SFkATCZM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17QkP9JCBEZpUuHkFzrsq1mfNUrUVyVpm4nZCj5ADao19gKvQM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU17RGbeQyhBiYPWMj6rwB2aWa6gvUVdEquzHj7A1xSAokUSMME7": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU17RQEi2J5nDbrdzM1MTjbfFesD3yeB1CbwrAhwYQiouCDUfYig": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17RTZLYkLpfctcWXo92EZu67qq22XG3Wdv7nqKjzKBRr7TjtQi": { + "balance": "1007.134516414", + "bytecode": [], + "datastore": [] + }, + "AU17SXXPiD9BvwyA7nb8UmCazCnkS6jjM8nVaqcb1VgcdKfjCvdV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17SbJ9c66LDeHqvXrL7NbKT3Dk3EwPnuWKSCPgjVtHpCANoAEA": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU17T3VAtbnr1niMoTtddTAtQ3w6gLwZXNX39CrUPf2pGC7TwM7Y": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU17TABmRZ7CNaw4moVDwSjPnPpHJzCqNihoQStFEyQVr5dkNbeJ": { + "balance": "2511.250007309", + "bytecode": [], + "datastore": [] + }, + "AU17TBoWiQTQd33ZsYzSerAtqKoLukZtidQ7tDbnJW2zjLh2N73W": { + "balance": "3399.836746804", + "bytecode": [], + "datastore": [] + }, + "AU17TdupX6joXAizN3JA92NTi4zrUvQ87Wm56EVpBXWLgPpRMGPR": { + "balance": "2714.783751812", + "bytecode": [], + "datastore": [] + }, + "AU17TuU1EaU9Py7MVUA5MudqsNQC114PhRraTzLPJdW4iYxgxzCw": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU17UDPLvLzhLR1YEPRc6JWmVav76jm6WQ5xPuwReSQQXT7Xnvd6": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU17UE3ZMnQieJYfHqSBx8vh5jsw3aEskn9A3UHxBRL3iFM6yMaf": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17UJUJ6GMmggVtcAPefM7WbXM6WkNSDYiCcyc5e5nUK4uUUnGE": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU17UTiSxFmnZXHFHfSon99eBgL2YyHEMmfLtYfSrnxE56cNDKpt": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU17UTvuBYKDfJ6S5XK294fAX1spwEHGJxFsnUdYEU9vF5Erff9e": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU17UhLKx1iHnLDCUA5LR6Lo87nSvw1UTf8M2zQm8tfdQWFTrHp2": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU17UqfFFVjawEBM2yPLiVXhLXULXVknwYxrXS7kAhMnQktCVgAH": { + "balance": "68.481848185", + "bytecode": [], + "datastore": [] + }, + "AU17UrQ8HquteGTakdE95Hkb5xR8Sb2rF7cJGYRGT3rU4M6SCAEY": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU17VD7WRKtGqhLMWrHkhpWakkquohpvi8ugY8GP8WzfxH7X6xxW": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU17VDo4Hi73FhcJG4psWEbtJFzdQUANEp8SnhengTPCqqHEzV68": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17Vubw4qyLy77h5k471cGTcrpzm7VZrwoXZXLX4PD26ZtWkaVy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17Vv41SrHwFGgBpPvdS8gmyzPXLKwQ7MmZMdgkekUfGcsxTGV2": { + "balance": "841.815246578", + "bytecode": [], + "datastore": [] + }, + "AU17Vwc3j2cn1eWjnNUj6ySsqWKcwwXGHsBHZWWAQpj8kWHyVsrs": { + "balance": "2185.464929135", + "bytecode": [], + "datastore": [] + }, + "AU17WhfdKhyWr5byHJvQPe1jryREVAT26wDT2TGjGC753F4g86tG": { + "balance": "4108.663742931", + "bytecode": [], + "datastore": [] + }, + "AU17WmqXNfMF32pKhBMzF8YxeCZerhF7F94nKTfhyfTeZ7FByid7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17Ws3v4asLJScX8GMyWsnLU23t94VdcBviCAX4WdK33QefT9n5": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU17XDVTDuzBzAyFXBvH24Cm8J8bjBN2ShNWnyDisCtM7fmCpzmh": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU17XEh7z8Nj59Q5ZyTMUeLhhuxP7oWDmPj4hgcQz7FeGXe2QipN": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU17XRsPXVa9CbmMxFniZxG8191juTdrWY2LkmKD3k5unyZ6hhT7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17XS2RAZ9XK2QY1P7WBQncxTygzyS6XKvSNbTBxNhuFBK5VyWS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17XyptxQUc8CnrdGfy9FwVudqME5zsqKPpashUw3de6x6xb8Wh": { + "balance": "2365.974930620", + "bytecode": [], + "datastore": [] + }, + "AU17YAkYVYfJdTKquR6uxixFovwBX55TP8ce9cdgeAcpVvnFVAF9": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17YLYKbWCxn2KSNgHcn9pm5Pc43DHGQG54QFF74ok9CgAtrCY1": { + "balance": "4534.126811014", + "bytecode": [], + "datastore": [] + }, + "AU17YRFBDeLQD9pzHxqqBRXEZ15N8f7V3SMxwzNkrXCrrv8oomHP": { + "balance": "2654.928701719", + "bytecode": [], + "datastore": [] + }, + "AU17YXiwAWfRkdWLsXG8NWTSSxy69GPJqvxs8GeDjchdXZJ1UyFd": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU17YhHU1VMzoTawNiaVgfUHwa9nVgbZJ16Wy3kgMgDqEZSevcNX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17Yos3WdELiJXkDufiKAZXEmgTyaKpz2GfUb1RckmdJwe5kNSe": { + "balance": "899.145712112", + "bytecode": [], + "datastore": [] + }, + "AU17YxPu2hf3yNj7JjEcBJcHowQEXpLQGu8KyRGai4DbQHLzLXZP": { + "balance": "1129.548279155", + "bytecode": [], + "datastore": [] + }, + "AU17ZhUqEGNTeAfJUTHRWsAePYX4Wemsyqwu7RFTj6sjW9NikWXk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17ZoCs82bNPYjUvK77QtLecJB6TXNNKa8VEi5wMGKoR8tbwCtF": { + "balance": "4638.576469357", + "bytecode": [], + "datastore": [] + }, + "AU17ZvrrtL2B9u3kCi2BZqbRgVza2DUFFpR6xR9ruUcHfwkRR4Y6": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU17a4gKXzAQiuorHKDtD22AX1xNUKnRtimsXtVbnZwaqaGqFmuk": { + "balance": "7617.161716172", + "bytecode": [], + "datastore": [] + }, + "AU17aCPT81h63MZNPV4NqHKzhaVG8RuqwwTgmSJdD8Y8fHLJpEQF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17aZBy6DD9bagmdBWtYGYveK8ZCZ544uts9NVcGGGYjLtXSPHh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17azTYQCp5RE2L4Q4pH1UJhq6eSNqHu5vEwXoMBfNX3v38oSWK": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU17bFtKVuZ2qzdkpSbZzCLv1w3A4oQfJVdme2Yvx26YVR9njP1y": { + "balance": "1726.702183803", + "bytecode": [], + "datastore": [] + }, + "AU17bW7oVBW4CUKRmuC4ceGe3XUgQJevAs9eTezaXNQnLWYpmuEz": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU17bf8Pb9NnwbxSvrhGe6FMLt6tFk5Em5RqfBCvrKYNwgfy2Hox": { + "balance": "1192.084536996", + "bytecode": [], + "datastore": [] + }, + "AU17bgMdH57kgMMQSQS3L9rufSyT3VRDe2DNQudxkvjrnvfUCria": { + "balance": "4528.778233361", + "bytecode": [], + "datastore": [] + }, + "AU17c6CMsec3gUyj871wH9pTEHUkEyCPnJeh14e3tE1iizqnXC3i": { + "balance": "1383.155763137", + "bytecode": [], + "datastore": [] + }, + "AU17cKjPTTmntDjFSvYSkFoeURdrcDLHo3gnr6UdKfXNudkQzECG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17cYmXVNvSGWek7h5MybD89BHiXME8FL1F23mQy139MBfYe7Aq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17cm7Z7gQu5GDj1QvfdaMhA4QtV8VxwUpdPav8Xg7qEcFLzi2q": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17czGt7CyuJ6jiYHi8Lie3qbcnApRJVvq7ZbB8SYYuS1Cuqmcp": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU17dTsBeS1K3qrbqRXHmMoECpfWTv5XziTr3UCYxMjykRNDoufZ": { + "balance": "1308.948534446", + "bytecode": [], + "datastore": [] + }, + "AU17dxJJk6VXJ1jWiERCMZbV7ofQ8pxq5Hfbtw6nJ1q9D8xYvdEM": { + "balance": "761.596005367", + "bytecode": [], + "datastore": [] + }, + "AU17eEyQyGxdkj5pWDe2qxFhkWFWkqhsFaXr6Ek4FKagcDDjHg3r": { + "balance": "2293.578644298", + "bytecode": [], + "datastore": [] + }, + "AU17eZAqo2rCBau2h2rj4H35op9XEXSzfRjahuVeBpcgwQufiKwe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17eZj8wGdxfW58ZCY2XsdMRQMLVHzcf88eywKDfWUgmcHX4jRd": { + "balance": "1493.727992863", + "bytecode": [], + "datastore": [] + }, + "AU17eo2kNbTs5dhcHBWtAwD6XTXhsMHZTN4ZnethxwGYPsFinxZX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17f61b8neW7rKegeLHzXMiUkeUmJbay7Ry3yTJS51n5sHbPfh3": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU17fFuFSfAQrz7JSguDaWobz6icYqZ5mpLu66fY8HQQj4o17LXs": { + "balance": "2268.096977647", + "bytecode": [], + "datastore": [] + }, + "AU17fJTEnEbWais7wTiPaGzx5amTq6bzuCBuNhh5t9AJKQPbtLDC": { + "balance": "1037.351805835", + "bytecode": [], + "datastore": [] + }, + "AU17fK8s1VoJoQRBbExaF5vdhY7kb56Y7QZDfmhYvw9Te65KkEUy": { + "balance": "4517.756333180", + "bytecode": [], + "datastore": [] + }, + "AU17fstEJXUrQ15ghpzAmPTvprVjQ3Baew5hwMnK7RTc8QoGSzCD": { + "balance": "1258.558863398", + "bytecode": [], + "datastore": [] + }, + "AU17fuSjL2e2VL8Cjvm9do8SLUjMnCPcLbz6gtF3fu5u5BRVqiU6": { + "balance": "28.116096154", + "bytecode": [], + "datastore": [] + }, + "AU17g98rCErvnWku7U6n7kBPTa9pEtTB1V1K2V1yWoKrDFFxX2d4": { + "balance": "866.102091684", + "bytecode": [], + "datastore": [] + }, + "AU17gLq1YvpWasZrhCHVFdVd2pWLjMXvXZRpNDSEAWL8bjoYD7vf": { + "balance": "2060.908365025", + "bytecode": [], + "datastore": [] + }, + "AU17gcnDv2Sjkz9uJYaJoYctEbgyE5yNr2hTPUaCuz1Xq2RXa8JQ": { + "balance": "686.749753492", + "bytecode": [], + "datastore": [] + }, + "AU17ggx8Pg88NaF5QZKycDEXoyDRyEzMtrxxvsJ4zbRVqC4nJx85": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17h5sGShhaKy9PdyxshZsxeBUTiryrfbkMsequ2L5j86QAHPo9": { + "balance": "77.301097242", + "bytecode": [], + "datastore": [] + }, + "AU17h6nspJQBV5iFembJ28wcpeQAqGfFtPiG5iokRKB2Tfj3t3PJ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU17hLSvX5iEKaZtYtnJJ1LJFwf4jKrA7f3VJNPe4WVJxoRyqLKi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU17hQEVRkjLYzsB3HsWTFaL6Z2a27d5Knd5yL8ZTzo42Uu3wUXP": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17hSEiA9w2zimoaAqMUpLzMChJSv6EeNFKh3Q754vb79qtsd4s": { + "balance": "1250.259332992", + "bytecode": [], + "datastore": [] + }, + "AU17hxw9t9gC8RSLLYgCAh7oHpBJMmSXx56rcBYjmx15NLLSL5yY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17i8xh1vjgsQinosYu2AfQTDtaobXyH6YbhHscEe2WJrbZyKnW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17i9ezTgrsje86hoGXEb8jyjfLLacsUPnMPgPPzK5Yw1C4HbKR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17iGQE28hNCnGps8ffpr54YEz59BYEzSepVPV4ZYHuj6qE5G2j": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17ijpYTWYBpgCECKnb9jjfMshpTbmuYhrxEtFtKx9kA1QfzVa4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17jN26A7KzkV6RwxW7fQqjpuGmpXastwW3Z7k6tEiEfbgesLKH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU17jbcBCq6pN65utSWcmTnqxEJCg5pmqMdE32aFUgdU2bxdQT8S": { + "balance": "1038.244206694", + "bytecode": [], + "datastore": [] + }, + "AU17jiS7JxtXGMhya8kK9pAdGrPbejbkrjP4xuc4rSpdsrvgrCCf": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU17k3Xiv7wkn5mEKuXPfpoAsJMkndXoYBdAhvV4hLxLBBAJsYzB": { + "balance": "1075.040072235", + "bytecode": [], + "datastore": [] + }, + "AU17kcmwLL7Yv3XwA5b1EkfHfimTMV21q37QC1w46cVsdYi2BBJf": { + "balance": "2980.698270382", + "bytecode": [], + "datastore": [] + }, + "AU17mGuqrDVhPBPXYxPaxAwY48TQD1zuStyQtc7dt8dH68q3UMDZ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU17maHN2K435qt4vgJDSNC69yTAkfA6PTBt98TWAzXo3bUAWZvC": { + "balance": "1070.271443031", + "bytecode": [], + "datastore": [] + }, + "AU17mi1NA3wMiFN7GKemV8d1TVc97Y5xXvJtvYjpvfLxuawoKLWq": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU17msYdmrobKGpK5Pc6yirV1K1Zjd5jF35nSAK7zyM9C8wCAUMP": { + "balance": "5406.738328096", + "bytecode": [], + "datastore": [] + }, + "AU17nAjgyQ2yFETP9k9GXyrat48qqJkFg9dRWJ9ckrippswqAiAe": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU17nNwVJqMYigjmZnc5Zy4j6SSUHwYpW42yuLasRacgSadYPTRt": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU17oC6aRZjKcXqd3fukhgcSxVpKnPgMKPw47T2gTnvswBp2zkYd": { + "balance": "4276.547782406", + "bytecode": [], + "datastore": [] + }, + "AU17oFHFKAkpJvUnECsysZPWBiG8c87qjJs1qbYXDG8i34JvPKhU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17oFkjnGvv4mL3Hc78EysgJqXY9jeJmg6y6Cp1goTMCFRhNtfo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17oV9g6PJX5Xu8W85HFbheC5pj9UBU7HcfLAvQ2V8bd9fj3i23": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU17ogeF1Y1YyZTATGExMdeQ3XTsjfBpsCW2moafdF2FLHokZfZE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17oqc23cuasg9A9sEjX8q4vpMipVrQmsiLDKwiQMbhLjGfHmTy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17p2VoyiuxbW4xU7MQusozLj8mjNZ8KPn1pVcuwKES2Txyf1JJ": { + "balance": "651.612795761", + "bytecode": [], + "datastore": [] + }, + "AU17p89mLQ9ysPbgavVqCVTkL6n7RjYrjHw4uwTtad4joQAyF4cU": { + "balance": "3036.057493623", + "bytecode": [], + "datastore": [] + }, + "AU17pDfKjw84UN5AGvoTQBCeDEDNZJ6hoehhLp9HSVW4o8LZJz19": { + "balance": "45.787518070", + "bytecode": [], + "datastore": [] + }, + "AU17pKWQ5Bnp7k6ai9txAYwDybMGV7qT46Ai66LXsvEUeFFjcCmx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU17qMxeECUrYTJ8N7aiSJnSUA5SVnPhvpWVd4zNoTQuuYrGffgp": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU17qyze5Yiu9GSsYSNaSSqRQdgTo5ukkvJWAP3Mu11EMnvJERPU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17rMAgKCoSzaR2uYWwMY4KAbm3uwk9GSJfW6WzkR4arsmBntSQ": { + "balance": "1935.762979088", + "bytecode": [], + "datastore": [] + }, + "AU17rVRRawQS8jKMPG4hDW8ryug86KiBjkzG9oFB6NpFZbiuy9xB": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU17rcMStfYANGbGZE9UyDYRxh48voYTtvXBcK6ee7ixJCBvHSfG": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU17rfKj3RFit4MmC3iWcESBavyBXj2W4THVyFqriBGz3BB9LnAH": { + "balance": "3239.008695038", + "bytecode": [], + "datastore": [] + }, + "AU17rhWjfUCxoJ6YFv7YhjS3MWMP3SSkeptL68TCt32c2tzonHuk": { + "balance": "1511.795580864", + "bytecode": [], + "datastore": [] + }, + "AU17sW1MHbqXcbu438rPGiwFaTa1CDE4JRN9w3y8rXSKYAemk82P": { + "balance": "705.597894521", + "bytecode": [], + "datastore": [] + }, + "AU17sm1JfdyUPrMtk4jcnJvBmnqL1EibqyQXypWsSFgrPe9MhSwC": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU17tErv7JgsCgN3CZADLCLa26ckYpR1zzg77A5x5Y7WQoRWBtw8": { + "balance": "1634.510534697", + "bytecode": [], + "datastore": [] + }, + "AU17tX8kSU73AfDJDL7K3v1kkPhvXxeFbGfP32BDUGhAxTEytk5e": { + "balance": "1446.259463514", + "bytecode": [], + "datastore": [] + }, + "AU17tYXsL7tdXZ3XktwfiF3zgHXC1wCvFtQVpDFbhKtVkMzkQoue": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17uro5hMLzMYRunb18Gbv8AajZwU6DFrEuqUjJVSYzk11co23M": { + "balance": "3568.089460547", + "bytecode": [], + "datastore": [] + }, + "AU17v3zaC7HitqrhcspPxZT6EkphuhHAQ59tTisAqQEMr9d51zuA": { + "balance": "1345.357441994", + "bytecode": [], + "datastore": [] + }, + "AU17vN21ok4F9CRyjLkrgqwvhjpwnRyrtPW83gtjNjwsUFzofR9W": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU17vREtSxv3FMp2fc61FyAkxBdmvPbMvMNvnUgiHSoDYo1kGAkg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU17vbgPwSsQ2mhe2i5m2fuqyPs921JvjDPHf7RJesG66FRxWbyv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU17vgHGYx9mVmgYzmfSnhvKvQs3AsurJHJHwP8pAZKk9sj99jzn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17voxxiMUKidRfiFhdD657yTkisu9YdfVbTCRjDVNdWi8z5Lri": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU17w9wQjAnKY9WxL5snUgLfJLJU6KhUo5bX1xxACCUL5UZyYZRA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17wEnQUowgiSjhUP4i25VuHe6L5VdUkENRFF2UEFFkUvJhCEHs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17x6rGKCogaPAmai5B7rhaDPaxYtfFMnwWmoCS4X4pJmD9QsVn": { + "balance": "1081.223174330", + "bytecode": [], + "datastore": [] + }, + "AU17x8EBkJQRVup8tK45qYnvpDZBdSU1JAGs4sXyxx86MZA1y5At": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU17xT7kA2Y6Fm6kr6qj7KNH51PUStUFAeEYamy61MgmKg9LspZ5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU17xYyk1mwd9Nk9WcxgAdyR4jQz54FPWDRsoT5fYLBF8PRSc4y7": { + "balance": "2590.092456848", + "bytecode": [], + "datastore": [] + }, + "AU17y4jRdjkbHBNzgR4q7kPyed6cTTQ1iYoRryzVcCxn2iZYyJpT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU17ysZExzKrpsvTpMYcueFQTPhqiS1TJcYsP8MUDXiCCGET72Vr": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU17yx6B8oveTV498aabSxFDUJA2wPEf6sCew361JxYxjZf4BxGi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU17z8reNMhZcjZUAG3gVyC3P5Qk7AFmdSz1rtQj7ipehGJ8JSQi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU181EevShfu8t4VEQnXmHRy78B688pHgF4NdK3wEzuBre8s3TzH": { + "balance": "1784.468575640", + "bytecode": [], + "datastore": [] + }, + "AU181PTj6tRs4mcvdNQupPewJgfZEvYqpDp2yd6b2NoBa9prSBGU": { + "balance": "1429.258818759", + "bytecode": [], + "datastore": [] + }, + "AU181vYo1B2nUd6KECLYPSL25DG9M7PUHVNRrVTy1XtDL5Kd74Vo": { + "balance": "3226.417353682", + "bytecode": [], + "datastore": [] + }, + "AU182ySwecRRrsdsoT22Lzo6rjKJsYkhwoKegWkDFZ9bSwUfPabJ": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU183jv4Yb5yLRYWXWEHwxqRDNn8L6h4oLKpr8e1CnQmQzkBs6oN": { + "balance": "4381.550048888", + "bytecode": [], + "datastore": [] + }, + "AU183wEWcJo7co6jCQAq3CBkfqTMTVAW9NTCrTndpHgNYksxRdah": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU18417c5MziTf8qfQAqYySzun8o7PUXAqbtb3tYamsKUz65aaH2": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU184M3bvGPQzd53PP1JppsSbN4iKGfwEb4nd4Js7tQZKJgYj39s": { + "balance": "1806.407880654", + "bytecode": [], + "datastore": [] + }, + "AU184XnRdguLkdfYMXfunRNpJNjmPEJUuXifkmREucBrnBRMhmZq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU184Yw9NK1jPfKPC8BGJ7YCbzXCBWJvMk5TnCt9sjdPMzHNNiSt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU184gPPQAopscaUuEaGh3XnFzek8TL4PkGcEcQruQvx9aeA1tmJ": { + "balance": "1401.164329086", + "bytecode": [], + "datastore": [] + }, + "AU1852DasE8RPLSx1cKP3YyfXReMN1JZM2Hm9xsqwwADseTvSGQW": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU185BFYoo4Fdaj2SGt8WK4vttneCcx3qJQALLiVugQUxteHMShg": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU185WL3bBbCpn8x6SCJCcH8hnnR83qAuybSPZcQtKUuds5AxqYa": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU185huaUmsZwRYkKvyyfTModZzDmZM5vYRGKhk6aKQK74qC5NtB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU185pZs7VtGHYco9n8ixybEjoFDL7rHxoSMGG3pTSAtMJqxiwaZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU185um8oCysfZwAf5MiGWmiunS2w7kfyJ5GCzC8EYswpresH3ap": { + "balance": "4312.745261158", + "bytecode": [], + "datastore": [] + }, + "AU185yDQJwyKHykZ3S7EKfRGT9VmCTsPoYQVj8979G26DQ313ycq": { + "balance": "2288.706643444", + "bytecode": [], + "datastore": [] + }, + "AU18681Fkuz1GjXDDTK4g8p5GtCjdDvqSM5kBhD32vvAWFAEvaeT": { + "balance": "2276.931452706", + "bytecode": [], + "datastore": [] + }, + "AU186JyGo9xzPhX5H2oyU6VCiKEEXJMwdJRdxacTt3ser4dQqSB6": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU186sYgBD187vo2URxzjzvTWVcLT3uAKLdA76NpWzoSbrhJXQ7j": { + "balance": "2399.945344488", + "bytecode": [], + "datastore": [] + }, + "AU187RcieUUeXq4LqGMgE38AKEWqjXbrfKoEm9KAFEKbdxpWFzKC": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU187c1svyrL96rZ7c3jsgXZmoCoYrhSxRbQUzB2ikZowV1HG1Rg": { + "balance": "591.870618162", + "bytecode": [], + "datastore": [] + }, + "AU187zJ54ZtSjEqLkw6RnkSkikJPPNRGBDAhFGmh71gsN7X4fQSx": { + "balance": "1906.163040834", + "bytecode": [], + "datastore": [] + }, + "AU188N75tKW1yyZJowFHmiLaeH2Yuong6zTqo6P43WvuM8KoWxx1": { + "balance": "1711.273013313", + "bytecode": [], + "datastore": [] + }, + "AU188NKwwXy7GJwjVdyBYPy7kdGvXijob4iJR9LzgX8R3Ps2sZDG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU188NbsWcg3SenFymbAbDwiZbbVDR7Wy4vxi7L2QW91wse2ioqz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU188eaeCcV8wFMk68mtbU3fhspeRuUSiCEYka6GjXtAuKsoxbhj": { + "balance": "2136.471515339", + "bytecode": [], + "datastore": [] + }, + "AU1891CFrQwHQ1H4n4XXc5BjLNTDDaBCiVwhZax1srAHnELCxdbp": { + "balance": "1626.429715533", + "bytecode": [], + "datastore": [] + }, + "AU189PFxJAmpULcCv8TWBk3za9TTVMU9jRTCFkTiWxAHsR5oSojc": { + "balance": "1198.194779173", + "bytecode": [], + "datastore": [] + }, + "AU189bFLYhRpgjRKQr45ugwqogXAa9mGBiDSVYTHgh5he4to7GQ5": { + "balance": "1024.173002714", + "bytecode": [], + "datastore": [] + }, + "AU189bmjftS3JzpBnAEyqGcRZtbr6QLP7fZ8JGP95GGeDGZUCBBH": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU189kwfAfHWi2DrU6XxJCBhZbu743EvdL2pZRNRLZ8RceRh1e8y": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU18A7aVbKDxH9u66weFZKiBE266DS17qwkmMVGaqbALurhoMAUH": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU18AfSeJP8i9NB8r62FUghs6bvkAgf8w61mbqyJ6kYLZ1YqfDMh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18BEVivmPcWCVBdXCntU65Y5AKgFgekH3bNDNUNuxdArP8ET54": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18BGhGtanUSheYVp3TwxePWvfsWyYGLCuS4x8jmD445MMZUscx": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU18BKmFRB1t3hVmhQTRoVyA51Z2wHyumQnkdQUpTBGRLGU9yPVb": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU18Bo3N1ddSUansiyBGPMU6C7MkJwj78HfhL4PBnSfPSspaBHfW": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU18C7ufjbs2Lb9ix2r2gop5ghU5qPcqxJYX6yfBmKLiCWPG1aCe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18CG9YbLcVAXbmV4YiL3gsmXJWaLXs4MT6T5T5f5hDjtj468CW": { + "balance": "601.613433976", + "bytecode": [], + "datastore": [] + }, + "AU18CU2fTocajdUWYgmkZDNTB2L3uPMTerPpAH4Esvvhha3BEw2L": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU18CV2TfQFgKrbNB5fAK9HHwH3DXsVrfAumxaH2D6uh5rPM2uo8": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU18Cg5D5xcW9YgFnoSCPj25tyt8yWGu9pjBsKFXjNw27FtnaRLA": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU18CtAWWqt9s449yiigvuFk4uLcs84e4155aNEyZ5ZmpsNuy4kz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18D2MdK1qReT8s1Shqabof84ta6NgLVenavpeLAMZDvhnA9qEN": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU18D2pq1KD8A58Bb1SfM3mvSw3cuz2eek3FWdEK13QgGZhH5qRX": { + "balance": "162.541254125", + "bytecode": [], + "datastore": [] + }, + "AU18DbDa8LDXxEoPGtcHt3LM9YuGxGtvB5b6aNtuaCyraGJkK6bb": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU18Dir2cQC9izMpgqc6rFGjGrwyHrRZ1rywT6CGciraeKgGnYHT": { + "balance": "576.132749720", + "bytecode": [], + "datastore": [] + }, + "AU18Dx9oeKqji6yy8kWF2V4SWpoViaDWTGWHhL7a2roDGR6G1BCY": { + "balance": "1170.435676946", + "bytecode": [], + "datastore": [] + }, + "AU18EfFf4mgNMPo5tGKpgyr5qvhH5NHf2ovCuymEUgc4479XynBh": { + "balance": "818.628866444", + "bytecode": [], + "datastore": [] + }, + "AU18FDUdeWnMazuneGKpqL9npvQFpzG2gU9SbDr5VwipRNT8jRMY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18FTzrTREQXjhuZr8RxqgUFEoYu1c9P3D5kaYN7estkRg9Brk9": { + "balance": "1771.617114044", + "bytecode": [], + "datastore": [] + }, + "AU18GT53xoi8gxVum7KgpC6C2beuB9sfXk2rKgiWDmyNrrNCjopL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18Gx1VMbytbRH64RA1KmRixyWCVbXCiDFU8wBDGjjyVrk3s9Kd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU18H4cKBU9dy2koCesH6ipnYYF1njBDfj5vnft8C18eyWHSLjQm": { + "balance": "1218.208976782", + "bytecode": [], + "datastore": [] + }, + "AU18H4mwNnyaTWn3mJMfPi7u5LDuKWM69chisBHodPSRJ6ho1jji": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU18H8BNYXeKwxFiCWQUqTgYKM2Va4mbTyEBZrg5Z35XvwPrUt8X": { + "balance": "796.496313700", + "bytecode": [], + "datastore": [] + }, + "AU18HM23VS2M7brYT11zcxEVLkxYF6szdr7MXQjQyjHX647okCEc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18HM83Z9gS1moCNp2nZJymcFzLanucwnbSzMbMwGGnjfWphmzq": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU18Hc8dhvWv4TRLhtgQy5oxNQWYts4kPuNXortbBGfLSqxSHVqR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18HcosKDQ2FkBKE1VhaQFAZxp4ffJix4EtE3KPnrb31zvnFZWV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18HxQU9pMUhzwzvLHhfVHzYBKadacSDkqXzt9ngitdNqrKu4sd": { + "balance": "921.090804002", + "bytecode": [], + "datastore": [] + }, + "AU18J9xuN1PMox97GGtiab5j5HP2N7W65vpSMYos8Wq7i5ZFcS7z": { + "balance": "20.315320236", + "bytecode": [], + "datastore": [] + }, + "AU18JufvUcgQkzTqrS793rwYpZuLQk9bTtE8rjVLW2AoffPXDpqC": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU18K1SCyTMPtbj2DNeK5tP4A9D4iY1gZKNVNtjq8JRktQecJYGy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18K4Q1jTbu5ZMsxTccmRQZuY8ddYbBzyUrLnGKpGjCLyN8eDvo": { + "balance": "3502.783514108", + "bytecode": [], + "datastore": [] + }, + "AU18KEDNphWUYXcMXqmyQRNYpEsnbTXUMZ8kKo9cLDS4Xxco5s4i": { + "balance": "1790.601515520", + "bytecode": [], + "datastore": [] + }, + "AU18KP13Dk8gCBweQYStNNiA1K3ESVn6Fp9zbUEsrtoGR2kxQEJj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18Ka932TGnWWghS9trjngwR3P9XdWoDhG7uchDAGgAvvVTxttp": { + "balance": "56.592602719", + "bytecode": [], + "datastore": [] + }, + "AU18LDwS9J9HcgWzy7fALwkR4GdH4avUNKgQDxB9ZSTgGHUEhWeb": { + "balance": "1077.186030610", + "bytecode": [], + "datastore": [] + }, + "AU18LHM4adA37aX8GKimw23CNvx6xLUEhRtGTVf6kEkQCFhxTz4A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18LPiUiFpgYw26GiMVo3X3q6W4UaB9TNRndoAzAgWuAJhvHMLG": { + "balance": "2059.951242611", + "bytecode": [], + "datastore": [] + }, + "AU18LRveAz6GntTHgq9bVxzr7SwpRBgB9S4TJY9EC8LNxPgtEBuQ": { + "balance": "51.686074298", + "bytecode": [], + "datastore": [] + }, + "AU18LwtS5gTAkcfjkQhiHMw9yQr8fRqdM4knWt9TKvoSZPK6zVva": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU18M5k5a9RpoteSVFnzPP3fshiGXgJSoBcbnmq7LPMNV5G2eCPY": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU18M7ZM4tEzJEzvUL8A7YdocustEtgAgHLdHEHQ9R6YQAV9V322": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18MEU3rZn1GTUwRRnpKPCXp1zJWkb7rdXL1YSPcBaWjTomcJ2m": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU18MPVFqY6uGvuBvt6ycrspaRR7QXaK4KMZ5tJGq2nCUFgBttvd": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU18MXT5EzRyACK57ABgyTotHoqcR6WWkmbctHiEwJQU39ErpNeH": { + "balance": "2810.501612915", + "bytecode": [], + "datastore": [] + }, + "AU18MkLvwgtrVHuzD4gFa7U8GmVRDZ6fEaX8wSo6Wy6C3RjqYGQz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18Mu2FZADUwYnDN8FtiaoYXG8zRfKrUYxiUb5LVj8BqVmP6r61": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18N4kbhmPLajsQpPXzhNxqSfySNzBeZLFTXP5WtzgeDo5Ujyb5": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU18NFFjm1CJmBvK3ywyPbx2k8pMXZ6N7nU9QuyKvqo8qp3zchfx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18NFbqfzSWZ2DzJ4GKdZFQj4Rbc1ZiqU7PSaQykDiUHZCmYLGn": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU18NKtMsTN3MFtvrkuckt7PbMizXxzfEKX6xLKZw1rjqzntCHRV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU18P3SBDuKR3DXmWwzm5KQxsE1nFVCeDxBecQ5EdHgWNL219uPQ": { + "balance": "1361.127830486", + "bytecode": [], + "datastore": [] + }, + "AU18P8iSdeu8kU7N53RrSsb7NkinAKz7mNcQJssGANuvMZVAb8Q9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18PCrjuMoAiPb8LRashd4zUBwrcu3ueFxvuSCsoV8wCLKTg5RN": { + "balance": "2000.549148045", + "bytecode": [], + "datastore": [] + }, + "AU18PQAARA8qaUp4dy5i24ZuNoEoQmmfdeVsQ8sX7BUCvBYejXgv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18PqkQSDt7mfvL6WjNSuYeaPq1RWSPeKWGyKxWnEFnxfXqP6SX": { + "balance": "2825.470419249", + "bytecode": [], + "datastore": [] + }, + "AU18QPanghZmWnjrqQRso9WzFfrwj2TeJ2YiqJYPrFEaPmaef68f": { + "balance": "870.194198945", + "bytecode": [], + "datastore": [] + }, + "AU18QtGzGAncC2jmrXzHBCJatyJm7f3itczY5qS2RfGD3N7xT4Dv": { + "balance": "1792.079857303", + "bytecode": [], + "datastore": [] + }, + "AU18RAbLZwpxZAdEJyDJvTXB1yYL7HBotbD1zazSwmhiLCidAX9t": { + "balance": "5115.812590519", + "bytecode": [], + "datastore": [] + }, + "AU18RBycgAs31iKxjuk9Ljdkvxt34dFu8UUraSpiBzBQHwr36YtD": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU18RFpoCwnVajFxSJ1eRi9mvkHd7YMLcagEd3dRxYque6d9LaMi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18RTSB1wTNdTBE698jyExxKTAMLMVcVjdBnCTuinvHovswmFV7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18Rnf7mETQ1u9mwo8gVV9n1LhFzT7UxzxW9N5ei4yaaHkbWtis": { + "balance": "584.709470696", + "bytecode": [], + "datastore": [] + }, + "AU18Rr2Vptd2BshGCZhVa4USMoMUzDSPkUb1G7wjZh9XmhapHPNa": { + "balance": "6273.220975426", + "bytecode": [], + "datastore": [] + }, + "AU18Rta88Fw8BQEDNwN1bBHHAYr7UDTxNLeAYcNSx37i6k9qjkWS": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU18S24AfhiB5pRoQUDKaFxxBTnkHZJYFzSwj7Nv6ww85aqABPmE": { + "balance": "657.606763292", + "bytecode": [], + "datastore": [] + }, + "AU18S3eyAfM5bgXmMnYoB9zh8XLy52vF3cw74PS9A3J2gsmFNNwz": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU18SPUE7pg5gJAX3Ck1mJqqmgaCfWqjc5hPtCLJpqvStoRfT7eG": { + "balance": "3373.604156343", + "bytecode": [], + "datastore": [] + }, + "AU18ShcM9DDqescXNBWwB2qatjx5t5CvgbDTBp7VAXQgFUvND31z": { + "balance": "3486.641784807", + "bytecode": [], + "datastore": [] + }, + "AU18Sm5zVaGczF3aiQyrKubFRhDFGXxcJ1gnjSaQ4XgcGktJhksT": { + "balance": "2135.129596000", + "bytecode": [], + "datastore": [] + }, + "AU18SxYEy9zvgM3vtGwRg4TFacT6V1jAxY3nZ9SxQDGehVzRQfuG": { + "balance": "1176.628422174", + "bytecode": [], + "datastore": [] + }, + "AU18TAmch15BQPpRMVoztzynhAf5m6BgGcGYKBteSdNqs3D38nss": { + "balance": "2052.752050009", + "bytecode": [], + "datastore": [] + }, + "AU18TDYjZrwzYiEESoHvBN2YTSbeMmW59WcmzJB7U6iQaLhFgHNU": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU18TXdE8kNBjwHCR2CTEUC9vLRyS7jgELK6ecP9DK1CgYjzyMaB": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU18TctELAipw6TL5P3ywSxb1oxHc3JA63kcJgTWyEZw6bKsvN67": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU18TwbRV5V5VYCc4aJMYE8P5iErs5qrnHCJxFQBUMnXjvfaQXLS": { + "balance": "1289.111773968", + "bytecode": [], + "datastore": [] + }, + "AU18UKgSS8Gs5ea6V1SuM2Exb6BsSjiss3bdWVaEnb7kEdyebR1w": { + "balance": "3544.086761295", + "bytecode": [], + "datastore": [] + }, + "AU18UYzdVXTf1awe3go5YGke8DFu2bWf6aUmUtJeqobMHPxNAY5x": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU18UbpgX3LVRSwPR4chRBmp3nua7iJRiqweqZtvx6XwQoXunWBh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18UmuhekdmaTKq6Jyj8NYKpHT1D3E4523cMv3HTfXJgjWBCDFc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18UnFZQrpoCErFFhNCzhyD2waKpuyDvz6MrpRCYboBAfJFURSo": { + "balance": "1994.573505338", + "bytecode": [], + "datastore": [] + }, + "AU18UyTKHQe9NSyR1r7UmwDHUYArVBJsRSzn3hPZK1KSB4BpRbKa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18VhqgbqBfzp69QFig6jSwcxjNbyFzJtTaQe1MKSrprTpYAVfJ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU18VkdoRUsArwXYbRoDPg26YyxXZJBVRGRcLyt4oWBF58Rc83pV": { + "balance": "1823.931584240", + "bytecode": [], + "datastore": [] + }, + "AU18W7kfCNeciKSeGVn7ZWi6VuoMt4WZNLackyHxrosTHM6KwBLj": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU18WEMCFQsvQvHZ8SKXqBAw8YgbK852k4rQ2RqEiNuqCPMTH7Y2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18WTPKRgV8NuuJYZXffViJ4bdy9KoCxQ8JCDSGmCFfqq2UJqqc": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU18WWyW6hzmUuS3MLgxxjAWpm2BYtM21TgZVxuDJjvZnZLPWBp3": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU18WX3E65mgMDCyiocUqgDAifo5AYdCPMCReCNTbt9w9UPHYYEq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU18WtjmwjruxXA2T8dhWnpBYfnbNq8bjzDnxgVb8gf3UQVtLXwP": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU18X8VkgxfECJcHJN8YJ1ktEpgPdbZv94XC5nBCmWqMcUoqtfrK": { + "balance": "2543.877645987", + "bytecode": [], + "datastore": [] + }, + "AU18XacAbHyozkY2Qz3j1Dzt7a2QvqqrF5PRjfUzpwdvyY5UQRDH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18XyjAmfPeuUJ7T9d2fqzmtZcs68srroyKxu1dLMGLVoGz7FhQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18YYEQ19CgyuX2hmbUsZumPy8xRHu3NBB2wLT5b2xSYUr2WyDL": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU18YrDGzD1b3kGwZrFFgJfRtUvLC4qeXRMTZLRcmVANNECFLuKC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18ZuX5ovYQ7FUMtByfDJ4pQtk7uHCFgPUPUZ973SowrwQyZ1nD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18aMfXCXEo6RJzYX4pK2jCKGn1t4Q2SEPDTiBye6nUBmeZpGH6": { + "balance": "4321.380929413", + "bytecode": [], + "datastore": [] + }, + "AU18aPisFAMnCBrfseGhMNgbtU6z4yNv3sGYi55zgnHRwswmbpMP": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU18aozvdAs5ropRWz5mfCTK4WCsFUSiKDJo3wX93JGHca3U9x5n": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18avdqTke9uJD8X6vFwNMLx5g1qLTfS6XqydnKb9MMfiLp12Wg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18bN6FR7NSWbFEvqCpESuHHVWq2AxCNnxjh76km8R5vhy2qFkx": { + "balance": "2828.347288712", + "bytecode": [], + "datastore": [] + }, + "AU18bg9vsU1K78EdvSnhgEH4WeqH6k62QHVHM3RgS14S2wmaiUe8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18bgA1FMVtEtJzkxEYzoZb7pGfcjxzydwWZjBuaRvpGV9k4yH4": { + "balance": "1132.309549393", + "bytecode": [], + "datastore": [] + }, + "AU18c9drMxJpm5cMTH4PJAjQo7VgnhCAoYPBDo5ScHTPQqmfru58": { + "balance": "2483.838010346", + "bytecode": [], + "datastore": [] + }, + "AU18cdxuq4XQEHPkDK6JrCPs7fUBhxujjQdrvxivRG5qXvmZ5Xa8": { + "balance": "3444.837910765", + "bytecode": [], + "datastore": [] + }, + "AU18ckHHsPb36kP5Yz8ctA3LeTxBgjgv5E9pYDRwoTiJfND1K62e": { + "balance": "1407.334817954", + "bytecode": [], + "datastore": [] + }, + "AU18cn6Hufe1mWMYU37NDN7WHh5fbv1wsspA1QCjxsJDptgKPorN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18d2jiMnCPHN1ZcXCGh2JLMGChrkcTK7eKkGfrhaPxjnjqToW8": { + "balance": "5388.006856500", + "bytecode": [], + "datastore": [] + }, + "AU18dU6hNdJahmH6rdyV2rJJjVQA1QC8M6LR6eoa5U7eb8igVeub": { + "balance": "539.135555082", + "bytecode": [], + "datastore": [] + }, + "AU18dxFDFM5o195LXS9v5Ei4FG6dcwbWicshHY4DMXb9kYPNBPqJ": { + "balance": "1521.028284674", + "bytecode": [], + "datastore": [] + }, + "AU18e3XwywtZRJSFtyTAQrKg5g7pAvyVSrCJWyCsp6zqjsNWKBhy": { + "balance": "21.959730222", + "bytecode": [], + "datastore": [] + }, + "AU18e4UW5HDRJgHE2g7wtZsMaWghJWdw5prudyjniTYT7YNjqpV9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18eDj83pkBsqPM9kkLUQG2dBxkNtJ4UiNDAkY1Ud1YLWq4w4Mv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18eFPgNbbceJARxojiryGiDNP1d6PPJpELEnKR1qujcvhBFkax": { + "balance": "1114.747315694", + "bytecode": [], + "datastore": [] + }, + "AU18eVct6KnUe9NWsXYaEmv5XY2C92ptrxWwJWMXtJ5UMBWpYLRE": { + "balance": "590.767192095", + "bytecode": [], + "datastore": [] + }, + "AU18eimD1C52vDwyeXvKy1n74s2QUz5rbkKkVVMK7s7FQUvRDmVL": { + "balance": "2574.562799908", + "bytecode": [], + "datastore": [] + }, + "AU18eqSj9iuXsBgJWZFzrTsDtJBDe66AXHh4Yu6FYVE2Ju3etxQC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18fFA4fGa6kgb7MtR3uJDW9i7hFrEszhiUwv9dx6TUaGYxJ3fn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18fMUYb6cCBHjM3JWkizDEhqtzfH3P7b7KUwSYrpoULDq8tMh4": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU18fV66Nj3dqCUBqPziHvAp66RfsJpUzytPXKNAXKTvk4RxTSsd": { + "balance": "1976.169246976", + "bytecode": [], + "datastore": [] + }, + "AU18fZdGdTJVENc3kgCHBxstDaWwQHobf4WUkFgowKHks8RRpZbc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU18fcV2FcYNTBSaUXb1ZcTjxdZjksC3sXYHw4AZ5y5Sabfjt84F": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU18fe825GJCNwTuKV81Bp56jeX6qMbPL7HFdC1ArXwtxy1Ytu5r": { + "balance": "5973.735853947", + "bytecode": [], + "datastore": [] + }, + "AU18fm8rccrvbUGSYWEDGt1Uzmc7A7uzqfgfudsmaPw9i4jaFBS7": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU18gKEP4VZKj2VNJ4gNaSt25u8nARBgSwausj9N31BY2wyoW79K": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU18gLhk1BrjpiXrNkVoZudBmXGiNYDPWJLecQn2nsxmLW5uqKib": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18gcxo2uTkVLJVbVzgnR4eUunEZkHykfgsuDrCzmGMG7G1tXi7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU18gxwRNDpDvkqbec93reQPiwT2y5mo1hpqoWPJ3dXw4pjyz5T2": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU18hA5xL12yGv9AxjQgFGUV7kfpM2K1CjQbo5pobxKsZK8vUUTP": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU18hCgjBwS3mm864XJJ3dKYoYRmPaY3XHJuj8J5YkXjMwUmtYaT": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU18hYWKetELwyrV8jysQcLDACvWXXBRoP7Fm5DvsiBusgwCLMFx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18hjJEGoVfj1cCqirMrGLQNn1RjheT44iATuB8q39VQjtAGjco": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18hkozXnFKELUB5JwdzRa2cUZQA5YhDnTiLXgnrxaE3vkFjccD": { + "balance": "148.858825490", + "bytecode": [], + "datastore": [] + }, + "AU18i1He3dYKHPmBfPHK4QukcPGBdxYWfDhGQvRRcMPZjkSqQu8v": { + "balance": "279.790982874", + "bytecode": [], + "datastore": [] + }, + "AU18i82z72EgTKeUsZ2rRibLbSLCvyzED2zEyr2bR5E8KMb7JGbB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU18iYPF49WgBG7vgmsHgzH4wdxX3xAUUAmnW4wgCDuxKv87gfLV": { + "balance": "1301.208239805", + "bytecode": [], + "datastore": [] + }, + "AU18iZ6tiwoR2dYB4BF3hTo78DJeuADAwfWSu7q9TogEnK8BzSu9": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU18iiad2GqzCLK1paAFgM2cMq5Afs1a1g4vVrHRDMvZMjS746Hw": { + "balance": "2561.126447770", + "bytecode": [], + "datastore": [] + }, + "AU18imsRes8SGw9TGcqeJRCqBHXoS5D3S3SAQtgdufh7emCqdwgU": { + "balance": "58.772624079", + "bytecode": [], + "datastore": [] + }, + "AU18ip2NbfXLoiL2DeNRxkWgPo6UZAmypujrNRiJAyY7bFdorWrG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU18jqiTuk9Xs3rKXabZwHKdcH528qBvZsAfPtk7UW5oUKauwrXh": { + "balance": "1646.300807320", + "bytecode": [], + "datastore": [] + }, + "AU18k3tB6gasR54Lc6zNmYu65iF8wVyv2DhV1tFzyQjeK5JoCvbH": { + "balance": "1322.996135719", + "bytecode": [], + "datastore": [] + }, + "AU18kJUn8rR5mez2ob8bxyhU1gWcEKun5EyfEnB5W5ToTAwvm7yR": { + "balance": "1200.798149110", + "bytecode": [], + "datastore": [] + }, + "AU18kQsQrZTXKr2jGm4vNXGccpCTi8LGGCtbDkVctJHsBNce97CJ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU18ko8H44uc85wacV56gwHe2EWimtTM9HqgZcQvSudJRw4AmLLc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18mHkB2W5uagC9UFqMHBMSLZLBhcXUBQiMBxA8GkJtnUZAJWVJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU18mLPxrsKJ78U1BU96EC3Tc4GEVNfqRAZEagPbbzKhpJPt7XwW": { + "balance": "922.372072031", + "bytecode": [], + "datastore": [] + }, + "AU18mU2jRfjkcjMNdwjkvmLYtkr9c2gMNKAcsayuNYRiQb1ixDko": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU18maQT9UCth9PSvibj6yFoAEVgZrkqJGAxRFeQSa62Q95Scujz": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU18mgabSUN5Wc6pXSDj2Yemu9rCU4mSHGWrsr6iXdf56KecG1R9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18nB6p2A6oBHssoqTHVWbSFZ8Ljr3HX6AiZsq87VgWnkpjSMyE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18nVRUMzaSNYDiQfvWfaFpXwnNR9U6pXk6qt7fEPrc9BxRj9Wb": { + "balance": "266.942041992", + "bytecode": [], + "datastore": [] + }, + "AU18nnJm7fhHwqh5mY1Bs14stPRei7GUqZsSr4Di1d7wycN67A5o": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU18nxKGAgocbqpRPmu8JwW1UCN31a2WLCUtEzGHp4rGQ6YMNPXE": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU18oLbk1XgmgEvTxSKG9hzaAfjixGW1t87DURNART4iqXYukC45": { + "balance": "2325.661338714", + "bytecode": [], + "datastore": [] + }, + "AU18ofm2DuYCyv3PMidrFpAqADTYyqKd8tVHWnS7YPV58GfwHBQU": { + "balance": "1862.043208870", + "bytecode": [], + "datastore": [] + }, + "AU18ooSMb4tXNEDbVAZNtLFQwH1ewwUA82cSL2FKgHPhtJ4K9XjL": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU18p2fvmFsVfszMdSFd35My3kuMQyaRg12rigoT5hsPC6aMCXtC": { + "balance": "537.393012190", + "bytecode": [], + "datastore": [] + }, + "AU18pDh11J5RSMiRztjyNjENi8EcACQPaxGZjknPiRyHzJTiXbPS": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU18pGUr69mdTxuBgaYg1i8awdXUiftJEsmvaUuFNUdxY9NksUFS": { + "balance": "1664.034048285", + "bytecode": [], + "datastore": [] + }, + "AU18pbtLpEvCnLQsfccZ4wSkbuMfi5ftfxwJzHyVy8BwsU89kUz2": { + "balance": "1101.507645793", + "bytecode": [], + "datastore": [] + }, + "AU18phjCfaQGToYWvnpHDJuK8Z2cuwRUFgjZpBKHhXwUaG7p9v9T": { + "balance": "664.331346586", + "bytecode": [], + "datastore": [] + }, + "AU18q6SCggykmih1ierVreqLca4LRPUKZkpkBKLDkJr6zZPPdVVH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18q9Q3i3HkgvasinqWfBzS5GrJt18r5W97KMQD3CNNqwzFDHae": { + "balance": "2835.564030770", + "bytecode": [], + "datastore": [] + }, + "AU18qJuUUVWXC9Xr4CGae5iKkj9kd9CEqMWKq3mYxDA42f4MuKFE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU18qNLEPBYBYD3LExegjoDjUi26SgCntBXBWbF5yn7whMPVFS9C": { + "balance": "3534.234665946", + "bytecode": [], + "datastore": [] + }, + "AU18qXK5imHTRET2wauXWtoxqbJQFcfK37QbVmVJoX5gEpvDUuyE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18rAGkmmMZDSVNUaYcpzTEBt6sgvT2j99gAjEw7HwXHSfCodHH": { + "balance": "1668.343166521", + "bytecode": [], + "datastore": [] + }, + "AU18rGesr96MLFS9gTKW7ePeA6WNXdV4M1QjD1T6uHSEEBsVr59C": { + "balance": "954.506296952", + "bytecode": [], + "datastore": [] + }, + "AU18rJgxvVhciTuRzdcekhoEzbQibRtuTCRwV3PPqcffx56ELpzU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18rWp2d1aw4mGuhz1RFNPBznF2fFqf9wu9eMu3sRUnhbYFWAN8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18razszC2ET9KzGF2oPRguABpDmLs29A65RkjTgjF1noTkGcro": { + "balance": "3380.507276425", + "bytecode": [], + "datastore": [] + }, + "AU18riUVGUCXtPSRpuvbPKx5ak3YSRGWvRGm2ua8W5w5tp1g26Rx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU18sHRzXzuRejoctt3ZEfobEHmmJ6JqNQkxQ9kspCCuFWBZhsVT": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU18somTMz8JQuZJwn1bX3rb45ctG3zpPtCjUTzAmo1K7ZJ4SmQV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU18st1NxnSVLCTBNt8bqHPEMnWzdiUAzisXYvAC2ToeuBeYYPsH": { + "balance": "2892.498211932", + "bytecode": [], + "datastore": [] + }, + "AU18t4EbjXSjpxoo6Hb2YHy4VKx3Lf1ykKhpQXRacMFieT2mnnc7": { + "balance": "2006.854657761", + "bytecode": [], + "datastore": [] + }, + "AU18t4SMtaRm8YCwP5AEod2XM2eX5K3qcww8wSLjNAAU1KnMA22C": { + "balance": "3788.044139237", + "bytecode": [], + "datastore": [] + }, + "AU18tXvm7vwW95H1F8AxANHhAgGFBVyxKtjgm9ZstT245wDaKXqd": { + "balance": "83.236628428", + "bytecode": [], + "datastore": [] + }, + "AU18uSdouowi9q1yj886ceZPg1dSmCc7imvAnbu5E3MtQ2cLgS2y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU18uSjcv786A5jz2RwRwUdKhFqwkpeHZG656FZCpBJ87vCszRsn": { + "balance": "2482.342541402", + "bytecode": [], + "datastore": [] + }, + "AU18uSoMKjS333cdCiHzaE9wuDCCZGVndBJkbrRhLD1vbXiQoXLW": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU18uVWrBMLjgVb8WjkzyssFXFN78Mszrii3ujyyjPZnJz5sFzR5": { + "balance": "93.485283859", + "bytecode": [], + "datastore": [] + }, + "AU18ukcv7NBeWfGYJiHTWhKD6eWd1rmAxo4SKi956PYEtiAVL8pE": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU18vLmr2K7FVhADJ7YAnMW2Zha4c8mpyAPdPVqu3LygZ9F9Gyt7": { + "balance": "5430.206440709", + "bytecode": [], + "datastore": [] + }, + "AU18vaUmwnvsrs6tDcfUuPeT5J1m7MqvtWQdTYXSq36bogX9U5VA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU18w4tAFwYt7CrSXjKXQP1vzUkuq5b77kibmy2rQf8QgZAnpGHW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU18wEijnaReuH9YArEUygWdPBoV751isMfXGNB8iMERPHNC8AYn": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU18wMSnVt3j1MwKQmPyJGdLan9LEs1DTCnMpN7cdJn9eXVC7VLh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU18xH8wTB6GkpqpPAcCqnH3YT7mLvJV8T2dgGZwP5kx5GYwkebK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU18xfVNkx7KjqQWFpUHk3ZHKhqSyttc4DJMQ1AKNWhLYRCdhDm6": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU18xnCPDS5kshrSRrpKtnWvvovqwLand7vEbiEPTDJUYF2KHQw1": { + "balance": "2709.845131115", + "bytecode": [], + "datastore": [] + }, + "AU18zyXWkhoE6g8FyLUppGU9FM2qfARwBuAT4oqxgbS4Re8R4jBC": { + "balance": "2178.005854100", + "bytecode": [], + "datastore": [] + }, + "AU191CXSawWK3e77GyQYMw5jgwZ3zy8fQ5vBpsbFYYeFaH5oxJjF": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU191rue7ZMF13ZQmYHFJmXJhYJmwsWu4cocBDsbsBu9UnW3vUHG": { + "balance": "1547.676023808", + "bytecode": [], + "datastore": [] + }, + "AU1921YmKmRDvrWRZyKxjnRDcgYXQVwvjs3EUpnYabkTwqzvMyup": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU192DMYLUHiHMvbUEt25qEXRtyTvrAxCYioRFSaynzY9agcd5cL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU192K3uasdZCFDqaRrng94HWcuaQNbKdPSpneGLbVH2uDmvCzsD": { + "balance": "783.658956929", + "bytecode": [], + "datastore": [] + }, + "AU192RdF182uHHEuvMWVexpzq1pTWXZWVZvovu2DbtK9YmdB1GGP": { + "balance": "3118.700926516", + "bytecode": [], + "datastore": [] + }, + "AU192eWm8mVvJWr57esvveZisJdFu958UTqc8RPBcq8JY16negmP": { + "balance": "1321.216264430", + "bytecode": [], + "datastore": [] + }, + "AU193Umyhw4JdLH2VxCY346yP7kY6SCPeJAVGyCoqZC9cv8CE7fz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1945hMmgL5BVdGYnUVVCUELBNUmj1qbQWDfbndkytv5Bs1HTrZ": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU194SMwzLjsKYe7tiZp72ty8nDBBZNg4gjpfrXyyPcHx12DBBkQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU194VsXETkZqgY9QC6f5GJrkjRMwjW43ZCq9a1XxoZWWCQ5pDTi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU194ZPeNFveYUtgoU1chmP5rZyyCdr3iCUkKmVPxvYwf5Xe6Mad": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU194qesqNXq5smL9pkA76WgumxDDE629rUuQLAmP33cmknmpjqB": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU196LZYBM4ub7g7wgeqKEcj9sbWPtNhEjRe2GhpqohGpu3bKzPE": { + "balance": "585.533416898", + "bytecode": [], + "datastore": [] + }, + "AU197TSjpbWpfkDAnjpidisTvApcDe6nS4H1M4ghisnK5aEdSCc3": { + "balance": "1882.317819307", + "bytecode": [], + "datastore": [] + }, + "AU197nSvLJ8MvTPctRYJJHvQ6KawUKFaxXRg5dDaK2pwtHamPX1k": { + "balance": "1023.351179346", + "bytecode": [], + "datastore": [] + }, + "AU197pi2umqwE4G8u1VCJJgiAGhc4AtVBcYZ4ykBHTX2SZUoB8eY": { + "balance": "3744.398333303", + "bytecode": [], + "datastore": [] + }, + "AU197v3avjsB7Fm2EWvz515UBNRGCafp3nBC5b5ZByckxqRw23Mz": { + "balance": "673.573443521", + "bytecode": [], + "datastore": [] + }, + "AU197zGCEWyat9fzffaegbr9AB56MBUtXsXzctSDddqPVprFPWC8": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU19828DMNRwHaST4utKGCotidBpg9xoQLFnaxeBLwg8MHwWo3kN": { + "balance": "6138.270470498", + "bytecode": [], + "datastore": [] + }, + "AU198Kq1BvXi37gaFKhMonXxSu8fYQgpJ45jrrrMzZZcwdiTSV2n": { + "balance": "870.724929773", + "bytecode": [], + "datastore": [] + }, + "AU198SRdNXsdyAEDumgNe7rTTwd9n6tEotpEkBJrmnQ7eVaZZxna": { + "balance": "1830.471660090", + "bytecode": [], + "datastore": [] + }, + "AU198ab1693E1Fe832PbjvsYj8AzUNeW2KfhLP4rjNHFq1XVsfKw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU198aqiFLWjZTwwxybfGKAc61FaBw5dqkYve4Y6gJw19Bq8aMwB": { + "balance": "579.644941727", + "bytecode": [], + "datastore": [] + }, + "AU198ssgaaWuCHiTfFry19za5Q9gyZcNDmPV7SWLbrg6siUiCEbM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU199eGqqoDfsSH4sExKbxrpRZykEtzXf2hkk3JHVPyVjZcXNicZ": { + "balance": "1448.337069430", + "bytecode": [], + "datastore": [] + }, + "AU199mkrX5NwoZNzTGAods4XifRfd6BzCjxrb5fGzHgrU4sSiZVF": { + "balance": "9.787919111", + "bytecode": [], + "datastore": [] + }, + "AU199vn2dyD6b5jw2YhPh6y2bcuWQ91NN5SXDCyqQgWp2BmJ4sYj": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU19A4CE1L2xkwn1rpsoShEXv4jrT5ns3Uy2xEcLYUp9MUGyJPxh": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU19ALeT9bskTCyaYDorgJmKC8V26XXioEuoM8MH7QFLb56toLoD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19AM2QSwnYgYFkiQh9pmk62DszJhQ9AVgHvGTJwe5MyqB4dC5J": { + "balance": "1125.348678958", + "bytecode": [], + "datastore": [] + }, + "AU19AV9LqdftosnUKpMbraVcFscnxVMGGAEAqLzhrQkKoqYKrcXe": { + "balance": "97.255912790", + "bytecode": [], + "datastore": [] + }, + "AU19AqyXXMQH9ZiD1Qf5frTfztFPW3X1GAb5ggXNugp4i5S4j1Zr": { + "balance": "636.264767620", + "bytecode": [], + "datastore": [] + }, + "AU19AtnBSzBV3aCU729u454kfqguy8njETxx8pZdx77nuM4zoJ8u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19BpDcJWcwXm15WBrCpS8usv1WPmXRjyNSwJzUsuPscckSGZx3": { + "balance": "1473.860688195", + "bytecode": [], + "datastore": [] + }, + "AU19CYwCm24aKASgiaNV26pKTxTdy83Aa13VdU96azbrN9RfWz5V": { + "balance": "1903.764292438", + "bytecode": [], + "datastore": [] + }, + "AU19CrH8jCFSVbmF2mk4MkgjrLyRXPgZqutr2SSJtt44XhJUKc5B": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU19D6uRqQoRUxjbF9q3vfDDgLyZftoCATSU64xLGYWo2r4UN3iy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU19DHTM4Nh3my1F9oGCyHox2iPQgZMwirhoEeD7KxTpAjBBKbxo": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU19DoSA6ReGBc115KRefSrL6jfgKZEwgjT5LbBBs7HWU2Ue6h5A": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU19DpKEL9DGtUYTpWnTmhSFjMdSEDY79FxTUK5haj6LmCFd8aiD": { + "balance": "713.210751460", + "bytecode": [], + "datastore": [] + }, + "AU19Ekht69A2x9Y755cztcGXV1Yu2Ma9JFkagj1jZgHv32z2xSse": { + "balance": "83.761058184", + "bytecode": [], + "datastore": [] + }, + "AU19Eq35ZVYhLNjtuCmJMBuf5jM9cRY6d1HrPE2uJxxzdP5KT8kZ": { + "balance": "4870.700707008", + "bytecode": [], + "datastore": [] + }, + "AU19ExscdcWJky5xf9AcbsdAwkCfYvVnB9XeVUs1eccKhRDF8ZHd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19EzVywfPPzkmZ7LRWMppmao2jdhquqs8iyCN7Y26bX4bESMeJ": { + "balance": "540.484273464", + "bytecode": [], + "datastore": [] + }, + "AU19F8QCrrjh1RYyA2KTcScXuT9L7pX7SFu2UZJpuESbno3JGKU6": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU19FSpuM8AWztsSZ7LiBixpdpXUJuWRzn9pBRrc2PPNuVdhqxwf": { + "balance": "794.363690421", + "bytecode": [], + "datastore": [] + }, + "AU19FZ4sEwpdvvbTyFVUrHpueV2Va5zkTFZMsZxSg5ob9XyR6QJD": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU19Fo7LuASksikDCMurikbYob4EmnWSrAE3WwSTM6b8CStc9D6P": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19GMh9qajw4Vwodm6vRZFhbe211LNtVedo2LZKKYCcgS9GXEyQ": { + "balance": "742.446841318", + "bytecode": [], + "datastore": [] + }, + "AU19GNTh4DWpmQ9uhNf192yza5qz6aqcuJrAj72oREkdnhSB5XHW": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU19GQXroMSH2PGFrzPqXkhynPU2xzVyhRedd6R1o8RLhrJHpUsA": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU19GWEWDQu2knSCSsiVpbu8c4m3BmnwNXnXJhaNFzqzw7q6tnoH": { + "balance": "1554.489563126", + "bytecode": [], + "datastore": [] + }, + "AU19GqdsakomYGCwu4tQY8W76meWD8xECgBgGAUaPB1QKWzQaHGo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19Grpt6bcYwx3VPSwR52c4ogHqb3hvvF31nJxajnN12W7L27L6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19HN3T4szGiXFCyKS4Kv7RGTYTuoZ6Vm6Tuw4sKmM3CrMKdp4F": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU19HNLFdPMnmHczUukmJKUR5zaLheAXvRF4WNQwG5JPGwB4R66N": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU19HT6ux5SrFtmNoA5u8GdChmiv6P7yMuAbwEkMXtHjQakhJhMP": { + "balance": "2344.400069359", + "bytecode": [], + "datastore": [] + }, + "AU19HYwo1axwrbNFaoCcgW6bNK5yhk5DTnz4WzTyoA9r2X6WV1Kn": { + "balance": "1339.217884724", + "bytecode": [], + "datastore": [] + }, + "AU19HZSbCo2pVdQ46BRFXKFR3T7SxWFVsYFxytLqZxtcKA8rGzYo": { + "balance": "955.607123264", + "bytecode": [], + "datastore": [] + }, + "AU19J7rfk5pYcXcopxFZfb8EXfuUXGdraK8MPUByxhQfKy3BtA5u": { + "balance": "2080.427075539", + "bytecode": [], + "datastore": [] + }, + "AU19K65jpzF9tN5uwdgCaoyxeuUbSAYDZUbNyEgFi8Paq5FDXgNS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19L519JuaoMUAkQ42NWCTUyLXbBzTWRxsCdN3CbX2Yew3kDe84": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19LSYW3iLbr2VYcjgT6F4itoYbDPYDfbj7CRM8akB5dCnUgizJ": { + "balance": "1551.793616498", + "bytecode": [], + "datastore": [] + }, + "AU19LhhtjGQn1F6rqN7qK99uWPu3odZ7aN5iyx1FW7rZ4H4w4v3P": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU19N7ssXzfGQ8w9w7La1UhbaCBmZi8whiDkyWoigSpJUFXAKdm7": { + "balance": "5093.596964339", + "bytecode": [], + "datastore": [] + }, + "AU19NLEkwXiDrvrTwRQWSqq2oT8N2rpzxM4Wqda6wiGLkzpo6UpE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19NW2MRpz2FRBzCEyHmq29Snii8uGoP3Qu6FK8M5ogU3BvnyhL": { + "balance": "7016.569912852", + "bytecode": [], + "datastore": [] + }, + "AU19NXCpasa43742TzQDvqnWWUjprXxUbqqLjPF1A6rWkLiitGKs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19PSjDsZNRKGfsS8Fr1JtSSYMAJzcARAMrfWXKNWT4coqNBGVg": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU19PeaQ2ZaGrb3aYYjuLcdaBAzeM4Bx5QXkYPJjwcLFKcgabVd2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19PwtjS25wdr957tAP84GaPkgjQfbq5SzbsqqstF4aovp9WNi3": { + "balance": "767.442580633", + "bytecode": [], + "datastore": [] + }, + "AU19QHFRthp2CE5Sj3jpVhimgjU8zZhymCzTbQate8W9btH9fyZN": { + "balance": "1896.205534093", + "bytecode": [], + "datastore": [] + }, + "AU19QR5mwGgUZrZRi1ENTkfdEuagfnxRx8DLw915fVccNj9dc4M8": { + "balance": "1803.923548898", + "bytecode": [], + "datastore": [] + }, + "AU19QmjEt4i8LvsUgQ3wmnmUrP5oAHr4w2pS5AiUTczdALeT368i": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU19QqJuUND7XeP4QBCq4jocgBpFZKSZNk8HtrSLToZvv6GRQ6e8": { + "balance": "1197.376538652", + "bytecode": [], + "datastore": [] + }, + "AU19R3J9vtgB6kuZwTagUfZi5f61JNe7vX5t8g36gGA7TdGCXw5S": { + "balance": "1094.762220595", + "bytecode": [], + "datastore": [] + }, + "AU19RA4UjwtkJqRzGBoM3wGs4NEmUJBgdsWyt1m8UfRB5RZvpvhP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19RCX2AyJ6MNF6zprdCZQvDfssLnhNkzYfGVV1r9eMo5gPoYbJ": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU19RPBnhZRy2i3LeoK5oNKkNb4QAinLzB2sbtm6mRTcSkaYZnHg": { + "balance": "1907.881362424", + "bytecode": [], + "datastore": [] + }, + "AU19RaQ6no5mwCNNw2C454DWmtMKAKiGWzzrD8ySKq3Q2Xzb5U4w": { + "balance": "2513.816395564", + "bytecode": [], + "datastore": [] + }, + "AU19RxxaM9cNE8CSXUhnNv8jHwdUnNbvfEEA6cbBi9HCy2DameuD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU19S8cvj2wA3UG7uvg6uhAodsVKNSEuGnrUkfHKaRcauohiomo3": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU19SWBkzG7nrcJAvtrz1tF52UegipQhHs7B3qzsRRdRYGNX8pD3": { + "balance": "1407.805712224", + "bytecode": [], + "datastore": [] + }, + "AU19SWLgmjyyvmE9hvQnCiNSJr1G22RiK2XbZa4nXmg7928mEk85": { + "balance": "1128.976546976", + "bytecode": [], + "datastore": [] + }, + "AU19Sbr5DA9URvFHSgSTxV3WYaDBUK2ePvFLeJYc89cesATS8LZr": { + "balance": "5241.925009676", + "bytecode": [], + "datastore": [] + }, + "AU19Scf6pzbD9ApU7zNoFUY27oi9goa4YJ7Sx5vhh3hcZM9msUSW": { + "balance": "2884.585544000", + "bytecode": [], + "datastore": [] + }, + "AU19Shg4yemaYCnRLXoeBZ6oGohSTtbf63LDjfWUDzEpDpE1UY9W": { + "balance": "5217.512745696", + "bytecode": [], + "datastore": [] + }, + "AU19SpgfoG46XVRYDbz4GbVYKWrEJZa7dnwfguHuNEfEraKFwZey": { + "balance": "1932.504744350", + "bytecode": [], + "datastore": [] + }, + "AU19Ssu8pQxgYKGWFdqg3GP85U7y9ajcmMvv5oQnBoSFU79Y1d2J": { + "balance": "1893.681007756", + "bytecode": [], + "datastore": [] + }, + "AU19Tje5Xv6on7vbo8H2Qkyiq6moCdD2HgNaU9TnfbcAu8GbrEdo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19TkKePnXEhB1Q1cpXRAetfEJcYbGfvbdQzSSJQJMkb8PALFrW": { + "balance": "172.588075179", + "bytecode": [], + "datastore": [] + }, + "AU19U5zxERkQZruihyq89JDc5hGRgmfBncJRKzMJWvXcCMzzmg8m": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU19UG4pVam9oPkKgGDa1DYxn9EDfQ3bhCNMkrb6GUsUtmXrkuHc": { + "balance": "5137.781043558", + "bytecode": [], + "datastore": [] + }, + "AU19UNikxTus5rYNgrjeE8WD6KWr5Ko656NvmMxHxEGZ26b3dJRq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19USR2anwriK5HaVPPMjBfVvcWyvw7aisf6RmBCj9iDPaVwnjU": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU19UXXewk7CesN6ydYBoW5HNH4K3sYrJAU5T5ij9gXiEpzc1Day": { + "balance": "1459.359173174", + "bytecode": [], + "datastore": [] + }, + "AU19UfCno45gxn6L9kL6iG2ZQhVG4mNQzKnYKSW4YhFLAvEu9Tka": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU19UirKhTq5cK97QrT2rKdLfiTwE2zLkK69PKqrKfVJQ7xy66Lx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19UvNtLaqA23M2YKgpEfxhGqBwqZhN57iWeGDhKpYVHCK2xvXs": { + "balance": "703.450138572", + "bytecode": [], + "datastore": [] + }, + "AU19Uw1s1mY7PCWm737RGRVNPRkpBGnV61u2QTMx1V9Ma55Pwa7H": { + "balance": "2780.295018053", + "bytecode": [], + "datastore": [] + }, + "AU19V8Cumqk1Kk5gn92V61ymN86PjEKTYt12Xa6Tag5dFVeX91HS": { + "balance": "2164.819394187", + "bytecode": [], + "datastore": [] + }, + "AU19VTEPuScqXxUzNW1CviAHKABiR6YxZcqxVVoid4Qx5Dqk4RYk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19VmFcY3CXoEZFzN7UAxPkx722sV6XeTtuDEpdTynePZhPZeoe": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU19VsVcwsCaRcnYYcgW172trDkheojgbxMtFATKJHBWbwKMhjr9": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU19VtEmuQNDieBJGK42fy7tuas8SE5WE6Ku4otCMgQBoinhscQs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU19WPY6wz1DiqDjP3NE15VYRkyYJpfuC9Qn71tU4fsKKFpDzbXV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU19WuaneKazNrDM4wrCMhe7HuezuoP9ZkqcAcLEqowANz9aD9rK": { + "balance": "1517.848602695", + "bytecode": [], + "datastore": [] + }, + "AU19XGyPad1Pqnt1719sN5kuoftmSiGkJQAmswiseR4bNranJM41": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU19XfvkfP2BuPVEofVrYwmrd4z4deX4iDWiZSz3TJnME49e9Cce": { + "balance": "576.125667045", + "bytecode": [], + "datastore": [] + }, + "AU19XqsMqsQcNUJTXGtn4b6ct2EQVJ3yfHHhy71b97HLvZcnJLuG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU19XvQrUpb697yPekTb1eS2XAyEcEp8a2kP6LP3bd3Wtvdj8ERa": { + "balance": "1388.467687681", + "bytecode": [], + "datastore": [] + }, + "AU19YEiCvKaYKgPcNvWpHn7jK5BTT9hontDnu1UnPkb5wbsxcKsp": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU19Z66798E3srGY4Paz1uYxkqxzQK5YYgwMohuhtbBQnEmuzuyR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU19Z6VpU1DafSDPpuyWUBixwNxddzfsurvLcFGvWupr7qcAu6uN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19ZSQJhtr8JeKGA7zPzksF6iC7FB9seYMEHGiDnCahCQR7GLbB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU19Zo4vviHgaWYpXzLnu1geHaWxAjYDA8EJAun3irJ3ZiYcLew9": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU19ZqUVXjDa7zLFk5BQh49VZJ2AaE3poABJghuqJ3fmaheoJJmW": { + "balance": "2029.284045530", + "bytecode": [], + "datastore": [] + }, + "AU19aSSitWLqVwsQSj7egRWEVXjmQsTErnDocLwsfGgFgSx6SnSN": { + "balance": "825.067336045", + "bytecode": [], + "datastore": [] + }, + "AU19bYrXyT3SUBqCwduvYUQkba5oy52wZKbYVRNQU2mjzYPcBVWU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19bc4ngvEBj7bXDzrnAuG5NfdqgUbsoR6k7JQWoGJjAstpy6x2": { + "balance": "1719.301898022", + "bytecode": [], + "datastore": [] + }, + "AU19bnKjrj8ZVKDhBXCafeDWXoXWhixhvjPXP99NV7VJfJWXiWRa": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU19boWCyWp6jQMZNSb4qxdpvskNrWvMb96topFBjFsSb1dnARkD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU19bras9GmEgSrvc8D1H34gXKTGqXfAj3MPbT5DbF4aG2mQYn67": { + "balance": "809.694822647", + "bytecode": [], + "datastore": [] + }, + "AU19c28vHixFfC3vLT7qyhuyGg2pEP3XGPhgMermBzRKCerxmyUr": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU19c5FCtZARD9F62WScYp1VxxUrCB3GvhmGw8eCKwJwnNGFjDvB": { + "balance": "1006.019639293", + "bytecode": [], + "datastore": [] + }, + "AU19cMiZ7iTbmFUTuv2kNyqkN4qRBJrPEpXmSYc1wjXBPPhWF8SC": { + "balance": "1951.367946080", + "bytecode": [], + "datastore": [] + }, + "AU19cZkW9DCqss3XqBqmNX8WdzxP99iiZPfZgvtCMN8JLciCb38x": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU19d9mMHiMaiATLAniCSAji7T7pXU7fsL3X2YgbQ3Gi56ob3nY8": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU19dCyYhyF7rP6wRwSFeg2kUfLKqJjrfchB3EdkaFpeVhy8XDpv": { + "balance": "14.008176665", + "bytecode": [], + "datastore": [] + }, + "AU19dg2GXcVcEGHf4hTGnyYDQJTtWNZ6Kr6ryqfa9mVnr7DwD4Et": { + "balance": "916.781888885", + "bytecode": [], + "datastore": [] + }, + "AU19e3F9a6ST8LCDqMSGDSdzVjmPgzxLxRPc2tHuvcUUw1bxUPBY": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU19e6PXcti3iCTD6xvMbqUC9t9pyopdh3jJ4CR5uohLon8nYVfu": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU19eGpy9py9wumsyq1FKa645RZ1TXRe6w4pDPD8PQ9rqoiQhXVJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19eRfs9zpCi4JeiaAYpgAcDqjA47qhpQZVL8b74XwYGadPRBCU": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU19fztrXFh6dHjmqM7xuE9RvVzMGoWbD4V7wAisfpMQSSSMaEyX": { + "balance": "2454.716378092", + "bytecode": [], + "datastore": [] + }, + "AU19gATfLAUCBCGBqgvy9Nfo8iEfrAyuoqXxJuPP98LjTAuPRJp5": { + "balance": "1680.538199243", + "bytecode": [], + "datastore": [] + }, + "AU19geZbk5XgcQzHLGDspMwHysqcWSoFLLCtK45VqYm8sY78CXGB": { + "balance": "651.233698677", + "bytecode": [], + "datastore": [] + }, + "AU19hRvfi3qMraV4Qy2K2F2fX7CjTbWaoANAwLKkNJiYxVrbFZFa": { + "balance": "5271.960557927", + "bytecode": [], + "datastore": [] + }, + "AU19ifEcePg57M6ccnRcL4BN6rNiLAQahqpRSvr1VpgeAKbVXGrz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19jDWx3PKjJRfFqNACgLPNYr2JLtrW2fgP2UoehizE2YpSJBsk": { + "balance": "1010.700656062", + "bytecode": [], + "datastore": [] + }, + "AU19jJkh1YP7MN4vit1XNSiMwLoFqfhCNVzu4thj1mNnRJX4fckg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19jNyRgfChLZk7yeEdHYjDswz48USEUfg3EVaySNYrbhLzFKje": { + "balance": "563.934732057", + "bytecode": [], + "datastore": [] + }, + "AU19jXNtoiA2PqKjSbTxTiL7b5McS7bvKiyh9NqKVAc2UJ3FkScK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19jgLpmm8qEs3cfnzzpzvaeyEQUjx2KZHBkUJKuvwrdbdZXxWs": { + "balance": "3293.777762790", + "bytecode": [], + "datastore": [] + }, + "AU19jwzQWy3cQtmnxqjA8CPQdff63Bxgf35SYpEi2iPhUGpGGz9d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19kVvYv1NGUxzMF93LZEf8C4TN8rUrCJwMaJnedScZp8s9ksTy": { + "balance": "2361.412548496", + "bytecode": [], + "datastore": [] + }, + "AU19mNjr5DAT7a6JxDHpUVNMw2Jj1nUuiAeeTxrv4HaTmWCAhiFr": { + "balance": "2002.170020177", + "bytecode": [], + "datastore": [] + }, + "AU19me8VNbH9nyjTf8koXFbGsUb6b7VE7JnkRZEawsAofu46J3pd": { + "balance": "2928.889089605", + "bytecode": [], + "datastore": [] + }, + "AU19mjr7VZLbx2jyZxGaxu2U4cewg5G6ctyNtLTR6sxTYBcQ1ipD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19mkZCNbpswMEb3c86UiPCiAhmcF2NZY9NNnGs8DqQNSWmTdgT": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU19nJFAi5C9Wg44NoB64vPX4K3D3zPfLAk8LzKvjGWRjGBatnU2": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU19nJUchijbWQkybhVM43MquyXCXamc9KTtoRmtHA3KWS2eeqgV": { + "balance": "506262.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19ncpefxxcDAavxUdAH8ax5foYknYmpkdj8D5H25DJnysw75t3": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU19nuvouCDkb4SdrzSZB8STw1qJpLKYMHfzrHgifVnvSyEBXZ3u": { + "balance": "1668.058391671", + "bytecode": [], + "datastore": [] + }, + "AU19o86GpqshqVRLRgea8oHXMGrV45iMRGuXJQd2k61LgmW9LNxH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19odZJ3KZqFFtkqakBe5e5MEpzCJQ2PJAxaGSrsYv2fP8PCtMY": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU19ogfiRFrQ7LiLBRvxkehi3zReZKwVGFFNBf8HkiDULX6bFMqX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU19ovCvqw7XGdU6WVu4x1AE4znYhcHu3s9UarradJYPgDPrDng3": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU19p3BxTiHESXGymHCHQWdTMoikGyvvsN5HSyz8vYbP8cj1sWUp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU19pcj2KFJatKnALDrE5q3JkKWD2aHGTpsdsA8z4mKrNG9gACXX": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU19phzjtfapcpikYLx2Ueyw6AJ3rzZELWCo56MXzeJk3z4RZJ26": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19ppDn1MWhvVtLVK6VpY9woByao8ujkMhmvfLNdo9xpAxXdEtk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19q27eR8J9MEbqq4dQ389pYHQ4PEuJVPrqWfAof4F8ewAFzSHZ": { + "balance": "121.287128713", + "bytecode": [], + "datastore": [] + }, + "AU19q2fGC6vbP8VP2FqkmmbAC9d1GKyWcLVdcSDFs7MxJ97Uc6yg": { + "balance": "1446.743974111", + "bytecode": [], + "datastore": [] + }, + "AU19qJnHKHLnFUJBmD1sQajgtLCocvy7KgFWHon1ikL6qHAT67Cb": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU19qvBqh8Msgmn7PD6otju1wQZhkWHVKEWK98D3XfhSjXo4qtzo": { + "balance": "825.660866869", + "bytecode": [], + "datastore": [] + }, + "AU19qyphY6zjmb9ubUFopcKLBHYP3Ht3HE4Rj1zh9YaxF5n34aZc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU19rDdhiXWSty3tRveeLbDcLhXKoQ3AHqxew4WFdBZw2ZkfNz45": { + "balance": "1366.592119334", + "bytecode": [], + "datastore": [] + }, + "AU19rJUM36gsPyaFCL1k9MDtp3NHaGKa5PHTAs7N4iDVmMfnf8H1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19rmPj1qQySdSRbN9MVcA7DHnw8BkVde5iYxGoxEPRfAZkzgww": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19sSch67RNvgEhoobUGg5ro2D3J9WbAL4taYGLmD7trRVSGSi2": { + "balance": "165.157737914", + "bytecode": [], + "datastore": [] + }, + "AU19sT2tQjtBTSerxPi3QHSpEMeW4Hc2TVoiUQQrv9F7YCPxNuVS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19shh9xM73b4EVyk445vDg5gZnbt7vrcHxkxiKspEot9AvNv9N": { + "balance": "2268.252443713", + "bytecode": [], + "datastore": [] + }, + "AU19ssuay5HPymoLE7fc1y6GCjEwf56Cc5cbUuYTTFhWHXTQnURo": { + "balance": "1999.444969855", + "bytecode": [], + "datastore": [] + }, + "AU19suECyAqcD2KJv6o1RfWwhS872xgcPsEnrAMQLQLVhanwotYd": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU19swvwXLkzsBUr6Dsb5cBDCQWdo2HoBh4UkLxySVe1fcYPdaNj": { + "balance": "619.051446810", + "bytecode": [], + "datastore": [] + }, + "AU19sz2evLpkwk2A6bqvJXbG6mx7tysXbcvACC9DtFtaN3ird7uS": { + "balance": "3164.851208617", + "bytecode": [], + "datastore": [] + }, + "AU19tSw9YKinTKpsRjWrE3SZCwfsUgx8gfk6eLyH1WpCmWQ3oiNL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19tYqAXgXUkDGfofFfvEF7XQqVnfRqCQm5FncYDAPE9ZcjTW3F": { + "balance": "2123.727653226", + "bytecode": [], + "datastore": [] + }, + "AU19teS3zsiLETvaUEb2ZWjHfPhWywiYUCpSVRSSoiMmXJFdFxX2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU19u3MySZGPXxzh4kN43cSSqwZjnX2euvmsAzcZdTwPUyJEekMe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19u85GH4LAya68ANiioRTgQAzNsWADwnFGaemNB3Vc6Lr93uAb": { + "balance": "1392.963742517", + "bytecode": [], + "datastore": [] + }, + "AU19uUBDetTBXa7hpNJJ88RQB5HBYuEfuH3E3uy72ergE1NWHGop": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU19ubu84XvTCamjEvBv92xsSfK5jqEPq3TiTkTUsP7QA5VM3HZ7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU19udyVTbmvterC6kBpAwYqHqpXfKkg62DNKbCUMfzWJhLNnuLa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU19uy6Mt8hp7j1zhTahF8HWe6KGJWeSimUoDrVBGAHa2YmYxGdq": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU19vLqkrAHndkAXyeWzHi8NVfABGbXHeHakEfnV2oq6mZ36W6h3": { + "balance": "747.177062519", + "bytecode": [], + "datastore": [] + }, + "AU19vkGbha5EpGSvwFfMpsMhep6agzGK8sC9tPXbJd8XFQ2kDZHf": { + "balance": "1712.522280580", + "bytecode": [], + "datastore": [] + }, + "AU19w7ypQHayWVrxrAHyVfc3LKzNzEZDTv2ArNwf9q6mbEAyp11C": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU19wL3qs7ouEEaUCRWbcHrDkAT4pdacLcZLUFuxXABfjPCHKi72": { + "balance": "1206.251118812", + "bytecode": [], + "datastore": [] + }, + "AU19x16A7nQmTbgzLfgFCDVYtao8rxsnCjCgSE4cH4j8hkZf6ViN": { + "balance": "3208.005504640", + "bytecode": [], + "datastore": [] + }, + "AU19x66HJdaeMqjSY973CkWSw7gEyzUM7XbRJjPZM7Zff2zoda1S": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU19xRwih1ARL3uFfhYDr1yxkVFRonBqBSdcFjNpzsNQrUw3T6Zq": { + "balance": "21.343077116", + "bytecode": [], + "datastore": [] + }, + "AU19xUQTSWPVxrAo5HiaVzZ3xkQQxQJCF5mANo4j3DDxhdrwECvS": { + "balance": "3554.544743260", + "bytecode": [], + "datastore": [] + }, + "AU19xiiX6MDuNcd9XqoLpzefpRq3icEwJWGMGkgKyjLgWeFdtjSr": { + "balance": "1999.634420620", + "bytecode": [], + "datastore": [] + }, + "AU19yA9aMZp6UwqmcCZ3W9Y4iDih9F69fw1CY7VxcRG424m8MXyk": { + "balance": "2611.507677096", + "bytecode": [], + "datastore": [] + }, + "AU19yRBSyzfAHSkpmC3bSZfTLjKYdG3NxizS6cLZ9Y8fJM2sDdw1": { + "balance": "2845.550128075", + "bytecode": [], + "datastore": [] + }, + "AU19yUvHs6dX8snbbd1TuhfCZMu138zyNXgBYLyT6AKgU2h2Kt4C": { + "balance": "584.931035369", + "bytecode": [], + "datastore": [] + }, + "AU19yhH4tQJafUBvbgZYbMAx43gfGpfNs8e7Hzyi9YJWBfjRMqVR": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU19ykqyKHv9ZsHqkxoznYZQeZrdiLF4qnHfyAfGFufsVvMThUNP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU19ypbYh6dCho7BBk1Am5Ztnw1AVVH7ApRRoFuvKnwnA2s3bwpS": { + "balance": "2251.715023565", + "bytecode": [], + "datastore": [] + }, + "AU19zyeXy2AwiG5XvU87AAjAVvrBDdAQyuEsJhftU1ZXYinv2NiY": { + "balance": "1465.830997860", + "bytecode": [], + "datastore": [] + }, + "AU1A139buEH16GXLGqPu6TH9KtyFRrV2yVg4YqDjDVkTDwM2gVFa": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1A13uqu9HQzwKMQixNCL4SUHXzFDGRT7eaFsDSTiJJwMZBKkxB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1A17TgwdjDKtKqxggiBzYrFHJyKov63AjeBtmzzyC9ZFqoy9GS": { + "balance": "54.913691325", + "bytecode": [], + "datastore": [] + }, + "AU1A1SyoR4Y9drrgokNEBUCCDFPuS32Uuw73PDGWW2Z1vnrDLSs3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1A1UYSkRFiRkPAnEmjASGFMXFt8F3BLHqd3UrJsKui7ZfWnDXs": { + "balance": "2060.425590921", + "bytecode": [], + "datastore": [] + }, + "AU1A1aCr4Ffqo5118ihfTa2mZjiMaxeFHxbHq3evezM3B5PdHtxo": { + "balance": "2412.887459618", + "bytecode": [], + "datastore": [] + }, + "AU1A1sbLTxQqAkqta83UFwxb4cbYSHCq3wxhGpXHgPfFnpaKWvFK": { + "balance": "3626.482140857", + "bytecode": [], + "datastore": [] + }, + "AU1A1w8xpfMMEUbT9CxGzYGUmtBQpVNzpDseAznPLvjZ6vTWXrsf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1A2JzegDQWH1YqJwJ5pxdh3GDif9VHoXGGWT1uJaBCqfa8gnhV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1A2UqsH5uEPccTNBnnQdeKQudpwKD5S5PNeCWXa7Ld5NP7bwDG": { + "balance": "5030.915476135", + "bytecode": [], + "datastore": [] + }, + "AU1A3AZYdvgquQufb2dfkPjqZJY8BwJdR3NAwpWQba1PhF55jmoa": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1A3T2MTAiPokERa4DTJr472UiGeuPJawvkjyGPHP9nFn3csdDD": { + "balance": "2773.876149986", + "bytecode": [], + "datastore": [] + }, + "AU1A3Xrjrquit77WwZmzwiwQdr6orK2qTRADiWgtWjHT8doEtxrp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1A3brxXszrmyAydMMMe992dVxAa9LmPDFgJsfvjheMXb7WiRaJ": { + "balance": "588.214781873", + "bytecode": [], + "datastore": [] + }, + "AU1A41NDdEfEDhy3AEG4dwTWGdVnDExhtphmhvoXbstMeZD4PGxs": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1A4RhQwWM7Tead6KVnxUJ9Zryhp4U9JKTyFxAdxgBZ6BjrMAiC": { + "balance": "2516.535808323", + "bytecode": [], + "datastore": [] + }, + "AU1A4WditnXR6k7X7MUveP9crBPNkzM8mJrsJd6iy7U7m9xtF7pk": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1A58QMaZNVwLh8JGUJVyLkwczzZVkHqfQdHqMVfxSMvstuaWnx": { + "balance": "1665.840189863", + "bytecode": [], + "datastore": [] + }, + "AU1A5rq9GaozY8ZAq3hoRXpZEKPXgFFDex5YAmpYw68E9Pwgwjwv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1A5vJVmuJVBDoau5NRQtGouYkrMbCSxGyj37q58Z3RB4dPq6Pb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1A6KzKUkGVpMLHDp39s4UDrxXqMV3r77gBJmEagYk27zxP1bHd": { + "balance": "1483.589938659", + "bytecode": [], + "datastore": [] + }, + "AU1A6R9qDV4teVsYtDrLsww5ppWFuAtrCvRQFtWjfLXJk2L6fd6c": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1A6qEYnmeTp82iC9eoPV5zfUqsrtrDKXVrVU2PEsz9ae66stAH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1A6xJ8CJaiyPj7XXMUUtHoDFaae2gupMnJaAMbNXXCkkaDe8NN": { + "balance": "572.102577472", + "bytecode": [], + "datastore": [] + }, + "AU1A7DhFk6m2on1RitgpxL2Af97D2hnueH2Vm82aN98D9yecL8X7": { + "balance": "1702.088383210", + "bytecode": [], + "datastore": [] + }, + "AU1A7SFnCbTgrsf7vEgXrLgDDQUMRV27hMnvnWvyvbuDZcbfePE9": { + "balance": "1484.468421143", + "bytecode": [], + "datastore": [] + }, + "AU1A7sQZz8R7mv81nZ7Ms2W9E46AqzGSV5uYhSUQtETxTgVySN3V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1A7zKdLwcGF4A4cyfvBnJYYL9r6DLHM4ifagjYj7qdJsBQiawQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1A8DeyvvwA4Mo4w9tnWEw2E9b9KegSfvPU1wMgBh72hwJ1zmQ4": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1A8E1DC2o5yoBz4cKQid6p2ZUAbBSvDg41qhxX99LzpVW3LxBa": { + "balance": "2860.473251777", + "bytecode": [], + "datastore": [] + }, + "AU1A8cuYHCVhCEMbD5YrrvfZ9hvvV5rBd9qv8jXjwVq6nj5N4wdj": { + "balance": "756.902080549", + "bytecode": [], + "datastore": [] + }, + "AU1A8cw9UCFCHuYVwkTjSHAGsWYvxfA6kEAN9SEwTC48pE9jwRhD": { + "balance": "540.218637979", + "bytecode": [], + "datastore": [] + }, + "AU1A9D8oCcmpy8y5jEJN2NFgrvbdN3FZa3tg31hBT6Z4kGhqQnbt": { + "balance": "1440.954972404", + "bytecode": [], + "datastore": [] + }, + "AU1A9YLoXqjxWQZzYK97EtVsPRMopVhzJNvH6qC5KKwJ7AJjKMig": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1A9bmtihgGuP3RdJY9KotfXyDpVFLFkLMJCL4Q1p2AjY2UKn6c": { + "balance": "1671.225758497", + "bytecode": [], + "datastore": [] + }, + "AU1A9nV6sD9Dmz1QGcTepGbpXJMAEWaNhoPG1WFGqwD1eG164g5o": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AAC9f59L8k4ABuPso5jh35HFitn1Yh3TyGGQavqBmQ4pAmWAi": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1AAF2FiYMpj9YduioTT64NCHG2ptRgfFnNsUkMk2xgjrkmkD7t": { + "balance": "1301.298495937", + "bytecode": [], + "datastore": [] + }, + "AU1ABFpcV3MVwktUihH7hfkCLud3ECxXQYU3onUvgu955BVrtgTX": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1AC2itR7CNyyc1U3dHkCswc3ijw6Eub4aSGVNVBPcdVMNfp1K9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1AC98CgDbB3LGq2odp5dJ35WBxvzd1q5dxmTiyM4gth4yj5NNP": { + "balance": "746.485274646", + "bytecode": [], + "datastore": [] + }, + "AU1ACDvx1zzawwikWyz7Nt58xepMFTNyL4vmXQ2m48WdEjpRkxfG": { + "balance": "4069.876441998", + "bytecode": [], + "datastore": [] + }, + "AU1ACWwoTQUohsytHhsCWzYNWiBDJ2pJAD4Bpb1uCnDASHwbDKtq": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1ADkhmm2Xn4owMzyxxnoKDWW5ZbPApXvzkCAEG6aEE7uJC5EFj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AE6FMo5DCMAZPzhhsTAEnYHLNSih4WhzfFoEAA4vKDqBkjfVZ": { + "balance": "610.134522934", + "bytecode": [], + "datastore": [] + }, + "AU1AF2QaVfxayLWgBW3RhvJM2HmULbGEjSCjRfCfJ2pdFj49ZuAg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1AFG3BYNK9ABz1cUwDwYeBkC8hATfrViBCBhx3Km8fmLd1Zy92": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AFgbfNZLUKX8SRDxz18UDA98K1vciCrpMFp6rFHCPqPAPq6U9": { + "balance": "6723.991962112", + "bytecode": [], + "datastore": [] + }, + "AU1AFkGYQFDBx1RC6TGpj6392hn3Dd28g1DapnPonJK9fodrJeEU": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1AFpmcp18ZtvZp3FLYtDbmNXq37iRoCzonCkfponHKDTux6KxL": { + "balance": "207.904550151", + "bytecode": [], + "datastore": [] + }, + "AU1AGG7EH5nfkckwvjhPuoreNoqHMZSHV8zsJFE3Y5N4xxg6A7cj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1AGWguFt51Pb95iHSAgHSo4Qim66ChPUBoxmHiwEimuCswSmGA": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1AGXCLxpewVezX65qVpnHocUixsqzopRT62p4Rp1CaetrJmzDs": { + "balance": "15.638553686", + "bytecode": [], + "datastore": [] + }, + "AU1AGpofVWgYczWTa2Kj7nfKmTc8eMGi5WmSQyQmPPcXC9e3Xk1B": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AGqkC4oVUuRBuzbhHMUwLXLbdKuCnxnyvqR4TVaSpRXfWUKDR": { + "balance": "6307.757219267", + "bytecode": [], + "datastore": [] + }, + "AU1AH9NPt6h8Hgrv6hFNBrckg7pp5ZGwau3eHDrvteKnuNA8JeQD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AHDvoaZanq8yPFarM8855VndyqMHhjCAVinqEAXPYSNetuA4N": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1AJ8rrkNN7Xd4G7wy6iLNYrYEqhP3v1owhj2Arxn5uL5GrLtmF": { + "balance": "1111.719664458", + "bytecode": [], + "datastore": [] + }, + "AU1AJaGriHgZLCppZypcjFHCoGFy81GtbkzCci5TqLTVm9RUke3V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AJnCkJxYs7JQQW6V9dC1ps8pdxCxbUmNGBtPWuzixAumcZpXd": { + "balance": "1802.934927827", + "bytecode": [], + "datastore": [] + }, + "AU1AJsMQgWB6FuezemTr1kM2We5pDFVVn66xbf3gkF4St1MAwYZg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AKSBoS6cHfhsCGcyXSCMY4dxCqCEdEoSQTqcbaXbP7BQLELNv": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1ALKXm1PJAKJE9ptvWfRQ9SuTWkeF7DatNVenFz9JZasokqe52": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ALZuBgBH5ZdLj2AhKAVZGcgkxEqKrr2qH4QHCnnzG7uriW8BN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AMQ2s7UKDk9GXphkfQr7yEMF3RggeL4jKBo4Y8N4PtuRdnXNx": { + "balance": "1112.957612825", + "bytecode": [], + "datastore": [] + }, + "AU1AMrBWW6KS1hKMsNWGrFWM3R7kEtCdNsXsSPDLfT4u6xpMpPPz": { + "balance": "2416.087171569", + "bytecode": [], + "datastore": [] + }, + "AU1AMuSxik3F9Fukr3aW68bRBnpsN9FJSmsDDLaw9qZcmNC4qHL4": { + "balance": "713.014840306", + "bytecode": [], + "datastore": [] + }, + "AU1AN3eVz1PMFm3xGvgUdNKDKBCufnwAuPC6Bk5PpYvzaQCsizjN": { + "balance": "2810.127773168", + "bytecode": [], + "datastore": [] + }, + "AU1ANLxkU98eUNM4yiF9DW2BW1oTBy5szBr8LdWVVLbtYJ4xTeSz": { + "balance": "3162.878398751", + "bytecode": [], + "datastore": [] + }, + "AU1ANbEtZ2fRXYQgkMhKyhZgp1Pmwep8Mpx6eYM6Dmqx6ZQyy6Dk": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1ANeUepyBuwpLeXfV6Cd5SyodfbMWdKpve7QTrnAU1qqVSRUg7": { + "balance": "279.386012356", + "bytecode": [], + "datastore": [] + }, + "AU1ANewtP2FgdP4KKhWLJqdCvQwe6KYMRm4np6xLJzS69364BxYa": { + "balance": "1327.842427091", + "bytecode": [], + "datastore": [] + }, + "AU1ANsKak59q4nRuvDsCijrqbrNd99P27p8ahTKfw8THqb1sanhq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ANt7cWyfJJrepuZuwMBKYx56jxPp4xa4NJKvFaXJPk4eqnCJt": { + "balance": "3682.051677732", + "bytecode": [], + "datastore": [] + }, + "AU1ANt97UtWVmVw4wLAx1gsMi71duPVfWx7ZLFWGGKjB911Swfnw": { + "balance": "1172.337856387", + "bytecode": [], + "datastore": [] + }, + "AU1AP33RMhFZDgp9M6ztUdczUvUBym1GgL4P1ceV263AMe7HXQSf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1AP8nobga62X6eZH9ciYCTSTnTHT1Ga2zPrnq9FxW2ucNys2A2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1APFn2nbiN7FJUpydFHJGstmn9oP9b7iw5WePhhizxihyTttnm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1APGwJb9jHtVgiaoeuritgchggZghyzQ3682YaZE82zLAPeXzD": { + "balance": "1571.570147031", + "bytecode": [], + "datastore": [] + }, + "AU1APNe9bdWRJZ2NhTwNiu2v9ydHYt7FeWxLs1u7jX9o3TPGYs3k": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1APPqHi1YjCtZCTjWvzTVWLy5jqjc9g2BqCy3NvNw7kA7gTMZD": { + "balance": "148.379406677", + "bytecode": [], + "datastore": [] + }, + "AU1APwzNhb5UY9BhLA2Ue8fW7jCkcbCLr5v8gB1aGBB5BFcWfPjr": { + "balance": "1465.226951126", + "bytecode": [], + "datastore": [] + }, + "AU1AQBkatSfhoDYSQRZJtKbNtTJUDFofoffsJbWSVdcNod6rzfdj": { + "balance": "2692.533152769", + "bytecode": [], + "datastore": [] + }, + "AU1AQKBXyVEtGmaNMkCkE3gqBun1shxVGKQBPQwpR7QGWbnpDtu8": { + "balance": "1469.073233378", + "bytecode": [], + "datastore": [] + }, + "AU1AQwafXxSZvMnMBY51ZRHFDP2XQnWiFZRKPfYvaLwQNwnFPybd": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1ARk5anErwAvoGYkGUmLwJYv5cjCCCbR7mk7Hwtu2V1X7Dzyxi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ARsVwfuhMeL3m7WWn99f8Ta3qM4GyQVNMvUpiBAFptWkg5VJw": { + "balance": "1970.436483139", + "bytecode": [], + "datastore": [] + }, + "AU1ASCr5pAnodTnyLkvcx1CiXMBkKA8ybtVcKm1UsiwHYt3amSd1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ASV7nJXfZXe6n9vggyDW4Sjaq67REAuKGnYNnVuy1W5HKpsq1": { + "balance": "645.994299518", + "bytecode": [], + "datastore": [] + }, + "AU1ASi1rV3GRXHSNMhYunUx2zh18ATuutGfdNVDdH6kufyboZ3g3": { + "balance": "92.053982996", + "bytecode": [], + "datastore": [] + }, + "AU1AT89e5hQCMYoEUaeKWkRT9oDAeoozyhCjxMSTJ7svG5YWEajm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1AT8yVoVJ9Y7c1iu3iQHkdVZQqjmVwdomt7rEF4AUghxgqaTCW": { + "balance": "2617.738270422", + "bytecode": [], + "datastore": [] + }, + "AU1ATD1BUNS5ETaznkrNb91dYxtEiyuCUVSoW723KmUeAuE8HKRq": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1ATTERwM5rrv2RJdFzDbw4r8NM1ddEmc98ZD31VKC5WCgYUiPL": { + "balance": "585.070927453", + "bytecode": [], + "datastore": [] + }, + "AU1AU9xo4goN54V3EULNxeAvEACsivd4GiiGC2CnyY2qwFGEJ8pj": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1AUSNCUNuarYb6ivLJrkpRKMmzHCXKkxsxXqWexAuY7VMmEZke": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AUX7apREFQD75cYJo2DsKA8wTkFpg3uU499LoB3XecU3XWcDK": { + "balance": "808.405349108", + "bytecode": [], + "datastore": [] + }, + "AU1AUoe4uVM1aP4gjAb333xN56oVzbW5UQsbiL7pbCqr3xP8KGkq": { + "balance": "560.437725181", + "bytecode": [], + "datastore": [] + }, + "AU1AV3K4v4i682vusuo8TPMK9N4kQEtor18EXShtX6U8r1DvqAtJ": { + "balance": "1476.028794338", + "bytecode": [], + "datastore": [] + }, + "AU1AV44wZm3Svo1QLM7nP1BTnxNc8M8oo3NqSeJDVRTJNhXuh7qu": { + "balance": "1375.156422413", + "bytecode": [], + "datastore": [] + }, + "AU1AVFfA6BjRwvgxyHqPYN58WCiUDUP7p9FTwcEvHYMjNGzGJrmz": { + "balance": "2391.697580762", + "bytecode": [], + "datastore": [] + }, + "AU1AVVpY8TrtF3dDSbzDHjJ5o1Go39q44EGcqA8PgFT32eKcPQJz": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1AVckNam9UG9szFSD4snejRCQFH4SFokoDG1k3mbZY3JfyiBtN": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1AVeELk6EezQbpgVa1VEPLXg5bGchyPDSZKfAQPbYq2jRpZArn": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1AVpZKcpAS7unejR1rzxPfSvcS8Pccm5d8prrTRbFEsV27M6MJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AVs4NixjgHHo8RJuBGASQpgeCv6FtLeoQ7ZE7ED3ph2BiZQFU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AWPodypgR1NabF5NecCf8GY31Ucqsahm8fP9iQ6RfzKKvzCb3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1AWV53uY5NEsu9sFwXHjdFgqbUqQ2dFdMzkTNzFKsjXqSL6vtr": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1AWawWde4PRGF28JgZX9c99s7c9jxJhTmYMqbFEh1Zkv2m8Rv4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1AWbWwZwFpQYjgwcXpFjoAQ6L3FjhFEQrrYphH8yfFcHMBEM4b": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AXENegKHbYjeoKyhqPFFLjG4bC2EU6bTv6xETw14vxygavJsJ": { + "balance": "1981.142573173", + "bytecode": [], + "datastore": [] + }, + "AU1AXkkk8K14tiPSPZuSh4drDGbNBAVypbEAyF1KBwiaPxv5JsPP": { + "balance": "811.752581209", + "bytecode": [], + "datastore": [] + }, + "AU1AYMGQ1L9wd5R8kKb7HaLYRTXHBoaB7gZ5y4oFdmCyTKKozDQ4": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1AYPPKZNm3CrUPZ1mvwDCVCh7m7MQGSfFvraVm4PzPgWaqCKmm": { + "balance": "3332.016760591", + "bytecode": [], + "datastore": [] + }, + "AU1AYYKZpT7z5AijoPLVEJnwQMYMnZvomYcWz9jqnAKtZj5DYnU6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1AYnU512D1TrhgTD5e7qgC5as5nYqS1AEDxxnM729EmPBSiTW6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AZWKBQpWZrHGWavmW2Wf6sxDTbojYwrNqaWnLauUc56iXy31E": { + "balance": "2025.533968553", + "bytecode": [], + "datastore": [] + }, + "AU1AZYSmr5q5eMQfb4SjeTa9nn5WsieDfpcdhKKygkQaL8Ksd7qe": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU1AZhV7EKp6PJxV6KYhWjiMBNvVDzAwz9JMXkRzzmjPi8KYmWmD": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1Ab22u9RnZ2LLMvq8LQMKyFypxhYqGBioxTqeSUxjRDhEZw1Uv": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1AbBitcwLgXaTHQwWWGwrB9zsAjUHMR2Pka8bZCeT1SpXr7hrR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1AbR7zhttb3ESUH656xje1cVxU5ZSM8qGroQEiZcVvctRxbYc3": { + "balance": "2038.303388625", + "bytecode": [], + "datastore": [] + }, + "AU1Abu2iAQNoJXAs3pbVNWcaQvBWg8V8oyredxgyvLDe4LfDzVkW": { + "balance": "76.732673267", + "bytecode": [], + "datastore": [] + }, + "AU1Ac5whqTCTX91ufoJdJ5J2k2Rp168hDouEJQnTTorgaNPw6urk": { + "balance": "763.103812778", + "bytecode": [], + "datastore": [] + }, + "AU1AcoA9fvBKp4py6vT1Gi6KKfd88S7AUnXtgYxB4fas2UP2YsS8": { + "balance": "1333.044422184", + "bytecode": [], + "datastore": [] + }, + "AU1AcrkoTAqKDCeZr2zGJKqZyFtSv8gfPksHgWYBpYmDV3EVKUEh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1AdDyczzwRyv3r9D5Gd9Kyztag6kuXnYgaPmCM9FNjiQEzC2SY": { + "balance": "915.138348170", + "bytecode": [], + "datastore": [] + }, + "AU1AdWF6YonDxxJbQUSRmrH5bKvyTmdXHwADbn1ZYNJBGQnnmLtH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Adekz3Soe55yyagDnna4nh7PKtAPaJhAAnUWwChhB1dD4d35n": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1Ae85swhLDP2GdLz2uHQXyx8jQTwonrNwy7GKSpkCPf2zcSiph": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1AeceC5b1oQ5c7BmukEqTxjSyLzKtYxL2QS8w61NZ3ZvgfY4sY": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Af4H2xjg2jxLUWN3FV67fxsTi8oExwdnSkiRusnzoeeQPtDx4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Af4VgyjKBivn8PJRqPFhLzMkjhxipzKJVyG3LKUsSnmVUzwaE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Af6E6d5XSWrxd4YcSQYVZ3e9DmViScLGnJDhdGNkqquy43quW": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1Aff1LSBQ7vfE9LWK9chynwn4Nw21Lm5yXDJYHSbYKV5tiE3Sk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AgC95pQDv2z3n1HCTKuAnRapCx7myiyZDfXoihhuSosCpmpDs": { + "balance": "244.749171970", + "bytecode": [], + "datastore": [] + }, + "AU1AgLQ3qNLX3fpSKEGg1EMD1yZoY1jF8HcGnTivBKgKqyKaUWkF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1AhHCzQDnCqAoXyFwnz8zKBLAsjeKBucxdRdSGWwTtfSg5Akpb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1AhM7ugE9eJTR9BaXu4jW7VaACSbc8UdgRCRBF3WcDpBfFgY6i": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1AhMvUGF28ZtJbPywCANdPz1KoK1QDFKsQmXXNs9g5r6eMSqB6": { + "balance": "1030.329068020", + "bytecode": [], + "datastore": [] + }, + "AU1AhWXCLkyfcoKV9Lh3KmDtK7LeXA5MAi7byEmkVN9e32u1ptoA": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1Ahi77PGdV6WAYMyM5pcLNrQ8G7fHxZhVFsmNG8DdiF6m6A1Qz": { + "balance": "913.874934131", + "bytecode": [], + "datastore": [] + }, + "AU1AhuWbN7d5ceQcnGVHnsRiwaRZmdNdhCVekxfjuHR5PKxVPg87": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1AhzvSiCqK51brdJ1d5Ngu1ubmHPUf3NYXxvskvfwdFHg4i1QF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AiNZULxg8Z5AaFWc6itYGKCkibkjpSd3YChq357tLhkUmbZMt": { + "balance": "1058.534449420", + "bytecode": [], + "datastore": [] + }, + "AU1AiYSrt5oGe32UNxU2swiQScr5Hv1xME7qpC9Hv5tLgG3Ycyaj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1AiirGSxLqMJboFkBgnVvB88h4zrnzbUqsWouTHwuveAw3hTWU": { + "balance": "1432.469100604", + "bytecode": [], + "datastore": [] + }, + "AU1AjL6ZBxU8ZndHD7pUuzvHrG8C3ZEwK3PdxP4QATQNitPnEK9P": { + "balance": "904.567662469", + "bytecode": [], + "datastore": [] + }, + "AU1Ak1onvm5XN15cig6tKUxBFQx2mi3Qbxj4DxdNM4K5JaFnHkRD": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1AkHgwmPTgvFwHHvQFjksfFXbfGFMWryv4iFRiZVke5xLCe1Wk": { + "balance": "1555.775301326", + "bytecode": [], + "datastore": [] + }, + "AU1AkNyT5dLUEYMTJE3dCveZ1qrfCJkPujeWZHghAjkQmkVannh4": { + "balance": "41.148186260", + "bytecode": [], + "datastore": [] + }, + "AU1AkQiwfUStrNPPtRXeUEUMj8hQfbUYyLBRk5AcXzssWAtUJrhG": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1Akakp1H3M5CPABfLGvefRmgUqZCpjQYFstA4jySqP4pA73Ymz": { + "balance": "1880.656698398", + "bytecode": [], + "datastore": [] + }, + "AU1AkvsuJTJKZs3BuCWNUKjS7YwARKQPWwUuUkynU5NRGsxvvB3v": { + "balance": "3554.044509803", + "bytecode": [], + "datastore": [] + }, + "AU1Am8Wq285TemFZPXBYjbGJoaWDPeJfTdCuX16gzqYj1jTsttun": { + "balance": "54.066740603", + "bytecode": [], + "datastore": [] + }, + "AU1AmDmxcKd4XMkR3bNr39CMe2GYnLzACidSZVoL8UrajWbuZus7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1An7tKrBu62fsAP42EmY7RJNMNNBzHpuvN81q1rCjToDTVsLwq": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1AnAM9HvJDzUuhSNaZH4Qh73srhXk5bQKiBYioZxHyDAbwDCJH": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1AnDfA5kK2LKS9ZZoqxpm44RddEJ1eErksigyXaLabKmC7qHQF": { + "balance": "1145.385750512", + "bytecode": [], + "datastore": [] + }, + "AU1AnF5xbyY22rjqmCuhdDn8gn41FWpGYK9HCa15jLGprt7ScGZx": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1AnF6v42snf9VPrecMvoLZBX1nZa2TmxwYFvjHnZhCi8Q7Fntu": { + "balance": "2003.453866835", + "bytecode": [], + "datastore": [] + }, + "AU1AnVh5diah6LLqjhdmnfFvcnuaLrRxMogCCLZ3KR2KeHmeAsZt": { + "balance": "1708.582803243", + "bytecode": [], + "datastore": [] + }, + "AU1AnuLfrAZCepS7XpEZovkdj5njvUNTGjoNUrf4vA5tw2vQvHwR": { + "balance": "5190.581475934", + "bytecode": [], + "datastore": [] + }, + "AU1Ao6tp5TPFZU5aRA9GHxh4jADHus4eRX7KRfGbFWyQHmGEJ252": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1AoP9aqH6SCbWGueuHVvVVebVcS3zEiVEZQq4w3LfkSQgsXMHc": { + "balance": "892.118273490", + "bytecode": [], + "datastore": [] + }, + "AU1Ap323iDwadzQR2DWFFE3JyukcuUZfBATJoW5yw7RGc5911gea": { + "balance": "2819.044953629", + "bytecode": [], + "datastore": [] + }, + "AU1Apd66mCsQug7yj7rDf7kyGG1QEj4NaWPRLbrndNxRVVgS5Qgm": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ApiZabfRy5NXHpySQwtBQ1xbCEk1Tu1WVvMdYionaRQSRaHDg": { + "balance": "2205.448706647", + "bytecode": [], + "datastore": [] + }, + "AU1Apir9QB4cRphbzjxcCJqyBwaT7tw4ZmzcR1nGB845PBv5Wt2U": { + "balance": "5124.723677596", + "bytecode": [], + "datastore": [] + }, + "AU1Apr8bPMRjBG6VGG8np3UXkgpCA2K4PFqTjEeTE3YVmSkkVpV5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AptSLfgFTwFt1saXP3o2QwhoKFGmFgQbKArMNNLKH9xXgA2gM": { + "balance": "2232.473279734", + "bytecode": [], + "datastore": [] + }, + "AU1AqgSHNaR8FzBCVjyRaRKAgmu4tpiMSdBJW9ZDA9FKdyCDsq7R": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AqwjZ9rVrYyjqCkKZcspiX5t7WcEKGab56Zhvv3i1nsaGEq4B": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ArCHx1NLjBaR9Yd41mSvXEN1ePeSw2nPGVepcMmJzzLxSHzZW": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1ArEebxc6cbEiPCFcZjqHdi3iqaz8ptu93NkKwYqPGWZMLCvzw": { + "balance": "4314.701863840", + "bytecode": [], + "datastore": [] + }, + "AU1ArLZijGtZfiwJWC8eBriyRNnPRpGqprfqvksv2McvVfuyrsPA": { + "balance": "12.738558410", + "bytecode": [], + "datastore": [] + }, + "AU1ArVhxqKr1CUV85RNs3KgBQbJS1XFMVTMdzVrLJEFSPSY8t6ku": { + "balance": "2723.838877988", + "bytecode": [], + "datastore": [] + }, + "AU1ArbJ47pnwofyHd1su3hM5rLCX4ed5LmB9hQyr6i4ix3u76uFR": { + "balance": "3231.665835121", + "bytecode": [], + "datastore": [] + }, + "AU1AsBMTo58vfQxy4ifuxyonRfnshpiSzhm5m6yFLhLwFKuCd77W": { + "balance": "2029.678037952", + "bytecode": [], + "datastore": [] + }, + "AU1AsKdTEc8xXVHFug8iCK6RdZGu1RvWrwP5ykCNV4fH9oHcgZsh": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1AsprLaZ2D1S7B5x6mvqtqzBEnmrMaaDY63M6D3KDgnTpvaken": { + "balance": "1534.467633903", + "bytecode": [], + "datastore": [] + }, + "AU1At34TwfhuJpMm1U37zX3wdoA6CXgC3zyBzQJ8bHzeUc9dykzF": { + "balance": "1078.618733804", + "bytecode": [], + "datastore": [] + }, + "AU1At8Qa7tXG6NqJ8HhJ8bUwhsn2qrF25kw8wnc7YhkcAX4ufPzE": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1AtJahD2YTyAnw9WDSShC8S5hpkWg2snX9DHobLg8VLnpGpqVx": { + "balance": "245.976532248", + "bytecode": [], + "datastore": [] + }, + "AU1AuHked814RKeFeFWsrkbVe1TwGDdsX9ukC8N6eskEmRjSgYiH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1AuRATQcW5DFE5b99qUs7WmjwMAmoF2LF82j6joVV5KktWd2m8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AufYTR5q6cMAU4yTBnFzEqR8jxsLKgrRsVBZ9pDYPnaX3XF4G": { + "balance": "4744.547507835", + "bytecode": [], + "datastore": [] + }, + "AU1AuuKtBcZ7RQa3b19FAtHY67WshJBJDhVBN7HqCLyk41AXduEw": { + "balance": "960.052766428", + "bytecode": [], + "datastore": [] + }, + "AU1Av7dbZwB3g5cJHBkLUdhh9xQJGRhqmxbKyuL6J8SzLCXPLbxL": { + "balance": "1441.760697062", + "bytecode": [], + "datastore": [] + }, + "AU1AvDAr3hcsqmgyirLpaYqn83LpYzw5ah1pJKAVnYk3moZvaH7P": { + "balance": "1158.516001812", + "bytecode": [], + "datastore": [] + }, + "AU1AvdQaHb6dCUEKAYXrDSr7ojqLWxdCLHNN4dcoCv9HSSykHiQ8": { + "balance": "2339.214783522", + "bytecode": [], + "datastore": [] + }, + "AU1AvewYbKg68LmNaESQt5vbwmTMkmkguJPgXZj5dd891DGRJHCa": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1AwDK6KnEttstCfPcQ7HntLPFtjn26iTfvUZ19w14EiwK3Mwj6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AwP63uwB7By3D54tY9tdDam1tb6T7W7mtvSTsDRqsnaSaMPQk": { + "balance": "5683.114356576", + "bytecode": [], + "datastore": [] + }, + "AU1AwaYCro9xZk9mMDKcnspBsRoxmoz8J8h4pmHHmANnJyPW2Ruj": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Ax8oTtveEzEWEfhRz7ZAh3dn9HR6q3is8LWFU26vRc8Ggt2PX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AxBRftYt1ucq5pJKfM8xDTfZvdb1VTazrxxJmX3TPKycMx8EA": { + "balance": "1454.454102596", + "bytecode": [], + "datastore": [] + }, + "AU1AxD2jTvXn96Zy2uwB6hyRhrfE9gcEWxzugjzYrr2VjvSdjfk9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1AxpDgfPGVpWAghh1hyfyrvkWke3cGCYA8HkfGGYtXitD9o1FV": { + "balance": "1282.902668303", + "bytecode": [], + "datastore": [] + }, + "AU1AxpQHC54grXsJqpfHFs3QpaFmQ9cnYvrE5GdzFc8p8eSWrpfq": { + "balance": "5219.618564851", + "bytecode": [], + "datastore": [] + }, + "AU1AyF4Sv73LoECGU8dUNdubFzt6MNZTjXds37hQjGnWMbNSoY5Y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1AzJGdnrHKzcC4rEiZzTC8cy5iZHFUtWQ75e3WVefQ5ufjJhTY": { + "balance": "5162.358752671", + "bytecode": [], + "datastore": [] + }, + "AU1AzLcsDMeq4uB9pN8tVoZMUkx5hwUvhkDjue9T2EuGZ5TGPUNj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Azf4tAaJmmiE7JYhFWJ8SfwwFw61XvbCeW6umQ9vdGuwtGyiR": { + "balance": "543.002650169", + "bytecode": [], + "datastore": [] + }, + "AU1Azx8TX8a5b6Wi8Nnor9mkfikz4XrtsWqCXPLCjLU9rLZQw3rG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1B1Kj2c7CenX2gbLTdgxiniyL1iM5APPGPeTiiBzKXLbCRDF55": { + "balance": "991.826707044", + "bytecode": [], + "datastore": [] + }, + "AU1B1hYDG7EsdZPmxrTQCTGjyFhXYqEoMV84GLHvpV3YR2TG9kp6": { + "balance": "1084.200684733", + "bytecode": [], + "datastore": [] + }, + "AU1B2CNhMQqeWMNcQj7seQbsdfUTw1M5cUoUZ4e6i9KhPnMhP1wK": { + "balance": "51.413048480", + "bytecode": [], + "datastore": [] + }, + "AU1B2TwLTqoyrQscUjeWo8WsLXfjojk3oAqnDxWX75fiR8YNKupj": { + "balance": "1563.678580548", + "bytecode": [], + "datastore": [] + }, + "AU1B2qdmcgBjcmrb4CLMAEsmx7o869QLqyeaUa3pbTa5tc4dky6w": { + "balance": "1804.168150280", + "bytecode": [], + "datastore": [] + }, + "AU1B3c8RF8ntCBrszmr5R6eNX8CEU211mVsjBB9PxenV3uAeoYsT": { + "balance": "3.000172884", + "bytecode": [], + "datastore": [] + }, + "AU1B3dAyPSbc4ZFfrUqbfjM59nFqXJbKqRdXwCYncSpkKrBeHu8B": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1B4cXbvdvhNGrcRfuBUURyVvqtiECXrRN4M1kXEB4eVYriJ23c": { + "balance": "2533.802569911", + "bytecode": [], + "datastore": [] + }, + "AU1B4r8HTrk4iZYcZMyFzNuBSJuZiHgpVfiq9NApmTQFkz5H92Tp": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1B4tUTePp754WJgaK4QHjJG9v85acpDSYxe5S3LUhM4BEmZUqS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1B53rbadCqZk3tXk1XryYpP2bNTZ7DEDUYqqym5N9CjxzD1rzp": { + "balance": "4068.042923029", + "bytecode": [], + "datastore": [] + }, + "AU1B5EZd7dMYdsayWuzvP95QSXhML4kVRMJCSptyaJjuuSHawc69": { + "balance": "1667.408389863", + "bytecode": [], + "datastore": [] + }, + "AU1B5KfDxiwXZvQzir1W3T49UMM1YqmJNGn1QggHxKzG73Su4SLX": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1B5QtAzPcJ7UXvwo29918TMqmYeRGVJW9Qi7Viqs8F8w6scyQh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1B5fUZx8hZcPvUSAMB3QLqADzjB4nStyM9bZm554QhXFwhFYsK": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1B5wyZTpXm9SkySibGRGhhP7dWkCP86Y7pmRMPu1MmvomXwnmN": { + "balance": "4653.506113283", + "bytecode": [], + "datastore": [] + }, + "AU1B6HvVyesxSKEAWFK5cwtJ4GRtcAzV5frsEx3Y7eh5Z9WDT8FK": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1B6Jb7d8URruwddoHuxu3hsEeHrpmHm8PZmR4TMZp7o7xVhu3c": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1B6dgxUmcn9KF4iSCjq3TiW92cTi29MC4U6x4DDEJRk4e7HwX2": { + "balance": "6482.727737645", + "bytecode": [], + "datastore": [] + }, + "AU1B79zJ4YNhF5QTxxmywDkwiDbd8KZQnTiffka9Qa8GbJ5pjSqY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1B7BXTu8CmveehXCBX6pLVss1np5m9kGZzak3XHUNHewwoSFpe": { + "balance": "867.515869816", + "bytecode": [], + "datastore": [] + }, + "AU1B7Xq3NXijsFDdJugmxFLNFMm8xY49bsYwyum4CayPr2H9cPMJ": { + "balance": "2525.416052028", + "bytecode": [], + "datastore": [] + }, + "AU1B7bch26pQPESvS9wFNV6S9EEqdxpArf4SMywEBxjnzX6TrebQ": { + "balance": "963.292020504", + "bytecode": [], + "datastore": [] + }, + "AU1B7esoBzJY1gj2SPUtKxKZeWhWAuMqi2LEMpRsipYhEGeppviL": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1B7tQFpipvagTSdfB7VZLjRY7bJo3773YkFtZpnMu2CSdYy5me": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1B8N4b1iQjSxmf88TpF8UJntroWTgVqMDBix9GjgbM9BazhxHV": { + "balance": "2814.911544488", + "bytecode": [], + "datastore": [] + }, + "AU1B8fBux9im9MKn7Q6yM7x5urhgqjd95NbKzqK4h5NWKKKkT3j3": { + "balance": "3802.005174248", + "bytecode": [], + "datastore": [] + }, + "AU1B8mRU4cd8cQ859RfLKpfDMg6V3vmw8ewS25b6V9q5qXWwCKCK": { + "balance": "2267.241772527", + "bytecode": [], + "datastore": [] + }, + "AU1B958JPF7CcRwzTFZAwn5yojBzVoA9RBBxywCtuxZ1zRmdLdZB": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1B9LXy1828ArTok1HibsmHaouJkrm12DLi9YQsufoevSjUzABv": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1B9M3SEcTTAM2FMoYoBGytzW2gzAuXzZokSGfPvBiGtEFdkriv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1B9P3Ee9dKtdyY9aK8zQbhv8cauiBNLUPnbfjJFW1hnFJFnFK1": { + "balance": "92112.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BALrX736g3eYe5a5Uv3tBcyu1bwxLE7FCWCcGW4X3cjZfyFQ9": { + "balance": "1015.021401834", + "bytecode": [], + "datastore": [] + }, + "AU1BAh9XJRq4ZLRxV6Cjat7gAaJaGA2S5weQCddYwPEfhnpoHt2e": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1BBTjA2a4zNvcHUAw9WPaxjyRE1P5kMvkH7GjHZAx7upVqbjzZ": { + "balance": "1773.562579455", + "bytecode": [], + "datastore": [] + }, + "AU1BBbDsVzwfCHNHGSaMty3DAbLBtoBgjdnH7Mtbxa5odWPaTwJ3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BC5ketyDhSPsKzncBe9YPchvGe8PrekjCK1sfQpYgNhrCHJvP": { + "balance": "923.510130114", + "bytecode": [], + "datastore": [] + }, + "AU1BC6nrLqcXTmBVCRDqhLDjfhXMFcMgFrH1dRvkDXxPfQa627VX": { + "balance": "2414.870544662", + "bytecode": [], + "datastore": [] + }, + "AU1BCbqdRVU4CZpPpkDVa2osHyGKaomwatovyQncU3PLZDo4DCpT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BCcjTDYRKvsr79G4LjzAKUerkqWKu6XDcGww1XYKTAxXUVxCC": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BChAL1sMcJ1stz6wuytnS7JS7HwpBwsRomzmKmDJ1Le8XRbiD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BDgzSjucqmv6kthRnoJ7FmHqZPJ5R4Hpro3sBPFjtxpvoZEFc": { + "balance": "1685.266668185", + "bytecode": [], + "datastore": [] + }, + "AU1BDsYg9TUUUy46XNBSpfSeR4saCP3gW7CMMz47wHDa9fadHEdP": { + "balance": "1022.317734307", + "bytecode": [], + "datastore": [] + }, + "AU1BDuiKD8A9gSHtoP5D26HBGJTf4UsBpFvuYR7vxV1XYVsZGLGy": { + "balance": "1059.340708004", + "bytecode": [], + "datastore": [] + }, + "AU1BDwA7PcBZ5UypLxwgpAx8L69c8HPUdt3hkUvCZpxmi1TRKvnF": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1BE4pSrCfWZkB87zcfozRWuX55cGSDKbq8w85jqa63VkLY21We": { + "balance": "1109.977612611", + "bytecode": [], + "datastore": [] + }, + "AU1BEApedQLng5Dz6dSBePQwsf8LDBi189HmwfDsbnEaBYC6A3Gd": { + "balance": "1135.676647975", + "bytecode": [], + "datastore": [] + }, + "AU1BEYrRwppQUJmXJZZ3F1bpEoLKMzbnNatQUhjnH7g5jfMkRQht": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BEeTL8Xwa8bvRQxvSKGDSnW23RCDnFb64kCsNAzyP6w3K5JmJ": { + "balance": "1697.246163182", + "bytecode": [], + "datastore": [] + }, + "AU1BEiLg8K6PN7P1GJyRunXRA8yfGmJonGnDuWgo4LkKQ51357py": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1BEwtHrDGjFpnga5xqhK8sRCyqKHzQg2H6ujXywhfDjxJ2Mob3": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1BF3wXkhapF3ADSZNnhwVo5a9mxzRYpUTm7vJafVGB6p1tbsQF": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1BFZXLAmVj1KWDDyf5ZeZ6pUk99fXdLHDiCh7qKvswNFT572Fk": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1BFhpqiqV4urZPUsLxqDrRy3bY9JkAY5MSWHznNcw44yAx1jqR": { + "balance": "13712.281923754", + "bytecode": [], + "datastore": [] + }, + "AU1BFw7StyZw4ZRYdCAhx6wpuuuCmr5JKGAmCN8uu5nj5UNGb6ai": { + "balance": "547.113725622", + "bytecode": [], + "datastore": [] + }, + "AU1BGGChgTqM9iaDrZgPoFyj498Lk7MyvyHjb7fgz1AShFhfDQHo": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1BGk7Q71489TASViUbLPzXnKcB1QXEjS3NHcjmr7P3XiGwRSpJ": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1BGm8DoVSN3z4WKW1dNVcfAkFY5EERtirAEtxMfn9v5BWXjBwt": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1BGpP9wm4GFdYHC3YmeTt8JtVEQQr9k1nw4de2XoohpddAYnVz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BH7PMh5YgoUJEpzqdudYhzYqXyFrCyaZxkQNSDBxUqUggHGu1": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1BH9WPcQVZfwT3chY5vtzNY79VPPeB8Ctxyjm3w3esd9RbdEBR": { + "balance": "64.719985228", + "bytecode": [], + "datastore": [] + }, + "AU1BHK6rCcPvokJznFbRyv3KshrSh3qdnHkJyNx4VGQqE789VzE1": { + "balance": "1548.255848937", + "bytecode": [], + "datastore": [] + }, + "AU1BHLxLiVV8GZ4F5gvvwjSynek1C8wPmhRF555g7auoGMPfKuC8": { + "balance": "662.146083030", + "bytecode": [], + "datastore": [] + }, + "AU1BHRCbQctVMQriG5WK5dK3hgnyrJoHMtzAsiiJf6XSbP9PUFKc": { + "balance": "1244.108643640", + "bytecode": [], + "datastore": [] + }, + "AU1BHtqpYKR48nDqq2wB9cL1TWMbt87NaiCXsLjGUqYdyqdHgkaJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BJHzUA1VcRT5UL45NceP7Ks1e1gFAyCxUqDXtiwnvPdAZF7z8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BJUsYEh3AQKwUQGEvfqCFrHiogqjMYNPD3zqrJbFvT2mGrNxy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BJcfAGTtESFwY92Ftd385xrkQ99LGF415v1xHHbk7LSpj7rq3": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1BJgEx7UrrEhhE9kdqLYcbTp7m4MuoSBFAi3HqTBGhezoYGtzw": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BJi2cjdtqY26D3uCAzYUda1whwegUa4wUPMGntpyiFeMivvab": { + "balance": "1420.050963228", + "bytecode": [], + "datastore": [] + }, + "AU1BJk9oCR1zrPxDLDfqWamLSBaKDVMZPjQ7soKZdByxSqxm9dJY": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1BJtQhvkwKkbuyYZSqJPqL6ixxD5WC67niUG27hXNdvGckyr1Y": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1BKe2NFLYgUHBBNFdwMN1VKrfKMQqoukDWhVBxwLWUh2R4frUr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BKuCpoUTjfx5TSZzYTKxouukVb8mB2cCdynG723quQoaFRc5r": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1BKv45eTAWf48Jy5EWvVthP3cB1LVF7VRe5gXP8a8RsGUHM3dV": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BKwoxHTANs4jXcUeQFzhhDdYoewnWSm9Lwq8mJm7cv4B1b2UC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BLL6AkpjVsn6egmQoxMiY8S9vHAbTucKQnkp7NA7rPTzzvSoT": { + "balance": "1058.169694800", + "bytecode": [], + "datastore": [] + }, + "AU1BLNhMFiAyAU61HKKrwjNGsQJA6XjnKjxnYgFVqWd8LvqLnevK": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1BLRgtNi1yVD3j2JMLvs7vyoYRtDVeh4EEr8QKLV1hxMWLZsBq": { + "balance": "4789.646023295", + "bytecode": [], + "datastore": [] + }, + "AU1BLTNFiJn5wcFrSjhjpRV1dn7PXziup84qnVKqUALdATTBVrkt": { + "balance": "58.580858086", + "bytecode": [], + "datastore": [] + }, + "AU1BLdPdymnSvg4gDBZ5vx1DBrnHjRH3XVNnM43QuH5dpECCyG32": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BLjX5VEC9uwYSrzxj7caYXPSma4tJ76P8x2bgohqk9BS3VEdM": { + "balance": "2266.907683225", + "bytecode": [], + "datastore": [] + }, + "AU1BLrCtMQ6ZE8trJGZtdh9ToU41fjR5H79ubPmqeJj4aUyRDX6i": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1BLuZ38r8vNTnYSrsmZ92AWzFjJ49AGqzQCUTunqsBCSxj4sDG": { + "balance": "713.555643388", + "bytecode": [], + "datastore": [] + }, + "AU1BMSpHKboiqQ82KYbnVbK8tMK89v6KXqNFcLALwokuz21ZwbDL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BMeKpSiKgwJQUhTgLwpcWfALpeqGK1J2Lw1UqMBfoFQpydDhZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1BN8zrSDBX1KeTuctKTq1HN5J4iW5qo2gBNuBBEwWqDCiJQhib": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1BNCi534SCwHJArnjKNfEda5iQgUfY547mDZmMAWYDPWFL2NmZ": { + "balance": "1543.047062900", + "bytecode": [], + "datastore": [] + }, + "AU1BNTU2Je4PZ3WbwtAXW21HFmRb4q9muY4m9wDwuJae2cFGWpoB": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1BNb8ib2LvvHQrm2rXxo1s8xREgEPUXiSXx9XCf7LBJTasM4fJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BNbohDJA4rvL9f4WY32tiAjkuMe6LgbzxEjoKsk47suCDQ1co": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1BPWB3ZdJiXkHzZAcgzKhmBs9cngryYuMScqKViRZ41CQVQuzJ": { + "balance": "6407.412418690", + "bytecode": [], + "datastore": [] + }, + "AU1BPaZWBNgKRkTpzK5r7MC3Z243s1PeebZeQU59KkagrJBYZEJg": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1BQ4ob7kA3YMiL6maHEiTi5n5VgrBkbk2SS7b54tiv8d8XmvsA": { + "balance": "1116.463283722", + "bytecode": [], + "datastore": [] + }, + "AU1BQHuv4MTAwUboyTovFkkMurfV2HRjssZzf1QCz5FxNi7gcNR7": { + "balance": "1641.854678104", + "bytecode": [], + "datastore": [] + }, + "AU1BQWh5psm37Y4A6wVuZd8fQSokssNwc9ahLRQERRBnVpW2wUyV": { + "balance": "1205.105827325", + "bytecode": [], + "datastore": [] + }, + "AU1BQi8XXhTNKZrnGhpGuNiAqRatu1LY2FmsrCh123oYtw9o11pi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BQmqLDPGNkR6XCMgB73ULKhkxHvSA1YA97j8W6Tx69xhJdCbM": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1BQqe64JX6ea6NL1psV1nrnk8AbmXkgM7Ys9YZCiCNCRmHcJCs": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1BRUSrMgEv2GUf61Xuu7hXheZbcVoXS1wXHRmwnvoTzdMGyPDx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BRZGMZtUpMRimMpr3ypGHKHskLaopABs8soc1RHjyfedjvuSq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BReHrrBJrv6ZKWfQXBXtT2gUBG8ipFCKDMdhhuRs75dXCJW2o": { + "balance": "3297.481860804", + "bytecode": [], + "datastore": [] + }, + "AU1BRpScSK53Zy2UAxcBJd4iqVHRiKQS9mzcW3opcudgykcEb1h5": { + "balance": "1310.420670121", + "bytecode": [], + "datastore": [] + }, + "AU1BS2WzYzK7VC9RhnPemBKPPGJHNJ1jtraAtUuj5exZR1XkFAP9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1BSRKqu9aBDSYfns1HwgVzUwmwbPsCWNLxPHNSFTY34izf8Cm2": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1BSvkRAiT3h33UXJWF9qqJb8ZNufi9VjbZyzg8AGy2Eo18b315": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1BT6jdnSmdwkRXXw8Dqm8FjgDEPUJB64d8rx53xSwnbpSD9Agx": { + "balance": "5264.876266702", + "bytecode": [], + "datastore": [] + }, + "AU1BTDaDhHquXWTuGqurkkZW4uHFAQpfVcqk5pqCBD1gfJL7vaGK": { + "balance": "60.408249144", + "bytecode": [], + "datastore": [] + }, + "AU1BTK3F9ijrN9nZy92cZMCp83Yo31AkqytSHXBsJpS5zEcnjiLx": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1BTQQaXyjiz3gasTjgm4WdSY9kSxFiD6sYnQfv6Gd9RGPLWrpy": { + "balance": "4505.203638533", + "bytecode": [], + "datastore": [] + }, + "AU1BTjqMg5QQ6U7xvXvm6CUtdLKy3ao6jR5AyFpZLHCBuohSsRYt": { + "balance": "1575.587976939", + "bytecode": [], + "datastore": [] + }, + "AU1BTzWwcWWdckCZqMqyYK7ko6fsMbt8sZ1s98UbJDsqDT9jc3Bi": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BU7uLx85nNQFRz2FcrESnjkULw3vUkhYFe9pTpYrzupLpYaz6": { + "balance": "1234.020467390", + "bytecode": [], + "datastore": [] + }, + "AU1BUCeiGUoXNj4t4omhMpSTBejrpLnfshSQo6ygMhb15R7x45Te": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1BUHtHLwZFwi85bCFGwRfNY9C4pooo1DUKJZfktbijzpr2Bd5m": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1BUN2cfMp8PdhcGmpuHswhLGiZBfNaYCoZY6Q3hrrgWCjLA8o5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BUXXr5e2XsDcHS935eQpurZXfoN1PNWMfBnpfFPdBmPpnCPmU": { + "balance": "2073.028861068", + "bytecode": [], + "datastore": [] + }, + "AU1BUim8u2U8y5ybCT6T6RR35gK386EGabaWyDep272uKM2nSm67": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1BUsEKDd7vhDUE5ohWAFQ5o26c9UtLBXdVvt2GNcqs7RmkmQJJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BVhuP7V8qZZPX8Ny6BVzmWufG5b1zQq1Dyab2RMYUe24HMAjZ": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1BVpBN3MtcY5geshyxa7k5g4n9tu2xHSsMuaxVLoa1HrwaiRom": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BVuz6uLVjSTRRmxV23zSfpUE7hqTWoa3ahDTwPAsYfgzmZiZj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BVw6Qsz1xeHbzgCZihWPCQXEJ5vAnDQBUqbhWYVAXjjZsSEHF": { + "balance": "1195.256531823", + "bytecode": [], + "datastore": [] + }, + "AU1BW6wjpeCPVYqREsgrLrdMpNCKUsphnez4CaD8xiHkfYKaa65K": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BW7wzyprEqxD9NVf8XSPJdHRar1Rfuj2RYNipPtqntZWoBhZY": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU1BWY2yqEoSooYrm2kMN8eDEhGvz4U6bEKcHjAN87pkuhtBzzVY": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1BXLcZ8X1BXVJ1pintMHrkkuZtNXUURX2o76i8iBNPmf5Sg1fj": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1BXYSmPMKgLdD6y4P6P4fJ6Q4qaYH8JdafQGVsFcS86Pe8aUWh": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1BXyHZCBPCsCkTDXEYtHumtgYCC9sKyxVhMqBrd3krbE33yQju": { + "balance": "16.406431058", + "bytecode": [], + "datastore": [] + }, + "AU1BXzhH1B4gMDUhBB8bjG7sh2nNadArxrGYHP6rbmEMDc6zqfq1": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1BYp3JHp6f7XSgxjmig9puSqw849uBgfgT4pCLvFNjmArkNkBX": { + "balance": "2779.541889442", + "bytecode": [], + "datastore": [] + }, + "AU1BZ1mAXvqqXdDKrfp6VE3xdcF8UYEurJoM3E2du7vnxB4BEpEm": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1BZDGFQFGTiiAShMi9GLd2P5hjYwhappwLT7cJ7pwTBpk9bQok": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BZGMF3gFb12JYLRNHGyDpmops48Nb1MhaS2EfKq2NyJi8gZUQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1BZNTvx7jMisQ8jXBWWFcVeunuz3TvDg6wBnr2BTnQEaaoHCHp": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1BaKZp8Y4G8W6pr4eMLDFdY5SiXLito6ZcTYQghw8qh9237wXq": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1BaYoVCYAwFNwnEyMFznQun5abMYwVMtxPVVE9gbMbmF7oSLYv": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1BakoCs6XXTUX1aQuHATM1NiUmBULKwsGg6CSjQAL3N5NZiYFh": { + "balance": "590.539537534", + "bytecode": [], + "datastore": [] + }, + "AU1Bb42HhFPBxaqkHQeggSLdpLEVeZkSopTufRuirPvwcQEe4ef9": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1Bb9tijLodENUtK5DKdLWPxdFc2vB3oMcbMKyxdWrD8yf83TeV": { + "balance": "1435.176704175", + "bytecode": [], + "datastore": [] + }, + "AU1BbJhDeKmBZfu8pA2gbRXjXbAm8HwumzczKAZdEjdPF7MkBJNU": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1BbUqoNXmBcz3NsRugJYqizVAapr77PGapeqS2fTG2oGcgZh7H": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BbbY8he7WvF7sYCBzYCsGSMzhtF98hTa2RBfANnQUV8h9Swdh": { + "balance": "4825.200258662", + "bytecode": [], + "datastore": [] + }, + "AU1BboBST9gSZE3iGBEc6KEpjd9YR2Fbo5ppemx1tn82wA1vsgWk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Bbqk8G8d1TDobBQHkgkXvHjQPFLeWkUEswT7Rf1hakUVvDQ4N": { + "balance": "1310.070340272", + "bytecode": [], + "datastore": [] + }, + "AU1Bc6c7pPnibAx8DKfyxf1i5pAsmxqRnR9dERcBfJB5cvSyGpjN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BcCWCfgYumrWfF5i7uth4TN5c8HGuf6j8mQNpNoeSr6EeYDw8": { + "balance": "695.811321370", + "bytecode": [], + "datastore": [] + }, + "AU1BcfGkywYKS7bz1pGMmMqaNRrzev8rLhLWELKj1fpyfx6rgS5p": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BcioSC9ZPuV3HxuCSVSrdbRquS941g9BRpZvbz7bSVrSLL3y5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BcjSE5yCoRqL3KgJagr1SQvpmR8miJuSxh8rGyZhPgBWV7gLs": { + "balance": "3579.656019540", + "bytecode": [], + "datastore": [] + }, + "AU1BckZEVSN2n9bkwhoiEBpnerpKQinFqRouFM6t3V5wXrKhyXYt": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1Bd9ey4zuAPpoSFYN7cMV5QQuJkcr8LNEW7qub97jKupGSV5Ys": { + "balance": "276.104282333", + "bytecode": [], + "datastore": [] + }, + "AU1BdQJYGA98Qnxx9WtDp7dzJd6S9vh87ZQysNxre3fvojoFwFEr": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1BdVj7PvMLm5bbhuYY7xYgTraAJziXKH73aFmtkkDa9BeG3hj2": { + "balance": "2220.307692430", + "bytecode": [], + "datastore": [] + }, + "AU1BdZH6Q225gAnfLEPj85LqhJij8iX3s2HvLc9PG4MNpXTejizi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BdaAskAJL6QJTdQsSwa6os74CwXharp9FeAYEeBBhtPk57QeD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Be2gGtroHWFe3mqzFRE541u7UBWi4GU3SR3vx2Zm5sKCxYJnR": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1Be4NF46M6CNENojhsRK4dyreYff6LbE5DiJNJCpNAS1zV1PSm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BeC8cyQLU1AVxDbz4vFB93g8fCReEd8zQky2NbCZ6MbNuqKYB": { + "balance": "4466.227733620", + "bytecode": [], + "datastore": [] + }, + "AU1Bee7N5cj4exaGev4zCRm8jph7DXrYB2UuWHVrjBcfUA7CqcMB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BexUDCogeytLxcNb1YQdNns6swQfC835UUi5hfdWDeaXMdueS": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1BfZHF9zcSW7UUAfK3imtqd5vZshkZjW4n7WnyFdy4QqQm6LVg": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1BfyApnvF5WBSedF68hwGBxRMYK64RNE2r5L25CSy3cV8wFYSH": { + "balance": "541.026150954", + "bytecode": [], + "datastore": [] + }, + "AU1Bg4jEv1ZJo284FoY1utMgxkJNSfXDeNoc72M8yw3BpeN3piyH": { + "balance": "1366.633405015", + "bytecode": [], + "datastore": [] + }, + "AU1BghFATisJZjvct6wt7nujfH6u9od9UDsLvgbiTjAEEXZCDgyu": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1BgmoYb99V2R8XGNS7dcZoPc5L6Z6uY3MVsvWBwWEQa33m2uSc": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1BgnaUEZCJnq6vLqY4PddwPjurjxpy9hR2ztXe839Gk9zJ7CLp": { + "balance": "5039.362179511", + "bytecode": [], + "datastore": [] + }, + "AU1BieipwHbg76ZHKf12dsxE11XcdmFWXYzXzc8X74q9WtcqYg6Q": { + "balance": "1552.525660532", + "bytecode": [], + "datastore": [] + }, + "AU1BiicfwCmzeHcUF8W81qp3ZkKhi11Ada5tbEn9c9xYi2TRcUrh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1BjS59PsKj17n9j9UtHirtZwVz7WNDaSwRPisafJ2skigN5DAh": { + "balance": "4664.365623188", + "bytecode": [], + "datastore": [] + }, + "AU1BjV2fpwuzUaYk7sJ4mWuRJj7dzZakNcWyhk4DAiZ7jGgtsdCZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1BjtsHWANLkyhCrUokBpDhXnTtuZC6M66UP3nVbjWsz2jLAszc": { + "balance": "1137.680559982", + "bytecode": [], + "datastore": [] + }, + "AU1Bkd6H49QrUyuvR4Jcx6brFuG1mtGSM3Mwu9PbJF97CaCnDrHQ": { + "balance": "1189.816091205", + "bytecode": [], + "datastore": [] + }, + "AU1BkmaufX7F4VbPdCQ1ADaXUDoDUvYrJV9Cj6gTQP5znB2odChr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BktLoQ79JxB2MnEGFF8tFhiAFVgusaNuRHuBeCC4p7urpg35D": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1BmHWsdNSaXFoQ14sHqASy8tboyoLPaHYDfq2NfeT2dDKnTqYp": { + "balance": "3474.715403350", + "bytecode": [], + "datastore": [] + }, + "AU1BmR9EFxG26trP1SUabM4vmMD286bEZccZo9bfh1FVHp6Q4ety": { + "balance": "2557.733754597", + "bytecode": [], + "datastore": [] + }, + "AU1BmTGNd154NohhVAVhpxX3gbqdoPuKJvpmvGneFCuLv1Sjs68s": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Bmb2FUmKDUqhvpBuJqB8kW3Zu2vi2SELErZpfRPzCJbQWizuC": { + "balance": "869.619228949", + "bytecode": [], + "datastore": [] + }, + "AU1BmrSgydemXVioUD6tUrTARVWh2cxaF91HzF8d6VNA5pCfbJ6T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Bn9EQp79VV9gepJAQ9dGWynTf2tsk9C3pjxifjvJEmnCuStMt": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BnBgzZbaan7Fs1N19CFh67BoeQ3gD6rWjPvQ9wCpjrtZUVmvW": { + "balance": "1515.373255849", + "bytecode": [], + "datastore": [] + }, + "AU1BnzPznpT2AXPzXpQdSNk53Qr2ZuSVHJBAubXeac2djHiKW6G1": { + "balance": "3512.025557645", + "bytecode": [], + "datastore": [] + }, + "AU1Bo6AgG4a4QidfW1HfapX7K6g3VLCjfBP9nTetEXr7MkHgMdXW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BpaNCxX5g4Ww5CUA56TeYuLsPn6Lwon3EfzjZ67xvUdusjPCS": { + "balance": "3363.739075708", + "bytecode": [], + "datastore": [] + }, + "AU1BpuWE4e61p6qjU5qyW6oVJbNFVVnJqa8eVobGWbyeZghQ55TS": { + "balance": "5360.360293054", + "bytecode": [], + "datastore": [] + }, + "AU1Bq2jRL7iRNEzffnLbCE33e6XNZswg7nrgKsmw67ikKngidMM3": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Bq6pCrkRouxtv7F1grqxuqZ55qrBViQCSpsLPusxsTX5H4U6g": { + "balance": "928.420084615", + "bytecode": [], + "datastore": [] + }, + "AU1BqT9PT27aSZJWHbZ1uUFjHZ4cwUTrjvrg2LXzbRjP5gRCMVRX": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1BqmNEzgW3SPMCrSGF3b6VxZcwy7kbixhGQkh9wFggN6uKsjrF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BrCd6aFpAQuMwrc1ydmHxEkn2Usd28dd6RQFHs54kpbvotAdJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1BrrNnLRUcdBJ2bs3DUgdgmaFyexy518ECg9N97FCtk1muB5XP": { + "balance": "1215.320057511", + "bytecode": [], + "datastore": [] + }, + "AU1BsM6xiPs5yweoTb3WTQUrD1nQFVTnJxx6H4FbAfEGgBRAtLXo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Bsg7ye3tT1yr2jy6XATf1VDoMh9Z6qVSXHs79Zw2V5JEu7dW3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BsiHQdw7w4rrWftoz6amDcKovDxJPwfzavnpPaRQXsT7BbqRx": { + "balance": "1424.145038600", + "bytecode": [], + "datastore": [] + }, + "AU1BsjkRS1n6cVKC3wXfG6gibzUN5rJXcUDzaSYA81XFFsdf5oSc": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1BsoGJzRQNCgdVGmRSfyZyKwBXRMZkWa6j1rAw2KB6EKw1kWuM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1BtAjVBtbdTaC9TFTrifRTz397UVPHXghU5RrR1eiWVxuJ6pVd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BtWs4d3v4z8apbM2LdJHSshnCgdSbGjBhRDprfUAZ4FknjUgK": { + "balance": "1727.660925839", + "bytecode": [], + "datastore": [] + }, + "AU1Bu6s2q81Ko7mfbBDWBH6Mdx2wwjzaGmgU42X6CRukh1m49eK9": { + "balance": "2975.882237656", + "bytecode": [], + "datastore": [] + }, + "AU1BuKBLKXMEnmkSS1UwNee5T1vPoa4JjKnoriirX2jz8GXJ546k": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BuNG4JHpZgLcPQuAqk2BmKzTgUjHbfBAcfwzPGFvJWeZja5CK": { + "balance": "38.695390674", + "bytecode": [], + "datastore": [] + }, + "AU1BuQToCztZRQgNBSuTD8aFXaJTy6BZ7GGxD73SriViZA1ZJ94K": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BuvdvwotqGbNzGMgatkspZSWpVbe26PwBfGfkFK7hQ6NtWehX": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Bvnm2AvvJtgEhqu3GKfFkS6ZospEwrzLuHndyAPb8r42WfDo3": { + "balance": "4957.979962893", + "bytecode": [], + "datastore": [] + }, + "AU1Bw8fFVnd7bvXF1SJDQ2NdH5XznTkigY7wp6TgwvQ9GSCkLeJf": { + "balance": "111.513907175", + "bytecode": [], + "datastore": [] + }, + "AU1BwPx9JETfWckbMTiBDz7Q6gnNb11ff2qYNoUhZ75G9tGYN5dm": { + "balance": "1523.975678104", + "bytecode": [], + "datastore": [] + }, + "AU1BwfLBgYLRjAu1D7Z3NeC7NNGkKHBCCKgot86gaongf7jgnux6": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1BwwBtfcVDorJyRCj1KxKx4DbWULQaPjgZszaaqhafQ1AZigLp": { + "balance": "4520.621866599", + "bytecode": [], + "datastore": [] + }, + "AU1Bx1HFoAcCox2bkmHfHYrpcp4bXf5B96LyasSjMVtToxScNfB3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1BxWLLhq7XUmNqe7t3kH6LkSz8z7A2NGx2J5Hd7dz8EYo6JjWe": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1BxkrGtxXwRL3MXD14VSYBp7AGPi7tDgBV8g2F6go2eZEEYDQ4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1BxwCXQa7QzwprELjVZhNMpRuoEAw4LhFdvcavmEbdAgACLmLS": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1By5BHSxU6Sn1CqrE58azsM2rHrq27Zngw3CzvcveWaCBYcSjc": { + "balance": "3408.986704415", + "bytecode": [], + "datastore": [] + }, + "AU1BySbKk6fbdmWkoQA4X7DrrPhog5FqtpwUmUqwgH9Y2zP7qxDk": { + "balance": "4604.933586004", + "bytecode": [], + "datastore": [] + }, + "AU1ByTz1qzjjjVpQkjY2ziZkfsLEAzFSK1GCg4ZaVTPkrCgAvFty": { + "balance": "1.204522890", + "bytecode": [], + "datastore": [] + }, + "AU1ByVzjZ8E7vjgjb7VeKwRUA9ZME8MxC5bcTHTU2xAuMKTwitdE": { + "balance": "757.634096401", + "bytecode": [], + "datastore": [] + }, + "AU1BzQ4jUs86Tb4NFFh1596tSWDtoEiY2qcZuANnFYEaLgWDJ2ZB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1BzRcQ5cTJv4JMT46pyXmzVGr3fsBB8VLnkqjjkbrMZGtbbCNp": { + "balance": "1177.828979749", + "bytecode": [], + "datastore": [] + }, + "AU1BzcN7nbcH9dUrHzVJSrEjJ9xVq7J47eDqsux9YWPh2z3Mpi4a": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Bzcjcbwr5APhHa1Q3TnEYW93tJwy9faCDLk9fFDt7yhz9S4Tc": { + "balance": "3535.784133026", + "bytecode": [], + "datastore": [] + }, + "AU1BzqFGLE3H4YkNTj4582rfbTr4ZFZXgA3V6HRvVg6rbf37uiUG": { + "balance": "2976.159190822", + "bytecode": [], + "datastore": [] + }, + "AU1BzqMbiHorMHB9p2HnFqpa8cgVhWxqvcbLvJtgLEGNoiQcgxdE": { + "balance": "1697.601676772", + "bytecode": [], + "datastore": [] + }, + "AU1C1DgiYGDNSU9DzRwh1br8dvEQuLUjBvPMCoNi5M8oCLGAM9Ce": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1C1Sm4i4maYkHiswsaRKQp8xKtUTGdtqhqhWZ772zoGpNu1Cuh": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1C1mWYLdzwERXYNPeX2oiExgWu8xURbqv8aLQQ8qt82M8wYYDt": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1C1otUR8opxTH9w6vViZAtH5TqgddcSLs9xUMdXnRrMEAZKgqM": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1C1rEmPuJMV3VA9Hfzm1Ra7WSaGqE2SZMoSeZrXdx5Aw5AQYDg": { + "balance": "10.916204009", + "bytecode": [], + "datastore": [] + }, + "AU1C37rSYwy89eVJkFR7yEktQZCpPdiXk8ivyEjmXEtCgFEvsBfA": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1C3G732fuwsukAfscqvtb2oYbncrQV8yj73criSUvkuaT4bzd7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1C3YCVYuWLng5zkkpoxyjTXKoVkED9zeNtZUprn472EVJcFCu4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1C3bDma9GfoE9LUeB3nKfCciRcrCUm7uB799423SjU8nYEbjRY": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1C4HCy6T767oxEpS8ZacH1haiKbbTyyEqKqVao4fJvPJCmgatW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1C4X7FCutHA8mKVQqCmJWBn8GGxYeTd8hzYFEYMbf8gTt6u4Yv": { + "balance": "2649.851667870", + "bytecode": [], + "datastore": [] + }, + "AU1C4fTsmAjDdGTwF6oGg3vnMjqq2oPFW3ckRWYVpdvrJGYBW3tA": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1C4p7xukV4iXZUHBejfJmbvTEU3yugdgJppEYJZCSjyG5Ridnd": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1C4uC7dsT9DrbHkd1XgLvJ7wgpN2npabyeRGaDzsFoBJhwAs61": { + "balance": "2343.958995868", + "bytecode": [], + "datastore": [] + }, + "AU1C54MwoTW5cwiVZMwSYsf12dTiPd7V2RKJ2vXjGzKxPiHtDu7L": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1C5SY3LSXkrS9dQGi3GszD7kXMappLczv1Z3aWKimDyvkCxuDT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1C5jaMPn4JbpLA6S5D28NpSNYqTe7bVYi5dL876SNYaXkBQzYx": { + "balance": "4785.011910530", + "bytecode": [], + "datastore": [] + }, + "AU1C5pTKD9XFihDTzJUMRA6fmis7uAE27DvXFG481mRRBUgpRxUu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1C5yDa8roQAQfc7JgUS2f8HC2DL4jdiRa8EPt3HJ8NG5zpaCJx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1C63mLaP4twGxykaS1DMvobRLK5qRBN5JLagqKW2bcGuVtBEH8": { + "balance": "2336.713219571", + "bytecode": [], + "datastore": [] + }, + "AU1C66KY7axXJ41nWirpSxhRWsipiBWodEQ8GvpQKW4CxRXe1a7H": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1C67bN4c37bJLv5nJcP5ynLg1mYYdsGGqWhQE2C9Pq1fVxvsEY": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1C6AjBD4PyYGPdZuhYxk2jEYiKFHEL8fxUNCgRE1EaTAdK7qCJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1C6LqU7TriQtzCXpGwVkuaBAiUyJUDZbE5MwFWi8BeH44p3ct3": { + "balance": "810.033087308", + "bytecode": [], + "datastore": [] + }, + "AU1C6wPjo5bvHCm3rxDNExWP26724eRbRBtHzJMmnaS8UaFXqrYm": { + "balance": "1382.435061851", + "bytecode": [], + "datastore": [] + }, + "AU1C87wmtcPhzetzx36S6HvWTn2rvaUvke5Lo46UhaU9N1GLADrx": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1C8DQzgi6rox4dtha1AADnsQ5tFcs8ZsHgTZD4H1rxGasDTKYm": { + "balance": "1342.401866308", + "bytecode": [], + "datastore": [] + }, + "AU1C8dT5TBNg8u5A8udoiMW2nQewh1vt71skjyJmWk5n5DBE5ExD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1C95veDEkjbGeMdA7JWCpsjsoZ73bhEL8pV5jtypPqDkMVJVnR": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1C9A9v8KkeF24iGUDtuXNqtuk9p67h9CeSSNeB4a9sSn99cjsk": { + "balance": "3713.484708766", + "bytecode": [], + "datastore": [] + }, + "AU1C9XYSczre1h6TJtbFSMZ7QgRdvPpuFaocz4xv8MpQ1ftYPzdh": { + "balance": "1851.621889085", + "bytecode": [], + "datastore": [] + }, + "AU1CACWru2tDGkqJCNWq5QZ5pX7MJQfSg8EyVTwNsxkp1E4TXgjL": { + "balance": "2426.475892755", + "bytecode": [], + "datastore": [] + }, + "AU1CANCCvDdJes5j72Ft29DXN36W7TvGxd6aXtGUQH5otKVf3bSQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CAVU82P652meLwEoQgYuktyFRorWVMVR6yP7X7gNQyShozZwL": { + "balance": "683.403220180", + "bytecode": [], + "datastore": [] + }, + "AU1CAWzgqADT6WNQpgzn41VgbLjSQ2zr34WvByGprbb4FJZ1rnsT": { + "balance": "83.970879375", + "bytecode": [], + "datastore": [] + }, + "AU1CAwGB8hBfGWKt2JamSfTgMw2j3xmVtbHmgBsEWQXrV2HTiDY2": { + "balance": "6022.840716890", + "bytecode": [], + "datastore": [] + }, + "AU1CB6W2ELfkiXBdZjNNGqqv2CrseEPjCsZEWd8U4QnKeunvKMtD": { + "balance": "3026.947389442", + "bytecode": [], + "datastore": [] + }, + "AU1CBAfoNkpWEswFKdxqKhq5xDoEYESamLbP2T7EjEsujjXofV5u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CBBH8JeMYnS8chAToGRJq87fzPwoPVQpGLy3nUrYmdf2LBac7": { + "balance": "636.958838943", + "bytecode": [], + "datastore": [] + }, + "AU1CBBKAjk6iqgNUEotBMttkHNAxz46MK1zuJ9tBbjLgD8dJN3Ux": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1CBC2qAk9R1Hfoa75gsSbejfYDv28ooNJYXhDSb9p7rX8gCtke": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1CBbJoc5pSxY8cpWqEUFT5TQdqnFyXdwUR7b9fE12iBRQDWPfV": { + "balance": "5893.340837985", + "bytecode": [], + "datastore": [] + }, + "AU1CBndvkPetkpSxVZAv3ciCyv1TUV5REp87RUDaZPiyF3BDUXwL": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU1CCYE1swVYBuDpuxhxvfQ7ERgR9HfvUyBQK6QdpW1Ub3Mr2fEH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CCj1LQiM215XvYWEcVPpYyLHje7NgiHqVvnm96dAG5GL9B2DC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CCvknwvVbuMLkgMfK4Dr6BQ4ayCU6DdeG3TakZyjRDEuW1TTW": { + "balance": "37.031794943", + "bytecode": [], + "datastore": [] + }, + "AU1CD5VHPMPryhW7LBoSikjYqXjJn3swdkSrzZhbNuPQo8Z5Qvjs": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1CD71Ysyeu6TvDZ1gAwiLJQHQk8pZTdKJo1JSxH64cbWuhwhX9": { + "balance": "1755.950955473", + "bytecode": [], + "datastore": [] + }, + "AU1CDRtfZY6hMniyHStSAeoKnz9dHa8ncrvk7XG2Dt6oWAZxpeus": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1CECp1aoeQMR5PEP6CcNDh6kZ9u26UCkCXyJdw1utir7E4ePjp": { + "balance": "1.332142510", + "bytecode": [], + "datastore": [] + }, + "AU1CEVTJ29rRw4fPTwe7E8mKe8ju71LnTdu7STStH1wEAd5oCzms": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CEjazUUFF9D4Jsefv4knyfh2kdeQRPZXFJvFV4JBDSpMW6env": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CEroPdbSDcmJ2EKMkNDPfrBJkkYjY1DKM97QRnhAgQ8C9E3YQ": { + "balance": "1490.195101454", + "bytecode": [], + "datastore": [] + }, + "AU1CFECGmdRX91WnnZ9bgKVgTtfAZxDTEKfdyoG9bCJbimNyQi6u": { + "balance": "2450.099449897", + "bytecode": [], + "datastore": [] + }, + "AU1CG944YXtJksPa4nGth6B2X84Ng63HUrK6eSEsPDoA5q5WZWbi": { + "balance": "1735.647322058", + "bytecode": [], + "datastore": [] + }, + "AU1CGNBXZXVSZufie3hfekQiV8r6DZ83bFqM53whps27Awcy1utD": { + "balance": "2089.712565048", + "bytecode": [], + "datastore": [] + }, + "AU1CGmB5SvWzci4vo8qwAFLQNQK8HRXayv5y1bW4iEXcELaA823J": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1CGseyr9hoD4JzYUQb84ZZK4t1rtGbN4u5xC6beh2UGpU5K8vn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CH6MpUPtE7TzFHex8FNiXSeXNDjd9DGtvKucj1n3g5JrGZJs4": { + "balance": "1327.261341510", + "bytecode": [], + "datastore": [] + }, + "AU1CHWsULr6AdgCtzZBiBJriJEqYoTg89to97GzF42kW7mp83gVX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1CHa6XE1WwNdoVg76LjnJaouZdTyxksoArbeArDHPdamagyoep": { + "balance": "76.327896531", + "bytecode": [], + "datastore": [] + }, + "AU1CHfnbyYPcG7hSRkxrVYRPrjMHeRQKJrtRZLvZdYUKtzrYYpHp": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1CHrdiCyHgAhEuvbpn2RsoeQDayEGzY1FQUyFvenh9nseuDtAx": { + "balance": "810.188775267", + "bytecode": [], + "datastore": [] + }, + "AU1CJ3f3HaxQMape9j9onBrgWhyBavESonbfPN1mLt9GS2SBTpat": { + "balance": "1037.784101060", + "bytecode": [], + "datastore": [] + }, + "AU1CJHGtWN1KQr4qmKDYjUGbnvXFXhtoy7YsTXHwKB8aqfbj9dfj": { + "balance": "1028.453153764", + "bytecode": [], + "datastore": [] + }, + "AU1CK5Q4qdGHXasrzMtniLsKjJsyZTuwmzQV1p3JMhaGYwkrCHDj": { + "balance": "1059.646834734", + "bytecode": [], + "datastore": [] + }, + "AU1CKB3cSkdGmbpEDGEmeEzH9g8ZnWEwwttiPG9HrHHYEGAzTmid": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1CKENERbQag4HUPjVzMA9JXRVyKCWBFHMreDAV7Zer4KNJo4sP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CKnpU8QABXhfY6iMiNCNxK7AepFip5tCC65WVtY7UTgsw9hmf": { + "balance": "1155.503705230", + "bytecode": [], + "datastore": [] + }, + "AU1CL5nRf8bLBBW2SRdGQButKcbxChWUXzWFpVVdHgbr7jHQKKmW": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1CL7APBeWhpR6zwBgT869mnYEcjYuise588CM8eTCsZo6VauqT": { + "balance": "599.552765288", + "bytecode": [], + "datastore": [] + }, + "AU1CL7euhZeQTBRaK3msy9D8kJJ1eN7D4s6NXhNiQnzNeG4JFKbD": { + "balance": "1420.190542048", + "bytecode": [], + "datastore": [] + }, + "AU1CL9VbApBsHZkn7sQqTErDg3J338AxuPTeb6sB5Fkxks8bszfK": { + "balance": "15559.443946786", + "bytecode": [], + "datastore": [] + }, + "AU1CLL57rbxpHGzarmmGWMrVXY8sxj7gKCRrvz4n8m3XkhtEkYSF": { + "balance": "2069.187575824", + "bytecode": [], + "datastore": [] + }, + "AU1CLa6x3mKksnRCytWdfN9v7n9NZesT197efXeawzjxdcCDFkic": { + "balance": "527.952801771", + "bytecode": [], + "datastore": [] + }, + "AU1CLn9Dd1G8MtnJzqVoSsnyGZE3btkEtNFq2RREPHzcrCRfkJHN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CMUA7PhiXUDKtyrWcPmY9EvLKrat8TS5moA48GdSczzvgKkCf": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1CMbv9hdETXJQsprFYzU6US1DS1JAi4NejHwoXFQEXME4fciGa": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1CMpWXNtzVpQpaGHXm66zbNhHkt7RR12oFfYtRmDtCVcPLghir": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CN9XnsWQ9qMrNJRmZwhopK8z6PpAx7jT1tSbtpBCnVb3oXi7u": { + "balance": "1547.661403802", + "bytecode": [], + "datastore": [] + }, + "AU1CNhHUsqk8fy7u76wAawDq21MAvDQw9xF5YgUwWPeB92LvtG6C": { + "balance": "925.389886539", + "bytecode": [], + "datastore": [] + }, + "AU1CPKN2GDzwzw9EHhYAj8HUetNy86vvPusdahM7JoTHXNuDwMeJ": { + "balance": "2427.433035838", + "bytecode": [], + "datastore": [] + }, + "AU1CPPDFYY7qrUHV8DLVqHGJi7RFQC2kKQMfDWY93wuw6dMCGzDv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CPynJgeaqtkDsourkQ6eUq4p4DFz9a4vZsC1N7UL2ULAy65r5": { + "balance": "944.371964370", + "bytecode": [], + "datastore": [] + }, + "AU1CQ5AEG6WxVPcrhmH9C5UDQbrzHiZFhAEhfa1Qf2y9j8UPEQhZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CQhoreGEh86uXPFsVmP26Vp75rK7wua3STEL7vwG7Vx7CyoMW": { + "balance": "1927.247085372", + "bytecode": [], + "datastore": [] + }, + "AU1CQiZx3e5BKvDekXC67f26CK4WpZNGp3v5oN4R43TcRKxw2ES6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CRPnY4TK5ApDh3kV6dD7SQGu7JwkXrkJHrHqJZZGg5YGjZyGd": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1CRZ7u8Tz1AzQF3wvtpje1qedFfLTL8MTFb69Qa2Y4FgmwZGVR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CRzYax8qXcD6tjuRYf2KP7d1yHbMi6c4yPRC74bzwCUCDWtrM": { + "balance": "18.485565341", + "bytecode": [], + "datastore": [] + }, + "AU1CSYYKV19iHE9f7RNEeBNF4Tj3KuS6pbkpaFPdNERfAqmm9BHm": { + "balance": "4.745074667", + "bytecode": [], + "datastore": [] + }, + "AU1CSjzvBXW7TUKXVxHDyWFQpJLqNRa3enmrxsAs8tsTq6TLGVEk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1CT1PPetDguBupiYZaLCe9iWQ2fszNMW6EcDKFch3jpgmwVbXk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1CTCinUFVQTAEXnCASDqUonkqc2uq7P9nk2EfxfCSHURyNmFfB": { + "balance": "1021.210132081", + "bytecode": [], + "datastore": [] + }, + "AU1CTGrkkSxfwwDBNV8VDqZQNLv2NfbMLfvjJVnDMpcaCCXZnifX": { + "balance": "3878.696984106", + "bytecode": [], + "datastore": [] + }, + "AU1CTMoENaTQicfWkXrpfpVo4xmxZU8YEcfqLXBsFULETGQBmacG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CTQDw3qiJ1yBrsbA4nrPxWJ12a8KbdwAhyNRwhoBcpx56tE6V": { + "balance": "771.133442673", + "bytecode": [], + "datastore": [] + }, + "AU1CTqR2uUBiA6cXx758znzntZpsNrHa4tLuTuwgVkhPETBUNpYR": { + "balance": "1007.092183627", + "bytecode": [], + "datastore": [] + }, + "AU1CTybaSiWLY8LyYoZNE452gg5PCfM1bLc3aMtjtANXorNbeVrM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CU3x9q2EUWh2XyxJQEiq3KAsDwFqWrcvW5Rj8F3TpcfMx1DdZ": { + "balance": "1091.024915647", + "bytecode": [], + "datastore": [] + }, + "AU1CUfzGdbNsgD5FqYXCa6vth56QtGs58bsiGM1cE5gfHuiJBCXt": { + "balance": "4626.302249859", + "bytecode": [], + "datastore": [] + }, + "AU1CUp6VW8uqeak4vBjLDe9cJezYLjTWW7kR6jvBqufY8Ru7Uh2K": { + "balance": "918.944448400", + "bytecode": [], + "datastore": [] + }, + "AU1CVNm16sdw4GJyna39vtF3GniE9teDuoCEUBNeYPhEHv6gUkcB": { + "balance": "1821.209677675", + "bytecode": [], + "datastore": [] + }, + "AU1CVxKWs3oj5GtKVNNgtystJEL5BhV1oLmTasYKZn98aqX8rsEK": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1CVzsapeoVvzkjzxA4sWku9ry31mnkCygKKGbKZBxvEghWCghV": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1CW4spjD2YbjGGHJETphft6HWmSH2Vr8NarSSGyTVLRx7KKfjD": { + "balance": "948.811782558", + "bytecode": [], + "datastore": [] + }, + "AU1CWQ5kwb16D8LY7vWkzoj3gUF5UdfXQKDF66AKo7PuVhyQ8Aqe": { + "balance": "974.742192232", + "bytecode": [], + "datastore": [] + }, + "AU1CWZuuqDXYDxM1BBXkJwua9hYAxTgRwTkwr7XiZzMV3uNi6yWg": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1CWcVgVfhtRzvf5B6KGxu6oXjtBZEygKiGDGEJ7Sv8HQLh4bRc": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1CWyDzs6ZXtG43DevBZoR9PEs976tub7VtFBejXRhG8yuEZYkV": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1CXGArL8HAG4dbACwEDq2mVpULUCex5EmSVmHf2cERxQicF9nB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CXTeUWioo6cqnpNJqMJhyihZTJY8bbf5HPV9yKhLQcdzSej4q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CXf8VPwVE5RXKHjwQFBajXzARrxLvQwr48phbDY7SnZeTuuFC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CXrsGvEfByGZ7w8EGXGa4jvvZKTEGLhB4QqAMVExKaHzpF6Xo": { + "balance": "1090.345189456", + "bytecode": [], + "datastore": [] + }, + "AU1CXxWdZj5S67mkEdSQLfPg7Bs8BjS9Zr3ktPVgmpQX4NWz8aeF": { + "balance": "2392.121122326", + "bytecode": [], + "datastore": [] + }, + "AU1CY7JrCrtRyed3iNA8eke7BTEdsGwe5QCxBynmsAzyiNYtVmxq": { + "balance": "2259.223320557", + "bytecode": [], + "datastore": [] + }, + "AU1CYHJrng9ScDVo4WdZNVVanMoYR9tdWvT5A38NMJzEuRnR4teC": { + "balance": "3353.645848286", + "bytecode": [], + "datastore": [] + }, + "AU1CYWK4wLqvzh4Q7WFdmtEDfwzUjJczLw5Vckft153a7BUXFuhF": { + "balance": "3034.524530987", + "bytecode": [], + "datastore": [] + }, + "AU1CYuiqWbYuYgKxe4GEXBi4pudU5Am3AKJDsjbU7X2Bo5D9rP4L": { + "balance": "1808.694677860", + "bytecode": [], + "datastore": [] + }, + "AU1CZEJ2K9xNGmtDX7R7YKFocXKEL8cf817M9VHj4PTYp7e92AN8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1CZEjC4XWn6ATxWM78b4M3RsaNgPsjV9LKG75CqMvE414MAHTz": { + "balance": "5450.699010338", + "bytecode": [], + "datastore": [] + }, + "AU1CZKUtFyeRDPjRNeF5NSEMEEUJkhxUynPZ4SjMctJEV3dtPRRY": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1CZQui3wCac95AMLoScdPsLxReKXM5T735UYBD4aifbu1M6rzA": { + "balance": "4873.824977360", + "bytecode": [], + "datastore": [] + }, + "AU1CZXMzkKkLr95oKWpzFGwSi7QQnWq2s2t2QVGzVfymnupYmn8k": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1CZY4YrkXX81CVqH1Yu1HCjAn1o7ouB6dY3Kdf3hB82amygT6H": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1CaNZTFjLk9HLV5fAB1D8YNMX25gg9sBQMDnVLPDFpzt5sAfGe": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1CanTf9duiP4YZo18NgSUbJwwekRTA79wFB2GChP8dj8soe6dm": { + "balance": "1430.614886992", + "bytecode": [], + "datastore": [] + }, + "AU1Cb2Eh1579aVUSUUmAMsKv3NfNBUwAX2PczVg5a8zs878N6r4e": { + "balance": "2460.387378623", + "bytecode": [], + "datastore": [] + }, + "AU1Cb3s9RgngeMHqfm7zjHfUNxxJNgQGnNriFpnvnXEbxQVCPtkD": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1CbHe9NBz6i1mnyKX9iyR62Fmc22Dt4aeSnhDxPnZeWbLXuwSN": { + "balance": "1719.887895915", + "bytecode": [], + "datastore": [] + }, + "AU1CbK4Z1ftQCViCqDtJ7g7Lh4Ep76yHDctfoZQ859GNDLJ6MfHZ": { + "balance": "1877.441180103", + "bytecode": [], + "datastore": [] + }, + "AU1CbK4mSSDkdjrdJV1UMi1Cbp2NNmT33NUqVs6XDQsaCU9geyvd": { + "balance": "1091.951619967", + "bytecode": [], + "datastore": [] + }, + "AU1CbRfV2P4yaFPocKaewReb1dPHHQC5RR4jQWxpikcKRZN8x46A": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1CbivXgJ3qNzRUm4KNZ4aJPYt9XsGYg3NXtuQBTqy62rLpMZxy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CbrGVf1ZRmATSM7kBf3jgdg5vtuuau5Hoqur5PbEG2JH7H4zg": { + "balance": "1263.857149388", + "bytecode": [], + "datastore": [] + }, + "AU1Cc1TB4oKim6Mj96qqWhgmVmPgxWhUeLQkNvNUxW7vspUerPSB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Cc73XLgwTBgctnAwMbsnzDceaPpxo4ArMHi299cRmSeA7HYHm": { + "balance": "1720.594876646", + "bytecode": [], + "datastore": [] + }, + "AU1CcD8TqzfoVBTrFRy24aZPtWwWsiHc5gVjfxJmRJbwEGZxnx7D": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CcFRueJLPsH74Mu5CyhofQ5xHzj8PMmtJSazwovC5GzAU4gnQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CcGADPUazjCeAnwPT229fjJErh7eUf9RFf337DoJy7b8iF1Vs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CcVQnnw1E6CkWuziVgKnzyS3RbmQv33Mh74JQCY2bBiBXVy95": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Ccf6odV9bzSi2gGhsg9EvxHTAHbUu6Ly2AWGF22G53bMKAauG": { + "balance": "1739.511215857", + "bytecode": [], + "datastore": [] + }, + "AU1CdFe9Fs2zKVVZHqYtEe7RpZyYmmhRsgAwCNTgH5C7xnFvzRJd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CdFy6pCfLoGMFJkyPkohooVX6PZZ6CG5mosdinK8ui3oB51cA": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1Cdo5hA3KdbpcCqhpDFheeKEFKCPG5v3KSDXTSuxB6FnWiAsCC": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1CdvSXDYo6ViDguNSZTZveZUKn4wWvhC52oz51ksZ7jeYjdY47": { + "balance": "795.545476426", + "bytecode": [], + "datastore": [] + }, + "AU1Ce2H6ZS2bgoF1YC2RYT3M7y9o6xQitREgeFDBaECsY6uApWnY": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1Ce9u95o9rkk7u3i5n5kBHdWKQRbxdqqycCwetu2fCX3WTGKSp": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU1CeCYgtfqoeiFWuMyUFbBQuWWaYhsz7LuBUvjWHHUzXawojmfQ": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CeGG4NBM7GjxxFHin1riAnRdosLmivGetSRVKxTPpU2Atpwgh": { + "balance": "57.471300341", + "bytecode": [], + "datastore": [] + }, + "AU1Cea4V5HQk1e7ipABJzKyAYV7BrKFHf51r51ojAV7Lnwh3xBrB": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1CecwbUoZeAx6hjJKELhnSngR6QdH4RgPcVGJzNN5VYzxLmQzB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CekvymsySmY7zQmfnBH479nPJFyYsCw6CNpx3yZFuG9Cs4Syv": { + "balance": "4420.668128038", + "bytecode": [], + "datastore": [] + }, + "AU1Ceufidp9GLpKQkK3LeBd1WVH7DhHKvfdZhAJUPP7NoZ6gHEuY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ceymh4zQYYcGoJhdYB2xaVaiCtbAKSrDUcgDHTYyU1xpGapiE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1CfZxCcP8BL4zHVXDGgRcxqswhq42FiKqrUPLHZLLE2e8hmqGt": { + "balance": "2001.408692013", + "bytecode": [], + "datastore": [] + }, + "AU1CfdG39t4qNxrMnbrX8fyA5od5RwCSZbsMCXyQU5J5M7jmuMD7": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1CfeWAxScihWESKwkbK1p6J1knYLXcjKjEDdta4KXXGBrsg2sE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CfykwQAaytcBDDUSRLQAMUQnLfi7KQDs6hhBJyy4SL2udW6VP": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1Cg1p4nZqxmqJzNYSHAqibQUvMupnFmaSADK21rBGKGbfyFeP4": { + "balance": "578.667547808", + "bytecode": [], + "datastore": [] + }, + "AU1Cg5oPY7QyeX4j3tnWeeiy8ST13E1QVsRoXex8FkdpkA2fMHB1": { + "balance": "589.155301478", + "bytecode": [], + "datastore": [] + }, + "AU1Cg6Rid7LiFYjKxBByw7hab3v7PQns2ENEPUKZEo5jFitGHcwM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1CgJAXfNeE2cKgu16e65J7F8AwVumzq2z85a7Zf5EAjW68EPr2": { + "balance": "5139.575622773", + "bytecode": [], + "datastore": [] + }, + "AU1CgJgxLhvsEVkvKUGppebVJj2TUfu9HY3RWU7v5yFi1wgmAkJm": { + "balance": "563.321705682", + "bytecode": [], + "datastore": [] + }, + "AU1CgonqkNCJq32b3UAhPrZQSh1LDKxCLh111RxvYFToXKsDHkRQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1CgtfFp3vVyB1dy3UQctwsgfSei3phJYNKmwD62QqFCNDYoJp3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Ch7Cwb7XDLoE2gHmtfdVPnzxDNFmym4WdtBobswFB8VnPvJkE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ChtTU24hupEq6v3DS4oByUxMypjf1sjdBTBa2XvUJaxkXDxm1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1CiJf4wqMsBd4bbUQRFVqE4bBmNj7fvsZ5W9CUJ3X8YL32yFqy": { + "balance": "2462.720717950", + "bytecode": [], + "datastore": [] + }, + "AU1CiefskqnAdoJN2nErA8DfvM1TtLoCjPbV72BnF5ZWi5KcGf6g": { + "balance": "1438.108058602", + "bytecode": [], + "datastore": [] + }, + "AU1Cix7bH49J1wWR9FBCyhvMncEuLLcr4w5Wrm6DzdGtgXsrpfC5": { + "balance": "1581.471948638", + "bytecode": [], + "datastore": [] + }, + "AU1CjWzmAfKPJmej7C2MYC9QRw34DP7RVorxLEJ2aZzvWVnVxSBZ": { + "balance": "2570.916188429", + "bytecode": [], + "datastore": [] + }, + "AU1Ck5GosMSjd5JW8RraNp8ucpAL6wcXDfw6Ly4VTpvhzwo6KDh9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1CkWwzpeQVgrBaVVLpBPaee8TYJacuUn44CLiY4vbAnhzqbECD": { + "balance": "1285.660185427", + "bytecode": [], + "datastore": [] + }, + "AU1CkYaw8jn6nxrD7gJPUpiLi5SHiy3wZ1rZGhiyYDMxsSRKcbUq": { + "balance": "1056.270551398", + "bytecode": [], + "datastore": [] + }, + "AU1Ckz7w4bpSu3zj7eFsyEQVRY2d1w4idw2NKBCbgS3TPctJ4NKR": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1CmPu3HkovptwbbAs8axxzd9QU3RCbSo7gnxrkk53s4JybYhnn": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1CmdNJcicGZX2Bvedd3QBUmzQMzZyU6ZC7oef1rrcV5cE2QiAZ": { + "balance": "1947.612091580", + "bytecode": [], + "datastore": [] + }, + "AU1CnVw81b4ETKSFiH9uk2fVHdrumBBRML3D3p8TQt9viSMrzVxY": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1CneG1DTqkBEQ5HJbPSQx9Hzt4L78MmaH4ZN4mpyXc3WMVgdNv": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1CnhucvWmpEP324KBJ6AttU9L2WEuXH2nBGC4xMVQVrrMRP2m8": { + "balance": "121.287128713", + "bytecode": [], + "datastore": [] + }, + "AU1CoKui7N1MySXzLz4FEdrsvTQWfsPqFJgALSNZMondHvcSaPtu": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1CoMwwsWU5QTTJVmsNZfTegkrt8GsVwyww3nF6k1PjXijWtVuK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CoQ7FrFscTB654LUEWBx4Ead5SjkxqZP92g9SemY3vKwZfuX3": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1CozAEehthmofdn6PvZyVUSm48n1JTHAG5AdEinpiXLD7mvjGs": { + "balance": "897.880556728", + "bytecode": [], + "datastore": [] + }, + "AU1Coza43DfDSnDCnhkhsZiKaRnpyyxTGx9nwTzKetKt6RxhWGJW": { + "balance": "1604.122334324", + "bytecode": [], + "datastore": [] + }, + "AU1Cp1kmmAqN2kabbzP3THNXH62GSLV57y2YnkTM5SNbKqLdsQhB": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Cp3dLoHmvnkxTpKMrdDUyfUnH51Ac31qQJ9g6K3ANxjBrZWpk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1CpgWXkYsirYNACeKbXGDL39n78yHifbej2pyEAWV9GiVhogqs": { + "balance": "2415.876755287", + "bytecode": [], + "datastore": [] + }, + "AU1CppVYhtz5Dg2owZNCotrjJGm8PD62Pzoz3xkgnmNFC5sE3QHx": { + "balance": "20.651085096", + "bytecode": [], + "datastore": [] + }, + "AU1Cpt5JHaT4s88cNpWy26B99vRBhQxovZC958CyPePDk1BPwj88": { + "balance": "1434.609037360", + "bytecode": [], + "datastore": [] + }, + "AU1CqMvu3Hhr4LrMEzpuaGaFdWo2D9fRfpW9rfW3bvhxkYQ1nZzD": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1CqhmRU9QCDXPPraKJS3qhdNWDdC4w6MhpozAK8pWpiCAvzRQH": { + "balance": "2718.455618292", + "bytecode": [], + "datastore": [] + }, + "AU1Cqkom2DEaeQsa1YQSCcyt2SMFeV6bX2PUtmVaKdQ7JxN3EMv5": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1CqqKcYQ4KjF7qjbT8ExmEMNzdb3vbzPq2zrHKa2Y4oPQqjSJh": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1CqrMK2yHV8LfLz7VP2ijqJQR3r4TeRuAuf4q56jBNCHRTqjrj": { + "balance": "1246.494665180", + "bytecode": [], + "datastore": [] + }, + "AU1Cr5X8VRgUcq94NGFHMvrRP5Px9FzeRKmnts5XVAYw88K4tL9F": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Cr6CUQn96Wpk1vBtpkMJ15eXQH7e1bAAL3v6RpRkQpLEQHdpi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Cr78L6M6z1WoG3eXmZbqRGmEtrw7Vp3JdhZUtUpw3KY24EzP2": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1CrLwq6kWApUiDjVVxVKpiUS13Wevs7ZDKa8k4uD9BR6TaxhS1": { + "balance": "4635.101682299", + "bytecode": [], + "datastore": [] + }, + "AU1CrRUnuHXYB3NcRauFVB5ywAm8pgPfkYrfhoF4DXtLUh8M8e53": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1CrUw3ectD3ruKrYUSg8waoVbvn3Nvc3SsjqEA4GwQRSAHpmMB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1CrbCDuCyJMwPWq6Z26Qa59rGMs4QiPp1SG1ouE8xmPHMNKFkU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1CsHZzbBsxxReTG9LofGKV3g7Qz789xdbsKT5pp1umAW7oW7oe": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1CsyKs5XRstGFXaG7BVMS7DG4EPNb999zVunnWxc3xRRBzcuDq": { + "balance": "3621.519234184", + "bytecode": [], + "datastore": [] + }, + "AU1CtY4fdbyUGtqkxHei2SHmDJWTpUnugwHTGzoopGdV87qvkyeZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ctc3gJLxXux3RPuzDdjnUeBhtYqTVCfjnpkGqjwfBHVcYwQzF": { + "balance": "3010.360038450", + "bytecode": [], + "datastore": [] + }, + "AU1CuLqWPB6R6v4N4CNsFmXBmVDPXSw1uKwCbhWbLZP3ob8JAQQq": { + "balance": "112.647964047", + "bytecode": [], + "datastore": [] + }, + "AU1CuXHrEdpqab2bqo5WXNReYTUVJy6FrptgbwiWPGMG6WxBxEnK": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1CuiUz1Qwbxti6Yjiogkx7XLcvadxgRJzEt5kChopgoxmY1Gum": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1CurhnCUV1vbQnJcfdiamPsHrBavSXUy5dCnjP5qobT1oyvWDP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1CvyfF9rpx9S6VupZRNZx13zgmenjYeX6MZEFTFp9z7KtgfYvT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Cw49Negr7SyVLMPQdF2Fz2t6Zgm2ekSGxHgFA411uK3F6Q3ww": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1CwRJhnRn4S9t6owS8dJUkMXFzzcnKZGswe7pCqwk9xiD2ijnu": { + "balance": "991.761782306", + "bytecode": [], + "datastore": [] + }, + "AU1CwTxBvXNGC6pLAcTPTJQ162nEWXZvK9HnPyx7QmzharBnHWfa": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1CwyrHS7bAMWBCk1zGMWC1vwAqPUE9uQuDbSeCuBztqK46REDy": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1Cx37cHXaw1jtfvGYdj23rEudZAXcQz2CZkyoteAvZgpYfWDhv": { + "balance": "1320.704622719", + "bytecode": [], + "datastore": [] + }, + "AU1CxddbwerMQXqYLA337iiNLhJaa3kQTi3Fy45cyfsN3jPbJcjG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Cxj8NMyRzw7TqPqXmMCcPb69vYvomZduEEiyMR2ovGTqd5dn2": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1CxmMedYa8gGPccjWuTCJCss1RPZZgZFnb2tisR5qjEhdaTEzg": { + "balance": "1123.030007966", + "bytecode": [], + "datastore": [] + }, + "AU1Cy6F9pmAkcyRL4qbvjXUGzpAE39N5H8ue3W54cwyJouW6qhy8": { + "balance": "883.895108595", + "bytecode": [], + "datastore": [] + }, + "AU1CyBnbz6zpPBXfTaufMWhp9bv93itL4ZR2Eu8GZ6FFGhKxamr7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1CyMfFQnz6cSGCRZ61WaqXNkLacN8PjogePFYdEZ24jQxoZ8zv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1CyScWsqxdWuhy5purmRuL82i6XFSBPTZDobJfMuNnr2Rh3o3R": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1CzJReUqcr861wSENBMXv5cNwCwD3dEinEhkC5LVXcJnQbApV8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1CzRy5rpmKkfG6UK7PkPeh7nTPMqo4yM4BrxJpkAHkV1Uk6Voj": { + "balance": "7465.578624236", + "bytecode": [], + "datastore": [] + }, + "AU1CzUXrizx3q7mD4AMvxdbrg45ndgepf53ZUer1v43ZpRDFHSRa": { + "balance": "2699.657816610", + "bytecode": [], + "datastore": [] + }, + "AU1CzVXmyJRFVrMAh54ZrmyatLW3RoWcM3LxTMNzzeUHY3VeTEYr": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1CzdmxC9gYQYKWtHv1neUn7LegVVGqTZ6FnkST2RspU7i546XH": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1CzrnFSuZtHj36dJHDFMczkyG7r4c5FaWkCAAwyrjRWai3TdC8": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1CzxHTVkJbW91VcGdHsD6HZ9SrcYjsTre9WA58SCoCKCB9xHDa": { + "balance": "1970.790279940", + "bytecode": [], + "datastore": [] + }, + "AU1D1N3XpyDj2BnGVBRpNvBuPhyAeUWLYi91vVbQedB2YpNq5DMX": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1D1bQSyGSgxsv6j4pYY1B59PhiqkVL6pjMd8WsQ5q7FmJro6W9": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1D1sQoZHgVKv5x5ejRGoZXtppf8aXLmobs8qXAX5L5Aj5BxSTV": { + "balance": "3139.784858196", + "bytecode": [], + "datastore": [] + }, + "AU1D1zKvcgbbx1qFtp1B4QhzditBFQXmvEbdYAGQM7fdYLRx7e3C": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1D22PJm2n3e7JsFCBt6TubdrRMxwh6XeGb31RHnVWmjWqFStaj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1D31VsrEW7B34qdRsZ4J3x6WebR3AKtcfLWCpD9mwrGpPAkdCZ": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1D34HYSaftrHDUWJH6dpmy2fn89NiXHgj8GLpvzVqkhaqJNWpq": { + "balance": "2302.045440869", + "bytecode": [], + "datastore": [] + }, + "AU1D3EmuCcgniWud5w1FvqRM1HdJ8eMggfyENKondYK4SPykKum6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1D3QuiZisFGbRvQ39rdvVyUxR8VvP6tZhNJ1b797DbVgWR31qp": { + "balance": "1067.709183495", + "bytecode": [], + "datastore": [] + }, + "AU1D3XKPuiDYntE6aTH3nTXe23rPYq8mjaUa1TG8cgapPGvscK4b": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1D3YU2Mmu4XBv2ax6zdPL9jyy43iGtQUgsidUWxECggu7A95kx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1D3gJJNjxw5gy2b11kkdDh2ax9Pjcsc9ygLMVwxVwWt1bZQoYq": { + "balance": "1099.798760522", + "bytecode": [], + "datastore": [] + }, + "AU1D3mzhUdfSYiB1DpA4N7ZJeAjn81yHwyVL8rQBN27SbnnM8eBE": { + "balance": "3871.658272438", + "bytecode": [], + "datastore": [] + }, + "AU1D4T4SXjvzSicVUi7iMQz3Jz8X5rxhmhdokiMU7kHTAwUrjonq": { + "balance": "1253.056685172", + "bytecode": [], + "datastore": [] + }, + "AU1D4dXF134bgTiFogGTH3L7MDFyUKvF14hZFKYAwL4AKoyrrreW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1D57FnpCv2WBgG1pUXPjiGpYxmVgAaRfhhVjQZHVa1sSGJ2HyH": { + "balance": "70.225167846", + "bytecode": [], + "datastore": [] + }, + "AU1D63J2d3ooVspZvP3wHxMxhGaVTKqixJJvw4118As5xpYbAdrx": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1D6NSYy6V5hyrT2A1ExNy7EGmfd9SDs7EQDXeR8rhP5nAR8RMJ": { + "balance": "998.429424513", + "bytecode": [], + "datastore": [] + }, + "AU1D6Y46211rEntzEa9Xgc8yDGen4aZWsFe5iaAnhK4bnTZ38JkF": { + "balance": "1310.734703773", + "bytecode": [], + "datastore": [] + }, + "AU1D6jK6vGAjKKv8inY4oa68q6zT1mL4LcYxdj37UoNywKNcKxSj": { + "balance": "1449.728451505", + "bytecode": [], + "datastore": [] + }, + "AU1D6o5gimNKBq2jiAgY6UAVFRg75pLe2DW68SMMwsDkY9xtwXNv": { + "balance": "4364.336524880", + "bytecode": [], + "datastore": [] + }, + "AU1D6r7EwZB9mbCBgAsRpxFSxH6c9cHirQhgC7ZAt6KmThkr1GMX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1D7CdwwG9pDs2STnSjt5fFFTNmtAwj4cSJH6irDpteHMxyokXL": { + "balance": "1952.135079575", + "bytecode": [], + "datastore": [] + }, + "AU1D7ESeA16g5kqwnWG51DkrLMVB6onA1Waiwq1CxCsT9nfp6vuB": { + "balance": "1479.707031354", + "bytecode": [], + "datastore": [] + }, + "AU1D7ji8sQj5TaP1C6GTV9TGVXuMtTufs4NxxJ94E5JoYBb5X87D": { + "balance": "683.981445712", + "bytecode": [], + "datastore": [] + }, + "AU1D7nnR6xUrnyhVb81HEHmWPAL71i1R2xAwBRUr2Dv3ngRBGQJ6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1D7rnTke5uAfNoDtKFNaKTheTbYKMKJdfF7Pu2rRMLv3fPi676": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1D89W8Wyn82WbvRi4eh4anX6AZKRSXEmEZQseB6tqrLWvKdsKg": { + "balance": "2329.038879854", + "bytecode": [], + "datastore": [] + }, + "AU1D8WYh9wKsFdDDrnUcsq72Mz643CVZJ5WWKxrUYJ6QE9GsDe5C": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU1D8Z6HESJRDM7qaLj345Zm3ty1rcUHyagTF1VJd68SiUEPo6FG": { + "balance": "537.610565089", + "bytecode": [], + "datastore": [] + }, + "AU1D8eZm31Z9hmqMVpGPP7RKG5FcYGDzQJgKfRTSu9kUVsaaY4EZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1D8qNJ9kn9HCwouGJ5tbyuaa3WdjpTSfGgnwCWPX1f8XLee65j": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1D9FDuQUkmKRhA789K39i6Yg3YpqXME6bAixoHjkzzojncixto": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1D9rpd2Apo4CVncoKWuEo5iLm58nV96YXJtbpx81nwh59jUugS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1DAEq72iWSBum1P3NRyom6THhm1cqDpoQMQzJGJJEY8ejLb6dy": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1DArj5Zgtpc98TWJexMHeuMLvaBUfS61difZ6i6seFEkEVbwrL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DBSkFRQMTD5stqo2FvDi72LJenvahT68XKvp3QvwL4jiTUKvA": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1DBgjEEbbzJXTJNm3ZR3WVq4nYUiLTbthSdwNHpUGk6ruzJXgH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DC2UkF38eqRhF5BX197TgLiBhpbYfKXBJ8LobHSyr7LEYtjFN": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1DC2giQ85EctRPh2H8F1FQWQPfyqVLdHAq7v86vygPjNqhJ656": { + "balance": "2267.926040585", + "bytecode": [], + "datastore": [] + }, + "AU1DCSZrxY63SiDGtLVJPqXCcCxLqHtgJGNCxN9Tw5Fqn2qmGPrC": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1DCtGJ4EfwVr8gtcp4vFxRw7THHbNnysaR9HUPs8GYnNhGckPV": { + "balance": "85.912534488", + "bytecode": [], + "datastore": [] + }, + "AU1DD1RCH2sLVsbCC5MBmF1p8DoEMGJdgfNwF814wRThmGCXFQsy": { + "balance": "1459.821216108", + "bytecode": [], + "datastore": [] + }, + "AU1DD4xb97BFR5ojzEwE9175PqUgTFzGuXamtFvxgKLxUQDR3dg2": { + "balance": "2939.494294300", + "bytecode": [], + "datastore": [] + }, + "AU1DDxwN1QiPy8NMGdqCfjMuagMoKR1B6xuJzY7NTxR6qN8GH96G": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1DDyNWbPNr5L155g9Rg6Fx6LqEHtj22vnxd9fAKQuwarBtCrXq": { + "balance": "627.298455267", + "bytecode": [], + "datastore": [] + }, + "AU1DEDRmTLQWru3rCJ7ZQTp8YicFB23udbbLt5qAkdc2wrgZLqsp": { + "balance": "1820.098663631", + "bytecode": [], + "datastore": [] + }, + "AU1DEMn7KPwFWJ2QyWYTPS45dbwXuRvJ23pDFv4wWFrdiZx8m4Fm": { + "balance": "5123.022433301", + "bytecode": [], + "datastore": [] + }, + "AU1DENHRA72ke8x8dqfYiQAc65sstyskAXguMNiej2qiKVbc7tVU": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1DEX4MuNhKBVEDK5du7xatrncrXmwoPyHFBWJhHytRVa4zuwnw": { + "balance": "605.138516404", + "bytecode": [], + "datastore": [] + }, + "AU1DF4VqBBEeV11DG3KAfyjQJZLCmz8qzzdfX1eUeVwFiCvCcqYW": { + "balance": "1242.489234680", + "bytecode": [], + "datastore": [] + }, + "AU1DFUf9TLpFQigMtxeJV99TEnRa5sjNL8VSWsCSjsDGtqyuPzFm": { + "balance": "5397.675176499", + "bytecode": [], + "datastore": [] + }, + "AU1DFVpjz4Sua9h5r7TWM2Qsi33B7cULBZ4fSsnTTfEkHz1GHz2Z": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1DGKaVASYvV5FYarf6D6HixTUUwz2Wu78hMhW7hEQgTS3DpLTZ": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1DGmaqtqNWu1Q41dJdwzDPkdN2qTzYbxVWoa335hcUj96GdFxE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1DGqsy6RQKZTF6jLkQNzPqwzYaVy79cn3T8YgmE9rNQ7P4i4rx": { + "balance": "2311.498647468", + "bytecode": [], + "datastore": [] + }, + "AU1DHbywF88APHTC45RMnRKS8N2jiMz7gySGf838J63tvf7doFUr": { + "balance": "4527.428257625", + "bytecode": [], + "datastore": [] + }, + "AU1DHeZrE5oxx44rgnzosbSJCzUaFfiZSpRiBwpEtfsN8XCHUtAL": { + "balance": "1370.688608623", + "bytecode": [], + "datastore": [] + }, + "AU1DJu4f93LujiDzSYibHU5Hmzjdjv1qUnnqGMvZVgFDvp1aRy2A": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1DK87q9YgE5hmvQeUa1DG1R64mdLJHMbyCdbBVpvE5aia6vgQc": { + "balance": "2765.813865103", + "bytecode": [], + "datastore": [] + }, + "AU1DKhB6rQF9swpVDyqoyHFtKwZvUFsi5Pp3ST9kqLqnuPJyqpkW": { + "balance": "3059.029613731", + "bytecode": [], + "datastore": [] + }, + "AU1DKzU8hWsA2M27bZzjV1muhr9e6qSa4fd5ninETEVL7DWoJX17": { + "balance": "3449.895418803", + "bytecode": [], + "datastore": [] + }, + "AU1DL6owCua698dxhLwqTmajTb51Ag8m4dcQdRd7WEKmNNkBZR13": { + "balance": "2576.426122286", + "bytecode": [], + "datastore": [] + }, + "AU1DLMHjYwRrdBRFvGUF1KH8U8HYD4s6p7a1HxPP9Mj5eRBVDXWW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DLRrXhp8vgSr17t5x1xpHQdg82eboufvfFLzbmTWQmWJxMcXX": { + "balance": "1761.311935311", + "bytecode": [], + "datastore": [] + }, + "AU1DLab9UwDdhcn8s2Q3eLT4hfDhYm7aCrz9irVWZUxe4DhzFe8i": { + "balance": "1096.561041836", + "bytecode": [], + "datastore": [] + }, + "AU1DLg9zRQHVhkZw7HVb3VbUn62e9R2gBtiAuVAJWfs4oXhkQ5iV": { + "balance": "1193.646278157", + "bytecode": [], + "datastore": [] + }, + "AU1DLjR485n6jrsy2Vs6DQxhAD8gYzjRuCa1G5a3Bz9qDmNnf5Po": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU1DM2AGUgpCVcdxdhHyVcW45rXisF2c9UphRBNSQ126GPkJDWzx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DMTfmFNy3jJpvcFcv5XqygJpYQ5X1Y3ApGXKvC8nss458uYSF": { + "balance": "1677.907311896", + "bytecode": [], + "datastore": [] + }, + "AU1DMaMUkJ2N27sicShnHgguCpL8AQpQ9rhqoZ76n7hZvWLssJXe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DNH3RMTPa13jTMAdG8u18JcM5C9hkunRrNrtVd1LhEjXHxuip": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DNNiurnNhMM1uVA2gQ7hAHSgjt1m44j4cJguhQw8VX6W4bJsv": { + "balance": "532.020215586", + "bytecode": [], + "datastore": [] + }, + "AU1DNX5rzh9XPcTvmFLe7YWbc57QDu9Y8Y6gQ81TcqU13Fp3AudG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DPNDZFDypxUwV231CAaQNHhhWY2gpa8ePATGVZyqTibFVWJaD": { + "balance": "1369.071999557", + "bytecode": [], + "datastore": [] + }, + "AU1DPUFTqTTgnz2QCGbwcHozgx6Mq3ARv9DmGd23Ua3RQuWoVBH8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1DPVbHHGvjvMpp7p33wUXGV3uUK5xMLMwoWDLM1cpJjEz3AET4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DPeC7uqZYjuA36bgqeieC5n1T7XwcWt5oZBY9FkwuSF8wuSet": { + "balance": "1012.279844815", + "bytecode": [], + "datastore": [] + }, + "AU1DPeKWU1J8Su1BYLBSZZksbgaMcgJZeK9BY1gMqJNFvPYFnkzG": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1DQHZAiwTNiHX4qbfaMNSp7QnBAKL6VTGzv274YzBvv67CZxDU": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU1DQgRKjmyAQY7AK3nLTYq6zDVcX7yg71f44Lfa5RCGYKW68LxL": { + "balance": "1456.217674438", + "bytecode": [], + "datastore": [] + }, + "AU1DQhRkz4gooehyHbBzpZfFHdUjmayX7mjPAqk5CXbfZpSTej2X": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1DQiGdDU6xL3uuf1hLRZK2KVdPMPRvYjzibGSda8RDMYHPoS12": { + "balance": "94.212984939", + "bytecode": [], + "datastore": [] + }, + "AU1DQyStZXUDNFpbNJD6nw56rFyEJYYX37pVdnz7y22Fh3p5Qdem": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1DR4ddy8caxy6772s6t76hSRd6MYoGEK1h59Kn6geeK8SMGDRP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DR6FqyMfjGBGxszYFYCAZ3LiokaCta7FLduCG1avzVHxbEjUd": { + "balance": "1368.413077401", + "bytecode": [], + "datastore": [] + }, + "AU1DRCbEMZkVR4S3uF7egRvgBwKYKoFuyNNUxWT8Xv1UiY92EkGT": { + "balance": "3145.099476034", + "bytecode": [], + "datastore": [] + }, + "AU1DRojW9JEeAv7yXe2J7Cg4ZGS7ufY9CRdhXSEnivkSvVY6GFP8": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1DRuL7uLHHXKnrRiAuD4jwGxSdAWakys5YxYtCPMCyLTfEQfv9": { + "balance": "1054.101677784", + "bytecode": [], + "datastore": [] + }, + "AU1DSEVDcT2T1bQr25g467TrcnJD2fXo9JFYhepPqHyaRN8yLJc1": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1DSFyQ23X1ZTdXxMQuE19S7PECjjepELeQUv57NAHLBkvSHPxP": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1DSeXnqaYvF3yYZMPJcoMHQXFKQh9WTVGZjZA6A4s18eZ8CuA7": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1DSjYbcYRFaQ5fjDeuhLnguf52oQyKN4JhpqnFbRSER396Cjcr": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1DSr5xNvFnmsm17Pk2j1ryYbQ4ahR53dX6WoNWvDChLMSmq1aE": { + "balance": "4789.266414193", + "bytecode": [], + "datastore": [] + }, + "AU1DSuHHSJyBmb5zz7qmrmxeWSfDiD4sQPuTyo8DSEmMpXb9ruAD": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1DSuJAYTtqsffsD5DEQcek37VSMNDVyUmqhP71koVxWQutaf1n": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1DSugtFdDA1KGX8LTzG6rTzpPwGdocwDyfBmtMUZ25PTAMzhLw": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1DSzaWzh11Yz4UXNsECzcv4Hcb1UDjJVmCq19BGZiWKcu1p59w": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1DT835gX76YPgbwTEV9fY4T48zYwJbY9Mfst7524q7c1hKmycp": { + "balance": "3041.560721562", + "bytecode": [], + "datastore": [] + }, + "AU1DTaKYz9q5mmJxhw5A8C1CEM17xoeGRtEzEPMZGD7w4b1suQqi": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1DTasYf3XheW7kxor37tRkYHZWqTJa5rRXU3ZA1exS8wMxq9R5": { + "balance": "3028.132291162", + "bytecode": [], + "datastore": [] + }, + "AU1DUGvpevLMnCdqErJHALKrDsM3VSfvQyQuAc4LXhd6C3KtDc1b": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1DUQe2BuwUhDewuaP6bAe1VgRvdU4Bsd99TKXQcn3YEgVpLfxn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1DUdGPxi3WednKT9owAgkmukxUeXBPrgadhdTCZoqypkyHdD19": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1DVX2jsjoDxxE96iSfoTKVE22RpJcLZNccySRycwuiYuqGT6U3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DVeHmE1PmVeBLhqmGTh5FhVP5qNzD1Xn1xhuTKTWTzLXHL461": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1DW5rTv58T5JAJPSofrdxxyVKx8ntXqr66maHAQ2PomFFjkgQL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1DWFJmJ16r9uKwg14aFVUaT3iYGXbgB1MG4MQkm7dTVNfpqpWe": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1DWKftDHBFdqREWaiv6JGZVvGUMV7sdfWrcxPVnLjYyzz4aEvY": { + "balance": "51.504744449", + "bytecode": [], + "datastore": [] + }, + "AU1DXQ3Cii2fyurpoUnncgo4gM2Ai8b79hVJFkstFvD6X8wmvJFP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DXtSEdqkNG9qp4VCRbbFcDcBPoMkDsV7kBJYXdPgooJrs8VnV": { + "balance": "1372.953239843", + "bytecode": [], + "datastore": [] + }, + "AU1DYcYZ9tQAz2xuRNaChqn4K8amd58JGZyqN2iBe2JWWTp9vnyk": { + "balance": "1099.988734826", + "bytecode": [], + "datastore": [] + }, + "AU1DYykCwzNaRLuWCo5mDTFcTjr6tyvDTRtJ299SX91LHuxiYHGt": { + "balance": "4850.275604663", + "bytecode": [], + "datastore": [] + }, + "AU1DZ1fpFVBH46jzHUfvVrrUMni2ZmfgcvXrsB1MZNBesUL4ENcm": { + "balance": "1716.042278675", + "bytecode": [], + "datastore": [] + }, + "AU1DZEBAtxH3YZHrwKCB8fuWDZAi7zEFn5wZna5xg1A2h6UomqSH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DZJupibbUhXSbepvqshsFCzLnZKdwRvDGd3MPwXzMd9rZD25F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Da3K85jNvsKVS1DrYKnXLpFWX4K47nVa8kVTaiADpxZqAZwro": { + "balance": "76.646168870", + "bytecode": [], + "datastore": [] + }, + "AU1DazS1rifLT2ZYUYft7gAJL1PHrJFWSjcms98UZMpzFY4UBhwM": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1DbVkdSBVABnyQ24hMpZebSvCLsUFXZ5oznk1PW3oKZW45eHoF": { + "balance": "1815.174352663", + "bytecode": [], + "datastore": [] + }, + "AU1DbkmoLZxU4oPZ6zwRSKS2shK1BUuDzHCrhvWwNLyJw5v7M12e": { + "balance": "784.924872273", + "bytecode": [], + "datastore": [] + }, + "AU1DbpgsAvLbJkLnJgzApA9TxVuBXiKL9ufjdQhqSHaZPindZg3g": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1DbuyTDPsB7WBjzxvarC7AsZCyt3R7uwdr9BYTtb4WiE7j7gaq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Dc7UVFHL5LJXLqf6gjweVWM8gWXZNoue2CeyXUe5Q2zCAvmw2": { + "balance": "607.006725398", + "bytecode": [], + "datastore": [] + }, + "AU1DcFtGm4sEaU8RYoXpdF6URzoY6dXRKzF8LNAq9tXExo3yihfC": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1DcGaZ4ACJpSb29QLVtxBBbcWmu2X33mP5EdeNj9gy51Waxt19": { + "balance": "4929.296293428", + "bytecode": [], + "datastore": [] + }, + "AU1DcxaGb6kZYsxdwgZaDGW5smnKpsgbMBWFDgDR9wA4znLfQ5DU": { + "balance": "914.798757177", + "bytecode": [], + "datastore": [] + }, + "AU1DdFxTGFwn1fKmqWS2AuRAkwjJUyRsRqufyNGEz5v9xuHugobu": { + "balance": "588.899180384", + "bytecode": [], + "datastore": [] + }, + "AU1DdNtr4CYdCmY1n8vpww3M6SFbQQDEjRzkBCTkX1e7ECCb9qMF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1DdPeMrnDwKWPtYpRNYAnzB3rfMGtHsjXtBjw358EFKZ7Tefss": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1DdRfesEbsyGgYxmsXXAu5qjLFc8rgLgzxQKiTDnZ8aTFjJCx8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DdSJvukJgnAipasrH8rt4et4jMb7q4QA2H3ZV9wi4EaB89PZa": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1DeEp1pcJ3CiwyoEjFjBaLhgWC2R4SEobSusq52nc4zEEGF9Pj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DeKGWh9ddbrsVHWQkAtRMi7wRrh7CKe2s9qeVTcs49y9AFDHx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1DeMCFB11ANHv1XgH4QZ37Q32WyGVky6KgXCUh2yGQpDYwh7tN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DeNSG5A2ZdwKmQdF4oME8EMZCZ4HfjE7di4taH4AmDJEE5eq1": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1Dejq5pah4RvjieKEWfi29SiwE9mXAKw6vDajffH3sXKN3HAxU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Df2Cki4ARSf8hYMpjeSq1km9EnRkmpLodY6TQXbBQz6kxLb6p": { + "balance": "1347.640819372", + "bytecode": [], + "datastore": [] + }, + "AU1DfGSxMdyBbgGfNGJnWCDi79RJjHfcVtqeLsW6VWJKRZtKLe5k": { + "balance": "855.312295353", + "bytecode": [], + "datastore": [] + }, + "AU1DfuhodqLVfeAPX8BZkWkCWLTd7uMnXToFXkpTnAneHVN3vAX9": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1DfuqY7wYjpUUPZcZZi9b8NQvF7mQocyZ5HS3ptrZLXa6K2B5B": { + "balance": "1204.090022339", + "bytecode": [], + "datastore": [] + }, + "AU1Dg1oHApJLuFHd4ikRreVUgiNrqppKWZmYybnfgpYSa2mip4Ea": { + "balance": "2316.783988162", + "bytecode": [], + "datastore": [] + }, + "AU1Dh74RicytBWajLWVGwRQj7UD6pxro6Rf56dagat93u8nxEZsR": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1DhDtNKHzoYNLEa44bEXFbSBMTH9vmCgdt4q2HkbWEANeURZwy": { + "balance": "3164.235003964", + "bytecode": [], + "datastore": [] + }, + "AU1DhgVz5duTzeyCWL3KgEWUwGr88XjEFoyuhcBFDLFqdKJ6jzMX": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1DhrUYWEaTHTWagQLqP8fqrA5kyKt72MHC2Bjbp5mNt3hJjFWw": { + "balance": "2743.553502613", + "bytecode": [], + "datastore": [] + }, + "AU1DiCW24125WYJaiPFK5fJ4uB7C6aRVR5RZuTayx9Pzm6NZaKGD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DiVwmEwXu3PtJFSZGxkJKiu6tHFyxU1Vo3V4SUzFgDtqPxvgB": { + "balance": "1529.915824196", + "bytecode": [], + "datastore": [] + }, + "AU1Din2AvnFbkWcBUDjYQtKNhj2GA9eEBk5o2UpPK4qSgUYaaTeb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DitWyPBx5Sv1enCpC79BfSFTD64fcr6uHRdhSaiQPEKZAXNzL": { + "balance": "2397.415912088", + "bytecode": [], + "datastore": [] + }, + "AU1DitpAPH4rwqZNfT5dYvG7HWnfNwtXKbKFCCpsvRezcEpqXxji": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1Dj4LEMjZBtPpX4kxJcoPtagAJtQbnQkJR6DgFsuPaYTzamJrL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1DjRH7otQSYMutBqtjtbxfZEKhFqUStKsTGtk8tBRr9KCaDPod": { + "balance": "77.661008111", + "bytecode": [], + "datastore": [] + }, + "AU1DjqbgSqQGWTXCu6X7HzHc3ZzoHeVebp2F6czLA8Eqw49pocUW": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1Djz5inJ5ZYmeSYySkNk57HkN9NoQ2t2tyAydJEa1PGjyNS5WF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Dkc1D7okpp2JL24jub8u7khp9hARYKCikPjniKYS16REba3vo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Dkr3qtjqi4Hdq6oWhJ8J6mXGFxJPfcQNQTxgeP2413YAQQL2b": { + "balance": "5890.231391527", + "bytecode": [], + "datastore": [] + }, + "AU1DmUmKm3gRAqy3ofnuJVXcY6fQ2cvC9jiMpB9uK7aA7hbSdYzD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DmjhXhxzSZP6ggP12UWdUSf4DcqJE1BRgwjuwJNyCsgZepupM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1DmktAVPUx1DVoqCkGZmkRe1po5NLV4EkkZzRHdjuTataBWSgE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1DmnEqs2sEvbNsQ443s6gtg8AAxy5ybYQzwMmNWfs41Y5pT2r1": { + "balance": "3374.501098133", + "bytecode": [], + "datastore": [] + }, + "AU1Dmokd3wiFssvp8hXDrgSdjxoyCAR8aAgYtSTrtwXSWAAQttn3": { + "balance": "2687.179032908", + "bytecode": [], + "datastore": [] + }, + "AU1DmqjwhXbSGEvJ7RYc5zAzrX5z8WLqJmKFBxgsrKLTAmdbc3z2": { + "balance": "3482.564208613", + "bytecode": [], + "datastore": [] + }, + "AU1Dn63GsGnNyfpKCVXoAJrSBBAaMt85ZGRFL1CBzoogGHEWHWss": { + "balance": "1063.222769817", + "bytecode": [], + "datastore": [] + }, + "AU1Dn6bG5Ag7A5kQBfehmF59GYxRfCTrqTacpzNQfyzib1Yj5DVH": { + "balance": "2534.532604312", + "bytecode": [], + "datastore": [] + }, + "AU1DnMMN1cyPXYN69Wcyk5YMEyarH9X3GMFYpUb5MHRhZZ6zQMBs": { + "balance": "1493.332698557", + "bytecode": [], + "datastore": [] + }, + "AU1DnQdChqTVJm8WfLi46Z3iwoKyx32CKVd79XyZF5ykFTze1jNS": { + "balance": "1351.230363486", + "bytecode": [], + "datastore": [] + }, + "AU1DnUCeBBA9QKoWihC8LA2HAf4oVvjMTCVAyaHejTC9X5gcVXZz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DndF6buFHM8d3o6KaWG9GUkc7opFrTMNjbEe8wS1vHVVSg49A": { + "balance": "39.170375691", + "bytecode": [], + "datastore": [] + }, + "AU1Dnp4BPCvG62rCDB5ycXgBpyfM61fwjPG9BJq9tYLdugnxg5wo": { + "balance": "1694.042080529", + "bytecode": [], + "datastore": [] + }, + "AU1DnyS1SroSW6KznQtNXZFATwz4aX57YBEb6nggr1eonVczaxmf": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1Do2wR97sJUXfACfXdn2ymikkdJFHjjYuiDHQQnmWrDtgz5j2o": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1DoCY6odHzHmBvnc4ejQF2H9GBfG7Q31eNXYRxkn7zxw22wDkJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Dofxnr8yWfvBNhZeciLcn7MZPS4QicJ5MUPyK6DReqpENtMef": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1DordMe9vgjYqk4am6LmepSGu7YFvpARTiBmjJCygu2a12EKiU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DpAALeNDikBruXfVN58PxTcUMhYp3S1efwBVLHSiaDEQfNWZp": { + "balance": "4110.041787388", + "bytecode": [], + "datastore": [] + }, + "AU1Dpc9hdt4EkbMTq2FSKwfYURNqNY8wus4BZQ4eyShPEePLZKPD": { + "balance": "8836.003611562", + "bytecode": [], + "datastore": [] + }, + "AU1Dpt2scdjEnti2HsMyKLyKWXWHECUuZYYd26VMyiZtnkk45Hfd": { + "balance": "2639.245384955", + "bytecode": [], + "datastore": [] + }, + "AU1DpwC9PwpmHshvowDtxVZZvCMfRRcR4JuFT36SSVLrUsLdSASy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1DpxsmBJpBwhnhwjYh1RngviyfFNkyDz56bzizNDaobydJDGaM": { + "balance": "2333.725425556", + "bytecode": [], + "datastore": [] + }, + "AU1Dq38ZPhBwFHjW29Hpkp7whVXb25RwVhYbFJvPyeht8r2A6pLj": { + "balance": "66.465056247", + "bytecode": [], + "datastore": [] + }, + "AU1Dq6UuAphaMTwvbAUHw4bRo9onWREVo8yL3WUuLeeLYc4CKw1K": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DqVmJxHKSzoarjbgUg4VWEfrmhcqDjX94ZGvkzFquA2vmzH8k": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1DqWygd8G2eQdJpu7GS1SkGuUamDUPyYJU5r3TLsUNvHuNkusd": { + "balance": "1483.526985846", + "bytecode": [], + "datastore": [] + }, + "AU1DrMCohu4gQYMvQ75r3hin3Geg8KrczuMcizszkqmqhkTAkYWt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DrcJqfLjaPpXwesR1xE8ftLCXLGBp4s29J4mqLsUhLZjT79ee": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Ds1VBkTc5WFPNJdmrYMQdxqWyBnxRByAsAAkbFEUgZdjDGc8F": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1DsJ19AybCfqfDMpK1icxdyBDQmX99NgMqENwtyaSwiZ4VR7fs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Dt8q38GgiSvhvYdWGqxwwcuBom8jx6SqhrzFAobbtoTYPFx9r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1DtHBuRMXc3r6aCsLFpfbmj895yvndgyt7a1aeCmSz5wMoRnoz": { + "balance": "2747.831767382", + "bytecode": [], + "datastore": [] + }, + "AU1DtxkmyRgbMiUfgKKSuSvaVkdhWJUuET61Z8XBdREf6ShqKwCV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DuDJ44BXkjPmrUwzugwDJmeGy6zrRjHn1gXMoVg8ovq6iky2p": { + "balance": "4827.906017165", + "bytecode": [], + "datastore": [] + }, + "AU1Duk8Yyce92h64CMbikRNuqA3pEj61ZqEJRLmaTXbVs2Dp5ufH": { + "balance": "1178.681324252", + "bytecode": [], + "datastore": [] + }, + "AU1DuqiwEjiTD77WwMCDRQvu7fpnd6CJa3AsjPxZ6WkKqssbKEun": { + "balance": "2747.905617807", + "bytecode": [], + "datastore": [] + }, + "AU1Duzaqe3QnZTP6tjDxrJGJFxLb2XDGB94HNHnh72xE3atdhuej": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Dv3w5pWbKbUX7H3xiBHGFRP9DLBnq7AoVV2AcwceN3g481vgv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DvZwX4iXxtpFm3nvFSJF1PY56cy4aAPCxGQps2emUzCbxWWjE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Dvf4bVMWTNzHkbUYBoxtBJvY2kcknEhb6xEUqADjhgQEGVYaW": { + "balance": "739.303498726", + "bytecode": [], + "datastore": [] + }, + "AU1Dw452H4wjRbxmD9pRyZkiHMDH4rBj5PDKiTJL7J1UjHgvngPs": { + "balance": "1309.920424759", + "bytecode": [], + "datastore": [] + }, + "AU1DwbuLCC4P8pYEVTnAvvQiWnVbHbuuCfj9qJWwQkht2VFbhAVr": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU1Dx6ehUkrniPNMgSGRd7hzJKfS8Bz46LBxaBGk4Adc5PKgepNi": { + "balance": "4416.360815489", + "bytecode": [], + "datastore": [] + }, + "AU1Dx81y12jjfA784NN8aXAe51JPDLqYJsXc6fP7L2wvu6NdfTkA": { + "balance": "1106.111283475", + "bytecode": [], + "datastore": [] + }, + "AU1DxSxHknzWVgaP5K65QMqRejJMdyrkVWtB8rye3pvAD4xb9xpi": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1DxqKPzUX76ykCivd3eDH5hmW3Y36btGqv4kvjmK73FRTBVL3J": { + "balance": "2980.926624168", + "bytecode": [], + "datastore": [] + }, + "AU1DxqbqLVZSiBDD3ZPY1Upuo7JuHo9FQB7Z63bMqsCyBKGE9qEZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DyFXLprXnyhekgicrVLLLA4VdqiqcxAEBcJWN8uBmokD651a6": { + "balance": "3662.250353587", + "bytecode": [], + "datastore": [] + }, + "AU1DyRWe8b4rJn6JQTz9LRki1hZL38ijdQat6C7Kbf9SeKPnn6hr": { + "balance": "2311.604573267", + "bytecode": [], + "datastore": [] + }, + "AU1DyYYVH81ebRgDAQSFRhgF8CwYvkDWLzsz3d95BmWgePpbWRc3": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1DyiM1hDd3bSjhEmNoRERyfTK29eJXjYagwBVeJYUPenwXUiac": { + "balance": "2673.594745842", + "bytecode": [], + "datastore": [] + }, + "AU1Dyo5g9Y52oSAR2UPTtCDKV4j4qB1FZZDz8nyypPKhPL47cuoU": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1Dypyx5diaejKTgBpx5LWqEw3RuWSLiSRnhH8QNx7V7wJzRqLd": { + "balance": "732.725222339", + "bytecode": [], + "datastore": [] + }, + "AU1Dzcv8NC4rNyyBroaCypVbErXcxGjF8czzGtts5GF6YChxX7xs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1DzoBmQmZXsWLaB22n8fZiL6jQFLGq79gZY1PUSCryTviwqyw9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1E133TyeYH15G2iLQNEm7KAxpJm99CuT9LytFUCZaV7EZtU8SY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1E1DmejQVNSubCXtQjMWqvArKSAwUvuxuD9Tes8DirMQu5wHmv": { + "balance": "1700.297501716", + "bytecode": [], + "datastore": [] + }, + "AU1E1gPqGnWeQ4QcUeethEM5UaQ1TYYe41Nh2wBbixXoUXADTEeW": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1E24w3aU5dgitGyEpDj39MYzy1ahW1aeM9RN9xr3k9AfzGGKRG": { + "balance": "1646.615569616", + "bytecode": [], + "datastore": [] + }, + "AU1E27EDwdnedxzDhySrnNh198JGhHag1EDRNfiHnxoasSEQ6QpC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1E2ZFqWFnNon4hAZK839wNqa57VnJePS66Mec4Z572Qn7iQ94d": { + "balance": "4082.191075834", + "bytecode": [], + "datastore": [] + }, + "AU1E2hRfe6j8QhbmFomdXCy3huCC14eGFL2cqcuouE8CCR4sX8Qi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1E32LUGZRuQn2aLwvx5jCshrHH57Umx9ngbd2f1bVm6z6cSnBJ": { + "balance": "5449.048536786", + "bytecode": [], + "datastore": [] + }, + "AU1E3FCX8rKZ6Y2Ao9zrNuU1pwpAmJWQZF1HCM2PYmjHM8V52EBH": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1E3XFYfNm29vjf6YTZMpDrJoXxfDboC7LfYmiKpQjK1ny1CRY3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1E3a6M2kNjKGg1xS3K3qqJRMzvPPVREeDiSLW4mfwgV1KewaaA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1E3hoLuLdpEsN1xyT4JBcDA1CiS4ptBCL3sFExDdTKofK91f3w": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1E3u9jhcCvBDPUWnU6FYbjF5Zq7Ef9SpVq58FTbW6PWccGFQpi": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1E3vwxJCRG1iWdFFf1TjoWhEHRo9VUYbVnZFnLzHpEc3oHx8uw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1E3xa9kvPSZGf59JcooXqw57CW3oVXMhMagX6RhrZ2sCJDnTfE": { + "balance": "129.537953795", + "bytecode": [], + "datastore": [] + }, + "AU1E4Luwco3v9BoVB1VHz3cumVNKgcMMhE2ev51zZr7gW36rLmRx": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1E4RFWRVvaPAYpjQWLowGbn6wi84GPBQ8tgyAn4GNUai98nmhE": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1E4dVdUTUistnY5yG72NtVZn43m9xvAu63Q1SmjCTNRBnGdvHJ": { + "balance": "5438.704021760", + "bytecode": [], + "datastore": [] + }, + "AU1E4nhp2UiSFTJ6MqJcRhd6M2iD8LzNdurbqwCqadW3EVbyejfy": { + "balance": "80.107964437", + "bytecode": [], + "datastore": [] + }, + "AU1E4rGqtsxjD5XkiMpKVHr3UqFi2q6rdSDs3P3HJZM5BRnKEMRi": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1E4tTZtEij5vLSHs3ViLwHgxVXWeMYAfTexn5HHwKB8Q6s9sCf": { + "balance": "1202.082215611", + "bytecode": [], + "datastore": [] + }, + "AU1E59DVyweN8fCNs26m4N5QgFPaidQBL63HQdMHR7aFupNahZQW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1E5LZbppRFWnUxmmndB2uH9AmtJUs7vFmJ6QbQrofSg3s9Trgk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1E5YPjJmgjXN8tDHA48KikdfGv2g4ibd12A4J1Q8aYUEFc8uhu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1E5hAkSLn9j3wmGQW2tPNXpf5vBJ53ra8Mg4frxoUDGhrm7eb1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1E5pkvTtcsLQywjiiGzLBaqQ5CTcYjcrKMfQ3qhVNrFifwJLiY": { + "balance": "1421.212735603", + "bytecode": [], + "datastore": [] + }, + "AU1E6axKkahJSLN44T5WPY8ECKibymHqDxBgWQFT3W65deu6M8E3": { + "balance": "1276.271583354", + "bytecode": [], + "datastore": [] + }, + "AU1E6j9AJtpKoxRWuAgAzRDGaDFjVbMbae3AjdcoaFgR3d1eoc2g": { + "balance": "1504.239589614", + "bytecode": [], + "datastore": [] + }, + "AU1E6tjPqYoQAKhRgnBz313RvK79si3kRiAePCBRZ1aQxGGYFDXd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1E7cLA62FNxhQUEyhLbhaSZXx8ScV8A6EeguAaoM32RY5GLYVm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1E7czYsQzwxEdfjioUHVucFZV1qFDTBirBHuvJNhDBwrZ9tvcm": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1E8Kt6v3MFcV437onFkzTLBm1FVbhWevLMwfJfAVU7vdZZ5VDH": { + "balance": "1156.343552308", + "bytecode": [], + "datastore": [] + }, + "AU1E8cUkcGEzuM7d3pLvWYD1CXzAMvDrfBqhYuPv7c35qMW6GAL1": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1E8nRKKBtTYHBZan8ZeY8qvJsm1sFVQwWbpUn1dcei8zHqvTTN": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1E9TQWRPpZCjpKta6E7FrpXpToC6SgRCp7RpVerDQhqwKw9Vne": { + "balance": "3537.181727409", + "bytecode": [], + "datastore": [] + }, + "AU1E9aMy1brr1aQQepSmtR6sDfLxED3ppjuBbQUwrh5mFAPCLkzu": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1E9c1pNhL3NRmR3oTnB3cEpK6mDptxovYgNBtNw7S4cKZNVcZ8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1E9mybCGsh1Xi5WGBGkfzqsLHYoJ8dfUN2DNTZ3DD5sBMvXZ9p": { + "balance": "1401.639917469", + "bytecode": [], + "datastore": [] + }, + "AU1EACM9gb9fwofBVQVjPVheGpbaJ7e3RECctnUDonJ3TJ1zkbws": { + "balance": "5068.887841884", + "bytecode": [], + "datastore": [] + }, + "AU1EAFZRXTTEo4Picnw1mbHxV8RUre3GLSyP5nWkNEtD4wVJ582P": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1EAJ7PFHhzVcgMsPbqeAUFzLniB16q9BXhRPyhJA9SbvuNJGQs": { + "balance": "3072.024898135", + "bytecode": [], + "datastore": [] + }, + "AU1EARKx2YRu2T4kghN6QxW7WUCQkDVPovBvKiMDYGJsqZjhCDCP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1EAb9cbfWgC4uCFADjwy5b3R4ADCk5yAiJTLJwdeqL6S2CExhB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1EAxj1GCsJiDi4taSx9GrUDYvZiykMR5yhvAsPgbghL7PQgC79": { + "balance": "2498.493106784", + "bytecode": [], + "datastore": [] + }, + "AU1EB1UFw9CPrSHFbYJbKD8kCR1ZLvKKoZvC56J7eu1HVDZ1QdHd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EBDkU45rNNsEV9VLErd6NH9pGU19BVEFMXoaVkWVSCn9fsg5q": { + "balance": "1144.868014917", + "bytecode": [], + "datastore": [] + }, + "AU1EBZ5r9MhykSVwCAo2iArVm3LWQNBDCUdiJKsRMyVsZwe4pJYf": { + "balance": "935.673118859", + "bytecode": [], + "datastore": [] + }, + "AU1EC3g9WoAJxgDnYBvqoAt1dwbYpHps9QEQ3ApTkgxduQCYk9Uj": { + "balance": "1967.567742405", + "bytecode": [], + "datastore": [] + }, + "AU1EC6LNPTwE7xEuNinUup8i3PMteGeZPkeXrXuurdCNcGiySiPk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ECJMrP1UPpzYvSnV9m6RrPSGRPfaQ9QqZ3ATvj5A45PHsKjbA": { + "balance": "2700.124797742", + "bytecode": [], + "datastore": [] + }, + "AU1ED78kYSSCtSsidcBeBn6PsDCZqxcR1uo2yXeC7jmWHh27keBt": { + "balance": "3530.298438780", + "bytecode": [], + "datastore": [] + }, + "AU1EDMRhL2y5MBrCgzU67Fep44Bnswt1sAMLQSMbMY2iVysUrBja": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1EDNh4AKxwyP4BxNdUZfzcJpJL3FfjSUSrxbQAqjasLCTZYRFo": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1EEGYrvBkKJinC1EGy8o371zojjghwX2Jy8HXeqQy9ZmCWM417": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1EEN5uSjutWXwvvYdpsSVPFqEiHzhgmnp1xWiqbNmSCmoS3Hfj": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1EETwLPSYMs54z1pZsdJ2FH1vC63hQ71jNELbKgGXr2juEW73z": { + "balance": "44.837528028", + "bytecode": [], + "datastore": [] + }, + "AU1EEbtWQvZnwhAfQWjwYnkBbRNkM7Ecg8Gd6bmw4LdSjZUXFvsm": { + "balance": "6191.799536741", + "bytecode": [], + "datastore": [] + }, + "AU1EEdVWAVcBt75D8rb2aGD8fCdyzFxtMMKA7R8qvnbTbE3a4RxM": { + "balance": "3205.646409260", + "bytecode": [], + "datastore": [] + }, + "AU1EErsddvqHJ2DYrjh5hf8YCWuuMF4DSiPtd6cwdhhSzNd8BWT4": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1EExNcujszBCM7R2w8JsCxWCPQQw7VNFMSrgQgcfJXp3V4wkRY": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU1EF78qJZQ1iWuB919vxn75YKjtMw62KxuHKFiVVRJtTgYj9bHv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1EFPFrNNmya1QSvLsweh2G82X84bnnu147X78AiRezx7Gb9Mue": { + "balance": "3052.830337629", + "bytecode": [], + "datastore": [] + }, + "AU1EFSMauJPwMbkYMNJFfMsLHqa1vrARm6i7jka7vVoiQPeKVrva": { + "balance": "1472.864591789", + "bytecode": [], + "datastore": [] + }, + "AU1EFWzQ3iRU3i8FiVzLsZcnxwhk9GseGKCivRPACUFq7ry3WDW3": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1EFaNA78pcr6GHbDoAzUdCyEjr4FatGh1a2ULWodU8BJLMRxhn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EFc7UbvsAeBtJwpD1VK4kHQtcY24zDncBuvK2REJx2NFwWn9o": { + "balance": "2275.417703705", + "bytecode": [], + "datastore": [] + }, + "AU1EFiASPWdzpga2nSAaF3jSpuZRkwNpFUDT3EVFnUfBdhE77WGQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EFype4tyUqbzYeDXUyhxDenXawM9aUmajB7hxzPGd6cY4AWtz": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1EGEufq4cig6XRTZPbcVNQ92mgRsGfMFRHJ3usoLiu7V1CdjCp": { + "balance": "1879.124291604", + "bytecode": [], + "datastore": [] + }, + "AU1EGs6M3qnAXxRHh6c6buyNZqTSzpDsjBSF6ZjyQ2KDJcew7kWZ": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1EHRugQPvTQ7kRxamKEV1kvebmVeRrD3RrDcjuJVbHpTs8beAa": { + "balance": "2423.860026427", + "bytecode": [], + "datastore": [] + }, + "AU1EHaCLR2BKyMcFZRz1wieK9UcFoY8GxnrVYChxjB6J5joF7ef8": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1EHugbp7cdtXVgHH8o9YtiWRpKJrjwQTKEGK81UaXKiEEMeWHp": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1EJTYWmYEqAkR8D7yuDk3W7aXBNup9gQBFkTpWHE8sAwkGpWBx": { + "balance": "2017.043836850", + "bytecode": [], + "datastore": [] + }, + "AU1EJbHNgLJWbLYpYthc1rzgYqRaANYayGLhgPAEbUyFjy9GnBZs": { + "balance": "1662.561537143", + "bytecode": [], + "datastore": [] + }, + "AU1EK8dBrrtqDp56bURrVAqWp9R6s1M2e7hhZEscTyujaucEHwAV": { + "balance": "560.470858254", + "bytecode": [], + "datastore": [] + }, + "AU1ELEFeHqBrsE5HLVi64LjR93A4TiAM93bct8RmiiUqndeP2Xk2": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ELENws98AzY2JuvnYiNm8nnpaTQFJVDWMXGGnvF6DWBHUWwxz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1EMa5hq9x5UsX44y6ECvkJXWWdQyitxtkSbMck6L4A8AG9QXLL": { + "balance": "231.090305999", + "bytecode": [], + "datastore": [] + }, + "AU1EMhhuR24qmJygrZMexvTBKnYhgaYLQLyXqQoEHfDEJ1dHFXfV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EMpvhdzLSSvqqrE14d5zwfvRTMDCWCt4WFHrQfgLkxCcgUo69": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1EMqykpvgGq4uF86YkgxniktSPEnfrQ6vQH7oWS2K7oCgWtwkk": { + "balance": "1821.032172304", + "bytecode": [], + "datastore": [] + }, + "AU1EN4xTWG5opJNFhazuXwdTJAm6WSALsg8mv4VxmD3Fqp6BE8uo": { + "balance": "724.132036308", + "bytecode": [], + "datastore": [] + }, + "AU1ENFGTBecsv4E9teViKgjMg1Z6f91pWPnc2BbfTNLpwPcqoijZ": { + "balance": "70.269184096", + "bytecode": [], + "datastore": [] + }, + "AU1ENxeAPFpRWFRDo6i1FZzRuhr6dsgTfJ9gy8VvYs3iNJUDxgLz": { + "balance": "1233.549432072", + "bytecode": [], + "datastore": [] + }, + "AU1EP2crZHXCf2Qqg3qrByFoChqhsivK36vifmH5RdqY21RUYwCj": { + "balance": "3567.829226920", + "bytecode": [], + "datastore": [] + }, + "AU1EP5zzGTubkD4hfLYWNfvgaN2ndTsukF9fRoq6qCWAB7J2QuaL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1EPGrxDt6q1ARcYLef9mmWGhdhuXmVcFFKvYJt924QcEc8jN8a": { + "balance": "1553.035773989", + "bytecode": [], + "datastore": [] + }, + "AU1EPRdXEJoMRDKZzEaz6xzLEYYNwvhFTm5bWoBMBWYsXgzckULu": { + "balance": "91.237655009", + "bytecode": [], + "datastore": [] + }, + "AU1EPSqntqKmvaNWUfctSbEvkj9qsUiLof9Nc9jvomNf7Fg9bvsZ": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1EQ9bt9rceWdcXr2XkP3QrtsTTSRqt898g3rWzxGzrHYyYnKEi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EQE3DgEgwdvrvgAyhjMRzQpfB7xwAQn5jArtZtSMQHiGfDntp": { + "balance": "3669.122500577", + "bytecode": [], + "datastore": [] + }, + "AU1EQEQF1D1ZuS3z5v4U67DuXEctbntnP8BGbKowUGXuoyipZy6H": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1EQbnL2cidMC7x15U2LpogxM8BH9Lvi5NtE8kmDrJFRiPBSaaT": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1EQwD6bwYxBSC43s2MVUC77DSLoBfThfA6yTqbXPdwsvhwpfZi": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1ER2AxGDKh8EeQ3kNTKyknsLfYdmCfB7Cc3SDHhEGKEeo6jnqi": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1ERVfWGBj3BxXrZkCdbXwPBwgfVANqtKJmVpAyWThRyfMC15g2": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ES7yETDcP3ssRhWYPixk3RxBHxFrXkhnqDt16PjoFRFTHr4Uj": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1ESC4Lx8mU9HxJGcXz8nwWbtofWvWEnEkEyf7yvDVcaYe1cc9A": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ESYtFD3YipHy6HxAVWnNvDbKpFd7hu2E6EZmzxWg9UFHVdFVM": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1EShy48x9yHdBfvma6HpYL84vQiK8UXDWaMfFXqkphRxDxUwps": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1ESsEAceWFAj5Bpi7f7x7HWAhcDU5y3XCqXRYvc6CV2PrnfL6K": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ET7j1HHov7ChiNwBWo8wfHzy3JigtstvPtdnez16cQeG5SSta": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ETtuCreLc36Wph2ZbQUhTEtiBbZer23XGLXn3M7KP5tKCUbNf": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1ETz3QahnQQTuYU3neL21hF1kgqLK2L8Xd2QL42xFnKk7Kv5X9": { + "balance": "2785.159054191", + "bytecode": [], + "datastore": [] + }, + "AU1EUZ1fUtLquNoRFdpifwEAt9p3TVaCKQrAe3a4iegJW7v1v3VD": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1EUZ8hRc5iz8krUngms8j1SLbKbi2LAQ5F6UaSKqVNRRtYHKQf": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1EUym94G9aQjGpWSvb2YAduHfTo2XfBxW1JUZ8oGY6R2KXBdcy": { + "balance": "611.845172499", + "bytecode": [], + "datastore": [] + }, + "AU1EV4QTUY9sCPFRERgNoWpWU6oQXhqZ6sHGAKBhFd5sLaBMeUKJ": { + "balance": "20.580579576", + "bytecode": [], + "datastore": [] + }, + "AU1EV8f1zmmLCgk3DtfeVcWqbpWGENd19kufwUwLL6tSm551h4tK": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1EVFC8ui7aBcQEzHm19JA4nj2tp7dFjMgrvwxwLjovr8JRgjL4": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1EVMYSHxrgyb82UeYhHGLi7MPaHFGr17GA3E9FFMgtFVPnfAF8": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1EVQgyHDBmxmUyUobdm92chQdEKFrSSbFmUpp7SNTUHLnv6czV": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1EWasU7fvbXezVeFqv1cYePQ5YYqLKT9i513T1DJMtmMEScyZN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EWetuypU86zdDRXLW5sQrinsPMQakaDfRXvFhRt8WAHBQviS1": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1EWfizkuSpc2GmqdSKja2NQW92z4JCARz5Foy3HjunkByz6hns": { + "balance": "6609.932099867", + "bytecode": [], + "datastore": [] + }, + "AU1EX6csYD1wfBq4ofGJWhUiDW8XsTotX3PvhhSt88r5WDdbapqH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1EXPdWtWpX1QTrUuZAYso6g5zyc2Zf112UCFjMpsC9vVhcsWyW": { + "balance": "1994.734360793", + "bytecode": [], + "datastore": [] + }, + "AU1EYKKZAYWxfdWPjoDNi48ahLzK4WW6zofkFNrF45FbyrfVp8b3": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1EYbP7FQsvyk5LqSTj5pPdDVmXPsf8tqsoy8BAQYDm8hsFGcEx": { + "balance": "960.384338557", + "bytecode": [], + "datastore": [] + }, + "AU1EYw7ms7sNg8KYXAiiKM2M6stcmQ27fMUAxSGoWCT7bFFCZSdj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1EZ4C6xq8cZruLxwTgZaU1Luw1hnvMoxW188ietUQAKom85Zum": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1EZHqxXRssqm7twiUCCP2nZ8pvJ2JDcPccFyY12VkpyDK1uxUZ": { + "balance": "4667.160103540", + "bytecode": [], + "datastore": [] + }, + "AU1EZKb8LT1WvRm2mZPKpFgFEjMR2tTfwNE1UJTaeAtYAKB2ZnF9": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1Ea53SdX3Ao6Xt1YG5hJdVVna1s2dRuRv8ZXUgM2tf1DhAYNj6": { + "balance": "850.092737547", + "bytecode": [], + "datastore": [] + }, + "AU1EaNiZcZUz8PRPT1GSB6Fcnf2oVkgN5U2k93chnvbbLKZzYqM6": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1EaaxAPvnMbYd7wfXTnVNEZXu8YPtztG8drzpqtjw3tcpF5diY": { + "balance": "624.736851476", + "bytecode": [], + "datastore": [] + }, + "AU1EagC5iHN6h3VgLrJJHcdmS1DV7KG4or1vZjMhX5qsqvFCV5M2": { + "balance": "538.747632158", + "bytecode": [], + "datastore": [] + }, + "AU1Eap9U7341swNPRuFFUZdJPZzyNQAXGABvp3Z694pEswMyttJQ": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1EaqbDZCKWQA2QjE5QVpZ7SGuNhYfzxP3kRjc2PrWvjkkreaUv": { + "balance": "1145.726010174", + "bytecode": [], + "datastore": [] + }, + "AU1EavTfB2pFqt4nWBJCHxhhr7qiAJP31gzD8AdC1jvvb2hPyhkg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EbDhHwvANBbn6cENYcXcSZLwJGx8THo6GnumFwECngHRBJED6": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1EbL3gCJohoFq1CYeyXPTpXmqZ9A1ytVrZUfH7xUqAkDXwuCh5": { + "balance": "1000.140628869", + "bytecode": [], + "datastore": [] + }, + "AU1EbimBaj6w9TGAWPxFVBEnXiMaKH9WLq1AcQrTHwaqrwRcA6Jo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Ec9BB1WynHg3nVyKbpyehMMfqw7CkbXeb8r7wZGm3uPJogm6N": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1EcYcB6xNaHUT4kqhFMTut9uhcw1pvdnNALh3WMPJ93Fm8BpyV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Ecccg2s1DBJKAJ2rK3D61Kvx4rgSokjDL1s1ns16Q3r7aiTLr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EcuU6qXwfVuQy3aTrPsRMufSA1rwZUwKrHkTgQe4p57hqKm24": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Ed23LyfoHMh1eVEukcFm9GnE7dgVFM1A3xkZrmYFFjgg3sVeZ": { + "balance": "5762.992783671", + "bytecode": [], + "datastore": [] + }, + "AU1EdAU6pbLfCJ3w9JKqLVwkmTAVf4WfMukTfLJnA2bqzFwXcW61": { + "balance": "2671.270390490", + "bytecode": [], + "datastore": [] + }, + "AU1EdHKYhfQ7HcBbxuVyq5ky8XpbNgu1a5fLgvbFsBvJcaxxUQMW": { + "balance": "1655.639452283", + "bytecode": [], + "datastore": [] + }, + "AU1EdNCWk5NHNj2cVabSKzMnsaDpTWDxvHWKFoZd2HnhZ7RBGSpH": { + "balance": "75.313756637", + "bytecode": [], + "datastore": [] + }, + "AU1EeCgnJdRxWvjxro1kjpa1qs8s9jaJuiVFace3bSKLeBReHZSn": { + "balance": "896.007578335", + "bytecode": [], + "datastore": [] + }, + "AU1EeNjQmKeTAT8jhRpFf5Kotqqsp88wdh3w6Eo4ipNYJM3uoYRF": { + "balance": "3067.963106955", + "bytecode": [], + "datastore": [] + }, + "AU1EeV6XtRES7Wcvaf1vAQVY9KQhMwaRQ3vyfGDWi9biqSszV5j2": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1EfFBPWGZ2Vup3ho8VTtvopRkLKFWcdRZdvhjYvg5fUFtyFKMP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EfWeuPgeLB7FWcSP28iA6UGRZqgSYyLvd6Zo5GCEe8P8oeYCR": { + "balance": "1455.235314142", + "bytecode": [], + "datastore": [] + }, + "AU1Eff7vHoUVuUHQnXiMVgFX1NgxLJ6YBjMch7s5hPSpHMFjx3Ge": { + "balance": "555.620462913", + "bytecode": [], + "datastore": [] + }, + "AU1Efvu4G8hDsN3wo7cgeFo5YAHQnZUjmVxm3sPxkCNqNBm2ijVu": { + "balance": "5133.627687019", + "bytecode": [], + "datastore": [] + }, + "AU1EgGJAJNnhkdWUG3u2eWNrZfGbBMEzqSHJp41moDrtg8MiJyRC": { + "balance": "98.707170186", + "bytecode": [], + "datastore": [] + }, + "AU1EgXRKAGqKQZ2GK2z7WkemxzfJBWVYj5pzLHTNdbBsXMwRfxX6": { + "balance": "800.005267649", + "bytecode": [], + "datastore": [] + }, + "AU1EgiQui4o69pPPq2RVUBrWkYt5TUo6J69LBiA3toG6uRVczTKc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EgootTycRbRriHTRJm6gsrnEHstsxPi7ZJYR1rej8Qeqd2gFB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EgxNA5oVu9ccXhyd3SZkHt3uZcEB4ABypVuLRC2TGV5EHNCU4": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU1Eh1YVxNtFaC9J8zzpDq5CvdmwLxjrBt1hj6m2euWbQH1hna1z": { + "balance": "4236.877360224", + "bytecode": [], + "datastore": [] + }, + "AU1EhZp94AJbZcdXQsVbHGCKSxAiP6TeDXgjmeEYSZeFbhtF2eG4": { + "balance": "2087.684822654", + "bytecode": [], + "datastore": [] + }, + "AU1Ei63hBFvyyktpHGYXdBbk6uwuoybsRoJxBqNzUiW7SFHuCoKp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1EjG3uWYazygXVFsJEuNPEZos7mw9jJmRho93zDtA6d7TVWixM": { + "balance": "2971.245550968", + "bytecode": [], + "datastore": [] + }, + "AU1EjKL59kDDd6HHcGCuJo47v4HCedJdMiFPiCtVscL59vzzMK9T": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1EjVYEPg3ZMzyGkqXBpT125joVTztfxo9PWQ2kEyjriNyjpEgs": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1EjZeESZVxSCTgqiT4KpL7GrdB7Rr4dKqBv2bXabtjqFfNwrEd": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1EjeJzvpSg8Gza2ahDJCvXkbfSyxXhc4uYLnZpiwjVyN5E4Ls3": { + "balance": "1814.686394374", + "bytecode": [], + "datastore": [] + }, + "AU1EjkbSeqQiVXuzHV3QrcLW1GDmLxch4BG2UEx5EydcaF8GR2Ke": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1EkWPwjs68VNB1gHpkeifwcpaGTYWFYG4z9vJRXePaYywa6SLb": { + "balance": "1650.837783044", + "bytecode": [], + "datastore": [] + }, + "AU1EmAaFuckKETC9owvcv2XrYLoP7k6WpdKLPt2RW1ef6x1kUU2f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1EmEhHmSZmvkkFvZYmi6dUoNKURyiSp4gCoM9vKtXLsTUySj96": { + "balance": "3652.638538871", + "bytecode": [], + "datastore": [] + }, + "AU1Ema36ZBbftwcUXhsSCaF9Hth8oN87mQXtaFw5HTadeTip4EGd": { + "balance": "1851.737763218", + "bytecode": [], + "datastore": [] + }, + "AU1EmpP2YieC6ipGEdLHrMcQSrjr3sdHqRbcAU81bkhzeiyc2CKT": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1EnZpx5HKaJqc6BLzgNt8ThB48ac33ofyHjBLdk6nUF85ibVBZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EnaQjaw5gSHFkgxASJEjjGgfdnFxeoezAmNZXN4sVJyVsXm8e": { + "balance": "41.324332166", + "bytecode": [], + "datastore": [] + }, + "AU1EnjiETP9fohhQDh1G4i37PBxYLsgq42qFhNofWTDf5XzToLu8": { + "balance": "3501.910468209", + "bytecode": [], + "datastore": [] + }, + "AU1Enntd2P2eQeXY6cM74sarbbYBa3fjCJtetKtfvPRwuRgLrtfj": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1EnrtRgJPQa6bdz7USsnnZi6nwNraWjhH7i3X8LCVccARA1WjB": { + "balance": "2364.664402912", + "bytecode": [], + "datastore": [] + }, + "AU1Eo19eaQWcsno9yS2xnfZ8CLPWBMRRJY56yvnBaKaUjdjMuz4P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Eo5bPdmg9Sq2NouTXZWGapNA7Fpn9u8wtT5KnfHf79QcZT5LP": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1EoXLE9L8Zmd5vZQGG8t5tvhPkSi8xKcfcyBVf9MvARHsVVNuC": { + "balance": "2145.040651888", + "bytecode": [], + "datastore": [] + }, + "AU1EoeQnY5xs9mYCJcUnd58uJg3nyJEgdWjfQWED4J9EiwpsKbcH": { + "balance": "3668.384460312", + "bytecode": [], + "datastore": [] + }, + "AU1Eohq4dnDhVLAD8TNDmn3MELKgtN7eShW8bh9j1N7TmNeixWjn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EoyZpTRQxkQWLU9fGudo65ghrMN1HGG67zTETH8tsvfW76Cfo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EozrUvYWn4bt6JUgb5JK8UpjsmY2pBc4QZ2ngQLeSZET6A12M": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EpJrNMjhXyzzgA9n4qC9tnWnVQQPaw28awjFKLmj5HoHJnZhA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1EpLY3cTvWrXBojzLdkWzcqKnwhoJrRsBBnVe2v8e8b2KK4LFP": { + "balance": "209.395108934", + "bytecode": [], + "datastore": [] + }, + "AU1EpMiNUo6bTK2yZnMnDa5NLDwCNgFzN1Jx6s6Wr86yhVvNK3Hw": { + "balance": "58.137272730", + "bytecode": [], + "datastore": [] + }, + "AU1EpV1JcwK3752fyfEv96QLo2qfPpYGUo9uYXgtyxFoC42rJXLU": { + "balance": "4174.756238377", + "bytecode": [], + "datastore": [] + }, + "AU1EqDsJuXRxigEAHyPeUFJ1PqXgHvi9Zd9rqo4QWQXPoorThPL2": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1EqF6bTT65wmZ9DWrKEHJDG5fjqxDWFYq3e1qr92Te7RecUu4U": { + "balance": "1324.572804662", + "bytecode": [], + "datastore": [] + }, + "AU1EqPoZAMRH6DrZRrs4qmDcMrvaMGpcxZYMwZ7QdR64TSBCn98H": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EqhAQQPd8cA1AuGoYJsZCD1Hg5GBu2sak2ueXipQxRRRwaZwV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1EqxUHKSDbb8wgDpsv1jg7aRQuR8MgUYNvSq2paG5LEZUN53S4": { + "balance": "1734.780302439", + "bytecode": [], + "datastore": [] + }, + "AU1ErDVjKUHxfSs6EzJ6em9XaoT7bhUhFjPzyFT7EnZ5VZmPfpWC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ErpHCjR9wN5CcesgjWrc1TKUgPe1aoXzWQP6bEopLYDk2iPZ9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EsVVSoqJCJdVuYNKdwVhbpsGe1d6reUiQiEAPMgQzeJnBN7te": { + "balance": "3255.973645602", + "bytecode": [], + "datastore": [] + }, + "AU1EtBtmDi5CguQpJRE6uAA3YepRfwjZ39kRAgPAFbEpfxnVsd1x": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1EtNDmmmTV965AeFXe8d6HtJn7K9J2iNWibWNcEXnaRfw9NDqJ": { + "balance": "15.889796696", + "bytecode": [], + "datastore": [] + }, + "AU1Etb8Uy3tChSoGtXxLfXRVC6KAcwTAk4QfqW3QnVZU3Lf4NYhw": { + "balance": "1594.005863580", + "bytecode": [], + "datastore": [] + }, + "AU1EuR3P2kfCJAmV6KFNcBWSGxa28a43TM4qdGkgg7XCnNohySPY": { + "balance": "2289.209889268", + "bytecode": [], + "datastore": [] + }, + "AU1EuscmncLiXQ3VXbd2k33dV1fWioRhggTHiYNPRoyavYyNbeHV": { + "balance": "2087.458317239", + "bytecode": [], + "datastore": [] + }, + "AU1EvWBGUoctGU8PzokZNQoHB1z36vevgXTxdg38s5gWSG7Hxj8s": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1EvshWw6g19K2VEqDZ8oU29i728xnZf6vgXUP9yEJ9oWFNoUj6": { + "balance": "541.953583791", + "bytecode": [], + "datastore": [] + }, + "AU1EwAfx7ckfMxzySMkw8RtefXDbRbmLbPyt98gxGFaDuxnVUu3i": { + "balance": "1491.263598351", + "bytecode": [], + "datastore": [] + }, + "AU1EwDYVhNHN9eMcw3fahKkebE3J8muyzS5zW6fsSX1EERTrYK4b": { + "balance": "3179.511709881", + "bytecode": [], + "datastore": [] + }, + "AU1EwQ8yo6HUrQEdarbdkGWsDc6SCEm9ttChLJPYuBYWi9ec7XGa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1EwcGhVuLqDnEHoDM4iBgYY9rpFXb7uS6QkkBjKVuU1Uvedg9x": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ewi3wy9g1BDSEXTrRyo9dxjpXi9qk89c56uYsUAr1SNm7Y2Ep": { + "balance": "4911.011454482", + "bytecode": [], + "datastore": [] + }, + "AU1EwpEYxz9dD6ZLVoHqiX5NFM66eJEhh5f1r75aX2w97S3r61AA": { + "balance": "1818.441637944", + "bytecode": [], + "datastore": [] + }, + "AU1EwuNkzdvDQv4AriJA64MrXDcRTwNUheo3QHvQBscnps4VGPHP": { + "balance": "2357.708335684", + "bytecode": [], + "datastore": [] + }, + "AU1Ex3tNwj6yPFVynTLKabRasRCZguZBR5FVwcvreYZSxejfJCkk": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1ExFVuNRVEvbZo63UeDdNJj5MhrGtHJzcMnEHPdqSQq4Snut37": { + "balance": "3520.387321119", + "bytecode": [], + "datastore": [] + }, + "AU1ExLkByG2EKY5WRVxsLjPCGi1v98dyT1wykuCcAnGgHky6x9Gr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ExcxNJcDGc5FDKf3Upo6XaJuon5xQwpYYtddbxxyttXonTwDf": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1EyBuFhTMM38gufFq7tRbRG7HZ1sMhoXFnakRNigrVw1VviM7H": { + "balance": "6186.278584356", + "bytecode": [], + "datastore": [] + }, + "AU1EySCezWVcXcJtLPyumQDLbAJwTqsiNAtuVSSMWcAvxBQkwwfY": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Eyoo7zQGTespiFuMpBaXSnTNK1ad33s14WvhN3uAUjX7ohdBt": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1EzMz5n488Z1iqEBu8dvuNdUgixB9uRU6tZ8by1GbKU9UhxW7h": { + "balance": "1242.552705448", + "bytecode": [], + "datastore": [] + }, + "AU1EzcBsBjad25kCNfdMruqQNnk5ZLawM7ejqZQKezZoRR9XiVpj": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1EzcpUaR9SerHkqWJ8SySKrtW7t69tWCEjnYRPUR2XVhCwLgiV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1EzeuGdySY6pS8pke7mkv1oiRrAD3vU6d1oMYnja6X7YKcRDAX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1F1bveo1HA2ASoYSvmeynmPcZZkXR3ua1oTPUzvNpBUPtNDKgM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1F1eHFNfxcTQ64zAmYDDikxTmtAGqmGXWkrEkc1MqawazpGUVX": { + "balance": "228.975838335", + "bytecode": [], + "datastore": [] + }, + "AU1F1gFJYrnkDppUKsj7CFXUv36UeYMQ3iH4YeJHU13ciXmqKEsr": { + "balance": "6336.340497477", + "bytecode": [], + "datastore": [] + }, + "AU1F1iCAN2jHxiESBN2wKQB1hUspyqWjQ2NiE7RbCrdV3HnVeptx": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1F2Meisgf3qZyYZYfTzAhLvUowcesbpdTCCHf4BETb2Vi6oWYR": { + "balance": "1679.841346170", + "bytecode": [], + "datastore": [] + }, + "AU1F3Z2LTnEnEFyg1biyjQqUeb4AcvnMJdKoUUzpSAQrod71dc4p": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1F3amyNnrdpqAYYxcbeLDGuvjZwvfdn5kXD154YEnpTZxpyCEy": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1F3q4x39foxeYg8QuMc52Kwk8rJYxy3K4ETaBhvN559mw2PJQj": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1F3vLJa9n6LSNRiz32aPZKC9vUcRmeJPREEX3jbbiGBmcoeCNW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1F481JZExrSc1gq7gUKzMJeaWmC9Tx681T9qSHWqXTjTHqYrKP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1F4AjhixNADAjemsgqZMhwFfDsJiKe2eWJDtUMFwdBq7ps8asB": { + "balance": "592.574506064", + "bytecode": [], + "datastore": [] + }, + "AU1F4By4cJYtY7BXyK6zXgkVvp6jDH4vSdPtgXBuhebtZiQeKN2Z": { + "balance": "3885.775395464", + "bytecode": [], + "datastore": [] + }, + "AU1F4zqz6d5JVq1STW8yRm8T6VV9xsSye88syBXbBJiSh73artGH": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1F57L54cd46SogZcjUf9mXFERKcEw7uSaDdFF6RV3n3jKDSbpv": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1F5D7XATdmFqXGqMjYuMWhKkJMsJNbVSQZ2RFiU5rYWnRDXKJq": { + "balance": "1955.596764825", + "bytecode": [], + "datastore": [] + }, + "AU1F5LrtMcbTPUyFuNQUM3oJdRWU1VHxKnE2rBGn1QpL7a8UTxSj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1F5Yg3EVpyapu5CKN2ANwuNPcN2q3wCmdfFYhynwrXCHeYBsEz": { + "balance": "2012.812243021", + "bytecode": [], + "datastore": [] + }, + "AU1F6AqkbWYh7af9ZQsAqA924NZt9EsmRFqhJrVfKV8gmp42RZE3": { + "balance": "4972.843439271", + "bytecode": [], + "datastore": [] + }, + "AU1F6C4vZVZE9HUCRB1jicXX99ZBZaJt6DadZzgZjv33Ledc84hL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1F6DpVt6ZTdN9yR3ivpGjtmvp7HaKvTh1oqjmPQ6e129R3GCuK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1F6MwCrdeo4aSpMVbmHyFuReTS9WL8WMiqrva2nWjR23WDh3F2": { + "balance": "583.151321825", + "bytecode": [], + "datastore": [] + }, + "AU1F6Yp6o6biPcCFaqNvuUfGi6GJtDaj4hrsjkR1CrwUw1QykwXM": { + "balance": "1712.152575438", + "bytecode": [], + "datastore": [] + }, + "AU1F6eDkyynHWKoiFAimGcmri4DrKYg5VhAt8pBT76392zqLrE6L": { + "balance": "679.720304842", + "bytecode": [], + "datastore": [] + }, + "AU1F6si9ShRaEPReqHYnkjPMyWtv8ecbysof3Xt1NGokvpH4VPR8": { + "balance": "1869.284232904", + "bytecode": [], + "datastore": [] + }, + "AU1F71ZCqETCBcQTUGvdYxA42TjtUGXjcJaNA6qVGpGcXe2h79iC": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1F73AhjNDm1BLwoSyDhqcunuYdpS5KNzNWAfcHsp1Ui46VY4qh": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1F7AMQ7oUHxcJA9R47fYkNTmSWrg8dV2p6Xrzm2HigGoj9bqsL": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1F7CsyxkAQ3igRfFDkJV86uGfwxTNwh37fJkh6HZyNjPmkYevr": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1F7EDXMLHDM9JSNEkcnqDgBFPBtfqDrGFCHjDoX8BSweEnmNwf": { + "balance": "1705.934368768", + "bytecode": [], + "datastore": [] + }, + "AU1F7X6Sv88j9SvYHdReSjHGLeEXYYgZdYTUcF7vBd5bgbfmpaH7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1F7fWa3sf7WGtK7QW6A9YgjnNnGLtWN7paBgA36FNMU9KJS3TE": { + "balance": "2538.645586373", + "bytecode": [], + "datastore": [] + }, + "AU1F8YXWPJBwXqvj3CDkvNA9Q6539nPmDbQWEud6nmyiRzuy1AJe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1F8eHvBNRbnbPbKLZPUqu8GgrfEAgqEkUe6zHPZUbgpPNGMgaQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1F8unWNeWCsn69tXUjSDLma7oX2Wyzjbfq7KoUiqok48UFyCw1": { + "balance": "25.098772958", + "bytecode": [], + "datastore": [] + }, + "AU1F9C8HYPdjmtBDdJdSx4gRW4SHuD4C4eRP48BZ7P8eCtPfAr58": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1F9DggVjBLAYW7hBmiaFu6XPduf82jkNdArYJ59mrweBqTuGJA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1F9Rtzivq66LmzrNn3j1dzU343ySXwc7NgJhGpXPcnrMMjNiMG": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1F9U9nM1kMgoH1Tj7TUxphfHmtnoE35WaTcjhDJfpkvJu1o9ak": { + "balance": "3324.650851005", + "bytecode": [], + "datastore": [] + }, + "AU1F9UQb2Z73BYGXe2gBQQzYg9sQjDSkMfgfdkS35gfLZaHSvaBT": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1F9VtZMm3tpB1JVikHUWZKinighotd9Ff4e3ynhMi5S9YRaxEr": { + "balance": "997.786471800", + "bytecode": [], + "datastore": [] + }, + "AU1F9e8F37m8YmNTf9AV7WBA5vPaXV2th4EjMKf44JBs1N1aTTw4": { + "balance": "716.840774572", + "bytecode": [], + "datastore": [] + }, + "AU1F9eW3oWP6iK9msRdb1Fh1JeiSpMR6ynE1ko5aT7cYr6LCefbK": { + "balance": "890.369537237", + "bytecode": [], + "datastore": [] + }, + "AU1F9f3Nka3DZDXQDcf9f5Dr4XXQGsJvdBfJmEJ7Xu3adHEx6oRY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1F9m3MsnE37skN6sggbHL6ZnK7ZqoNdDG79ExJeZYq3WYuekab": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1F9zqrsqbUGo79T13Ec2U4VU32m3zyj3MMAX2x7Z7ttHndux6w": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1FACpRdmJHhgbHoTLbiDH78iSHsNZmA3UhZ85uQySbYE5ibh3P": { + "balance": "530.275284474", + "bytecode": [], + "datastore": [] + }, + "AU1FANQUgpj87yFX8pTavS7EAUp8JRY1r6TPqKZwAgwgkkx5t2au": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1FAfB5WsQhfwJ5iDgRZY9dWge4ZWRh8Z7mJBn1JvXETcWCV9ht": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1FAsT4gx25zpRSMvfxQk9MDAK7pDQGf4E5c5JsEWJDE9sTMiRN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FB2TWJdbr8XMs3Dwy3rvAy2UE93WuVPw5f22GXekxWKxtKqts": { + "balance": "2326.952159615", + "bytecode": [], + "datastore": [] + }, + "AU1FB64tEGjarNYEcoA84HbGUjXEsjphXS6oRKjK7X48iU6wYVkr": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1FB9vAs9w6gJuUUAukjspaoscN9fCz6n9wyBJkLkcWF1pFCyFL": { + "balance": "143.220843883", + "bytecode": [], + "datastore": [] + }, + "AU1FBTFmSPErmHn9Q59QKyGr2d3U72vTgvcr4oNVSkPtZkXCXq5q": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FBn4nvoXqDDY8whVV2DCctHKQqAWqDdR4Q8dbUH9C5s1zCQa4": { + "balance": "1224.604840360", + "bytecode": [], + "datastore": [] + }, + "AU1FCQu1Tj4r5eBd5X95Km9EWC3M2F4g3mUziKSr8h4UyEyacXnG": { + "balance": "821.149138260", + "bytecode": [], + "datastore": [] + }, + "AU1FCtQxhXyChq3king9Y8LVxLHBnjCj7xjf8mBebHsqgS3GCZMZ": { + "balance": "4215.381446974", + "bytecode": [], + "datastore": [] + }, + "AU1FCu3V1kBH9WTEzpMgp8LCwXSJC5VmYvrXC4SrA9we6BButT6E": { + "balance": "2525.035450617", + "bytecode": [], + "datastore": [] + }, + "AU1FCvS4rGstwnfKQC3gNfr2P3W1GuZXHrVaBCCJQg8zpK4nEw3H": { + "balance": "2289.593827851", + "bytecode": [], + "datastore": [] + }, + "AU1FDEW3arhG8o1o3cmeBYzsPG5euimCdgEsNsarDg4cv3A8de5T": { + "balance": "4266.667660633", + "bytecode": [], + "datastore": [] + }, + "AU1FDaRn81QgpnvBy65wyryx6kNCeKqpHmtQF9nj1kecbz53Tn8G": { + "balance": "2459.235369371", + "bytecode": [], + "datastore": [] + }, + "AU1FDchV4mbqmJdp99syJYSogYrhE9ABREo5WmZ8TABQqHyzWuQB": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1FDukXmbneKBF7QNsVb9phShxcpv66b24W1ceJffDqbvfZATXv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FEL2Yxn3QXfhyUpnVeqpriQE2a6FGRYLmFdLKGyYY4NpFYppR": { + "balance": "3475.311341539", + "bytecode": [], + "datastore": [] + }, + "AU1FEkzWvbjXRKntURVA5UcK2wrxiQpCsunqpZa5gE2wKjc2rHru": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FEoFycwpd3qufRcpkDB45AMPfhBx9M3oVwYAHQjbGhHHErMaF": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1FF9kuWF7ovyTMBymWcdH7xvPxhERdnCAXMjFosTbDwjUfCKNS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FFvWpadLw8m1EzdRMuaEde37kBa8afHbJsW1bBq1wnpZF7jYa": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1FGDV3yiUBCyPTa3UWPoDz43LpCwcqjDpTpxmLsqHoEjXVfRTy": { + "balance": "2165.220286189", + "bytecode": [], + "datastore": [] + }, + "AU1FGiCW5Rogi6B2wi4m1UsFqChMHzXzh3t9L8Dix2ye6ecHKHBx": { + "balance": "184.148929534", + "bytecode": [], + "datastore": [] + }, + "AU1FGqZM5BqcYkwJX4sMdpAzgeEoBerbjJgcZXh5qEQdvrcGJhBk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FH6aV722ri14z652F7Jd2HdxPFi37RVtRNmDBtcp83kZqG35J": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FHKCibAeE3bxt4CvEBbCqecCV8moHFSKsQz9HdzjLgbv8NePE": { + "balance": "2994.791847467", + "bytecode": [], + "datastore": [] + }, + "AU1FHrFQeWV4utxn3K2A6ban583ZTtzq4URu5gB5esoh1ivioYWX": { + "balance": "852.219412742", + "bytecode": [], + "datastore": [] + }, + "AU1FJSkxTWKRDhFwFMEGSmE1pKNwFfDEQZwgXm7nJQjVVRRmrigm": { + "balance": "2799.959790209", + "bytecode": [], + "datastore": [] + }, + "AU1FJiwpkc1gTJX4HRdAmvh5xtPouBgxWjHitTb2N2tPmfCLZZz9": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1FJoZrF9QSjm2Bd8zZswMZD7QJRCYzmHrpV77xVxEC9pPjARAy": { + "balance": "130.436128096", + "bytecode": [], + "datastore": [] + }, + "AU1FKhmVb68x9nq78tDS5zFG9ApSMYS8eSC3ymYJDGaxhLJc45Nn": { + "balance": "4737.803791842", + "bytecode": [], + "datastore": [] + }, + "AU1FKiefZXwrAyJvydvBAk3h53DPZyeyNNXiYhnUDrYSrwaDGq3s": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FL1CQWm3psn8gzcvZgU268S4khGC1Ts3rpGwUjWtmsduwMQY1": { + "balance": "6035.361693126", + "bytecode": [], + "datastore": [] + }, + "AU1FLAJ3nVEumed4AZ1DwzDM1KMyqbEiSt8cHqYamz6aaswTBw7g": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1FLNgqUiFEJeVhKVMw426dsLJwdWBug7kow1YLtwULferkxv4x": { + "balance": "2255.028255296", + "bytecode": [], + "datastore": [] + }, + "AU1FLXWoMALXtmPR41696ssZRgUb62yzNUNohnKYptdNFyK1xVBk": { + "balance": "607.236697124", + "bytecode": [], + "datastore": [] + }, + "AU1FLtVqcD5xHG6Y38xFrg5Zj9YMkzF5pjZ87e6CK8xZct6E1JUC": { + "balance": "181.090162747", + "bytecode": [], + "datastore": [] + }, + "AU1FLxoQrfMAAeNxSDHArRR2XtpkrZufEHyiTY2SFFz4tfLykPAY": { + "balance": "1423.364342071", + "bytecode": [], + "datastore": [] + }, + "AU1FMNq1dwQb7QfnrqE393NPpsCLqx1H51BVC3rNiJd3vS8seqa9": { + "balance": "14.869127742", + "bytecode": [], + "datastore": [] + }, + "AU1FMpXgsxL8XonQisjSTQXNPreNFMPEaBEJfZKKWfiWuzMPQxg1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FN1sSbHKWN31MJzjCQXCssmJwWhM6vCLvHEsZVkhn7Vo9nWCv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FNBLX5xteNXuMxdt5yQ9z9bJmdbdWRh3EKuxNYamLgCrUfuai": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FNBxjACRXLF7m2Z2bsDC1KTPaSWFLVVpdr7PyGr2nxFLtbmuG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1FNNRyV8fyg9DymCyarJEBmPYfy16mHJDoodqfCK22M5wdkhAo": { + "balance": "33.924069920", + "bytecode": [], + "datastore": [] + }, + "AU1FPGbC2mzc3czqwRptzGEYU4hG5yaNA6QqGV1z6tCjj349JYDs": { + "balance": "2163.657826845", + "bytecode": [], + "datastore": [] + }, + "AU1FPaLWp7UVi3ZFYFqjDfSXuUrko5sNwTsnbLrpZEHgx1FNZdca": { + "balance": "2211.484164950", + "bytecode": [], + "datastore": [] + }, + "AU1FPhcKRfLJxaZBHasV5Z7nhmK8Rtg2KfFaXdk4TAGcyiMtiFh4": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1FPiFA9DtiUyDD37NTzcjKW5dYXnyjm7QSjCocTFZd1JW7dro4": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1FPyQmhtWWmSbeUGzdwivAyXS5ewPZQGw14cxutMJ6VKR6mqnK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1FQ8akAVJMaheb6YijppnLrGNsmaLhJkaDXmj6r65rzPojRi4T": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FQZd3A3YrTT6LSygp8SRA3BNPGkg23xHj3pc84dBha7jvQQ5x": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FQhJXDb9cyRVeDMVwCHg17ihzBGBxwgRLgMv6EK3jLmK5muVV": { + "balance": "906.538723334", + "bytecode": [], + "datastore": [] + }, + "AU1FQyCd6Da2HqTUizCZJcwPizB4rgf9XDg3GeV1nZ7AnKrY4f3p": { + "balance": "836.921754076", + "bytecode": [], + "datastore": [] + }, + "AU1FR3r1iXUDH86qWbTxNGzpugxH8FAYp9ASAfKZbLDEkPcGPbzo": { + "balance": "549.971489256", + "bytecode": [], + "datastore": [] + }, + "AU1FRkU25W7GXWrCkHjWPKzAV3CStVSz2R5WDy2J9XVmxJsUzFZL": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1FSLqV6xErtRcmWQhRGF2p4R1x8Aj7nw5fuY2zp3gmG9xhaecc": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FSnDVXZyCKeDtgB1piTQrxwyfVsWsNX7SRLtVf6m6crRC3YSm": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1FT2nJowi2rvmKJHsegYSWuLGpztVsaBXvN8ncAoYgeJ6T8pDK": { + "balance": "674.452846367", + "bytecode": [], + "datastore": [] + }, + "AU1FTAtgbLnQ1u7FPtjyFXX9PbuCJmUPXaqbyhLGQpT9tNFDtVty": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FTFKwyhLKZ8QY23z7ABBKGjLVghPGNWXhhYbb1XrLMiP7aM7b": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1FTvhSm6twaLi6Y5tpjVCk27UyCAStWXx1jEen6RKtBgMsfFeF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1FUYpvxP6mJiU2C1wGqMge2JSn8X9Q2PSo9aWbmLHaru9HPSmv": { + "balance": "2132.156602827", + "bytecode": [], + "datastore": [] + }, + "AU1FUZpfVKNcYYgDLMFLLdv31bY91AgwzUn1oPQvScfee5zZ86Ke": { + "balance": "1994.104070436", + "bytecode": [], + "datastore": [] + }, + "AU1FUu137ZEKV4BBb2rtF67KZBB4yscDgJhkRSmfhTGerjwHtsj6": { + "balance": "1438.425433916", + "bytecode": [], + "datastore": [] + }, + "AU1FVCaaE4XebvaJpm9ix4dhQ2t18zBLFnnBMBx7pyKLciovnWWg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FVQTXBknsoZveWMi66cKXVdeYJdrFJu6WNNxNpcMQ6m62Vvch": { + "balance": "1350.264715546", + "bytecode": [], + "datastore": [] + }, + "AU1FVcHoJdtHmZXHnMDcz79EyYP2AFjoyJTA4vKq9SkZKRiQ7Aho": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1FWCn2oWyzfgAKdjBzWgzGL1TKkcADVpmju5GCb1mopnk2z6sL": { + "balance": "1782.650329640", + "bytecode": [], + "datastore": [] + }, + "AU1FWJVKD2JJxVRgjXNbh1hXeEap5KpMV2obiBvcPVLxsxaGDviK": { + "balance": "3985.596816175", + "bytecode": [], + "datastore": [] + }, + "AU1FWP87xWu5Ziup87kqXDT3KtFGanJDwszR2BaVnXo82arwxTas": { + "balance": "836.213761767", + "bytecode": [], + "datastore": [] + }, + "AU1FWbeGhdWsXBdCeK26h6GHxXfZMFHuMQDKCdErWi37JYNM1nSU": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1FWd5shmZGi22Ex7YajKJkrpwwUyGRRNqjBVVqqiQhze4DhGHy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FXQDopRqzaaC2VB7C7C5pYt9orgjJdiHAgcA6rmUVnawDpCcP": { + "balance": "1662.425555004", + "bytecode": [], + "datastore": [] + }, + "AU1FXaQN5MW41hSLLX6SZKjTpMNf9rccSq1pUH2LEUjtdfpueVhT": { + "balance": "44.866194441", + "bytecode": [], + "datastore": [] + }, + "AU1FXnG9WGH6FSAqNRZT9tezKDWEc1ENfHbaUq3cAeWekpCUd9dA": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1FXxszSz6HJrnfjbcC2gP9RtvDPw11QW5XkvRH6HmX4qKqUATz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FY1WqzdyPXM6Dj1xCGiqW8mmWQofRSf6dDScxytAjMYK6BQSP": { + "balance": "1680.100816946", + "bytecode": [], + "datastore": [] + }, + "AU1FYd6FQBW91Vw2uVEaNyHL8XZx9jrkRfzjKFD4h6oemd9yfcGv": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1FYoW6RCvtwPCi9T5MbXck9XVXQG5CwVBDEVgi5PTjcwVJWmuF": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1FZJovBTrqnrAwTg6ZRxhkAQ4GZXG8LLMEmov7HNHeBcY8iygt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FZawppEc1HSdfTJUTLcawuoLz3napCt2yQQR6rvF1Q98dMYuf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FZcnBGB1Q3HTuyWeZzBiex9ptBHkrWHAVxQaURRbVYYyV3F3M": { + "balance": "719.378007999", + "bytecode": [], + "datastore": [] + }, + "AU1FZemHb5BV6VuHuQntUhxHGuhmuzmPuYs83tyUrTZJGjX6arnj": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1FaQyGLZquyXQSv8VvYsScGXdnmNnc8jFvq5ssv5qVpKSdV3Pq": { + "balance": "1983.591257174", + "bytecode": [], + "datastore": [] + }, + "AU1Faa4yAWwtaXbjdz6ssLN9RMNQ3R3NajfHeF1AVqb2D64AArx2": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1FaiEKBB9j7HoSWNFBe1wEa5T5PQDKMr5B8ACAnih2cSdD1XQc": { + "balance": "33.703914990", + "bytecode": [], + "datastore": [] + }, + "AU1FanNwscBfrRZMH3w5YaVN5iGWK2dRN1eSn7mAtystfDaiuaBk": { + "balance": "1768.969517491", + "bytecode": [], + "datastore": [] + }, + "AU1FarVDbpsxm28NncnBonn7GGTpnvoATo2ozcGSGPU7Jhsco8uE": { + "balance": "633.582600904", + "bytecode": [], + "datastore": [] + }, + "AU1FaufzEkYy1hbXvQLYHeKxse4fqiYVyGHxZe63RxGw13gJCUyR": { + "balance": "1479.821751042", + "bytecode": [], + "datastore": [] + }, + "AU1FbNDraW9faYmrUH7bz4RQJtezBhTM19e77pqSsSG6CJJQUiiM": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1FbroeN8hYDeiVa3g5YJu76uLTySweyEAQZxo8suz45FbZbxY4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FbvnNZ4GQzqxk6umk2LEzJmMCEMC482qBfoxeJSk9khDZ9oqq": { + "balance": "3016.987590422", + "bytecode": [], + "datastore": [] + }, + "AU1FbzuuEhUCbpEJNvCfJvJPJHHMvwzCrnzEuCQRh5v924dtw67x": { + "balance": "2526.489886023", + "bytecode": [], + "datastore": [] + }, + "AU1FcRE6bMgN2eD6futG6CSVnjXRrQEkVQCQPAmTSCzuGGKUrd2s": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FcSSQnyw2TRP3zFW2hMXimutGTj4yTm5xTu9YLHSVswpn4DLo": { + "balance": "64.356435644", + "bytecode": [], + "datastore": [] + }, + "AU1FcSuyUmZMZp4im3VsmrRchUBV1XSifz9SE41RZEg8qpyRi8ZU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Fcdn7eRPrVKvB9fR8VTnFkJQQJ7hgYWhofizyD2taU8fPrA31": { + "balance": "62.049001623", + "bytecode": [], + "datastore": [] + }, + "AU1FcxhBpzTpcWc9hAfAjH2cqiF6nxsvFEjLFbGeRa74SuvDH4Fv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1FdX2zAks24QGQ4NfhjXAZEoEoXLsBG6H2S9JSFtKS9ZD5Q1Tg": { + "balance": "3027.311675214", + "bytecode": [], + "datastore": [] + }, + "AU1FdkJGtFMRr2DCmV73HGr6MbRxNqhXqT71C9A1BSrZ3sbBHmHP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FdkZJtih182DXbqPxJWHoD2MVqT7kSBvuMoPPQNnMns7A9koM": { + "balance": "551.038623171", + "bytecode": [], + "datastore": [] + }, + "AU1Fe3Nw49RcpkxqQ9pL1uerxy4E4Bqk156jsgw6Xd7L2Rw3gR6T": { + "balance": "1813.787713250", + "bytecode": [], + "datastore": [] + }, + "AU1Fe8E72UAqcKoJYVsmRjJdxwDYvkbtmFzsdP1QG5Z1Ftni2nXQ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1FefZid82P3wjYV1Gtw3WeuXe13VBpFkbJRJgM3QwuT99cmucn": { + "balance": "1878.952186722", + "bytecode": [], + "datastore": [] + }, + "AU1Fes7upZf5Q9DZgtPsmFogPpWHf85ddp7vRCap2kUzvFNQwWDi": { + "balance": "1303.055016510", + "bytecode": [], + "datastore": [] + }, + "AU1FfKzcGBP4p1QrJySBTY4N62qTHZfMv5GgEyrQHaZqNmb2ViXg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1FfWnRMYatQJhXKf1X68dA2kha5GqgRcdTct8zqJVvfsYM97pz": { + "balance": "893.770929069", + "bytecode": [], + "datastore": [] + }, + "AU1Ffosn2AudbwfyhV1bWxzyv183U3aDnL9kFDg42xShps2sRz2j": { + "balance": "886.543144378", + "bytecode": [], + "datastore": [] + }, + "AU1FfrVNryPAoLxcwLMdSBUyxszn4g7ZM2zXXXKMNQN8GCqrNDiH": { + "balance": "923.637910791", + "bytecode": [], + "datastore": [] + }, + "AU1Fh28zCmyu2UNg4py36CDWJasnsRVncR5yYN2oXnwDVnu8xgWH": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1FhRHgxfRS5oPW1LCyZJShA4Go5AgTwJ8bjwAnA4Xt2eJR1Nuc": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1FhRV9p1mVN5aYNZxSfTp3QuZYVQ6q99rtwHQURKvM8gmhFrkt": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1FhYStqVAzYpKfQSYsQWZQKGHvzWSegCTJoreE2QaN1nzz9ZAu": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Fha55ooedg9tYkTGsySEdDK3daM5VdVcMZEhL4Zv1Ln75BN3h": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1FhcHWxK2pn6uVr3sGVtUM1qg7FqZGLPneQVD9twS2AYp2Suq4": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1FiSu9PcjqqQ4P1m6Rj6sYwNG1GX3amG58sHZWaw26zxPP4N4A": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1Fiotq9gcHQ7okwgTFRvT7gZCqwTjW2JxMDgChp1LgwucoC6eW": { + "balance": "1548.192583641", + "bytecode": [], + "datastore": [] + }, + "AU1FipL8znNFcqt65hSBwE8bpV9Eqff9b54m9CaqeV8RwvvsqgLr": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Fj3m6nErikKJBBRRVvntfGbTLzKrCpujgnrmMuCADn16nNSdW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Fj9ef4TU6G2TE2VLdDmuFQ7MpAn3RHNeTMHdtjFbKtRA7CrqL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Fjhy4qLqgVafuiw3u1diQM2DqJZMeZvzBvLqp1tJLEb99h7Eh": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1FjpZDt8U6qEWmBwReix7f3UvD5RqYfVjuVMjFZ13WRAAK7oL1": { + "balance": "95.033890552", + "bytecode": [], + "datastore": [] + }, + "AU1FjsaH6JRhTQCi6VEey6YpHYnt9sYesDervDLmLvNVSa19LvoE": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1FkY3uEjvjpQbtqNiuU7Bfy4VBGZLcYatq3DP3LpfUu7YBBkeU": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1Fkd9y5ETULzHwcNvwCWhcUkr3NqDQ6H2KYJcGghfG2gZxGfwG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Fkfw3zqqiCd5ihv31ta3knTbPhabD4KgEJ4Hrwc4PjWn8kDKL": { + "balance": "694.746026836", + "bytecode": [], + "datastore": [] + }, + "AU1Fm5TbxPS3ao825bCbe1UMSZZhtHEF1DWHcfvCEePXpCod4NPk": { + "balance": "2298.116554672", + "bytecode": [], + "datastore": [] + }, + "AU1FmRShS8eAHEx2GrQFh4X2mHj2tMB6SjrBjFmpGVFf5o7pZaRU": { + "balance": "2656.825494320", + "bytecode": [], + "datastore": [] + }, + "AU1Fmgv41tHnoexELEkcKkXSvtabrx2kzPjsCHs9EzY7jLat3D5J": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FngqUwTE5cM4Kk7pex2MREsFZodeBmvdSsQZmN6cCKDMiVMWP": { + "balance": "1421.898518986", + "bytecode": [], + "datastore": [] + }, + "AU1FoX3EuzFUYDqqXpmtEE9CqBrcQV3suPKkGwAX5DVH6UV9z7VA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1FoYCDjzbridpBEeXUhsiDpDyqGnnBxXMHvVxgFq1zjQ3hgXq1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FobKjnURfLg2d82Rdwh3o7JaP2Vtd5UsbfVBe2v63qoY7ibtG": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1FoiYhww2XNRdM88dX9s1KGP8MoexjkdZQLhewmqq1F66iD2Qb": { + "balance": "1289.379122176", + "bytecode": [], + "datastore": [] + }, + "AU1FovMxKpDjVP6sthmhLyRTwsQC1wXZXkj6JBcfSoT7rKpQLuPD": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1FowtXu1XpHbs3LgQGgHpsMovCs57hPbeeiVYwHzPKKc3MhYwm": { + "balance": "2877.634173575", + "bytecode": [], + "datastore": [] + }, + "AU1Fp7uBP2TXxDty2HdTE3ZE3XQ4cNXnG3xuo8TkQLJtyxC7FKhx": { + "balance": "193.372564248", + "bytecode": [], + "datastore": [] + }, + "AU1FpCTguYHfZqLixjvWiSWTNwaj4rBXAC9roQhUByhFgcHpY8hw": { + "balance": "3587.971336724", + "bytecode": [], + "datastore": [] + }, + "AU1FpKPKFWGCNGJ9BSFLiz9eu6XSZ6573axCWRFDUa7FEgZEN1BU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Fq8G3HcaRVWfMQsAcYEHxxgSKrWTdC4vy2urUSdZPcsoDNAjQ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1FqSPaDdmw2Eha5TVtzmJStQ4WAGFv42RrKmBnVEoAuSy7xUpo": { + "balance": "1856.865332080", + "bytecode": [], + "datastore": [] + }, + "AU1FqckCApWu4FJJVWeL1xZ2obWE5hnXadC4umxJtDEQwcghmA6Y": { + "balance": "576.932651114", + "bytecode": [], + "datastore": [] + }, + "AU1Fqr7o7ZA8mzSvRMY1SFr6P3fbxnjmUiLCKKQvmCWExFbcWkPR": { + "balance": "3267.648356549", + "bytecode": [], + "datastore": [] + }, + "AU1FqrZ6wRofJjNwPLPiT76acpS4traibt3gZTfiWiHLvPUatKxH": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1Frf4cFGMdyveA8SFdLN5MsXbSzz2a361N9yeU1k8p1Gf3XYEi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Frs6pW7i2f1sPGge8427MvjYX4gifzYw96jYkY8jJvvSmJPT6": { + "balance": "2102.070949778", + "bytecode": [], + "datastore": [] + }, + "AU1Fs2WGup6PJCtHMp79aeJF8CBhuhgRXGfTcKxMAKmrbjJ8ToJs": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1FsZyLwSxaAjiVi4p3qt7Cae5X6ApHSwrQRenQhRZhMrbvjJ8P": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Fsma9uxeBGmUzYin9vksrTJJqwpD3YJYn4jrA7zMVfkT61wGE": { + "balance": "1124.909930728", + "bytecode": [], + "datastore": [] + }, + "AU1FsqUmxGgjAB3uPneTueCj4kaHQWqRWBx6GzJaCDitLLUqDkGv": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1Ft3QUrettjGhyWFfdgMiGRRjkyZfbVhL6XGFYJfR9maJMv3LV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1FtRPUZ9C6HqMdtbSrjUyem1Ac9M3jVCC9YRuEjrMeQ8HoiS7U": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1FteC1ZaQw1CFVPYfarFdiQeGLz6LCMFGV4RRDyaMuw7tyUvSR": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1FtxEi61fpyXT29wYYE38a1KmoFFrGVkvbUaEognxTbJ5WGDGm": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1FuFpdX14STLdfKa87yyX28g96wNwQRLGd8FQuD58iTwgZ1yZC": { + "balance": "1518.849395270", + "bytecode": [], + "datastore": [] + }, + "AU1Fuvu3ZEwcFiRhWu1D8yZqV4iWuxBNCvzLvoAe5fQdqaBmQsCb": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1Fvvr59HvQ8VW1ddcMJBi6cWCTMjH2iho3UUyE89kEqS1x7kuX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FwKE55MPGTeiN4JDZuZyiXPgWxCaPddnMydREdpm6cBqFLZ8t": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1FwqNRbCC7JW45xMeWpHmA4LsFg59Qmd4JRb1BRcNZ62T7bEAG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1Fx1fmZYAKWzWMySyQhCSRQkGrN6v3o6HkyoWjB8iS8Z11cgEj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1FxNJiywajHvBR1cTpwQo7MzQtP6MmP24n5HJuXEkR9NPSqrp6": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1FxZVhoe3bZrR3xY5EDusrXSRmbeV2b8hsutCTtNCjXtA4Qf2t": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Fxh8pxpyAFCtehA8bbCEjrWRtBL5K4VQREsVHRVvA1RgtgZDS": { + "balance": "4711.240171758", + "bytecode": [], + "datastore": [] + }, + "AU1FxiiN7MicMq3kgBnoapKVDTCyYiu6Z6KLoj5Gf9rFzZ3ZCJJw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1FxjQ6ueELZd4C8pQQKzEYkWApZnRs222QXUmHU14fyXBYibFT": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1FxzN2pcFExnU8NuwTUwacm7nKhxB7suGP2WMdd6MJQeyUZFTK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1FynJf6ckA2U1wE9Hy9LYAd4gdA4Ajba9cyJEF6Y7nqptGJYyL": { + "balance": "744.041726570", + "bytecode": [], + "datastore": [] + }, + "AU1FyzzE6fGRZGWSMxiyp1EiBN5bV43hRYCBJqTwsjCt2PztZwUJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Fz4Bi1dZa3aypE5aCwjay9eYvK6evQZgXajrop9q4BEnqSy6j": { + "balance": "852.565119504", + "bytecode": [], + "datastore": [] + }, + "AU1Fz9yui39YrzWWAhg7A4ZHJ2GD236QFMnVAFH3CQ1XgQgBGmsb": { + "balance": "2076.271770220", + "bytecode": [], + "datastore": [] + }, + "AU1FzdyfqJcbocp95SjaBkGdMQiregaUekrj6iijTiwQoHKCBKP7": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1FzvLP9R7fjg9zVo6bLHJtfhcFwjQVD4BiSrnvtYCv1PLNJWc9": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1G13Wg9B9QtdXmBd6b3YLosqS83KRF15Hyuw5LqZMXZb6dTjC1": { + "balance": "842.516623567", + "bytecode": [], + "datastore": [] + }, + "AU1G18SYVx43izLByPYYBQC9rJRg28XjoQJTwHNKZi7N3kVWwgtN": { + "balance": "2816.172290131", + "bytecode": [], + "datastore": [] + }, + "AU1G1itB6iSrAiGhurHLVJxPoKpnoX1gYAWrB3Mmajg8DPW86niE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1G1qJahNJp4P4y7ZpKLCCVFZxxtdxYp9FiJ2vw3tz5Cu7ctPbo": { + "balance": "3125.978235361", + "bytecode": [], + "datastore": [] + }, + "AU1G2G23Rj83DBw9Q7QmjcGnKnxJarfxEGAiAmjiL4iDpGCimxNz": { + "balance": "925.069728965", + "bytecode": [], + "datastore": [] + }, + "AU1G2WPfsSp7LaKo4eTp6t9YP4durgewNjXcUkAzRUsxfzhBuJk6": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1G2dk9TDghub7ty1gJagft27VKVQXtVSb9oaEjMnYQ81ZNJQHW": { + "balance": "95.571791299", + "bytecode": [], + "datastore": [] + }, + "AU1G3aszQ1GVcgYxMcPDoPd3oszSPZYSYV1W9kNGY2q5pbfj5rR9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1G3iVzv41j65gMtbLa3sJRyGUUenMSjRxfzab2vn3LEZioxv71": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1G4FiEuNqaA59obL9BJFKp6fG2f41qE3JLzJ7Go8a35SLr5g7c": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1G4PxZkKLUAP3tqFaKDEghqYVMNCBVzCLPEhshX3XnWzeMdyhP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1G4WcE6gLaoeqMvy6fLzxgrcQ54inEx5Ps25uRPCVm7ZFEcofy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1G58F98cbUEqGqSnSNtNvowVDDPNy19JdCN8Y8crxCazDTZ4Uh": { + "balance": "5387.508688032", + "bytecode": [], + "datastore": [] + }, + "AU1G58Z3vQkC9QHvCqP4YLAAZD4zDvsaKMMeyZzBk4h49kWvaEX5": { + "balance": "1187.167642884", + "bytecode": [], + "datastore": [] + }, + "AU1G5AvCXmVypX8uCBsRHfMbqkui7UY32pjbXQWytAnidJA9iTSP": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1G5SMLgnfdRQqRTLnTqBrBuuhsbDhskhrA4fNpmbWpeS5RpDPX": { + "balance": "1687.666063292", + "bytecode": [], + "datastore": [] + }, + "AU1G5WE9GwyNDtExy6RStYUN9oHVL6MbSfz3Ru51StFkrxKfahmm": { + "balance": "1491.779024775", + "bytecode": [], + "datastore": [] + }, + "AU1G5iKdTCcfytdUUmbhjzv7L1f34quU2uSDycprmEErT2SF4Ghq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1G6tVirDkF8r99hCn8BgNsfjoX28Rbk5ZLLNWMod54MtMeddMV": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1G739JvyAM8zdP7t1x9fsKYALJGgHsm5g2RuCSGBgYFV3wR5jU": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1G783oGb3Rvx7PPw9VP7qSZBH9oV1ekZcALXt3WrAcVfMJnt5b": { + "balance": "1352.269306733", + "bytecode": [], + "datastore": [] + }, + "AU1G7P4c7CWHrVsiWzxtDoicnGWS2FeRMEPsJW6rSwYuH17ASwHd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1G84Vu9x8YmMpW6zMKzMteKTFqR2KbuxpG6nCX8cojeW3ASbin": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1G87PRQe6LQrrPFpWQj2CdCuZEYU2jYp2jLhdHbPa8YP38sd8K": { + "balance": "4226.896277089", + "bytecode": [], + "datastore": [] + }, + "AU1G8A6j2UERCyZshZyeXdpNVpg6JTCK4iKvugKrQSXcm7PvGxG5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1G8Y2Hgdh1vbNvkiLLA5eYujUFdomzp8h1YCi8WfxuR6wUQDYW": { + "balance": "843.233340076", + "bytecode": [], + "datastore": [] + }, + "AU1G8nC4khsKSMDEmuD8MyN9kDEb68BQPfwj5yRs3E7tpbkUMu1V": { + "balance": "1257.181278601", + "bytecode": [], + "datastore": [] + }, + "AU1G8upCZ6tWq5Yc7r2eZHRMPFySq267R6aWAw9LcYsebX1D3wu7": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1G8zyPLwB9T2rfmwE5uxWbzQ4MoWwjkQerq7w5F8SCno3jhsay": { + "balance": "960.587742018", + "bytecode": [], + "datastore": [] + }, + "AU1G9GAaQA1MLsYqy8oXSnBEx3wDjR1wUd13Rj7Eb83VzuicamQf": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GAaKDBpJCYeqyrCPLEehWqLWxC2SsrF7e1JZ1EiwMEscBggB7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GB6Xrik4gb88PkxjkevmrfoTaZgSX2nvRxWuteSqpRuKGpkKT": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1GB81LrTBwYQXWcQghQfnsj85JSst9weJv9YTH1mvunb1BGQGD": { + "balance": "2480.430914994", + "bytecode": [], + "datastore": [] + }, + "AU1GBUaeXaNdggpzUc3geL7of6KNLUxPuDRwDjM1z5sQnhvry6Uo": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1GBWQUYuT9Tepg4Do5cXvycPTDYtDC3gjbY4iBzS6XqWbs8Laj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GC116BWaMvUcXAC8MQ2xYEzCb9ssMpWTVBoXshHPhAonYzNmA": { + "balance": "3579.405327504", + "bytecode": [], + "datastore": [] + }, + "AU1GCdBkkXV6WgAHjNYvoWRRbCvwtb5NcVQofzGpbLB7e7KpdFqH": { + "balance": "584.563482070", + "bytecode": [], + "datastore": [] + }, + "AU1GCoi9cay4kT4YGGyGto4woLP6MzhkNvjQ65UYCZ6LTRLsf56e": { + "balance": "181.897496871", + "bytecode": [], + "datastore": [] + }, + "AU1GDHneEEcCABA4YeKn4xYCwMPBgu89Y1UUQKrrUk1WxmGoXiMj": { + "balance": "1346.526229183", + "bytecode": [], + "datastore": [] + }, + "AU1GDma7JG34uyhgmJvaPA5suMSdkcbQxYjcJCvdos8yFPoet5aG": { + "balance": "1347.580706716", + "bytecode": [], + "datastore": [] + }, + "AU1GDrxm7taooTtP5LV8RMW4RqHE2xRT5pC7VVVAu2VcbErGSUte": { + "balance": "3537.998542693", + "bytecode": [], + "datastore": [] + }, + "AU1GE2GMrvGDqLbBm3aF8AQLVtPGVWaQmipfCeDgT2GioLE3EHPg": { + "balance": "96.114514415", + "bytecode": [], + "datastore": [] + }, + "AU1GENWdhPEqMEytSddFgsDEetuh2rZmtWuWZgAkNbYUzyrkYhwv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GEp5FXPRmPgC42X1oB4Q4q1xtbJacL5u8RxCbJREDDCF4HFq9": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1GEzPbVXEDmMrNQ2MftJFmtH8pJW9Spx4hz1uezn1Cumojg2G9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GFfYmfpJDo4NGYJiL1wVT6N6xwecjbAdBQvNrMLvzgHK1cgdm": { + "balance": "74.912167461", + "bytecode": [], + "datastore": [] + }, + "AU1GFoaoTD4vLKGetcF3wGwCPiLdhkb9LfZNy5yAXEDUgwDLQb6b": { + "balance": "1753.153231406", + "bytecode": [], + "datastore": [] + }, + "AU1GHDXNhBgDxMwAZxTzWrcRup9wUGgYmdhQwoe4q8HFZ3at38Fu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GHDdAqTizx4bwzkmKC3cJT7DmQ53SCqrdTqEyYJwkLwkRpyj9": { + "balance": "3637.332468412", + "bytecode": [], + "datastore": [] + }, + "AU1GHYfaG5EcMF8pwhLgRYBPFDAs23WoxQaAqeCSEkj18vLgeTCd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GHdAwWoATWasp7Xdh4RiHvYQ7uWEzSEBdt1pnXAgReHNyAg6L": { + "balance": "2591.998441603", + "bytecode": [], + "datastore": [] + }, + "AU1GHiJk8PLhi4ykeMjN9hfbiutHpVnryX6WuZ6UN4kXCBJ5k79j": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1GJDrpuWZ8awR4YYMAMZNvXaizbK7cvNvQySapbM8eGr1bniHM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1GK6dKTsri1Pco4avRzYnx3NXpLBaeoCyhihcZQEnJ75K7NHGU": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1GKJK94U26ZaGzdKwzdTot8McoqnRDe6j6aJ1rHxSubNexwpPR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GKJR37wvHHPd3Ny4YhTYS3E1gXrmitB9cAFkqHvgNvugAdjgZ": { + "balance": "4207.119061230", + "bytecode": [], + "datastore": [] + }, + "AU1GKXWQQeX74EWJu9npVd4J7gmK1jUZXXw2YkAnGuzGWjPN7SKA": { + "balance": "229.431816004", + "bytecode": [], + "datastore": [] + }, + "AU1GL5vuAUbjgFtir561Swn38gain8pTLkjiNxpd37Giw88abzN5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GLEhE4F8pTGLjuzb4MSz1wk8sg5D2izvvN9NxgJ2pdfr66ESX": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GM7BjyqtsTVQ4DpYxNsN1TNpDgt6k7RXg1SonjkHV4pRtthWS": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GMBEvYMcuyF4jc1Hf67nya5jarLU2vqHXKYZ632jNBUio1yMD": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1GMnu7aLBrw4FCwaFGCHbp6dERHvQ7Z4jQCzQysrLyphqJfUVJ": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1GMt1vaJXsD9WKYAoA9CU6BAuS7UfBWoopZnTETPs3Rbe1g4hK": { + "balance": "3466.071260744", + "bytecode": [], + "datastore": [] + }, + "AU1GNRouaBADTD22yJqKSU1tpEA81EBxTQby3CCzwsmrwB6kwiqm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GNuVP3ukAsyHuoe9MuPePEvrw1BNDchgVxgx4kSU5sLc3VKm7": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1GPMxQHQ1LP4SG6hdTJtbcvCCbUip9Vh2UrdUXEJGMkDQZdtxq": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1GPQJBZqjdUA35idFAVifC5MpuoBvCEWfDgA4FczsqbEcyxh1e": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1GPsug5282JzDag4AhPGcSZPrYUd1iGYL2HT6fwTNgJGFLBvJc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1GPzUtqUvJWVdJaRfPv8aeno8oSYYXpPqRZhnCRyNyFZiM3Cij": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1GQ1mdDML7MyMnGNitNs8zt3R6kH7zVbHnutpGizeUcCif3Qcu": { + "balance": "1621.210645944", + "bytecode": [], + "datastore": [] + }, + "AU1GQRWaXoAsVMo6GTRmy481tTTNHngcckFxhzHr8KhyMy4GJ5eH": { + "balance": "1098.560438094", + "bytecode": [], + "datastore": [] + }, + "AU1GQVAuJnCBtku422yom4CSSsTnHnpzq5W26ddwUPKE2b9sCYhq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GQVgs1Qo6ZcRBe1vyRuxk9ZEn4zwp15Aj8vZvQhVR1c4AuzRk": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1GQjpsVdaEJH7LkNL6MjU5Lt1j8SNCjpWEMnsH4rc5wLz6JDVX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GRRLRt9bU5zA21pZFM2rAkpwsLjqRMriijRCQC4Fbtc2ceaEP": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1GS1ZMVmW6aT9oPWD73vuQDkcDZHgaQemm81gvk6hSi4TN9nUF": { + "balance": "791.365722085", + "bytecode": [], + "datastore": [] + }, + "AU1GS26S8nc6VP8xRnrNBWaCesKf1gPtjuMCGifanVXkZZ6vQR3z": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1GSDWuWX4jPuVMEewvbCtHDSgfnmHcQCbYe1DScLthoaMsZxSR": { + "balance": "784.149026423", + "bytecode": [], + "datastore": [] + }, + "AU1GSWxZSsJfBQc6b7S5VZ2gaoiq2w7UevGwczuxxEgRfMHNjyTZ": { + "balance": "4063.698882651", + "bytecode": [], + "datastore": [] + }, + "AU1GSmC7o1iqSf8Una5JXt5fNk9gperZP1DZ6CRrsqd9PCNwt1ki": { + "balance": "264.600709906", + "bytecode": [], + "datastore": [] + }, + "AU1GSmY4BYL7spibK9rW262ftMMU5rriTFX9rZP8RYz4H1yuwLf9": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1GTDwZER28p3MMHyuEQVjXmmWshVpfV4oAkYbt7A5uh2oTZnQ4": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1GU6iW4RSdSkMzJmzTXPTDmkmvCnAvMTSkp3ddokAtyjj9hnAo": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1GU7Y9hKwCCgtz7tNiGWUwUErQf7AKrB21iX32ZiUmUfU4tFNm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1GUUBDmpoRLWH9tm4HonahnuFTypRCuunJjqLynmjnvSwUEDzA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GUZ6mX9NBkg6mbuX2TH1udafwv8wKDnAVPmNjtpEPcAiTQ1Cj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GUeSPfxA7JGAU58UndTQsyWehVVeD5g8sKgRdptBq6ZyHg8Uh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1GUopjJTetg4GrEb8GjCoExMEuVgYBcPPES468me2yL2eTPpiZ": { + "balance": "1949.257919441", + "bytecode": [], + "datastore": [] + }, + "AU1GUsqRMBPrpUc5XL5qLgfVxebg2nRw8DS4VRtUuYtb23e5FBwS": { + "balance": "2289.796472658", + "bytecode": [], + "datastore": [] + }, + "AU1GUtRvJ43DUS756c5u7JFrSbqaPJ3LiD88cd4WK8prPDVCfwRF": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1GV5f2VCUMX9pcKTKw3DWyKd8jtCNAksjbp5nEF1SYmRVBJKH6": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GVFFSSJL8pHFVwHRoTaurnNkdnt11TKyym19PuWmcABrVitwb": { + "balance": "1700.605111123", + "bytecode": [], + "datastore": [] + }, + "AU1GVKbxMZ8oNqqdhGzCQwyGL3WRp4cMJEFS9NRosSUU8Wt3gQBh": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1GVRQ4vnEbBUu6hBWfCQJjh6PRDqWVjq19F6W6mDAsrapWsENo": { + "balance": "1025.340133514", + "bytecode": [], + "datastore": [] + }, + "AU1GVjbQ5v9XJ2mo29iT4CBdU7SS9tk4CZTkHDUK4Q36cqSGfxNs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1GVkR9ZmToWLjNnZQyZtSxXa9yFjpZnqYvtgAHZNKzqi2Yejmh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GVuKWdALmeKbx54os4K1A6GBtAioWHtyN9sW12MFsMp7L45AM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GVwzXJ6g2Ptj5MK7jHmr6wSa5mMvSsX9PVLymppzj3ftuojEN": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1GW32Yn2QkPudtM9HYugMYgsL7wWN2vKxzarQx2K1t9ufHhURc": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1GW9zZXNQnSyjj9Ccui6ZuKhjzVR6LDfAMxzmqaNddT87wwnE1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GWNf1dkgXjXJTftCkC8JA3e5u2c5qBVBHwT3NhNdZBAYK7xmq": { + "balance": "2260.110751394", + "bytecode": [], + "datastore": [] + }, + "AU1GWT6WAU9c7sbFydH3L8h1HeitbAoyjmTSnwUgG8DvRJPi6Kh3": { + "balance": "1099.776551534", + "bytecode": [], + "datastore": [] + }, + "AU1GWTqhCULBUtgMamhkJDi4tqn3uh75VGSyuGDAH1GcdifF1yZ3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GWXMMp7qgvRFWWStzZfaeL5hGSFEygn7anL5iAwC364GG5TzD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GWxHgJWWtJBHoWjusVnuEiVAyNd9fAXStFt77nUBHHjXEcHkY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1GWyHS2uDeCmY7HD6PJSRRe3YYpvrrhPhq2eHkYQjswxwvGiAy": { + "balance": "2195.735719978", + "bytecode": [], + "datastore": [] + }, + "AU1GX88nZQUcmBLrKrH9fUuGfir6mHB1qT6q76RWS3EM8jPBW5jj": { + "balance": "1854.096320570", + "bytecode": [], + "datastore": [] + }, + "AU1GXxu6AHofCZvFQdDMbWjR9SNKcgg9BReHoHmuEwFvr7Sm7A5W": { + "balance": "2584.681549036", + "bytecode": [], + "datastore": [] + }, + "AU1GYJWPYaSvE3LqxbSiahzrFYepYsFPHX8hkUBWqkKNJh2C6ixF": { + "balance": "2421.593134929", + "bytecode": [], + "datastore": [] + }, + "AU1GYZjZfgvcBD34o9ffEz2iuQ3bUcgBv2nnym8B9N5g5ZBLvGJX": { + "balance": "988.015367296", + "bytecode": [], + "datastore": [] + }, + "AU1GYpQDb3zhw1ceW3svZ1SB6MaEY49BMjjYLhxVHzPGnhPcB2B7": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1GYvGhccaGkvCaFnSvbxmuqwaQU5XWLSyvzzKRengPy8MXB75q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1GZ1cBDdMPpNbZL3u3tf9vW3CYP17UREDKvSJS2XLnsEVCYDfe": { + "balance": "2364.837971233", + "bytecode": [], + "datastore": [] + }, + "AU1GZLpDuh1YBm2gS2iRxg4Tm2w18VuXY6rwExwHfLNM9ZSw8Z8i": { + "balance": "5037.366815399", + "bytecode": [], + "datastore": [] + }, + "AU1GZbGb27pQiX9UhsSokfUCCMRQRGkFzjxgprfJXzvMsnzLMzxL": { + "balance": "710.325677856", + "bytecode": [], + "datastore": [] + }, + "AU1GZgY4zhoiAgz63osMw7yHcRtj69yfS3UagaQU8zDPZRV5Qp5c": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GZp4NxXPmZ7sZrfibPJDesedzjjBZm2BxcTER5RD67CCmqroc": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1GaAnWcDSWdPF7rGqXBtAWCTeDmaBPcFf3EBPrbpBtfeqcFk75": { + "balance": "2211.041820106", + "bytecode": [], + "datastore": [] + }, + "AU1GaEXSigrQsDYHAKEewMohBVX5eQHbRCEUNb7UDXSfGKyr8knb": { + "balance": "2996.223953233", + "bytecode": [], + "datastore": [] + }, + "AU1GagYucNvCUNWjgjxMKfd1NVTL7a46tfyEbxTsLumzyHks95ix": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Gb1d3GsiQdoUn7PRsH4H9yPdmC6rsVuTgtRLxpngiPjqhhtjS": { + "balance": "1637.577500191", + "bytecode": [], + "datastore": [] + }, + "AU1GbcaEJdxEgT49hpF3e81XwzWTz2EnVtnhhkRQ2Jq5XkQtMwTp": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1GcEBBHaBNKDYkZNr8J7W9wHFPZaQDUAGzxS1w9dYiT4ey5S9x": { + "balance": "1121.892396902", + "bytecode": [], + "datastore": [] + }, + "AU1GcMcmNVj4uMZEEUhqSmw8RC181UBWw5Ueir7MmBiRdGwYUG1U": { + "balance": "3780.081057707", + "bytecode": [], + "datastore": [] + }, + "AU1GcaomrgMukh4C7fmqbssAjiEspEXWTZiG1WWU5BQPUz7DmkzM": { + "balance": "1300.103685386", + "bytecode": [], + "datastore": [] + }, + "AU1GcoHnV7kqKdEiv1mHhR1PyjE2ANfbQRG8ijRYdaNYnGhi3MhE": { + "balance": "7842.841411875", + "bytecode": [], + "datastore": [] + }, + "AU1GcuDZMhuPFDcG9eEErDa64QhPwUhSDh6yVdXGf4U74xZi588R": { + "balance": "209.304314284", + "bytecode": [], + "datastore": [] + }, + "AU1GddgY3Dqt8gqicHHWGdbrRxcQzWhqTTFXk53ySHvhH1Fhm8rT": { + "balance": "94.271862855", + "bytecode": [], + "datastore": [] + }, + "AU1GeGLdLo2Ciac4wHWP6eXsbcY6sFAVVp9YfiYhh1Py9UNwTH15": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GehshzdeXtspo9cqKPQTrTQxebb6BYtzd66p2rawWTr1W6CLc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Genk4AXYdaXoxgMAGR4uEpB4coJ1C3tEUKH6Z5WPK5irDKBT1": { + "balance": "845.000516912", + "bytecode": [], + "datastore": [] + }, + "AU1GfMUWhbJPfm2L2uzWVa2eYn7QFYUZjn4VBzBjGTCs8vEPvoYm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GfQhn59oZKSXw3BgkHe41NMdRZtoEjUeXv8ppu81xgUZQfWiK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GfptjUnHbMEXVA7cvxcPw6iVdCE7kLXJjnAV38kzrJmFcM6JB": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GftTDpKrDdpAMi2aGwJp7RQ2ab1zQj5Dn4TLyVmz4E1apSB61": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1Gg5xRpuUzcckvbxb7ukZNrNhS8T38s9NaHu2TLr85VBQN9nc5": { + "balance": "559.017310042", + "bytecode": [], + "datastore": [] + }, + "AU1Gg7rMtxwAH9JNZNK8wZk7rJwbru1qQiAYsf3QBK92kRxYPDbT": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1GgXKHKCiBp4zmzSUSGCfSzjcLhugd6DUxK8m3zMJSxAu2ZG7z": { + "balance": "2191.563078396", + "bytecode": [], + "datastore": [] + }, + "AU1GgbJzRVYBQtDxciRN9CR9Vn4xa13g2Dqsf9BWDFfyE8WyDGeA": { + "balance": "2369.205632632", + "bytecode": [], + "datastore": [] + }, + "AU1GgbnoKwrFCxXdYyVfhaynR2cxZfVeq34qEdikfbdQ89GVqufB": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1GgyE4GrSSqM3mGphgTKNopxLT515LCxqwxRwQjAeg2r42pgNC": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1GhDf68bGnYADZH4bkwKE5zMHd1oBneRRdgaSSxLKVpYtTYhZ6": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1GhGjipnqHH9uTdaeTRxY1fK55NJXKidgquxM3PNPhT39HDXRP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1GhQyN16wE8XBrkSKTY2KR3n5ZZM2ksLZXdtzeeCXCSDsQme7X": { + "balance": "628.939244158", + "bytecode": [], + "datastore": [] + }, + "AU1GhotYDoFG6HkHrqWWsrivrdfxrhbqGuFcVK5SQX2EoLfJ1keb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GhvKsmmp9TjQzJCPzERYMNCHtoPa9hk7UMygmHT1pkRY9jQY6": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1Gi4QxQP1FHbctABX9Ts9vu4B239T7oHwqu9iQTx7tCx29AwBe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Gi6qwoUgtEHywurpTPqzZsbhQcq2HDhQsmrDYbxagKMfsbjdY": { + "balance": "1353.085010343", + "bytecode": [], + "datastore": [] + }, + "AU1GiLi7JzGeuCqyWCSVrBVC5atG2fsAxX2yRAWav78kL4pLzwj2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GiiuaZ8njNWD1KkNED5Ruo8MBg2cBWSdvZT8cQtaZvz3QBg7v": { + "balance": "3244.177527276", + "bytecode": [], + "datastore": [] + }, + "AU1GjQ6EgVtrQK46mFRzfMVJugNdWfV4cTTwreU1ArxnN1Pz8sL5": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1Gjaf26pkamb2zjUnkCgAHnRnfPGCpoWAEWib9taZ1fHxEafHg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1GjiQAAKX8SSMkT79rQoQLKoJJxoJHY9b39yW58QBX1pHrv7SR": { + "balance": "1621.680441018", + "bytecode": [], + "datastore": [] + }, + "AU1GjxFNYw1h47TXZz1qRwfkVVdPbipDRNWajKdfrLCXZMquBSrZ": { + "balance": "2443.156346423", + "bytecode": [], + "datastore": [] + }, + "AU1Gk1Ks6PjN5ks9SK9hcmwjCZ1fEJbzRqbUnSphZHgEE57E8JTt": { + "balance": "1007.986858902", + "bytecode": [], + "datastore": [] + }, + "AU1Gk4pz4PcY1eLpc95bQRyVDLY1aLRJFehPCz6US1tKnoN9V91G": { + "balance": "5043.873526534", + "bytecode": [], + "datastore": [] + }, + "AU1GkG1YTjt7bTCTVbY4NYMAtkRbiECAVX1JQoV68AxfGHpZpnmK": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1GkJfyD4S9XE83bUuXcEcAb1wC8hW6JFXttqTrq6xeRTGTKnPH": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1GkTFCA6fJKYCLhFCrCe2zUftEAFNdmpwgtMXkaaTwePoJgqWr": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1GkYicEqSsafhtqzVDEoahWwsBN1Vj1cHjxypwuxftjKuTW83g": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GkioMM8HBpVqyrBekUkyCuP8uDK3aAzbkxtvhqpE3B8akE6TF": { + "balance": "1472.344721290", + "bytecode": [], + "datastore": [] + }, + "AU1Gkkin4GQqdJaUYBfNTSdM9KPoVcwY8Wd7R3hLR6v1bQH8zdj6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Gkose4jWaLZXFHYJDq74UNDsKvdBSgsThX13u2fYw94QhoZ85": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1GkwwPte2p8WRjveputc9BC21JHgqMxU66Z48fSnmLMMkrQ1TS": { + "balance": "2365.219786807", + "bytecode": [], + "datastore": [] + }, + "AU1GmDMBZr7W44uTYiLSootnSPvwiJXfwjiM1ckSt8CEv4aydrvg": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1GnHTVPxxkJ3jHFgghRduQsZzfiiKKzoQtft5PYhRuM1LtnmLj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1GnxxDZySc4t4NurczfSN5zE32xWvERtVA7XpF1AjqWRmTuYAZ": { + "balance": "1372.530385977", + "bytecode": [], + "datastore": [] + }, + "AU1Go8GMKtekFd7eSfh5X7uC7bPdKdcPjJzeS4ndeygP2Dpdpgz7": { + "balance": "1047.618082422", + "bytecode": [], + "datastore": [] + }, + "AU1GocQ339Z8WqdbbhoVyRV2bMwGzxymCV9ndyVEsvSnzVuf65on": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1GofeMfyCwFktYaHMUkN9ncr2tZFC11ckM5hABgHrFmHSXeuH3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GotPuVwFBRzEYi2V1aPPmWrtMDje4Dx1HQL5fFkEyg2s8yUPq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GpFutDG3JCDrDNXjMVqcwkKcfMDyUt5iT87N6QF2hguMKyRMu": { + "balance": "4644.129107282", + "bytecode": [], + "datastore": [] + }, + "AU1GpNj8poU8BjvSo4kYyWPVWajT37SKAvXHaBMDZgUWRx4rnbB7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GpZwk9eC25xgBTUE2xJwbhVVXTEGWBCiNAmUEijw66xZXt3H7": { + "balance": "1612.105910195", + "bytecode": [], + "datastore": [] + }, + "AU1Gq3VNDAtsB3w4BHC3Z4TmbfbmedQLSQL8X8ejxJqom2gdsCz6": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1Gq42GuGy3v1iaoz96vMt8HaDh4RF1pPVamqr98WgzLBnFNi7x": { + "balance": "1409.078935733", + "bytecode": [], + "datastore": [] + }, + "AU1GqEvCfEuYUCdeis8Lc8XgXfyBvYm7KarK7QfxQ4AuymeNCefq": { + "balance": "1523.822603441", + "bytecode": [], + "datastore": [] + }, + "AU1GqJq6xSENVBXkuP5UEQqLUz9fv8wrjvp14LzTAXuzEWVsNDBe": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU1GqbuxnJweqLHTnSFXi64pvuAGyKptgmbZbe9KErmWBUrnyz7s": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Gqm81AfQ2NwYan5HfVonJ4ca2jHYtCyc1MXtjQxGrZRKf6uFW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GqnVvxqvBvtD1AJSQkb1NMzbYTZezhULywWcJeEiYcCj95vkV": { + "balance": "3520.559323517", + "bytecode": [], + "datastore": [] + }, + "AU1Gqx7bhdh13jhawgoSLK1zG7YJH6zWPbvU2NzmbKrPDkejVPpc": { + "balance": "1799.852450674", + "bytecode": [], + "datastore": [] + }, + "AU1GrNLF57dfH2FcQUUMWb8QjC5SCQhtzrg8n2RApW9Ay3R9MGoV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1GrSMc4dKTqgqdFVTETLFmssfNRHzgsRPFv6PsMTw7MJE8RfTd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1GrWgtRjQQazdgjp4bnG2Npd8tXmKzfYenPw6ziySez2idFzsz": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1GsJJUoihp3m7T6PpPeKiHggdz38b5NSFA2kA7z1NgS2MJ2edL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1GsLkmfpoBjrcr6NtKNJrtjFBHHd3vp9g6fCVHoYyiD2WK1Xq7": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1GsYudmUCCoBPZfcdvBuBoDy6md3bCqjMoweYHBFh8r4x1mjAL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GsoPYrM1paX4j9omntLMrCNNRfUX6QS3PupHHLzRXRQdXVbhA": { + "balance": "594.057722156", + "bytecode": [], + "datastore": [] + }, + "AU1GszZKteoTNXbZd5pC5sWp3LVv5jjRhtfquwdMpPtD6Bh4ZTtK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1GtNxqijyiKqEhinQmMm5uJzz6Mcyc3Nea1VLBRpQbx6CRXH6b": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1GtzkobJjWUZRq6uUjsbms2ujd6csugvBsXayvTNqLg4RPY5ra": { + "balance": "1779.624376762", + "bytecode": [], + "datastore": [] + }, + "AU1GvNLNz3kLrjbNzTk3b6afd7cafLPsvHENhFwi184bL4xfqEtd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1GvrqRtAv4khwZUD3mVhWH18GDN5t6PqTLAPPpFbMTQbstsfsL": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1GwX76QdFqSe3Cy9m85h9vQhP4aiyy8VvheDv3h1qT5x4TEaU7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Gwa48UMDJG4rsQjx9GFyn8MuWoTHuo1NbViPWgvfEiffd3C2A": { + "balance": "1181.890758744", + "bytecode": [], + "datastore": [] + }, + "AU1GwwBZbkpydikqAoTvXFwtB4R8F3Q7T7K6MTmiQ8U4KSs6cqMt": { + "balance": "1922.150961599", + "bytecode": [], + "datastore": [] + }, + "AU1Gx8Z3cUkY4XTHQPDX7XAQSm3syAJkAxfbWMpTYWdQuq657WwE": { + "balance": "2360.725951876", + "bytecode": [], + "datastore": [] + }, + "AU1GxFPXDQ8rYwcM83fTbnsa4MrFT68etM6UJ5GyW8uXWxuaj2Fo": { + "balance": "1381.034947386", + "bytecode": [], + "datastore": [] + }, + "AU1GxPWgwKFgj5GPp3SFDB1qTN3YptrPp91NK7LkMq7dLTJEck3e": { + "balance": "2401.553877389", + "bytecode": [], + "datastore": [] + }, + "AU1GxesxMEwBLNZ4jPPQY7Cq87c4PknJq1F3MPjxKTBgeZ76MgxZ": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1GxxY8XrxKQaF9AeDxUdhutpkcVZhd2cECSvqfK6UQTiB3btGG": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1Gy7yLeP9jwb5ERYYrGFt7Qo8txmcKr1J6FY67W4zbgfsgEp5N": { + "balance": "2161.298724748", + "bytecode": [], + "datastore": [] + }, + "AU1GyDHCrpKQUB51NsLPoDHPpMSe8wu69nDP2pkUgASE8W4R8URS": { + "balance": "896.073452480", + "bytecode": [], + "datastore": [] + }, + "AU1Gydj1arBb53EyCQu6T8muUrAQ92x2qTP9TeYigkBwEYfh5MPs": { + "balance": "685.793425684", + "bytecode": [], + "datastore": [] + }, + "AU1Gyf1zjX4E6YLudsrHbQrRcc9B3F5PyJYHyvQw79RPji1UFApq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1GzZKcpgSsLjfNgVeAzACU2UetKH6rU7csQvrsbZnEktjBs9Zx": { + "balance": "1707.959838157", + "bytecode": [], + "datastore": [] + }, + "AU1Gzp8cr52ny8C1rV15gqmbG9v4Fed8uS6A2x5y2xjFsWGdLhJo": { + "balance": "2337.655660123", + "bytecode": [], + "datastore": [] + }, + "AU1H1dmGrt81fjPdQjffScZpoJswCGBTRckUWMH9VXZ6B9kEjmip": { + "balance": "3306.950400882", + "bytecode": [], + "datastore": [] + }, + "AU1H1n2U5Q8tXMdqkjU7RjhqYGVy5HRntKpQoPvPvkRX1kCaRUZc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1H1uurXG9fwD58DLmstDdUNZNjPGK4XA5n9f5qiMZQh7x3GzvE": { + "balance": "1699.561521901", + "bytecode": [], + "datastore": [] + }, + "AU1H2PJT23PbmHESWA2g2e9uo1JNGM855XquTgqHmnTCAeAymX7f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1H351DQYgbpydAU3ds8w9te6qnye67zZ2s84ZL9HBDcNfwyEM3": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1H36UJx1yrSs1FyoZ5LNF2VnNPdU8rJJHM3YfLsF1u67tK4Zh5": { + "balance": "1385.314224058", + "bytecode": [], + "datastore": [] + }, + "AU1H3MKgNu59YBBzC1empFSyTepsErEvyAY4BCRkNWtYXQ1bwzWc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1H3X1eFgbExfMb11vdt9foxtnSEmRMVqDw5Nftzvwb8ooo8KmY": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1H4EYTCvjBLGtRgk3saZrZzkFn1G3Ctv7S91LR2Ts38rh61nRK": { + "balance": "1769.932216633", + "bytecode": [], + "datastore": [] + }, + "AU1H55d8j45ULJWGHDnunfowHdPNtz51yBDEAx8fRba41fRfPDww": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1H5LLYa2KP95vTcUaEzNCHiCAoZRNjSu9ZoS3YWeAwNa6YFmQE": { + "balance": "2423.178037720", + "bytecode": [], + "datastore": [] + }, + "AU1H5dHYRgZFBYVfz9x2mrU1uRE4jq12zshkS7vciHCE6GKdQeMc": { + "balance": "3115.512000043", + "bytecode": [], + "datastore": [] + }, + "AU1H5tk26YwLF3q1NqipTihufmcR7exocjvuMKU5fCvnCnckfZPc": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1H6J4n1BzVZpzE9Fxjs89qMmjxHKGSeeago73hNXPbSz5NX27A": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1H6oNn7uVunZwLkXaHUXzkeN4TmBVchV2YjjfjQ7k4695FPzXa": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1H6uZgnvifDNMk3UKteYbe6aSfetfdT6S2d1JuCPB4WoLVED9S": { + "balance": "613.224486842", + "bytecode": [], + "datastore": [] + }, + "AU1H7NhD7SzsoKRUGAtJedFeaZhW311kkiUj4krqh6EfBYvG1Est": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1H7PJGM7w41xBcFrJeC3ANFPmRuvoo1YUzojTo5oUgxJ6VBfGS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1H7rVwLkY1H5za7VwmcMzEWvoYWLYstkKiwuojB7wwAR6iR6b9": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1H7vzygiumbogQ4Wimp6pYnPBMbr4aiWEg9PqCvPgvT2JV6pNh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1H86sHZf98pzfUGVwREt5j5kxSae1yahtLXhCRSLGGva4fL6Mj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1H8GFCU1nBbUoTVSJ6NJeMqVHf8o8tdaXzdbrQcCu8NUMabGSj": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1H8f3RyfgNzHievhzhfGfnN2KMoCS1L3TCK5QZXCiJy3tzpKwq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1H8mPwr3jjVsmdNA13kkFEsdtqnHA4HP79oGBqBCnqa97dKFsH": { + "balance": "1949.833013302", + "bytecode": [], + "datastore": [] + }, + "AU1H8rpf1Wha8zVhtcxuUUHZXshG3PaiQHRDTptjKUKo9djbwa2e": { + "balance": "2883.810220594", + "bytecode": [], + "datastore": [] + }, + "AU1H91RszzZmiPNKxNZKTLnqbW3b73mZGVoUCxhDzLa4y8beoVQb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HAENQheYW2Ah8p8yLRbruYxu1vGEtQYXSNe1EQ8v6bkMJCsVo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HAWx2SKrJVaqasqD4qGKi5fQsdEVbTWwSW44hqoxcBBbFfhuR": { + "balance": "779.523380862", + "bytecode": [], + "datastore": [] + }, + "AU1HBEKUqXfGH8gqfqLcpEBEeULXbsw5TDv6bKwsiC2AUF7JmEGt": { + "balance": "1363.974709432", + "bytecode": [], + "datastore": [] + }, + "AU1HBSxDbCRWHQXmaUSMGFGxPHQ7H6Uu2zLbGz2aBwxyMEHSYWZg": { + "balance": "2249.972740564", + "bytecode": [], + "datastore": [] + }, + "AU1HBYML4vdW8p29K6p1vQ4qTaja9C7SyvmifButZU4ttPGYyAYh": { + "balance": "4677.065105741", + "bytecode": [], + "datastore": [] + }, + "AU1HBtyRKh2kkcCikGk4qtvUWoAGk7MXLiYCt8JYJUYf4LpcgdZe": { + "balance": "1624.475412395", + "bytecode": [], + "datastore": [] + }, + "AU1HC8YvYtdpWaKD1KKFopF69rYHqWLZGdJF6kgWiuk5Go9eE2Lw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HCYg6h3Ki9PGqao85JCEhQL5pyZSV2buR8dUJ7D24mNtdmZjU": { + "balance": "1437.944280002", + "bytecode": [], + "datastore": [] + }, + "AU1HCm5VtxJhu4Wt7eT3Z4r9aZBcpZBC8Yxi53Cf7vWaKgGWKxVH": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1HDKZfhVGqYP972E1EroSHAwmEYYNjATUkF3hffM2ZERF2cXmP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HDUXAbsCCCNhJJp3GcjyxGZySAjWa9niAUrNE7Hcm75zaVxtH": { + "balance": "1667.742418534", + "bytecode": [], + "datastore": [] + }, + "AU1HDoYypWwjVgDanonFLUecgHRVmFaeEhitaqJ9RVShZ6PSz9Wg": { + "balance": "4447.840958300", + "bytecode": [], + "datastore": [] + }, + "AU1HE3eLaf3MCys8v2CKDCdfFsUnY5nAwybkCd94Ej8wjKDBM7Ga": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HEeybRn2t8ituKYa9AH9KsLz8mQCM1MvU6NUHZBnYyCbffrQC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HF48NTMRZCggAeFhqH5YFKybrUg5Eb1u9uWB4PHhgiTFByKHV": { + "balance": "2131.786083875", + "bytecode": [], + "datastore": [] + }, + "AU1HFzzJuA8bYx3VFPtasWkMq8bnPJHYf1a4ZJmVSQc3tgURiCox": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1HG81u8ecuGbpTUHVah82eQyG3jiyCJaN63yyZSg3KKdhqte69": { + "balance": "1549.829120696", + "bytecode": [], + "datastore": [] + }, + "AU1HGPyUTzYVRL9DVNHkVccqhxtGctBwZohTSZ96N4sUtwMnaqYo": { + "balance": "1448.848138040", + "bytecode": [], + "datastore": [] + }, + "AU1HGrdxAxNA9oECGY5F4kmC755xUhvTAgW8yR1PTTuSKesfBbzt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1HGxQPaPHrgGMv7qjUYP4gikvokKyPJ7ckLDYLwaNabLauLj3R": { + "balance": "1501.994091916", + "bytecode": [], + "datastore": [] + }, + "AU1HH8uVqhFBwc81zX763MJUZhif6gVEX6d1yiYZozGGcP1EmvKy": { + "balance": "2308.073418360", + "bytecode": [], + "datastore": [] + }, + "AU1HHZRPFDbsiyJ46jWSrPEvEFNo5QUcs2jQT4BGqSpw3YRSrzkq": { + "balance": "666.466539253", + "bytecode": [], + "datastore": [] + }, + "AU1HJYac5Ne9u9DSKnBqDNtDDiGmZR5za9mnEne7UF3jCdq4fEfo": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1HJs4Qh9wRVR7sddqo4XLk4gPkSYXoNG33F4DEnJsTB7p6Pmnm": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1HKAMQogSdKW2SyXk6yGJv58pm4fHQbTMjTzpakmbY2KgHqyUL": { + "balance": "2450.753916354", + "bytecode": [], + "datastore": [] + }, + "AU1HKbJGa3GPX5zFs63rA475medeRjyvjTtzfM8GnXGDV3NTWncu": { + "balance": "1519.767234960", + "bytecode": [], + "datastore": [] + }, + "AU1HLhpgshsWLE7RMp9cjoPBE8z2gK9R2ULD934nBS7CtBq4wGC8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HLkLXhoZF1KohRqpYAjJUkicC4914tn9iRD9KMMQiVv8bpuUZ": { + "balance": "650.705319600", + "bytecode": [], + "datastore": [] + }, + "AU1HLxQuFNKt1UEFbnrstsjMfijNwZJuNqw6SFbuEuSoQFgdxRuo": { + "balance": "5681.736216461", + "bytecode": [], + "datastore": [] + }, + "AU1HM54qdNhK1E8dqFDhLpqow8jnvsUgGDFRnPjwvgnCEZwCCPyB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HMTEWstKAi2eZG1kJju9KuomSft3kdcfmsBUsprsgnUU4Agux": { + "balance": "1649.775485183", + "bytecode": [], + "datastore": [] + }, + "AU1HMv9BZqn4VHXqoFu48Cf5Kq65i6AvqbXkw8Tfirj1KEmyGXA4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1HN7tFtwRWihRTWoV8EsjwTEaAwa1yC1e45og9Yd76LfhHC7T7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HNDweDrjTe2WeWuBdAJivqM1ZCqisNRMNWR6g9X84fpNV9T7W": { + "balance": "5033.728225559", + "bytecode": [], + "datastore": [] + }, + "AU1HNXS3DaQa7Dvg7XQZfwURjNRZiq9DiPiB9TwGmerDeusRTHDQ": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1HNaDgSuyv6VFHsrbkjR8Bg8q7MkQEXZ3mY98JNZ53gT4Qbo1S": { + "balance": "883.666089081", + "bytecode": [], + "datastore": [] + }, + "AU1HNfn6prBbvWdPYDYLxm56TGEiDfb2w7tQcm5pHdwByovyJpeV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1HNp4Nz6xDygjtoxGs5vw5Fb1WmrGUMyhSxMXJPMAFzVjNZw6V": { + "balance": "1838.716432313", + "bytecode": [], + "datastore": [] + }, + "AU1HNzeb7Yn6UgYoHSSQBpDnGRhmnoLF1rptTUR4FpVVozGCqUgA": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1HPoQfVj6v6srAYWEv6uRVhajSyjm2349nVD5Gn4AeeY32XBRs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HQAtxWaNj8pM7NvsPqqT8eMghQRhVuwJt3dE4hu3QaYXd7HwR": { + "balance": "3019.225603549", + "bytecode": [], + "datastore": [] + }, + "AU1HQBEv4q7EnCuaPBRw9iXySYTD7VBhpZbz1RBGe64KoTfdEMrP": { + "balance": "2722.848999990", + "bytecode": [], + "datastore": [] + }, + "AU1HQJaNxCwRWDSJWzxcq4Fwwfktt7ck7WMHkrw8pwHTEyttm6qu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HQhxkgjBNLMkSUQAARZyboYCn9geNcRW2GBZ1evrCq5h9PsHc": { + "balance": "693.709791555", + "bytecode": [], + "datastore": [] + }, + "AU1HQpAdYMxn4ThPh8Qvt4iFLVVVTGAoSPr18XvHzyNFQcFfHCu5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HQwRU79s4nzoLTyat4ypDMjcV41sZsr3UTHZ1EEP2fr1eBzj2": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1HR2Jcs2LqyupBJQdBiZ6bPYmBmX6h5X9nNyY1WvJSBXRpg5Yd": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1HRWCnWwFCFraCCFBC7tfb2WW2aZNYXXFL7N9ZUYaQPPEjfKez": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1HS4EN61Jk4jtnuEiCMauwp6gdndss8yWv2VcP1YohTMpcHopR": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU1HS6pW9VFNphoP2dFmZCigxTUH8krjDNcqdCxNFdg5QhsLQzYM": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1HSMTTvTbfBTxkLHAMZSxSLWHyFbHjFAMHpgxGxb4Zu4XWaqmg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1HSUexWA1kouFyRZ211Tj8s1ekbfumYbJ4i7mtpDHFgxNDEXnf": { + "balance": "1382.892680067", + "bytecode": [], + "datastore": [] + }, + "AU1HSzfJGpjWYfsRi9PtBV52zCvMmtX4a1KBsUvLZihAcmArboui": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HT8AkTXwwsN4QNZtWRMMfNzfUQSp8BdsX4wyjSAjobebDDjvc": { + "balance": "1461.557404748", + "bytecode": [], + "datastore": [] + }, + "AU1HTdMwcYpooTHz6HB4awirPdTbpKSv4NsJoiHMKKdG73ZK68JX": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1HTtB1o7zmhyaszpkaKkAEUeSGSx58Z8KhwWUcm5w1uRzg9oMe": { + "balance": "2350.617384716", + "bytecode": [], + "datastore": [] + }, + "AU1HTv5JDgqgpwXKUSDfe4m9M9YgP4ZC7XUzXpGi1uA2yQZWkcuL": { + "balance": "3352.677390057", + "bytecode": [], + "datastore": [] + }, + "AU1HTzGJeAw7uNEb4hAiJEV4DxQ3XbR31B3c2NzdCd2LzQmR3Det": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1HU1o4RRYKCb3ae2DS9FEYH8vDV1QG16FVUWpNqUtVScyUaCbU": { + "balance": "1608.612746543", + "bytecode": [], + "datastore": [] + }, + "AU1HUni6cgZZQM5Z2DnxtBBPhf7EfK42qnEs6Wdqy1Fotx3rzaFC": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1HV19vHBZZH9WKbAjEZMbiMNZ1FimPqBw7vDRdewXo9zoumJsi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1HV6BjTMa243YFUR3eg8grZkjmXPFmq7MDTsfzYYmMHvXrRfCR": { + "balance": "1047.952228933", + "bytecode": [], + "datastore": [] + }, + "AU1HVVo9eBAZmdTCebSs96KYz8s8NA3Wqv9UwyrzFTEMCh94WwCS": { + "balance": "2741.265651887", + "bytecode": [], + "datastore": [] + }, + "AU1HVW9pdE4NEWhiN2AmE2KzyxuVokfz84D921WHY8yuJWqvevyo": { + "balance": "4885.402439963", + "bytecode": [], + "datastore": [] + }, + "AU1HVqwNAjWu3S5adyLhEK3Dcyyz4CLdUczkA8NjrhWeQM7Xz2YQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1HVwSwNMfAXVSbKwM71aJYLYmSo3YogLdgtTFhi8aG5HSnZFFz": { + "balance": "1769.401965354", + "bytecode": [], + "datastore": [] + }, + "AU1HW2cTUrbWqcmLM8YgkrgPvxSAmQentUApnrYHWK7KnHGqJ1Ho": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1HWUZCzfGTfhFMiNvUxLMEBA8zS56aEZNEBXbVnVJ7KafwCKFH": { + "balance": "1384.197163829", + "bytecode": [], + "datastore": [] + }, + "AU1HWzdfmcdiiMNZyQpQfiqMYw91QCrKifATmigH6WLYv7roKaZq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HXAjXxw1b7bYocn43u2qUGPdGL2SHVe1P39sWb1xrkfGZxT1A": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HXDT9SRixWYS1oXAhmopfKnzhBjZSGY7WEyaNWc5rJkxoZ1mN": { + "balance": "3205.752702524", + "bytecode": [], + "datastore": [] + }, + "AU1HXJLc2xhRi9FtjduV1KkVoWQAYgKWwSMcr8qtxbMksBKyXv2d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HXqGvMwJuschn2yDL6ehL8DzDE332ghY9osBHVTYa74DshsY5": { + "balance": "1235.606836903", + "bytecode": [], + "datastore": [] + }, + "AU1HXqUVJNKq5W7SstirKcoy2EshhhQKrzC6qKqWynYivcNgXucx": { + "balance": "284.892517897", + "bytecode": [], + "datastore": [] + }, + "AU1HXvctiytne3G5mQN3P3w2hRAuLgmvjVeojJXbQ5uCdAxPxkmY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1HYeGR3FSFgQcosTxySPvme1v223hcMt5aH4DwGd31Mr81CHm1": { + "balance": "2299.003950814", + "bytecode": [], + "datastore": [] + }, + "AU1HYeJ7f3Hm1TLNE2HZBp2rQhSwu4KxWxDXhCBQCenfua94i62o": { + "balance": "1394.151287364", + "bytecode": [], + "datastore": [] + }, + "AU1HZ3BBgT3eHZQW6zzqr8Udps92t4Nde7sNPTAhtBJDWppEM7iy": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1HZ3N5ri1UfYD1QLBLVK5QtsgFfhKp2TatExYq9Wm2aCBnRsKF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1HZSpHfrGXqd4xZPEqL5w6iFJSPxjhZwK8ddBRbRks4ndMGqnN": { + "balance": "6986.415162493", + "bytecode": [], + "datastore": [] + }, + "AU1HZU62SydGr6H9sBvNcdDpUpJc7eUBgMX9jEdLQwWnw3e2W4EF": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1HZp9MqC7CCQMDumgMMzaKu4eGxo5u2dPgrdzW8MY97Gh3d7VN": { + "balance": "33.552397277", + "bytecode": [], + "datastore": [] + }, + "AU1Ha5vQwEFEFULxRw5bJEREMEfaXFHtkxcdfcEMTpF5qYmV8tzY": { + "balance": "4809.772137523", + "bytecode": [], + "datastore": [] + }, + "AU1HaBrHqUqqxDBBkUGgjYdMJVPC42H9SMg6tUGVXvE87JhDhcs9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1HahWCo5rWqpeqCoeaEwrwMQwv8Hsxic3KdyceEcW33iUHQ4ja": { + "balance": "2645.888206778", + "bytecode": [], + "datastore": [] + }, + "AU1HaotVuoZ7Zsox8mHfx4n445dEDiStpjbb6VPmbbgzce63A5Pp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HazodVTX4jgpjAuPi377TVKtpZKghsb5ScRLsoaCbaYNDuSXJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HbLgXAUgkA7Umg2YiBibjJra8Nv6KmJzJKCU55pypQAGN4wLR": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1HbNddVLUC6mWFiu8ao7YXwbcsqMZi4rYFTbasHq2wTheY2tkC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HbNskETZSvhsyPFfP1Lqo6uKNjdt2fnS8eUhyx3N71xLsXd1o": { + "balance": "263.549904384", + "bytecode": [], + "datastore": [] + }, + "AU1HbS4LDnKhgVXA6Vp2Ayf5XHbJ3xmyy9MxSYSCxG6vs1BUXMBJ": { + "balance": "1921.846977405", + "bytecode": [], + "datastore": [] + }, + "AU1HbSKBtDQBnnfsQRyMykEXMypLYGPbA8pfkTJWXs1oF4svbg67": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HbTMfoVf7nScQcDw9WVLz5qjNTjtk45wBJeT1V8zuXVSG2PEW": { + "balance": "1326.051950996", + "bytecode": [], + "datastore": [] + }, + "AU1HbWFdhyiLFrQpMmdB2dMqCuMXyn6UaAQY4W2cXb7vTeX23GWD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1Hc6iwxJgjMYbvqEtWJuQF7s5HGc5rvJQpDvmCByGX5pP5BSYB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HcMCSMx1M438sJC2GY2pXdp6ZeWS5p5Yx2Th9iduqSVHbFUy6": { + "balance": "3299.596658505", + "bytecode": [], + "datastore": [] + }, + "AU1HcPhtdU4Jj94pxerACofVFrKb9CVvgB43Qp48KJPo6r8QbdwX": { + "balance": "1804.152075951", + "bytecode": [], + "datastore": [] + }, + "AU1Hcag4N4bMMgZifd1t5i79TH2jK6MePfZDZxY5hdMNZ2fVTy92": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1Hd4CCPaPQLtyyBP8j6zsKA26WKgLVaw824KXYFBHNth5r2eeM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HdMviDmqQokvvwwV8BfibjQNvKGVRiW91um8tcQNDWrMB14q9": { + "balance": "1208.761394129", + "bytecode": [], + "datastore": [] + }, + "AU1HdxW4DE84SxEGUcQRvgTinjbY3WrmpD2zn6EAM7KHoFsJS2Wc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1He2wT9XrhEiqYr58wahQ2wtwKu3ce2MrW6GeKMycBtHp3h5wP": { + "balance": "866.193311925", + "bytecode": [], + "datastore": [] + }, + "AU1HeXeFmJMataak7coEBuUCVDpBfeSjXN5jzoAJvLEExsD7W6jx": { + "balance": "2912.374532428", + "bytecode": [], + "datastore": [] + }, + "AU1Hebd6hyVhEn7eTkj2DkvK6421EU9Ri49HJCnEmuHkWaHd33WM": { + "balance": "2991.813553544", + "bytecode": [], + "datastore": [] + }, + "AU1HecS8kubokphyYHZ1XXM8czAgK14uWiTS6zMr47tBUL9KptZK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HeqenrKpXud4Z6eSnYgTJF4ps4FNTPY4kbm4JiLPCuF11Z1ur": { + "balance": "4441.230349843", + "bytecode": [], + "datastore": [] + }, + "AU1HfGLDDoctJgZFVGcfDWVJMCXZTqPSof5hvJjxRAGuq3ApsV46": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HfLmB5gRoecjtHd7sANPaRED9A5vKRwB2Zkt33AqqxMJmXTdE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HfMaFwXveJ7f51NRt5etBeTRLWt9chhV69S4x1wAEPBcb2bBZ": { + "balance": "3525.741549565", + "bytecode": [], + "datastore": [] + }, + "AU1HftXGeK9eyP7sfXYWjCmCNxyyff8XTG59P6JtJAZhimDKFnSD": { + "balance": "2960.922134159", + "bytecode": [], + "datastore": [] + }, + "AU1Hg22fargGT6zZ8Uuy7mFo4Buhw32NaHbaX4ttz259TEGkYi9c": { + "balance": "5855.555529381", + "bytecode": [], + "datastore": [] + }, + "AU1HgaLZDsWbkuCzDuaoxsdvtjN1i5fPYDLhZyDgQDaGUKF8VZAs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HggTQm7VPUuAfErRinqEWUNijcE87fCLNTjZaN3D3vFyFNnYP": { + "balance": "2034.524520664", + "bytecode": [], + "datastore": [] + }, + "AU1HgwoEptSruM1Qx92mkZWXgEkZHgQdNcifZbPGtPyjMW8iPU4E": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1HhApF5wkjwyyF3vduQ7SgETrCbXS7R4Lnr2edDoyQqDjVXmYH": { + "balance": "5364.282428698", + "bytecode": [], + "datastore": [] + }, + "AU1HhHKnBCFKasb6Kcfj3AmRNJqdiDU1d26zTtCo9moWankgteYD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HhV9RpMeoNDpTLvjN6JM4iHX735jWUud4vRP1TpRCVDwzSmAL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HhhH58nBWQnsoTJE7HttuKmQrC1zRv1X2fkctZ2peofy79KPT": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1Hj89tGXxec8AJ1RCXWarb1tEMETVvMWVsd98Jx8B2nj1B3uke": { + "balance": "913.806753560", + "bytecode": [], + "datastore": [] + }, + "AU1HjD1hR9pRPcVQcu3hGajCamUYmeTVKCV1Nt5LBTz9mgJJvcZz": { + "balance": "660.383495582", + "bytecode": [], + "datastore": [] + }, + "AU1HjaZmMjJbiiYno7uLN6xyNWjXNJsn93abrgtwNxGQJ1UXj2cz": { + "balance": "1760.347972567", + "bytecode": [], + "datastore": [] + }, + "AU1Hjh3VKMGCZWSRpE6MncWG4HLMuNuJhGK3F1199bjB9hxyhfd1": { + "balance": "3237.148763848", + "bytecode": [], + "datastore": [] + }, + "AU1HjzSAvVVnUhcmMHU5ifLPNkMPdodAzrSQHEqNZ42zqJp6qhwy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Hk36GfeZmQS9ajtQzsrtDTQsTa3Zi2FPmejAWEwk4WqVGf4ZT": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Hk9X7oJhpteXMfduVmw7EKBCEdrjHFiejVf3ZmEYdUXhLBQ8P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HkUgHJodY9REoVt9ZSYkNwwrjtXTp58kuPijKLj27yxaCaoqd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HkWEURF9qb7CgKR4zEjDPEc3YFCE455PMp8XfNx4ajAssrsuW": { + "balance": "1596.915999323", + "bytecode": [], + "datastore": [] + }, + "AU1HmD9m67KX4tKT1qogJHJVayViXPLzeFTTqkCT2XXvERSweWin": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1HmNZEfK11ekMrSMS5i7p4ucoEMBFHTTmmU7WsWNBYkHyMgSe4": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1HmcGuvcvdCYvj82KYoCww7f3xYT3PVaNavzBDrdDZSsuDk2jK": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1HmcjREhD3yXGYBAcavHub9RXjNzKS7JZAhgmdryR5wLvzr1Vy": { + "balance": "3935.211920365", + "bytecode": [], + "datastore": [] + }, + "AU1Hmh8AFgzMGeB7EZYPpYfJqAMwfuzBgjh8AphUHDgNuZBZiVNm": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Hn5YjCZ29eXQ9ndYWTMP4FmaNy9UhQNg4AgTRLVenBLy8BZdF": { + "balance": "2513.634567877", + "bytecode": [], + "datastore": [] + }, + "AU1HnFpk7VPZvSx3UkXEqLA4kgam37aTN8kWxttCsGk4D9hCYHu3": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1HnWx4dYZCgixqnQZHRczYNpTYCK4vWfmAt96aJ52gHcSpwTJ4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HngLiNh3ZWyFLVuvhnmFjMNUsFNqiMFRhsmQEVKqbWP3V91se": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1HoMiqu7fcEUFjAorajUfkv4GtTsM9AcFWJUDGxQGQtatmiL3w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HoYkgGK3XgnoUk3uTKhFGawuJnj3UpNoEeNpm9vNmezbgs1b3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1HokmN4ZrcfumSAQHpL79zV2EEDuNaAga3nqtqkYyZy3g7UBJD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1HpF4r7dKmjtmR9oX6ZV2EycMc6tU4GHnX31Ld6ZdUmHbAN3DF": { + "balance": "1287.743247327", + "bytecode": [], + "datastore": [] + }, + "AU1Hpqfq4ik99u1Fatynhbm5cJ7FP45SPpZEMBwTpHawUQ17VeHx": { + "balance": "1614.897352099", + "bytecode": [], + "datastore": [] + }, + "AU1Hpqndi91tHcRfEHMMM9tiVfCo34ajqxxJvRMnS1U42xjyYsky": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Hq1EcfYhnvm5fwh5UL5XAuB1itpysnC1VFNYekt2VLFUNDXT7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HqYRWLDiKf4rjf97EiWd2SuHGf6gVPYpAdRS4F6FPonUXULfq": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1HqZ63Re3T8yJ5aBvjUR6qEzXpyEPqafPkTnKJux9734GP3GQ9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1HqdWfMHNbmybBnDcKWzoJG7tXWHScuvqs9UsoXUuCcWRTkTbj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HqiKF5x78UbJ4QbeFxMQA7bWbhXNeZFzygDYSCUCkWTAvehZD": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1HrPMZZncx9yuwm4hxc259mgQqq2he7E4Zhwvnwq2i1Uxo4uV5": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1HrQs47Ddg12jMo7ZeT6FGvZCsDLrptQkLCxHJBwCnQn8a1cu5": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1HsHABSFVWuiq6prV64otNWch9hJZ5NrFKDfMmkW4ax6qrbJCR": { + "balance": "1390.453008736", + "bytecode": [], + "datastore": [] + }, + "AU1HtM1UGk1vjASeuxRJdyNc4C5QYWULMpGVaerYNKWCTeLXoiq2": { + "balance": "917.855467631", + "bytecode": [], + "datastore": [] + }, + "AU1HtpkhffJt2SWEE2kqzE4cwH19xrMmhzAGJCitHa5Ljdp18xtM": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1HuCE1rJfLyHK49uuEUUcMT2FVbJ4pZE1H2fuWBzpzRniFV3eQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1HurNrwP4LG5FiRBGY4iFg9qXT2PCvPJ4wsA5PRpmoV4h51KPY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HusAMYEaWMMsfREGDqaRJzRs5ngR8utxndXSYRpSZBvcdfHKE": { + "balance": "670.322289003", + "bytecode": [], + "datastore": [] + }, + "AU1HuvkVJw78HLXyTd5HqERFxfV1oTfABUdmyRpUosFEajvmj9hd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HvdMzLtLxQKb2N6Bm2bvetn6YQ4Cn4Ha4nxRYJfVFbpLZsG11": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Hvge2tCsER68HnqZ2BgKYQpppzxr3xJjwjGVSgbbX1ttraJTb": { + "balance": "1799.708524425", + "bytecode": [], + "datastore": [] + }, + "AU1Hw7Dm1nBf9LCcvCGr4BuJ21N1AJA8jkf5Wth68j1pKbcPfDBg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1HwCTW8nXJ3VS6YhP4WHpq7qRZgUs3FyFkDXsn7Joud4QQEqx2": { + "balance": "2498.931250316", + "bytecode": [], + "datastore": [] + }, + "AU1HwEbNi5EnyAep8iyKQkCqD4ddYzpkuchW3EL2fyf4Z6H4MwUN": { + "balance": "869.445883360", + "bytecode": [], + "datastore": [] + }, + "AU1Hwt1j12hXRMaRSDubzuWYds9HKjXWoyAXjChMz3GtDt28wud5": { + "balance": "1067.752937914", + "bytecode": [], + "datastore": [] + }, + "AU1HxBvvEHW5ySUzsNst6Ds8AEbZRUYGnBobQCNW9KbDh456kTst": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1HxqtMG9Q3wYjoL8WoeEEKgCCp6Tq1bUqLAtYaA6MtFMbrU2mt": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Hy4y2XrB8hdw76taSjnMzx1hH9RWHVJVRJr1tkW3TnBtxAZh5": { + "balance": "1013.259406812", + "bytecode": [], + "datastore": [] + }, + "AU1HyAC2PEsH2xk5JEuUXebHSTs6EZnxQAxvQA5H6Yj1FH1v2FbX": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1HyKqKCce1BC6LK9XvZex7f5ZQemL7NjcvDRuj3ewvBWmP3bNQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1HyTdfxV1QEi8gs1AiDyr44aAEGYfdazJPavdwm4U19mC8cXXB": { + "balance": "1116.236369438", + "bytecode": [], + "datastore": [] + }, + "AU1Hygi9kT48v3pupy36UUyW9SmCFa3WNVc4WPFeUcWJ6mTYwExk": { + "balance": "5985.564490853", + "bytecode": [], + "datastore": [] + }, + "AU1Hz8wy6Xsg7ZzoRRjBLX24pGhrDUGuYg5Lssw1DBLUVLNBbvmG": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1HzkAfgt9CUVyD788AQe3iSoLs3CULNmSrgNaHVSJGhXrHJu4C": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1J19ipUVehowJyhRa9nKsm99ZHFsxy3TL4RrU2JpVX9256dQ9B": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1J1QzqqXfAKESdFUEDx7y4P9gwpx3MQWGR36XKCxZRzKfQ8Swc": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1J1UQsTjpLL77XNHFcpf2XrobwbFs39nPkD44JBsYSku2ED8A4": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1J1sK4zmxBbirMKg2Qyy24VMAgF5fYE13ZJDrYcxugPChWCK5z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1J22ckjDTzGPRYJuyu1v7EBiCgwGfTiQzmbnPFrRyN5sXMfU3B": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1J2ZcfoBuKahbrneiDzSapyY2wambG1rrq6xAKJKNaecsDRJHg": { + "balance": "1143.958875934", + "bytecode": [], + "datastore": [] + }, + "AU1J2qAeVQ1u1jfguMY7ao5wWKT19g7Lcr6MDZgyBmKx8VWNGzif": { + "balance": "571.921755177", + "bytecode": [], + "datastore": [] + }, + "AU1J3QUMvcydy1AXjoEJ1LCDcnEtEyV4Dx69bekaZbrpWM17fJ6k": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1J3XyNTGb5JeYJvMgZ6q5ebKRzfafdtunMeuYb7wHQLeGpN31J": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1J3aYjmdKbZ7nyrQfUDKVxvPFPZdMpSuJMznSQthfuPQWZzdLD": { + "balance": "1832.165664470", + "bytecode": [], + "datastore": [] + }, + "AU1J3w5yjmMGP6LzmFd5tcdSfn5zR3YpqgmCNEsEsn9yxv1pvjhs": { + "balance": "810.442604361", + "bytecode": [], + "datastore": [] + }, + "AU1J4Z2mTNJxu6wqJV1pSt4tqbofaTi5G27KDC9fEwo7pZZwss5M": { + "balance": "1380.181126647", + "bytecode": [], + "datastore": [] + }, + "AU1J4bmJdKxQd92edsEm3t4JQXDvKndwUYi8PR3wGgZ6UxWGjDJ2": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1J4m64DxEkSjMgw6cg2xN7nA7D4Ex9z7QZMXniQ12v3J9DP2ju": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1J5KGk6n4NnMFZA7Ky7MrXtAKm6RdhhL1QxMf335muFdjcQ8yW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1J5W5T7pj3uwnwmw2zbzNPhStwMiRwo3Kr8fWoYe4ybnPnvZso": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1J5WzAK8RZCBCBW8RGYyS3VvPV5XJf8vRhnBYXT9zLZSwApjJS": { + "balance": "3784.547192093", + "bytecode": [], + "datastore": [] + }, + "AU1J5xRbEvwfq77n6JaJw99nNQ1DWFnV2CUoCkRHJ5uv1QKxAn8G": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1J64MJwRMcPFQuC2ESXz3NMttX1SFvVMS2RxDKbHa8ru8ZfKg9": { + "balance": "1468.580523569", + "bytecode": [], + "datastore": [] + }, + "AU1J6ZfkVi3q19wbbDFfuyRRqZ188rPV33bKdzS59zN7gPEhKzW7": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1J6cPDLun4t6Si83B4sXZ4thhMMq3pxBkj2F1RVJGJ8kAt9YBq": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1J6cR8oA4ZYdbchfrCgvub5g2BPp1epPo7tRkKsCboUsoKwVxx": { + "balance": "604.844394362", + "bytecode": [], + "datastore": [] + }, + "AU1J6gvLAq9MgPYmfYftikWmWdxgyhEzNaX21tPBhBk9qj4PBwpZ": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1J6v2LeTF2Br9vcWHPsFAYhRxNCXADVdtj2iH2xCrta8XCm5Lt": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU1J7DzhvYZA31Fn17aHUf1RviKAjgkvwJq6Dz6SJs8ECaHW1qmu": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1J7L4wCpxuPTzaPVfhyDwgCGjL3EBY5sgrDaRKV1i9uG4EqvcG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1J7Q3aJEZKtXapGoZgEkXC6paAZmbLgp7EQcGUxHBNcKM12jqD": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1J7VoA5fehNzUK1NV6ciE9HPXxfu6v3c1BdfGKzbcZAE5gxJG3": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1J7naF32BLfKyJPrmwtMHxW3q9itmyqnxaRamypzwTuvLhahpk": { + "balance": "1717.265957810", + "bytecode": [], + "datastore": [] + }, + "AU1J7wTXjswgqAfGK6XYKzG1VJyz3uy6hnxBJdgoTW7Nb4qkj3bT": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1J83EwrwC8Lq4M8duBvSPSuzYxzAS6AhWdbFXFVzhFZE7X8HwX": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1J8NGbx1b243nKtV1hnYCezMPmHauEfrJinuLGEPgmrXzTdZtN": { + "balance": "1666.643087802", + "bytecode": [], + "datastore": [] + }, + "AU1J8QYeiPqrD3nWtWUHGh8RxPsAdinmZy35Rp5B27MsPbsEEyLc": { + "balance": "2476.602740094", + "bytecode": [], + "datastore": [] + }, + "AU1J8qvH4LZfV2hL8Y9ZG4wRymEWwTLj4mziqv155iwdKcPxhFKd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1J987HfKzBoYmE8f7jXbmE5adyQgQjQxDCHibHfL3zQFbznTDf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1J9Qfzarm2bJyihrHcPooLiihgdsFMPj1khenvHEhrBrMP1hS6": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1J9jjcWK45HpsfWERKqbWYxDdYBVyGqGa77q85Xnp2Hs8oRoPe": { + "balance": "773.075848084", + "bytecode": [], + "datastore": [] + }, + "AU1J9uvp528KqbuRPocwvdht5ZKZsPf51a4AusUC7KQVGoUKoes5": { + "balance": "2758.985961085", + "bytecode": [], + "datastore": [] + }, + "AU1JAKNw9Gst7uxc2R3CyiK8YciYuqEJEfLGqcpMXvnKbLyPDA22": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JANRmuBs5JZQWTRoGvBWo6wmYDmSgVuEgZ1yqk1mjz5w78Su7": { + "balance": "3510.086103102", + "bytecode": [], + "datastore": [] + }, + "AU1JAR1VeTJ1hojCJN69JzaHZ59E7LXPMKvAAXoG4Lsjrs9toG63": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1JASyA95PdhYnSrp5GSgw11kj323qtcKqiNc6dHXqJggJMoCcq": { + "balance": "5105.625331230", + "bytecode": [], + "datastore": [] + }, + "AU1JAUdSyEshd26ku2uZUVpCjg8rT6DtHsGqGVdFLXWR2E8tFU3K": { + "balance": "4235.686129641", + "bytecode": [], + "datastore": [] + }, + "AU1JAYq1Qbmh1Hv9R9Y9AMuMBGChfHPXJ5nWipmgRUkX69jNa18h": { + "balance": "1071.271219575", + "bytecode": [], + "datastore": [] + }, + "AU1JAgzJGYbTKMQY9yy1crARHck2SHwsaTWAPD8SYcMSUJGueDuU": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1JAiWPUmxc99NBdrVQxwvE8Qv46dhUbkyh7tRJ2e9LBobDtSLe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JArDRYyxfYRoGPoyVrtGk7Mg4Ry4b2iGhoEdayKejvhx7fC3m": { + "balance": "2261.663751047", + "bytecode": [], + "datastore": [] + }, + "AU1JB4AzMYaBTot9qaiMEDXetUXCJyXLj1qnBALRKGE8sgQwhkkh": { + "balance": "694.455866110", + "bytecode": [], + "datastore": [] + }, + "AU1JBKzV3KdnLWKabRYNVw1UsmrVAvWMXBnpJkULdopWKp3HkstU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JBQvjAsxwhVLEv7E6nMy24qhM2SwBXx7U6qZL5us3HX34RkWE": { + "balance": "552.002842114", + "bytecode": [], + "datastore": [] + }, + "AU1JC67eemzbU18wJexdnEMfAMaErfP5zyPoSYUQPXia6kxLWSL8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JCWfedTnxazijeLD1pQXKjCEwpxzH7i2yhja9LUsLz9xWY1Hc": { + "balance": "6340.416626635", + "bytecode": [], + "datastore": [] + }, + "AU1JCdmH8eZmZ1EipkfLmVhuBqu8uKJbpXNMJPJDKQR2Ck6GNb85": { + "balance": "142.947331474", + "bytecode": [], + "datastore": [] + }, + "AU1JDbdzwrDyVWRyB4pA7YZXti7Dy7cftXzQujG4Bxm1GmMnroZk": { + "balance": "2694.957276090", + "bytecode": [], + "datastore": [] + }, + "AU1JDe7KKjr59m8figp5Ycm1yvSLBHmgegnBQVmgnLCBEHDv9oMC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1JDtoDXYJZZsEYW2J4w1vo7yhGHF6mkMp2UTJd9UyfNkgpP5SU": { + "balance": "828.037005448", + "bytecode": [], + "datastore": [] + }, + "AU1JEBjorVs5KDPxaKHn3r3SGR8n8A4qRPua8Zg4tqKiq7SptLt8": { + "balance": "559.456516578", + "bytecode": [], + "datastore": [] + }, + "AU1JEgxfko8Ry2AnydGrubiByoqxZU4e1w4ptQh7TEFnvXjCcQ1Y": { + "balance": "2726.883816183", + "bytecode": [], + "datastore": [] + }, + "AU1JEx12CoasF61ajCsRKdSj7Edn3rQWerJh8QrmoUqpZnxLbbjC": { + "balance": "2379.944747963", + "bytecode": [], + "datastore": [] + }, + "AU1JEx6zywJJsnyVtS7RxuWACEwhpMFuTe7hthsmdGuWq3noUyqQ": { + "balance": "2244.010493044", + "bytecode": [], + "datastore": [] + }, + "AU1JF3S8vyfaMdVsRDEstTXKeW8gdST3VfoTk6NWhgEGq4tHKTVv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JF7NLHJTqSs6Q6Xos9TdB6YBg8rSUV1WyDs8STgbWgkm73Gvo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JF9AFAtZkoGVwb5Yqdu1bCW3NXuPLwhceS5fnoyqeQ5noFQp4": { + "balance": "2407.551403043", + "bytecode": [], + "datastore": [] + }, + "AU1JFuzQucduLuWZ5TBfR1zRzxTR3pzdwEoZ6jAwW2S3m5gVYHbF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JGHY9ZoCVKS8PWLtjameSMNBLof1fuNvDPrkx8UPdCdewdtEN": { + "balance": "776.036751635", + "bytecode": [], + "datastore": [] + }, + "AU1JGQhJcgaX264B72UTrREU2EcwMfNsVdmy2zsE8uWBPz6i3kfU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JGS2dWzjUJgh6MKWQimRAwnCWurXTCQ1H9E4RairnBdNaPFE1": { + "balance": "820.927594760", + "bytecode": [], + "datastore": [] + }, + "AU1JHGXhXhJnp4qGEWrsA41YcjSZu8RoCZoBGgrSoCRWv8XBM8ai": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JHYt3WrjA29jhCBhoyeuy2v6a89ZTQUPpNv9kYSY4sibSmaso": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1JHyoM1rPoX6MJzfFKrRBsoeGoDuY4r6Ha9S9x75hsBTLrrXuH": { + "balance": "1608.982462767", + "bytecode": [], + "datastore": [] + }, + "AU1JJLCTfmMbxLUe2RsxX9TCBCu3S7b94L4iwF7cooUUozmVVzoz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1JKEPA4cfcPs1Tf5W1Gx6G699t71B7sNwDmX1utU2GGiQYyChr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1JKcKtV3Z43KUgzA6Vf7Cdu8gQoSq5T9cJzTQnk7TsgfRdU4L2": { + "balance": "1583.536917284", + "bytecode": [], + "datastore": [] + }, + "AU1JKvJ6igJEsiZFY7T8Mqsh7gZpiX5YMfkCsaEPJa3EPZqibyPV": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1JLZjj3g1FHNzHPya25PsVuTpkL4ou38MHrAoQM2QPDjJrRhPF": { + "balance": "736.871524540", + "bytecode": [], + "datastore": [] + }, + "AU1JLak4xZCV2huhsPJC2LmsKp6E5qPh2ZqzxhZNXsdEhhmwANze": { + "balance": "2919.580796296", + "bytecode": [], + "datastore": [] + }, + "AU1JLyAuQPwn3SvBtxpbgrsAGp9NRZmZBfHcQbwHfWu5ia7rsrnq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JMJH5TSkCLHfdBDodpEb8xYjmbhFxWaUm3ZsvgoAXurwTay8p": { + "balance": "1749.312563241", + "bytecode": [], + "datastore": [] + }, + "AU1JMPHg6sFkMB5TGwWr76g4s8HF1R61TMMz7ouqKxtEXQBdLetd": { + "balance": "555.405641376", + "bytecode": [], + "datastore": [] + }, + "AU1JMtvV6GWESidWqqGKG21GFu5bn4n2kyV53pQ7vvCXPN9QMeaD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JN28X66S99V74Y9aAUWywjoZ1QhkXQWN2uqTRAscU9WhqpXZh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JNBYA28oiq3nhibTavCNpJWr7RjeHa7CyeYJRb3FBfyp22mDo": { + "balance": "803.987871283", + "bytecode": [], + "datastore": [] + }, + "AU1JNDhJAV144mv7V2n9xZ6Ej2nJ8MXHdX9mNDA9m9C63RLbU5E7": { + "balance": "1124.295598022", + "bytecode": [], + "datastore": [] + }, + "AU1JNxEzshyzYREd9GG1D39WGmVyKBwvBAwdrYv94wNj7hrQuDao": { + "balance": "788.761010272", + "bytecode": [], + "datastore": [] + }, + "AU1JP7AzYqHYT72tXAUNthWjTFwafT252YeRqxD83wYJrcnDq8rw": { + "balance": "4261.931096291", + "bytecode": [], + "datastore": [] + }, + "AU1JPbCLtrw8EQdX4h3KjhWCaC48DLRLN9xianHpHwBraHhmvTje": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1JPgN5JafrqgdTSPRuJGD33LhKP3RvQYZApUpi9zFx8c9vvr4E": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1JPhTazcXsS3qAc7X3MVVXxCtE2X1jPkNwVnqGr7FVyctyeqXB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JPpFcouRVphpdR9dJsZZWNyk94cu8c6wqEhQY7RVbwMShwgSg": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1JQspzEWpesh8FtZT5dkmYMePP5RaDEbBAoULM2Veod2NDVQaJ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1JRGxGgapaSs7YKpFKMV541gSCoMNCSaHpHtBhWJHYdWU5KPkp": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1JRjfPuC2YYQjyk8vzPkd9nd5i4zjeooePSmaf7PwFQ2c8BVpz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JRxgqzMvq4u39Bjxdr57Dk1fHZEAM8YDAZmhYVhZMRg3bC6S6": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU1JRy1Av2xhjocXRRbTgEPUSTnsYXt5FBRqogdsD5Y7Konrbj9V": { + "balance": "1282.365687246", + "bytecode": [], + "datastore": [] + }, + "AU1JS1mH1hKuTqPuQFJ3C5PdC8szUy8G9BACBSAL6Ru8Q1uz26qQ": { + "balance": "1095.024216028", + "bytecode": [], + "datastore": [] + }, + "AU1JSHLJaVuQw8tCytK8Syqzz86Vo1QFck3bozyoaoBqgwPbRaFh": { + "balance": "1043.637644582", + "bytecode": [], + "datastore": [] + }, + "AU1JSRPpDMyA48iFsPEt94e8FnFSpqsZ4vUZzuka2HHhJt3Zd3kR": { + "balance": "7560.231023102", + "bytecode": [], + "datastore": [] + }, + "AU1JTmo5S95AhVaf2513Ko9xN4XLhRQb1cr6QijyuGyF8mhLYmhq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JTqFfscpeq9qQdjXrn6hj23g5nJuCm4eonLBEywvayMTy44Lq": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1JUaCK8fXMzSv9PMPegoi438nFzvA1YzuaMmFuVgpoJ6CbbPYS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JUfdEJPj16s7DzW55VCt5kwnyuPf1Sy41pGgxzwBmYEBPDq49": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1JV3h5RbAivkenhrj4Bdg2ttDhd5Cv55pMHrsn414vFuEhBrAo": { + "balance": "1186.097472029", + "bytecode": [], + "datastore": [] + }, + "AU1JV9whRrauAQG4rBFPLq1u52C6CbTaAXMdmRAt7QXsAYiYGgTd": { + "balance": "4049.782566322", + "bytecode": [], + "datastore": [] + }, + "AU1JWGm56SWKN5N2Tq5Xw5X1xrpt8LALmtRg3PAnGWmJZ42sPAUH": { + "balance": "996.834259852", + "bytecode": [], + "datastore": [] + }, + "AU1JWLHDHxhPtK3RBiSJCWXaQMyhkLZuazSqpYF6v7ChSKmMAtUT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JWLKhtzHqLLTG6kGUpK59XNpbcWgFKXJc4sXFgzLF2nn836UF": { + "balance": "1729.609513930", + "bytecode": [], + "datastore": [] + }, + "AU1JWXb4Ds6QyCVRDxiTj2qG1GkX2at9zZZgUwNtijZTvTar1iuM": { + "balance": "43.163290964", + "bytecode": [], + "datastore": [] + }, + "AU1JWgipj3vkf7RPt2AccUr5crUuhvmpS2rA7w5GZGTGYAaZiTwo": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1JX4z9VXdfwv1wC7xsUmhUAxDuzKqYEqCNH1cU7zDN8aFdY5Di": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JXBnCF9cpXHD8vhgmAfMpkmksg88kkADojwvPnPsnzFRaZXkR": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1JXcByzSJxur1JwSFNBzfC5X87A2eg5Di54Tyz8HbW2wovdFWP": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JXkPDnjeHGHAUGDnZRuPxBtXBQzJfr9waLHoCjZ5Qxnwe7PEJ": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1JXvmtUqhHqC5SUvom7LCWLio9WjiHc9F86ZmC4NnhaDiYSnqY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JYCi4oqGiASAGa6v5N457hiAuZBcbUa8bHGwXihRa3ozuLcYo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JYFNGYVgCZ59SBeUv3AAjy88jfSjRZtDWvnCQP1DVLwnDzjew": { + "balance": "963.027054946", + "bytecode": [], + "datastore": [] + }, + "AU1JZBN8XseXHobhNBa5g2sfmSqfAwEtSCETaWLjGUoGPvGHpQP2": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1JZHjmbUVX8M74gFTuqi5y6sxkiNe8kX2k2RGXMcWT8RLT1a76": { + "balance": "33.083894502", + "bytecode": [], + "datastore": [] + }, + "AU1JZHuXS2zxwvE4YnAFqtLiNHG5L8cb5hBcu2w2wP8Vrt5ebVhr": { + "balance": "1401.908652212", + "bytecode": [], + "datastore": [] + }, + "AU1JZUJFgRbDiSgN9G7925b6ZSfAaZ4UTzyjBVnFwGM9A9ESMT56": { + "balance": "1482.787080889", + "bytecode": [], + "datastore": [] + }, + "AU1JZrVB1VBxmeWygUZwkCaqiN59xtBEFCyvK7i1ZyVjb2JUfa3z": { + "balance": "856.981995226", + "bytecode": [], + "datastore": [] + }, + "AU1Ja4L1FLzahwuZVpuKc3h2oAvP3D8HLmCihU8DYveNNTBkv2Y4": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1Ja53NPWynPrrKRNwJcQARxGX9zBQ3Rw4iEQQc7KVwLcLHyBgr": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1JaLsXeKWtsqj8ioWDrW8uFsribLC6ew7szHFTwYezqE8URky6": { + "balance": "2505.084447019", + "bytecode": [], + "datastore": [] + }, + "AU1JaekmtbWALSJDaHD6JHyNeV2FxoL2WdPUShW6hfQSMF88sdFV": { + "balance": "939.370099550", + "bytecode": [], + "datastore": [] + }, + "AU1Jaq4h1rzQzdFG3HdjkdSZhMoiAvGGnM7r2Mda8G4omPg9QxCZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JaxgPri2xa9xDCMFzPz2Qmz6FAwaseMn9wYQ7fBH8xhKoEj9p": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1JbSRmerEwK6Ca6c3n7n43HUvTuLwhk5mkNTkNf1XdDcvgsum2": { + "balance": "2193.668390848", + "bytecode": [], + "datastore": [] + }, + "AU1JbVQ5RCpeT9wEbMpvWsxq3QXCPUf5HrUTamM8oBjohcctro9D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Jbbfx8Gk1MmRWiu4CkXD4rMdBH27F46YkNMr4BKtuf6DT7sL6": { + "balance": "129.537953795", + "bytecode": [], + "datastore": [] + }, + "AU1Jbf1S8qArcrmne2WF3g1fAhiSJBY3CQKBz8Ty7YaTcB25jbFF": { + "balance": "1561.719518692", + "bytecode": [], + "datastore": [] + }, + "AU1JbqqKxs8Z95dY4pYPVcMvScwSFqiLQubzFEgDrbSL5sVRas6V": { + "balance": "756.575170473", + "bytecode": [], + "datastore": [] + }, + "AU1JcFadxRmFanGELAMmGQPKVaBsAsodeioPK6WDtAKh8KsiFUfY": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1Jcrnwb3yt2sLj4rgcCJxEECAz7ptbGQtUUgjQxLmcSQj8GWhR": { + "balance": "1810.485002278", + "bytecode": [], + "datastore": [] + }, + "AU1Jcszp19RH7tBBaK8yJzqNWfYevxdvfAGxYu2GFfMAo15M9pxY": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1JdLEJigMUiGWpSkY76mueNqEh5uaSsYHi3rgect9dpzkB5PKL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JeFXdiakQH9RGrj1EA8fgSJFnaR8GnRX498A5ao6uvTWqbmzH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JesrkmeFNsYmXV7NFoDXGGVopZQwscYcbDB9TN5YDVRbnLnzf": { + "balance": "1433.865959654", + "bytecode": [], + "datastore": [] + }, + "AU1Jfr1RJSfchAuWRjAvTgNhx2qHayLSi1CEc6yPdaMixmYo51pz": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1JfuuZ3sNZjxXqz2WUdDyZ9tj42mDSoiaLwHNpms7cAeDX2Mzy": { + "balance": "288.088279766", + "bytecode": [], + "datastore": [] + }, + "AU1JgPsaiYsmsbUWj2ncY444NgEDYnsmF5HcTGQHZUwSnVQnjW4r": { + "balance": "2370.233271976", + "bytecode": [], + "datastore": [] + }, + "AU1JgUZ26Eku8eiDycZpp6J3EdVU27QPJjccM5MyDg6MTY6dWff3": { + "balance": "1377.413484728", + "bytecode": [], + "datastore": [] + }, + "AU1JgfHQJqbJUzBtJ7HmAxL4bvfAiQ8oJJEpqfgrTMup75rmcB7R": { + "balance": "894.390521977", + "bytecode": [], + "datastore": [] + }, + "AU1JhA7iNJPKSr7B9t3Gh433Ya3yBKbB8LDK7VtBB1NVMcuxBMHm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1JhMFSoF6vyFX5B4KpaNu6VfSwsPiuMYSP5n5gaKFSXNDQvCAw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JhMtj7p1HyiASxoaN8bj2oZD2b8uJNsY3xRyq1b2yYjahuzLH": { + "balance": "1589.729324365", + "bytecode": [], + "datastore": [] + }, + "AU1JhQsDw8RsLxZoD1wGUZyJmxBMhxEAi2ppmZkMQZ7LhXdWJFuw": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1JhgzTqC9cLySbqjDqMx7DPxPBvzGPH5qcaLv2B4VKti9nm2DF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1JhojckWaTfzX2LnsqgtfnLvkRBJJv6Gb51aBCWjYPT8Zr6VqX": { + "balance": "3432.688715897", + "bytecode": [], + "datastore": [] + }, + "AU1Ji39Yam3VMgvcQ7D5GsAqT84MUHE6odxzfT2WXceX5sVUUz64": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1JirHGksq9bZpCDgRZ7GhXJNLUEeEtpRZxvHFUhMFxss3vpV5w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Jiro9fx79KzX3Hn2JNeZjahXAmBucom2hzeQVkvyC2zmDLXM8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JisFzHrYPTB8BeSYnZSNxJqm7iUMGMQWW9ZzUDeNVPrhc9R7M": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1JjBrn35RixRa1dQBR5e6P1eAfeakrxzbwoL7NMYPyuZwcafxs": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1JjUqSRjWmJ43w231H7tAnkjkHVoG5FqGEtWm6HmUrhjCM4289": { + "balance": "1840.365976985", + "bytecode": [], + "datastore": [] + }, + "AU1Jk7wwzj27k3ZC9inqKW31JrhaWWyyUpFxGvs7BzcCo27JfT7a": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JknhTPKSawKE6nhoxfk73mYXXEuUdjyfsxHdkT1EQbsasrDrX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1JkpqZ52d8vmHyCML21XoDoFCYqfBh8XXtLP5Twj7PpkqpZiMM": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1JkzCFNeVg5dP3K9suXpVbKUipFkks9xBFcSpxhVABZKcrgXgg": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Jm1iHJrYAPGaPoZBfvfThzAitLbELBVuFsBrYxDXCr1JLu9X6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Jm4hoceV1ZCTa4DgZxxqN5iguZTR1CQjBhzZiov1HrPG6Xig5": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1JmCvp8i67BgshNt8L5y7EZVyPKJEXqgh5XFPmBvwnP4uptrTk": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1JmEiUNygwBgQGjJkiFpoRciC6PeTEzib7u2czth3RXXgFZudK": { + "balance": "1556.263085972", + "bytecode": [], + "datastore": [] + }, + "AU1JmV1YMEio81cNaAN4qpnXZX2aVZ21MkxBYcFSj7VmRBWNQ9F6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Jn25zvadg5uAtVKhccXKRGaChmdwc51X8PUz8kUtEUkjmBUFF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Jn6GEyCCHubG2gCT9QpEsq1gWdYKgp8FmVw1fW4YRDB58CwrV": { + "balance": "2101.873691134", + "bytecode": [], + "datastore": [] + }, + "AU1JnNQdbnLoigYCrRCyNX9B5cwnM5MneGxUA1ziBpbvjbmxubM9": { + "balance": "684.545378650", + "bytecode": [], + "datastore": [] + }, + "AU1JnWGihn53SBiHb1jgBf3vBiuB4VUnZYh1nGRUq56JKYZBXXbL": { + "balance": "4456.747978928", + "bytecode": [], + "datastore": [] + }, + "AU1Jnxrjjb71k53ckkXyStLqYDZXVX3dj5JZEYnKsPXChdEuwJA2": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU1JoKspLF4eUunsKiH4EhdEmD4r46njiR6VUo1N1mqbV4cT9UPv": { + "balance": "1323.408213074", + "bytecode": [], + "datastore": [] + }, + "AU1JoM5BWy5dvwT86mCQbFXmPt1amTHYMq1WuTcvbH5w1edvkivL": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1JoMCF5yPFU9gKNe8b5Z44ugvcCPQ9crbMaBDhdJD7pDHFZcHD": { + "balance": "1956.144918566", + "bytecode": [], + "datastore": [] + }, + "AU1JohA8FRTBv1QJHFVBa2vpVNZ4zA6DuGDcWLTg1CR5dbhdeP8t": { + "balance": "5164.603581989", + "bytecode": [], + "datastore": [] + }, + "AU1JonHXrr41Qm1oGE9Taf4DFscBrUHTgF8jGNAg3zWo1hKEiQf7": { + "balance": "37.591253191", + "bytecode": [], + "datastore": [] + }, + "AU1JorVrdBNWbUuFeoR8suW57cArNgAbVkvNt5FMoGfu5YxwT8SJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Jp6gnUt9mYBFZgXGW34dhfoog8JTefK8xBjSdMDZeHW93UcxE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1JpFq36ZJB32GCe7EWEiuMdkYKG6wZFPWCHxHV8UXTNupzFFtA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1JpSyZAQjhC9SUntot5y9PDdgbeQVctvT9y7bS6ibpMrkVRRGQ": { + "balance": "2044.482494278", + "bytecode": [], + "datastore": [] + }, + "AU1JpwzGKZwPgMqxWGwahmFQ4i6tCp3rwFB5EDfhPfrZM7hX3yML": { + "balance": "4823.357493787", + "bytecode": [], + "datastore": [] + }, + "AU1Jpyw1Foh9daxYkLsg7pch7tj38iXwvDWPU7wi5L3EaH7AJi6Y": { + "balance": "4104.056356832", + "bytecode": [], + "datastore": [] + }, + "AU1Jqu1xiLvQN2gKjVdgDvkMC6wFMB6ZywD2UqzzbEFf8yzvy9RN": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1Jqy7uZuuPtCPzatHMkKJq88vKDDbk3UE4YAy9yDYsNzeXhwky": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Jr6rUbNTMchzWXJrR8asnxAZ8BzJJHuGsT3HXfwzx3WWiTLrQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Jr8JtKjrNw4FGeSQsSCcVR8zZc4AYNaWNz7Bzy6NULHQefxWg": { + "balance": "1346.772380137", + "bytecode": [], + "datastore": [] + }, + "AU1JrGGzug4WLPZnxKKt1rw5JKXfd9AhZRr65DV93EWLMNsawy4W": { + "balance": "1540.342465803", + "bytecode": [], + "datastore": [] + }, + "AU1JrXhR1tyS8QJJgtQQWQW2nK7VepVMwgwLJoxarmdLoPzodmwD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JrhF9veEHFLfoFPPQMePgUcWWrXNASyA1iVMcgo8jmtcooG31": { + "balance": "1414.355584962", + "bytecode": [], + "datastore": [] + }, + "AU1JrnK9HpPTkGSUnzgLh6vGcV4Lr14aL3ipa5DqEJBLckkXEQK1": { + "balance": "2579.333500193", + "bytecode": [], + "datastore": [] + }, + "AU1JrqMR77uX6i5FwptMhCNGPt167DdLr9ktomukRVzEnmRt5g12": { + "balance": "1565.675265720", + "bytecode": [], + "datastore": [] + }, + "AU1JsZR6hsnvR46hexgq2FLbhiHz23PFFQeSpTsTejdiJNVz6Vxf": { + "balance": "875.986128421", + "bytecode": [], + "datastore": [] + }, + "AU1JssvYxNssAkaFfVp4LyYAHGJK6WhnTnoidFb13ff7oqQ2LdhK": { + "balance": "2225.469123198", + "bytecode": [], + "datastore": [] + }, + "AU1Jt3gqh3AUgmEvDYEfwGA357yEL7X71aKeycaLygmKYt33JwT9": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1Jt4v5TmMy4MMTxwHo7U97ZE6VY7vhidABMKgXQw7JYAphctJR": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1Jt8Mcq8aE8x7S3CUQ43oGoFcm417X8SzVzQCWwxwtWuvwdC5Y": { + "balance": "1625.751839185", + "bytecode": [], + "datastore": [] + }, + "AU1JtFjdfDUJ3HQdT3B5bjS4RUxD163PLi89TGQFG9xR69f8FhPs": { + "balance": "2879.771381437", + "bytecode": [], + "datastore": [] + }, + "AU1Jtjw5QnhvTyYuJ9P7enSc4yEeSeH5Q9Etp52qnWNv8siaRSRD": { + "balance": "150.986882184", + "bytecode": [], + "datastore": [] + }, + "AU1JuVfRmxFH7MN1fD7gTQYQcTxhF2qDzedxdUBM1Qu88MyX4aVW": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1JuhHnyBJ1v2aucpF7ZJ9wzM8WZPs97rZBzXerT4fvtuNP2Did": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Jv8JaBYyPVbiT9WybXnVzb5FfSghoAzowM9BAuH63yDr76Naa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1JvAiCMSVkR4r4QTyjsG42vq6AFa5sTK7PJR8xYpX1jz7pJqpn": { + "balance": "1226.607541395", + "bytecode": [], + "datastore": [] + }, + "AU1JvLGQwoMGJVgAjbmZEGojoYjACBW1JL3dHrrc7mGHDrDZmFC9": { + "balance": "1091.524053331", + "bytecode": [], + "datastore": [] + }, + "AU1JvW7m9AUCbFScwqBkWqByTNTZDf19AoG9H99bdgGjBTRY5Ugr": { + "balance": "1568.474718649", + "bytecode": [], + "datastore": [] + }, + "AU1JvdiqEewJBqh1Z56ptqjfCnkvZ8eNzZyC68XVnAdyhNWpwvMW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Jw824h2RNGjYRSpBRsRsG1KgjaJoQTXMhuGRpBjWgyobwdmM6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1JwE1BNFh9czJpqFEmJUCdo7qo5JN6adasW7RP7TSFHXR1oSAN": { + "balance": "2857.763171363", + "bytecode": [], + "datastore": [] + }, + "AU1JwiMyZ9144skjmzg5xDKYRx9oFYpJqrNrb28tU6yhSVauswKV": { + "balance": "751.412730662", + "bytecode": [], + "datastore": [] + }, + "AU1JwjL9pZBFSfuVxt2XTWxwQr5LwyAGSRdqqQBcP1mXZVbJM3Rr": { + "balance": "1213.174042403", + "bytecode": [], + "datastore": [] + }, + "AU1Jwjn9MAofzGTV2HJj8ypRpng25EvpMDR9XJv1DHtnS1Zsy9Z7": { + "balance": "4919.730197544", + "bytecode": [], + "datastore": [] + }, + "AU1JwsAU8dUsHBS9XzBXEZsCLmzjX6kcjQoUFaA5EHa3s5xrSVS1": { + "balance": "2692.084493047", + "bytecode": [], + "datastore": [] + }, + "AU1Jx3e4Tk3pKDFPfroAfmZuYcn67Teb4NpWqrUH7NvrKNQwWQkr": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1JxKWodSs1TPW47ssNg8Kag8nhJWsWKgu4Zk1vU2S8idFVmGzU": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1JxwYuKLJMK43YK5Tdy5p7SJGzRAqyj4qx1rUew2cEBpLh39qK": { + "balance": "761.784765244", + "bytecode": [], + "datastore": [] + }, + "AU1JyRwFQVNsacD2xGHUbm6NquEgiCEnPdBthChkhH9yemtXqH6Y": { + "balance": "2046.999850657", + "bytecode": [], + "datastore": [] + }, + "AU1JyihWfSgryhxscjsuDPyoDh29zAGm2XsSUnHakyJA1caN3Ph9": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1JyiiTk56BaUMyGEckyoeMCH4MSxPRiXdSGA4j1nyrb2ALSqJi": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1JzBJadykxWdLHBpp5AyLhVBAdfLpmh2WiokiW59bBCsBKnvbU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1JzU6KdDJBj1tdgiDuKcpTxYktTDHCAu71eCfxUSRjXibbGJXq": { + "balance": "694.321956639", + "bytecode": [], + "datastore": [] + }, + "AU1JzxW16SELRaYVAiBJmu1L1XD3yx8C4E9rvyE4U59MwMSBbZeg": { + "balance": "1882.669803405", + "bytecode": [], + "datastore": [] + }, + "AU1JzzT6NPy7MacaRt6C7ZS8D3RPcBkMGnG1hr5mQ18zUvwoV4X1": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1K11sXX7c41uxuNAwXam4Me7zhTvWrBvd5nnsr25RU6pfHgLpK": { + "balance": "1162.644570347", + "bytecode": [], + "datastore": [] + }, + "AU1K26oVYNZbA5VgXEYmwrhSaoumjPfY8c4Bh3K667qnXEqSKP78": { + "balance": "2317.758844360", + "bytecode": [], + "datastore": [] + }, + "AU1K28v5DetJrj4GrqUyRM2uCymaffrZk7LpW3aJnUWbamPiRh48": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1K2ACg9avMQjLGRkAN9FiM9qG8B8UFDq4x1jy53nNW8223MJg1": { + "balance": "2852.658803869", + "bytecode": [], + "datastore": [] + }, + "AU1K2fHRAmrjgxqtver1TR5uDmng4Br6hvYxcbCV1TwZ3rMyf2aM": { + "balance": "3004.647576589", + "bytecode": [], + "datastore": [] + }, + "AU1K2fi2RP2HCK7sfUKSwPNxdTaYr1U7cRKYCict82ZbeS17zYE6": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1K2rxHtQg8hbmjDB4MLV9dz2va7WyHfJ6Y1uN4VC44cYzsp6XM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1K2tyCmEKQgQCEptxmcCmdJTRdweJgghZHejg9qdjZyFGxtnhG": { + "balance": "1153.878232279", + "bytecode": [], + "datastore": [] + }, + "AU1K2w5QwffcJ7fULjvDYcZ32eEUA3FqNc7KVyuvNixPPZKuHdGV": { + "balance": "3879.267499960", + "bytecode": [], + "datastore": [] + }, + "AU1K31he6WPGb91TjjsE1kaoqBygnY2TSLWzdGto3uMRcDBcPRur": { + "balance": "2566.254165392", + "bytecode": [], + "datastore": [] + }, + "AU1K3DTzU7fprjowT9ZyCef1y2cuxe1eGRG6Vor2wBiRBjjpcZzA": { + "balance": "854.749663363", + "bytecode": [], + "datastore": [] + }, + "AU1K3KKTPnFigWEZENE4PnpHY6v8yopGvvQnbULsJ1WksQ8MWpUq": { + "balance": "166.666666667", + "bytecode": [], + "datastore": [] + }, + "AU1K3cCTdYfphhfUDSoDXUKEGiog79r1jEo65JtrRT4SJjEDc5hX": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1K46UQw12TTcyDuoiA2sPdNwRxqG3yh3hPZKYpNN13nvUF5ta1": { + "balance": "1005.476251996", + "bytecode": [], + "datastore": [] + }, + "AU1K48eH8DP7xUKjCmU7zdPVQ5RiagV9xSevQJuYuzPSrUhepbC2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1K4JKTNSXqZdGAdobizuu9jgLS6QWqAYHXEcjyycWiqAZUDyTd": { + "balance": "983.265543091", + "bytecode": [], + "datastore": [] + }, + "AU1K4Qk6hPihDTt6GCCiTs6SBcLL67gDbYeFjsFTyUbbc7FRi3mm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1K4kGpdUHyVKR1x8kVk8FhgSVMQMipyGtsEsJpJGeJZwCeqDPP": { + "balance": "2836.519800986", + "bytecode": [], + "datastore": [] + }, + "AU1K4vDphS6MHmfuoX83N5CGwztAjxyqA7cxYA1GmPdUjXWAVr96": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1K4xKjZ3LY9L7K6oCTKie7gTUpXNbSyCngVa3BKBQzcYqZ6ar3": { + "balance": "1193.460261084", + "bytecode": [], + "datastore": [] + }, + "AU1K5b4syWgNfsDdX7o16sLC2PoGjk1z5xw2rkxA8Q5yaqq8h5gM": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1K69fF3rcDDsbmPTFdUHyoYW8nBCRoiktUzSy64g2z3G4qRfTo": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1K6ffHTFGUTkg69Sojij7NfHktxuituvdSpNUdaXj3jRGF76Ko": { + "balance": "3447.013287262", + "bytecode": [], + "datastore": [] + }, + "AU1K6nbMXeFt13MXCqsGfbZAfyKDs8rZvKQtdBecFVgz419NYdF4": { + "balance": "1163.074428236", + "bytecode": [], + "datastore": [] + }, + "AU1K7CfLMBk3wHujD9czqNf1Zii7B7W8pQmDm7ZSPvmRN7RafZXm": { + "balance": "735.859636488", + "bytecode": [], + "datastore": [] + }, + "AU1K7HxvAP6acCqT5Y3vv5WmMgA5bSRr2tfJBUwUcgkj77UrR1KH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1K7YTgUfK1jApsks8gbv3dVd6ZyfeHA72YRRVRgtezVaiLw5J3": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1K7sv4YQS76LAH91CYpk8gLsJ79FgChK6NHuF9fW9Z8SEmPkGn": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1K82ftV91DktdUyckTMxVNEANm5y8nXosGifHU9DzfydYbSF2a": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1K8N8vqKdZE2XVWFXvdgmgxfb9sz4tZ8pk2WyvNeH4PDPM5MSj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1K8QPmRhudU8A1bF8QpCfhG3qLex1oEjcAA7oU13UVPMqVJQFr": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1K8VvDDuhY4RwrGyPerU9ERiLqgF8JbgVJgNf7TrGV1mzNWnZw": { + "balance": "2920.783913929", + "bytecode": [], + "datastore": [] + }, + "AU1K8m6QvNT2T4NTeRndkzkuAvJ3wE3X7tqLoRLJLDaSP8yPLcCQ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1K91sFHqnsCyWmqeEQYB1N5p7BJcoB3LhXeyauXQf3TVH32DmY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1K9312SoYKXxwwJi4msKzgUTHBc2u6jWkT8PugDq1ZU2XqfGhL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1K9Ly5LYJHd8k8nQZXsozKXi4C9J6Cnv94syaP4pTVHc4zoGXD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1K9MhCKrmH4BcAWhPPsB5x4WcX1vEd44cj26ywEHf2A5WFvKEV": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1K9QhPrK98G9NTLzYEHmFMNVmsvy17tSWWcTZ1ZRXzu6P99KiC": { + "balance": "1832.867194744", + "bytecode": [], + "datastore": [] + }, + "AU1KA6ydhKfHZDqo9ducEgLm958n96JSpSStSmakq23dM2XxpT8v": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1KAATM6ebm74sKLhXKnZb77W96ptDwgaCENPaRQr4rsNfziZYP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KAMuxRavN1LdsZKbx3naufakp5h6GbM9gnts2tasFHrANQ5q3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KAoDnExjMn2TEKdDY9kqLc2PbB6LCCdrMQ3TA2pkq85nauPmm": { + "balance": "1505.273642461", + "bytecode": [], + "datastore": [] + }, + "AU1KAxDasgL9TdQNDQYwc8T8twD4gK8ihVhGBvL11SsY11h1jLWL": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1KBEsqugQWME3HBRuwcNjuki8eNQP5N4om4FqB1kSuoCkCoUz5": { + "balance": "4318.210457032", + "bytecode": [], + "datastore": [] + }, + "AU1KBEyzdNkdr8YBfKj3MUzsLSA5SucGkV841wLHEVMmKCXSB2qU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1KBwHDtSUHmUwNZnVojswzXpsjDZntaEDRxU8j2SU2fyswBTzP": { + "balance": "698.367363732", + "bytecode": [], + "datastore": [] + }, + "AU1KCQZDK82LEVqH4MB5HiFrxYinaKDDNtu5Tu6Uh6C5ABVafbsD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KCh1XYrVNM9x2n1LxR1f52nC46vkqbW6JqTUUwoytygVHLSB8": { + "balance": "1856.541214119", + "bytecode": [], + "datastore": [] + }, + "AU1KCjQeP61eadxR2fvH7rvoRVB9xzqeH5Ag77QgZb85Ku1U7szE": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1KCrX6bTrdmgHdnwjSAcLDQKxur27stTCdJibpUeELAmbrjPJk": { + "balance": "1388.442149939", + "bytecode": [], + "datastore": [] + }, + "AU1KD9yeS3cSG4MBZXyA7sWVorDzb6ePop4iPeRqmYT5Nqknd7mW": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KEVoQmg1BDu2kWq3mgk9FGMagfVe1apijonryTHu1KwrSD8nP": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1KEajLQ7KXfB9iHPFekRyHsksX154WmJqv9B1pREao3vpYxzXB": { + "balance": "1078.282798316", + "bytecode": [], + "datastore": [] + }, + "AU1KEjx2sxgnhZHW4kRxdptxzAzJ2E5RBeTr2Av2ckLAEkbgN6Zh": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1KEpd736TRzvSC56yKsFQk76F5vcybbwQvb8uq8HTcvptqExeg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KEvNmR44gvEZh8b7dFwzqahrwcFPEpTMUYcjnJeRFmCrJWKka": { + "balance": "2503.204576372", + "bytecode": [], + "datastore": [] + }, + "AU1KFMSUt95UbJKnefBmCKxXvAXYBg8VmvegmubAoFRxJaRKLajX": { + "balance": "1479.795628822", + "bytecode": [], + "datastore": [] + }, + "AU1KFQrYHdpyiX2G9U3opivFCSpUpX5Grt4PhnjLbPBQndSy9gPe": { + "balance": "566.639516158", + "bytecode": [], + "datastore": [] + }, + "AU1KFRzgkppituRf1gjoeiHJAeSdHgT63SZQxd5TzPJ5k9LnqsZp": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1KFVo6vQdxvHnyxw1fufHud71kqEvAkpUpWoMe5U6i4Jqan2C5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1KFpdqYEASyxn83WeYw24ir9fhiMSUFjWLYKc8cpSgkEshbHEk": { + "balance": "1339.235590534", + "bytecode": [], + "datastore": [] + }, + "AU1KFuYn7k6N68AJBMwu5YaPNxadNRY8hsQP7VpkrG6uxNTbtxJT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1KG96kr1x4fQm9aMGQh5sZjGiizEr1K51kKPS5ejUMmAX1Wzto": { + "balance": "1184.485081193", + "bytecode": [], + "datastore": [] + }, + "AU1KGg9YY9o6EcGd8ukboV9f3ogaNeMHTnVQFJdRqNJHNRenstG9": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1KGgwyohmsxtXyMiSn9CM96wrJx2oYr69UsQD7Pwz5sYu4LW9f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KGiegMJZYRSVLNJxBWnRGT2hayJnyYUhh7VreWLMfYuGvnGjH": { + "balance": "231.887800229", + "bytecode": [], + "datastore": [] + }, + "AU1KGvutvSsSJZfA7vj32SYK2ozfhQRaQrxizXYN9pZdbo4rd41D": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1KGwZ7gWPUWyy26ggtJbgv1TDESuCvsitM3j7Euf4csGVqaFdL": { + "balance": "55.428620818", + "bytecode": [], + "datastore": [] + }, + "AU1KHjbqUqdLhH8iByWwZKztpLtV2hf8TF1uStoK4SeAeXMSe51h": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KHnB27t4DheRkCTRzCDYCLdsZfHmFoENvwrsorgJMreZgwKpK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1KJ7Md8yPY9rMsgCacxdCGsRsXqnZxwzCnysBEFSFrTdSMgwK5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KJZpf32JmDDJCMbGqhLS7HCd9dNLjHVetNsVTMEPx1yGkVaLt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KJjUmkPhmwuQedCFiw84PgDLxqTjgTbPXpDKZo9ZrYk74ige1": { + "balance": "1284.408611062", + "bytecode": [], + "datastore": [] + }, + "AU1KJsw41gq564JVW7rofndJ5MYrXQHGfK6wh2Et7jvf2zwKNMSB": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1KKG9gohVJzrdkKNBUsrab7tFoPEgdqQntDRA2YvDY8zZCUB6u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KKWK5zEhk1C7cT9SrFRPwbEyEQms5oLF8fPYEJutE8KKNyNBJ": { + "balance": "1142.354893056", + "bytecode": [], + "datastore": [] + }, + "AU1KKeHGdArZJvrRyVkEtz5NXgv6feNKW1vz2mwKzm2nyx67NbpX": { + "balance": "4934.535474258", + "bytecode": [], + "datastore": [] + }, + "AU1KKgjSLCDwu16CAsdaxNks2hoDnAyAxE9AoNqXXiZqCnwiWY6z": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU1KKhNFgVTYYkY8ipvfSSEioE8epmLfUvvcxdgBifXnybPU2ewL": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KKiTX6ZCun4ijohKg7S324VuFtD6Gq9B6L9HjqPRpwcJw9Fwx": { + "balance": "707.474190759", + "bytecode": [], + "datastore": [] + }, + "AU1KLGgGjnwCskYAtGAh8zNNYtxXcCoyQJ4AZXu5ZKSaziX6THhD": { + "balance": "1815.438684116", + "bytecode": [], + "datastore": [] + }, + "AU1KLQaCrd6v4ddFp15GUWKwGYRHMons27a2hikPnUD879bKr5zR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KLezBTcHbP4v1ajM1Be5rgwLN4revP2DWYcxgiQ8hBhYkr6Zc": { + "balance": "1252.246614010", + "bytecode": [], + "datastore": [] + }, + "AU1KLfF4dyuBDc3L8mRuoW4h71XYxLEiXyLyMcPhcYa9vQW66wHp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KMNmwHzegMynAfirftN13DUKeWkdNpMb8LGRWzDACm3PGzhFb": { + "balance": "2485.958412662", + "bytecode": [], + "datastore": [] + }, + "AU1KMqV6Jd2bemUVTeHxMWgeZehheu6rVFPRvd3sA6ARBrZbvzzG": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1KMu5TR1jawVWmd5shCrgSdEMj66CWxbkGDJv4woySvD41xm62": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1KN1ig8MzA38mGGsbnpjmEvzCiA5ixjYiWU7NrurfbZVwagSfw": { + "balance": "1826.615773787", + "bytecode": [], + "datastore": [] + }, + "AU1KND5F3gXtagRZ172PkL35e4nzzmLNzVBC4E5Npd99k6zktHrq": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1KNbJg7ANQUPRgux2Y2LBhUdCAvWDbuZeP49weAdo4EsjbpfgK": { + "balance": "1546.021463743", + "bytecode": [], + "datastore": [] + }, + "AU1KNuYYaQdd3Wrcw3q7oYUGLDUrdwgU8dmYyZMx1deJJKwVCSLV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1KPJeuvw4DFJiDwLkAbZMe25LaYgrY3W2ff29ZGaqsTmgr1w7q": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1KPjtY3ULzi9bEdaYoMmoNnqzHPGXY3SV4zGVkWxhAEbe47Tik": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KPyh17soQzeGZpMdw6qi877c2x9JBYBdyf5sCncYWGYMwwn9N": { + "balance": "1836.219829948", + "bytecode": [], + "datastore": [] + }, + "AU1KQ1CCBgWQareQo3dsGp6F5FBVGyq7BBxnThtaBFSpTTHB5WH1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KQZU3vTaiZXJiM4cdfQEFu95hvVepDzzfHK365ySff5u7SvWW": { + "balance": "587.808654289", + "bytecode": [], + "datastore": [] + }, + "AU1KQayuybn952yL4mwqduNfTu8HRRdgskQtugQmuYDyc1TzBGAc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1KQekzDJGTAvsgSbV5y88qVZWeA2YtcKn7NQZgPkt5nUdKRtYj": { + "balance": "1954.051912464", + "bytecode": [], + "datastore": [] + }, + "AU1KRLV9frNqXSFmUQuAWTcmpFKQRyprcVghrQxnbT8R2KP6Eeqy": { + "balance": "1469.118853949", + "bytecode": [], + "datastore": [] + }, + "AU1KRTEzvyUxuVtsuxbbcGhBVQSicuUCCEgc9r9CYWRJhrrZhPdx": { + "balance": "2067.521381705", + "bytecode": [], + "datastore": [] + }, + "AU1KRTfHUS6hzn2AFtpVQwWo4WZvVTKgbeto4dFg46EVi3Axy2dQ": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1KReiYqq6kcBvSaj3FgZDEocEYKWNt2pB6m6JGBmgsxVND2GTp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KRer2AR9GRKAbryG92WpvuL3ZRr3AmV7BD2BcZrznNXKHzcAn": { + "balance": "975.535049862", + "bytecode": [], + "datastore": [] + }, + "AU1KRjRnkuZPwhd2ZmgHHp7YrWvJ2W8W1xeLoeQeoaA2DsiXGBMC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KRjYAFb55zJ3r6SNtMBoFjoMZRo7X5Rxs7CmJY56SsrUkJ9ii": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KRqwXi7fnyjURP5boD7AtMX2x4VzST4iH969ym9WFivruMxJy": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1KRrmYN14iSXW8xSZ8grAUV7YLJToFgyLvemW9DBQAXVyn4cgb": { + "balance": "4038.135308335", + "bytecode": [], + "datastore": [] + }, + "AU1KRtwZm3wmgU7c1Px6uai8g423LxU28BRDT73eoxVgj4WPEKjM": { + "balance": "1016.306992532", + "bytecode": [], + "datastore": [] + }, + "AU1KRwaMyHHshEq9aWAFWXJJTo9F8AgqNeQobFFycv7P5Q486p6f": { + "balance": "620.243221897", + "bytecode": [], + "datastore": [] + }, + "AU1KSCsi5fvWFysbPY1FcDSomcAXwmx345TZwGXUhc9XyAtTBJgF": { + "balance": "623.996101529", + "bytecode": [], + "datastore": [] + }, + "AU1KSskrUWtRxn8PMsh6zPJRpr1xaUiznM7DnQiVWiPb736wNm4r": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KTCgCQXx6aLTZzNPX4fXYxzZ3K6tpiH6mESCL7Q8LgNVV71ay": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1KThgAQWuArKEAnqZU62BsPpdf2YiQiiDmNUNh1VVD2VcMTpTq": { + "balance": "1481.292339601", + "bytecode": [], + "datastore": [] + }, + "AU1KTvsc6cy3ETvEsuZ832ACRRxzX3DWVq5GUFVF8jUMC6WfxJAr": { + "balance": "11256.096436839", + "bytecode": [], + "datastore": [] + }, + "AU1KUMAomPSJq2pqc5ESFDbGWUNkY3bCNFbEfVwKf6nHfPGsKPwy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KVD3a8eMHhzktzNE8jQapiVTkDbjCFU7JdCsJvfSor1bVYpVg": { + "balance": "5381.269178634", + "bytecode": [], + "datastore": [] + }, + "AU1KVJSZy8LyXSNSRbj4qTEEQLNWLu2aUTyus7QqvGE2aeK2b5mP": { + "balance": "1986.195258812", + "bytecode": [], + "datastore": [] + }, + "AU1KVRrsUH6kH2TUSo9JXW29s7oshDLmjdDCK9PcBTejYY87XGMj": { + "balance": "90.777423376", + "bytecode": [], + "datastore": [] + }, + "AU1KW4swatgLmipX7PNqyVgjzZcFGK2nK6QwCNxo3dkR28FqFXZT": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1KWYeLpMhCyGfcjjYchJbzszEAq5euKisXEFc1FMYw2o2iNAti": { + "balance": "985.078329910", + "bytecode": [], + "datastore": [] + }, + "AU1KWmh7UiNEVSiYY3vCzN5Lxxk3jMqVCh8B5VzsLC77HuJk8zbR": { + "balance": "2663.771726704", + "bytecode": [], + "datastore": [] + }, + "AU1KWxmN77ce8rnT1FQPqKWecn7h6ttg1cuqQ22p45Mn7jcQ4BDY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KXVQQ13ozJAmmTWRekTeDD36EG3opo647YvSwJp8VtUqiRNVJ": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1KXvcyh77eXNoQHQSDCfkzL8ypKVHWHp9gY1YSoBWgJS9ea7cY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KYEMY7yvYBmaNCEvrjK7ssHLvfxqorctZPAyUwH4p5NA54zLD": { + "balance": "1657.432525924", + "bytecode": [], + "datastore": [] + }, + "AU1KYFv1BzfAd1QFApdUGHvscC3JmtU8Q9EQFCeXqvZtXrxK6UL9": { + "balance": "2371.014359778", + "bytecode": [], + "datastore": [] + }, + "AU1KZLS5HfeKRFxrwMfYUVHecYtEVEMyt2kC4GLqXNh9kUZP3Bhe": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KZecqbjq9wUbFvDJSfPMAkyMdUmKyPXjXaggxwVnQuCVruQH4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KZzUZMwz4ejzsPN2HTioNpXhPFy6x9HZgZ6jRjoHFGunzuQRG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1Ka7hgc2RBcz3sNoL2kbhJseMMsn9ay1QaPj3mkWD3Jw4xQiDo": { + "balance": "2451.363077576", + "bytecode": [], + "datastore": [] + }, + "AU1KaCmHV4RBsgsCQiVtJhSnPRjPitBz3fzU1vpHQZMXVjTpSv9m": { + "balance": "1748.536914414", + "bytecode": [], + "datastore": [] + }, + "AU1KaECEqU8zNNAqk2qQ6uqAjLFQxahnaSGSVFYUdtUbG8sgMP4d": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1KaJaPyt58LcLG4hviMvXyU1chfNLMpADTpDKTgQP5ypdR3748": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KaSFFQvQ1p5fmgQq9LA1LAhVXSE5H9ydqzBSi6XCJ1ZiEdtit": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1KaYgMD7TFbbxXVcZjbzS9mnsnHjk6KJi2LXDFEdLCoeVrbUap": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KaoT64sB91KkarnbdAfEcuf9t3zRxGMrESpCrZRWy3YgdRs86": { + "balance": "1326.144714214", + "bytecode": [], + "datastore": [] + }, + "AU1KaorsydNjvATW6HMeDjrbqAeD6Uz5HMSE9ycGdt8yeCcXjSM4": { + "balance": "702.792947481", + "bytecode": [], + "datastore": [] + }, + "AU1KasfQLHHUgpSwhUggrYdqoffJJqzJsghNvB9NVnPAYi73GEUz": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1KawzspoVHzar8vcvhuvSpouMm5aLvtoQK3Lic6D2vSNM5vKGx": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1Kb2Xd5Z5c5argAWnc1Yi9HKukFE2ZgXjBa9Gwh63C1h9RbwKY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KbAYKMKV3ijnehtqyZRxuJ9UvW9Lvk8m68fUHnPkep624mExb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1KbuUZazWCWbqk8UwTdtPFLA9FsuJ6VmAGsCRvoKKo34CJeH7H": { + "balance": "916.225475175", + "bytecode": [], + "datastore": [] + }, + "AU1Kc7P4hby1x9rkDV3hgKnnWprxLFkMfTircyJ7Rn3Ra1fTAq4T": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1KcXCfnfzgrDWTwiWudkghR2EQKFBxagX6jaG655MoaxsWWVZj": { + "balance": "4728.168814679", + "bytecode": [], + "datastore": [] + }, + "AU1Ke9NorVEcv2w9EzYHsSWnYNj6MSP7ahsukZoyKoxnFo7iJAQG": { + "balance": "1297.544090222", + "bytecode": [], + "datastore": [] + }, + "AU1Kf93kwshyh2NEC9uqFezK5NPxMuiFkN5EDiCJv4ewYySAcoVK": { + "balance": "2201.520633107", + "bytecode": [], + "datastore": [] + }, + "AU1KfPpPZPgL2BRrNqA9MLtQoFHq6CCLWMphJJjWgf7PM4tqpwyM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KgeYXNCHML918959bMUQdEswE7BLaZCY7srbZu5VDiShiRA6z": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1Kgum5B87YXiaPd9g7zVB5CewFxQ3cNhDazZnXg9deLkp6JncM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Kgxdj2aRWN7M4JPTtutKAPSPCu9SsnbR4JZ6zWHWxTZC2WdvE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Kh4NdK6SqufDLjV6iAUfCzgkzUpQqSgH1MBZyJj65KyR1cS98": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1Kh6KCC5vTrMawcwCQphhDqpUwWsLkUZnyYNVGXqfPnjsbRgsq": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Kh987T5Jz1VWFD2z8UjF6CJBGQF3TtqwR2CzqVovdbcFmwnbi": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1Kh9AEUJp7v8mTDZyrmhYKzB8zwTvabERgYwbvcxwX5W85hLTd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KhuXhfNosXduPtCAtrhkfDc5uByL33ktEHZRGqbKcXCetKmkH": { + "balance": "21.760105915", + "bytecode": [], + "datastore": [] + }, + "AU1KiALiMqBnv2sgWd6bkrtcZz8oEgnoFeKvcxjWFmCG4y9y1skw": { + "balance": "3837.284389468", + "bytecode": [], + "datastore": [] + }, + "AU1KiPduhJ7gsMLZ76uvb6zQCYyUKxWUiDn721QHZBmcncrVKzyw": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1KibaWLchQ64981SFPGCT66pjTdM6u7Z5VpJk3NAyB5umxCm6p": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Kirp8BQRCHpKFnAZoSRssLFw82zLFgCyj7AD42kzZhNPiBu4W": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1KivNFWBW3ZThmAAnkPwGTfJc5iFER3Erb65PDaGjH2DsStFKv": { + "balance": "607.892177645", + "bytecode": [], + "datastore": [] + }, + "AU1Kj2oc4A236TEC5qoNHyCY792rVLefNjpq6G3MXCRGsP2MMEVH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KjjweFujmrtE1AKukXQkDB4iAZSzA8zMqsHELZeEfMqRkxE4Y": { + "balance": "1475.443700952", + "bytecode": [], + "datastore": [] + }, + "AU1KkKFesNbmAc3QjJhpZCexa1E1qnntSXXsY7AbyU17choSiFqM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1KkgR5YQotpuFc75eXUEbsFtVLZJPjWsJaxC3pafKEqT8Tgafj": { + "balance": "840.197668406", + "bytecode": [], + "datastore": [] + }, + "AU1KkqxoJG5eEdyw5XTpuV7UBCkvs76TwKBmjS1uVkL2XPrYGYSf": { + "balance": "1045.458985813", + "bytecode": [], + "datastore": [] + }, + "AU1Km2w3iuGSdAkazUNpdEJfD9TUDVjkNiYtTq6NC6Dq1ENzEBqa": { + "balance": "4763.646055635", + "bytecode": [], + "datastore": [] + }, + "AU1KmEkyMvXupvb7P4eR5LRSdLHLTuK4R4Q8ZvFVAJSPJVaRzjrQ": { + "balance": "884.647345861", + "bytecode": [], + "datastore": [] + }, + "AU1KmzwbbFAHGg9gD6YVcrD8PcSMcQieXVBpx6n5AU2Unhvq5JGX": { + "balance": "4297.565905117", + "bytecode": [], + "datastore": [] + }, + "AU1Knbyii5kmYumdpKD3JXqLaPVdkJhugJUK7Cx2mDVmwg9aQ5RD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Knpk3herwDXRna3PgPgoEykPZHCosxvSX6HoBpPRcBrmeoNc7": { + "balance": "1311.659246952", + "bytecode": [], + "datastore": [] + }, + "AU1Ko6gDvmczQjuAE5GL3xcqcHW27iXzswXGVK6TvU69DtrZL58E": { + "balance": "108.309242393", + "bytecode": [], + "datastore": [] + }, + "AU1KoTCiUucLt6JJ9TmnfdN4SEBYax2kFG4j7o3yuzbFAQewZQ2k": { + "balance": "2382.838946515", + "bytecode": [], + "datastore": [] + }, + "AU1Koaus4mPhPcqK7zMNW7W3TqZVGVdaX1MEDV5U29UTdzg4oc65": { + "balance": "2629.649882792", + "bytecode": [], + "datastore": [] + }, + "AU1KoihxeyJtxauuS5ppfZYiiR3Ygy4rJGB5jz3PCrZzJGKFRGgD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KopU8YLvLUPmXJALrNQVLqXQbEX2Zt7Cdfge6qg662S8atJtC": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1Kp38LQrsyNWdxr2zVteT6F2v5mNEETUL9aULYTGqncqp5HjVs": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1KpbfHP43R9A6ZQTquHuoS15ei7W6yLFB9aNSi7RQQNvVPZrF7": { + "balance": "2147.866449856", + "bytecode": [], + "datastore": [] + }, + "AU1KpuqUGfW6mt75sWAsfPAYYJiNww5suzPBMoSFs7zbuatFndbd": { + "balance": "1980.216084139", + "bytecode": [], + "datastore": [] + }, + "AU1KqDTnH449yWSCGCCf163B6SyVzh9Mp6JS7KU91eee9smvsi9A": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KqQzhueCXLwzGDmd8zdoD5Mnh7mPnPPPwRKrU66EHtAxighmb": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1KqXsort5ZPCoVphZmBP16ARZPssQuC7nURy23aSrrcZ3ZDo6W": { + "balance": "194.444772133", + "bytecode": [], + "datastore": [] + }, + "AU1KqwU55yzk6rprbA93zhsfvEy28mtStHUMvuTP4BdBrqY96Nje": { + "balance": "1400.409848762", + "bytecode": [], + "datastore": [] + }, + "AU1Kr1Nb4CUZtYkuBMSvEUitGQhYHqaKN2FD9XniKnwh4nt3NBMd": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1Kr8BQFSPfW7jeh1Czxk8PzVSdfmrkknr41xcYzCnnToZ2gqZt": { + "balance": "32.362355405", + "bytecode": [], + "datastore": [] + }, + "AU1KrMCKuVAG35SbWqP2mv4Mat45UVFvCHBPYd9BSdxrpUCnLBJv": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1KrfnvAiVxD8JTx4wmjTsJrwuZhJ6n5dPU8cMqr6T87avzpL6T": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1KriPyWxDsDKi4jyTNR523BnMAF8rGLFQMx7i6avX46S5jwHtq": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KrsKpN9WNDSJuvhzeKKQwr3MuJt36QUihkeR1Vi8rvx6pna1m": { + "balance": "619.168718282", + "bytecode": [], + "datastore": [] + }, + "AU1Ks5fnbVQvVKwT66Rca5rptraAnmwPGKy25fBedTjEyUbAVGSa": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1KsJAyGXBGdENPWQsWLgsC4yYyrgZvZWbgQkwot1Za14p6coTF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KsRbyNjoknQVgz6tZYLzu28i8NgLHtCv8oLCPAWpqHoPtjmBy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KsXYsgfedDaFyQnvKjugKULDdP2Ahp6cchxcc3cSuDiyYuU2W": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Ktyr8uUkuUaDDuZTiKDhZAAoXYM1eWtVF9HMbwjN6KgYBbbfz": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1KtzPp8WR7C5zpntdUJNEPEy4f2kob5LuuGTWNR6M3yJKkf75s": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1Ku26fLR8yqtibBLq9xjoZQuoaXjngDtAjRQwUqa5fFfmzswrt": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1Ku9eRXbKieHRVaDi18A1EoGqFxxkSjtjvx6xJiDNGmuwzQhJJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1KuGAVu8X2Ea6zhMGYzMjtCcUrsyF9Gyn43vUC1WhDeqTRgizi": { + "balance": "1106.703108459", + "bytecode": [], + "datastore": [] + }, + "AU1KuJm6bFXkK6EfrihTTcsU54esLtARJipoQr4uZLvD6nxb7qgq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1KuKNb1BSPNzNwARhxDKTjA4AXHcztQGVtm22CCaKjRk8vfyYf": { + "balance": "1765.816836907", + "bytecode": [], + "datastore": [] + }, + "AU1KuXhq3Cpe9aFqM3hpNGuZVrqHwPYuLGDuvY95NqEGdqsGsGRT": { + "balance": "2840.280834055", + "bytecode": [], + "datastore": [] + }, + "AU1Kv3bWWQugY67kiSfUgF9HG59a4Byp9j6h2fuj8yeXMWPqZt6E": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1KvXQYte2R6zuCAGYsp2r3Zr4AcdQRb26tFW69Dk5UjGaZRtb5": { + "balance": "2746.776056471", + "bytecode": [], + "datastore": [] + }, + "AU1KvYoVxjevHABVhpayxis9UaiZ24vLyYYp7o27fSWjWdrWrSAu": { + "balance": "1679.366828024", + "bytecode": [], + "datastore": [] + }, + "AU1Kw2MfsRKATFRhop98YSQAwTMVTyP32jXc8hQguKkAZUmK1RKc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Kx39p8QhZBWCZSGa5UdQU4XxnDsdnhUAdGxwkP7z4zmhMJxLq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Kx81W3F7m4KbbHNh1M7XgnaEqbuhSTfDCdQig5fkp6B71XSAA": { + "balance": "3371.551291516", + "bytecode": [], + "datastore": [] + }, + "AU1Kx83yo1Crkje3AkgLEgcQs5PZTc8cEDY6WERjUpSjPbr6Ds1v": { + "balance": "1394.162917808", + "bytecode": [], + "datastore": [] + }, + "AU1KxDXpPSbQjhFqNti3c5fgiUzWUPQDioSenqnrx9VM2KasfT59": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1KxQMKejXw5aCRfrXJFFbQZnkqGX5f7Fvn2YH1fFDFbr4utUME": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KxcXAtuQfDYgAzH6Y4HSKqwKswv2qghrCgm78VLGsBZXcdjVo": { + "balance": "818.270398727", + "bytecode": [], + "datastore": [] + }, + "AU1Kxxj4mHvKwvhzjQoA4HpvbBneJSto8nsMVSEFCBE2RnjSVovj": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1Ky3rLtKjUxXAube3Xt7R2Sf95faMR2xMfZPTEyq21L9R2ACxZ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1KyJuDfpnSBQf9rVL73axt6Rmnc72sjyCM9AxV8pn5uiRQorEC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1KyMt8Z4uWg5nWAh5ki1b7ZWm8FHLe4HjYGBrgSB9QYRcFUsQj": { + "balance": "1442.062162794", + "bytecode": [], + "datastore": [] + }, + "AU1KyjeLp2BTFj2rawnJonrD6LQn3XCsN7F4LWpvhusSe6zv5qLc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1KyyG6ecF3Xt8CCUNg55tQr8zLEEX4roeURWK6t1UnhPgTjyZA": { + "balance": "1804.895151282", + "bytecode": [], + "datastore": [] + }, + "AU1Kz4xgikdnqYzGEFT4cXd2m7k4vkwmjQfEP4r8SSTpB22xLgze": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1KzTY3LUttgGh1vcBRkem7NRrQCqCBGS44CXVAtq64bVWucLj3": { + "balance": "2844.501936626", + "bytecode": [], + "datastore": [] + }, + "AU1KzWYCpPWArrxRqAnSDM5o7UiV9SkFV8M4FPBHz7XRH5GMMsxf": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1KzbQefFQRkV2D59CNejM5sninRwKgTBSMBdi8s7mnEWsAgeQr": { + "balance": "1165.254567210", + "bytecode": [], + "datastore": [] + }, + "AU1KzdaPMYRv9Q5LbqktAKEeLbfncMra7Gt7Rpyigdt4QAGDkgBx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1KzmUrjbcg3fjGoMbMJPXYSyWwCr9waaLAFwE3XVM4FADAK5xL": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1L18GyCaHfEFMJbmkzmuVKpVdoATJYRfBzPbZsPXVDk2puds6s": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1L1DGZe2y6dRwQaHfARDnXXvBpjS5Dd7fGjwwf5bHrUcvkeTTj": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1L1SzKA25CUvV1ZEsyKNh68hEz8KzSpezreFe3c9g5HxuvebzH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1L1c25ntDH6C7T9paqp2Av5hg6uktZmVEYB8XfaG7PUDPSiRMr": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1L1hjjvAnEr3fb3Xz8VPNKWG73qe2K1AN1XSCizUKBQvNXULeM": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1L1k8jkRxmoVXnpfwaSZvuLcdtksssfcWdT5TWjcqmB3JY28eg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1L1qtZGX6MdqPQ8XPVdkCqNkaXs3C7XZgxfmeWmTbsTtwcPTqS": { + "balance": "1611.870584071", + "bytecode": [], + "datastore": [] + }, + "AU1L2NYrTUU99kvDgJvhgKewVt47nLSjHGHPcg4H2XyPHam7THPC": { + "balance": "4349.674560944", + "bytecode": [], + "datastore": [] + }, + "AU1L2WLZgMw3AKsbEH7PANppHUVBXtBJBNp9A8Xa51gWNmLu3YvT": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1L2hEecAibM8h3LWacvm6yLxVvFr7dPAAdo49F79N46jqJkQXF": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1L3Fi429gHZV8NiPYv48FUASBjoBn3ZmgF2z7CdJQG5hf7qJWL": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU1L3zjxPX2tgMuc6bYgtapYeFctJShG37XvPpPW5ATikG6nT7d5": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1L4xcCSACAtKVSEQ5TAQUeqMb3RWdRmB9tTeuHgMGfp1iy9tFp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1L52pnFZiX3wRsE7j8iAqsZ6WEXhEkTYeewoWdDyJNTHhB9XMW": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1L53g8txKKvgahTjLtGosSQPbvfHakFhiGudiP1obiNaaMftEh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1L5ACTknR6doC9YQkBHsovNbYrFLcW7N7JB5nDqXMuy2e94NpK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1L5AxMMtJSb6X69CTYig6LE3gcKZa2Hd5irr2z5bAUQ8w1ocQv": { + "balance": "900.166459772", + "bytecode": [], + "datastore": [] + }, + "AU1L5K3V4Xm6LK8c3BVQCX9hBFjDR5GHJ3g8jayyWLeTSaoVKbVx": { + "balance": "558.717796990", + "bytecode": [], + "datastore": [] + }, + "AU1L5mRe7ftU3vwEjtxH8FCaNv7X3jrZzSaLQ9vLcpmzZUWiDqwQ": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU1L68LKyqvhFfquX2CHFJo4DDH5kGWsD2DcS6GRkzNeYqyE5ftA": { + "balance": "2348.696416028", + "bytecode": [], + "datastore": [] + }, + "AU1L6Tr6exNpoYNnwZzkWzMf7dk5RdAt6bKzFYE3sdA2ERN99HMQ": { + "balance": "700.612673696", + "bytecode": [], + "datastore": [] + }, + "AU1L77FHkV9YV6Wae1HRozrUoXWhBzd92zEH6bcfaqmzAkiHVBBP": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1L798iZ74sFuKu1b3mpNaNM6t2ZDEZyv8NkSXXihA7oghmUAVg": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1L7guzZPke4KyHAm4ryn8CMuPeWL4sSaUuWxFf31UZnVJpPJzA": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1L8FBfDxM31fqT3Qm5zkxWU6aSPY7AcyGAZcNA8rBAzmhk7V3y": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1L8NYLGPnoFXnPb23XbvPADVYp1h8rma8QGwfZYqaekSFfaHkz": { + "balance": "1388.388041169", + "bytecode": [], + "datastore": [] + }, + "AU1L8sXGc3ejUWcSAhwymViU8KnEZPKbcgqRtGH2cxEPaLD3NXcg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1L93aioUF3hBgV7yz1tSnoCiWLrydR9t5evRmYxTdZEcf1hAa5": { + "balance": "1146.769508205", + "bytecode": [], + "datastore": [] + }, + "AU1L95gzfA9cwqgWx6wqpXrUi7c4NbmtuoQmadvRiYhvDWbSP9E4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1L9DKFNBXebdVPSr89dVBNctwWkQx52pk1V1MjGtP67eihn7F3": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1L9sn7g4G9R6D87RGQczyMn1JhMeTKRkAbdrg7mZC3J2Qfj2bT": { + "balance": "1802.042143760", + "bytecode": [], + "datastore": [] + }, + "AU1LAL9gRexFMqkVicDf6MuMfM61fkUt8wMiEdBhUeHuL2QsxU6m": { + "balance": "667.326284244", + "bytecode": [], + "datastore": [] + }, + "AU1LAoMrZ872TRhqcDchB1zcqA59h6CLxBqnDTvodaJfnVnshQ3v": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LAqytFaqYwF2ZrA1FjCvnf1DeKLVzCn2NK3nxvv2Af6KRdu1j": { + "balance": "1279.825062305", + "bytecode": [], + "datastore": [] + }, + "AU1LB9kvDAnzorLN6Uhd76ckne35Ey6rmKVP6bb5Wq217iZmo8UV": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1LBND541PhhLwbHjMGcBcf2snL1xRaasiMa5WqyWaPaj5WFDrW": { + "balance": "963.494952667", + "bytecode": [], + "datastore": [] + }, + "AU1LBNoPvijUqVEpT5c2T1Q4Dz3xMiCdXs22KsWVczzgcJFGfZw4": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1LBY3kDmGq54rUAR1nkA9VA9AgRbbvAW6eRmsCkwV8X8m8PWyP": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1LBZgaAixbUZ3KPjP4nJ4j6ePCpXXQXcxkd5eVtRk1x2qc1ahq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LCFqg1x6hpSMApYcv8Mu66KYHnXZ1nDTCM5NaNLpRHnmeoTku": { + "balance": "1743.005095639", + "bytecode": [], + "datastore": [] + }, + "AU1LCdaH3wWzPpi6EPc5UWpMVSJWqduqorYWWuUnXme1pLyxz8UP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LD65nMwbD6SDPrVomFf3DPaqMcKvhcFgbYKjurHoG3ajkBhjQ": { + "balance": "1451.965217772", + "bytecode": [], + "datastore": [] + }, + "AU1LDDeEjZEDZJFm7UHpFzTGw5RMaMwmpRAfm5aZkFohGsFyHHZf": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1LDFqKPmAVjvADbwdsrhcvUUBQNuJqoWb9oZBnbfE5hqWFsAAK": { + "balance": "5533.251515444", + "bytecode": [], + "datastore": [] + }, + "AU1LDnmBSwxmAQNP24nWbUtob1CTcP6mMWNbYLYPRYcKyLgKvDkR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LE5T8sL4HrYzhwmvYuQWGhp8LF5zbXRN1xE9gncuraSc9WSG1": { + "balance": "5630.081196495", + "bytecode": [], + "datastore": [] + }, + "AU1LE5moa6krHSfJ55yCnZURUozHqrdxdXPwx3ZH76hypxRY9kCZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LEXEAPCyGyrXEjzxTtBeruZgRzDyrereP8tiUzreaLpJXQis1": { + "balance": "2480.303989926", + "bytecode": [], + "datastore": [] + }, + "AU1LEbN7Mwkre88GGBfWbtaQ2jLKEtbiefPeAKUCsq217nqFKHvr": { + "balance": "1312.315746042", + "bytecode": [], + "datastore": [] + }, + "AU1LEmGsy7CBp4eDhJV6kUaA4jqPJSH8qi3EZM9XduLPyecKPZCu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LEuLuXUTQfQSdGFeLcKGETLdAwoHP3hcXcatW9eobodxyHCr8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LEwwj2JdpdiyHKEQZQsFz9RDfQk1gUAyPiCX8JuRMm2uUvWbT": { + "balance": "36.321808424", + "bytecode": [], + "datastore": [] + }, + "AU1LFKxJgabdJogsxYsaHecRLXBBTcUjrg9pCiH8NwmRFeE3dvgv": { + "balance": "2078.765005197", + "bytecode": [], + "datastore": [] + }, + "AU1LFqWcvkdZVgxaNbERL4Aahd6U8DkVyFZGgqeMyF2cXBZSD6Rz": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1LFrL2FVfPgigv9DS7F3rBCThZSZcnw4TUHC9VmjzNxkvoQE7w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LFs8N5v8ZiPMqWYN4oY3T6it3FpBDAwNDicZnef4PyZ9USBhR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LG2oTdzrKL4SSgRgpDmtXj5t97mupwqdKau7UTQ7ScdVNfiPN": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1LGs9anGpCvaqbd2dZ3hcwqjTipnYUFd5RTn9ai6uv11T8zHna": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1LH27GwxGabaieSNo7ab8ZCwpSwJ9cTaMTX9X53eD3tcdooQLL": { + "balance": "671.722811735", + "bytecode": [], + "datastore": [] + }, + "AU1LHFkkSEyYX3STGVtF3fgedtRKKHeNiF3S3myQRdWtTci8XJmN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LHHbhJ24KoEUh8G9JjaLkJxtiE6wRZS2wMwGD3Z3zfSs7Hvoq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LHp7bKchMHNxuHA4Xti1zMvgb2S4Hc4SE5tzgwjSVdCaNdRis": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1LHrUX59xzGpbk5qeeV2yWzJYqVqJvXz5bK5zdLiMUM8HHSETB": { + "balance": "956.180371202", + "bytecode": [], + "datastore": [] + }, + "AU1LHtoJp41a8V27htJviiaUJhEst2g7kXzfBBrU9RLMTMT8t6vS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1LJH3xwPU5ScnvkshkddRnvFuQwYGfkCnbRnTNinnogAyCzsXA": { + "balance": "3337.987846499", + "bytecode": [], + "datastore": [] + }, + "AU1LK4saYw91Z5ZwXvqC4BzLzbEChDtr6STBP1GU1HvGT7EGa6kh": { + "balance": "2476.080448449", + "bytecode": [], + "datastore": [] + }, + "AU1LKAbvWPCpGCX6vjpfm9nGNwxbBvoRtHmpKN7E5KqWwZweZA5R": { + "balance": "888.891334366", + "bytecode": [], + "datastore": [] + }, + "AU1LKVE95jSvzePU1ce3aucgWN5Tr5ruC6vhb15hy2KN3Ck6gXvp": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1LKXbZKEXyE9HR9ydo47dE551AJZ9ahGnqSTAZfqaK5S8R7LN5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LKc2jnyvB2cCqcUvb4RxLKcXHttJyApb3vP8uqgcFBzLvoaHT": { + "balance": "2011.380591817", + "bytecode": [], + "datastore": [] + }, + "AU1LKiU2NhHZda3ZyTjS1fUWnMupYDUmMnPBt7BEtiW5pBuPgSAe": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1LLFhUgpuPcceZF54PDgzzZb38RQyu1EiV75sGqYSXGajXRvcj": { + "balance": "2946.965760724", + "bytecode": [], + "datastore": [] + }, + "AU1LLSPLaXx8n2WHq7B3sMQKHpMf8yPXkPY7F9peyAJRWq5RxEvh": { + "balance": "1410.568370876", + "bytecode": [], + "datastore": [] + }, + "AU1LLWnNygAHJLetWUao65yK77mQ5A1kmfTUvwJ974DrD4x2MxJK": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1LM37ZdwZxfC7PMtNPB6cGj5v9SoULYtZ7WK2rsRVGJd5fDkZH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LMA2CWaXfez8YdxvgneGtnTY7MwpjHtSd5aiR6BMo8fZXLW3H": { + "balance": "1800.372576061", + "bytecode": [], + "datastore": [] + }, + "AU1LMMMEjEmMc4H4w6QFdn97XspzUzmHhWyxDS8kLmWpe4Uv6prR": { + "balance": "974.923973996", + "bytecode": [], + "datastore": [] + }, + "AU1LMRcpS48vQm1moWN2UCsVwFazSQAqCCMi7hkZCDvgP3gPsK6j": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1LMWWBtQ2hjNjyutV7dtyHsSH7KgwEGBExMTCdB11V3oUu9PvL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1LMcaqq1dVkUsFPuV11TnfmwVmThnqicrK7m2vRcqAvTfnAijJ": { + "balance": "1394.263337780", + "bytecode": [], + "datastore": [] + }, + "AU1LN3S9eLb7pR1t7KEDVXwdZrG3zXzqgF6W9tpYwxmQFnGtGidL": { + "balance": "1083.702696123", + "bytecode": [], + "datastore": [] + }, + "AU1LNYGfYpoajVAYxQbG3T5URQY3p6tSLidgwnvmUMueqZ1gDyaA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LNc3gFQT5ovRKFhzGisotmhgHfzhnf6a7uMbHVn9DPX4f2DiH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LPBUoULCCPaWZiUJYWEHbWnzWQYi54upczaS5fn9YrvazTPfP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LPjmTuDwRYvfrSfeh6UkZYzgj3iMpfHUpB3hTotGKH5fAD6TK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LPq2h5mWzAdXfSjxruRESUg83PPwtLuM9PrhPVz5K5TdFEBPw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LQJuWDR4X5tY4wR5qGRxhaKJKNyEUJY46QUdWezHne1eHTtQa": { + "balance": "772.525188725", + "bytecode": [], + "datastore": [] + }, + "AU1LQLTgvvEnA83ocWixPApGNFyNqaWu9db7NEunMDmaMUXHmQi2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LQNDabFpLEMLqU14a1y6REXLARsQuoWL2q8TYnhPfCSDQRTsW": { + "balance": "1506.953392021", + "bytecode": [], + "datastore": [] + }, + "AU1LQNMaEDJCSEm7mQvdQnd7T9RCXzY84wJaqaUtaaHqJzYrTEBK": { + "balance": "71.281269213", + "bytecode": [], + "datastore": [] + }, + "AU1LQPLvu1zCH8K9Strreghc8Wibs91RDNArDrnzLvCu34Yosfai": { + "balance": "531.883421627", + "bytecode": [], + "datastore": [] + }, + "AU1LRHrGvmAzeGJeb93t9MVkCvhbmvtgt5cTDr3AZvJ525fcJWJK": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1LRRGs9weKsjsonipoSsTcypBAEPyEyWprZm7T9g1s1CRgm4jw": { + "balance": "2311.599763850", + "bytecode": [], + "datastore": [] + }, + "AU1LRSyMk35VZrTAfheKnwJWPRS6yL2zD8yFU28PyGY1tSQp76Qm": { + "balance": "2318.353293341", + "bytecode": [], + "datastore": [] + }, + "AU1LRYGxLEYxh9fnFvyXU8KV6hDUNpAPNG1nDwyLG1uEqZpwPDbs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1LRdCodMzF3BnVsToDxopaMDfn1LsUKopXNDipLrkVVaoeXWSX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LRjwX88BY8JWivEk1ZgAWFtrJ6s4ZohSmVgaTHbd6FrxtUTk8": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1LRyLnit9oz9MhoiKrnpp9wPjTg5mAN1EbDdULFnFfhVQFD4RD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LSYpX63KbwLgBPqn6UEEiFcU317HdCi1y6B6jsaSU1s7Ed43C": { + "balance": "738.924392432", + "bytecode": [], + "datastore": [] + }, + "AU1LSbW1zqs5o13nFJ6FZwfMUbw3rpwvp337bdiExrmZL9isgpee": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LT5ZfRzbFtvhUN8LZv9sv1B9UnsHo21d8sZC1wguiDRpfAqLb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LTJDXWNxYrSSVDD6uGVNFVqaqpVrseGcY4mQnU8SRyABpeRZX": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1LUMVpezzbZPPh5QxiyYY61TeoL1bmpckFne2BJTRUB2Zwmoby": { + "balance": "5326.110586866", + "bytecode": [], + "datastore": [] + }, + "AU1LUwFdtTv7WPF9oqDM1hSx9Zja2cJiSz3CUCcu7xQeH28Z9ewM": { + "balance": "1759.483002850", + "bytecode": [], + "datastore": [] + }, + "AU1LUzH6zNdJpHbFRMVz8GjcHm3oY69bd6hYaGgMiCgMaLtaoiJ5": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1LVYMgTN1QgKYhg8dFpKwpkxUg5uqnYbCFZMAxQi1ZumYX3aPz": { + "balance": "907.891624187", + "bytecode": [], + "datastore": [] + }, + "AU1LVeDjsZD2pEhszEerfMAj9QFn8AJ6dq1rQTofTVcTtnioiyLz": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1LVgrzpsdftmCJyYNmSquEwhfNqy4jVQwEHDAm7ixPE5qpLpe1": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1LVq6BQms8VLpBMDJpGdmgkVJFSZPQfmJgQJ78GLRrb2Zy4vQw": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1LVuWHmA1G1hBGj1Zvz7TFKzXmF89tzrJFR6zhWyeqjaepNodg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LWH8Fn1jywbXJxkJZAXDq5EVwvrJacmWtMagYLNVj612KaMST": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1LWPnJs1jki6LoK7SX55Qq5eowsjib8i7HYXTTSBAz5S5dTEyj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LWWaXhLqagDBbRL3mKZUsysrFKZk39RpBZL5VvchNqkKqvsx9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LWXwpAqgh4LNe9uhLf3Kvgga8HSdjqKtZ3dVGP9cYbS64Zgs2": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1LWtY5xfw6g7iBpLC8P9dojPNYmkJauSJHvS2JTBjsUCurjVdj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LWv26Ms9ARXmmCDzYkPPNqa1DDgtjM9ePWBdjDAnU1zTB6LjC": { + "balance": "915.243150760", + "bytecode": [], + "datastore": [] + }, + "AU1LXF8imwEtHFPNZPbmuvSDLsWr4deh6xrD6dohYgJLP6LDnHmD": { + "balance": "1744.988543434", + "bytecode": [], + "datastore": [] + }, + "AU1LYWWD2mvdJXj5gnHexPK9PvbmRBAWv6r9qtL2379WxBUosVJS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LZGae21E7WTaYh6HtiKRSuEuhBBHmKscL9n5adNhj3kTZz9Mz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LZUa3eRonnrxFHKBbTSkA9GQeoZfFQnWtkrpi219m2obEuyVJ": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1LZVuT9LibSzmpeRANoCvhvHtbda7C9AJX4ZgWiJj152nMakHK": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1La6QRh6T4LuxTksA9VtV76QEEMASfw1mEnwqZVcrrqmfTjWjo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1La8nGFJLcCQRu6GB8vjV4GxPTh5YZPiRoWU83ogW8RWipTPSB": { + "balance": "1605.894429189", + "bytecode": [], + "datastore": [] + }, + "AU1LaAZB8d4BELfxuX4nPUBvA5RoetUP8j5U21RwXNcoLEm6jsY9": { + "balance": "800.020078173", + "bytecode": [], + "datastore": [] + }, + "AU1LbEeKDAum61CRnNwWE9JnEVLWJTctu9PK9613D4G4aa8X4qYt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LbuPgz9PhBDa3hcTkLoerdSormSB6fzDWLCYC5B9YgFMwwMZn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LcE29uAzRQiDUzVR2PybWeXJv3nmtSY4MRpWhNQkvp8H5M9oi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LcaSAodaJuQTtAqyGTyoBXoeaUbY7PFNSu9XAJKidecWV6fgW": { + "balance": "1523.641887928", + "bytecode": [], + "datastore": [] + }, + "AU1LcsjVZ7YJ2BUDLzEkyPUz55aJCKXXBdWriKBxcybM5F73GHzi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ld7j7XfVhRdeJhe7cDzmKZfkqswMKtYvxkSuUDwBb6py1PZY7": { + "balance": "680.686758881", + "bytecode": [], + "datastore": [] + }, + "AU1LdLR7852SqRvLuqPPkgDS4W43D6SDAyA7H5JTR6ggby81esok": { + "balance": "2862.209224173", + "bytecode": [], + "datastore": [] + }, + "AU1LdS7xBQeUNAuHwLsPJgMHRpSpHBmZTZjDKtSdetYDkr6e2NUU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LdoPtjSMuZM16HXMP7qdioBs4aHeNT8XPMgcdaXdtPKYYSkXJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Ldz6rF6Au8hrrdPU2pYGzQ4rJAHyqnDbEb1nnNQ8eKJ3jMPpk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1LeNaKUEgSqrJQjPxMdvMCWtDSHbKCEm8jqSwCir3jCEHyJeT8": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Lf8QBVEWZp4vW3H1R5SqV1PGa3Ka2Ztemw63mVGraeAmQbfov": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LfKnZiqzLzdZcTG2QtEDvuVBFrw8Bqub7nGQufm9ZZQYZKbNS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Lfh8kj1KZBynUXytSGVgp3Cz62sk2UK57QK8abiXGdroZXNLF": { + "balance": "1051.495896439", + "bytecode": [], + "datastore": [] + }, + "AU1Lfi6xmjspVPKKbT7S4bVEnN132xtECgnCbszzUgC8H1aZG82t": { + "balance": "843.449631017", + "bytecode": [], + "datastore": [] + }, + "AU1LgKog1GkJWiCC9T6VnLuoYfYyJ9GYNcQ468KUJ5pK95TM82uN": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1LgqieDjhmuBQcjEZixuSNy1o9rYCjzY4xFbKhyGNZsGi3oPmH": { + "balance": "1434.820805096", + "bytecode": [], + "datastore": [] + }, + "AU1Lh4bqp45uKXDR48MPr3789wiZFv39FnGvCqEupXf7YMxASi6w": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU1LhJ7ZUQHANXfuZaQDmuUv5YxbMRJEDLK25wRja7S7WSESLiJ9": { + "balance": "66.665761834", + "bytecode": [], + "datastore": [] + }, + "AU1LhUnstn1QGf4QKHMzZc9P79AnpBCY3XiAkcNnxLyvSRfYxN1N": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1LhfJmamqfKjbbJRi4nk1aY4TdrFVavrTYCigegz8yCMoC7Vcm": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1LhyeumRMunmvXRA6DTy9HnjJFoLULxKSK79wRYzFDnzRYXEk9": { + "balance": "1503.988155038", + "bytecode": [], + "datastore": [] + }, + "AU1Li6QLq25SFkAzSKkbgdUKgKMPGaSeivRsKKBetxSNU12ptWgv": { + "balance": "745.752359771", + "bytecode": [], + "datastore": [] + }, + "AU1LiXoP1JHUxp89Hg3iZLqAvexHXzuWUo4wVq6iqn4cDqxKABWG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LioMBgJWEQ7AyTxCUUXemDGFJnXLWBR3BKsHxDeSJp1wsnziX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Lj53RagyLju23ADKs5Ly9CMdDUsD882AHiC5m3RpmgBYMNNpz": { + "balance": "1503.212054503", + "bytecode": [], + "datastore": [] + }, + "AU1LjUVkpEYvjj2BD9pBYwmpohisoEKW4348nNDohtKk1gUyeU6C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LkVnSqUmSjDSMeUDsRd9xiGjVWzSrU2mNLzVyEZkx7Qft2LvL": { + "balance": "1481.956812325", + "bytecode": [], + "datastore": [] + }, + "AU1LkxoVvMPjjLSj5VgQvdxJreGNPwt723ED7ST97bgTg4hQ5sSY": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1LmeU6DarSeJcQ6qjzqSUH1JqjRUZNxUFmXyXscWxMzj6BJyzs": { + "balance": "1434.173378467", + "bytecode": [], + "datastore": [] + }, + "AU1Ln4rqouS9PU2dk8oDGmBg24g435Tu1X4XJcqKj5zmrwovLjg1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1LnYL1cAEjQYz4bFdh9K6jQPWSn4ssrfufKqLSMgrVxxmiFiV7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1LnhsrTkBLqkjyssYbX1N4tA3hYtQD9CoLkGHpoMWZDmcocRcM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Lo6c8r71yfrGLkMTKeGvHnSL9UmBsuDoYw5PfvcYdid4hDEaK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LoHL8zo6AFvTdM3Bakj8jTeWchxFzC5uwPuon3itemv4xDUch": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1LoTSYxhbtueySVDatXHK2B4obnrqeuz7c7Ge87KX5ZnqBA9hs": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1LokY9mkhgWkxpsayaZzf61Rc21wN4ZXfL8je9cU7zbygFGDjy": { + "balance": "203.137147354", + "bytecode": [], + "datastore": [] + }, + "AU1LoyG6NR1Ph2wQsJWXPepd4V6BcYBDFzbao95fYwxiYLBUQXUv": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1Lp5565UHTHzU68AZf9J3Eup6PfHTvCbuqTxHoQXRTfSSJE58e": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Lp9BmsBqitrwvMtv1TTMTtnrFV539bLxKBF7TLnmid52ixYd2": { + "balance": "2311.963380025", + "bytecode": [], + "datastore": [] + }, + "AU1LpCMSK3iKHd79KT7YoSwZZd1hvybDDFsNfMQ7YxHpTECigwE6": { + "balance": "896.738348582", + "bytecode": [], + "datastore": [] + }, + "AU1LpFR12hZ5Vchi9pEmf6N9NCoWqBUqVZ4T1FF2ncddC8EuEhkw": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1LpX7hai2VgwTDnNiNLBxAV9mH9dpiBpLRrNrVpWNE1z15UqnC": { + "balance": "1268.209540470", + "bytecode": [], + "datastore": [] + }, + "AU1LpbUV3WcWNBfoue3XHTYexD1xHKHAodewVw28PGmPSfFatjve": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1LphTnpEhUFcX286VncRjL6A2bGt7C2wP4323w2nerujQJsNLG": { + "balance": "3262.128356368", + "bytecode": [], + "datastore": [] + }, + "AU1LpvSzUsLqCmFEpYjnRbt6KBhq8aKkjzF1rUDUeBk5TVNUW575": { + "balance": "2931.516923733", + "bytecode": [], + "datastore": [] + }, + "AU1LpyVdWxVJ6qjpYGzcAUjaFdt5CK89Hc55Aq9ZLSV35wX5P5Kx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Lq5xEjAbYGsCa2ReqdUbVH4wCDinSqWHiwuTFtRAU1GebVK8u": { + "balance": "4669.326538313", + "bytecode": [], + "datastore": [] + }, + "AU1LqCoTf45f9uAoTvz7t5yAiDBFdwEu7h8r24WHn59fVJ5aCMew": { + "balance": "1537.176046712", + "bytecode": [], + "datastore": [] + }, + "AU1LqFD6iq9fCFwZxaZefpCndtk92evxMezcbhrdbQQaAb65MLkC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LqHGPi4mZEJ3jUaHLhuGcgQfyfjcr8m31cTVGinAxS1CfgoAZ": { + "balance": "2184.220070012", + "bytecode": [], + "datastore": [] + }, + "AU1LqHVw1XYLqXaJWYNF1J4HnAHvYDQLS6HVhHsBcyz6AmxGx2h4": { + "balance": "1931.126205282", + "bytecode": [], + "datastore": [] + }, + "AU1Lqn63QrBzaBRZ4CWdPkT7NXXABXkGvEFgKR2FKza69McJcM19": { + "balance": "1975.900168881", + "bytecode": [], + "datastore": [] + }, + "AU1Lr3UR1VmAFT6y8Y7gAFg2BzWYLzbkRooABHrVrqedU4AqzynM": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1LrdEDmcNfFrBjarg1JpMJSsw8TjnNpiKo7KKjeuX4BGUWqdD2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LrkDno1VB1AAopchugYvxBH4K8Ru8HtmGDZh8EB29APUP2Qus": { + "balance": "3696.215402799", + "bytecode": [], + "datastore": [] + }, + "AU1Ls4sfW6eoPTfejjoojSQhafkSNF6GDEUuPoPVwkiXswN3Hg8S": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LsBjzTM1zetttgbYmAFLpQMQNoST55553HJkRX8FoBsZyjjKo": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LsBnNDcn9EQ71Uj2FgTLPKAcpvP42Z6xkTNRvVnqNNY8jUce7": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1LsTZfvy5mr9m663jAGrNRezbUfmYcycfTHwPQR5rhqckChWPq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Lsdn2QaFP88exhXmWvJDztfHVwmA7hvFpv9b7esgXG5aR9EZJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1LsmKnBdqihN6We3SuLVDTpL7EhfDZZ2j2qmtf86KXRdGfvaRG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LsvgWZar4B1CBMQLxFGygPy62KDpi6R7rMNtgEXRnxJs2c2CA": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Lt2J657WL9G7pEfxTGSN11xGaKdSEq7j7HAYbfrA2TLz9fFUA": { + "balance": "278.155436657", + "bytecode": [], + "datastore": [] + }, + "AU1Lt3MY7QjSndWL3ikakVBLFzAEyGf1DKfzCVXmqBd4PPpanRFG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LtcSLmNjp7zN92wsYX4Erf8hhrjpXyu3rX3DHdiiWeA5uJQv9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Lto53f6CVdN9dCzgnromRGVeyUZYUZEURdovHfMB7VEwvcWB6": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1Lu1SRmwrvdV9o2TShiSkEi8ukU6MxoKwHZUxV51MnuX729mGc": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1Lu76daMUs44QBWwJuLeWr4AYfuFB6wY3CZM1ta2oGTd1k25qV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LuJvA2XTBTW4iKDT5oqnBWXx2sgmzx9g1XKWExqV31BKo1Mdz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LuPghfB3D4Wfxg5uMPx6WVL2aDY399Kybj2MQyuzTRYLpYP41": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1LucVZpn7JUf3R4hX9SRGtVLkTSxFEc2oNQA9wZMi6E274vPgS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LudbWoGVeqYS6vY9h3X74QBr4XVzb9GojDT7PrQ1ohbgfxiAy": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1LufzwEfVjLMuVGbUZUJcGnjVJh5YD9cdrMfgt24SirqvvwBqu": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1Lurm1eoKKXvPLttkS2LQznxU1TYMi9B3YviUbHzEsw7w52ziz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1LuysaX8vHLEWsPQtExSGVsLiCMPG6oZfeDe3Ngcuov7ZPEgfc": { + "balance": "4085.117469145", + "bytecode": [], + "datastore": [] + }, + "AU1LuztgCjVkqpZiwphZmP21tYstd4qV6gbjemSzBGsgPwnZvnJQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Lv1bzyv8thdKBKofPqPLppg9grAsuWZPN2wvriCaJmmPvcdCY": { + "balance": "2186.637916367", + "bytecode": [], + "datastore": [] + }, + "AU1LvMxqFr6UQUuEVEhjPQQHBkMn3bNGez6yaoVuA16oHpnXBUpa": { + "balance": "3823.806568087", + "bytecode": [], + "datastore": [] + }, + "AU1LvVuNFSp6rqTxhYXNQMsa1Q3YjZvJAG64KC4eqmxgVkP5yYXM": { + "balance": "2039.512082545", + "bytecode": [], + "datastore": [] + }, + "AU1Lvgsn6gFcbcA6Pb7zVFREgMyQf5KqSqYtdpXhEKjng1rashbj": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1LvhqgV6Ri3CACvUKJgHjiaxqCsojKmSAwr8bM5MQ5kJpKBbMh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Lvj8FxwQCUa1XUfFqGEvvhDnn5hjut5HwY2QmjMMXgqjRfGi3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1LvrnESrsyrDrK1AYm4wsZT3pMr8RBpFFQ67Pfw6ShmrT5VaeT": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1Lw9S8rbi93obKTQ1Xp6JtjidaaRWZ5K32bv3xYoyAG1wzjRP8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1LwJg8XdCTcQSmCTnG32eWCJSqSZmnfuAYACxV4d1FaRxYpcQn": { + "balance": "901.824200517", + "bytecode": [], + "datastore": [] + }, + "AU1LwtaHkZuEpSoPDTacZAjUcWc3GZXUaEZf4njPjYDcTbJzq3YZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1LxCSKQMj7zbaV8srXMYdQ9H4wMr8F3kieps6oQ78eGWYfnyCC": { + "balance": "1565.327718083", + "bytecode": [], + "datastore": [] + }, + "AU1Ly5gwAVk4NuTz7bVofuV4ixuG1jCn9KnR7rVw1Hiv6MN3PmQV": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1LyKAoMdHqQNXRq8LxDVv877G1x4XNhh1z6eg9vhN1RPPVR1J2": { + "balance": "812.702271252", + "bytecode": [], + "datastore": [] + }, + "AU1LzjW6yooDhRAxxYRXvhjSErZpEZL42YGNx5MRDwCzjM6ufPRq": { + "balance": "70.397344628", + "bytecode": [], + "datastore": [] + }, + "AU1LzqdiNNoBWkLDqA4sni5wcVQkXJvix239A1ju9oVaAWn1HDJE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1M19EQV2Fsnz1ZJDfEdo6sWFtpN7biRpFb5iYGjdtrDDZFVmLq": { + "balance": "5122.506152484", + "bytecode": [], + "datastore": [] + }, + "AU1M1RTeemiko7EaN2XwruzE5yi5DaHcstbYejQXCqe7CkJMPxnQ": { + "balance": "4080.039342239", + "bytecode": [], + "datastore": [] + }, + "AU1M1aTGgJy7icmWM53UnPYazij84uzQ5AMnUj7oYEgiTAV6zVor": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1M1oPt1KV68YADL1nsXwWEFiWCMdN7u5thkgSiM8Xa3h5qukDw": { + "balance": "6133.967274289", + "bytecode": [], + "datastore": [] + }, + "AU1M1x2mXqfNL8shcpaMUTfc26za8GwzX8TeyK6KtpojDgVJ2zpH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1M237crt6MNZABoZBXAFAGtQEujUYZDCkKo8fUtaam357s4XKG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1M25YYnU1mcaRSeSSi5WLbf5N6Dpo8xRY1mhwKcSka8EAQPym7": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1M2BWNBsGtJw29cVmGvuhZwR8Uox77oBX1GJBJED1Drb2ARsbm": { + "balance": "3886.722178386", + "bytecode": [], + "datastore": [] + }, + "AU1M2QhBU6vGSET4GVNBtUTpQJ8ybGUpQproEKLgANLhJ8VQcFGh": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1M2Wtrr1h9iJJdBu3waRwaEJRF5ZpH6iiMJsU1HVdFKLxontDd": { + "balance": "43.028494717", + "bytecode": [], + "datastore": [] + }, + "AU1M2moutmwSg9ArEqnjnAMBG3yoC6LGYL7zRiAagcdGHuRxqNGE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1M313vJbwqJV1FPMhZKRGQD6FtQbYdg69DfpLKJmhjGY6Wa3q8": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1M3Wg82Cwo62SwB37AvPjik6fev8RWm1Tba8CjhdyQRA185Uet": { + "balance": "202.874479812", + "bytecode": [], + "datastore": [] + }, + "AU1M3XxfHVZC4pbjv2LNH139EwK8py2yJRTRD8BwcYy95YeFp7d4": { + "balance": "1650.970950352", + "bytecode": [], + "datastore": [] + }, + "AU1M3bRGQGRb5xYfUpHMpzZ5Ce8Y5PHexcFh1gkXmgNzbkLSNFm7": { + "balance": "3629.895599527", + "bytecode": [], + "datastore": [] + }, + "AU1M3rt3TW45BXBiavjynhVYLJmdsbYWpdafJtvkBmuTbLJHrh3x": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1M4DFdVNTusUAMCo1sYAVvpmLs5dxDU4Ay1yMM7cFKCPfXdDJp": { + "balance": "818.980441648", + "bytecode": [], + "datastore": [] + }, + "AU1M4MnxaXXg5Tb1iVPMMoggVRDVKEUCgu7s6vtxcb9cDCNU5vDw": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1M4duAr7VsXXDCRLuPNjCvSy4gMYvn27fBCJyp1sckaMm3uq6L": { + "balance": "985.416246530", + "bytecode": [], + "datastore": [] + }, + "AU1M4jz7qsXkRLcSpU3HboA32153tTu9cvz59HRMyAa3auEktqkJ": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1M4sXpjT5D7GiCPFnTN1SvjH8jMNhRsGz4AgGGFKnzf9T9K1so": { + "balance": "1361.513673317", + "bytecode": [], + "datastore": [] + }, + "AU1M5LcxD5goxjF4FcEZUGna9fyu1M2NXj9uAL4DQnDgdGTahuM5": { + "balance": "1479.811373650", + "bytecode": [], + "datastore": [] + }, + "AU1M5eidsWeXVQzkBTSUExsY6rrfHMWq8VFEFiEjPPskDiYuPqCB": { + "balance": "2866.663884263", + "bytecode": [], + "datastore": [] + }, + "AU1M5gQxqp3BgC7qp7uUXgKdj9bpfvSBPZ42gv3tAR7AvSutw1jd": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1M66UahggTEDxUaFMcMeQBAG1sbsKFJuj3rVXW7582ec31n9Zp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1M6HYPhkHaQwBXRmyizQT2hjE3gg5wEJBY6AQxtULovwa955fa": { + "balance": "647.003975467", + "bytecode": [], + "datastore": [] + }, + "AU1M6UBqLSL718nqUBwcYjGxxevg5tSJPF4HKs3KgvGfp87cx3Hc": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1M6WAuWnCaBY8ces4AmAFzoqM7XPSc2XeQSQVfoAgaRXyzPytS": { + "balance": "4886.785464144", + "bytecode": [], + "datastore": [] + }, + "AU1M6pbesfzCGZgCEfgC8SXEvjUYgTf3XdbpLzhxxMhoiggQEVw3": { + "balance": "818.428740687", + "bytecode": [], + "datastore": [] + }, + "AU1M6ukBMWhWQPabWZoNSzewsJ9bcG5n9EbTMQw5DdvFbY1tVQUA": { + "balance": "2820.710834296", + "bytecode": [], + "datastore": [] + }, + "AU1M78fDgtSRcWg8WD9gGVvcckqzCTxtZRWxM4uV5QuyrR8188Ri": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1M7CMreP5kCoSSU8KNxdfumVjvGYndwuGyRHMBsGs6LeyMWvYY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1M7JnJtczJhdGLufj71N6WpNupiijhzJomSFgL18DrjzpTkx8M": { + "balance": "902.168750372", + "bytecode": [], + "datastore": [] + }, + "AU1M7KNknsSNo4pBNh1hHc3ekwnaqaB8YUQ5MheDUd5nrmSP7Qz4": { + "balance": "4338.055027349", + "bytecode": [], + "datastore": [] + }, + "AU1M7W5ksDGjyDGakrMGoX9h1XXoMKx9c1nYNeXBBYZ9wPY7uyE5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1M8V7krcSZRFNHs88R1wkP9XAv7kH16EMUXnKrkfH4D2A714qu": { + "balance": "4735.768053857", + "bytecode": [], + "datastore": [] + }, + "AU1M8aiLH72ihNEcKjvwGFLMvCZPUJUZuTd5diZZoeUDFMGJe6cs": { + "balance": "1735.571855718", + "bytecode": [], + "datastore": [] + }, + "AU1M8bQ7dmtCxoGmguQ5JnW3XgM6Gwzeg3XTxtzKsBu1U83keTVj": { + "balance": "2981.075457186", + "bytecode": [], + "datastore": [] + }, + "AU1M94WguWLTDNqmKasDfzjAHEt8nVGz1pFwe9gf7qE3aNmAeNPs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1M9CG64EzgyXXQZyspR3qdRfp4beAbo43LJJK58PkGCVKHfqJs": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1M9n2yYGLK2wLKC8EmCXWtpfR1hZEZf5fEZp9G1nUEqsBy5q6E": { + "balance": "1228.526339260", + "bytecode": [], + "datastore": [] + }, + "AU1M9wqLnk7T2a5GtT3jh5ryJrcBRsDzgYMM8wFcuvPQGZjJekhZ": { + "balance": "2295.035426239", + "bytecode": [], + "datastore": [] + }, + "AU1MADGFKHHsWMP4eJ6UT9HZc9KYtpun9ZiUMWidHXfrf9jqHNAw": { + "balance": "212.106575629", + "bytecode": [], + "datastore": [] + }, + "AU1MAKV6T6WnWZMcA1xQcTChGgB3Ke1yJoCUkc2g8UaGeQCVdeaV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MAiqTHekEWDPdf2U3EWo2YkTgs8oozXuEtRg5hHqrYvwomte8": { + "balance": "862.432375311", + "bytecode": [], + "datastore": [] + }, + "AU1MB2tq9KQiYBQuM8dcS5ArD1wnFzQrLoJRYALdvWzfggxLqGuw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MB32pkjjWPSXQpTL7KQbkop6mKkaERDjcQjr7Tm4NR1TRivsy": { + "balance": "81.689253924", + "bytecode": [], + "datastore": [] + }, + "AU1MB4spQTkmmGpYhjjnnmzi6SLKwPYECsnmiQ7Bm16wzZTuB4Bh": { + "balance": "1191.495963914", + "bytecode": [], + "datastore": [] + }, + "AU1MBFhxQeqJr98tPNY9AKQqMfFLv42fTKBYVLxPmnzYSgbChtrj": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1MBMf9kRCNaNuZYQQL47qrwpkCSjw2SE4EU1ofcgwAMkAvfrPH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1MBpgkYAdmtzsVptMF8uZfUQXRA7YQGV6LYsmYW1p8eTRAdjKi": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1MBubkGqjWnpkNPXa5cZvc1W8zUyudMori5WA7bycwQRPAXbtP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MBvjdmKZW1taCvXRgrmhznMmnrseQrpPSPeBRYFFdJg67RszV": { + "balance": "3357.810940719", + "bytecode": [], + "datastore": [] + }, + "AU1MCtM8VgAuKoLRPz3gkMcpzd3tUtHaqJmGSPpeACdTgttwqnuw": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1MDGbnzhX6i44cxxNf3ghWou2KfYQ7cZ48YqtNnXCmNCtpTS4W": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1MDTT8UZBcKhWrKN5EQu4U265jt1mGKxD5ZdW6VYg5XjY3VX1s": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1MDThoyZDovBhyMshXYoB7SeiLgnUV8bJdVAMjF45UrDhdyqsG": { + "balance": "2574.936056171", + "bytecode": [], + "datastore": [] + }, + "AU1MDwXUoEKqyNBYgQFBondGt4HFRwjausP1FP9rS5iUGyka8NSP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MDxgochCcfN5sfEyVMQDKBMDZZNBWRJb9dqwmc9m1SEztiUhS": { + "balance": "2888.878350215", + "bytecode": [], + "datastore": [] + }, + "AU1MExvRGyzxQMFhD4tZUcgZEozyYqz9sWGY7xQN3XDu9Zj14Wbr": { + "balance": "1784.698041573", + "bytecode": [], + "datastore": [] + }, + "AU1MF1tHLcnqC3EN7WQKyXJ4cBf1ZCDe99eZEBvCpkvniw4dGvxe": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1MFP4eUnsP26FFj8cP9EPgmibit3iH28FQGJEFS4fedER6NLkW": { + "balance": "1585.571554737", + "bytecode": [], + "datastore": [] + }, + "AU1MFW1bwQiVbD67tg1fBjGm3GNw3594BsuVkRW4xXHYuAMop6SJ": { + "balance": "4295.129577138", + "bytecode": [], + "datastore": [] + }, + "AU1MFx464AbtNCjQ315SjgN44PW81nWkhxYJkSG7tSC15sczV4Sv": { + "balance": "1618.604374520", + "bytecode": [], + "datastore": [] + }, + "AU1MFxTjnddg63D1osnuP1FcykGyYJqGXC773sW5FPReRaWhrEhD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MG33Z9BBE2yYvjD41b3WbZ5KC3KTE9FbwDUxxmQWJcBksKfvZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MGEb1T9Fdm21ZvABV7dKMHo5uX4KgC96yDG21DLciWXT9P12F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MGUfYsuYdAHGsYnNpY118JHcfQwxc5Zu4za1ncoHzUPxCfA1X": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1MGX4i9ntqwDT7zW2PmfHybbqzxJ3TrAdSgpfFyNghKN7EVJjP": { + "balance": "333333.600000000", + "bytecode": [], + "datastore": [] + }, + "AU1MGfPr26wsQgS5tu4uEqy5HtHRUBKGp6JzxFgTGpUgQxXLFHn5": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1MGmqFFZMp1suD3PSkM6pUEHbproB6VCzP2qE3PMQcjGnn4DXx": { + "balance": "1572.536847922", + "bytecode": [], + "datastore": [] + }, + "AU1MH7EiWoTgPXfx6iWg9BYDxiyEoxoiiaE1QNHVmyprKtdpyMzR": { + "balance": "31.725802064", + "bytecode": [], + "datastore": [] + }, + "AU1MHDsy1cnx1b9AL5NovFBab6Eg347SrS4uJkdH4fvgr5yMe8cn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MHLrjzMenvGE7f9cdu8JDb8GV43QUDjMso1ncmCQYnKULLmff": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1MHkPpPyCq4eAWY1iSopb1G9JQwJXgWS2kFwz8sVCHEghxwRg9": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1MHktgbDfpLu9diJMrHBbLHrgCJwFkBhS1QsC1J1W4fghGDU6M": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1MHsknM3WXAHv761b6o4tff5ejzJH5WKGgzbbhj35NXR1WomEE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MJ4vA96NWx5tHDnpYuLXfEKXpv1Cz5oL6i4Tm98WKmvr4Mci3": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1MJ8ejbp8oRnjDav9aDjTjELpwwzRs3rhtzR5tiKNrhNVE6eXR": { + "balance": "1439.022041469", + "bytecode": [], + "datastore": [] + }, + "AU1MJJNSMQhD7trH6yL6DxiFBWfo2FWeouHjH4kkvkfC1PuRoS3P": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MJTTdJid2FHn6eZ9M2kx5zGaNdrGhM11RCafDNagV9HWsN5DA": { + "balance": "610.468617768", + "bytecode": [], + "datastore": [] + }, + "AU1MK2PkBBgZQV3swe2gexhCos9Cee2fhSDCLMDAtfg6gNRcqfzq": { + "balance": "891.586925238", + "bytecode": [], + "datastore": [] + }, + "AU1MKksWZfA6Y9nrqRjNqREQyL4yCeiggHUaSEbgk1nYi2emj9cs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ML2jCLgUFYRLPAdbhf2oMNoEMwFeTMp9zXAXUaPZEYGo8S1hy": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1MLL3R8B13cvMS6n21Fbbkf8JAFxrtLBqESx6ERkhNw1EkbdpU": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1MLXFDXjuJ2UDAtzA4qtnMmR2ivh8o3ECh11KAskcpzXVZdgM4": { + "balance": "2131.086721800", + "bytecode": [], + "datastore": [] + }, + "AU1MLXUUJq9GyWAHr4uS3QWZacQHMUDuubP8CttG4Z8TmehXWfq7": { + "balance": "2057.171753163", + "bytecode": [], + "datastore": [] + }, + "AU1MLnKXTk2DoaBoGkhQRB4rjr5gbpyKcCjzFoNML9oZcy5fvGS4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MMTwfRB1btEZXCCcVuCJixDG8gphgfVo64ZY5AQVJz4zuEKeC": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1MMULfRKnvhA3AFnkrDShPZD9FnZ1HAgMVHCFgVfAEr8P3uQng": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MMfcga9r2rAsuF5U2hGG963inY1Qu13ogRpcHd37nXxMSeYdZ": { + "balance": "1121.512321752", + "bytecode": [], + "datastore": [] + }, + "AU1MMmagKUSzhCMR4XLjQUMpr31BCoFooBcK34ynQ1aihSvqkrZ4": { + "balance": "3153.828474918", + "bytecode": [], + "datastore": [] + }, + "AU1MN3qyvFQ3Tc6VdFoCbHHhwXbqxV7u8mzbpbx8sgiGm7GTTaKD": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1MNKfVGReJ6N54svY5EZLuj7CWnLuhj4cbtyjRd7qooZz21g1P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MP6wxCF7i3t1BK5SsVGHmYvLyjEDHbM5hz3FFoxJHG3DeQXMK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MPzwjXayJuSa7B4y41eWXoGUC8NX6LUuFDyh7RN4x4j5cN3St": { + "balance": "792.017513599", + "bytecode": [], + "datastore": [] + }, + "AU1MQ53HusXCbNsQF6t4KuJweXJYD4m94eECMjns6UQJia5ifK2Q": { + "balance": "2035.695653881", + "bytecode": [], + "datastore": [] + }, + "AU1MQ6QDBMqW2oKaZwqWcWoWHuicS91K7pT2uCcZNYyzxc2SgFVR": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1MQ9MqxuDY2aDPh7cKEPfH9iveUiTLVMf3onj97d78sarNj5Hp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1MQBYhG3BN4PXRFsAoYGzWC8aJn2URCG6veQw6rEMXfVAMYE4k": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1MQCmAikAiP1kddePe2gbCLPkEwmDkt3mevkahmfWfgaVh2n6Q": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1MQHXoMtD43Z7pJmKmsFLAGiunGaBpu3kWFmgjsJo8f3SNXysV": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1MQNQb4Es3pJDE8q8i7rCDcyDh7bczZfj3bQvPgBFtayGJSgDu": { + "balance": "590.606346656", + "bytecode": [], + "datastore": [] + }, + "AU1MR6McQETZJcDozU9yUhhhf4N2H55D7G2ohTS3uQA8YBuZCaRH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1MRK5bJG5SzDt5zrG9fA4X6Nyu3xKkNwowp9Eb66VwFs8Vun5t": { + "balance": "2295.777470040", + "bytecode": [], + "datastore": [] + }, + "AU1MS6xPyxphfZtbLFmtEnFNDweVbBW7KkA85GhhFrDrQriEKqpH": { + "balance": "1105.893656487", + "bytecode": [], + "datastore": [] + }, + "AU1MSVQvjmLYALkQAsw7itqu27mUpy1BPptvhULGNdgAUbuyWVKT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MSsXLVf43C8maxP67n6AVY8HsAwVoa3HUwSEhnYv4wUkKWz4D": { + "balance": "657.125393480", + "bytecode": [], + "datastore": [] + }, + "AU1MTcXjoHW9UksYh8gmtdNmxbTjB4CoZKEVgEreNmYDr9NYaJKN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MU4cQwAD7x3UkmsFrPTw8sCqCU29gRw5NaPozKHW7r8aZBcBK": { + "balance": "2097.697686748", + "bytecode": [], + "datastore": [] + }, + "AU1MUFNczQurHMtMVcwCZM3aBxwQJuUuokxCrJ4S6HEf3aScD74c": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1MUQUvfNHiE8G8KpAuEXBXnHCG2zXXGNCC4o2TBmYcA1sHHirS": { + "balance": "2113.571834973", + "bytecode": [], + "datastore": [] + }, + "AU1MUgrpHvTNnJH5W5MeG6bzTLcNMzipiQkBWXvZTgAk1Mb4rzoP": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1MUpEWs4ei6H2F5mC71TyC9D9DHZ65iG16H69NYVtdVT38CxQu": { + "balance": "1419.061272498", + "bytecode": [], + "datastore": [] + }, + "AU1MVWeNTNHPgjYK7XKifg6xx4rTV4MAtsbrrNdGcBv7s6YVQSNd": { + "balance": "1774.781921383", + "bytecode": [], + "datastore": [] + }, + "AU1MVofufsCGJC65SQVxyojPJX7f9sLTVhLsBtRXxamNhmV3Njmg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MWEY97RGAktXtgP7weBGnLcMFPTyHaCrQVm9EDxRwCiAnL2BK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1MWw9A4UvNPRiBvwUvj3Esdr7T7MdEm4Y8mcyuWDgTVKkMvJLE": { + "balance": "2218.451225251", + "bytecode": [], + "datastore": [] + }, + "AU1MXBKgT547umFmA2mWZB72By9wv88nzD8pwWSMXhDkPLayvu2B": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MXS7MEea8E4sgmzNqWnWpGTYrpg56ocDY7A4iVFU3fPojNjhY": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1MYDbRwq6HRGxS5wZrmyh8hn5a5sHBzu2cpPfXp7HCA5QRD64K": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1MYEHLHLQSiVrfR8mwScgdiAjySvoTWBSjDhvAHmuox6ruMryF": { + "balance": "1098.098345307", + "bytecode": [], + "datastore": [] + }, + "AU1MYGPP7UvfxWDxAkf51TUQT5vih2SKM1FPTDCzu6iAb6JNbEDb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MYkdhRDVM3GWoeohDpXR3mjpaw43Wo23oVVqhNyUwmF5h6987": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MZ82v3fFsj5PkHXhpv1e1HBQnoc7oGMMNg5hBqGV57HiKdX9o": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1MZ9CB2DojnGK3nEfxBk2DWvWWbeD3KRjdUULcNCw2kiycetu8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MZRr4hu1BgQoCoZpQTkSAcfyrCZN4e96eMD8o3e1zEXbMJEbv": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1MZfGbGtidAuuZhqEMNt3cSc2fWBfbCZ7VzfHBM27i6kStwgqk": { + "balance": "1846.399828870", + "bytecode": [], + "datastore": [] + }, + "AU1MZuRkKsghcduuvUMNrL7dyvhHsuYGydMJwYUEzigTwiu3AMQk": { + "balance": "2730.705880602", + "bytecode": [], + "datastore": [] + }, + "AU1MaY4ZK7dubDy4qbC9YuPkvXtaHaZsGfC3tecdEqb1TfKxRDkX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Mb29NzFJBqXdFU5SGzK7dJL9iJ5HJmxykiCp6S5Nr11gbeiH3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MbFs1nu4w6fMevNp27T7z86Yv4tWUUCMEf65n3D7JgJdCCUqi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MbSAV9sKy3mN8a87T1qzPHh73HTj7Vi4dHRNkRhZG8oBF5QbA": { + "balance": "1532.430584120", + "bytecode": [], + "datastore": [] + }, + "AU1Mc6z8pVwrz6CrqteX8wXyDJXnB6a9nkzv5LminsmMbtm8ZmJi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1McBWNNZizhp4auEE9fUvjpzBDajR8ArpFUErswzMWnqkakcPi": { + "balance": "1092.309908432", + "bytecode": [], + "datastore": [] + }, + "AU1McQQGPYa2GWP4YKZjuXZQ81DmqC6CXSb2Sh8D15UzfdTvyJPV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1McyoGZfaynyXGGy1JGEMc2gJbgUXMwwumRfAEUxKBLzeXwVUC": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1MdTWFoi5fSscqg4uDaKsTYvkAhwrV5DFXuSTyAFJXVDYMZAxE": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1MdfPBHpDYWpMZCpvytndBKDxup5joFgGhifr1BTvWFUcJ7dUt": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1MeFHWwHwjPvj9N3NBECEa7sZ1fKSNhrBvAoeTS7utZFCtfB93": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1MeFrmF5HcPydHNRDAoBsjNkZ4t3G1rxMeQzErnZ8NYHwK9wsK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1MeYznXckzyk8zZ7g6XDaaw5L8qCcr4iwwdUSuGbRpzfxqzSW8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Meefia2Y6ekrn25pEXGxj8FFYe7JJ8CWnQUu8Ut74Tv5ye7Kh": { + "balance": "1633.036637887", + "bytecode": [], + "datastore": [] + }, + "AU1MerA4sSkDwMFMjVmj62a424y7YpT5DhCJeeQPjqipgmHNbQFm": { + "balance": "1252.849489076", + "bytecode": [], + "datastore": [] + }, + "AU1Mf8uB6BDBizrX7e6ySMjS3FYtRkGSrTqUz8AFG78c1RttyjFh": { + "balance": "86.109011134", + "bytecode": [], + "datastore": [] + }, + "AU1Mf9dds46xXEYiLubdqgszWHXu3p9Xy6HsiFkmZumaC8kV9WVm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MfGJtxyz8Jj5ZMfupwxgYCejkbEm99YntgHBrCoicFw8sZWMK": { + "balance": "818.686889355", + "bytecode": [], + "datastore": [] + }, + "AU1MfSeKCghxzWj7vXGtadTUnsfniGAVP9DKmJqonu9Mjyoe57eW": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1MgHw26HZVDfEcjZ8RnrSjQQxpP2enY8ZHPSDcKmZyFNbyTS5y": { + "balance": "2624.543331934", + "bytecode": [], + "datastore": [] + }, + "AU1MgYnjxzw9Vc7UBT6aQhJUxpdTyhwk11HTETcsHkjb7LJ7uKDi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Mghbt9MJDjuJebphrsibrZYsKhxb4nzoYxRkJ9JUPwptA4QoJ": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1MgmSQsu5NhW9LFs11oBaNSGC72hUpfneoVnUQdvwvHJKrbtke": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Mgno9Rj7mKnjmUYr6KvC8QFYgRhGw1Qc4KehsJoaiHdL7DA5N": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MgsbyqptSpsSoJcBtgdnCZNBruMiX118bqAcRkaiaP1wKvPyV": { + "balance": "3312.895335325", + "bytecode": [], + "datastore": [] + }, + "AU1MgvwG39iVHhazeQzY7zqSLKadCFuk1upTjVvcQbU2DNBxtQHi": { + "balance": "1738.081446407", + "bytecode": [], + "datastore": [] + }, + "AU1Mh383TwFLwR2VCqHnraY39jp6AgS1mTUDXxVCzFjhkWzZ571f": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1MhFoSGJ7vjtsnLYi2GpjtNJf59dPtKPe7hh9RJDbxK6hcDojL": { + "balance": "1249.414340140", + "bytecode": [], + "datastore": [] + }, + "AU1Mhi18h61r7XTug18eitC8h5N5qDGinkHDk8EFp71SH5BbiFc7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MhopF2baarLodL83ndCGi5gq2RA3HSQX3TC5iZmQifd8gkgqG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MiApxMDkBF31nEom7rH4ytRy7HKmZtGqY6Ext67QynwuHcoc1": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1MiUCyVkUyZAv8UNJsFwBv3fHaBNuNR7nnZUUzkcCYuTG59jGn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1MimNxE6EustXBgf25Xus8Sp79pPw1NEpZezsTGZ7Qhrw86eJV": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1MiyXrYmYa6aqfM6vK11wCTDtjrJSrcpcdLR3fPekxMd8bDFeb": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1MjZvMbG33yTZsk36vrVeLLXRwvgkPxzphFsiZRUpq1648fvrE": { + "balance": "3049.388330531", + "bytecode": [], + "datastore": [] + }, + "AU1Mk63Y7eAw2PSoa1iiUAotAxhK2sjodaoEV1eJbPfHkfgXDVQs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Mk6KhSyZ4TLmL9cW8ySg5YaG62QGYKeo9deGF7r4Gt4gYpx8p": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MkHWD6dNkqj2F6kqtZTo9K2pweMeG8EdnRTQQNGn64N733xoX": { + "balance": "4083.906781126", + "bytecode": [], + "datastore": [] + }, + "AU1MkJ5NetBkbRNoQFfZ3CriTwnNTNQAL3J78HtZQ95K5EeU3sp2": { + "balance": "4645.726027406", + "bytecode": [], + "datastore": [] + }, + "AU1MkXAtTqSx5XBPT46nAex6TLURtdVqy3QL2oKnFfk7FsVLbmQF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Mkuv8fU79LdoogQpjzyDrVm6UqU63eqBLLx5sYAhT5T1eGSgW": { + "balance": "69.012584289", + "bytecode": [], + "datastore": [] + }, + "AU1MmNLUMAPwYpS8g5NVoLFrfQjEvkaBwUPSonQsLVajznA6Hzbw": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1MmYRwb2hdQ5s5s4Y9z3CnMKruZpzwVfYNZmejXsFQZtCdCbiV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MmhWCkKqMQZLd4vho7KLHHvMi6sZxncRtuFKEuhyMBg29kh8E": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1MmmbGx2X7zdwUWU7Bi9VyEfvCZ1yxAPCiCk8EZeZiq84vAVFZ": { + "balance": "1695.982632977", + "bytecode": [], + "datastore": [] + }, + "AU1MmnrX24DmTvUvWPCAxG47KcTDCEdj2S7xchdWFxw9WjHoetjZ": { + "balance": "750.275399534", + "bytecode": [], + "datastore": [] + }, + "AU1MnZahFHyyXk75imyrUr8fLpUD52LVvmzYMXXTLhteP5MPtpxk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MncMsWLCa1xuA4x88PNnwsNAAzvwTivsAU7NU6BNcSb7aDsuQ": { + "balance": "2805.421595647", + "bytecode": [], + "datastore": [] + }, + "AU1MnfPqfgYfRwqfgXom6wXsNV8jH7Fwv12xet5rxCPSJHGJMTUA": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1MoAZSiQSD4fn1F5JA63h7WFWh8ZDf5ucBWipkvwdSjHRkLMqY": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1MoGCUREMp8xcPvcVuH3MULnmdDqDoKwzixDvuBzdoK4HNcumr": { + "balance": "1492.455773759", + "bytecode": [], + "datastore": [] + }, + "AU1MoUaPgLU8bfZLkDbhDdvgEWFJavcKHFQYXs4TxyTZwE33KQLw": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1MogSyo1Bqz2PFUBU1vyduWKFjYVbwWRSKwZA6awiJsPrnsEUG": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Mogivxz4LQR5pFXT27nLVCJ9N7cwRvxfApgtTkUYMYJ5zGCyH": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1MopMLxyEFwBV3nCWBpEC5qWcmh32h4cPdHUTBCvymQZuSbdT2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MoxMP81yPG8UzxmdtShMCSL2CcDtBv3PH3gtM1aA7gKNDtd9A": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1MpCiRFQkVy5A79McySFiRGc1QTsaHpS7edWzPm9ZTv17CEGgg": { + "balance": "1263.494825648", + "bytecode": [], + "datastore": [] + }, + "AU1MpgxSXaAHb8mR5yt35a2nQbsQp1L7NAvhLJJ3XUxaqyXcjzaK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1MphitJDFrg1qCEcyqWzwqXVegqB8UWgk9SgGBdw6FijPrZfq2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MpvFUYbozA9x4bWj7CBKibYqxUFRxBSdXSX56XYCJQfMsj5QJ": { + "balance": "1373.954768812", + "bytecode": [], + "datastore": [] + }, + "AU1Mq9DKeZkhf19KUNEspeeWJhrqekxME485v94AeNkUYxJUVp42": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MqAdrfEZ3f18apBCtqjACf9aGWvTPn1pDTmsFukJQuTgeTsjz": { + "balance": "144.389438944", + "bytecode": [], + "datastore": [] + }, + "AU1MqH5H5nRaj28egnshnBqNKMJNKXF9b8RF19amyf4wXB5nKXM5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Mqvy2uQYAFb3U6ppyuhTLBBKxXNnB6ir7QgtqQ6X1cSiBHpEr": { + "balance": "853.492020425", + "bytecode": [], + "datastore": [] + }, + "AU1MqxYiwQ2azSVNuWGxChCfot7Sxuz6NyjcQbHJuUNLdmVQGwbt": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1Mr4rXNBBGCeLnuW5r71DHtmNDHXZ26F3ii6tQdgdCXSS5G2au": { + "balance": "5939.644715497", + "bytecode": [], + "datastore": [] + }, + "AU1Mr5i5PgWAYdmyENZetsMXAi7dLxVvbYWLA3w7MssHysDzQuxy": { + "balance": "574.811158138", + "bytecode": [], + "datastore": [] + }, + "AU1Mr9dd8ZRdaTQNjAjVLswfz696GmRDSwNbDJTvTjfUExgNUCWH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MrLseerMNF8BVNxkHdGtkcUAKrtwULfkmm2AX3JMuTK2jAS8S": { + "balance": "147.237559085", + "bytecode": [], + "datastore": [] + }, + "AU1MrQSXqkHdG7hCA7jbiDM3tSsUeZ7HivPi2kGxkvSxnPnam7CP": { + "balance": "3477.267847223", + "bytecode": [], + "datastore": [] + }, + "AU1MrkVnE2EXE1ztaLKZ4rL4VT6boWZHQuMefxcSAphd4ryHN1oN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1MrrkGe81uAHQy89xDK63ZcKjvGTVT7Dmbsh9As44onzpSK93u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MruYh59shUxnm2Fce3dccNPQGXxRKSx974NbCJzND4dS4d6ok": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1Ms4HdRd3C1xJ4WoBkUfg6zeBFMgmt4cMGK66uGYia8bgr4ZcQ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1Mtpm93zFNvy7dUHTKwL6BtF6ZdruP5Wvvqt56KH2mV63MyuCY": { + "balance": "2174.944452544", + "bytecode": [], + "datastore": [] + }, + "AU1MtysDoE6AuFQ38QBveHb7i3jhYYLwVBoNYvmnXBWzqU2LXox4": { + "balance": "1643.461203853", + "bytecode": [], + "datastore": [] + }, + "AU1MtzH5PZRcT9NK5N8nHKZL47NB6van5D2wJH3N3GcgUf4se8Sc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MuQonms2NsNiaL9hjJk9t84Z4mrrEakb4Q1h8uXDvsRtDnWRi": { + "balance": "767.220059509", + "bytecode": [], + "datastore": [] + }, + "AU1Mumk4V64gJtmpDtiTwSgeJQ6Y5VyWD3HRBNBJXQQbKuGTCvJT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MvAihM7oh8RS2Sy8mCcYfnuWYE6hi7KK6TnVC4sy7VF6Dp3t7": { + "balance": "1531.767324824", + "bytecode": [], + "datastore": [] + }, + "AU1MvPTkQLLsJohS2r2oVTs2WVUewUsYoJtVRbhDE26Uhxkynoki": { + "balance": "4197.153670077", + "bytecode": [], + "datastore": [] + }, + "AU1MvRT8pUGqcZ2AJTi1pLUBJ5oQcr2eJ43f9ja589xUMJNqjNy5": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1MvUMUgJt4NrLsf4fY5T63ChtamdZSMzn49bAac3WuDUYGyvwk": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1Mvb2MHLMC76oBnJiaHzVRWzsqzLGB6iaoZVMZVRB8WpFpM68C": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MvdaaZo6uN598WSQpQvWvafiJENqQgNeL8c4zRyJh4NMzW2B9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Mvt4UKijrL3ejf5vJEzBrpRNXJMaWQbowJs7Yf1db4nqx6f7W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MwG1ueYfuB6H6KtGUxe392AiSv9D6Ciics3ZyUmH2tKcmNsdR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1MwqKoWLnFdqvZ1j2847x6PSgEbK5Fj5x9bb4mUkBxC7Ja3S1i": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1MwxELDdqZhrdwg7kn2oE88UYRWWfSPtrUzFUF8DLD2ygUyhyj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1MxSzvymrUsaYZW4v9eZnRjBGN69tDLUbfNiUTgYw1JxH6fAqU": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1MxTHJS165sqpDwQsjh8nACg2PdNiULa6nGHTaJ3pMBbrZkjMJ": { + "balance": "1496.460272248", + "bytecode": [], + "datastore": [] + }, + "AU1MxUC4WAwgGt6PThRJDffBj6LZoh91N4HYoiUFrZZe61M1sjoH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1MxXgux9QUvPUaP9sQQHznmwnrxZvSFxZNgeCzp8Qs1fkMvuwW": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1MyDiLmskA4zfovzefPaPu7PhsgxDANuBRYp8rNTJ2dJNDujZd": { + "balance": "837.838483153", + "bytecode": [], + "datastore": [] + }, + "AU1MyWn5DeUd4FZzcbwNNAzrycRxC6SacndMtKzTs3FF9VA7y1Ji": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1MyaccMoz3wc2ko1AmyTq7a4rHpgeCASifV242AfLops4s139r": { + "balance": "2145.508460349", + "bytecode": [], + "datastore": [] + }, + "AU1Mz9NUqQKGmuPLErEb63xfqQ67ZdF5xKWb7nkcPmsqqxQiBvSR": { + "balance": "45.589309604", + "bytecode": [], + "datastore": [] + }, + "AU1MzeYTKTiNDv749La2iKvp1BMeWYqZRzH6RyHQDLNXw7oHDYuH": { + "balance": "5248.869774596", + "bytecode": [], + "datastore": [] + }, + "AU1N15kvD5MXfkpTiauDBz6BD4YL8oGjRZtqM8jGTZYP25VBNpJk": { + "balance": "1448.040464094", + "bytecode": [], + "datastore": [] + }, + "AU1N1VKZHvheCP2hurSxpJFo2TUFbey4Tnww15iktx8Z8M7BM8hJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1N1jNuADvWrw4YGyusgar3X8nfvAja2ZJQTPK7L3xF41Fo5zTg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1N275zozrNd9LDYmJB19gjDmjDjv3HgkE4Revis3wyctaH9Ejb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1N2R7dYacRhoPHujyoVimcR2jGDTW5hHTBz5h5qgWsdchkmwVF": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1N2bsuiraEkzjiDCExQTsxbRpWZPZ9Qaw73ipFf4XVPkxJHgvp": { + "balance": "1442.649719302", + "bytecode": [], + "datastore": [] + }, + "AU1N2uXgitVEuDi6KVbmDNdot1vXqXNS9ofvjWkrDrMfkiSGZ5yx": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1N2zapEC7j8KKLdw1nz9DeDHSDy6Nv93idGsop7xLeJi2NhsZL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1N31F7tRzUedytcicpSzAP1yfmPhQCBehGYzFis9bq3UXurcrA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1N3Gw2EJ1Zaxtr9BAZAAi2X6frY8Rr3JM2tHZz9sLxyU56Jar9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1N3pHG6HwTuhyyQAsVySoMBmasEaDC4Fv4RgH7CQrYhcRwehBg": { + "balance": "4730.880722717", + "bytecode": [], + "datastore": [] + }, + "AU1N46f37FPYy1oNkwmzDC266SDVFUoSM3YKHrERbgTibAdCVmeE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1N4ssNVK9tbBYHK8yRT5o1CVaC1UZcFeAra76rVyu4kYM2Ek1x": { + "balance": "1013.095565959", + "bytecode": [], + "datastore": [] + }, + "AU1N5RfmfxaCAUsBHLzBzyVrSTjMevQtdpLQXGTzxSQAkjPEfau1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1N5nUhqkinfLdreRaoVeuFLhygyz6KoiAy6MjbDDmWwmr54Xmu": { + "balance": "11.458097238", + "bytecode": [], + "datastore": [] + }, + "AU1N63eD6zH76gRmKxAgSYpaxQ5f4LW2vfAk5V5vvubtJAj9TL5H": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1N64o96Muh1Qn8LQDMvPDj67ceTQEopqaDjdko3BK7avVWUcTg": { + "balance": "676.462250497", + "bytecode": [], + "datastore": [] + }, + "AU1N6QrHgosSi3avaRrRreNsHH6JHjw2TMHBKDmS1nbG3Wu15ESY": { + "balance": "905.935767386", + "bytecode": [], + "datastore": [] + }, + "AU1N6cXqPFERd93dmyFRJmSVkxNesB9BQcEu7Zc5J2FvcESqcW86": { + "balance": "3427.741864434", + "bytecode": [], + "datastore": [] + }, + "AU1N79gGKVApzAGC3o1Z4rUFAvNRNB5GnQkGDf87UkUN5CHH95AL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1N7GizgYmd7tgNnKTfjep2CbMcRrTm3cqYFYrDXTZ7WyRhM578": { + "balance": "2647.302673216", + "bytecode": [], + "datastore": [] + }, + "AU1N7LhRzfs11Cb5xnujb4HAf1Cw8Ltpf6894oVsqkT7gu6gG8M9": { + "balance": "1339.367146270", + "bytecode": [], + "datastore": [] + }, + "AU1N7QDYfP6H2KAiyVM7zHLivSFiS9kwb7E2xjcc6MRJ1mDndJTN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1N7bbuEBbsbDS6CEziw7K7QisyPv8dubbwMC5TKhVma2VjsgDH": { + "balance": "891.636834546", + "bytecode": [], + "datastore": [] + }, + "AU1N7f7nMxfohpugX5UmD2uXhWnMqG49Mp9mTvHdRfyELW6KUWjg": { + "balance": "4616.614571459", + "bytecode": [], + "datastore": [] + }, + "AU1N7grk3zBPgYjj4yaKh7hYiF9jFJJHPs2ALmPk8jjUp5TUcvUR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1N7qcg4Pamqukzbsb8YFMnmmaWsXktYhoartSxwign1rqZdyfa": { + "balance": "49.873729564", + "bytecode": [], + "datastore": [] + }, + "AU1N7rAKJSHbWrSs9FnQWQhcY8Si16kkAF15NpZikAV41pwVZgrd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1N8DtttvhAWYHDQieNc7c29E59e4b5QgwW6chYXxYAoe2ApF2K": { + "balance": "5087.425939763", + "bytecode": [], + "datastore": [] + }, + "AU1N8UosMf7DsKBTMg2a7qSSdSNaqk6pwSyaTnURRUZx3LGXyogT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1N8mWKEGLY19yWoywimUV1hHyDT15omFSVa5xxhNzbnZmFZnys": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1N9Ztg1Y3ZDLs4RKbsDJPfvVyZSMV1EcEJXCMtnSbECScumBn3": { + "balance": "812.536302908", + "bytecode": [], + "datastore": [] + }, + "AU1NA3MkRaSitvs1VSGddPruHFcbFxVoC8sxdkDbWsHBKYZziyEE": { + "balance": "96.338076326", + "bytecode": [], + "datastore": [] + }, + "AU1NA8FqqXo96189wiGrjwhuU4RyVfnMR51fAKtfFYthbHW3Q6wm": { + "balance": "1600.809438801", + "bytecode": [], + "datastore": [] + }, + "AU1NAT1DLam9ErS7GjXJNimeMfpfwpUU69Kg8YwqcZJ1KwrAk7SK": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1NAXfDbEUT6w1P1EeXivZLzZNczs2dnr5gkwXpumu8vcfd4Maf": { + "balance": "1428.853047143", + "bytecode": [], + "datastore": [] + }, + "AU1NArJeRenu7Knv8LW9v1DcdfcKrzzrCBNXTt6fH4zCWeFWsg8C": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1NAvrQe4fmvBdFcWEJdkK1YJaKQNVpKnfEEuj1f8KY4sgSzgYS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NB4g1yzpqcTPGAAUJirLxmBT63Z6ESEtNARwBNwsQiwegHAGx": { + "balance": "2351.455159376", + "bytecode": [], + "datastore": [] + }, + "AU1NBRjfkEHZLHpwj9VThXtGYVhbQhdtEiZTgYeSpteFpaDR9hyp": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1NBgYEcPk346ajhaBEDxzty1tNZTAFEeRqZPF7J94kVPSsrqfh": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1NBrJ2HKvDM1ujZmtosXKPeTcKEQdyd49nwwpNno5JoR6SXp1W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NCMzSwMXtNjEeULdNUXxLo2EBbTNQ4Q1imA2u47SRQF28E4Fj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1NCSiLhcfRmCHHPxssoeEdt3pZA8hzAiriv5TyXzRRJWkkMZMM": { + "balance": "775.022931524", + "bytecode": [], + "datastore": [] + }, + "AU1NCTKRhG2vSQX8fzKU2Dxz1yYzhJHTWHf9fhr4cbzAQDtW3exd": { + "balance": "1569.236468183", + "bytecode": [], + "datastore": [] + }, + "AU1NCUjWVGXWcvqmVwQEa7nMJpB1KACsm1ri738UydkaWpfcDENC": { + "balance": "1483.551341380", + "bytecode": [], + "datastore": [] + }, + "AU1NCtyXaa5pKM7fGgN1XjhBxWGhkvdLEDWCJQC875wSvQKTpRsG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NDDLF9dJrXeBMFmpXHiMFL8Lo3mFaXeZLoa3k1XdLAvhamWbH": { + "balance": "4536.367444766", + "bytecode": [], + "datastore": [] + }, + "AU1NDHc4KJ9qGXEoVg13SnVHbQMm14gn27wTkbD656CXmLDhjgBA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NDiAyF1gPjr4DL8PJCgt52yUATkKxiqqHX6JwNLzSX6ZZNyLA": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1NDj3HxVbUFot22LoJC2pMj6xUe12jsM47TXQWXCErSTmzpruh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1NE4jgQ8CjA9mo5tfQigTLadb7dRbT79WEmdae724hMJZ2gceC": { + "balance": "606.292456099", + "bytecode": [], + "datastore": [] + }, + "AU1NEJhhbgST3X371QUWBXrsGLVSYLDEaCKcXA25SicQwwB12k8g": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1NELrTYb7M3NYdHBue7bUNcUTfjtXhHxKD2sMNzoLsFrPP21Kv": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1NEeXnDnVL7d8ku7Hjss6qqyjyQmPcjTkdZZMXhMpsQJnDzXhH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1NEi2iAYJFm2ZxQWQwNHFtsYtQRf7hemkiFA7QTdjwtjR8XCw7": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1NEoehXbqDE4A5c7j6KaX1hHDyv1kBRXmQLmZDEsewixWJiPNN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NEqVTcB8KmJgG4HHZ3JfzNYkrrwpfVVTuMcRzScP1EPJg3PRD": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1NEsGJXg9JDQhEsRoAP82E7vi2xrHyjQZQ2QntsG9SdhsesfNs": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1NEvJNsbD5w7g58zHkiimYu3XgRcbZYiQLCHyfCBPKKoK6y252": { + "balance": "3344.341074920", + "bytecode": [], + "datastore": [] + }, + "AU1NEzdP3GWRkyjewfrAabBBPamJjkzHa8hyGCoN9u6wmaESYKmG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1NFo2v3LcvCkjeNLiUKpmhHRhmQ3ks78TYkpPihkNBH6j59Dkx": { + "balance": "2640.517410378", + "bytecode": [], + "datastore": [] + }, + "AU1NFo3NmecJUA8g7LmUu4j6Be3QdwLAWjLN2xALy1ZqqqT4ymT6": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1NFvHD6NTC6wZph4MBTL22dsU6XhRXR5xySmirjT6ZBpiTozkx": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1NG24vWQdG69z9Q9KDkCfAVH2ak3G6Mx8qnWvBtJeiGXRYeNB8": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1NGMZLjk1xZmw6tQpNd1ZR2WqSt9LqEkRWBLHDAAqQtJWTeoXE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NGqwNsRTAp9WRQD7CkL2D7tCDh8aWYuzEZEKVSB6EoXEbYFHv": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1NGx9PjbxbYsuBzPfEc1EutewBk6tNvVoyou16KmBk9ovQ5AYg": { + "balance": "5097.796254070", + "bytecode": [], + "datastore": [] + }, + "AU1NHa9baQeAF4Ta41uyivnYcvLBCEb3iU1HED4DM8nmCDWUUZyZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NJ9vVFdhoNCBsuwK5CmdRVAHGLgAzYddWB4BGDYJrxqo38pVq": { + "balance": "96.688884465", + "bytecode": [], + "datastore": [] + }, + "AU1NJEjf3Jj9Ld1nL6V9MFMH2BNux7SxmHMARNyHM1K3Nrwzqm9T": { + "balance": "4242.369251195", + "bytecode": [], + "datastore": [] + }, + "AU1NJSvKoTbvV5UQwU3ZBBnLtxKtGRL14QufRkFgK9CdZRYtg5BX": { + "balance": "1423.749400860", + "bytecode": [], + "datastore": [] + }, + "AU1NJT1GkdLyGzqrJHUskJVN1P22Lic92ANNZTbn5CnCFK4X9BzQ": { + "balance": "2352.342156682", + "bytecode": [], + "datastore": [] + }, + "AU1NJYEsiFXsJfdo9p4yks9AN6Gpx9wUwCfAVqEfUoUTL8gxGr6d": { + "balance": "688.603160157", + "bytecode": [], + "datastore": [] + }, + "AU1NJbKqGrsCPTWw3nGE4EvX9qvrQCkChm1jnm14BosKgrbCNRtK": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1NJmDuQVo9L428hwrkwAKsoZPGUD234dUfh4rxPvgj58NosAJZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1NJvncgDxUi7mPAjrSPTvn6BUaU2qZQftLqoJJWeka4w8P6Eth": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1NK8grs6UvNZGaqcJvTjp8Yto36g4xcYv9fEbTP6bbDPN6UuhB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NKD3xiuzM7Yyc54JY7LAHBysZw2UQrpbjB9Vs2z4k7jRhdbDL": { + "balance": "1455.218455677", + "bytecode": [], + "datastore": [] + }, + "AU1NKHFmb5PoaQDS8ZJDCbLU1jJBh7K1Y5kC8jd2ZY3qy1pfmiKx": { + "balance": "60.904931823", + "bytecode": [], + "datastore": [] + }, + "AU1NKS8xz11tmfwkFmbFU9jNWeGjpNtkiUZZ4yXMB8Dy2vgk1ChV": { + "balance": "578.065490258", + "bytecode": [], + "datastore": [] + }, + "AU1NKoWu3a1G8MTXLMSHkEQPHR79vxW1RUsPXtpynFovFpE6jaib": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NKochaz2p3zFyciega8VsY6dT3eghi3TaM1vyAYkWAsYHx2PJ": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1NL42toXeutmdzKgs9xdayJunU2Yabp7Zs9DciLikr5KfTSFKF": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1NLRj5VweoHHwqd4w9SuxCBpps2KbYCxJ2w76HfdG4RndgusDb": { + "balance": "1087.163246358", + "bytecode": [], + "datastore": [] + }, + "AU1NLVbiTKdUyoqVGDcf5d9qunxjj4L2eZCEUrx1ohtUSFeWAh3i": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1NLXrpyNjrGxG4xdk6M5Qdkm9Rv2qHVNsbCspytALBs4DZJPiM": { + "balance": "935.899222728", + "bytecode": [], + "datastore": [] + }, + "AU1NLhtTuxSv2YqAjVhVyf7i9tg51k9aLUs9ZE9pMhhinqaN95E5": { + "balance": "55.857120993", + "bytecode": [], + "datastore": [] + }, + "AU1NLi1PQpyBCuLLtWyxE1nnPBNcj8VLXtKPmHEGQDmKXe8dpLW8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NN6WvopRgwGbonxLno296xra84C71kM3xFqiffAjTQQiJh6qg": { + "balance": "219.436638222", + "bytecode": [], + "datastore": [] + }, + "AU1NNN9eHK3w16zjcxHNiH2NJEYsNHDoDJ1FUCJKHMQzbAPNnuDH": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1NNWqc963QbtiwL2B9L8oTGu4z8KQQzYEaJ67AMkTTVV5SDWJ1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1NNfMpS4fpfgwpaHWJD8H7AkJ3TpmvR2cAVbgbsbspGFFgBT3a": { + "balance": "15240.528741000", + "bytecode": [], + "datastore": [] + }, + "AU1NPEdSybW9bfByXBmPmcLhPCb5KNPDZLL3bzLY3jXQXkFrotEB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1NPFio8pn4hKLEir5Ps41HN5G9X72bGgpAH754JznKUaMsmw6k": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NPTxrgx4rsAexv13UdsDpkAC5V2Rhx5S9raBAGUvW62brCy7D": { + "balance": "1986.787135023", + "bytecode": [], + "datastore": [] + }, + "AU1NPXcPddHNKH3iKPzKNEeMUCTzjajuX2M7PJYseZb5Eof3Wyi5": { + "balance": "2653.200380064", + "bytecode": [], + "datastore": [] + }, + "AU1NPfeiFToBKfn3PX8KEMr9JaMQMJQaJvFMWQ6u9T2FzxVZPMX7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NQBcusJ2hnbKT328bJN6fpZbd2NgKMXiLQN7E5wevxXMosEuJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1NQEDC1wqG6wihX2TFHqUetCqFbBCtnQ4eK7T8VcFiZ3AnqQqR": { + "balance": "1698.463293906", + "bytecode": [], + "datastore": [] + }, + "AU1NQtLhDwJvpFz1AnERE2d2Es4wWETrdA4caZh6XS5hDLee8dpb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NRKcT2PKpNFvMGT6uVy553QNpPuYfZJzRTi5nYYvqjiWx14kP": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1NSBwNr6LW2GCzivuuJxzmiFyZwqKLYxM2knsYKqXh4FpfPYQA": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1NSbiDa7nFjpHPYup1E25pp8w6d9gPFhAMhMwCJHY1DPzxytv3": { + "balance": "1187.397558527", + "bytecode": [], + "datastore": [] + }, + "AU1NSuLSanabgyeqD3eeS2h1NgnXobDWbdeM39VUg9TcmwqfkXaF": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1NTM7AFEkKsUFA8zav1ZLV7JHkjVPN33j4qGbJJknXkhMJPgK4": { + "balance": "908.736656374", + "bytecode": [], + "datastore": [] + }, + "AU1NTVC9vjPSQiX3itty4zaSitxCJV14VZCKggTH8GMyb4zpcpE7": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1NTuYvWM33FKMkTiGSUo5xr8xq67BpsEwVeQe8Mbyp8g9bJra7": { + "balance": "734.945097257", + "bytecode": [], + "datastore": [] + }, + "AU1NUBRT9o7ASzwX6itbX9Np4KrJhLbHfY8eNDYfbCFc3LFXpAjF": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1NURBZNZohLhR1Lew7gL6pGzWgJstEjM7UUyMT3MW8YJPXrMcK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NUWGp2EfoG4Tm5UcPjnDxa55sUwprLEXNGaY8ikiejGpVQNFc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NUy5d8zpTaDDZxb5J2BxsNnbMCMt9gZYc1skq6sa2BXK71PRV": { + "balance": "3518.133088510", + "bytecode": [], + "datastore": [] + }, + "AU1NV4SSh9dYJCqwBfc8YUtZkfvttzexpbW5RShfXdJo51e125n9": { + "balance": "1226.739132212", + "bytecode": [], + "datastore": [] + }, + "AU1NVNak9FPKPtuz5SoAmuAzgYHt8ZsJ8FUtbxgJi2gCS8gQ3GoE": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1NVpvQsJJFpRg9dQJb6hxV3LnEgTQ4928Dwyu9TaGco2Sy5yYv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NVwosUU9N8eFsPbcbVaSmpTeQH5Av2AZzicYBArhSg1sniM6k": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1NVzqbyuKTJKyzcYTLFoLHukQiYZfozrZtism6CHega3Z17tYV": { + "balance": "2537.933290710", + "bytecode": [], + "datastore": [] + }, + "AU1NW2VjhvH4ifpHPwLUQJcqfLeP8waszgGZoNzeXd7EkmpwrNvH": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1NW91z7k4SWb85kQ2kCq3UmnNmMuV9At7XNRaqbr1eMQNaSJcQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NWABdB8QidwG3hkHiwBiQNzBg1mRiZGTMKaSXe1DKT9rZomyo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1NWgVQPRAAGeEGHJuUD2xVNDx584wzoBgcDgA4UATQNgr4FJfb": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1NWu2d9ZCzU2awy1qFJyoPLDp5Z37Aton77ESX4JqbZ7zrYucV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1NX5Qij5G1wDRKPgccqYLwrDXmpc9tYDJRovSN48YGzNR2E6Cr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1NXcWmifZ1oeJ8XkDuRSVG1fARaQdo2nyZHysxm3oK9GJa4yfU": { + "balance": "534.039734685", + "bytecode": [], + "datastore": [] + }, + "AU1NXzJJuSkwD3TKajCbthWbmHGvftCKYjAbMpCEy6KrtExUCDdd": { + "balance": "62.959112692", + "bytecode": [], + "datastore": [] + }, + "AU1NYjaPW5brac6fgpiJtstc9H7x3kZhNAkJKmfXd3R5TXBvGNCD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NZck8RzZHWQr8i9oPRNTyUVox41n6VbJUFqSH6GA8TET7whpn": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1NaGUY38B9hwe96esYeLzxJekAWM8VQwp4QyxaMMjpdwwsMp1k": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1Nam4ciRgF4n5tFkM7y6bU4idYwXTXhxWG2Df1THmFfDYFT1Pu": { + "balance": "1883.919985257", + "bytecode": [], + "datastore": [] + }, + "AU1NbMFWbzVVtkGxe1ydWVNYPXyiNSNQfM7yRC5acymF6ecGwBHF": { + "balance": "1932.639152258", + "bytecode": [], + "datastore": [] + }, + "AU1NbQH4S2EbHhwoc5gjMaevHk3hYhrhR8hpRjYi8Qzkg5rFsR7j": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1NbxN7McsfRkYcbuPcvUsdiJBFbxFonsFWHMxfu2zSqsct6wr6": { + "balance": "4212.207479302", + "bytecode": [], + "datastore": [] + }, + "AU1NbysNKqZDWd4oSMVWFxBi3yZctSv69dqFVF6qyeRqfBEj68ut": { + "balance": "2475.504810523", + "bytecode": [], + "datastore": [] + }, + "AU1Nc1xPRvh9SPdiNaZHBHjJZ3nirCrSJvbhjEfjew25jQJek99e": { + "balance": "1477.254690753", + "bytecode": [], + "datastore": [] + }, + "AU1Nc3X1LEXpucjF4zYJUByS6X4FCf5SsEJjprfHWuhbh6SvnJ9Q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ncd91ws9GrqLu5ktURcWyuFzmT7ymYUvie1rAHnaz6ryJKRRz": { + "balance": "1235.557512614", + "bytecode": [], + "datastore": [] + }, + "AU1NcqXRkDqKoXgJG3jEaSPi2umLH1tjueQZXYGSuiQBGzwzAnRx": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1Nd4JJ31rjrPNfJ4xwxw5yvZ7ahVhrHU2AoPffioasoXA28LB3": { + "balance": "2572.130656533", + "bytecode": [], + "datastore": [] + }, + "AU1NdJ9JKBEZrdyUcoC4XHTq7oNg7xTE478PcsZykZgxj1Tt18cv": { + "balance": "1607.258126092", + "bytecode": [], + "datastore": [] + }, + "AU1Ndydq1BU94S3cCoDW2qCvYVPbW3gjkrgiuGHwHrebKFvHaHrA": { + "balance": "1353.054528020", + "bytecode": [], + "datastore": [] + }, + "AU1Ne4soZwN3xjQvz2C5r5V1aTjoxn32oBsWQxS3ftRenqUSCwc6": { + "balance": "0.845714979", + "bytecode": [], + "datastore": [] + }, + "AU1NeBGMEHa7tSWUoZspveSfgHVtXfQ7Z6h4JZqReZJnNAaURQQ7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NeKown8f9gEmXmQCrXWUBmuMWb7XXh5CHarpU1PaHjDUkcoUy": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1Nf3ZoyPwdYegACjYYXF1gvR4SA8TqDABPAavj65SFh68w4ymw": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1Nfzjz1pfg7WqHK9GMD6H2EF5VsNY2GjF7Z6Y167Xspncip5Fb": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1NgErTFiNRxPQEXCrfTkrTrms7gKfHJZksZfAPQt9aZVNUy8BG": { + "balance": "1727.406246714", + "bytecode": [], + "datastore": [] + }, + "AU1NgsNxNrAC4u971MNGVq5tEAjgy8hE3xXK1KJeQbjbwFjoXxND": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1Nh7hskgReHv8soDUB449mfeng9M25ukdPS2MquggfgscMvjaS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NhNUeZR4z2SRtium57AfhRBEc8YgVWotMprfsUn9yUahTfJvA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NhrrWKgUCp4uVoy5xrw1mCEdBetjX7PZGBUBjnUeQmmtsJJoX": { + "balance": "812.732281864", + "bytecode": [], + "datastore": [] + }, + "AU1Nhs7d3NBGmoYsF3vh1muXKkfwLswZU6yWjjqfcECaUyPdayki": { + "balance": "999.327486214", + "bytecode": [], + "datastore": [] + }, + "AU1NiCWK6MC3YAW3USxL73GszaGjZ4QZ4dRYAnTBHjqC6oZoYgtr": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1NiVzqWZKuiWDPHPDMG1rNCwCQD5GGdUeWCucH6Lumfr76TkoS": { + "balance": "775.240366072", + "bytecode": [], + "datastore": [] + }, + "AU1Nic5EYLGRgqLonkpTqAtSfPBgec3G1VAabz881tMR3J6CHaY3": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1NikvA2Y6GGM7Tk2pqyRSd1Brhuzb59k7Y8aZzDp4VAj3Rxzz8": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU1NimfUBWh7SMsqvYdNeqvf5pJS9quQB9H87fFyf7jRKgtD2z6n": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Nipw6SSNMuBrhdtRQv36hwztmCU4RufwoS8XVdNPCNLzhX8SS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NiqVcnXzMxi8xAbRuEAfNGFpLeHt3FFwVMALEFVXjuto9w2N4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Niwp9FPfWuaU475saNF4F17sN6GRVgiUx3LafdYcqiBAuZDVG": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1NjFmbKyHKyZjquGgWCZZ8DfNdsiwdxBoeSguQoGqMow8Xg7Ra": { + "balance": "1337.172472352", + "bytecode": [], + "datastore": [] + }, + "AU1NjVgZsXwqA5BQEhAnwjVZiAvSs3P9oy5atdS56A9HgxzvkLnL": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU1NjXfjB8rKiLJyn1pX88zdTkAFt8yWVzLxjykaLmJgUmRRvA5r": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NjXhnUwCvyJ1JHnaat8p59WTrFh5HRRUvSqFeWAz2MZQFZArJ": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1NjhhxGSRvvj4LnqQdBbGdg8bAjBqxfNgsXzQfD7GEeAqmtCvX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Nk1RgHz3m3wpzuJxVURp11e1GRAuHCYobxt7Bfx5Un3guFbat": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1NkfaQNMm5AHv9xSy1iQCx5TM6cK8NLrrQ6SV8g1UzoojUVycK": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1NkijvJrBoQSwThLzpNyMHVVLUc8GXCnXBPMF8crhAJZQ7sWaE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NkrGPh7FDMJQGBf4Un8BUU8XZyXd8Erf4vkecCK5QeQJTwZfN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1NkrPuSMWtJGDRCVBZPyamWw6xkMusp5a4MDUihDJvqiurz7cW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Nm1bhJqeHSZ8SEQWWPDMTgY2jvuZhEUzAhwHtJMw6kvU6ZH3p": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Nm4Je1hbPSCE9XtGjjX5E5dmD8QB17MGeSebidumDxE1UEfkt": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1NmEr8tTEFgYeGsAx34MyQMpKUTkEumN8j2BzjCppPru3DgPUL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1NmJvSuFAbEie35U2bbiTzXr8tAahwJH5BeYQ18D3LqMT4fPKb": { + "balance": "4102.669881578", + "bytecode": [], + "datastore": [] + }, + "AU1NmYLRLwZozEmWN2uEXnAfy6NU63wdKV7QKYmVEKP25Lft4gEZ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Nn6qtLe1Q4kQUDwkXaN5gQyZAU6wGjDRx9eALQ11EQ99oeXng": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1NnG4DsxgUNfWMgs1V4VCrrHwZeqZxp53pXYL3suvFMHDJ7bzh": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1NnN6ZmvjwncptmkfudDragwsVy1QrWAsZjHgeygicAPwcXyq5": { + "balance": "1773.781527334", + "bytecode": [], + "datastore": [] + }, + "AU1NnXedEWeQ465F6ma3U8UArq5Qk2f19ExaGfQtCEM4nDaDaUQC": { + "balance": "2587.468886028", + "bytecode": [], + "datastore": [] + }, + "AU1No6SAL7vaZhJTQ3vWNByxytUWE9eu771DuT2C5ZsKUWPd2acH": { + "balance": "2262.359107907", + "bytecode": [], + "datastore": [] + }, + "AU1NoZTi6GHPepMkGPqtBtf5UGvcSkYXTkCBPPM1pKGjqBrGNbZi": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1NoiZW8ow5CxwibfTaL98vfQxRrz2S6PBtJJpTaJ7Te6Tc141U": { + "balance": "2029.371885189", + "bytecode": [], + "datastore": [] + }, + "AU1NpBZtXFoaps2ZaWHGtvDYaejbaEUiegjMHeZL8pq3g3EvGyTT": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1NpVHzyAyrYSMNkGDnHNZzkueJf29p7MegVMyLgWhYsXaJrRWC": { + "balance": "1928.118979540", + "bytecode": [], + "datastore": [] + }, + "AU1NpYtMbHu1NcmXnEXV9Cb8CKhWoEWkKabtLofYYsioyGB84TpJ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Npa7s1jVHeEZftWTXtPCnaDWBCSdH11ur8SsoPeCEfiZWtcqd": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1NpdfSKWw5upGgGgJgShTAyKG7HENEFi1Fkunc6EyWrr81UUnw": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Npuv3xvg9qF3iiRfzJPp3ZYBePBKZ74eAP36WnUkLiHGcr6zQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1NpxR3ztusFGVwiF4WcBU3ZhZB7WSrzezUz3VYyiBMpRvGYWMn": { + "balance": "2193.667433991", + "bytecode": [], + "datastore": [] + }, + "AU1NqFP3bxA3yoBXAVuDGAHtFSypnubQZjcNWFUsNHMTp3uT9bPT": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1NqGDjMbaWtXBuePABNYepST6PafDG8MWdhbJeB86y86p24gXE": { + "balance": "1388.818926877", + "bytecode": [], + "datastore": [] + }, + "AU1NqM3z1yzpCoXXc2hzj36kWjcK6ZnEUwPm9PKUx1SRjsLsV6TH": { + "balance": "4412.485710264", + "bytecode": [], + "datastore": [] + }, + "AU1NqyUmcHnPbposKADiMSosPbSLmqQaPggcKeo1cMbLV74NcHqH": { + "balance": "3856.911786076", + "bytecode": [], + "datastore": [] + }, + "AU1NrQRkK7K2bScJatgBZKDMUKoNM5jBa3LtiZBbUH5k72UUhn9B": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU1NsC8GyTm427a9ug8qXcBH1PEDjnTi7b3hmwo2wnmwLpV7padK": { + "balance": "810.076779011", + "bytecode": [], + "datastore": [] + }, + "AU1NspHcFebYTPwHBdcQ43Q9ofciK28B6nvo38CnQBazL7PbkWzk": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1NteG1j7eSjDmBiRKcXQKhTSCNmhA4MSeK8NoTw9geVLCm8HQ9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Nu6qsoQSUhoLcTVhG4nWk92uMPtshtZBHpiX6KNWjB8yafk6t": { + "balance": "1300.763579941", + "bytecode": [], + "datastore": [] + }, + "AU1NvBjaETEaReZMJmgmSDtqugmCZcBTkpUxp3PPfiM8taZAykUw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1NvPcLNKRHoRYdf6YSPpgLe5ronwc1raMoosGQJLJWg5NtNx6b": { + "balance": "1649.095524899", + "bytecode": [], + "datastore": [] + }, + "AU1NvZG3MBCErS88ssswjvPkgxexAmsjDLUkqurLRk4imVAcVt3Y": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Nw3VC4PBAqxZ3EKwTKQ3TMP1p3tpNM6bKk7Y4XtAnQPd9QT2u": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1NwJSF55GwxmnoVGBGUuovRuNi3QgHeVutzwwXeG8jUJqq17of": { + "balance": "1528.104857625", + "bytecode": [], + "datastore": [] + }, + "AU1NwL1ECYq9aauyiYaFimYQqoWh9wnnpGbbp4KXwuxXs98iESg2": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1NwgkY68nkCbc1F7EBoqPH9jGHTvRTYB4aRu7ozKZwEPgjkjbP": { + "balance": "685.517371243", + "bytecode": [], + "datastore": [] + }, + "AU1Nwot872ij6hfTe1C2LauBT4f5YVYNU5eFs3LNfs7exszhs9ES": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1NxG6NUbVxC4dUz8r277E38hrpzFGk3prcMu7rzHgCf1w3EK95": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1NxZP1M1Pyyqj8YboDPPVpuKBNUkJ1j3x3rhFRBZRnXmzGZk34": { + "balance": "673.295923647", + "bytecode": [], + "datastore": [] + }, + "AU1NyCQmEamojaKMVUrfhhr6xEymA1EEfjnMFz7NmnY2GAgHcLQC": { + "balance": "1683.821525072", + "bytecode": [], + "datastore": [] + }, + "AU1NyEoxWiCpDGAZu6Y4BMGseMYvUoi8U9rUJoHrKHe3XB7APVY3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1NyUQ1iAvh7Z1syPQyQ9kX9wR4jpzBPK3SVLJC9Cg3i3nGB7qi": { + "balance": "1215.755057213", + "bytecode": [], + "datastore": [] + }, + "AU1NyceRh9vjSAsWgxVgqFV1CUKkC2ebRcHvmQzLHe8EwgK62LiJ": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1Nz1F3MV9gb2uDuqZnd4kjQVfcPo3cpQvPQWp6UjaVUcuXrh7w": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1P18eXckACxb35qqXNWKhEMhMTa7uQMtFUbezXVv98PhP1E3Yr": { + "balance": "1645.928086315", + "bytecode": [], + "datastore": [] + }, + "AU1P1GZHV7QAYKRb5D2PjAqjX45jLvTAEGUQWaKquPSYRU9kNUqQ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1P1nsBemfi3KiswrEk9mj8ZdWarA73Lnnm8TkSJ6UxgGtUYAyX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1P1r5mLw7JK8u4m3gnPKDnrwEWaNA9XzrqtHcPmmqyqYx5rQd3": { + "balance": "1333.247054881", + "bytecode": [], + "datastore": [] + }, + "AU1P22i2YFacDxeckdQCja7soBQVTZ4jihXzW7G7evfE1T35HoMt": { + "balance": "2619.523119421", + "bytecode": [], + "datastore": [] + }, + "AU1P23YeVN7F9dQ4YoBEs7SqS8L6FanD9WdSMT9o8funRyDQCCmf": { + "balance": "2571.575224485", + "bytecode": [], + "datastore": [] + }, + "AU1P2tvmHMcBJUKk7fMWQgp7v8j8raVvb2rHzhArhjFNRqjdCALY": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1P3AbR3Hm2BJfJ9GFQBSE1EQvDByBqcwZS8AcFGFvdYCszKTNB": { + "balance": "1138.156584389", + "bytecode": [], + "datastore": [] + }, + "AU1P3Tcx5kY5chEqDXGW9XgqCEeJ2LbXcxdqU8daQPQkZcFigADQ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1P3q3oZTkyaxXigrmVJpBSjcsMQutxxh8KTSwmMAqXQ7dYFyyD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1P4AWpE58xZbQMyM1dGfY8qkSZw6dBHyEENUkDhuGKMrdYgh5D": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1P4LVzx2VuWK3nxenQsHF7mskEGAUATWq9q6ijVfD6E3m7xkK9": { + "balance": "1401.246931954", + "bytecode": [], + "datastore": [] + }, + "AU1P4MzibAcCFixYaF6uSbcEhdFirVLT5z8YWnuKSLERy4tEQRX2": { + "balance": "2693.740474766", + "bytecode": [], + "datastore": [] + }, + "AU1P4Pz6UTu1dmMMeCQm4LLm4eR3EgotsfR9yzaCiLHXS64ZLEMz": { + "balance": "1835.696994357", + "bytecode": [], + "datastore": [] + }, + "AU1P4Z6if67xaYAAoojKiEa9CnfyLPkVTxS99HkDnfqy2LN7GsmR": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU1P4sugoQnHzz4Nk1SNgJnVYzE8v6AXRm1RqEMgjjq4Y7tCnC4V": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1P4zvBt3va7NGMkZym7EqWMjeFDAiqhxgBtGmPwrhhwWHErUAK": { + "balance": "29.410637784", + "bytecode": [], + "datastore": [] + }, + "AU1P59Wpyte4CW6psjderRKYKkd1yG2t94nhzwTHdUyetpSYTxws": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1P5XsxSuNrk1vCCagMh1eF4iztXGzMPgccN88A4hsh6MEYLGtC": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1P5m2mMrmwjEp9Tnc96cNFDfSuWRdRpTkk9dmDfQtuqq5mbj9s": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1P6C1guwX2rzzNDRMEFkebDGC1SG7HA9PZpjVHuGTQ1NVMUGDb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1P6YaHro2ow8eAm2kxk8HyuSE83r8yrg5aLL2GhVq2U4VR4hTx": { + "balance": "4623.072495495", + "bytecode": [], + "datastore": [] + }, + "AU1P6jNLDy8VTVXC1a9egP4CW7uXb1aRfGFzRatpE3c3gvpnAqz4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1P84uHsK22qvAoEXbTcoWut33c7EXu5PWwWe3b8nqqeoC6QY8z": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1P8PnNY7jWJkxi5mtvGjAXWvbwcXFGwG8ciqrgc1pExiHk7vie": { + "balance": "562.448480597", + "bytecode": [], + "datastore": [] + }, + "AU1P93iyhFZTA1rQiiHrGpXS8jrMrsyGztWM818vJ9eXTvG5ahek": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1P9nGgHCLTLbt3AdTwLS4MGbP1ELnK7VrEwnxAAHQ9PyWBrsCB": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1P9tSJuBfL4zVLfNHtDop78faXDDFiLgR5snUNjUpds1PwpMkK": { + "balance": "1509.542917275", + "bytecode": [], + "datastore": [] + }, + "AU1PAVQ3khw6cuZ35yDbfVsdJsxahXZZVEF4aJhgpABWfFPKLmho": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1PAiwUvAL2hZiwJwfqsr68VhXivXabehVsQxZGCAa7RQhDU2R7": { + "balance": "2297.537726986", + "bytecode": [], + "datastore": [] + }, + "AU1PAs52tHTnHC5ssDDMUjdb9rdkzaPW2TLzgJdFARtiCJzMdX5r": { + "balance": "89.499851636", + "bytecode": [], + "datastore": [] + }, + "AU1PBF17sksiVCVQDWxf6UCNFP8eN92omZ1t2jvPVszwftwUpoao": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PBQA7kfZfkBKTai347t7vZxhjm3Dweqi1Tu1XpuZ8uPcHu6gE": { + "balance": "1668.549043054", + "bytecode": [], + "datastore": [] + }, + "AU1PBRRuh64g5M31gpRJ6aFKLCgLobtp1WQMZ4YPivBVbFp9LNfD": { + "balance": "1497.810019188", + "bytecode": [], + "datastore": [] + }, + "AU1PBpJKHExgKzBbHNBrTzDFzCSENR8YQjsMn9ri1cULs7TTvRaG": { + "balance": "1042.032648760", + "bytecode": [], + "datastore": [] + }, + "AU1PBsdtxYBtmX5U8mShBSLagnix37REnNqB6nphVoPuzqdsikyc": { + "balance": "1564.845227096", + "bytecode": [], + "datastore": [] + }, + "AU1PBtwRcEX7ox9zCTx9W5JuKXBr2dNagEocmTaaytksHhwx3x9B": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1PCWa84xwt4KcF9SxCuDMqB8J8EqJXaxbFTuTKRipvgHBHSfwR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1PCbmvWpmMZ3R4wKwFhC33tK2d5BYwCMFiycLGQGekNYStRh66": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PD7NYwBwZeEVe2QmG59RcT6KKZCsHhsfeF1hit3oVKwMJd8oZ": { + "balance": "1869.194987255", + "bytecode": [], + "datastore": [] + }, + "AU1PDWtHsrAWSfrskHzptaBAooXNrjMEHyHWRn8sKBFLW7qfRfCQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1PEaXHwJcEoGozXdXen2qtEh3Nq1MYURNoPLZ4rYwsyexoeAv8": { + "balance": "3725.984401297", + "bytecode": [], + "datastore": [] + }, + "AU1PEtmUYej1VqcUfSZ2eXaCk45DeoHMd83wmRmEPcXEHnURtK2R": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PFNvntnvhd6mySn14nM9ENGwnNY4XoZEDwSxHcRGugR2A5koB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1PFeaEQ2FbGHVa8KSFq45HYeSBjq1vdUZQ6Dd2U387E9mzm4it": { + "balance": "1361.390786811", + "bytecode": [], + "datastore": [] + }, + "AU1PFg53eWuyE3H7Qg8Vxb5GzrFVyN4HEfiAPYrpmgjdc4qPzWmq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1PG9xw9EDt41wHobysMpHfrpYtg6mQ84ZHvin17d6rQLjRGsM6": { + "balance": "850.536918893", + "bytecode": [], + "datastore": [] + }, + "AU1PGeLJDZFBM88T4satSQfLjYn4BxFyhzSxqfwfRrm5gs4AuBLE": { + "balance": "1367.845391592", + "bytecode": [], + "datastore": [] + }, + "AU1PGqsYJP8fPk8MNXxVHCcszsBmQJU1WYWm5CYgmgXwX6KPPEev": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1PGvG4x1rmFaYBgSNVmgpPDkWvGtNqS2Jc7BjupmVjkce8dBai": { + "balance": "68313468.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PGxPvatF1oFsnu52LPUuBKQMcsHf2tLmdm1iRijCgQcYZ7uKa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PHxVkGu6zZR1CicUAtB97P7R2ak76dVSLGYxtMHjiDo2KmPeA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1PJ1n67o4JgER7xrznnGf8nwfz2jHGjxwZe5W6yVonmmFJCZcp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PJ65tznKyGYwFoR1Pd6ug8cdkztMQdimEvrebKFhLZcmtBJYS": { + "balance": "1.346611508", + "bytecode": [], + "datastore": [] + }, + "AU1PJaXBtN4gr4xvTcb85v9MU1nLd9RrxPb1urADjQH6xnbAsmjy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PJfSW7ugF422AYRcHqWWjTdjj85VrNNT41LChyP6wfhccmQiM": { + "balance": "2594.058229590", + "bytecode": [], + "datastore": [] + }, + "AU1PK1YbwAFkhVzAa6ge4tgNck9Gaf1JiKwP1Dckdh6666ueKggt": { + "balance": "797.684059333", + "bytecode": [], + "datastore": [] + }, + "AU1PKfY8kVjjB9vtmbYfARqSLQ2vQUxnoC3cqG9tVdEHzJVM1cCJ": { + "balance": "1163.808350149", + "bytecode": [], + "datastore": [] + }, + "AU1PKjYtjMjTxqix4etEBeRkALbGD3kf9fp1RwtMC2fVQo6cimny": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PLkvrZyMpyQ2jT7ydPfLmw9sXJwfJrbaf6YoPoEQuuuGYhGpk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1PLrsmTVEP68d6hTSuA1K42j9PBFg71Gbs1nLELE4ysT9FmBPQ": { + "balance": "1116.854547612", + "bytecode": [], + "datastore": [] + }, + "AU1PM1CzZNQ7t6uCZCMjBXs7hopbZYDvob6HMKgd2hihh1KMcoji": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PM1vYVKDsiqq4bsnvz4HmB3aFud4hRTvBdXeC8UTDx8pq8Q7U": { + "balance": "1455.400674146", + "bytecode": [], + "datastore": [] + }, + "AU1PMLrQAYwnrqYNctKFyAzvfGZzZGcXNifas7GzFbpeiFeYQT6e": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1PMU5dq7e2zh6AEbhpxru2ezo9mrUNrR1Ew6Q9LK1pNEXjEY1Z": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PMVyDXyFUjJFh5wX3d26ojZrQHQWaFnSHDdNcpAfF73kLinDF": { + "balance": "3448.757830226", + "bytecode": [], + "datastore": [] + }, + "AU1PNJMBmZiJKxotNbE2op3rcb1YmwA83rQVH5wZd7xiTANk3EoT": { + "balance": "2288.276649233", + "bytecode": [], + "datastore": [] + }, + "AU1PNeUnBSv2AjtvkWtmw9n6kJaMgihf3pjz5q8kvHBUwyKzR9N2": { + "balance": "1142.004097807", + "bytecode": [], + "datastore": [] + }, + "AU1PNvFbANihzGCrMqwPBTD8i5pr7JM7UEHKDkbxvFB2k3QdiQqG": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1PPBKdQFnkUgjyuk2e6GiCwv7Fw4ARToiVDac4ZYLRN1uS936A": { + "balance": "6408.006946181", + "bytecode": [], + "datastore": [] + }, + "AU1PPvtDgCy1UjrWBsC8GNJrQRk1fMjeyqcbjUxW3pT8qFANomXW": { + "balance": "1638.876865519", + "bytecode": [], + "datastore": [] + }, + "AU1PQ74V9JcBdkhjVaRcJUyQfmzW1S8rVPnAfSnenNVQ4iUnYAz7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1PQJaAwxCT3w9BzQfwkAkeCdpwuAMGn9U9W6paWMa9x7Q8ic7D": { + "balance": "1594.681010333", + "bytecode": [], + "datastore": [] + }, + "AU1PQvLfpRZX1uzvVWmWLjTDhcZcWPkwVbNVkih2fvFWTdahWHV2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1PRv8qa12sLa5KA7LPPcgY3X7YU38JHeiaZmm8JLwMLss6etbF": { + "balance": "121.287128713", + "bytecode": [], + "datastore": [] + }, + "AU1PSHa53BG1QiZPpULtcy4z3cKptbw82qbr6fY7K86Y4NVYKkiq": { + "balance": "3366.597446418", + "bytecode": [], + "datastore": [] + }, + "AU1PSLPcTNCZoC3W56PSNc4Gsb7qkP87gM6MvN51LApWkgjyQsKf": { + "balance": "1224.937305019", + "bytecode": [], + "datastore": [] + }, + "AU1PSRSVtg7YN31SHD5MeTjaMgUrKghXjc89rBA2R4GtNcm3csTF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PSh9M16KfdW5aCqQ1ntCCtaLPCn1npgQymmdpehTWHEhiht6v": { + "balance": "3.523707700", + "bytecode": [], + "datastore": [] + }, + "AU1PShTTK62ko8TRqoip8bJy5Sk77X7k1chgv699nVWLibZeUNpu": { + "balance": "201.216311116", + "bytecode": [], + "datastore": [] + }, + "AU1PTHJ2rxXufrHWfqMWZyAMCUoDWu2gjUR3bQtwMyKHmDm9oPcN": { + "balance": "1467.769135254", + "bytecode": [], + "datastore": [] + }, + "AU1PTZiYHbkjzcVmjMRyfGvX5T1waZ7jFzxdvc9Ji3a3RKjmaBZn": { + "balance": "890.139030080", + "bytecode": [], + "datastore": [] + }, + "AU1PTcWmyd79sW39NG1nt2JCnyzeBjRVZzLtMh2FqYFBGthJkDQq": { + "balance": "1344.128165864", + "bytecode": [], + "datastore": [] + }, + "AU1PTfEdAx6zXBjhE95wggtotP5xoWsKTkH7qRTSwq9REneMwghc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1PTqK1Ve8Q2WbgK3w32Ee8v4DcvwgKJ3B57wH9KHK9abqr1CWo": { + "balance": "1508.580288830", + "bytecode": [], + "datastore": [] + }, + "AU1PTx29Nzyu2MQh7JwqBarB1SqSUtAWFa5M1tFuahY36bqsLQ27": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1PU2gMcaYo2C5n9SFscuMCgGNh1JPNN5YyyUL1fvdXNKoVa89n": { + "balance": "828.832430802", + "bytecode": [], + "datastore": [] + }, + "AU1PUFX7NrjjjVcy6Z3wuvJppK6GJm1b8Vp7AmFprZjfHaHyyHkM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1PUbHsSF8zBaq8f4UHRT46ebtQJXMEYivwMgtc8Lxib3XL3SKZ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1PV9HcKf8yqWaNnnPf2tsHRW5jN5sp1tXMbUx6R49u5dJUEcV2": { + "balance": "1264.976876420", + "bytecode": [], + "datastore": [] + }, + "AU1PVZVzLwKM5x2aQsgZxC2ZcbMsV3c25ZtKsXefv3KxPadskBmq": { + "balance": "2175.534584252", + "bytecode": [], + "datastore": [] + }, + "AU1PWPFPdYRg31JgF8QLfJbTffLpL4PGbvX5gjnQERHYY8iqvhpA": { + "balance": "43.824530245", + "bytecode": [], + "datastore": [] + }, + "AU1PX8ezL6A4o2Ro2V5LD3Yftr2JPBjjT6Z2SkST1QP2p8d1AAYe": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1PXecchAHeHJxBXhEf7G6ssTGUo16HNCCT88VRmcfb5p8Eeysb": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1PXmcXSEsCVjaHmmFSqtXyPyhde6sPs1XMzyQRNHunftxYpJPy": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1PYzGNVoTzS17CxZhLKKEaJr6BB7dbw91ZffsjtYZw68Rc3Rf1": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1PZDACaW7wJgVVxPo8R75stnYM5DhAvZBF2MCN5SuUMMwszzHL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1PZKJj1SkkEv2zeLnK9HMX9MC2w6G5qAhSK3j7g6t8NuqUbNhL": { + "balance": "576.386137622", + "bytecode": [], + "datastore": [] + }, + "AU1PZRTzqnRXSWMwW4bjQ2ZetevKwPTmwq4W14ZoU8pH6WHZFCiw": { + "balance": "287.622012208", + "bytecode": [], + "datastore": [] + }, + "AU1PZjGj1uqAVsCH9FkhrkiHsnQ5K8r6JF9t3NYpJVkCSBCn9xRr": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1PZt6XvEBbXryUz5UWSuPuQqB3vMA5HsSggYp8ihvh6bGB6Zb7": { + "balance": "3823.261734476", + "bytecode": [], + "datastore": [] + }, + "AU1PaCdUJeZnwxP3tP2Hqi7Pmc3fxucko1JxqSbRiMtMFyAvvy3t": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU1PasFPJFFWa6wPd32USWfJck1cEZWAn7xvYHozjtkkfbzq6xVM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PawDHJBoqa6xJgzjrTu66Ut4rb5vJnUYjGq7UfSthJFv6ZEcK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1PbAMY2kvLkKUxVz4JAhrwJEpsFCi8CMj9pWHFWhZB4ekELWNh": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1PbJxjZze3SnatHr1Kvt6evq2ivctbkTQeYfchZrE2A6zxeSFf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1PbMg8fc1oTn4xWx5gdamYtSvyAfnXKkrDS5Er7f2ergpRjd2P": { + "balance": "874.966900168", + "bytecode": [], + "datastore": [] + }, + "AU1PbQN8eHiYePtnKL7k56ktLAePa21m32oKUhbEqz61nQuhV4g9": { + "balance": "1330.524868662", + "bytecode": [], + "datastore": [] + }, + "AU1PbYpoesQBFdtPfEwhgY7T4375P5ERTiM5yeKnuJdnbvzNcqyZ": { + "balance": "1132.843010246", + "bytecode": [], + "datastore": [] + }, + "AU1PbZt1JZaHqxzAf9ojDJHGEFKDS3cJ8Hbux4yrNdGYK5UaJ3o2": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1PbgwEh1e8pA85aEjNQxdUM7FqexryuRnk7dNaLgQcDzJxYnND": { + "balance": "3411.979350526", + "bytecode": [], + "datastore": [] + }, + "AU1PbsdY4oJFwg5vfaTckujEVmuvtHYQBE9J3zMPBDW21GkwFqVR": { + "balance": "1276.540393366", + "bytecode": [], + "datastore": [] + }, + "AU1Pc15fL6Ju8kXM9iuJnczVM5Jb1QEYgqkkYg5kTxPKXUtyTS6J": { + "balance": "1809.908632976", + "bytecode": [], + "datastore": [] + }, + "AU1Pc9Dx2A7hEx8VDiXiQp56kbRdGzVrzraN6vLCaghUcxJRyJEM": { + "balance": "1230.648732163", + "bytecode": [], + "datastore": [] + }, + "AU1PcYa5M3U6GZv3LV6oHToPHGUUHnd1dhW9quHp3Roru43A5xBT": { + "balance": "56.164780922", + "bytecode": [], + "datastore": [] + }, + "AU1Pd2BUdgKi4Hrf1NFChr4KGmbbJxp7ZQomHFkZkTRHYt7skXEz": { + "balance": "4872.845037800", + "bytecode": [], + "datastore": [] + }, + "AU1PdCjgFZQJs4RzspJsNWhJFNhQ3whWKbaPYg6voBoFoeqFYcBj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PdgfkZWnDptUvzMQT7EA8dGHqYhD1E58g4darpB46My7YcbAX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PdiS1EVUzCwiuzg3FYobvPgpMBkNWV86PHFqLKymZiCZumbcE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PdjRBUqV31A7Yh1YN41qSGff8kmdT3ZSBLVaEVZryjZENcN5F": { + "balance": "1570.926825869", + "bytecode": [], + "datastore": [] + }, + "AU1Pe9ciw2gg4aGg9amnLLBBf7NanYv5VpDCSGgQEYz1fPS9akao": { + "balance": "1675.755811495", + "bytecode": [], + "datastore": [] + }, + "AU1PeigpUikMhUXccyMsqjagYZSrKVXrpF5UncxP7kPpX2syjBDE": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1Pewvvv7hMXhPfFntF2n9JQ5NThyQ4LK5aapWTy1SJuZQAMU2N": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1PfCQbm7zp8xfxmhW1vR2CHe8mTSaK4fFafXTgsRAw3KNPNP1K": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1PfMzJcop9XcjPQyF5RpqdQK5oBuLKUSXvStrJkUBY23hQNZvP": { + "balance": "2898.117380250", + "bytecode": [], + "datastore": [] + }, + "AU1PfYWL8q7kcV2eqMUd846bMBnkB1H7kGQojy62zyLPNg9PkSPc": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1PfnLRSsoZDbPfkQnbyfcoRSEgLb4KTtCVVgKtFpLMpYKrVX1V": { + "balance": "2585.394219485", + "bytecode": [], + "datastore": [] + }, + "AU1PfzYE65d57DewsuqdrdSyGTtk9pEF4H73Hp6n9XGnsTG5r34z": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1PgheteQjDAXHgnDo7BFPKSBQoy2FfGBRvVvhYrMSFrV3es22S": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1PgjgjN93MTDgdfoDfVmb23b2bq5GYQ7Y5AV7aY9mHj14fYJCZ": { + "balance": "49.621195293", + "bytecode": [], + "datastore": [] + }, + "AU1PgtmxxtPW5RvtNE3YRQ5XjutBEph7p2c1R2ztVztT6xrwdGfy": { + "balance": "758.929063729", + "bytecode": [], + "datastore": [] + }, + "AU1Ph3gy5bx17iThsv9wpq4QjcKTV9yYEQKjEo9CJ9yzQnzP4SKQ": { + "balance": "1796.266650446", + "bytecode": [], + "datastore": [] + }, + "AU1Ph8m9wbTxoG6tagFcC4KazS3LhsPW6js5fyuHwR3urkD8QDSP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PhCJSv8tG2aLoBAFjPpZCGUL9iAtdWUKCrH6zLnFJ7K3zznaQ": { + "balance": "2545.080451630", + "bytecode": [], + "datastore": [] + }, + "AU1PiNHZxP4iwneRJ62xiNS1XcmFzkibJQJWdHqWJqRAQihRroui": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1PiYjUqDyDgFfKz51sgoFgAEUJAEfEejowGEW9XMHVFApYnndm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1PjewKzZahGucpM1K8J87J6mZMCVEWKQGF7uUagmnuWMfQ8hDZ": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1PjkCHq37NUVm9FBJawiRw9dCZaDRTeZQkQwsqhH36iFiPL92e": { + "balance": "2983.699792206", + "bytecode": [], + "datastore": [] + }, + "AU1Pk5BS7hPgFCEGSyQkKSzKmvuoa5GCJNMtcYLQoG1w663ZgSdD": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1Pk8TkZrmif5owBeECaQTtPCRm1RntV5vWMv1G5XvgUs16md4y": { + "balance": "2450.253322126", + "bytecode": [], + "datastore": [] + }, + "AU1PkPGJfYxUgoyvaSZRvji956Yffm5547rh9XNTC8Xczyx61etB": { + "balance": "2883.670880204", + "bytecode": [], + "datastore": [] + }, + "AU1PkaaCueKbHMAuvmwdizoadChJ5BhGEAbxXNruFnp2YFCwrqce": { + "balance": "2466.095862603", + "bytecode": [], + "datastore": [] + }, + "AU1PkpPSfkqJifxKwMpDbTM3YLPU8xQtmbsjxmTUVcJHBaykaUu5": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1PmiHR7KSrkeYyah79c4weYQDSUVq5T6jMmmf9FAh9zMkTgbaT": { + "balance": "5123.778468406", + "bytecode": [], + "datastore": [] + }, + "AU1PmrdenL9wTo3nMKuFjacUar83j2qqgq6f2etu83o5ZZaRFHv3": { + "balance": "3058.302230368", + "bytecode": [], + "datastore": [] + }, + "AU1Pn2LyuXbUFY8Mbdac7kjNgE9Gq983i7tMdU1Hr13aYcYszFNj": { + "balance": "4685.724868433", + "bytecode": [], + "datastore": [] + }, + "AU1PnN7JFcByxgP4E4NBhVdxqHzNKoq9sR7Ed4hQPP674fQzgCbw": { + "balance": "3219.742453960", + "bytecode": [], + "datastore": [] + }, + "AU1PnNsbo3PzEjy1ZnG3btbX3br5F1aXpyRjYK7KSf6P7UdVG17u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Po6WCDyRWS9owo14QfaBn96zgW6r6KYEvfeSWg5pHd8uDe3Z9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PoMKFjhQXSpm917eAN2FVLzLWD67mw37C9PFnv69MicPJpv8V": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1PoR7KHVAxtJtsHgWVaiHPUNegnEmcFqpSQbWuzGhLmAMzf4oN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1PoUknYMAnFosAgPx63GeRg8SXjDwmLz84eFt5N1N1etwT2bog": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1PoudjCGh49jUgTqEhy7SrQSGrMYHYHaTk6aWbPqj2DVuxUCrF": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PpHoho5HDUdYBpRWzH9MHYnmrR7AtLBiqaRCQSqe7bEkz67iB": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1PpNGEE3VtYyScwsFmoaMkwECsZXUkY1n9XJbLTFCNYy21L9p7": { + "balance": "1138.349030905", + "bytecode": [], + "datastore": [] + }, + "AU1PpTUswBo9vYuDxQKJNLARdUQZu3quuZRJYfR5B4oN8GL8n6Hf": { + "balance": "888.593980006", + "bytecode": [], + "datastore": [] + }, + "AU1Ppr7bL5LrXwY1CqUftXRo6Loz2tfcQx8K5dkiUKV1x3ofhN7d": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Pq4UZAAY6wd7MjsP9te3UdP8x97J2ZxAkCTFa2wWv5YNTqvJN": { + "balance": "1599.188529674", + "bytecode": [], + "datastore": [] + }, + "AU1Pq91bNQXigiYXhWgC1Agbr1ouECfeensqxd8JE7FWpfrd4Ytn": { + "balance": "1687.483794902", + "bytecode": [], + "datastore": [] + }, + "AU1PqAAXG3nMpgSNuDRM7XzjSmBRn4Tqi9HcFhfgXcCGd3BNoNfh": { + "balance": "3758.744710436", + "bytecode": [], + "datastore": [] + }, + "AU1PqM9jpwGxadcSGt6com5Wf4PiXiPQwTgFY9Tmkq8sBnohF7DN": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1PqMBvmxcR3nFqZ8MJC6QGrx67FEis5zYzJ33ZNbFrftu7uvCm": { + "balance": "1576.544106325", + "bytecode": [], + "datastore": [] + }, + "AU1PrNurguQLdPxzXCmnssL3a49usAxXM6qbd8SfExw19BnPB2Tm": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1PrVjwBsNXRFiAHiUNsTx7Yi9TDjfByFR3xg3AHyKuVBExzBsL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1PrZrViKMnBAnZpHU1djaBGBGMwqqmZ1FqUkTf9Af5eUNrRRD1": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1PriaTFam7zMh86eFQNgErDuVMpV8zHgZNB8gJVFWsHLk7LAns": { + "balance": "4812.925105275", + "bytecode": [], + "datastore": [] + }, + "AU1PrjK1G7mbeViYK9DnB7mytSbqNgq186YkT1rYJn4NYuwkYco4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Prx1SpJSVcTXcMZ81PFy22FkwsZQfehFic7BPK9guTJcmumEb": { + "balance": "621.555737619", + "bytecode": [], + "datastore": [] + }, + "AU1PsAShPC9tgWRHVyUstSUXBfVKG1g44Z2W9QF5MjYnoLtofKGv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1PsCUerCoJGo1nLqCxHSjErb82u7mqKwMrVLuDxrcXn1E8S6nF": { + "balance": "980.679523262", + "bytecode": [], + "datastore": [] + }, + "AU1PsJqT7RG6UZp9QbCZusnn7FeotmbBdDo32DCvzxGyKJBD2wCL": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1PsVjLpkwGsJmsnaHAAC69EW9BX6dHSWKEM1nLt7HJ4VbZQaKK": { + "balance": "1440.314956189", + "bytecode": [], + "datastore": [] + }, + "AU1PsjVgQB67LqA9wbd7cSkqzdp4eyhe6A3Qpeb25xePgAmtUGCc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PtXSWhCQLvJZugVJsHuPdzdCXrLst36WzfP9H2RHmR3LbC4W5": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1PtkvVzjJuWCwrcDRVk538cKSfWWZk6mbQvaDZ89UcJ2TRMuKu": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1PtoUNfUk9ZZ6QHNyMfv7Hsr26bhRwZMy5KdjKmx8pXoB7pKbN": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1Pu6ZJcjbJVwCPkYhWvnZ5SKaJHRv3v8vFQa2YEBaHuQiy4qxk": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1PuCNqQGvc7xpokS7DMjsGz9vptPYcSH7XLzEwWL5jnGjb9YUz": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1PuFNwM23wW5GZZziYxT77VguyScgog7dggEkV6MFACX76njax": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1PvmsT3kioqJQ2xnwXrNjZf3QRGVbLTkCm7DNhXLCt31FyzFZ6": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1Pw13YWTppk45dmYKSXaTvVep4PLECHAdfZTRhQqpSgiMztn8r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PwDUJvWFfAzwBDDZn8th13EHqfzpfWpxC9baziYSz8tcyk6W1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1PwNHuohm6TWVKSymCLsT5kkZiZ6EHz6HcHG5epM7MkQheS9oM": { + "balance": "1970.719926919", + "bytecode": [], + "datastore": [] + }, + "AU1PwTQ9hBmWLFoYAurUCgPLxo2qrG3W8RPAkF3k6cboT29UbsFR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Pwe1TDZjoeh41zXEW1f1XnXu6UbTYe4jxhVmYsfdau6i8W7LS": { + "balance": "1127.315984264", + "bytecode": [], + "datastore": [] + }, + "AU1PwguuvdjuSmeRRHxnCCcq9TPhn4p1z1n7NxhEdvc4F72qew3P": { + "balance": "2894.399922520", + "bytecode": [], + "datastore": [] + }, + "AU1Pwn4rhDpwYficZQyqV4YZbHgu7hzXDp92K586DoRoHBGtjci4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PwsQnhmBJTDW1tBYKetj2g2xexGqisYgrpXvvRtvixZZtaSSC": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Pwvy1K2TY8BazwG5ksnMPaEQXTvrXkVBHNJWXEmt97zfNRqrj": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1PwzbGY7eChXkEyKz2xiJxnuKkAAvFFTCumyLycGuVTmnY6B6u": { + "balance": "1865.230229218", + "bytecode": [], + "datastore": [] + }, + "AU1Py219yv9MG93d5W4FjKS8rK8K4mf7tbXfBHL2LjPuopLmjhKk": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1Py7XAQshuLPy6uHHsCAMgiNtZF3eQThwfdTkWcnW2YbnFk6pv": { + "balance": "1930.390023475", + "bytecode": [], + "datastore": [] + }, + "AU1PyaGrgZBnabrbteGhWpdG3cdF4Kt3BVyv7YKQm3StaZ6FcPRQ": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1PyashhNLhMBjRgsMzd5KUvEGuE6qgKz9fFqJ6wcj9FpfVLAr3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1PyqAgawCtbhkrSvDZgqoTTUk2dBrD3RHYzy5sTMGir3Q5aSsh": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU1PyyxGeJB51tsCvEL1eviMv3M9Bh1dobEHt4XETRr6gWmL9oDr": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1Pz6tdEY1BM6Qi4jLbQeQ1Q1oTGGXMoFPadev7nboAD3xVfxui": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1PzYyxptgeYMLWyvuBWkDzRkiJvvLeoDALtW6k6iRd5VeYczyJ": { + "balance": "5139.740851390", + "bytecode": [], + "datastore": [] + }, + "AU1Pzozc3stb4A3jjt7RonuA8azoq4JC5Jmhvoovhsy1uWDb1iyE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Q11kyHy2CcgmviK6dAnMeDsADvkb9Kku7hFGG2AdzdAvJpgLX": { + "balance": "5017.885448991", + "bytecode": [], + "datastore": [] + }, + "AU1Q151erihCvxCivmUsRyJBqjGqYbEsumWLTvPpyr3JKXij7c6M": { + "balance": "1689.243138291", + "bytecode": [], + "datastore": [] + }, + "AU1Q1JB6tYeSxmPbYmRJy1H7Lm3dqRXsvGiCJVgzspMBsDe3oJTu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Q29gMm95qmGHJmDoLCU8StJUDUQgkn71ZmyLMj59LF9G4a2cE": { + "balance": "2422.993800078", + "bytecode": [], + "datastore": [] + }, + "AU1Q2jqGxntGRUEjokUrEYUbnpUdoNULuqtuHYgKJo4pTbHRu7L8": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1Q2xeDQBsHX6pj4TtnJav6S91azmSbvVaV99BgocNnBbGjHbK9": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Q329TZhRD7nDH71etMEViySEUf4m8WmwLgDkYeriEzQmFjTXZ": { + "balance": "987.486509953", + "bytecode": [], + "datastore": [] + }, + "AU1Q3HPTQJZD68ZhgLqvKS1DBHy3RAK6vqH8jFeJGEw5eLqUv59A": { + "balance": "1412.928195660", + "bytecode": [], + "datastore": [] + }, + "AU1Q3oBGsD1FvS5Bw7v1Qv7dP8z4LBUrfGatm5g6mdMtzpmXhvdP": { + "balance": "3922.021353436", + "bytecode": [], + "datastore": [] + }, + "AU1Q3tNrJ7Zd9v6VDPvrGoSDLfig2yVqCLpuFTeN7gB7cj7SfjJR": { + "balance": "2815.812010773", + "bytecode": [], + "datastore": [] + }, + "AU1Q44Fvz7y4LmfzWDjRYTvAPSEuavjmEtjk9E7oiaB2bsKuegEs": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Q4NFyCx8Ef9D4uH425XESXAxydtpGk114RGvLwgehzLSYpHjC": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Q4SBSrQzp4AXwJYYTniYsjowzKpLm5Ah3wRphZpKzsXi5QFXo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Q4o29o6zsvGSkuWWg5XnQcnTspPFCW6yV5p36JoBRS1TNzNCA": { + "balance": "2018.201817980", + "bytecode": [], + "datastore": [] + }, + "AU1Q57rQxkyaNKE8EH4mmPSjUYo4ejYDkWHxgqQXHyqgSug1NRm6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Q5Xd2yLCfXqzphj4UuyNUJMfCaANdG1PBzEqJtRpme1Fczn11": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Q5yAhQHAjGGEh449XUaohaaqY5xQRDnDALvrveN7EYwUF6Xc5": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Q62q5uVKe3iAvhDHer7dYUSKLttFN2Uj7oYTYgGKFnz1yrBG4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Q6Fr47NkVfabGxBa22LAmUHBaTiBd4TSpu7ZZC4KsBxktk9aF": { + "balance": "937.614135726", + "bytecode": [], + "datastore": [] + }, + "AU1Q6RdTDg5codNGjrVFtj7FwTx1hy41gCY6syakFDqygsPBBT8z": { + "balance": "5320.286121773", + "bytecode": [], + "datastore": [] + }, + "AU1Q6qGh7te6SWgmPCY2djxYQvUP1WVd1g1oJUZTLc25D243AmCh": { + "balance": "1551.058530664", + "bytecode": [], + "datastore": [] + }, + "AU1Q6shoN9Kq3P9hP9x1hRE7PeELRLyX1YZspWKrCmSMWek6SK34": { + "balance": "1604.321758277", + "bytecode": [], + "datastore": [] + }, + "AU1Q6tpbrD1hqPT315tqNYJTp6B9492Gh1hxAhAu4cy11XwDWU24": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Q73uVYPUaMuEa5Si5Tghe51owR1C2jSWrpa9a7qYkjFkStRAD": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1Q7Y8QS7a2np3r1XvX4nE2scV9gWyvJWi6V73doLRpQzqVgUKo": { + "balance": "3914.687507082", + "bytecode": [], + "datastore": [] + }, + "AU1Q7ZBAkWjCoYxWhDvHNsmTRS5aNLoVUrBXtGiNQMnEasbS69mu": { + "balance": "2953.016273735", + "bytecode": [], + "datastore": [] + }, + "AU1Q7hSmiPFDies2FW2hyyRDGCBXsMpcviFQ3STYVE7v4m6DE97X": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Q7un6mbLC3Hpg5msnjzJbjuu6xxB2qUF13hz9ZAuxEd3YFWzQ": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1Q853ssk3VBDQhZhZV4disjeivnAfnxXXGXTk3sNZFqZWhgDBz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Q8881SXy4gJaEzEKq8JZigasSVLzQLM9bm6tUe7XNEkNZm75C": { + "balance": "4960.200033944", + "bytecode": [], + "datastore": [] + }, + "AU1Q8GM1cGPyhtztYVJ2zHmXjZzFYFYUvniFcH5EUEFUXpTnyVB4": { + "balance": "600000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Q8djjaDoB2JEp87rirzt5dx35hXHhDFZe6aV9t83MGq98KSoN": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1Q8iye7uHy4u1Bx2zxw7bNbQJ36DMsLftdA3efBXHwKFJ8HZ2y": { + "balance": "1261.259696151", + "bytecode": [], + "datastore": [] + }, + "AU1Q8wjQDUqJJVmrUMcNa2QRQk8NRHqSaaBhivWfEzV7rnePUGWc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1QA1E5ZswUnCh5Cb1GFBN17RRpRbxFfv61NbtSkJFVaejpBQYf": { + "balance": "1579.291801741", + "bytecode": [], + "datastore": [] + }, + "AU1QAMxhGt3Hi53vP286dsozefNs4DDjgdR2Y7i5iT6teuvQ5JEV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1QB6qe3iXZHGppJoFQCD4D3P3h3XqCtfM2Mby2y31T8xQLjBgd": { + "balance": "4274.087932420", + "bytecode": [], + "datastore": [] + }, + "AU1QBMEYM6Yym1LCjeJiDJp3LBwAC1KyefuWsM9g2vAik47Kb5ga": { + "balance": "586.047755884", + "bytecode": [], + "datastore": [] + }, + "AU1QC2mKZ3YbDK9QX1tJJJm7bap2LWzw5DD41FHPCPp1nXR3N3v1": { + "balance": "770.941971014", + "bytecode": [], + "datastore": [] + }, + "AU1QCBjGoEp3LGtTyFsAe16h9eRmyR7LGf6H3guztBcutRApstbE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QCRJ2yJ3jVuhTS6ZSMfyPqHki8duVx3tw77aRx4qdznDwP7Cq": { + "balance": "3830.623705608", + "bytecode": [], + "datastore": [] + }, + "AU1QCgeBq9vJVDtYDreZt3Uo5MR8VegpbNxpUHga9ii9ZBW6f8RR": { + "balance": "1332.357753913", + "bytecode": [], + "datastore": [] + }, + "AU1QDD1KrVSw4PUhS1GHAieetpXp5fea1ewZ5Xq8BDvQVuGmWvcF": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1QDWbPZ2d1WaT4iQQtYTckcFmszwJEnMxHgKAe3bGcSKev1QiW": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1QDbgZvtHhMmFGSWb56SdKuWCpySdUP9h8DTjYoaMrPTZ3rgf4": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1QDmCpeFoLYdefJT6pyeKyVPtg2JNbE2QaQEzyE9bLnePGX6tb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QDmXWqCMi9gBeFqLasAEHh3vVNJBFGLpdXY8pcgPJsM5ttU6e": { + "balance": "2152.758411716", + "bytecode": [], + "datastore": [] + }, + "AU1QDy1wtzhCgXt3q6FpmztxJMBatmf1LJh3uJXmSpSFVx4rs8pa": { + "balance": "595.068179641", + "bytecode": [], + "datastore": [] + }, + "AU1QEkdqXNsSJkxcZYk1cg3mL3t9TDTZ6WpTKApz3XVs3cQbULve": { + "balance": "5781.919143333", + "bytecode": [], + "datastore": [] + }, + "AU1QExVfscimtAoQH8pL5FN5VEngprP67WcCdbsWwUBSrZez4CrM": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1QF12RoTMFFFMGKxcbUNKbnyLMLLuUg56DhVm9JyhKceUpfxFs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1QF5JLvWsYUmwz9eHXEtzdxiXd6cncTTaZxD3xYpYTT7Ahfrrd": { + "balance": "584.952927111", + "bytecode": [], + "datastore": [] + }, + "AU1QF5Jm4wcKmVe1BFveKSd9PXrc9KkAkv2KYxxELKFisFq9RWeT": { + "balance": "12513.717039061", + "bytecode": [], + "datastore": [] + }, + "AU1QFWsqbdhHZMiTBWpABW5kiMNFDS8twQTUXKQFwQKjZtPsXxvG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1QFcmaARmV8L9KAhySUPwS5bYEBDkiJsbmeTtEf5Gvu5jFaTCP": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1QFkGvZoaug8MtWY1JrKtXkRdWbGiL4aoiy6baDe2nMCQwqNoZ": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1QFqRuasah6Bad5ShQsfiPriUJSudY2eAhtDSPcVBrjY3eiQ6W": { + "balance": "1514.401953896", + "bytecode": [], + "datastore": [] + }, + "AU1QFvme7CjxUv8C5k9AohjNC7xUpS7whCc4udNuyGJysQWAjqPx": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1QGA7WRoavaumeymEM2bTCd434NCM3zLVhuQXdM2vxopwRnhjL": { + "balance": "1871.264008441", + "bytecode": [], + "datastore": [] + }, + "AU1QGMiHH7yiL6iN4g4itt3E1SM3o3wPFhfM5UnFA6GmFgTJ3ZaL": { + "balance": "1161.970932324", + "bytecode": [], + "datastore": [] + }, + "AU1QGj8PocbMuBLESZESCd4jiEH5kukYbSeSJHS5GcAEzW37uPpk": { + "balance": "3602.664935341", + "bytecode": [], + "datastore": [] + }, + "AU1QGjMnHnjZvFVcKQXzN1aM78r7b6A6heVEfWUkDGphVCRzBNPq": { + "balance": "202.814964429", + "bytecode": [], + "datastore": [] + }, + "AU1QGpTqzp1c8XGgw6d9Aer6o2ryy641a1ih95NzjAfvw2NU7szY": { + "balance": "1346.506376084", + "bytecode": [], + "datastore": [] + }, + "AU1QHBhchTnpkzXn7LzX4aoSRLnd9UCeJGAN3mNEwxY5bcn8pPcZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QHPNTyX7S3Qf2tWCiheHgXX9AEg4vAc9oZ5YqhpbaDiWXkmiw": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1QHUTkVLRCEbtTudqJWc61fDrZ2foPr5Qi1sBqA3NE5kxY6pVb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QHgvH3838xzDqwm6Mm7CovJAWXsHyyanPQBTSVTTdQu1Sghop": { + "balance": "5410.113962468", + "bytecode": [], + "datastore": [] + }, + "AU1QJ6EVhZkomYf4MPZExf9ssnS7mbBgzh6fmfzNbqw8pA24ZiWZ": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1QJC7nNPBojuNxmTVVS1q9kzJiN5rPGvTSscnvKr6WoqNp8Yub": { + "balance": "1055.228435384", + "bytecode": [], + "datastore": [] + }, + "AU1QJE29Njz7EeCShJkSAccoKWwtSnSzN9CMB88zbYm8CtAAbTsY": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1QK5cP3i5P5VhGnKqepnMqR5JhM8xfg1eusXVQ5dFeLThTD6dE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QKzZ6UeKrEEWnSzByy7pp9rjT4SCsZW3yBm3MrjWwBgrD5cMx": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1QLUcRATNVbgfdBBXpcTFATHypuimtBjZaiuRiUdqUsrktkW9g": { + "balance": "791.796935983", + "bytecode": [], + "datastore": [] + }, + "AU1QM2aqQWdjXpiDnLjFWXkC3rnSRtmEtS48EubxTDC5H2pmEt7B": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QMiD6a2jQdPVNdU9KLrkv9mPNR7ZgTk8SSKZfKZwMWEhKgp44": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1QMqFUUBXykgD4TkfmZB1bCd9So5ppigGAfjSARnFJw3z4BvHq": { + "balance": "2353.110176127", + "bytecode": [], + "datastore": [] + }, + "AU1QNTPkqTL1a2dr9mGhy2onXWiSiWvfEV5crtaAABihH2hrDm1M": { + "balance": "727.643501259", + "bytecode": [], + "datastore": [] + }, + "AU1QNY9gAUGRx55uaFQFNuebu9Wak8w2ZaeUf9yJJUQWgRLk6Lp8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QNaoaYUc18gGo4Y1eU7DHR6uquPpmweYqtX4fT3FecZAQX6JF": { + "balance": "420000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QPNN7Vz6Pyngn55RXsuLhs8hQCofrYA7d2TcB7TRx2FRCZVaN": { + "balance": "2065.195235047", + "bytecode": [], + "datastore": [] + }, + "AU1QPSzAZddi8diPBH3Y3veAynGvY2NuFrGDE9SC7gDZGJr8VHrg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QPeRshANmRiw3VYJMAhS11bSywxjGAiSUwnnr6frMHRoAjh7Q": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1QPi4jsjHJa6zLdRKFv5tFsiWGuVAdS79D2D5r9GYPgctWxSkE": { + "balance": "1258.491424156", + "bytecode": [], + "datastore": [] + }, + "AU1QPmJqupsv1uw5scUxNNzoz8isxeiFQpDKyhkwd51fFxbmaTQu": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QPqX45dBM87mEhLgajkoT2HhSwTHH8KfLdJyoZTbhgh8sexFE": { + "balance": "2063.730674108", + "bytecode": [], + "datastore": [] + }, + "AU1QR7dLA74foUP8VTnBQKY1h48vav8xXhePnoKpRMssGrHtgM9r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QRBkYsz2aYsqkaVeRitJwQfi8hrmudbENZVvD457P3STqW2nB": { + "balance": "1599.965511245", + "bytecode": [], + "datastore": [] + }, + "AU1QRhwZAzyqX7R4SxBizYWPwjxXoXmcXgdG3H1L24KC3CWS1Db7": { + "balance": "1895.944176450", + "bytecode": [], + "datastore": [] + }, + "AU1QRrupAWKwrhQmMGkNKuBFyH4cGcoUKZHL1BLvxVUuVV7BSwSB": { + "balance": "1050.165817880", + "bytecode": [], + "datastore": [] + }, + "AU1QRv44LSRrjpjx7oFkAY2vn4CfCN8GAzxyqzTKZEbXaVddNRtS": { + "balance": "2820.667568436", + "bytecode": [], + "datastore": [] + }, + "AU1QS8XgywdQHXxMe15FSuZWSLw7jH5pzmnZNrJBjWX5SrNpe9AN": { + "balance": "2543.280698583", + "bytecode": [], + "datastore": [] + }, + "AU1QSBfMY3uSpbFttQep3KtFmJUAX7c2Re67KvjrVZ3omqTipvvf": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1QSa6JfNqqi1o6pbtK8NE7CcUXpQNCuWirGiU41dtbHGUjjApA": { + "balance": "150.624326901", + "bytecode": [], + "datastore": [] + }, + "AU1QSa9N5GyqxX4NJAK4n9JWEt88oEy9wKrWRfzaqurW52GE2g7p": { + "balance": "2496.845921879", + "bytecode": [], + "datastore": [] + }, + "AU1QSvAEAYzLnDYvEkb7qSCv6eW5jKiMhnqDzcnAhxGoMGH7K5QM": { + "balance": "2973.983753192", + "bytecode": [], + "datastore": [] + }, + "AU1QTaaWcTggeyFiCJb3hajQLLMphzNSDBSboBtrouEuP3qzdRa9": { + "balance": "129.537953795", + "bytecode": [], + "datastore": [] + }, + "AU1QU15F49MFBXmXTc8corySHmptnHBkyr2VtYvLmqWhTGRcBaCb": { + "balance": "1166.561158654", + "bytecode": [], + "datastore": [] + }, + "AU1QUJDAHYjLiHVwsPQShPtTgY8u3UNae1kyVbL7LxfAXX75bsWo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QUS1XHYyguUAVo3De2Mfyy23X1Atuj4uauxibU8uuPNx377e7": { + "balance": "99.595787707", + "bytecode": [], + "datastore": [] + }, + "AU1QUT9wM1kJAUqvKGMTfreXLfTFy4PEm4jbMsi68A9e3hdroATr": { + "balance": "1070.967048009", + "bytecode": [], + "datastore": [] + }, + "AU1QUr6GbRWCa1MWtivYtjkSQEFgJduosUSD8QUaM2wnHdNs6MgJ": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1QVBXKzK3LND2i9y6d15Ecrgnuyq7SUe8ABBhMGxiBLsueXxRK": { + "balance": "1487.959589736", + "bytecode": [], + "datastore": [] + }, + "AU1QVBgnsb31nqLBygxrTJGpUfSSWSXZCrUdkXwDV9iNos2heKkg": { + "balance": "1281.591261611", + "bytecode": [], + "datastore": [] + }, + "AU1QVx4Da8HroosDrFSj4cJLuW14SwgeFNDBSpNqF2nL6F2mfFGK": { + "balance": "4393.460802140", + "bytecode": [], + "datastore": [] + }, + "AU1QW4d1RrXMm738SdnpAatzeDQesdsyuwf5ie3uZ2cShZWHbvAa": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1QW7C1pTCfgNHxwD9o4JDdeqkiF1gSxGmVYMspi4wqZjVWdkJF": { + "balance": "1558.083756032", + "bytecode": [], + "datastore": [] + }, + "AU1QWPzBgc9QsX291Rq3KL6mXmRiFU6sbfwmREAuQJa1UbUCU3WK": { + "balance": "2644.046350146", + "bytecode": [], + "datastore": [] + }, + "AU1QWjM1Hr4uoaYE7Ch2qeh9BVThqSkRCojWa5tJ8VnYD4QFFMBL": { + "balance": "207.508381622", + "bytecode": [], + "datastore": [] + }, + "AU1QWmYG3fqtAZ8ynMJbLxVZPqvpzZbVhnk6HnMccRMtMfaH8DRf": { + "balance": "6552.740667348", + "bytecode": [], + "datastore": [] + }, + "AU1QWzu4wFyaR3syhaHJx1odQiiniLFVeWjjLtDtskk4UQNpimFM": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1QX4qtvmdBv5qVmCWM6CW11CFxjeKQFDXJpmp4qnWYSybpAGvS": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1QX5yPXDG4Mo8DhgwhtZUPzcyfTQtqR3d3q1b18HyErzqP2ht4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QX8TQ7HRtKkbyCVDFifAF1nXmYNhm3N2xZZNwWXDzyhJe9T9B": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QXFW4Bri3ushT6qiCVxGEGCQGVScwotwCbBBPHieqtHn8SDGV": { + "balance": "2158.804741527", + "bytecode": [], + "datastore": [] + }, + "AU1QXUu5d5kFjaaAPto6kWsbPULgyWcj9KzfeHRjh1xMNTMZBK97": { + "balance": "652.221636457", + "bytecode": [], + "datastore": [] + }, + "AU1QXW4GyVxGfycUBo5f11ZzLg6C1mPqvJQoSRZoJpwvotaAChoq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QXYCHvLuy9uwTbLwaMbAf8WJSVHa4M6CHy1k6T9jrL1XoaNQL": { + "balance": "243.431212259", + "bytecode": [], + "datastore": [] + }, + "AU1QY2xUjds25esCKEMDZNLaaQHDfXYr8cZpntJ8jAJ1kuAJQGKP": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1QY5YrmuPrUJDcMQj973fAjZmnxQWvZgvTgh4MJLZxTXowecTW": { + "balance": "1405.982306492", + "bytecode": [], + "datastore": [] + }, + "AU1QY7NRHmyH4PRDDdo6eXb1ejehz9tnrA4PzSvTQSjh6usvtyT4": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1QYStSMia4VfrLW56LM8z3Bp4ppzhZESncFMrmmt4b3JC3MfWk": { + "balance": "2112.621848452", + "bytecode": [], + "datastore": [] + }, + "AU1QYdUWW93A1XEpMgdZZNCYGtewpa7ifvwmpssrupmWHvkJK7EU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QYfxgJTxKWmjMTMjbRqRZJtv21Jp14eKHRXNtgqKq3MbkKbTs": { + "balance": "3094.027959595", + "bytecode": [], + "datastore": [] + }, + "AU1QZ8rXKQzq6WHhNg8mh5p1yoCdux9D5pze5Ab5Aoo2kkmWrKHN": { + "balance": "2202.036671106", + "bytecode": [], + "datastore": [] + }, + "AU1QZRuG1tsSSGC3KKyYKDNiiJbki1wtTdAnodKQJWJUaopXZZqP": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1QZRwuxcfXjaBaY2m9F2nniegXRrVQ8LxyoZT5MJMBoJuz3NUB": { + "balance": "1072.018440741", + "bytecode": [], + "datastore": [] + }, + "AU1QZiogiChJ8pGxzwCst6y3SA2XJ29Qx9vkhuyF8A6UVZfLfoDq": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1QZttYtKUhyUqbKq6V4FyTR4nWowggN1EKvCKNh5xRtZ9b4Gvc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1QaXYDBepMEQfw3BmqMP4HczE2CXPxN77eTkTUXDsejnTgAA94": { + "balance": "1862.797627623", + "bytecode": [], + "datastore": [] + }, + "AU1Qabs4tz8VnocmK7SJ2NkZbU6U2W2ZhMFmFmfu9FtsdynnJuKE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1QantfHvQD9QQ6XbaMUmEXt4TFsUMKh19zqRZTNwpxage33qB3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1QaqRnKzrkWhrQLruZTrpF7qcAzt5XCw4ib2vpYCSiXb5NvmWx": { + "balance": "3085.369612488", + "bytecode": [], + "datastore": [] + }, + "AU1Qb4HjStJfes7xxvaCiarPN2xwMLX9GqEVRM1RL4HBoL7CiWQA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Qb6FN32oefJAkc8cgeptBKq21vNM1gCSyQA3PBmMpbNb5hJtF": { + "balance": "3252.739788718", + "bytecode": [], + "datastore": [] + }, + "AU1Qb87bH7Tbf1VbhaHVjgDvLYDb1yWMvgps7bbjSy68ou28LrcA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1QbjzsKsrcDHqQi3cYobJxLR5EDQsMtPGMEd2hSJkCCQZBYwMK": { + "balance": "2393.753279198", + "bytecode": [], + "datastore": [] + }, + "AU1QbrqVEuQAy1FqxKCFdiLg6EEtuj2yyHT5om6zo4nB9LwfXWY9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Qbvd4XanfY1d2MJENdUGvbj9hb6NgR9XjbpNuQHoF72oX9GQE": { + "balance": "3074.238203581", + "bytecode": [], + "datastore": [] + }, + "AU1Qc9rwRRtirGCdLr8dTL9FR5T3RGSyeP2A2L8JQ18yCxo3k3dj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1QcA2vFvG9MJdcqhamjntXcyHubRpTfXGhNRsWKjmnzVm1b8Nj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QcE6Dg8GdmyCaFFMBGgdjo9bom24cg4rpX6KYYDmFRioT1Y1W": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QcLuVZN4uibf7ojgesfoPmSQg7LGwbyaz1qwhPkTStKEAYoAb": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1QcNRXj2Uz6GpSP4zBWXtDpjGt6UHnAXwErgjEae2U4kCkdoNk": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1Qd1KzGQwUTzh3se3PMrQ91njapoQLpV6JDEr9perWECCQ1QK8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QdQEzGyyZ6W93KRs8aeA8rm32KAA2t8tykHbjDTBVHSH3UqQj": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1Qe9FwYGLNrcR58TYUhiNztRUZwRuBwuaBieFWZMWUsgHrv8Mj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Qf7gTaLaVvaDEHSQF2w1qNMtzNchuxY189wqbjnEJHeeGxnZT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Qf9ABgR3vmuoP2y5edAcuRjfi1YKhW9kt8t8cKpfL1x8RgAfs": { + "balance": "969.532316780", + "bytecode": [], + "datastore": [] + }, + "AU1QfNRn18xsyXa3EYw772654TM9Fcw4tq8CcYheQWkVoaV7U5R7": { + "balance": "1974.308661686", + "bytecode": [], + "datastore": [] + }, + "AU1Qfh288Qku4WoVWfvX54CEEPGVubiDcMF4ikGPVNPHmLv6yFUR": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1QgKi7Ct5C5YTu38PETnGbChtrT6Qy9UQLSwd6xLpSv2v4525Z": { + "balance": "3201.143702835", + "bytecode": [], + "datastore": [] + }, + "AU1QgPDeDvsJXzQXmbtPzhecBQWhKHpd5dqa3Mb1oeqDAVzSw6ye": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1QgR3HVTin2RRWphFGxfKaa15sxbnnw8NACLQtKkxngBAWLCfB": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1QgRdgrFP1VnkUzAjskGgi3QZSF2Q5u7D9dUADwE9uQjLj1peg": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1QgazaFrStALwjwAkkgV5ZEYsp9dPbSUzSngmeekF5A3SW4haF": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1Qh5EnEKR7inR4jDuv8pd9xGf8e815bTEfkuS3HxVVPNzHJtAb": { + "balance": "215.910444918", + "bytecode": [], + "datastore": [] + }, + "AU1QhRw4xpdMZa7sBNVwxvHkNbveQcGEfToGBs1pwpVd2vLCvj3B": { + "balance": "199.901157350", + "bytecode": [], + "datastore": [] + }, + "AU1QhW3AbW8bABQivv1dZ7HX1MTY8pdEvjBsA5X3WRP745ageraP": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU1Qi4f3bRRoBYmM7hn7upewfghDCgKyi3KGUSgZ1Pixjx2wHcLU": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1Qi9v18wtaivEpgtDYpwFi3KDfrA9CrVzbhExy5Cmy3zHsE9bv": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1QiAc6tWsBqRMDkcmVdboLZzfwy8i29x8KGwu9UBvQmvmoy4Pr": { + "balance": "186.721241604", + "bytecode": [], + "datastore": [] + }, + "AU1QiC4NpD2YssuGfZ2LXtAK1fQeBDfeP4AuUfmy8bkwBMMzFDAt": { + "balance": "1086.236307270", + "bytecode": [], + "datastore": [] + }, + "AU1QiNVECSDdvsFMTNqdRUXCSmGVvYeko5n3NcLRLmYhhgrEWBrF": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1QiQZbJvRUHFJ51Sc35WXDcF8QmY4crboNccqswChfSZGN9iYL": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1Qj2yrsm2ry9EVKi9euPbQoACU2xz2gnVVzFSh1UyBWM96PDZV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Qj9CpMYH8LTWza4Arc4xsKVoRaKbu9AXiATptjCoNpRbZBhJT": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1QjNVDkujbt9Umgc7tzzabnzB1JGNsPW4zvsmDEvBwBArhNDRr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1QjTm47pUHcSugKriReyb7cMNqM72fH1qaHY5yKg4vqAP1KcdK": { + "balance": "2235.178024541", + "bytecode": [], + "datastore": [] + }, + "AU1QjdXhhrY4TUDYndbPmvC8NNiyxwqWbzpsGc1WvBctvXmdbuY6": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1Qjkv9Y6YoiD4nEznuxwidgsTTkwb8KdSJRkyP6FDdkT3L7Sco": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1QkMaVPQ3w1ADQc3TKvQyAqxBa23h9USzW1JZb1UFU59BGra5S": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1QkWkgJAq6WExQF6BZKAxnBJgjkyLY4CmB6Ro7eYyVKpxHMQWg": { + "balance": "1565.601560656", + "bytecode": [], + "datastore": [] + }, + "AU1QkZwUjkSdcmwn9zCp7DPx2qAoDrVks3jcgg81jRcHyQ8j262b": { + "balance": "1194.294743753", + "bytecode": [], + "datastore": [] + }, + "AU1QksuXNgtDHHvo6ZnphjCvtuQzT2CR5YGGySPagdnVpewL9VWz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Qkzzn6yUasnZUC4mT5S8iCrq5Y5SxWqpdajsTENwSDJVuCdtV": { + "balance": "4325.121054747", + "bytecode": [], + "datastore": [] + }, + "AU1QmJgD7zUsYESUhHwCC5ZmCDEYJY3K2rjiECxXjXPECBfXFgFL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Qn1MDh3xMjp3YC1P94GcxYU5is8vHoCAp1ZcJ3iJuaN8eLa9J": { + "balance": "4328.142272859", + "bytecode": [], + "datastore": [] + }, + "AU1QnyiEnKVq4n3Md4zncaaHCppKgVP6SiLYy7wUqdD8YmU12RVf": { + "balance": "5241.722594307", + "bytecode": [], + "datastore": [] + }, + "AU1QpeZhcVmueTu5T2Z6ZTt8AQ5sFqEvnTczUpTTDY8geAAjqGJP": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1QqJ89XYcjQ5ujNU6pdtudnauoojt5xXxgjrHtLVDZ4LFX5kNm": { + "balance": "2483.230392925", + "bytecode": [], + "datastore": [] + }, + "AU1QqLKsGo5BDbQkYKDWppaWSuiNg9e6UgdsaBdqHxrHka1xFn1T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1QqSN47SmCfSEFhE9RhVon73jTorLwMRR9i1UfGmFry4qFhZQv": { + "balance": "4906.301344235", + "bytecode": [], + "datastore": [] + }, + "AU1Qqg1nrbc8bTrkKgZ2jgScgi7FZjzJiFgvqJAd8ywMM1FNUvUr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Qr9qNbcfSseMRJuEQYwRdQgj5ysorhk9HMVkfoYJmWQ1dqhQU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1QrS8G28Yq1kzTPxx3VenoyeH5vNGwLwJ4DzpnxjLX1VzT2sNU": { + "balance": "2417.317305275", + "bytecode": [], + "datastore": [] + }, + "AU1QskARJ8zNH8MMtQZf71ceSy2vnGAHA6DidwsVZa72KFJpdtz6": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1Qsp1RtMypay44vbCkVz8yA84YgVbANttCNwdGZB3tXUNpQmP2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Qtae2xstRLEYXMnMx4tBrwo9qz46vSEjMDoBojZZFk7sVXbLk": { + "balance": "866.996923412", + "bytecode": [], + "datastore": [] + }, + "AU1QtmVFMgNuzmyRe65ffwZ51mghaZzF79Pw77GfnGRiQUNuT9n9": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Qtzs3thZWbPoeuYB7r4ZFZG1seA7aogEqXEbWnK6MYHyC5XiJ": { + "balance": "212.460589359", + "bytecode": [], + "datastore": [] + }, + "AU1Qu2ZQq6SzCDFs2wGwjurBCTGYWJ3thtdGfbwGPoFZBn1mYGdo": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1QuD4sLWXENFQD9VihG1bSgf8rVHu8wtMefpCRyZCTBZFBsBQ7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1QunBYzVShUd9c5xGziqtQmpjagNV897jdXYuzqnoNxtU6Txqp": { + "balance": "2531.023814174", + "bytecode": [], + "datastore": [] + }, + "AU1Qup9yeTL3XhXWoTt9PEgsVb9zJe6YvatTpY1rBeySDzwcpb9E": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1QvMknCu8dyTsPra2V93hQz1jfW9mZ6r2sF54T9jCYAejDoxaY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1QvjzTKJB5CuU3VJogEzoSraA9rjJirThK4b4AM2Ef4UeRV5Vc": { + "balance": "1506.398806631", + "bytecode": [], + "datastore": [] + }, + "AU1QwDfjUGgzQzw6kf76QqRwafWSVGHE31WxfacYcAQxCUzPoQqS": { + "balance": "3608.763709382", + "bytecode": [], + "datastore": [] + }, + "AU1QwP46oU2fSejQvVhtjLJMGQMuxrDoqabbKzqQQFf9DfV2CfHW": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1QweYhb8gYrV53CtSAfhwBjJ8kcWQ8XqMPcXUEBJ5CHYaaM9mN": { + "balance": "871.801038154", + "bytecode": [], + "datastore": [] + }, + "AU1QwgQQ7FYwhoE1ettBDePenow5oa1Y3Hwj41QG6Ju6RfdA46Ct": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Qy5DM7HFgzJggkgDJjfHFFuL5CbDtHnucBsVkfKmy8YxHgcEH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1QyBUYTSDTmA4ToMBNSWMbUVLh1x2gzQoCeQnwgkagq4TXuHQs": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1QyDcR73ypaBxyLt4XNzvHWmgynENrKDbJbn9JpnKZnxbi382N": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1QyEWJUUGrEuwkyLsjKcujMNHnocVUJuM7renXrWceBVp2D8CQ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1QyjycgkKuXnFuvUzzqZNv1HPq6CkKsydsZyjdDd1X9siigaRf": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1QyrdL1EpEFzKbqnhQT57FhbY3nBNodK9E437xRsuouuFD2qKp": { + "balance": "4601.825706386", + "bytecode": [], + "datastore": [] + }, + "AU1QzGFxEkJAih6U4vHzxpGJReVNNd1yHU1WC2WVr8Zc7cbpWEFk": { + "balance": "25.834088249", + "bytecode": [], + "datastore": [] + }, + "AU1QzKs2kXfq8vz4T6fkipynwrQCjg9xUFqGTF9SHowyvcYb1sJQ": { + "balance": "35.590816989", + "bytecode": [], + "datastore": [] + }, + "AU1QzS7jRysXsmJqqWBjSP9Z6WM1a8kFn2KGtSySFXy1Gr5Wgw4i": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1Qzf64B6hSPjxzs1zePXJ5MKRe5Ek6n9Wexu5ZfetA7PVsdowH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1R1g7jKjWS54uUjdcLtZmcJbntkYo3CVuAQNuao3mHgP1Z2ifo": { + "balance": "3644.539523498", + "bytecode": [], + "datastore": [] + }, + "AU1R1gTFg6dkucYPQW68rFiATN5rEozQddgMbyiFamT5QpJzcRkG": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1R1o2ZLWVDNihvBY87pBMesNk91WFB8DvcoPviNTiMcYivWnEb": { + "balance": "1945.564473296", + "bytecode": [], + "datastore": [] + }, + "AU1R21CCkXsbFYB7sjPdrDVWP6uRUqK4zFQSSAMAYA9hJ387VhkT": { + "balance": "20.016814733", + "bytecode": [], + "datastore": [] + }, + "AU1R28d5CPMpY3epwmgpX9WkvRDd3Dy1NvimriaKfUdPyuQf2P9q": { + "balance": "2404.956167551", + "bytecode": [], + "datastore": [] + }, + "AU1R2PX57Pys7m8yveqsdmQcqfB5hapGuDr68UiLF32gyCayhB9V": { + "balance": "273.735589781", + "bytecode": [], + "datastore": [] + }, + "AU1R2PxCXGAERt68dm3oj3U1rFE3dc5zumwLKgeNxSYt9D5zoF7T": { + "balance": "2291.099105887", + "bytecode": [], + "datastore": [] + }, + "AU1R2bw2UKktbqj63fH8BuYZZZGAyR43yUeiWi4eVMjJzd6YrMKN": { + "balance": "1509.044237068", + "bytecode": [], + "datastore": [] + }, + "AU1R2jRuyhoV6MukXwjZJDXbWJi39HeqEoiGYjxDSSo8b1tCncMa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1R2raQmr1i8Y9TuLqxRymuWoxMgGpiarpRMMkwRxq8V8uPdTmQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1R38NcKg2sQ66nuH7CgPRepiSAMMww5QoDhmPEqVHxwYUH9GAA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1R3VqpHA5s36FjwZJSjLFV2iM821LJtU8dFQ4GqB1RmKHZyEPM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1R3kgEivr6tGPAzDZ6rUNxx4tFwzn1zSpvakU2VYYaroZCNJfQ": { + "balance": "728.707467982", + "bytecode": [], + "datastore": [] + }, + "AU1R3s5wboYN3QtUncJgS8XirRF9EjAgAvsP92iYWj8PBXY4ELAL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1R52TRcQJRsD7WNyTa2dMWMKiLAjLrJFpcLgbh65ZaLVj6mmAR": { + "balance": "3324.203785214", + "bytecode": [], + "datastore": [] + }, + "AU1R5WCCCzfVnNJYpii8FrDuhWvoQ4Z2sSr39dgHGhRbEtFzoRKt": { + "balance": "534.908553839", + "bytecode": [], + "datastore": [] + }, + "AU1R6Ay23ypiX59w4YGPHMTEvWimKRxti89VwXjtTF5WG5BFwSmh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1R6eKaxEaKjKAoeEd1aSeegMtt6xcq6MoP6WWVJDH7gwsyjAFU": { + "balance": "1406.588505592", + "bytecode": [], + "datastore": [] + }, + "AU1R76GpEFuFcn78gxk7tAJ4ups4jJkaUw3BpiZq7wWFmNoKsjjc": { + "balance": "2573.345685775", + "bytecode": [], + "datastore": [] + }, + "AU1R76Kpjo5AxmzPpVgiJXBgoXWDbq6GjkTKVCvVKJvwBivmhpTn": { + "balance": "3942.163579100", + "bytecode": [], + "datastore": [] + }, + "AU1R7XgTJLG2Nb1KNUi26DyM3n3zCQnqybP33cXxfNBzfvWYNvBH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1R7oXNJJB1hM6CvyEcRRD77WYh5RGncizho3M6XEBy9txkYLiA": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1R7uduNH95km1Kek8EWTux9rjxPjSyEha4ZUxuvgmg5XiUBu6F": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1R8B6fuXae2jYpZdBQJ8z4FG6PKaefgBaYcktZDht7xSmdwHRw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1R8nk4VPWeyVG5F2DSxjdG2ybwSbQLU6f9xjkB2Ub9xRwU68ge": { + "balance": "1602.796026059", + "bytecode": [], + "datastore": [] + }, + "AU1R9ouN3eCxtmu9kifudPvnJmdTbuqnWqtFcLaLKu1YeDX2LYg4": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1R9rDPUK3A1UkLMBaEdg1JeJS4TGnLU14c8HJ6KJa1h6Awr3PM": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1R9xzBT5gACucMQWMZaM453Cd4gsaH4DhqWG7HEMJmoJ5UTtEC": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1R9yny5AdQ2jauwL4ymDzDAGikCzxvCiqc9EMkgSQT24rJhaxt": { + "balance": "15000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RA19CvJVEE6S6jYM2P8jxCshZUjZEZvTHupPRsjUH3auFM7Ks": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1RAaLVRjzXLT9TXqgCVEkkKpaudwuhhfQu8gh6QsHUVkPhjRAu": { + "balance": "4070.241422528", + "bytecode": [], + "datastore": [] + }, + "AU1RAhHr46ELJrLRKTe5cb8tLZtJmJSMquLV299tqHji3jFfX9bX": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1RB8Y4wQfLWncZbE3XqhWFyisTHYc2ucmQQpjHJMaUQnvpr5jZ": { + "balance": "1536.188556798", + "bytecode": [], + "datastore": [] + }, + "AU1RCAY2CcQ6nEPsShGVuVmot4HGJsB4fwPrkzudkoXf9wME2TiH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1RCWHfYVvdsA5JLjwAbotuf12AHrC7r8bd2YcDEZXmwxFuBbFY": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1RCnqrNCoK82hHd1PvMJDMaUcVCXYVTy2i2FB1aT2Nw6j4pGDT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RCqETRMFyRnNJxufaomduSx9dYA5ad5inHM4pgWnkF9J4A9zd": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1RCqH7bFqLsGhJwkRgkBxFAD8YJoTLcthGLvQDTV4WA3GQR15h": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RCvAr8xeoYQJVkCg3x3c7KSgLCJdAfiuBpjZ5Hb8RaQKV9d86": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1RD8URzRUZz1eZSga66M2f2T1b4mfjLWTa65K87JwF1hPtvj4B": { + "balance": "5903.855330914", + "bytecode": [], + "datastore": [] + }, + "AU1RDRDAXeZ6dAP2PVKgy7WyLw4kg9dVbZqhZ6q6cfXKs5pqfUfH": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1RDXphFBkTAA852vav5G7A3YbbfkRiSX8Vy3Bn6KdtwpUiJKb5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RDwoAz6L8neb5P4GcJvkL7jva8aH8Wpz7Lc5E7dQXcegnr6vU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RESmWQvgii8TzhpGBdbAYjNduwmigAAQkH4zLrRVCgnt5N7bb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1REhfmAXeVzKdNKFHgXufAX3aLF2Eeo7HmxBk17AWL1gTq8ygt": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1RFqEwKXoHYZKDKgmNdio7KbD7LPGmmeX7cCupvLmyQt6hGRqG": { + "balance": "1311.088538979", + "bytecode": [], + "datastore": [] + }, + "AU1RFuZMrTVer4y3ZhKgwZUwr39eNwwccXcoXKZwjDpp5Qf9b4wg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1RFvHDnG1URdkcPG11YWpgmgg7sgiU4xyVMKphtVkge3dpqkSY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RGKfVsViPjNSBstYKB5EKXavndPw3ADmPKEdL7hS5vNAYRVT2": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1RGm4VYoRmA8wGjjrnoMckqrLxNBLa4m2RWkqYq8JWkueBzJYp": { + "balance": "1777.525293462", + "bytecode": [], + "datastore": [] + }, + "AU1RGuSDdiSMGk1w7tM99wnXeAy69QxDhZdfuidDJRp5cGr4UGX1": { + "balance": "254.650079118", + "bytecode": [], + "datastore": [] + }, + "AU1RGzLLHMonBhnU7iu2tdF1xfttD5K7MyQ8q1nAWyVxNhB3qPsy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RHG2BY7eKRTtPk9RPzGsPg9e1phQ1LFEaPBHRmZ7EsWAZckWo": { + "balance": "3073.778696246", + "bytecode": [], + "datastore": [] + }, + "AU1RHbtDHdXtuTEgTFmhSDek7hAGeoZMNowxvmMPBmrgx6XYVKDZ": { + "balance": "1615.974269516", + "bytecode": [], + "datastore": [] + }, + "AU1RHt6U6JKGDnuqXuoRmgUjtKZQZaUmBiATLNHewFMc5y4h7BaM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RJmzTXtNTAfkYaa8DRb6sjSS5FZSMsVBTtH9MZP5AbfGQLdh2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RKAmfpVGy8foKG9mnXryjeT7EmTwTx7fakKWp51KWRpYBgUeR": { + "balance": "4943.913393527", + "bytecode": [], + "datastore": [] + }, + "AU1RKGrUAeGmq8ftHyq89Mo44Uqm8Bdo71ctJn3fGQTBy6AgGLnr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1RKLeNdn7evN7EsTm4FyqBCRw2S9USpm5TbqixJVdpSGiiaiDX": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1RKamgY3Du1jP58ieUt5W1XHZ2Y35JxE3y2uC5M2pWg2wpMUw9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1RKeJM3HpyGQRFzCN7DU4qUKHYbSnDWhzZZCNXKxvY1qo63n9r": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RKoWfQbwyhtWtapWipxy5PDqgLERjhwtjBWyGMxdxPuRwy3dR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1RKqkR4ZWMXVEVxFGJ5FWMCTRsE2nrTGqT9zupkeJCESYeKYPu": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1RLiZAf4pBLKU7LQ2GUyRNQbdBVV3NoHggWdPMq3uuSmYUg1BZ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1RMxtZGiuHt6e1vC735GKGEh9MqqxAxuZnjyxfrDLoMGBKTdub": { + "balance": "1147.975958777", + "bytecode": [], + "datastore": [] + }, + "AU1RN8H1fvhVeF64FsApdnBKJsEiNQCxoRpETKof248SUcSYnRpS": { + "balance": "98.191660585", + "bytecode": [], + "datastore": [] + }, + "AU1RNwjvWWP72CC8ucMPiLWGswnCsXqhumoGzDCdCiWN2nEPsxMn": { + "balance": "944.471767613", + "bytecode": [], + "datastore": [] + }, + "AU1RP22dhPVJPcuJq64Mi4pTU7dsH9drM8ATSdeKEDYSzuCL5HxD": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1RPbvpeFRgLPjv34K4huaZtdAaSQXXkJZfvcuYi2XPX1SbXoTu": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1RPjaLExp92Zbq4WDmNu4XgBZ3QJGfFDG46foZXQx7viW49g4M": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1RPso86TW4u3eZaeTpe5BNgtiSagUXAC2TuW3X75f9PaJw6Cgf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RPvoetG6j3p3ShppQGZuTGesKGgDyWn6imDf3z8fRJ9YPUaTA": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1RQNiRLfuKhk8vLq7YDBjZcrbgSPYCnJbcVUh267wNT1BsQhYU": { + "balance": "1907.904875363", + "bytecode": [], + "datastore": [] + }, + "AU1RR2CZzbz6rQDsBtZcBqjedTa9CxHNe1KciVWBatB22cauChGk": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1RRLDu1Fy7MQNLTcSZ2NDJKBTivzqWP8UF9bvbLLxmRFG3n25G": { + "balance": "10.071329192", + "bytecode": [], + "datastore": [] + }, + "AU1RRk4PFRvonFpoJpoed4EvDusaNXaEiXoNeHMAobih6AnPU4vb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RRkTGBMBmgeYVrqiR9VVt156Ap8fo6M5upUBZ8y8mzvCLLa9L": { + "balance": "584.368565697", + "bytecode": [], + "datastore": [] + }, + "AU1RS2UELPXXuoCx64aEkUXFmrR5R3fJAdQ11aaNwK5GKu1upzUo": { + "balance": "3482.590368864", + "bytecode": [], + "datastore": [] + }, + "AU1RSBS8E5m1937TAhpNmyvtrYvdCRF5gBR3H7BNZjVALaxmYijc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1RSMo2AcniXunPovhcijtDqWGjcQsyHfRggQGHXNh4ttmzN9NZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RTEjrRRv1TjQZPB7yXVQccupYvybetRtvBEDafi5u2ekLerwA": { + "balance": "784.000708942", + "bytecode": [], + "datastore": [] + }, + "AU1RTRB6oRWKR4YsDgPrJScy5MTYLSgYPf4nCTYPqtfRVLZPRVsC": { + "balance": "1770.027044468", + "bytecode": [], + "datastore": [] + }, + "AU1RU1ZbtTJAvUC8kvJ8B6uHbdNjNpKpY9rMJJPB42uzieSHBWrS": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1RV7so8KNdkUw17Dj9E622nrwJQmueM71SVNEWVwjnFUwmn5hL": { + "balance": "3310.291438201", + "bytecode": [], + "datastore": [] + }, + "AU1RVGRKka6wpB6pFYMhczRGCzrZXEM2ZtTESCKZXNARB1ZEDtNK": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1RVYSYv9Rrm1jSqUmUQjujzbnSPFJyooPvn7LdRPW8SMm55MUN": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1RWDcorqhkcecKArKAddUUgiPCbYGXXUrc7JP5XDDRy6k9GkmF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RWW29tLXQgfNnvjsB1tyiXRxh964TyHizP8VHhA7Eck1tP3ib": { + "balance": "1274.365008480", + "bytecode": [], + "datastore": [] + }, + "AU1RWXCd5yH4aGZSRZ3ARMwqxzM9rbRLBDzAtLT7xJw4GJDFiRMS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RWaVr4qtt31FqNRgh6fU46oFcurZ5LieuAycYoYo7sioCwVfh": { + "balance": "1520.326307162", + "bytecode": [], + "datastore": [] + }, + "AU1RWmFY9ZZCj9ArmjdQA8VZz2UuR3zPqasWxyXCx7F1iweEtRQF": { + "balance": "17.500892858", + "bytecode": [], + "datastore": [] + }, + "AU1RWzA17K2CNRbJ7DKgVevJLyapMyxEMmEVFsCT5bXrcRwF1752": { + "balance": "1823.043624193", + "bytecode": [], + "datastore": [] + }, + "AU1RXHoLt67YbR8M1962aYsFSUeaTByK25XPbp5GAMSr2XvJKqMN": { + "balance": "1435.507484563", + "bytecode": [], + "datastore": [] + }, + "AU1RYWSpsXL2BQwewf1NbytEAqCse7TCSmCrbR4RsgEVGaNUTuEH": { + "balance": "1090.956364101", + "bytecode": [], + "datastore": [] + }, + "AU1RYh8rjN7WkSupiqCQho9oUmgGnrW43qYCQspo8ysYRzfyLFJ4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RYiu5UU6PZwgjhFAPM4gqDDe2YsG4dqn1uTijrF69jZi76PKN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1RYwYR4JLmgj94cskyDRvEZEWE2Uqyx9BPfvDMnJymmUjCskVN": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1RYwtdvSxk71VXF97j4spMKXta3WNF48Z6WrwXw7JBQJCs17sa": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1RZSW8mCdk9LAYeEAnkBy5DBP9s26YSTPeCi7HS5izgz815v74": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RZjq6RDqiikozGMy3ABPv4WcHPnA6UuTCx35H9PvSyxJF1iBi": { + "balance": "1548.252700234", + "bytecode": [], + "datastore": [] + }, + "AU1RaKKFJB9NNMnus43kt8nqW35vqqU8z7Uc927VRpYX2bGhHB4V": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1RaMDQgzC9NiiZznTBWvMsDkecx6997RF8jZkoAsy4p4wxBsyQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RbChehfiz18WjSNXdqksWFhqVubpRfoSYUP32HUVABanjZqFW": { + "balance": "1468.509024404", + "bytecode": [], + "datastore": [] + }, + "AU1RbCyUTTu8JRn2fZLgpki8zSm5h87ZnksvubkTG5pjW1ZYLqkF": { + "balance": "914.663600645", + "bytecode": [], + "datastore": [] + }, + "AU1RbVSjZd82DSswUszr6iutwbFV1AcX4oLP6RTUvhX7PzDe2FWQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1RbZGx5JazLj45G1YPrGmhviTHFCfySti9aLtAJMcoNyzgNz2N": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1RbzhT3RK1XffvyppfmemnCVryTbXQdcEoXUgUwXorHfdARjsX": { + "balance": "6173.066283456", + "bytecode": [], + "datastore": [] + }, + "AU1RcHETMpvbcbEidRfJJ9H7i89kf76JftPgm7iHU6sSsjR7pcsr": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1RcXNRtA2twbYcqje75CaPpNbhfVN2gBkVYM8inV3dS3Pckad6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RdnQjRKknvWwrD1PYbiiRHXvMgiVDsHyhhhmsFNVsq3mbjcqg": { + "balance": "2046.716746946", + "bytecode": [], + "datastore": [] + }, + "AU1RdxqHV2bLSk6Snnr8KCit14F6ptawFHQyAayqt5j8rrH1fsp6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Reb1CBNgJW9GZASo6H9Gqb9btBSrzxN9rHrT9MFYqRf7mvAEr": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1RfJztYjzykUzhAGB5xyo92ZgBG6hNbPgh8DKniprjxzrUmbVM": { + "balance": "74.812979059", + "bytecode": [], + "datastore": [] + }, + "AU1RfT8hhhtYKYvDQD8nEWzNyo6WJu957ZhXrg9A61pR1NREuVEL": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1RfVzoBvRdJq9N4u9MzygNkxiCbDZMdDwfL9kHBGQybPggkBFS": { + "balance": "2202.665764733", + "bytecode": [], + "datastore": [] + }, + "AU1Rg49UJKHiwe5XcER9j3df3R5PQMSfbGjHeVRqoNxyHSeP6TKU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RgDTYd5mYAVm6EsKxDieMT8H7573W5KKoeBRjNxy9xCKqVSm5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RghpiQBPAkfnDru1ZtpsXBghDSDRGoqzBGqBL1tXMzY4kh1zv": { + "balance": "873.453262391", + "bytecode": [], + "datastore": [] + }, + "AU1RiKBkVKTh925SwcUSkaBUA646UbAt2vagAtPfggAMKuiVooHZ": { + "balance": "1161.769571704", + "bytecode": [], + "datastore": [] + }, + "AU1RiPR3vZJeWUSshS3aXcQhxHWiwByTNXZsq4VviUmYBaqgSxDE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RiTZXxJjrLVqS1CcMLptv5kq6xGnyHfwai4yk39QRjiX7dUP2": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1RiVWTvLX8UxzdcJSK1Wbh5SeZzr2sHbEQg3oim947oE9zd1bn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ric9S6bEXiAKwfoLX9ACU3rZJEJs3HM1xNzgS18QbtN97Pv6o": { + "balance": "4035.125937378", + "bytecode": [], + "datastore": [] + }, + "AU1RihPPEmvzvwTHBZGKNhxmywfF4jsefa8ekhHB3b9jZAhxP9PB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Rj76Apr3GPY9SN8JJPTT2vJRn32RcnNEBEpPJFcSCWc3yrzpo": { + "balance": "703.076598733", + "bytecode": [], + "datastore": [] + }, + "AU1RjLzUJfvGXsSpW5282Wz9GFXNrm2uoHtdA4Afr3XZZ6d2tAjQ": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1RjN729NMrCU1E7SQvAPjEmKnmc6jQEK7znFSbW5HKpYEqNo4d": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RjQAqEN6y8ZpDi5UTUkEJKuSktQSJzg8dkSyP9KTXdm1PvkqW": { + "balance": "2125.919535379", + "bytecode": [], + "datastore": [] + }, + "AU1RjddBcSqFL5xFe9pnXvJaUXBdDp6E9cwLQK3gXLPqh1BjetFZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RkbUofeDC6qPe7KVkBA1RJuYQfMi9LrJecENzMhfPdo29rpY2": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1RkrTjKAyw6YiHPEpDZpZR16SNr88m1QjpGL9zUSR21QqCxhsh": { + "balance": "1418.748020638", + "bytecode": [], + "datastore": [] + }, + "AU1RmfLpv9zXdeRLJP3n6bi8TBaQBgxjbKpkhWuC9m9rC1pCbJe1": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU1Rmp2r47siTMGdwvAcDhfgddy6v3nVssVPsoZxa1g5rhWMJch4": { + "balance": "784.127066479", + "bytecode": [], + "datastore": [] + }, + "AU1RnATVEXfgRYif46KuPhYZeDdcwPF4Gz1T5MjarwVdm1SZeRgo": { + "balance": "556.789111036", + "bytecode": [], + "datastore": [] + }, + "AU1RnnNmxNDiFyUBtV9DAc9Ptry6mAqxAe8Pds2mHicJ4bw7U9M2": { + "balance": "1988.844403464", + "bytecode": [], + "datastore": [] + }, + "AU1RnveEGao41tZ9jAnMTpQmMxKEbPg3j3ScZKdrfTqTP4cci1fQ": { + "balance": "175.050295063", + "bytecode": [], + "datastore": [] + }, + "AU1Rny83xSqX9FtpgQZ88ogRToAPeLPR4A876RTpUaPRH7X9WhK8": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1Ro6ggyPe4m9tx3qnDMYBvKmgU8hHKztpqStrKaG3hB9LWRntq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RoJ3gYRPXXcSoKea7w3uEEX5WCzExe9kA23mzcsg2VRsxPG2g": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1RoXNYt7PipsNn9EeHupim5jqEURnHGzQXs4UG2Umm7bsamE3Z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RoY4ufuCw16NrfFjmSyPGQ4y9qFaLeUcEQFxkJS4QJaMnHX4k": { + "balance": "1012.064708055", + "bytecode": [], + "datastore": [] + }, + "AU1RoxUWQey32SoCVyXjizhXyeJceYSDK7y4p5ATeWEo3RPqrZzB": { + "balance": "2416.828785844", + "bytecode": [], + "datastore": [] + }, + "AU1RpFdbpsiVFQccceKVS3w2EJkZvbH7gk8ExKt8FNQxisPpVSD4": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1RpyJz7WyWJjXLq3vFfvF72qUR7M9aURrSxVxAqrfTKovgwuUC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1RqLHPaNv6k3End6Wo8bPRYFRoimuE39dKcCZHRBMFczaHPPLp": { + "balance": "3225.396967719", + "bytecode": [], + "datastore": [] + }, + "AU1RqPW2zcaeFoaCyURsjR5VEctAnBavgdkrrVondcmRcTmPhF9j": { + "balance": "831.459444912", + "bytecode": [], + "datastore": [] + }, + "AU1RqSbDk1rbeodVEwspeoLhJAGjGFCGJLVDFeZ5eMPiyDRps9jc": { + "balance": "809.308684621", + "bytecode": [], + "datastore": [] + }, + "AU1RqTvTZy1WzQ41Hq5RtEQJNo2XRizh9spzRGiwLrNvEaKiFMQr": { + "balance": "1497.385365115", + "bytecode": [], + "datastore": [] + }, + "AU1RqkoM2cvgQDW6KNLF3XarxjmDTphUkErsYamnsbEArbaK6386": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1RqxhrcqbgFr3tt7pBe9QHxNrHGyyTN3GBeUBjLaWjCircYgb8": { + "balance": "6923.731308178", + "bytecode": [], + "datastore": [] + }, + "AU1Rqz5MAEczRU2pRNtbqGoSBSYGHrmMnmFFeWzunnjnUnfd4sYJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Rr8g431b4EDe5YwjzBeQRigi4JaX9RHyimEUiG19sygw5Mw4b": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1RrGz2yrtKpoBKqvCm74ZRcJNA8JkhCfAaKzRDaikodwTcWZqP": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1RrTMFqSpNEaodFKaAtBCnkpycVnC31hHhdpMpLtqdsVejsekn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1RreRZ3tePAHeWWYUcKSB121EdhdnuRu8uGbKGFa7nKgvmUECM": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1RsUcEZLkDeshyjEwVw4E9yV8rjYPo8MdLAQ6pG66U1pZf1YXx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Rt3j7ci6jRVrCsQRcpL8jgBFqJd2LRXJm4XVMivuFqHipbhxN": { + "balance": "1054.848858280", + "bytecode": [], + "datastore": [] + }, + "AU1RtZ18q3Z2QDehayzMAMpNTFgwyRZGuc8LXbhTDtrksNWstRxe": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1RurUL4fz8UydSGsmBoZHrmQDsb97XwwN4JkEgVzs99rEbtCvS": { + "balance": "4766.014489479", + "bytecode": [], + "datastore": [] + }, + "AU1Rv7dE2bjNUtq4M2VUyhiuybRu42wZ6HoWt5ziQb7Biu7SrRqL": { + "balance": "1566.814434897", + "bytecode": [], + "datastore": [] + }, + "AU1RvT7sgRxPWuUbaN6485kojiXaxZQ5huSgsByxN6YkrWpVwu4b": { + "balance": "709.453465388", + "bytecode": [], + "datastore": [] + }, + "AU1RwT7FMtuyFGBRJCcoMtun7EX7oDCh72miyqsmaUVCrqsirhjm": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1RwsMeixvipV9BdAmTwz5rs2dFHADkNadvdTsFkj6CMYzEUX4d": { + "balance": "2701.163174122", + "bytecode": [], + "datastore": [] + }, + "AU1Rww8qDtkrSm6EWUy5uo7EpA25L9UDbSraBq43kBT7tyJJpynu": { + "balance": "875.891233876", + "bytecode": [], + "datastore": [] + }, + "AU1RxG74DKQg7G9kQ7tYPbFDthVAturhEingmSeC7gEYq4bwec3n": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RxYFUf3FKUsGdEY3v8ZQA73e1xRuTr9wWvjq6X6vZ4xEZzbas": { + "balance": "666.813711590", + "bytecode": [], + "datastore": [] + }, + "AU1RxoDjs4zvmnFEk88iA1aKJdYDfcMA2CSimenhc9YGPujwZQuU": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1RxpFegSW2HTdGyAsiG96aVrcMDFBv9vq29wLFdZYXzUhwHzjv": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Rxqd1QdSu9B1mFve7pYfdEVp5oexmcz3RVv1AYowRsH2aQnDZ": { + "balance": "660.417781006", + "bytecode": [], + "datastore": [] + }, + "AU1RyGd8LCGu5z8jA99FwCpGZT1Du5hb3RMmSBXTtdcDBGUB5qud": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RyJFRVTfxMnatLwgZ9wbraM7sfabC5Y14KjVu3EKWBZZFokPg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1RyJHpgjGecaRH8A2ivQS6ReZmE3Lo7hoJaCDVWwRxUEbhyzQs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1RyZ6oxTcyCMJzsY3r5yLxPZY8hvPgPbi17WwUaJKoMpfL5hqe": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1RzETvxvsoFYuMi5EWeF5msy5pcrNb2CCP5XQ141zbXtZ9ZKCa": { + "balance": "1576.869158695", + "bytecode": [], + "datastore": [] + }, + "AU1RzvgLeLvAzn9ckAqnkV8Aj9RPhpYhq6pzPn17A9nHrDLHL7HZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1S1dCX251shiU9Tdf3AmZ5q6mggN1P6xuBVhELisxhy2pVRRCo": { + "balance": "1145.479499641", + "bytecode": [], + "datastore": [] + }, + "AU1S1pjv7pftY5geMZyFUbj7ACHshFnLRJpsxB5J8jiP9eY9VkVH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1S2CkwwTM8MVxCpoe9cKqVPLk56hxwpiPLTsRgffKMaYJtwJnm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1S35YLkZEFYzry6cVGY4HV9vQRLXoYYNrcoiEyjj7M8Zq69apa": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1S35ykRqATGDf5tXvaNEKsuNYfjoSBKuEsV82HyD1XKRTHUAXT": { + "balance": "1760.313661826", + "bytecode": [], + "datastore": [] + }, + "AU1S3D93UcZyh4J6xGe4YRYRgPXsVAd6TfqZrK48KrQM7X3VN4xN": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1S3PemAQNSkAfNRN4gMj2pyhWPnkwKYgPy8FwCyTx3Lo39Untg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1S3SHitxVXRPiRWWf35fiKeEfNxYfLaSGV44QdzmZ5gmuXE33k": { + "balance": "1307.717843053", + "bytecode": [], + "datastore": [] + }, + "AU1S3WrwbwmDDAs6HVKPy91GzLbxGqiGCiijTaqR8qpCumvhiEtS": { + "balance": "2557.518655307", + "bytecode": [], + "datastore": [] + }, + "AU1S3pTTt4achJjYYmASkj3PVcfoxCYESHUA292P3BrSd7sVZYRz": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1S3qMaH1Hnz9MDGjQbnzbbNfioJbWdxXasphboj6ZqPvVppuuo": { + "balance": "3207.473142752", + "bytecode": [], + "datastore": [] + }, + "AU1S4bAGgib1tyM8JxAcwe2TgkNqqaskhrwZ7976XBLCYPFRLRdA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1S4uFucPuUXzUV1oFLPypWcrqKtoeahcfy9VcHjBL2QUi9q2ya": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1S5HUgLjWf69ZkAMYB61PxZmTSayR8j3btsvLtskDci7foozhe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1S5QFWMh8Kbiwk5FV5g8cwnhwvgeqhk3e5oP9vTMDxyCawhw8M": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1S6zGZ94W9qaQoh5d6HU1B6Mss96aSCJ8ERjrnipaC5k9WBXxC": { + "balance": "3247.747589468", + "bytecode": [], + "datastore": [] + }, + "AU1S7RawoffnHpFTesGVtbYDPxEwUvkx6MWm1QSW8BTTinRoz3mW": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1S7i49rofTMDXz99bqfeGDL9JZ3prR9fQcwzp3FSiJoqeqFWnt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1S7wa52ioFJqU4q2o2jFNA2ayczDuLD9AY5k8bAPecEZ8HKK4s": { + "balance": "5581.425315994", + "bytecode": [], + "datastore": [] + }, + "AU1S89MFdGN5XTttYhADQYJWp5gVXpd6xDiPgp6gAgrwMKUrP8fD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1S8YsPYVWetxYMdpdrhco553MjNmumnKBjfiEVikK4i1hUwHwE": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1S8agpjWfp8fr8xrqP1Vn3gABSGqquC5TpFLH9qNQCSuJyuPWB": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1S8bGzWSrtwUo3wsAGLCCrpn1of7A7inta4Mx8TTdvqibisKjA": { + "balance": "5549.883391344", + "bytecode": [], + "datastore": [] + }, + "AU1S8djXGSWWy2b4jH5au6xn3rQGR7BsCRJiuF2YenQy48BMRbaY": { + "balance": "1180.715554033", + "bytecode": [], + "datastore": [] + }, + "AU1S957aHvDJKiLBZqhVKaKni6HbyjEXc2tynMfR6ANqLXJTMN5t": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1S97VXrmCD1mGNCC7Z8TmWRNybxaNyv9UHH4MC47cNGZRpLgSh": { + "balance": "4290.487969538", + "bytecode": [], + "datastore": [] + }, + "AU1S9DgZ87NMw32YV4D8goqjAXmWB7J272iVJnSYBzCm2XvYpxd9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1S9PTiPTDQ4ni8F6EmrFdMvQBnqKTBQJgMATWQuF9HJHECrDjk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1S9PssPKKbxrgRga4uC9ZWwn1pRYMyqBHzE8okNRKRmEB5WG3E": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1S9RgKATcdd7T6bJNRutMWRC8eCx3Jib6zBXYrfZ2ZcjTEG6GF": { + "balance": "3413.890129874", + "bytecode": [], + "datastore": [] + }, + "AU1S9XHjkCdaGjiQWdSXyq3PcK8dr6U9ZV8PjFoVrKU3NGZKWPJ5": { + "balance": "3032.961037587", + "bytecode": [], + "datastore": [] + }, + "AU1S9gZwo8rr3fG8sHo7kuXvZnazPsMPYmNxTyiF5AtDYgGjc8dz": { + "balance": "5715.219533474", + "bytecode": [], + "datastore": [] + }, + "AU1S9vQjU3BbmZWLqAQpiWTiX5GYhvXztdUPZ9nf6VRpS7EvWGUN": { + "balance": "2896.706769384", + "bytecode": [], + "datastore": [] + }, + "AU1S9xmNVvaiQd4NLupFgUsMh3TqpzDbfbnQFf6TiWYijV9snGSP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1S9zsphFnHKJwd2ACMP2nYrhrQAZ1RtNevMSSw8Fk6oVArj1xd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1SA1tr7wCF2uQyESnMtABFeJVfFUWTd1C26JSQJ9B6AgchgBeG": { + "balance": "933.437768208", + "bytecode": [], + "datastore": [] + }, + "AU1SAVXkiae1Wv44ndYC74tGaC9b9r77cjxrJR5tqbaWK3a3uTax": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SAkVzUFnUHoxhvxq34GkSJxfa5kfijiXF5ZJPPi23ZWpTWGRD": { + "balance": "1287.754699050", + "bytecode": [], + "datastore": [] + }, + "AU1SBtNCYF3KPCDCJgrtzL1BZbDbeWYyqSit3DDuhWfYCUc738Qp": { + "balance": "66.342705401", + "bytecode": [], + "datastore": [] + }, + "AU1SC1zzdgS6sG1sBuVQ6HkxnyqV49cKkuusFEnfX416Xv8s6wmH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1SC54FoZqag6aAnHdkwwRZzGU1v3Y2zZyqBQCwsiieSNtUfJ2A": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1SC9hVYpHB26iLVrCMVijv2SSJX9fh5m33YyP2AjJ5R7CNgXMd": { + "balance": "1409.170441245", + "bytecode": [], + "datastore": [] + }, + "AU1SCNY7UnngXJNgUsafKiH9FsNBWdebtvJfUrtCpvqvVsvggrk5": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1SCYbdZQvHGDj2sMUH2aidU5EJS6QuhH9qxdcHKyRZd9Sgy66B": { + "balance": "2940.510304506", + "bytecode": [], + "datastore": [] + }, + "AU1SCZ4WFwo8i1UuibhY5UFaA8h7Ry4irBDKzfvgFTWSmBVDAvVT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SChwDUfrGTypezHMxPsN8CFbgjn9a8n9jNAYxWUfcjyDQZHxC": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1SCiYJgFLTCMDcXDxgyipWZoCzxx4ZFGH6EYhSBQ21DBkFVSAk": { + "balance": "892.609310190", + "bytecode": [], + "datastore": [] + }, + "AU1SD8Gg7Ss4qmssE2zkVkf1EzpkQ52sjRJgtYhUbDbAzJxAW12t": { + "balance": "2976.324610216", + "bytecode": [], + "datastore": [] + }, + "AU1SDK723VmJVytZ4Uk2hT5BUmr5z8oraiXDbCWTaaMv8AeWC8xd": { + "balance": "4480.181297555", + "bytecode": [], + "datastore": [] + }, + "AU1SDnLySvDx9R8thLj1FZKjHihnMAQXM3un9fphZjiWRyn5THXE": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1SDuVUxZpoKrZLfH6TVTWmv5PxudjwtRdubMp6zCETdmyDMHjo": { + "balance": "1939.411586964", + "bytecode": [], + "datastore": [] + }, + "AU1SDyBA3pPTeLqzxdLw8uY3paDRorGv6Hy995L4fXBqiXNws2kw": { + "balance": "2678.986205818", + "bytecode": [], + "datastore": [] + }, + "AU1SESahJSgLqg9dyTQmXd8M19SywcwFuaupQKq18GuWt2vqrECW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SEcX5DGkbyW7VTyw1ApaLyPp3zPdk6qx2KVqaFokN6opjxJGV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1SEzwaYJ8feVaLv5v6PLMdc7DhDyo5bT36VUk2sYzT5FF85o7h": { + "balance": "5008.610536653", + "bytecode": [], + "datastore": [] + }, + "AU1SFeGdo3CN96EsRnDyP1mYBkQLcPFtyiUnaqAjhN3UQ86WdWCj": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1SFt4sCUKcvTmyP8DnXvyZzvLjyGEHx8yuJnCxxcoHDEfc3c2W": { + "balance": "1700.846713579", + "bytecode": [], + "datastore": [] + }, + "AU1SGKMHjBWm7jCCiyTRksUNBVhj7N6MUCBNbHM7cGAPEtqzjfJt": { + "balance": "1262.925310206", + "bytecode": [], + "datastore": [] + }, + "AU1SGSXorZd8dmA5y7NdNNRbLHnhwNfGdrE6b8UQxpuPXQ3oz28j": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1SGY3rkCQozhxLULwC5LP7Bg7h1HJiXx7ky5caoE46xpW7HYaR": { + "balance": "2107.451421558", + "bytecode": [], + "datastore": [] + }, + "AU1SGaBL9NVbHB6jfRAXXsU4jLnEeyxuHVCRwt6Cosga4dBbW3HB": { + "balance": "3497.490002504", + "bytecode": [], + "datastore": [] + }, + "AU1SGuRaqRs8FPCghLK6yZPHutW2ZLVLvZggoRTYb1oQGDChio4A": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1SH4jyQRwNHpf8jNpVuU7t8vkt7hAHk42okfFSUZrtLv5HXUUu": { + "balance": "2055.252452867", + "bytecode": [], + "datastore": [] + }, + "AU1SHin2MoJ9YxDM2iXm3j38eGwccn2c9a9hCQgdE2dRbyfcpszC": { + "balance": "2141.692871624", + "bytecode": [], + "datastore": [] + }, + "AU1SHoVYMwQgyqsiEfVs9KXaBFxM15RhmFhTQKL1QDZSZH3JQZNz": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1SJGK6z94emHHgpPeGR62vKSMNBK1DxBqvdi5HwxhLjGajb4aJ": { + "balance": "717.279043836", + "bytecode": [], + "datastore": [] + }, + "AU1SJWV7onQrAtBvmwCqWqHohRB2oycsMETNjQBhxyqjBUYvHh23": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1SJfZr3Mr1kF5gPWZoJ9unhYFuVKPrjqhqdD4frYVJkS6wrEvG": { + "balance": "1203.967647370", + "bytecode": [], + "datastore": [] + }, + "AU1SJfcaeEnipxJrsVC5NfVsSZTDqYdxAyuCxQY6656FYztzAtJv": { + "balance": "2056.007189516", + "bytecode": [], + "datastore": [] + }, + "AU1SJmSzMmw517nn4KhutV8asrNPZV5jyjaorjU9wbWrgu6dcMXZ": { + "balance": "1685.077516706", + "bytecode": [], + "datastore": [] + }, + "AU1SJpL2kZkjSv7QGHmFEtR88y5yoXyuK78h1FvqefYjsse4c3jC": { + "balance": "2230.741996188", + "bytecode": [], + "datastore": [] + }, + "AU1SJrbD9btZHPw3XtnfMFgS5whJSXgXp8zaLR4X4FFmCAPW1sVf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1SJyh5MY8oksFa1MyN62P3kKjyw1echycpXtxrfTxCThfP4hcL": { + "balance": "2297.114265722", + "bytecode": [], + "datastore": [] + }, + "AU1SJzDuFMV9XvZrQj8Z2gFTDPeNsNMjMxb4gpoMLKX6dxwiKckm": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1SKEfPxDbPdPeTC4UWvyFFKR448nML4TgvVPUnUwwSN5agFKpM": { + "balance": "136.884075970", + "bytecode": [], + "datastore": [] + }, + "AU1SKFKjma8ejRaijmVbKiAkaTxFbipYP5L8r83hFJu6wxGwWmey": { + "balance": "1591.326605412", + "bytecode": [], + "datastore": [] + }, + "AU1SKqjzAWrARBJf7GAUPabFbtCJu7W3fE7vNzsb59QYyUftN1R9": { + "balance": "4061.010555877", + "bytecode": [], + "datastore": [] + }, + "AU1SLdNLskNFA9SRQH3WXzLrmrkdCw18idv85ZEBbJEddajaRykV": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1SLkuspnHxRxs6yFJWWUzoBxUZ9JxdDht18qR3WbMG18KSaS1K": { + "balance": "2943.592608632", + "bytecode": [], + "datastore": [] + }, + "AU1SLpvAgLJNjqdVbi2FQwCkjznPxmCmCRKHyaUs4nPfYmqGomyK": { + "balance": "3869.651990449", + "bytecode": [], + "datastore": [] + }, + "AU1SLzTHv3JevJYPngLLd5NAeG8zCFmC8HSEmBrP5qnu5ns57n5L": { + "balance": "2162.924881388", + "bytecode": [], + "datastore": [] + }, + "AU1SM27USGcivYycovLVLDQKihz46F6Vk4YXSoETPSPG6RcPyTYV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SM8UTJQgQDahoTyLJSD9e6CPio1aZ8K1jqhAkZPmsmUsAT2Eb": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1SMDPaA15emZm6uWYB8AsXBBaTPuq6JfPgbxqEKek3DdYu6d2y": { + "balance": "2388.217448737", + "bytecode": [], + "datastore": [] + }, + "AU1SMybvCzw2otk2wF7ZKPHgHw9KU52thgrsLHdievKqPeSTuW8i": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1SNLLriREWy3q1ZJUTVVjqBae45CAtiqfAUPZ7DUKVGsz7SDau": { + "balance": "83.026136115", + "bytecode": [], + "datastore": [] + }, + "AU1SNWsEBbuSRTUcfDyxSfaRb79dqN491cLTjTvoDiknSYxqSbr6": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1SNw1SQnGNtrU9tATzap9Z95PouGbqcPZiRtNVEyD3YKtCVj4s": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1SNxs8fPksFQa664RoQgJDduarhzEctBcVULbiUrmV4Luka7Q2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1SP7Rcux3d31tbvHeTfvrxcURdRRRFzGrQzZ2d5FBFo6k76hyY": { + "balance": "1236.142334129", + "bytecode": [], + "datastore": [] + }, + "AU1SPVmpdd2MzQgu3LHHEGGQor9RrkqMdLnnGebjKu6zL5K6VjkS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SPZXvUMVgMMY7KzmVVenhQxXXBzDyRE6fohtgx9bZiWh4EdPM": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1SPvssuPQVFgytP4Na6edyvj4pcgbS5LVgAZsPQW9BJL69TTFM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SR2kcbExujBjDfirdCpNnfaMdezAN9XxKDme8Ut4R9gwyWknh": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1SR3R2ssep7qgxMwGox98oRHYFPKxd8NJfkyTHkyTv5Jbk1PWq": { + "balance": "2292.477343273", + "bytecode": [], + "datastore": [] + }, + "AU1SRUB6hdgcXkaC37yRkdHnSobmjxFfUFCkMkChFTHkBnV3Q6ML": { + "balance": "2726.555311821", + "bytecode": [], + "datastore": [] + }, + "AU1SRcU3RXVv9xK1dB5VrxMD6rVdDvR8V5V8C5Bzj3nvYSqsjJf4": { + "balance": "3745.337506360", + "bytecode": [], + "datastore": [] + }, + "AU1SRfhVgC6GhhhmU1VWzY69j5Q3jsvnnaByGaFErXwoyk1HXnT4": { + "balance": "1368.147561669", + "bytecode": [], + "datastore": [] + }, + "AU1SSUZMdC5mz4Mp58edEEv4jTyjmWZ2G4PAvBfymy7erHKGVVqQ": { + "balance": "1437.948000832", + "bytecode": [], + "datastore": [] + }, + "AU1SSbjMfatotxu6CGQqkezZrFqCGJaXV2VP8ZiC5dkRgoqe1ADV": { + "balance": "3907.112396843", + "bytecode": [], + "datastore": [] + }, + "AU1SSd62jqkNgaJFib9JSdmcocpNMRXBqAhT4MXSPmkLWnBqhWQU": { + "balance": "2495.157059333", + "bytecode": [], + "datastore": [] + }, + "AU1SSjzTLSAEkfid9gRE9Sgff2PirX7oGM27SbKfnEodaE8jtUQm": { + "balance": "5279.452541630", + "bytecode": [], + "datastore": [] + }, + "AU1ST9V229kXXnYKrGY8H3RYMHrxXn71N4mnZQCQKR3JQ7ULzqTC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1STo83wAMgpnymVqTZvn3qJ41x9vaNy241UZkgKwDuLhYqNaYg": { + "balance": "68.481848185", + "bytecode": [], + "datastore": [] + }, + "AU1SU54Abhy4M9RBEeqXicZcWyot7v5fwzbGRTi9x5BTkaNLJB8X": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1SUoYmLjxr5XzRM8j8HmJJQ7YcnAJXfjc7gbGmTGFmdHqLPKVE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1SVHMp5jCUexCY4NNsr6ythH1PUURQfqKhcxBaygfWyqu49WnJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SVHyjGyCbthfnby5No1xRpZw3V9Z51BNqrC6wM2eAEpyQDFbB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SVMYpu2AYMPBHzcGRcLZbYb38ecYSLLrmegqj32fF6MbYYwsu": { + "balance": "84.734512462", + "bytecode": [], + "datastore": [] + }, + "AU1SVPxKKnY47mpnJh8REyzkoaWRJ9RsLaHi4cxjbDkruWaRU6Jv": { + "balance": "2082.395219701", + "bytecode": [], + "datastore": [] + }, + "AU1SVjpUWYukzpZurAX7pUUc2jSMMEEgUsiomgWQnEdovq4pgXMB": { + "balance": "3064.654150027", + "bytecode": [], + "datastore": [] + }, + "AU1SWS6R21TVBQHHZdvUV4LnvqgVJSWjHKiTrRQD8F2BPMDjojv5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1SXMPL3D6AyQibofPYpUrxoaLWRa1Bt2mqGwFe3EB9ZYEBDqdA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SXWd8Q2PKux54AA8iYSPNh5AEi7XjDkDNS2VUvfNiP8MB1X2s": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1SXqa6UwJgjdjrmPvWg66C7JFDyCq3bAHvNkiduYhQjFRHCPHi": { + "balance": "10.235311004", + "bytecode": [], + "datastore": [] + }, + "AU1SXtWzFMQ1NHNH3dr5MiGDF35FEQ9zSUxWThqdnFDQxngwz5VT": { + "balance": "3635.192395564", + "bytecode": [], + "datastore": [] + }, + "AU1SY91Xpw2rYWxaH3qy2qfui9M1RRWUt2BeM1zaL2NvW1vmJtiG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1SY94CfuLGg3ds2bLALu7FViagMhg5Poq1Nkvi9jjfZpAnPUev": { + "balance": "7500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SYBKo99MGoGFBTCbQXnnW9G3LYytBN8TMx2YQqzCiKtRHZfF8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SYvseGiLq6Ds5ZWLdFL5VrRHomUqg5dbEh1hbEaK1KoNb5TmC": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1SZ8Wsj8pfwAJgrWqSCBWUAAghcUj6gMwFnmBBbiUxZbPfKYxG": { + "balance": "1131.866317264", + "bytecode": [], + "datastore": [] + }, + "AU1SZS8QTWJWgSWZmPhi6QbzrNinKw7LrjaD9NoLwZvZZLCyuE5u": { + "balance": "1503.754244968", + "bytecode": [], + "datastore": [] + }, + "AU1SZcea9rgaKebC3GtJqx2ZbP1aFeFVyRscjka26eHy5GAdvcaa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SZd2dDbdfvcjKvpJpQ9xj5PTGziFHEj3Goy2VQcQw7D7x6mup": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1SZjJUofCdD7qXufvsESWwFtCgtT49UkEVQU7NFPVHqDQ7jL47": { + "balance": "6.957669216", + "bytecode": [], + "datastore": [] + }, + "AU1SaQuSYTPN3a7CD8M4134R1bH3LCP1xQhTqzr4jd7DtLxiDtC": { + "balance": "1518.526483298", + "bytecode": [], + "datastore": [] + }, + "AU1Sb8A6aVNkiwZxNq1UjSaypM5U5iPX56a4LhWXJHaYvL52TtSK": { + "balance": "2917.256610626", + "bytecode": [], + "datastore": [] + }, + "AU1SbQucM8UJzZFNzr9d7b5g9ACHiR3x85DUEFCfx6Kk3Do8zSn2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1SbZgVvXF689YBYLArMudPwNdjKsWn1pxuAmzmd958ERyZbDL6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SbxZRLwYw8V5cYKWpByLLXxPATnHhjfJcQEjAao5ofkNP1K4h": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ScJ5Z3hZfDEW1hsvUGTouowA8P5fTSXPYVgxh9jSjHMTEpEnY": { + "balance": "1335.391904870", + "bytecode": [], + "datastore": [] + }, + "AU1Sce8ZfdEi4BvasdyhPgfJ8cYXHbLUdk8rWVdNj2iLURpM1ChC": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1ScsSHWxDMKxxFotTWiHFRqS7wyLozccDjL5fhH1PYRwzNyTCU": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1SdbpsAtNGGSZzhwAFnzU7HpX4s8jUZvHCdKg8sEvFqvaqomCk": { + "balance": "8892.014191419", + "bytecode": [], + "datastore": [] + }, + "AU1SeCfreGCwVVd6UbRjdMm9z6dUk8W46AsKwKDBBahed4aWKzga": { + "balance": "2800.987943221", + "bytecode": [], + "datastore": [] + }, + "AU1SeExqpZpZLCsRvC8qpNKM17ZWhh1kMvGDFM4VCPNSDjez9T5p": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1SeovhZdh9zi4C5MevwJNc1wt21a4VvLhz5WjfHGWx2GGbguH": { + "balance": "1761.135370548", + "bytecode": [], + "datastore": [] + }, + "AU1Sep8FJcRR88RXh1nEQ5EptrX88pxr4tfcDHxpVs9nFDw82VBR": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1Sf6qCpttw1zZDWWreQwJ5DKTqs38hLPc7ZFqqo9xeFpLttpLc": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1SfQakeDtRJTorMqFvrJBbY7AX5maBhFSSYy76D5C8GLdUEov9": { + "balance": "1720.705148317", + "bytecode": [], + "datastore": [] + }, + "AU1SfgrqRiFgbEcwHt5vuWKuqmSjZBVfJ5ZesW9amD5EEwmuTcEw": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Sfwp28v4bDqmWpDLdVLe6J8m3jpTdxna6WEyLGppyrnkYcfCn": { + "balance": "621.154784271", + "bytecode": [], + "datastore": [] + }, + "AU1SfyPq4dMghZxN5KJKPyFggXgLMjfDoYTgdSZpqHkLcQT8LShD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Sg8VbwGRL2tmDVyFctGrWnWdh2jnEA55QSYcfWz7NkXbunnpD": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1SgWKwKg1sxdvDUTPj1TUR1YvqNywtcs5SDvEKguoaQJTitRqD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1SgXQLA3oGe8oyosu8WVDPSu6LFz82hjkv7zajgLnwNKpbg7uf": { + "balance": "861.014554720", + "bytecode": [], + "datastore": [] + }, + "AU1SghhpxoWUAi5RyhtZ5puGCkYHZ69gcRpz28sfwzTHMDUVrf5E": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SgskkYr2XS38676uQBtU4S55qtbVgaHnEfXdVgjAM6ZR4nBvf": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1ShPmXqJxi4tigMMGsrQUpeyPgV3Sk3FZGuGbbuHJngypUQDJ1": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1ShiCGrJgocEWY4NgQJV9DwAeT6zRm8aqziK7wQ3dFCJrzQpy7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ShmKautFBRmFyY3ShZNG77acpMPByhPFrYb6LDLjqdGRb64bU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Si9bZAsN6eDfwuo88ogd8NiZcv1JRb9wrjHFt6n2g8hMy6BEa": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1SiQbsMQn87FWjXqbBfFarKSjbNNZPinWYDvdNNQpYUXXPPRgX": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU1SjBPJViacWtEqwXrMMb2quAfH9cqKyDkn5xMzDrbzzLNfv1cc": { + "balance": "1649.502366438", + "bytecode": [], + "datastore": [] + }, + "AU1SjBvm4QJfiiNqPfstGiNSUYz6PNnup1G6ktRMEdmvhmk3MVXs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SjZvpySEQu5ZSvo2nArBqVUxgMcGAsQc8K67P1EucqWTakNXW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1SjkAkZB1NFAYN3TviCw9XG4D1qh3WCJQRiQaVV2TwSJqVUbim": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1SjmqHeKG9GkHGPqF4osbM61HypeVJhMsRdamcd2h86hZi4gqN": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1Sk1WGesjodFdZNFTouxpEyXYncgypianTAfPL1dVVuERCd5MN": { + "balance": "2521.646020184", + "bytecode": [], + "datastore": [] + }, + "AU1Sk6zx5A63RmKQgnwHQVwvFi7xs24FdmB1byRYkvhzybbgpaiF": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1Sm7yt5BSanEiPmPPWtph1H1U1UCrB1CfbkdY7BeG7SjVch5zZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1SmCok1ZnhrUcev2T1j8cB6jpfkQUdDS6PVTsN2e1AKkkdDvfr": { + "balance": "89.841251965", + "bytecode": [], + "datastore": [] + }, + "AU1SmTP5Yiwo2HRRZrhAu75QByNR8tUYqRuyFr2iuVB9f1gUNrLr": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1SmUfpt4SGYjXRc2ehoP7BUixYpo8KbxaHWkaATaf7mZmpCLcv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SmiCobnkmuptDv5EKTAb4Kvamqab6Cf3o1Ny2eMkxFJthBKx9": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1Sn2F96y5mD5NpFN2NGsCGoge49PHPRWjhgQ7PHA5NWX2FyJ77": { + "balance": "2041.034554963", + "bytecode": [], + "datastore": [] + }, + "AU1Sn9nPW2v7dkPmGLZ1P2hJZZMHJwdHKkuwboz4xb6JExKgfHWu": { + "balance": "1849.537583904", + "bytecode": [], + "datastore": [] + }, + "AU1SnAtQLfL9wEkK6Q44E5JbEDbETWySzohkAcA97z53Xkz9GAT9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SoNyLZi8jGKJNcENNmFaQ8aVWdgWz8dtco8dspwofaDEhafVC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SoT9tLr2kaYWRaMizDZY6wGrXoZne4ceury6feajKDjAx35jM": { + "balance": "1427.016686879", + "bytecode": [], + "datastore": [] + }, + "AU1SoZHDfVv3QbKdcSa85U2j2fyxMRuQdijGzRMJGzJkvJoKdLwH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Sog4k4Yb37vj9a6w6Gw4mJPrZ5kBz4KWFki99UxL3vYXYpqUH": { + "balance": "1364.788027144", + "bytecode": [], + "datastore": [] + }, + "AU1Sp53Vmwjt8yB1ZJexPW6nguEuuqrsrU5U4X8rRMJXPgGqyyM3": { + "balance": "3187.971797802", + "bytecode": [], + "datastore": [] + }, + "AU1Spjhsfg24gEVH5ctVHa6pjQUbXymdzJJ5ZJm3e2JmC71tUW5": { + "balance": "6281.903140510", + "bytecode": [], + "datastore": [] + }, + "AU1SpmhbjmWktAMq9JY3X8eGF795vNRJfB94k5NoimmKtBUzbbxa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SqPBBHySAN8jbtxnq7dMbUowULXkoByh4xyXUQQSJUh3J9JdY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SqSfLR5WLAxSMtAmPA5kG6aSQLmpqZZSPMsCkHToQMmd3t1cR": { + "balance": "1152.995305978", + "bytecode": [], + "datastore": [] + }, + "AU1Sr9hogvLaSCqciJS2YHG7apKUtejw7xx9msntx9p45EGyJS36": { + "balance": "1230.729181911", + "bytecode": [], + "datastore": [] + }, + "AU1SrH75sFLywEKCjseNAMNxTsSDS8cMo4ronNTSQLcCABjKML8a": { + "balance": "2044.488913397", + "bytecode": [], + "datastore": [] + }, + "AU1SrJZ4YVREijde2R1Zd5jm2UFUXB5vrobV3JMnjNsUiZDEkEWL": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1SrWYa2u1Q4rKsGmWXky85qudQnX9C1rgGo9caJKotoYjgv1cv": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1SrZLt5fVCVGPLsobBAoiUuvUD8xDfHXfr8eB8wg7CiDUzEK1D": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU1StGLdsHwGcuvZAuq3SdJNziiaFpaaMr7jwFhLHiFd6PttS9aC": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1StSzHiGPzuYEH4e4WCuvAiy4aBmDr9aFMxVyUrUcQm5sRstm4": { + "balance": "193.556654750", + "bytecode": [], + "datastore": [] + }, + "AU1StvAii8MayoRhpoQ9y5BKpTcyy9LtBrREAfV5tKqix6TFjqLe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1SueN8EmHSUxWjEAyrLCRzFcUNw4ZyH3meRbEZJUMxGEe6LroP": { + "balance": "796.378793275", + "bytecode": [], + "datastore": [] + }, + "AU1SukxDn39z2Z7LWBs8Bn1qYzKwKKRErrSs6W4Mkh18y2Lncgwh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1SuryzVYwrfZR6UYx5ujuaZL3yPpWUmLBeGGEnpHJQJ6UbPHgk": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1Sv2V1ixJ5ehrQxmNmnxpwLxUArJsBfRitkMuKYzvKyZHgtBx4": { + "balance": "1006.835192408", + "bytecode": [], + "datastore": [] + }, + "AU1SvAdCsqJnZtRXe9WQzv8aodPiToHRsCjHfkWRTff6jAYAvTxR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1SvDbB64kcJ47gWjRxwoDGaW5JxWvPVSQjHFfuoK9W33UXrpab": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SvGJYpaLTfw3v5ksWmDdwbDgEfXrixfCStkbQZNmdg1Pd3V4s": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1SvcE7YmohSnkN6FP5HFuByG8ZeMcrSmQvJaY756gGigv8WRxA": { + "balance": "4438.972353459", + "bytecode": [], + "datastore": [] + }, + "AU1Sw1JZpK3EYF8VVnJKHYeqspXR9aGncDBn34FpSfmi6T3vvqfA": { + "balance": "2142.785262848", + "bytecode": [], + "datastore": [] + }, + "AU1Sw2nw7KHbsuZ53CHnTcr4JJUUZHHkTQGLfi37zNR5Ss1ccme9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SwPYHhFMzgWxPreRcsrKeUHdANfxDywgrUKEnfcGcro3s8Rwu": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Swq2bdbvna8FG8e64tu6nTMNp7kw9LQUrK7WRFcogVKE4N63R": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1Sx4SkbUxs8DxPYZfMLdy8asPRehe5tUTSFW2zLWxjeW69WBmA": { + "balance": "1385.810955464", + "bytecode": [], + "datastore": [] + }, + "AU1SxA35HyubkrnwjDp7y2mMzvPmtENcjA5aFoxjqZweBjRN1JCV": { + "balance": "1358.036932764", + "bytecode": [], + "datastore": [] + }, + "AU1SxUxtxH1Re74PkDWJ2iStjoUv6RUoYX8Qe1QTWHGT9wySgUZS": { + "balance": "1806.117466415", + "bytecode": [], + "datastore": [] + }, + "AU1Sxv1dUbhWfMWYKmSjJkaKoqufMEqfcu7Ji9TyE6SxwaLJe5YB": { + "balance": "1934.757126383", + "bytecode": [], + "datastore": [] + }, + "AU1Sy5HdkkK7o4DwZomV9NdrxpXD9dKtBXRkKDwCvhicdUJcpGyq": { + "balance": "1169.023030862", + "bytecode": [], + "datastore": [] + }, + "AU1SyBEmBXrgyGVPfkfF5tTJ7mGtpwAoA6w9nBrYScitS1q4E77n": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1SyPV94PieU8KPyHmBA1CxG1RSExjgng2vTqik5Kfzt4N9w3Kd": { + "balance": "2173.304758351", + "bytecode": [], + "datastore": [] + }, + "AU1SyS2ovY7eC7qQsi8Kh91LrtxvCpGPy3LqzZmFnxViUx3ChXF6": { + "balance": "1289.476471960", + "bytecode": [], + "datastore": [] + }, + "AU1SyTw86jsqf9Pn23QAisGQmJKdWSTRH9Dty7x3SV4eeDehFopg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Syq61qDhboHTCKT4b6NMWK8mS5BSkMoXqUwJCwyCHSvouwj7w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1SzHYTLRJtEgMwhzhCjqrhBNxRemZGvwM3RPQqzBkkrvT8mVzb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1SzNuaYfgan9idTyczT636dsgCmZzMWLXL1BDkDNJzkcDkaAja": { + "balance": "1943.070991276", + "bytecode": [], + "datastore": [] + }, + "AU1SzPouTQK1y7rTnWmwCm34wcDwaJXba8SPhv2DHkiZKQLhALnH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1T11UKoduJ9uBtkDLerfuV4iatuKv1vfbYKJaVKdvYk8vfvmeE": { + "balance": "593.221555924", + "bytecode": [], + "datastore": [] + }, + "AU1T1GjBrw1uECEAyeFqY7geMQ1ETB6YNFJzJBY8LFfkEN9wAc5F": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1T1mJAcARNtigLJPbRez31Nvj9xtqC7iywdQ79iPJLksU9i74U": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1T1yhZByT5KF8XKWxY1Jb97BF8hxSpRQqqRY6YntE5nFf4jRRE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1T1zSAwzoCVho7WHUKtRHJDtZNKv1Jhinx6na8gV8EsgzW2hBi": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1T2BjtRQioRr84jEPy8aVSWKj6BYZCP3oodMQygwb6N3aBhtaw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1T2C3HxMqzD4GbG3JtGh3BZfWYnDsTeZSP44aXmKLJh3HhDwcm": { + "balance": "185360.213422090", + "bytecode": [], + "datastore": [] + }, + "AU1T2RTbNFJvoHXfnkg9qqCNW5meY6BY1Q6f6ostQiDP4LX9LPB": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1T2sLF5p85Rn3c6uWv4GwmyjaXysw1xmdypxWcNWGhHTGazzFF": { + "balance": "3593.225531835", + "bytecode": [], + "datastore": [] + }, + "AU1T3Wk6az7rguCtuxGa58KsWSp1dgTxb9xYfvq7wzCNsutWdemx": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1T3vMUnuSSmWkxhNneb28BCg5GZjmWbQfw9GgKGrdY2qK57Pa2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1T4B6MaVaVEriLmYErEiyEqjBq5QxDYLpu9vDu7Qo51r6Hpnm5": { + "balance": "2842.226645926", + "bytecode": [], + "datastore": [] + }, + "AU1T4fmtCnCLKePBBNB9FHiGhhEUQB5F2NNJ39Tc6HrDEmSgMwka": { + "balance": "47.640666954", + "bytecode": [], + "datastore": [] + }, + "AU1T4iLVy4KSi9dxjwTZSEc19sJ3wU8Rzd3vzXqtge7B49sn3aza": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1T51oEtaKEnRePqUVt4pCBTdQ5S2LvzGjhXMnzHmKYMtXdGo17": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1T5jkoqHpZ4S1SqGQVJUvAbLKMDKtnj3pXYVE76LDyAVqfYsgk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1T66yuj3sBvT2oTaR21MnaecvGbwNpGKYYaNk5S5RJ2yhomUzY": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1T6JjkAAdhsPdcseXbx9y5KJK3yfCU8Bw9NmT3YNCMyFVjrMPN": { + "balance": "756.735868634", + "bytecode": [], + "datastore": [] + }, + "AU1T6PxPMwE6SPFgapcfEuQh8ooQ3Jex6xXqFULuE5ArpbRxWB77": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1T6RGYm3xQUDLAK1JFsy8B2R3KQuiZtyP62WA8ZH9gdVFWiGgW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1T6WJ9d7X2PQEJamEMYoVwfWbQuEAk3oSw5AgR3hn8pyuL9UBZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1T6n7BbHezVF6t9buE75KHbGsDcC1vnK2gjZ1f8KbGuheRXAtX": { + "balance": "2976.413147695", + "bytecode": [], + "datastore": [] + }, + "AU1T6rtpxekAAP747wvUR8HB8EmsPeWu26gh1mzqRWjfjhm8FHi1": { + "balance": "40.502730488", + "bytecode": [], + "datastore": [] + }, + "AU1T7KGHwKEAuttS2cHECYKdh5b31w8SstbSHqzoLgQeaaUNK8a9": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1T7j3HXeighH9nfpQZVE1crvxYjna3BAVK3C7TganyaVc2jamK": { + "balance": "1696.138554790", + "bytecode": [], + "datastore": [] + }, + "AU1T7otnCXdKJ68HzmbFgJxrp42euGHREdydUPxnAzPt1SrBz1G5": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1T91EBmVqrpCo338JV7BVWkx5pNF2QjkVaQUszE78qwFqtJqi6": { + "balance": "1647.541029904", + "bytecode": [], + "datastore": [] + }, + "AU1T97U77JaREHsMprd6GddmdgmVLgaD5K6Tv4H4XkN49PR9dje5": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1T9XfAzW2Lec3NxpnWmX4sgoBPSVuZoFazKq3MYJbSC7CGpe1P": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1T9doUwMadZ2hj7MJkLUm3fj1VRCpESbNUh8SvSNJKX5oLpUVM": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1T9nL3dBZw1gUAhYny2ULTZDuykQ8iq3WkAPozNKuWrfqsDQKK": { + "balance": "3108.905638883", + "bytecode": [], + "datastore": [] + }, + "AU1T9powqNyohoxmzfNHon7HnKowhZyWA6dtewrNNKbYCpCQGQsa": { + "balance": "1776.414351759", + "bytecode": [], + "datastore": [] + }, + "AU1TAMtkEVs1KH77dWnVHbE9LDEeFwH3NfpWQjH3FfQihqCFFovL": { + "balance": "6284.763746672", + "bytecode": [], + "datastore": [] + }, + "AU1TAYRmaYqK4FMuX1faitftF9LeSSwojo2Dwg5hpyFwFVNf44Bo": { + "balance": "2694.921122633", + "bytecode": [], + "datastore": [] + }, + "AU1TAwKBwG5vSuXREqpxNMvFzNeVQWUZq3UJZEPiHBNmyCfXEQ5B": { + "balance": "1047.680195596", + "bytecode": [], + "datastore": [] + }, + "AU1TB5JtxprJ5s8RXm4WtwCvv6hAhagdaQJUJMaMJSvcqyk7yzEm": { + "balance": "89.024504022", + "bytecode": [], + "datastore": [] + }, + "AU1TBAGJbncinNUgtqY44w4m1PvNbq8Zd5dxuEhybaQfNuaqftJa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1TBX7vrpHFGc2hNzawZJaiYoKuffFc4ZPemrHwXjTZSYmKF1TJ": { + "balance": "1785.600631646", + "bytecode": [], + "datastore": [] + }, + "AU1TBXKvUYJr3pAkqsBr4MTjB7XPsNwRhpv6Zo6K1hQh4cVguXjA": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU1TBu2GrdXSBQbH4PMCiG6eD6RshnrRhEAiPkzSfieerapdygup": { + "balance": "715.483720709", + "bytecode": [], + "datastore": [] + }, + "AU1TCP7LxWTHCJU1AemKbZADvU7ozHSMxAYXmzAQ89CcCgbmCcdK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TCXNHkLmNHVoUJSq3Jqt9XXdRowYsGMKkVs2R1ywvWcsnnV5V": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1TCfBrvEF41sBvYXHZXB6W4PmnUD2YrRe1PgktmYgtzvpuGokC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TCv96skazPwY2PuuWyXTPk7yrrXnzf1JncvQQTiewbn3v25bV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TCx6kGqwxu9mV1MFq18i7NLrUvoazgCC8tJ5SJWxm63a3ZTyj": { + "balance": "2469.898864034", + "bytecode": [], + "datastore": [] + }, + "AU1TD7DeYv3VDXcPQawqEArRwvBZkQAXFirEwcXyKRYpFDSoqeGf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TDUezUfnt4co6FC8UwZe7UVkjRcVkXcJzzBAqaxLTUZ1F6t9E": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1TDvjvWBy37yTT59GeXBaQgFtZFxpg4FBFmcMEdjwTTysWpPnC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TEK36KwLnwyUFU9s7sFDaekcXaFSknrkskmdh4RmQDRxscvYS": { + "balance": "1246.882900401", + "bytecode": [], + "datastore": [] + }, + "AU1TEcWzCX5LykCTNsMsR5xVoE3R89BZ5Q91itRvxo4WGbmUEt1g": { + "balance": "3955.270302955", + "bytecode": [], + "datastore": [] + }, + "AU1TExwCJX85ia9c3Eh9GgeVcZZ6HRN3rQ2yLX1bPfpNEDtBeHpK": { + "balance": "1699.696002210", + "bytecode": [], + "datastore": [] + }, + "AU1TFQGfyVc3uzAA1gB7csgDzeyQEavVjt9fFFxqziFYSojfx1rL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TFY9ZMBJKms9wN7jTcCC8AhMt5E2LyWpAA1hE6WkEyGPgeVFa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TFcSorbXM3iprWfemBXj6eQi4DuiJppkeDSHfDjqRBRS6VWj6": { + "balance": "1968.375096210", + "bytecode": [], + "datastore": [] + }, + "AU1TFo1qhZftmrfjwbbitkFaoHVAKGhgFZkkKXaz54bCzNMK7XJj": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1TGMxgivqvuWhY3KKUF4p5sXsuphjh3DAg6p4t3kc1FW2cSAgc": { + "balance": "2907.330152005", + "bytecode": [], + "datastore": [] + }, + "AU1TH4SkeW6ve4sRfDLQuyCtzHnxU3hC953U22pgjAu8KBWzRFEE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1THJptMtnnVCEsBLuaYx8BqpqkCrGmhQuqXYGBBusV2whJTNCr": { + "balance": "2691.701478628", + "bytecode": [], + "datastore": [] + }, + "AU1THZ18LxptRrwq8XtURUqd8Vwtwfi5fbHuNFJwRriPFNPUeh88": { + "balance": "1451.736384768", + "bytecode": [], + "datastore": [] + }, + "AU1THpVzNtLCUiCU2Rc9sLw1sLajPuLkfH2RStC5E1iJs5jJMmxt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1THtwcHcVizKWtb9PPqMukcqnXceXwMYxssyKQ2tFWJr8zNmo": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1TJAr2gWNJ2eKEBtTKdJsTiWWTpWZ5eyfyFyxndAXS4ptHkH7P": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1TJf1UH1ykyc5AhRrCj3JMPvju9U8ZsFhR4hRzuKtNostYCcXT": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1TJr9eXjczaEeqicZb5ZrfdyJubouyxwiQ8MkgPdsMET2tiVE8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TJsVFbDtGJpugcEhMTm4QTTYEiRJT6FcCQbfDATjG23fubAZe": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1TJxiXvsxsAKh5AhzpMdyhkS5ZN87WxnXrgYQnbGH1sCZVt9GG": { + "balance": "278.258622356", + "bytecode": [], + "datastore": [] + }, + "AU1TKkZsPapDYHfC7UxDiKeF14EjHHgMUzqxEqV5cwa9atzch6kQ": { + "balance": "1438.569403286", + "bytecode": [], + "datastore": [] + }, + "AU1TL1Ua9dNSvzPYzMvtBj7D5U57ALzNpfMU5HEqwDVUhqmvT9uB": { + "balance": "1491.597530541", + "bytecode": [], + "datastore": [] + }, + "AU1TL2sQcRcCDDvXLqLMXWBgjMvk9uqXLxo5XbVuDiH6ZRtQTvCz": { + "balance": "2236.942230474", + "bytecode": [], + "datastore": [] + }, + "AU1TLHK1Xp5ZYru6H2pVQSZuc2LoKCwPPczmpr7Fd5Jg3XmNaHX2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TLU8wkFtvxwywNEzkktDDh7vW35xZ5wkBbaitp4feyCSdLV5f": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1TM9UDht2xNy5rWS1i1TEhd2A3Mo5M2b86Uj97XCLNSUhSYs5s": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1TMRFFDxGAsyNTdWCDw5FoR24oecGrjTLzJuExUTxqc4syTNtR": { + "balance": "4389.325390206", + "bytecode": [], + "datastore": [] + }, + "AU1TMckFUbRueH9jgA4pCd4GVDnQeE7Z14xraZdnva15wdA7h6fz": { + "balance": "2215.264794010", + "bytecode": [], + "datastore": [] + }, + "AU1TMkJU47zp8t7CXts5CYwHyinyS1w959cStLf1dPJBySfsuaC7": { + "balance": "1083.239491298", + "bytecode": [], + "datastore": [] + }, + "AU1TMqHrkpz9B2U2944aCvQGmUQJQ2HiB5v3GB1TCd1qwEdQ5T6M": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TNcemYRWYWYFFfnA7kAdcWCTMmmEHZTh6tVtVL83kBAYDBRfc": { + "balance": "3401.493790137", + "bytecode": [], + "datastore": [] + }, + "AU1TNhMAd3XGTtS9QBeeX27grBqC1rJEvSnfh86gYjMfwWiNe1LQ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1TNm1D9vT8bUVfYUpvbzMiAMgMdbtnrD1kHL7P8Kcwn9Z32p8i": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1TNmiqYLWtKrczzjdbGmheqTYxBJ5vqhyo4qsh63LT1yXtfK9o": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TPCMsaEJGzqtxgYNB4km2oCuioqRikNmN8JguEcrLrtcjGi1n": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1TPVkohLuJb5fKSTpfThyFejN1kbQBR6jsiSP3BccuVYpQGm5q": { + "balance": "2851.047879722", + "bytecode": [], + "datastore": [] + }, + "AU1TPczsRN4mV32cRV8ZxUoC1tzc1jM6k9TqgcsBGbFUKyeVzYc9": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1TPmgzLwjsLvMv6Sx3nGp8qjN1mswwkuivXQf1dVLcZhG9d4U5": { + "balance": "1274.154113487", + "bytecode": [], + "datastore": [] + }, + "AU1TPqrhHqnU4V53cDuTkYueS8zVPXEycbDTAsDeduFvQMSyosVc": { + "balance": "1436.943783490", + "bytecode": [], + "datastore": [] + }, + "AU1TQ1uMz5mxeuqeoCgPmR5V5YznMMtVfZnPNZxTbURS78T1YFgS": { + "balance": "2077.695491132", + "bytecode": [], + "datastore": [] + }, + "AU1TQ6LFuunbCUMzHxHM7ZVDVv1FQ2L2DFmhbLRavXYRgsCZLmqs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TQM2j8AgA2dpnxSN7DwHoeL1WptN2dxvq1YFMNX3bUDEnErqG": { + "balance": "575.338523950", + "bytecode": [], + "datastore": [] + }, + "AU1TQnTJ5pWEEYXrYastv5wDhWYGWgtNNuY6c21YfhMagZaHAHLX": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1TQtPwnaMEkk9QsSsJ8R9JKagirG5Ld3GK1Vjig75eAGQLrN3d": { + "balance": "2585.532614590", + "bytecode": [], + "datastore": [] + }, + "AU1TQxJxMAWEBdbaSyphgjNaFYMLro6k3kQ9U3DypGNrHtP9ocUP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TR1w3V9HnTqYuvTxZR2HGSnpFdVHWgbHo9aC3TPcTopEvfp9F": { + "balance": "993.179906688", + "bytecode": [], + "datastore": [] + }, + "AU1TRwzbAoUgM3jemonKUQFYV4TmGenPzGeTVEM9Lm3AiW3o2Z45": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1TS5sgfmXvb1iUCDFGsG9vK6BRG5H4ibWApRwBM7dZ6iJy9hod": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1TSA2iKB7RjCpsbb8U2RvpToaQQHvcEB8WmJszzz38fwh5mmwx": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1TSgvSRHVBJWBXCWAubSZGngMdpkmMrAhys4XN4pJaFkee6T9e": { + "balance": "1726.775989956", + "bytecode": [], + "datastore": [] + }, + "AU1TSjQh9mdWY8nGgUnZb1gKski4kZiJU6BuDeszT6Pje8kq7WM9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1TSrKD4X24BFm1Q1qNvaPLynA5Z8FSPwtbiN8Z9K8wjZPhSqe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TSz91f4WHXHkYHL7Xm3f9AzmNdoPMNuk6EKMhxjhU3sbwbnCm": { + "balance": "2225.575657995", + "bytecode": [], + "datastore": [] + }, + "AU1TT45k95hx7PeYSFbHNc4hjn2tSJtXYamMzVy5uae9SFm1KRWJ": { + "balance": "940.929743105", + "bytecode": [], + "datastore": [] + }, + "AU1TTDYQTVg8TJAGmG8Txmcsmd2U1PDmyxSC4iBZ5BaMhqEvUAvw": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1TTUHjBiudjPQ7XiKfiPEx28SQ6RmZiNCRZNhcXD8sm12tWBkt": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1TUBh4WRBomveJKkPjVNcRnacVPmp6eDjKWb7EGcj7H15dY3bf": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1TUJeHWWZDierHZkwCJbKYLjrNxPji1AikwHEgWAYiTTSkv2FZ": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1TUMh3sMczpqo8qcTU7NxfLqMRmovjmXoH12UtrdxgCqp7t7E1": { + "balance": "1095.339910055", + "bytecode": [], + "datastore": [] + }, + "AU1TUeETQa6rzPytrZXXv8kjWXKTZSaw385nWtp6GVwWNqFMFuz6": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1TVEihoiQMJH4QWqSZmK6Fv6L5xEVBqJSsS2YVYAuYZioRLuKq": { + "balance": "1218.237231984", + "bytecode": [], + "datastore": [] + }, + "AU1TVNfW44znWeLX2nZytXtjYDBTo16ZD9F4Trg5Hvpw6Y4r6GQ1": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1TVpa4t813xf3h89hGsxPstcSrLfjWg7cvDSkF6M3ivuJyWQ1": { + "balance": "2001.455960978", + "bytecode": [], + "datastore": [] + }, + "AU1TWEGEGcZhahebTB9ZnBRCNUjeQvVNfnstKEXU5g4Dpj34d6Vs": { + "balance": "757.249066450", + "bytecode": [], + "datastore": [] + }, + "AU1TWVya1iuuZfL4tcwDvg1oG4dy5ci3WthVkKct4tBDQPnxLQhP": { + "balance": "807.985253591", + "bytecode": [], + "datastore": [] + }, + "AU1TWcUaoEm24cTs9AhcQiAC4bq8SiNr2QrrXXf7dBLAFKrNufSF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TXUH1S4ocLUvvWDdk4KDkW8q8bpKPTVsoSMBUacxKrcVGq7ra": { + "balance": "2026.404646744", + "bytecode": [], + "datastore": [] + }, + "AU1TXdg64RQ964atWpKXstAFKwBKPoqnC4HRFNTQnh5PVwiarFxm": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1TXoWkAGRkdgXtueq9WFg5UNqyd6zjvtruQxmaQxjCyTv63mYi": { + "balance": "2651.012542152", + "bytecode": [], + "datastore": [] + }, + "AU1TXycXojJQAYUGgAWvCrv2d3CSLV9Vm9d5AVLGrVK3v1PEk4o9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TY64GQEfj4A4x3PKnHiY3GmEfwS6L7baPx6ni4dXmYfY6cWFp": { + "balance": "1785.853572601", + "bytecode": [], + "datastore": [] + }, + "AU1TYhow7QsampVMC2HzhW4uZn7cXusoZUjAoysfSkNaFrb88u9Q": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1TZ16pUi4fNEKnbHxhfeKyppBVMN6Ndru8oh8vQHfNfBYSBXmA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Ta68HSJvQrskyqQVqG6jXi8wGG8zgERDrYJ89GQMCi6nFHuYX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TaJhn257iPvyPwjpjUvPSfykSfvQh4dXT7SLrxWY6HPR8ugfk": { + "balance": "1592.380339758", + "bytecode": [], + "datastore": [] + }, + "AU1TaKo5LDNbnUFkRBpswNWxkZYB1ehtLoyAGjXpS8Jhrkmzup8n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TaPAHC2mgKTwEohCCQeJX9s3PwUMTSAUZ5hSns7hsbrjTcBPR": { + "balance": "2017.403629477", + "bytecode": [], + "datastore": [] + }, + "AU1TapRDtj9TMas4yg8ccbBECGsqFvzqydNz7zQ8NBC35zKZ32vG": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1TaqSJqjcST9Rmy4Yv5rrZuuhuceXaVgpMqVihjYqbXeYSpmQm": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TayeGKa9nHs8snNWFTGNcaSqGPe5XiUq3L9brWTtz9xHgBd8w": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TbBGWhea9x9WScvYRAVUXa4ASrjGwL4U7HkzSQYs2WnPEofxN": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1TbS3onqa4dgFfrEDXs1AYHm9HeUCd8ubjGtE8dkQBaokJ4FzN": { + "balance": "179.042904290", + "bytecode": [], + "datastore": [] + }, + "AU1TbXSjRQtpkgTvTmPUa78atx1r2PXpyormgF6FnregYKDgA2cC": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU1TbuC6dM6dwbn6bwPx83VuEgsWrzRrV56vxLLZqEbcDGSVmAM": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Tc9AqqiM87obgLmGiTBtmz6TzTpD288irkMsETGJNfREjfXBj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TcS3WTAvLDcmRsegoCBESYZ6Cx8HC3PZf4jz1uRw3ob9m4tpU": { + "balance": "1160.690842525", + "bytecode": [], + "datastore": [] + }, + "AU1TcoBsiYk97TVAZCX63URThRhoVPMSfYbDqBPo4GWe6j2NgTo5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TcqQRTDT32VkDsG5rDt1YiuAxU7cs2z83rLwZuboAukts8RSf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Td2NsG7Ge6T2dKVR93vhXXJmBVPLA6BYDyGEXPoy74d92ui1y": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1TdFsN4XR1vkJvyLmGSvCxG59n2mqCtiigVj3BCeYxS9T61HEg": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1TdwePptPhtshW8YS4Dkq73voyY17cZnqsAHPc4SbskmQSBsR7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Te3UxjZjFfWqajGnXfe7d1vggAxSgabrA5JgRQC1MtqXXVrxa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Tf5Uxmpi32Niz5RWks1sWSfDcud9H5e3Cijv3pFpkUibmMY1i": { + "balance": "1333.541796933", + "bytecode": [], + "datastore": [] + }, + "AU1Tf5XDycxgXjsYvdDZuG3C55Pcxzum8z7o4rWRqG42ewrSv7YT": { + "balance": "1664.805469100", + "bytecode": [], + "datastore": [] + }, + "AU1TfQn4PNedtZPB8VxRSu8qZ4ioyCuaHHBrzSov6SddvHphdveK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TfZPCDDDUBb5u37qSGoFmHk84hw8Z2N2G1sVzW6XLbwT1drxV": { + "balance": "2754.363610560", + "bytecode": [], + "datastore": [] + }, + "AU1Tfjnk2T7kmd4L1STMum9p1WMXK5YJVemttCukjoD39fwfR5CH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Tfw7mjpB4KPu38bCmarNdjwF1XGBK9f2vdggdkTx5bE9vuBoR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TfxNyuU5B8jNTxFbUFpp31N1wb79MLfkiTTQ4ov6weVheYsqR": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1Tg7zp1YaiZdfvDZ4YoTm1VwucgAVPrYcuL7BRnEKCirFnPStp": { + "balance": "1418.926890095", + "bytecode": [], + "datastore": [] + }, + "AU1Tg8DfX2Q38MFyGtNNhqRyw7VWuzbebDi4FoTDs8vz2DcCyE8X": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1Tg9TqsHKnxgBPcubQt1JcdRmSyajWsmgCeEokqeSFNQP71Zou": { + "balance": "1689.260130740", + "bytecode": [], + "datastore": [] + }, + "AU1TgLuoN33ue3MM61vGz8JSYP26JNmLqF7RnVe2xGjMZ7u91Xbq": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1TgQqQpeXa756ZKtVion4F1ftREyiL4tL6CSiCePqw6Xznh5pY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Tgbb5iLVuBKPMSVofHYp8NcYRQUtxVUKZXgbPhdfGzZB6Kzg3": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1Th37jvVN2PMo7sMJdSJHo9LRN7qNWejNWJFDwfyX9h9y7U1Nu": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1ThCFC9AqHnVWuoeXpCaaK24dAYwPcvQjEp6BPU76xdx4PnA3r": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1ThFyrPGEXptG2nV6TXPYZBhMsbRCG5mWb86SZFcrDDrYwxnfL": { + "balance": "1629.258686076", + "bytecode": [], + "datastore": [] + }, + "AU1ThaqXaJRGmeciyoC4PuQQ9KVJRQaRMdq2tqGkBdDp4ATsZ9wT": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ThecmY6QMNwnoF1C9bdjRv65HMtPUaguKcydNtZbhDG22wPja": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1ThhpaxkN1UTqV4oJa5eRc9YZ1UgQPCK5NsouEuVkfMeJT3uEG": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1ThietB9hih5x6H16WjuKBApvkPR3DpFZAqE4ed5fgYjFkHxky": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Ti5rR9ADjpZ6CTYSG9DSYXS2vtj6BWn7Pckb5aLEVRw4BFKkJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TiZgG2BPeqjk2oqGkuhbi9hFKwxV1196rT4LL3wWVuAN4CVgi": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1TjC2wCffiX6jkwe6M7niugm7QvDy4zHiR2LeZknLGezn2BGxE": { + "balance": "85.739139779", + "bytecode": [], + "datastore": [] + }, + "AU1TjE1EqMyGXPnBd8aqwQWG2v1ga4k86s5tw9dBEj6ZcA6oZBMK": { + "balance": "1423.295731496", + "bytecode": [], + "datastore": [] + }, + "AU1TjEgFZf4dgPi9KPRKUnZPYKQU6QEWABXpUC3i7dYbvyxi8She": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TjPBrFrXTDwkPCp1k78kpK82WvQwXpayfua8udp9tsKoL3T3s": { + "balance": "1072.611869532", + "bytecode": [], + "datastore": [] + }, + "AU1TjQ4AmaRfkuMtrwFxrAh3TFwpn2wswtZUnQbsY2jQbQYiTQfP": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1TjVCFdtkntoyZzzF3A6Sjs4zVm8hb29XDmvdpBKZGB2hXF4ip": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Tjgn3FGb9gKFUmH7scv8QTxfeX96NJr23M1RikpaEdk6PFzQt": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1TjjDonKp7LtXonw8MKXyG5bWJ2jKc7GqZTFHp8Peh7axHKQqY": { + "balance": "2122.554702679", + "bytecode": [], + "datastore": [] + }, + "AU1TjmCBdTF3BH66nkZ5CQkzpEtXDKCckZeYizetCQ6aCNe29k61": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TjrbGfH9v4EL6YW4EepZBMwuWUw3N4V6Q1GwrVWnMZvNEPC2o": { + "balance": "1002.201920353", + "bytecode": [], + "datastore": [] + }, + "AU1TkATp1fRcKmpZ41LkmYHpAs4R9MoiuXzyrsoSnj39zPe7WiZT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Tkvj8k8syJ4kf9NwU5nM2dKYcfn8DK5tQj1NrJXDTEkWPtXz5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TkxM1KYphy8rk467FtfgYiJPqKrRKuiGrzirdi4wBUX5rUfBU": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1Tm8Hov8gsGdWBowZMDAENK3odZLHuhxzXtgijk4kB97LTpRKG": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1TmGk9KCcT7HPDwfbUWV6XK2DarSGHpMXdFap7AqCVXDoTiEda": { + "balance": "13.721526823", + "bytecode": [], + "datastore": [] + }, + "AU1TmZQT7vyvHL7mj7HvqWNWPynfQsH31u8u5HVJveCyxwk1w32w": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Tmb9RWPa9obzmiB5HtY6pZwRYe9pDuhTZGLdEnNKxChALcEVS": { + "balance": "910.290706880", + "bytecode": [], + "datastore": [] + }, + "AU1Tmd2sCEsSdEQibNRnuUqHcFVcXxAh6JnKR8oN4vZFFmoLk6jL": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Tmj9LVfqTKjjhkZuWBShbcPSgxLudTZcBA6WjmcfUvmtt1Xf7": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1TmpEUetF5cHrni4KPw2VQnc9QTxXynGqvWisKQ2uygg7UiScR": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1TmxgWoXfqrLpynX9Nf1afY1eLJHbqeBRMCUgx6XprrNp9HZ9M": { + "balance": "2010.827616884", + "bytecode": [], + "datastore": [] + }, + "AU1Tn1Z9k75dYT9sHwNTD8kGvZL5sK9R8YdcFUcQWMXcb8uLXFfe": { + "balance": "3071.655207854", + "bytecode": [], + "datastore": [] + }, + "AU1Tnf1zguzZYSmvwPN4dfbw7HCXaWFhCSFqfJeSn9EFmDTwcsrs": { + "balance": "1169.842571812", + "bytecode": [], + "datastore": [] + }, + "AU1ToHfhwEQM1ERtP4Eo88RcfDVcPSUGJA2ViCr8Dp2w99oJuUfk": { + "balance": "2061.265930008", + "bytecode": [], + "datastore": [] + }, + "AU1TooVbmdHe6LkY1GrZ54mWojQ7rfj6cnrrKSTx1AKFWyvzcGgR": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1TozkgH89RCpZwkyu6v5oVm7BCWJV6ARo8ahDnynBP1KXeCBoZ": { + "balance": "1529.744628897", + "bytecode": [], + "datastore": [] + }, + "AU1TpQAPvcdzcoHuSkF62DshRLBkt4JaFyWcrsQABiQRxC9ttkWy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TpdX8ScmaD9xiHme4cf6LSZDzCHdZnKCFX1kTpYUnwf32y9hu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TqFL1qh153eD7T6FowwnQLZ9uniLk3xHUGqfGpVYiNCWmugYw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TqHACaamPw6xqZK1VuyXExmhwa7vrDjcMKqZrRQyoYhLYt79o": { + "balance": "11445.941016203", + "bytecode": [], + "datastore": [] + }, + "AU1TqVyt3LAfo5wcDdos3PdGGWJzxz6JxM1GMu3xvvcQQ5ka6heb": { + "balance": "1703.740761759", + "bytecode": [], + "datastore": [] + }, + "AU1TqXDxvKHVUrYQ3Ap5poX4DUhTxqn4pYsChHFCafNhspYcjTDY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Tr7bLhQtp6R8HxzqKRRyWt28JuNqkAokeJ8vphfd3boq13qA7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1TrBBnLCxu6QmwYnYwomvhUCZC3KeCy2iHi7fNkCobZphZLnEm": { + "balance": "701.212621420", + "bytecode": [], + "datastore": [] + }, + "AU1TrPbXUBstvnatNJgSoakXUrvsZFYot8mvVwj1Ca4q3WXz2sKC": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1TrPz9nDFoCx7PjTshfEURPVNsjjBBdCmWwhoYXnAYERDf2w4w": { + "balance": "1029.457745176", + "bytecode": [], + "datastore": [] + }, + "AU1TrQhBGdgxnd8YzmnJTkCs6jWouk9DLTwpokhitHufg2Xp1v7U": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1TrRXv5oLxs95qeVA4Vy7vSbYH2gEzifE1cV6r4RudyFBZbNo3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TrTdkacZZhwoVrNCq7n4SFRXA1og52d1oNtsqW5PSseBMKQC8": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU1TroGggP31pkrqfPY5vHontBwqggMSGEWuJeqmNm3Er41aqVnf": { + "balance": "889.210705053", + "bytecode": [], + "datastore": [] + }, + "AU1TsA9pSPf3axyfCgQRPenryR3SbY4FD65xDATVGijBG77tNQdL": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1TsGmVHpgkfQb4YEYKAUeiKcTmRqsC87ijcLWybnXvbTfnTxPx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1TsQhGSAXvvDY26bJFxBUKDowUjXMK55iok1kQAL4nvvtnTk5q": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1Ttbb4uEek2P4ACfn7nupefyzj7Kgj5BEJgu1CWN8fdA6DCpg8": { + "balance": "3280.367575211", + "bytecode": [], + "datastore": [] + }, + "AU1Tu6NC9qSxSwEatTJvEUzBuAEgj3Z6Fj9x4FhwGF4jDtDLaoWL": { + "balance": "1389.209076907", + "bytecode": [], + "datastore": [] + }, + "AU1Tu7a1qESZLSNTxdsMNFEgPUJU3usdkmjbPbeX7qNMzW7ab9pm": { + "balance": "5120.491119268", + "bytecode": [], + "datastore": [] + }, + "AU1TuDEcWnFq64tUvvLiPGmdV4WVGYmrUfEAHRnoaR7vn7mZxD28": { + "balance": "1938.089282460", + "bytecode": [], + "datastore": [] + }, + "AU1Tub72nb2NRkxqmGTwJWsQgpyhMFRF7NdrorXxmWseQ4beVZJ6": { + "balance": "2596.480549988", + "bytecode": [], + "datastore": [] + }, + "AU1TukkmAyiRrboGGfdRRQW4grjveSJJANBhs5nLGUpDbfiRD7qe": { + "balance": "573.095329446", + "bytecode": [], + "datastore": [] + }, + "AU1Tv1u7uoa2DkeBYDxjyZsppJsquFjUFr8aTKovYcrwZD8aeoKm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Tv4Dki9NkNVHVyLvurUNxe1BWtJmKnfRkyd4BCcZJ4UckhHWA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Tv8RfiffFRW2gkwzmirZ3L9mySAwqYCJYJ7d5TXdqhgXDDdy8": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1TvLyp6FNuUXo4s5gF5n3vVwvJqNSpdt2eZP7KSa1pETDLZMzd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1TvRGsBLtmYG7s82LqoZai3TBK6rv4WTB8WGkf7DNBQg4BJzVv": { + "balance": "4292.213605172", + "bytecode": [], + "datastore": [] + }, + "AU1TvZCpJF7xF7Wqr6Zd85FjGQQSv1Jx8KH4SSZZVeFyJ3WCNnau": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1TvZyu3JSb9wn1GyUrhM2KykMn58atbgUmas8Ksi7irMJZ7vBX": { + "balance": "4485.545561863", + "bytecode": [], + "datastore": [] + }, + "AU1TvwKnTqCvih4uWWCEXmnfunnvf5P1pVwchdJK2keAh2v2yjCc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Tw7bC1msqEBWgHZoQkRYtMFFDCgNn3yiUzKiQgEzbBPPDvHTg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Tw8Zkv5LVzWictF6VbH1Wp18AVRSqaCh8kEuh8C33uCF37DxT": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1TwsWf9Q5AYDoX7iudsFq6BDuLQPBikC8PN1TgjZZeUkph6qja": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1TxBn1v5CKYA1mZcXPMiBN3gdwUSN9SCm1k6m13fUE39UpPC7u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1TxFMS6Vq8dojqigXMpZ2fNu8fnjvS65iqM6ZXEL7J4SpaAJk7": { + "balance": "1562.601569095", + "bytecode": [], + "datastore": [] + }, + "AU1TxLKjsRsEK9U66wgnDGyggZNMYxB4Y98Pe3c935JCi2ScPxSp": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1TxYeuxxgHwWuVXuXEp3sjqBwvqYCweaBdYcdBPyobm3Pgtm6E": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1TxjdH71gGnvDjVFWkcXY8zQEWT7KyBdYThtqgPi6WRVeeEZ6u": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1Tyj5JXNJDtMRNAEA4t1XN4AJiHT8FdLsFjSkXJaADmNpCFNEi": { + "balance": "575.562873859", + "bytecode": [], + "datastore": [] + }, + "AU1TzDZtjaikGUpJM94T8UFoMW2b2QvjjDWbTaY2jpipXgisAPBv": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1TzoGDYg2p65FzQQZDEcTewPAWhizqLNibPCTFudXs1bMXeBRJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Tzs5Zk96mE5SrwuhVAunF7GXm4NFHSR2YbTekAAXLNLXFiQA2": { + "balance": "4661.787089462", + "bytecode": [], + "datastore": [] + }, + "AU1U16XuVzgxhGQ184GabxM6DoNugqKgi2Px1R4g1LqiL8sFRZFE": { + "balance": "4452.718815488", + "bytecode": [], + "datastore": [] + }, + "AU1U19S99AxAGFe31ajH23iwyFsZAePmWwqXF3pF5GWP7TUWPYLe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1U1ZA6ZUkbLNuQbKopbEDND6og3d4Gqq53jy4f97SJfnad3etq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1U1srfc9q6q31kJcAhfi7oHnJZP8d2kWyFTrqdNyKyhZzPBink": { + "balance": "3894.804694438", + "bytecode": [], + "datastore": [] + }, + "AU1U2JJB445GdheP2HMapkv86y7wJCcEYnF1fjA8t42onifCyETF": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1U2NzXfx9RYXsa4p4W5YaS4YdGAy32nKMzouHUkTsatX4FPSeE": { + "balance": "3913.105036628", + "bytecode": [], + "datastore": [] + }, + "AU1U2SfaA9SnpvjR1YSNqNNRyjzMYCKqoFpZnY9TdKHs1YLS25zA": { + "balance": "1422.268389193", + "bytecode": [], + "datastore": [] + }, + "AU1U2bEsnqMn2KdcX9pHdZK6gqpyUQxQVhoB2Q7gPYtBCKT88sx6": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1U2mh78khAc17QqjZjRtYPeuBYpVKqS8V29JKzt6YrH6kKPvMw": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1U2mx9in8vKhpJWF9nMqncfZ9jkxtRHGaeiM6841cmWxsNHyDN": { + "balance": "2048.025161179", + "bytecode": [], + "datastore": [] + }, + "AU1U33ADmjEXgLJ5pek11imYQ5GfENviwFWuRsARugtwjd9KX62s": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1U3Gtfq1nyVtpQtEv2ScH7R6Wb5TWHuLCN8R3NsqrPm8FMZeR6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1U3knEtzJpF56MQUPDK81UCbWauaBwm8T7cuKcJEu554RtWXSW": { + "balance": "3105.136536289", + "bytecode": [], + "datastore": [] + }, + "AU1U3sQ9eMUkDrVSAYkvKBsPi3J1YTJpbm7n3xKjcQg5QQJE8VdX": { + "balance": "731.871912847", + "bytecode": [], + "datastore": [] + }, + "AU1U3xYDsQoFBJ84mtchuL3TRa4SuZ4Z9qq27W9PQPsidLFdCzfx": { + "balance": "968.493353219", + "bytecode": [], + "datastore": [] + }, + "AU1U4VK5Hsj3NyNb1wJziYqJezLLwhPAstELnncoP4noihc9M8A": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1U4aKbokEcqH2s2UAwBC4Z16rkhH33BtmwxwuVUjizHLgPmXW3": { + "balance": "1401.431167921", + "bytecode": [], + "datastore": [] + }, + "AU1U4cCGmV8cFLjqFwBMH87Ru4gANGWEmX81ZH9mxQjhP69htUYa": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1U4kvxpxpEAsZEwrEXM9qpZQPZBfKQgqnqVtE3T2e51pPPAWsa": { + "balance": "280.006636019", + "bytecode": [], + "datastore": [] + }, + "AU1U5TGxMQZ3nXDkiYiGAF5nAsS2X42g9z7fk8XpvaCs2ZDgMVj1": { + "balance": "1510.935945815", + "bytecode": [], + "datastore": [] + }, + "AU1U5fXhsp9ck3wVQbKTdQk1w1EPkzjpmuKJ5uYAVLFLnK1s8cwQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1U5ioRvEn6bJwcELy8taASFKr5iBNhwhCeoxmJqkYo1RDLpN6p": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1U6aSvDx2yTzbU7TnUmiBoRp7E57rAzEyWwwVHKfv64wZ3dEBN": { + "balance": "2042.584114747", + "bytecode": [], + "datastore": [] + }, + "AU1U6abgKE48PLAs2qFCd4QtyTo8ryNJ6UxMuEC14AneoNFcP3sS": { + "balance": "975.555003713", + "bytecode": [], + "datastore": [] + }, + "AU1U7NU49G8cbtBW5TEqS3nHiN3z8bwEoojnXjAXo4JYFXBst5a2": { + "balance": "3695.512995413", + "bytecode": [], + "datastore": [] + }, + "AU1U7VU1DC4Amz6tuLwwhC9ygSJoNNYwK4nKkNifPeAfrgDPFN3t": { + "balance": "856.105897844", + "bytecode": [], + "datastore": [] + }, + "AU1U7pscTLdJVL3smNJtDJztUoxfj7PXP5EYow2djzqztc7cXU6J": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1U7quHh8vEC3MMMurhsX7xMfP1tcsDmZHMxZhQw8jmqWZsB41x": { + "balance": "2441.570478219", + "bytecode": [], + "datastore": [] + }, + "AU1U7xtdnW2yJxvgRi81h8a66zp3nZgtVwhGh9LU2APCu4Sa3PN7": { + "balance": "4940.127790161", + "bytecode": [], + "datastore": [] + }, + "AU1U8VgLjLVSJZ2ave7nxLmCeq9GSDH2YXEMKCuSRVXucy9jCsbV": { + "balance": "1946.751505312", + "bytecode": [], + "datastore": [] + }, + "AU1U8YUg64DMNoqKBoaMAAbrdGaXonsadYAXwgSMuKcyRqnfQUHT": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1U92Se3jDtCFvmyXgwPigTK7Z4RoGLHhSedqbd76XgEbfeyH3k": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1U9FuiWhLfTDZV9Qiek4K91KgQEEKojujeiazfaMcC7BMdto7W": { + "balance": "1206.078125126", + "bytecode": [], + "datastore": [] + }, + "AU1U9zqndCoARahZxj6YTCj6nnc7ZEpEZiXyWVa2Gar5LavjMZvT": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1UA2B2u1aAYW5NFa9CAGXrMFLxNErDpJDhBMVFAETPCMfmEofB": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1UAHrcjU3UXMmTsM9JKEH32jngxFA4rxU8owUjURiKZxdQPafX": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1UAL7fw29EgyysW81hhiWMFjpbVdxeLvqqd4m5DzZ7ydNvTx58": { + "balance": "995.111105282", + "bytecode": [], + "datastore": [] + }, + "AU1UB9R5qksBCs32SANsG7t5r5jvMkmUuRULfGvbMFPeN2bTh2zD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UBMQNYTSjUTyrwmDW2YU8E3UEcQrtqu78kRZa7gPWSFdZPwhD": { + "balance": "561.417393948", + "bytecode": [], + "datastore": [] + }, + "AU1UBbqCGPWwrwcp1T9CDRXawA2PNGLZHZVKLiME4eC4EpbtpqrE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1UCDh94z57T8REqqD6DJADV18bVFSgc85oqGVNJdt7BqsqYfvG": { + "balance": "601.097457702", + "bytecode": [], + "datastore": [] + }, + "AU1UCQB7ZL7kZWUXbDhFJ34pmythirPD51M8wu49X1gjzfR1wqqA": { + "balance": "2095.031966880", + "bytecode": [], + "datastore": [] + }, + "AU1UCX9r68FV6gkv5sGpNhgpz2GytGp3rw3Ah17Fr1AvqJQKTibe": { + "balance": "2944.898992350", + "bytecode": [], + "datastore": [] + }, + "AU1UCd5rFbZ1uMsJPkekzCmsjaRG45jonhD5MEb9rghFunxu9vKM": { + "balance": "1105.419625141", + "bytecode": [], + "datastore": [] + }, + "AU1UChVgrdkXVpwEh3592GL123Uo7qzB9QPo7AzaWy8Gkk6Th9Ux": { + "balance": "6386.116002921", + "bytecode": [], + "datastore": [] + }, + "AU1UD16TA2a65dXuKYkENUfNkZ9uJz3DZ6UB5KDJPYJVhrZ3fBi5": { + "balance": "968.498019557", + "bytecode": [], + "datastore": [] + }, + "AU1UD8zhmmXgJiUd6F69D39jEHNmg8Dqd8RS6HEBdEqq3SE8MgeV": { + "balance": "77.971653126", + "bytecode": [], + "datastore": [] + }, + "AU1UDGDj2K3PxHbwGHnwvE3kkx2htH4LHNsUnG26KJo3KfERn4qv": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1UDQKLkjS9GFcu6mP3mcJu9PYQwVJj9QT6dZmhUptHMuGsu9Zx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1UDbSCaQPx2jPSNgAiZuP9pEjeHXcPFsLgHw61J8GDm9sF36oK": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UE9THYPJdz6kFaNDgGNu2Jz15Gkt6S8cNkUgXQthTrai6V9jQ": { + "balance": "98.581562577", + "bytecode": [], + "datastore": [] + }, + "AU1UENvFpL34i4rcSpxtZtr2kMme35uyLeqzeXCcTiiRsFpW3AoF": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1UEUbgye9LhGr17anxFcYBLa8jw6zvtoGYeVZ8jXT1WmAsWTv9": { + "balance": "4713.839939130", + "bytecode": [], + "datastore": [] + }, + "AU1UEhHRgPPwcqPoySDX8Rgonq1oaRAavKeBjJ76mhSnNpkoxvBD": { + "balance": "821.998742804", + "bytecode": [], + "datastore": [] + }, + "AU1UEjdn3pn2RiBRKkRmTyLEyBNACr8yv1aetawyg2dqZ6CZq4df": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1UF3KDhWW7Qbeigep8mt5GFUUyRgE1Tp5hwWZUmowhqjJhVEMQ": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1UF7VsvkhR7YSewgV2qn7SWxPL6qNbcFLMCB7nHSWz8Y65XNjo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UF8o7U89shu1exLsC6t1uNgAPhA6mUgYRNZRZ4FQHY9otcf9L": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UFEdZZZ2nQoAcqzA5nTn5QpsYUfhmhYQjf7CRPJhTKT8inhLD": { + "balance": "1616.619268898", + "bytecode": [], + "datastore": [] + }, + "AU1UFFWbMpyR6MF4Gy5dA5QqbwxhtqwMi5VtoKUWVc8CXJm1bp2T": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UFRCPgWHdTUCphbGBRRwj9ED2XVGMAPL5qacUqctyqxVRaCP7": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1UFsDywnT54LmLXGRSGoxG1HV1WFKmaDiSvkohvm9RkbNVFnn9": { + "balance": "2864.319577552", + "bytecode": [], + "datastore": [] + }, + "AU1UGsje6WGftBSG7UJ2NvtCeJTvWftfDE5ipJVnxd6P6zMvAwVW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UHBHhpuSr2537pL4TerS9PBVZn6NJgnrgep8USeDzohfEmF3U": { + "balance": "2433.835000546", + "bytecode": [], + "datastore": [] + }, + "AU1UHmQe95CubX6SAvyDQ2ZGSpiu7dFJRU61iict6PdyRAGu4f65": { + "balance": "4725.209861812", + "bytecode": [], + "datastore": [] + }, + "AU1UHtwwENyp4Hc12muGQ7S3Sbu4ht3VsaagpTPe3HpJAY1T4hDB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1UHxbTCaqifokTU5NFar4ASfVUvPBM4KEYPMEDGCLbb7LPCgRL": { + "balance": "1207.150143006", + "bytecode": [], + "datastore": [] + }, + "AU1UJkp7gV4cEX45BJ6KtgtxGwdphxjv3HMrfjSJ4EB8qVfvs1UJ": { + "balance": "1870.902949691", + "bytecode": [], + "datastore": [] + }, + "AU1UJu4urMZkzS7BRWLV6sK3XQEqxGZsJ2Z1MBmep3Cir2cX9MfD": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU1UJzHkhge1qwv46Ni6c2D6kKq8T5QDsQq2NDPpnThvvpmoYjdZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UKBTpqB9pXVT4mSZQPQU6L7yrHRmszUNbuUS59cCgwcqAgM4k": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1UKM4dz1urnKMxQJK1ij2q9LpRAUPLoY5UpdvHjbYSgbq2iftw": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UKRv8bATP31U3zUNvj9tvwfMbUBp7gWGdQqEM1hwM19kw8D3H": { + "balance": "1974.335285074", + "bytecode": [], + "datastore": [] + }, + "AU1UKbdK5n17krQZs1Et2FqWpWTf3qPehtQ95QYYW8hTKA3FgKjL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UKxwWddbiVQ85xRUj9eUxyZKDECMYENLXKv2bH1N4N8dRCK62": { + "balance": "1685.006997585", + "bytecode": [], + "datastore": [] + }, + "AU1ULEbhkJHgQwbB6DVZBf1Cx8ffzcuLHDcQajb2NHrcpEFSfqZK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1ULadd8Ng2bKoViF7xjJTEzx1Qe4NkUkZqeNKwLQF7rYVnDYnX": { + "balance": "84.240080296", + "bytecode": [], + "datastore": [] + }, + "AU1ULmN2k7o4Xx3tUdYucVD7n7vkgqePiXVqzU47DAE6SqstySLu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ULmkmKvJgJEcgB6bY7oYyCiLegsM6RVfixAKywsrQezabHpnZ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1ULy1A8S9NktiHsx62gFqnXqxECJxc1Fd8mwcQBPZ3w73PG2zK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1UMKX7ZXPzgFegmoyFRAA7T92bqUx3nDqYygyTEQFv9omFchvD": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UMRPFcQ9VccYCfLrx2K5j8oyT1aRLM9AYGij6JhnsXQA8dNxh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1UMsoczwLyTVXjqKLWLnTZtWmcUsrbG5TU92kdTtvq36ED4Am5": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1UMwdXX7VjWwBUGEgkEqCs9RLCrLxWXBAiCN8ZFVZ4gF8gtHq8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UMxN44Zryf7XPQZhuCWE6EzPVTsVYjMC5cUupexCmiy3emccu": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1UN7CtVQVMdyMiNfyBbQTtrwfZNzKtCCCLjwY8L5UReuPYN5JW": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1UNYhcGE5gZBoPNG4TxbpDQPedP378RtpGtWPW4pyeQZ5U8qjx": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1UNctjJ6p2c8rFSCpMx7NvhqPgiswGxpcaYRAr1Kf4rmMepHub": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UNiurzSMkVdxkmGTmQv3msM3RqJNE272iugBDcBfMBBLyajnL": { + "balance": "1389.293807096", + "bytecode": [], + "datastore": [] + }, + "AU1UNkCMTqqwQkkEeBqm4hfxHg9EKCrXcqc6ho7X4g56dd9yPAHa": { + "balance": "1752.248920360", + "bytecode": [], + "datastore": [] + }, + "AU1UNstbRFvjy2jmhHYnTtkTHgQiEB9apt59MhA6dcQsx8EHfjq2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1UPDUvoiAHmBMsPiUrgzQitnYksuJxhrcd6GLXiSP9YZoJfvoj": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1UPksFLo2Dcje8RA58K2brFbQ5Z7wZBGHxU2sBAzfvxzXRFhPu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UQH55V2f7AfgBtAvuoPtNQFxLx7ufmvNXGkPYguP8m9hCmUXt": { + "balance": "2055.487716925", + "bytecode": [], + "datastore": [] + }, + "AU1UQJRcL5i65JAW3ui1SqyZ6EDwk544NMr9Q57wa2ePzePJH45": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1UQZ9ZyqYyNvgD49uzBcpKUreo82ad1PPtYDLda51eGvhusbpc": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1UQZztbfsaj4Dva2zWVbGB36bs879ovmpKZSE32D2v7afHoMWF": { + "balance": "628.693022743", + "bytecode": [], + "datastore": [] + }, + "AU1UQh7J3P8qLWRKgiqQorEW2s4mawredSNR1vsXFrMvPQstLaos": { + "balance": "832.253751552", + "bytecode": [], + "datastore": [] + }, + "AU1URNgbqzUA4yn6hiRmpyjRnnUNjn3PRA3D63Lr2MRTWt66fFYQ": { + "balance": "1641.091842062", + "bytecode": [], + "datastore": [] + }, + "AU1URgM5p2pQG7BNHFq1MCS3HAqLhuH7xMSpSPz8Y9FhDyMaCPsa": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1URswnpVHsKDaS7UgpinYP2xqhNsGas6qMP7m9tLyEHycc5nzw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1URzauwAhqhcp7RSfU3Ak2kuWQ6GNzkWgVeFejBiv75GFr717x": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1USD7BUYe7W6ivcaqZGAjfmhpqcW2kHRmot3yBrJG5KReb1ias": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1USXzjSzpFHKuntcFnYyK5xqXm17iciBoAATqyh83EXHGriMFo": { + "balance": "2036.813192306", + "bytecode": [], + "datastore": [] + }, + "AU1USeWsHxbrPGAPKA2vHVG7RQJBfuUXMkmH1BesHPYwNAVKycGq": { + "balance": "3715.134888714", + "bytecode": [], + "datastore": [] + }, + "AU1UTGqp7ygAaDeuincrYoJaAocBwdrD7W8QH5eESuPo6PjbFi6S": { + "balance": "1020.365752803", + "bytecode": [], + "datastore": [] + }, + "AU1UTV71KBW3w3ZkzQfU3a6SW9WfAGYGqyHmLKdXUfYsVw28evkN": { + "balance": "946.555046710", + "bytecode": [], + "datastore": [] + }, + "AU1UU6zbKwjV5pdjxzoriRPQj9AbiJPWWpCyVCnuwXq1uUchobv6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UUGJmHCFyhrQjcv7KJrRWdwEeQiV9wE7HqNWGqE64Px6t9AFo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UUVNqZMm1oa5WL8XpJDfd7euq1xSrHSKvEwPueAmta5wzCeMs": { + "balance": "738.957970256", + "bytecode": [], + "datastore": [] + }, + "AU1UUXVFYUPVnTqBG6jHTa6HVJKqJKxwLvjPKnuMQJaCRJBDKAMa": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1UUcSYMfQgfR5ZX1wvfBCnHVuaHLrVMm2aoYocBaGY9zBzxx2J": { + "balance": "1784.515802658", + "bytecode": [], + "datastore": [] + }, + "AU1UV356yUocqMGsftBYjHGSmnmwuweWrS63q1egXx7dNbqcd8BJ": { + "balance": "1610.266353443", + "bytecode": [], + "datastore": [] + }, + "AU1UW134hW9F3nUYvV1ayRrX5JwuRCfW3vSextpYnsBwL3PXPLbJ": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1UW6SMppm1RYiobN1MJAvNnmAW8tKNaXWg9vEHvCDhASMYFAnz": { + "balance": "2607.110372051", + "bytecode": [], + "datastore": [] + }, + "AU1UWoXYnjxN3jgqg49PMaKS6t6ZYGN7EsZK3TPnpf5f9xWrewRR": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1UWzJK6q1vDbFAP6s5MHJJPy4oCoepDtorjj4wBuqDy8BrVvuB": { + "balance": "3203.043534025", + "bytecode": [], + "datastore": [] + }, + "AU1UXJJd7zi65NM6yAh7rZJxqM2PCb1ESc4PRd7ZqFybA72z24G2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UXPS1CXzxchUJtnwbPy9958cyCZ3Dk7L56y3McapUpocjkBfr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UXX2YxnswANjvxfbM8Fpyo46PnhmFz1Lwux6exR2gybMsy7e5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1UXmLAprw1KA8agxD5h8DCg2KuDaTQwZTzrXg8Jo8j5rSfTvVH": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1UXuVPSGAHE7jsQvmVSGTgtieX1EuQLq7rU4DeUTWLCQZVUmN2": { + "balance": "3559.721063952", + "bytecode": [], + "datastore": [] + }, + "AU1UXyqaMGbkW3vrvXFRoPB9xkZvZzYaKmR7NGXZFCr1XepDZ8xD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UY39uTjLyzjBMxcsBinkZxCTBU74fK9XR1XMt2NHw2J3SrtHS": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1UYxJzANG7MicuahJs2WA5F2qchgALbanxqn3maNL7tNy2bqCc": { + "balance": "4485.602591295", + "bytecode": [], + "datastore": [] + }, + "AU1UZCzZQSxx7fadByWHgRUqTnYznoBrmXWmY6TzPtgeGu2xshFa": { + "balance": "1333.368354894", + "bytecode": [], + "datastore": [] + }, + "AU1UZKkN4GTsP7bbhAsfJs1GcWpabQL85wj2cFwgrBc7szvtjqDK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1UZMerf3W6M3TUqL9ZkqGXbWQ3nzxb62cqaTCLqjJSebGCXhRB": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1UZMxesGnNEJhztPDfaiWMsMqBx2sDoJjZ4MiSffeMmgY9VuQQ": { + "balance": "1402.728420960", + "bytecode": [], + "datastore": [] + }, + "AU1Ua7z9uTWN5SdaY2jdgxerEz7nAb3Ax34HNZXssjVvgJZAcqUA": { + "balance": "1239.513979960", + "bytecode": [], + "datastore": [] + }, + "AU1UaTXABcuxjPhCNfMb51k3SA9cjYNGKD7vwYH3qkNYJmV1iULZ": { + "balance": "1635.773815777", + "bytecode": [], + "datastore": [] + }, + "AU1UaduUqGtULLaM18mVmCjEVDMx17rW9S4VFNeD59kaRC7TThwK": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1UaiHTwWFJfubyEovZw34YEc6kQTj6pAchmbHe1huUiMd2G97L": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UbjqKUZKjeGhfABWrEvvMjd2DDZqQHNTsE5aa94uontiSx5S6": { + "balance": "5820.937326226", + "bytecode": [], + "datastore": [] + }, + "AU1Uc3XYiUnw9TFs746ou2NnWBvs2u2FLxmTKm8CxBHSvSXxG8tb": { + "balance": "3371.708079167", + "bytecode": [], + "datastore": [] + }, + "AU1UcUY1xbZVt13RFYXV6QJt5k6PwsQyk9xPaZNSEFEpCCFuRDAS": { + "balance": "77.613359941", + "bytecode": [], + "datastore": [] + }, + "AU1Ucajrg2e5K64uLri9FGQYVNUWj8FK9VMxZybgePhq5Vug9XsW": { + "balance": "3408.766625354", + "bytecode": [], + "datastore": [] + }, + "AU1UcudrwEL2Z89dTUJKPee41xckbsMw8pZqw4MPgzpyjMNysxiK": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Ud4HMFaMUUpdfoxuRoyrRYGEoVkY1zzZXSVMK8AcoCmaWgtLs": { + "balance": "1872.590564794", + "bytecode": [], + "datastore": [] + }, + "AU1Ud65Hrm8UKhfqMn4F3ybS5KYaQhoZ7RryBFFaQoyWLyHXBs4S": { + "balance": "2191.379407119", + "bytecode": [], + "datastore": [] + }, + "AU1Ud9shJucuVRGkKDUbZ8jTjGeXsEANahRhaW8T3bB6YqjyQgwM": { + "balance": "1691.513276155", + "bytecode": [], + "datastore": [] + }, + "AU1Udt3NpuJxAzs5L1qcSot4V9E5ZocuN3iodjvrdTgBBHBuiSEm": { + "balance": "2443.967126043", + "bytecode": [], + "datastore": [] + }, + "AU1UdwrQ2f4JWyLG73Df686wsMWnjpcvhGN46UqJ4mWqDisA45Ji": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1UdxqT8qH65Jdrh4BFpbQDTFLHYx7vyaVME5pmKUKfWt7gs8Wp": { + "balance": "1258.586834317", + "bytecode": [], + "datastore": [] + }, + "AU1Ue7xDUujiBdUy5VntWaGGEWJCktXM7UBaXUys8UwXq3jj2M8": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1UeXUnvzVKmtrdfqJm6GhdUwrZUL1GxxniR7QdVg1iJu8sb67r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Uegp9Y9oDWDU5Y1huauxeX6sGGrwAdDsaUs7rZz4LoB31e4Mm": { + "balance": "259.567325796", + "bytecode": [], + "datastore": [] + }, + "AU1Uekt1i8nzpfPdYGyX87rzDRSUbrHZhX2ARpFip7gycQanPA7g": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1Uf7PR2T2jFrJk6KMJtSqFc99gCtRTkJEGHCHkvgDU1Y7QBpSp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Uf86FwFkKyX71ASpBLyjF4bNXVyGMXywDfyLNVwW7CaAauQ5N": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1UfA4hjv7XW3vae9wpqLnyp21CqtWRTTuRjaqMkPJfS59yMsMR": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1UfLyAQXHksbJVmHmR723CBJz6pnBKiWEt77KBwJSPgPsqWvFB": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1UfoW5Vng6sPjvkUUfESZCedueFLv7WF1tRywpadfUbB64WCs5": { + "balance": "2180.707980747", + "bytecode": [], + "datastore": [] + }, + "AU1Ug151SCpW2QsBvP1j1XuzrwRrJTqN1UkXoFCKX2LV5gR2F1SP": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1UgD2R97ptMFK3WpbaHxPFEndXWBVMDDvqarYgvYYtaymULhfA": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1UgG17oqpFysritr47JAhrjcmyKw7bG7z1tVdf2HpEn1rdYTgv": { + "balance": "1343.884885736", + "bytecode": [], + "datastore": [] + }, + "AU1UgPg8qR7e7fBcVyPrq7AsLcQfPttYdt4GHXxE2VKYaYnsRrS4": { + "balance": "2474.152149042", + "bytecode": [], + "datastore": [] + }, + "AU1UgkrsKQceJ4i38Qs8ZahmEbrm3GE8pTqUY1YkZYqqGfnTF85j": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Uh6uLK21UeQHZpns5H6EDAsgRVETqvmS1zDReq5dywA1bCMay": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Uh8Rrbix1onRQT7shqvuYs5bfPApzYeUXKMgq6JcYRMd8qvMs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Uh9KzQvkqX9p1s7vyyTw7RsjjHmc9ZnAiZK56jH683vTS6g7T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UhYKoouaFsmxi5Sjj57WKhqnPvFjEVPc9cnNkFn6Yo6N7gyFW": { + "balance": "1021.715985941", + "bytecode": [], + "datastore": [] + }, + "AU1Ui4daipx921JYcNQXYQxPA2RwCr5GVTKV7NmYLsu5dRzoart6": { + "balance": "1782.087288039", + "bytecode": [], + "datastore": [] + }, + "AU1Ui4hdvC6s3ER5HKuMyTSfKVnkP5U7vkvDBKs5PNn2mRTWeWdZ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UiLZ2MEZxuYK1399A7KCkaUyBtzpRz5qdEWFqUeUFK249vuiT": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1UinU4xy8uxxzb88M8914x2V3eYDB3LvB5ytmSRBFaMG923S9a": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Uirhy3mhoc37DkffMBRuQwqFFcxJeLASohyp8wJ6kiWAe4ipa": { + "balance": "857.272587720", + "bytecode": [], + "datastore": [] + }, + "AU1UitHgu9SQD59AMHMqZgfgWeMvL5VXN4DzVicHrmVe87VkrPBw": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1UizWmimQUkVeozN9R5sYej7qHA3hHhGKceB6ZvtR2qAeuudTT": { + "balance": "7069.517367321", + "bytecode": [], + "datastore": [] + }, + "AU1UjQ6wxnAK8KFSbN9KDavYAnatqiu8tUgCs8kQZHWUWGP5WV2f": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1UjRuNt56AqNE13ycxqTNq54iqsECFtDWDpaXty5VLTpfeBEDC": { + "balance": "1424.821690873", + "bytecode": [], + "datastore": [] + }, + "AU1UjdZvY3sGqzRgkGCUJ8iV3ecbqmohKkzHjeyQQtTA3Nb9LLuJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UjnU8DxNes2hcS14mTGVVmN4rjtjefM8BPQ4wsiSv4QPtnCvp": { + "balance": "1868.407278515", + "bytecode": [], + "datastore": [] + }, + "AU1UjrJHuW6nh4sLatKbGK2vYpo9vjxozAhqLLqrk4G5EmWyDpDy": { + "balance": "22.752755034", + "bytecode": [], + "datastore": [] + }, + "AU1UkM7CH4a1SnBYw6U8xt4zSrB8XB4tyrCGThmqBDqncFXsRSrZ": { + "balance": "6002.804377332", + "bytecode": [], + "datastore": [] + }, + "AU1UkVZ3TaEw1K85Ah6RwLkCMaWmBgh77W1TusTjzBmb6mWd1md6": { + "balance": "2890.722168289", + "bytecode": [], + "datastore": [] + }, + "AU1Um8GLkHjfoEAcdnzfR4Qp37PJe4ijBJCMiiyrpNB9PvEMppbP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UmA3VcVv4118MTgDBUBX5c5fJPe8hGLAUxkiusQL66tp8uYFT": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UmBa1PhWNNJrV9PgNcmswY6P8VsDFTQ4qaPMhi2jrGQfsKZYy": { + "balance": "945.478094314", + "bytecode": [], + "datastore": [] + }, + "AU1UmSUVM1owFacR4uiVUPQSQk8NbUTLCJ33wXXc8QfXG1mSZ5eQ": { + "balance": "1720.624035916", + "bytecode": [], + "datastore": [] + }, + "AU1UmeKk35MnQDkp7NWX7sWzf4H5kmwu5MenXqrge2yXcXQ4JYYK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UmgBTsCysy8taWe7VdDqN4BHhmFc3ohMfvzSWrjdVQvSWigrP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UmpMqtNwXN9hVGYY3Bw6h1TEGSwPT1TwsyMi3xsd1oDMAHjLA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Umu2guuqFgZpUmwKRtRo3j7Jo32vXarjmQ2vEAUEucLuGsVo3": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1UnZD5nWGExp59ABny48FsAmYqfKdPPvU48LojougktWvRhDEo": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1UnvmZSBegDpa6GScoGhMZV9mRjx1CnZZnbMjajJ58qnzbqKNY": { + "balance": "1546.919280515", + "bytecode": [], + "datastore": [] + }, + "AU1UoBtPKTsWJaM7NZnPrpakbAwYwc67K1vTznGnaXadq4cjkEeU": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1UoG7fuwvrd1E6eYRTpv7T6EhuSWhJYVFGkvnZDgxn2zbsKtgn": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1UoY2XEfhi5bm7qmvD4cd7ZwGmWPgjH7UchAidRmHqJpcCuiYY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Uot1C64QvLA4teH6bnZ2b1azrWT4ffyW1t2oyAxo8pg9VY6ag": { + "balance": "1729.652013043", + "bytecode": [], + "datastore": [] + }, + "AU1Up4yAmmhBSFc2zUMU1rGfQMP5LFyZdbsQGGqi58Hqth16sJQP": { + "balance": "649.902333017", + "bytecode": [], + "datastore": [] + }, + "AU1Up6wCntaD9cE6zVYsLKFHbeAGr1qE52GcHCVQXEWFErKFLFYB": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1UphqXWeUcZgumzhpVQ8arFUWYpzE224T6XYxU3pNBsvz2C49h": { + "balance": "5747.286480789", + "bytecode": [], + "datastore": [] + }, + "AU1Upm89K6NuGQVqYpjBmVjmzR9H2qrLCPotzkPDJiTYeXCu19Af": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UqGUTRGhooRYNhoqNzfaWKMaZmJFR51UytvSK3zqz7aWeJJTc": { + "balance": "1161.174486496", + "bytecode": [], + "datastore": [] + }, + "AU1UqR8w94LKwHVkj8dT6498oVTt6khz1Et2FMvpEE9obDbyCXtu": { + "balance": "549.587085331", + "bytecode": [], + "datastore": [] + }, + "AU1UqS1Z8Cgw4F4UW7eUaaEpWL7Mn2pKdFbB3auGAmomF5sWQLv5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1UqihfbpVVkcM5gao5jUSuTmHYo7oh42GBYCVxJ5AaXfhAaczA": { + "balance": "2488.031137571", + "bytecode": [], + "datastore": [] + }, + "AU1UrpD4PcXrNGd1G3KrN6mvB9hDgKixRFeuprKxx6uEL1My4Y5q": { + "balance": "935.096800668", + "bytecode": [], + "datastore": [] + }, + "AU1UrtWecPsKJqybpCdGgxrc5ehbtk7bnfCZxHif3JNRLGbDEFmP": { + "balance": "6805.873924226", + "bytecode": [], + "datastore": [] + }, + "AU1Us1rCsLTfPed33Th5g6c16XMH8aZMTWTsVk41fh3mUcap2tnj": { + "balance": "1184.196347437", + "bytecode": [], + "datastore": [] + }, + "AU1Us3J5uVLWkCCsN8v7SK1dFCER29ZYfDAQFMVe6RupKAfu5BR3": { + "balance": "935.188782614", + "bytecode": [], + "datastore": [] + }, + "AU1UsEbCVsrYQCGdkHqq1XXTLxvfAbhMPMy3SVxuXSCerYtuk48m": { + "balance": "1725.220150591", + "bytecode": [], + "datastore": [] + }, + "AU1UsNyge9RWKy9WwG6t89RiZURbbw1TWUtnMMsDWtdzN9WGrefH": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1UsUKpLGy5skk6BkxLQjgpsA6krj9TLUZKBUcQJmJm3epTzfzr": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1UtVu4rtpavbY1SMaKSW8UWozzZr6z2puTsBvhhb8HGNYKYXKo": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1UtXmJwfgtpFhUris6TTu1szC2bfQKdxYvrP45s6ud4zY53fEZ": { + "balance": "1410.420088782", + "bytecode": [], + "datastore": [] + }, + "AU1UtbkMuMi1W643rTHAwbXHUn6hDQVc7Z7AsBoBLezAkWDjXKSb": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1UtiW4gk74i23U69PNK8iMebEVmKbqrvyqJhzcxrtW5jaD7nyj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UtxaXe3EezyJPY3o9whYAekzxUA4sSkb1Rcd26ZGiCUHYvQNV": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Uu2EoetKEy9pin9xSo2uY6EguBLJqVmd5jV9a8oQ5it2EiAzy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Uu6o2p83NVZa3C5N2E7oSKYff5NV626cpp9vi1cTEzYKQ1rCc": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1UuCt1nRaZwZBCGLb1yLoC54bhn8EHECauVK2qtdHkrNtUS6Ts": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UuH8EooeZj9qU6MfbL3zFr6YS6paAQv68aFMmpHyn6h299oLy": { + "balance": "828.484756821", + "bytecode": [], + "datastore": [] + }, + "AU1UudLJToDhTLiFXB2BsYDSuRTo3haXE2wrp1DqzAfFw2q5ZnwF": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1UudatCudCEX8FYi7uVj95w9cKtqXdyVAwxnwYgGiSFHqAYRmX": { + "balance": "2720.740821622", + "bytecode": [], + "datastore": [] + }, + "AU1Uurx14BjiXAnnqp38NnYqtitDT7WHVyV1Co5uJiahrzDRgYoM": { + "balance": "1835.194685292", + "bytecode": [], + "datastore": [] + }, + "AU1Uuxd2rqGSUymqcKkTYgMdEKj9oQfniQA1QQNgPJVLpkiPRosM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UuzVZqnJi4BT6vR2c13HjvJBXMnDWnqSH69D1Lxdk2d1N75H4": { + "balance": "1482.420338476", + "bytecode": [], + "datastore": [] + }, + "AU1UvHXJLJw4ZHoLQg38B7T2rhTvMZB6L3o4HUftQCse1q7X6D47": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1UvXEVfeNQ9SB2kvu3d5TSZXt73JJYtAMq25tXhH5c14HAymN6": { + "balance": "5954.547983786", + "bytecode": [], + "datastore": [] + }, + "AU1Uvpjrpm5EvzrPAiFuwr2N19Twg48LYcpbbZPEU6rsUW6WnAPF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Uw1KeXQRb55jf524mji5Vmm52uyZ1GN9kKbE1JgjTyKQCVkYV": { + "balance": "3510.656074447", + "bytecode": [], + "datastore": [] + }, + "AU1UwCWUDuwjkaRe5S9eWhhfJySVqoJEoSvZmEgcYumXyVGTwHC3": { + "balance": "1051.443279878", + "bytecode": [], + "datastore": [] + }, + "AU1UwXG3YXhgqBK5qshbDhpM7QeVngZsXxAdkQBffGRFdquPBvGQ": { + "balance": "1447.704395289", + "bytecode": [], + "datastore": [] + }, + "AU1UwjnN2GaHgeZYCdMDjtKpDooWJzG8DA8QuY5fMKzPP6FtXP86": { + "balance": "2079.322250289", + "bytecode": [], + "datastore": [] + }, + "AU1UwkEwYUGSkLL3M95zbitaixKjw5eqz6pneiiJ4gpEXKqnZtHM": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1UxV44gV4BAevoJzhG9ocGaBko6eN9Lg9K9spnyXdYGcXDfgny": { + "balance": "1954.823642497", + "bytecode": [], + "datastore": [] + }, + "AU1Uy9Sa4uavxNuktqwiFxU1fxTQLVS4wc5HbD8TUxjdyaba1cZP": { + "balance": "44.849985241", + "bytecode": [], + "datastore": [] + }, + "AU1UyQwaf3jRBnMovrUvmaLWzpirajZXKZFnHp1zJve5ap9HbGP8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1UyaAYUQgR1ZgAuo5PqkPJLiskS4yqgy7uYhJRXNBMZHqKdUGM": { + "balance": "1008.522835717", + "bytecode": [], + "datastore": [] + }, + "AU1UzCHZ9TtfDwtU3756JvHKLroDuBGwHbxbykSHXyMwmYPLKJ5h": { + "balance": "948.116264235", + "bytecode": [], + "datastore": [] + }, + "AU1UzDefAquX2YU1p9R8WMBrRdEb66uzk5UVqLKd7BBqJXg1f3gN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1UzZNBLN3kQ7MVU1mtodqK2fKN8PJocegyDFB3ykaLyUPHHzZV": { + "balance": "2681.748162286", + "bytecode": [], + "datastore": [] + }, + "AU1V1UifdMxen7bbXRxkn5wo1pKaKYZP8tyRpsCo7iKB5LCnQvRj": { + "balance": "716.750405140", + "bytecode": [], + "datastore": [] + }, + "AU1V1zCzAMA8yz6wgbRpeX8nmo1RtxT7BFCFvusfyWBGuq3uEfyz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1V2BryknXggNXLPTaGYL6tA4D4KW7ukNAVkJmAS7mjhh5cosYy": { + "balance": "1977.344225136", + "bytecode": [], + "datastore": [] + }, + "AU1V2U2z7NQLGV3BEU4qZJrhfEaHbwZUQJZ4FxFW15HJCwWKmWLX": { + "balance": "2870.475961777", + "bytecode": [], + "datastore": [] + }, + "AU1V2ZnwmskfMPxeZ37dxP9hqgL9PoUhC3StVEhZtMPGrDe3RgnE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1V34CtwgEy4eJ3fmqk3PLgZ1tioPZdfCGWUC72HdjPAQFsoxnU": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1V3713VRZnBzDvSL2243NJwjcyi1cMpNnfWSNu28dGe2SLu9z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1V3dTVN5XGfbUpUC7ytbSKAWwqHKUV5XDkkcfF36BtAiDcYEtK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1V3eXpoQLKJuvyDxg8YMPBCVmoLdVysf8xLbwnedmfsRWnTMxa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1V3i8AChUbhQN4SWQ22MxchNHknA5mczPdzGCFqWq2cQQ5wXt7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1V3rMGHAvwbYv29u6cetEmeF8WGjVMjYJqdnqdUuGgRRjywRKf": { + "balance": "2889.243170610", + "bytecode": [], + "datastore": [] + }, + "AU1V4JLK71LKpDACLvAVc6heMhAbnGYpywkJCx9DqM5WA5SQDspp": { + "balance": "4589.776139217", + "bytecode": [], + "datastore": [] + }, + "AU1V4rrfVhZ1ENd9CDfY7Bd4SF5pyamJtCoukfYnSsqwwYhrWFAX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1V51UcFPJY2ysg4NMYUK9vMuxQmFjQY7uWqLRUwdKp6Erc4bnP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1V5M5QK5fdg1bDQYmVgDfxa5ShRUsqmJ4eac2vq62iAemTvoHw": { + "balance": "1344.613819992", + "bytecode": [], + "datastore": [] + }, + "AU1V5Yq5Pnnbys2qdgfV7ksCFXDpX4v4BAEjTbrkJgNUryRgPvET": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1V5eNWN6Qv73FRegFZBJJaDzDTYc8pTSVdUzPoDtnrLvGPPjQ4": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1V5sP1HAedzCQtoc6YMhEP5xkke9jipGScqS3Pf5r73zkLbuUD": { + "balance": "1985.606415738", + "bytecode": [], + "datastore": [] + }, + "AU1V5vbULkjA5kwrvLVdHjGg6k3RzjunefMtc7XGcdMMJmsznMTv": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1V67D4tcTN61RW7e2CnVTiKwuctd9EjLCnE1fRHt2f9tcRZSvq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1V6diFBKgDKQWV9tFv1nWkUVsWmACj7EbB3cnLP8rwPXENyq3d": { + "balance": "3366.653772284", + "bytecode": [], + "datastore": [] + }, + "AU1V6feF8cVoYydUnPLSWUTFAAZZqjS4UwCr2dynNERXjaGcHiMk": { + "balance": "600.579026633", + "bytecode": [], + "datastore": [] + }, + "AU1V6jxvUzn5f3Q2G9jeEQbU7Gcncy29bqhw9ch9NgFAgvLgZosj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1V6x9c9yrfcZ9GJo2DiRR5ZWFdEbKyWumgBudZoNkEU4Ekwqqu": { + "balance": "83.214824268", + "bytecode": [], + "datastore": [] + }, + "AU1V7GcQqjQBqgmGWvhBhnPWWNTyL4yGsdk2oDeFTzngKJj1RS7n": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1V7L8qkMwWxDH1QKwEBDbGFG96uYXUos4MniSwS7VMXeXrvrtJ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1V7txcAmmwcDVzy5Lq7LViFJDDXTtUHXCCJJJkVy2DNNdaEhvv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1V8Gg5sgFfT4aJwD77bz8t8NfFM3m7kcz3rWHwTwvPMCvJhgok": { + "balance": "2939.748797695", + "bytecode": [], + "datastore": [] + }, + "AU1V8MxXN1jgz9G3Rg1FeMgJPgUS9B1FKs2wbHN3KyxhdWAY7bFJ": { + "balance": "678.380973022", + "bytecode": [], + "datastore": [] + }, + "AU1V8N69wy91v7Z7VuD77aheSw468YEkBZrEz3YBHet1DYzUHeqe": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1V8NxhtwsRhtYxG9Nx4KJqLxcpR5VdaVNZVJWwGWcQwjvzjY2X": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1V8WqH4Pyng2Rs9pzcPZnZsGp8jZJpY7coAMFd9FgmWcczH651": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1V8YeHDaPh3cTxfx7qrBbRvRa3qvxow1CUUQ7a3gA1BchRZkjm": { + "balance": "70.957095710", + "bytecode": [], + "datastore": [] + }, + "AU1V9LMYpWZnSixLAj9Vt8WAbQt6VBwFdUBtnyK7QPrGeiBPghHT": { + "balance": "6635.068725866", + "bytecode": [], + "datastore": [] + }, + "AU1V9UnPeCkJkeUTLTcd4LfiqcVk6UkfdjJ4wRNtDwkoniarqSwJ": { + "balance": "5150.067135692", + "bytecode": [], + "datastore": [] + }, + "AU1V9guUetpx6XFzKoRwAoExLiAf1sZGNGyH9tC21YiTAMcFEr16": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1V9hVVPXrEfGnwyTVRGfbVDoCGigXVvwgN4HobxpTnC1CxgAX2": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1V9mQ9aa1bVRGCUgc4SxkeoBv5wnQHEVcombZruv6ubzP8pxuc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1V9n72PPAYKBCZPLk8cwHgQNAFLtw2U14dA1jfEDUXgB55nX9n": { + "balance": "2368.072041176", + "bytecode": [], + "datastore": [] + }, + "AU1V9qy6u9kQJkRaerkiADYgJ6qPJieKnuW3PUpBsNQei7ZLv567": { + "balance": "2620.885996355", + "bytecode": [], + "datastore": [] + }, + "AU1VA7AbpHjgX24jLt9qQoL9b9T2qY5fJertaSyfQb1re4tHMQcb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1VANupsC9Xmi251yypb3YMnEtKTQRmyFvMJDPA6VMyBRSQZDWm": { + "balance": "1202.267625116", + "bytecode": [], + "datastore": [] + }, + "AU1VAe6471QiBJr6XgxeU5U98G3eBBbK6bn2sHB861NQcQKm7e6k": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VAwKBULL6YWeKm1ZDMdYLGSEo3RbaZCkArE6BGfaBNkA2nLGV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1VAyRsebPXm3Hi38fpk5EoyncrGDfqh8Uy3Uw12tcdzwdaoSGH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1VBS25ZCLMwAYwDbbmtgFCMgVYuWVpreWU7evb5UTPMG5BvnpW": { + "balance": "3854.214232554", + "bytecode": [], + "datastore": [] + }, + "AU1VBqgATb1ojXFaVs2UfexpjweW3W6YMCyB7wDVCPamddCpT2Zn": { + "balance": "3735.581649110", + "bytecode": [], + "datastore": [] + }, + "AU1VCXnqnFuW7Z9k46UgpKE8T4EA36jw3DmWgiE8PWfHBYJUECYc": { + "balance": "3500.046178085", + "bytecode": [], + "datastore": [] + }, + "AU1VD1bTDamyaGibF5WiYbfgY5oTdxYnoN6PCpBVJiNw2yrSomBs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VD4Jpx7GbLtKsR2R5ouK3ZprL9Gyt14Exo9gBbqPT3Bsu4yh1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VDCyhYcL2cZFxmVNDFYZomjAuKnHoy1nMFE67JJAeFDLgTo9D": { + "balance": "2464.591286600", + "bytecode": [], + "datastore": [] + }, + "AU1VDPEYAey1J4ZyBCjVdWqbk4MX77DbPoLTBJR7iD92uvAA4JJa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VDVLx4G4yph6ugS6qxzLisjZKorNQapzDihn94KwfCwfjvwvx": { + "balance": "3096.401677930", + "bytecode": [], + "datastore": [] + }, + "AU1VDjL8XT4NR3bPFqHQiMyuaRModERZYi2H7bwfS7CAjazMovsS": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1VDt4Uq6VneZPqigrc4gXardMpRBUswECPq2SkomfS1pF1prCm": { + "balance": "1989.784146979", + "bytecode": [], + "datastore": [] + }, + "AU1VE4qBgRj7yrpjtHgrZDPX1jFfM5bAYsdwkfLWosNA6znYdZrD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1VELKMKBXjtBn2sjYSUvkE5sW2zsh5wwAbnLQWKa4rsN3dpaAk": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1VEqU5DwJcjtwkTXjj1KwftQp3eJoSUXbf3WWwa5hs8chyRUsw": { + "balance": "3687.386978093", + "bytecode": [], + "datastore": [] + }, + "AU1VFxQ9mFmpivx1RvFxXA5LX4xmtykeXeftKWxWkpZm7QiuAEc7": { + "balance": "861.927385253", + "bytecode": [], + "datastore": [] + }, + "AU1VFyXh8v3YDmHC8uQfu8k7291WMsydEEzBAuDY8igwhCLuaAXb": { + "balance": "2169.782503765", + "bytecode": [], + "datastore": [] + }, + "AU1VGAZBKLk7WUwQKswWX261LPdtWyQsuwYSRuBYpUU7CJxiHzjA": { + "balance": "180000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VGDvRJCtcojDDnScVDdXHQzEUnogJgnVipjtadqqebY7ihvMA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1VGG36p8JkYtzkV7T3BrGRdJoU1wphaqyS9sMtQsiPnZZw8G2V": { + "balance": "1358.129238723", + "bytecode": [], + "datastore": [] + }, + "AU1VGgkfGPUxYUD7SUhJpvcSNxYnWMrzoHBdgujugMM1JGcH58mq": { + "balance": "2440.311218374", + "bytecode": [], + "datastore": [] + }, + "AU1VGkby66tBy5CzrHnLZko3MV3EURaK4m9k61BaVStwXVtwJfN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1VGp63UXVbqSgNm5RXmhocMqE3aH4Zdk9MdBosqRB7KBfMpy8F": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1VGvhwKr4Dpr9fRijQyWBNFpBEgPKEpJuL7fHGjeahSTHNL7WE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1VH8ccBW31prdXA8bfLHF5QuL7vWfLdzztb7fXFtVsvXJoKDZ1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VHcSSPqmbTrAfJXf4DgdwM5irJB4JuV5Qj1seG5sq53XBLfYV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1VJzm21TuVnS5uDtYziLa7SSpuTLPiPSWyAPKEJoxrsyZkf3ii": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1VKF31s6U8qojB8wxGREmYdmSG9gjZXKtrmL1bYZg4pdMJz6uR": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1VKNbMte4CvFxZwKGZbjEuB3YC6Jb8wuCiCqC5b4KnikLt1Y8z": { + "balance": "879.133377733", + "bytecode": [], + "datastore": [] + }, + "AU1VKNmaSQa51U719WL8MFN7DqyADH7MubexcfFdhpvkn3eyjM9x": { + "balance": "655.815117513", + "bytecode": [], + "datastore": [] + }, + "AU1VKhUbWzpN7LtDh4HjJBC3DkxV7Rs5QoqRgVn1MHvFNPvaRVRi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VKjAyzwa2Y59tFjMxeKXv838x7kV3JcFLY1etqEtmXnw5B7BQ": { + "balance": "4986.468816024", + "bytecode": [], + "datastore": [] + }, + "AU1VKw5XA9XETuo4Bx52oxnKq5tRbN3U6XV2TfjbKtyBtAKDyhgK": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1VLJr6xta4RpYmRtmUo2YzbkdhdYV9h54u4zqynsnacwsP5Wyu": { + "balance": "1889.648540462", + "bytecode": [], + "datastore": [] + }, + "AU1VLPyFiMVvZHjtvbX2uvvtghR7vtzcAFGcGhRzZTeiKNQ635qk": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1VLXNC5hVKTEyziGb2TNviy5YKN5TZBKGRQYmcuqxWbxFuMszu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1VMKCuLBu4U8UqGZqTJg7pYYpiBz5fagfXK5apJLnbsvtb7jFa": { + "balance": "2500.486113230", + "bytecode": [], + "datastore": [] + }, + "AU1VMLDaqPet4YucsuusdWWgbA4AgkjfhUgoKNVGn7UVisSFv5nw": { + "balance": "1067.268987369", + "bytecode": [], + "datastore": [] + }, + "AU1VMYouxGUrL79PhEGrEJHmbCmnXnrUsTWr8YoQkKq7qWboEtQP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VN2W1syxPNfzLmugVAAwyEDVXMuD7TuqhW3ecX2C1HkKSrYpg": { + "balance": "1445.449140223", + "bytecode": [], + "datastore": [] + }, + "AU1VNML3Qowtxf2iXx9nnhXqDWT5KtW3uEJA8xuQ6n7uP2EuY2Qt": { + "balance": "1855.051564415", + "bytecode": [], + "datastore": [] + }, + "AU1VNdigUNgJqToyDerrwP65H3LN8qr1kdd2RrojEm4xJG5t1Y5d": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1VPCLne32zJjBnXqZXHhWe6EqH1ZfvSVLyaPoUMMB2LedfLVVF": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1VPCSoizzjoeyEfysNoCBzT4N4vGXekxC8dWJxEB5hN2fi1frr": { + "balance": "2234.954899520", + "bytecode": [], + "datastore": [] + }, + "AU1VPPW5aDJ8vCTpKGSixfqb11LMhKU1csPnVaZ8H8v1YQDQB6kx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1VPnJ28QUrso2kgAo67hY772D2nbuXea5pMaGbFUiEHZvGrbxe": { + "balance": "3239.978448412", + "bytecode": [], + "datastore": [] + }, + "AU1VPpkqzvGToXmHUgMcPP9bTA2rkGe88a2sTLXocse8zanwahcp": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1VQMEQZaLLZBAiummFhoTXTSGJ4qiXgJgpqjH9x9uwRPWaQdGo": { + "balance": "1339.851271419", + "bytecode": [], + "datastore": [] + }, + "AU1VQaH4FRrKoUuFaDodf6LfErNjhaaxMamG1g3DxxST1TcP54ms": { + "balance": "1188.884458055", + "bytecode": [], + "datastore": [] + }, + "AU1VQmpkwCKQ2Co6LLdp5cHEdWUsKMceci8pax3eRn9BQM1WuXBk": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1VQvwB8fMcGGJvjCvg9i1DtfcjdaGz5UAA5zSYGor49DevpKkW": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1VRSMJqMrdCEUk1xMPccTYRbPVXEG6gJnKYyZFFCDBhUVS5SQM": { + "balance": "1540.743320157", + "bytecode": [], + "datastore": [] + }, + "AU1VRTW4v6teVboa7yRU2LHaKuKp4L7jgwFQWCZE7cjRBycmjA14": { + "balance": "879.841409016", + "bytecode": [], + "datastore": [] + }, + "AU1VRoQuqjxrDDbrYvzoab8pQQsbkoSDqPRGkHP16ZnHw4BiYh7w": { + "balance": "1484.594789322", + "bytecode": [], + "datastore": [] + }, + "AU1VRysUEDUyy2vJeNQphbbru5TgveP7k8CLuKbNECnWzybNtMmG": { + "balance": "960.558652464", + "bytecode": [], + "datastore": [] + }, + "AU1VS9MGfdpJoaB5DBcW6LJVcwagv4vqA9qMxSDdeYsfGnCVqEH": { + "balance": "1901.014004848", + "bytecode": [], + "datastore": [] + }, + "AU1VSFH8th6MwfafwLbZoWxEAywi5M9GM687aD3BAa9XsmRVKeRi": { + "balance": "30.432283822", + "bytecode": [], + "datastore": [] + }, + "AU1VSJB24FeTnt3R85xUooaBqT2zr3Xb4CwHJE4UVU78dit1Bxmh": { + "balance": "565.744771179", + "bytecode": [], + "datastore": [] + }, + "AU1VSfdBxRs2bLM4oiX8Xzd9oeZut6U8y5KLLoiNQGxvvZoD52eN": { + "balance": "959.874533236", + "bytecode": [], + "datastore": [] + }, + "AU1VT4PKYvwrx9yS6mUBQVowdk2Y9iyFfUB2FDpRhHcZZuq5HZ4c": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1VTh3QMeFefnrPpcAzkSjLLdhxTTH9Kj8xHNPatZcZ3WnakDpt": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1VTikNqARyA1qiCDmvmfqFEJ3X4iP6eyZqokKEZipvM4vqmCTn": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1VTo9ybiRek9XQSqAvySuMx62u8ANC2LVtBdCjjYQg8R4unNVH": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1VUCBswCoWbGNmxnZpCGuocFwjniCKoxRCCWFBsGBry2zdvADC": { + "balance": "1856.941964586", + "bytecode": [], + "datastore": [] + }, + "AU1VUYYJCq2AeuRsTvVYSCk8bHQJueAk1yAgxSrQ298yaMJT1DgR": { + "balance": "5973.723776644", + "bytecode": [], + "datastore": [] + }, + "AU1VUcob5n6ubGYxYB8NXe8V9RRwoafLBSMSLjLRs9NR9Exhws5e": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1VVWTav2NPNTJM6nw6PjABhKEFFheW9CLRipqnXfja25kGyfd4": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1VWLJ9gzZ13itd6xDVoKbQ7T8ZgyRjw7X9zC1pREKKPQVxTY8Y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VWY8Y4gzkkVyPLmQ6bnBzqnUGhdd72irEjMaRr6kbjv1NowC3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1VWdHqyTeuWZ1aGrKBzFueJPtYiJ19NiegsdS3PJ9dabNg5gLz": { + "balance": "15235.121906176", + "bytecode": [], + "datastore": [] + }, + "AU1VX4Xmzwc5ZdC3KT5N89SGFq6GxiKoL1rmm7YsQsqfkmBHTauh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VX9D5pKrixjFt8mQsdXJ5QAnpcmqHE4QTNmPBDiByDLVHG9kU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VXrXRggiXCtpCWRziBmFaPDG4ZHq5fZbXe3NYDJYEDcNv77V5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1VXuWhDTtF7PSD7j44CAZqPm9uq2Zu4CMVguW4rUMdEFeeqZVB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VY9Dy5Wn42kwmMbXLbNarHsk9wrVNx4AbUgiZSABc5Gs9hyAi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VYAAyQbgkiAoM6UXrzyeaSG9JNWEp97gy1FPYmyT4BufiSaku": { + "balance": "1259.488239387", + "bytecode": [], + "datastore": [] + }, + "AU1VYLBkbDBmrKTzqMRFUaDFzA6wgGpt4ZSdWu2aEK8bNpQYJZPv": { + "balance": "1604.600021607", + "bytecode": [], + "datastore": [] + }, + "AU1VYcwArCRK1RSSQ9JhH4PpfVvPnMX832UNGiSXzhuPts6iNo9K": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1VZ692otGr7fVfZKCbWDxScEfmReNBb78PvA3PQ7BXfRAN82Ev": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1VZG4iyoMAPPr3hvkqqrAM4XwPrFj663A9ZZhXLWukKUxaiFuU": { + "balance": "564.958095144", + "bytecode": [], + "datastore": [] + }, + "AU1VZPDUtx3JQn2H3KfzQur17GydKgRiMPpXdK2NaDhChcnDJKEJ": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1VZbjYsWGY8Uw8ndZeMywr4mjP8sTAyDTECoUwsyxtpSiwgKFS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1VZzg3EU881Gi6HKhkqv2Prp5ixQE8HHC3rwztXmeobikVgf5f": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Vaa5qgJ5PmrczF9SgfGo73whVXcNUC3AKH3sqtmcFYsKoW3v9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1VadjNxHusKsG2DYwRERR6qqAD36vYiAWXBKyDbY2DAXJdyGPc": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1VanG9XVtMkdhdQqRqG7K184FmNBPKDXA9S13kpJohbctx4Qja": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1VarC8NPKWSf3fsjLZco5wjTMQxj7HYNkpMyxxFUNzToMqWeBM": { + "balance": "895.698418228", + "bytecode": [], + "datastore": [] + }, + "AU1Vb2kAB35w8gGkQ7dA3TdY5V7WWaUkfK3aap3JCWijBs1L4sBG": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1Vb6ZfJwqQbbUeWUTp3Ujra5tfqkqELdmhfox5igLhihBRHAUD": { + "balance": "1622.713060105", + "bytecode": [], + "datastore": [] + }, + "AU1VbSvZb3uJvvuu1NXGFEtpqesaVbJt3PBWCRF92TsJWWtPY263": { + "balance": "2413.150631096", + "bytecode": [], + "datastore": [] + }, + "AU1VbT5ijMb8RQvxTFH43hLQh6VDW6xDwNQwK3KFjBzDUuQdkTbZ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1Vbu7RLzComkF94ijB7rUuEKHChinVWXXFb9p4Di4cw2yipTgN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VcPGgQj742HHY3DLoERUYmh6MqWPQaMBkPwWg4qLZ3nJ9niba": { + "balance": "9.348365677", + "bytecode": [], + "datastore": [] + }, + "AU1VcTR8YbojpLzdchYfgo4Yw6A3eNDWmwSXntvsDg9Nkzh6Mxuu": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1Vcc9P6L58k8k2UVEin1ZjP47Q3EvAwTT54GYr5aLE7e93i4qR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1VcfKCFD4GwTmQ2PcSpuXEgphNs5kuGNGMWFKnnj5UromeePRh": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1Vcxbf2NHnFQS2s3WC2PxxsCX9gmxzjXXmA4vVhJkzhqbD4vrH": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1VdBAfrSYdWAC7XXfwuisYkXE1bdu4ydAsaVuhpZSJiuECAjoR": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU1VdKkp3TswHhBUHmmLkMrHi3771XSSSdRSQ6xfcPdaAaHYB2mN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1VdekHE41FEvi2qU5pKrL9qb48fPGxPHPUFwigHR1VpPK7ikmZ": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VeCy5hG5yfDNHoojgXMnLGcjDqA7pDVorwv3kZ92Gekwc5teE": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1Veac2f5YNKQ14juUcsmnYnMf3bHW3YsCMyqbxaRhkBjFFDKaT": { + "balance": "4431.862237900", + "bytecode": [], + "datastore": [] + }, + "AU1VfG2hwapupxt3b2jmnvEGXcFC3cyhjgZGaeUxYinWd29Npp2T": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1VfR5xNcMyzy3AptHGeK2dSWgaBHxrtoGEBjH97ZP714mhNwks": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VfWciaEdUeQ8ZYp2GV5K9YRZQNqW57N5eFnsPN9fm1KFiAhiZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VfXYJBvsY3f65EaC2CMc2pfuLqtcvVK45aKDzmz3X7yGFrYmZ": { + "balance": "3707.971631053", + "bytecode": [], + "datastore": [] + }, + "AU1VfcTqp8erRTaRUzuZFxyQYQkBDyfq1rVHL8sS9vfsanfR6nHY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Vg6Lh6J1fnHRbZyKHt4KYbNyRoqN4S61EvLr8E8ocL31biBnU": { + "balance": "536.879208290", + "bytecode": [], + "datastore": [] + }, + "AU1VgCmkzRJtqbNBK6JfJRFCAhjHH7dvzu3mpWUxAHNGm4cSUtUb": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1VgCpNyd2JJC3PcRznYh13FMHkEXdU7hSBMizSNxyXMRwaWcdQ": { + "balance": "1595.978011989", + "bytecode": [], + "datastore": [] + }, + "AU1VgDJr5TtW3g2gJkbVLndzRFYUAbSZKB76JvbrG3yWPdWscDKW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1VgHt5VjcmsG67U7vqsG7FjsohHu6YYMPFps1VASvx7a3VXJ7w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Vgfwa7ry6nqMvvJwe1gnQfAmtnvCdsivUNkrkbeF34RAnpTSq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VgvtVZmegG8YNueYg7hwx9c6jAp2KKpexqqqPUUvQPrtSB7tM": { + "balance": "3018.895952215", + "bytecode": [], + "datastore": [] + }, + "AU1Vh2uRmUKLBaGkyfVbn1WyuPdyYYbn9R3kBasfynVESrRwx4xa": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1VhCiQhzb1S1iUuKzCgnrDR4bAuAY3Ji22WwEhLhuuWJVv6uqW": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1VhvNk5hi5AguLmzGbWhxe5WtfG6Uwoi19mgmMycQ61UT4BeMo": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1VhzSNnKhJTUwN14PYvymXeUWAM2mQztVksWha51abPKZRGYKd": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1Vi8gniwjsY4RMdw5qZAP2dA7u3uBAS3iLSjxJiaLvLKHdob1T": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ViAH9oEptznoCAbeA5sWt5ZGPwrVHht31xfa1TaQ7oePGZMQF": { + "balance": "2732.457888766", + "bytecode": [], + "datastore": [] + }, + "AU1ViKjN4fsy6ZwoPvGFZFFbxsQLcjxoGaUUUdtyPB3oBPXSaJny": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VifN4wkZ5UqbPV7zrQiACpbYYgV4R3txRUqgVWYNYWAv3ouLE": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1VinWDJg2eQyVsAmCsksyqv1aXBtjyYpebbhbuRrvBn98MhPXY": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU1VitpaafMRiKEVqAe3uctwMYwUBW91ZkvPt2HXcQDPm8QGPL73": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU1VjEAmHRzcEuqUhVhRghCbYHvzp7aZnJtVSpzx8WZrB2BsVcfT": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1VjgHLwEd6gmJN2gVNemmQJe4Lxb8YSMRAdGWfBqySJV3evmqP": { + "balance": "5142.215175260", + "bytecode": [], + "datastore": [] + }, + "AU1VjoVeMC5oS9hQViKJXya8VmHj9ACsCfzqqxoLVt2HnKbmMX2r": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1VjtDRMsyccF6Uhh7AGtb91jN2t2us73mBZRNoJZ3HhvpTHoZq": { + "balance": "958.038375373", + "bytecode": [], + "datastore": [] + }, + "AU1VjzDAe1yUcUa59NF4YzuNNp6wGypecfoyaWFxVGQRF8X5aic8": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU1VkFTMCnEijmzTD5eeQ1raHEQoj1oAcCnNt14xieoHZ26GNAQX": { + "balance": "933.915381008", + "bytecode": [], + "datastore": [] + }, + "AU1VkNGH5UcgjxRqrAhCHDhhbCagduzCPzv1xL2wCazkNoD242Tv": { + "balance": "3598.890322018", + "bytecode": [], + "datastore": [] + }, + "AU1VkRMVkEvLptLy2FQo5WQz2CD937WGqVG5hMFvhBcYD1XZjBT6": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1VkwvHjfNxj2yvYf2ATEGn5RbxxyJA37CqnDALtEzFiqPGZ9my": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Vm6wgjMHMsgoXLQqiVr8eYASytKFfFJKYEdAcKW8CRJghQy4B": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1VmMVksuKd9zvyaCgVV9L6ZGndy2xzvbXAAWbtWfkur2B4yvRa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Vmv5GS4BfZhHrZp6h19QBJVcVfmSk2KqAdndFvBn6H4k5XdFj": { + "balance": "859.481441594", + "bytecode": [], + "datastore": [] + }, + "AU1VoEuEuozacS6fqn3JXk7X8p2YgsTNZy5UnRtFLw9zggMMXciL": { + "balance": "1859.061907485", + "bytecode": [], + "datastore": [] + }, + "AU1VoeGRXqY8ZwT4KodA2gVK8mujyZ6W8qZ5wyztoeKUx17JHE3A": { + "balance": "1102.059013512", + "bytecode": [], + "datastore": [] + }, + "AU1VosvsJaNtjLsBsvB6HNhhPxJ1MyMhYFnhQo16rwe6RhK6q1J5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VoxAfdYVnShx3oQg6GS85S5f2eBFQafGJtnb9LArRr6iKGuWP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1VpVvRgPCpkn9CRS1EYyAfsovHh6FfDYsbn9Ago3doVqWGHZWL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1VptYzWhF5fyQ1qdKaRcy3VPHTZGdKkMS1v31aeUGYiEZaDbux": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1VqBpE6vux1KUy4giVeqb9fpsHrTx6TPFDXkY6HsUNGLxdwuYm": { + "balance": "926.583424397", + "bytecode": [], + "datastore": [] + }, + "AU1VqL9UM4qVmwMLaNPa6mzmCxwrSdvB83QN4oAjEuE2ewdqaX1m": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1VqVQmKjVDBmqoibkovBziH2wF2VaQPLy7Ufw5bWgDEkeDg5MP": { + "balance": "893.595480398", + "bytecode": [], + "datastore": [] + }, + "AU1VqfagMPUy5nfJz1d9335CTK9N21XrBi9Ub1i6wDCt1718Jxyn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1VrBjgmmkHvsnECSB5LYWkVs9fsjyWX6B2GAGCPLV5s1bdUWPZ": { + "balance": "1094.260732257", + "bytecode": [], + "datastore": [] + }, + "AU1VrWvzCYAepHVzY5b8GPPELYR1K3o3353Ao3WEERsvHi9TghKY": { + "balance": "1295.904586973", + "bytecode": [], + "datastore": [] + }, + "AU1VrZ6GL8WAb1JzRrDResKjk2n79uPsiGkr4LgxEXoUnxnbXS2y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Vrsff6G66wL2d6fWMr5XT1WHbbFf5s9kRYyXczAk79UduQx4r": { + "balance": "4138.598149007", + "bytecode": [], + "datastore": [] + }, + "AU1VsD4ku464yoX39EQ2LYwYKrBm7ZtXNC7jbf2K8E4JPpFc61Lt": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1VsMHYjpA4p82aC6iVoRC6PodirPCBAUfLGioo9yMQ856mTT6G": { + "balance": "558.973201778", + "bytecode": [], + "datastore": [] + }, + "AU1VsxuGVJA8GJdu9KgrMhBvzYXJuKWpDkAqoJkhNrPzYgNjvGcr": { + "balance": "166666.800000000", + "bytecode": [], + "datastore": [] + }, + "AU1Vt2Tfr88fxezTURTg2KxJEW1e1aCjKs5tqFt9Ra2jjz5hEfdz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1VtbNeV9wQrrL5G9cyoGVpUw8RJxmbvKSv4kTNEYns3FE8S3d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VtzdymvrF8xg38sY8HdFQQ48naHJtfSoAVyEwWpDxPpJ4kyLJ": { + "balance": "1102.068867980", + "bytecode": [], + "datastore": [] + }, + "AU1VuDzUU4HvyWdVokFkLEuNca8PRgoq3zYoAuK59U5225S88JuJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1VuSu9r2D2kwGu8GcYGbgZTR7Jw27i7DB77Hh6jSjNmSApBPqP": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1VudysYjvkokMBGTtwuhUTZUkSprjx8YkoFQEmwD6XQMvvpLwN": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1VukYv3iA3MLZQrkUhdLCUY9GEy1wwcwyDojmAc3Jkw78rrZmT": { + "balance": "5892.653882452", + "bytecode": [], + "datastore": [] + }, + "AU1VuycAAqdk4AVetr2KbWV6id4ZChexou7bKxv6WVnLuz8neYae": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Vv28xtK8S7Stmj2SedJc5s6PPYN4FrPSNYCPStG4MuJP2VSQZ": { + "balance": "1754.737581504", + "bytecode": [], + "datastore": [] + }, + "AU1Vv3h6CayUnGxMi4Cp2muBqHhoKt3AzcJjz3TymRQXR2X7PpJG": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1VvypZuDUuAjdxqvwQCcNAhwKfok86fN8eX4KgmcLUsyxaFTdA": { + "balance": "69.455412362", + "bytecode": [], + "datastore": [] + }, + "AU1VwSyudzwqnwhYTM8xSx7y5ocSLZdhjdmWdkAj9tp2XJhCiNND": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1VwgFia5GseDwdJadBfJeZs6bjErog1FB1GYaGD3xcsuJ2KU9F": { + "balance": "600.541837574", + "bytecode": [], + "datastore": [] + }, + "AU1VxFdtzVsmYs8aT13pBrED22wrVUaD2MqpHvM9bMPLtot8payz": { + "balance": "1190.214998369", + "bytecode": [], + "datastore": [] + }, + "AU1VxbJLM8LBeVXvttPbewErxDiQt9rUen5GqccLeLPxzzuZBr6w": { + "balance": "4899.817625494", + "bytecode": [], + "datastore": [] + }, + "AU1Vy3GTbsyMhgKZEVR2kk8uwXVCH6VTGhmDPDV1HR8eGdaejaPV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1VyJRoiJtFcUBiBhJmPDkzKE3GaaR7RoGrFipJQac5XPSwpHUZ": { + "balance": "5498.376344650", + "bytecode": [], + "datastore": [] + }, + "AU1VyTSufmXjiUARzGVGJFcJkj7xcREwJbfQYH3UhoGjBhsm6wS7": { + "balance": "595.213716684", + "bytecode": [], + "datastore": [] + }, + "AU1VyYkMMRboAELLLqNdjadLEgpZNMsFUMyUdoUUtHXcDqDSmn82": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1VysStcwqSftNLX4vqQ6Da8nptj8abjKTrRbANSShz24qMzjn": { + "balance": "3780.505829227", + "bytecode": [], + "datastore": [] + }, + "AU1Vyzbw6KoaGbYnLDdM2wkeGHc6kLN84G3kZp8beFoEJ9ayFSmR": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1Vz8mhTNzqKgL7Yhg9BspuaVM8vC8NRYuWr457HDw1UzRvkg76": { + "balance": "5422.815697903", + "bytecode": [], + "datastore": [] + }, + "AU1VzJssKffXZPFZ1Sq1fvcDNmdpYAFr39U6DJmf2A7AXyE56PQg": { + "balance": "1610.801516847", + "bytecode": [], + "datastore": [] + }, + "AU1VzroPEXbNECJkTafanFrrFn8NdzCVBPm74zshxFMocHDjRXna": { + "balance": "1030.464059562", + "bytecode": [], + "datastore": [] + }, + "AU1VzwFWdPCqA3uaheAm5fTXXDorF5th2tCHRZJ83KuQxwmYgVX6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1W1PLak4omb1CYjgYBL8FbUssaitozGmn7UhWZcc8vMTFUDSou": { + "balance": "2174.422057942", + "bytecode": [], + "datastore": [] + }, + "AU1W1b64Mkh5zSzvzMbF7KGaFhvuyBCiYpLguxbMYk5XsxxktWBg": { + "balance": "2131.433673114", + "bytecode": [], + "datastore": [] + }, + "AU1W1gpPt5sCNxcfPGUqVXyxb1RQTzHSdXQKuZe8CMaoHC4sgoDi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1W1kdYGeoeCco69egZ7xGvRxddHHkMGpXzTArZG9KJGnFmBQUC": { + "balance": "827.766206848", + "bytecode": [], + "datastore": [] + }, + "AU1W1p1PFUbcST2GsFjyDWhAMjhoyY2X4Reh9g6SsvkV98HkV87u": { + "balance": "3142.363404909", + "bytecode": [], + "datastore": [] + }, + "AU1W21EHM2tNfr8SiMSCJe4SGGn3815egHRWF7d82KCbLrCz7zJA": { + "balance": "758.213280413", + "bytecode": [], + "datastore": [] + }, + "AU1W23jxdwyywqr6jAx3WsvvXLGf8XMfenBEZF53pL7Yf7YvkvsM": { + "balance": "137.788778878", + "bytecode": [], + "datastore": [] + }, + "AU1W2Cejf7cvkZ2gM82Giji5a91mb5x4QGGFFLEghC52tg5bvUVK": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1W2RZd586XxaxZ51ZTN6xRtLbRbuNZr4iTxCjcCHieJEGNpjw2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1W2WDNNpok3GE285qdcM1yKw76JDN3wV23qA5oujNUFZBCeAPp": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1W2ZgnuCYAMr4ZuNmd2LpKsAtahxdZRST5mnmuY53QRdCrn9Uq": { + "balance": "1313.506836783", + "bytecode": [], + "datastore": [] + }, + "AU1W2bGeYwiBdQ5o42ThphgFJSPdmoN8Hyspyn5vXWHE3k4pLeZf": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1W2bgLC7bVhEYqBJznphbutiAsd6PoZzeizqnBqkGFs6grHUxr": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1W2bmdZFEok9jSX7g8czqQ9qjX88yPELcUgwACoNqGoAfcyH7k": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1W2mUQHqyw4EVkGr4B35QzJLMsrR1H8foCmwT6gE42iYDhk7mQ": { + "balance": "3392.078251730", + "bytecode": [], + "datastore": [] + }, + "AU1W2mrL4ZpqiTUaNpu9CXhuqRPSPTAdMBYJr3hEPYgGtHBzuya6": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1W2nqpi5DKXAbUZcqWYVXswcq33PhHfnxRVEUfNyeeVfV5PZ6x": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1W3sjht4Hs5daJPt5h1fS3xtgpgUB76TrwD18u34WLhk5Y9NPB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1W4QcLLmrc8MU5vpLMSWUQvxD6Pzv43g394f84McmxrkRjGHyi": { + "balance": "1826.713565228", + "bytecode": [], + "datastore": [] + }, + "AU1W4ZzAGQce5qTT2gtXshfDkLh62N69FrkJKmBZ6mw21CqJ4rpW": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1W4eCoyLRM3HfQ2cYRsHLQPXkvDPEXbisYhFzfuCBUdPCK1wXR": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1W4kR9penYWAW25X92mgF8AnbcmmpGx8cP4E4xQAZh9CacN3Am": { + "balance": "2053.847158961", + "bytecode": [], + "datastore": [] + }, + "AU1W5A1TNnoTYkaqSGrkrsrHcsXKZC5xNanEr4TBup1b7dBKBRT3": { + "balance": "1853.286404500", + "bytecode": [], + "datastore": [] + }, + "AU1W5nh6RiT54bePcKFUcUxUzMsv6kK3cghwdXvKeDQwfbjsjpDE": { + "balance": "745.036696598", + "bytecode": [], + "datastore": [] + }, + "AU1W6AFX8W9gU7cjzK1ezRjYaDkrjVxzP7ti4tLHxM3DsF5Snijs": { + "balance": "2705.397904374", + "bytecode": [], + "datastore": [] + }, + "AU1W6fPSFTSBbzipWCRHEfiLcC9mQimqXnkNuKeRYv2Sw7oCenRr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1W786RJN1LTVf4BhFnJ8XaStX38XQC5hbJeNMZKCwt9XhneyHt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1W78jFizdQGwESFP9iPjAbq2BL5hD1xePQ79uutP285UnmcxS": { + "balance": "4452.569954481", + "bytecode": [], + "datastore": [] + }, + "AU1W7UFSUfyA915GxzS9PA1TWoMaeGXe8dsiqdgADPKWGKuqFDKv": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1W7jNfbE9JGcpnumgo1Uf63fstMkTUo4tcLPeekt5gM9T62X49": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1W7nvZG5YtV6ncA4nnQqtUx8pQDGZHaGhDLpu7BnRf924NE5Vv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1W7oWsANhrcgrKh78fFN3AdJj8o6Xp493ZZ84tG1CF3ikn16LL": { + "balance": "71.816731530", + "bytecode": [], + "datastore": [] + }, + "AU1W7w25SzuovM7meYfuMMUZnzFauofMZL5kbLVh6noDynX3FmqD": { + "balance": "68.765383217", + "bytecode": [], + "datastore": [] + }, + "AU1W886tCtfSGfgeHLK8FPjK921gazN2DkfF4EPtqmubE5mQHSLS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1W8GhPjxXTZh5yEq2DDvybNDZoEAHgavPqeFBbHtAvTDGF8rHd": { + "balance": "832.720080640", + "bytecode": [], + "datastore": [] + }, + "AU1W8PyK9mUmV6Bn84XV9x6BqV3BvKvsCrrGKDTcPwnAUPA4EniN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1W8am7fg4LcJBHEAcHr3N5oPXmg5Lmhk3L2W8rbHPV3dsd7cN7": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1W9BVXaXhHQHoNN7uE6Ntbk5qV3dMX85HeiGZDfRxbxdCzkyXD": { + "balance": "2679.416057530", + "bytecode": [], + "datastore": [] + }, + "AU1W9m5xP5ztcRdEMPrqbVujyReJUSqj1qpQcserCCrSJ7gggrXH": { + "balance": "1332.412545245", + "bytecode": [], + "datastore": [] + }, + "AU1W9wtRDTrzdKcqhFP4pWDmp6mg8BZZbjy2mRXDEpvYJw7vM6x9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WAF7hFdtTbmFEwuFh1Rsg7pn9P4Nv4Fu2o1N2pZqAfHfEYjBg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WALKazbySu7MtvspvZ9SH1y59e8YokrKKuyfTeqc4CcATr2Qq": { + "balance": "2627.784642792", + "bytecode": [], + "datastore": [] + }, + "AU1WAuf8NNcjkpRpYyMmPBavfhg2iLwNdNXcygFWeFMZu9hiNU4x": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1WCe8yDg6WpBkpqJtb176xveAcZon2nQyUhevnYXdc4r4WFBdT": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1WCjcjoxFfUrCNLJ4GvUA5RwN3FuYJJq638y55ZUKgQJ8zsyUm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WDMVZAmbfWBC8FfgadsJyT9FhzQCAtJtnoXrWdM3rKy5kRMvm": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1WDiYBFQGpVDbSfm8U7JoH98F6i85awGwR9q5NWhN9kVwQJoex": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1WDrrZxminjYboK4YuU5v4eMcCjkFk5dC8s5ZreUshY1vpXSGL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WE4bQAuSzaubxuyJmY76BjjWR9vMwfCgTa1rTmNn6gSScAZvx": { + "balance": "1404.882880439", + "bytecode": [], + "datastore": [] + }, + "AU1WE6CsVkD2iALeH2ZU2xwvCVdAot3CEtyzvgiqyB5CZr7FkgV9": { + "balance": "693.902226741", + "bytecode": [], + "datastore": [] + }, + "AU1WEPrrFBX2HY7J6MgAPQKiquZ77y175JExVTpf5RET9egsp97B": { + "balance": "1927.160982110", + "bytecode": [], + "datastore": [] + }, + "AU1WEVfXiaB3uAkoGm6PGqTkRQAdaXrPChtD5xSMwbBwjyofSobs": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1WEuM26vpekUDKVqPZhoPn69eaPfxmqHV5i2yUBfVP2itMXJtc": { + "balance": "840.178129371", + "bytecode": [], + "datastore": [] + }, + "AU1WFM1np9pofKUgAMqjfN1Rcj27E1ZXh3tTtCMQLh9fLBJDSv8a": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WFYkzXmyH7ezuqVsqtbaaZPfbuYzdJyUkdmdkuniNY6ZgXqzo": { + "balance": "892.563602497", + "bytecode": [], + "datastore": [] + }, + "AU1WFjd4ggCBqUchgGheojujo9WXUL94V5dWXDBqkdw1DeTjwSz4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1WG7oVv6kk3RZataxiDdtWyeJU8XZDKigDYSAmvd15M9zRbDVJ": { + "balance": "61.598561951", + "bytecode": [], + "datastore": [] + }, + "AU1WGCsaCLKHUTsPEUbsaQJrtGDyUiCTGgiKYyGprzKQ3ZD5V9Ux": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1WGFHoEPJAywaNbyGk2i8DpYP3rg6cAzGmTk2D5LpgjTHfsgrk": { + "balance": "2865.669920342", + "bytecode": [], + "datastore": [] + }, + "AU1WH4Y7DwmLeE95V6S3QfKoJdLvBarBgR78zKyyHBsEErKvumwB": { + "balance": "1518.599664391", + "bytecode": [], + "datastore": [] + }, + "AU1WHBkxLy5po8yc5xn45ui4s9RF8YqWvN3a9BRQSr43rkc1T9Gp": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1WHqAtpfJH4G59TM2GNVmYDig7zaJN1iWevc7ddPax5w4m5z4o": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1WJMEb7qQRV9832kji6nR4LoY4dkoarPDFynjubqR8wCmH7XD6": { + "balance": "1938.370894024", + "bytecode": [], + "datastore": [] + }, + "AU1WJt5jP756pnGfWVCdfwM92hKvFb83h45Z7mu2aMgAurUpkgcD": { + "balance": "946.869532408", + "bytecode": [], + "datastore": [] + }, + "AU1WJzk32pQEy5pS8Qqs96ktCUSMqpf42pShmH9Un1GtGjbL7uZA": { + "balance": "2014.115639012", + "bytecode": [], + "datastore": [] + }, + "AU1WKRUoVRA5FSP2qo1nUmb4FeUjQpiF6xvGx8pp1yKsa7becQ3K": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1WKRWhwBobQw4ZnSLWtoWkvBMeYQ9F43fFJkBNpsamzt34xo6X": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1WKiP4YDHT6qrh8ZunmQSNo6XMjxxpYUv8hYhetGe3q3d6JBr9": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1WL4su38XzLipeANnTD8a1qGfvbvFRwFEp7yHzeJSXZyviHCdJ": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1WLWb6V8QdyK4L5ajfwDH83ZopLfUBYsFKLDsGgiZTEXwNaps9": { + "balance": "1573.415085832", + "bytecode": [], + "datastore": [] + }, + "AU1WLa9Uqu1RoeYJkvCN1eCbMYCTiaoSsACQUr7YXTJnaf2LjAzv": { + "balance": "1501.258148824", + "bytecode": [], + "datastore": [] + }, + "AU1WLvPxk6MSupzrrbyVe27TRe1kbobJxYFg4Acw2GM2XuwFQpZs": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WLw8PMAUhqUW7mSS6pFy6v6HwsP4wvE4RMJyYHY4uwbmX81oo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1WM3jd3u9VmywRA9b3NkgFxamfcWdkDHAhHUKvFja6VtdXeQbE": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1WM8eew2fTGcR7a4jxQnDnr2ZgJnVJXpozW9HbAtNDcbq3iyQz": { + "balance": "2437.681792938", + "bytecode": [], + "datastore": [] + }, + "AU1WMg8miFWRGwzMp6vpyoSTtstFwb13vjjB8PAoi1oUxv5hYoCp": { + "balance": "1568.691795829", + "bytecode": [], + "datastore": [] + }, + "AU1WNTQ5VHrjmbdtXYTAiz9B2jgzwhjT3x8Pu8QNNqejvKn5qzAd": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1WNnZvnwcncSpNWPYJkNTET1xo7pyRPgxDcrsgcRdPNGvDhhLV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WNnj6d4jF3hj9y1hHG9YTurL5Gm5i5wUaYfh5SfYwbwtPoFQD": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1WPDURkhWYE51hF7MvN9MGrHeBjQh7zRwV5ez2M8kBdHAxi2ca": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WPFU9oLJcuccmC3rbTSFakJd8HrCSUwEYv8FNJVPmLagLb7XU": { + "balance": "773.592948167", + "bytecode": [], + "datastore": [] + }, + "AU1WPJEiFdbPFf8stCPGeLqTSm8ewX1R65wsNHUg4fLFLGpWaWw1": { + "balance": "2620.763504606", + "bytecode": [], + "datastore": [] + }, + "AU1WPMMtDMTpD6tZ9Q2bfLRQYtNBQjJm8VTDow1VkGpFwtXS63fH": { + "balance": "2683.661319768", + "bytecode": [], + "datastore": [] + }, + "AU1WPQzAp1JTP7795iEx7tnf4dpmdBuoahBVyEdmGBLGPrmXrtU8": { + "balance": "5532.003815984", + "bytecode": [], + "datastore": [] + }, + "AU1WPamcuug47Ss2xRsBmYu39ChYtnn7FiA9pMViTzsgZG8ZsyCy": { + "balance": "47.081284071", + "bytecode": [], + "datastore": [] + }, + "AU1WQEXtufXqJ8NFSgTFZKMWpfEXCE9agQYqhv8gVNTQYJ1uktPh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WQWtwjtoZzP3H6jM5f337Bf3rFLGmaQ9v2m6eEEgTUbsWJBA8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WQYqWewSQAiM7B2fixoYDktX37p1c7ZiYCe2uXC2KTRMGACib": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1WRFbmiw6uBXKTQQciNgapu6iU7RARvhNJ4hBGddbUYTK3mfGB": { + "balance": "870.498949215", + "bytecode": [], + "datastore": [] + }, + "AU1WRTzSW5A3CmxtjwgZQJTadLyyteQ8DTLLmgF2bq2fXKa6jtZo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WRsLtN9XpnXZ21mufrTpwFn2aLAqnKqs1FmuSA6mrCKSATkuu": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1WSCPoSaV4pAxkDkkaZMhSbHATh5kdo3aCJvPQnKMqrQ3gjbw4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1WSPhKsQJm5MRfNFzve9D89e2cUA8si1ba9mQAcVSdzjZD5Fz7": { + "balance": "55.389260994", + "bytecode": [], + "datastore": [] + }, + "AU1WSR2LzNwc9UZiVYTFKEDWphRevYuzo2YuBZQiA51co8HuEXqC": { + "balance": "2176.738612529", + "bytecode": [], + "datastore": [] + }, + "AU1WSgG7G7PA4jfvscTzeBZfX519u3KcRLakDjjvb8q6zE8Zbjh9": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1WSisftLYGLMBqjcuCD99RbLCfGuNccVc5vMXa2ZAratxsnXyh": { + "balance": "623.133698495", + "bytecode": [], + "datastore": [] + }, + "AU1WTJjwTidNrn9WVNer5ENp9Q9sLy6um78pZp1jvv8k2Jx7QPC8": { + "balance": "1706.724796881", + "bytecode": [], + "datastore": [] + }, + "AU1WTWoP81VRmbaG8TrUKxnbs36XWzBTnbi6cUzwMQ1yP2h4qbhz": { + "balance": "3380.024332061", + "bytecode": [], + "datastore": [] + }, + "AU1WTeijuDSUL88FBwF2MaMTgWpG3tecp7uPRmehpjjwd6cU94g6": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU1WTgTXKL92ySEedMVDP7meWTnq4APZJw6v9iYqyki3cY1HZChs": { + "balance": "5564.221342957", + "bytecode": [], + "datastore": [] + }, + "AU1WTjiM2XacRtNzxC2tfFx6oRHUx6L5kcbvDcRi6irG9R7X8VWm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WToidUxK8mVpjshEKL8gpLR4R2t32dArXGhF2arPbXCihTCVb": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1WTpSpbHUAa8m3QQdn6i4S3wNGbBqb2226Dor6jqG82udeWf6B": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1WTpaEv9DPciLeLWL4S1kpkWVPYxuP9S581GCHXgL8cyDQdE3K": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1WTqxR5FFKP1inTyTgMG3FWy2Xr1SXASGTA7nZk2CF35nVvUsQ": { + "balance": "1852.101791810", + "bytecode": [], + "datastore": [] + }, + "AU1WU1DeLoVrEZKvHnc3ANMYh6qib2BCyoCPjiQpb8RkYwYzA2Ne": { + "balance": "4505.099255877", + "bytecode": [], + "datastore": [] + }, + "AU1WUa3UcKrY69XPt88AQk4BQBoZhtkPiVSL4jvUKmYYFmjhszi5": { + "balance": "1348.090672971", + "bytecode": [], + "datastore": [] + }, + "AU1WUb3tmh7stPgejDXSn2pXGt6YLWwP29CHSJ3E2TD9Mknbr4qx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WUfkDaFbEGCgwk7vvWQyvV2J2WQufSwtfK83DZaQQih22mCSQ": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1WUpngD9rxfGwx659bw5wHZ4WKKjP3qgL12YFETVqujDR7pwJb": { + "balance": "839.793851544", + "bytecode": [], + "datastore": [] + }, + "AU1WUy4b6NNTsV1Ag8CPi5kkv2Ckmkc8eQRrohGVxSo9TTYtdzph": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WV8qkLXnfhwkL9dhHnnmbJVLVA7NKq8KVmn6Vrf8BwpWCqTv": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1WWLGtcsmgZ4CGr9YkuzYRXKavt6ndawF97euAN7tzqKKyFPsp": { + "balance": "827.429479216", + "bytecode": [], + "datastore": [] + }, + "AU1WWVaVezfMGwjGE5gPTu8xo4AihVmuqiG6y7VNgN2xuMChw8Xh": { + "balance": "1444.614193651", + "bytecode": [], + "datastore": [] + }, + "AU1WWWoxudh1uhgebp7fQ5aRsERi51LFRUknXuQrBeqEN7DUm7zz": { + "balance": "587.557530327", + "bytecode": [], + "datastore": [] + }, + "AU1WWuUJGKnTaWuP5fEL4wVqVa6Q7bHFjU9vHKpGqkTkCnJsHzYt": { + "balance": "3777.343766788", + "bytecode": [], + "datastore": [] + }, + "AU1WXP5rcrMxhCR9gXjaLjeSeDEwpeDp1YrRWsH3RaKieAtvs7LF": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1WXS3u2L9ZoJ4Y76biXPaejA6pVAZnmkXp7UzvEBDNcRNKeqgW": { + "balance": "700.817402236", + "bytecode": [], + "datastore": [] + }, + "AU1WXUBg3VyJzsKSHTHexuELa4krgvPUyot1NYXpM4xGsYPmWX6s": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1WXa277rXi1iM5QDQTneG5pBukL7PM31Ua9uZfiQkzuJi6PFDd": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1WYfWL9fewsYPxtjVaEEKRnDJ4cpM3iXppmA8Z7B1MYmDfvpsj": { + "balance": "1477.718582372", + "bytecode": [], + "datastore": [] + }, + "AU1WYwKDr5voEh2nomuVFfGak4UtcZSjREEn7LqnZHTHVyfQfaKL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1WZgPzLvnetubQGZayWCQqZzbzk9cC5uUGgQ1g9boHr4zkmdVt": { + "balance": "1332.384493095", + "bytecode": [], + "datastore": [] + }, + "AU1WZz6vWC1tXhHGiHfmBjCRnfAGDHQMyZoW4bkabMz9wHsANm1K": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1WaK9iYXij6qq1rw5hETpGE3g6apdVwQYwVQJoPdoSZXNr2Upc": { + "balance": "709.917640940", + "bytecode": [], + "datastore": [] + }, + "AU1WaKRjRCA7nz3wtR4Rhd785EFNTUjGjzCVznfRy6L3LRsqRbsR": { + "balance": "601.623322400", + "bytecode": [], + "datastore": [] + }, + "AU1Wai6Yci6xjPk1uEjMCyUD83MkCPYCnsxDGHmu2rdKyjmb6RQ6": { + "balance": "3658.809383780", + "bytecode": [], + "datastore": [] + }, + "AU1WbDmZDoBxCZvkwXaHaN2rKcWALVjDwqKTZo1Yb1s7ZB45JC8p": { + "balance": "3606.503550828", + "bytecode": [], + "datastore": [] + }, + "AU1WbF4XUP3fDiLCE4iknPapVfETFDk5gD3CpeauNmLgpQPNWvus": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Wbybz1PBJtXcuHvek3AKqQgTgw6gyD8Yt7usgzK9XPDcPKxuc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WcH8NRpFUTLbvYQTbK5woiXiQ9X8cABro1mhBuKnmqc237vLx": { + "balance": "2566.653500851", + "bytecode": [], + "datastore": [] + }, + "AU1WcKCQUWMYhrLf3eCgvEEMS251zeBSMtRajiLtQK4FeasgQ2C": { + "balance": "1156.186950960", + "bytecode": [], + "datastore": [] + }, + "AU1WcdRRnnS4NspcbSEg2QsFj6MkbnaSD3Eahg8JMhJvQUtzA19s": { + "balance": "1122.989069668", + "bytecode": [], + "datastore": [] + }, + "AU1WcfiXgWAFBZ3PiUzY48MmdeRZ9F69FuGUo8UhBAy8HeSMG6zv": { + "balance": "4409.484213372", + "bytecode": [], + "datastore": [] + }, + "AU1WcoynuHmvPp9edU8WAhe3hEKuaG3mo9sYviaE7P7pCUH4jVgW": { + "balance": "1530.166885684", + "bytecode": [], + "datastore": [] + }, + "AU1WcuQA4P5eHZNVQs3AN97M9bhHts6KbPTq2gfMXGAXu3cEXHNA": { + "balance": "5166.749148390", + "bytecode": [], + "datastore": [] + }, + "AU1WcynBZe8DJowXBhWArNKPtUyk2Uy6EEXc13z8SQsFPA2BRwj3": { + "balance": "2409.864208143", + "bytecode": [], + "datastore": [] + }, + "AU1WdHD6dAyc1gnyA5ZyaW7RqJQ91YThvbvYSWmbjfjrycLx3Fk": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1WdNnLhKwDtNsgSbvbe4HQtFSrZiz9mEvmsX7FVRrSJ1nG6pkg": { + "balance": "1540.539415781", + "bytecode": [], + "datastore": [] + }, + "AU1WdvNATWQ4QEvG4vwR6eAPuW9uK2MFMHBWK9RXYuGQY5HXHxbT": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1We1MostAGYqqGfckzktXi1LoqB33dcPVZrSKpXmpLkJLnxgL1": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1We7wCh1TviRCKZUmCV3Eta4akq7Jgxr4sfELTi8ujVQdJXXGc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1We9ywbGVgwZDyDrX7X197KScdm27LUwMAv6FJfZncNppb76gt": { + "balance": "2877.038571715", + "bytecode": [], + "datastore": [] + }, + "AU1WeufJgx1uy8BhmQeSHEVyHChdK3aLkko9gb5oityyL183EFQQ": { + "balance": "774.834040557", + "bytecode": [], + "datastore": [] + }, + "AU1WezhN1vg7RhDskPABNXhaUpVUys94qD9knpo9HNzWW9SQam1x": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1WfD4obzAmTUasUdGtucnJRjPGyJ1VWigEkPcb6ov59d7tsrCc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WfJh18jFtgVQhkQJLu1AMsuHd3ySDywsqQTXZJXuN1m4uRbAk": { + "balance": "300000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WfwW2ZfrquKc3jDvxLbUwVL3N1GrLCuoJ9ShhmaquqUF3gmPt": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1Wg8sVdJTcbtfnL8Eqe1Ex8XRYeG1SRrVrvmEYEdNsuWuF6qey": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WgGT8aZe2ztVFgVNdF14voQtvLx2S6eEkFxPK5DF7wKYeKwWA": { + "balance": "531.018498627", + "bytecode": [], + "datastore": [] + }, + "AU1WgL83NqR5Av6jmmDbmiuVMumouPjDo6yDZjQ6wJHPcjZMTnqC": { + "balance": "2918.983778006", + "bytecode": [], + "datastore": [] + }, + "AU1WgbTPHtfUqRRnsL8MvXRUG4qjfmfB6fm69BVPcukK7MMCrBEw": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1Wgksu1N4ZZRqNQxSnRWbMGcfps1UYuoaiEZp83QaSRUN9jtkF": { + "balance": "2395.262461764", + "bytecode": [], + "datastore": [] + }, + "AU1WgmHaWLXt9yNLndsg8UMVBsDdnrsTvNjhL6Dz9ctBmZpSGx2A": { + "balance": "74.636476195", + "bytecode": [], + "datastore": [] + }, + "AU1WgvSbZBD9c8xixfTgQEhwod1tC1GYRneTKbPrUjF7i9eHZCjx": { + "balance": "1323.623649076", + "bytecode": [], + "datastore": [] + }, + "AU1WhgfFabj7ma1wWygwn2HTQf3bCTEeyPXCLroDWnJ9ZGNSN7d7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WhjEqjEdQ87QdAoDLQThkt9FVCMXNrczeTA7bwy4CXb6y39Mk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Wi53pvWLZzeVYLKCwBPacvbqZSvFCxRs1gHUqUPnRfFwjMg8Q": { + "balance": "900.479649094", + "bytecode": [], + "datastore": [] + }, + "AU1WiiVg2F5tk6Gx1oWJ7Q797W3eub456havG8qsfQrwvteWAbkV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1WikA8rKAKgaKA5JUPBqRmyUMoWH7g3sMKWngg25zzvHbNqbTk": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Wj51Gf5ppPz5MiJ8DWNXmBPuCZkDw2DyPeHW6weyWridvqkc2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WjFqM8zR7YyMUnSqwszdtzbDVLyHXFkNTMVDnADcFHoL7n9no": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WjPf1cWoum3iMuTTY9c1J456uSHGMNxnSRjUB1q2b3iLxRHes": { + "balance": "1628.960530703", + "bytecode": [], + "datastore": [] + }, + "AU1WjmyDz6URSn4FJVekvqr9nefBces19JxrtuAhKnYWDD1xvxte": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Wk6e2bkPwCdC8DnekymjVwWmpBohcAJzUQJbzrX1BBqGBveFp": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1WkU6h88fQCxc4XDAr1gNanEgHfNzSnJ5xFe7GXGnCeS9jcrr2": { + "balance": "5864.164659418", + "bytecode": [], + "datastore": [] + }, + "AU1WmAU5b7U2QzEHpASbjTL934sn3CiPx4ytKzTHYPQfCNFaYHvv": { + "balance": "1475.056760526", + "bytecode": [], + "datastore": [] + }, + "AU1WmPkGUzpQ1DEb4aGnj1PdWxfoMiDCXDgTeUrbSmLgCFQuHToP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WmXW6a5XVcrpfpQMeYrGxtBwCLLBByiyLVUdF6Yq5Q1Q65WgN": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1WmkMVHjkkb4i3mCYqJVvq3jj5MbnkR9UGru7ApvDeQYTkzaTe": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1Wn7o2WqNNvM38L7oDrq74p9iZTJ7oLK5Eu2W7EgzKhaf8ocsP": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1WnENubDxHtypZff1rRE21nugSQyaVxpUy8EcLePqYE3vCB9Lu": { + "balance": "187.820269828", + "bytecode": [], + "datastore": [] + }, + "AU1WnNWwXow7K8c4MkzaU3RdMg2aaZdV128X5TrjBcSkk5q6mRZ9": { + "balance": "1789.214862658", + "bytecode": [], + "datastore": [] + }, + "AU1WnXSuDrSNtXugE8vvGysAKsxwFDiHoVfk4h7ELapwZsYMXC98": { + "balance": "672.603404640", + "bytecode": [], + "datastore": [] + }, + "AU1WnYx2jYjyc8DJHyKPbaDpC2EiMB3y4durWgNnxepmDA3YitSH": { + "balance": "993.282009379", + "bytecode": [], + "datastore": [] + }, + "AU1WntcFovHuCMbxZBHcWAcWEtzNnkfvi2ackes3nSqfSYLggfgt": { + "balance": "183.383364663", + "bytecode": [], + "datastore": [] + }, + "AU1Wo9J1S1HTAw6jT3BNNXADz7kQqhXG4tAKxsHzLBchCyZzSreR": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1WoEkeErCmjewfPH3vc46rgjnTj98wdbya4MShNoFykHVQqrKp": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1WoLJyhP8vbP5QeoXRw5wHoPvFE64zKd47UoiqdpEMy7xqRo2D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WoZrJxS5xaJmk9TtbcpuC8onPk1BmeBonuEMt9PF846L8Frfg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Woabz5fqT8AUoBpGVuhb59QV6nVbHaJqDAZRqs1XFLgsr2DwX": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1WovJUhQpYfPb4j7Kj4BXgNZFa6XTCZxPskr2VyTCUU7tMYNpa": { + "balance": "3008.132280844", + "bytecode": [], + "datastore": [] + }, + "AU1WpAJNB2cNFoGdgQKqFYZM9NnJTBCtCGT2fScWyxmiVXZAnRDC": { + "balance": "3617.960612090", + "bytecode": [], + "datastore": [] + }, + "AU1WpC8Vqw7XXJEDtjGu4XrZrNDirfjotrJ8gzFirRvAvu8YfiHM": { + "balance": "79.193445420", + "bytecode": [], + "datastore": [] + }, + "AU1WpD75mM1zAkbZJTEra4avqttW8LpDpadYFS2YVr5Q371eQ3Ab": { + "balance": "1548.920130927", + "bytecode": [], + "datastore": [] + }, + "AU1WpEaGWQzFN6dWtia7Hw2gLHxDeakAD42UhzL14J5i9jzrUoWb": { + "balance": "1632.396667083", + "bytecode": [], + "datastore": [] + }, + "AU1WpNy4mjiig29uxEFiTzzLfUnk94eN35beiFEkR1om88FCfzTe": { + "balance": "648.949742095", + "bytecode": [], + "datastore": [] + }, + "AU1WpTCeA8emRKZ6V6CyXZZo25ZMptPsw1ysuvYDofLiHQox8H8f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WpU4JaRN6gtbWHWQUjz63ZJFp3Jh8j9Q2eKWKFs4HyCFMBYco": { + "balance": "1431.553028082", + "bytecode": [], + "datastore": [] + }, + "AU1Wpvqhu3MTgBc5HXNy6KGwHnLwZDRRbcKnSVHsBak3MNGgrZv9": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1Wq9L8eNmp3nECG5SsMpBGwQgJLuGutbFrTBmSbvjwYXZ1ofeR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WqXXM19amQENX5dmKqwEmfXXLkTFKoWLmVCHmRJuWWFkgqYNC": { + "balance": "97.542746717", + "bytecode": [], + "datastore": [] + }, + "AU1Wqygdk3KvdrW8oWytiAMoVTHbqNn5osp7iLzz7HLQRN69VTKT": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1WrPiPxVKbVrf5WUsaujhdpFmvUViYQgbm2hBtqufVGe2iC6pm": { + "balance": "203.239863254", + "bytecode": [], + "datastore": [] + }, + "AU1WrtdRzuAocQxtGLX4H5rVaeai2QXtwzPCrAXPeNvSjWcTd1LC": { + "balance": "641.126032258", + "bytecode": [], + "datastore": [] + }, + "AU1Ws8CbDPixpGGuKJ8GhhoTi53oAPV25pFzG6KdEeS3jngm5wdU": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1WsAmR7NkkpFMMaM5UuRMxdk8tvQiaAvHx2sfietq5qHJuXcrk": { + "balance": "5873.865399647", + "bytecode": [], + "datastore": [] + }, + "AU1Wscgn6jjNNM2hq6u29YLeVRmRbYPGy3GgDwZEpnpEBReatfFa": { + "balance": "66.351668673", + "bytecode": [], + "datastore": [] + }, + "AU1WtV86HBWUdu16DwfBJ83UByYGkCB8SvQzTHTGPRHs5znQUChk": { + "balance": "1838.909216110", + "bytecode": [], + "datastore": [] + }, + "AU1WtmsqNwK6JmwMTwgLq4uWu3tcCPxQYV9Pnbp66u5815ncr24h": { + "balance": "846.066096897", + "bytecode": [], + "datastore": [] + }, + "AU1WuL7V2Yih1vvit9x7pjDmemogqLRF9sK3AQxaxTn6kmJBy6G1": { + "balance": "2953.912967424", + "bytecode": [], + "datastore": [] + }, + "AU1Wug5ahm7XT7pqcxnFns69XMbustrxM2WTEasnVf9WZcXXdTGH": { + "balance": "214.914134482", + "bytecode": [], + "datastore": [] + }, + "AU1Wv434Ge6MNmBYnyuzYDHa9qHbZJjr8sEt3LYH6F5a9Qb67RtD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1WvhVJ1vH56N6qWbDxPrKu6xRKayaprtWnUjbyxuwH8tJw3waZ": { + "balance": "700.863097756", + "bytecode": [], + "datastore": [] + }, + "AU1Wvj71GYR8jdh9bknAsP5Ua1jyKCTXhZKpXJAm5s7p4JC3ue4P": { + "balance": "1328.184496767", + "bytecode": [], + "datastore": [] + }, + "AU1WvppTFGUkSFjJugPaSdiTLx2E5M58utDwpCAenofWE8Usjx3": { + "balance": "2459.787008552", + "bytecode": [], + "datastore": [] + }, + "AU1WwDmHM9hXqhm9eEmWwse7rrDatnRCBb5SHAziRKX1PAC3DCyu": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1WwHmjGPHvUdQ2ZFLMX3kGMJiwmGLj5ct4oQok5kwYCWnsRTcL": { + "balance": "4125.156559520", + "bytecode": [], + "datastore": [] + }, + "AU1WwHvLZ44YGQzxBbEf3Gc1bBsyYWR2Vj6u6oS3HXzJfUWSTFLr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Www4CHELmaRSfHqPhJqnEerxMKQzynFEm1oiGBeSLJDxXGfDK": { + "balance": "2499.813220270", + "bytecode": [], + "datastore": [] + }, + "AU1Wx22Wz8r5j8Kw3SDDyYAZugCP2VSsFiX5uFbrN1RUset1RPVN": { + "balance": "3322.244550776", + "bytecode": [], + "datastore": [] + }, + "AU1WxURt5KmEBgt5KonHKL2PkXdwbHR6RCMNnGt2RV35An3uQU1o": { + "balance": "918.795031683", + "bytecode": [], + "datastore": [] + }, + "AU1Wxh5nPxHSdubCfMeZkyCGRbR9N4x4znXXZLCPm9aRac4FJ3Pz": { + "balance": "6435.529209035", + "bytecode": [], + "datastore": [] + }, + "AU1WxvDnNTDbqetEt4AciPgPytRvJUrpQ4nBop6hAKQX67e3EARe": { + "balance": "5505.290533184", + "bytecode": [], + "datastore": [] + }, + "AU1Wy2YEJ2Z9gheUrt7QDDs4Hi3NFXTRpbRhksaVfq7xZZYk1EHA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Wy3WeZdMXuPJrNfRbExXKoCTttHiox5aJMT8DKgRPgq76d6CT": { + "balance": "779.921118113", + "bytecode": [], + "datastore": [] + }, + "AU1WyHMWxgx27SGya2FkWTGSetjgV78P8tCymMeHACxiaYg3fNHN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1WyhQFfokqiNFpALezuvsSyzVDg4yJ6gaZqACqxrKPw2bAcqSu": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Wz9Mbs6Sz2RNLK9JUeDEGFjxLpvSeAP7FjRcYv3DwJAZ23YKd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1WzGdT18QzHpiMFh3BPzecWyhvybf8YyjLF3BcJDbuEp2PpMqg": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1WzPfWXu97UaJt78NH9A7mKb3y9vvW6Hxx5DM2VuJmkQ2hVuCb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1X1QoQY5TpnLyHNgrs95tn74dyjD1sB1bThcegJHixtNdNjYaq": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1X1nr1TzyBy3gTc7UHQyR6m7UmkyAM59HwdgsJsSTvdfgjMpMT": { + "balance": "986.072645528", + "bytecode": [], + "datastore": [] + }, + "AU1X1ozjJBav4StHEAyhzPmcRuXp7zDbNjQ39ad7XJY19aft99S6": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1X1vqQPndr6FVc2y7wqwJwdVeMrTZQSdw8NYorgLs3QUbsy71z": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1X1y9TfSdqRyT9FqbZm6MAZqY5i2TAC2ioEtqPRt1cwyyie1GL": { + "balance": "633.864886988", + "bytecode": [], + "datastore": [] + }, + "AU1X26LucdVSygNkrXU2rnU391Up4TUhbEnnBNAQFWEG8MymeY34": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1X2LHctaWK4b2Liza2NHCe8CbrTsmVgc2kCRyu3LFc6QVzhG3M": { + "balance": "4509.346793062", + "bytecode": [], + "datastore": [] + }, + "AU1X2PxaQu8t8D9fYmwKCfx3LSTpzCJc7EbtZMPQmNQHeE7KBo6E": { + "balance": "0.941559264", + "bytecode": [], + "datastore": [] + }, + "AU1X2Y7pTthiiUzYK3nNQHTHPoQW1Yj4S6a343YZrHFHmGNGVnuQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1X3hgaaeLhhfVAiTYpsfJ8BHXhJTN3LhGYB9riTu6WALLp9Hbc": { + "balance": "1925.437986406", + "bytecode": [], + "datastore": [] + }, + "AU1X3nnPgoyLFj2pFzzUxxwLC5wVo8HxPFdEkKLQm1DovZdhY8Bk": { + "balance": "978.644773770", + "bytecode": [], + "datastore": [] + }, + "AU1X46ULDxG4yGtFKVzjmcDPZyHzxpQ8t7XuzXhG2HEDv91Ftb1J": { + "balance": "2212.900379772", + "bytecode": [], + "datastore": [] + }, + "AU1X4BgK52JbjhBfTt7byCEi6sJJhHECLq1zNMoSwRD6XNJSTGzw": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1X4bwvAjfNFJzyCgmYonmS4zt5S2pPb73wAM2kEtxqy42X8nBc": { + "balance": "4403.261221450", + "bytecode": [], + "datastore": [] + }, + "AU1X4fQt3rfcG4gRAH8qB6otpEe3mS6PKqivbdcrnHuytXQy2eij": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1X4h4c89PttwMMsNiXKBoWYecCKAF7qohSYghS3zqdnMYCekbS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1X4nUGvopspDanodTB9wGqZBG57ZSYZKYn9uwMVt5DB629HARZ": { + "balance": "840.355130079", + "bytecode": [], + "datastore": [] + }, + "AU1X5CAwfXQwr6xDo3c8ByEDJiHbWiRCpKwDbZYPGVKT22HUzMpR": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU1X5SmhMXeEwsWXvNN5ZfbfkEXtLQrTuX1f8XRmzgtipeoDDPcb": { + "balance": "1822.213321883", + "bytecode": [], + "datastore": [] + }, + "AU1X5YPyshrFPL6iVGGubsBTVKVQTT22QVfsFPEA9WrwfUMvarTS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1X5YpzqJGm7oDP7SaZoBFhUMhJhnJiUbB9UJFVA6gTUUat43Tw": { + "balance": "731.099454663", + "bytecode": [], + "datastore": [] + }, + "AU1X5cJ655VDeBJ1U84Femf71vJJS83Q1eBrmTCuEr5xGkSJEnLA": { + "balance": "15.811830843", + "bytecode": [], + "datastore": [] + }, + "AU1X5cacpdVd94iaQJuNJusrJwNoWFztjDvRe1bsDQRBM41vnmJd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1X5ipCsJs3GAknwwz5ErmS4ER99usAGicw3Y77ZXRNRFk5d5eJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1X5tBdF6GBVAoHjtZquyneikY5KHpRXxFbZn2ARKyb6WyiFqc1": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1X685mXWcj2tgn11Eak1wpWrBs9poEjwkkkGXV9rTGBkVRVqKN": { + "balance": "11538.591205514", + "bytecode": [], + "datastore": [] + }, + "AU1X6AbZmcyjc6biWAyKMfUsnN5MVSdDoti3sL648myE8ewMG5ii": { + "balance": "3420.105760685", + "bytecode": [], + "datastore": [] + }, + "AU1X6NveMMEyY3SnuqUZgY5ZwQZdMfF7mVBsrDARKwcEY6Lgq5CU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1X6nfvSP1jtRX2zrnEuDHyHVP8vbrSwrrrY3Ftw4Pm2M4QtGFY": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1X7CTkc4EooqftcAwtT32CnxBpkDmn6tufN7NyJ5Avj9hvECJW": { + "balance": "263.436927110", + "bytecode": [], + "datastore": [] + }, + "AU1X7QdKesUP2zbefxUeCmKAFt5PLe8R3MeVsYqyu6dJgCA9qzGY": { + "balance": "4423.948013506", + "bytecode": [], + "datastore": [] + }, + "AU1X7a8do2NpsquPgnedByMf2F8SZkVjwFZTj5rMBnoq7FngwCxr": { + "balance": "9018.020668162", + "bytecode": [], + "datastore": [] + }, + "AU1X7mjTNruU8EF5AuwzRgW7aXYBeC7mMcRQUa96NJxtXTRn7995": { + "balance": "1032.000907124", + "bytecode": [], + "datastore": [] + }, + "AU1X8HLXo8bcpsuQ1Ne8VYZaaB1LGKWfZBsKVbEnRnYBhi264Qnr": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1X8bH5m8iVyuhvDoNVeGGnuFSrrpqkKv24u6RoHGPJasuJNd4N": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1X8bxQJsPoiHdfp62i5H2ExHvLpG2uSrwiESJEEuob7t97xbtn": { + "balance": "3386.736696665", + "bytecode": [], + "datastore": [] + }, + "AU1X8xkFhj8YuQU1r6L63RzbvudSibXZZmXbzPwvwHhsseoq7aAa": { + "balance": "1286.481857395", + "bytecode": [], + "datastore": [] + }, + "AU1X9EArHxRF3CKCCkN5Li42wsgtu2Ecy9JdWYFUQXaa83pfrwdJ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1X9fZLJsa4vCQBt18smJSMty3deUGNbHTsZfFwuiDDmZAoKmjG": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1XAW43G6gu5SLtLGqqbPbn6bfhq3zrTL2cqmzZARZL5Gkcownu": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1XAc67ASurr5xhfdiZ3yNDMjHE9QArB2x58bvVEtzWACAvPpk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1XAwXC4ktByXmEk8yLgQxRAysNqNqRAu7VcWUDPiBYpSCu5Z3B": { + "balance": "530.602830201", + "bytecode": [], + "datastore": [] + }, + "AU1XBNTEdncHpSnscuTUZKbdsGBJmf3XB51D1rcvHCPJBwqm9crA": { + "balance": "42.120433353", + "bytecode": [], + "datastore": [] + }, + "AU1XBsosjBLcfBTQ69XZMKea93Homq5jpmJJsqcSnSPZARajAYcJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XCTLBwe7gBCA4WwddDXvfsYHxCCn64Fn51gyF39GQy6oCGDHK": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1XCnPzRj7orkCu6NyFSrhLnwhYJrQzDHn45BQpWjUXM1aKGGnW": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1XCzBqwYLu2dd1F2BG5mu1PGCgCpVsPDjQx4UAC2GiHevwUJ8f": { + "balance": "1929.422669078", + "bytecode": [], + "datastore": [] + }, + "AU1XDgepsMHwgevDnzE8nwutGwByTQcdkB1QvhVuskqNnrTfMgc4": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1XDjHTMNwXNSHGKHVt7CPykuhWBKd9RN7HxGNKLPo5iGn1PEPq": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1XDnJw8d74bjGu99avrXX2293nX6bjLeFiWvZ5y4jDsT3ZsC8A": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1XDsNyxQ3x5rAvaz5rUkBwr9wayPnu4sTi14SpCcHXdHeDc1ix": { + "balance": "199.377090853", + "bytecode": [], + "datastore": [] + }, + "AU1XDxcoQpcvBXcrKt4dhRyRm1bDYGH2hvtscCDnk3DrJNz5q2yH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XEcAJcJg7fRLg42foSGxaSK4VKYKKj9kTM7Gdj9CbuaZta6kg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XEgA1MNm3hSZtAEZdiTGXj1saqunSDE4gNcY4c3At3ZbAFkdU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1XErxsweVvZCmfD7MwyrHu1mPeXNB1FffKi5t2ddNoWBsm9Xen": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1XFPxc6GY6htEjDktwn2o9MNhncVJGuw7tps1ovJYwBb5NL99f": { + "balance": "1787.899772200", + "bytecode": [], + "datastore": [] + }, + "AU1XFVoQyoh3H2QkzFNTniyYbUsjWPhb3Dt39RcMhMqqZrufiE2x": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1XG7VVgqcQddLETimYQAcNSEXvJFbhTaN4SfWYpyB6L2SXKfud": { + "balance": "1539.137973193", + "bytecode": [], + "datastore": [] + }, + "AU1XGDh6wMad63vV3yTSBcdngmo2AMpchGaFtVfk76wrEuFQCD8r": { + "balance": "2507.694423070", + "bytecode": [], + "datastore": [] + }, + "AU1XGK9x32fxBJXEjcMcQbJvmX7PdP6387XKuwk1F3GjXFhGgsNk": { + "balance": "2339.726990952", + "bytecode": [], + "datastore": [] + }, + "AU1XGjKNeedhxC2hHZQUmuo73p5iwWTi4G8GFHUBaYdD6NSmTVMc": { + "balance": "3.097790091", + "bytecode": [], + "datastore": [] + }, + "AU1XGmiTcu9qbzqbrNWqRNsAGxwxDKQUCfD842fwUtmzt3aBfJ2y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XGqBQqPLSv5VffnMSjdpNQ12qZbJUvYE3HKA9RkvFszLGjqGy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XGyTuonvwrAWr4pvwP4TF8RaAKxzJ6HXLVWaJdp7Vy8QmSS7d": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1XH99bafuKooTRVizfjm3FkcfCeLyZ2QjWm3ReUVPaDCrVRgVt": { + "balance": "1494.346895255", + "bytecode": [], + "datastore": [] + }, + "AU1XHFUpXXWLgFktzFGi1QKiuFLL6ayFzUqdr2c34qmFFHw66cuz": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU1XHQnb8gCTmNWAubNsFae2W5YtbmEYYqx5EGtiL5PFwyiHigVN": { + "balance": "2455.796767838", + "bytecode": [], + "datastore": [] + }, + "AU1XHqrSho3BmynDqLfHj394KpD1jWYxbxGGiqUrvnrTQyAXadup": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1XJ4GQoeggJ4LpJ1daBLbHQJsFN4UkE4ExHSiSqBALPhZruBJ6": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1XJgrTnXquo73SjrMe62dFgRJJdcbXgy24XDUVfH1gsS72DpzB": { + "balance": "5932.670951515", + "bytecode": [], + "datastore": [] + }, + "AU1XJurnnbTvDUkLzXoKJLWdyehF6MR2sVZKtpwDeFiTgE2CtoaK": { + "balance": "1255.708013186", + "bytecode": [], + "datastore": [] + }, + "AU1XKobC8Qgx4Vx6ZE4hQRLcBKFTNtruRRyeHX1PwA7AmMV5R5Sx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1XKqGn3AyqzqgpeemyTKDW35GAUqzLWrJ7PeFEVjg2Nym1Gs2W": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1XLMZeiC9HcVfempMc55m3D9mHs813VPik7oLcpS9mPVSv4Byd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XLYgiKujmUAmiu9HRJZmk5D8c5JRKaadYL5SR7c459B7syHA7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1XLdMh7dSH9kHrDTErzDweZb4acvkxkvq37Das4R7qXNXsyt3M": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1XM3Pn48ftVWbJgkT9RXZk8HTTSmAcJyFhxA5erNwRExtGguRb": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1XM3XDw4UUoSbyacRQRJV4A3BqsgrDdLCwDNG28mbdvi5EtFcJ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1XMfkQJMspkERSFkhEg178o7unG7VYgR7x8eUQq1zxz5m87Vef": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XMqJtmzA5P1XJUME43idKtSFwkW6iVn8baDcs9qHa21jo7Fei": { + "balance": "588.739367485", + "bytecode": [], + "datastore": [] + }, + "AU1XMu2vAB2mXu9nrw3aFe77wfJaD2Q8SSx5FyBq4jw1Dr8CWSX8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1XN3gNCZcxajcd1bVAd27jY66g8hoveDinRRJhzYUakcBmdUtX": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1XNb7mLXqav4HW9s8d5FVcqUw8CC9p1gW4PjyewNkecTMHm5Sz": { + "balance": "3508.181799231", + "bytecode": [], + "datastore": [] + }, + "AU1XNntnphoZM7snBj3SP6YPTXCuDUnjbYvBt5kREre5CfLhMfq4": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1XPaLHJMLdP2s5n2HjsxxFi4DqvYFwzaMdye3cpds61G5uKTf8": { + "balance": "1541.540499299", + "bytecode": [], + "datastore": [] + }, + "AU1XPax4frmQdwN4yhYR97EJeFXva3kcLifY6ioTRg5uffdgkyo3": { + "balance": "1031.072345914", + "bytecode": [], + "datastore": [] + }, + "AU1XQ4ATeVCLCH1gUeqvcUWhXgcdqyunm5EkatZuqhpPbxSZAVmw": { + "balance": "1666.615853057", + "bytecode": [], + "datastore": [] + }, + "AU1XQp5jMxnGo3SDekiDArjAszd9NyHpS2ifU227DcD71TfWBpQQ": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1XQt4A6zdiDuwB4tVvbHa3ixWm8MQvTHFC7y2sh1x5Ghq2AT47": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1XR9aPtdA8ARQXwx7UfRFQBLErAFcGLfoXqgfvCzMFiGZwVdnJ": { + "balance": "657.823736412", + "bytecode": [], + "datastore": [] + }, + "AU1XRkwBfRwAcL4g8EjPVjbEbERYnLhFzpTqewvjojiicFNjKRFx": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1XSBwCsZ1ptNBBmsPkaH6FP5rGHhqAT8SMW9Wwt1MEQLsB9Rwm": { + "balance": "5022.787792344", + "bytecode": [], + "datastore": [] + }, + "AU1XSJa3sScuxgimVtDiNT7S74fGwTNGTJZ5kWFanGW8aVfFLi9Y": { + "balance": "4725.998408527", + "bytecode": [], + "datastore": [] + }, + "AU1XSKgLv7jA5vwc15xXu5QwAYxn17ZaDfLQgrbWuVE26yaLuVzo": { + "balance": "4731.714178810", + "bytecode": [], + "datastore": [] + }, + "AU1XStVDcseVnUV7YzJa9rSAkHPyWqGPb8udLS9Fesm32LfCw9r": { + "balance": "268.630565741", + "bytecode": [], + "datastore": [] + }, + "AU1XTrmFMn6CKaBsRLLCv9ASjRgvtYaE7yVqM6XVzs4VDxS2U23v": { + "balance": "1703.531589517", + "bytecode": [], + "datastore": [] + }, + "AU1XU7Tk61kiFrPdWbzFhdQuUQ3JvnUcUG6VxZC7AXGJkD3H7szv": { + "balance": "23403.424914220", + "bytecode": [], + "datastore": [] + }, + "AU1XUGTZRZsuKbYD8EBKnVaKXR2o7ye9wcrkixXwhuFqJViufcin": { + "balance": "1324.400343376", + "bytecode": [], + "datastore": [] + }, + "AU1XUGXYvGc4AGjMj5swJexdRGZpxMae739CZXJ5ff7KNNJpmPa9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1XUYAggs8X6E36CaNx3G6wezstJQAxnGd9NWc8TdbsvxaR758Y": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1XUeJ2f2kkbnNPQ7fKi2dvFMRS5cXJiRrR1ky7Z1wg8nbSt4rx": { + "balance": "1583.843368068", + "bytecode": [], + "datastore": [] + }, + "AU1XVCAiq1q9GiMvTp24KBXRG8HLuXhETfhYFGHkCXvTMCinAC8H": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XVGmeHSm6gNyDqf6xmfApMjgFbQsPNHg1od2CresJU29uC4Ch": { + "balance": "1854.262335080", + "bytecode": [], + "datastore": [] + }, + "AU1XVTBPCnDxe94n8Qny81esS5Nk59i6HDHsQjTSC6Qe7ngC4cS6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XVW4RkaajrYfshaRnnavPU17fjmoDtMBo3jMZTUCbYMc353q8": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1XVeDv5LLLu8SALhpdWhYEFw6JNiTaCt9532uPkTvTsSWXuXg2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XVm2o3n1BysC7WFK53q6hT5Rkp4ngMNkgisgFnWKt7LNvwXmy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1XWG7CECtJQrVL3HXs642NE6BrENj5EQjroZkhwnUDPn2vT5dq": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1XWJW8ohhLYAJABEY5x2b9k2gjv5781udMsYvXN3j5zBujVa6A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XWMX4AE4ToUt9h5Nk41BbdK8w3PdmLXcpWGFLGLVg8McppzkP": { + "balance": "693.456641840", + "bytecode": [], + "datastore": [] + }, + "AU1XWRrT8Aqa79CBdHcratLMEk8p8CcWBwXcExXzGzzvtzXHebAL": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1XWncajBuqeX71sdgUyUUrbLjUW5oBtkaqbr3McJv1GQ2i3xPY": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1XWnkgEDYAMCh3RgDAQfGc4DQQxqCovTMDaFM5Rn4sZkryF2bE": { + "balance": "6321.497399549", + "bytecode": [], + "datastore": [] + }, + "AU1XX8dnkAxtAWbv6JcNgWpjruvvixegerzY8Y23s1wJvubruufe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XXDbSWiCiWYYhqZx5G1EGiQhcbm41DX4Vmjj9qA2UD1hfj12f": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1XXGaHAiSBqnwGwR5Y5U5tV3ijRnME6uQULKJeCmhdMHUXCG1A": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1XXSmJVkCoDxiStygR5uoGKCSE81EQtshHKf93dspXu42d6hcB": { + "balance": "2642.156747985", + "bytecode": [], + "datastore": [] + }, + "AU1XXmnuzgLQq7vkMnV7fduWbDQseJJepdfCBkMHp9xk2ereQnWA": { + "balance": "3755.214829399", + "bytecode": [], + "datastore": [] + }, + "AU1XXprh8oVzmzaCPSeD3R4KrViuizZotGeVbJtvTxBgtkVDzWzM": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1XXrFZkfrFSrP2ommz2UuDrWrNWuhxbTv2nmCvJ8Cp9MDi1Zw1": { + "balance": "2084.727282734", + "bytecode": [], + "datastore": [] + }, + "AU1XYTL3trEirtFqED22i33797VPQS7xQV2Rx5pf7NZqLuTo9MS2": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1XYrQPqb2fAryWLJjL1qej6Heys81NheRKPyFnNuiadDYwK4Vy": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1XZ5yfYGPcnWRhriZvTjzxFw5Yc2UwBEjNELBPZAF9WpDTgojp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XZVbEv39oLA7d6XKEg9LBMQvGpAzF9BMjKdvVo8qG3Bvwathj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XZWCGP3cQA1vQqobjqv588oHWQzFwTgJkRuRJFtVrUYQF66hG": { + "balance": "3102.483837262", + "bytecode": [], + "datastore": [] + }, + "AU1XZgDSJpQnhLswjaB85tcmU3f19BityB2bj9DRSU9BK2apmRRU": { + "balance": "2123.571307502", + "bytecode": [], + "datastore": [] + }, + "AU1XZis2Megqrn6KfSD9aGM5VHzc5fi9XqWVSQaXnMsbQHaDZ2nb": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1XZjVntK4BMfbUJ79nFJRaPYq2xXNVqkJFEyQ94WkUrLxEAQbh": { + "balance": "531.076814365", + "bytecode": [], + "datastore": [] + }, + "AU1XaNSbFv363W8SfaHfXCTjBWCAG2HaggsDhmKEsgM7CmiqAs7": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1Xab5Jmi6iy5mCtKhahPZmahhSdJurxQqty34dAQCL7iHJo659": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1Xapv8cAJoMMaMK1yLmUCyXRa6tg3eZ7ta4Kn5gRhyNRZe8uqv": { + "balance": "2990.202410382", + "bytecode": [], + "datastore": [] + }, + "AU1Xb2SwG9R4EHwSrHmzDFRFiVkK92bYPjSdnCEiCQXnp5FX7KBA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Xb4NFbe4ZFNUBXrRhzyryyo9rEBWPZw2iqGBZvduvtM5GT3kc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Xb7XvkfA6QowaoN9WpfVmvkwVJgntQPT8m1sCyeF7PNoD3BLW": { + "balance": "243.407656699", + "bytecode": [], + "datastore": [] + }, + "AU1XbX2PriM2CCoL1gAbib6zUSnvc81qaaGz4W4Yo9nGDGszypKb": { + "balance": "1186.569404668", + "bytecode": [], + "datastore": [] + }, + "AU1Xbpx6VzHLEzSgjMsUTJvLtaJfyP3XxkGP3AoPPgzKpya4PPYj": { + "balance": "5590.744834687", + "bytecode": [], + "datastore": [] + }, + "AU1XcSTfvawPePoUzoY1FAizR7L2kAJ7txiFKWjQ41xJwgRgPYhy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XcotqBSk9KWuwfcDZNSqdj4VbDuApMCSstAGtZsmFtQK7gxU5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Xcxoyqg1cpRy9bso6z9DfM1fjD8NMFFRZR8sn27bNcq1n78Ss": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1XdKpC3sd1ecCHr4G2G5WCaDscgdgvY1Db9Ce3NmUVLhh5vkEP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Xe26wdYJhSUBQiAmKv1BYs46zWZN1JJj6vUZDzLCQ6ci4h2D1": { + "balance": "4322.045345894", + "bytecode": [], + "datastore": [] + }, + "AU1Xe3bEwZJCnWUM1VPdGtZu3KQUtSbp3ZnPSaGPhRb8SiQN1kaT": { + "balance": "5598.684709230", + "bytecode": [], + "datastore": [] + }, + "AU1XePapg9Na46vU2pyn38NMmNphVdNjx4fL2JwejfongvGTxdD7": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1XeUAYy2tLmGiKvG8P5nk5efzR6cG9HxZ1NZukzkyzaYVWAFXk": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1Xee5vHjnF2hfokEcfUEnEtVFaGa824NMEy34SmvDpgH3PVmcE": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1Xf6cU6iBDjfg1g525GkKRssBfJEMugFwXtMZo9PwBkKPU353a": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XfCjUgbsHUP5k4rVSUi45QjHLLv9eoEyoZKG4dg5fMqMXbxwL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1XfVPBAhUd6UoFCc6vRLc8wHhac8uYFLevN6PXoey89EbRU6RR": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1XgQrnq5n5FSpbm3v5dKNRC7z22Gh4DA7ywjjnmcDZS4SEQzBV": { + "balance": "572.524023185", + "bytecode": [], + "datastore": [] + }, + "AU1XgdMCAZ7evDZhjeuuqkdz3FN3Wctbj1W3PV4etcj8Mjj2t8Ba": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1Xh16tybKJgYHswcRBdUkwfT86ABXAFWuVF6q8ZrJRfQUQD8T9": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU1XhdZCUTtrEA6d8eLYujxFbLreLHCd3Qc6TJoSUigQ13Z1MLYd": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1XhxJ1qtMkvvmx22VhWj9yfKhgDVVfKtmCuWEtQh1rNB1aA5M4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Xi4AwndUitRCtViDX43F8ZWxU2bguT3Tx5mbhZcA1dCY3Bqvv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Xi4CVkesqbVMJWCH1d5E3XbdyBwuSArenouneCEYCFe6phwMJ": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1XiDNENyu8B6f5TzFWxySQdNemBwFzX8p2mc7BKFDiT65HpSBC": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1XiJ1Nd16TwqgQyYtn1wSRphTneEyKHa8CdNBLqMcEeC4wFaB1": { + "balance": "3681.209277840", + "bytecode": [], + "datastore": [] + }, + "AU1Xieg4y3G69P5HPM9QFJ9fz5NVRHimUdMZ8CKJHwxSLzvBbdMa": { + "balance": "606.616099794", + "bytecode": [], + "datastore": [] + }, + "AU1XipxhhqywnoKAuwUmrvu9B5tZcnRWQvJZcvrAFzgp7swiRUC2": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Xj9M4jASqiXaTc2NS68VBtDXHyuJQWPKBJ2quEkcwDajsyq51": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1Xjc1XDxVD43FL5K6xL5bRnMFMN8CrA4DZbrKoL2TCpKD1s2nd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XjnbWQFGXJVHwHhd41Xe4ps7vTwBEeMXoZDR7x6tP5QLGznpG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XjrtrE7aHVLxAKikg5sanWChyW5iCitqedt8x1icQiXzQaJtT": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1XkFc1mYh1kkTDeR8hd8NSsNSF4GW8u6KUMrvDJCE9nn6B3kss": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1XkJxdF7peSufYebvzMusPJU8tvTo7oqUBxb9f5y2DYHL3evt6": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1XkXCbG2ZTG4PjY9r1adU67cpimUMJcnMRJKqGzPdKyDgBfSCh": { + "balance": "1270.055576947", + "bytecode": [], + "datastore": [] + }, + "AU1XkXRJtTjikYdZfonfKyQgPGmtAtDSGXG7bz9EmeU9L4YTFsHG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XkZEvE1aztrmTs7FnGayALjM5ZdtNieKyEuGjapDw8Cfegohr": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1XkxNwascf9JhcVYSToynUopKb8tDiCPe6twDUeFvT3wcrtKrw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1Xkxn3rG63Sfs2sUcSvw1K7icBnYRkL18yXh4mtMCtLzCAi8XV": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1XmMNqubfEhiiawV9y4SDFynZzRiH3qBTRJ3298qDDM5rKwRLe": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XmPxD8URFEgUKevYJBR9qDtSws67iaA1777V4fzFAnogtppKa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Xmm7FsBwCoX6UHocoz63Y8h98Gz5DytxV813pWmqQLT5Ky75r": { + "balance": "1377.272161064", + "bytecode": [], + "datastore": [] + }, + "AU1XmtbfmucFc82NVKyUpsnemmDqinN8D8VxS9jZnrgh51EBFX6H": { + "balance": "2523.425274143", + "bytecode": [], + "datastore": [] + }, + "AU1Xn6ibcuoBgSaWgNZe34pjr3z2QmyhDD7URhV4SGyqdUQ5MxrF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XnLmkyTVcjF1iHTJpek9ejnXbRcuafJxitr9DrThyFdA33rR7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1XnULni3PNdZSiQvHuAwbzSm5sA6kwRysGcBYAinNL1HcMXegT": { + "balance": "2755.724880489", + "bytecode": [], + "datastore": [] + }, + "AU1XnhQQqNdGfo6LzPbbngp5HXF5TgzESL11FK8okbev5tWp3oBS": { + "balance": "6174.205343369", + "bytecode": [], + "datastore": [] + }, + "AU1XniDrvAZn8JjbZrsTuKoLp8qN6HLMmnJ2mn7DVYXScq71ZKAP": { + "balance": "3189.415378214", + "bytecode": [], + "datastore": [] + }, + "AU1XoJBq9EmJdp9RsFg19tUNSzkhGcbtpFnSUyWpPaGSvcxRUsna": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1XoVTE2syoEPHbBeYzngSqYJCU35xnaZYnL5ayoFw9wkChz1MC": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1XokayGgp8MC85nGYbjK56pdVArb3JEAJnTAeSDoxNaxRZTXow": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1XpBMgLQxBfumanGcmTXKiKZVVgwe9vz1i2ctzQMRW5qEanr6a": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XpLYLCpoWoRB2F65eRTKHeGz89dnvsp77u6V1uxdBKY1YxjJe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XpPmzmS25mGYHe9ByPRyjq3ykDB1cdMCEzxKogV9ZZWPJYnzE": { + "balance": "70.276121436", + "bytecode": [], + "datastore": [] + }, + "AU1XqRuqphSMn7nKPZCBzLjHXCeo84sBEVDYUUhFfM7MoUc6wRcv": { + "balance": "1684.556001191", + "bytecode": [], + "datastore": [] + }, + "AU1Xr2axWs6MFZHMtDzKmKdZ7q81k6ffT5AzG6pT8u92dx8w6SUP": { + "balance": "2018.919580082", + "bytecode": [], + "datastore": [] + }, + "AU1Xr4B1xpTPffL7T6t5TTPVpvAaJxiSdpVCkpUcHsdWqXF64jnV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1XrKQFS6moM873aQEQ21UER4dERSPAcsE43ChFin8piYoYXrRH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1XrRXzsVGCpB9whs9c4DhfSeMm5PJq2bt8fC4NRFffCKQmkdbT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1XrYgtEKmd5WDDGoHh7vbxL9nuAr4GatH9Ymbi6P1Ehp1VUafL": { + "balance": "808.271651122", + "bytecode": [], + "datastore": [] + }, + "AU1XrgBadpuonsNJGM6m5ZtbN71nXMw1eJ9QmKsjJzgBJkSduXRU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XsT9GjFwZ93ChHTpohXetfAn4npUnQNqDbeUPcfevAMHLtPhE": { + "balance": "1256.208189026", + "bytecode": [], + "datastore": [] + }, + "AU1XsWKQWkif7S19jVzKYvBDYkD8RBYbnjKdsJN4f3DYzRmts3gE": { + "balance": "2025.631532151", + "bytecode": [], + "datastore": [] + }, + "AU1XsmDHNS9EhGHuorsHD5kTdjMGqtVPPHRJW8ju2puif2Vg19Rq": { + "balance": "70.957095710", + "bytecode": [], + "datastore": [] + }, + "AU1XtLVoJU74LTUTUA5P7ymazBCPZnA68ozn93JM6nn9pv9qeZeX": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1XtWPD8JqkdD8g8xMWkor2DjCRiiLbn24BMCHFHWR8b7gW4w76": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1Xu4829EZPxt3VxmjobFn2BbgX14NJWU8TFGvBLXC5sk6733iB": { + "balance": "698.758281167", + "bytecode": [], + "datastore": [] + }, + "AU1XuWYasd4KqaP6miyfbhisG4VBARyiSMRC9CpnSbqbirjCgMA3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1XuYswGAcDAE7EVdxAARjZ4FdRESdDchF4fFPHwpTpybb6brqM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1XumihkQTmRLNMxcGaKQx4t16A2kXPH798CAkyANbMTZMofnsh": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1Xv63zANiNujcAEC7RoHhzMV1h7fBU6kXMFVP2WhxUHWghWhzs": { + "balance": "1001.471859236", + "bytecode": [], + "datastore": [] + }, + "AU1Xv9An8JYcyzW55r53TLUCYQghF9GxP5Jsk5hvEw7qe1Pw2fdD": { + "balance": "1613.252061375", + "bytecode": [], + "datastore": [] + }, + "AU1XvPoUU7ohFrBvC8xHX9JKtZcZe2k7XRfd2wNMpAsWtpeMjZK3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Xvzj9zfrpEbCaJ7Tt4fu6tGejp888e3BHwrJXrYyEAUrHShHx": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1Xx2txYy6AuUVgwhGzij4TXhqW73WN4WtKfK2ekXZnSg2etrYB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1XxfnXKe43KjA6Wb28hv7d4pQ7smLoX5irzHSiRkHdWL9arSm": { + "balance": "80.473273050", + "bytecode": [], + "datastore": [] + }, + "AU1XxgZBMfKYHascyPnaUytggXL37qHknZvKG4XAv5VXCBz2vvMP": { + "balance": "934.945012520", + "bytecode": [], + "datastore": [] + }, + "AU1XxnrvVeuyKWymb2tD4aqtEVrwXWb1MED3TbE81M5zWvNqfRMY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1XyLqtSqjKTHELsy3K8RUXZF1rjJmdpRmr5nm2KPxJtQ4z6mUe": { + "balance": "1374.051144259", + "bytecode": [], + "datastore": [] + }, + "AU1XyZ78YFfhw4SvA25ovjmV4vpeZ2qoXwwxTDRKs7w2aUqt3B5": { + "balance": "2908.293823959", + "bytecode": [], + "datastore": [] + }, + "AU1Xym3pbPG2uwpD8XqV45PxtAGDzvzsdUVdxZVJTnRUpDWgRBHs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XyqeC1NwGjeXT1HbvU3p4d7Fj3Y3pZ7aWWomhmawSjhgQFTZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Xz3UWfnwKc12XMPUTA9pU4dexKCX5CJi94cFuvN5KGeKEUPns": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Xz5Hi5TZ3j7C1vBkHqaZshZa1acZ2nNXRtDxSbGugWFkAkRZx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1XzLW7FP7z33f7HpCQSd2Ut2Yavph4qhR7BWoYBEJ6QxnMACR1": { + "balance": "2053.864220840", + "bytecode": [], + "datastore": [] + }, + "AU1XzN1Tm7hztZXpq9FKnpxiuGw1V7RLR44zUnAxksyy3Xm9qYc": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1XzkUGFSR4azw5gtfibhg1Egh6G14UBpYz8ycGtACJXWouq51L": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1XzzyRCHh5S69RzeChVPUz5XgpAQt6AMi5UYEQCRNjBkcrzgVx": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1Y13tESf6zoUJ6de3yjmSWeCmGHetUqcwqes5jSbVWnDkZKkkM": { + "balance": "4207.563032269", + "bytecode": [], + "datastore": [] + }, + "AU1Y18e1jDQH5trEVQ4x8qVeqSiS1sFhsJk64FnNo7wx9Vgpy14H": { + "balance": "2656.647442720", + "bytecode": [], + "datastore": [] + }, + "AU1Y1J6DnGV4mjBvhMSymaD1BzpEZsWmfJgf2maMWUFYkpCZy1u6": { + "balance": "91.085260797", + "bytecode": [], + "datastore": [] + }, + "AU1Y1eAxXyToW9hfKst9sbUQY2Z3n8ypsc5ihC2xEqHfAQeUJNyk": { + "balance": "3352.330714592", + "bytecode": [], + "datastore": [] + }, + "AU1Y235BJsCmGFFpUhq8kb1Dnpg5uqcubqrt6APGYNcJEq5fqaDX": { + "balance": "1488.485817732", + "bytecode": [], + "datastore": [] + }, + "AU1Y2ACGT9Uiw2zyZDtEys4m2DGLTE9vfv4xCX3W9xWm2oaf7usg": { + "balance": "82.634339606", + "bytecode": [], + "datastore": [] + }, + "AU1Y3FRLc5LWjREa2tGB99CNg19M1ErPoN4oM1xoKHzEdgXEaq5j": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Y3NFN53wiBQLXKYkVwPYBUVyLJ9yv7VfBpbBPVTaxBQUEYFZ1": { + "balance": "1137.365876031", + "bytecode": [], + "datastore": [] + }, + "AU1Y3iugm4v24kKGvqQ2s7Pon6ufsHLyXA9cGZEYFeRCcJ4Vc52j": { + "balance": "4852.451817249", + "bytecode": [], + "datastore": [] + }, + "AU1Y3x6Ke5EGCQQYSLZfstzevGrE9dxkLReawwjvjuBg5idkCWE5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Y4LFASjbYQwvf5D6a2oyasF3Rc6uj6HmqWhkCwu7xYW4pL5oq": { + "balance": "1860.441389894", + "bytecode": [], + "datastore": [] + }, + "AU1Y4Qoaxims6vFsdN63XhdkCXrsLyXuemLB4ze4XtoEqg21i7iT": { + "balance": "574.863344282", + "bytecode": [], + "datastore": [] + }, + "AU1Y4WwuVfauUiKyvBZzDNfwbshTBe4D8V1GBkbBr1ZHH5K7jMcs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Y4YA6W8qjwPb16szNEWY1B2cotKKY7xphw6qoDnjZjwJqHDQt": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1Y4iwQPXG8b2Xu2uwDw3aqJWQjwJhTuxbQ9vYAfUpR7JLeQeBA": { + "balance": "3660.275380865", + "bytecode": [], + "datastore": [] + }, + "AU1Y4kCYEUYu2WmXKLAocywKEGHmRwTEEdp6e7QC3cms5Recxg9G": { + "balance": "1588.684637831", + "bytecode": [], + "datastore": [] + }, + "AU1Y4pUrbFAAmEMNgegw27Q2zNqiJBsH1wJNRjwHWuxXCYCCFWji": { + "balance": "3575.211724030", + "bytecode": [], + "datastore": [] + }, + "AU1Y5EoVjskQR7w7qvjw893vrneK9dcDoYSfyt7WPGSjbPp28b8i": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1Y5q5zvPZyVrjc2yHSXAwuPDYg77B47MG1gnbEyzzKQcrKUpGu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Y62X1ydrshPb3K4huNrbTy72TwamwcZiGR7kr8NT3LYZ3uUxb": { + "balance": "3330.465261959", + "bytecode": [], + "datastore": [] + }, + "AU1Y66bksiq72WQEGMhomjN9bwJEphczM3txWooXq41jstDgNATj": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1Y6fCZoUabupzr8daPH9dNZbP328tvBZJ1w3jNJTgJGGLoJ5QJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Y6u7EWABVJj9Y5RBJYuV4UYD2dtH7TjFZLmyyaf85ac85JonZ": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1Y7JaHEo2pB4RnuKSwsMVLRynJqrr2kMCbXkCBfUKyyM87hhVH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Y8JX5naf4bfCejiHauXuTjBfdSKwAywmy5uUC7cmveykzZLzq": { + "balance": "2271.517746672", + "bytecode": [], + "datastore": [] + }, + "AU1Y94oVrvJJXZxffQbSxDXXttt4PF5sA2Nv1donVYmgMRp5L9mH": { + "balance": "699.266069340", + "bytecode": [], + "datastore": [] + }, + "AU1Y9F2mUPXA5n5fZkeqc6t5DwLQqHzpuN2mGewsVxA3oZG2UXpi": { + "balance": "2004.831484674", + "bytecode": [], + "datastore": [] + }, + "AU1Y9s87YuaFrBbHeNBfdn2aszjM69yBHTzYiwJreTV1HERezWum": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Y9u3wDsGM2bkW9zrmkf4iXgVdvNL7xjYgqQioYmazUPzXU2kp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YA2Mu6XDvrBsWaRtDd87fVQLAozStvnJFqvvoQy6r4JFWoX52": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1YADu69jb6eWH7jiBjq7VQYSKNAeUurhJDrVffXJTSC9QzhME2": { + "balance": "1446.513169865", + "bytecode": [], + "datastore": [] + }, + "AU1YAXM4nHtCHQe688hPCtzQT7v45B5k4HP6Hk76DJc8kbVXWXGa": { + "balance": "2491.730310069", + "bytecode": [], + "datastore": [] + }, + "AU1YAr3LPhXhguCFXBPz2eT3TvsVHr6ZsEh7MZzjP1VoUC7iuc8U": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YBBPLDsUKH8czxppa6xcn33GXRJajpr518bM1QVtjPtWtLrvu": { + "balance": "4779.879988912", + "bytecode": [], + "datastore": [] + }, + "AU1YBJ81SXyhmwPe6JyVPAABgXpkUwuQDdhMCtUer8LVyE1KVeLo": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1YBSbFxyK6FeLer5ZzK53yFgeAkqffFWkuUMMVjvHeov3T2AZe": { + "balance": "871.443831094", + "bytecode": [], + "datastore": [] + }, + "AU1YBjy54mNYDKLBMaCHK4hJfyJavJrkrhCs8phNPwsuvmZtnuLq": { + "balance": "58.193061422", + "bytecode": [], + "datastore": [] + }, + "AU1YBvWk3ThyiW3iooyxioDeZMvy7jQAkjTzmfx8eyzafeKWtZnj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YCGgVmAQqevvmHzJwnxMFmEQG51NeVhLLgyGGQpobnwuq46ty": { + "balance": "1262.646086145", + "bytecode": [], + "datastore": [] + }, + "AU1YCR38tZXYi9QZAnkbWPBPTqzoBTYeAL334umDUwsyQihVDVHH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YChACk6WQeYeQwhq8PfD8ytnRdoJWPcjraYBJzn4YmB7qBU9U": { + "balance": "1449.894808347", + "bytecode": [], + "datastore": [] + }, + "AU1YCsoE9wzXdkryv22rcJ6DRdQdnwJGuz8rfGcKGDFS268wPnYL": { + "balance": "1077.614906743", + "bytecode": [], + "datastore": [] + }, + "AU1YCuiUhGVfaXsKYu9yoxiUZmxKPsQpkbvVvADLtLqVg9fvR4vK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YCuy4dzTXFcboZ6AUCMog3dJWuVudV73obP6Lpyrz2egBKhFy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YD1rMpePjtLGhqPpA2z5L1MwZmaUhVCf2k6K3wYtf4G9mcwSQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YD8xARgCTEiWHfttMR4CBhJF1oHtTg61jPTMpAkWMJWPmc6p4": { + "balance": "49.667792453", + "bytecode": [], + "datastore": [] + }, + "AU1YDAoEWE6pX8FtSJKon9DNtt5vPte2s75p8A4d7QtdhVRaKxH5": { + "balance": "1544.200891056", + "bytecode": [], + "datastore": [] + }, + "AU1YDAqVhEpLY3Lig26mBvckWg3a7d6qFX5LkySxFXZV1cQvJyxf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YDQ3yMAL2iuRCwG1E3GezjNCXuskzLrphT2xWwLLSiYVUiQze": { + "balance": "768.652514759", + "bytecode": [], + "datastore": [] + }, + "AU1YDSxSQ2KWaLDNHo1AjkBRwmYjGKWF5UgZMA4aPVJEVrGS6yiS": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1YE6g68QLJAWBuik6WLkJnjzk7ZRCuoqSsqPXfe3gVL7qcqZsV": { + "balance": "1572.371578047", + "bytecode": [], + "datastore": [] + }, + "AU1YEUpHgoYet3kWtBksBqcy4kFWcgFb89VzsEAM723sQfnq2DzC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YF6hz6uMdWNz1utnxnp5LoEddTR9SwWZibbkfjhMRwWDc65Hd": { + "balance": "3829.952863133", + "bytecode": [], + "datastore": [] + }, + "AU1YFwTw6DmsX2w9s7RFaD5khwMQ2oDF88uQiveYuHDb5qR4iEt2": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1YFyAiXSYQF91tvbjtNZ9qtajyeUxderUFvhu1GnpFTsAVDMLr": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1YGVCs8ZsHGpN3JHXHfFCMGVwqC2YkMz8zAXT1gCkb8RFGaee3": { + "balance": "38.509400189", + "bytecode": [], + "datastore": [] + }, + "AU1YGenPx7ydawV8vJxWqae6PWv1g6RBQGvRbkxLEnKPeE2S1bWc": { + "balance": "73.432343234", + "bytecode": [], + "datastore": [] + }, + "AU1YGp3N6gH58gAVf7HesVdspu5AcLycSzBN1fMndXGyYKW2vXvb": { + "balance": "2087.641515796", + "bytecode": [], + "datastore": [] + }, + "AU1YGwPaUbKJ3D3UqRAHWzwXHkqbxrFEsZ6i66BwfpWvbEH3U67E": { + "balance": "1966.792482278", + "bytecode": [], + "datastore": [] + }, + "AU1YH1EUCSppsXZ48kqbXmG4Pt1KbXSismUtsa1Nr8uZb1F5rwnt": { + "balance": "224.882157104", + "bytecode": [], + "datastore": [] + }, + "AU1YHBVyC3pNVh8sNeL2nWkWtFP8bgsT8swbSTTaf43NyRsPDoDX": { + "balance": "209.697935922", + "bytecode": [], + "datastore": [] + }, + "AU1YHnZ78UGdmtkr1UtmsTRYwyGuGraTQMjewFHLrVxP2khc4q4F": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YHo3kdvNPFKqnUnyaucYdkGPd54AL1PczH4oujW4EVULa37e": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1YJ1Wde4o9VfNAskD9YFoY4jPtCZRrjAr35qMVb9CjJdXNfPSZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YJCkpoiMQAHtfWqZ4iDC3ckBdTqPgDfq5KH1nrq3ennFTLKqw": { + "balance": "3839.987830150", + "bytecode": [], + "datastore": [] + }, + "AU1YJGyqadfZHCfExLv6vZdgYjBxu4c8VqkjVcqE9a97Bsh3N1hc": { + "balance": "1674.406604981", + "bytecode": [], + "datastore": [] + }, + "AU1YJSQxxMG4HLxKFdR3iTb71KKurjBX3FQ6UaCrWAs5KJNavNvB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YJsxA5TDm7D3duYKkEeoaeA8sZ4Cu9eFRrMMRVLEzSXrPUmSh": { + "balance": "3506.795175346", + "bytecode": [], + "datastore": [] + }, + "AU1YLRzdXJBHVEbYSq2xGNwd91J95WADnsz5y9xpkF6uRgJbYLB7": { + "balance": "4685.249315152", + "bytecode": [], + "datastore": [] + }, + "AU1YLV6Lht9Jd2kyKwCTT5hgEquEsRLsiygism7W9JxA2Qf46Jnt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YLm1dWSyCYTqcydTG5nmHYFoyTh9TtHUdG2cvL8JWZ6NbSZ7j": { + "balance": "1071.443006387", + "bytecode": [], + "datastore": [] + }, + "AU1YM3gTRqMzKL66PcQpHBTd2n3g1u7GNvkLcvXSd4gZoCaX7CuR": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1YMEfYS5BxpWG9E2w4go1wZ39BVd9sjZc7C5GxBArP9KBBFysS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YMGP7fHwp4ozNQe3aJRPNmN8yF9j3mAxMYZfxA6McmrHpqkQD": { + "balance": "4811.503985580", + "bytecode": [], + "datastore": [] + }, + "AU1YMKA1N9LyeBcvgFfqhbz2hbFT9mvAbH5edDdeu4v3CSo8uQtA": { + "balance": "2072.062952495", + "bytecode": [], + "datastore": [] + }, + "AU1YMQ2REahyhxdg7D4ddwUpmtewubmbot5NN94LZjuhvr48LC3W": { + "balance": "2826.232438306", + "bytecode": [], + "datastore": [] + }, + "AU1YMZzHeSUh4CvKVLNwoN3jTwNu1gfZFVXik4oCbfXvS1oGSes1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YMsiFeTb9te6jfwxbfwCaMjFM4PNMR5JRMAcjWSSsCLwgvG3T": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1YMtPzFeHAcfKLM2DLck6wCRgoJGgU7TYwPYLN6eMFFvAoBMN1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YNNb7tRLgK8sjWFxa3uzDkxnUBMC9X9QQaVhsG3uP72Po7KJZ": { + "balance": "929.331863028", + "bytecode": [], + "datastore": [] + }, + "AU1YPKg9ZGdS7xoNBWH1JbUhvXXPgVLGeZD5nxnfe53QEYZXeGuS": { + "balance": "35.421036083", + "bytecode": [], + "datastore": [] + }, + "AU1YPXx7cxnqpNZ2LUwXMKZMmwwbZPsxQ3E6iLK26oMyp2ejVoG3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1YQ5itamwP2QEHgvLUBhQtsSavUoG1NitQ9SwTyQUJre6SDFPC": { + "balance": "671.394734333", + "bytecode": [], + "datastore": [] + }, + "AU1YQ8SHQ4RbCY1d6dSLKNvrPDLnw6rdeJr8LZ1SxGsdRBCiVhdf": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1YQQ2vhRDUe63794FisHQ6R9gb2ot9ZWw7MiiRPEoJaott47ES": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YQwAygcf9GobUkTdCxqhdfrV12URZ7dxkSwHrdqc5avzXfJ2H": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1YQwuG5SBckbvzPGeFp2Cntwd3TuyZEEasi43tHZxKr2Ns4BX1": { + "balance": "1136.229867656", + "bytecode": [], + "datastore": [] + }, + "AU1YRAXecwRkshrJ6YFLKUvSUGUqUP97Ptoe4Corj1ziz5h7WSj8": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1YRMBg7n3vjq3qxDgfXZaCBW6wU4M6gyTQTJESKFAzpqdJmw5B": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YSh8H2BLmNELKicfKoY5gw4rWQZzg94W7wFyyCajwuqXQMymP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YSuWb13j2u6SDrxxBGfh41gYyp11qSsNhG72AYAXbVh9WnDy8": { + "balance": "1928.041154290", + "bytecode": [], + "datastore": [] + }, + "AU1YSzgd4qSWDWL9843QyZuxtmRKjXuw6MNZzB9XCMo9t7h9JeJk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YTLgVJWfzHPLEsC3sxRXDbSXEa1DLRTKLvEiPUNEVUQXP6YPM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YTNYvb6VxkBWgoa1euZPJux8xoqsNktugDojGWFnpB8xC7RF7": { + "balance": "5814.108854456", + "bytecode": [], + "datastore": [] + }, + "AU1YTSbYcLDEn9qL3ymrwbyygHtAU64NBy44nHJw5WFcVpjau4fD": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1YTfjgxRg11s18qwcNqdjqqxxguymNTa5QZY5KHEVJBEBTdJbt": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1YTmgsf7gyTFLas7cQVEKzK6cDXSz4W8CnZXTuTGMvaRo1uan3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YUQAzxgwgXP2Ev6Lp9CjysPGR4FgKsh3m5QPbD1UHju2xnGQQ": { + "balance": "4053.091790280", + "bytecode": [], + "datastore": [] + }, + "AU1YUdDzdf27UcaGnXbu4EqUUk8wf5jn9ToLGgq9e1s2Gy3damTG": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1YUmgqxKSnvDpeY8c841fR9tEQ4ZBfF8y24crgyRqS6SeoCYWh": { + "balance": "1579.495317360", + "bytecode": [], + "datastore": [] + }, + "AU1YUoCYUX7cACxgZHAhLC5m8UQUmSgSgaPzBuyv5re7k27X5erx": { + "balance": "815.942313164", + "bytecode": [], + "datastore": [] + }, + "AU1YUuCsc8HSqv6hHQVCsP9QbRS1QnmhewwUs9mtsP7FLcTUtkaS": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1YVEE9fohELE6o3avMYwq5StHMAsuTMnsN51m2m6ym7brzpvFh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YVPkuSMb8EHBTrs1kN3BwXvkNH5vFfaH2fVK6ZeRHEra3wCUp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1YVTqq3sk6iXE38iSt1HqhE8wWXQq1iqcNYu5RT21CwxueAMPu": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1YVsEDYbJQ4cqQRzST7ygW3Bs8XqnzNcTjujo7w6EnikDKdZ73": { + "balance": "849.558750950", + "bytecode": [], + "datastore": [] + }, + "AU1YWXXZp2G8Sjeqf5uk1fbAFgua5f4cboi5iS9b8PKZBaQaTuL1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1YXMGDRtg85Hn3R7gNA6eeWdSdBwsSTVGVZEAKpkpgbjqwSBAw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YXjA9xA93MKaWWSZxtBWG5ZhbYgsi3dUXFQ8zPGbfvVBqvED1": { + "balance": "1705.013238548", + "bytecode": [], + "datastore": [] + }, + "AU1YXx3eWo1MfjphLfELq3o8US4CBuzMHSCoePmar46GxhgjibbS": { + "balance": "1669.894154248", + "bytecode": [], + "datastore": [] + }, + "AU1YY8XCtaRY3uBw5LcbNGrjFDxoe6iPx7cqXnAyiYExJrRsC2YS": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YYDonGJGxAkp9G8zSAVLqH6A7oZWp2Cvhnex7ixS3dPsqbPn3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YYeAiHr3PUbhHSsNmNyzpA6rSWQtXT97oq2mJ9s43rn1naG5R": { + "balance": "683.924406631", + "bytecode": [], + "datastore": [] + }, + "AU1YYij39GePbikapvYLA9VY7LjeyJ5zefzsGGdMSEk8t1kJYiLQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YYkvvi8z45MQz9s57LUprYJhTHPnF6iAH5ZWo36z8yD6urkse": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YZ537eWag2Qe6CWqsDHxzxMrbvM3BjQL1rrZjES9GLjevsKQe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YZ9JedGbQCdCpViBaQfmV4syU6jKej75g3NGWVRuCqXPEugdN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YZF3Htwpszd3zem5PLSJoqFTFQSGLiAHRdQJzTo5RRMfhB1ad": { + "balance": "2757.309662041", + "bytecode": [], + "datastore": [] + }, + "AU1YZXAkpEGJWRZ8zVPXEsi4FXtSTpVRJyuWteaZYectgNgnTtW8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YZcqKYctb4e54UA8obwUfkTrdrUBr2LNxxYBZVZMrDpApjGxR": { + "balance": "559.235458120", + "bytecode": [], + "datastore": [] + }, + "AU1YZs9q4rpiei4gEVPY2cmg1PLfdJw2fNpzMHrNUZM74xeXTMci": { + "balance": "1049.835737286", + "bytecode": [], + "datastore": [] + }, + "AU1YZtT7EWgfYnBraNrPNTTH6V24mzFYrS5n9Ewv9dFV67W3qbBB": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1YZxzACjpMBMFkKM6A4rTL9STbNUXRD9wuByDYt7wMSoJT1zcB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YaPMPqdKtHv6MwdBoPztUYdNn6fhE7ScyY6CQ99qGVafcAb94": { + "balance": "5124.200860608", + "bytecode": [], + "datastore": [] + }, + "AU1Yb4KyHcuFqUFjQuRsBYYmF9jWw5ShSjqMiTezyHaPx98tq8ff": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1YbdwAkEgeYpRmqozrCovWSdiWCAzF3oPbHzoDes3BMHCcErqX": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1Ybnimw5Hc9iWdWCBs6myJKAY9FdLAods7C3PnuXobA6SVa57Q": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Ybt6i8Rz2J4PXmdJHn6zW91K3HrwHUkpw3nuj2BtczsXiG7eS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YbxiTzL5zn6Ni2k8xZbtHQt4RUAPZ4mxFgYFKepZmXUsmF9CB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YbyjMWkAQXnmBeKyCyoCgtrPG878z7fexuqBbb6inxNU98EEZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YcUPNnYmX4sk5fGYiFgNBGDanBPdKuhqWKs4WTbKUYxZbjPga": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YcdJv93gq7of5irrWzxaq3SmUU5M97SX8LzdBVRpoCez7SrVu": { + "balance": "722.763754552", + "bytecode": [], + "datastore": [] + }, + "AU1Ycg7VSJ2kijs9UTeqyTsC4SdRr5Hyhwv7w55SJytWYmHLR8YK": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1YcmcjHcFvXU7QZUu6pAdVYztDytBiN33CAJ43cdhrPPGGRH6Y": { + "balance": "1620.447641594", + "bytecode": [], + "datastore": [] + }, + "AU1Yd47xxfWJwPV2LGacTHWoXKNDSxTynAfQWoxhwJY16Rtuyz9R": { + "balance": "4595.371553197", + "bytecode": [], + "datastore": [] + }, + "AU1YdrZ23ChJxtYTf3wb7pffNZoKhG1qqxfGd7TMdtp9xmXf2595": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1Ye2B2YZwgVrn12M2FKAiok87ZZtw22XbHLRbepUyTrJyX6CHY": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1Ye3bUptccKyBkCjkJxpre311Q4N4fHwiCXFLaa8kG2VwsCLa8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1YeLD6jwnB7eNu64HpRDixVyMqQ6QvRpGSGTb3eNorhUScRxss": { + "balance": "2015.672467250", + "bytecode": [], + "datastore": [] + }, + "AU1YeRpxy2T59wJwo8B8nopV5BHZTiCrJd5TFhMvDfZ64mkLTnSg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Yf8Y1mr6E7aKzAP7CfmuRYDpYiCwCFc8g174UXbj8TPr2u6mD": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1YfEN97428BHY3GK8W1m99iwpqyv5FXVsG86mVvyTv7JW8Wh2p": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YfU31CWqnHc958YxzwWySeZvQJUPPwgMZAVc38DZx1A4hfMPv": { + "balance": "833.746396440", + "bytecode": [], + "datastore": [] + }, + "AU1Yfv2H7L2JrVFjbhqe1teJ9WRGHSRApXSFnMP3tTcw5zgHN2U8": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1Yfxh7zPkM5iCDT1Syz9pb68uhEwpXMJsgBzdwNrNwzacktqCz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Ygag2vzYqEhcbgDghnHcg3RPsHkZT4AMExFrD4qrCqtxdTQjg": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1Yge39z12oJia5oCPhm5nPTDYP8gfV8UozTuCHGQ5fRPSE42vq": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1YggTtGFCHvg4VFvsJkUBskJNmRXiTHCEhZHQdskggXELtwbLK": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1YhQz58cTT2h8bhKrkUW6j4JUWT9wF3KsxiodyQPR1GW1kL5pi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YhtbNEhF6zVbKqWhFJnnvf9xQhunQhE7U8SNfFhYd2pwjHQaX": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1YibKxMiPeCfqavCKCJoVHcmEx8t2DhKkMoWZ6C6fyHbPCvfqy": { + "balance": "6585.324143208", + "bytecode": [], + "datastore": [] + }, + "AU1YidmigTKGvGLmDHJ2xc7gpHVHL8gXCSfniFUZToCjhVcyNMQ9": { + "balance": "997.779618100", + "bytecode": [], + "datastore": [] + }, + "AU1YjWW6Y69JhWLaYtsDUscEPLB5SrZsTiDPGYXwYVvUxgRnigWB": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1Yjs3kTnPBXcg7Wx95tjj5uNvFycdA1QA95KHaYGj413tN5Tf7": { + "balance": "1542.465212445", + "bytecode": [], + "datastore": [] + }, + "AU1YkBwKW8agYHpBCBDsb8JoZWv5vLB5eAGz6EkoeN3yi6DnWNma": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YkCD779hHwVRUiD1GmokY8JZ5mbCvWakcPJebRt2nhgXGqAWZ": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1YkF7vRuH9cJnoncQh2cPecexVbmH7AimpJHKH6ZjhFTQ9i3FL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YkNvjUhYxrQmbDEdKj7peqihy7YKcNuqwehjLnsf697qDxcrH": { + "balance": "1482.678125792", + "bytecode": [], + "datastore": [] + }, + "AU1YkPYSvAvyYqfBDQyJjxAkoDgxwWDD9NAcLEpz2923AMYfuce5": { + "balance": "51.162108453", + "bytecode": [], + "datastore": [] + }, + "AU1YkcHJFvd1wFWXMwosDe3foAAptt9ibuuqU5MEYxbrmtPV7Dhf": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1YkkFFgnjYjTMFnWiEUkQnjUDPzY3Q3QswLSRZPwFN7gupJW6s": { + "balance": "1180.154611710", + "bytecode": [], + "datastore": [] + }, + "AU1YktN2JyjZ4sH38QrFdqSHgAH8kjzunzX2YT85FTj7vLokPAY2": { + "balance": "1604.005954633", + "bytecode": [], + "datastore": [] + }, + "AU1Yku7eY4XmXyggV7tt43sm5Zo5yybHUy8e33H2Nb6tF1REwvSG": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1Ym19hFkN69DB6xHUsDSeRAeteWQ8HREH9AQjBw9HmQaBYKSvj": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1YmE5dJ5GQkRoyHSauXNpnANrUqPaiqAQEseCfLEHVHQ7fi3yz": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1YmiLM5uzue8zzcUYXeK3LfvuMhXAR2a6mFCwwB4BUFZiAVymK": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1YmoRNRXn7T1i16t5NZPn6NE5BXx9SMeYnw8PUBD4BPBmRqCC2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YmrCPgYnLyw9e4Efw6ji57o5BfffyeufefKN4amrbqQdAboUV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YmznqJQZhrbNDeR72ELSkcgEEaTyY3AH28s6hxQb4TnsGPD96": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1Yn6nGiuxB4JhpVTQbo4JFwGvnXaHHFN1SxQocVdsF5Hm1V8gR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1YnMM2iUqN9it9f91Cxy1eVAXN3ZCNgAW4iisopVceXcb1DA9j": { + "balance": "1864.832701846", + "bytecode": [], + "datastore": [] + }, + "AU1YnWyYeKXmsJtExgZpUM1WHY1i9GB7vJsX652emTHfJkuTJgps": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1Yo8uZs4M5E6okt1QfQHdgWgGug7e7Rrc7mDJXwrgAp9uPpmnp": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1YoAMgzfgYQsQD9k4NUrQtZcHsk72QV1kqoqvyTYf6BBDXSn8A": { + "balance": "271.456913760", + "bytecode": [], + "datastore": [] + }, + "AU1YoqHPFtEgfnbMV2Y2h4vGbWN6ds6P43ioAZhvEHoQHAR9pJ8r": { + "balance": "603.688299422", + "bytecode": [], + "datastore": [] + }, + "AU1YpjqckA3pt4LLfyodx3QbWnXqC4S7PPXuXiU6Vh7AjG6CTnFK": { + "balance": "583.283714887", + "bytecode": [], + "datastore": [] + }, + "AU1YqQWzoYhFBytrTCVZbc5G8wSt2QnuEocMaocendLsCp7EyN7k": { + "balance": "569.236924847", + "bytecode": [], + "datastore": [] + }, + "AU1YqdLv4TFZcfTbcZscD8Kh73BAaN84Q2gBi6hL61eHnr4KJ8mi": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1YqyBaq7FLQtYHpDZBfJJS1oaFTERWH5ct6NT8S6QETgAfK7JR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Yr9mMmwBSwWHhoayrVzYe9SYZzVtBLuBBnHZ13hso7LSU8Pjt": { + "balance": "3631.891503670", + "bytecode": [], + "datastore": [] + }, + "AU1YrAzxKveHLyn36Mvuv6FR2j7pbDWNTC23sd1jPw6kGGVhFtg8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YrVeyZMHz2agDKKCGanwZYocdnG14Bxkegs26q3t7HmudvPaE": { + "balance": "599.017226081", + "bytecode": [], + "datastore": [] + }, + "AU1YrW3E5Xa77gQkTv2JofNrZrW544qWoehGd4BiXoS63F9DZrak": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Yrj9S2CXsYVjbxisT1ucqcd5P9cWdZGkdFTc3Du459i65UA9b": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1YryqFvLKnaSKCdQUhW9nTK9Gop2yYcAWN1UcGp89NEHBedF8d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Ys64HL9EQRLbzPRGmBZfKUp3LqrkxkBi5s3RLpCGo2KTeQ3Bb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1YsByuAGXrzVhQ3dNB1w6FDkYGkxweS69ZxgrerPVLeMNRgEKu": { + "balance": "279.823009235", + "bytecode": [], + "datastore": [] + }, + "AU1YsCNJzfMJqP97QpsjPB9pXv3Z6Rwe1Z1PJ8Dk2Yo7ZhfpKL5u": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1Ysgxw5CCt4B7B618G6bNXGVEHaineX4BdQmeXVSzWdJVaETF1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YshBF2Vb3AGrXQXydhvKRMupjYZBvmquQ1rJrsv81RrrZLVuj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1YstJ2Dm2sSppiHMJpQqL1L5Qt7k1DKuHL1HANF8vDbvBky8Wm": { + "balance": "333333.600000000", + "bytecode": [], + "datastore": [] + }, + "AU1YsthUdimeXFNiqv165wQ6Y5soCEA82Jg2BtSDFuDA4oobdJNw": { + "balance": "3209.986727075", + "bytecode": [], + "datastore": [] + }, + "AU1YtJvYoxKu3K41AroiLKQiC1AkuBUJeFTd5eXSdBJW1MkvTTSA": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1YtS3HVaoqK9ustWJDR6LECREtqo4qjmni7wX28MotskjsKGnW": { + "balance": "954.082097522", + "bytecode": [], + "datastore": [] + }, + "AU1Yu37TMLYUfrGMKvAdDeA7qHx5jPZvFKKPFvUx2nsm5CwQS7aS": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1YumqzHbJmhFi9yztpseTTU1dE7sp799nm3Y4FK9vwmBdswC2A": { + "balance": "5855.613932486", + "bytecode": [], + "datastore": [] + }, + "AU1Yux2es2BsRC1Lftu5n5MkmHZ1nQvtHBurNunawCjsD2nwwDJa": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1Yv6a7pY5dCXvaQhWqvEZ7qXcPuwevgyhE9vnhtCYiJM7ahjwu": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1YvLbFoZ8oZF8a3ZHx7VcemnhKYehicQSnVmd3Kt9gonG4zghM": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1YvUo49W8A4ANzXoqwF46Qc7KSWhAh9D4PPT2D9qtxx5FPmWNr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YvVrzBLnhyB7YHG29FVcxcUJg4DuubEgPVUVkwE3oR1uBcjBT": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1YvmUKYcmBjz7Q7EcStV125T2nJvfPhzrRuYWKt15ENk1eskVw": { + "balance": "2255.851158254", + "bytecode": [], + "datastore": [] + }, + "AU1YvqJStwV6726M49jxpf7Fr1gp2Stkrr6eoh5ioEN7jhThZyJV": { + "balance": "64.084049994", + "bytecode": [], + "datastore": [] + }, + "AU1YvyokixovihGyn4FxdQ8yKeihjrMerCvCP7k9FW1YW9ZjrmcV": { + "balance": "783.201479958", + "bytecode": [], + "datastore": [] + }, + "AU1YvzMzoh49KnYBejkgANAPb5EQrMuGkPbuWKhbYkpZSTYxYqns": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1YwBCiv34ivowBXLggfShjyKoSJLiGy8tnpJbp5wVjow2bzYNQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1YwGKqzGbwrN7dSTKAV5dyggL67ZS2S85syjoWe55bbD5bdjJM": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1Yx3iEACK2GdTBaXqEXdcnkj91fb4BqkZiJB1C3zL6QkgcqH4u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1YxLDTdwvzc5NYTac4xBsp3zUvWWyEw69REKNJbJfwvZvdSKgD": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1YyWZ84sNqQi4pMSD7QuQbm7wTUmxvqtS2d1vTgq5qEjjqFDYL": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1YyzdRNm6kB2rKjRwGqKvEqLvPw5RbCS58nS3EkJfASQahqXNY": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1YyzqC7o7RdYPZrNoYCfey3EjA8mnCU1L4Ved3vi5DDZqXZaEb": { + "balance": "2256.376881396", + "bytecode": [], + "datastore": [] + }, + "AU1YzAsWK8825b91e6tKwt5D2VnpSvxRge2b4Aif1uXpuTKJaDrA": { + "balance": "3995.913522159", + "bytecode": [], + "datastore": [] + }, + "AU1YzZa1uYmSSMQDac3X1C1K8VbrYwpipGRLtHME6Dj9aqtQAhpN": { + "balance": "602.702909997", + "bytecode": [], + "datastore": [] + }, + "AU1Yzohj4gS3dEFi2MeYtYv5VQbzypLiJgJ4ef2fZfW2Hh5govcD": { + "balance": "4849.946133840", + "bytecode": [], + "datastore": [] + }, + "AU1YzyMQSsQ7aUJuS8T6ijN9VPLeFgZP26yV1cJjP5NJSAkwefZZ": { + "balance": "240.779325653", + "bytecode": [], + "datastore": [] + }, + "AU1Z19J6U4WJe6qeWmWXR7tNKAFNHrLBAFrM4vepyRWaE4cxX82y": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1Z1H1FEbtfSoJwRfuKu5M7CH3GX8DBSF7HwsDVNo3177B9WmvH": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1Z1TpSiA3McDtMJmSv5jkrkpRJWrGJ8VWeFsyBMupmdRppaAtX": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1Z1n1qm14WUWf3RW7Dw8MHEihvvVuJcLBs9FxrXsCyY8iDD7mE": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1Z1y1Y4MVNQ7unvzsUMEs6hbRWE2MmppSnBsQDWadqz26eYRiQ": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1Z22jMdkpB2YE8CnmfvWy1xVNXcgc8JUYWn7kCBHFBREZupygU": { + "balance": "1020.175407003", + "bytecode": [], + "datastore": [] + }, + "AU1Z2Dr1e5p32bu91tvA1Ekna83NqChVvjREVC3c9CqeT7FjdLSL": { + "balance": "881.265048916", + "bytecode": [], + "datastore": [] + }, + "AU1Z2aY2NYvEFtg9cnWcgqdXuUvpJqDkMb1QP5ojap73mVP6ZkTa": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1Z3iP9533dZPGH5n65etKm4QJBxpguNybn12KVA7rrhniuywsZ": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1Z3oCcUa6YebS2ViKXTFvbwVwTkuSAWK3JaToKZAJhJWHwwTx3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Z3qps6rYQ4AS9fSso6VW8XqW9cXc5cefGBvHEftJBcsmMARWU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Z45mYjo786ixD8DkwEpkkYizf6fUpSiebPmNc6Ck5ecoX9PuV": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1Z46V1L4b2GUr3qJxT3B7yo5Kkb5BbrhRJqrmSf8jMxro24GCo": { + "balance": "1320.291052180", + "bytecode": [], + "datastore": [] + }, + "AU1Z49YdYGEqvdz7ZMTCxvFXRuFprmdHPYmm9BQyczj6AqZNbsQP": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1Z4EtDa7EmQmLNJm7cj6szGn7eyz2zJqaMiGngCs1eHfDGhmxv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Z4NDUr8d1rgakMdxkkkS8w8pHPqfAvNfPpzLUSBREtao3scd6": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1Z4gDYfpnwXS2nxekkhvw4cGnAhvrQogB9DRVtwp5vjoeHSGKA": { + "balance": "1753.973709538", + "bytecode": [], + "datastore": [] + }, + "AU1Z4hL37FJgBi5TKDnJHQQj3BYtVwumsGnVaRiP2dWKwrq6hRmA": { + "balance": "3812.438278372", + "bytecode": [], + "datastore": [] + }, + "AU1Z4o6thWpgoVJQmUAWk58aCmvoJZ2d5Du4gcKZZpxm3MXmBWHg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Z566gSm4qPQTSLZcSToTshnBZ8kK1qLyNuCApmaqURcysoeqP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Z5YfocGC196Sb2RMG51Y9PzvRNZWAgA3yrNLswMAkbxWBfsmR": { + "balance": "1320.675285143", + "bytecode": [], + "datastore": [] + }, + "AU1Z5cJNyJm8JngiXmAcQ1ChhbkqZkA5r9CZichGHLHUzFtJ8WwP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Z5pRWbnoaiyg6XyBUUpoJRo4BRPCuT9Huu57oiZeYS5GPfJi9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Z63ivJAdnUQDgrfvuBAx4vZrn7WaqxhFmRoBXe4xf9ohveWDu": { + "balance": "2762.327258590", + "bytecode": [], + "datastore": [] + }, + "AU1Z65hcmCsMBhRY9HxuJp2Qrm1wmF9qU4YQCvcL5QcESe61TXQs": { + "balance": "568.792863941", + "bytecode": [], + "datastore": [] + }, + "AU1Z6WpPGaAC3RLcujtFFZFjyjAznezhoKSpaZta9vrhMccSgLcA": { + "balance": "1785.124897217", + "bytecode": [], + "datastore": [] + }, + "AU1Z6YAM1suGXYAyYdHUXRB4RscWDXyFrqSHf6WPkEoyCrjdRM76": { + "balance": "15688.844026453", + "bytecode": [], + "datastore": [] + }, + "AU1Z6kpMEgCPzg1uUJaSM7tSbX6MHgf1Qa4iLtaG6KDjC7XbHYTE": { + "balance": "25.502420861", + "bytecode": [], + "datastore": [] + }, + "AU1Z7QAT98nwcM6zXjUJ7Mk9sFSXUGJiw6MqDNB12HkUz1LvECr6": { + "balance": "763.887415170", + "bytecode": [], + "datastore": [] + }, + "AU1Z7jb3jPAgBh8qNVopLzqWe8P2NenPZi6WPdL5BRRXiWAAv8ix": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Z7r6W9oRqi64dyoJe4SoqgNqEuMGCUdnhmjDd7ewM7xNEFXpD": { + "balance": "241.208423992", + "bytecode": [], + "datastore": [] + }, + "AU1Z8YwxWvncgf8unvtJCtoVe3ymEY9dLTVbU45yJgRGUsGjmQhX": { + "balance": "127932.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Z8seaYTPn2jE8oANnFMUws4mnEaYCF3FTPCsrAgRPfw4SNGRV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Z9MYtPPASTCZPp2vCL6LbnNhZdurSVKsxkt8iUFW1h79XFjQK": { + "balance": "1656.583255157", + "bytecode": [], + "datastore": [] + }, + "AU1Z9QmWA3eD85sRTK7MPEuwSq48qwNMG4V2nv45Km6ziKAvsJQx": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1Z9ddb5LtpiUUSRN6VJauFHkLVT7Fus2z8H5bDa8NNKLPGMVfU": { + "balance": "3196.409802639", + "bytecode": [], + "datastore": [] + }, + "AU1Z9dwL1yveXiqXC6x9evS8c39PgqsqY9YQ4Wag579RcCmRaCWk": { + "balance": "2376.532688912", + "bytecode": [], + "datastore": [] + }, + "AU1Z9ycYYBJDshxNefpsAkNB5rPLWnUxnWRQrJi6CZuQFB2EgE3V": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1Z9zFHaChuFcwc7HgD6AkVTs6NvaKH7UYxeeyRe1fQc5og13SC": { + "balance": "2640.252125306", + "bytecode": [], + "datastore": [] + }, + "AU1ZAmfnYPrNN1ngV28irTPb4uPgppMyP7yKXnmkvHLzXELU9hP": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1ZAoHH4QBtRocUUaYfKMbvJJ2u7Q19JtcCFSnYUu2EaxttxWsZ": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU1ZB4t18rkFwRwKtSUZa3mrsTFJbG38z4yv48hznNKacukSHUkg": { + "balance": "2305.855408944", + "bytecode": [], + "datastore": [] + }, + "AU1ZBNqSuRYXZh88hoHQFsfwPFsiwuFmAc2nFvhCcwxVvFbmMCBn": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1ZBjYFQSzfB29gwFKzjFBuwLyjvV7jWpAmSVJzyHugB3y8PFgk": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1ZBpUfVmf2BeN1BhZcBRN6wgBik1XdTGqjs27dhTKtsqJC5k1N": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1ZBs2dReEp91WQmQ8SKgccmekyy34XMxo24vHMqd4MPfPsV8Ey": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZBuEMsnTtYnH42MLSxhUNhk9eUfTec3S4aNXGKD9PaNyt9cGf": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1ZCm47GnQzYb2WKiG2EK5yZTtHm24FqveNRXifjB8kfAjEGWTG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZDAz9EX23DkhYaFngHkQFZKJDThsE4Bbe2fxxRrnRt5FsCaey": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1ZDJLprLXTxHPgLnAdmXbcYSHYW1YcZRSQh35bd74V6Bpd8NXo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZDPkjibYJAnEzT4CZLseATNPgqY41ES9o1AYbsn9zL7A5QQ73": { + "balance": "2534.559570665", + "bytecode": [], + "datastore": [] + }, + "AU1ZE345hGtQh39vVy7PXh1sPt6ZWBZEdAvkkA53qm2k8Wxck8u8": { + "balance": "1135.936067758", + "bytecode": [], + "datastore": [] + }, + "AU1ZE4MF24uAHfQRdc5qKrca5vfgWochUXHbHN4j36TvmpFzx7YT": { + "balance": "1224.817959779", + "bytecode": [], + "datastore": [] + }, + "AU1ZE7Wrs9pBwnGKu6SqS86vSXz8cannrKNfTUUqKVpvDQwvT3Pe": { + "balance": "49.869801774", + "bytecode": [], + "datastore": [] + }, + "AU1ZEJnthaGVdhwAiHu2XNPvDv9WoehSdE6xUVhEpb1sKmirKMP9": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1ZERvd1ri6akyn8sZiDKLeZbswGnsukuXYFReS9TfbuMeuSwqz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZEVJHakPKWum6wBbjShJGn8DRRBCQXeEvDqj5wBCXgm9LKPsr": { + "balance": "1699.871975453", + "bytecode": [], + "datastore": [] + }, + "AU1ZEg986zLezkSANSp2L2DTSzCDr1dD1BhSc3vywSET9JhKW8F5": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1ZEp7YQMcanNUuQJaY5BNzxurJkMYfEuNLwJHtFVRuHDqZVtwj": { + "balance": "2085.024882312", + "bytecode": [], + "datastore": [] + }, + "AU1ZEqfQQrhLB6VkTuue5cA45htxPNM1ad4oAagnnuHiZ5XEuWCg": { + "balance": "3266.713490170", + "bytecode": [], + "datastore": [] + }, + "AU1ZFAERbkmqftNAvX3AH8zJkThrBDRQfF247w5NETZ3rcB27Ykg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZFXkJLc41RmHQMPeascTJ9BKAf9byNe82MqTmcjuhUcdsGx3x": { + "balance": "1481.724239652", + "bytecode": [], + "datastore": [] + }, + "AU1ZFujcxDAcb5oWaLipz11tQxLYTCSLveX469vxBEFVoXaQ7ESC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZGJHvMufm7pNLRk4ow5rnxgrp3aCnE93g6MEsd7zoumqm4F6V": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1ZGPfmgnmZjZJ4fujz9i7cNSQBp4zPiG3X4eDYzqwFPSyvAe5t": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1ZGobFpd7CXwnWAYDYbCVoVwLfUgxTSHqV1Nsjt6hGChUSpaVB": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1ZHsWmTVt2k3tX8hCvyRQW9L9gMK6nFY1G4vVyADzgffD1Eb9j": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1ZHyYSXpZnxRQ9VVbQvgrshpaMRuYzStLikpN58uCjFjkqWJTL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ZJzVyXoWxmTs4qmXoFjwp1kxJ8JpjN2Rg8RUPJkStLsJwenVf": { + "balance": "87.653519436", + "bytecode": [], + "datastore": [] + }, + "AU1ZKoazxMK3aXPAYTvK2K1mei2fTEs7W5farwTJCDNx2gRTvpX2": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1ZKq84cNDxARUG12JJALXDjBmwneb568nrqAgeJ41pK9XmZBPQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ZKyB5Lv8rGNomLjwPjqieXPyuS8U3UsAowXmLLpSqxo7zjjxW": { + "balance": "2607.443124434", + "bytecode": [], + "datastore": [] + }, + "AU1ZLQnvDZt6RmDL4JrZqgjL5MkgTK39kgVBMmAUcHJGDY8ZGQap": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1ZLWaN44YNP2TjiUkH8tbEQQWnAj4CukDvZBTjHpexXwpTcieP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZLXnkzaxWZPrjhdajfAmpeQdpkeb5tEdYE1mzcF5QYBbAxUzV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZM4Ph3Aap4pboZkQxemeSnjcdBbYgf7zsR2Mz5cJDQT4BnACP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ZMAMwv5UDabLyvCwdVRZGSdgm5QmQAkAeZADuNaGZvENnyYHs": { + "balance": "3523.456155572", + "bytecode": [], + "datastore": [] + }, + "AU1ZMyjnp4bGAEhrbzEGniJw9pZEaCmda9tguxwjJn2AUjEheJBf": { + "balance": "226.170142085", + "bytecode": [], + "datastore": [] + }, + "AU1ZN5kWFZuKWCMp2WUTfoGXPgvrkwo1s5dKm1eavweCM6Z4ofUs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZNEf7Xf8sEJ4MHKuio67mix8jbFtDy5fA8MHs9PGVvCkD2wyk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ZNZh9EJwrKFdwhpMbFWfcRSdWf2UdxV4usKQDJ9ynWzhdhxac": { + "balance": "810.965740125", + "bytecode": [], + "datastore": [] + }, + "AU1ZNidgLzE4VeZsTwysKDij1GBrmTsxt7EgeMRzoePt9GVzv9gJ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ZNvh8NeUM88Y3Mae141dKdMfq2skU7NDRMXvtQYsvJ4pJsRCg": { + "balance": "605.398140757", + "bytecode": [], + "datastore": [] + }, + "AU1ZP64QXamvbfY2Qf5CbWsRxxQRicVHrDX3f46DHSCcAjiYPEem": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ZPUS2cy25rT3AnncyBtWhY8YV8wsFo6bG2yuMdnk9V6TwcG39": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1ZPiPnVXh375zfbrM3GPJSHDyjKeyQ3oy5wwuE9X55nAtEMxk4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ZQ2VUepBZY5XJYLXuXYG98gdLKDnqzbB8SFxqvBGg6fB11yBn": { + "balance": "2088.901888667", + "bytecode": [], + "datastore": [] + }, + "AU1ZQGD3cg7Ly2wXLbN9G23h1kK8qCaDAMVc3TR8pEry8PFRTA1V": { + "balance": "1986.063472568", + "bytecode": [], + "datastore": [] + }, + "AU1ZRCURh6f6WYTBM47XXZ6mb9VoQdPFAQc1dp6ytgkS4722JPqy": { + "balance": "1964.131382451", + "bytecode": [], + "datastore": [] + }, + "AU1ZRGjxVgb453m85Hn1ZP3rBomCRsA9NUiTRfbTHGiUGj2qBGaK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ZRVP6Gn3sN37ofQcMKRXERvbCH9LXa1wJJYJP2HBCDzjHNDT8": { + "balance": "2.337387431", + "bytecode": [], + "datastore": [] + }, + "AU1ZRjrwr1JXiTRXDwTSELEvE1NNptRoRZcYakBpfAUoWVxzdp6p": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZRuzUWBaRHt1yuU6aJbLpCbyWgvkeqGAeDJhtswNDQq5PEshW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZS6SjrzheYcCp1c9Pp3BCJHwjQ8zMUaeva5feSATXcQmToAFp": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ZSCAuxQAA6ghZ8fiqcEqUUNVUrWeAEWP4Y4xYxCWSbmv4mBow": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZSEq2P1Twju2soN5JAvGEGrZY1CjrhxvVMxY8pRr8Lxomz8J": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1ZSU6a23brFW6BhJP6sKZKpYLuPCk4PELCeRp9SkhHia9UnZ52": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZSbKadhjMLhww66mGZQRdR5usC14hFXZ4hKFNV8FTN9mvVLF9": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1ZSi9jBXDuTpq2ozyb6CV8WVZ8Y4EzbNKj1cm13Z17bNS8XrCu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZSmMo8KaCLZXJ8wGgCoHwc7sUq9B9gqPV2ooUSrE41R4DLsnd": { + "balance": "827.525518258", + "bytecode": [], + "datastore": [] + }, + "AU1ZSmYp6mUMzQghGCSwGYp5PYLS23di5JQwJ28s6TEKRb9PdM3B": { + "balance": "79.498720047", + "bytecode": [], + "datastore": [] + }, + "AU1ZTBG98ro7pnejBi4nDHdc9tnmhVVLYgdEoxfVZU1Vkyr7d3wU": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1ZTxy2EfoVB4HzBSQS41f8KYhENLUGWD4uRrTf3X8RL4jAMVg5": { + "balance": "2336.214666126", + "bytecode": [], + "datastore": [] + }, + "AU1ZU515zdm7Z2d9KgCxXYkHCPFej9MssQVMpVVWPJKU7o8zyU7u": { + "balance": "1091.612639441", + "bytecode": [], + "datastore": [] + }, + "AU1ZU6iVdUegxHXEfRLD8hmT4EZ9NgAnKPFAo4AcpGuCNZWrUXfY": { + "balance": "4183.400812115", + "bytecode": [], + "datastore": [] + }, + "AU1ZU7vdopgudGMQuXhNXM3AgdWLDRu1YWZzN1ZNMpqQmRr1Fam5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZUBhmHgYPhBmSSpPGazLAgaRmwBCJxt3338tJg2zbJed72jJC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZUGqNQUbVP5iK37GzTdV44FQR7SH95L6YwTEyMJb85EKBj4ev": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1ZUWdUoBTfUmxFJQ9vWim3cZwRJLcSBDBejzrzLwm4KKByshLN": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1ZUc5DAJ9p7KYo4fCLpHi1EULRuiBqaj1WstVfoKLdy5KFrSK9": { + "balance": "3408.681280161", + "bytecode": [], + "datastore": [] + }, + "AU1ZUkambW97qdLEYr6AydG76j7NC2ZjyVV6cwUYM4v64S2e3UmY": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU1ZUnNR8XCkyZrsPjSeajdxpeU68vcqzgPjBUyT5dpFMQT5v2K6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZUvJvz6gMfiKWCDmuYw2E8U2GnSdk8T4yHnQpeiC86J9Y6ReY": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1ZUz1XDJVDykPaw86FHzcsKet9hD7aoDmXYh4rUaXYSgqyjkXV": { + "balance": "687.072382175", + "bytecode": [], + "datastore": [] + }, + "AU1ZVBZvUxQpKANywUDUMsEvthzYiG7HDmPViR3uxBr7NY3Y4man": { + "balance": "736.018724813", + "bytecode": [], + "datastore": [] + }, + "AU1ZVNw8dstkj3vz1Ue4E5hiif6s9ceYJMY1DnonumC6meGCbLN9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZVSVPQ7p8o7Y4JNGJD12fzD59uaEEzf5npLxcEUaapJ6THkNY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZVnkEu1dGaooUfvYhcjBPfK96oqvRzHspABQxKvp8KJQLRjhS": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1ZVruQDfXVPt8ACLasbTDp59zKWXUHR1srFHLYtNQKxBV6VuzY": { + "balance": "1717.093272766", + "bytecode": [], + "datastore": [] + }, + "AU1ZVuF8CgRc4VVWo3qM1Kpbdk9aPVTwE1Q2xkryGnSST7eZv8D1": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1ZW5LAUpvHjmn9YnKBawAcLRuYHBNHyh8GYhTXwgEfGLUbDRaR": { + "balance": "3949.209978000", + "bytecode": [], + "datastore": [] + }, + "AU1ZWAVkopnPev9PgUouj7n3AtdXM8H1QX619XFD5oSkuEZdbSZA": { + "balance": "11532.765966668", + "bytecode": [], + "datastore": [] + }, + "AU1ZX7T7FzHafpuiuGN3Atwirg8DaW5SFL7je8SrYyNk9m4cwEeP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ZX7XdBG9wcUzdEEu3c2VyBfw21qx6pj3mpPDwFPPfFqXs36dH": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1ZX7hsyzBe12RnbPrCfQsK29BRHHuRMitY5QPbWHzwRH1RDJpE": { + "balance": "3273.806805378", + "bytecode": [], + "datastore": [] + }, + "AU1ZXWX5g9DaCQHq6dy9kXPA1Y6rS2NwV1uxYfRuVd8xyKGrQCCv": { + "balance": "1937.877272290", + "bytecode": [], + "datastore": [] + }, + "AU1ZXa7se9rXw9PouCJhfKBy2tutfD7Di67iVGH2TSMS671xTE2a": { + "balance": "2358.175290982", + "bytecode": [], + "datastore": [] + }, + "AU1ZY6ybmM74tysSCcM6MedP7XQS3txY3JRKm7fmu17AaDpc88qA": { + "balance": "724.737019178", + "bytecode": [], + "datastore": [] + }, + "AU1ZYFeFXwkcqUofG8KK2UYUN6nnPYmyniNBk3ARiDfPNmj5FLpk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZYMiUJHWnoLGQ98GrWzQNKgsz42HvU4TmZx596xCQjZvC41Xc": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ZYQHRgTgh3JvSSoDHTz7iJGczt7LFe5pjuzoUYSCjqeotNwoK": { + "balance": "1477.023988760", + "bytecode": [], + "datastore": [] + }, + "AU1ZYUEKKv7Fsy8n8DJgEC5BusD8EqrbRiuBJEAFmXcdA7GScUUn": { + "balance": "800.389734827", + "bytecode": [], + "datastore": [] + }, + "AU1ZYgeMnU99Fo1P9nrtdWrbPymcSug8YMAEYc27MRp13frQe4fu": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ZZ57U3p1yhKEvmJLNECsRAxdnqeAep6XjMrGFGnbzFYAysJjn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZZ8xmVVtByP4wZch2VcMCYV8a3uE3bjDikZE54LaYuwmU8Qc4": { + "balance": "6282.176408604", + "bytecode": [], + "datastore": [] + }, + "AU1ZZAUyK8rqhX216D31tSgMcBfZjsvzwrFXTFgca57HGi3MWAeD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ZZBEX8x8orFpBsGH6hMDfkn2czsLK3M57QkFyo4Q7Tuqj1vb6": { + "balance": "60.231023102", + "bytecode": [], + "datastore": [] + }, + "AU1ZZFsQvqpiLGKLM6Y8pPPS9JA4ACNzLoEQriiBd7v79p9yeSDV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZZX9cdxXjY1T8TfPg7xAWZKgbTwwi6x29hktMHaK2Lvr5beoY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZaHXr51Uzd8LAgxsH1t3QJDwNH4Tu3pEs6PqS91LmLdwxG1nY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZavYPAUkqjvY1PjbHM9N2BJjLSLuiA5fPGSX1dUXiDdhvNPK2": { + "balance": "1717.410925244", + "bytecode": [], + "datastore": [] + }, + "AU1ZayJK1zenqzU5MRxdnrLsxnBR17QKTYrAyiKm2eE3qWyAWF6o": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1Zb6S6Hx9fuiqgaE5LM8nigHfEW9va2ZUrwmja9GC7ncxZVx1k": { + "balance": "1031.643579298", + "bytecode": [], + "datastore": [] + }, + "AU1ZbGHkiHCbx4kPwDnKyVoH2g2PEmrUMc68Fv8DxmfjxSrVeTof": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZbgXzHiy9R8FP6kzCXSJ3ZyPPi4vm296RGSsb9eCi2iQ6qxFs": { + "balance": "1849.658157716", + "bytecode": [], + "datastore": [] + }, + "AU1Zc3pqyAo252FQfaDvdMvGetWCA8GkX8Ys7QCrXkYo8XRHivet": { + "balance": "2793.585831222", + "bytecode": [], + "datastore": [] + }, + "AU1ZcNC7RYuabupMEKbntHaJUxqPQ8ZhrM2LnqDqygNatorcjwMh": { + "balance": "39.047339584", + "bytecode": [], + "datastore": [] + }, + "AU1ZcbB4s3HZSies3aomeHCSQizPqBXiJXWrMQsBMBk1txasi3oS": { + "balance": "1421.612804200", + "bytecode": [], + "datastore": [] + }, + "AU1Zcn14G3b672sMtd22UnZdoNUEHC7wL6Radw3KYMQAFNc3BSrk": { + "balance": "1500.813217288", + "bytecode": [], + "datastore": [] + }, + "AU1ZcqyD3QATiHr7DM7UMeenGRby97vQ5Uk8Pbz5JUw1hybYz2sx": { + "balance": "2232.335333063", + "bytecode": [], + "datastore": [] + }, + "AU1Zd56BEVcbWMm9mvgsdbmAXuaFQ6Fn7jQQiFEP8FZcH2xJtE85": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZdDDVnoKKByYHbA8DvFvkjBS9MrmJNhvGpinK8juiYhBjejaq": { + "balance": "789.456891360", + "bytecode": [], + "datastore": [] + }, + "AU1ZdRL6x1sQkyMHdku2nTygVVfxsiKiU8op8QpM1RVoEhX8h27o": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1ZdZ3Mm2nohzgQnKQ7oGmNqT9bgkfgZD1wwDeJRFZnhUkZHbao": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1Zdx2XvAw8nUF5pagb6szHQHZMNJbMAMBBB1Mcd5UveQRc1YiP": { + "balance": "1458.926395698", + "bytecode": [], + "datastore": [] + }, + "AU1ZeunsBFZoGsAEyk6VSwUxPYxZUGbCTLU6RnuhLnmSdx6qFbM5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1Zf37VjnHLsJhjdYuxvfJyEz7UwiSppm6yzSC26vzPGSW5Pgav": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ZfdovuRxwFMiPUqARGDswC99QxJSESY54t7844tyiUQWhB9Zi": { + "balance": "3205.286794768", + "bytecode": [], + "datastore": [] + }, + "AU1Zg9dr9CvL3ynq7ixG6x3cor6hMPxPFq5MfrqoC5fM2RzbpKVA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ZgA9gEC6VDEGNpWLjtQ36pUawFbCXiR2bRLF4crqjKv3iY7AU": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1ZgjUsUG6rb5CvfTujsfBoi8MvMzHThX24BDXKZwHM1oyUfh8d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZgxwCeAF7xjWzaiq8RREW6QG3GsjLuVzR3DMbVC8hp6cuh1wQ": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1Zhc5TJuotDC2D73hAbiyj2GGUYqBAwRarXV6CnczLuCxSnnYC": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1ZiCt7WizHcfJQnnjZt6cSyWm3RTPh7VTwCtgZK7aUUV6ihPFK": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1ZiE4aUKU4BSmVXcDoySjDN4cfh8tyNKp3WjQwoo5fbxY27LWX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZjJZDT8XSpc8JcUJ2nBjYdqqvk13GbYd3bQJwpUNhn5ZNArYu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZjNoVc8QJYCgw4raigheprVxZ4KtTiMDbN7AfQG8A7u14fyPf": { + "balance": "5298.968031853", + "bytecode": [], + "datastore": [] + }, + "AU1ZjrBnEa2GrT96FnjWyMx1Du747wah2iSCg9eeubK9JCgo84M6": { + "balance": "932.278600086", + "bytecode": [], + "datastore": [] + }, + "AU1ZkZwPp2xEpftGSWcFkJMQTgkre13LPFzmZjFN1s1pxtHKJrwt": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1ZkcvWtyAwcsPHgRx4W1yY5BKRvJdYgHDP4KkeKWBEmD4CW8HR": { + "balance": "2437.042456612", + "bytecode": [], + "datastore": [] + }, + "AU1Zm85v2qWpcbg1zk7fZgCHudkuqVdyn7ype89bnALYoCpyeuRU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZmEtdCPdX9ouqE3xVsEdM7R5nDzB1M2NbfgWE13Az2KRCxPUt": { + "balance": "820.094761517", + "bytecode": [], + "datastore": [] + }, + "AU1ZmFWRE85QKMp5KqRrRW97VD7WLEnF3Hbw5J8dhwLXWmdPhknu": { + "balance": "5481.843306997", + "bytecode": [], + "datastore": [] + }, + "AU1ZmWLNEDQ9oBPZQDRBMhvQJhzSsU6J7PZUEveuRWZdK7Vkj38j": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1ZnDUieAuaGgCoVWKhY8R8WoX3BJutnA6oFJSXDQ8JA8QbFQwA": { + "balance": "9.086042678", + "bytecode": [], + "datastore": [] + }, + "AU1ZnmeUygkre6y1e68UyrBXBwTqBmuQ5WyysjTSLn3Qqe3dfZYE": { + "balance": "729.009084364", + "bytecode": [], + "datastore": [] + }, + "AU1Znst1vAShvf696PRSE1UeQTEY1vNi4wxyzxEWSMs4TjL1GxtZ": { + "balance": "811.491703036", + "bytecode": [], + "datastore": [] + }, + "AU1ZnyRzitYbwmtg6S2tvctGF9n46mFNsAdxpyKaeu9VEYzhySFW": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZoMU82KPF5BmkTBHsA1xUNyPzEUcMMBgoAUCxfb19CuoooThD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZoTLBPoNvdiJ6ESwmUdyn5272DDETyE8P4TRMiVc51PLAYFNX": { + "balance": "2469.505250991", + "bytecode": [], + "datastore": [] + }, + "AU1ZpACY1XmSWCgK5MEKE7urWjxmJZSrQJ2DHjZZUowGt9eubEdy": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1ZpAWLPnUfnUvgDeFYYsbDA4zSR8E8RoxnvwKsocRFirC6RgDf": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1ZpNju2XL1uCp5dLwXy4rD84YzCwHREtJGcZvnhT7ptd6sMQg1": { + "balance": "31.726740291", + "bytecode": [], + "datastore": [] + }, + "AU1Zpf2pP2wU9PdLvYhjuqCmL6CXHsBamcdWdvCipcYe7WaHSQe5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ZpzrpCvBN8MFKjg5f6DLi83e717wVBwVxdmCVdfouxeWwXDRM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Zqdzf11vZf9aFHp77fy9tenxcKPSttYTXmJxE9gAqUfvxHPsz": { + "balance": "2262.645217054", + "bytecode": [], + "datastore": [] + }, + "AU1ZqeN5xcPs7unb5VrZTjhw4k6M27kxefGCRYCW9ctnoLXuqDt7": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1ZqerfHf8ifxRezggagj62Cwt9Ptz7oqxvZ2PkDTDKYNzripb3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Zqv5RF6C2S2GtroagJ4oXjo9KUcahTjkn96tjHh3fbkFdh5ow": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZqyXbZpBrSqRwomr7YXoiwVvqbJY8DkmAcJGSdJj2VvgmfkbA": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1Zr5SUp97XM5Xy7er2HhFPJwBg5J6pwAbXaUhwMwc3e25Hh6c7": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1Zr5ta211JaWWLNLUWwobuk8V291WkSVUZebE7h7aT3pM9NE6h": { + "balance": "2798.926153045", + "bytecode": [], + "datastore": [] + }, + "AU1ZrQg642cZkzdsRc9u2V9GcSB5DLWV4AWrvfPszRRtJ2BgchPD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZriYCCHEYGP8GmQja7r3Up5ZZQHkYovt7sc4kpjme9T39p2vu": { + "balance": "1644.399992688", + "bytecode": [], + "datastore": [] + }, + "AU1Zrz5bJgqp9cBEKTq3nsEhUZnLfjLPzwaK1SFF2kDLWTJkDmaF": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1Zs4W4SwbTGoEZaS3HejZ4SCQK3Yw9p37nnhPPu4S5pUG7phex": { + "balance": "1400.256549682", + "bytecode": [], + "datastore": [] + }, + "AU1ZsLmkpR7Dk3Ea9fLZ3C6VQyWtxs5ZxrKZB2CtBo2WYcPbtCxx": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1ZsLxv47rfnzRGwJXZbmfLk8mmb4m8C4cyprxfdcbyff6SNoYG": { + "balance": "1590.063941950", + "bytecode": [], + "datastore": [] + }, + "AU1Zshvbk4q219kt4eQGosd2CQVgAWUmD8dGwWmbjkwd5MxZ8k8K": { + "balance": "4830.527164760", + "bytecode": [], + "datastore": [] + }, + "AU1ZtEEXP1gFc5cmvTMSTYxTDAUcKYWhSrZ523RkUgdbeAqJM1A5": { + "balance": "553.806669027", + "bytecode": [], + "datastore": [] + }, + "AU1ZtPJ93owVcNB4XJcyt2PAPMu4jyzWT3iyKFviwBhy7ysY1sQk": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1ZtcKoYBGwBzLZYPtSTmNXgFgpVjHsoFFgiHHLEsbd2gRFxP1V": { + "balance": "1064.319309200", + "bytecode": [], + "datastore": [] + }, + "AU1ZtjEC2PDiQSzGeRUR8N5vgp486sVn8i8Ne4y2xiN6iqAmT4r3": { + "balance": "1186.207952429", + "bytecode": [], + "datastore": [] + }, + "AU1ZuA6WWAEUmg9wfbcryuso1D1AgcVQdZ7zRTm191BZjP7KGYLc": { + "balance": "3775.825077715", + "bytecode": [], + "datastore": [] + }, + "AU1ZuKoBvdRpbGyZDTxPstEEJbZWuQumCJvWYUxX9t5KLoqAibAy": { + "balance": "908.385795944", + "bytecode": [], + "datastore": [] + }, + "AU1Zuvg4M5sRtt6Jfu2pRa1SyLhAcpdWpCZRNtpfQr9TRYAU6YYY": { + "balance": "1653.734332856", + "bytecode": [], + "datastore": [] + }, + "AU1ZwC8igUmv38BPojHigXSVQvKGxJaMjz326yrgvC45KRPzhdxQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1Zx5gVe3ui5bRsNCsHiEbW4enmgQGQ9Z5v4Me83AATPMgQWZ2h": { + "balance": "1952.510350429", + "bytecode": [], + "datastore": [] + }, + "AU1Zx8r7q2z6CypqsGQpzkkZcyDqgvV17JXwC3peJxvj7y8Vgzfj": { + "balance": "1365.785085242", + "bytecode": [], + "datastore": [] + }, + "AU1Zx9mGunNpnHdDtpqm6MweTacj6F24j1NAWKajZE1jQDjMiKnN": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1ZxFVLjUey72Cibja4Mi7mALVF6XvYRwYNqyrzoYVEhzgsYgBW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ZxJgjPuxrtTUfyyhcrrRGvLZoaQuwuEy5vDfjWX8weWgWRAyF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ZxLagPPspCD5yT25SC4fxvWPjpwqsNKsjZpmxBsxJNJu5MW5d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ZxbzLuwKTpLF7ZamBSwjFBpfRkGdcqYJXpFf3dLq9VwadV8GZ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1Zxu2AMzQ2VK3AsK7qLX1PuX6mWEMWfETQaoWA6gD4wL4k7h6y": { + "balance": "3027.437517002", + "bytecode": [], + "datastore": [] + }, + "AU1ZyNkwgamj5TH7QKpjSwsxmteQVvXVqYTkQmYTijiBoXeaQ996": { + "balance": "1197.854130122", + "bytecode": [], + "datastore": [] + }, + "AU1ZyUyweNxJkUq8y9aCssbN2B4oYCkZM9kwy7cuqRRrBK2v1e83": { + "balance": "21.888941250", + "bytecode": [], + "datastore": [] + }, + "AU1ZyZj9q98zowBtazN2g33P2M1tQDzxopc6NZJLNzay4PnkQ7Dn": { + "balance": "1130.043473379", + "bytecode": [], + "datastore": [] + }, + "AU1ZzRTVpd4JVLTLZpMs44QkQhrWHXYmYiyu2YX7vziDjnT7Q78M": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1ZzdZTiPGvn7k617kyCMaV7oH1it6agUEaPbr6Xef66uAR6yAC": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1a1N8LgjACUPSn9Z5UWbDFZL7Q8s3HEFVN8uHGU7R3T6w4UbAg": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1a1T623stVcMm3a2BsL9mY5xCfiNLhSz2LHhtxrNJTVE2PvLsz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1a1qrZyc8aDdVh1jpd2QvfSAmtTbrTapM9xw87JrsSV3dbpFLj": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1a2E7qYnfesEnpLaNw3SDvZv9bqfJD5TPi4NmuvjooiAZkfHrs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1a2SPB2RNtpHhVS1vPHY3TP22DpEaRq4mUdi6gzUFMdQCJ8p2": { + "balance": "76.444780206", + "bytecode": [], + "datastore": [] + }, + "AU1a2jKcX67tVTxtKpFVgaviUSDkc7adKLxjs6imomXWCtbJVjLB": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1a2mNGy3azDcetVy41NZ9C7ynkMH5U2kY9bAj7yBPEwVGZvq54": { + "balance": "233.319267109", + "bytecode": [], + "datastore": [] + }, + "AU1a399sCEmcwUD6bniDxtL1gry8xEBrC7ZUR4GEWtzWyKQAxVh2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1a3CDPfRVzN93oSAzMKXmAGvGqxn3U4B5GUZtknHLqiKNouvkh": { + "balance": "5422.677993799", + "bytecode": [], + "datastore": [] + }, + "AU1a3U8AXL5UrfqpGfuFVavCQkcmWveNdqGckgAcnZz5PfwyXzst": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1a3VY1CMFoZRmRFNADTibfsskchxnLde5Gtb1qAXjnaMPVb6Z3": { + "balance": "842.144642479", + "bytecode": [], + "datastore": [] + }, + "AU1a3bKXArzQxGMQuGgQbadB8omg7zeG1wUqQQEfs1TNMH8pm8L5": { + "balance": "94.700752344", + "bytecode": [], + "datastore": [] + }, + "AU1a3sPXr7TbbzZ2ZcXYTuSoWrjVFT9PwPDJXwRxF8yyn3Jjvj7Z": { + "balance": "1797.360600291", + "bytecode": [], + "datastore": [] + }, + "AU1a43apFaa5fjaUmcKxqjJhmWN5Jqy1Y77fxTdFqZ4VpeQpAsKd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1a49N71ZrRmSzUpi2kzx7PQ15TUiudGUTQYQVz6Dt2NhqTpqXm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1a4C81ud8wyCK3pmtYSyLqeF4LtgBAHRCXiUh2HWCnMPnFv1t9": { + "balance": "5.348504286", + "bytecode": [], + "datastore": [] + }, + "AU1a4UDsX8kwTHpmFSf4EmB4W1BHcz7PoPpDye2ZxN6K1i9Yk14d": { + "balance": "3294.565812997", + "bytecode": [], + "datastore": [] + }, + "AU1a5DQ7uME4u9RFPmQyLz1myge3Zz9DMexjTg6NeyuCVkgh5cyV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1a5FpSazuaf93ESnEb7RRdXfFhSoexRQmJtxT89rj6VCPA9zn9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1a5Hs8aqdG2JCh7PkpP1HQ8M5zCFTkNWUyJpXYWrnb28orwJ2D": { + "balance": "926.150159578", + "bytecode": [], + "datastore": [] + }, + "AU1a5UpQB7fDke4Mr73ADEGiJymnYT46r35i47o9Q5CbjPdHXrJ2": { + "balance": "1739.019456964", + "bytecode": [], + "datastore": [] + }, + "AU1a5gRKggTQFCT9NMwSzmVwCyro421UTVRtkV4YmFJMRN1fH98": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1a5gkw5td3P6USiCaLxzSHQiBcJ2uogjmWhwLPAPe2PtT44AMH": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1a6LUMBicHs4dkyvudwiTmkaVwB6q1uRcL1NtqCTnKTWBC5NK5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1a6Y6mt36cstLfpuWc4k4PVDftTeDwuMB9uoH3rGqgaPxHZ1Qm": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1a6gbG4qgax1dAYkXusWdjQDknnaSU42r1yXarG85MXDL4zCva": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1a6nt4DUhpYCEYfcBf6gHq3nidCiUmXgBigNnSwvmUFSrbN8Fu": { + "balance": "4188.896207856", + "bytecode": [], + "datastore": [] + }, + "AU1a71bJrtFkQPudBs817FPWwxpCBBpKoheU2LkJYWXgJNKmPkq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1a75czoipqW6d4X3LEJAUhwfkpjzwaPdoJ44NaXxWazBxSS8nP": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1a7C1uDmaEDG9LP74GsFtvmNKeDj36RUv8AtTFbwacKwvLpa2K": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1a7mXTPr2XJNTkUcdXB6NucrBsBngwHRwEhiUUBrqGMsgzALe8": { + "balance": "1403.448441400", + "bytecode": [], + "datastore": [] + }, + "AU1a7wjgWCgmZEYGqXHVsSxum73nikGZVm2V6E1YVTgZyZVFACNm": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1a8J3UxCMibRn3mZ36YAqFBtuMiGzk5UYcCLJ4VZaMmSN2Vct1": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1a8PDv7dBNFURQ33Y47TeBewvnrxQrufEg7Jjgac1oPjMicJHP": { + "balance": "1618.553813087", + "bytecode": [], + "datastore": [] + }, + "AU1a9FTjG9PgUC4unL6ysDwEaR53e5NuVxwJboQozAafnVngjm62": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1a9QcAvTUSDzZ1xqYCpYsk4qm588VgKzc4cnJaMViHWBEPL8Yi": { + "balance": "2010.166536032", + "bytecode": [], + "datastore": [] + }, + "AU1a9dhrTCevMBeiv1cC1bcPWkszXVJs2nbnMW2ojP1LrpWGUrTz": { + "balance": "1455.059185782", + "bytecode": [], + "datastore": [] + }, + "AU1a9sXWbtMU6fyr9h7fprtmY6rdeRppW2z12ZMCEmgCzMr5N81U": { + "balance": "3198.589147471", + "bytecode": [], + "datastore": [] + }, + "AU1aA2vYr8UyqYdHQFPR3pfYUk8V1AaYasU2U8a9i7Cad9gCQSnP": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1aA6VM7xp1Knij2c4SZePqAGHayehkwLJVZamUw48GYAGwaCns": { + "balance": "1849.587692824", + "bytecode": [], + "datastore": [] + }, + "AU1aAMQVgcYfTFWQJnoVyZSfazBf2tLB5QhjJBztyFfSmt3fUkon": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1aAV7GULxQf1jAFPNhaUqHC9rxWrreLEvEtZb13CmvupQoXbV1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1aAcnmhwTemMeLaY1ukNwyiKwn6oU4vD5AAvgK8vNqRVB1Je4y": { + "balance": "63.255703330", + "bytecode": [], + "datastore": [] + }, + "AU1aBjs5ZmpUKW7wxWxQbmyQ12iXcUGawzr6YrGeZBV4YAXDYgrC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1aBo1QnrFUd1sfL9G5pDtxYchqbS5RATGgGzp935Cwqx8tAeNj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1aBwatVcj9D41m7MAs3rQjxkdM65himMNCXdU8s62j14SFGmEN": { + "balance": "1594.257996334", + "bytecode": [], + "datastore": [] + }, + "AU1aC12bgpVp32LuJrMYwG3zdqH9H33mGDSXpYmh3wAC6Habhqm4": { + "balance": "818.989938558", + "bytecode": [], + "datastore": [] + }, + "AU1aC4hrHVxUxt8vgKnc7rw9QaS4pwjtM3Su5FD7WhXrvychc654": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aCBJt4XsmbGLafNybESt1SbLiTPcyQFrnV3QvDZhQVBnjVfE3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aCCtNMkZeVTCWbemtkMXiowWuha8KXJe7eLmUxoWbe4ivJAHh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aCCu5x8F4aPGAAUxpsBNKTzmpPDSVAGgZz928y93fRQyte96q": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1aDsPChinVUHvAAutJrk9FK4C7MmhnxmorBwGJdnfRgci5NTfn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aEMftq26ZmX5bM2RCbVsZMQ6T1L5aKJTyZiKFKKR4kY4rQgfA": { + "balance": "573.911517288", + "bytecode": [], + "datastore": [] + }, + "AU1aEVawtVCRfbf4K4nEkph9zwhA1uAvF9y6VpkNF3WmMUjZtueq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aEZg2bzjR4zS49C3QvoQ75suLoSuvCjn6wdhg3vgykZDmjNJy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aExSBo6haaS1nRP5ptTL56F3vzRcaPTpAzrc178aaUGzV1ATk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aFWjwoNrf32ojvUKZD1aakFgzhUxJLkeazZHQKCZQ7uhLNyfQ": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1aFXunDSXeNQ2UKijzQj2yXh4ZYWmuZdeNwLy7omdLPYhjvvBN": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1aFj5GPoG6wi9crQr1yqtHTby8wTfAsVXfgqG6Cyxid349YkhK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aFxZzUxpU7tndKLcsgpQy4cxBESPrGGS8nxSt9dWM8QY7xmaL": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1aGT4MVswyUSrqnzqcv4q94g5E4M271pmiKCZm8Ud5i8BxvsiG": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1aGXxBTJ9bc7J89uctE1LJhNCmZW8v7Bb98BpnhPWsXiMT8CEj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aGZ8mb7NmyYxtsfVE29xxVqawZ9F9jrC3yv6Va9Rjn4Qf4cML": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1aGcUiD7Ne7dRFSdtNYvTs4Aehh4UEhn2FMdKAQuyg8qyZe1pE": { + "balance": "14461.066912333", + "bytecode": [], + "datastore": [] + }, + "AU1aGvYqQuumHDsmTacJp7Xht72CAwd1d82Y5shqepzVRoWSi5tY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aGwQXDEr5QYgvwLdEVzNd4s6aidsmviBQ9tXm12hfkp4u4dB4": { + "balance": "794.624134637", + "bytecode": [], + "datastore": [] + }, + "AU1aHLKgZqk4qGSaQYSazVCB1d4tvAjU8cj76jE2LbbGvDgo9W3p": { + "balance": "55.280528053", + "bytecode": [], + "datastore": [] + }, + "AU1aHf2wgy3KHnz9KF77GQZbqpv6DfBHsEiT22F6dw5QYxzSAs8a": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1aHsPXbkGBQZojKBefb6pGiTg98MHmWXYJ6sdZXYaDDFC2LRx1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aHsWSzyxjNtH87QW5iTgvgDp4eYv3WPxpisQAapHC6tn3rzNP": { + "balance": "2464.167469516", + "bytecode": [], + "datastore": [] + }, + "AU1aJA4ddnqYgurrCeSXNteiDM2gtyPzoZ3Cusy7sktc9Ene67N4": { + "balance": "903.348757440", + "bytecode": [], + "datastore": [] + }, + "AU1aJSiTiTqqxPgiefZpRTpDLQXCmML7SbGnJtDhtUH8Zvx4vwrx": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1aJaATgNHm9Z3FYmmCZqYu2yP3KH45m4EDJ3XU3qAG76sVVb7v": { + "balance": "760.931267744", + "bytecode": [], + "datastore": [] + }, + "AU1aJdbHaQpgFGFSb7hAVEUV2zBinHFgcmGNtAEmdrSj8eqV1oDa": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aK4kKW82Uoomm7w1QE2PYAdkM8EVHtCgKXiyHKrFL9PbvKjmE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1aKSjkF6q4ybWbTNuxRn4gcW3wiUEQ8jjubMXxpnPCh3QQ6tmH": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1aKakMWywzWYjbPGSqpGqvYGGVggrbQ2B749XXgquwvm7JJaLK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aLAjJarhhdM2AjP3qDtm9PXPJhM8tvkcpyXEpvwirbESbJeHa": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1aLFaom4cyS5ifjGBoSAs8RdD3ZQ4WNykU6sNhaAZbdLXGnmwG": { + "balance": "1559.889247704", + "bytecode": [], + "datastore": [] + }, + "AU1aLSsowuQZ5oeoizZohDzaRn9pL5Rb1mwWLbqgsEdFEwKV2oBG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aLZYGpo39JWVQtM6qGzQq9YvqmotYfJgAwgi5P9pjQiBA59YP": { + "balance": "3865.400865069", + "bytecode": [], + "datastore": [] + }, + "AU1aLgtSRob3w9xxPp6Eu5xoWCuGRNgL9HtNTmz9k3kzKo4S9ZTe": { + "balance": "4081.110819634", + "bytecode": [], + "datastore": [] + }, + "AU1aLuYRFXvFAG3cLDtUMWPGFHzp9gP4bBTyWEi9W4uBewgNYp7Q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aLveVeY22cMZF1xzfG65yemKkh2DZQPriCeZtXc77q9qJDbGK": { + "balance": "1259.035469709", + "bytecode": [], + "datastore": [] + }, + "AU1aMiwmuAkk8bHHCM2EpZcM1eyFQsV3yD3Jk9EnB9EsSXGVBxmf": { + "balance": "2183.199444490", + "bytecode": [], + "datastore": [] + }, + "AU1aMqwF4tizcrCvVk3RAPFio1P32xTyApczuW2AyhMoJuuy768v": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1aMsSLJfee2D4LGHodMg7Vgkq17ns4qT5GERQCVxBLPFGALg7f": { + "balance": "3737.818747230", + "bytecode": [], + "datastore": [] + }, + "AU1aNWoYYVk4Z1BMNQES4zoBfrhRkxC5q4WHBTpTZuqfKdWXaMAK": { + "balance": "7175.934201900", + "bytecode": [], + "datastore": [] + }, + "AU1aNbBok7pdW7og1pDVhyoF2pJGyZ3uF3msfc3RZzG47YtAPsYS": { + "balance": "3018.054133842", + "bytecode": [], + "datastore": [] + }, + "AU1aNg6G57fRY3KaE2HwECxGEmdxf7ioH3YPBX6GU6KmU49pg8s3": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1aNgvZBd9uWNPoB7NTCsA3TB9rYpx1ehXH1GVcKiePaHwStpgA": { + "balance": "157.404567050", + "bytecode": [], + "datastore": [] + }, + "AU1aNkRJtwb7tMqPnFqfQBX12S4XYbE8zYAXvz5DV2kxJaN4TW7z": { + "balance": "2406.010640077", + "bytecode": [], + "datastore": [] + }, + "AU1aNkSYkTsELHQBZz9MWeH2MCPq4F2Y4SEr8Gc7FWnpeWm9fsEj": { + "balance": "95.819960612", + "bytecode": [], + "datastore": [] + }, + "AU1aNshCu74ykHyMoQx5F4r7P3tWCDeN42oDPUsh8SrVz6oC1m5j": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1aP3S4K8qEVm1uWmVLi4UsEbj1AhodpUQZfzR3fNqC9q2RFdRu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aPbVmgA12JegzGFFAiu81ibAwRTQvYQuFmYxDATsDwGS7dQng": { + "balance": "1389.218415997", + "bytecode": [], + "datastore": [] + }, + "AU1aPqXChPXbu3JBY2H4UU1HHTj2eL5gP2tXsKDLjetgsMYGuvzs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1aPz4ndxsChszsUFbk2xTBaPPw821jg7LayRNv3wfeiErAzPrx": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1aQQycABvdJ7jZsp4ohBTGAPgyCxdpsC54GkPkCTNLgLZuX9QM": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1aQXuzb9CmrX7gPGq33wufxxsojdaDGtffuxsZUhH9WTbUfaZE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aQZ6M8aRWg7SH36xTTSQCkjABDmYny2EJxQSGpP6rGwuKMSqE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aQiSfDicFoA64Sw47h1tyEq714BFPRSKjiA8n6DFjzNmgdybz": { + "balance": "953.190903952", + "bytecode": [], + "datastore": [] + }, + "AU1aQsAs9J37UXHjcdPCaXNP2ZoWU4GDknnV2zSj1c8RfHp8zWa3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aQtX5UvZS8KYRuzRjTYWcvAiL9wbcEvPHbCrLfDYXec1hJMYf": { + "balance": "4960.507976338", + "bytecode": [], + "datastore": [] + }, + "AU1aQueWzFqokxFUdJSz7LMCMbHsoFnCyeD5ji967YyxP2YANiy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aR5oV4uGpaTuwX3c1SDGwCJjY4NqFxExa7PAVmt3ig9VBeEwj": { + "balance": "731.958643649", + "bytecode": [], + "datastore": [] + }, + "AU1aRG2hqdFyopS5V6oBdgx4b494cDYvSEhnMeVNdTSXX31ayhHi": { + "balance": "4524.921487141", + "bytecode": [], + "datastore": [] + }, + "AU1aS8N7urGeTM29hZDQ3yhecbweY9CXf31ou48f2JhCxMB135uu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1aSW8gpceV2GZg3aaiKDnAh35M3DzMFWGwMHZTvk2n3UJCvi4u": { + "balance": "618.408015155", + "bytecode": [], + "datastore": [] + }, + "AU1aSaXuEX8BGQEQfUH4hFVJ6wgm5vURiyMHJHyHPZDStPTb7Rrt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1aSpMuKgf5G7g8BNR72z3ghfWM7npSV2ov6j1FerapXsAQobZw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aTAzV8kL5e9UFXQuN9jDzfkrPXvoyFGpSi9oCbxBUDwBWpKy5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1aTVaL24YfkiFJHcgaDcXQsjZvPtWP3FgPMSe1CLTR9vB5ZAVu": { + "balance": "1105.455449516", + "bytecode": [], + "datastore": [] + }, + "AU1aTrurFqAScvbJ527TuxMfRciDoRbWzyV7647YEhMz9T4XHt9t": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aU2xZroCoMSh956YDL5vCaez3tndwjitHizYD329yaNrFG8tx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aU9e9R1dYJm5gBiZdpSBfNxnyZd8RVzstsRivA9gqNG6xxm9z": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aULnRdsGM3qbpeEGgevWwK9oUSMA1iXgKuqtx26GbnVZCR1sw": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1aUcHSzdqMp4mRQhCsKH8oKWmvT3bHLpmcNcTcAf9rAxLCacQZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aUggBdKgRmGjzFWYNx7vU6Eh9sZSf6kCysAMHT6A8X9PauHz1": { + "balance": "4036.210430302", + "bytecode": [], + "datastore": [] + }, + "AU1aV77LeM7NdXzhXaSXCTkCdhNSwxnrFK1zy2VVAizbRWSJ1YMA": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1aV7U2mFzo6Ckoiv9LP19zkv93TwnhvaE3upcWX7iSCvA6aWjM": { + "balance": "2579.624557705", + "bytecode": [], + "datastore": [] + }, + "AU1aVVzV5jn6knJZpuLTKjEtLikSsZRnshwEsJghYjGWNkq1hSVR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aVjgHgbPDmh3qnhSW8WuydoFAGybknfnmp9JmHNxaAnPEVRVz": { + "balance": "68.983395134", + "bytecode": [], + "datastore": [] + }, + "AU1aVvwAJktjskV8yJCt82SyecV8bYvqz9FS7gzKkgQXnhhooXQd": { + "balance": "1457.841769564", + "bytecode": [], + "datastore": [] + }, + "AU1aWKphHPjdgSzL19VPg2h27bjYfBQBqQYwtxxNZkBjpYi8JLYR": { + "balance": "1301.511741674", + "bytecode": [], + "datastore": [] + }, + "AU1aWNFgv6NWDgzL8BbSZfH79yNivBaVpeeNRfAnVdJeNnJP8eeG": { + "balance": "1731.646352546", + "bytecode": [], + "datastore": [] + }, + "AU1aWWvb2oLojdsKVSapi9V9aSirez6Tao9yjFrbxccKeN9dKVck": { + "balance": "3672.348137047", + "bytecode": [], + "datastore": [] + }, + "AU1aXGy8NCSfemBfwGKDgVsEYYWvCpBduTRs9h8w33JN6By6m5D4": { + "balance": "5152.594349529", + "bytecode": [], + "datastore": [] + }, + "AU1aXVaNKd1Z3RvTSL9zwoLe2xHgGCCkShJZh8b475vc9B8JvcqH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aXZ2CYhjdroz5pa8bRyi9t7MV49KuggeZkgD1NpPXHdXbHCAR": { + "balance": "2046.338584803", + "bytecode": [], + "datastore": [] + }, + "AU1aXeyzxPYRBdgDYLX7yEnzHNzdnHHDhpKkNJba9VFSCoJrqT3A": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aXjDspwhff1LGWALeJ5yBhF7VGLBaAw33dPDaBnHqMvdwgKXk": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1aYNQykazsc51HLm8trfqiSwuT8EgKyxZ7BMaqE3jvafAHnS6V": { + "balance": "3188.509192397", + "bytecode": [], + "datastore": [] + }, + "AU1aYP7fwjLhgege12SYXQT1yMMCBCeBDm7nijvEFSh1HVqkbxmr": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1aYSqKYHGhp17ta5WvuAt2cwAt5UtKfGj3ZjbVkp5g5EyGsyDF": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1aYyVQL1joMUywpnz5euivZtKZVoye6LpnucxFdT7vLiHAjgJz": { + "balance": "1399.550270418", + "bytecode": [], + "datastore": [] + }, + "AU1aZRC1Y7p9AEBWyn3vseNoVyLyMhzuqQWjfMWzYzPEh91peBWD": { + "balance": "1425.505689941", + "bytecode": [], + "datastore": [] + }, + "AU1aa5GMuRkMB11yv5K4LmhtSFDvhHEoKLYLxYZC4qkhFzLKmRuM": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1aa8Rd8qUMrxyXsxtkosCVH7cspstfzQFZt7djJPix2Z4zn6hs": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1aaPUUgPjgSNFQP1Y5pknxJzMaAakBVmRTJinPCaLmrtntkDoy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1aask9FCTBkLcMeeAAdRYWA2ZLRn62nAX2vf44BWFdVD9Ct1ZM": { + "balance": "2908.127579188", + "bytecode": [], + "datastore": [] + }, + "AU1abANWtqjCixYHndu2hkkwdhsMoLoAMBFHoJ4mvFFpavBvsDt8": { + "balance": "3088.101954705", + "bytecode": [], + "datastore": [] + }, + "AU1abE2H2VvAosjskQ63qNkvPwG8E5CWTXNz7guWLio2pvyuc82y": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1abjQYDyDZ6FHWbjriEAX38nEBJPJmJKTaqGT6JhSX6PFgPvK2": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1acDdLYkhGvn16SdoGdZdBBmbqd5iBqcLffETxyG3FE2v3M8jZ": { + "balance": "1291.372417010", + "bytecode": [], + "datastore": [] + }, + "AU1acH7KqFzVNyVTKgGdxikZUafc3KzTixNNC4busaLCQnVkADPw": { + "balance": "1657.487628787", + "bytecode": [], + "datastore": [] + }, + "AU1acNNAFKR1bXoY5EAHsFTXcy3xxBoyQesQCqrrEx2WxewwTATV": { + "balance": "1806.314429260", + "bytecode": [], + "datastore": [] + }, + "AU1acTaSJy6H67FiNHBgxrB7b1tR8VvKszDWqnVBmq1U7E8qeJXJ": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1acTqqRnjepEAUQPqQq3BvGutmbnDqmwu1NNP1Jnmo8kUPEc4u": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1acgp4RTgZvcmJpJTCEYff1XrtQQ9bPt5EvMeN88zsY8UxBhp9": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1acgx3cDR79uNNGFHnUB9L215sEZgNezt6vn4ivqWeCPvkAqVw": { + "balance": "1781.885587150", + "bytecode": [], + "datastore": [] + }, + "AU1acrfEvZPtfArN7WEZDJfzoPt6YMGropMgfTw4366YrxrhqVTi": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1acvsZHKmiUd5rnQaoVKqueLsZ2hL4A9vjdUs5gyEvvncbfqSf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1adNXhBkgBjdjrrwbox3DoFzbRULxrVQRg7Vy8tYfqKA8fp5g2": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1adVVmpLfGPqPCMiNoskKVYG2KMu1Hr7hDvCHk9ticV6SK9BVG": { + "balance": "675.405192779", + "bytecode": [], + "datastore": [] + }, + "AU1advPnU9tfxJRt19DS3r9gPZaCy75KNQ5XRXb7VrkyNy7PgaxZ": { + "balance": "931.177137898", + "bytecode": [], + "datastore": [] + }, + "AU1ae8CgkPaK3nRA8tWZ79szLnzBNhiZzj1cJqbwA6aaifujKWwB": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1aeBh3CRz3M93R2DbZdgbpy41KFKGu4RwdULR97EBKHNF8bmfF": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1aeMv34YuQmzJkV1TUPjQ9L7qrAziP7A12x5yBuvnTDz94xFmT": { + "balance": "1957.642970572", + "bytecode": [], + "datastore": [] + }, + "AU1aeMv7koUj6nBJ9fqEb8kRyaMXarZf665qzY9YYssPzpyQhEeF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1aeNgnzShP7CTWhsczv5Qemx1RcuLg396VAoY1af3ticsR1Evm": { + "balance": "1540.276716323", + "bytecode": [], + "datastore": [] + }, + "AU1aeRDfKqqvs3SCLcVPfDoqc7URLdiMofJT515o77VUm3xcWMSp": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1aep2EEudVrmwZ1fWnTYQUhHuTJ8pNjzFq4CaXo8SDDU4FgX5W": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1aevQiuCaHNgFT6XKhxBmMms8F4Q5Jn3miZPfMQqb4hnpBXHPp": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1aexxwz8AJtpLuhPUZDpr4U1PzPeFPkGP2zU9hBBqxLDSRoUQW": { + "balance": "1225.417995218", + "bytecode": [], + "datastore": [] + }, + "AU1af6JQaBgXyXU3AocpskzFW4vxedMPK1RHez3kpXGhvapzBJ8Z": { + "balance": "1571.856115223", + "bytecode": [], + "datastore": [] + }, + "AU1afQ6hQ354c4gW6nmZvBaczWfwnGQdX9mb26VB5dJLMmkZsJfe": { + "balance": "1630.759158038", + "bytecode": [], + "datastore": [] + }, + "AU1afRuNEYH6qGzP1KBoJfuKYVpwgEz3GEYFKLNfBxChSA8byNv4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1afTuT2bFa45RdGNRuKbtF8gahF6ghaZui2TqZNtuDPY26KCRQ": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1ag9ywQHme8RvhBA8Yrkub2xaAGbcwMWc5HW3kbGH8TA4kqasX": { + "balance": "2958.921437783", + "bytecode": [], + "datastore": [] + }, + "AU1agAzEtFAtM6cgqmyYkJqRQZqubhSYEk7Py7dNi1RnJJYi3zSG": { + "balance": "548.055618037", + "bytecode": [], + "datastore": [] + }, + "AU1agdovbnyNaeeU7DCckW67Nr9oBJBfpCwLCWeQEGwLuRcfvgwj": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1agpdwm93vgNxUFC67FAP7LGWM79JqmFA2NcgUKPy61Na2GeLr": { + "balance": "963.208940543", + "bytecode": [], + "datastore": [] + }, + "AU1ahFzQrezkHcJVS9pV5FdFRLkrubz7hWek6D1qAFsqXXFJqNTP": { + "balance": "1747.472582374", + "bytecode": [], + "datastore": [] + }, + "AU1ahHa7t2DdFBcuwRPyM784hgmqPc1PDUS9LgtQzNzb6V9nqsDD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ahqXzgbTJu4HdU2yh4rha5XZ1UUgJmZ3thmaKJxQYoujZ1Kc4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ahr4DSrsow4n3fG9UDRD7FJ4QnpJpoQtvw2q4n4uJ1cxmXdnA": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1aiiL1yQseWtSjp53Yu7N6tNTHs6eV5XeJJNJ1hsgcfi67Mgb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1airz9JTwvAZi1WfVbsFPczLxrwJU5EU9RTQSnFJf7JuTkmwwV": { + "balance": "2759.684365572", + "bytecode": [], + "datastore": [] + }, + "AU1aj9ofGf6VrFmNQomZQNxDNNpikH127FVHY7b8E3q7sJGsHMEA": { + "balance": "46.693939282", + "bytecode": [], + "datastore": [] + }, + "AU1ajQASGifzw4zJZfZ4WjjtY2y5S4LgSZZvnUhkWrfymmbGmt37": { + "balance": "1154.995523474", + "bytecode": [], + "datastore": [] + }, + "AU1aji3tnGAPMHDsTPH2yhFRrF49ZuUtj4RUN1EeQdsChZKsYhRd": { + "balance": "2059.207945948", + "bytecode": [], + "datastore": [] + }, + "AU1ak84TbpG6qW2wDyejYkWfvijcoQTS1wu4ThdZynR2bptA9SfU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1akBMt8zvq1bh9eLTjBkxYm1S756eRea74aCrH19UHK63rvhBv": { + "balance": "39.928331444", + "bytecode": [], + "datastore": [] + }, + "AU1am6c3gwprYFrtHiQ54gVhENuFXBcLgtWBXJeKBJvoaXZNstCg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1amQymhNWRgFu7VeBnT3QtBLmb5Xers8XLHrcHMHXZ79SXfP2d": { + "balance": "3659.061946696", + "bytecode": [], + "datastore": [] + }, + "AU1amSMit8D5y4TWTJVu8DCpqU8iHmwyKqCHE3DSxwaFL1qcqCuV": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1amefusqHWDFyfvjKKkpMPi3qmdn8wJvvCD464Pd8TsRcSZF54": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1amter1fhDqh7zHjzvKUx9LNcP2eCHVw3hVDZ4sgkrrDnU5Nn7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1anDNafkdncHcojQgezA6Ars1c5WG9mgReX41XeCYjtfjMXD8B": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1anRJZwyzKRsuUWBmJ4i6c2fS3J5hnE8EVy4VzV9bzJvREptqt": { + "balance": "281.052923863", + "bytecode": [], + "datastore": [] + }, + "AU1anS1tc3cdu6utvfjwjPz45jsQtNk3WQ5gygEaEP1vWrVSmnWM": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1anVyEa4Ntoy5a6qdZgLKjxgMMy1ghkptpEinaB9o7yW2yUWkA": { + "balance": "17.623182111", + "bytecode": [], + "datastore": [] + }, + "AU1ang92Kky1jYPJagnqSW21fQQtxE3p2kWxE8pwCSLfsy6PvSaG": { + "balance": "1955.856042480", + "bytecode": [], + "datastore": [] + }, + "AU1aoY8SR22pAJWXVa8q3SUvm61ssLAdpwXm3cKTHEBZPHo2uiRh": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1apECSx8RHjNrMRy7jknFyGs4B2AMh5eVUZH3qifstb6QUgtjJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1apFEaDCZLgGHSAiSk8WT26YBmxGahBPvZ4GbLKpo7vr1GK8ZY": { + "balance": "1852.111529657", + "bytecode": [], + "datastore": [] + }, + "AU1apJVifmoR94MhnNbbtBujh3SqiEV4aBu5NjBiiBJjpG3etb3e": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1apTvNRRtgNrhx4EpX92Fzkdmiv4WvudQHhY4fnpdGPGjafeJq": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1apUnMzEsPrbyNpoRG6KSweNtoHp94YVyTcp52uNnNR5CJ3GZa": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1apY4eooE3qdKBo6YTWfn75kmBHh9tNS2F2P2iw1L5EkKLd1Rf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1apazvuUkPeUDMTPQkesz5VMQBZdHhneHDdkWcZFvNtVfAWfPg": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1apdoak8T8rt2QnKTbw25kkQxx86sfjUUcbSRinNbko2U99MET": { + "balance": "333333.600000000", + "bytecode": [], + "datastore": [] + }, + "AU1apeiwmKWBNfocjsd8ruVix56aVCNsQC4cc5MBCYGNDamKQ8EH": { + "balance": "2870.801337916", + "bytecode": [], + "datastore": [] + }, + "AU1apga3THrTmkTLzy4abCjKVQMMu5oGvPeRyuh4Z6Kw1ekfaR2z": { + "balance": "1918.771770048", + "bytecode": [], + "datastore": [] + }, + "AU1apiL7wcHwr5mJQsmGVmJmC8xh2YE5VTQgsqGTxywfmaXZQUJ": { + "balance": "3421.461927572", + "bytecode": [], + "datastore": [] + }, + "AU1aq7DXYWUMhBkniXwde1HXgUjwRugTt4SADrgJvU5YrXN7mfeA": { + "balance": "537.729235538", + "bytecode": [], + "datastore": [] + }, + "AU1aqmJm3uYskGMVpb6r3mtREkv2HLuTf7zrjw2hxLfx3n9bMpqR": { + "balance": "828.938335905", + "bytecode": [], + "datastore": [] + }, + "AU1aqvKxdyHz5ZYLUPvir9QUXMhEgwQVSdPh97fsiGmjMpmazZVX": { + "balance": "959.056095932", + "bytecode": [], + "datastore": [] + }, + "AU1ar34K7gqugnBykT4AoUxKbgkUeuVYi3woRmtJrTHtow82HoHA": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1arGqDNzBPA47p6xLT8hXvCA2L8KFyygf3YmaYqYH9e5fVo54P": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1arRuuzgHGm9M2PWA33jhcMQra7kL81sfLUswRQStNeCb5gUFW": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1arS39hkgNxme2RXzqRMX5dVw6EWAAASnDv76d1XoMh2vHR98h": { + "balance": "1408.713353096", + "bytecode": [], + "datastore": [] + }, + "AU1arVH21WDNr2XAdEbb9NH9KzF6dH43L9GZ8LqfEtZTZyfUxCdA": { + "balance": "1452.433496441", + "bytecode": [], + "datastore": [] + }, + "AU1arwSmhprzvLNpQpBGLWPy7myjjmd7dee88w1S1vo1RLFTHgXH": { + "balance": "3635.688844976", + "bytecode": [], + "datastore": [] + }, + "AU1as8P3JuFWGrXmzi3h1911r9xaK1pkcqQU2MQL6qGxGW8mWBuG": { + "balance": "1127.463577890", + "bytecode": [], + "datastore": [] + }, + "AU1asLoQnn2sBhGoTQQegHWmoaE574nYFbx3ZrmaLJNjT4YZ1XPQ": { + "balance": "1360.750182379", + "bytecode": [], + "datastore": [] + }, + "AU1asR4aNaj5cNoxfZqNy4sGTDdLKEttSHpHZdQxHkQ6ApvLXzRs": { + "balance": "649.014237869", + "bytecode": [], + "datastore": [] + }, + "AU1auDAn1SidMjcqBWpT2agHtdEiuYM5yyKzdba4jkAk2yjQtQWD": { + "balance": "15016.027385768", + "bytecode": [], + "datastore": [] + }, + "AU1auGx9SMyWeaWHABTegGXC39oeGiPAxA2R8jipzT45Z8Tm2Fzr": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1auLRQYh7Gpv4SnLKzQDoKGti5t1v4Chc43BZoFCXC3wEhNyVU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1aubpwc4Fd17XbXob6u8csjxJbF821KpQDPGPoUSCMBfTPPaFw": { + "balance": "6211.178775553", + "bytecode": [], + "datastore": [] + }, + "AU1aujP8fGvg5G7vhAKbAZQCYTEuAP8pCpPy2Ua1Be2mDTDouc7H": { + "balance": "577.735700492", + "bytecode": [], + "datastore": [] + }, + "AU1avSuD2gW4zzknPvNX7CAYLWHZUfDomHycZ2uNAwErCmDXQpdJ": { + "balance": "58.580858086", + "bytecode": [], + "datastore": [] + }, + "AU1awYJ2sMesfX7b2xNzUaxf9U8iAFiJDV12cSsbyidvxT5j6CsD": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1ax1modnCyv8cd4WFnyyYeuQbw52uvBwYW3uqHukcEQfGXoyiM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ax5BEMnL1dauoohLPUFEUZThvT8y4r7yjGmPeWaUCTnCRsjf": { + "balance": "872.535351355", + "bytecode": [], + "datastore": [] + }, + "AU1axVbKEuga5MFLb88BnoUHpGgqJWgTdEbrBunjHBxwRWTDtwVj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ayCD8eANbqbw5WvRdbQdqyxBtPkAuFQNF9yaxkfs6xwxCPs9m": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1ayQELw2ueKx8JAG4HSCmeWfhMP8tjdEDq1hVcowtX7x5AiqS9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ayYsdPos1j7EHxNG91esTKVYCZDzqaSNtzK1dZh3Jx8n3u7Xi": { + "balance": "2249.024593882", + "bytecode": [], + "datastore": [] + }, + "AU1ayoP5ALiThxXzPPdDxHHcPxU3W5hbCUFU7GJri2kKcR7zr6Mc": { + "balance": "2772.304146836", + "bytecode": [], + "datastore": [] + }, + "AU1azCzX5YfGgMuWFA3LQCWFwWQgfxxzHzWj7U6dHX2dipubrTSb": { + "balance": "810.727152808", + "bytecode": [], + "datastore": [] + }, + "AU1azmRoPJ2a5NisRgpquU9idJtAfZCVXYTqSrRcGGrmZg5PuyRa": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1azugckK8RcDowCGQdfp6e2b6zcNtX8jsoeq5JL7ueiYspY6vY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1azyXcHvb1NNsJJKxVGVoUytGFCiLgVeXdKU6J1VRUTiK39SSx": { + "balance": "1985.323763719", + "bytecode": [], + "datastore": [] + }, + "AU1b1KKRUmbkca7pK1DcYHJiXGa6Gd6ESizMJnss3RypfDMeMxBa": { + "balance": "4786.651961147", + "bytecode": [], + "datastore": [] + }, + "AU1b1sTELwoUaNDuDvqxr6feoefmG9LFdmkb1pFSPg7jugftYfZf": { + "balance": "169.796963836", + "bytecode": [], + "datastore": [] + }, + "AU1b2ygoBPvbyDDbP8kDMfyGaJPzqnE5ALfSpGnVhqiuW7TUDVS4": { + "balance": "727.575426860", + "bytecode": [], + "datastore": [] + }, + "AU1b3R3gF92WmueCCHNRqwPXBRWBTQxSaKS45YqyPru1HssXY8zv": { + "balance": "198.448115399", + "bytecode": [], + "datastore": [] + }, + "AU1b3UEiiKUFEN41vXzM1SN7yMPbVx9cHp5J6JEkkHwKjfUtnFL3": { + "balance": "1877.317910961", + "bytecode": [], + "datastore": [] + }, + "AU1b3irQyJq8MCYfchjyZ1S2aXVdy3Bv7zsqnYuKrwGpF8nztdTN": { + "balance": "4348.322642714", + "bytecode": [], + "datastore": [] + }, + "AU1b41DNhg7YqZiHJbKHNbjdVV4FjkLnMqrL2C5SZaJL9hRYjuwE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1b4A5FS9EGn2xag958GfCpc6cGB2J4TeawZPwoTPCRFbLeUmRf": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1b4N1nry1HBATJvzE1YscXiPTmdWws2kUWaiRdSJsNgD9rQd3W": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1b4jQi1AEgK8zuWyREVCdgju4XFPzcDJkgSniAeaHynTicPjzJ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1b53mwCCRmf7CakF3y4XWYQN3gyLK6SH12xAoXNEDsASt6zFXW": { + "balance": "1419.824798204", + "bytecode": [], + "datastore": [] + }, + "AU1b5NM973JT6Xzo1QYrhDnpJBH5wuBgsT4pEMNKTPNpe7t8mgEz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1b5VGWpMRYXVFYU5gF2d2noiiSeQBhTiMxgvD9JEyy9DY8TtHi": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1b5jfePgvbRX7dC2aZu4C5n35TZCxPLNnXLMrKXxocCuWgYErS": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1b5rr62hg4img5fnNPEVKZhPyfE1VyRBYJd2WYQVkSP6L5rRyZ": { + "balance": "76.385191504", + "bytecode": [], + "datastore": [] + }, + "AU1b62URYyYDzXBnnLhE4PWy47RPRCUona6PHVKauQ6EzH5Qwk5c": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1b6CZ4Lg9Qa8NN8zGgyK6Kp3GqneYswhe7rLpAULDvxtpMEJMj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1b6L7eUdHNM62hDJ167D5KFQCfy8KmahU5C251f7QCLLnADpLN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1b6ZbC5qWRjhLmemTZFvX3Mw2N6c5rmDQNRdTE77GeBqqXE2an": { + "balance": "3682.901274104", + "bytecode": [], + "datastore": [] + }, + "AU1b6v5xcQ2LZx5bTYYXY7XJjJgWmczNgAFKr9pKJSME9ZGE6o8i": { + "balance": "1647.522174826", + "bytecode": [], + "datastore": [] + }, + "AU1b6x3jednb5pFKuYBtydTo6dPBMpeg8Vvdw1hFwiHPT87mZs8M": { + "balance": "1290.985483309", + "bytecode": [], + "datastore": [] + }, + "AU1b6xVHoPJaijbmjmtzCjY5Q4GoXe2jiR85qVPSiyHWCMBE5ze7": { + "balance": "3864.924838910", + "bytecode": [], + "datastore": [] + }, + "AU1b7PwzQPxQHaEFw4chb48FMYSdYz3JfBJCriA3pon2otwhkLS9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1b7h3gPeUFCmzE9vNx7bWyHxvRpm3UGThfLVSLBjRsBfdjMg9K": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1b86CT1tJBNq61tUJwkDHbhU9dHdCRTnmGDuSvALf9s5riCnKg": { + "balance": "908.397068357", + "bytecode": [], + "datastore": [] + }, + "AU1b8z7azSfYmbfATrhrLc9DmmviuPYbFJDxyu48UDBugiWGYAmg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1b9FB17MU4VeN1FGVjw643Fiji8HSHpVZR2Fg4GXrPgYkwFcyG": { + "balance": "35.950658865", + "bytecode": [], + "datastore": [] + }, + "AU1b9LtnbcHccuGreYPQKaeTyyNs7K9pgzkLGAxZn8hVDBoGmn4g": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1bAHPWuKerfu2XbV9YfcunPjkQwDMhhAiFmaMfdQHDHkEDzR9i": { + "balance": "61.724084691", + "bytecode": [], + "datastore": [] + }, + "AU1bAK4c4BuUP9QFnZjBiiPH47phgvH4t6evbPwRfEHHmfNmeKZi": { + "balance": "5464.417855217", + "bytecode": [], + "datastore": [] + }, + "AU1bAWRbUYUyAEgZMURdQ75VJBj8QauQqMZ1E4By5NBRctXVRx8V": { + "balance": "5862.783207661", + "bytecode": [], + "datastore": [] + }, + "AU1bBFKRqgZhfcnvJ4zFgsFyMusYPZHUm4WBqSc15KHHb93y9nxs": { + "balance": "663.589254520", + "bytecode": [], + "datastore": [] + }, + "AU1bBSx8hjxcUgVLKRmoxdDcXErsrWkT93Rn1d7yu1H9VXeVS95D": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1bBeFBCTe7SYowMKvqRHR3HrcHWyCHUNMYJycWEAUBDZtEBdr8": { + "balance": "5611.130029295", + "bytecode": [], + "datastore": [] + }, + "AU1bCzuSQeh7zjVBk2U47rvix7KftzNjA9Eh4xXxNx5iaagX6WQg": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1bD6fjTcRLvUbDYyeXuCq3x48ZdCWMa7WSYL3RcLdikGuTsxbh": { + "balance": "227.094813878", + "bytecode": [], + "datastore": [] + }, + "AU1bDNXzxUpUUf7YGGxRFZHQsjtG5xLH73uBtWTens1By5rS9ENd": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1bDhGKqLXk2qdwEjpWBthEnxgMoXAh7y4stR9E1Nd5n4n2kknG": { + "balance": "3410.434368125", + "bytecode": [], + "datastore": [] + }, + "AU1bDjF6m17u2DbBYqyxbCSk4vZgZBjkvRN6SiffqWPcYMMPm6zk": { + "balance": "4073.650613742", + "bytecode": [], + "datastore": [] + }, + "AU1bDqW7h8gdpihPUFXiXwcZGL9RQEFLoJ2CMPtPyaoVJGXULoV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bEJ5UG9o8CymrDJWNmTHk9dQAimdkFKzW8X3Ptsj9iaxL76VD": { + "balance": "1229.933983295", + "bytecode": [], + "datastore": [] + }, + "AU1bELHB6bzSGdaobFFLndGm6VCJyVzPTAFMUH2xJxgnb3QBcNVQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bEeuoiGHBGJbafmyYgLy9AmVp8sB4ptrPq7GSobx5vft3gC8m": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1bEiU4tQRv7ibsJCS1ujhdfayCgfMsHjZenS9msUe8FfbkZMZu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bFKUqJCNCk5st5e5ioDHR5anqqBw6JzYQTg1Z92XWrsMs62j5": { + "balance": "4784.584249342", + "bytecode": [], + "datastore": [] + }, + "AU1bFhB7R4dupbNknQnAZ9KcicFPPPzEq9vhcMXHBhfysHqsdLsL": { + "balance": "2642.338147762", + "bytecode": [], + "datastore": [] + }, + "AU1bFkpyFB7UvDBKqQkYjxt462H7cd6uuRxCp29wiDkciqGYpy8q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bFogq6mwvs8mVqpVATei9cxYZUmqAsWNqXNLMG4h4G371NmJh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bHEAULECgo4p9h8CmhmwdN2KahDywufKkZckW3AaiYtUyET3k": { + "balance": "1544.945022050", + "bytecode": [], + "datastore": [] + }, + "AU1bHViXqQaKAcQEtUsVeybRua5RvPcTjJ2xnww6nmcp9MQZA4so": { + "balance": "2513.255605086", + "bytecode": [], + "datastore": [] + }, + "AU1bJCd536pxD9N9JFe3ap5WUpoKqFGgtoH9MfGLBhVdRzvKEUrA": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1bJcKcLoSdMUdvVfkC9c5GRkAUpLXLKkLNFcCCia6uJgpNQKct": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bJjM9H3Joqpj8FeiFVKc8vQA8tLEFMpytnmCq45zGxg2LtXNG": { + "balance": "532.435357046", + "bytecode": [], + "datastore": [] + }, + "AU1bJjSnoggRUra3SCtj8ANcLr2aXSZ1uCaYraDAYJiGXdEvQN57": { + "balance": "2191.089192880", + "bytecode": [], + "datastore": [] + }, + "AU1bKDRQp6HnbBYvUkRz7futmR9A2ecMXsuzkR6eSPrMdzeH5tQo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1bKjpi2Lt3JnaYZTBqvhsAhRRr3ckBxFeHE3WWfNogCkFTD2Xb": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1bKke4QoSy7CmSUKp5sQRkccYxR9d1ey8XKoRkBvx2zqqusJEg": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1bL8XEE4vYnw3rRucv3RhahGsp5j3bTuA8mrdHwsA56rHRnuyh": { + "balance": "27.843562411", + "bytecode": [], + "datastore": [] + }, + "AU1bLkKhk68dAnBeadJq5vgEZazXv6WVtxzuFBroQed5qfXSmsbY": { + "balance": "2983.247133983", + "bytecode": [], + "datastore": [] + }, + "AU1bMHDpJAmHb2x7X2FKZq6PnGUmsJgjajodDJmFdX41H14t6T6v": { + "balance": "65.181518152", + "bytecode": [], + "datastore": [] + }, + "AU1bMQUJD4hdXGEkQHKbo9dtbQr4PD7YwqNSfdXXecCVjp2tiwUR": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1bMWtMFNXUdxQYmceEJotWpkqMx7sRiYhk7uC1kQ2h7aE9SuGT": { + "balance": "3565.884394023", + "bytecode": [], + "datastore": [] + }, + "AU1bMXvtDZhBuuvLKzCtwFibbQcSCdxgsaH37rdjqXtf6Q7okyP8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1bMavy6vw7KNNtEoEjD2prA6DjZzn7xdcrJYEbmVDfNfW6y6PX": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1bMfpGydGHczf5d6nN3VNysxC5FiKQbYWGnVF3ZX1jvBUCeA1h": { + "balance": "2110.904325679", + "bytecode": [], + "datastore": [] + }, + "AU1bNAJkCMfMXfqYFmJH1Xv8sD3STg3n21sDQpFDCavkAAsL53Gx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bNZhzHaLQG13TukRfWu2kwBfxR8L41NPdLinbccVqNZgdHQbf": { + "balance": "2406.936348642", + "bytecode": [], + "datastore": [] + }, + "AU1bNaghi8ZX3nySnag4XWkTNfSHwmM9Mbvq5J3aDju1yyfKbfyA": { + "balance": "1635.615809422", + "bytecode": [], + "datastore": [] + }, + "AU1bNg4HEEwBSEZPM4QzhpVoLYnbkM2YvRMyYZBt3dsPJoc9Qtvv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bNiLsytGXhczKfPafTbEwUpLrCc9N5txQ8tTCzeKnLAkXZhbx": { + "balance": "3630.502839818", + "bytecode": [], + "datastore": [] + }, + "AU1bNwEY4f2BR2prnJRdJ4kZpXKVyTxiJbnNbuKQ95H6PQUMg1ke": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1bP4JDBQBVdhqpSwPELfq2kEyQhZ4rQ1itmU5UCCBDhZgQDjem": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1bP4kTqKan13aTozzGp84Z7aWVqvfBzatoYz8b4YDtFBoXgByT": { + "balance": "1697.511973460", + "bytecode": [], + "datastore": [] + }, + "AU1bP5hh6QbihURF1cCSbPPfPYu8ERKvKHh5V8usEEjZgmG9jogV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bPCSVSZYe38D4ThkJ2P6hAL6LbY4cLML1x55NRZ92pifGydSB": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU1bPrqrDJ4g5CvavrPdeDwbiC97gZp5shWtMtsHiZUrTtbeYVXc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bQ6RV4HM6ygeQ3LFW2n6yBqQLpo698rD6f1TRedwCeyyKQTyt": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1bQ7LSPmK63rpXJiosXjSUN1WZRZD8PDBUTTwNpG5FSKiQSPj7": { + "balance": "258.360739537", + "bytecode": [], + "datastore": [] + }, + "AU1bQYPAicqCNu7NDy4ate2QZy2WvCNbqQYarXkFuQyXDLynqXfX": { + "balance": "819.786600399", + "bytecode": [], + "datastore": [] + }, + "AU1bQqRjbzug6xMzjRJzHBe3VRvG7nnrjojRge8yivcc9DSJUmEL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bQuRyd8AWuyMqThoEEVKZRzVLSUSf1AbugA4EZSWjBL3XBKQT": { + "balance": "1140.787926044", + "bytecode": [], + "datastore": [] + }, + "AU1bR77XD1eMZhVhrf1fAXPx4t2V3rfs9n3pYtvR3z3bv8NgAGn9": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1bRLw18EZPoRh37hhfRZEvjM4AbEZpxngQXCJGTmUpVaYZuKey": { + "balance": "1416.217345206", + "bytecode": [], + "datastore": [] + }, + "AU1bRwWJnZU4sRSkM1dH4fB68CMG28vPy3eTn9eFxH3iSiJLtMPS": { + "balance": "815.549313726", + "bytecode": [], + "datastore": [] + }, + "AU1bRyzdijKPg13esYrNb1t6AzipLJK3JoPphL347E8dheakvi98": { + "balance": "90.269414504", + "bytecode": [], + "datastore": [] + }, + "AU1bSHjm3RXRPsCgPaYtco3G3xBvgAqk5RZKET2M2ekdZHSsXojs": { + "balance": "63.069606210", + "bytecode": [], + "datastore": [] + }, + "AU1bSpR7B6Qg16FUAfus1vzyaeFMmhLAtbyMPPGyh599XwmxkEbg": { + "balance": "1491.160124309", + "bytecode": [], + "datastore": [] + }, + "AU1bT12UELnxWCRrfRaYwab9aQ9xe3GrTRVvpgqAeSDvSNKquSb6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bTDE6ozraTQyVvs7MeamND5qRcevh7uYALSjxeTniwA8Wovii": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1bTNjQ2TBpLGiKoHbcMdX32d6iCyoEw5u4MTPkCU7prsnqjhcz": { + "balance": "5000.255526712", + "bytecode": [], + "datastore": [] + }, + "AU1bTVw2TFJrgezeFGU7SagLZpV2ZYXBLG4xCx68LQhEAZKhKeew": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1bTZg7PTKtMdgtC6eNdFyQXNQMxhK8ejcoKyEsK6Zc4NeTHWPT": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1bTj6tGGzV8Jfg38Mf9tnDThXBNWPhiKW7nbYvnUKyL1X4qEpG": { + "balance": "1435.780154624", + "bytecode": [], + "datastore": [] + }, + "AU1bTwWPxXCgHuqYZXpMTEGvH5aBMkTKJy9cB8mDTLTNostjQAsN": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1bU4hEvnYfQ2tQukLrLBgdUp5wqyZwkH1igX35h4bsWEu6ZyUB": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bU8ZpsR9jWdRRmPk1ED1FgZ5t1q86TMnhne6sTMYjyLyRjxEJ": { + "balance": "3877.200262207", + "bytecode": [], + "datastore": [] + }, + "AU1bUD4f7c74kkrFPQnJKe3FpnMVYz6ksABDUCUDcWVWGmxZDPng": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1bUD9ZUbjTjLeewNbqKJ3X8DQjkwZzLekDw7j6oxpnvy2xgfG9": { + "balance": "6640.128027944", + "bytecode": [], + "datastore": [] + }, + "AU1bUZwwA4pG3rq5RxwgBTE69mFWiPjBPwSdYurDwdU9bChQzeQL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bUt7LXSmd8G649Er16KMv9Pmgihd8rWLz7aALehfY4brBTrrW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bVAFtdyg8DhynXYfsShSVyufkTn6S3oGjYDM4tf8hgENVFKBt": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1bVQHW1FqMDxrZXbb31VNxWWBBaEsHxtJVB8WPpdwzWPYBcS34": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1bVSDCAAVu7LzFsUwb4kcyJD8Q8V8GHzm2AeVD7bVNv3D24fhw": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1bVZJCpFq1dSoL5cAqWBK8v2EZ6hVCyhhJpFmthiiW2yQm6HJE": { + "balance": "2696.742649371", + "bytecode": [], + "datastore": [] + }, + "AU1bVt1K1pSF2xbFxxRQPTxd3XJrDggMeNAxpWiKjkrnN77xoL6Q": { + "balance": "2817.856224331", + "bytecode": [], + "datastore": [] + }, + "AU1bWHGADm6uoi4gU6HqaxdyyJM2G7YoqG1Lb5uoiKHHeDSJoqsu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1bWZ99K9Ti2EXqqWiAzdS3MiTLDnugmcPcWuKCAMRif3mCfxMo": { + "balance": "3172.471332788", + "bytecode": [], + "datastore": [] + }, + "AU1bY3zbeB9Dj5i8AY7ygGG6EWDawy4CAyW4BJuNB457a8KdfoGc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bY6z8jXvdg4ZfB7GJW2wtSnqU9pE65LyCVogMHEx3QnQ62cZ5": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1bYVqLz2K2KFrr5MmvBd4RRArub6xdgCLTdcVsNwgDfzZLDNd3": { + "balance": "1017.726081633", + "bytecode": [], + "datastore": [] + }, + "AU1bYmVFtfDpovmAuRPVJ19CcdQ3ehMY5VgzytutDXZ5o5g38Wb8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bZ8zSkcPo1MiBVQzJ6F2DxNnwJoJxDmG4CCCQr9YdowVPFSXH": { + "balance": "2710.382415531", + "bytecode": [], + "datastore": [] + }, + "AU1bZ93Ay6RXYFRbS3ga53RpzhgCHmtzfnw5YuvFVSZDYBLReVjJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bZ9UXX79K5bAR7CfJUPQoNBgWuhnrswWHdLd45FszDiXjoZXe": { + "balance": "760.227860802", + "bytecode": [], + "datastore": [] + }, + "AU1bZq5vAWEXrAPodp2yyAP3aahNUVcMBgqZatQkqvhRsmVzcvwu": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1bZxX1YfTP4Srwa4pS9irTv8kjH2xGFeVmavNNoBoxx5QXSEY1": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1bZzwzZUUAzt7c4KvccWWYmaU1eTWrxBtuXGabmec6GnZ2aXr1": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1baSDHEm3Feqqam8nnhybpTTRAtQ6fz5sWDGHAP5LR4bZhqJpo": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1baXZhKwzD8jB1BxfQ55xGxvusSXMYYqjbUu2aoVTLftJwrJXX": { + "balance": "27.416096587", + "bytecode": [], + "datastore": [] + }, + "AU1baeqDtvJ6fwsodwkbBjTM2aUShiajN8NLFrvKRFWGn97HGVfF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1bavhG6qwsAxC5xiVfUZq8zYZWcHMSKZ2JpHw9RK5jR9SDRRDK": { + "balance": "2486.870363106", + "bytecode": [], + "datastore": [] + }, + "AU1bawoGMHw7bCdaiCC5bTg4xiLuT1y4LU82kKNpHyVMCjpq1Eoo": { + "balance": "2041.687372186", + "bytecode": [], + "datastore": [] + }, + "AU1bazjWSNR1sYbp2QizkMrcFGxfrxanrBLnuRGxgwukE3qgd1mM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bbLouR9WbsU34EPJWuS3KFp72H11Ni5oAbYBPCV1xHcsHU5Ux": { + "balance": "1904.039774798", + "bytecode": [], + "datastore": [] + }, + "AU1bbb8xp9UJf3zrswms4o6YWT7px4787RYdwtpU5pN69MQbnNvE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1bbeRZ9uVoZeAFt4wLBVcjTQGGxjcqrvooBGddfTLHcQc7xak4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bbpBPMW9L8cu5jSbwkEuASQfrX79EeaQaWnx9eEVQNvrKkV3f": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1bc6KdmH2UGu7NYApBfyta4QFzoPwk4T7UFPaWQkkspFTErgzo": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1bdHJ1E9LDuNJiQf6rjDXn2MoKMy8kL484c62eqpQtjq3mF6GA": { + "balance": "1335.147300275", + "bytecode": [], + "datastore": [] + }, + "AU1bdHUu3JK19BNQcKAuJXkJc5RgnMQNPFoXDh8sLHyPUPxBX7V3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bdqsTid2mJL8FZwxRDnZhJARxLTH1pNBNYsQNYc51guQ1Q2rB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1be94Udk4Sr57BKnvi95z3wDMmAvSDQ3Viz8iXTtzre773TaCU": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1beCbxQL9y9pAFraDjMTx58yDD4HXdD8JUSzh9orVHnkDhnHzx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bedAXhFPqv86afiJMxRF3Hh4QNFHLL9yLbmVHhBUQqxSKD1mH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1beji4rTJ5NnC8QTb7spvEcfBZ7cvGXBqMp9CrKTJbP85cTtjR": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1bevUg4PaeR1grUqKcmLn3wX5JCSAJ2TRak6fM5fjXL6VJncgz": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU1bfESyPYBPPnEYreXRb2ToABZofYt3n4ABb8HAxWCjUsw9fLpj": { + "balance": "5386.224800389", + "bytecode": [], + "datastore": [] + }, + "AU1bfKD6p9HysvUCAKQhRGumu97qC2cppCNkJMCi9qSHQHMhLhF7": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1bfWcwmADqbtpTEGRofgxgi5RDsUtJLZcRQQVXWzoSndcEp6kM": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1bgoXAacebBzea1ZZ4dtbNTGMSHaTQZ6xaqNWZQszRkc5nTWfJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1bh79AruoN1BTgcKdHt2h9mByYSmB8pQ3qJnTEe1giUe25SXcJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1bhE71bm3YNsDE7ZDmdkLeMrxZbqzkDVCqurJoydr83dTqgNfC": { + "balance": "19551.267241523", + "bytecode": [], + "datastore": [] + }, + "AU1bhRXokMW9qo1y9PXEhBwWWsHbPGj9N6yxHmeqLvPFfsDkgnTD": { + "balance": "273.706389969", + "bytecode": [], + "datastore": [] + }, + "AU1bhbEyvwgGmsfD3VY1C55mWgyeEZvsUsQESZ45oepfzdeqAXFA": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1bhiT6BTbuz243LucF27i1HqFaYmYNqXXjdittSNbi6enoi3Ge": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bhn1pwBDXFpBLcgKbZqK7278hXjfFfeBkUR5QqgiXRkTivQSz": { + "balance": "2290.034723603", + "bytecode": [], + "datastore": [] + }, + "AU1bi8kUK7BMX6NUJ9hEVtDcHVsshkttHrWoUwcRnzvPMxtBJ3oT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1biAyUsujSjpFmdXGsQZVBTcoxmjSKkYPqbVFQY5SK5QBwi93f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1biLgNvsNEP14226kXAPaHVF74u8giX3NZrMFZnod6qhVCEzfC": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1bimojvnfB1QZt5V9auG1CCjdiytotmnwmmDqjaxWnFdjavQjP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1bjAbF8JyihjzHi1yZaPxxh5DWnYr4FxgWYsqMMh5e7PWEDUCq": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1bjTPfqBSZYV1rDK4NsAKzgN9xWN1MTMEgABK1vENKhewKAHCE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1bjWp8AcPWv6KQnrx89q9shhFveFqNLcP4FAVsfYiHYRpNPiUp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bjmgwSiNjvULHEubHVv9cybBNYTSQiWjTSQJTduqYu4v5iWj3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1bk1BYCuHm9svdYhHQeMJVFwiVncHHqXYRBvRbYoLSsa77cDaU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bkbX4kSToAhnyFVk9qeDYz6ftQWngahT8gDmkTUr9VYMWLmw6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1bknhcY5LPhQNsbQR8tUF74fWiQGGij4qqR6YCXtF7Dt9gam78": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1bkpVpDgfwFRg6Cy8QSvUvPtTbSpfJTpFx4my596uC4TxZ14yd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1bmjXNrMkHE7pjHzNS87RcsG512AvSF6AobdrbaB14T5wEwMSf": { + "balance": "2166.363162607", + "bytecode": [], + "datastore": [] + }, + "AU1bmqrKj1zRw61C1xNqYaisxdkYdg6eXUx5DmotT1jUHfE9fVLG": { + "balance": "1156.339504993", + "bytecode": [], + "datastore": [] + }, + "AU1bnDQa2ST2kgzEukZoAE8oVip9hdzy85yzU3QwdYo7x5mbK762": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1bnG7CKnV6MxUzuTVLpAgLPZTuzj36DtUBdSCsEPzS8srqmsr8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bnbYdJ8Sffuqp9qodh9UzXv95Wj6TFx7Yt34RYzSwBAtFXQeD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bnkoT3EKvg4N9bnHoQiDaAJq87f1q427xZ3ai8DXhKr3YQsjb": { + "balance": "1344.128500494", + "bytecode": [], + "datastore": [] + }, + "AU1boasYiE4jvV5qpzudGX8qEwvFAWpCqNn2udxQz9ZXPoUJYZ2U": { + "balance": "1322.641006903", + "bytecode": [], + "datastore": [] + }, + "AU1boihaBMMvL9Pg9AzmkXqBRYHCmg4YMggNVcRkovLCiNTAJGQp": { + "balance": "981.054953391", + "bytecode": [], + "datastore": [] + }, + "AU1bp9w8w9xnDVniYEunJtc9pGagUgCaw9P2pGKbMajTJESXZsBv": { + "balance": "2793.994780400", + "bytecode": [], + "datastore": [] + }, + "AU1bpB4YV4kmf6XfvCC3zE1s6CWAh7FXkQm64ryXuFo6m1bm7Pzn": { + "balance": "2562.069874314", + "bytecode": [], + "datastore": [] + }, + "AU1bpw8XnfH5oeESzctJpKS3t1M45RuaMZ4o1sJYxphaA5aaPBMH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bqKErXurMDwUdqBWYV6dMmcHfAFPxrywYdurjD6jhHAXwoVcG": { + "balance": "1038.348254885", + "bytecode": [], + "datastore": [] + }, + "AU1bqNdxMdeucjdUc49uBhgmgta3xSz1LWEsFqaKJQTzc4u7c3FJ": { + "balance": "1412.535682312", + "bytecode": [], + "datastore": [] + }, + "AU1bqQkT4AFFKNvQ8VGuEAk3qMSqKSnhVF1CSNZE1EKPXN3CD1FT": { + "balance": "2680.334848149", + "bytecode": [], + "datastore": [] + }, + "AU1bqhTS1B4vhaCwzsVHgDc6DhFaprBTLDbRCq8GyWB3FLTiA6Hq": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1bqxHbXPYRTYpL4mUtcgTDS9JWhnqC8dEkeZLKYGLgVhWTnYJo": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1br7434664LYi7c8Bnaz1EFZHQvSeAUNJgudckVPJ6FbMAy4bV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1brD62R8DyRapr1Gosj8bnTbBn8piNv5tHrotzF7AkQdvT1Bms": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1brHEVEwgAFBdagc4rtwf775v5hyaXY7cG1FdoZYB9ipRqcWVM": { + "balance": "1024.426690336", + "bytecode": [], + "datastore": [] + }, + "AU1brsuCMevLiR7aoSLMn78rd5b61dDXWFbcRowbYDsKQXaYZtYt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1brx9RFMV8tRwsKATF7uWDWuygmjSbQwsk6drrvs5FZed13GvZ": { + "balance": "1193.611340176", + "bytecode": [], + "datastore": [] + }, + "AU1bs5vExnPpYJtsk7t4M6ecEdhgKNU94NtJzRJshXf4gKjPmzs8": { + "balance": "1118.467035177", + "bytecode": [], + "datastore": [] + }, + "AU1bs6SVF2kkiUyYcP1fino8rmRPm5cwf2pDb2o7UsnciD7ZWUsf": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1bsjJ9u5BVsAu2D7ya34vFaznre4Rj1CAiQ9J6DFriSCXenFHH": { + "balance": "1503.870922423", + "bytecode": [], + "datastore": [] + }, + "AU1bsohkeuWzAf9GgQSqeY61nBPuQdC9LU94eAjKbj7rvgaDRMCD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bstbT54LEMYE8La3jD131VYiwdaHBdegF8acN8ZZwJdzBZTJm": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1btEDfvVUTKcAdXAVjG48im7v51FUeg2P1jhwXTci3hvauchhg": { + "balance": "93.340905639", + "bytecode": [], + "datastore": [] + }, + "AU1btMsNDNHuwiy1ENZYN498Y64nG9UeGh2ZpcNHnCTLwQ11EyqX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1buNVme7cNXzBicz4gkSJeadaUuMFsgZHowm7f3hddEFSqYWg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1buXAQHozcPt5JccGnmEXdapKEzstX9whAi4eoSE3itY6vNg6H": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bugYvCQsXC9yttzdwfbVxk3HjwkGk6xt615TZZ19MchFsiRdM": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1bumFsALcxcxqnpJ3eowPumh6hmVSpapgXohW2FiNnCBKqAWMC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bvHwpKroJMJDBSNeCj11mWdtPBDoT7Wnhc5pJj2WQzLAYhevE": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1bvQBBy9XzaJhhA1jcFLr6wNX6mP5eJqEiF4uD7o2BUwvPVehy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1bvaAKDQsL1RavreKtv1dnN5zJojUnowpSgeCaUdzrKRmcVBxz": { + "balance": "1039.792420798", + "bytecode": [], + "datastore": [] + }, + "AU1bvdt51vrzrrs7u1mjJiuFZd5gz9KSW6KsiKomaAGx6gzKeHgX": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1bvkRyqp29K4xwm1dSPbJZc6MTXirN1TgufondKxKeLLsK6kyu": { + "balance": "148.996107431", + "bytecode": [], + "datastore": [] + }, + "AU1bvkgnPniMV79b6mETLQxQBYUcNxcd9hKt6Dy9ggzd9r5YaoTT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bwEza8KsGHstPsBBc9mVajCfW5uLCguvtnU7PLokF1Pi5E3qN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bwVRcGTzYsDegVMnxHeUNnB86L1vzWrEQ9M7KBrMkQLnNxFEc": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1bwh6AbsY414HkKMsbMUYXgDLJSZmMD9vabSG9QeMqLLAaPDjY": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1bwx3xrvKTJZGQkvBc4eznXpi7QeGjHA1qu1BLfxQ4cphfvDqK": { + "balance": "1180.222735096", + "bytecode": [], + "datastore": [] + }, + "AU1bxVA9VaThhzxLp4NuSuog9ntejro6DS2RGEMn7gvCbCEs4RFA": { + "balance": "575.474041458", + "bytecode": [], + "datastore": [] + }, + "AU1bxdSybejJG7e9uEvWA1y8BucJE1a3mFZD63MBtP8cqvrE7LeV": { + "balance": "1295.358146987", + "bytecode": [], + "datastore": [] + }, + "AU1bxvaV8HwfwbSbbzqfCA3mm4rKDdT5Tore3GvTE8LQK4yeVJs9": { + "balance": "789.609196363", + "bytecode": [], + "datastore": [] + }, + "AU1byb2Pijnz6tGkvcrA9swevjr6tnfkAf2JG96oMy87jUM2WYfp": { + "balance": "2623.410420175", + "bytecode": [], + "datastore": [] + }, + "AU1bz6VW4akopWES93y7r1HQvvmUDzSgE4KMSmWXNM4jEk6nrvj3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1bzMFhdvYKnCn95d6P6qWrR9fTkxrRTGf8VyYLzTeiZwDgSKJs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1bzeJPvWtJDsizy1gU3yFWRD9aLrSA5LSYkJNkH5bQ2Fr2XZvs": { + "balance": "1303.439556024", + "bytecode": [], + "datastore": [] + }, + "AU1c1wKrgqmSacamgeuqA8RZkhBURXV54aoY95gR7AcmkfsPeme3": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1c1xK27QYRPKdbWGwNEPtFeZtB5quuGWhE9V6RHR5xAKnNUUE7": { + "balance": "5801.439225383", + "bytecode": [], + "datastore": [] + }, + "AU1c2LEGVYiDi8p2AJqdsPtkZkwuPkU2pJV712NUTZHinoGW6E3A": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1c2RpSJmqXzQTW4eKkfBDWNHpj21cBqB5HykKPWtPkWoWo6diE": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1c2VDQhCf7LLUSr8gyeeJ2kxhzJkEQuGBnmYPwXvSgeS9PwUnF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1c2tq2a187dkKqqrWthfdTZ7o5cGad1XZTAbkfw5ATTPi8Wpwt": { + "balance": "553.650537310", + "bytecode": [], + "datastore": [] + }, + "AU1c3a4aKdoJXmnBYytfRYemx3M7THwcsnVnFV9aF9skxsq7awxY": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1c3efUUfeDssmDEZNcSyWkcoa4zDy98dyp4Tys8z23KLkGxAk2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1c3kyPpZnNjxCJPv9X1D6K4stmwzngSB6inJJjuwd4vzkBa4a4": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1c5aeULxoDkX41RisCME3xUaryVqrsN9wE9csYHPTCDK3PcgmC": { + "balance": "1221.785713139", + "bytecode": [], + "datastore": [] + }, + "AU1c5bdcvWoEFHtiX4G4TaqG4LEP9LxbYPU329r5Lxc6kjP9UqXx": { + "balance": "1592.466096270", + "bytecode": [], + "datastore": [] + }, + "AU1c5pprJ2e9kJGU1X2f4gu8PwWRP1h2u8h9u2o18zF71FKjwPSo": { + "balance": "76.206250775", + "bytecode": [], + "datastore": [] + }, + "AU1c67WXB7R2SqxP3YTQq7dsVz4oq6pBCeLezAXmDyTJ3Gt5QaUH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1c685uu5uL8fjqTxDz1TgzFjLzTUStW8N4cicKuHEwQ8dA753m": { + "balance": "2281.334280651", + "bytecode": [], + "datastore": [] + }, + "AU1c6bocPsrCg2AhB57dpBnEjaAyGGRg7CRtg5Dgm2uDnCqt7Bbf": { + "balance": "877.274707927", + "bytecode": [], + "datastore": [] + }, + "AU1c6wZCCea3gacrsbmjyDeNxGKTjBd7jx7JPU9vcAwTbJdhRRuQ": { + "balance": "2318.291900783", + "bytecode": [], + "datastore": [] + }, + "AU1c83uFGawzZZYCitvYu6xkFgz4UWr7kkLXSsA1RqawFDx5uVbq": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1c8ExYwY3voCq2aaELZATqYGfnkQ1r6g1e7pS2fTmd4tCaU8yQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1c8RYRhmVyprCeJPip6keZ9NP89kEdGegnYsHiXePUWKDcX7CZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1c8ZHeF278sC2NpGyo9voMgi3t3VUKg9SgMyc5WusuwMvsB4Cq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1c9B6AyshCohh6JY9xvDAcUYhWTfFxXA39r8Akqn8heVmRRFY7": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1c9akGrQ4KQ3bNVo4Hx1HYHMPXNC5PNynTSwzgy4HgWZwQgCyV": { + "balance": "2653.043114185", + "bytecode": [], + "datastore": [] + }, + "AU1c9bUB5eNNvFygjCZ2FRy2HXdK6iCNCdFKDcx7YjY4v2qC7zHq": { + "balance": "292.334714139", + "bytecode": [], + "datastore": [] + }, + "AU1c9cAEHPighn4kewqiRvv9z2jpKTAVQdpuQ9RW96Q5ppHTwvg8": { + "balance": "2393.593618689", + "bytecode": [], + "datastore": [] + }, + "AU1cAzQdWYgUuZ1pQRbSc1biqcvNqQePh75VwKA8jHmmxyMW8CBg": { + "balance": "1654.578740473", + "bytecode": [], + "datastore": [] + }, + "AU1cB6ySKbKTo8HHuUzsV7DCZgmAJ5rQPbmjKrpYq2JiTRSAH5PC": { + "balance": "1262.175946740", + "bytecode": [], + "datastore": [] + }, + "AU1cB9eaWEZMDfasUTsY8xXrfyN5AbWQQQe2fiUZNEjJRB2VaCu6": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1cBARKsUBtaTzmGdwG89SKB2uN3fsjC923H2hBiAcDQZFrVoa4": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1cBTVtV9HT9K5bDdeja6VUVEwtfurxY14dJDFRGfPrG1BVzuGC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1cBVqoYsCmDqtnNGXRb1s3FnAgpd1zBmArdsNHRnXurBLpeSij": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1cBe1Q9kwnWRZNg6FUKoyTtR4ci7a4FpuxhLoQGsGE1MXK2FhT": { + "balance": "206.899655492", + "bytecode": [], + "datastore": [] + }, + "AU1cBfGroKy6UJg5BW1rggu2MZXj5dQbRFaNsX7VZbGxVzCAQrje": { + "balance": "1051.415647492", + "bytecode": [], + "datastore": [] + }, + "AU1cBgd8QCgPA9YcsSa4YJMjNyczKTEdakkEh5tJrdQJwU4kZZ3b": { + "balance": "2490.444215018", + "bytecode": [], + "datastore": [] + }, + "AU1cBmiGsZ49dxDUxPsaAacx3ucTUUZ58HXQNx6Nv5vXfEtogNS9": { + "balance": "2262.812380160", + "bytecode": [], + "datastore": [] + }, + "AU1cCAGHSbyPNCideK7KK47LPddqxBcMY6P3xKmXsyE1vVjHUMHS": { + "balance": "1204.563362758", + "bytecode": [], + "datastore": [] + }, + "AU1cCQ5zuzU78zHicXLvHZsaSv5KGjNamG7sGfnNGEz8J372hbYZ": { + "balance": "3877.685432852", + "bytecode": [], + "datastore": [] + }, + "AU1cCSC4j2WHKrSZGE2UoRh1QddrBzR6duzDFqyryFKH4F9sMdP9": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1cCjBoMT7DYagqZ3WRqBmHHugovJJi6T8r2eUyFczekCPT42zk": { + "balance": "962.343116674", + "bytecode": [], + "datastore": [] + }, + "AU1cDAm4vnpFpAnByWvTgdm4QcsrD84qnE7TedMYWxshHdzfJeav": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1cDCQ9EyXef2eFHkEBE1vttpmqqNgJh9GhtoaKmbtoS4qNygV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cDCjPFbiXhxG5zNd2y2vBTZYYbJiXhezYM7L1rGb3HhdFB7Ji": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1cDGG5NW34jfPwamBEuBsTCv5SBVVstnQiDSiyBvpQMN2SsXUC": { + "balance": "561.938720114", + "bytecode": [], + "datastore": [] + }, + "AU1cDGumHQ9u6yTc7K5sGcrG3WQ28pLHJstL2fdTL37e6UnKXZzg": { + "balance": "9.962749060", + "bytecode": [], + "datastore": [] + }, + "AU1cEKjDpc9E9vdFPLVssD61aTn4v9fFWhE9skobp4Apkngg9kPn": { + "balance": "2851.272952716", + "bytecode": [], + "datastore": [] + }, + "AU1cELTWXMrmC89U2cVvy5p15Me6XLFkbSDHh5g14ZAbiD2XAZ93": { + "balance": "2250.466798121", + "bytecode": [], + "datastore": [] + }, + "AU1cEUCSygbukHtJPMvwUTs67qe6R9aKvmKHHVGWdQTLbS4H3Vzm": { + "balance": "1121.280629476", + "bytecode": [], + "datastore": [] + }, + "AU1cEd2zzgpQZeJdxjrvAjX5y1tG39JJ9e9YWeoMtQzwQduiKVXo": { + "balance": "2830.602968004", + "bytecode": [], + "datastore": [] + }, + "AU1cEkvpf4WVCqrsXVLjRsyU72tFAB81cxTzaBYg9Xhy1Jx5csWw": { + "balance": "2151.869465500", + "bytecode": [], + "datastore": [] + }, + "AU1cG3EBzeUPjt89U7tBBjRi1VoE5RGM755jnZi8E7MKNvDG243E": { + "balance": "2098.056080704", + "bytecode": [], + "datastore": [] + }, + "AU1cGQ6xJzuCJ84wcCw1NJ1N7V95Rchs4ZskH7sMVzA5mMDe1moY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1cGYjX5yLGW5KA8UYTpqsFS7RotQ9ogSd1Eom5yV6pFkdvF9ym": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1cJRKB79W1xtktY6UBYf9LvL1DZzQixjMtNa5N4EjYMziQXk2v": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cJTeaBU8WS137yW1QvhoCSotF2oR2LGKVYSbuLHGoEiKz35au": { + "balance": "1443.699204962", + "bytecode": [], + "datastore": [] + }, + "AU1cJjDEtBgdn8fffVNNkk2TCpZz78gRSzHLpWjhXFp4nREeDaRB": { + "balance": "3568.527131527", + "bytecode": [], + "datastore": [] + }, + "AU1cJwKj9CVp2GKXNgevbbR3kYDNZLD2i4QcMYtsa1ouo6L9b3ve": { + "balance": "2590.883736114", + "bytecode": [], + "datastore": [] + }, + "AU1cK2xkWsZy7y1AYG1S7EaF788Nrm19ESK2XEqDffKp9acq2R9C": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cKaY7ADCAVy5AuUEFGx5fRUo6rqzS5XcbTZanZHxzS62Exzv8": { + "balance": "72.157917908", + "bytecode": [], + "datastore": [] + }, + "AU1cKd3kuM8TWNjjgPmnurCFBsa9Fpv2iqufifmPRPByzkyCkCC": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1cKmJKsrqBRUvHTWQt6xCvPKWTTSzhzMRjRdMdGvsK1gMb1vpQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cLYMSBDvVkgTj6d3owVXcBJobUNkAhUzG6KoUnXdHgpNPw14K": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cLr8sixd6gBqYZzqZbKqNGGZyYMwabHTQjkXVhaZtrXFVDZrJ": { + "balance": "1288.157094674", + "bytecode": [], + "datastore": [] + }, + "AU1cLy4GufQJ1fcn7ZGQ1ZjTHLwRM3veFLHbr3jDa5ubwxq1AYkh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cMTYzmvfFcf1MQViHwniLW32E4LG5i78v6JfmTkx6Qv4eLjk5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cMXfEaQkzJiLwfVQtoC9YrLhPGN19pRirtPZ4NDdFC19MENLp": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1cMitcSADoeQiYqs56LZEVNevYtCShaqD5etDSd9oxxevh4HqT": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1cMycS87dfAENTXiKP2bT5EmxwbexMPk97h7d6t7eSvVCtU1pe": { + "balance": "1789.717266195", + "bytecode": [], + "datastore": [] + }, + "AU1cNLowginPK2JqkjVdrzCyefhimBE4g9EcSyZsYM6q1QVL2YEX": { + "balance": "2380.566251357", + "bytecode": [], + "datastore": [] + }, + "AU1cNLspg3sCDjRycM4Nt4v1pGtxUfqNojmFXj9azGSKHdjxEkwu": { + "balance": "2714.674558022", + "bytecode": [], + "datastore": [] + }, + "AU1cNc1S8bm4dB2C8wzL579aY6KEdsPipwuMpNLfVtBgy8EKW9n8": { + "balance": "2134.646190874", + "bytecode": [], + "datastore": [] + }, + "AU1cPDNxa7H6fRddtcKM6GdENNmmueskDX96yMwfmGsHZUp4Q73a": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU1cPZh9u8QyAZBn5igcwQAyaeUfWctYpNhjKAogxM3capjKqFb8": { + "balance": "1142.794616604", + "bytecode": [], + "datastore": [] + }, + "AU1cPdTpfGtPBm5miidoP9PkfcTcuGhPTVhXsSd5cWUqJhX7dLHc": { + "balance": "83.037017942", + "bytecode": [], + "datastore": [] + }, + "AU1cQ7JpPcV1eErfTCqQMNgEaVGsAgmcJQCzeBcbTsQTrenYUdnh": { + "balance": "4983.694156770", + "bytecode": [], + "datastore": [] + }, + "AU1cQDRFNiD6p1zVeoBAYRF8f3DheWJUBirJxhiouLwWpdzUok1Z": { + "balance": "4411.922848215", + "bytecode": [], + "datastore": [] + }, + "AU1cQSjBESu9Ai17HR4TUtUvr8KoeKh9UhaVoZ65hg93qfp87fqT": { + "balance": "1582.574942719", + "bytecode": [], + "datastore": [] + }, + "AU1cQYLWiBmVrpSUHVGTSfFbqAfqg81RUWS6xEYxEiUMGYgnuCxG": { + "balance": "1650.622975068", + "bytecode": [], + "datastore": [] + }, + "AU1cQrjB5QxvAtpMamgY9QQDj5G5ieQQWK2XUBN3Fs5f8RPNZWtt": { + "balance": "981.472350860", + "bytecode": [], + "datastore": [] + }, + "AU1cQsDvfVXEn37C72HquuASNw6RDrsjpPmvKJ47fVheG9YKVjdD": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1cR27YPGF5FHygzf8M7xaccBSymgDS39Kf3MkEzdzSnhxkgdbD": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1cR72uDE4Mf9b9xtYQpbz8M7qQ1YMMjmdJppfM69uqMJDLx4JY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cRFSdS29ivCb2mxq4x37EcxuYXdRnGNGfuLLq89RyYrqJmF5y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cRXRW4bN9psDEApVkdAmCG64bup6oqRcj9Ha5zXVFuG8FGfEf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cSAmLuL1tp6xndLsqctSayvUc5oAhkhd71gKPNDzkBih8Fu9j": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1cSDyJU2FZNr54mzRAoTrSMfk6PpJ57zfLFqTLpkBY7VSKwwX4": { + "balance": "4654.137060456", + "bytecode": [], + "datastore": [] + }, + "AU1cT8MKuXiET8MrZRiAw5KMrFCGkRxJSvkfFtzdvAkvbZXHv9Fz": { + "balance": "35.949951350", + "bytecode": [], + "datastore": [] + }, + "AU1cTBmc5VAq6wmZyNxAscVZ2q6mhXTt7CT8vRj88jUs5YzWmLbV": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1cTaFsn3h4LCyGWXSwum16QyGmc5iAMUBjF6NmHHV7pjmrzeoP": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1cTe7A32UdT8weraqZDn1mb8S4V6JMfKYYx52u43SeEj43ZYEd": { + "balance": "4776.810755988", + "bytecode": [], + "datastore": [] + }, + "AU1cTgGenQNti5qyutAK3z3gqjddxBM9h23ahghKx6F8NmQNF5qv": { + "balance": "3830.970687783", + "bytecode": [], + "datastore": [] + }, + "AU1cTsmmJwrEhbY4bQVy7gs6NQcSbzxhBevVL63j1Q1kjENn8nS3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cUD5YUsuFpgBebQj3RGqWqABN1SGy6JMiNDgmDdEeR8rSqfJz": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1cUJCx4NnNRgjdvkr28SCdchbgGo3CNZgoLd8AuyEdGG17ieXp": { + "balance": "1755.978240831", + "bytecode": [], + "datastore": [] + }, + "AU1cUYpKBcTQNtJsqpqckMf6m2JJqg1nbjL9PHR2pj85VRan2ZP2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cUmiXZMjXaztZkETTfagqMfvwVViR2JLsHTuXzpWNwLY366KJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cV7KMXcShnhD66FNLWtBGuLHbMztFJXzep2ybv9MNneBjDCwv": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1cVtPLVB69QLze43nqM863LwktM45xTNDVLTDTV86YRjipgHi7": { + "balance": "245.028053003", + "bytecode": [], + "datastore": [] + }, + "AU1cVzTJE3HEUePn5baUgi7ohy5Zw4ZVEN6EzMzTHoEXVrMacm91": { + "balance": "988.253739494", + "bytecode": [], + "datastore": [] + }, + "AU1cWCnSnrrwAtydFjEGuYJazyiNTmNCq1oLC5xKBB2zyysDd5Lq": { + "balance": "4546.226985097", + "bytecode": [], + "datastore": [] + }, + "AU1cWou3N9RxpBTgU8HeNkwBa4MLqH59WJYCeJw8BJjBvzaMjaPG": { + "balance": "5725.207957750", + "bytecode": [], + "datastore": [] + }, + "AU1cXDp5ybEcrRbN6pE8Z7RYPitGMpxq4yjqCu3WDbzvdZnu4npV": { + "balance": "2193.643370914", + "bytecode": [], + "datastore": [] + }, + "AU1cXy9bRqfGoj7VsjhjG8xg29t8cBkoyQ2bFppRDniCQKb5TN2n": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1cY2difZZ4YGyviF3yasrc4mXhXHK67eoGQhQr8TDNnNUnffc6": { + "balance": "1080.239072801", + "bytecode": [], + "datastore": [] + }, + "AU1cY4T8888FBaAi25uj848obxya5gGk1hkErunGJ1PZwgKoCtQ9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1cY4mCm8qaGwWT3mfhgGXcq2Xc47KnmdnaBVak8fbrzdVBP9Kt": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1cZDy9SwaxHwUg8x9kDAre93wuR33vM6xaEWoDqQdHSXqkyehd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cZFv6vFkw2Xua1NHmwEKhFeD6UbxHAeYzKH7MNKF173yqeFxB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cZMZzpD9wo8SwvKYp9WRLRA5LRaftZkw9ouzohkXK9mipFmgW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cZTnjcc5FNtByPegiLc6bua31vMRV5WXV5TAy8aYAP5b3DBKT": { + "balance": "5183.375261955", + "bytecode": [], + "datastore": [] + }, + "AU1ca45MtHA1muaU4Q2xngu3JxqbJRHDZQX1ssFrX3SewSTK4HBu": { + "balance": "2649.726106053", + "bytecode": [], + "datastore": [] + }, + "AU1caK83mvLkQ1aw7mSWcNCHbKMeoXsN9DmNGX8j43EfRQBGrLuv": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1cassDnbaQjyzYnArUow3gV5e6yd29pZGBbzFosiV1PxyxBXvr": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU1cav1tqUcn3hyMa58fEBWN9bzf4XJ6y8qb8JuB135XbVyHartV": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1cbexS32NTstsWj6f1khpaV58a8K9dpyr9MR4J8Rvm5NS9WUQr": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1cbjkVfYjR18Nk1SGWctgGiqrn1Ry3YkpcTRTrHWtNhqwNJmcd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cbpt2F8CJyhZU2Ue5LGbWroP9tcb8RpNDgTjAYRx573XtgkRf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cc6PBkoxuh7umg1TW8uSGcro7mmvSko28ndJ6b5N6CBQ59SzR": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1ccXaX1ziopkoyt17bdK5ND7JE8aMRoJiL5iYL7tC3QvXaBZBh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ccdMRimsbnBsyJRhWz9RWJu49zjUmY5PeP2ygg2UfeCR6rG2C": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1cdNaE9WkhK1AwcJyns9mEGFXYeXfqJ7z53PRqK6WC6wxMrXZK": { + "balance": "1477.683995982", + "bytecode": [], + "datastore": [] + }, + "AU1cdRXLeGs9vEs3tz6NM5DmCk3RCKGmVA2orL9X26HWVx89GYLZ": { + "balance": "1191.580356870", + "bytecode": [], + "datastore": [] + }, + "AU1cdg8ed4UD7oaNiGyTTBUrWyV5N8GjS9Xbxg2Z4VrCPbNTADVt": { + "balance": "162.541254125", + "bytecode": [], + "datastore": [] + }, + "AU1ceRtKhNfRudPCvqxyVUTQTbLBhKN3k9SiCe7PYYRFhPWJ55tD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1cf1H5pBuHd9L548gmCJUmPJpRfUSB8FrP4BX6nXt9gCJzWeiU": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU1cf6xYobtoXxGU2sX4Q5o5nTT6qKH7odYe9v7WFmf1hCx714xx": { + "balance": "739.885900515", + "bytecode": [], + "datastore": [] + }, + "AU1cfmQnbAmGx4ZJTWo2N2AutVcmihS2PQ7bqMWGaq9a31kqfW8A": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1cgjx5h8HwYyWq3aFXbeFQ6AAj5VXTcizZDEjvkMmyGhqpcAj1": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1cgpqzq3oAWR527Ya653kbqrhrcpWJRwTWGSf64NCPKQnvggs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ch4UzokebBY11gWpsznvJQG5vTdzbP9euKmB7UdbY8WDX66wT": { + "balance": "838.360044052", + "bytecode": [], + "datastore": [] + }, + "AU1ch7CkZghLen6D9UWksVLjBuCwQp7Zf9NaUmz9ZLLsHKCnw1HZ": { + "balance": "1413.664478051", + "bytecode": [], + "datastore": [] + }, + "AU1chdYBGpXeULCcJJ5ayNoXc2hLBCbYrnYfxjaqAM5i8yHhRwkN": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1chnvEmnihZ35N7L3WiJMM8U6CksiciBR4gDeNyDt8NAxhCcEt": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1cht9p9zDNxc8f7t4vRqCPa6sUxzsUwi13vmRSnM7gX86ztwUC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ci6ZZ2u4YPsnABudMb5S3QEPqF1Sd75wjaT3vTqaCQXpDBhSb": { + "balance": "1472.243700626", + "bytecode": [], + "datastore": [] + }, + "AU1ciaSTCyB79H34A2th8CNr5jFJwHicWfHLuPk5Qev9h3L48bYS": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1ciewzNrXZaRyRug5mZgBnDkNjgwujxNhvBsedEc8tQM1i9ZwX": { + "balance": "998.450923715", + "bytecode": [], + "datastore": [] + }, + "AU1cjBVVJC3GZqKRPCY6WGiS8KhmRZAHtnoBzzcNbBujvgqZ3o7r": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cjftFxoZJsrYCUU93CvixQ1uDRE9buszyhvHNznhMG1xXPKEV": { + "balance": "787.108961080", + "bytecode": [], + "datastore": [] + }, + "AU1cjfw7AusrpaBHHcDxQJgxwGScDSrMQ9ZcRtXAAs9Y9Frqbhkq": { + "balance": "1416.121710246", + "bytecode": [], + "datastore": [] + }, + "AU1cjnFGzcrX1KKz2PdnNuvnbg5uaAUSsf3cvyE1g3CXv4irp39M": { + "balance": "1078.682779828", + "bytecode": [], + "datastore": [] + }, + "AU1cjvswrwfkEny6Tkgu5hfH9Arh2Yoe7Yp8jUq58RENSoqvVWzN": { + "balance": "2532.576204307", + "bytecode": [], + "datastore": [] + }, + "AU1cjxFXcY8pG1mkuzQnvAnqvwqBfBjrDNP8fuWv9fekysin5RnB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ck9N7hhndrEPrAk9sqozuj4BcoQ3RCqYNDh1qzwcKjRAcostM": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1ckozABQ3rsjAVKQm9nNvAvwTwaTj2iZEkYS5cXwT5VpBjheiZ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1cm4kz1pMWx2MKMwjzAgS7mZQ16VMSfHx13V61YJJrDxAVUBA7": { + "balance": "2459.164521438", + "bytecode": [], + "datastore": [] + }, + "AU1cm9s3s8wKeEXm9pHM8tHEqjjABZXBQk1MncfXnjr83QG31r3q": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1cmUeN7vUc58VKVQUVnzgVukmPgkwUhnVUprmshCzJpmJopZMy": { + "balance": "1529.445426493", + "bytecode": [], + "datastore": [] + }, + "AU1cmbPJBuSWsG4Vqg1VM7cND7fZFdjrVQrj98McBeFwCytB3oGn": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cmzyyJhDQBanLLQGfL2TiRT8BjtNZpWKbjwfqCQ8mYBhyVftw": { + "balance": "3454.536664553", + "bytecode": [], + "datastore": [] + }, + "AU1cn35uyFutMXJ8p4556RMjjWagQ5x2Yv71NWa67NdgvooUAydi": { + "balance": "1991.239053920", + "bytecode": [], + "datastore": [] + }, + "AU1cnDptMbUge6Zq2rtXXBf2NKFs7KUh33fe533sspi8aaFvWasH": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1cnNfc7ukR2YvxuVnTBDixpjRr54h4A6oEcQ6xKdvRYSvyEFYD": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1cnVtdmrJBx3q7Xq8FBpDJ2tchyR9Kwt6fBm4TqAPjMSCFNyYj": { + "balance": "716.522252192", + "bytecode": [], + "datastore": [] + }, + "AU1cnZRunR7UfDg3WhqHzay6cJd7taUNsihgQKaD3DEC9JAJeiCa": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1cnbmvZ2acTknZEbpppDUPSrttx8xzWN7fxgqFJASAxE6kgUCL": { + "balance": "2661.748999070", + "bytecode": [], + "datastore": [] + }, + "AU1cnd6CQMQZQBUAN9pUFACDsG1wb647Y6hGSjP4XGNvoS9YP5Us": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1cnor33Vsm2MR4zMn95SAe5U5uNwC253keugXJqSyVMAATuN9G": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1cp6KfGj58TpPdxk5NSC4psPDKXSQFK4YrteLfECp2S9FqF4mq": { + "balance": "1431.205748465", + "bytecode": [], + "datastore": [] + }, + "AU1cpD6KaKhb9a8AkxXjptFCkm5EoF4UsNhuedd6QHHNxAvNXDdG": { + "balance": "1466.016991705", + "bytecode": [], + "datastore": [] + }, + "AU1cpUE6xt9MW8ftVfVS9R8B6ppKkv27sZRmfdjykoBiHBgdoQah": { + "balance": "1218.724845976", + "bytecode": [], + "datastore": [] + }, + "AU1cpa5oBcVCJ1jdGaZhU4vE7zkMVkcQAa5PruPFuTYiiTJfSzJN": { + "balance": "1670.286637809", + "bytecode": [], + "datastore": [] + }, + "AU1cpiENtZUFRKeQpD8cwHBS4B7UYF8P14tYWDZzhoCHsRE3nW6P": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1cpr77DbkmY9Gv6hcyWTZabs5pDPawN2ttREZLAheY475c5Ttr": { + "balance": "2251.860982188", + "bytecode": [], + "datastore": [] + }, + "AU1cpzwvnnHsDbaPxFPL1UXe25dky9i9BSNvAE3adAugAmvT41Vu": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1cqBTM3cr7YjEomAEQiWVmundZueeAqSVWZnqAEzRvDD1NRp3L": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1cqDfE858PAbehGsW4rxbwLncGooz5An7PUgj1u6RsPkRgAgds": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1cqnSTEQcwm5Y1S3fFTy7u14jwqCBDjCjWXsrc6hrwsm6Xwmw3": { + "balance": "3696.530138160", + "bytecode": [], + "datastore": [] + }, + "AU1cqziUwVS9Vw2uLcXzSeeh53swxmZ9dpZ8BDzZbPTkcAcRkUdm": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1crdDNm24GmTrY8EipDiaZCZ1Ss418pvYTN4uwMbGVA7jVime2": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1crknXGFs8HJSz9Xztur2kFBGLrzQ8LAFiYmt1RGhw8HWqeVem": { + "balance": "1374.035604345", + "bytecode": [], + "datastore": [] + }, + "AU1crw4PNJxxGvYvttxhko23st8Tb19zExjtWNwv5bUdpPYoggrh": { + "balance": "1063.310640640", + "bytecode": [], + "datastore": [] + }, + "AU1csVMoYxYw2sv2QD174zQTaDqpfcFsrqq9mhKsXYpreQyzhrcZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1csX8WXcSER2iFpjsgJJHeNiUHoBVERvQu9ZnTKEgrUaYp4oGm": { + "balance": "1470.356873772", + "bytecode": [], + "datastore": [] + }, + "AU1csYTH22Abqxi1NK4gf4KeeyeCzSnQfZsLD4zEf6WHvcHWrL8X": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1csarqTgVjDWwp6mUdX4Sg6SbnfCHnmAj6HcmZuoTv8rpcRVVP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1cseHSWYjPgTRVcE8SDWL1TvxKf71cUibKSuyHn99DYGcghvFn": { + "balance": "957.823869978", + "bytecode": [], + "datastore": [] + }, + "AU1cseKQf58LKdqLxkXT17MjtbAT3PApvGGXA234MUPKY61f1ztd": { + "balance": "1499.457155205", + "bytecode": [], + "datastore": [] + }, + "AU1ctdM5g7YzhfZ6uzLNQUVjyyLEV2n97e27RCTtYHMjWHfLaek1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ctn5Gd3BfhaKBTw4sUHVGVvD3BbXr7mi2TqHoEjjGyoXWUDB1": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1cuYQQksrW24AJzxdDZxpuaCyjyJRMN9ut5bGMdLLkVBMpLoWd": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1cuiFGPVwuh7MQRuth2dYzg8xvGp73UUmS8LedvAmbg1iMCgrx": { + "balance": "2997.411548264", + "bytecode": [], + "datastore": [] + }, + "AU1cujwBiD7ACigYcsrzDEuH4vm1TERBabQ3twCWLQs21eDJ5PUR": { + "balance": "1354.546742176", + "bytecode": [], + "datastore": [] + }, + "AU1cusNiFqZqVEeE2fHgKMKsH6xjyjDQ8WkQv9vEqj1BHRqtMBSD": { + "balance": "251.763661193", + "bytecode": [], + "datastore": [] + }, + "AU1cv4cGXf6hxWK4LPKCZVtKCivWYYP4qmuDojd9FC1DMAv1sGtq": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1cvPEjrD2d61Kym9VzLFYw1M5JfQxDKELXbkpQTjAXqi89UXyV": { + "balance": "4356.436875160", + "bytecode": [], + "datastore": [] + }, + "AU1cvQcFn5r8VKFizkbDpFRqnJ1Rf3H3nWJbaLWioFyTteSCD6To": { + "balance": "242.646875729", + "bytecode": [], + "datastore": [] + }, + "AU1cvTqiamNVhJiBsjEKxoHaWQPDyXPFu9QNt1fsmvSVtv64nvSt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1cvaFncyWkVbcnHe3Tk3vTXXr7iYYyu9o8PtMBxZdK2MedHH8S": { + "balance": "1343.795112710", + "bytecode": [], + "datastore": [] + }, + "AU1cwDwP6Agb7vELq7xheDVM8xpiZiCZNEVuhKp5WTEMUZpPxZJ4": { + "balance": "2159.883207040", + "bytecode": [], + "datastore": [] + }, + "AU1cwiibHyffkWTFqvTsVkgbyoGKbwNVo4gZoHtHNfvHqP2hD72M": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1cwocnyxwqUSBpU3fN8E8zYAfTBJcrFgQgWMHcz1Mvm6UZ6WBD": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1cxcMci572bA9FSzMJxvJ9YRPTdczPH2SCuphiMMAx5twBt2vm": { + "balance": "3445.596067024", + "bytecode": [], + "datastore": [] + }, + "AU1cxfEJZkVCHMNWMbbzTzMKEg4mcg2sPpDih7H9CzLHemT32s8U": { + "balance": "1995.707696098", + "bytecode": [], + "datastore": [] + }, + "AU1cy5RWnHsj4SsfwA6tiYPdCk4znXNMFUSKngKWckayXaM16xFq": { + "balance": "2069.528023704", + "bytecode": [], + "datastore": [] + }, + "AU1cyCAbMtB8ebyYWatfhCQAYL87B1Y5rgrgpGfKyGBXCsb16Rzg": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1cyUeMVZrc7Mbfr1zQPGdiWrpuwsLmewmD94woHCfCmAiTef4x": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1czFoybog3qRQC6QejdRV8XFdnUwwrRz6BagDBmQw5T7D4WdnA": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1czVtTgR89CV6ubDw1VypzXwZ62P47ZDKmwnFdEvBPetM6W7Db": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1czrdB5VBNYpjg3BziGPPbbjZastfYa1BcPzEKcsXuNNrwVuqp": { + "balance": "1189.976224836", + "bytecode": [], + "datastore": [] + }, + "AU1czuyMKk4Etqvi4kddDvdUPnmG67Hza8X1Z7xqL3LJ6oLGmYEu": { + "balance": "2676.445166657", + "bytecode": [], + "datastore": [] + }, + "AU1czwBmmaGBYajHGeiSavHTsBb4R1XfmqhJSowQ1WyDkDhhCKr5": { + "balance": "1492.538456250", + "bytecode": [], + "datastore": [] + }, + "AU1d1Cr3hdQ5eR4Y4YQhCx3aHdR9LFaxvZy6uSeC5ER8v7QXmSRo": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1d1UZB9DvYcbvZsSUNLVvbiy867Euv5yasThHuaMTGbrEZvGPE": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1d2AAzy8FJsMzMYWGaxaajedW4o8pS4DrThBqwjokYDyLgqXJN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1d2Jvc9rXrnPBm39FBsp5enV3VxMVuJiyUeS2e3W8YXuJ3u7jj": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1d2b1yomezqAQ8J7nNPikYjJ36kNhUKBWJbUgg5Sq8cnd6vsQo": { + "balance": "2007.990567283", + "bytecode": [], + "datastore": [] + }, + "AU1d2gKcbMaM6jUQN2DXf7AJ9qxXPHcr1ZjrMWp4PXkFiodHDzu3": { + "balance": "5008.459965220", + "bytecode": [], + "datastore": [] + }, + "AU1d3UbqwETJM88gJnRUjMsVGxxypgA4PZjBCu3iSykbvZ9kdU4r": { + "balance": "1111.079583280", + "bytecode": [], + "datastore": [] + }, + "AU1d3ZFMdYYcTPVC3v1nxaZDDwj4FoF1HfBQa7vE1wgPNBs4nyM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1d3fDCLwb1DtYhtFc2AWVGwaHhjWtZuWLTwPPMba15eRkHzuML": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1d3nAwwUXVVjuHkbWgBtjdss1jSYJ9ZckiW8PAFdsrsusRyVW5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1d4MMBXFPEhACSngLQQTfGuwT7L1eZ5SPDJcNmx75kiPcpECFo": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU1d4QacMgnzpBWfkVXpQ3uT2pGQDPH1UX2GLDAftUcEqNpMqXin": { + "balance": "4744.196286316", + "bytecode": [], + "datastore": [] + }, + "AU1d69UiW8HPXPDHqPJ2QWpw4NGA6wchMv7TLaLKhGkiBJxLBvSM": { + "balance": "3459.965236086", + "bytecode": [], + "datastore": [] + }, + "AU1d6RrAZxQq6YB8yfeVgbbhTRAud26BekkrRE8SBHGeW1UL6bXE": { + "balance": "588.025222822", + "bytecode": [], + "datastore": [] + }, + "AU1d6ngE3pTDWKg37EUs9Pb7mf6dc7HPoudRSd5R4zgUM8SAYc3g": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1d6yuj9uDt2KAYAQmH9So6WvZwYmZBvBdqFNiTCpADsbHmTQqH": { + "balance": "2423.548001629", + "bytecode": [], + "datastore": [] + }, + "AU1d7LwLRZHyThzN2mY7MBNxeSn1AFXaYgTKNTRb3FAKsiTB7Fpc": { + "balance": "762.086900260", + "bytecode": [], + "datastore": [] + }, + "AU1d7M6m3Sb7Gqf9mYB3XuHRxmY1CHET2ZSFngn14oY9RPt6jvi5": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1d7SPR4RPG4bQdh759b3wtxW6CuiKHTqB6wYhT3XZLjEumJPVb": { + "balance": "2030.265725053", + "bytecode": [], + "datastore": [] + }, + "AU1d7bVAVqBAp2YYGH8aHXHKfkHfEBNfwyUHoA3nmCdM2JMwgc9P": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1d7pmgYwBEyMHqCtDMTS97ZP3TUu9SvHgqktwoyNAUrwxEZwrZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1d7rDPwgLaWNaMaTUoNzCCzA1Kus4XdDzjLrp3GvHhmZXR3zz2": { + "balance": "1782.748433740", + "bytecode": [], + "datastore": [] + }, + "AU1d84wzegvNiE7zvxZiHzRMYBfMskDmKZKL4acod59nxexZ5fGs": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1d8n3R6zBdJ6QzbLJmUhTVYnopLvY4Jy9AHwqA9rEDxTnkJeYG": { + "balance": "2761.292858863", + "bytecode": [], + "datastore": [] + }, + "AU1d9LmNcqwxZCLCLcgKipo1VKmtd623kigomKcQUQ5S8K7zu8B9": { + "balance": "2083.377592871", + "bytecode": [], + "datastore": [] + }, + "AU1d9R4RtagHuR1u2wgc1BeQUmCLiWHLr17uoJZQmjTcvSXBAJZT": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1dA4oYa4sZQWgK2yMSiWKx2WdWYo8SdbgFUKVJARfbyzCU9LPY": { + "balance": "226.834930372", + "bytecode": [], + "datastore": [] + }, + "AU1dA8RDu6qG2YCh5sr6uzcUxAi4z4oaeTjWKRbXp197Bvk1EEDY": { + "balance": "3819.560559195", + "bytecode": [], + "datastore": [] + }, + "AU1dASX35KQBr1TFLUEBMWYKaX2GMqG2WXYb62bG3b9kzVxniFwy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dAcTk2EFdx8BQVZ5ceQfm3Pjn4tYv2FQjBN4SY1UQNDwR5CUD": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1dAkSzqrDwV5w1ihWiJWd7mi4k4haYnNXoENzvamErcGKMPhCY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1dAu19gJFd7if8xZRh3fWxgrLTPQzHpPpxZpvAt5VdGyZkvRV8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1dB7RxQR1dFW8URxHDoDrYmC6s5gZkU6BrexNqTm8fQfaaJaEy": { + "balance": "1558.627092072", + "bytecode": [], + "datastore": [] + }, + "AU1dBBupFwrZgWDtuvv6Uf4ThRxBbTyGVCwSbxs7X6dFQJ8G3pPo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dBYqJym9EhVR4pY6DBdzPaVpMwwRLRKsewZLEnFUuKek2T6ia": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1dBfJsb6N4h16thQj7puaxC7zuWsHkW8eZoBN8pwgukekDw4qU": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1dC28bn3vdoHiP6ua5KTkgCoQQq1tc5RNdEdmwQvTESiEGZJfJ": { + "balance": "952.993780492", + "bytecode": [], + "datastore": [] + }, + "AU1dCDpBRDQxNV39XZ3iJpLsHysB3H6qoy9h9G9sf4XWPMy5NRHv": { + "balance": "1668.714561339", + "bytecode": [], + "datastore": [] + }, + "AU1dCV5Td6hNxH5Vvw88xP4MJpjnsPB5AKoa85mmrhDMQ62WobEz": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dCwdU7m77AiBuXng1ymCrzEMhSdAj6GB7mZCmM8kWcmpYgks9": { + "balance": "1376.576899245", + "bytecode": [], + "datastore": [] + }, + "AU1dDZ8yvYCcUrbjH7fTuXuCmfBLd1UYMcowd2FeCcetpiFrPNgx": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1dDcoxx84wdiwpLtawsxY2rmo37Df1y8uUQeAQEtxFUfUTAwrh": { + "balance": "642.364135627", + "bytecode": [], + "datastore": [] + }, + "AU1dDmFiXUm6FhXfLyWfad7XHTXX8JbUAYjj29sHraF4dLznSMUa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1dE9TGsbpdQdz8bptBMHGU8mE2aDjbGVTkWU5CDPZqvibErq3G": { + "balance": "3496.172937834", + "bytecode": [], + "datastore": [] + }, + "AU1dEEEiDKsB83dk53NyJTRxDZtRpSSv7Wc77PB174mRWtQ66i3y": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dER7XJiiB6XhpjeXyyBh4cxBT1YSG7JN1uQpP754Cbsqtgtkz": { + "balance": "706.829744939", + "bytecode": [], + "datastore": [] + }, + "AU1dEUN8WZxrjwJRfWn7Pp9AHF7VoGuQrEZybP1mEjjG3wGnVYqb": { + "balance": "1368.259784260", + "bytecode": [], + "datastore": [] + }, + "AU1dEZFfYDr9QbH4F47kfU3k9jhd8uC19sC8eQnRtH4cKd9Wo1zP": { + "balance": "822.842085350", + "bytecode": [], + "datastore": [] + }, + "AU1dF3BjxTUQyWCHg77YtbA9UKpupvgH1TQq494rBWM1ExqUn54A": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1dF6gjtQirp1XaT6Zyho8JRp4uvo1mGVqeHvBfV2aHtmNadxg8": { + "balance": "1980.299321563", + "bytecode": [], + "datastore": [] + }, + "AU1dFMFUsc5vrcES9fKzr7bYhYr24Vt4uxqTQDxAaLAZAwZSnEH5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1dFWtYKZQS2nhP4gGkECAWMY7fjXr3UL9u86UbP4iNyLFecyBz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dFZxfWRwJ1DCbkJfBPS7sBjMAt83wVidXsdmPTbka2se45r31": { + "balance": "1311.854285595", + "bytecode": [], + "datastore": [] + }, + "AU1dGAdKfRAEYJrjp54ccFq4Vz1EKDCKwtVSAd95n7RjGRvBJS7Q": { + "balance": "779.076599721", + "bytecode": [], + "datastore": [] + }, + "AU1dGVYVeUTF61qoiZYv1JZmXp2Q7JH3RJ8mZRnYZpDYxLfYMRTN": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1dGsXw7hTyEY4UxNeJMm6EJeeHmVpUAYD5LRZu57BdWJv3Sb6Y": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1dGyoQp6k3FZUa8qvcQFW4uZeJcJenxXdL33qe5xaAtFvHkBuU": { + "balance": "4870.501551061", + "bytecode": [], + "datastore": [] + }, + "AU1dH4wMyVN1Pgh5RZ28xUQSdtxjXXBgNCoAUKb2mPzfaq7AFR7Z": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1dHw4UQY2VWdvexLYchPSVPLG7eEgkQ6H83YMB1Lr8R2UamZxd": { + "balance": "107965.301342371", + "bytecode": [], + "datastore": [] + }, + "AU1dHxbnUYaoFfXLS147M5ExDfvThKzgUeKeC8PFbBbkRXdMcgGP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1dJ73kC3hSmjNnYQRue3C2kbF6p87G9jbrVpFJeB9Ag7SUajfs": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1dJCTBroyKgDLhxy8TBDtzzPyUX9qh6QwC1UpWPhAZahLBiuaj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dJFqPkfhFyE9C6rFRTn2T5nvq6swVtoMf1XzTLrQPdBUfpM2S": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1dJt94nqfTAEUYiz4vka6xSLXZeSQgD4XdXCnkducpRdSizjnF": { + "balance": "40.336045857", + "bytecode": [], + "datastore": [] + }, + "AU1dK4xTCZw16CNmiWoy18wk5Z71LKvMkYmGmAecr1GJNamhemoN": { + "balance": "1531.089855476", + "bytecode": [], + "datastore": [] + }, + "AU1dMMjSef6SXQwMu7uvy4dQketgG1wB5zrTEuWhA1fDXJr4pyrR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dMjidDvkDWGquRAwGkSWRK1cFRTpnZQYnxcZPKpybR5jeNVXY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1dP3GvHsSSiw6D3WNQgAd6BgfHpJMN68ugw6PbwuYemLaMh3Je": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1dPg4fQWqcFgFHAntigcuRmxLAqn2NNRZcj2Mvg6dJaRQYdP6q": { + "balance": "779.547138074", + "bytecode": [], + "datastore": [] + }, + "AU1dPrfLazZwPLrxCoLy2dixm2ExoiHfKtbCAWXkzD9XzA8QAgQs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dQ6VRKA3YRudSnTcwn8tpe7KNGVUn2WvNG41NTRTURKoURJUi": { + "balance": "891.174749375", + "bytecode": [], + "datastore": [] + }, + "AU1dQMTfKdG5EuhsQK7M6JCeovTVMXsV6HFA7RgqwFaJcbJBVXvX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1dQUMeuyw2eBxYsayKYNzWsnXcshwNzUWmEBq5JecJ4Xekmv1q": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1dQoG4ugm9XVzyuF75mwoxQmqCwhZuUwCisqZvL7wSM662qfgT": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1dRb91XeQ5ykHJVtSy8RWB4Cxr2QBu5ZEb7onuqnQV28gEn1nT": { + "balance": "1585.100773000", + "bytecode": [], + "datastore": [] + }, + "AU1dRkRLeSD8y6jSefszCSh37p1hdshLjphpSMQaywVY3sNjZUdY": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1dRnbiMJ2Ce1Luy4kiVH8AghmnhwE2eAuh3FugHkWAEdfApkvn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dRrZs9J6cMNEfVzHFpCmo2zraXpdSRkfYNbXxRm6YF5jtzouA": { + "balance": "1951.762373328", + "bytecode": [], + "datastore": [] + }, + "AU1dSWF3NYatUc7a3F3nY7rmSjmHnExpR7qY59hRkFLBgqM2rh3J": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1dSkQUonk7EDVMetN7Yv8rYs1CK1sQySsJnLdK2XovedRvUKMT": { + "balance": "1025.862717671", + "bytecode": [], + "datastore": [] + }, + "AU1dSmB1vGc53W5kevLgENVnkDNoFJVaVDAPawQuuR3bh1V6qumg": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dSrbj6KodmArEFFU5QT1VU9cNEY14NGtLmRD9a8Ekaxz8VS1": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1dSwRUVPqrj83vdxcWiNXquT1mZkADJGuED4t89Dxdq5BntRC9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dT8ftU3bnsE99riLMGET3wGSyJnntuBhPtDK6VhwAVVKg1Kyy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1dTY3b47Q5TtEhpbMgywR8NSMBuQYchFsLHNgve6Lzk3EFPX5Z": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1dUSvLFX4j1vfeT3G93nDRDFuUhQvyfy3nQN1SwtZQKyE2ECG9": { + "balance": "965.971772406", + "bytecode": [], + "datastore": [] + }, + "AU1dUZ7LyFLkSwXfh424Dh7NoDViqz6xqmEhteo6o6Kf2aHFpT5n": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1dUbxdWwhw7NHttCUgjFgL6ZNAviL8AUDChYSp63zGyLjfzvKw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dUey41kbdkBh68jRuvss5xeyS8qS916nkLP9R4uSj94vY6nSo": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1dUfesjPjZEA1u8HbWLCmNMQM72et6L15kGhFyopM3Yf3nmPki": { + "balance": "1629.832582510", + "bytecode": [], + "datastore": [] + }, + "AU1dV3623fuH6Wn4nrSJUYFxDfHqE3P2UntxVqMhh2nVAmC6TvHV": { + "balance": "1383.743759144", + "bytecode": [], + "datastore": [] + }, + "AU1dVRVuMu6p6Wj4UDCmXmhRXmSphykaHM1NGrPfUvXSE1k7xM2C": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1dVdAwMhW9yJLEks8rTpFUP19yrgarzjsbh7cWEBqbR7wXnzrW": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1dVf1P7zLSTFz3p38UP263UgkBtRYAZB12U5FZmuECCofKcghz": { + "balance": "1783.850713803", + "bytecode": [], + "datastore": [] + }, + "AU1dVwFVoeQ59LaFBxG78oZgnmyxYNJLYmZtCB1NmPCJbWRWZAtp": { + "balance": "749.830627310", + "bytecode": [], + "datastore": [] + }, + "AU1dVxiiL5qhBcmrwkNbYcsXwTLaHzd2NqEf1fBGk5hAzeEGt24J": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1dWSHi36rDjHTpqes64wZjhfS8wU1bXDbjVYXeL5xtP4DaQimf": { + "balance": "166.666666667", + "bytecode": [], + "datastore": [] + }, + "AU1dWT7Y5wxinVVXmp3gsaCKKprxEoiKDvo3wyanvZ64xwVdSCho": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1dWWK3UTDt2NHayuXU9m6SYm6K6Qkk2CWzrDyNNggwPjsVEwKH": { + "balance": "1130.474991608", + "bytecode": [], + "datastore": [] + }, + "AU1dWYV7CaEuRp9MSeC731abmDFr2TKgrHhyNxh4NfvyLav3cXUU": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1dX1PqQdkwJnYbR8fUCuHw5qxoivvfUNihkDZywWXsHQaWEccF": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dXevqXM4uoqgCqazxftuTzqyzEgMw9sAmMacjEnMuhc9K9NJw": { + "balance": "6124.370144411", + "bytecode": [], + "datastore": [] + }, + "AU1dXoc9QstFLdNDDyonUCxnNoYE2uP4e9gZ3E8NX2i9a8N28tNn": { + "balance": "1082.784852884", + "bytecode": [], + "datastore": [] + }, + "AU1dXuHZRTn2WvTJyKBywQRn7a6ptdJyxV81yHQyTGvxSaFP5hjD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1dYCjgb3qEvUSeVbCJsjU61UnhzJDHkin5W6YeVXfBfSC4AAzq": { + "balance": "1260.513505106", + "bytecode": [], + "datastore": [] + }, + "AU1dYgtfmgC7Nk6TUyiSEy5f4mHvMBH6RmrcbUHthuCsfoDMXqfe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dYxYLs5xXjDQsUem8hmbsAqehhSkkRnVpitsGH9iUPn1AniWX": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1dYy461tg5VGdsv7c93LDGHdQLS3V59sGA9MX1XygPfLqQ8cFj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dZ1Rv5gbqx6xJTrvWetZzwS6NrXxjfyAdp1DXTRNtetrZvTeF": { + "balance": "3587.531208922", + "bytecode": [], + "datastore": [] + }, + "AU1dZL7r4irbehW4D2cTebo6XpzDt3GH7BEDAX2tenwxwx6EHp1w": { + "balance": "1436.952647573", + "bytecode": [], + "datastore": [] + }, + "AU1dZgj1u2pFWhxNMawY2V1mVJNfgGrDgu7gNRTQGwCVbSN3mAdb": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1dZjk87ZQPjDMfnAQ71o6fMrJbCmwzBzxwwV2saSWoBDkdYCxZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dZwWKE1qGk1oD4X13xsiGXTMz5dPdsESTtMZei5it6VurTAvg": { + "balance": "2773.050623447", + "bytecode": [], + "datastore": [] + }, + "AU1da2qjxVNKDjfs4u68p94W1d8vB12VtHq3hvvG6xYMgbZVX48G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1daBDqurvtLWm8feFVueFL7tFrBreEqe61uNpdB3ArPcbQBc7t": { + "balance": "3197.735468614", + "bytecode": [], + "datastore": [] + }, + "AU1daXCkyhmShTLwYEYiC1eXtceKrmsYFumHm9QRgEhDPw4fnJyr": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1daquYxwEtzgMU1xqfXJQg4ApoohHNpeA7xr4GCnEEtp5gBusX": { + "balance": "839.575584681", + "bytecode": [], + "datastore": [] + }, + "AU1dawfv3eZeyYKuDJFBCj9AB1NC3mPEoDuVpcR5HvhpipM15U2A": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1dbE4YoJeb78U4CFX7ycstD4bQTkbkhtXQucDtBsGdAoQ21w3U": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1dbd5jWXunPVTwdaL1akd75uKMfSBHjTVPk2Cq6Wwe1wQF7gLB": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1dbuftfNUcsKF9SfgU6aUhoKMPCL7cisnbMX7QzJjfy6xNoxFX": { + "balance": "1385.639475093", + "bytecode": [], + "datastore": [] + }, + "AU1dc1HLcdkEEfdHGyS2iMUxDCqw44kYZQ5Qmpe7H7g4PYrXSYAt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1dc1VYYRET7oUo8eZ6n6gEZyH6WNZRJRgJuAsq2huz1RZ8pg11": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1dc7FyCojEbRcDvcGcPn4mZizN9ui36mL6QtRK26FrcmrYR1W2": { + "balance": "1389.064742140", + "bytecode": [], + "datastore": [] + }, + "AU1dcCbkW7MdRW2f5LwWjrYJSq2UdNYN7WUsBRZGLnJ2tjphxRbA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dcDDjRXr6KQBhHafS8ixSq3xZT1oGnaXAb8hnBiG195omwgvU": { + "balance": "660.186467184", + "bytecode": [], + "datastore": [] + }, + "AU1dcX3n2nvDuRQXgvDtEHpmKvFR8wMsJutVQLMgKvgXRnThvRBw": { + "balance": "2177.538470739", + "bytecode": [], + "datastore": [] + }, + "AU1dd5cFMKbNzahq5wCi9aTfFpUNKk5K59Czq2r1fUhKHP9gAkiz": { + "balance": "21366.425738404", + "bytecode": [], + "datastore": [] + }, + "AU1ddRq71AzKkVSWCV2gXHxJCjVnCaG2zdyvFUHPLRRt89d8R3DE": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1ddU1sr3D7bLcHQqf4TAcKJTz2rux41CoUdcVi6i2pqHbQQVzL": { + "balance": "1395.063053301", + "bytecode": [], + "datastore": [] + }, + "AU1ddk6VWugjdHdQZmLMvji3nS4EMTmLcb26nrvniLEXuw5DGtUf": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1ddkVSpBiFgMt9dRJSgN4MxqY83Qc2K7zYR1TPVZhMGEdFwSyE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ddqQr38Bmy8XBrgP5cHkvdJ74vCS3hRg6L1Q4GofZqcUSwxMa": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1ddyQFjiGPjPZMmxb1LBPC44Er1ZYFkpe2phwLhx3jg8ButS7o": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1dekXRuHTwJ47mJ6jyfMtwpM8BZoYzWNHVU98qzMqGxvHs9VZ8": { + "balance": "3409.809507076", + "bytecode": [], + "datastore": [] + }, + "AU1dfBPXmfCssyNdAsdH5nBG4sNT5LE4H6tqdfREqip7amNeAJZP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dfBkjet3RoauBsA4adGZtuqAE68xEeqSqy721VZrrNbmsugTa": { + "balance": "3700.888940158", + "bytecode": [], + "datastore": [] + }, + "AU1dfhdPz92jDqekDqWv2oVcfzNi9WkD468JSB3jji6GZM91ZBwK": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1dfn1Rz8qhTKTb2uWzz9S8bWUPevoV2E1GzyXz9pNCtHnsqjC": { + "balance": "2559.173971654", + "bytecode": [], + "datastore": [] + }, + "AU1dg9H55WEwUCEw56MXrpVBGGttj2bCduVLYo7MVUctmNp11aUw": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1dgLPBxwuRM24oetrxy2v7oLfqvP86fFJrsrqX4UzqCB35Zxcy": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dgYAjg5qMZ9zb63ZWZxiN3XNY5FPtTTzu3xr9SWCHVPSN2THR": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1dga6AKdgnYa8AhGSN6DM9wwfHQR7H9NSNMv1FhmChqzcDztd": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1dggYcTj1EUyfXbVzxZHv5tC4XbXAudkTLpknfBoUyvvmNnoRK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dgqeft1XL2eVSJg9ezisFmzoVnbn5iZAfizB1zJzuSGTJ1hSE": { + "balance": "884.150831656", + "bytecode": [], + "datastore": [] + }, + "AU1dgrJ5ESVok96fZfoG1CgAWd4PtHDxHRL1gpKta9c7kp4oNQoe": { + "balance": "5081.884079545", + "bytecode": [], + "datastore": [] + }, + "AU1dgt2nCmd49LYVPepKfHG5TVbvGzR19nqZHTF68UbugCYQUVyR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dhNkwoaJ9kuhPbf9NWNuDbwdHzdx3ptPZspBZukYayJco8oSN": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1dhgVRnqcTLiixkNTtQ6FZKFr477JtPjSktazUeynCDrJ9aY7s": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1dhpH5om1jMXQEz1ZzpEY5wHvNaiEKndNvrB7E4nAGcxoYuY91": { + "balance": "1135.784669161", + "bytecode": [], + "datastore": [] + }, + "AU1di1ma3fCKmeidhp43f5GWG1j9S7Y1asxGQ7gGEEdC69RUr1mQ": { + "balance": "3402.494701378", + "bytecode": [], + "datastore": [] + }, + "AU1diD7ywwh7YCa8bZJ9ncPWGPQNNwPnzSDMN8X3MDUrcyEoDtwV": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1diJZJP37RHNCxTnSuCptTkGtcp9z1NA2n3LfPTM52JMtfr2mQ": { + "balance": "22.555743712", + "bytecode": [], + "datastore": [] + }, + "AU1diWSYQWxfqFquB6FC72eC147byQqEJPGCyJ4Jud9QYybzWb5f": { + "balance": "906.375385768", + "bytecode": [], + "datastore": [] + }, + "AU1diXd853Cw6kwwaiTa3R7HUb78iz7uHeB4GoopE6hsD6xhndsU": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1dj1vErMCEmQSBxvAvU8uLfpfkasGCKm8A3PKXgBYczPMJx44": { + "balance": "54.298235906", + "bytecode": [], + "datastore": [] + }, + "AU1dj2seQBdxxS5hjby983qPS56FoRMJJXGuc9ZKMr92BTsT8gfw": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1djSWHRnCVHZiT57ekEQuRgDHYV9YdDrbPwW5vMTkaJ5xG5JBb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1djUT6opNjMNq77urownFZpojM7X61QkyFKb5b7YCcYZruYzU2": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1djuKxW8VCNLGCQNe88whcYxoXWwgiTX3KtwFecjrCGy8Z1rRB": { + "balance": "174.517215228", + "bytecode": [], + "datastore": [] + }, + "AU1dk8MpHAu9WTvC4DjKMNpsqFDsdrGzLvT22NPW3hbaWRqKrQRJ": { + "balance": "683.665736094", + "bytecode": [], + "datastore": [] + }, + "AU1dkiHGHPYikujvSqiiPgav2MoaaLXmhMSDEBLkykm7VQmAEPGj": { + "balance": "5429.498014910", + "bytecode": [], + "datastore": [] + }, + "AU1dkjZhPCcwv4QuH7RoDw3AwQC3g5SrZ5NitTKCTwVahhmRYvgJ": { + "balance": "1596.810473674", + "bytecode": [], + "datastore": [] + }, + "AU1dkrpuJ5WN5RMQsDvDzj95NNGWJnaMj4zgeb9DUzvHLt9Ejg5v": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1dktnB5ze6v54rHgr28cBG9w2zNGoLWQg3RYR1LEBKGrB2JZsJ": { + "balance": "1896.371105274", + "bytecode": [], + "datastore": [] + }, + "AU1dm1SJVKknawT98qXAiAvUdMFQskZ7fe3iua4VabHpZL7jGQJT": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1dm4cHz78DGoyrrsnX2wfyJU9SZDG3CoUJR9TotRxCMV3rwuvd": { + "balance": "44.596427957", + "bytecode": [], + "datastore": [] + }, + "AU1dmZp9HsmbLCrc2VzmFauxxT4bSyQBFkjJZE56J7YpSyTmBE49": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1dmbRyjC9RLs7HTmQUsqAw4bMja8LsapgJBecqKeYUqzuMmoek": { + "balance": "631.968461163", + "bytecode": [], + "datastore": [] + }, + "AU1dmthYktWdzX37u1dD2XJPX5G4u9c1uAYBWezttTocoZuwt56V": { + "balance": "942.992483676", + "bytecode": [], + "datastore": [] + }, + "AU1dn5QaukCmu7sbCEBqget3tx1Lqb5hM9VMUqv2t3HwbrWsQoXT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1doZXXEfUuFTV4A7pt5dDPCyKyURLKQ15LRVrZxVERw4uXTDQ5": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1dpAgGKVRXdMVCihYxgXCWa7KQifAfVMyP9YtXYAhNd7MhZsSN": { + "balance": "3720.485941705", + "bytecode": [], + "datastore": [] + }, + "AU1dpgwNADstV7M79XjQfdq3q2QNay7W4jNs3QUhKmUUK7s4kfbU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dpvUpSDQxWU5kLyGF7NmgpaZsWDREkhqA8adyfKaoM3sBTocS": { + "balance": "298.140935876", + "bytecode": [], + "datastore": [] + }, + "AU1dqEnBwuDwfHmuikpwQy1cedrnHFTTFCDgB6834c6P3PXjwuFh": { + "balance": "772.154161063", + "bytecode": [], + "datastore": [] + }, + "AU1dqaje99q2B3mrtDDMFE2fRGLdoNUkbQNU2RxfW4y3WS4yiG5a": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1dqiKnWrQ4PE5U5VDC2V2Ng8itSKasaDx72ERk7u7s23quf5Xn": { + "balance": "94.230253075", + "bytecode": [], + "datastore": [] + }, + "AU1dqx6sper4BU3ZmwmRvPk5n92P3a8T9Hwz2FVouXjueJd5fU5K": { + "balance": "1354.026407788", + "bytecode": [], + "datastore": [] + }, + "AU1dqy1ANBHXo5UJprq3TpitEjzkNEv5ZvW615UwVLsoDFJyPtuG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dqybsDGiVEjo5Ky2HBkRZUDErrCSGC1BpXtpdcnhfxFw5buLu": { + "balance": "3435.693019920", + "bytecode": [], + "datastore": [] + }, + "AU1dqz6ode6Krtya7dirDuJ7WQAVBYRHjK5TxqgJSryTjBUfiNCH": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1dr5SdCXhVcLwX4ccK6fQbDJznZ9NPkJ8jWJ9koxezHiD2x6PK": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1dr99N2DnXqoMNdsc7K53o2WQ5vaCtkoNqZBPojzWh1ULKfMQa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1drJUWZnL56RsHmBgvmecRLhQaozY37HF3ZytJ3y4LZQhcpyaL": { + "balance": "1464.759613788", + "bytecode": [], + "datastore": [] + }, + "AU1drNPfLECZVKcyoHDaaP7PxCYbA9ZMBdwsfbkeE6LSTTdg1kHL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1drYn68G8YoeyxUaQdzjPBfPQHJYyt6aSxdbxUi2MhBfJXEUdi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1drfdXRQaUAvVwdNtHAkZi4oERumttzXuq1X6fft46eB8iHM75": { + "balance": "5537.423177674", + "bytecode": [], + "datastore": [] + }, + "AU1drvWyspZEGKQDLyiJczHpAoCKeuFe5CAcEaoeUbVwsi9LXU9C": { + "balance": "2880.044327097", + "bytecode": [], + "datastore": [] + }, + "AU1dsJk5j1GsozVdJBUcoR28H5porBxfa5mRUHxXa66ihE9pk9Db": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dsMScxxMSq76Y34ZRKJpJzL6CjaT7xV2CsVyDWU2D7T7UYyNz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dsP1D6rYvsbMfbQYPJdTZFPHfPnCuMHP9UP5vJrWDJMzaLpbc": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1dsQodBHuS1xMd1wzBbZmAphsViASAhq4ZB8hF7E7g8MdqWea": { + "balance": "5280.693139879", + "bytecode": [], + "datastore": [] + }, + "AU1dscth9qDjsyXVGv31nwbZTvdiwyMauGArLGp5X9QWKsUmazxS": { + "balance": "2001.419701065", + "bytecode": [], + "datastore": [] + }, + "AU1dtCqBRuiid6SnRotYbGGiTPQLq1htQHMZysvaCuQRFPY46BXo": { + "balance": "1598.443767068", + "bytecode": [], + "datastore": [] + }, + "AU1dtD9VmQ4zAF7xnaLXRT4iYf8k32jkLedhL6Fnz2dRR7JkBiHy": { + "balance": "2515.520812708", + "bytecode": [], + "datastore": [] + }, + "AU1dtbSrEhdiagGURgUanCrNkHC1iqurLvMnZ1JtzK3yaepETqVs": { + "balance": "2332.838764368", + "bytecode": [], + "datastore": [] + }, + "AU1dtzNnxBUciRE9UQAJz2DFtrj64MueXPxjRvFmGgdRvyHDtm2j": { + "balance": "1376.678607379", + "bytecode": [], + "datastore": [] + }, + "AU1duidwWn1DgKr96FApAJUKEbVrL6gXZDqLN3pSPhSfyAK4KkGx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1duqUWwo97Pg6rtGDNfFninAjqPv8ZREY32nxYkb2uBAVXmmm3": { + "balance": "1064.610251750", + "bytecode": [], + "datastore": [] + }, + "AU1dvJ3sLH5V3ZkaD6shzJp88uA3xTzx7ZJd8C6Xp387g1wMdP7X": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dvXRDQmPEgnuhNjT988ijg7fJxM8VvNpi8W4Jbd46rSudQFNX": { + "balance": "2374.819628404", + "bytecode": [], + "datastore": [] + }, + "AU1dvwNLbFNSSEyNUW6yF6uVLPp93ijXG2zxsYxmmKChn8VLFQb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1dvzQVHB4MTkbdkM5Pwz9ao1UbNL4LCPrNsD5QBr15jXdtwHro": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1dwM1i4HoFWCb8JduDXiwdqLDD7CALjuJQrwvPkwE9t5cnGFk2": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1dwcvdQxjByU3kwCQHVMh3JifTVaLwg5F9PX9ZJRgW11J7AQ2n": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1dxAxZkQLXD8G4p5JgcCHxGwAwCxDyMMNCdXuV67A1eyjF5Cev": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1dxFVC34ap6fBLBAQWkmmzV28PRmYh2VCsbxuYvxeQJbPstNtE": { + "balance": "1641.401383161", + "bytecode": [], + "datastore": [] + }, + "AU1dxFXg9mdd9us8x83EucR4vv89GxFTdJk4715BWCK5K8Dft2mJ": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1dxmRcFA7RnSoxH4stU65tur8GGq1NkrPs4jafbqT76vvhQW2h": { + "balance": "871.887885837", + "bytecode": [], + "datastore": [] + }, + "AU1dxviKvm3fg8gimi7ydteDQogTFhP1i6n56En5SyBGFKPEHfxL": { + "balance": "528.358441011", + "bytecode": [], + "datastore": [] + }, + "AU1dyBviRoyUGU2JD6zizSAw7R8C4fhLENnRMLzJehmCrw8dpstx": { + "balance": "60.231023102", + "bytecode": [], + "datastore": [] + }, + "AU1dyM3fNrD5PYV9xa2BGtRRHeKt3Hkcyp2a2AEN3Tehs1iU8rZx": { + "balance": "156.798201660", + "bytecode": [], + "datastore": [] + }, + "AU1dyPF4n4TSHpkDM5c7hYnBhdzditFnDm8xF8QX1MemgQrkMCh1": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1dySSUFhLKk4yR9mPAq5LUnfy9iLGtFF9AULB18ZsHz96VzqxK": { + "balance": "2002.975690006", + "bytecode": [], + "datastore": [] + }, + "AU1dzKK2dbZcXh7WttgCEPQToKdsWmygKCyVgTb1s4pnifjRHDtS": { + "balance": "2318.591100535", + "bytecode": [], + "datastore": [] + }, + "AU1dzL2itkDrZ1CicDrZ3iFbCwYPSf1UZACtxXh38JRAfa9UVRHr": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1dzT6QPLuZ12Qb59VZV9WLd4SqCNm4wWcEgyoEgA4a7Z7pKzmN": { + "balance": "3763.079872434", + "bytecode": [], + "datastore": [] + }, + "AU1dzgtb9AkRHhoW2rfAxkB2ecroBygHHxGPChV5QCmuSG8ujiBz": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1dzo7eoKTBnw3J5FuToBUprLyxhJ8xRjDw1rxXzMdG5Wr7abiV": { + "balance": "2242.745823833", + "bytecode": [], + "datastore": [] + }, + "AU1e11jVDuUe1xQXUBENxNaFfxpMtf66u4Ven274mwRgGgwsinku": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1e19uoKuCKXBB9ya7ozJbnHMYYjzzYhbCyePg2Dw42az58wR2e": { + "balance": "4130.734657172", + "bytecode": [], + "datastore": [] + }, + "AU1e1SKJfGKpyxzc53VvwU2AWGp8aNFMG3jjH5jskkbkmjVpsqDE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1e1WGMyb5J9NvfSz9rE7N3tf1unJcGUDd3rGtjwxLyUPrt97pQ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1e1a1PrHFKkmY9FdAvF8z7CU1jT2XQGgP991DfECAM9Gq53BCe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1e1aJdxcbEQHJa4Wh1HLpF5fvbCmnb3YuGUvSS6C9ZHJipnUXL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1e1cUHooKYymThmeBNiUGDuRgexCjXJ6Wto8wbyr1Z4Tz2xUZ7": { + "balance": "631.642580700", + "bytecode": [], + "datastore": [] + }, + "AU1e1paVj84J4TQJjN46VGSVP5ASANgJ3NsuuZu9o3RJfodYFFwd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1e1vUSitujByENokgFeucCvhYhQK4WKPCVjHuxb3vCuantA3m2": { + "balance": "1549.142335031", + "bytecode": [], + "datastore": [] + }, + "AU1e1zRtT1jJkTg9YgHe1gkpZAzmFeBdKHnF1NRiBWDELHf7fPHq": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1e2fM3wWK4y1wGuHvQ1kvmXTs5xXe1iUvPchuQBaXs2yq5g2jv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1e2iTJsmrZ15j9CAPYJAMRGfEfWaAiVtdYHNj9D2gnCUX2gSeW": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1e2rpx1o9z1x5forQAJ8amVKj4omVcPHH9ESDV9NRsuJm7MDSh": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1e2ycsE7QvxEJVtgtuVFooY1MUe3X7w6VjoMjkT5NNyn47rv87": { + "balance": "5136.832120941", + "bytecode": [], + "datastore": [] + }, + "AU1e31aPgPEWcnwJ9ehzZDe4nzug4dQoArX8Tbkh9QtdsZwvU4cW": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1e3fFvFBMhBUcT16FJXC7BdzZwhoYnD9NpdLjKEmqGM6woJe46": { + "balance": "2516.955733949", + "bytecode": [], + "datastore": [] + }, + "AU1e3pC2werRANjW6bLHL8stta3gKexH23yyS1ce4hGL85Jo6eCG": { + "balance": "1379.880626705", + "bytecode": [], + "datastore": [] + }, + "AU1e48Sn9evbzXbkPatM9V8V9YVATSjhNx2epaKEaEnDhSwXVz2f": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1e4BW8Vy1zihJMp3hQJhftzPH2MTKEcZeAH6nf5sfaCGXooeec": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1e4BxhdJKW64rGMK9ZufgXydxWsdJJ9zwAXW6sjxBhZe2eP2Vk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1e4yEx9pjFcGPKqcoska5A65MyoH2xhSc8owkuatMU269erPVT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1e59w5AoahMZGSTkcXmqBFdSbN2ArD1P2fSwB7gCxB4iE2bann": { + "balance": "3045.611455213", + "bytecode": [], + "datastore": [] + }, + "AU1e5N2DwkWAo2WHCv4TcG2rpRyHVN7eDg6XFFxiAWDQNUPrhwMT": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1e5iP3N68UmGSBHWVvAcALEesRUwsgMzmBmUM2UfcB2x4xcyrU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1e6bgTj1JJJyLeXF6CXGNgKcpihSe7y43GoD1hYCo5VQHF6tpW": { + "balance": "4580.451732059", + "bytecode": [], + "datastore": [] + }, + "AU1e6kxrf8XxiptFQuTMjM1LYdv33oJai8TaoiNEKzMgi5pgN72w": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1e75thDPbohzBB3WqK2Bk8K8mL7oYGBWrMkCwVM3DFosww22Pv": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1e7DzE8RG9hVUWpH7MpmsEKEwG9yh3nZk2JX5ppLYYA747aEhd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1e7Emqx6PJM8LteoJqzgXBXaCdT4fEdGzqdEc2NcqTapUV8iap": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1e7Gt2LeWmbD55mqvRvzQrtgkiwPBEnSfTMxpfoWXF4gtw5euK": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU1e7RRjBW5i2a3huecq2cpDeidCJHtxzcs5ih4a4rJnCBWtpTCW": { + "balance": "1249.685806630", + "bytecode": [], + "datastore": [] + }, + "AU1e7VfTUZqkZ3dP4kah3iK42bXmqXZKe23uK2hKZH1CULNGr1jw": { + "balance": "3720.911050461", + "bytecode": [], + "datastore": [] + }, + "AU1e7gdLr2tKxhqjqc7BjGooUpcvY4xJ4d5266t4wFeLMjqjj1nt": { + "balance": "3813.968079538", + "bytecode": [], + "datastore": [] + }, + "AU1e85mEDjBDLGbkvzcpgH6v3WQ74x2Ta2FH6fLYJNBo7A7SCkpa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1e8Fh9ujdG7V82ajQWMPs26AoG9PkTKuDEPztkg8w8EmbJ9SEp": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1e8mTgEh4kLpGX7EQ8cs1btwmXtXzPUNF1YaYGxRY61SiMTpYw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1e8rFML9EfUrEc2Wv9o76yj4wnxzxyGAnLjcyh3Nxc1b6rRw8E": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1e92q5oC8vqyMccvpsGokn95YABUU2Hff4zD8McjrPppyxpqEM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1e9AKwYBWj5rj8VtLgSEu3M2Xr1vJAxuTRUr8Z1GED3f5pkKZZ": { + "balance": "2845.472497802", + "bytecode": [], + "datastore": [] + }, + "AU1e9bsaDUzK1fjXPRSN8eEqkCewSXrfwVCEKcFAdaBJMFCAjF8D": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1e9nnue1cjLMgLQuqK3rbqqsx1ANhw7qLR9XUUZCvLJrVt1ex4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eA7F1Zeo15pN7B6oVmShFKswUPM8Jgfxqu9dEkNNRLSYumSro": { + "balance": "2655.006635410", + "bytecode": [], + "datastore": [] + }, + "AU1eADs9tRyTULHGR5WLGccMZLA8UnqLqW276EcPaq1cGWcUr7NQ": { + "balance": "1643.474698616", + "bytecode": [], + "datastore": [] + }, + "AU1eAJ6xVLrSVn4GGjG8tVDe7jJZXbtXTrqjSnsgvLVGwmfWBgVw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1eAQ3sBqK1x7DkqckbAVmux4xqfADfpgfPGTkxTdeWA6cNsoCh": { + "balance": "1510.379306068", + "bytecode": [], + "datastore": [] + }, + "AU1eAU7J69YoQD7UqW8qVUNec2zJa9p9MifZhpu2KcZ48K3YEEXU": { + "balance": "1773.090327808", + "bytecode": [], + "datastore": [] + }, + "AU1eAwPHvagGZMGjrFwTE1eTVenUyCXHsqvzWB6Y6kpmPZHpQC4o": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eB3LAh1DMwfmkZUNCSYEkYguDfM4EyyMy4mZxTTqfSmN31MSy": { + "balance": "2321.796898794", + "bytecode": [], + "datastore": [] + }, + "AU1eBa9vHn97aJUJteGDn2eJfba4CF8i83PaTscJDnQT1tkt7nW7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1eBgW5e3CaqVzXeMtQJMKzr7oybchmwavS2J6bHSaysq6dKXq8": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1eBvW58UFvaR8GX1EKR6q4WY2Hx1qqQh7EBTYsjaV6qj9GnGSV": { + "balance": "759.390435279", + "bytecode": [], + "datastore": [] + }, + "AU1eBzsPrD7G7FMiTSbW4AeGEqtJP7Sx5zU2XgZq89fsokFNhyuh": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1eC4KLvSEG7QNTSj65x4s1auUTYAU2kYHFktSvzrQUGZkebZZr": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1eCS2riFR59ACZGkxCQ3EFj7FbbWoywUSavr25sCeJBcAaBt5d": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1eCbasdpJyMQyouQCLRmjAxQMdfjnh24uRWzb2JxyXXmt45SAZ": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1eCpk7oPubFuoNnPQQiWudA6zjo8TVSST6ZLWCrV91rThk4YsU": { + "balance": "4376.904560013", + "bytecode": [], + "datastore": [] + }, + "AU1eDqreusYqiVLeqP2QwGUwvwL51Vt8F7YkY5XAvdffX467kyhj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1eE4nnnuEGSfs4g1KfpSHhbDo3SwELa9DonKTdfoXP5yYpx4EW": { + "balance": "1100.863661158", + "bytecode": [], + "datastore": [] + }, + "AU1eEV3sHuTwsDE51GqC8EAQMEHn4xv6jvMe2uRnLkbsHeVRTgnb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eErve4c8okPrGuw9Mix8v5EnLPPmuez46driXQ2WQHLimHRZH": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1eF2L1tE6MztWVq72AveLV3o83UMzE78USC3Y6G81GvGFGrQ2Z": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1eF9Qivdkgor4aapCj3CU1drJRPrrq6nvadqAUnEFi7q4U66BM": { + "balance": "1722.413828331", + "bytecode": [], + "datastore": [] + }, + "AU1eFJBNzXFFL1Yywt8HnwD6Tf8mvzf4qrKgsXjYVUW55KAQhqHH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eFKVcnxTEmDsJaKbsaTFhDtdWwPx3skJwn6BjaZr6H4tkVdUx": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1eFhN4BXtpCYQNQXBPQh4iySH6e1DzmkU7fgDDX5cuJL45xAbM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eFvr8snUsKBGXLJN6LPKT7D5SEUqrCc17eeaEp7z762EdgBZc": { + "balance": "2949.003385147", + "bytecode": [], + "datastore": [] + }, + "AU1eFwgwWCbcHGrrmR4iJ8tRuYcKGYji5HJYES3dX4iYKUQUrp3J": { + "balance": "551.350870040", + "bytecode": [], + "datastore": [] + }, + "AU1eGHatW5LQnFEi6n5a9YTkFf3EjFPAvdyvfwS8TERMh5f7pgaW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eGQbrk2inbDPCDW4yWPrXuAGT6Jg9uYV1r2JoMy8VfkBpXU5G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eGbb9rCffku6VXwP1AGFgpi3f4RQAr1XqoehmU2TUHMuBMzUR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eHHFh4DKm9AbYwk77y25gPXbpYyj5ViVn5pFJAFkuxadJdRa": { + "balance": "2430.261704699", + "bytecode": [], + "datastore": [] + }, + "AU1eHMwUvR46tQoafES8d1wq7rb4AMTWiNMpJRPtY1bkvaA8eivQ": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1eJArAQSR8AMSjn5v6RCB74n1rUAJePtAJjYekaKEQ5HkTG8eo": { + "balance": "735.491423906", + "bytecode": [], + "datastore": [] + }, + "AU1eJHLqmUX2na8xEbzR3qdRamqYKHAZtzFh9cHdhx5CwyMdnxzS": { + "balance": "2021.847654805", + "bytecode": [], + "datastore": [] + }, + "AU1eJZLqEdBj6vKnw1Y5Nn1mG93Bmh7a29HTqaSbFzD2BUYSdazz": { + "balance": "2097.582165080", + "bytecode": [], + "datastore": [] + }, + "AU1eJeZdzLywbejVeXWWqCcxysm46jr2GNtbNLkaqdXrbGP8cWmb": { + "balance": "3299.417642236", + "bytecode": [], + "datastore": [] + }, + "AU1eK3AnnYAnSypzGEaxwcqt212tucvr91Z9AVkyH6ha9B4fCyWb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eKnsU3r5uKciXkbf3K1qcyEgUocymMdjKvyyrNqWMsNTeFegs": { + "balance": "1659.584934838", + "bytecode": [], + "datastore": [] + }, + "AU1eL9SeWAdkRYGmiyxHeUofCmQekVcwx6SZihPMrz9tSmNaC1wv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eLB1SSinCA8YKrx7aASqA6AuF6JRATmQMXTFJmWuG7HN15n2m": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eLRE2geGVirZ2b8CjhfTpXixTXEijGj64nmkpRkU6TYt72j5q": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1eLrsf7wkT78e7yzUfPRvXt4xTsr8Q1GzZ741eqXpvHktEow7z": { + "balance": "1970.678034895", + "bytecode": [], + "datastore": [] + }, + "AU1eLsZr4ihbsoMKQ6VVgL9ZU1ZHJHxRGjjci4A7LPRnorJMLdHi": { + "balance": "3687.842360365", + "bytecode": [], + "datastore": [] + }, + "AU1eM7ff4YqninHHPE8FaPUo4Bk7a3aPhCc157Cdhu96ksnR9yWR": { + "balance": "2866.624364596", + "bytecode": [], + "datastore": [] + }, + "AU1eMWrTgSfmLmzpj8qYUXcmAaxu1orTaD1zyaoTXziiBC5MGoLp": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1eMp9L1o2D6bfBBq8RQZbwz12jWdhgtx7qRQYqBVijYn7fWXaD": { + "balance": "4105.989595144", + "bytecode": [], + "datastore": [] + }, + "AU1eMwCvkia4btrajfrwoNkWCYgvTwA81BYyvf1RewQnACcDXgm2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eND7nyswjDJTgNLVS8zL1RKmC5uCwcE95RznRWD8sBsCyBNSB": { + "balance": "1778.256697904", + "bytecode": [], + "datastore": [] + }, + "AU1ePcLhtwS3D3d6vZgWTric54fuvGjhWdTjuFwek9tQ6YKKLhS1": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ePrjLuF5jcG1wQxXwrB2rVCQdDAVEjABRZp5G1KrH2CGbMioQ": { + "balance": "2871.213223337", + "bytecode": [], + "datastore": [] + }, + "AU1ePuzZNC3pY7n8UHEFGmfkVpFkeRFsH6cMyWxSiMpqh2qW1diZ": { + "balance": "73.929913819", + "bytecode": [], + "datastore": [] + }, + "AU1ePwh961VMMe9qixFhnR5PrJpa39FbEoBYYRNs3ei6B1BDrEsr": { + "balance": "2340.195695632", + "bytecode": [], + "datastore": [] + }, + "AU1eQCUqeQQGgiVhsXrEwCDDsnB6s66SUH9zRR9hszmum9LZ9rgs": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1eQEpcSeF3xQAjYbcDaXZxZRyeeVSwEAGZb5jWJpmQzg1W5G6J": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eQgWq85daVnQDZWSRVCuAw35yAiqsMza31aUVciBHTJkQrNqN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1eQqLdGpYKjUD6TQsFLTexp9JWqQPVrbZWtoqGGwrrHbDq4dBo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1eRgwiwNYBfydNTd12KjK1q6GMkZqx4j7Lze7s3Xj33WZ4BF2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1eRoQzYK2oRu4H7Zyvp5QGmTFnvctHm7LGwZkdpW1EJitgcyio": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1eSqLEx2zfyK3WMc3wv6GVpEvK65JvnS7mpptXkA4MMDai33YX": { + "balance": "1052.632674484", + "bytecode": [], + "datastore": [] + }, + "AU1eSvTRMjsvRtEHZcRNsdWejFARsgddngef491NMKF9sotrVGPB": { + "balance": "3525.374180772", + "bytecode": [], + "datastore": [] + }, + "AU1eSzUPoMYAbzv2GiXZWktTBkPjpLwEwYYKJRkiFaTbhSy3TRyc": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1eT8K8gk4kaj9ALQMUEFZa9sShAx21z252ygijdwrZ4i8ouZLe": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1eTMScGvdKXZNiLUWxJwcgXrKb9Bb7gndWGqMxeD4Nqt4BL4Q1": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1eUXm3KXhTYPJYNPp2B3sKBxVsVrFK8SQY73YLanTjxKb4DG2h": { + "balance": "3228.525084472", + "bytecode": [], + "datastore": [] + }, + "AU1eUsoZ4tFQjZ3PuTu4VFkmV52kSUntpTakiCpQeQHFXTX1m2Nq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eVLLBZThenYkXkGJf5YpYvsrpWiuzxjG7bHt4VbfDEgkdhKVA": { + "balance": "2154.848849846", + "bytecode": [], + "datastore": [] + }, + "AU1eVdVK9pHC2fCXsWNtzBRJGBWPMsUp98MgSkxjN5qfm4UcaMes": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1eVhBvJpurj8YKUCC1uDxd1HSxPajaqL3NxBZjv5gBQRW749CZ": { + "balance": "1424.437315648", + "bytecode": [], + "datastore": [] + }, + "AU1eVtUymhm1DeYdr7rrervyaiFRcU9Vtmn8Q7cLcGzZkKqqbRYH": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1eVy7U1pkRqqrhPapXaxTVA6xU2eFbUraoMEP1E2Dazy8GZHP7": { + "balance": "677.367036337", + "bytecode": [], + "datastore": [] + }, + "AU1eWLaNcybWnoZJa99FnvA3jHe5EmE1ibQxp2Emo8hFWbRgGXWY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eWfqydZ1gq4TMBnikBJD6t7t4C2eiKZcMHRySxdzGGm2ja3oT": { + "balance": "2818.222426710", + "bytecode": [], + "datastore": [] + }, + "AU1eWrtVgPVD2R5FGnXHLLPyxmLQZ54jZQoBw8cVis4ufahDJYQK": { + "balance": "5554.119952745", + "bytecode": [], + "datastore": [] + }, + "AU1eWwnkuPN742ckqg4Pkx9PUQn7pARUopN6w2nZ8ShLc6XHfnnE": { + "balance": "1993.180408417", + "bytecode": [], + "datastore": [] + }, + "AU1eWzQhqmxtjvj8oTFBRPwT6maww7ygxDVdjngPos3vXHiPvSyi": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1eXLJm8Vg5tsB8uhdmMGMp2oc2uTxeRVNaJ85ibGmjaiBwqXSM": { + "balance": "146.991290376", + "bytecode": [], + "datastore": [] + }, + "AU1eXbHTZszsh67Vh8icBGfsjHtT6ePEex1vBnfVheH9dj8za9U1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1eXxWBEUh7HrhidZkt9YGf4cwcs1r3mjN7hEbZGBS2ef6YoTZZ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1eY6HesD59sqwsa1zVjNrgJ2DKfFXqZC6cL4b97y4cCPNwr6rG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eYENtGSnq7864T3oCRLu6SjPeD9UaNZK4mJ7AuXczypGPEdVt": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1eYNky7M37SrhNdndS61N7swn2qxSBtKA7GuURDFFxaqLQhZLa": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1eYPTn3VuwM56sHrGgAnez8k5CE6nvQi2uvT7gpkUYpiSkkBdd": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1eYd4NStkQ1te8vieDbz9Jb8ud1cwmVv3nsXpfmJd6ESn35RZg": { + "balance": "1159.755868896", + "bytecode": [], + "datastore": [] + }, + "AU1eYoUmZfDK8F4RvVBm1ptTAzsyYPwFbuyUBmuvmDNvS9Kgkm9V": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1eZ3Scjn4TUoZyP3UBQDDsA1MyvrLaD9wyz8NkkkTb6co6QbsC": { + "balance": "4332.833894436", + "bytecode": [], + "datastore": [] + }, + "AU1eZ924MuTekWDpmdZnikqPFHKqdFj6Yy2Qk1ckni571gtjbizw": { + "balance": "3548.602219786", + "bytecode": [], + "datastore": [] + }, + "AU1eZ9r53idgE4X9xBBbo99QUeHBzZph9J3ML1AypzFEqxMAq3Zx": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1eZVhuFwpfHpYMv8HqRznRSGNU4MRLYHPqfnWFFyumwrNceYTu": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1eaEaeKpHe9UBW3e2RNEo6QeDMFZFiZRh3BdLNqAA2UKExmd4y": { + "balance": "2477.854607966", + "bytecode": [], + "datastore": [] + }, + "AU1eaWAawSK1kfzVfDdas8xfSZ42ugjoDr3SdErZYzvjQSnapYbj": { + "balance": "2067.529907938", + "bytecode": [], + "datastore": [] + }, + "AU1eaXXhBwPcaRorE9bGNhSHPSCiAE733tV1mhcC1jmg34bpCXPh": { + "balance": "648.384746867", + "bytecode": [], + "datastore": [] + }, + "AU1eagEVJEqypQt9oKigdYdk5TtM3aLgihQyjFb2Dkhi8bZDjsLe": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1eapDSkbKCwG2wBBozEZMAK8FuGhqKg63raoNSji7iyabgQwzx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eb7YPwkmL8R1qrt1SeKLcjQrwPcufKJ1C8KhXonoT8R6t9Bro": { + "balance": "2495.492723884", + "bytecode": [], + "datastore": [] + }, + "AU1ebFM7vDNmYznCfHiWoZ2VGBp8Sn6WopogjbWAfZHV289U5gp1": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1ebuKq9pcg8tMx6GSaLv8JUHcc78GHt6Ua1xTuiMc6cAUw139z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ec222qUFX2mgsTEXP4d2Vs5HqGGvowU2Ezc4qzs1wJrniWp2g": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ec2hmF3bmCS5yXk4DqRi41PPuB1PUkC1sYsh7Vng1qpA7dMT4": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ecpc9iaDyjwBMUwU7nnAErpr7xsFmeTNksP8uapdGz66axhCC": { + "balance": "558.188323230", + "bytecode": [], + "datastore": [] + }, + "AU1ecvSqgZuoqKQXbspfWL9hQX3ZnjNXeJcUnhsA6ob5WKCdhfot": { + "balance": "3534.502920287", + "bytecode": [], + "datastore": [] + }, + "AU1edc2u7MmUBkKa3WHMoRCiZYoNUSCemrzbXvB9jSJFCH9K3v3S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1edeozADyUka9ju9AsKuS7Dr2kfYcjXvVesoynAHGUjUXNMm4e": { + "balance": "291.993131031", + "bytecode": [], + "datastore": [] + }, + "AU1edfHT8b1wCGcTGxTtWnWrixYi9J3RF2juckDXBvmwP3oYWpKi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ee4rbbcdrcGLtF7tvRZ3hvx9MVHTQpFEQZgwrE19URrJWPf6b": { + "balance": "1697.667620670", + "bytecode": [], + "datastore": [] + }, + "AU1ee7fzmSExfjDabyx4pGZte3mY9wcf4Gkwx1PREaaGLUBDx1RD": { + "balance": "5363.425238021", + "bytecode": [], + "datastore": [] + }, + "AU1eeAB5dK9bSW2s5By6xvGWWS4NxFxustYnov36dyQxLfPa3oM": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1efXQjwbx5vE7UF5VfU1VoUXYUdusYMHig6ZxLENxXonMNVQki": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1efrHweNRusbRZ2EbXKdStjyk4yGqecdFJUGeJwwav7aqHHsoC": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1efrYieabhpqbwsUjVKN7NFF35fQa1BFHYDwafwj23uMGCcSDx": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1egDBvpTPq5itAgn2ighFXE3VFLL1JTYdJwyUdFduftPv6e7Mn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1egPUaF9D6qMwgHim2hL5nprrjok4grfEhoY2Gi6Q2WPd7JXjo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1egU9FtGS66Sht77FqaawHfXcjpDhm7s4upPCqdwGPyUE4zBSc": { + "balance": "1420.423758531", + "bytecode": [], + "datastore": [] + }, + "AU1ehK5HBe1WUQwSmfgiN85pUG5Bf2SrsnKNghBW9J7HEivbKeUT": { + "balance": "141.914191419", + "bytecode": [], + "datastore": [] + }, + "AU1ehwKiJh5MciEx71dGZruJ9BriMy3e7kmC6w78XZ5GM84FHMDh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1eiJ24QUksXguNg48pDcJ5KSHq7auchY2ALYRdqmSqM3kDTPFj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1eiwnjVqF9s6RJcADp1qThh38t1wAdrzFzRR8o3dEkHWmGoqfS": { + "balance": "1392.153956447", + "bytecode": [], + "datastore": [] + }, + "AU1eiz5HpEn4btTPdcUDFiWELBAU9aDRxoJw7AZKsNjvizpZYvJx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ejL1qR2J2zGZAaUi2pFYF2nJQejeqX6PrLML3f1TD6st65oZd": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1ejoxmBD7mw3UnYKBBRib7j8daHMKoF6xi49jykNMdmDpf4iJR": { + "balance": "37.267202717", + "bytecode": [], + "datastore": [] + }, + "AU1ek3hCB1RJVTxZwAmJPMs6Z8yZNEFWw64bnRqv8zpGATi1oouT": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ek8kEkVcTaQH6uZJWZKPwkGZDx2m3PW1zScRJyvGCoKRrDqqW": { + "balance": "3124.448133253", + "bytecode": [], + "datastore": [] + }, + "AU1em2rmVj6XWdB94dSaDp9uVY2x8RZosP5Q2EocLLycVMB7QR7F": { + "balance": "3892.907870984", + "bytecode": [], + "datastore": [] + }, + "AU1em93Q9ucLeyMb6PF1iNp3PisdFwVgxNqHcKKTKSgtx4PoGXKx": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1emKPiYZ8ftad5QQPR2j98kTF2YD7rYvPDyv2BMEoJ9XvRZtoA": { + "balance": "5002.100061337", + "bytecode": [], + "datastore": [] + }, + "AU1emiC7aKyMh92WyYF8VNQnRvAn94AkU7hGJpuWZPLTSfQ4Tzrb": { + "balance": "2868.562591069", + "bytecode": [], + "datastore": [] + }, + "AU1emkNgk5puXXYpM4Su8y6j4GYoW1DrMhcbzPsruNxJwc4BuX33": { + "balance": "3878.950845173", + "bytecode": [], + "datastore": [] + }, + "AU1emkzA39e8obQqB8Qq9HwFz7Z7za71wfNzRgKMo8eX74tL2qSD": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1emqPXsVf41WesnZ9fT8ePQhjfV8nmm2HGoi12D1zrHnwHASLb": { + "balance": "61.413373650", + "bytecode": [], + "datastore": [] + }, + "AU1emtYtuPKHEDpJzoPUYBLfdAXaTXE8UsTedqwZu9oUeWxybMce": { + "balance": "1260.238423647", + "bytecode": [], + "datastore": [] + }, + "AU1enAvuxohPkcWxNA4G9RmV8xQbneyqVCG1y387zaW78i6ZXVuY": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1enEgVuhZVPWJbgDcsSRMjLFmYj4ABkx9extBSpiNpZZGZAHGK": { + "balance": "1390.291743355", + "bytecode": [], + "datastore": [] + }, + "AU1enUrEuHMfeH6fGd8aMo2uTYKhrJMh6Dh65o8a1yug4ojaqnxp": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1enehuuJrAdHvwzjWQ9kanfbbRmN1snWoQ2qUfefDHNJfScfKU": { + "balance": "1666.179208228", + "bytecode": [], + "datastore": [] + }, + "AU1ensViGvcMEQpf36vHXgF7YXGJx27fEzvkHutZZK8cXHEg73T": { + "balance": "4678.828716487", + "bytecode": [], + "datastore": [] + }, + "AU1enuspK5gW9URwPwUVQMgu3QeGzQGzR6yFvMDDqtsbg72katve": { + "balance": "1687.735293236", + "bytecode": [], + "datastore": [] + }, + "AU1eoQknbRFCmzrkj6vFt5fzspYWaQzw33zpSTySqa4qeMfjctM1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1epHAQGvdLjr8uBb45vTqsDeAGwuano4NuF78ienszHS4SBhXm": { + "balance": "83.687151935", + "bytecode": [], + "datastore": [] + }, + "AU1epVCGbw3GNFrRaQgyo9SLFCN4juRFHXncQaWNGfpgARPwsrQU": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1epYAu5gpAnzgWy5fPYj85k6YwohzDrevvz2Cfz9ARr56XfktF": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1eqZ71VXWjiHpz3as2sScVu6bn98QY2FUpgXcjT5aHMQQjjTnG": { + "balance": "1818.653951687", + "bytecode": [], + "datastore": [] + }, + "AU1eqc9BTziGn74YxyiXvBc4Ra6MVt79K8KAsiTgNVAPMEwtJ5YT": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1equfyZ3yFtEwvirbqAUbqHHbhWKBr6MmCUeGHap6nedsUC4q5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1erVXm7n849fRkEF6ANmvYQoLcuoDsRxwVRB9mRwTxLRuCMDf2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eroQuZhw6JXKk8WTGBc78nqVqeZqtoAtFR7PuKtnzVotNKRGM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1esmqG4AgBnFUkFXJZ8P8w835C8ySTsRQLCfyWiD1cXgvnUFFD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1esqvmbvn9PLRhGsdLpqKrW79bhHDRhn8NpvEETG3bhjn4iYmt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1et8Tp6cFedyurMdCXLLNrk2KPS2fbeMKbuNDukU4gdGn5Ztxb": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1etV4KnihEfLdmAVX3N3EbBgqqedzgttYVXXCo31XJXKT9Td3g": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1eth3tYRYUUDcbj447JPshdTdov5KcJP4L22afG61zXXXBCBKB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1etq4FAJ1b5hkKnZENzi3mGyzeGdxN6KStEjf8jdwv2tj3b83F": { + "balance": "2354.924160260", + "bytecode": [], + "datastore": [] + }, + "AU1eu3mPbsDTzSMFQi2k65w4C35JTqXn4FJTdyi8qcAJ8NCnsjDP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1euCwToccgqW1qix6DLiaxSmjRYoyLsoqoBAuLamwvcHd21hdb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1euDJFTVgFpvs1yoPkwyMuQdswSyktfGmYMEua7JdhY8LvPvLV": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1euZZNDXsQLZVgmgq1a3Hiv5GTp443nBSaccpeyMsNyTJ8Mtki": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1evHcsE6yzgmHU5ni6oXH6T99bjYpT4W14RGqmkfrzA8ydxfS1": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1evYXoHfEDQZcbvHhysuaszMFVFwaUhzsqdgPBzWWVtD73E7FT": { + "balance": "3802.303030804", + "bytecode": [], + "datastore": [] + }, + "AU1evhC5kY5W9DJUcf8t9mWZZ9C2eBxfGWCWK2Gvhqdb9G6D7DsX": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1evqgo4xktGgRTUXm3actyN5bZQAtMsD9WNQZGEJZnUNqAp37w": { + "balance": "1323.497506413", + "bytecode": [], + "datastore": [] + }, + "AU1evwEXAPVoogPGDqWVrt9PGpCuYbUmpnUfmNzpohQFMUEabgAA": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1ewMJSvjZA8v1TUFNqCy96mi7T9v8vY4Jxm45UURo2vgyQ4Gbq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ewazmhZAsBCtun4BsehDyKZKeGVQDXZKtngLcpfbftEcfBxPJ": { + "balance": "2211.851502680", + "bytecode": [], + "datastore": [] + }, + "AU1ewsPeXHwhfh3AuTwAnf2VqjW87BfiCEwb1GTJ6nPuxsU7XyL3": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1exQkooxkAB5XfLfZbWHAh9Z15RFfx1JpUP1wjQ9hhjterGyjK": { + "balance": "2534.632097435", + "bytecode": [], + "datastore": [] + }, + "AU1exZ4Ai5FNNbd526Rdo2s6HvZM9wuNMB9FKA9Jjqh4YmT1obau": { + "balance": "3492.655627176", + "bytecode": [], + "datastore": [] + }, + "AU1excnmb9FUi9KEeswTQ26qEu3e8soRam69gGtiV5qit23wViGK": { + "balance": "1384.169366763", + "bytecode": [], + "datastore": [] + }, + "AU1eyHW9WbCuguTwXgqGF64hZGimx1dwvkZg6rs4YUQtW3NTicSC": { + "balance": "1143.004655556", + "bytecode": [], + "datastore": [] + }, + "AU1eyP9Kw7FUpZ95rGPky31obvcg3Y4bXnXiUWDasmEv9zQev6WC": { + "balance": "559.351058842", + "bytecode": [], + "datastore": [] + }, + "AU1eyrEeAvynYpvRENYzWEa6jaVZsmfQRenAizUYDjfPWsQxPNQi": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1ez69UTAzvTaV5JFv9LzGbF1asALxZ3DGMgoce7uzy35sNpYRd": { + "balance": "721.942453356", + "bytecode": [], + "datastore": [] + }, + "AU1ez8FjHeNfkFcTU872y8ke6szVXULrgF8GKXyWBkdcFkNiJf7y": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ezXqTv4YZUUQVEd5BM3uT6nF6SFv6Ww9DTayaQVHrCGQCWTG2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ezf3ty67b9R7jgy6xGz4QsqK7qT4ni6T27ay9JcVoN5F1gh8n": { + "balance": "3445.913327079", + "bytecode": [], + "datastore": [] + }, + "AU1ezfmbE7gN7QDrEobQfiVXKAukcbnstzcfzJVHZ4JxpFFEYVty": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ezkuKWxtJZi61ZJbCigwMTf9PoecagiAeUDT2Yo8aHEAeeg5U": { + "balance": "2062.693934674", + "bytecode": [], + "datastore": [] + }, + "AU1f16Jy9j6byv7ehAFUb7SQRf2h8puf75m4pReaQNWFZLXnRYUP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f1CYcyA1297ChgeKFfkE61cd5QaSc6oa7q4k7U69QJ4SvtPm3": { + "balance": "991.747261352", + "bytecode": [], + "datastore": [] + }, + "AU1f1erwosDU1vLNdYQfx8zzYbtVSRW9US2kQGUg2pZk38SBxckt": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1f21aRtNjWBZXwmtENh36L8uohKcr1b47mqDip4jBHz4kKmZUH": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1f2gbNCS87DB4zk38fyW9rUmtWMfCPXBnEhfdTL1NKuzs6R41j": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1f2oNRtmHF51VhCY2fwXk7di31Z3TDkUyeh4BxGfEA8tnhWHoZ": { + "balance": "1153.059247414", + "bytecode": [], + "datastore": [] + }, + "AU1f2zc1QdnXXZy7jhMM7HsCc53YnxSDo6dxbu8m3aDuqbYBRUpR": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1f2zdbxZLsNTfwVMaJygtcsdG6JJqw8CPPEQpCTV3BMu1Tc9Fm": { + "balance": "2108.396019495", + "bytecode": [], + "datastore": [] + }, + "AU1f3PYysXAuwxWkZR4f9ASPYMN4mnFqnBnCQicqZgtzQozTjL3b": { + "balance": "1000.173903806", + "bytecode": [], + "datastore": [] + }, + "AU1f3STYksaCo4d1kMtLdnKauEGg7poded66A76xwT467GfumU18": { + "balance": "3702.243212592", + "bytecode": [], + "datastore": [] + }, + "AU1f3nUaTj7xVokH8rFJEU2nofZVKc2oT9eW1bybRV4yPPf6js43": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1f3pFEqWBEG9H2o1xGH4mHsTiWTQzUiXAkz68vCndfb2geWBrr": { + "balance": "633.721883104", + "bytecode": [], + "datastore": [] + }, + "AU1f3twuQBoKm8669WgjXsFCp3CgByqo1hCSawyJHRrLYNdTxtFE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1f4F37MEdMFfiyc5WwhFd1h21PYYFFJpg74qYXLYhLkBhUt2fR": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1f4SkTsRwU9NDuFF7PKv92wAhQacTgmX9g2VDzoRpS6hJZoHfK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f4aBXF2pvdfjyjL7ZQSpLQK7e1kH4p9GfhTSH8vmpbxbxfkGX": { + "balance": "4879.453440366", + "bytecode": [], + "datastore": [] + }, + "AU1f4hU7zDz9LtVuEbuNJ28Wj2dRPugSYA9WPbz1XLFKtv6ABHBw": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1f4hdT6c8pPUgVq3ZEFBS1cxoo2YibBiFDCagKEcVQZvQG45D": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f4jP4BnVrPXjUMQxFuFsUQs7fD17eM3AWMrzyPN2drnTG35h6": { + "balance": "2128.400369104", + "bytecode": [], + "datastore": [] + }, + "AU1f4p6iC2zx4Mcm3DssHHrJWTXdstkCSEnK2HHZY3ZCZyXMHHZm": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1f5Poh4x99bXqc4716hnxNX6TjCYCigRxZEWQV14nwSMJU6BTY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f5ZcE9hZqAvQrt81Nm5ny8nMKo9zvrzrn6aFHLT9WPJUtRpEY": { + "balance": "1640.821661165", + "bytecode": [], + "datastore": [] + }, + "AU1f5moNWrrj6ZtexLBkZfdtQnPCL1erifGJ4AX9KYj4u6zoma8i": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1f5oxiicpTy2z4JMyNwpa1AKzyngp5a8zkoBGLBrCxKSWdyqHF": { + "balance": "1036.499697732", + "bytecode": [], + "datastore": [] + }, + "AU1f5y5iVVv1pU9hBDjiQcMsWHzFxbZ8oyQeh9TURgVSHMb5ZJKy": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1f67L9Pi21oyLCQD9gB23rPNDgF8KbQjV16AJsoA8qNK9wjh9w": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1f6DNreJ4i3qWGA4ijEjDeQYmxF7KZC6EPb32jt1vpywUuxbeC": { + "balance": "3034.112260717", + "bytecode": [], + "datastore": [] + }, + "AU1f6JSknMeBaAGVghXZsb5NxcjoSYBpDJrMBQ8ELxcg4fpTVj1U": { + "balance": "3500.076708863", + "bytecode": [], + "datastore": [] + }, + "AU1f6X6EVYrNTk4BcMn4yC5QfjHndpHQXgQMwryi5DLqk7ASA9cy": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1f6XxTUJujpnTxFiZYaBc7QZcfccchdbYJypMb1J74xVjQZdJq": { + "balance": "69.306930693", + "bytecode": [], + "datastore": [] + }, + "AU1f6bZApYDCdBPgu4XUyn9sRHhwHvpU42xmgH1PSZWr7pTQTCrb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1f6ckStrJrFqZPCkGUZFUMGfhCytB1h6iaAACm4eKr82nX9gyu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1f6gqNL7TEnvoSuZRa2hd8GZaHP8xqvCifDXDE6cPh2kW3pqLJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f6sZvFgWawx2cxHebdmGbBtUTfcmQzGrHbFzR9Kt6JayqPRa5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1f6zb6gTjnRTBzSNCqX4Yg6S1XvvkNk55uwsBnGVrky8bQjKVR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f7Ea9aR2dURQaWfQcciPHyUyYaowG6hHTQnujqfQTZpiLtjgK": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1f7idCRY35yiFMxxGHFC1vuB1TjdfL6eiZrRrcusoZCXDHc8KG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1f7k2R1id8fk7U69pcCVJeih1JkpbKryZHkdo9GhKfRWhup6D4": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1f7qSFUyYrrpj4DpLA1B3R8cgyRVN1V4sVhmVsZ7TuHtfRC6NA": { + "balance": "613.190867446", + "bytecode": [], + "datastore": [] + }, + "AU1f7xTL6QzwSg6ZEqYLxiAjf5iDC1r3B2kNWdF4K7enrC276VF3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1f83esLXZxf33gCaELQNKyJ1kZB8joeFHu8tFJW7F6HCSs253Q": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU1f8F3FV9ArGrW38sgSsAvcAm7HW6YEtrexD3oNg22p9Y5hLq1W": { + "balance": "2411.657682037", + "bytecode": [], + "datastore": [] + }, + "AU1f8Wz5B8aCDHWxwkLW8WThZR11EGr6GzNUBcZUZGDknXAbnaDU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1f9GGG2StQygcSp13FixFiyNeFbyFWgu1sQEDTfEi3gup1pm1n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1f9TNd9a2pyxaFuHG6k9cewp7148wRY2rY1uYso3ho1W1BtNSV": { + "balance": "850.824755798", + "bytecode": [], + "datastore": [] + }, + "AU1f9dt1FTdRbb9FvvdsJM7hdRdNZVG99z6zbEURXoSxWDpEDQzp": { + "balance": "4390.118761357", + "bytecode": [], + "datastore": [] + }, + "AU1f9kMkSSHXS3p2xcmA5ZomcmajVAFCfnWcvBZjxsP9XtSBQNVD": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fAC8hukntoZQ2JibGbKfVpCKJfogTty9cVTQzsFpj1XsZFGet": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1fAQvkGR6618wVCGkN8ZGtYTyXw6J6uxQoaWyKmBZQ4Y7x1dwH": { + "balance": "1446.336473551", + "bytecode": [], + "datastore": [] + }, + "AU1fARN8dziuYK7yJTV3ztsNLr2JCVhA3dsWt7v3BTwtjVE6EbxQ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fAdCeGZFcLtfGwZLePYyLQpRrTFWtsP73nBj2BZTv4zPzqhCX": { + "balance": "2323.082560596", + "bytecode": [], + "datastore": [] + }, + "AU1fAkd6s4CWJxNEmohXpGZGafmipDCQ85YyzGzcu7fsMB87ir9k": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1fBAhN1AfAm1rAAzigXQUvixmXYJyKmgmAjgMA7MQLbVzEEv8V": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fBBk5dsQHkLUjg7TcWWbSPi4YMguufXzHEqZU6Q2F2SrQkCAi": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1fCFuChyHwaoRLRXkVe99cf3WjW6DSAZ3i7jG7DKxGeF1MJoRZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fCPbGHzUGUedCrRh2ZV1SzH537ciuFhqkB3yJ35ne6eySJvBB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1fCWmNKTkaGfgYY8sHJJ2Dgmsazzs81px7Zwutna9Z9s8SASnf": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1fCYVrcukifAr7HX9GerosKhntGVfrDBpAPXTvvJcr2bWGHbhW": { + "balance": "1001.545897734", + "bytecode": [], + "datastore": [] + }, + "AU1fCc35x1Uzv6hmUvDMPtZeejdyk53YQbJNtFzuSazBMhxgvNV3": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1fCfB2EMSYUWnjU2ZnPJaUzb1kXC5HSLbPyPB1h3qC4S1qVk4u": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1fCisQJ2eizKq55Thakqt6T3HkspMDNrLwp6S1gx5L22TtH1an": { + "balance": "2459.772758104", + "bytecode": [], + "datastore": [] + }, + "AU1fCv5mm5A1FHNocFYJVP1uEdDEckZyg6bePHutQKkg6vVJVQJ4": { + "balance": "4567.111102762", + "bytecode": [], + "datastore": [] + }, + "AU1fD9qJVbRYze9mmTVycKDV4AEiRb5ZAu2WJEghGSx7Yxya4FVP": { + "balance": "1100.489219513", + "bytecode": [], + "datastore": [] + }, + "AU1fDPJ6r7xoWJoWy11xCNgXi5HxQAA1aaGJWxtB5v7NZCuPSRuZ": { + "balance": "1528.756398464", + "bytecode": [], + "datastore": [] + }, + "AU1fDedmaCKXeXqjzyhBUHKovCoMKYampCfLybCxeksewVCuGVbL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1fDhnZoHYcA56eDEHsxzqebpB8nYPLnsg3BQjtH1bGBygwJakE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fDnTcQt3CZL5XkudxTReCJNoD4DJtZwc1wmrXdntzyZiA6vQu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fDnpVaGdDbCAx4X42iom6ZyLzZGygRRtN1BV3rEA9ojJo8goj": { + "balance": "1751.945266476", + "bytecode": [], + "datastore": [] + }, + "AU1fDvWokht1ZegqHgFvEvXW69XKX46Uc9xrtzSqeVM358aZfL9q": { + "balance": "2692.704068243", + "bytecode": [], + "datastore": [] + }, + "AU1fE2i1eHEmwf5NawDfh8aAQEkMDWyqsobH6ppDXWZKz82o4iyn": { + "balance": "19.621531148", + "bytecode": [], + "datastore": [] + }, + "AU1fEHu3AYvQpFSDStDbkvYFz1CASdauWUtFMFhEG64nC9YjAwxn": { + "balance": "3509.894261035", + "bytecode": [], + "datastore": [] + }, + "AU1fEW84MRf2NQyRudoAk4zEPWqrUxYJUVFLAUaS9okFtCnMpjcP": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1fEZ8HyBRcgfhmkFFXTwAbmoFsRPxyYoTWgeURqNSoZ1eJWv8K": { + "balance": "1710.719000223", + "bytecode": [], + "datastore": [] + }, + "AU1fEc2tpqyrZ58AjcRsnKKzkdJASekStPR8obeHiu1Yd7LnJ7Bb": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1fEchL2h3ymihtfhKxybzTzhCpd5Q59QkigwAq4HHSBfWmHAVM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1fEffrQq23M12edUaGR4PsPupDYpqTm6dpS8Fj2bE5kehiNdDm": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1fF4ciFEqDGMVvzTJfTNPHdyhYJN2Jy2VdeWKM1HZcNNTny6MQ": { + "balance": "62.706270627", + "bytecode": [], + "datastore": [] + }, + "AU1fFAnc73bDvG4ERJFdXHKNchCiWStSGqnFxZxgDyJVNxRV7yYQ": { + "balance": "772.001852996", + "bytecode": [], + "datastore": [] + }, + "AU1fFS8rNuo9HbPuVz6ZueTWYk29JuYKiuJN8eUmooY63aCEMDnk": { + "balance": "813.123051147", + "bytecode": [], + "datastore": [] + }, + "AU1fFi8DZSHAFA1F4qAzPdd5TXCBrkU7hLFik98BALkehTRNUhZp": { + "balance": "873.420380039", + "bytecode": [], + "datastore": [] + }, + "AU1fFxvgQoWpkBe4ZxX87FzGiE7vMkCxewAEKtNLjjkKYxPdFnxN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fG1tcCVkjZnZ8qzgXyUNYwW72wcjQwV6oSohaZtFru1FxYXiB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1fGpBJcqRR9FvCvCWpcb49g7hRchozBQb45Q8T2C2aUa7PmmbL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fHYnGYMqUWZm9vaK7Z5Kwf45VAuWxKUkzS53faBL2ZHfTp38P": { + "balance": "3541.510310630", + "bytecode": [], + "datastore": [] + }, + "AU1fHvJ2ASwoL5bvKZQa3qA84i5KpBkM4NpzP49iCQN4xDJ1encJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fJP9GQLfFYfq7SQ68phiBeyF5VbjUfBpxTR3xeucSf8By5RoF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fJXFbnhdSH5rShU5greTHuZJ6UbCxbf7yyd1iNUDuRti2vnaw": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1fKEHfXBReLSrWUUssbMToZkqDiF46eq9tcMoyoe1kS6QHZ7TZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fKPg8BnJmMzp5NmMvSW3A3XiivNhWm8BBDk4CXZfzstFqgcyb": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fKWcKCXX7nPx8BZZDVbk4CXiiwSeqro2EoPF5iv6ZyDUSBNSA": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1fKggM1nk2WB8pbG3q5LuZAaEj7R8WaJkjDpruKw6DD968gpMa": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1fLabrwskePw6JzWnp4HqhNH3cgZAwFDM33A3kMiv8e7MAyRed": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1fLi87DK6xqqVP4LrYcrtfZrCnUV29ysR6sg1nmRMMmKkNqNg5": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1fLnd6LxiDKTEpnQGVTpVaYLvmz1kd9FNWknAqronHCmPkGnwM": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1fLuxZyZqDmkgaXjQaUVKvmArSKg4tKPNPdtAuFY1Lujj86arz": { + "balance": "533.739488147", + "bytecode": [], + "datastore": [] + }, + "AU1fM3KbC12TsUtDHtpMbBsuTxQnKY5X4yvw3mEBS5bFAZxUto1w": { + "balance": "844.304200954", + "bytecode": [], + "datastore": [] + }, + "AU1fMRWL1roWPDhcRg1t2WvRv2LWoUxrwGvxpNvdByvMzynn2r97": { + "balance": "4042.471631231", + "bytecode": [], + "datastore": [] + }, + "AU1fMsQ7ZxMszW236jviYenQ7ttBUwp4YfLuuy2WjjvDQm65dQpF": { + "balance": "1061.123862558", + "bytecode": [], + "datastore": [] + }, + "AU1fMu61KRxeUTxbsz3TBU5qXQyaqZuVVkwNtNy6koRSjtSDue53": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1fNCvTRUyVyTWSWPRa2rdF2qRLwPSESx3svTa1jwETcZcataPa": { + "balance": "1679.674556227", + "bytecode": [], + "datastore": [] + }, + "AU1fNNpAhYrXpE1X8DLudDxFKP4WSRdLhPHFM27nDE5Uy21fnFMR": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1fNqCqafXjHoe9xjoK11FvihWfbvystK6kBb9yKAr14ZhZyTxK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fPAARsh1jzbXjPMiCsuQtgZVkYdTMNjXaTz8Q9boUcemLA45o": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fPJkHBuNvXN8UDuiAHNwDvhgxMS9RmYyXN9vfr8MgDhDgNxJv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fPW3oy5DaJStPMgkTcTyeVN4UY8YGp4sgEaKmRsQxkwmtoxFo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fR5wzAhLhBHr2Cg9wYYgg3wBt1d5EV9kKPw9BqEY6pH9jjeUz": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1fRJXjyunUp3ew5dEui2sJu2ffeiM4kRza28pyGU3VGYNL4a5W": { + "balance": "5452.659223205", + "bytecode": [], + "datastore": [] + }, + "AU1fRRwhCZTBhdTLhEYC2SrLmTFF3bGybYVDAiU7QJDLDo5EMAAN": { + "balance": "548.925280383", + "bytecode": [], + "datastore": [] + }, + "AU1fRVZaZU7Z7Yejtms3Mq2LuvqgDvVXuU6seg2nSt69wkFiuHaj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fRVxJXHSSaHZu6CZXpk3n1BmP31yKTxGLoN3oyGK2r7RHkqfq": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU1fSANqq3pHKVZsc2tKvPy6wCYPD1bTm1naSxq7hCRv2ousraBe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1fSJNbV4zQ8KvjqNTw2atVEHCu77Ywod8pzMwNVqYbLZn6CUGb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1fSMa17rsFgLuFVzsNKDCqvgHm68b8txwTXVuCNdpHsMvT8s26": { + "balance": "129.537953795", + "bytecode": [], + "datastore": [] + }, + "AU1fSaAGiP3bpUdTyzSZswhgfKektDNMKR8fzUVoLmBrPWDx3f5m": { + "balance": "3310.546718165", + "bytecode": [], + "datastore": [] + }, + "AU1fSs84LntDM6LyJ5CCdxrjxR1fDA3zgXuUMcPbrWQi2j7tvk71": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1fT3LjwDcQqSpdfgByFBrgWBhk4x9v3ZskHdmUcmAujpdD94rD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fTjngCDSaRiE268iqKYwVPPbfs6B7dAYimX1NUkoVknhsd5fK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fTxEJBF2wAvW1uLEHqHdmeactLonzaPKjHhGhbtp5AzvYTGS4": { + "balance": "1517.783154573", + "bytecode": [], + "datastore": [] + }, + "AU1fUE3WnQMku3x19dP9tVYFu2qmbbAo2NYB4bxX2wtSVJY6SHmL": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1fUeF7scTqxwVzrHm2oXAjz5yLogwKDcExByAhbLNGFkELaNfx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fUiHHhSLMTosYUZQ1qyhfw15xcSK7xSJfzyZPR3ygie1xGtdh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fUiv6xyiXcVAomJFfKzvpmdQbbv7RzTUvhGDBV4AXhyGYtakJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fUskXYVgRXpBdFeNBmJrHVgVqE6Z8sipSRcLmkhAgfjGJiEAi": { + "balance": "1164.666004417", + "bytecode": [], + "datastore": [] + }, + "AU1fVGjBbMjqYMsHiE2eAnSezS3hsFXGMwBVRFrQ7665Q3suFgD5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fVMjuV6X8nZmHqmhAEfpXFZWAiPRNG6nmmP9bek9uMFCpt8Pe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fVkPFsox19no5aYBXNzBzYrr7omptK28oFJA3aUjakzK1NRmA": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1fVnKVEvRfbn2BJgdBe39p331TKzLRoUPAxdioUMRDykFmKv4i": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1fWGg39wbTwikSAdSV54BpFTTuDiS9sHcTRyuS9AFpn1ji7XAA": { + "balance": "215.651015537", + "bytecode": [], + "datastore": [] + }, + "AU1fWGoRsEqkPKAFRqYvVHFJAJbEAGnsdoejyAHwRQkyW2qk6faj": { + "balance": "123.915927957", + "bytecode": [], + "datastore": [] + }, + "AU1fWQtagNuDwcD9eQx6rk1Kj4xxDm47VT9dm2dqgde2BuFdVhgc": { + "balance": "569.906654001", + "bytecode": [], + "datastore": [] + }, + "AU1fWSNybebaX5ZBCCyersXHUoH9bTcjmwjBDZRK2Z2dRwicqeA6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fX65Gc9CZ2enjAobyQXhsxo9eNwZTwTRLxhZRihvnHaYBYJc3": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1fXQTCFtefbvoC8wMR4NjKiZm97fCBEAKv1Bvyy6jqK9VpF72m": { + "balance": "1140.976559824", + "bytecode": [], + "datastore": [] + }, + "AU1fYSBVwUq3dLGyPFPXj41b9R38fGfkhB93T61Epot8MUFDQ7jT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1fYxPvW1aLvXv8Z5h98JzNqu2Xm7LCiF918sQmexvgGc3zRNVC": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1fZjqWesFDVKbEEYRqitVweT1zjuGCWpBkbNbWkDfvteJzp8Fa": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1farSo61PMJ5gY7t7kJKte7KC1UvYsyLzswtoiJyUMwcxUm1yA": { + "balance": "155.940594059", + "bytecode": [], + "datastore": [] + }, + "AU1fazo6FgWAtVHyHiS5o8wtMa4SSBVFVZztbZanZoADMpaVBTms": { + "balance": "1804.425477055", + "bytecode": [], + "datastore": [] + }, + "AU1fb9HytQEgZnxx8EuXPqbYgHRiWaKkEDA1beREpCnSumGoHpiZ": { + "balance": "2226.565379687", + "bytecode": [], + "datastore": [] + }, + "AU1fbr6jNZHf4K6cnmVJowzRWmxgrFmFn8t9iW7ppHvTiy8mCZAs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fcDqu3c6oFSrKoKwHRukd8PGyu9H6uqADALuggVK3KCuqVoNo": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1fcHjvxkttMnRCmn9MH6MfSQ81vGB8qLuQv8gNH6eFmPZTieYW": { + "balance": "2016.398512528", + "bytecode": [], + "datastore": [] + }, + "AU1fcuXzAx82Vv5Fkn8CtUagAx7wcgDtoawVKByonqWtJ1gbhoTm": { + "balance": "1331.560008422", + "bytecode": [], + "datastore": [] + }, + "AU1fcy8ZFEvsGeaCH7SHiCcstr6KdRiqobHqG9zcEfSkL15GcMGT": { + "balance": "17.868154246", + "bytecode": [], + "datastore": [] + }, + "AU1fd746HkAEi1maWWMGnDe4yCMSHgmmCjZ8wbU42EnMpHYYM3TB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fdAviQ3vwf2SSVG48VmbfPLpP5dByf28FmpeCp5KmvbLaP2dD": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1fdKYFjAc5ikDFEkUkiCjvtkJe1BxUT5KawweQAYLdAQXbPYUA": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fdQNt1BBoBzCRqc5HDQZQiaLpNsNqNPeywx9Xagcth76CAwXn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1fdbTrdiE4LjFedQhvPTyxmGPanXZUqvmeYDePEE3TME8dzpDG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fdroDJYVdiUehDMjM3JzymCdiAGsLL97zjrd86wKs1YiKKeD3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fdsUM3PyGNrRZvvKQUhAEwpYtcYHdBbSbLiWnGzMsyoA7gKmu": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1fdtbcVv9TpiBgjwNaKXuoCgXqEXN2hGPTmUF7xAkgLDJLAYg2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1feD5jpMHKUVaizqeh9jwnaoC5xN1Q7Rdh4NWGFdtQBrcJosQP": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1fePnWULA4vDTbzJ2HuNtJpquMs72TZxTkEobMJoS86DZpeKME": { + "balance": "68.114113671", + "bytecode": [], + "datastore": [] + }, + "AU1fedPEjrUoDd747bDtJocZXfFbttmf2XQ7ze4mvJiauVfmNgk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fekEUzKQQXDzmsxB3bex2rZLnZwvn57gAZE51dBt4A95Jp5fh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1fezGWJqycdwPWSnHy8c9AAWEBfUjq7rz94bJJtpKznH7ozrb1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ffDkoPzqwNiE5L7vYnfkDT3aynQ1G4RmgmMSdADxNgLxj5VPh": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1ffKCpynxg8xxviPXZRNA24Kxpyhq5WHvpasgssRpv5f1XXjwp": { + "balance": "2910.083839596", + "bytecode": [], + "datastore": [] + }, + "AU1ffTY8JymXST3vKijBGH5ysiF75cahxR3BHGd31VZHoaM2dB2B": { + "balance": "2511.897930784", + "bytecode": [], + "datastore": [] + }, + "AU1ffWQchv6xVQ2jqkFhuF5skwzSTJHyWuDpPgBfhVQzwrMJ4EbT": { + "balance": "56.435997111", + "bytecode": [], + "datastore": [] + }, + "AU1fhJHfUTjTdksUvTc76uMBCgAJ3Gu8onUTcxy6VoLF3XhtKKaJ": { + "balance": "5153.019884842", + "bytecode": [], + "datastore": [] + }, + "AU1fhMGHhNbZyyVrJDvP8kAyJEok7EauXEfZAxzr4VEPK7bWRbCi": { + "balance": "640.252514707", + "bytecode": [], + "datastore": [] + }, + "AU1fiASQ2iQEBMDCYYS8vsJHTNY2HdGF5h6fK9FQSdo7QX4E4y6w": { + "balance": "2550.275065766", + "bytecode": [], + "datastore": [] + }, + "AU1fiC47mcLm2mYEe3xP2yWGtbd2Q8jPf9T66P1MWpbd1TPU1rqe": { + "balance": "2655.466400244", + "bytecode": [], + "datastore": [] + }, + "AU1fiCvZD8yG1LXkARXNV6oAVtpwmX8GULovWkghBFUCuRK2rLsR": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1fiEHf2F3YdM1qdgLK8ELP7GcEryUsmkYpDVgcHVr1MmgWTHL4": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1fiLFVUH4DAVxFGTA5AechNAgLpFAioHmBTicETditXch7GZ6y": { + "balance": "1233.400739574", + "bytecode": [], + "datastore": [] + }, + "AU1fjCpob1vmN4YDtnGSsfgsMVaUzLFN9rr9pvmJBTxgBPdnPVf9": { + "balance": "1549.242526507", + "bytecode": [], + "datastore": [] + }, + "AU1fjLYtRrgTjR7jBzPsp4FgMYDgiMmuiWAsUspcEiUv8z8V1CFp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fjajLUsS8xFNCLivJm2KKNFVHMcYoVM5LSqHiTrnfdkdgNtA4": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1fje9YbxDio8kuhmLYHrc178saJMhwub8B3AjYvk3F8XtiUhE4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fjtvwmfvke5qZBy3hBb2qtYGKWeCW9bxxVKJ3RLRznMpmZPHz": { + "balance": "1903.454690940", + "bytecode": [], + "datastore": [] + }, + "AU1fkCH4rAGRwtm1BiURuhDjfWMJ4Jw3cvmvTjiLnkaNYbcpxGKQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fm2XPaasvAq9DebQKj5SXMNsAaLf2dG8ciAnjEjHiCvGFmQR2": { + "balance": "44.393670396", + "bytecode": [], + "datastore": [] + }, + "AU1fmLBs3gq4YQprymZpPzPmB1FkjHGq4amEE23mRHmvMjGyc9FR": { + "balance": "2043.798593572", + "bytecode": [], + "datastore": [] + }, + "AU1fmTe69AzKkH7b1ERsy5rf9YyufguLmY4MSdu2vT5SrujAGws8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fmgMPim2RY7gyuuCoX347VQzVSg31fhPamz9L6zDDxxD7gNBx": { + "balance": "5630.881960406", + "bytecode": [], + "datastore": [] + }, + "AU1fn1YiLwC4RGKRoX6MGbfrkCsH2Ja8vNTwKSJmEaq1TQuxoP7G": { + "balance": "941.593157494", + "bytecode": [], + "datastore": [] + }, + "AU1fn1f2bXr2MDAoNUfK6LogBqtcA9DSBuF26n9FP2LRArhq1nbL": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fnDsD4mDE2PEiPk23Rw4oyrwqyVPKsHbuRu5vDAVhAL49wPZp": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1fnN98jjmoYCYFbRF1FUiDBsEEs9XiNzEfv7MZ2H5CNjG8QDwH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fnY9934azS6eiiu5RdGWi3nLmSmZoZAS6eNEcXnLc2bwVD4ux": { + "balance": "1851.948443205", + "bytecode": [], + "datastore": [] + }, + "AU1fnh5qSoKTuiV5DnkK3Rht6ChkgaR6wbub3d1qZhfkvH8ia4f7": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1foLDJPtjLWqFrbXUe6jguucDAVyZfxvvVHq34ShBjTpaqeTaC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1foLUXe7Vjmxfj1VVuJMJ4ScGFWMN6YA79yLZ5B7sU4dNQRq6o": { + "balance": "1416.379534165", + "bytecode": [], + "datastore": [] + }, + "AU1foeaFrmRJTbUhTmrnuQdyTgNbhw748zim8ed1T3MXjfYZZNYz": { + "balance": "122.710751103", + "bytecode": [], + "datastore": [] + }, + "AU1foke7ie5kCPCirzBSaAR2gP41eT58yMKMcJcueVVNxdaSxZ3M": { + "balance": "91.708936381", + "bytecode": [], + "datastore": [] + }, + "AU1fp42ERbDpTpRkNEraW6QithNFE9bBwdzTF2xBNc1PsbYAGFYc": { + "balance": "1980.582100378", + "bytecode": [], + "datastore": [] + }, + "AU1fp4jwzDbSbQA15zgu1s9fuFrtaVPCzjP9HfRxMnnC32gUd9M6": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1fpNo9zbDcLJwSw9n4qgfyrX1UWhX8m4sPquUExzfjpHMdBjGX": { + "balance": "2315.582468298", + "bytecode": [], + "datastore": [] + }, + "AU1fpfMvUEDEnLT8zJRyLvyYMzfUfCBbNGkkRHHD9MiAtoE2vasf": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1fpjUwQ9KNfPmoXkf1P5h87XDL1RFKCasyUZ61NurKQ4gFpYC3": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1fqHp1pegJZaJYhnqqR8sc9X2vo6bVSmgbyzrKSugGbBNnjaFP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fqib68438evn4ZyZpgBBtEckHEPdFi3Xs9MfubsvQBWp6F3NV": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fqpq5CHTScA1WwqC7ZEQR9JCK95DCFytNfdpdBpE9imwNk6hR": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1frFJP5S4sd8eU6iQ2ecaTTVHhJhQeTVpi9UoQtHYXgwF2dfGg": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1frGWShYYU8hPHBLpYRQQfwwXBusDP8EWvoVbUuYaALQBfDtyM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1frVGrNAztTXqPEvBtL1o7yHPiu8Zb5xbXyJE75b6AQJtLtxWq": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1frXghVLg4w5DbnK3zctXNfgxG8sWieGmapdQeb3hydrvJQa8i": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1frcpDcTkCqHx7bwXA8hxLWS9yXsXs6iAY5WMC4cmR9meD938g": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1frfFnErsnsYAGFdNXUP8ZsomSA3Fp8HKateb72riJgZcUCqgk": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1fsYtTs6imbxodu8Rz61s9w75KoqCuuqyc6KXDhizGueAX8cGd": { + "balance": "22.794398430", + "bytecode": [], + "datastore": [] + }, + "AU1fsu3osqx52yLN3tueeuC5W9uYBfhRAn4PC2YGpcsARbzmAcjp": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1fswVzXahGtbdWV7iR7af3RhsbUgELTdn2Rk3URrgxAQNjnfSD": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1ft4kAg9cSTwhGN6FsX3Zfq93NhbW7gooVZTAqptvbUd36hwHK": { + "balance": "3481.034348685", + "bytecode": [], + "datastore": [] + }, + "AU1ftYMBdRjwFGwEX9AaVNqusSnGbvBXMi74MwjJGMYYE7QWF2P4": { + "balance": "1017.200098180", + "bytecode": [], + "datastore": [] + }, + "AU1ftZBoKH6MWWR3WBpBDnQuMPZDGYKZti4ru99qBDHY5NSTxJ1V": { + "balance": "1899.327446427", + "bytecode": [], + "datastore": [] + }, + "AU1ftazDLCbXjCXscMQsq7sS1apxKJEi5LpebMHvsNoQXqLfn58r": { + "balance": "4117.199437420", + "bytecode": [], + "datastore": [] + }, + "AU1ftm28N5LeZymzhhf6vsqaDDoPMvQXct1sh4WzJkFeip759f8Y": { + "balance": "727.784759156", + "bytecode": [], + "datastore": [] + }, + "AU1ftqWvpfwa2GBQxFeViX4Lmx2uiXcMku2DkYA7c1TCJcDwgWMz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ftsDTzcUQiJRz1nFqvgZnyVzXRgYJcq3N2QsjSdaJARi97XZ2": { + "balance": "1589.151807368", + "bytecode": [], + "datastore": [] + }, + "AU1ftwbcnZftEDrbkANLT4vHUM6RgKB2umSh5gEUFsmVtVhNJhNV": { + "balance": "4583.610789823", + "bytecode": [], + "datastore": [] + }, + "AU1fuAEiYTtJQ3pyvomyy84Mir7u3LoTHh8w6xDpyiaT42XjcH6t": { + "balance": "574.323719895", + "bytecode": [], + "datastore": [] + }, + "AU1fuQStnCUHzPYf19bfbAjuFAg6aULGcZuXQH4nzAuJufc811EB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1fuTEHnh8gVaj5VAUVf4nx64kkhHaYM5onkPgRrAFH7rHStEa5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1fv4CtbYhxzQim7qw4vrmBsZQ8Sf2NBj4CdDLQELtQA6BXL2Ry": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1fvPkpHEsyWirG5RofgUvajsdPMrf281GbA11QruvLrzojBDoS": { + "balance": "4910.708674031", + "bytecode": [], + "datastore": [] + }, + "AU1fva2j1C168SqiYuZpfVKJPA3wghG2dywGYUZeEUjVQvLKXHeh": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1fvn8v9N1enr51HPE7Agn1v9ZhmcHNC7o5CzFUuH2DwHn7rR65": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fvpe6i7SGsxGqkHADquV1hyP8xtGF4L1u62o2BPqLHbLVtMnW": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1fw524Mc18BnLGUAuBjcASzpmp2wnggMmJxdLXUCSf6SHV7rS5": { + "balance": "2328.966292895", + "bytecode": [], + "datastore": [] + }, + "AU1fw5jjijCf6MjgesqZWVsJxskABeEgEGVmue8yePuzTKg7bscS": { + "balance": "1730.221589750", + "bytecode": [], + "datastore": [] + }, + "AU1fwL5eenLcjjG1SFKvqvFKA5SKu4LbdB4reyujtPM5VYWiyZZq": { + "balance": "936.417811517", + "bytecode": [], + "datastore": [] + }, + "AU1fwutiwWa2rgmBa7xScogBwnst8ukxw1RyW6m2KAXDrA91mkGJ": { + "balance": "1486.895994393", + "bytecode": [], + "datastore": [] + }, + "AU1fx1mZDrygqdgdd3vnjfkM1PUXCDvgYawGp9MN4X5EaVgQ6D7j": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fx7cbMvyNY83wgfTQHt4N279Np2w3Kz5uFaD5zbiQwYdXXpoo": { + "balance": "1707.793917382", + "bytecode": [], + "datastore": [] + }, + "AU1fxKNmvfAHEXZAuCR1JJFEx9jmvsrEURsjKKzDrTYDexYNaLxY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fxSiR4VtxTPF6igpJtt1hRb5mswtJkASJY78cicUxZZDEKz9E": { + "balance": "1750.544039527", + "bytecode": [], + "datastore": [] + }, + "AU1fynHB4HWxRDqrDX5CoXKzX55ie53SLpyCkcrH3Uk2XmpKe7B5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1fypHNSM3xRE7zEYgQknEFDPwgyA6uyrUDsSiV2HtDvGzTquwG": { + "balance": "772.874596701", + "bytecode": [], + "datastore": [] + }, + "AU1fz5tNX3MNykg1uki73hqvrhbtZWkPoaLCrVDYsVoMPqw9E5Vr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1fz61LTayfteLi2i2rD7YkLLQ2ND6hnMAc3rworJaEpjDF1i59": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1fzN9isoqy3fDr7n21vDGN87Y64fy9M89zgVm2rgC12MdmVkMt": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1fzYJxTBAqyy55rZMzAaGJ5dhUxfCFEFbacJf3ueYWdXh4qxKn": { + "balance": "571.122562506", + "bytecode": [], + "datastore": [] + }, + "AU1fzfMLnJ65vk7hc6LLgZz7BZkuj9pnfcmecEwZfxKQJF7cZ4Y3": { + "balance": "906.626095883", + "bytecode": [], + "datastore": [] + }, + "AU1g1cPSFQe7NrCKHyqMXZDFqWivSMrbqgWMwhcxgokkMYuVJ9dD": { + "balance": "846.195610096", + "bytecode": [], + "datastore": [] + }, + "AU1g1n7TaHM22PkS8WP1qV8NG3xXkUHBkvR1brepr9PMioCgww4y": { + "balance": "3577.969929086", + "bytecode": [], + "datastore": [] + }, + "AU1g1wTzEwQ99dEWPJ3Uwj58oZqHX4U7G8gXJ9c9L62xXoNwjptv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1g2YQpgf9BrFvC46dj3YumqPZY4c1XgNsoJs5LZHFi92bTXEVN": { + "balance": "2308.948691812", + "bytecode": [], + "datastore": [] + }, + "AU1g2bdYoJNou4FHZCbE2XA6SuFtvMKHCxLJ4a6o9V1UFC5991Xn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1g2dKsisFUc78GksRjLZn2zSQeZtGYtN1GA5NvJSDk7CQGFyhA": { + "balance": "92.664997685", + "bytecode": [], + "datastore": [] + }, + "AU1g2kiG9Ar4LNDzX5oVXNenoijt5EhWWetgpoU8e9fYNbZj93yv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1g2qvvAtfqVJsVbPdCfQ4hP7Pxy6GWsPiLxQJvdnFVVLYs6QS8": { + "balance": "3605.438469195", + "bytecode": [], + "datastore": [] + }, + "AU1g2y9oypnNApZEG7c4aaQsX6Wymbd71usCyPMrmvEQXCKYFM4R": { + "balance": "4630.097435000", + "bytecode": [], + "datastore": [] + }, + "AU1g3CvE7ah5WDShQRYdwVNqD5QZrmA2LY8ttbraahBZmg7PiYUZ": { + "balance": "13.150254276", + "bytecode": [], + "datastore": [] + }, + "AU1g3PLV5r8vRoaHYHMBouzyDchgZniYc9jtMYQVav9UoU4EdwaA": { + "balance": "689.973908077", + "bytecode": [], + "datastore": [] + }, + "AU1g3imZ58hukAoauio9kuHjcFcT9taiwNLjodsJxjNZPKpFo8qh": { + "balance": "52.919765276", + "bytecode": [], + "datastore": [] + }, + "AU1g4fvUbNBycGhmiNBy41DUUx8rDSiyyRenehAPPe8cfcU2F1kA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1g4k5Cy5DQg1aFpPHSTrw1TXN2QSd3jNBtQPAYhGRCwHHmoQ4C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1g5Jnh9FMBGumN8jkzjUN8pwtDgAdaio8c9jU5AqFSSeXLoXcw": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1g5MPvyQ5uhwLLPgk5u5QqJ3fPfYbZdJUQjqKvbiq5tbKVgvYD": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1g5MvS1SfFmMSDrx3zf43R8DzTg8Vn2VozTZVRTQ8fYSvmJeBZ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1g5w8pfBJBTATWccz35viLe6de3sXM61yhsqssihuArdGUQq6w": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1g6Mj1mrAq9C2KKxD2aFomwv38jxvWU4KbXri4rW412ewPsGWD": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1g76YTQVjaDjy5uUwJQRMHYpF8NARXm9nZ6bHcZheNy9wLHVLu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1g7SmaXJcBBZV5fmj4h66sqfYcNCudyU9YUMzmv6s4AFFEUQii": { + "balance": "1512.023969977", + "bytecode": [], + "datastore": [] + }, + "AU1g7YRdAPANc1N4h6MmCktc3SP9Hhh3avq5E2AmNbeC6nBNJzh2": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1g7Zvor3xTYiEkxiVERdFygCrvcGb7sm9ukm3YhuCEH2DfQ5WJ": { + "balance": "2310.278337825", + "bytecode": [], + "datastore": [] + }, + "AU1g8CEqpmMXMEPCVng9VcfHQSCZRBTEGD8fRRaJvsLQ5BpE5NoV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1g8EwnLCFaJpEVKhA5XrUCPSCSVkP9W6NS3D81KSboXbMqqDh8": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1g8FfSAPLW33C1CdSA7jqD7csD5o8SxGbKaPSTkXFhcqH1Turf": { + "balance": "2196.408334642", + "bytecode": [], + "datastore": [] + }, + "AU1g8XQmsyHQoKYtQcW5qGKsfDYpm8w2UYgKQSWrtZwMTmeckWr1": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1g9ru8QMQPUNGThEdSoCh23cCJbjVnRuAg2J1VZtaeFp6xZGnw": { + "balance": "3705.696645959", + "bytecode": [], + "datastore": [] + }, + "AU1gAGeKqZTfdP8JEvaJT9Y92arQdatjPAt6w4k8Zr3iL8FLWwoy": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1gAH8PfJUZbjFsduXKv3HCM8Q1ZQsNu36pAKLynHnEmocQYoZM": { + "balance": "43.297057667", + "bytecode": [], + "datastore": [] + }, + "AU1gAcYfWbhMSFiQLAJNjQhaYLXj5W9CpwVZAnU261yWAERBucLi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1gAerzkyx4ZwspWZ2cDpxZZXN1ojX73E8ENGbW1quWmXVYNJnR": { + "balance": "3314.712795940", + "bytecode": [], + "datastore": [] + }, + "AU1gBDh3rU7N17LhFtacBNedtehMLxsqYtoWNRJ9rr8LXa8PvhZ7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1gBPd12TihRQ4WjiEGn7mstgbyG4Cyz6DdyTFohrKg3m4fuJ28": { + "balance": "120000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gBaL33oQ4tpgMLTJ2C2iQZPbnkXNyoUqYrb7Ducyr8UtfCyBr": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1gBoYe2rr4CB1ugaqg77g6RbpfKggDKXSDzcnVwUPjfX5VTSmY": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1gC2SsiabRWZdNhpyQw9pFFRsbK5Sr67oxthfe2UYinyQi7S65": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gC3uzoP6EcdZgbUNWMmm4mGtYaLcHYs4rgjRvZz5RZXmkR6YC": { + "balance": "565.717965646", + "bytecode": [], + "datastore": [] + }, + "AU1gCNgKatAL6UiNBnooGBem8dSqoWRx2AgNyQzju57H8vtn6xA1": { + "balance": "143.564356436", + "bytecode": [], + "datastore": [] + }, + "AU1gCdncc4AKYksmPP6a5DLCG7aa3BKUcE3TJoRQyNFJA8vgoLaa": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1gCwoCJVvcBamEMeYz2z3xd5aWXnfghZuVB7TscQksFrCCKvbz": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1gD7f4N9JuJ4Y14Zm99DCFrAY8kJ8qt4TaJc6icpTqEJFEH8yg": { + "balance": "3555.311686059", + "bytecode": [], + "datastore": [] + }, + "AU1gDKgi2tbHBU5a3MV8dpCHmasL8Bir5eYk8f4tShu6qS7WZCao": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1gDb52wyjD2z4xUk8FTuoeWZH8xUaBoPHMaezsZ2xxUjhX7grb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1gDcLBejG85y4qT9tBoV8oDB6otH6nGtr1nRTTHkLpA6VcMHf5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gE3ixjKg7Hc6jykYZ4i2A4Hg9rFipSyHweo2rkDdBy2xu6Fht": { + "balance": "1107.734473457", + "bytecode": [], + "datastore": [] + }, + "AU1gEUMCTJsTJj6m9HiuYQHqLq8FKhvddVt7UhZRuKeNLgjcKcLr": { + "balance": "1444.815159567", + "bytecode": [], + "datastore": [] + }, + "AU1gEjM4khugK1cyCE51fWJbGWB4emYjnYF7c2AyaMWGKCEXvnWn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1gExxz27jeXtrExJeg9EGAzRvQz4LHuDSirYAH5AtuW5XZPZVx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gEyk7vQ8S1daMCPnbGzYcW7dgR2miGEytDtzBzoRR6iYyCy4": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1gF2jPi7secnyQTFUGrhkFoHYyaK9vUrH4mJq9MxFs1VYvQdB8": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1gFNHqT38fCCLWrtDiv77eSB8pANbsYtgGeKMVW6HPEGNwUza4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gFs9MUKx6V7QWa13nbfcqzq3WnySVwS4taLvUYWgT1GkLenyq": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1gG2pm6c5xuEMHyS6DuxShY5qNfgLvAE8BLNHMUmJfAFfDWmWj": { + "balance": "5374.824864887", + "bytecode": [], + "datastore": [] + }, + "AU1gGBWvihxVRoeynF1ZudRfXTpzTVHmjpk12QHGbGQsToQo9n6K": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gGYb53BQMaLEEMGa4X62EcenUXm4JupdxZCdyvGQGpXdvEKua": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1gGjYsaGsF6SmRXhws1LS1Y2UcUfzjotKg7wvWqrr9N8WKiXwL": { + "balance": "272.355792865", + "bytecode": [], + "datastore": [] + }, + "AU1gGxcDUUQ253tYmgMQJcuzSMs8PjtTESU7nuz8HZFJrvS7Epzr": { + "balance": "1839.851850461", + "bytecode": [], + "datastore": [] + }, + "AU1gH7xHgtyaTgyjMf5Nr7iw5ALXrZmwy2KyQ2Hv5dDK4Cjp4YEz": { + "balance": "1398.655154273", + "bytecode": [], + "datastore": [] + }, + "AU1gHDyBKCb7XeBKbiMfzEuZYCE8q2xCdLjREFuV326LPzncz6G8": { + "balance": "3406.043621312", + "bytecode": [], + "datastore": [] + }, + "AU1gHSJfH4nU5TPGwrqBBVEojrCrEGqKvK4cYGSK7tNbwnWH92t9": { + "balance": "1520.963639258", + "bytecode": [], + "datastore": [] + }, + "AU1gHh1X9RVNKC92KK5hp3sVdti6U86MCQSuBDXJ3p7RLCVyFstF": { + "balance": "5329.550141250", + "bytecode": [], + "datastore": [] + }, + "AU1gHk9XiJpVadbWGncpBgSUVc9gtQ2zDEfot9fhn41YA2eRkzRH": { + "balance": "1333.712806122", + "bytecode": [], + "datastore": [] + }, + "AU1gHtztT78tUu7Fx3THzFRDnQRh8YUKyofVYG6rRGmfRt1BQeZb": { + "balance": "687.093594102", + "bytecode": [], + "datastore": [] + }, + "AU1gHzB8DvHE6VohbQHr1wkNC1Q5NEGhi1b7XFULFievf3aFkq4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gJbGKcJ5z4YySuBBZyjczGtwdtVLs26MqgL4nDfQUShPjtmVp": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1gJeVb4oGuUNSuFo2pPk3CCidnhEY3oomQevuFNijjfLDs9cY7": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1gJeuyULjFtFE2BXbkmsAYY6FCvhG4chrAsSssLePAFzzYXQV3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1gJr3fobWpT4Hxw4PGC81uTfHaB6C3ezTimtwWaGFKTqoMNTKE": { + "balance": "2420.453712734", + "bytecode": [], + "datastore": [] + }, + "AU1gK4R7hFc6mo3GkNtVP2BueTji86PBZhkckmsyX5EK6KLhPcFR": { + "balance": "3592.595300458", + "bytecode": [], + "datastore": [] + }, + "AU1gK9f44pEGcm2XNhfSeh66MhUbkWJMDheTkLX9uDrQfqHGnAmy": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1gKQfgvsqhVocktUvjFpsNhnmTUpPMsgbHkAVjyxkmiBo73NbD": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1gKcef9x4fWRP8jWYsmEENsGsjYcQHZVj5nqFDQFYU8D8nj2Qt": { + "balance": "2785.822390712", + "bytecode": [], + "datastore": [] + }, + "AU1gKh6KBACpVXpBAu1ark1u5RwX2nYDQbyHPwsGNFtVFuxi51AX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gKuTjWXpiBstW3ZcAMrw4a1JNnAU3Z3oYnJ83NygRnn9rv9Ln": { + "balance": "199.669966997", + "bytecode": [], + "datastore": [] + }, + "AU1gKyQggB6xj23KgTF2oZdTG3nomoSqBFGp54uSvHbNct7sBxUx": { + "balance": "17.789466337", + "bytecode": [], + "datastore": [] + }, + "AU1gL5yaGwiGh4jQviwoK9huEJvwqYT2ifZ3X8cU7xXtGUUypfdA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gL95p9k8iVts8uHyRndB3AiGyY5TpLYh7BgFAPE7y7nZyjUfq": { + "balance": "618.253640226", + "bytecode": [], + "datastore": [] + }, + "AU1gLMZQAgrfxC1qTLbmfUnuuPpvE7Xkp6jD2azRLwb7djQ9qe7w": { + "balance": "1612.545322900", + "bytecode": [], + "datastore": [] + }, + "AU1gLWSEcTjmAnUHRDxwgCsh43sZdbSZr53x15L2dso1mnHqqnNT": { + "balance": "2893.654292379", + "bytecode": [], + "datastore": [] + }, + "AU1gLX4LWoqS3KwJwKiVn2e6tGNHXtQCUMDXtfaf4cjWjYFbnpNk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gLprnMp75fdwfqwE34sUxvHBRAC4AmT3n9zBaPwmDCLNmpejo": { + "balance": "764.292152062", + "bytecode": [], + "datastore": [] + }, + "AU1gLq5gQKPaFAByMKVnee97jFNpKMyRdsHLhw9j1XngAiBmA2Ji": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gM2bgVQc95pH8vwrpqUqVfr7imXrSGmqJTUNkpDEJGs4ZuJbA": { + "balance": "2130.384938386", + "bytecode": [], + "datastore": [] + }, + "AU1gMmaXTzQCZCgNSxWK8BZopSxbF4omtsSMeH53a1yf4VQ24NGF": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1gN2neURE22gPRzaZd3aLjSBXoarJm5KHiYxXbVHEW1uqJ7Sx2": { + "balance": "6902.467312662", + "bytecode": [], + "datastore": [] + }, + "AU1gN3NgMFCkgUuMP4nnjQkgFDFxN9ETj8ZQ8YFhVPtYaD2zrasP": { + "balance": "2848.588665206", + "bytecode": [], + "datastore": [] + }, + "AU1gNWa1XgWdd1RaKboGKa1Zh287yMVYTXeFZRDpRdMASF591VWA": { + "balance": "9.102976746", + "bytecode": [], + "datastore": [] + }, + "AU1gNapYLX8Bq8CkLZL9BwYBHXwvdYhWi7jHdCi4spmz3afFspME": { + "balance": "5074.468117124", + "bytecode": [], + "datastore": [] + }, + "AU1gNv68yaFRexMycA7b8Eijo5XQhaRrou6nKLQV4JQ82aaYRybH": { + "balance": "793.363322511", + "bytecode": [], + "datastore": [] + }, + "AU1gPBLQx1NyKXdiPJnmYkRapZYk7DiCaWM3dYYjpdusAW6kKsiK": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1gQ4CWkpQcfFtv5uEXfJ7tNNofr8ec63gb1DHSRUmeCkC36NV2": { + "balance": "2155.990409807", + "bytecode": [], + "datastore": [] + }, + "AU1gQJzu8dpRRGg5jvhMEeTx1VjfFn7dmLcVL4CHvGr6uas5NbFB": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1gQMGMEpN2bLSH5rwaa1Yj1QWyQ8Xin3sTVhNgwYmuQNKvyGgS": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gRLDcYkT9gg9vWAtexoENiQR2Uk3TWzQ1LW98gmdwEDsXew2L": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1gRWsBaphLitGYgi5p8e8R4keyyPJY8zAS3PSwRx2BxEKT5TDk": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gS4WqjLmgLUnECUbyXqGoEdrKLDZBRpdbAxB58CshZAbDmoYw": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1gSDEJCdqpfvPkRKAGEa65TSLEJFRKKHkPPzJkaLUbCiwBpErR": { + "balance": "1127.597517569", + "bytecode": [], + "datastore": [] + }, + "AU1gSVkJMgsZqEJ5zPexZ8B2NuZmn9wYgLH5AY2txT5kqgdWuxjm": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1gSvuvogD5fvCMMs14K3jvTHLK1oKR3rZQm7HbEazHen67NcDi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1gTS5ftgt1yPfR97boPGsGueBPi4skaTMhsyFLAjVQyjgJPFPK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gTaSzwpAwWB2vxKbs662qA3GXwka5jotLLLvEwedfsPnedbs5": { + "balance": "2602.642514734", + "bytecode": [], + "datastore": [] + }, + "AU1gTc6CWgwgf5tKwxHL9FLLvjvaPXN4iAmKiJRq69oNYg5eMQus": { + "balance": "5357.538947795", + "bytecode": [], + "datastore": [] + }, + "AU1gToSitd3b3782EkNMrEyQtmrv4iwt9XTyqjfgvx9fB6dcVZMf": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1gUY6JgdLga9ALNtLYCLLy1T2v479u8bACqCbxpuaYYYfxKAg3": { + "balance": "1012.691752081", + "bytecode": [], + "datastore": [] + }, + "AU1gUaWeoU98Ga14LuPbeTWHXDtvp72GFekGRc523N6GibnZUzx6": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1gUzYAZsU545DGcFknvvPegtVrqspX7G5qyTRHBYrwk8fvxpYF": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1gV7oPbQuGvYQ8rmYPJkR59LZKrmc6hjVPDms8Twr3ujT5yRmo": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gVXbfeyXcdVCmfAiaMgn71XiQLvhNkE72zC8Smc1q85WX2gi5": { + "balance": "2441.336963163", + "bytecode": [], + "datastore": [] + }, + "AU1gVuSVzYLaBjv7m5V1X6oTrKHJtwT9WxeVkdbnRD39ygqSEjwK": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gVz4EuFBJgvRtfgcC9msZvuyfi3fTTaqadbAY51A55E9uGbwx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gW2oqz9vqmm1gPwKzoDTSuqnAx6JbrENt7MGcWMT1GQoyQdWu": { + "balance": "849.838176861", + "bytecode": [], + "datastore": [] + }, + "AU1gWtMXz5P4GfeV8RzkWyrThkDx8mgE8iwFrDL2Qs8JiaGYpi83": { + "balance": "2353.388062908", + "bytecode": [], + "datastore": [] + }, + "AU1gXS3BgztcMSJ5H3KRkUUoBHsQnxMCM3MDSSqxQUJjL84GMUGD": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1gXSneKeV5tmjADZ2FtEHqNxcp7zjS42GfksUx6Q7YBGvBsrMk": { + "balance": "1913.690530035", + "bytecode": [], + "datastore": [] + }, + "AU1gXd1KPGx5i8adUdZxtbiCwEntgvcVZ4HSB8rtkVMXgFNEc7uB": { + "balance": "4830.213432196", + "bytecode": [], + "datastore": [] + }, + "AU1gXfGN2Gb1KvM16B268HtbXrZiT9kpCGgSxH2m4w3hQw5CwZu7": { + "balance": "2009.808292480", + "bytecode": [], + "datastore": [] + }, + "AU1gXuy6ohs98XGtUpQSWR5XfkwQTKzoVvo5pVBCT5wpA3hyKMfT": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1gYZHih9QpduNaWewj8yKsJRRWzUpUczFtSGtxnS73qKDF96eG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gYfXLt98H7ZV2A82RdxAXNGHxXmYbz1314npi2GUQ3EEWCHtb": { + "balance": "4366.882021565", + "bytecode": [], + "datastore": [] + }, + "AU1gYviUvbpXFK5k9iAyZP4x8TbM91DZ9V2mKv5CHd8Tc2bYv85R": { + "balance": "1109.062089938", + "bytecode": [], + "datastore": [] + }, + "AU1gZ7fiMm4QEgnWYs3f2xkRokWEWSn35sA4Kn3H9xJnE1e8KYsZ": { + "balance": "4411.719095933", + "bytecode": [], + "datastore": [] + }, + "AU1gZB47hicQXCt3DTwm1aWS3PwkWqe5ovA59ovYuGi45eKM7N3p": { + "balance": "715.440422507", + "bytecode": [], + "datastore": [] + }, + "AU1gZJkULaDGMkjyNHYeQC5hHrdvXzcNg259AfwuLpxMpRVP4XY7": { + "balance": "1410.195165480", + "bytecode": [], + "datastore": [] + }, + "AU1gZMRknLHP9WYr4DWmx7yxhHPADfdGXBio1HFVrBiYYML97Byv": { + "balance": "94.884488449", + "bytecode": [], + "datastore": [] + }, + "AU1gZMU49N6jtoQpetRFRUtkAukuWeRvJZEzJwZf2K2SuKxX8WiK": { + "balance": "2794.158504732", + "bytecode": [], + "datastore": [] + }, + "AU1gZVFjkSRTm1XeofQXtZSASUwdMos3w1qHPGGtrsovmLcB15SE": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1gZZD9ZdZ5SWpmJ4ZiDbsThPtEKTyNvagJ5ys15Cv1qHeKMoKH": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1gaKpnHvvxKJqqWH6Q6aHzP2hwQkznFFVC8udvZssCQ9dyTRJL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gaSjeTEF8EJJMTiLQmZBv1BNooMTC7okFQhcQgZBiduLjPo1m": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1gaVTquDfjkYgvn8PzmLxfRTd8vmcCSSwvFSe58PWpTrTUDQxN": { + "balance": "13.627549428", + "bytecode": [], + "datastore": [] + }, + "AU1gadnfJ61E5upVXy2bmk3Cy4VgWd4BWf9TvQnrrkNisUbHMuKA": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1gag1HgL26qRyKJAGEh3ybZUwNnqsjdn6C1PYETnBjYAdZgWvA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gaxH1B5mrMD9B5iaipDeKxTTazXHP9fbsAJQeBv3L3D42NegN": { + "balance": "4615.170188648", + "bytecode": [], + "datastore": [] + }, + "AU1gaz9q5erRUsRjM88VzbQPT3NNiTupjU9nsiU7DXu3N9mSAj6Z": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1gbBjks5gxRuJLJwjDHQxM5RwCHR9CZy7JHgSxvTGMjqG77knU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gbF6ypnJf6Qa6W2tunXuq1Sf4XsxuGNaTXsTg9ciACCEws4BV": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1gbhuUXZhgM7gTUSarDQc2kfwz8WQVnT35AFh3i1HyLx7Hr6QZ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1gbmKdKbk7j7jpQ6jRfQBpYUqwgxUpLxWdHVoJWWt9o1nTqp8u": { + "balance": "601.732451029", + "bytecode": [], + "datastore": [] + }, + "AU1gc33qDNAuJTHy3mUxAun1AZ4X78tKseSTJJLk3E3pNPggLMis": { + "balance": "1504.589366590", + "bytecode": [], + "datastore": [] + }, + "AU1gciPVVMEZbf1Epg4EoekCW4m7YoXYP3PNcaRnZLD3afYStLBq": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1gcv7VYek5QDGUWbqxjzd7KTDhMbtKx9HrTo8NvUWxSCwHDNPZ": { + "balance": "604.107024062", + "bytecode": [], + "datastore": [] + }, + "AU1gdGMuXy989wyvA6M1U9k9pThG1nPL46bvrVeXEiGrb2hNRLeK": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1gdKkrm2y5dBvmuskhn7sJ8M1yUR5JgGy6zUrYftqpA6BDr2qq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1gdd2CTSee1uAzdCxaxScTowi8wkYheb2h3guGxFMUthekrAfg": { + "balance": "5118.016603692", + "bytecode": [], + "datastore": [] + }, + "AU1gdmw1WbnyXPcc44U4yidP7tu6P4EHz4bY783oU1W22WjSXiH3": { + "balance": "606.638264901", + "bytecode": [], + "datastore": [] + }, + "AU1gdwNWgjcM5ydVzWFW4djAfnL2whCbpLem8pizgdCccMtQFDfs": { + "balance": "793.524596054", + "bytecode": [], + "datastore": [] + }, + "AU1ge2JpmYkvHZKMCFXKichT4dEEH5FYBEosZF3uxycugNLA3r85": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1geTphqH8Cwua8XegPEjo2xBnhjHQgN9ifXZXwCw716R3yeGhW": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1gedibo6yu9ijPKJLUiDcNXTdzmCDo7X3ktGTJiPNdULuSBBrn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1geeiLKE8mrUUXwkqsJuNB1PbTQnBqkijoQ51b37cnPx2UkCZX": { + "balance": "3290.559353097", + "bytecode": [], + "datastore": [] + }, + "AU1geyJhEQSNm7eUrP7gqHN29yTqg72ViCduHRXGTLg6hS1puaHH": { + "balance": "94.410895192", + "bytecode": [], + "datastore": [] + }, + "AU1gfG1UD6M9dXYUQbd7jjR2MBdUniqGkQFTqXqAnppRqQFkJbhq": { + "balance": "754.801286127", + "bytecode": [], + "datastore": [] + }, + "AU1gfNDU6h3LsuAUWtBwbPthmcxGXb7QpvkaDoFSHSEBDSRkLrZx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1gg9iXoKP2e69cfty7pWdACYNbZR6ufg1GLHwci2uBUScvUVEk": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1ggdR9LQTdYjgzeVSC6vSUGRbyUnkHiMpVm58SFyaaYHqX5k2n": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1ggmuzbTHpKQZVDnbzwcgYVWpYx7RyTAaCPbjc5demzdS8y8eL": { + "balance": "782.520616647", + "bytecode": [], + "datastore": [] + }, + "AU1ggoipkX42VHzaHBa7HRin5GjRT8YHADLSGejtiP9rxGmpEKKP": { + "balance": "3186.704688820", + "bytecode": [], + "datastore": [] + }, + "AU1ggvrxNyByLeFsmLZMKcjvQiR8cUV16C64aNzZPTfuT8Td6d1m": { + "balance": "1703.116080544", + "bytecode": [], + "datastore": [] + }, + "AU1ghLPPZ2h9EP7wzzTfFdrAu7hqBPhNLP8cT9wSUuvVbizBqWfd": { + "balance": "698.978277986", + "bytecode": [], + "datastore": [] + }, + "AU1ghjPhSKxVNy86rnup3TrdJjaiGrbW7e7xsHWHYr8uRSFQc4od": { + "balance": "1366.562763249", + "bytecode": [], + "datastore": [] + }, + "AU1gi96XTHHLhwoXwdxop8Qxavuxwu8bwiHnYW7JNRuaa5Qc7sv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gi9RnUxr4bCMcBpXcUtvTAUNciep6dZPpTbru7MRpNwXd4yei": { + "balance": "1971.798052494", + "bytecode": [], + "datastore": [] + }, + "AU1gimxo7NLJsUAxLHU6sXhjTRgLEfcTHhBN9ixkfLgE84fLVYua": { + "balance": "1653.607614016", + "bytecode": [], + "datastore": [] + }, + "AU1gjA41AmRHA8dDyNdeAT5MWvMfhWWrPdorEwhYaNaZyCLYu8rg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gjvW2FNEkjS3einAb9dqyh9ZhMiyVv4QwEA5BTdToDYSiCzyu": { + "balance": "672.386565266", + "bytecode": [], + "datastore": [] + }, + "AU1gktwipixnJr8poFA8JAiD4BjAoS6NcCoZ1r6PcjAoBPWKz2ke": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1gkwqfjcPH7JDnsDxsiDzw36kv5GC6eH5XAmXUe7V7XRA6nmwE": { + "balance": "920.840906687", + "bytecode": [], + "datastore": [] + }, + "AU1gm35KY4FACLoiVmSSBGmmih5GaW3qhnFcJJzinADedBfLdjs3": { + "balance": "1219.137510623", + "bytecode": [], + "datastore": [] + }, + "AU1gmBWHD1TPdkWk1evjK1UmUhSY5NDJHVDrGnDojdxgFeK1gyeD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gmM3TFLLJjcsyWjzpD7uvggHUPt3TVTcAr1WMWE2Z7GupkESj": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1gmQivcxZ7tq24DH23Cb63KBdS8S38CdcZcutuFYmn5WV87Q9M": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gmaq52oFVWoLDxpzgdXi5jnUR7RFeeSm9Nt7dgF9c4wzNpmfn": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gmc6eL789gSt1kMyFGXXeGoBjfwydvo9ccsWNLhtxJyw6f67a": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1gmf9CsLFFmmbdUjdbgBKT4R51ks3bGH8JusYWgCa1KH3A9wG2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gmrNwMFYpx8kimTghjCAagjdt3B9vyVEKtB2PgEqgrkjA9AHg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1gmsDfGxrWazS8xPAavNHB1hexwbrsTAsy8h6Ya4F2aevjuAGw": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gn9TjTuR5iAnfQGoHMsQ86nye78XbW6NEcho7bXHjBzQhGGDg": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1gnKyKCoT5JnqGiPSkNC9Vua286fmKZVzohFJGS1TWdV57uu5D": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gnPLzryN58kpeeFso9RLY2fcgV7GYLPU4KrweP3xgidpoUewm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1go2bL2mA4ediAWygz32NXKHQnJLDbMAfHXVwgFYrioFHgMfhi": { + "balance": "1879.651957074", + "bytecode": [], + "datastore": [] + }, + "AU1go9mLHjiJzMc4mHYQkwwNpi4Q3b2nbqSLfcVpZULhPJTRViAt": { + "balance": "555.052635640", + "bytecode": [], + "datastore": [] + }, + "AU1goUKNdUSCfBYv4Mrf8tcf6vCQr17dazgWoMA6bKjW9aBv5w2z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1goxmVWFTvbzK55YTc36ts77AQyEmTA7Lkyv6HN6WT2TSw9etH": { + "balance": "4218.822225617", + "bytecode": [], + "datastore": [] + }, + "AU1gpjFfWLJ43i7KdK1Jm1jzVMK9EL7vTfY1zeYYTmQb8WRbP1Ww": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1gpmf4z97JY7gMfF5BeJvLoCseCcLfCULEwW32kRvxY9nd9sW4": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1gqQVzKMipr5N3u95WxCsPREGRNyac5VKeMT4p9N6cZtisbiqH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gqZVbpP74UoDKHv1mW8Wmkcgrpqy9DSMD53quAbmAEfAc63Km": { + "balance": "256.601496411", + "bytecode": [], + "datastore": [] + }, + "AU1gr14DynjsuKe6u68m94zKQqF9Ee5XbAFbkAyMF8om2XLHbCrP": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1grCKPJUTrZQ3G4oWD8DhvQnBJSM6Z3HH8iPyQLX16t33spffS": { + "balance": "4205.648786642", + "bytecode": [], + "datastore": [] + }, + "AU1grGAaRCTa4QeUmj1ijBn9pUbxhKtVKc2WuFRzJ3hSWALi55LE": { + "balance": "1601.247341580", + "bytecode": [], + "datastore": [] + }, + "AU1grPxyThCMJMye8opXMgHLvqt5MZPnj1okYreVFBctaHeRgU76": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1grQsyQ429woyokC5fJqsUXeLBau8f4Han9k6jF5Hu83PPWsh": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1grpM4mufxEGhs8GibMmMWRJ2P2b2RcFdVktW1P9JWyQfHSpD9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1gsBcUjwexf1RkQUgCovbNVyoyXbMfbYmmAXRzo8reQmRcWDHb": { + "balance": "1256.087324219", + "bytecode": [], + "datastore": [] + }, + "AU1gsGg88QojMMwCB9DSDBGbQXPck5pGKidarAqxQ8zTtoNpD3iP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1gsGp3xVoLbWoiP1HkAbEVPUYNx4qgghjnGHPSbLu83DALZy5T": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1gsPsrFtBnjcJhja6xtBXBAEHcK1GMEYkZxfdQQKDcedqhkKmH": { + "balance": "1731.817607012", + "bytecode": [], + "datastore": [] + }, + "AU1gtRYHrkNjpvWCMhrpvnmtTu8CVxDmMGpcjqQuTLvVeHMRSouk": { + "balance": "4078.309329775", + "bytecode": [], + "datastore": [] + }, + "AU1gu1HcvRcZdfeBeKFnEnRQNJNXnByipY9YBJ1NBWHBrVFSTX2x": { + "balance": "28.350555318", + "bytecode": [], + "datastore": [] + }, + "AU1guHt5NchbnMbQkkRJfh3MRgwpUdD2ftEhv6PR6piFsHPHukjt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1gvSXQvBeJp2xyiFi6MRHJm3B2BSnPBMzRwbyZ4f1dVCC2xgFL": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1gvbcWhPzpaHMkadBaBPvNnNyD3cK7gxZsnha85Qn3Hrx2aMFR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gvqBTnZydoAGkyNBWk8YYzfYCQGSqZYio7p7L9JZmtHLGtjHD": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1gwAMSvWCbQckc2hewBoHEYSRw4ptfYrxK1DgqKxGtfy5ynEP8": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1gwEQ68e4jcfiUP7FVQUkJXkjJwnKprrrVirDRGbZwBCPNU4rQ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1gwGgrFfUzWZ9Y8chuDfGKwmoycasjFU2jjrJvJcqeVfQuV2Hz": { + "balance": "590.420666676", + "bytecode": [], + "datastore": [] + }, + "AU1gwWVfkZGejk8VguQN7dJA6T17SYoJFWHg68P7NHTjqTCp9DzV": { + "balance": "1423.066582863", + "bytecode": [], + "datastore": [] + }, + "AU1gwcsbvQvJbgCzWDfMJx99yUYbeYE1cXHMk781tbopKDY82N6f": { + "balance": "30.495535982", + "bytecode": [], + "datastore": [] + }, + "AU1gwhPLYNujagv3GPgatPx4mknPSgx6TZRCBQobzgS3YL1AKkKC": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1gxSGVLtSAUn4dvT54heaQXRiVmSyktQvibcomgdgBF8msEXn6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1gxUj4vFix3ntr5SBzqDDSJAmSWTmM9CSUUQNbBm8L9oEzcEz8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1gxacNRTsk8u1rWbLUmro1jgWsfbk1rpPX8AkkgQP6K6qfuotJ": { + "balance": "5846.479926920", + "bytecode": [], + "datastore": [] + }, + "AU1gxyZZ89fF8qD2EkBhbWxKb9fx5ubtC6AeCHSH1BbC3oB91nfz": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1gy51iSxikm9FSrMP3bLmdByneFKbLEMRVgU29faRZR1pLgz7H": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1gyhadJJuXmVcbVUDqMJRYCSof8EKYZGvL9iRQvjMuACa2srjg": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1gyiEhjXsVG3rtbmnaexKnrxAdphtHHcNxgNSPU6RpJ8fhkuoh": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1gzK7DGc1iSM2RCCJJJiDXXD84RdufdJjamZ15pvQqWV5W9Yt3": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1gzXoqEWes6kp7He7A6Lh2VJtzK2wTnJnNUsZR8EEK9QggV3TZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1gzqhWEDURDXLsBvWXyJheVAndke6Tkp1Fp3UiKfZCFJJ5ozaw": { + "balance": "3896.512460952", + "bytecode": [], + "datastore": [] + }, + "AU1h1BtyCLXK5wKKTLYTZuRDGi8Pk6ZhUxPnJJAM5aaBzs5nVouH": { + "balance": "2507.098725051", + "bytecode": [], + "datastore": [] + }, + "AU1h1PJq5qLZXMzWJrFvtdN4dMv4CEhqNQFd9ApgBbUq7GfuaKgh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1h1TUG9EEfxd49kFnRLHKdZfHPCPn3fJqbVP67JpXFXdN7WoFM": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1h1XbhP1qxNUUCDgPvc4qtEVRuDTeGsAaBnaMuewuwhk7HQhTM": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1h1axv3Vyc5tJ8szBDXQwu6UbH7Q33XEWLMVTmcpYPoKMFoB4y": { + "balance": "1842.365708511", + "bytecode": [], + "datastore": [] + }, + "AU1h1bVQdw3AdfYZiQ61C1XZEJGB9XfaRantiWjvj1hSEMPEc74T": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1h1bnoxhgCHwPf7V7QygR1ARtXW8kFhtFZ3aJ1a3qs4YeGTqPi": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1h1rbs6ftzEqyXQFYVVstEA2RZYaBUrqBiiT3xzckaCWLT5acg": { + "balance": "1672.627521197", + "bytecode": [], + "datastore": [] + }, + "AU1h2EEcCr163Hw4gut6P9VQMnYLYCTfnvJ3s97syy16xuTZoYws": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1h2KFNEaFvPAa3DjCRh3uqZZboBYKG5jAxgA25av1evMovbbVp": { + "balance": "800.545908900", + "bytecode": [], + "datastore": [] + }, + "AU1h2ZRHRks4sLaytVoXUevvQZmp1XeC4KkazijxqVC74Sf9db4e": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1h31bXvfkeWVh89JuSwRLGNgHVvzMjGKjQgcUCUWZVywiLWtgz": { + "balance": "858.306245286", + "bytecode": [], + "datastore": [] + }, + "AU1h3QHRmZLEPjkCh5LWgpK3ppGUUTHpSxUFqRbUL5K3wy3UrRLr": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1h3iexJ244vPUgWqxe5v8q8qesYqQHk66yCexD2n3LBtaWVx8h": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1h3uv52EN4HdhACGy8sZSj1ZZp1i5iwrzuq7LnhLDCRDS6c6yq": { + "balance": "1252.979439011", + "bytecode": [], + "datastore": [] + }, + "AU1h43AhfeAG6QoRw11oHd8ox2C3yajKFqPousV6hqxAqUSpZoVu": { + "balance": "5954.584282032", + "bytecode": [], + "datastore": [] + }, + "AU1h4EgbUeax88WffXSQU8P1MSQ7JxRVCZXLnsL3QgXKvquG7Q47": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1h4FPqmPJQJHWVFpdEF4Tr4v9mF3Eme6aDgSk4byoU2U48Nt13": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1h4Sg75iiYCYdXvh5QwjFsxBFfmmVEyU4fFXMYXWBZ95NQSjZ2": { + "balance": "2014.858977158", + "bytecode": [], + "datastore": [] + }, + "AU1h52DeLHobj1PuhBskzDUpe71mvmLkL1wZm2zRFEVsmNX7jnQt": { + "balance": "920.426765812", + "bytecode": [], + "datastore": [] + }, + "AU1h5L9P4k4bDUdpi1zoUYKsFtcxHVRcsCEVuYPRiiqc4BG3uNJM": { + "balance": "926.849490551", + "bytecode": [], + "datastore": [] + }, + "AU1h5ShnFkyenzdFxn3jc2rYdrf54RR7Ri5tGi21kHUAuKW4Uenx": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1h5YoZ3H2wetpH4BNGq858s6PdmdXaE1Nfw1eLDSdLcRDwy9U": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1h5djCQFWocbXdCeqtdMVnEc68LnMX5ZBybj5fdCxWWsqnosPi": { + "balance": "1795.411670666", + "bytecode": [], + "datastore": [] + }, + "AU1h6dH1HdNr1kAM4neN39i7dyZdTgJsFzK5Kmax4A9RLBVy2i7j": { + "balance": "64.700991843", + "bytecode": [], + "datastore": [] + }, + "AU1h7HtB4UXSQdusioHk1ZCqSi5az59GzDDwnTUW9virH3GFBAYF": { + "balance": "950.383183848", + "bytecode": [], + "datastore": [] + }, + "AU1h7Qnc3uLpzz6Mmbg1yc2RNPdQPXZy4wzPsajhPoYiyRq7Hp4X": { + "balance": "36.741720504", + "bytecode": [], + "datastore": [] + }, + "AU1h7UGJzeJEv9hLt7GitvhzNaHQpgz1PzAFPbKPGTFo5aVpYTgE": { + "balance": "1455.690783771", + "bytecode": [], + "datastore": [] + }, + "AU1h7fKwXYtrcPEP3BTHrpZdtkVK7V8cArYuu5U6M2NvgxSxztvm": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1h7tD5b5CHec6FUsG9XifJbmgC7MUbLZTfYe1gHAHuY9gfn8d7": { + "balance": "2316.063546601", + "bytecode": [], + "datastore": [] + }, + "AU1h8F3EjkSo6xfLmSrrk6CF9Um3ckmhVAQSaTMnA2Z37WncXxrS": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1h8bh3NhurMUQ7KJBoBBXNGzepmCzqLaKc4RUe8EbdVv9nTBeU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1h8pxHMuc3UqF5yTeXPfAu1pentAJeH7HSS6hsRHD27bpvPLjQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1h8rFwWZ77skWmotgnKMS6VSGt1hitRRjTJcYuoSBSii9CaTYw": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1h8rbhxAMZYjyyThEeTFjfjTx7E97NJXALFpgBgjHyKHdHhaWa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1h943CxKujQtncGowKq38BESDJV7ojFWURzFbs88KoWMUt8KwP": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1h9htK7Xhqh2j1qiGSN3Z2tj6JeobWDD94rSnq2oaLEvGGAnJs": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1h9jocRZsxbmMZBcRdAUHE37MCeQAkaUbwdt4TGoCqmoyTV5eV": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1hAPnspH2xrmkCFJwr8uPM1bgfrDGCJxPnczsrkrR6B5Y5SZAr": { + "balance": "995.372720360", + "bytecode": [], + "datastore": [] + }, + "AU1hAQ1XUuikqtFNAiHtpFiabVjicQbti84wz1EpGBgkLd16EirH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hAkGpm6strPPXWcxR3X1ssX8yf36sCsnUeMFs6uxeBFzXAPD4": { + "balance": "2685.196379528", + "bytecode": [], + "datastore": [] + }, + "AU1hAxzkcjhst1C5xiUi5W2RBdSX3P5dS8agipubHCxJJwNNf4DZ": { + "balance": "1394.916978773", + "bytecode": [], + "datastore": [] + }, + "AU1hAyTpT2ncqPsqmaKtzPE8HeCWjcu6GtKFsctQTbyf4kigHKd8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hBFSngu6FFiLipMfnWV8PqZEGyXAUsH7sFxpFg41VmhoR1Vzc": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hBG9y6Hh2ULSJjkmSKFyYf32p4V6zG4tN3A9UM9HvHadvr87T": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1hBQ3oRqtWy3TAJjguymoJEgVarBwSQ6vUUPLX4K3GCGMB3a6Z": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1hBjiVzuNHbCo565Dou8Yn6WKHMiVtSLaqK36hUdB7YqapWQGt": { + "balance": "2027.378257321", + "bytecode": [], + "datastore": [] + }, + "AU1hBw89Mb5kjLxqenJhduRcCvci2tx9fMPApeboi9vk2Tyb2Gu3": { + "balance": "3395.341844086", + "bytecode": [], + "datastore": [] + }, + "AU1hC38A2VcG6b5sCv1xbKFxt7FFpJiLRvt4mC6buLXGWkSpwVet": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1hC6HmAE1MVbeutB4cVokUHGJdyEvDBwHqp2fzknFx4tdS4v6s": { + "balance": "1817.818250091", + "bytecode": [], + "datastore": [] + }, + "AU1hCBfh8jYeVddabNYTMZGTHimdHbBar18fy235fKNN3UUXxnup": { + "balance": "5252.301686509", + "bytecode": [], + "datastore": [] + }, + "AU1hCKZoXvEc2SrFfYayMyCRrFzikVdt56BxZQe1WbxYYD4HXvTm": { + "balance": "940.499644380", + "bytecode": [], + "datastore": [] + }, + "AU1hCUR3pNfCKZUpV8ebv2CSp2ojDTTeFgVH85gioo8R7H9CAKDr": { + "balance": "2326.757562926", + "bytecode": [], + "datastore": [] + }, + "AU1hCakFY2cW2WbWURZjXbC3LNFAMXcCq8yxt8yJsuoa4iGPvZoL": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hCakJ1GDRCxrm1q4bqTwvytTQZrC3e2y5AfeBH5rAhheKBdMY": { + "balance": "0.100347001", + "bytecode": [], + "datastore": [] + }, + "AU1hCmK4ktC7oC92oEh9K1JiPi6G1LX3bfaNnLAtvssFhnYqMtwu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hCtj2Jnf8pygP59DYqMwaU8u1MbSPM6HmMSHe1LpaLn8vZJEL": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1hD3aDGUF2s3Qei2GTe4msPRfUgzKc3hePAkAs1hvxkDpc9DEE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1hDLN7FTjb3kwH651S38oYyJzsodK3YD1jZKeSnKPPnLZu8ie": { + "balance": "1958.727566630", + "bytecode": [], + "datastore": [] + }, + "AU1hDyPYfPEX3yBMQ5T3S2gvbpRRUTG2SrgaY5V9cnVfZ7C6jPFt": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1hE1QKtN8xVKeetQxWDz4wGSb9XZGtaJntGf2WCfv2byQQWrnf": { + "balance": "1280.370599587", + "bytecode": [], + "datastore": [] + }, + "AU1hE5h1xCFTSqXCAQGjxLKNug44VXCtwnD28iv8eYhps3Du18NJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hEXnzTiJBpt65iGdEh3d2uEpwXvFxpxsBMaX7LNJkP2beTrMd": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1hEZHbW2vMH5MXjXDbZvSHWtzxk4ZjuoAWxUc8bKZVv923MuNn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hEhawTeWibUwXWcBAUsmzVCCpjxd1D9hzcyCSvAqCz7q8ZaRy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1hFSRJrsEsuMVbbGCakM3ZKBRLXHti41nvQEp94Qa5CKhFv387": { + "balance": "3437.320872664", + "bytecode": [], + "datastore": [] + }, + "AU1hFU6aSJpBh8Q5ExbhYhsm4tEvr9tumNWozy4qrAQXackweCAX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hFaHNUDVJ4PieGLLq5fA6Po7rXcqGrkhwjrW8haBNCExkXVrD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1hFduG4VRqv89juqDpoKguZvZxuixoTHUpNjx2kVC5T62MWNer": { + "balance": "1297.191081473", + "bytecode": [], + "datastore": [] + }, + "AU1hFhDdfhJQ7Tdkd6htfkzCM46AuZoQnCmCdtGFBcScR4j4oyYG": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1hG982VEM2TLhXyNuHtfpNBDJ92kkM2WbpXdtbwjmW5vR6kDxB": { + "balance": "1089.775239612", + "bytecode": [], + "datastore": [] + }, + "AU1hGLdDShQYMsFYSYSPeyoVgtqDAmhsUvGdPDmtDwMHeDodKVqj": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1hGbMAjLkQgdBLu8BEXDgGPLngN9Y32865gEnSB8MbQD969Uuk": { + "balance": "809.568656697", + "bytecode": [], + "datastore": [] + }, + "AU1hGmCVAfVuFeT3NpnrbHtancv5uN13b1pNXaUkue8nVs3auGWZ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1hGmvHuE6BFPsU1u1tooxAAaWJDiA9s7FXbGxo41tAL7rCNaGf": { + "balance": "74.155767419", + "bytecode": [], + "datastore": [] + }, + "AU1hGtFNJVcDSWLNGFsBDJumvTxsmq4cFVbf24TYPKoHttmL5x1c": { + "balance": "980.619065215", + "bytecode": [], + "datastore": [] + }, + "AU1hHRBmVr2LbmUmuMoj6JKpKdTvP8ven25T2YUZgDtHw22fygWy": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1hHVBokGoNW1LZxfp26m4sWthcbRFkDQzh14VJ1s2gMReo7Cf1": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1hHtBRJCkFEE3xir6PrCBPYsmNvvMyS9ExEzSECgVoATdATRHb": { + "balance": "720.401750656", + "bytecode": [], + "datastore": [] + }, + "AU1hHvEkXqjtzdjFr8r2Rt2ETJkoAmptq6Pko5HUb4A4RDTgDEQq": { + "balance": "2451.332554307", + "bytecode": [], + "datastore": [] + }, + "AU1hJN9zeTeD6cwdK113VUivAFzzN23a39Do5yKqyLqJFgxiT3jy": { + "balance": "2159.062976064", + "bytecode": [], + "datastore": [] + }, + "AU1hJQU1FtAPx5YPz3tVFuFE8VVvKzdFw7DdqAA5wic9kaMPT2iS": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1hJc45aZuftULzcMiGaRCLXqrHrUB2TX6xAGW9Mp1vpvzoccG6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hJpvYKNMqbxTQTr7EppgqeFje4MU2XPHUWY7PLvaor2C9qprU": { + "balance": "831.609364345", + "bytecode": [], + "datastore": [] + }, + "AU1hK4nTpwzb9qKSZsLbEaWmERtptPESFWeQTnH5rSKGiLiPuvNy": { + "balance": "242.106256927", + "bytecode": [], + "datastore": [] + }, + "AU1hKELgCkjFUtvVX6JA7dBpTiLcPsWx4BdoXg9HkvbXF5zdpHSb": { + "balance": "1082.815799009", + "bytecode": [], + "datastore": [] + }, + "AU1hKFis2NXfEsvZfYzBvgbGEXiViXgVti8xZbr3RxCrUEnBjpM": { + "balance": "3107.327957602", + "bytecode": [], + "datastore": [] + }, + "AU1hKM2dHudH6EFurV72EUDY26tH1tm8RrxcYHkAYT6mGEDL777g": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1hKyYxxjmFZvboXmyKohCbhfJnZrubf9MHGpL833HkjbTUSBYq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1hLw4cshWKWymzKNhBrAg6cLPxnykDVPkU7kaNteyLB7iD8Fup": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1hM8rhM5otwqE4Fr6K3GrnnUMah8m28MozWJnKUy6fXN2uR5p": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1hM9a6WyL13fGYx9b5x61RBJSNPwBKdomeuLACEnN8p8ZtFU4n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hMBr3yBj56CYT99yRNXUz17SWvYhPAPHy9jGESTq643i48aPW": { + "balance": "1766.264969919", + "bytecode": [], + "datastore": [] + }, + "AU1hMHzsBPr92knSroFdKW1KJSLQB7WmXibSavA2ucvAGD1QZpF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hMKMJRzPzJQuVAW5mhdz317ahKLtzUCuAFY3nX5Dtt5ds5JZj": { + "balance": "4339.754558808", + "bytecode": [], + "datastore": [] + }, + "AU1hMVjJkZFdDwk63htvpv91UDqMMJ6WvPa82p7whvQxyA96XYUZ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1hMgdJFmAXWVDy8YiQjHZkfnkdPFGRmT6ZgQD6uURqFeErXiyU": { + "balance": "1193.285791950", + "bytecode": [], + "datastore": [] + }, + "AU1hMm3EgErZXpwmj4URSyfH2y7qxajpmJNcqpmpTdXRs9xZ8qBX": { + "balance": "933.518688361", + "bytecode": [], + "datastore": [] + }, + "AU1hMx61CaHzx2cqEFajDWWSM1qDqjbum5U19bmRaXi7nxqdV99x": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1hMy2UxN6QiA8zifWTkQ7Y6EfZRQwKUiigfwJoRowQS5RetAX6": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hNH9S3uX88iE86VrzP51ttKaxJKSHcWoTRdLnGwpd5Zcq2STG": { + "balance": "1842.951485368", + "bytecode": [], + "datastore": [] + }, + "AU1hNUVAAAGGCgDThfw8hhpoKmvZJD5AV8LJJzgwqAhwmByspkpL": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1hNXM66UpeAVNAXC3XWRgN8MpSc7RjRkGc3wt4cSurcGwxAt2w": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1hQtaNrJXbwCHo4tNdfsYa6nVa12ng3F2LQR7ryqiPSxKNcvGe": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1hR1bzAiK12VgwNrxDyJ56fyRkas2cYydkbB5iFugTwVUJmFcS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1hRVoLSkdG2Pnxav92rnmq4fV97Je6qDz4TiKt32omcwQ8i3Zg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hRf4QnJnfTddXahbBcPfJpk64P9rkx9RgiFxebnoSTc8N4BXf": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1hRpQvj9GNai6V9o1fFBT3qv5ntH7KKxFHcJeCdv2QKoJhoeRU": { + "balance": "15310461.212376234", + "bytecode": [], + "datastore": [] + }, + "AU1hS7PujUUCggYLPM1JXVdp8sm6XmaGaYKzg9M8yugV4BZ91zu6": { + "balance": "4135.723133123", + "bytecode": [], + "datastore": [] + }, + "AU1hSGLjYUHgSb9b3EVZ8GbmKK8buYdyMV7ZT8ofgathQ9ujxyQf": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1hSgosDfgtmvPDHkvmocQZx7FYPtm6FTP1uCPLBB1zufRegJ95": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1hSsFDpVkSD9m7AJrsLawoK79K8gqexeHZ6pWmsJgNaJVGpwwV": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1hTpatrZH9P5fL3sGLSXKeygfJ7PVJ6ULqj4ZWktmPsVUrxcSr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hTsViv1qD3e9apdbZTK4hQmQrZ84Ei8yh2FRC3QRn28oiuVWr": { + "balance": "819.302421353", + "bytecode": [], + "datastore": [] + }, + "AU1hUE6V9jZEouqJAQzMiHE2r7MRDXQapQ7M7Bi6BnRhqEwKSo4x": { + "balance": "114.248299309", + "bytecode": [], + "datastore": [] + }, + "AU1hUeTPibsgvPpQ9ahn4nub9FrTgfWdqCaZsFsSsg8iLR8dgc8d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1hV1MYqnabm5sVrHbCJ4ia9uzL8vA5UjgpXShMYAc4yjFTCX9w": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hVnJqQbYsJAhuUhhfXGLqbp4RAdZW1MGTRyh46p8ASYiMX117": { + "balance": "1284.043594767", + "bytecode": [], + "datastore": [] + }, + "AU1hVwtk5RK6f1CBA2itLzwoHGziX46tuUivhwj7SV3SVwZkWhvE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1hWDctLVSDPnhy33LSGtsWT26Kz7S67wwGAVXmsRAKrbEUQKNV": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1hWVzFeXadqB9z6SNUug8gPUawvKphuF6MjWfF4sJeTAmQmY5W": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1hWW7aXwAfWGsQKRX6kVTVxjpGUs3w9PSvaHBC3gtD5VGUoG6j": { + "balance": "960.742176945", + "bytecode": [], + "datastore": [] + }, + "AU1hWdJjtaaeBL8S8uZhSW3SknENWCVdmzSUoRGJbmEzr9uEwT1y": { + "balance": "3944.008452142", + "bytecode": [], + "datastore": [] + }, + "AU1hXEv2Rk3qm4uHEFaDLiMAX6LEuGe6LaqeBQMYLzY48YmJvSck": { + "balance": "229.732945643", + "bytecode": [], + "datastore": [] + }, + "AU1hXGuw4taNBN3Urtf5b5TQ8cJkUbtHd9Ni9Whp5rFiXXBopKNa": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1hXNfiFKae7SzVGMPCnrCV38PXUw3TPqwJ9njeGAQpMCAQCbMp": { + "balance": "4973.848454087", + "bytecode": [], + "datastore": [] + }, + "AU1hY5MMtSmawna9CbpBJhoAJbnYanKPxZSf2d5zPqbXYeuXqxuH": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1hYQdGTDRzSXuruPPRkyd5vseTDsNFkaz6a49bEcaACx19eZeT": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1hYba8mY1K8gjFUE6J5MTBed8ceEdRi9fSBLjKUBdCGoUqKRDe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hZ4QZCEMGW55Le2CmSHLRGEpFy4mdPXKxH9BoZdm83MintN1m": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1hZpP2VBJ7MyZzYZzbJC3U62CsgAmqQ4A9UppBtp6pqeq5TxPe": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hZtVv6FpHUUyAm2pbz3kDYfLBrba7Mx9CCh6ie95vTj5wUkWH": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1hZwvHyLph3wHaCuxSZvVcrZDNTjErFRW3YsHaAfQe2r7gF9sQ": { + "balance": "955.393509630", + "bytecode": [], + "datastore": [] + }, + "AU1ha9gLXnP7sc3QctbK1xTqzPdmEhVMzhdTkzTSsoyBCTeDinXn": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1haR67t9GnZJgvY2ZcgCitM1bwVMQ2dEgqDxxJMQ4xoivnQJv5": { + "balance": "120000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1havPPrHNzB8ggfeQZFxwbtDxGiNuf8VSpGJG89xHEGg9tkezr": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1hb7JcYmYE9C4qFsZjqnySocE4xM67r6X6zLeivZcmya6u8Z2t": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1hbE3s2FRPQwNit5ARjvywSt1Qw1M3ai9PRTdHNYX1UdFLU1ZL": { + "balance": "2148.011450726", + "bytecode": [], + "datastore": [] + }, + "AU1hbHAPZUTjd3UfGqnZ8oSzp5aSwA7RYGSY2ufhgf8zJse3NPyr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hbrHqmSCpPmWE3ja7GsqFpognME7zvPZscigLnzdrEq9Ntouj": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1hbvNXh2gFvxkqLgN6qwDPjMJqE92iQYELppMs19xXVH3fMxW4": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1hbzZCFRJKVeCHWgKL9LyMEAAvrJRgyykCXvvfjzpfZnuNnGJ4": { + "balance": "5622.472775234", + "bytecode": [], + "datastore": [] + }, + "AU1hc8QUBntgqsWAPW2aJmuTqDQrciwhSvoBnf4oRfMVcBtwi6r": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1hcLQSLPpPx1RXHpCcPyPkrueXkbyb8uzveBZGmc4QTJULXkQ3": { + "balance": "3827.148552582", + "bytecode": [], + "datastore": [] + }, + "AU1hcWQuHk9RL5QJ3QwEsAwRwc9S3x9Wjng3zkkZ1ZCdkoGcE2Ge": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1hcsdk9T9ykVeQKT9XYpGrUvJGD2DRg3v3tw6aykAuJiGvDnts": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1hd9eERv3GYdx1Vi29YUzyqn6cNYS3zyp52EkJbFYUezKoau7A": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1hdNEcQcHcdcgpVkzknsNM9ZSnz2hgyDFDcFPjMMJSvcD7kDoU": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1hdTiirHeHsyptoorm2N7kPpBjCptyeDvgx5rimsrZ7W9Uv9na": { + "balance": "973.856248510", + "bytecode": [], + "datastore": [] + }, + "AU1hdZmXc6UumfQCowV6hUqaZnnkHfSozZqMnZJ9AybhVHKYjkPH": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1hdbqbxkdPkV6G9rNQF5AhdqCwEUDoFNVerYcya5XRLvizrCiW": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1hdqNMViKezHdHxxXh3Dw6ro4Njzgscik4toaMwo1kdLRhWkWy": { + "balance": "3255.199124682", + "bytecode": [], + "datastore": [] + }, + "AU1hdqPMVXzcUntcKFQEonRzy6xkhmZJ4z5FZ4F38WfbVg8o7Pd6": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1hdsok99JiiP6BYzeWLLxyTqV7ERJroJXHncy9r3f8witVyNCS": { + "balance": "1891.660656844", + "bytecode": [], + "datastore": [] + }, + "AU1hed6a1YhhDxyjVSuVqTXVAxywjDVqEz77BbFWqsFCD2Y95AxV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1hewNr7HQ4iHjw7eGBunoarGftma6stSp5avwMdrgJPu4Nwaur": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hfAbxDZWENa2mwvPDDBeUJKAdY6aD9asGwo6rdFen3fecjc8w": { + "balance": "3157.692159161", + "bytecode": [], + "datastore": [] + }, + "AU1hfBgMsnFoECYr8Dz5c2diPN2NGDkuLdyPZiHNgwT5Bo36W19s": { + "balance": "901.321470913", + "bytecode": [], + "datastore": [] + }, + "AU1hg3a5wmSjdkDD5GGgJXJBHcdYMdKcbwL1DEjQHraBgrX2nFxn": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1hgCTwNaohYUpwmJndG4jZZ2MxXERBV2qrykNd3cqNTCrgQFLN": { + "balance": "904.978489552", + "bytecode": [], + "datastore": [] + }, + "AU1hgNf2CvjtGgqjpL6uq7pEecvWBTuDrwaWRHEhZraZXLhbEJvM": { + "balance": "2692.280876106", + "bytecode": [], + "datastore": [] + }, + "AU1hgnKLm1rUAFgpHn7dUUEU2ubyfqnz9a2JVxsYhXhkC5LDLrZ9": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hgx9T48QKjW7VhXLwQH57x4d3Dho8z2EXifTfYnmtW43MqBdG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hh7goPLNieiRVCnVfgswT1YBYuqRDYBYQSwKHa6gk5wcukTr6": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1hhHu7Pf38kVK4JdyGqo2GgYKBSyUnu2dWqhm3nBWe6p9bUiGA": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1hhgns5C44xgxwRysmV2jNLWpCQiHKqrzx8oWHmjK5W5LBv6ZH": { + "balance": "1773.028978129", + "bytecode": [], + "datastore": [] + }, + "AU1hi1CwsW9HRyybvpykAYWepyFAKo15mzbq4zuN3D1xh6mRMTJ5": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1hi9U8W6RUTQYmGcYTitbUcJ9ModgtZS2yt3Q1zUJGLxzBTQTe": { + "balance": "15.497531187", + "bytecode": [], + "datastore": [] + }, + "AU1hiVoHswg8AxZmCB3dP8Bb7GQD1U6no26S3wqnxGxx7guz1bqo": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1hinU4bfCPz8ovJFxHPEp7fnDD1ZDdTsC6NWEV5soh1k1jFYbW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hj3AcvV6LHTSs2usp3sjDU3svbpo2NacPz71EsAGjRmXu6LCQ": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1hj4fbTwiRGcqSmR87gj6nZfkdDTWwyrodY9g5RhjcMj7tNDJR": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1hjQMnWxbYteTk7Ff1azqrHpJ215Df6rHuBwb2zjCARoTPtTiy": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1hjf4xZkzMcgcLLeKoKoboFUcbzXKwe4vm9uzLQ37e1tyD9dcj": { + "balance": "727.229675989", + "bytecode": [], + "datastore": [] + }, + "AU1hjpHrDiLnmxuwdjAehHkW8MSmKHHmgKAGeMpmESLiegeQtNK6": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1hjqX1oivi8EWzEJoj6MNiKwNRhVm2XxBWB5zboJWfFYxwvQtS": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1hk9Ke29wQ5fAVm1pTeuJrQn8jJxJLkRkiCMHYRdXeEZn1TMYN": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1hkK8fwLrjdGwbEMyMDSS7LPhumerJZayPK6vN2ZHJknE3v5P5": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1hkVhPK4Fj3JaZdJjxcrzymxmQvbKPdvZdei7S4d7xeBxFjQuS": { + "balance": "1646.347646673", + "bytecode": [], + "datastore": [] + }, + "AU1hkvEzgJfvKtKpaPE9bCW7qacxL8CABbuvqdxRTPZHYfUA7BuJ": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1hm1xkFFr4vAnVNsjvccA9kxVpB1isDj9Lw6Mx5Pxf4NLhq3nD": { + "balance": "1234.350701056", + "bytecode": [], + "datastore": [] + }, + "AU1hmLVdmnN7bz9CLPUfdqsoNTDtodwThR9x7NHiYafAzP7F5bRj": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1hmSt4hc7zBim1ZkMJjMc3YTbsMUzk1nmZT5mdEKjmDcrX7TnE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hmVid1XjrWtwF93owgRPfN5dGNnfTkj5kHkDK1ncLk9SXrezJ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1hnLScHWngazk5DnvMsTbvxMFv44gkSRQTxJ7wwx1tzRx9UKQa": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1hngWet2d78Q8fuobWehV18XzLYpsyxuREnvK1YhTGvpgCmWTQ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1hnsQDBeURZ2HZfdtr2ERHTMy29qeRigWWfKgQPdJ1UjeMBP3D": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1hntRfUym2wDKgyaCE73ad63hX5QMj9mH4ctTyPagEH7GbnL4p": { + "balance": "3494.995790937", + "bytecode": [], + "datastore": [] + }, + "AU1hnzAV2PdaEbov7XAxLU3pmTjFwJ4C71vZUgNKxDVJhxBDfe3d": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1ho7TbhxhX35zLsGbWeYUQ41C34cw9CebJvwnuPfiXBmFJXz7D": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1hoGS4ujBjV8RymWWusZ65FyfS6UVCMW1yLWTwW5MLeFta3Efv": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1hoH4zcfECWFiz1gk7oLyp1GGmD4UGfCj1mCNumjB9bcqFPXWM": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1hoP2AB3RYnUQXwAKTq11qrxfSNh8RpcZVhCmAky9r14fqv5rA": { + "balance": "2052.825685676", + "bytecode": [], + "datastore": [] + }, + "AU1hoag6nEfhJ7YB3AZfyNtiJgKWxiEnVHJFVDe77zWptgP5rams": { + "balance": "1941.317867693", + "bytecode": [], + "datastore": [] + }, + "AU1hoexxe9WpVMZM5pLVDdnBopoYY47mPF71tph8qDddDqPUZuuj": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1hondstWV2QZvTgSDoimDaycWADAyY3NgMsJvoeJrLrRKdCsZj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1hoqqvh5GkCZw7c44KXH5df7vPp8XsN7X1C6MiJtpJ5SU3bcst": { + "balance": "2210.190446798", + "bytecode": [], + "datastore": [] + }, + "AU1hozV3L1Sm2jtGm8FD4a3UCcaxBgYkGZPb21yC11wTUb4PJMME": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1hp23dkJ9yg99QHx5DZMeK4JS5FR9dEk6Zs7xaoMe9EGQujFtF": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1hpYGkmCe3iQ76xj2j6U8paHKcBdzEExXnopVqgv2Lgkg2WQGd": { + "balance": "3126.114868224", + "bytecode": [], + "datastore": [] + }, + "AU1hpggbJDcCUpQuDmWdgBEk3RaksYSw1sd5Vktxi3yzVjs9fbAm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hphgKaJJL1zbV4PZPXwTTdUVVZiHFiY8VYoRJXFq8wfZH26q1": { + "balance": "140.678982553", + "bytecode": [], + "datastore": [] + }, + "AU1hq6e7kgxbzmnN1ZSBMXAUCJzBLpuhyooYND1Y5WpRuvRv9WME": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1hq6oUjpdrfdRDXfDZKNk5qbADHuqLAR6pVUosLQhQdQosCHk3": { + "balance": "4436.207864776", + "bytecode": [], + "datastore": [] + }, + "AU1hqLLzg5eCq3HZruXNcNtCp5GUKngSBJqsrtsYQCu2siK57TBE": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1hqYePbrZYJ42f4pKqf8RbKAVnWY6HvWg7GoCzwd63aNfPza1i": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1hrG3hPUnHU3JxmmLhXDryLK4TDqJEvfrUFsAfRuJC7ugBJ4x2": { + "balance": "120.899683452", + "bytecode": [], + "datastore": [] + }, + "AU1hrM1Z2ZwL3oZkYejfE4gUB6iNr2YZpk55DdQoLGX5JhNn5PU": { + "balance": "1379.975981282", + "bytecode": [], + "datastore": [] + }, + "AU1hrVzAVG4znWcpppfEAaAgUzHFRyAeCARSjSEkZ39WqmhxXWoL": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1hrdoxZrbLndd3p9W6Vm3ezAnoSkWexHZbF87xXWBQRnDv4L36": { + "balance": "951.038329758", + "bytecode": [], + "datastore": [] + }, + "AU1hrsEymjCxcVJdoBoe3PF3t2mYNZFyVDRgwUuf2H6sdoLtx2WZ": { + "balance": "2537.709320272", + "bytecode": [], + "datastore": [] + }, + "AU1hsAWH36ZzHnVeumkmY6Ly9DbK4jPCnxvag9am4N9UcjzDm5GX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ht3XwfXPByfQ1CmrCB4qcDJr3xFT4UTFwMFMhRwMttgFvCTS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1htEVGjJSh1qtQWGrS2LxPvpr8Q64Tt3SArowfpTx6SgtwkhXy": { + "balance": "996.202613752", + "bytecode": [], + "datastore": [] + }, + "AU1htmTjEXS4xK4QhEPVgf8mRCq74eB9zvWXPeP66zPZ2QwTxiWm": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1htqTJAEjgeSrsZo5ebqFYQJyrXSZ4wc6nfiEBhr1KGZECq8FA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1htu2gCeeV9jqcHEBCsrQBYhFZfDBLVbw4sGerE4oR4UQYYULE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1huZYchcNcaveVmQjKJ2k2edK2yjYYp9ZN86GxHeq9nY7uiCmU": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1huoeSNR5YcdsoLp5fXv6oQZ4cWbLvniGGmT8hyjWXDsGojESL": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU1hus5KtSZHPkmNEEvkEfZLXEX9CQayZ6LL2GNFV2VV7EBJ1dwK": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1hv5AbQL6FAFKZnU3cytHeD2DvRfXw6SX7LyFaqCpe4ppKacyh": { + "balance": "3129.096370635", + "bytecode": [], + "datastore": [] + }, + "AU1hvnZASQkJtyafM1kA2iotsNN2tiu1DZSEGUSUj9dTiPBxtV8X": { + "balance": "1144.523652237", + "bytecode": [], + "datastore": [] + }, + "AU1hvoTgoDJL4G5qUvWWufvpw38dPQGkxn4yPwjJBv1E2rLzLpns": { + "balance": "174.917491749", + "bytecode": [], + "datastore": [] + }, + "AU1hw5DFJNXaymXb239YsDZbCwYKv2ygT2ncZcbfemqqxuRUyDcL": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hwtDpLXS5dSnRc5ysZ12ToQkHGKWE3XTcupEH85RQ7DHFBX1F": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1hxEhEjVUznyFpLB7Rjhtq5utiQxsA25EJKohkhZkTfAxyqPKm": { + "balance": "2205.491805404", + "bytecode": [], + "datastore": [] + }, + "AU1hxXQY6XfwcijigMYjJzrYrqTfns45EiDekgg8trsjRWhGn1qP": { + "balance": "1377.579364096", + "bytecode": [], + "datastore": [] + }, + "AU1hxhNwkTj8N1vHiDxxDZ524TmRFUdJuVhSfU13qA9N48PhaFEW": { + "balance": "3121.187230591", + "bytecode": [], + "datastore": [] + }, + "AU1hy5Q8aBR1K5tWcpfT7yT6Cx2hWnyhfE5Kuy2DxTiB9Rnv2cw4": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1hy7SCbYAx246sc7UfZCFWy28wWxSFXbFXCUcuqkLLvPwgSNJm": { + "balance": "1592.605783804", + "bytecode": [], + "datastore": [] + }, + "AU1hyTYdm2NUxBbeT6u1mD7o3fdzcDMYtutyUSsYuiYm2FDqb2yt": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1hycbyZ4N8FtMYoW7V4qoErQgqZ4NZad4dQHn8C5GASas8BEFX": { + "balance": "12.479350788", + "bytecode": [], + "datastore": [] + }, + "AU1hyjGbwt4ULzMdJYY6iuz9h4rudTG96WqEMdVFPta3vYYNYEcd": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1hypcKRipyTPZhFFSQZsZ99BqmcPvZ6E8yTP1pwWmryQPv1sfj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1hzJk94F5hKr6t22Zjwkj7gSffuygmeX1RB61bwBEktVSbAcyp": { + "balance": "780.303784816", + "bytecode": [], + "datastore": [] + }, + "AU1hzK9pPbt77yC2Ug7aYedq2UHH43S2VDYMVuu3CTyqHrCMJLAH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1hzPMGFREgaC568C8Jj1HBZsbDyG5L8ehzBcyBb444bDWhWCsH": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1hzRN5kJvx7Cb49cHnJ2Bw34zksmokjUKTeK6t2nCm1GU6tXNX": { + "balance": "2319.674701315", + "bytecode": [], + "datastore": [] + }, + "AU1hzWDDQGXYiqLNxPLVrrT19d51AkeJidgGTwxCMjkDCTUEThDH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1hzsnG4Wsiyp788FjGxaVMajr35oTi48vCsndstnVcEhBw6US5": { + "balance": "6496.566161557", + "bytecode": [], + "datastore": [] + }, + "AU1i11qkMJs6Gxy6Stcy3U8UTtvbmTWM4fzMWs6nc4r8SrbJU818": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1i16KWZZjXnp4fZm64pAwKYxiXhYuYiLDJ2f3hiPZWXdBo7PMR": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1i27KWop9gY8bqga9DAqrt2EDNaTpeHqLYGaQCtuqdYNSHx6qU": { + "balance": "1203.348629126", + "bytecode": [], + "datastore": [] + }, + "AU1i37iyKfngZ96gw6CHUg1LL76UWdzvecYFkGTmTeJyq69Mw8jC": { + "balance": "1060.462707052", + "bytecode": [], + "datastore": [] + }, + "AU1i3TaVnJEud742yyFW7JJ9oQ3eDuM5xuUrbV3phSsjRwLFhpZr": { + "balance": "2236.787988559", + "bytecode": [], + "datastore": [] + }, + "AU1i3Ubpfm9KyCePAfbWGmJoqsKLT9jidG6rdoWEeoNgRaTtZV6a": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1i3k4LuPK7pjtfWLwKsPekokh9iPEwBpH12wgoq63eApU3JV93": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1i42GxTtFmU92jqn4qrcE2vSzXt6mzBwJkaCYiEj89UxPzG9PZ": { + "balance": "199.760119722", + "bytecode": [], + "datastore": [] + }, + "AU1i4CyoyVatSePwKtTgm1KYMpV3xLHFA3mRcCT6LSWQNQBEToeE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1i4hai5VcM6J5QYKed7b2RQta5mQ9nw67ipwyAeQzztBHrVpZD": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1i4hznemGqp4sZKwsDrAJYuayjmFc4uVeDEoX3WvtmsX216gD1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1i4qNgKN6gAb1H8x1SYNvfQ4wSbzv1FXVFyuUCKiN11TQvK2rj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1i51dFhohSaMhhDrhMbKoVrqrT1YU7ZGmF9MzAW4Agw76aHwT6": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1i5Mu6C91t2GnpWJaaDtMjdQ6PRcDkfnMiBf1sE2TZPnC3BDS6": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1i61EddejRdifZ7iKLUPEdxSzTdrqBusHWRjtsww2rXG6wdqBx": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1i638Nmus4748G2WdrPBzbHS8HbVbJYrevUQd18DCbKpVJKh8x": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1i6PHvcsa8HnTgA6wAtPMhEmtMc3nyYp1k5WLCq8nxC8HhyG2z": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1i6fjQ5hnpwpzoVek5B6Xr3JhSNGAvDqbHaRAZWi753Nd5Yit3": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1i6wRqaTauEF3mFTo3PXBLuw2hNq1zKh2MWyzGKbaCn1QeyTPK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1i6wubRhS6p3Ax84CkDHunkKgQFFMZ8sESgtv16feF9Sp6bx1r": { + "balance": "1888.645008399", + "bytecode": [], + "datastore": [] + }, + "AU1i7FDw5VArxCX7CM8nRE5sHhih7oMriBuU4VjCC4B9buCecGMr": { + "balance": "2430.816682422", + "bytecode": [], + "datastore": [] + }, + "AU1i8HjAaQzTa4rce497BBJe37ymrD1MrCnRNhBw9jBB21MxGRj1": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1i8JbJZdsViUzP5ST9wGePwYLFLXnr3LxWsyrPChbREcpqzjkr": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1i8pS9pUXjaWWAQZ5CMbm5YMpFYxtN6CoK8uQUYaUc16xLa93F": { + "balance": "1364.991905082", + "bytecode": [], + "datastore": [] + }, + "AU1i8xWKtAqpjZuEvdNShZfxZWBDuHKWcsvRwVh4axx3BxzD2YXs": { + "balance": "827.371243177", + "bytecode": [], + "datastore": [] + }, + "AU1i9BUT3vGxKWoaPeu7Vs1MrBM9jxQUF5SMHsvEttsBC8WqRu4S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1i9bBYSU9S7UKxpCuVQGpre7RWW7YCPEDZqf7Mez9hEG7XFRD2": { + "balance": "3398.872856039", + "bytecode": [], + "datastore": [] + }, + "AU1i9zKqQwuCmGLXkhq1UUgtbiwZbYKunPYLaVb8nB8ndsGrrvge": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iAaLZsPCBekUYC9toDDGQMAbZ8H69hevbUAUM6YpmvPPBrH7o": { + "balance": "175.731283468", + "bytecode": [], + "datastore": [] + }, + "AU1iAb9xeCPXsfV24M7psgbenULyQ7uA28KaehsTSZgctTntqcBL": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1iAgVzLXsta3Bfa6VsGLki4uysHCpxsF8ifNHN6meH7nsTz6rd": { + "balance": "992.547441294", + "bytecode": [], + "datastore": [] + }, + "AU1iAqoXranjaNAzRKp4fVzAT67ymDpDiNb11VqNGRTv8sr3Wz2e": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1iAtKqPANhaDnX28YDSzQj93ST4X289xaBuGD4cGyBqcSGwxrt": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iBHUpNc3AE9Ax3xktc8fi1nn71QaVYcDiJpxb3yJ27c83ULs4": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1iBSF5TVW8eMAF3gSnNDQPvz4Ynbt7bwUADAFTtx1HzR28QSMm": { + "balance": "192.518192772", + "bytecode": [], + "datastore": [] + }, + "AU1iBi4wNXqb9LEpmAZcnjEZkeGsZrcqmut2TaoCXUZjCEeAAFzf": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1iBvK169H9Qq7fbiWWgRXGnSsbJeEqxPJeSyVNpBw9yxWYD5cu": { + "balance": "1718.726798470", + "bytecode": [], + "datastore": [] + }, + "AU1iCCYDrEDin4xwryA7HDs82Jw5sTknM3GeLPj9CqpszEvkct6T": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1iCbb8AH48cyVos91D6v93zY2jyigWHYD29ACbkMZph3GVHX7f": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1iD9eN5auNYeYXwzPe1hDM2akWpV5L8NYn6hZtncTiwKfE7ZqG": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1iDAF5Dco2WtcNB5Fu48pk7jePbvLuysLazhYee9hDWHtZxtpF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iDLbzvmLx4eCCnhdV4eW5uSvvFyQgqQYoZ9M8mPrFrMneL9R9": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1iDNjEDxxubX1NL4YHF4hZ5qkqURaifHMGDm4EXLSLNR13zo9g": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1iDVbSYjUrvM9PEdsYK4CjsBUpDAFUZ2ceRRMLsr32mLyev6h6": { + "balance": "2754.919699463", + "bytecode": [], + "datastore": [] + }, + "AU1iDY9X61uarrCQNUkqbS1keqziPdk8fjkcKGioBBZEsqEnRtte": { + "balance": "1210.477959460", + "bytecode": [], + "datastore": [] + }, + "AU1iDkQcYjBZVLb91txAor6hA23LZFr9KMUbEYey5NPAqFPYyKrq": { + "balance": "2229.580164162", + "bytecode": [], + "datastore": [] + }, + "AU1iDp34G411YDpXBfo6LTPSLmmgydwaA5X5YTRjv5nHEW36qSAr": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1iDp4McZQbfjHXkYEmFxS4cKjrzohVYdqp3s3Gf9jbUqhtQyMe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iE5Xaep83syuFGcAMRK8EXtXYV6yyCmQMwLwhuEtJuH2KQbyq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iEPAjJXUvmMnj7mjxxcgAioVLBg1XBXDrLWDzX7fxCYPDqbTx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iEk9dRx3E9vokkGNoJYdcZMPwi51eanDi6DqUZqyBSePnTBfR": { + "balance": "1260.584444135", + "bytecode": [], + "datastore": [] + }, + "AU1iEn2fdfsWgt3mjtQrh8tKSTCedppCGY4VS7GUhRvEVC4kv38Y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iGXLpmV86uvootP43xJ4uFxrNnWLEQEyvPtHjSDijkHFuU8bH": { + "balance": "4912.008881563", + "bytecode": [], + "datastore": [] + }, + "AU1iGeQdgTgjSP3c6F8sn2q8UDJEau9V7jyMJHj9GVGtGkpnQtwo": { + "balance": "1698.462307734", + "bytecode": [], + "datastore": [] + }, + "AU1iGgzGcVUFKQhxt6G3tHQjfH47jjPYx6PuB5ExHv1kw5P3bMEi": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1iHE1Y1BvCrFXEc9oViFvBRJRAHWW1ciLAeAy7QU9T68juuV2S": { + "balance": "4763.962099175", + "bytecode": [], + "datastore": [] + }, + "AU1iHN2yY4B2aKjTFPj33x6gQZh3C5L8H4DDcTp6Ac6h2nkVhDxP": { + "balance": "529.079423893", + "bytecode": [], + "datastore": [] + }, + "AU1iHNwRgAr2n9UVEU81avnXBtex1ppdbuoMY8HToS8LV4Ypyvku": { + "balance": "575000.100000000", + "bytecode": [], + "datastore": [] + }, + "AU1iHXJN6Euq5NETn36WMcrDJSDdEecNmVgC2U5VSyg1rd72mHYy": { + "balance": "1183.762857532", + "bytecode": [], + "datastore": [] + }, + "AU1iHfxy38NYhFTahZQxs4HpNCtx5JKxBeadYS2Ahch7BPZ6MWsW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1iJPs8khjQu5kBFQ8smnHnge5ZrUdNZJ25baetpR1R2vDhcnfT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1iJQC7sFHNxdojAytRnB73K6m4KEhdu9xPqDMcY9fXJkbvHJT4": { + "balance": "2523.549890589", + "bytecode": [], + "datastore": [] + }, + "AU1iJYDgsFxvimFADM57SM5D6kikLUCRVEgQ4tS5PjLNVEPjYRMm": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1iJdtiNV9xAnumNKKcnGVBc4sySawK7Z6M9ztmP41NNW9VWEgp": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1iJh5to1whcQdNYvMmLw5Nfb4LLfHpuwqoMK6DEuHW7rCrDX4T": { + "balance": "690.453165334", + "bytecode": [], + "datastore": [] + }, + "AU1iJuHoCAc22AcWfgJUyUaKWTSiGS3WN1zxEx56pXTx8jwTkeRT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iKDBuKSvoGZwNXF8ewY8aDTo8QsMz3tXJqmJqorsh766Pf8r5": { + "balance": "1644.658439816", + "bytecode": [], + "datastore": [] + }, + "AU1iKfxekY79jKzja2xXFerwUa6PTumMgLopjciLppBYsnY6tT6k": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1iKqJRJRmmmBDcTPmo39ZgymWvYMrPQUMGCyjN8PXJk5Hi8SCR": { + "balance": "2090.623862455", + "bytecode": [], + "datastore": [] + }, + "AU1iL4LjQUbNesxQrky3TcKUsuq4HBNT9STJbYXBuLYjujNT1pNu": { + "balance": "72.635413878", + "bytecode": [], + "datastore": [] + }, + "AU1iLG6r3TvdrPvZiRQNXsWjwpKarR61K9xKV9xLxpj8YYAftSnm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iLHvrCPYirYLpWZxMoSjVv8wd98cfuYQRuvxb6XzThMTVqemE": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1iLVu9fhKgxNjsei8ocoLhZ6rX7ENovksW8AmBhqGk2qcNxXU7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iLewECgeF5wp3MAiADbFQgLUxFKyPWzwtupvoVgkMib3qTrU3": { + "balance": "1127.168712488", + "bytecode": [], + "datastore": [] + }, + "AU1iLm8rUSw1gR3esF2N5BkGPw6btfAPtBWqn7tQmUVvapg5PRKn": { + "balance": "861.984781410", + "bytecode": [], + "datastore": [] + }, + "AU1iLzeg3C9qML4njxv3ViJ9KjRcaZ1GR17ge5e8UyNoznhFqEzN": { + "balance": "2863.193274472", + "bytecode": [], + "datastore": [] + }, + "AU1iM9hYBQun5yTzsCnG8UsC9ygtj1DPNUPK5prSxV29Gm7MzP4j": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1iMJnSiZLcDJN5ToMafRTgAXesneFDa8VGPnxmLMxiWpG5gjq1": { + "balance": "7000.547900034", + "bytecode": [], + "datastore": [] + }, + "AU1iMU8gfSt8GwLcWS7BYxcNkLiGAQDcXXFwRhG8EgMyAXJdiPeE": { + "balance": "5764.185672055", + "bytecode": [], + "datastore": [] + }, + "AU1iMatxSPUGWXsGrAvBbYR3Wzvtv1g93qFcutR4b8L2th7hTqeT": { + "balance": "3830.182294202", + "bytecode": [], + "datastore": [] + }, + "AU1iP8hhVVa7pCg8nMZwCZ6XbMD1yni5rNyhF6GKHM2LBFxNNCs3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iPGjt5hngqqLrtDPXwn8yyTtL7Bkbvi2D3uyRmWeCnhMJBekd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iPdJ4KxmQY3sNmja8EKokaPhdGUGwBxZtuwYHrcfBJwkwqBDL": { + "balance": "867.664252004", + "bytecode": [], + "datastore": [] + }, + "AU1iQ4dGDf2hD7Ysdaiw6CVjjNmPjfFDQZ3tXPnirnkJGgTpS7Ew": { + "balance": "912.319338036", + "bytecode": [], + "datastore": [] + }, + "AU1iQAyC7SNzTD5ihiWVPFeUiKUsztyH9naaYRj1zgynRKfyhunw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1iQhaBgjBje97YMHkR1w1u9gn2aXKYQu8464hspEEiiGh2Ufau": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1iR5fjRk5DQ3SkD34ckQaAwKJnA782wTFjmaTZ6G4WDFYmM5fN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iRNrSGJoiEVhT4AEBbd1iwHPX1rAQ7Z3nYjW8HQpZRUh4BwbL": { + "balance": "2520.771751057", + "bytecode": [], + "datastore": [] + }, + "AU1iRYjENTSYLwKoxusq2FLNHzNTqD4BGfkUdjHye3fspkDuspRs": { + "balance": "1694.486445156", + "bytecode": [], + "datastore": [] + }, + "AU1iRdZexe4FKz2SJK5M6ypgk1QASxqDTUQCCQPbCwBJ75449gTz": { + "balance": "1194.651146020", + "bytecode": [], + "datastore": [] + }, + "AU1iRwPM2dtR4YBPHp3Qzzi3MNfVwZatzMacyoYqogP8avRnYrcq": { + "balance": "1127.272556903", + "bytecode": [], + "datastore": [] + }, + "AU1iS6Sm1iLbasd3w79cvdA7TxMNxMAJab5MkbQKy6TGSbc1UF8B": { + "balance": "738.564322468", + "bytecode": [], + "datastore": [] + }, + "AU1iS86NJBh9pjx1jKoAdeRz4F3N1k9rPZuXr6aUBdLA7R7HWhQu": { + "balance": "5042.751739161", + "bytecode": [], + "datastore": [] + }, + "AU1iSdcmF3reL83t2R8DYeTtrChyhdFKjd7Guy8m7q6UPxKfPQTY": { + "balance": "611.541574895", + "bytecode": [], + "datastore": [] + }, + "AU1iSi5dw5STnPAztM2hJZGksmU6PECN6kQWmckCQnqu1DcKEBkF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iSj3T5LLdGZjQybJLL6kdJ32jSF73GC3h6MYxSLR8MNPgB1Qf": { + "balance": "20.343153519", + "bytecode": [], + "datastore": [] + }, + "AU1iSkpMcKvguTTxQ29Rf3D2bM9bzhGJz9ZZW8NVKMKaC8ZQFbTW": { + "balance": "1477.612116647", + "bytecode": [], + "datastore": [] + }, + "AU1iTNTktEtEYThdayHKGM6SZPTUMeSq8eo5MsFGub8avf5RTczm": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1iTaL67Z1mBHhj6us6cdGpeGQWtHEyY8Y6pJkvuk3UdsK4Lyb4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iTkisNLDRy6sYnTdB4gQFA8om7joZfU29Ak6eKpXf1d2c9KUa": { + "balance": "37.299718478", + "bytecode": [], + "datastore": [] + }, + "AU1iUSDEEfDje25UDpH21T7oi2MWnfuztmj1kWu4xyUpJ74RM5Rd": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1iUW5dPoax487knmAgY5Zo1BpvjyS5KWtTg9XZr6WwFpnC1v7q": { + "balance": "963.181162365", + "bytecode": [], + "datastore": [] + }, + "AU1iUeCBeVDhKMcndgDxKS7So6u8ZFa1LrikJeFw97sgwtPAdZ7Q": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1iUzuHiWLLCy7XjYfsZb9fERkTw6soxaHHVhPCWakoXcp5LpTJ": { + "balance": "2530.002324716", + "bytecode": [], + "datastore": [] + }, + "AU1iV2fb7NY3ARHPbFFh1edHDkysD6k2zizn1QYSQTCm2JBEhVYi": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1iVGdSs29vcDy2Ys7fYBpjfxkg5souprFr6pmstTThPSga2avo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iVa3nHrXkRPZiMjHFw3FKoBgS7REaa7q7QjcSjgLEf6xk4kb6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1iVezna2S2jivPo3UQY4XWi97RAjDXCcqpaLVfuR2Rsz2rZaqU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iViUqQWbypVQp4Ngb8dd5KjqhYbnMMYXYbtEEk849bdakyXJ7": { + "balance": "6520.373961127", + "bytecode": [], + "datastore": [] + }, + "AU1iW7ky9FqxJVSc7WQLDwhjbsZkubc8LJCrdhMRBgBvDdNXH7Sy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iWVbJWLxTpibXYL9QbfsZnX5bNbYszkXUFGC1Zg8z4CToZuUK": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1iWXVW8KZS4rbETp7jKUuwF8CFaEHdvfrVa97DwqyMhm4kPswe": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1iXbGpHFxQuyLRkTJDKEwCJ29wSPkNUEcsTDtPm6UxvE39aP1h": { + "balance": "4724.435767747", + "bytecode": [], + "datastore": [] + }, + "AU1iYDyqNGHAefS1574AcLMfgXjpKpywofiSrMXkDzLDAo13GVgE": { + "balance": "1221.423310083", + "bytecode": [], + "datastore": [] + }, + "AU1iYuSdXL7o9X1D1nSLHYFGgyotMXfFRFSab7VkmqnUpLu1Yzhe": { + "balance": "1697.409897782", + "bytecode": [], + "datastore": [] + }, + "AU1iZWk2SYKNtHmbiCxGKsUxjPtS7VBmJNmunqEGJGxgb9am4Hix": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iZp9MdPA949CrwQ4H6nAQrR7ZZYa9k65nEpaNn5N8XsaL6JiK": { + "balance": "624.139392430", + "bytecode": [], + "datastore": [] + }, + "AU1iaMJNJMRZxyvzQHq1Dkt4qkTS4XUvfegsET2tJEy6xMb82rGB": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1iajZTXjnSEYo5PgDPDuhsJX9SjyJoRi9wUWuTsDs6eauyAoqa": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ianpDCCoM14QcutJF5mXTzsh5VyaturfoyEuiCfxaZ9LvhNJt": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1ibAkkpJ12YT84kdmxCM4WKYf4dhc2dNZnjkQVYEcBDS33xbr": { + "balance": "2363.326772060", + "bytecode": [], + "datastore": [] + }, + "AU1ibEWzsqtdk7m6Y8CJZHtrQYgf1cLiJqWbQBBy4Eu3nmZAhmr1": { + "balance": "721.666499916", + "bytecode": [], + "datastore": [] + }, + "AU1ibPP9Dk5LqTK4qFGpFg5Dp1gb5AY1SkpiVMAS3KKusVNDFQSE": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1ibV9y7BmBeAqJrRxGm1kY3mKoTCAFuYypqiFJRiCZZqRjFJGt": { + "balance": "1532.710014403", + "bytecode": [], + "datastore": [] + }, + "AU1ibpgEVeBEdVGa1nbbuBTqtjjLqGJC6aMjUchXpYsE3Qu7bp6p": { + "balance": "2239.850444238", + "bytecode": [], + "datastore": [] + }, + "AU1ibqc4mtAut11f2vHxGnc9hP3F4MRJY64hi6vGaBJYi16Dx9mF": { + "balance": "974.461657972", + "bytecode": [], + "datastore": [] + }, + "AU1icK65EGD6v8JosNrfp3RxCLRwCVUbvm9M2ZirtFRndFCmsRZL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1icTo8PvV3VQ9J7qCu386xhT4hZ7H5P2PMKhNXJnBwt67Do1MR": { + "balance": "209.554086264", + "bytecode": [], + "datastore": [] + }, + "AU1icg7wVeVskP6vAqM7CTpcEBkQN3TDQRjyoU9DK5Eq2MHmz8f7": { + "balance": "1521.268545753", + "bytecode": [], + "datastore": [] + }, + "AU1icqf7b6V6skPCdfCo2QTZZxyzwoNTf8UWzPhQhC5LBpQDvs4U": { + "balance": "2045.341792412", + "bytecode": [], + "datastore": [] + }, + "AU1icyTztm2RwNTc3GW6n9S5DxT7PuGjEdE3LRMdvsLHB7hqbHbu": { + "balance": "1161.484901296", + "bytecode": [], + "datastore": [] + }, + "AU1id4MsAb7qnvGmKCU8uNxftmZyneaqok9YRVB2yTYJCx5GibhZ": { + "balance": "1594.780603453", + "bytecode": [], + "datastore": [] + }, + "AU1id7d63CKQT8Kr7CCbknwfQr8mLHJMh4f3ovboZVg2A6LUSK62": { + "balance": "1188.070356102", + "bytecode": [], + "datastore": [] + }, + "AU1idKi6Hdgy7J8chNwP4nJesJabtdCU5dUcfmvfkqJbAAXs5CZA": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1idRSNSUvNh4rrdJXuEMCRZcXiqeb3JkQbGGcW3N3deoZRySZA": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ieECrbiGsYjaGgSXUVMkdpChRAyXxGCeaazTaFJQLNKVo9aeu": { + "balance": "2736.967863159", + "bytecode": [], + "datastore": [] + }, + "AU1ieN6twikZNQdAFafJRN1Q8CPfK1bYDdA7CUZAWFxpipKphW5y": { + "balance": "1307.332875580", + "bytecode": [], + "datastore": [] + }, + "AU1ien6o5LNtjDTtKPVZsbT75suof4za1pT2aaj1kahHdGazqDrf": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1if2aDRDoJGjJhepaQcpq9tFNiA5a8H84sKXECDiZyzT4wex4c": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1ifovLJLpshPyZ1DniEwMJBNEE971afDCpaUjEgPMuCq3g2HLM": { + "balance": "4211.258085089", + "bytecode": [], + "datastore": [] + }, + "AU1igLMtan2uqpr6bPt3vtfNnHCRfmQWof9uwZ4rd734PKo9uVv9": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1igXGPCxaCeDqRbyFzYLycPsN22qbpN6U7dA6pas4MmfKyWT9a": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1igYxLtsdcikJz7ohtbDRxoBtuYkV4SYTBpK9oR1NChujGSjw5": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1igxwU2DSDydkWJV78b8iUTu5kRXhb5NmgE25sfwxVkB5oRWPC": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1ihk8ZgReMReYAfoLZL5Bz86HFizQGcpfFSQXwDcVZBDU22Wx7": { + "balance": "2480.874070708", + "bytecode": [], + "datastore": [] + }, + "AU1ii8pzX8vA1Q9PMcvofkLVr3HMkEhjiZgeviDhpC7N279J44xz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1iiF5qfNUH2CS73MtcC4VGev2YQcK6YESBWJ76oVTSyqgBpCKx": { + "balance": "135.749600524", + "bytecode": [], + "datastore": [] + }, + "AU1iitWDVs1eFtUjd5X8tTnbgj4KgUbX9njpRiH4VdcDe4UTugMV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ijrtayekEWnTmxcRP2THmHtdUGneJXRJ6X5pABrYRqaQhaew4": { + "balance": "1037.107474368", + "bytecode": [], + "datastore": [] + }, + "AU1ijvnfDixZ482dHTHEGrvwgEP6fpFvDXnFnwTdFdi8AAiJgfse": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1ikFwaMUYM9qMidckBo4MoFoj7NaiDidQnexUsqbJNaebXivLx": { + "balance": "1300.420788591", + "bytecode": [], + "datastore": [] + }, + "AU1ikKdBDEXQpNPnW5dJZiKiyvihJ2SeePgjXcJ8PWKt74HwEBLH": { + "balance": "3613.466002718", + "bytecode": [], + "datastore": [] + }, + "AU1ikX52qYmBBxAhSKCZ5TLyTSxWmni1a4UvFR9sJJiniEvFyWGA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ikX6UPcxnspb1qNQPJ3T5SSctcAizBW6HDiz8mCjxirwDZGHs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ikZiz1WQMDJaQuL3ykJ9kyabWnR1hy2r5wNUGVvyo9bENeizf": { + "balance": "5110.738919670", + "bytecode": [], + "datastore": [] + }, + "AU1ikteQvLdMGWS2GVodSte1883beeskJoSvZcDi92kfpM2A2Dpx": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1ikvYE1bowJ1V4tXdGGdfcrtY2PThfft5RMJaKN5T98wQj1tQW": { + "balance": "2727.680389437", + "bytecode": [], + "datastore": [] + }, + "AU1imeHpcdGNvWseYtyDBhrGJCScmoU7TGRK3bhmHKvuCkTToPJj": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1in7NwUTwo1XCpnbnBxrVmzjNA9TRqrBgVToYF8Ayeo4anTYK3": { + "balance": "2045.052268561", + "bytecode": [], + "datastore": [] + }, + "AU1insDyuE7ijnuwJWUKfwocjQPjA11N14dm7uAcbgBY4jGSpXxF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1inzcr9XTPN37np4hi2XUjLyfHbHAq3UcTzqRh4Q87BWLwW9mC": { + "balance": "1991.651824767", + "bytecode": [], + "datastore": [] + }, + "AU1io1jJ7qdgKdcbRdu6BwKe1UhX5ChZxWi9PhPL7WJe27bfwwQE": { + "balance": "2985.888420403", + "bytecode": [], + "datastore": [] + }, + "AU1ioCZBxxEzq9FXHn1EUHoDRa5QAWUiVSs9YzZUQGMEHYUZyUe3": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1ioKuquhqjd2CMSPkfw1jo6vkakWJvRsP3bLB7JHccmbEZDxWk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ioQCicV7v9Jausq1SNACSztz2aFRSYyNE12HZTpqQbkoFTh5i": { + "balance": "233.247709010", + "bytecode": [], + "datastore": [] + }, + "AU1ioVBJF17BtbNARMKquCPoRHtZNiPRXHCDXUQzeeoZwy4vRJb5": { + "balance": "904.525099258", + "bytecode": [], + "datastore": [] + }, + "AU1iopx91cpcCtGaRdb3rwmvNHGzMmLv1NHB1SeygdnnwF2RCbr7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iosxyN9DgxtiThjU68h3hJBotd2frt9ukKypNxYRAaxthsQQV": { + "balance": "3153.101067664", + "bytecode": [], + "datastore": [] + }, + "AU1ipAp8FGLwJiQvYJUT92Zjy1PLSjazdB8Nyuz2uA9zSUvMu4pi": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ipAtM5NyG9vhRLzsrDQTNQRi4juQ98hwpFQHzRupEeKMgqYUg": { + "balance": "1463.864461212", + "bytecode": [], + "datastore": [] + }, + "AU1ipDH1mez9iHKYXj58jp4ZmnEL1z4ewN7XkpfNF1TGpgaMBTtU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ipcejXfw8A6BUaHEvgYS7zaZ6k3o1S8hedwUh2TUxWgLSiAVs": { + "balance": "1684.842533817", + "bytecode": [], + "datastore": [] + }, + "AU1ipdHz2oBDnbiK4Ek4cqYM2FN9DgJ5pY4AqngviHLLXafFQT8F": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1iq3tBHF4GPH8nFN92BXmFZr5bGFoT13XUFxKx9kt5HTNMpW3r": { + "balance": "247.042551468", + "bytecode": [], + "datastore": [] + }, + "AU1iqYTXLmgWGQSMJoikVM5oM95iaxdNz1JW6tyqekErGpEP8QQd": { + "balance": "619.189376608", + "bytecode": [], + "datastore": [] + }, + "AU1iqgARLn6uzjdbt3Y1g17i4bdHgfMZ9hfFX6B7VKG21vTa4xV9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1iqugp49sGMo3Q9D6dt6CbvrCGJouFynBGEtSxYuLAbjYDDUwo": { + "balance": "5032.489636313", + "bytecode": [], + "datastore": [] + }, + "AU1irHE9ki9FroU5KNFM2bkGV2DSRTDXi74mB8TLBfdJgaJtfCHS": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1irhcNx9cwUpg2bkgs2VCayZB5jK4TiqMG6gHfSPSuHzr2h2ag": { + "balance": "3868.972617070", + "bytecode": [], + "datastore": [] + }, + "AU1is6woggGsUJntS4Nw4H8vUwyoWSBcnkRhFpoqdkVxmf4dkvYT": { + "balance": "1221.684156843", + "bytecode": [], + "datastore": [] + }, + "AU1isSChzHiieuhycaPL7LeMe6AWAtqZUt9HyoZzeTM8YsasdKSQ": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1isinrA7L4cUdq6Zzf4y1igQtExena8EBy4RiaE1vqUnP7ovJw": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU1isqA9ZS76SQ4sPmHZkDJqAu4UFc2sC9xeuKD7EYhzneyapA3d": { + "balance": "6314.893505272", + "bytecode": [], + "datastore": [] + }, + "AU1it4byxkMuyuQQNqWR3ygjCfd7CRBHcGhGqCQD3Mwy3B1H4nvE": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1itKWgwsuqx9TPw7TrFFfAAmikc82WRG4Tjrbw2fH2kTQmuisA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1itSx1s6cFhaLy3a3HPgxj8mHra7pNhx9CA1sAt8VRUhYRDPiG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1iuPwY34mVSL9uaWzJ1WgQWWXE9s33Uy6MQdbSVWTRfi6m9otm": { + "balance": "1172.988304835", + "bytecode": [], + "datastore": [] + }, + "AU1iuiZZD2ryhrnXi3meZJdtn7AUYM92ZFeZ73SKgz29U4oxb5WZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iuk3QpRTtVNZQJ7KihnULi5GgNHYrkNge4EkL9N5nfms4P2cS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1iuoD6ZaSbweVwY52TvWttZdGSkibqFRrm8f2pT7d1qXvnpi7F": { + "balance": "1286.979738843", + "bytecode": [], + "datastore": [] + }, + "AU1ivkqEEq78we3caGB7sqsnGx3PaFcUfdGyQqEvRgMyh7HhXPmQ": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1iw35gXQ5f8pVwbCiWktDokL3BP7ySboDA11Pg9aKuSD5mji1m": { + "balance": "1278.220761936", + "bytecode": [], + "datastore": [] + }, + "AU1iwEzNTFNucvhSc5ANbrjjjHGF7sZnpioJJ3vxTgTfRzoWS6ot": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1iwjxubRh1WF2V2WH8D79A1J5mJWnYbWKFzPhjofvzp6yT2hZm": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1ix69N6VjBYAGNm7sZiMTXPi3AJfq56PKMz6GrXP3mPvTmvZ4V": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1ixXk8Xc9bLHgFsFoFV7Z68Jeb3PjMmdSkcMfn4U64rRZGgUq7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ixhbM8uPsdtD3oqTK1SLPEGqNAtwR7z9obFw2fuibrB7Udp6X": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1iyLtQzzKJArF2e5p7ufP5rvghxyHTwWDve9SfHv7mjFVNYW7D": { + "balance": "1685.463203204", + "bytecode": [], + "datastore": [] + }, + "AU1iyYjGGLS6dGC8YAbxCxm91xhpZ8zVYDjPNvnzxsDPXj1nt9ju": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1izGzPwHSetNhbBvTjf4utqyzA87YCyWzqmDnVKfbZ8vUKWNcn": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1izJ9MSpiiqUs1CvvuCgTaeanZySe4R2MMg9LrTDF7hmRQEUrU": { + "balance": "618.117597458", + "bytecode": [], + "datastore": [] + }, + "AU1izL6c5W1wUQVLrvvaSRruvd3FEE6uLwmo48NsPdVfe3zizmRe": { + "balance": "1374.158416794", + "bytecode": [], + "datastore": [] + }, + "AU1izQd6pH94LsmAud8AyERMEMSwTpPdNAApKjxpTXQ7xdvFjbvC": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1izRrJ47MvWCDrgHjZbe4bY7aAvB2wTxk49mB2kXS141CNbNB1": { + "balance": "1923.494400854", + "bytecode": [], + "datastore": [] + }, + "AU1izoqtj7CPBRscpXwMidjH7EQDF4eBiB7DtyXzYcuB3nEz4bQE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1izvdEtt5ofeC8DXU1BK884xsEjSiufskJrLY7tEyQemoQgAfF": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1j19tEykqY3nWHq7MEAciAbwGjndbtTAzH69Yg9dcVZV5S3eev": { + "balance": "655.652063404", + "bytecode": [], + "datastore": [] + }, + "AU1j1d6eB338oh3DVpLDUt16wcY2CGn5r49KuioijUcDcLero3Ey": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1j1gD65F7wp1ttzDDM68Ux49onEuj6z7N3wQTDvqyHoEvWDeWk": { + "balance": "2103.573408285", + "bytecode": [], + "datastore": [] + }, + "AU1j2MCsSj9fAE5T7sAYspyxN2ZtdfgXqWUGEPSLvQdTBf53EVE7": { + "balance": "2684.643409913", + "bytecode": [], + "datastore": [] + }, + "AU1j2XmrGWKtmzhCHxTTMjogX1oXfXXhPX8fwFe72c4WKWHM6M65": { + "balance": "1509.285098750", + "bytecode": [], + "datastore": [] + }, + "AU1j2bvPn668pH17TwCPzNeAMeuDQ927jdsarq7S2RwUU3WNG4Tc": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1j2dC6QsmG4nHXCHYQT6kPDxVXe8oDxJAwVkhe44sLpUVMmjq8": { + "balance": "2036.613926318", + "bytecode": [], + "datastore": [] + }, + "AU1j2ey1dqJ2KyG5EUn2Epw8L8GF8wnVgTN6dxAgwwqYrekryH2X": { + "balance": "2232.298140746", + "bytecode": [], + "datastore": [] + }, + "AU1j3BxywAQobRJqsETohniTP3UwfkU9s7iRTwQ73eovEtjMhR3c": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1j3g9DLHoGR5SQqikJ54xJbks3spqBKwH4JEqFzuq9LBZrj4ub": { + "balance": "1009.792023705", + "bytecode": [], + "datastore": [] + }, + "AU1j3m6BL26FWaLaQtY8AXXCjCV8uQvJiQDkk4F97aATsKKK5224": { + "balance": "4679.111725884", + "bytecode": [], + "datastore": [] + }, + "AU1j4iXfS88LpvdcRgA3qsUxCUFKEfFDEsBB7KsnTfKxuQjmhTsL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1j5N6kaaKvVexTAvatnwdJrybpBWEbm46jCCEH3M6PgYFdH4Rh": { + "balance": "1942.191032666", + "bytecode": [], + "datastore": [] + }, + "AU1j5g8cwkE7vQrTopbbH65tWZXbKWay9qah7QqLhT7keDejZ1wd": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1j5jvkLoTKct3ckkDSiBERzdChQmyZNgftPJBthx5jHe4Vidoc": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1j5mtoSTMQbiSnw6nZjs6JyKkPv5P6Atxo6CmjiAbqaakPejWC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1j5tVs9H5HXp2YEahtjVCQaxsXa2LCuQW9HJA5nb6niNggmWau": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1j6C91i9Udc9B13DnkeqbmvYJrhYQWnppXxpxE8MTbw8qLfMh3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1j6MGAGYjSQAGC6DbuXFmZxaHp8MPBVH2m4DtbZxjnn63ufN1k": { + "balance": "642.479817097", + "bytecode": [], + "datastore": [] + }, + "AU1j6XQRUULrZRwossqRWicWrqwYsN55HE5okUYm3JbZHk34X5N3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1j6ogjocDrvZzn5LxJXWaS5cj4uhCUpZEvCHHD9ta9Rr8SZd5o": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1j6tkjDb1j7JnB2cGsSB8YQAxomeXyQW92v8VoQk1ci5N5kWkx": { + "balance": "668.449378918", + "bytecode": [], + "datastore": [] + }, + "AU1j726XNjSXS8nQ7BcSyTctVTWDS195dcyge2xRYatFmBoCenuo": { + "balance": "3036.355720646", + "bytecode": [], + "datastore": [] + }, + "AU1j7poo63mR6KVXc98DZyZQNvfwi69emxLBGfPHpfMD91sw9cAR": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1j7tPNziVTPrYZxmgubi84wQ8ZVpKepCsAeD2pWnM2cfQEyNRQ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1j8CsumVvogCr1yS4phZQ2C1CJU1wU1tHDj8QqTFoia2Jw1vB7": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1j8F4KhL9cZ3cqhKj2bCd9pRFEDbHCr7bo6P1jkPMUoLVcqusV": { + "balance": "782.783200189", + "bytecode": [], + "datastore": [] + }, + "AU1j8wzH11eri5KKdAMJse7ffBkSvz1bucjY3DuPdRSnZ28cH53p": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1j8xXVypG4bFgsn41fKP8FbrvNTdVMEHvH53oSbVoYj6i9PBhs": { + "balance": "4452.117766625", + "bytecode": [], + "datastore": [] + }, + "AU1j8yenUJFAreYwaibhN5UuQK8r2MoWjX2WT1tsJjAUL6cbfR2E": { + "balance": "1407.357659049", + "bytecode": [], + "datastore": [] + }, + "AU1j93R7VwUrpic1b1SoE96suLLvEx2JoSz7AqsCZaFy6oaEewtP": { + "balance": "1458.574191751", + "bytecode": [], + "datastore": [] + }, + "AU1j963VgCfCwcnGnaDUgrK1RLw6h5LjyeVQDxrATZr6hKAgoEn7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1j9BXFgkpBZvYcqqVcCHwetjiyxViz5HT899kJUpU9uuZxeVXH": { + "balance": "1074.418325311", + "bytecode": [], + "datastore": [] + }, + "AU1j9MVe5yxU7nngUtuYcEpJGXsnUeVmx28QwNfD4vUeSwznngvK": { + "balance": "1104.698202586", + "bytecode": [], + "datastore": [] + }, + "AU1j9VQ1a2NNBZ8kVkt3e3WoyBWyG1DJKKkarJTWU7o7MrEoEtFp": { + "balance": "2290.271890904", + "bytecode": [], + "datastore": [] + }, + "AU1jAETsx1e1MZLBJbeFAL716RNMUBcyjvg5Bz3S9scnudtD7cQE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jAZ5FTRwwthzbPqeB8Qht4Vb7HMi8w3GQvb8aRvFWrtH2BPUa": { + "balance": "78.321262958", + "bytecode": [], + "datastore": [] + }, + "AU1jAyHR7VAdgu4Jy9tB68UcvDJxvFnZbqgss5rLAskYNhX89vQV": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1jB6yrj7J8KeZdPQCKncJtbjZuvrTNCp2jzXpzaiqD3wnCQLRG": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1jBHDZbsCoDaPGNHs9nskm5YYuu8Ch2sJCoP3uYbhXpnMQ7JXN": { + "balance": "886.454627788", + "bytecode": [], + "datastore": [] + }, + "AU1jBnawP758HgD7yPJUi3kcb8Xf233a99eBzu3k1rhMhgT67SDJ": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1jBs6sK8A88obP56FQaaYCz5fHT13yNd3RsV8cMFnbr67yh7Ua": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jCb5A7rgwyb5rqys1xcSNatTjEqoTNezskRX8tF5K9t3hb2tS": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1jCrbDJwe2Q1p6cvyYobQ9nvZ58WvJWsrcrMXisHWQ7cqBzB8u": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jCzeJnVGwND8uwnzTZdbKw24nxmdaLigjyWPGeSJp49EndWP2": { + "balance": "5619.619408284", + "bytecode": [], + "datastore": [] + }, + "AU1jENWDTHNLWUuhg2WsZ4Uef4GKJuHshZVWoxFdatP4aC1foBhE": { + "balance": "554.917970093", + "bytecode": [], + "datastore": [] + }, + "AU1jEjYvudKFZroERDkYikVYBsvfMEaop2auLMdkDdTfRPPKSJdr": { + "balance": "3260.085124756", + "bytecode": [], + "datastore": [] + }, + "AU1jEm24qGryeNxyj8DKf921Rj9Aw8VCZsap2aoanxyjyNUZb3Zu": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1jFMu5wREP5Um2r5yfqr7T8fQCyMPZeYqDmdsmzQ9TxrEz1ZkE": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jFVaX1Zn7gG6N84Sv6gfnRZBL4G3rR6p1N8ebJtcBUA4auVv6": { + "balance": "2781.234795264", + "bytecode": [], + "datastore": [] + }, + "AU1jFWmSXJeuWkZ7d9pQSaTzrnc49zVRfXeDPkAWbh772ozXHgNf": { + "balance": "3909.160063204", + "bytecode": [], + "datastore": [] + }, + "AU1jFp4XD4N3vB8ajNtNC8QXC2GESK3gwMp5UqA1bzJJK5GaxhuG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jFpDq1dkSdH53zZaofQ8UEUXE96S6Fod5QbLhQqWc23P1v8xf": { + "balance": "1966.884600401", + "bytecode": [], + "datastore": [] + }, + "AU1jFxyWgpNX9P3BWSnVY7UUcW49sTZsPJGZD49X5eS3wJo3jxFi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jG1XqUh2F9GzK822s24VYVh5UhJu7w4NTXekUPaTiZQKP9HFg": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1jG1bHdaimzuJh4Rn7SpYFoa6KyYXkBJZuQquCKBbp7JnZB6jp": { + "balance": "2180.397505865", + "bytecode": [], + "datastore": [] + }, + "AU1jGCC3a7SxHBgQU26uGAshWfEzhK3nNQy67P3duS7Qphsh9PdU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jGGYCqNa59TpMp2K7KhRAsyMbayxGoZCu6yWRmrHA8RjJDfmX": { + "balance": "16.197326572", + "bytecode": [], + "datastore": [] + }, + "AU1jGPqen6J5dXNrVqRhemywZQtyCWCs7wd4CRRqpZiXE6dcSbng": { + "balance": "960.643761965", + "bytecode": [], + "datastore": [] + }, + "AU1jGRU4gsXoxHjpNRF9og6MbLtKfBzQzRVWGE5NwZBRfLaJtF99": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jGVmGhzdaTHz68TfLAFWyHy7Tx21uvvWb39HCunUu9XCLSqzT": { + "balance": "4713.375907557", + "bytecode": [], + "datastore": [] + }, + "AU1jGYcUEihfqDNKjNxBYpipd4Ujz5Bmx9eqKJKAhcc5phwTkE51": { + "balance": "51.753024717", + "bytecode": [], + "datastore": [] + }, + "AU1jGi2V8K8WxDd7dzgUDNtQFLyZxN4yVvPQthoKV9qUNAXo8uUG": { + "balance": "2418.946741137", + "bytecode": [], + "datastore": [] + }, + "AU1jHDJT6sAG3RwAQBEAvVHizeXPW2nP1Y88JizzdH8dPP4Gofg7": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1jHLu5GTcC79sWXwhuGjcKWE2fAd39pAtnZN6DDYKzq4tN65XA": { + "balance": "5765.559475695", + "bytecode": [], + "datastore": [] + }, + "AU1jHSM96Dt3DpbogCsaovNJKP7EDREcFts1HYc6EEobQxnMv6zZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jHZEAb6NpAS68xp8C283WMHysPfx4tnkYRvLXo3onG8K8nXmo": { + "balance": "1201.587993428", + "bytecode": [], + "datastore": [] + }, + "AU1jHaVuhQ26YTY8ZY46KJoe6GKbwLDWFw2Tdi2MyRQ1v8pKcn6F": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jHxvgLfcUVMrpxiE3xKKKzDipX3QgRbXuRvVDSA4wrm2BJj79": { + "balance": "1884.951350179", + "bytecode": [], + "datastore": [] + }, + "AU1jHyWKNXSAc5AHhqQpiFPhS7D9WCLziirdZXdzdfPhSgwxA9WK": { + "balance": "47.118068066", + "bytecode": [], + "datastore": [] + }, + "AU1jJ5NChzW1nJFHXV7Fkkwe9RY9nQFZrgMVmF1EKjEvLXQBSEm6": { + "balance": "3073.680109966", + "bytecode": [], + "datastore": [] + }, + "AU1jJAfU5GntML9ibAmB7kNKRKXcp4zLkUB8Pzhb967hyXwSDsmy": { + "balance": "5767.213078967", + "bytecode": [], + "datastore": [] + }, + "AU1jJDbujkWkMg3TfUwmwKyRpzg6s1sqh6BsZoRUJqPrJFjiaZgs": { + "balance": "1031.770794558", + "bytecode": [], + "datastore": [] + }, + "AU1jJWw4mwgez6EAauGKZkv9uptch7mW2fRUYfiPwgC3zVJpqoRW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jJab4FtmBSLNTkWk7A93tE9VDZ4Xsq2tXQMrtLzhajavDrfyJ": { + "balance": "2913.593553232", + "bytecode": [], + "datastore": [] + }, + "AU1jK8JuNrfzfcwKEG1Bpdg8cVhGLGMvnHrGzHx4ZFcnuNMfxHwK": { + "balance": "1026.415553812", + "bytecode": [], + "datastore": [] + }, + "AU1jKCVndEJjxeqxxvZ2mUeZBXFLNRiKuGyc1eTwnVPMLtN9UBFH": { + "balance": "3745.649875133", + "bytecode": [], + "datastore": [] + }, + "AU1jKE6AucMgJT7Ax3M85qAMKvWTN6JAuzbBPj4QZ4mwt2kQX244": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1jKaoA4x2XScMoxybwQkTbNMiR8xFmHXcUb4PZaqqzXMV4jZqU": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1jL7LJmm3jyQkGWrtUCZnPa2fKsDDDZRuzWr3LZBqocwucDrSH": { + "balance": "4897.414618961", + "bytecode": [], + "datastore": [] + }, + "AU1jLKAsMP3vQ8eiTeTqggq5WesgTrt6EURJeWvBNwBztwpCJn6d": { + "balance": "1470.095107494", + "bytecode": [], + "datastore": [] + }, + "AU1jLTRVXSni7pq4MNziqnwnK2KUxpQ7e57e9QA3UhUvJiKwLzCs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1jLVNGC24xycTHcUttKpwY1S2Am2vQyoRF6guFWF61AuLS7qPV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jLrdXcztWyz1Ew66SjrnPkRz4Lw7eXQRzeSMoUNJwhwVUJY1z": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1jLspp61MkWrE5Xzx1L6TVzezbHFqWGNY4P4emrAKPdMn6JHoY": { + "balance": "1262.100376335", + "bytecode": [], + "datastore": [] + }, + "AU1jM6vWHJdrzVpXPnK6kZU2NP7GHMpqjVLEWwpedZQmBXvvSCDo": { + "balance": "3149.926026944", + "bytecode": [], + "datastore": [] + }, + "AU1jMaqWgNb9gxmBmpbcyb1CedQJRmUqBjb454FtRRYBbBh9Tg7z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jMjd8DtDFVGtDuWSHPrJ44RhBWoznWiMNbMqzDrtwFjFkJiBg": { + "balance": "1464.697652870", + "bytecode": [], + "datastore": [] + }, + "AU1jNeKhBZF1AvCbdGhZZZrnaGe2YeSLgB3shkuchu3kzTzqrNcU": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1jPAQN3rz74Yq24h4MPjRDNkdCTCzzNLRNsxYFRHmq2kbFSghg": { + "balance": "894.770003400", + "bytecode": [], + "datastore": [] + }, + "AU1jPqA7gRAygUPRK13izgwrWajMktEEiynJHdLjeBuR3G9s1nZD": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1jPsYFgoYSuD5eoGYV8Vh2XRR1A1nvrv9tGxmc4t183iJ8zsFL": { + "balance": "1287.578922637", + "bytecode": [], + "datastore": [] + }, + "AU1jPvBDZKoc4zjh862gPpKGEU353HbHDWRP5WXZdbhBTLSwjven": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jQMUVywfnGLBAqw6j3sLYkotQRRJj9ZGpXfP4nfHLBjnbBepB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jQRHsWmvrTve38tJFTBWx59d8etUbrUNjKS7CShw4d3hnxswF": { + "balance": "1586.573212192", + "bytecode": [], + "datastore": [] + }, + "AU1jQVym8QLuYqkKKNggYy82MkCA6XsGAr2bAwsg7nz2U9WBRTpX": { + "balance": "261.627510567", + "bytecode": [], + "datastore": [] + }, + "AU1jQmg9TbyZo1LUhhkyD2L6zgTHvxWXPw3itTQKwCfMXTXVYQPr": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1jRH2W5iuyYhijepipcnzALzzAaymuSa7aan428SaMt6fsRp4b": { + "balance": "1353.207072794", + "bytecode": [], + "datastore": [] + }, + "AU1jRHHBAVQfQQmAQyWgdN5epLB4SsYfAdqXjo8h7CciCvkeVjmQ": { + "balance": "1491.036644662", + "bytecode": [], + "datastore": [] + }, + "AU1jS29EBg39RmwK1JoM8vs41HyXB9CntwK74yrq72roAMRCncWq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jS5k1vmAqhpqM3Ae1BAUHgYH3P4UgYGXFvYDcZwxDteUx2od1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jSFQZM17oQbEBWuymtFMSWvsPFFqHv8c8VeH7Dpp2mVVEa54E": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jSGaUugke77wy2sMqjw1E3Tgyb29nC6fb2skVfBdPMERZLPiV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jT2Eq863NSJzNoBHFAgjjkiyDcEbVUDHVm3526z6wuqy3j7Qc": { + "balance": "892.167073220", + "bytecode": [], + "datastore": [] + }, + "AU1jT7VzxJGKYVVCNSvP7TFP8VkhLHJ2eYKvy8H2yqbASXzX2YK5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jTs6yWwiYbU5ps5RJWBJPTzjcdJbm5TyJhAEs9me8Yszus74X": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1jU6cmhTEM6Z9pwFV4kgYMa1t1RzMMFqv2Wd8e4WhNcQ4FaqhW": { + "balance": "121.287128713", + "bytecode": [], + "datastore": [] + }, + "AU1jUdKDvW61tZvzKK8d6HcFEVZpyLpqgKy7oF9EPg2UZSTAeBni": { + "balance": "1676.010951151", + "bytecode": [], + "datastore": [] + }, + "AU1jUj2ZjPsyv9wBRAE5Xm5RLRw1m8rXucqneRFpKk4tv3vrnaWW": { + "balance": "1882.112187624", + "bytecode": [], + "datastore": [] + }, + "AU1jVdkuJjC8AyXNBfD3D4QNehiqwE4bxeD76PgWTANCQrK7pAxe": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jVmAW2A9v1Ta88cAkHUUy1hwnwhFxG5j74m89MsLv7mZHZnXR": { + "balance": "3682.817186102", + "bytecode": [], + "datastore": [] + }, + "AU1jVtRQ1at6D7fw7nSSkCCaUAvoHEsnzbuJGUoL4guspvcm1fGJ": { + "balance": "3936.854229652", + "bytecode": [], + "datastore": [] + }, + "AU1jVykX6gmeRnkSmR6XQi9SYafTwaZXav7ekYHBwdMukhbBgey5": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1jW2FJAx5cLuFzBZ4m2GYqviumAx2ghVqCD1v7VUy87BFSRrfU": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jW52Do2dm4ZTFFo7UH5uNg83c5ScYkzFoDDDdCjeTwgnhcnQp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jXMBveuuyrTa1wFPVyeQ8Mw5KwL5woyYP8pbN5i6XFb9ASexD": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1jXRdtUxEa884ryrBzUkWqpQjNGJ8LzZ163eFQaNTw3ZRBgCXU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jXnpLjcnSvKDG6gLqEGoS4Gqjbhmg2TXNr9puigGpLikEifPs": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1jXzsuprJejZqvfAHqXgA48EZstXP2nDX6dmvenbH9TEFMwsiV": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1jYQt6xpUygVoR4bnER3hvYuBNAWdRWPw4ggPXqK69TQ95uZHE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jYf8LRcQojzv3YAqRp36oKayAwTUfEkUUspyPEWyxSWW2KWc8": { + "balance": "1513.902498447", + "bytecode": [], + "datastore": [] + }, + "AU1jYf9xjchkCTRmhfE8SokqEFVg5JkTig7dmn11kiMBT2m3h2Jh": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1jYt2ievo9c95ZFySsQhjDPkEveBKbwMGjkTFJqj3nwF9KeZe5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1jYvyHCGiaYrgGwbLPt9hM118SPXftkS6RCbY2Xqkc3K9BfYmN": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1jZXL24pHE1B8BoivrH8gSdSHxPrcs4SaEMvfRqN26UdzTbCgk": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1jafC4KbgaCZc5Lo88whVrk1Zs51KbG41PPSxd6fTLFnPiai8g": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jar3MGRzysxEw5QNPVfTBnQehTYdxW8cwc99jXMnAE3yBE9ER": { + "balance": "1213.956746719", + "bytecode": [], + "datastore": [] + }, + "AU1jayH8eefUF2hvSLMirTn7pbWLPUhLfgWyksHqSKZ28pQ5QBZZ": { + "balance": "5941.137953453", + "bytecode": [], + "datastore": [] + }, + "AU1jazLkyFhp4gREX5W1dnePJbsqS9irSrtDbNNN8VBZ2R7JfpUL": { + "balance": "681.619982732", + "bytecode": [], + "datastore": [] + }, + "AU1jbGu157dDxZTbU69xW3cDcs6q8JUqCuUtMuM1ENAeu3ACRCGH": { + "balance": "91.428067758", + "bytecode": [], + "datastore": [] + }, + "AU1jbLamqfQCPcJeJPRTvZQVU6UWWe9rpqetbB2U1kfHvzrsNqjK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1jbYkQmYqi7o4gwA4Cj7WiXbvCNQG48y745Avv7rvPK7ZyRY3U": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1jbgBF9L1zckasiP1aZVSzwRuGNcuQQAJjcMNRpHFZKMBH5Nif": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jc6o714XwHKgUjE2twLhiDoRozoGfP93Hs3N5WEJLVbJcZvB2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jcAyiYXYwz3JpvLaLwcRSszEZfZk8ev6EgnzznUEcJcbCYcwJ": { + "balance": "1698.814808579", + "bytecode": [], + "datastore": [] + }, + "AU1jcSDuNkaUAxEWz6q8mn9j6fv4LWa71Yq27koNPXkrb1nKRCJr": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1jd91ELamfcDA3NDaTBSBTQtJdoMV6Vnwy536V9a3voK8udNsT": { + "balance": "152.790424239", + "bytecode": [], + "datastore": [] + }, + "AU1jeLaYGKehjtRx2yW5K6cJvjUaJqp5Ay4qFWibtmrvPy5wcF8q": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1jeQcfoMZK22KBG5Dk6SNdPFs5NCgtLcy2YQZZvbQ5eeGaBNph": { + "balance": "1176.211490963", + "bytecode": [], + "datastore": [] + }, + "AU1jeRrQWEGGiK84X3tCNPEFuwL5kTtk5mQvX6Mrv6oEpCLUmZSW": { + "balance": "76482.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jeiuGi6uGvSA9MHCqsSdRcRdwt1ED8EmKd3TmvbdytjWXSHCr": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1jewLiJZQhwsoHvs2JG6Pk7utbeEPpq8E1jbLkLneR9e7rMDoQ": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1jf4jdjJXPPfdSAyv3YFi6ZDg2FDh1f1gmdJiKQHsKToaXToGd": { + "balance": "570.188783688", + "bytecode": [], + "datastore": [] + }, + "AU1jf5L92qb8mHQo7VyajrxUgLjKgXVHxxQp4aVqkQy5pyHafsaq": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1jfQNTgQV61qrcZVUDW9JmQc9XWNFQzzwWYv1UpMkE5e4rmspW": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1jfZ5AvQkcgdQZ8LdK54gHzqKYXKSj17V4LoRPu7L3AZSat5kY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jfe19YrrqVPp1qpnSiNVpteMGmvT1sbFnUYtuzPgAWiYrCTmF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jfnp8XPzJ816MoPsaDanpopL2GPXs7sayw6HS8vggUfTjvffX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jg7BfiPWFDkPf3EEz5My6D9DPM2jByQsxpfdiSzpABYgta2w": { + "balance": "1160.011208992", + "bytecode": [], + "datastore": [] + }, + "AU1jg8ePiuC5EbwUG87yYqW4FYWywL7KbKLPAgh33hTyUE6Ydg6e": { + "balance": "1925.269403420", + "bytecode": [], + "datastore": [] + }, + "AU1jgGpNuy5G2sFiPzYpov4VKDEJEyzYc8CvXV6md3rJJqLJ6DbT": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jgdbwtmjKsYZnWww5QE2QdANDz5uDqgGsJatk48tQiaFjw37v": { + "balance": "1258.067210339", + "bytecode": [], + "datastore": [] + }, + "AU1jgiAejYiHqAoEEPpXGyz5eFYNPUfBH8KQLP6NNhd7zyXbrodh": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1jgjh4RoboQsHW8FXGXge6tfyatACSrg5XPvA9s4vi1exNvbN": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1jhLjXbjFST7sivuFJ1sWKxNhVzv9cERJ2GtWQJM8QWhjTZkoM": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1jhV693niLReWJxcz92rLdjavc7umE8ccSM33MB8qxVJ2GPS21": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jhiGSESLnzWHvAmpPkCNofLqoCeXbmGNe67DeeKHxG31Fn6Gi": { + "balance": "1911.292928904", + "bytecode": [], + "datastore": [] + }, + "AU1jhwJM9rVUWi2PA4psc8pkcoqABV71z3gHk9MNjpkPiqCdUdsD": { + "balance": "2760.932923663", + "bytecode": [], + "datastore": [] + }, + "AU1jiav3qNSc9vSZbS6sK2sfRHraRchWVj3JfB2pyxtZ6Z3wcQ9Q": { + "balance": "1518.740293407", + "bytecode": [], + "datastore": [] + }, + "AU1jitqhieDK8137TNuDfcPD7xk1fL4nsPnGmDXvSoRDsFTn2qxU": { + "balance": "775.917080022", + "bytecode": [], + "datastore": [] + }, + "AU1jj4jJ9DKZc1Gd8mCfsiCSi1dAnyru7dKnkRc3QFi1p4tGTSW1": { + "balance": "22.314346995", + "bytecode": [], + "datastore": [] + }, + "AU1jjACHwfz2tWDy1aZvbKe7CA1obapuRM6HAvpmC6MP1c4wDhqb": { + "balance": "4903.078019619", + "bytecode": [], + "datastore": [] + }, + "AU1jjsEC3LXBeo2kSknnuchar3uuXVtfs1hk1YS8xEgYYLLL7FgN": { + "balance": "981.169981844", + "bytecode": [], + "datastore": [] + }, + "AU1jkAP5hfbd7DuTk3GjmRSesU1b8rcrxw7u5nZFS1V6aKHHNJH6": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1jkm4NuBUgKcf9MkcZetjZ86hupDN5MCcmsdEJXbic7HneSRzf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jks3oapwt3bduveMqP2a9Vfi2SLaG6h19kNSfyVRiQZw6m8Hw": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jmBANUstTi1WYp2kifoH4LHMtrJ353949CiHS3Ww8pdDNAvuj": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1jmf5tQNBEyUHq2QKvHopviH3pLUw3HLwzXTDTSmgDsoe21FqT": { + "balance": "2144.040678234", + "bytecode": [], + "datastore": [] + }, + "AU1jnLz4nm9qn42EDRXvmZxY8wBjUmdvYupAd6LrzKX6KakqZ3WE": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1jnm4foPAgaveeUZTk8QScpUCyR2o5m8UNSAmf1kftH2LMkHvm": { + "balance": "1852.626128345", + "bytecode": [], + "datastore": [] + }, + "AU1jnpTJuKxjhzfPLrq3v2xhoyNJPMw3tS1fJfjw1UPSJWFDbyYj": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1joEkYLKr8qdpC1fbHdLmkjJmNK51YXXocZ16HwN8abwsVfzym": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1joFHmyhnaB7omT9hoL1Dx3KzwzC2a14afZwYN2d2F4vJVUbEE": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1johdbPweaR1XSVFo9hbXsomFNKqhx2tNkiLosWt5Hq835EcRa": { + "balance": "1332.997994121", + "bytecode": [], + "datastore": [] + }, + "AU1jp7dWF6fgbMgdNVB9HYEkbj9mWx4VMqynAUat4XV8bRRVZoUj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jpHheaAfQmAwhJaDr3FJB3fSSiDkRGefH7XzH3ksd54eCPopy": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1jpU2ZQ7bfMmqoYJZ6s4Y8rxc1ND28ua8j2aswQDtex2e9Q9aE": { + "balance": "2531.712750264", + "bytecode": [], + "datastore": [] + }, + "AU1jpUuH4pAsCMqySxWFMGaB16zbZV2iCVeuoXQ8wCXQ2AxxBo3s": { + "balance": "6614.661142264", + "bytecode": [], + "datastore": [] + }, + "AU1jphszgNehVmaM7TysBNrPV432VqnHpR4BLihfLGvFtaPkhGNR": { + "balance": "1945.612393337", + "bytecode": [], + "datastore": [] + }, + "AU1jpktuyNjCo65gTBhtw8ejNySy5ZfV2gQQShTK48zeWy9RqYfM": { + "balance": "19720.766874919", + "bytecode": [], + "datastore": [] + }, + "AU1jpr6oc9TFZW3XoFsyJ7si5zWPzckzsDt9JTXCnp4oTXmpVBgi": { + "balance": "1644.088773718", + "bytecode": [], + "datastore": [] + }, + "AU1jpykqdWXrbqmLF9hPTbqzCBuCKGa39LnmqvUNFeBkqzJ4KaDM": { + "balance": "2322.570053150", + "bytecode": [], + "datastore": [] + }, + "AU1jq2D5NMovBxGB2mqGEZbwkzBkGSJMupyLC3LRFP4Y3DhRQLja": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1jq9GQT8gaYaCxkDoGzFzQbHebhkmRo5ytdbdSTBuy5gy9Mb9V": { + "balance": "1389.303814729", + "bytecode": [], + "datastore": [] + }, + "AU1jqG5tPn9Ej3uZfjktftbnTCdgBSwex7y2botgGV5Qbzp9HWT5": { + "balance": "2432.613341548", + "bytecode": [], + "datastore": [] + }, + "AU1jqN5NVezFcjsUzsediEDGAupwpB7ypT3UBQNbCGYex1FyZAEE": { + "balance": "1355.740148906", + "bytecode": [], + "datastore": [] + }, + "AU1jqQ8bxnhbDhWeXSFiyPDVvnowt5u3Ngm1hUYSx6zqF8Aoh14M": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1jqSvsS4BaEmTL59x96DigM6addk4ihj9PtXduc3cTGjW4cjW4": { + "balance": "617.444857453", + "bytecode": [], + "datastore": [] + }, + "AU1jqZGhmHRHjiV2LxPyXGUooYbXPspx2UZ7KVV96ynxnsoJWqr3": { + "balance": "1944.310842332", + "bytecode": [], + "datastore": [] + }, + "AU1jqpgt7tDMxArdGQfTKVEmzHWMkQ7gYdug53wVRW4XLTzTvmrF": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1jqt6UWD8jLGv8DNjLMxFQDwrrfb5VANPNimm6q371oGFs3w2x": { + "balance": "1334.060787995", + "bytecode": [], + "datastore": [] + }, + "AU1jqxae7ykvsbUhXftbZ2YUb4rHxndLQTPLkxbrN6k1sCSTr1M2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jr7mqko5kPgYLy7cWo9ondtxKPUQSmRk7MPk34e5dj82WETSL": { + "balance": "3015.305162730", + "bytecode": [], + "datastore": [] + }, + "AU1jrAhyzeYDLW7JNBivHWkRogR3z7opys3iyXMmgadNL4vHtaTA": { + "balance": "170.534272030", + "bytecode": [], + "datastore": [] + }, + "AU1jrLQh5RcJYFV3dRn7wJfGrXKHnA1ktLZ5YdF6Uffjfknrwr8n": { + "balance": "2757.590846944", + "bytecode": [], + "datastore": [] + }, + "AU1jrXXXY18vzfKW4aJq55nxX9p6Y5vFVqducfqTSZnX5BTfr8dK": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jrcdwXy9XanCjURHMBgu6dxcWavVEC9v3gycajEid1uNBTW5W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jrmhzzswFa8iDFwswbwScqvPexqmhnBjW8cRTnCgiAhLjUnwg": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1jroP4KAySaUhyPg9qLb44Wg26dh8EseFDxvsocDrTwbhiYkXq": { + "balance": "4387.453066344", + "bytecode": [], + "datastore": [] + }, + "AU1jsPZUQoyVGghbW5mNFkwZpKhRNfmG5iHe2hYkFmSDKxmN6P4k": { + "balance": "98.184818482", + "bytecode": [], + "datastore": [] + }, + "AU1jsUPLnisFryUeM15MN8JwjREdbUrDLpQLw3yeg9SkPfNFPJda": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1jsUmaSAMrsmsTmGpsYDKkugoHg7vWuzfYnkNrTyejRMYugV5E": { + "balance": "3188.266269281", + "bytecode": [], + "datastore": [] + }, + "AU1jscimDT3A1ENNMQmQL5id8nRMeNGS6YZyEVCMFiK5BTH4kphY": { + "balance": "1905.723890946", + "bytecode": [], + "datastore": [] + }, + "AU1jsiBTKJdM42m9fbH1e9miYmGcznZnDx5PBk7wRaYCZtasKrSb": { + "balance": "745.466576906", + "bytecode": [], + "datastore": [] + }, + "AU1jskC5umaVUWY1cSBcb6iWxUjhHSxcBwJVMopSQghfzMsLyFAz": { + "balance": "920.106679159", + "bytecode": [], + "datastore": [] + }, + "AU1jsorGkS8MwaxLFMP6xE9URrFxCM1mY42U4sbhvtBLxQT3vYgg": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1jspdgeB7KtDinxhDHJdB8hTZa4BY7TnXyQfueMQpyzr7qSZpP": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1jsrsA7tyMirKcsBRvEXjVCLvVkn2bbAxcwwNGbU927auameh6": { + "balance": "1308.981731535", + "bytecode": [], + "datastore": [] + }, + "AU1jt1Ej15JP59unWR6uShuoYAeuKB4bC2Bc1iNzYxThk7YjFuXH": { + "balance": "3215.334472254", + "bytecode": [], + "datastore": [] + }, + "AU1jtRWVYszTAJwSDXt7WXtf6XD4EZGw8QXHGEcnBQqNoiuBPhgJ": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1jtid3oZcK1b3UWPmJfRwDRxGSkMeh1rBSrwrPanvVZKytM7qm": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1jtnJLoxHnL7aJjC4FNP5uPh2AbmFDGhB9mPskS1fBV3ELjW4K": { + "balance": "2754.361845199", + "bytecode": [], + "datastore": [] + }, + "AU1jtsHaWszznuEdx6s7wZ1TCTVRf75iGufa5Uiru6Zm34H7x1NB": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1ju1eY4TueQec2ArW79QLZMF6YA3Sdmc8LZXwJ3Nhfy14A4hBC": { + "balance": "4159.461670472", + "bytecode": [], + "datastore": [] + }, + "AU1jvBnrNGbQBNg13PkESY4eTm86zF9FquKyEQg5KseHTvxJJE1a": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1jvMvRUMJGDLWysUQ9tidESmZWBRik4DvpUam1YgS4HVLsv167": { + "balance": "2952.023795215", + "bytecode": [], + "datastore": [] + }, + "AU1jvw4K54qeYrykEBkQmTuEmWUfEjcnpNvzJbUUrBAg7qW1CaHd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jw2AiZGZnmdXVBaJmigqgwDktRPL6YkRbTvJeHDKVJNqCyV3E": { + "balance": "85.671165951", + "bytecode": [], + "datastore": [] + }, + "AU1jw2xcR56xmadB4TLybDJvJY2fUrFNrRuuveZ6GScZXVPX2Y43": { + "balance": "12.709713067", + "bytecode": [], + "datastore": [] + }, + "AU1jwtnYrJHEFibfu6rJ23Q6qkYpmYke3XFRe9WC2phBLwYmRUEi": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1jxauiUnFM4TxDGorNqR3DV79gNzSrkSxDb6PcoPWNu95znZuV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1jxkCqW6cvLcCHoS7ESPR2o133ArjMGNja8Z946ykJRDvTsRVM": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1jy84cWQaKgt5X3U9jRuKswDc9cjWYvXKpvXPSZP7c2W8Jy3xj": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jyGqG4ZjZGxoPYi9bsaAgv2Msy36t3GS7b1yfgfwRq8aSGVUA": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1jyYvfCYBjvMd89mpsybPS8kMWAQXnRXMm7qggoQb8rVaWVJPq": { + "balance": "2599.102228263", + "bytecode": [], + "datastore": [] + }, + "AU1jyib14HZS3GqLupufCG48RjsKTEeYAC96may4CsUbycWLfMhb": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1jyrecwzT9gVA18hbd9S5rNDprVUc8Hyq6iyvk7XH6rs1DANna": { + "balance": "15.225361134", + "bytecode": [], + "datastore": [] + }, + "AU1jyzUvjCSngSoFvFojLjp5QMw7q3PDRqFHtPjUQce9RhuTijQU": { + "balance": "1133.844452998", + "bytecode": [], + "datastore": [] + }, + "AU1jzNtK95s6pWBqCXhM9nF2N9mmjyPdYSukUVkxLw1Q77WJYR8V": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1jziVu3BsmcBgaNYCFtvw9cVfh8j81etMxf1VKPbkF6ozPvCnh": { + "balance": "5202.809161458", + "bytecode": [], + "datastore": [] + }, + "AU1jzpW4kR3HHBR6H4ti3g95W3wUS8WkTgLC3M8KavtBVyAdU62q": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1jzrCai1EvZEvduxThkrS5mh5Nr1SsbP4KMtyvL9UPtXkXy1v9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1jzsQVa51QA6Yah3jRFb5AAHsN6H5JPsm9JAFifxcs8ukXXbBm": { + "balance": "1373.715076582", + "bytecode": [], + "datastore": [] + }, + "AU1jzysJgGZFxn2HkCJkT1L6KB2ETjRMinuvSWqaFGibfn6Zr4io": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU1k133yM2SjLE2QFZMrCNHkKxXaruvLhErG7stbcKigoEiJa4gp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1k19rLWocqwJf9QAjMwPwXWU7AemRvooLjBaEoxBw5LzKucRcU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1k1AMuaA42FDeDreF2dxjEQbkC3pBMFZ2duRdcN3XbDQjVsA8V": { + "balance": "2014.763780303", + "bytecode": [], + "datastore": [] + }, + "AU1k1YV1Xk4So3hYNCxbU9QTpLnvN5yvUDRLBhn5ZQurb4aoveeD": { + "balance": "231.820772058", + "bytecode": [], + "datastore": [] + }, + "AU1k1io4V4AUJXkwue4sVaeH8USnj3T3YQsqx3YeuZFBc1oWQuo": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1k1ozB7ZjCNVgLMDyEEczZsKGuUBiov7qKJeMCksXQRBrxLBvu": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1k1yZnNMNygiyXARLbwCMa7rqSUozCTn9Vb6u2iK4GXpPPbgCQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1k2AgpsLsgwiDZpLJCWkdZNQzjCdqSKTuvBegT7TKJQvR1JC7D": { + "balance": "797.952271686", + "bytecode": [], + "datastore": [] + }, + "AU1k2DEtEtpHLkVH9YzgcfMtc2LFMVXFUxaxm8TYjAFoTM7VZ49Y": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1k2M35tsVmcLHjdXTDWvQ1HVWRuT4EeGuU65htytEPuEVZUkeM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1k2cmhrLFHdDjNmBQR1ZWUvqPDxunxjRfwQiuYHcFC6ondSJ2m": { + "balance": "211.600304701", + "bytecode": [], + "datastore": [] + }, + "AU1k2d6BYpoYnwEogKUwgBB8tcKkcs8aFBTUWVhFprckKQVKo98m": { + "balance": "826.806691601", + "bytecode": [], + "datastore": [] + }, + "AU1k2kXXLFgz3Y7ZBPhA4HPjCqaCUuUKpudFUCmJVjTahqxohJHs": { + "balance": "130.883065965", + "bytecode": [], + "datastore": [] + }, + "AU1k3swBist48uNL6pA9cEJt6BGXKB1tdqbiiEVuPCgsuHXoSb9u": { + "balance": "1616.259856919", + "bytecode": [], + "datastore": [] + }, + "AU1k3yhfSKYux9Y2eaRUFxiV36QxE9Wk6sdbNFgfGwXfthpc43nZ": { + "balance": "754.538764269", + "bytecode": [], + "datastore": [] + }, + "AU1k4LimMAwr3Gcn9Lii3xt731D3pDtrktW1Cy79V6fwvNE8yxui": { + "balance": "1958.190028723", + "bytecode": [], + "datastore": [] + }, + "AU1k4d7Ye9kKrbxDZ11PB15pcertxPgESqHh1FivevmdpLWBSCGy": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1k4x4ooDz2pLRFKkDNR5tyUcQGthNYr3k6CsdoPAq6kGACTM4y": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1k5Ao2LqtVyXx1bH4KTkArud5MbDgLuKap38K9Hoo2DmKCwKc2": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1k5FTNNcGmSeXxKgFnSsVFgzsDiR8eBM5VnQBvzYEQkGwHbSGi": { + "balance": "3007.763349288", + "bytecode": [], + "datastore": [] + }, + "AU1k5zkWYwyLNi1EeeJrasXnvjsUsqb92WL6nbzgm4Q8M2yixCL6": { + "balance": "1972.836624283", + "bytecode": [], + "datastore": [] + }, + "AU1k66YXfkBKmGSp9ejiLCumYJDGocQtzssw51LNq3ZDLY4KbbCA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1k6ciu8Qz3Rbe9yLotvRHGWTYSjo5Mkze6bXqdxU4VJvttJMq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1k6mkEn5q8S1WNQYiNoDqG2dPmHvTDdmpd8JPYJjVf8Ed74uv8": { + "balance": "669.135053864", + "bytecode": [], + "datastore": [] + }, + "AU1k76uSewqfobQnWJ1AsRkLYcoug2PzsLbEHQ9SmSFgHRWcQ9nu": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1k7MEKvNjF3pd8Doi3jaqiKtXCG6R1av6TucRuXfWkCvuSSrUs": { + "balance": "1191.295976267", + "bytecode": [], + "datastore": [] + }, + "AU1k7ULMuuXuvzJsR2kBB9BZ7Xqm81ykLxBpaJiVMWrKfDvJ8fV1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1k7V5bWjnGVx46ykt7WjS1E5JsvMNgP4FWHdpCAjsbNWHyvx4K": { + "balance": "1033.506449456", + "bytecode": [], + "datastore": [] + }, + "AU1k7WTgKQz7y7sA9XnASo2QYR5ZE6WciyNZEpqanLaJxC6rWp6V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1k7ZHaoq48uRNMrNJ3UcqmfB14xPL65r6trj8YYf1hJCfGbvXU": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1k7ddoYJww8ZWxZazARXQLCcNdym9UMa3FXFQx5v67yBdRsy1e": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1k7o97E33TYFoZcUnZsV6o7QE5RHjxJNZdABsJi7gNKfGJ27pX": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1k7qp4eZRiKkGPwWY7jHvwrw6t2CJDwPhAAMUpgvigV3WnBYZo": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1k7ve6QJBPoywM2RXmuZJDGoByf6YvPBzGtHUuWCtWEwfg79yH": { + "balance": "1526.718266728", + "bytecode": [], + "datastore": [] + }, + "AU1k8TXHiKMQmBiCQqU5Rp6Mn27na7oEbwaYMXwamE8MP3BKVT7a": { + "balance": "2942.907231342", + "bytecode": [], + "datastore": [] + }, + "AU1k8WpfBb8crVYcQmWhcS5t5vEnDGW8Z8ZgaEyLernfgaLZxpNn": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1k8tmMCBMD4uUCzsPWTgJApu213LDTDjzL7TpR96aSf2z28wNx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1k9MH4ubVY1Rn1m4pTKiTddNuwAQELPZJCcycfeE5ctbkmijQD": { + "balance": "1282.569873639", + "bytecode": [], + "datastore": [] + }, + "AU1k9mUDyUMw94t9F93GsbHsJBJzYnj81HPzjwGeNV4eC8hnnArE": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1k9y25TTUVYxsubqvUNQP5FXzDBJvursESuF5BtpAiETMhydTc": { + "balance": "972.346190427", + "bytecode": [], + "datastore": [] + }, + "AU1kA7GjKwgDmMt8vqY2kW3wL2GYFq4WSAvpQwCMk8fm8aHWR6Yx": { + "balance": "85.808580858", + "bytecode": [], + "datastore": [] + }, + "AU1kAL8S765v4tGTt2eKmfMHANWWQQdtVCF9TiGm95hycTTW6sFP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kAMoRNMdKnxUW8nvzyQNTU8RwUTiKwgQYjXGWSLpzJcZyeCFT": { + "balance": "2237.811480579", + "bytecode": [], + "datastore": [] + }, + "AU1kANDaCLfY4UV2yevm4oobjdhoTUa7NAMd5d1UZ2dB3kUyUGn7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kAbbhabHeCuXJn8Hx3AEBy18qcKDYw5GEAb5mAARbo6Cpjwpf": { + "balance": "1264.907952586", + "bytecode": [], + "datastore": [] + }, + "AU1kAscdrqpbMzS2fek1gm5pytkB7hVQMamf7Ge1sgGhhwtfbq8x": { + "balance": "5851.592080647", + "bytecode": [], + "datastore": [] + }, + "AU1kBL2opkzBJSeyRUH3atF7Fggv6983xnZUC2R7zFrXYtAZ3TcC": { + "balance": "919.224360030", + "bytecode": [], + "datastore": [] + }, + "AU1kBXCGAt2v6EJb66vVy6C8QxFu67fUopWFMEYAwFZBiytHftfh": { + "balance": "1189.225466921", + "bytecode": [], + "datastore": [] + }, + "AU1kBkKsE1V3FhbNYirn69DWDizWiEeiv31wq7KCEp7vVf3iyn6B": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1kBphsG4SA9FUjxTQKgE4uCyKVsCqq9ki1xdDZxuc62XGtjtUm": { + "balance": "1500.044196070", + "bytecode": [], + "datastore": [] + }, + "AU1kBtKVdHYy2RimTWtXbDzP9D4E2vMhA8m4hQnzrZPsWiGEX44x": { + "balance": "1067.975402263", + "bytecode": [], + "datastore": [] + }, + "AU1kC1Sy2G6uDnHVyUujPxsLGghKXsogtKXXeQZovG8XHGzRKc8q": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1kCZBiDuXgxRLFSxdRzMA9EhuKWT9RKM9Kans8AoGZxB8KcJJt": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1kDSR2bGV6A3q4E2ARmJaE8PnQo64waooyL4fJSBvaH8WCMfJh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kDVw5Wh1uzciXEmxVBGbDkJeS1EnNE3LCxXatv8gFAeWS1TWN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kDqDgouJqErTGAyum8B6ee13YFjLBMEmkfEeEGybuaiR4NPUw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1kDxpbKupUdZiC4wBbv7ASaQKhcHKgFRqt6rGJ1gkVzf4CSZ6V": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kE3WdwBVFY4XPFn5srsLQcoaK7pd8w9WW5kVu5rzEph69hHq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kETnpaMoX44NW1YqUEfdpnv19tMWnRVdfuUNRV2E2NmmJzTT9": { + "balance": "4881.876912542", + "bytecode": [], + "datastore": [] + }, + "AU1kEZ5rJZvcEB84BSARrUE77GoRBzay6fHgovVSSdquK684RXDu": { + "balance": "3226.416612040", + "bytecode": [], + "datastore": [] + }, + "AU1kEwwJNRQSYb8btLjp1q2XFE8L1hRFyhVCZqTGNxxsWoSbuDGy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kEzDhLchjkLSyMpUgBcA1cME63HhuPtXanSvuPUNsp2ZsGfVS": { + "balance": "193.069306931", + "bytecode": [], + "datastore": [] + }, + "AU1kFXmPTRkNs8bNSwzDZMiykUY9Fndbaw95QpeRu4WfBegWHhaH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1kFiEpSc5U4McHvbrUeqNuwoLiKtK5wncqXZ5AM4VauQHh1yL6": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kGFaPo8i68FLb1xzn1gdGeRJBxfo41hFdCWBHWsf5o4KUnh2o": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kGFpGxT6NuGf91jXjWaNmdTLBVf6qbps5ipevrAXdyTCkvrn9": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1kGgVxUDJiiBApDyxkymCXPLoxUW2GhFZnMEK9b5pRkbacfSnx": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1kHmjiQrhZhNHhW9T12EAMB9MAsrYL3ke6nYFK6FvbnsWibCoC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kJ3shw1bdP8hxjinrXzCzPPYEhSUVs7MMPzGRWQ35MGX89Xry": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1kJr4t5HNoNBvwhSqX33wLCrghogWdYJo1SUVbBA44KWS4wahs": { + "balance": "777.637314349", + "bytecode": [], + "datastore": [] + }, + "AU1kK7Nb3WzTTSJRHCp1K3425ZgENT6XJ4W4Avdp7ycxfAFgETXG": { + "balance": "2714.027742180", + "bytecode": [], + "datastore": [] + }, + "AU1kKW75iHpoHnCefstv7EU4gWNDwqscxRJQxuEh8aKPZPZi7De5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kKotzvCKTzFtsZ6riBWDa71JQxFQ5c6EV6k8B26qr92juWNBa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kL3Lco9U9G1RA8h9AE17MZWbiP4m7defujbiD9nYEzDrFhacr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kLFkhZkGLKSVeUcMeF5n856NbVYgss39JkfXkriHmkNKXnuF1": { + "balance": "2901.622312529", + "bytecode": [], + "datastore": [] + }, + "AU1kLJ9G4hyWWGhJFMVimbZgxUPHDYvnsiRA4Wb2dSXRvCjKLFzM": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1kLn1eUJ1E6N59q9t3aUmhcwj9SsTZ6n2FUeMnLtUB2NUqkhiJ": { + "balance": "987.747506016", + "bytecode": [], + "datastore": [] + }, + "AU1kMmhbMuXRL6KSMbb1RKopfk7VCPHgUX3WsmaJfBR7w6QhYkBD": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1kNfn8FLat8NnKozMBEs6W1hYEtQwj1XHZKszynYULMFCrXHF3": { + "balance": "89.170104208", + "bytecode": [], + "datastore": [] + }, + "AU1kNjZ6WoqDVc7bLnqG4uM5viQXDrMe5HszJHsai7ZXpoKucrrH": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1kP8F5QhM969EYynGQ4LZuAomU8tqU567xomQv2iZ7xHEX96h": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1kPU9bpRUK5DJPM1TMFofG57BoXDMPX6FwcU6KX7KnbiHaBnrE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kPgQxiDkVyT3MibfHww3WZowHHna7HNiD2GJ8EFv6Wtm84CTM": { + "balance": "3293.429462820", + "bytecode": [], + "datastore": [] + }, + "AU1kQUSWwbAbreyRMsQuqHfzmECgzxgys15xqaMamCn96H597SHo": { + "balance": "86.336319866", + "bytecode": [], + "datastore": [] + }, + "AU1kRDTgkjmfjnSdXfgu6mZF2wJRsqHozziWvUHCFNXvDKmXYYev": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kRYx5fZ5691WLANPr1wtAkevyYm64ErzBYWduR4yhxXHhh9gb": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kS1XZMJ4q54bg2u4eTFxeAPjBVnBespaHbSg39d5ksm9tpef7": { + "balance": "3157.839236951", + "bytecode": [], + "datastore": [] + }, + "AU1kS64JdHSkFzegyny5HCzZPBnFLih67z2fvNQTCEBgLrRnY6C2": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1kSLxm4k5MXRFYhzJqkMGcEMcPxvvYd3TE3hbA4X6A4YSPfrKJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kSWZ1iKRDanEXopGTQTtNSVFsPHXb2wF5ALU4Fehv43CwiDAt": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1kSZaYz17mNKDkZf9NMWnBU3A41d7ziDuh92MzTf9TXyatFCfb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1kSdrhHWsC2Ry3bxTc6YTPdYfZTKM5qyTuqiiu5oaaazafBdXg": { + "balance": "966.939950601", + "bytecode": [], + "datastore": [] + }, + "AU1kT3VvQTqUKBcAmdBs44A8F3ey3fhnZpfLiAgUtZx7tFRC9Frq": { + "balance": "1038.920026364", + "bytecode": [], + "datastore": [] + }, + "AU1kTD3mLnHVT8c2tCR5sJAjFD5WegcdRJL8Wg4VAYDbwSE1ghLy": { + "balance": "170.945173003", + "bytecode": [], + "datastore": [] + }, + "AU1kTLVWayDAxy7RkzSDPNgmsRdNKuEjjsSeP5WsbwPD6Y2yKCLn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kTagiqdaAHsCrjeDrb45otA2DkbgXTDboaLA4peYVKrGSEVgA": { + "balance": "1579.096627741", + "bytecode": [], + "datastore": [] + }, + "AU1kTooDuK5rmoVTsmoZFA96MH8g8pBQ9V1M8eJXNM2JT1p25SiZ": { + "balance": "78.425942596", + "bytecode": [], + "datastore": [] + }, + "AU1kTqMRsWjoAz9TjHFiCyPpJRWqWwGpx1AvCmduz3G9FzH6XgUg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kUFfydCRtHHTZdK5K4hEvFvyCkfQZmme5bD2cWUnGqUDGgmDN": { + "balance": "3748.747115623", + "bytecode": [], + "datastore": [] + }, + "AU1kUV9fmcHbhHc7voQu9LxQ754HKuA3qnBhysVizXMo15RDY7m9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kVhXEMvujEbqHECc6oh5qxGEDxvDLDUZDMdN1hGGwYBeHczhc": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1kVkMbb6X4kdC21pdW7BAEroYc5DemmHk2pKK51RMjPN9Zu3Js": { + "balance": "81.683168317", + "bytecode": [], + "datastore": [] + }, + "AU1kWH25LF5mJVEUJRaXy5bnnfQ177gLsbDFhcU2gufrmNX96PqE": { + "balance": "1197.983774008", + "bytecode": [], + "datastore": [] + }, + "AU1kWK3hcjGkzriRMXdQJCTDavg5JWQ384JBkuMfg6eJJuf5X4Uv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kWRaqqRL9bf9qjQvv1kbps4rnrTPfgHhnxoVXqKAoXJWvWSTu": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1kWxxpigQHf5PqULBNbaq6rQbS1oSgrJY28LE7BSc5hAghyn4T": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1kWzBqUqLve4XHWGjzAVBJaS1yzjBmZ4T2EhSpfmPgGTfqPwRA": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1kXKPWQ8HHyXTFcJfAX9aTzmXvuK5J1A3MiBsx5TQ4UUyF7kKG": { + "balance": "926.730142327", + "bytecode": [], + "datastore": [] + }, + "AU1kXc3Yn3M1aytTfG8QBHpxnzbH3ZfxAh62ZPYceeYcovoa2kGE": { + "balance": "4117.840324937", + "bytecode": [], + "datastore": [] + }, + "AU1kXi5Z3BYDB2gA9AiZDAMRydKtmxk8H5ukzAp92Dd8D5uGzJ5z": { + "balance": "4031.713760283", + "bytecode": [], + "datastore": [] + }, + "AU1kXkGDaPcY3jbpkXLS8HJU5KKp268Cd1gjCC84tScNCYo3EUqZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kY1PMQVGjUPuRq3ZJvNnJa2FskrtnKPagksz4BANYd9hWjhTt": { + "balance": "676.910595391", + "bytecode": [], + "datastore": [] + }, + "AU1kYGKnhaBheF23EsDKxdCGJG34dt1PG4KF3HCYdorVYCewPL81": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1kYoJrktmJQpB3tu6yQXcjiBcAc4jDseRqtqYPdSu2JURuaYVW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kZCB22NFJbM2eJ8xJwpEAcVghSn5EUK7aFoB787zELq8LNhh3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kZbhAMYiHqDAUpBzHQXiFc8grP3AXRKZoeSWRXcVLMu9A6xhx": { + "balance": "5340.796195772", + "bytecode": [], + "datastore": [] + }, + "AU1ka4KMtUH5fzKakMuP6u3zQcUak8r9cTjHZp2BFvRb497fJVYs": { + "balance": "1455.385252949", + "bytecode": [], + "datastore": [] + }, + "AU1kaB46abWTALDw1J4s5mxPtJPKQ797SeigdqK37r65DCjZWQdU": { + "balance": "1393.683843561", + "bytecode": [], + "datastore": [] + }, + "AU1karZMHYwh11jbP55fW2FShWmy8zqapUopjm1mZHEXN4LiCqn7": { + "balance": "2127.686809876", + "bytecode": [], + "datastore": [] + }, + "AU1kb2xSUUXw3dTRbDjLdERZ7JoEc6ziJa3vf2gQ3nZqjwSTvypA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1kb614eZDcugQgQBc8mHKDKN2H7wdq1RwMKm7zjkfKmkXiYW4g": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kbHFKPPAtABz3KMmTvr5fCyDVW5Dti8TSgBncrkFRzEumi9jC": { + "balance": "2802.543222011", + "bytecode": [], + "datastore": [] + }, + "AU1kbkHQVdRF3JZAF7YVdjEj2zTGfJVKRkRLZfxQQaxXzW9HTH58": { + "balance": "87.389415050", + "bytecode": [], + "datastore": [] + }, + "AU1kcDNFZ39LtSAGPVH3BKUsYhuucEV5GivKQQcABte6fDaLc5xe": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1kcJDReJjXaMMqddENRjD5741yB4eXRshotB5Ltfc4LfnneNZY": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1kcU3nKkXu5ZBa7SfCh4F9cStkDV6oJPmiJvXiKopbyvMVrynL": { + "balance": "5419.390859542", + "bytecode": [], + "datastore": [] + }, + "AU1kcVmLyc2JCwDfyp6jwY79LMvQ3sjdo5hjhcNvt8MT4gThQC6p": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1kci6VJcbiKpoSp83adoarr1xR7E5aSXXLYsy2CEi1bhLeKgez": { + "balance": "158.415841584", + "bytecode": [], + "datastore": [] + }, + "AU1kdQscsusZYtiLhdcPj9yAz6DZHptbGTkPXiGX8bPBHPL8Zya6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kddBV6hURrwKAP5z3JwB6QEb7jj3rPQdpHrFUXjHA3VftKXjD": { + "balance": "3367.406279523", + "bytecode": [], + "datastore": [] + }, + "AU1kddJqXmoMvqjAiw4g1Cmt5dnBwebqA11NmjgMphRyrPTWJ1fW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kdkGXViEYHP5ZGZmJJunYYrKLSjBzSfbxxzXQUcnY7VMca4Rr": { + "balance": "2566.956799274", + "bytecode": [], + "datastore": [] + }, + "AU1kdoPogyPdTmozvytt435XiZBWiHuCVKb6JzxCVWDNjD6V68TX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kemfnvRxvQWWTSpjipjFtnSsDW1vDek69YLz6fY5og1FTMdjm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kf1BeftLUQ4CTyh9eZP4QEE8miNHJFesUiRhMhpuNr6uZn4PL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kfPbqD8Squ5cPUF8BPEdbekDPNUx66ArL1mgpyJjymx4o6jv1": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1kfQex7E2Ff3AopvdXhAksqcjLAUvL6z5UFvsqTkGciD3dVcCo": { + "balance": "3337.787566091", + "bytecode": [], + "datastore": [] + }, + "AU1kfkp1QXVbdEWk696sccTEjD8hbuvtwQwri165CPsVXipCpdQK": { + "balance": "1462.961180106", + "bytecode": [], + "datastore": [] + }, + "AU1kfrjAP4QYG32yA5dhdzA7FQi5emquBg3kzBywdYorfqN2UYxy": { + "balance": "2233.208213515", + "bytecode": [], + "datastore": [] + }, + "AU1kfwda5fvDqHEd2o3SGnacPDaqHdV4XftMqi1pjozHy7P8JdkY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1kgNB2R2bBFfL94yLwLZMM4ffwv2SSUD9Vy7mUJ1iu8gwuiJKv": { + "balance": "2301.905678902", + "bytecode": [], + "datastore": [] + }, + "AU1kgdsi9p9CCQ1s7cCDuNUp2ycpbD7DJ9GvU3nL3zhCLJFg7qhq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kgkSWf99ULKkzVRGaeiJxkDkeurDBwy9mqDPKfzTM7tG4eFaa": { + "balance": "1814.721344554", + "bytecode": [], + "datastore": [] + }, + "AU1kgm9D7C3wNX7xzk3j6JGg8EiuaePQvgLAVN29GVk5fQW2e9AR": { + "balance": "3276.562878437", + "bytecode": [], + "datastore": [] + }, + "AU1kgtB7Kqayckna8sdCSZNq51Zft1zeDp5WxNZ4aAY3PKqfhFL6": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1khhNEsqWSBgymAqHL9WJrjSKWzN6aDv1Tz7ytRTBcANKKvhVa": { + "balance": "526.049483063", + "bytecode": [], + "datastore": [] + }, + "AU1khrK8uax1rrED65XoCYWwmthDXjQnk46sDkTVFY4pS1oD3eAD": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kiT5mcMVdengVfQDUYp5QSY2LEm98mwua36MAPdbHAiEnhg5F": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1kiUe5DkKT3Ran3Lnwq8SPYsfi4Tx949ucZCnvXUFV87VJqnCY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kii78WTdpTHdhzjCaeVMGRZC7AUDRqHwjnck34KDDtTeN3Xw2": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1kjCVYfdUquvvUXjssSe2TWT6jtwEuyBADMSJYKXy3mJm246a7": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kjPKTTgduKfshzUdiS6h9YNkZ37A4PxFCCe3r2ZAHWMsv5GRi": { + "balance": "1606.566287393", + "bytecode": [], + "datastore": [] + }, + "AU1kjgWwYwqVdy8BrZ5bsPvqsTPM1TukQz8sGDhw4F7oMnPQ4FCj": { + "balance": "89.108910891", + "bytecode": [], + "datastore": [] + }, + "AU1kjjVMqyWR5RfGJmNL9Wff2VJU6XioVtK3A6SfY4jQhuWzcU9k": { + "balance": "986.184484918", + "bytecode": [], + "datastore": [] + }, + "AU1kkT2okxA6qtwd1fj12AY4n6F8n3ZLZkQkMQ8LonvuNvnjaU9o": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1kkizDBzLkdtzirYhxjGd1hVWockbukMDqzZv7y7rc4gboJKfx": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1kmBJnC3twdvkbtsgr55tA2x71Udy3hXP6n5MTiDBBNYMPJfvg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1kmC3EkyUni5rCKSXTHwhFs5PqewhL5dq5v6S4NcWEM9JQeoV6": { + "balance": "4423.347421327", + "bytecode": [], + "datastore": [] + }, + "AU1kmH8WG9U8E7iCsoEMtszbuaGe3T2iY7Ppa6DEzmPDJ1uAdBwy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1kmMy5ZM8H7nVPGeqWgnQ6Nr7YRaRJdMrqUNH25mZ2vLDxSsGd": { + "balance": "1329.587285244", + "bytecode": [], + "datastore": [] + }, + "AU1kmRyo2kcbXMq3UcjXjK14pU828HVt4u1TpXpgrvTinAyjNSCZ": { + "balance": "1547.470718838", + "bytecode": [], + "datastore": [] + }, + "AU1kmpEcoKa2S4q4X4jK5ezDCNzUMn9wk6D7JbkvRVkpsdJu3cob": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ko2rHgvSe2hzo7nnM4HrXMyqjvYFhCumuJ83JerWRZk75m35e": { + "balance": "2046.406435172", + "bytecode": [], + "datastore": [] + }, + "AU1koHXk4iLNNgygUneQQJCevaWx7uJmw4tNwCS194Cbo6it6jLq": { + "balance": "2891.760800877", + "bytecode": [], + "datastore": [] + }, + "AU1koXB47V465oodEFrQkUvnpq1woGS5cLaDSJaFS6UpDsc4ghgC": { + "balance": "1011.648542113", + "bytecode": [], + "datastore": [] + }, + "AU1koiG3gY7bNN4AVqnGZFwkfVZNEEKxEYCjJ2C3ZMALSLipWJFU": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1koobkAoLcftKEqPyxbpR1Ewx8iPWNRRSFzfkwvTrtRTWXDGJb": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1kpXYQFVqqnoxNStkwHyHz51mXSo1Yh7dGFQUtwdpVwpo6Atv": { + "balance": "92.561395644", + "bytecode": [], + "datastore": [] + }, + "AU1kpXqwvwiv4Bkzgj9NL5866uEn2Qho14cj3RPCkA5nZfKPtxwc": { + "balance": "933.955472473", + "bytecode": [], + "datastore": [] + }, + "AU1kpergaoPqGT2rM1BXx9S6cYcaPomFTbty6kRohYqSwh8cDB3U": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1kqG28gwFX3jGikyY1U75sZo1EFGEms6DE9afkbhnGbAGsszXQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1kqL5sKU25tPtpXvRQAf8GtAso1xy53vxNztwFEL2Ni43WnfvB": { + "balance": "268.495666148", + "bytecode": [], + "datastore": [] + }, + "AU1kqV1vKz1tr2A8ozChsTLZ2XzMUELVVoUHQtxxgvjxtnWNL3o6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kqvboUDoLEqRbYeh1RGouzkn9PnqjB2StKfbyPEEn1SXe9oeG": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1kqxdLfYbJLv1ve3BH1zks8FSP4V7wzfaprrPpbzLZfJMXyyX6": { + "balance": "3387.185144836", + "bytecode": [], + "datastore": [] + }, + "AU1krMahPG5dM2UW2mkJ4QMg3RfKD33KurUCzRN8L7o4ATVUtTBa": { + "balance": "1428.136978430", + "bytecode": [], + "datastore": [] + }, + "AU1ks6PBYHVxwMMCknv17mrdE2FF8oTji6j9HedwLWou5PTLKaH6": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1ks7xCGU7hmT3VuZE33fDEjHoncKrhfkJazUCGsB8zLbitSZFf": { + "balance": "2722.353913675", + "bytecode": [], + "datastore": [] + }, + "AU1ks8oGLJVjUR1EE9H25FFMr9p55mtTaixdq9k1D7Cb7so2KFUH": { + "balance": "1299.069614648", + "bytecode": [], + "datastore": [] + }, + "AU1kszFWw6ArWziWHyVwfBgzXuAdPLE6MZvcfWH7fEEq82spSzDm": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ktXF9MuRDPhzUfBTLFk7daJTmqBgfmJNGdLnAACzHaC48cStH": { + "balance": "1521.738476010", + "bytecode": [], + "datastore": [] + }, + "AU1kti6iC7PDfD8UoiMK5LPLwnHVoGMFx2RNZ7e34t8q812iHd3U": { + "balance": "1625.829545416", + "bytecode": [], + "datastore": [] + }, + "AU1ku6Dx64Jd8kLDDuLbu3KidTGxct484enUEtcWHyTDmuvwwGg7": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1kuNrUqpyrzTx5J7ZDmvmbhMmEA4ZwLRCsV3bTgR2aBEE6Abfd": { + "balance": "4783.759252243", + "bytecode": [], + "datastore": [] + }, + "AU1kvdPbbWo6rD7sTieHgZPS38LBhNgVRkhCeeW7pyRNJ45k6LmE": { + "balance": "4285.438249143", + "bytecode": [], + "datastore": [] + }, + "AU1kvgrMm92AZXiFynD1MMLDAKAP85ZxQUhwh2tSPjDraZzzk38y": { + "balance": "5007.331978898", + "bytecode": [], + "datastore": [] + }, + "AU1kwDnjzPAWZux5aqPNjymWxLKr72rrHPyH5KkSMXaZcQov9AV7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kwjRV1Z1c5mFyfj9Z5vXkuywT28uq26jEQYGg6tZ3hdLMYjco": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1kwkyLLBdFqh55PfcsnehfCU8xKd8qWy9gVeQiY681fNQu6SLf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kwqnARZGSypoYUxcAJsntrSWrmaj9Z5kSWfuJKVjVznYLqQ57": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1kxB3mvVRumbL9o3cxVzzdiapGqTpmB6pWySZ89LVZ6qd3L5gg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kxBZWFqNAjeQ92awntYLVkemE6orCuVRBaUoxRyxaQNpqRpi3": { + "balance": "3941.059535874", + "bytecode": [], + "datastore": [] + }, + "AU1kxbdtFqnZEfBMT6jPdKdZGZ4xXjeGcjc2AEuZXgd6p7qYoVuH": { + "balance": "1748.768446175", + "bytecode": [], + "datastore": [] + }, + "AU1kxdLbJz3qCWqXLpdt7H6jP8JoVagcKyTCKbaNyoiF6px55qAa": { + "balance": "1115.517177565", + "bytecode": [], + "datastore": [] + }, + "AU1ky6HvnBexzPPNuN2y9GnE6SFNc4eSYFSZ74ZqY7a9ahToMdUs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ky7TomqTsFBgir5nTsMYTLEWzwZgU7JEAWYwQSnLBDVXNQ8ky": { + "balance": "6444.152253641", + "bytecode": [], + "datastore": [] + }, + "AU1ky8mZuzPhFuiR3wFpCQkgvqFNWuJeQ3B1y5dpzZQS517ayRN3": { + "balance": "1605.619656666", + "bytecode": [], + "datastore": [] + }, + "AU1kyEUw4oeuo6PEAffMQx1AMdPywvpTerVcn7FYRVgfZ39Ju4Cm": { + "balance": "890.934747796", + "bytecode": [], + "datastore": [] + }, + "AU1kyEbsskckikX8zP1PM5zjMkkRWnuFuKQWt5dM9HDRegrRN2va": { + "balance": "564.875502517", + "bytecode": [], + "datastore": [] + }, + "AU1kynsg96HV4Eo4rCj51MkVrAPchwXo1gknNmRtiJDKnMpSdZYY": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1kz26zFDfYzgf4rrKyLag6ER9SMjJrQgWunw7QgT624ahqQmfX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1kzhBoG6bVkZzd9YS9JWoznJGcksbMyzwoyeXD9SmCVffbcfzy": { + "balance": "1944.731790319", + "bytecode": [], + "datastore": [] + }, + "AU1kzm4DzqvUNjtAnxtsgguZJxBLV1mC4Ch2U5TifkmK9ptdjBoR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1kztHdDDvVQDgkGSibQoJ6H6SWA2G94ewhEr53F5pz5RzfYTfh": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1kzucj5izBGmnZLfL8CyiKj4bqfBk6B56fDies6UjujL1LM7RV": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1m1ChZExg7JZx4ejkAJHMy27Zj8wZw11KkAHLrFv2wDNLvE5pV": { + "balance": "802.537652329", + "bytecode": [], + "datastore": [] + }, + "AU1m1Re5x5QFfCGCSZrrrrsAc8uniCjDDCfU1MKCyf4xhWD9Nn5v": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1m1d2hLkFh94KCU9VmFhu9qSQtb1GJdhKrf5YBQqbKhzmDDgsB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1m1eypzykqLjeNDJDtTSZd41TLLzypUZaXbMHdU6rsvLzWG9jC": { + "balance": "216.844381777", + "bytecode": [], + "datastore": [] + }, + "AU1m1vu3RbixwzfXYdowWHF61PfpnjiDDu3V6kJCADLp53hNfvic": { + "balance": "4034.404348781", + "bytecode": [], + "datastore": [] + }, + "AU1m2JVRJfbAW7WzBmSxu1PZqaqWWTBwqCB4vxcQdWPdf9xcVZbN": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1m2PRY1mZc9cbXUFJyd7wLTx3UK8EatPhoPREMZ6EDz5G53xuY": { + "balance": "2338.958992689", + "bytecode": [], + "datastore": [] + }, + "AU1m2T6dtNKasYe4RpRRQQKqRCiJf2NTp5jk9mjXvbRQYCWFtDrt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1m2md8fQToCfHL6AMpWm3SKWr7tSkYYGiEN1QKuuESD6QQhUKx": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1m2yVuo1wdtVc3F7aBmrbiTk9fbiPDTdrJ6kfcRrK1oukyTE7x": { + "balance": "2195.097668119", + "bytecode": [], + "datastore": [] + }, + "AU1m3HQK3YXBRt5MTPo39vVJfgYEvQ8f7HuBh9Zpf41bgj7As822": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1m3MiVKcHuhXLpewMqUqgPgAakbukHPVaJg3VJsriub9M2LK2g": { + "balance": "1372.371066298", + "bytecode": [], + "datastore": [] + }, + "AU1m3Ta4pDg4iYvUJQL5z53veo965QBthqtDRmZev42M1C7ugAEJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1m3V7Uc8QrK3nwawF1JY8fCV4RDofVcX1JSdokXzMfrXUQ7njF": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1m3YmmDeFfhGs4e9PM9u92tBnWNLg2TcTPa3T2VM9jDmBsJWJj": { + "balance": "713.315516735", + "bytecode": [], + "datastore": [] + }, + "AU1m3gg56hSTJtbnnwJHu9tyLU96UTvV79Pr21xSpzaffQZe9mvw": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1m4AerZ5qzqWTpqKYikVRA8n2URnQqbKYBZ6MpzVCrvH9HS3MW": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1m51cfNJGy8P5iSp8UR44AofPZh6T1vjkrEeFUWjKQbkKaR8G2": { + "balance": "1503.928119134", + "bytecode": [], + "datastore": [] + }, + "AU1m5TT2mxqez3vvrvp7K1AnHQSkY7i2gDaax4Uw5NRirJ4gdb5A": { + "balance": "764.736611138", + "bytecode": [], + "datastore": [] + }, + "AU1m5hX135fsiR39jE9gPkfhpEKJNnU6UAGERjdkJ2an34b8HyBH": { + "balance": "1823.286640207", + "bytecode": [], + "datastore": [] + }, + "AU1m5mddeCVgaC57HJ5vXtoVCvWsxCPh1aXUtQMwiZkPcvm8UAUr": { + "balance": "672.252416913", + "bytecode": [], + "datastore": [] + }, + "AU1m6T3Eo1Aj6LGxvVobNkLjnSEGCKMawmEsk4ki9xhZkyKYFbRw": { + "balance": "5339.320202355", + "bytecode": [], + "datastore": [] + }, + "AU1m6u3hhfetvtU7oXCir59erCcyU6d5qqaqNorsz6Am6vegUS95": { + "balance": "180.850752668", + "bytecode": [], + "datastore": [] + }, + "AU1m7G3NrRvfdju4co7EXNiA9V4LBmt5JaJwRV8pUKcp4EXaAUem": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1m7Mpbd2BUn2T8xA1cV8rWjopYyiMbGjWKdohf9sRfJnbbLy7W": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1m88oMVR8Er2ztWNk255nnoEaTo4X18X8x5NfbBqHADmF5Af9d": { + "balance": "2014.877673312", + "bytecode": [], + "datastore": [] + }, + "AU1m8EKzUCPkTsecFa6rDmBTdmUX1UjLjJcYXTsXBtLajzDJGwf4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1m8GyJeHKTbdf4c8tHgAR3DkKUzwKgLWS8aQd8mjnC7Mb7XKfS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1m8PjkkBkyiZMHefVsSR3MEvDT4RGoVJDUmuRTseVcpa6JeM74": { + "balance": "1537.768454839", + "bytecode": [], + "datastore": [] + }, + "AU1m8WEdJXtohK1J6azus5FzfhYkXmZm1SQRuKzbuSN5YTm5UViN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1m8kaEEYVmcVBqnJ5EdK1EBh2wZbavg2pXwLENK7EmMJzWSFDV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1m8rJuRxsUtBgPRjbUdLrTGv5nwXfh9yuGiTova3DTMs8hBDV4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1m92TMjwFZEWFM5nAV9xTwzqkoRsubq3xvRSJFVT77Lw7Mr7kb": { + "balance": "1359.643198651", + "bytecode": [], + "datastore": [] + }, + "AU1m97tyi7hLFiJr2NKQCnc4sHJpBFGW48fN8BuARHGdSUHstAG9": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1m99ZFV7Pp8akMatTmvbpiUBhcxFZQnh5Y3WQVsN9Krosbumvg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1m9GNHAAGKhKx4UpbRY6QUniwwHUDceiHNfg25i7XAKywvCz1M": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mAegXWiotGkcV2msRo7pPwmQt4CnQjC5JrCnjxSxHdW4aumN5": { + "balance": "2742.390822054", + "bytecode": [], + "datastore": [] + }, + "AU1mAyFdVaEntFHoYTnaGdGdksVPA6Qyx283JuB6qZjdks5ZdDCh": { + "balance": "590.118298262", + "bytecode": [], + "datastore": [] + }, + "AU1mB1NKoW5cvSJn5DJCq7gjhVqZjK1FWArdnf2EZiq1JdgPK3VR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mBi5CgmAoxigAQ5ATSp5dqG8kpDqgfAkERFYdWfQ6NWy95G7E": { + "balance": "3640.275955168", + "bytecode": [], + "datastore": [] + }, + "AU1mBm2MtURXtyitkeXLNmZ1j7VzqmMTReWhisJQoRfWQVJERAda": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mBwkguCdxsZXoPLdvK6ghXiQnBm97eWrw3VdE7XrWAnKYuWKx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mCtUjM832Fg6Ri6uxd8br4y5vQhfp3s28MLnwC3Cx58gikhvD": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1mDN4LGkKq4eoHacXq8idHH158m7ctAfiFMT7tgS4nJzKjwBva": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1mDaGdUUZAPHqNiuphofmNz8aXBCehMec1DDFsqNeDeywXQFwo": { + "balance": "1430.408622824", + "bytecode": [], + "datastore": [] + }, + "AU1mDc1rGSFRciwcq7cCy6x1JrHPqH4UCBdpWozTCn92NTwsdw44": { + "balance": "931.775489346", + "bytecode": [], + "datastore": [] + }, + "AU1mDjpvGaEtatNRPRGND1JB6ovCoQn3EjLNsqqZEhPnjzdG2qX1": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1mDjrvS2MGVXvGxzrqZj9mUfCaTsTszC9xRXNWxTpW85pCZ8Bk": { + "balance": "3514.030722516", + "bytecode": [], + "datastore": [] + }, + "AU1mEF4XQ5JjfFu8gHq4QBKqrWBnaADHaNoSzGazcBHdMqFLUMwt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mEJ4wQqzkhjnS2ba3DVbNESnV9ds6qd5JARJ8zRPc5xuMHuaY": { + "balance": "185.643564356", + "bytecode": [], + "datastore": [] + }, + "AU1mEZgdrpKmfGZo7dYmFPz6PP3TxQtgTTSoV3LB3o67hoNWpqZu": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1mF4gkRBh7HRm3vwVSppB1teLsLcpgMHF5WNMT4pyUAv5PZqFu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mF99Q2JRM9TCxfdZ2MLyuYbdJKSmGhBoWKVspa9rkLbMxknVC": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1mFCY1Ys9bK7L22CWrmQyxYZMUQ1YWKcD9DMGBM7rUUKY5QKxR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mFMR8MDnLnLpBF7jHPkoN9DmiMtN1q57f3oNggmZwSzuURaMV": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1mFwbj5Fjgb1STfpUrS6ce3NSu8vVQLUBWFrWhUHus2Y1Qv6Ck": { + "balance": "2591.136340803", + "bytecode": [], + "datastore": [] + }, + "AU1mG3ZqGLaAh48sEUpJEctosSk5QJ6CBLTdxiwNvXee8hNikFEx": { + "balance": "4220.788949228", + "bytecode": [], + "datastore": [] + }, + "AU1mGF3m3TgqN4AujCqVJ2qRWhnQc7uWrzQZ1h9rzT68Wt26RDHh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mGS9rQTddSrwdXsfmqU41CGfkodk6oJEbnYoDAvu92rReVFuK": { + "balance": "1915.700533807", + "bytecode": [], + "datastore": [] + }, + "AU1mGn9HmFAj1jE69pNQhBM7X4tiKhEEV9gjYkpsgUn5Zio9Gxt4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1mHYSh77gSKg2jDLM559f76AgBus31fdEaJwoXCT2X3bbUt9CN": { + "balance": "1649.410075831", + "bytecode": [], + "datastore": [] + }, + "AU1mHcfhDQtPYzDVrkDK4DPxYMD7dQmHViYoF6eGffA2f15ijKUU": { + "balance": "127.848811527", + "bytecode": [], + "datastore": [] + }, + "AU1mHdw67awrrJCvhfHkrgYL6kAq5hDQjAkc33muBVPoXy81it2o": { + "balance": "1152.465326030", + "bytecode": [], + "datastore": [] + }, + "AU1mHrdyf952wffjJhom6ESzfXo51NRTTTK6QKjHeiFZPLyuUvjG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mJFQb3wj4j99y9su532vzJnzU1G3aaiJxgqkPjoH3v3hSHvgt": { + "balance": "2084.500238341", + "bytecode": [], + "datastore": [] + }, + "AU1mJPcosaJ6s6an9seNPcjwQjuQmuJvrXwW83zMY2YdVEmdptwv": { + "balance": "886.040273134", + "bytecode": [], + "datastore": [] + }, + "AU1mJi3NnPV9Lci4QHGqB1ec4Xj2zAfBSCrFcvkpVGzNmPjaVF8w": { + "balance": "1350.384164336", + "bytecode": [], + "datastore": [] + }, + "AU1mJiWVL3SyzBgUtN4GGPmfQRyGUYkTHBVQ2V5Km62UCpnNz7xH": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1mJnb9Vt8GQWb7XNBUYUjZRmYLAmMF5g1qrQrcL39o17HzSLsW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mKHiCwZpELBe7RUPNrKfwuruMwE7agp1chEyw7Nj5KHccTXoJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1mKKmq68QRkmup5Rr3mYUz7KSM7bDVqVWbvV4PQFyGTjWD9fRp": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1mKmhMaiY8ZdKTuLNv4Uy58xncZgqMs8aHiAXijcaVpGqk8mP1": { + "balance": "3833.875740410", + "bytecode": [], + "datastore": [] + }, + "AU1mLAVFgwGA74SMrqGXRNtAk5g5zdYkDpDtAaT9wq2AuETCVx2S": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1mLpT9hJArAcLsv54r4vYLQcPtaawR2D5jeBTFpVhKvkEjCNXK": { + "balance": "1591.427174366", + "bytecode": [], + "datastore": [] + }, + "AU1mLzHKozsU88FPxPJYERDEBBDTrJMSYctj5DxUBtoE7JdLiYNe": { + "balance": "3743.946694631", + "bytecode": [], + "datastore": [] + }, + "AU1mMY9d9fwoihEfW5dXj2n8SgueGTyT1ikjWwzec97RkkiKQmn8": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1mMmNYLnBMkSzBRRDgLpyQWKWdG3mRoQeBpxE8gTrFjhWrHzew": { + "balance": "2375.079406335", + "bytecode": [], + "datastore": [] + }, + "AU1mNEhgBRJfLunsYuTtCRrzxY4ALnsrKuLkrZeQTGTGhem4LKiQ": { + "balance": "871.714137438", + "bytecode": [], + "datastore": [] + }, + "AU1mNFqWWJ5HV6ZkzW8SMVUWwuRUivxtRBPA4uW8VL52S6BED2ht": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1mNRa2P3Wa1uwU2AFhcUijHQyL7EXGVDtwrL8XkqWtG893TbtV": { + "balance": "1515.305247522", + "bytecode": [], + "datastore": [] + }, + "AU1mNdz9H54Z1hwn3wVSfpBacWs5UBGuN4JoWqT2TsNb7jcKVhML": { + "balance": "3598.370366537", + "bytecode": [], + "datastore": [] + }, + "AU1mNnnvAa3VPyyU1H3LVyppJmN3vcdwixc4EnpzugeBFauNqHj8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mPEGFixKbKxjtkiVTsARLBmBrAreXsfBw7YEpPz7L3GGeRft6": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1mPEvQQLTd53QVv9WU5z3iiHAUqcW4wHoExxaPCDYzvZ1YSzT3": { + "balance": "1803.429548972", + "bytecode": [], + "datastore": [] + }, + "AU1mPtvjmDhic3Vhyv9pTU3kvg93EP1Bak743PWsWE9vuyQNWQSW": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mQABUdWBqCZDZ8oadQdSHNaDDHAx7ZCEv17G1rmwx7uQiJNCp": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mQtA7dba2fJV1BonkSsV3Kxa2ASQkNdktFzwH1SvyiKbkpKbF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mR5yyvVtiJrjJSjSPFUnkQBBVXAArAPrkr3dAc4563GQvdw2w": { + "balance": "556.971293318", + "bytecode": [], + "datastore": [] + }, + "AU1mR7Dchuq8q9CuFhL8A1BwNKFAyb7XxYwTWqtuYW2sMH7B1FKK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mR7sqmFvb4Qfs9QiZhrV17FD8RfV37Q6rYPj7HyXtbnWXDKS1": { + "balance": "183.993399340", + "bytecode": [], + "datastore": [] + }, + "AU1mRC9MbpvKY9qRaqwH16nn6PSKYbcC7tCDyBjQ8NQwd9qcE2uH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mRUUSN6nfC65mjXyWFjYbpep9W37NtkYpYwJps1SUYXEw8jDR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mRkNDYBNmFLhg17NXo9h5AUMhSXKQ6MAABPeiCCVfQ7Mwki93": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mSKEos3QsTMFw76Aa1DsFDXg32PozaCdHea4t87SvSA6Vr3x": { + "balance": "2490.024850715", + "bytecode": [], + "datastore": [] + }, + "AU1mSNcEnLYvgJg5Qy9pd9wsxHWgpHam5BcuusG38Si2qwMjYf6Q": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1mST4b9EMgWbSdjEfa8kz26GvZB5AjJs4MSkcF5JvGEbY7EnNS": { + "balance": "1106.400880204", + "bytecode": [], + "datastore": [] + }, + "AU1mShp8Nzk3gSGc1eEZak18qMN1Era2hsDboSNyyL1DUofnUi42": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mSo1Y2iRvRtDqTyP7En3NvRMymjQU2dYsWkwSCpGHQhiEthRY": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1mStjZ735ycyi3q4JVQNfKcL8pD9W6gvsPx26AYqQUCxP418YX": { + "balance": "1078.857829498", + "bytecode": [], + "datastore": [] + }, + "AU1mTmysFgy4AjrkWuXLQLaH2vdMdacYFTtiWXpJV3qZnvJ9gvvP": { + "balance": "783.959732757", + "bytecode": [], + "datastore": [] + }, + "AU1mUQBqSjbTsHhA74hP4UGFA7WEvELTHdinCTo5fFaNzzXBYPXZ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mUWGE7VepjGfo49pwhhxxq8YyTpKKUftoQ5hRVCkAqq9eDWRu": { + "balance": "588.665747023", + "bytecode": [], + "datastore": [] + }, + "AU1mUWxqA3vGJfdAsEbsQQW5srJ2RKe8AaBfBZUV2zRrZQDNc8oe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mUhhBioj7oaunGM12Fds7y3JxjoJfeCMmzSYpYHSzf6vmSsv2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mUqafJmiH5krzL6igZ2WQRXkk1s72TUdAFpjsoK2HSBjN6smW": { + "balance": "3363.092109092", + "bytecode": [], + "datastore": [] + }, + "AU1mVDYNjU8txV62ovsLKBzzmBoRGxm2bJmWSyGbNU5oeKsuB2Yv": { + "balance": "3260.955596830", + "bytecode": [], + "datastore": [] + }, + "AU1mVc3GrrNgxPBNDjnoNj6p9qpVD4t5ZX6B97Hvy331qX5L6npz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mVhhoGZe4fnbwLJMVWyEfd7NwK3681ZpmJoMdWpy4pV8mcABz": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1mVyQXLzkofYGs4zrKvEujBZQZLoUEgHF7XmNY2NoVCE3FzhcX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mWEGopZqnwNchcujMzfWZJuxbGxjWDwtsh2NfzqcyNxYUS4VQ": { + "balance": "1244.021511344", + "bytecode": [], + "datastore": [] + }, + "AU1mWJcttp2XMpNHmihDvqiM4WPdkkJTiwVmkjYLnAoZeUxYc5SK": { + "balance": "1869.584228506", + "bytecode": [], + "datastore": [] + }, + "AU1mWRL6VSi8bMTZS8QVSB78wUVNx8J8P1RRVfGN2s6oPSpBqnDK": { + "balance": "1240.321532549", + "bytecode": [], + "datastore": [] + }, + "AU1mWYbGVixpCgsQY848EMeMQ7AhPokZx6iG4QfGC4dgzUtCT5VD": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1mX9q5yjS5ndmGQ3X8FUouk3muuqpmbqzhSrrY44WnaH7pTJ5b": { + "balance": "154.060776475", + "bytecode": [], + "datastore": [] + }, + "AU1mXJ592QGH9526BnG9DwWtxiBWUQdNADxvB2xSKszZrZ88Hu4K": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1mXLHjaJyfP8jK3zBbb68nsfBA835uwLwV7uVmCnyczwxe9kVS": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1mXMzrsVL5rp4cvxqMEUTYUmWqG4XfKLVqiLcHmsnZVYqzaZCw": { + "balance": "6510.168505096", + "bytecode": [], + "datastore": [] + }, + "AU1mXUnx3Yhc4opcyAQdsw4eJiFMA4ErxRswikkK3H4fbf1Sk2eP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mXc3F5B7sHwsU8y1QeV1udmTM3WUxe7mM6cuHkqqMhbomhxVs": { + "balance": "6674.505452544", + "bytecode": [], + "datastore": [] + }, + "AU1mYFbicJjLnyxSpmAtKZRvK7VYNUauwqyqPpEATqtspSx6Up5T": { + "balance": "1293.038968158", + "bytecode": [], + "datastore": [] + }, + "AU1mZLA5FLEWoEE2kpdVivRMKdoD314iC6JerMhuQspT1LGGn5Rt": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1mZfYZSacY63hHHev3rDAPdqBrzZXPAduxRXVtqWo6D5Wkbfqq": { + "balance": "1878.771309094", + "bytecode": [], + "datastore": [] + }, + "AU1maDyRDKBuLYSJPENDCzWhWpi8cQACBjd11kbPc1na7KaqF57y": { + "balance": "1036.477839951", + "bytecode": [], + "datastore": [] + }, + "AU1maMkTQ8gP7cX5cgikqjyHhHTTMbZZfxTSAzUL5Bt3QY2onGtc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1maVxfhbhLPdyhL5X8PRXkveN5DXVBaCCpRwzF7HzHRCPUJ6qV": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1mafwSgvEFoQEsYuA7BMEHaEAuns6iaXrKfWsmr9aibmGzNgd8": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1maq7Qkoid21K8MCrHaLsBENz9CmZzy2UAdn1T17GEbPBQb9hX": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1mbA1ruv851xeZGbCS8fu2jtsU98XJJzuXANhRraxzA8LvUCtd": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1mbRPCpkuQPdbJVwhZ7tyYTkWSEP8iWZV66nh81VVLLrgQxaAC": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1mbfGhwfYhGxcnfMp9hyGxD5bX3pgXn2sAjm7s147Ywd2Ez3o9": { + "balance": "1563.594119292", + "bytecode": [], + "datastore": [] + }, + "AU1mbgPkWm4rotXbGThVrgoEPa6ZyEdE7vHtUrZcpdQPQT59k7au": { + "balance": "10.510157142", + "bytecode": [], + "datastore": [] + }, + "AU1mbzpr1gzAC7HqKBqbq3ZDUGo1CcEQCmnwNnmXy3RWVbDVRNFt": { + "balance": "594.013453555", + "bytecode": [], + "datastore": [] + }, + "AU1mc1mVkxQBM9GrGZsebFBUVQHLKcV3NtqrNXEXjZ8e3ZYyRntd": { + "balance": "2070.916789663", + "bytecode": [], + "datastore": [] + }, + "AU1mcY9NZwmexHAXnWoCLQZLVn3LjTzTfS742BeQwXBsV5sdriMZ": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1mcv3ZEoRq3aSW54QJHZxnFdBW4jpCZGRTCciUZ1Xp2sUToRuu": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1md62JR8tC5qLEEJhtqgASpRErCQq9MqRKgNYePEgXnRz8aC4b": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1mdMZ2xtGZ2cg69BgU9tGacPDgy2xEvHHwqgBasZmpipd2dFQE": { + "balance": "623.734824840", + "bytecode": [], + "datastore": [] + }, + "AU1mdYyozHvcQtepLVWKgaVgzuhdfNkc8G4A62Zu7Ha6p9dPN8hN": { + "balance": "715.339959993", + "bytecode": [], + "datastore": [] + }, + "AU1me2rhFSBkZEQYUByY4uzMWRzHHwLZzewFmzhW7w4ussbkx6rs": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1mefxZig17wCWaCpRJZ5cyFpTay63mSggyHwGYehLYDMrCTPXb": { + "balance": "2422.862496640", + "bytecode": [], + "datastore": [] + }, + "AU1meoS1ohPZ69f5rNTC8EKvxfEnTaodnPDmPY9QJuoAZTKyq5iL": { + "balance": "1077.855556521", + "bytecode": [], + "datastore": [] + }, + "AU1meqMSvmH3tgvyQLZbwzQVbR5utrXPxDLxw2bYjbcqPcYr5nQc": { + "balance": "2156.933701050", + "bytecode": [], + "datastore": [] + }, + "AU1mfBMeG9DRwE15eVuT4ZH4BNsQAr1h8ZN2xfPPq2BCaaZFBUGG": { + "balance": "87.594905056", + "bytecode": [], + "datastore": [] + }, + "AU1mfBUdRrvK3JwpTdTjqTCV2SmPzZJ87bSUgBUQrg5zDTfKyjz6": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1mgdcodiwX1JRwT5hkUemQPyvok2yuqoyKXU1xAdwPdcLiHfLY": { + "balance": "5002.546217643", + "bytecode": [], + "datastore": [] + }, + "AU1mgftUBanw6Zg41qGWfQxTAiXEPABNpjhVLrKcLuE6s3anp84n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mgiDQxWZAebSLZ7S82p7e22iitujEmgbjjJMijvTczVJ1KJSa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1mgqxzFsfMBCbC7XrqqbDLSQtNUXLtbhMdX9Q2Z763UY5EvT2p": { + "balance": "88.259184226", + "bytecode": [], + "datastore": [] + }, + "AU1mhTFQFzvim8HxqYknAdLARHYo8tuneoe47CKzzMyCwXDb6dhZ": { + "balance": "668.754552352", + "bytecode": [], + "datastore": [] + }, + "AU1mhs2WZ5FQD31ejFAaUYYXGdYVq5XGaYqCCaq28uV5tjK6fXZw": { + "balance": "730.724718095", + "bytecode": [], + "datastore": [] + }, + "AU1mhxqmqqxUQpcJaVzTU3a8U6mzYUy5zeyH6xRyHNc1Xtndw7oh": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1miAeKGaqzH9gJB9Ra9Wnb4s47VdvDD6GZmLmzjVC5Zkdm9JYC": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1miQGsga5YmXb6P3KMZjRL6aSTULNyRXBaQadRda9Dx6tn9xNt": { + "balance": "1517.718676844", + "bytecode": [], + "datastore": [] + }, + "AU1miQgixAvREPD4ao9JBS8S5xDnPrkqpsWzpzCpqrDUfXNxH2qn": { + "balance": "2514.516437036", + "bytecode": [], + "datastore": [] + }, + "AU1miohmkfPSig2wYu8GtaUf8i5WkiRtVDUtQ6c7hq2n3Nb4z7YL": { + "balance": "2816.174466989", + "bytecode": [], + "datastore": [] + }, + "AU1mj9A115VJmvk6BegybmJe6dHCoVaiVsxrLHBYsixFq1BriR9u": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mjGa9JKzfHsdjAuRF15q38MznDUevoHQPbA2qBU4DNvE6U1yg": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1mjvbENxC1H8iWQwuc5rJmXiqJRcEPFBVEpc6HLMw5kZTjQaz6": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1mkQMuDGm8ZQdT4qRxzDjU112DNVeTG5WsTvDqPp1kKpTfKZYT": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1mkTAjjss46zwwNJ3YaNiGASwR36KbykhHm4y48bgxp43onSJk": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1mkX6tPDLuoWsEE4wwEc3fTcGZM3ynEVtmLdYs7c355gWxhPkb": { + "balance": "2538.486850289", + "bytecode": [], + "datastore": [] + }, + "AU1mkuHb25q3emKEWvBHH63SNCX5dSPtxXuuKsxwSaZ7XL9CXsXU": { + "balance": "1665.236902854", + "bytecode": [], + "datastore": [] + }, + "AU1mm1gcXcxkRDgszVpjGM1TAZX6tavfZsE6g7xTBpzGnCVEnMgX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mmDE8H5zUBxM38fXZ7RMDzj7jRTt3WTrUMzxmniqWmibcLr9A": { + "balance": "72.607260726", + "bytecode": [], + "datastore": [] + }, + "AU1mmymxxcs3izaFtCXUqV89EoYVA6in8Rzqmg8nKDGx5LADWQMS": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1mn2245pMLKWRawqHQQ125QEHrbU711XgYArSBEUYfbXs84EP6": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1mn9WYiuqFspCZD5VHGp4yZoqHDr1CxvEEFoXiNhJ7VRSsndYT": { + "balance": "2007.134359611", + "bytecode": [], + "datastore": [] + }, + "AU1mnAwch52qgk19pZRxA2gRdyjsWweh14wNdDpiTuyWRmrUAiqa": { + "balance": "815.934173020", + "bytecode": [], + "datastore": [] + }, + "AU1mnFM5pD8t39uDAxrby6Z4YFRpiLGv6yN2FdijYzmahmAwChwn": { + "balance": "1460.006504812", + "bytecode": [], + "datastore": [] + }, + "AU1mnS838cbCfPAv6LwdcDsnbR5FHQfhjFKXZKGsxY4zyJCwT7ui": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mo3eYKiLpzbV9jxUoW13kR3cbxVpZi5jzTh9v45xoTW71XQNC": { + "balance": "863.587519160", + "bytecode": [], + "datastore": [] + }, + "AU1moLEPL6fhRZBrSXt1rMJbEzCzNuSLwH9BLWKxcXJsKYPBhDTt": { + "balance": "1362.455696615", + "bytecode": [], + "datastore": [] + }, + "AU1mocRDMDctTk13tmtvNTfV7EhBoQtrKso1WQwjARekoGuR52WE": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1mocTXzmNYEwFHago3rP6nkRLnbHGNsQh3Gmc5pe5XxZJ6uiJH": { + "balance": "2287.217280578", + "bytecode": [], + "datastore": [] + }, + "AU1mon8ZW2Pezy2nsy8KJCCzuyHQaE7s7GsAPWbDBWbee17srs7L": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1moyAcgb9LJ8VdQvgSog8mBVHoATWPTFks5tqGHaGTRzeqyMZ8": { + "balance": "3832.678713785", + "bytecode": [], + "datastore": [] + }, + "AU1mpSMqsdng8HFnN6ARyjvkAybvTR9oQ9zU6CE4UrdX21wETmao": { + "balance": "3411.753361556", + "bytecode": [], + "datastore": [] + }, + "AU1mpioA7JsMdK3yCVzCeXMMzVGpzJW7HSgxZadN5fDtfozRxFUK": { + "balance": "3450.145808726", + "bytecode": [], + "datastore": [] + }, + "AU1mqGEu65zLjUYsSC8dSvh5xz8DiibSfSCQiS2QhTxyYRrn19xR": { + "balance": "136.929034825", + "bytecode": [], + "datastore": [] + }, + "AU1mqSvcBSq8wwznKQuCSjE2HFzfeRUL4evcWKqaUsnhFPhYKNWy": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1mr9UNdp6THG6VF1amTbqvJRJWbFbPhxE2ZbwWC4Eu5CRSnQcN": { + "balance": "14.045592639", + "bytecode": [], + "datastore": [] + }, + "AU1mrB8iB9mJFGcwrSUgpxzDUNcmzwjM3TSkcUqCtYu2oat5QK5A": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mrdfSRb1Z1Vb4XaCARfb2AGeYyRspkeXb6Q3FJgqwrDeUh6FQ": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1msGwgfa4pCG1XVb7txC3SY4qZJJWdZQzsYdqpKTiEQrc9zodf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1msMdgTxDC5smMfq971zLZVPX5LtVu4RYzMATNsUHQNX68XPrm": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1msSBhNSKKw9zejdmYgJKrC5TcH6PmzUHJAob3nxLpetJuo3CH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1msWw9uAwSrTxWqfzgkmsEkZGs8HR6RaCwntNvhFevwbfxNPk3": { + "balance": "70.781048946", + "bytecode": [], + "datastore": [] + }, + "AU1msaiTmEg43jheN12Q1JdfAUA9P86PmX1oi7fGY1kX8mrHm1FM": { + "balance": "538.433256492", + "bytecode": [], + "datastore": [] + }, + "AU1mskxjHovcJQiM33CjFxPFAh4BbKcq4Fj7KHas2e8XXrZeSAWb": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1msyTrSMxcoEnZq1BAonNMLm5zDrdu48P9mGqwN1VnbqoUJibz": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU1mt3sR3RVHon4uPDhsgRwQy5VFemrSvMP8LkTdkshJJFNFUNVQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1mtq5VWZzThNs73yW6vftDaBCp5DwdF7xCNmEaeFv8Ppa8vzfK": { + "balance": "1166.720351590", + "bytecode": [], + "datastore": [] + }, + "AU1mtyD5S9vkLpGBKr7F3fcUvHT8bnBP3fauQAdrqVZvJnWXQZjj": { + "balance": "1017.203691586", + "bytecode": [], + "datastore": [] + }, + "AU1muU8QGMKUBBEjy3JjcvmsqQGDtJ3kdZrwi23WQgmViHKqy9EX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1muaYprDohNtCryGBWH3rwrayGV4a2RHVJQgVZ1CDshPPa7PnD": { + "balance": "3014.932132234", + "bytecode": [], + "datastore": [] + }, + "AU1mukF2S42r9dCNoryPZWksFT5msveUpvsSfu6Szk1ZroAbLf5t": { + "balance": "938.351142562", + "bytecode": [], + "datastore": [] + }, + "AU1mumDgP4hybLPrbX2wJN6hax5FdYCZBrqqpUn91ST3nkc7tDxz": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1munvZPg3NnZmoZWBK2nR1CkhM9J9cwaMbUL56GfYW41aqcoCP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1muyV9zVsuovqUEAxWJnG7xxUKwX3CzTz5xRmMGfSE5sbsVqpZ": { + "balance": "159.240924092", + "bytecode": [], + "datastore": [] + }, + "AU1mv65oRY5CUxBLxeGhiY2X9ytJwJDev8LKFDWwG7DcN52o5doW": { + "balance": "213.803405955", + "bytecode": [], + "datastore": [] + }, + "AU1mvcP7vRgc6KHPyLRA7XJ8Bvm9eAFe2frCCoq81idu8pTY4ECS": { + "balance": "969.995719064", + "bytecode": [], + "datastore": [] + }, + "AU1mvmq3NHjj9eJm3uqAxzJ3gNZDc2G1k7eSfZrtMioj344n5a7V": { + "balance": "3976.518054413", + "bytecode": [], + "datastore": [] + }, + "AU1mvuyCoBbHhF9fo9byLU5qHzEAhZzicDo4evcSUj13Sc7MPyvL": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1mvzWXTfTZ1GoAvL35f5oQ4wid5UAnAAWeJUSoW9LuAwCEXWBz": { + "balance": "131.188118812", + "bytecode": [], + "datastore": [] + }, + "AU1mwzYuqsKHuAjZJiUFRCu7xwr3GmeN9zn5MNyjm6M1t7QLoKGd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mx3rAvSY1hrrFuTEGnV9UU6jycCwZpf28gy9hnn3g3ukehjQo": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1mxCwM7yqbU3TUaTuWhJRRB1S4hwNWq4BK4fHoYPb36JjkmN3K": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1mxJFocKJfezJDe9wAZsNTXq2YjBt9iSK8gC149gdFgr9myeuU": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1mximFGKN863Cf7B7zbV4cjqKEn7iLFeFTZ92gexD9xrGxQ7Es": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1my5kXVAUB6dKbjs1p1VPXhUyJ3MN5A2gRhwtWBRCZFB2sS12N": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1myBkDPZPGFsj5UR5Z7SUQb5TbKtPVHJUDgvmWJf3FYmhmDuid": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1myEaZhAGJJxZcQ8jyq124n81ALY8czmXgP4byCLoNJyKUnbDv": { + "balance": "744.065065914", + "bytecode": [], + "datastore": [] + }, + "AU1myXfYMkUkcdDiURDQvdLqZtYp44LB9qyQN5vuKsGiRQE4b9ow": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1myhN9udCprKxi7QS353oSPAVCyGS4S32gDEYRsGJF5ovvPGWq": { + "balance": "581.603974457", + "bytecode": [], + "datastore": [] + }, + "AU1myjUUYfSyxJaq1kgWMmp5k9ZJ2Xx6BM4QxuBX2fStT7L4gUX": { + "balance": "828.098250458", + "bytecode": [], + "datastore": [] + }, + "AU1myo4ttrGvZ11bSdubvKMDQuUts2mJp6Dy3znh9L4P1pGoh77H": { + "balance": "1238.909722655", + "bytecode": [], + "datastore": [] + }, + "AU1myp2uXs3haZ7d3SPRaKq1miSqy4m6oQLCWFDuT9aueazLGiJP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1mzAL4MQH2ZwdJFd5JpCa4Yp9jg8SzG9fRdBa9ohHJgTEASsAx": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1n189iyfKkcyTn7TqibP3caTAZQG9wisbLuTghKo2Dtmrk3DTj": { + "balance": "3203.724928181", + "bytecode": [], + "datastore": [] + }, + "AU1n1G6DQKHSo8V1cLZwBeXwwjZ7ioNb4Xr67Qr9AaCWtVi7gY6P": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU1n1K7Cm9vemCzAPoDud8KbcvzDVKoTRoQefJQYwSTMj2rztiAp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1n1NoL9a4MvGgYerXG9ApPTTxpyn8tuyM5VMc17sJpnN9QYg6h": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1n1YuSxxL7i8sZeBswN1HfmgFVfYKgr6ySYC88Gdn9rC1L3Cr": { + "balance": "5635.256367413", + "bytecode": [], + "datastore": [] + }, + "AU1n1d6zZG6dhPHU8xrkfLS8s4AXEKukFD1FqBBcfUZfnvw2Br4V": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1n1qvagHaMPHWp7QrvqBVCSRV4GrWsMNW8yZyxcUDKmBZfweUK": { + "balance": "2167.711901920", + "bytecode": [], + "datastore": [] + }, + "AU1n1u9fEZT8NbeyV3gR9xoWA98FJzD8cHqZuBmL8iUJzYgiTcdJ": { + "balance": "5158.845526073", + "bytecode": [], + "datastore": [] + }, + "AU1n1vw24nodVddjYAEp4AhfSR2cgmP7exTEYo3Y9kkNBrj31vTb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1n24isjh6UdgcYaM4HLRAfcnondUPv8HaFK5foxv9qfFLT44nh": { + "balance": "2628.330644533", + "bytecode": [], + "datastore": [] + }, + "AU1n2gyf46iufy4oPnSWRCy9g3hY4GdAM9s4dbVkKS8932EU78XE": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1n2yjcevxiN3vai7ZmgBtoF5CL2t4xaegeAF7Wwtc7kAe5EDJP": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1n39E3rWhVuDLS1wuDaWangWU4eCComiA3h4WessHfz6pHPQ7K": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1n3yTexXqkaZosio8ncrGmrB8DPB7eufaY6QsjKnYbXaiKzh3S": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1n45Wp6LRgqiQHH673zUa1uxg7EuoHkBq7EHN7HPTnAZtUUVQ3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1n4BPhJRbpdwRP2bvb7v4F9hEZ4uh88zMsUuYxb8GkHpabZg3L": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1n4fqttnv5JRxJvkuNrS4yrSDxPEAUZVbd4LJNUVQRceWknDRR": { + "balance": "749.420864716", + "bytecode": [], + "datastore": [] + }, + "AU1n4iczbhHLeSwBZ6foZpJYxAsMjs3EhxctebN5g9JpBXmdmwqx": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1n4j1MqTAXUwqzvePbUteiXd1VPvGRPcZGVWymwrA1vW8wo49x": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1n6PYAzAnqhfjmcWfbaeSzia9HJQjPVMY1KeUTnu7nguauf9go": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1n6SxLt4y8AbtL991sRJfe1nBmGd4xDtrmdGC5HyQ7jQgvP7tr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1n6d3crCoSEyQ428y56sLpYtNgGTJaRoMP7brt2QJJXv3ydWkL": { + "balance": "6627.673329912", + "bytecode": [], + "datastore": [] + }, + "AU1n72FND518Zc34NGZFv7tNJ8CY5wDYqv3x2q4bcRRMwYDoD8G": { + "balance": "1882.547722395", + "bytecode": [], + "datastore": [] + }, + "AU1n7bDoJowhC9h5m3Ef8A84ez4e53aXW28HvBpYU9CfQATNMCKV": { + "balance": "2626.866830922", + "bytecode": [], + "datastore": [] + }, + "AU1n8BB7tCuP8AKLEPiG2ZLwf8S1yJcgk9biSY3nWZNwU5vrZ9Y5": { + "balance": "3949.238118305", + "bytecode": [], + "datastore": [] + }, + "AU1n8JPMiL8RGg2aFYchrDhAqks5osrobaRrrx1sPp5KDtyNPigm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1n8R8LZXzmhp6GF35zQUmc2qFp6Aeo1Q2XxcAt6NNWJoU12Z8P": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1n8cHMMWazvc4aEdf8vJPpRDCEH1kZQVv7jtNK4Pi9mRyLwf3B": { + "balance": "4597.864825330", + "bytecode": [], + "datastore": [] + }, + "AU1n92KZ2XrsboYKtsm9zifSaFmEGeT5TCd3Yo7EohsXgkjBYh7R": { + "balance": "1108.771171258", + "bytecode": [], + "datastore": [] + }, + "AU1n9QDVtyKgHdHzBciee7jnBysbpUVCTE4AY1BHfSgdAADUxYbs": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1n9i3G71LbHJf4M2Jzaz43GHruJkSfrgxarCJCUAHfUfxjyKkg": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1n9k1BTWigR5xb77wg7SZp2zPniPJ2Mqn7YQYvS6abB1VNKJ6x": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nAMw6uohptGXZDhkHE5jBMbBeS3qPEMeJ5q9AzoBnAbLRX5NQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nAQWUbQXD6J2ZcNjiwNxVzLpsKrRpS547jy3QfGSZn7BM2wCf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nAc2Te4GabYnDUV6JTqRimUVjK4Lxg2YvaY1rLdsdu6NEDxp8": { + "balance": "1605.547976584", + "bytecode": [], + "datastore": [] + }, + "AU1nAjzYrkenA9DqzNMUyhcXrJ32CR5kJhyobeLVHYkLnbcmBXus": { + "balance": "192.273512005", + "bytecode": [], + "datastore": [] + }, + "AU1nAn8mguUPsNyjjmC6YXAKKwCaSgkSmTBfL8XoaEsKPuErogPb": { + "balance": "2894.589173650", + "bytecode": [], + "datastore": [] + }, + "AU1nB4qhZVBS25LVfVnPZ3LgkBiZMt1pXQ7MuHAoq9HBApbUkiBb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1nBd3YqzvFzYTvMFmr8JKrLPRYpn72ddi3sXBZSdxvURyxvH5z": { + "balance": "1731.403055277", + "bytecode": [], + "datastore": [] + }, + "AU1nBdp3c93bdUR1mXvUjMjni7fdKc6rr442dbpD1e3mAscQWZG6": { + "balance": "618.995914664", + "bytecode": [], + "datastore": [] + }, + "AU1nBedgqAyx7yKk1vCDLkLawyGs3jFMcrWURAUwcPYERzArhHVx": { + "balance": "5257.488537018", + "bytecode": [], + "datastore": [] + }, + "AU1nCkd4E7S5cA1KFRjYf9rNtuewJqvoCb3fUg2Q7p21a5H7XFnx": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1nCrQGUSTvBF2u12tkPgFUZT8CYebfJkRsx27YuAWL7z654r4Y": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1nD2Mm6F4Mi23kKLvVVHam6d2gBFA9NvVKTikre7HcdezTMhUN": { + "balance": "2757.408089938", + "bytecode": [], + "datastore": [] + }, + "AU1nDD456HT96BdpyBk7mUJfpFGAxyZtxvAPggt5u1AV7nvNQk85": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1nDP5Sr9CDPX4yDdw1s4DNLEBmdYjpMJ5aD5yeEbPCc4TFjBnP": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1nDaPVRnuKQDiesqhyaFy82xiGEzXuiq7NmhA8Bkp9VKRiJxMw": { + "balance": "1383.627438968", + "bytecode": [], + "datastore": [] + }, + "AU1nDek7wb2UrjHQ5h1qfAJjCP4rrBy43iLDUeaRLvweBCWQVuWD": { + "balance": "3850.932587776", + "bytecode": [], + "datastore": [] + }, + "AU1nDv22Aqs6BsiBxDLbBLmWmZZ4ktDM6gFqdtc7Mkjkg32VsXdJ": { + "balance": "2326.261259647", + "bytecode": [], + "datastore": [] + }, + "AU1nE92kFBh736DrxQ1nWqhvNSG2q8rXwvYPUZ1HXjseKmhhArMD": { + "balance": "2610.737967854", + "bytecode": [], + "datastore": [] + }, + "AU1nEEjCDpLzszrUyxWrJRWvfzg92ZEKBNr9eKoXHhfbR3Nn3ep7": { + "balance": "1132.267627385", + "bytecode": [], + "datastore": [] + }, + "AU1nEVrfL8x2kPotKnP4W74RxVcKS4weaGeWXAuJdiBgf5gMQBm7": { + "balance": "2357.321842138", + "bytecode": [], + "datastore": [] + }, + "AU1nEYR9bd8Pkge9tQCgV4AmhG3i2dU1t96ewzXPU2XTfCVAYiM5": { + "balance": "5471.347428699", + "bytecode": [], + "datastore": [] + }, + "AU1nF6ZhDnxHBNJkXRL97RzaTXcdBkvgqFdw84eX8u3HCkh7x2um": { + "balance": "2551.905748552", + "bytecode": [], + "datastore": [] + }, + "AU1nFCGawSu66fB1CUULuR5m1CRsBBHDkeR4ErPMRzfN7D43Co1N": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1nFHv5p3gmrK6Cs2A1tza63RjJM8X74ZqxpdcpKGTiVaBpTAmJ": { + "balance": "1197.623031360", + "bytecode": [], + "datastore": [] + }, + "AU1nFQzmd7Mw9oMQt3Yza7fQJkeKrrpZtzFXxUig6PQALFi2Qzqm": { + "balance": "2217.264267002", + "bytecode": [], + "datastore": [] + }, + "AU1nFRtryBaXLgneY35v9AuHdT937zYbeXYptWQxNoNdVeDMGr8j": { + "balance": "4135.145395333", + "bytecode": [], + "datastore": [] + }, + "AU1nFpC3RmD7pHM7wDauUvSdHjG16WPRTKtfvb3ac5pcd18TQDzk": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1nFtpuJDF22kXmfgnmrGR8VsMrZFMbwiUJKq8YCtBjmsbFY8hu": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1nG9XVPYyVDWNmmnPS2MgSiqXjTc8oKWpE5Jm8PjWfk6dtjGeW": { + "balance": "1279.008345790", + "bytecode": [], + "datastore": [] + }, + "AU1nGDsZUZur1bZtUvpsd6qHdA65NP6TEeD6DDVDfReVn4mEQiBK": { + "balance": "554.664125869", + "bytecode": [], + "datastore": [] + }, + "AU1nGM41dXNStqHT3y13gwcZAwjBDSyQrAk5EfUhe8gia2aQFzgT": { + "balance": "3472.373228196", + "bytecode": [], + "datastore": [] + }, + "AU1nHNRchEWaUwhZ2yh52FZhqpeJzvUobrohZPYigW8xR5fjtVB1": { + "balance": "858.233164660", + "bytecode": [], + "datastore": [] + }, + "AU1nHp5xgD6rzGATguTbfpvf6E5ZXoNhdLeny2NKs4yK7SztcP49": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nHpEKorXw4gLx86iZqSD5gVU3XfViMpd24cVPjU4wVF5EBFb7": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1nJHtS8UHMUfN37vq9EVxFGpCf7eSwxxGXHqR2VDJssZ6Z18bj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nJk5wcko4kpza5vuC6qiZJJHEUFxLSCMBjHsYWvYaV7V6CCwz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nJvwvsNUjxFCVLsQCQzrDtVGxaVudVW8e1ayLxxXTscF4eTk9": { + "balance": "1731.264945505", + "bytecode": [], + "datastore": [] + }, + "AU1nK5LpoaCgCsuCQ76AGvxrQcEgmTr5iA4QySU3n24xqNzugwyo": { + "balance": "838.862803771", + "bytecode": [], + "datastore": [] + }, + "AU1nKAXevMp9FfeZsu1bwMTvczNtd4g755xxBS5ghsoLcRJgvqmf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nKMGayPAJqxdm4GQsttyYuRb7xxAv2Aod3cNCyLcLsTasCwYX": { + "balance": "1939.505210512", + "bytecode": [], + "datastore": [] + }, + "AU1nKQi81kPieuNaJC8CZ1xj9v6Y99kxLzfpijSFvbQaEAsGVjLM": { + "balance": "5048.682805821", + "bytecode": [], + "datastore": [] + }, + "AU1nKrSHvMMGsiGsXYdaxpZsdyUXkHJYv71wrvoWWcKUKdLLXh5s": { + "balance": "1293.149615612", + "bytecode": [], + "datastore": [] + }, + "AU1nKtYsgHaJWLQNrc1pVU8Eon3UKDp5psv5omc6DkdFYz3XbUeA": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1nLG5YkzXmAegSXP8zrJAL5DYwaZMKvPDWwiitQvpQUMDc5Bwo": { + "balance": "1151.025733548", + "bytecode": [], + "datastore": [] + }, + "AU1nLjMmc96JMvZwabCrSe6rntqqhXb1wirtPPEVMWFV9uA8q7dj": { + "balance": "562.636179171", + "bytecode": [], + "datastore": [] + }, + "AU1nLxJUgX2G2YaVVmT82tMvy2TGdWkcEGGsQ6QYy4xnAKUqPkEs": { + "balance": "3133.026130317", + "bytecode": [], + "datastore": [] + }, + "AU1nMDsgG1w6QipAUxs2W5cPk75gA7iBQTd2jeKULJq9qGmX6Mrf": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1nMY5L3zk5821N4MATvhErSe3bd4w8gVnc1WEDJ9wgdMNX12aU": { + "balance": "32.918037600", + "bytecode": [], + "datastore": [] + }, + "AU1nNHeXe7akg94Nt54MEqF89SiYKN7jJHQXPMesyYJvHDLgxe13": { + "balance": "1551.094411903", + "bytecode": [], + "datastore": [] + }, + "AU1nNnSN4rynWCH9ws263LfoBUDtxfasMQBiWJ6yG3u4RQQu2xTM": { + "balance": "1604.830004673", + "bytecode": [], + "datastore": [] + }, + "AU1nNyBuTJuCFLxd4xyEUXL4B39enPQNhHUHHyKvJ4jrbNNBeHtB": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1nNz1fgHEkoMCVmubwXXEd8NgiwfKjrM3kz94UU6R5uKQKuXyF": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1nP7LgCVmvvmP1zrPYv7aH2nu7K8H8Uk5ifijmhZESJaiuDoxF": { + "balance": "1397.204162621", + "bytecode": [], + "datastore": [] + }, + "AU1nPg7tv6a1LQ7w6G6K1mfmf8xYjLnEs7oZ5ajPJgpg7Hz9Lkce": { + "balance": "1155.889449904", + "bytecode": [], + "datastore": [] + }, + "AU1nQ7xVpneYjZWizsJtSRvNijfE12hhoCBwJyWzKV2hqKFGkFD1": { + "balance": "5007.136831082", + "bytecode": [], + "datastore": [] + }, + "AU1nQ9iher32PeWpRqMMUaaqVsLMrNLmRPNdBy1ZSx9u8iBvMqxU": { + "balance": "989.987482468", + "bytecode": [], + "datastore": [] + }, + "AU1nQp6UwbYsbu2SNUPXAyAPRj7Pe3VzbDeYjGQRLNfz27p5NiY5": { + "balance": "3467.802719227", + "bytecode": [], + "datastore": [] + }, + "AU1nQtWwX9TBNUa36ve8rtyT5g7megUijKDRdsTRtmNAvUqC68zK": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1nR9LgNTve9fD9MZYAN5MYPx3ULCR349WTHAxSs9Qkm5DCXSzZ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1nS4xKBvTfcGgUkG3XcJUXsHzKwcModrKHq9LfBsWUpJGVit3H": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1nT8bn3WSYLctHghrE43GzbuRi97pPFpNWs3fvFjkD9vSnB8dH": { + "balance": "140.434054569", + "bytecode": [], + "datastore": [] + }, + "AU1nTPQZ9Vv2EMB89py1siERHPzPP2ZoUDTeSwkB33GRnPva3ivK": { + "balance": "4532.176487830", + "bytecode": [], + "datastore": [] + }, + "AU1nTsTDLmUwBFtL1bvYTWzdoJ4YifUX2mmPeHDentPxHAmd8Pmm": { + "balance": "2393.708228178", + "bytecode": [], + "datastore": [] + }, + "AU1nTyVhJaXoXHCLXxyPquPRyVf8KwkEJNxMLDwwiigmuDgfm21J": { + "balance": "1591.523895491", + "bytecode": [], + "datastore": [] + }, + "AU1nUF5SuRubwPneRvtsGRdL1gjSpwii6khAPhGUWrFm9XoEt76f": { + "balance": "4150.503416511", + "bytecode": [], + "datastore": [] + }, + "AU1nUYtkg5hE5v9AvfN8TvFN2AcXkipXDMuLy4Q9EL5t1hJnsjhS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1nUhfsgaSCysNwVhMSSd4ciBJ5m6F9k4yquG3u7UJD3CxSLpJZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nV44hGYnaBsaAbdXx5zy9aiAbuoiCGpLMyxzXYCGa2tKXts8r": { + "balance": "837.872766274", + "bytecode": [], + "datastore": [] + }, + "AU1nV9XktorSmKq2eRnRbrr24CsNb4xDutLB2ySSFnsfjXzVmgq": { + "balance": "1968.951570969", + "bytecode": [], + "datastore": [] + }, + "AU1nVxihorepdcZU8qoDcEhPnH7PUtsjjd5rkSZPnxdL9sEEeHJ7": { + "balance": "1094.833875669", + "bytecode": [], + "datastore": [] + }, + "AU1nWCyypw6hdNkcuzQsj2jKqSeMnPTspNPpLTUomdLYfPTV9Jtp": { + "balance": "1512.884082772", + "bytecode": [], + "datastore": [] + }, + "AU1nWHBbj4BekdUeXxjwZwTJqZSEzTx1GHLXtJv8CDe6iwxxo9zW": { + "balance": "1568.932196104", + "bytecode": [], + "datastore": [] + }, + "AU1nWYqwG2NuEi1KGppFLU1YKBLLWZW6cZRygBd9EGxnxmDhGLrJ": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1nWuwFoPHjWVLcxbqcK3Ptr9tZfyLk1xoLt7ywbZe4yhXbU5i3": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1nWxxGki1C31AvwevCHqbpzhp161NNYENt2QMvxBbvKcBYvbV8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nXiTa7WqJsyENYQZuAFrMkhjAosPRzn5esznscMTnSt5PBnZU": { + "balance": "1157.346867923", + "bytecode": [], + "datastore": [] + }, + "AU1nY29hqyCsLBJekYqfThUAWa87gGMjFuhyvth54CNHcXMMCx7p": { + "balance": "1238.472924783", + "bytecode": [], + "datastore": [] + }, + "AU1nYFwjDeSzEDeYuk1NKuYPjpH7mWY2PnDrFMgnRv6DHzuGegX5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nYG9cRiUWwKQ58YEmAseJz9rXz2XudTrBsDJgKZf64GpN8C8s": { + "balance": "88.960675182", + "bytecode": [], + "datastore": [] + }, + "AU1nYPRXwL5ujLZK6HzoDvZJV2HzhZaBESbrdvwQwHgF6ycMyd8x": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1nZgwogjdNSwBQHfhtrX2dfvUKucYKtnCLTpfc3g2Fga4gYDuk": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nbRg8BxJTNPkmr8pGTHmJq9FuFDEjzyUKwjDqN8SSfBaoaeUb": { + "balance": "109.818310105", + "bytecode": [], + "datastore": [] + }, + "AU1nbS7G9xAPbmgdvPkXhn7WenrzynuKXmc1wX59cU1hSgEikcDW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nbga7Pz9Gc6K5Ls9gT17ANWzRTcsjZXyLQxnZp7d5Ra18wQ89": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ncqefXgdYs14t1GC1JCHEXDhSgRu69ZTcRmXavDX3RrgmLZ5b": { + "balance": "1352.403631597", + "bytecode": [], + "datastore": [] + }, + "AU1ndTgw4kZTMhLAnEGhRqzqFv2DQB15winKBZh3m1UsbgvQgfAc": { + "balance": "2827.956456249", + "bytecode": [], + "datastore": [] + }, + "AU1ndYpTCwRBAZ7JssAQLtxgwqwQmYPp7ywuZkAx1nqsK4dRueSn": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ndvx2HCRFtefoK8AjfkacMV6TyouCmoGKJ81EpxrVewAMz4Yj": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1neYZpaberd1Zzn4uRfTzwTo6cspBnCFnm4FXcnNZeX4uSouun": { + "balance": "1254.248090803", + "bytecode": [], + "datastore": [] + }, + "AU1neza66sBaRUsnNcREKKso4vESfSbfg1XwojBWjQVkLh7hcE6q": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1nf5Exs8yH6unmPTfctHqXjeP1mwZm8REoWsJ4v4o7RR3B4X8M": { + "balance": "1753.629178344", + "bytecode": [], + "datastore": [] + }, + "AU1nf7ME2dcJg3mDDmrKXFA3e9kBJBpWW3Y3vfLiaA6FuLuuXu4T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nfMkfhKLDTy1M9DhrwKc5VFWfwUXSexcEVULNhTtCEsgfVY6n": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nfQSu8QU5Gaj2j13fAMBAFLjqXiG9yTupjq5cge8n3VZcn6Ny": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nfmYgrQa4YiuobJSTMNhjToTm4M2kUE8Gdrb71726WfNPFbsz": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1ngBKxXHtymFJkY8Cb46shMUjrNVhnTPTKJQ6JmVrd5gKwnMgA": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1ngQKgxZxQNXZkgi4QSjrTbqV5G58HYMW8Ti9XSikGqExrqUAc": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1ngfo5oiPHCH1g3W6DzPQ8oKEANsD25WjNJ8NxKTpBaPsNo1U2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ngkKngmvfwAC1SrFv7zf2UkE41x6LdBMGHNttbeQHuMejnrLu": { + "balance": "3829.489718915", + "bytecode": [], + "datastore": [] + }, + "AU1ngp8WFraSWq8heEqQpwTpAybNkbDa4fqubBHJrUNgjgXLHuDu": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1nhARA9oCdw2wF3aY5hPf5kbY8kGVgGpvyhv2UQXwF3zMaS9QU": { + "balance": "1453.005804883", + "bytecode": [], + "datastore": [] + }, + "AU1nhHdwYwVwffTWaqkGfng8iNbCRH8wDruDj4d4xxi7dhGUqYMt": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1nhPjqhiD3bsNT9xH7rHht7EfmcDSbe1ZKZYvLv9jqBW1XxVD3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nhwEHd4e7CiMqmgKKoo8VKe9ukYvVN73RqqGMsSBJqfEM3L1S": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1nhzfxxjFv16DfZ3Y8LDD1QE2nX2Y5TsM91rWeRxcWtRqGup9p": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ni5yAFMAt7A5n7d6A88pvQSdTfCcgFmP2GkTfr1wDrkWnidKh": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ni9ANWiScMLG9wqdF46PVTr2dLkQ8UDyJHyWEBpcHs4v3B9N9": { + "balance": "2701.276769062", + "bytecode": [], + "datastore": [] + }, + "AU1ni9kZ9RDG19P4GKLg9HFiBfGNzcNhXV6QoWHkRdKxYxcgKFFR": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1niBksyqxxPE3kvfDct4bG1WzkWZgndgxchMcFnJZkasGVTQuS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nj32xKAnZeEmnr8rYrhGxh6iKKgRBC66MDxc4cTcGhTJg8VLo": { + "balance": "1815.193423805", + "bytecode": [], + "datastore": [] + }, + "AU1njF7wrJTz7LCNE9QX8ZW7gHbHpCcMcYyMGZxTCQouugv5UMmg": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1njHLfBHETZheWATY4E5Spiz1Zt7GruDL1adNyHVkC8qHqJfVA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1njaLxHoi9pE6qBaRCcLCcD4R6k9WnYTtdFqNA49hd1uveYhVx": { + "balance": "1024.492173245", + "bytecode": [], + "datastore": [] + }, + "AU1njbbAgtZpMaDSVMdoiH4wewDg8N3wSPhKXQu7K1Tme7rNkeZW": { + "balance": "1176.858393558", + "bytecode": [], + "datastore": [] + }, + "AU1nkLuBTYKGJWWZ1G4vA1tt4N3SUk6xRvk7gjCD6ZkZBnzkhxx2": { + "balance": "3602.239679440", + "bytecode": [], + "datastore": [] + }, + "AU1nkNGE1PYnPf8pPGj5WCURoDMBiM9PAExd7RGkGfxMoQmJhen5": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nkboJy7WYKW2fkV13nWoFuFDEh7Ax3Bpqk6psBU39G5i9sLjs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nknohhX3QusYzXo4Bbk61sCahT4QS1n18mY49QPkXWDpPJoHZ": { + "balance": "69.918272188", + "bytecode": [], + "datastore": [] + }, + "AU1nmPmPVfTiqjeNN2S9N22f4r66jFPeBATGWgEVEtHxGivSYZ4v": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1nmTXsP7eNhKgJwnTCLMMmzWYpBmxBWUk4CobLeUgDir5NLsuz": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1nmVCB68cURyQvFK8Cb9BPDULEoWJwM38BMWuRvGnFzT45tWu4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nmXzWpDomRyNyjraiq5jpaaYUx2s5aENYGk7XsEHpoTEpEF2G": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1nn93udqpuHMCNshBwbJmaDJYvUtZot1JMFeTiJ6ow8PpKxUX8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nn9YbU9nAgErMyQRdYXWD267N37YanU8gfswTmkizefYcuK9X": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nnEHNW8e5oDBjcg7DJY7YhtHGmLXZ3fvhSJNw4EmqLMqWBr5v": { + "balance": "622.950454558", + "bytecode": [], + "datastore": [] + }, + "AU1nnJxS8QXg3dgADWfneJ3mgBH8r55CAzem1Krt5df2oMQep57K": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nnPQenn86ueW8q1DqR4beh3YvFxrESG4jJtCqi8UydEdUgVsa": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nnVFVR4JqBBwWPKkSXXLMaHFpsoZRwkrmf8SMFmYbh4Ln6Y8F": { + "balance": "1616.978366541", + "bytecode": [], + "datastore": [] + }, + "AU1nnaCe6jxnsvvQFUo2ZmEJqMJ6aqrVKh9niwfLtWW9BRjgSYDz": { + "balance": "1625.995965116", + "bytecode": [], + "datastore": [] + }, + "AU1nnqHD38ATvrsoSqMCp2mjMQ6BteUjiAGaU4XuKrbtPVnyBfXf": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1nnqpnQV5z858jH3nxk4em8BnD3yNcHwbNg99nf3KWtmN5BisF": { + "balance": "3498.941227298", + "bytecode": [], + "datastore": [] + }, + "AU1nnxxeUS3aMUbuHztBBxsgAqPTmRaDDkem94d7Sj1qiqdL5uBp": { + "balance": "1262.876399488", + "bytecode": [], + "datastore": [] + }, + "AU1no8a4eosEZocAPkC8n5GTmMfBQNYUCFnq6Yp9YMNFN1sEbvNj": { + "balance": "1604.818482492", + "bytecode": [], + "datastore": [] + }, + "AU1noGjpJuJhnX4htS6j9n47JTSuapNK3PgrWvgpKaLtQAGpgT3c": { + "balance": "78000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1novdNebEWzyAMhjPrLgTFk8JyQDJpXuw7qA1DDhMZ8PNNHY1m": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1npR5tie6CkZUkmCpTBioQxhk7Rvvhi1bjttmLNsZc7SBNLiYj": { + "balance": "2406.173767052", + "bytecode": [], + "datastore": [] + }, + "AU1npdQnjY4ZWigfEQCKTexQuxZkWURHtMgHqcH2biuBpNd7dgJH": { + "balance": "1640.282712271", + "bytecode": [], + "datastore": [] + }, + "AU1npnGujYQPEvhB33KeC3gSppoZfpkhpJJc8Tka2fZPQAQJUJVq": { + "balance": "1349.213360078", + "bytecode": [], + "datastore": [] + }, + "AU1npw8FeRL99exTSYoc47KCmHC5TmxsQnHvMx9BfvjuRPcaNGoK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1nqLJbRHrMesJwXVpcZndkTm9WsbhzKfhKbRFJMDBZNaqiVT5L": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nqimxywoKVpnx3eXSCszAvdLbe3qRPsmMe5CrgRv2ixvEvxkh": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1nqtc5ThWbL2Cu1kAE11iJLvg87YvQV2MxNKky3ztbCd5J8bnz": { + "balance": "3748.480384812", + "bytecode": [], + "datastore": [] + }, + "AU1nrbt3RuDsrcKpQzRWGt595tFwYfUDxW4ZpAHKdHcc5iPiicAA": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1nrmW8fXGAehpgQ2wVvgPKcCPwbsekfYmTzowSJmoaEVxm6trP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1nsSuA35LQMKoaBbHshKLNmf7xYeTFeSMWbTxmT3dBvH4uFKuA": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1nsf3wc4CwAF1bgKqwYsVKQox1aQzmrEWvYScHGmkHmevfnJnb": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1ntehmF1qShrYpR1QLzg66a3k8PBFxWjypwdnjh595xSjbALEc": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ntmaiwyfMLxCH4bzZ7zgw1zyTz8ceE2DABBfMGnk5BYVNGanm": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1ntpXfBE9zJfLKuqpS8YRSkxCQCAAyHCPterFbuEDnSo2Qog7c": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1nttEfW4G5vhgzoVGoquywDvo5YmakSBV29vQWbtygHjDhNbJk": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1nu11qnhtryJrq863EaHRzLZjYvT2DF6FZTvMUjJBm6ocXPvBH": { + "balance": "1311.474270069", + "bytecode": [], + "datastore": [] + }, + "AU1nuCRzapGosVvhSn8nF46XN6hqASJSfrqrMqxRoYxEc68sTsxd": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1nuG1HJ8kBkTRYDE3dV81NRwXhYwWiNj6r7Z5u7qdU4YwYpJWV": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1nuUBVQsRNS3MzMNH2mQTXuPcSriRcRFGQFkfjT7WKsVFZpSNP": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1nuUoP2tDQQt2ABRuBamKgbVrgS8NGjnbY6UYibCwTsiGzv8u4": { + "balance": "4104.104690715", + "bytecode": [], + "datastore": [] + }, + "AU1nuVKx5upsfJsMjHqLmR7Rjamd14BN17TNefHZNYDFkS3w1X4d": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1nuh8b8CvvKggBJCqsuBjLyyeUgm4VMBSdEdhCeYFb24ADGG1R": { + "balance": "67.040380568", + "bytecode": [], + "datastore": [] + }, + "AU1nuqcugkM9BUjcLUbyrSDeSau8UQ3u8LXC7FwtqZSNDZKRDyF4": { + "balance": "2351.709090138", + "bytecode": [], + "datastore": [] + }, + "AU1nvPCW7928F2rSTbW8cHLpj5GEP3pW9EobghLb9Bvu1a52EJ7T": { + "balance": "1092.055094472", + "bytecode": [], + "datastore": [] + }, + "AU1nvbs7gpjR3j9EyxqYkkDWvSUGx2Noh3xsU9DYmjWGTwRiqyBP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nveHV74m1o6Fdmoxx2UJHGWgAVDzD7t1NnANBSduR1P7xtrtt": { + "balance": "974.945373759", + "bytecode": [], + "datastore": [] + }, + "AU1nvibtrcN5PPkj9bwZX3qD8WY4bjeud5rcJDXqzKNqfX5CJKc1": { + "balance": "45.621992466", + "bytecode": [], + "datastore": [] + }, + "AU1nvoE4ZNTkz84bjqKWbrMwEX7TQCdGwpbiJBwdjqaXrYXeV5QU": { + "balance": "3823.686491617", + "bytecode": [], + "datastore": [] + }, + "AU1nvtX66ZTSACBxKs5dU8EaaW3gsY97VKX2SQM8J8pSzV3WHFoV": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1nvwpzwahFabumLYaYpCnJxJdghPMEoMfH53NKgQCZzdcqRaKW": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nw33MdR2C1WZ1gpTP1UfmxCemqD12pmaaBd5BqWBJ2PVZdvJX": { + "balance": "654.193724834", + "bytecode": [], + "datastore": [] + }, + "AU1nwB9fWZP5yKX1JyZJ71RSxrUeo96amCv6Z2MYio496yCe2pM4": { + "balance": "4675.395210267", + "bytecode": [], + "datastore": [] + }, + "AU1nwFEiWMEXxMDfAsHXCqhw8PHMQZMcrj4QzUiyDbXupTsvmMUf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nwMrCPYQoKMmGHCMdgVYTJ5bkiRuHEUJLh14V3RntVTiaFDSm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nwUAj2vVCNa44qEEVxWnFbEdvDhuNKauQwXt9b8eLJN8eW4L5": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1nwinW6huPAcD2d85SaZJ73eReXVsnsjPn35uDnhFYRTMe5Nc2": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1nxEB4f9x1QNLrgQkEmacNU4QFkPTuVdAMxS7PCDPQvGNLj7d9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1nxcn1GabGADJ1i7QQuzG9aEMB19JQzH4LDsbBPUNQwJaTCfvw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ny7rbqMUc2HEofgSMJFaVboTX9jc8Fr6thqNh7jwfgJXVyfjp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1nyB5u5GPNCGsHxXbzBsRH6HjjxtXckzpFk3e4aXa1CK72fDFv": { + "balance": "1432.797045212", + "bytecode": [], + "datastore": [] + }, + "AU1nyBMQrL7KE4JE4LYNe6m1jte6fy7cYr19vCSxEZ6dR6ampSA7": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1nyfS1JHdwXZ2SJwwtj5TPGUhrDFHVjH9NQQ6nTNfQfjY2VF5": { + "balance": "3083.174077525", + "bytecode": [], + "datastore": [] + }, + "AU1nzDaKZiibHQKjmDE2YLJ4vGuCMoaPTpaCEAD3RfAHr8LdQkad": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1nzZKXWhiWEGQDS7uFsGiWxsoXF1JiM4vBfMwLaCrA34XdjpQY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1o19XYii1McgimKJPHhk3NMNVwQezgiKEszYTQ53bgSpX2ZL3Y": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1o1QybipfJ6FjTyw6LF51b5NA43Hu4ZtcQujSahw9N2qK8HFhd": { + "balance": "1072.057593407", + "bytecode": [], + "datastore": [] + }, + "AU1o1z7ykjQp1vr8ScRpuRCiC9jDwCLnzcT5VbMT98SbdDtQEH1H": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU1o2atyG66cXrkgxp84pz93PYqud1fn9njWEVEBUY2Vgaj2kZp8": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1o2xLwiBsa8AdyAfLkZGnScYLqjGAw4eK9CniHr7DQLjeqLpwz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1o3Dqrxajt9pVhfisM8zJaqT7sxtc9HtH9YHYRsF8rLBheaM85": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1o3JrEkJvdQT4WT8YECPJti7WNWyir8SE8okTS3XLi3gTsFuFU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1o3L3cdprTLwrTZ458rWikvGZM7FYsMRgGVDtmMDuuB5uuKrzb": { + "balance": "2340.378775093", + "bytecode": [], + "datastore": [] + }, + "AU1o3XeZ2QygbqZn5hFJXBCggZWh5G4pgDRoYPUNEAVvpWikquhJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1o3hcANdonGnEpwwBJwv7sv7FPdHzCzoLjAdpDnEgE1xzPPpjG": { + "balance": "5734.303044124", + "bytecode": [], + "datastore": [] + }, + "AU1o4ZDHSceNQdEzP1Ssr9xvc5eg98u14YRjXvjzZ66vBTQqm4n9": { + "balance": "2317.306524758", + "bytecode": [], + "datastore": [] + }, + "AU1o4ZuxLfRYvms78hAd48r5V3wzMPX6kKhWNyRa8p3JfXgfdomM": { + "balance": "1678.308834830", + "bytecode": [], + "datastore": [] + }, + "AU1o56rJNaRZ4vnXRFvWp5d7jTeEEGKrLizXAUTkgNipNQou6FQ4": { + "balance": "1589.028060934", + "bytecode": [], + "datastore": [] + }, + "AU1o59XMcRH75eAw8dFS6NprZd1dFXKCTkSrwj8qsWzckLoXhf3x": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1o5Zej1JektCZF3i64cbfGp53BiHYdyD4gyfMJWpMu5E6axAYP": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1o5f8W8oxkP9ELCsxheF7DL3mthydHqNFbcdpT2trb1Gdhz79s": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1o5fXGmiT8Krrn2pNfJ8cWCnqyKeVGzeW7KTPdyFHbBYPvD68v": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1o5hmSn6g5nGVuKG2CoEqWZ1zJhqyQZmjsPJU6QPK7GRuSizc4": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1o5u8JgngwBawtVjnnw2BqVHkubHUjirvSTk4dRntuz5WSxgXK": { + "balance": "1532.197605963", + "bytecode": [], + "datastore": [] + }, + "AU1o6QTeEKn1VzrJP7Y1kFCzj8tRQDVBV28UeLhQfNZVENU4Dfta": { + "balance": "929.248887526", + "bytecode": [], + "datastore": [] + }, + "AU1o6YJQTu64f1Frpvr1xU37ER9zUbxckdMQttPLcntCeQgfZkpy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1o6zzuEkbUweeoLeZebEMNAKrwLoY2N5wzUG9Qk9kvoKMaarEJ": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1o7BvnEZupy4Um8HKvic32oCcSt7gN9cb68kTiRoaD839R7hq2": { + "balance": "1918.186717139", + "bytecode": [], + "datastore": [] + }, + "AU1o7tYchofJbbdiXKDUApyJi5tPVXJYQqJxrWoDuPmSPpdgaMoj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1o7wEGUPyCY6o7fF4Zr9kfiN74fSZQ8gUJ5uNcQaHc9FhsKN2m": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1o82cS5gyYwt6Ym3Gc4cXF6hTihu3TJ31iNphsKV6H9SmmW1me": { + "balance": "552.874901644", + "bytecode": [], + "datastore": [] + }, + "AU1o8UC4UeuhQiRrneWUMq7v5pkDYRxnzcwahyg3BWuAmpMv8Www": { + "balance": "3430.616512409", + "bytecode": [], + "datastore": [] + }, + "AU1o8dY4qvvMj8saaWHsksDqJKbGJagbPyKCQ457xouShWQV7ZJR": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1o9KdFRfMgWKKsEgyq71mPAAum9pAdEiGGdUW5o1CdhskUb3b1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oA7uBoGZRTcZxnxfx19AWxALu8ZwLwR8s6DE8ReZfTCS1NURf": { + "balance": "1562.110750416", + "bytecode": [], + "datastore": [] + }, + "AU1oBDXs6u4GNTx9v9bdaxwPTcUdiGf3hKieo5SxdXbkJucDQofE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1oBegLoGqWHwysYSHHWsN5zKBfZ6JPQxAWtRJozqYkv3JiEHgi": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1oBn11vHqabguwnWqA1SPqETGyLoS72nfxEeFSkSSLW5GMyE82": { + "balance": "2954.076913625", + "bytecode": [], + "datastore": [] + }, + "AU1oBrbmvgepq9stvJWuUS5imPZscArZ15hg3MQqawxjuPYAMeTL": { + "balance": "2697.460378410", + "bytecode": [], + "datastore": [] + }, + "AU1oBunF5zt1YanC8vvo9bSkaYEpkiKLNeQEX7qVAk5kKnj1LegM": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1oC5QrNzgxm9jzVr9tYRkUwUVruwuWg8aEjcBp4drDvpXHSRZi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oC9bybp9E6PWqn2TgJWLDEThXqvhebPaq9u9yXzUo4Xdw887g": { + "balance": "1788396.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oCAysKDM3KC8oqWaTmhbYLYXqB65zDXSYKhhrYCoxnnV3Lkqf": { + "balance": "4288.539653956", + "bytecode": [], + "datastore": [] + }, + "AU1oCCsogoagQfknEFNrYG3wV7WK7dR9V5iN9bFpF1HuneNQz6ZL": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1oCPv2PFoXFRh8BSXUnpLCedeQjYq3tR3v5J4MLX6w16c8AfKU": { + "balance": "3436.060527029", + "bytecode": [], + "datastore": [] + }, + "AU1oCU7514KPHVf7N1RBXg1cN5M9xmhTQcYJzxFzGZkKtjSBJqKv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oCdAnK3GSerw6r3nQyC5PqWCRW3TZiMwwGU8cT8ctsSTVrbdQ": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1oCgzCKgtpWsCMejFKt1ionCHvB64PPDDDJpoYuGF12QWfPoEL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oCkvFP8AkFL1kzAN83SGcWkHxn1QKWEQvxz7wTUEXPFgGZvDT": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1oD4tvT68MSScVGBnGNdMh582sUAyeqnWECzGnUsE6YEFy2Z1P": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oDPonktRHJ48QtzJmgMckPZtKFehCTCBr6BWqFvMnf48j2Kk9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oDTmUjip1PV9qh1LGF9Tf1rN4jccWA7Pnqc8xvH6YZCeDUsLB": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1oDfM1MsEysThrni4oTvo9rRZWQ8J6be3ffgBarc1dYGXF1FNN": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1oDmg2qA35am6E14RdooHVw8MURsq9Tf2KJmeaZE98iKTDh81Z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oENt5L4Jy5kYVJJuynS1yiZfyY1t17ZtWYmsVHuQXoWhRxcVU": { + "balance": "2063.920231901", + "bytecode": [], + "datastore": [] + }, + "AU1oEbNQKBV884YVWQ2CKLuG3FncUisR8UoFyWhUFjjXyMgfgsWi": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1oFNGAQEmk2DnU9PrXqwD7cZuwS5yAD8qUuuhyBP8X9mj1jCmh": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oFb6uEuuTVNC6qEfUznCX8Av6LmLFPtSQBVhoz1nsMH27gJha": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1oG2WUoorrsqxJbA44VWFuKDNLxJ4ZMTDWFzhp1oGmqKQQK1US": { + "balance": "3778.667059129", + "bytecode": [], + "datastore": [] + }, + "AU1oGKqY9CDiryb6HA5abN4s1afNvmj81mgMRbCxgzEegupcoeie": { + "balance": "2610.849252569", + "bytecode": [], + "datastore": [] + }, + "AU1oGoH2rtwAD6oCLYgRXGR1bxfxnPBNseySqDhMD3QkrCFbkhMX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oHQeBrRrkd8XQoj1nVtSfxYSCVLD7TbUpZvMsovTNw4rThL7n": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oHab2SkoarNNrjaj16sFF4xURTZhDmvUwoxnodZtKHDk6ZUAT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oJ2cDNgLvq2ig4tZJgWpQJhrr3hkiJMbqsLTvnyMFYxV5viZL": { + "balance": "72.205286071", + "bytecode": [], + "datastore": [] + }, + "AU1oKArBC9WNqj3nvBbrTnnM82yWPZWuXmhWAU2sGDWrCd9nF6k9": { + "balance": "105.610561056", + "bytecode": [], + "datastore": [] + }, + "AU1oKGVVeXe6RNRYXxo9qZpEEYVeTGRH97QqSyyxUUFdZ1ncz7C7": { + "balance": "63.100260062", + "bytecode": [], + "datastore": [] + }, + "AU1oKMGZbdNBT9P3vatBmKV5JXWy22Up8gVxRQwwjpwK1Ur29Bti": { + "balance": "103.135313531", + "bytecode": [], + "datastore": [] + }, + "AU1oKXQqZSEBCMCPfJwrhE1mQM9a1Yy1xHXii74tdgNV17K4c3GE": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1oKZsAYFiAhNVwLnwXbMyHe7onebXbEd1hiJsskjNKU69TAHnb": { + "balance": "539.162076796", + "bytecode": [], + "datastore": [] + }, + "AU1oLiTwYYm9oBXMQLZeMLtrvRNAWm6p3dHyrMWnymzYwGhGk2mU": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1oLq6x5HQBpiAh6mDTLjVUETXrywLNwANebs58iZvLk1cGNVEx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oLtX7zPTjjnbaz1zxb93THQoJTGoPxUUKYGsiCjPwJE1F6qey": { + "balance": "2241.408900536", + "bytecode": [], + "datastore": [] + }, + "AU1oMBvTaQPZMsNzZV3XgYbw6RbWdC5CbLvMaSaRY7RuQzwzWkzH": { + "balance": "3695.018013508", + "bytecode": [], + "datastore": [] + }, + "AU1oMwytcKU2u8mywhZT5aZqFpEVLAX3YtWXv6v32LNyFUti9GKW": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1oMzDPzSHwqAFEomKVeQmE71tMx9q4vZd6LcbXuFk4y7Lr9E53": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1oNN1GPfSjNSSgmT15m2ChgpC6uDoyj8PXgJJHANXMYYcjy754": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oNT2DXBGfWJq6dx77c8GeA2JzzkbyBgiVFeQzDpd5XtrBZ996": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1oNWT2yKoNHnnqwFuuyU2Ve7DEpmBbJ43Wcy91q7PSz1F2djdj": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oP3pasP9hXppKXy2GF2oJeHyVExQruiBY2pmY66gySXW1hCYh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oPEHmPsZFqqQj9qFXoYouQjLdjE23ebHu6UY4tqC38Ba8cgHw": { + "balance": "1748.033793851", + "bytecode": [], + "datastore": [] + }, + "AU1oPYZCVY58znKRrFv1DmaPZj6Ctrig6wmGmr8YcSGzQVdGXL4S": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oPgueW8nLB8N9b9BekZD8MbJpobEWTZBRCQ4bi6Gtmmkt4dsR": { + "balance": "2556.870862782", + "bytecode": [], + "datastore": [] + }, + "AU1oPjDAp6vjCWm99exinUecY3n4gRK56UxSsNLkdDyKyQaWELTa": { + "balance": "1082.327358537", + "bytecode": [], + "datastore": [] + }, + "AU1oPmRF1poaoqkP6c6mLmLyR6JVwT8YT4AnhLwcc5Z8KbiZ8Wpg": { + "balance": "788.378163672", + "bytecode": [], + "datastore": [] + }, + "AU1oPpraLmi2x1bMH3umT3R7Ja11kGfeKse8NyKpogZnCqkFLqhk": { + "balance": "2051.457298031", + "bytecode": [], + "datastore": [] + }, + "AU1oQCXwufFQGRTxqbBpuNvYsncep2h5mQ53CVXT84LS9rRBBFye": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1oQK88xQ8MCmsZDhCGM3taD8B7VyCxTYm2UjNyo7dPgNeX5j3s": { + "balance": "64.944965333", + "bytecode": [], + "datastore": [] + }, + "AU1oR7dtu5r3o8gqUaYcFGbGFvQCvG8A2ZocbRbJPfXkS6YpKYr2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oR7oCP6iSD8x8g8LpMQb4StDzhq2X6RnLyQKNbJGvMCdW3i3K": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1oRQNn1XpUicSqFAKSwGHM6rYqfhJSPtnCAgympZNpB52H8ToV": { + "balance": "1126.474617306", + "bytecode": [], + "datastore": [] + }, + "AU1oS5ymLebanxgFb5wdFyDk1csJp33zSYScoywC44oWKVscAj8n": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1oSH4jVY3p5DfYGtTYRd73vAchTnnYJ34ga6FbadsbAaSpYfLG": { + "balance": "950.664600218", + "bytecode": [], + "datastore": [] + }, + "AU1oSU7zqY6WTrbvvH4VEJBXenWv9LiAGMNVfapgqgfMtotTDRDx": { + "balance": "1966.647235897", + "bytecode": [], + "datastore": [] + }, + "AU1oSYi3mAx6qpkQ1UggVkiBcGFqTEVUuoiCm5xhEaycRwQQduee": { + "balance": "1028.105263371", + "bytecode": [], + "datastore": [] + }, + "AU1oSkc5iBJ4EbnHrV4EqAQp4cgXt5SeKQC9G53nnhhTccU2cSsn": { + "balance": "4002.837556397", + "bytecode": [], + "datastore": [] + }, + "AU1oSwVSqycoSBERCHBoGRevoCsU3Du95T15Gv8E3z3nENSjQNQE": { + "balance": "1498.368041956", + "bytecode": [], + "datastore": [] + }, + "AU1oSwebUaZ59Zxjp7cxfwwGS4sMTSYJAMYGs81ShUPnwenaECQU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oTRu5R1WK6Uhv4SFk1auqV4ChQPDqAb2wSKeDsDiRZL9f6MrF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oTUwNQhXnek1CS1q3zQJQoYXLDxfthbTxJBDEqJHH946e9tcR": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oTcBQQQicSWW3o7X3V9BN44KuhyPC54XJ8T8Fccm4djDzAZQu": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1oTdRY5EPU74EqK5tWBGke31dE3Knv84WKKchEQEginzt4AyX1": { + "balance": "157.590759076", + "bytecode": [], + "datastore": [] + }, + "AU1oToQi1nuwGPUPSn85AUUnvr5RCHK8XwnRKmqppMx5Ur4eMd13": { + "balance": "1252.796978194", + "bytecode": [], + "datastore": [] + }, + "AU1oTp8tQPX6uPh1oPiZSDu8HipQNEx4rnYNCZEeSGEPAUXbqXNX": { + "balance": "1577.271518695", + "bytecode": [], + "datastore": [] + }, + "AU1oTwRqD9yATsWHLxXVjy4KpGB1xmtbW5ZkXa94eQJxtbEQ5rCF": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1oTyQr3Png9Mk8MAEXPaE1nj9rCnjtq1FS4PWR4troz8cbdJvp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oU6BQ9qhrQfBgFMEqBuQTJ2Qgyz4zWErggxYddmMzhEPwUyHL": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1oUCb3BrJCBzG28qDvof34UhdoBiLu3RhB7ddrW4hTVQ1QEuFV": { + "balance": "4840.308231113", + "bytecode": [], + "datastore": [] + }, + "AU1oUR3oQ1BZKyc4uGSqBEsr7LYQCjEKTxz66hpUtqQdvoKx4ZXk": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1oUgqa4Uz5xLMM3MfExbq6zQeyjB1X53eXef59tTu4tNEUFixW": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1oVC9LYedjD9XoxJXDVhwkCRc8S6GJRDTTapwuX2NqXg15GCRf": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1oVS2UevxS2iX1vUeeerT4BZCneJR2s5n3cQQwJkJLEXMuk16H": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oVTj2yapWm95m1fekAECPayfDU5SqiSy74FpMkysPrCSoS4n7": { + "balance": "1146.296516634", + "bytecode": [], + "datastore": [] + }, + "AU1oVUSzGm5GMG66hUxrVWV3fpeUy3Bm1GBp5BgAG5GpJPpi8iKo": { + "balance": "1516.645839237", + "bytecode": [], + "datastore": [] + }, + "AU1oVamyUJnn3BkX4eV3nuHpkkRfxMRiwb7bAqfCdwJKv7bE8Ntp": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1oVcRV6Juc6tB1DKFtHYi4M1ChF6HaJkQdPjnK5q5muDKC9h9W": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oVf85sDPZzwDhFqzEYAKJ6sTeNYhM89e43tnviwFTV4ZnGZBK": { + "balance": "945.077540061", + "bytecode": [], + "datastore": [] + }, + "AU1oVn6KAYc1i8vM9KFgUKwANvpyfxgeSeFSScW7cFbKWsJKFxKu": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1oVxNQHmp3mLbggiVuWZwwo9tMhYrDGa3iqrmcm3LM3Bgyu5ze": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oW8G95cii6aZsPGm1sGFfjB125bSmn81svs4owJnukEK8fAU1": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1oWB7mk3hsZbbygjX89d8HNkTpKLGuzRK4rrpPXCoTGZKCr2A6": { + "balance": "1537.184789900", + "bytecode": [], + "datastore": [] + }, + "AU1oWNUSy9vURTbKSHdCfMhMjqS6DmKh8b2SssZbw4S5PprBMGTA": { + "balance": "908.530922364", + "bytecode": [], + "datastore": [] + }, + "AU1oWZbwAreLs88QM9uJYs372fxZ7kRCyXuhuXpbXaKVevM1CNjt": { + "balance": "1508.571773667", + "bytecode": [], + "datastore": [] + }, + "AU1oWegJdhGc57tWANjyxLX17YK7HaqBryj2r4TRf8X2zqCar4a2": { + "balance": "1751.147322133", + "bytecode": [], + "datastore": [] + }, + "AU1oWm7Fm6ejmamunuYZDksRhU8mDSiJuiJaU1LDf1T1mvqXjDak": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oX9599XsNFU7iGhSf6sen4gLztd8W5RQSBNNfg7FDN4KLCbG5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oXLZXdzDJJEdNT32AbDNhnQunzhTB4pdtHkeR7P7DMFQaFExq": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1oY5aDF7ULPGqbiPeUrt6FFdjmC4VHuNUoFaDyzK27LNnwAKAW": { + "balance": "2296.400810226", + "bytecode": [], + "datastore": [] + }, + "AU1oY6eJYoFrEm6Aq6SRZkH5pvD66Jp8pMTEgRBhgkBBz7EyDcqp": { + "balance": "172.442244224", + "bytecode": [], + "datastore": [] + }, + "AU1oY71PppJPfipGzmi2SfkUugrQDknAT7nL39yyfkNv9RDzXKoK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oYHYHL2SfvJhTx91sts1TSzn8Z487e1TTwQnbSXema9jn4XwB": { + "balance": "1282.262753339", + "bytecode": [], + "datastore": [] + }, + "AU1oYN74Nygx7gATc4dYDpmSwaRKN8BGZtWA22nQaDyM42N9WoS8": { + "balance": "1319.208320730", + "bytecode": [], + "datastore": [] + }, + "AU1oYTa81KFn2EFYEtLnHmURFXijMysheKdY2tU32SmmtExKEmtC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oYryDTE3odfGZnbKvu7yuAQEsMNDEXjqf3rkWpYmK7zJwPJVr": { + "balance": "2959.876142279", + "bytecode": [], + "datastore": [] + }, + "AU1oZ9WzevY1xXuw1GBjoPdZ8f6NPQmYYxwzFvLv6FZTQWeZ54px": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1oZfLiC1tsPZfdZsyF561MurjRZNZ3jMGqFB5TZPipAKY871qL": { + "balance": "3337.300779292", + "bytecode": [], + "datastore": [] + }, + "AU1oZi63pMPLs2whvu9sk3TTB8af1ZWSc7BNEvBKqTwhM9WnAX3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1oaWNFYaEabfnBq6U4QQBhdSzhRvpA4duVMgexGLE52dr1Yq6h": { + "balance": "941.022017700", + "bytecode": [], + "datastore": [] + }, + "AU1ob2Rahy7Gqhs3s6Su1ZR7KkWxTiELGdgJBrk974z27KGM2E4j": { + "balance": "53.839412113", + "bytecode": [], + "datastore": [] + }, + "AU1obBgdw5oW6aBmG7zHN8fwtmrFJMGrs6PmY7VGBZjwpKBrBs7U": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1obWncwXdRFCcFTJYVqHGsUTv27t7vdLH8gzHa7hQYchnwqFkD": { + "balance": "51.155115512", + "bytecode": [], + "datastore": [] + }, + "AU1obdLSeYFdEPz8GfV8NumeAPquRQZRh1VmEVw7ZQa3PMfLFkdb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1obvUNR8kmcD5Z8dXkSWmb4ktK5q5URUYGqoV33A1gK9wfwG4B": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1oc5XDUXEUbBimRcnfef2Tr27wmBe726FBqtxfZxjuQqvzJnuY": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ocW3jBAEpme6cmytJPNWoM9Fs3AK6BpQAT2BrRNeGsT6diqCi": { + "balance": "1041.842141550", + "bytecode": [], + "datastore": [] + }, + "AU1ochLGa7cq6MxeeG9otFpiPkkdskJiv7Y9eE3MaFJeUgZyAv9E": { + "balance": "78.382838284", + "bytecode": [], + "datastore": [] + }, + "AU1ocj8ZnsagKUjffR9CVrDheas3kCgTD5VMeuVZ5XTS3jxCHxTJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1odDuDqMjEUBwS593YVfNSoEMRcW4zeYyF9W1TGb9EUtC5LzsJ": { + "balance": "2650.739729606", + "bytecode": [], + "datastore": [] + }, + "AU1odrmcRHjhuoGVPK5h12TySyLpzNgBdRxKgJwxmKccY3wjgSrw": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1oeP7aNXMiHqxfZ1qmdfTExZnaKg9xFjvDDWiGx1LZAquGSUMZ": { + "balance": "3790.751581803", + "bytecode": [], + "datastore": [] + }, + "AU1oePwMtN6Z5Xn2aQcFnMiBpoUrSPiNnxfdDAZH9jCyBKX6C1fi": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oemP4HTjTtdTkPr3hdj9QWHCNREusmiZkotpcxLJx719onbUC": { + "balance": "1862.852108668", + "bytecode": [], + "datastore": [] + }, + "AU1ogWfL9jkuRtZ7HagnbYyLEkWkdGPVN7SWcaV7wuzr7CwF7QhP": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1ogti7ZvffqUUzwBkHq6vuo7DjkvUULJq6EMfPdUBQEbUffddP": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1ogwqTvfX3jwywnr4RQyEerWMrY96GGq532MYmxzP6e4ERiB4W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oh5tjUZVcNrsgJXzGrGWkxQYMBeFHM1xKdBb2qJL4haENqSu": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1ohP6gZ5e6Waq18qL2wqyenmLzcnv9pR2ju1Ysnp79Sh93ir3P": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ohS9cdfDwtPpKf94Gszgkry12QLrDZdcXKpPq9gQZaCLkH2SE": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1ohc1EUaoopvsLpDjZyFsp8RY2scsY48UGb1WJN99xjUSEotgu": { + "balance": "2696.834893334", + "bytecode": [], + "datastore": [] + }, + "AU1ohqBLCT8oDZwrpSr98aFkASqGewvAJnVAMP7ZgAFepTfuKNYP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oi7GsXWNL3ajaFPXZUJewNknaXNW1u97j4iskhJmVjuUSFWCb": { + "balance": "1280.008463872", + "bytecode": [], + "datastore": [] + }, + "AU1oi9A684Q2B4rtW2XXHZxHr2mAcroC6557FesXHVSbRjuRDFvb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oi9MdP4TLxjPhXoZAFmHByq73tXa7yGdGCS4KGaeHectuHE4w": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oiJ41RxpyWcQCoCDBkkjAfaPHPiLceUC6AmPGa1ut4Wcu9h8P": { + "balance": "1388.813016566", + "bytecode": [], + "datastore": [] + }, + "AU1oiK6Q74xiUq3TsN43rTQmEjeSpfNLgJ4kPG49Zx7CFEKYb9Bz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oinVx2vtqTKCkpKNzMww27qppS9DwZg544kjVzQYNCxyBZnnz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1oiqCFBzdjeiPLrKAZaKENzwrGPGCCbVVhZUB2jT1ceeyjofvS": { + "balance": "1140.240744332", + "bytecode": [], + "datastore": [] + }, + "AU1oj8hsxpuej28yaEDBzsAZeB5Hy93ZzwV5vAvRjrnQqxDRcALe": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1ojSUbdNnNqXAprJmix5JGSuVjDwfNpUmxo78xRWQbAJnvrmst": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1ojZ1mo9TtbHzy1Y6QLAnKVBbpME1Prf3pQusP1kKpjGgGoLy4": { + "balance": "3352.481723031", + "bytecode": [], + "datastore": [] + }, + "AU1ojaU2SecePUraXZg4tqqGw9zcDT62akjatsq8qNciTWDH55Rk": { + "balance": "2802.195137961", + "bytecode": [], + "datastore": [] + }, + "AU1ojqQAAR1djehDsfMYAN6apZMVtPULAPMSBeXf7YNef3dUZfrv": { + "balance": "1181.191246351", + "bytecode": [], + "datastore": [] + }, + "AU1ojqvCRC8fwkxvsE6s53xWyFu4mdMwjnJ6mtzQWFCLUxeKwKzX": { + "balance": "166.837622604", + "bytecode": [], + "datastore": [] + }, + "AU1ojsPiCuv83U7yxp2TBNrQGqDKqmKqvQeBuZcPvFeuinsdz9Wj": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1okKqogsY1cCtd285zFDvd5iNMU3PoFF1KhRnGEtes2erDUHXH": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1okfpLumc7Z1Tzc4EYiTJSUfgmsMonkhN7ca1HdABoVQiicmw3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1oktNbrMS6NkDgQi8drkckQ6YzzJy9TjmRRTREFhyxgPDZydLF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oktfS9TVTq7AFbWfk8sBcgvmk3KtY4XNTR3mTxB9nhZJXNB5X": { + "balance": "5785.370818583", + "bytecode": [], + "datastore": [] + }, + "AU1okwJJ5vct8gbQR4cg9sLvVx43vntFKBFcPy8rLyNiJ61kjiuq": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1okz56yjpA4FQMQAjDubiTtANeCnHwL71DAPaXguq6a2YCc24F": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1omFEt1yVEKrVcwrqGAwgKtU9ruhWgYGjmVtH5nBAkp38jYBmj": { + "balance": "2233.114354317", + "bytecode": [], + "datastore": [] + }, + "AU1omftb5mrciiM16RLm3TPQcCkF4zVEppKGTEVsneTQipTvUnvJ": { + "balance": "3107.870908488", + "bytecode": [], + "datastore": [] + }, + "AU1ompeyHbsgKX2uKKRyBvZgd8tdMqawXxEabMFzs7wkPecXhB2q": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1oogae6g8mBAcHYAfrYjArvC864gh3S942wgrCmkt3ReEWTQxz": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1opGL7r489nCCkfpJqXgxq1JE57rvatzerket8hsqD9tyTDWde": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1opmZ1rqT9ptZxhLPGSjwzZCsssXtJtsGwDqvdaURZXqHqLihq": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oq73fpbFY3PGSwJDggJh8y6K2ywiHQUJUpxCt8UtEWyMywZEe": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1oq7miYyfQDVwzrB6mWz622Q5C2RkeNfbKEoPieVwmq2KqJ8R9": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1oqKdMuZEBVD13MpGrAD1tthDUmmmXfV57xnoUxAC7pBawcD3G": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1oqU2TJete85UQBh33XpEEKs72PJkfeSDASqxw7aYExEApN2oh": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1oqZwentgKDzXi2G1jxYboLXTm5BanHHneBZAHzEy6aBRLP88e": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1oqnC4o7yAgGS5eeLN8pXELWwe5Du3LdAqJfE91Eh7cMZCgXLE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1oqqY9hu4ARHyv89iSton26XXXdQszLojUJZzhmDMo3MLvHUtn": { + "balance": "294.536702426", + "bytecode": [], + "datastore": [] + }, + "AU1or6xyhHiYyPNnbmyiwxwrmHC4SfM4HJRz2XtrqrMbJedUHUGR": { + "balance": "5279.175631321", + "bytecode": [], + "datastore": [] + }, + "AU1orMWVxoWwabxosi9TtbgggwxrihqQmtye2DxTwi6rtEzuauEJ": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1orW7CZBjCXsk9J1P2b9Nj2bktpmfvX9ujnAd6CzppJqCd2yRX": { + "balance": "1538.971900543", + "bytecode": [], + "datastore": [] + }, + "AU1os89YzxnuCifokdjTUAdNisGydVuHJ6BTAyToLX2BWsv8zK3r": { + "balance": "2194.433014825", + "bytecode": [], + "datastore": [] + }, + "AU1osJj9J6Di3VYWkJPajWc9s5NTEj1w725PwBCVqawSW434HDH5": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1osL5KBTx7dXn6ChfCtDwRxRTtmHKFMDhtP3gNc5DfDpAoj6Ys": { + "balance": "4128.959492707", + "bytecode": [], + "datastore": [] + }, + "AU1osRXsWMrnEoZUvP2XACKHcrCXmVZJXzuRy6M51vE5VfeNcb3C": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU1osrX9tLbhdPyTCQFScWFT9X2jWh1dH9meTtyQfrqdLEn2ZXje": { + "balance": "1858.035939385", + "bytecode": [], + "datastore": [] + }, + "AU1osw1LpGj6kkGjUpx7xmvGvhnywCc5QU16rDXDNspx3ebPRRNc": { + "balance": "675.100168283", + "bytecode": [], + "datastore": [] + }, + "AU1osywfb2pxUGGvz83bSFeRk6LmHmqzEUPKEghdTeTkkM2sniaG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1oszDZC4j4neTmaosuGzFuekWVLFsVBkc7Rs5tViVeGNnC7jES": { + "balance": "114.686468647", + "bytecode": [], + "datastore": [] + }, + "AU1otFgRnYj2gCmVQ8goUMvKPCSiKTQjaVFYjuTxpAKLhwNgWfPg": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1otcEfYcCNBkxLrajq9jjP7efjY7xge8x2V5P7ozoBKqCGpqr6": { + "balance": "1364.163816080", + "bytecode": [], + "datastore": [] + }, + "AU1otrW5FhujtyWzdrfd7qSSYhi9HMXY6FRLha576Jm6U3K3i65j": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ou1YR4G2GHBRCcMvC9Bh5YozUMvwpdvP5p6LqV4NL1Sw5FrVc": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1ouC8nNusGz3WHu5y1QqpxfAGEnPXdvHcy37j7LFnw2LWDStzs": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1ouP66v1VKaZjX4TDp9kHMbktEesNSLyEhpSbPSSHb9uTLMtXa": { + "balance": "14.793962028", + "bytecode": [], + "datastore": [] + }, + "AU1ouREKMajdnQD8yGsZ1xN7K9J2M99tKbRsD1kSPcDnMZttViB7": { + "balance": "5340.903615199", + "bytecode": [], + "datastore": [] + }, + "AU1ouXi2bw1Mme4guged49m6HsGpKTCHm6MdAtDYfw57BGGmHWoZ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1oui3hHpREtcfAhbs15DsNEMusNBYWpHuByPRm4o1Ayqw9vLTy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oujWBRLYCxxa1G9NfRaVDtxtWcPs54miAEZJoVjUJbHnRDTJX": { + "balance": "5801.870653341", + "bytecode": [], + "datastore": [] + }, + "AU1ouuoaoZ2PaWr4n1Y4Znx9kC7ajxdir27VXp56ZmSTys3iLjG": { + "balance": "797.138410885", + "bytecode": [], + "datastore": [] + }, + "AU1ovFA2EUuBzyxJMATC7JHAGoCom5cSJf3axijgMTzvbyaAQpPX": { + "balance": "929.559004420", + "bytecode": [], + "datastore": [] + }, + "AU1ovW8iPuFM2chJf3S6baZUdrSJzV1DWjf9DiWrDwZzWrESXH7R": { + "balance": "582.993655502", + "bytecode": [], + "datastore": [] + }, + "AU1ovYpZsgy4T9zEazHJ3xF6LLVhveisHHXSrJYa7Abt23yKdj7U": { + "balance": "1467.066812412", + "bytecode": [], + "datastore": [] + }, + "AU1ovixjPB3ZvEPmYQp2PXXk3SvS8bwGk1PqxwRrjGexuvpKGdtn": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1owStAyKK4rGQc8NkbESSd6XzHkaLRAmxFMDaK5BW6VjTsnhv4": { + "balance": "1177.225485733", + "bytecode": [], + "datastore": [] + }, + "AU1owaott88XWcTyGsHcBdXPfAqoE7qWiwfPhwbBR4Nye4QQhPh7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1owo7rY2S2FQfHwxcP1EpkKQ1CfvoNafNYU6tSm2SxvErLCGim": { + "balance": "2307.612543566", + "bytecode": [], + "datastore": [] + }, + "AU1ox9pgb2ZpigMwJKvPW1N5qP5P83anBfhLc6S9Q7j5YuU4J9qn": { + "balance": "191.201760681", + "bytecode": [], + "datastore": [] + }, + "AU1oxgXL1r86Azz4NXzvCZiUr9C4C54JvubcKxHTRCtftN1QCea5": { + "balance": "139.438943894", + "bytecode": [], + "datastore": [] + }, + "AU1oxoF3GJFHdFv3BQgtQ6Ch7MVPfg3zkCs5n9vDM5J9gfPD1Qup": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1oy2L7bErDKMGC3P77fni6eWxyrmBWMQ6mm3VKEv4ujNZ5p46v": { + "balance": "333333.600000000", + "bytecode": [], + "datastore": [] + }, + "AU1oyMZDquX4YT3N2dkme8Foyup1jpUm6xUSy5sLy62VxKxEq5gg": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1oyPiMt1ansNm4aCxHMJXbLrxCuYd5WdnghPKLagpja1K29uY3": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1oyjp1BLtjTFBELs4Rjsn2G8CkKtWVvc8Li4o7ntkTPASLjp45": { + "balance": "804.179927416", + "bytecode": [], + "datastore": [] + }, + "AU1oyo23QEPwnrFGEELHn49sgqUnLmgENBL4zPWYqrXKQrUZhB4E": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1oz3T3Zmrcg7yDXNP4xrXZJeZ1nk9AwfqBD2aTcsJa1hDhS9BV": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1ozSsWcqTq7Bp8Dja3wYXDdk9qz257VgJ3QfMCkoZn3SBhYYF7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ozVjuBhPrdQKXNVcpEdVumWcuMLyqMrsuDmG18RqQpHTsyMq5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1oztjnEDbpVSnEzaDGoaAoYTLVrSXSkbXsJ8NnykVLBBupF8qJ": { + "balance": "1273.184284989", + "bytecode": [], + "datastore": [] + }, + "AU1ozxgBH6B4D4hFSKUHP3FZtRJxCNejWnnH4MeUe4sB1DP1oyNg": { + "balance": "5045.935875544", + "bytecode": [], + "datastore": [] + }, + "AU1p18R8r2PEHLfQe1RhZy2Hm3B6bDMn5DMM2GFJmoo8J6VgMHFc": { + "balance": "4699.689609556", + "bytecode": [], + "datastore": [] + }, + "AU1p1NrChtyyvHHvdJ4komi2VwzSGskhRTx4RN4fCLtaiPnjTBBE": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1p1Xr1Y5eyUDRB4Qtsa3PLpp4U6TGbmnqF2c4jhakDSdGEVd82": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1p1pc7FeFmiGr2ZyySTxhAvyPziXcbBwSFpEhcUjVVyaU9vbJv": { + "balance": "29.913784555", + "bytecode": [], + "datastore": [] + }, + "AU1p1qY6DoaV1wdKDx4AhpApQmEsKNUmfY4PDj59QZFWWkMJRYZ5": { + "balance": "562.977604911", + "bytecode": [], + "datastore": [] + }, + "AU1p1qsJvSMhxast52MqCf1Lz1Fc87eya9CvrerZSmujszhRdhsN": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1p2eNB2W9RhZHiHtw9paWnWcU5AS7aSQBjqWi1QhzA1BsYSpQN": { + "balance": "1027.789586875", + "bytecode": [], + "datastore": [] + }, + "AU1p2epF29smAsWPQHmsrAPaQBdC3YkYxUuGWoaRS65Yq9yPLg4C": { + "balance": "2968.181909967", + "bytecode": [], + "datastore": [] + }, + "AU1p3997bfnRBqH62pa3X5xEedWyrSkf1fbZ4QuUETDNiHGw3ZGP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1p53a5dbSpt83VvqFuFvjX59Y4gEhVRGyPFcVZWLyDtBmUPtm7": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1p5L4tw984jNan5DeKqUN6dNdxYnKVfKPGosxrtR8RYXPHQAct": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1p5L5hfHsHWGzFfrVRTqrDaAzrKxQJXB7SpgNkTGJRfmepbQef": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1p5bmNX8WtFeZMTijtAZXPGJnCy4v22faa8iP9hisUoEdWgoqc": { + "balance": "2631.496913770", + "bytecode": [], + "datastore": [] + }, + "AU1p6CZC7C3vozK15214DWJjK7x3UvwEwWPBUk2LbVGirnP277z8": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1p6Zo8NGdTvZWeg45aYBuqa8VzoRffHAiXPcNnjrAaGWyuV3v8": { + "balance": "14.687135023", + "bytecode": [], + "datastore": [] + }, + "AU1p6aK4sdpEcGZZUZRGZUGFxgswumEaAEnMTp6S9GSKjkcB21Jf": { + "balance": "1161.503702576", + "bytecode": [], + "datastore": [] + }, + "AU1p6fCM1oZgnF74HRWoF4QjXBkkySBt9qem5gmBKtygFbneYkvT": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1p6gAjJFe5AqtUY8TtTqbYrPH6s38BsF4GckzSpao5AZ8gTb3Y": { + "balance": "1100.683729552", + "bytecode": [], + "datastore": [] + }, + "AU1p6jnMvnRPMV3yucFj27nn2xyHNBtPzRqUEo4vSFZtdk36ZrDi": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1p6nY2Y3DF5Japtt7SFRUX3SvYptzGnrxYgxjJZuT8nxSqjx5v": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1p7MJ468qrxkp95s3tQnNLvA2BRWsSnWBTZadZYzxTz7ntnTAG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1p7N4BoNHBhryTsp6jBPEqm5gNhrpP7fGRMSS8Z9vyJTgzgVuV": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1p7uMQm17zpMJ4x7RtRyAgMuwvxteoeMrwN2RHAFgc8XZEQgCb": { + "balance": "1896.829991542", + "bytecode": [], + "datastore": [] + }, + "AU1p84rywroKp84K1kBX4CYojAh55gt7W2y9NwpJCv2e5ezNcv7D": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1p8Vbj7xEroc8sipMnUH9qyPMbp2pTLweaSVem5Qc1g6PY3wNv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1p8xKi5kkZR1WFGxZe4MRpX7VL6VB6e7yZJSzY6qpmgfksX1Mi": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1p99JwRzTwQKZeyK5eeXDJb3dYQCZUQfAvwLAihYcHx9ZAdL3f": { + "balance": "2234.964154982", + "bytecode": [], + "datastore": [] + }, + "AU1p9Cwgy2NP5L18aftZkQAUpMntPUUq5rtqusp3suPBQuqanh4M": { + "balance": "3345.296299092", + "bytecode": [], + "datastore": [] + }, + "AU1p9HwRfXH85dftNHuoW4Exn7X4mraeoyGCK1TP1n4avotsZ83e": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1p9fDNqpZ7C7FV45kfWQ4A9rDhksxRnuwm19ttP6UeH5rkZDhH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1p9fmLoHW1Sb24BbpjNpTNzjtqMzGuT6NnbTrYHwuGndieLCyf": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1p9ni74D2Yhi34MDrApmhPa3MJ4e5DrneFtsi3JR4jzXk1d3zw": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1p9xyuKWXt59wnKVrFYsRNSRYaeuJ3bfY3KQY79FaP8wjfgqsb": { + "balance": "937.696777266", + "bytecode": [], + "datastore": [] + }, + "AU1pAd9K3BDPv56tnFEF5PDrAn8y1VAYNmsFYhkJbHvdLpVawkwS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pApVVt2FRKgd4e3fA7vtBkBvSjDq8vib5QrvuKmiCdRsQTqmS": { + "balance": "22.738400043", + "bytecode": [], + "datastore": [] + }, + "AU1pAsd82HahGH79itbdY4w6dqLp5FP1ShFn4DipRoPMxCceY4YB": { + "balance": "3168.974187645", + "bytecode": [], + "datastore": [] + }, + "AU1pAt4XYRqzCSV1SBb7qGuXrRcnCMRoGwzFkq1G6TkrQz6ZbgVA": { + "balance": "6535.266241604", + "bytecode": [], + "datastore": [] + }, + "AU1pAuTwg7muBWoySqXitT76bUFpo8jgU4E71xgTRLaBSoWsk7Vg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pBAM9BGp9pa3zW8Xaf218yqARswtUNCCjh7d8rXcbtfhCVuTb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pBZbS7vfTYk88UuWGodVfANpKs5jwbZ54KqkKKGHAzPvfGAfk": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1pBdYdisZRbUAffDdKmBrrtK1RbautZkiUfsp8N6qxdQcUTLfq": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU1pByJ6qFHB88XiJWCKvb4P7yQ4Lyxt5awHJhMeMuT3zpXjuiH9": { + "balance": "2866.610145746", + "bytecode": [], + "datastore": [] + }, + "AU1pCdz7KRSYtCGdWGHxJ4DJp3LbWZuW4wFLBwmwGnUwB8aJUnBn": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pCoaMRQ443kKhviBCtspDTkUJGDptwaaqssn2M7aNHFJvPmGa": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1pCrY7Duyq2yZtvhTrG1Ds8RMpZxix4ytGkx9BcBArBJyAT44b": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1pCzrVj1Uq1hw5HWMQaV9V6ppLmGbLHN4ktEutBVfLBsuhLR83": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pDPrd138cTKcP6uLBtJuRJnLpYAQbGg4Sb9aMAcjFxexKMq4a": { + "balance": "4913.185032560", + "bytecode": [], + "datastore": [] + }, + "AU1pDfSf6TDnnxRFQ2JFFPwPjk4YUMjDbeBMJQDt5TNzJuqnQzP8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pDocos9cnEAnswCYWqiYxECu4qEX14RVPXL12hvDrrFgXaCh8": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1pDzGqat518kb2RBRdsUERKBur2tpnmkzRim34ctTQJ73gDRUw": { + "balance": "2636.401389684", + "bytecode": [], + "datastore": [] + }, + "AU1pEUnBT68CsE4CDmtEcpjBTcTc3XSNSTxNNPPGpH7itMJDTToh": { + "balance": "1369.975244250", + "bytecode": [], + "datastore": [] + }, + "AU1pEe8K5HEk4deN1zpfaDzd72fwzcGt89oVTFAQHVTajGggNamJ": { + "balance": "1102.686270366", + "bytecode": [], + "datastore": [] + }, + "AU1pEsWUAadbaGQppLKLoCLXFVmfjFRDWu1wwwYqxSyUaLHHovZz": { + "balance": "643.626913492", + "bytecode": [], + "datastore": [] + }, + "AU1pExYC4F1DfZVaYz8doBMs9Em5Z5ZqWsES82ayMVEAEanA8jmU": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1pF2w8ebpkGNRk2pNzmg478iRb6Hq8vfAEjyULMPq3bySJ9BNG": { + "balance": "2279.907067148", + "bytecode": [], + "datastore": [] + }, + "AU1pF5UZJo6dC97nYdzTHeFQ8UzQtxjFBZmwaBbW6bx2b1rCSyBz": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1pF8c8iDRVMx8eM9cNsTs5JfPHaCF6AFEJMP9V3bBDFwMMpwQ5": { + "balance": "139.438943894", + "bytecode": [], + "datastore": [] + }, + "AU1pFUgQuwE2Nz8d7aMNK2q7bEeXTx6RV9KX1Bg5QEgLCZAFgP96": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pFenWG1N1hm89HDzMpe94FcxEj3LbcMnMh2e27s6yHZzPTMcQ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1pFjpbgxz4W3WqK1ifTytugpgzaJWR3J5jh5R6qPdDZTsXwjgE": { + "balance": "4081.175030441", + "bytecode": [], + "datastore": [] + }, + "AU1pFsByvykyvF8qBmHaEufy63DE76jtvQWMqmRCJgm8G6WqpnCP": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1pFuiUZyg7SD8eKhJkpYjUtC6b44QLDAkprvMThnZNJ9De4hMk": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1pG3hGafrHBbU1aKmoR1BP1AsjnAdPMZdYD6HmvaMa4CeuEbE": { + "balance": "886.276393812", + "bytecode": [], + "datastore": [] + }, + "AU1pG65HTGaey2eMnUorRzAUGUAmB3Lbde8rtQqEb49eJxZPTCM3": { + "balance": "3423.664109933", + "bytecode": [], + "datastore": [] + }, + "AU1pGCMCzC2MiHDhQt2dGCN74w5FUBecM5ZaxYjq1QxzQwvcQkVp": { + "balance": "4508.438081396", + "bytecode": [], + "datastore": [] + }, + "AU1pGX2mXkun7bXXfMMxKNCN9cMc1tyj5CQ46Fg8LSckLLaKWQf8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pHKTsH4UmpJL5nuVR6ZBvm4HsmyKBYHp1svPiKQ4Kqd7mEkvK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pHXwsQ79bNcDQ7McLtv7GnymfEwjmq6PNCVxMVTcBzPk5JJUh": { + "balance": "975.006451393", + "bytecode": [], + "datastore": [] + }, + "AU1pHY6px56Atxz8n7CaoCj96TrCrwLgnyYYyT1V6EA9AUUvyw61": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1pHcdyHZ7fvM1VXA5Sm7ukRVHDyspL3artuRuE4nMukrr3TWqM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1pJ1hT28Yt9TrjSQ4mnu5YWQvA8WkV22PxQBEzRaSjrbqEoF2E": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1pJFdVd3izDoVVJBadHj7aeit31LSR1iDy9mcfaQ2NGvBZcPEN": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1pJNpx74N6fS2n9wS81QE3XC5LBhxQNh5QbCbnG9D65JPrMk7P": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1pJVnd3ZjdSX8eioHhitq1ftcUeGppep3UYQM3eLiwzxGBcKCq": { + "balance": "755.698071023", + "bytecode": [], + "datastore": [] + }, + "AU1pKU3kZSXA6Db55SwmaGFAqHdSJRvRvcNZDGsiJt1SL5LkrDud": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1pKVLZaeg5Z9W7kKCt1YQEy76Vhy4UosRMoJFNYw3Z76mRjUH3": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1pKZYSur4fhjw8AUDA6XXZRv3UwCxi3qBmjPvwEtaT2Etr2tVm": { + "balance": "1352.033859864", + "bytecode": [], + "datastore": [] + }, + "AU1pL1KJ5DtyD7w1t3zHNq5Rd3qUNoKLREnF3QT4VYAaT9RManU5": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1pLUTArnWZjbZcUntbhTp7pAWpS7w5RrTq8NMgXKfr32zGqaC8": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1pLWDBGaGvSu6SqMW5yos1s515cZmXDgydBQeQH5mg33kNDeRQ": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1pLm8YQCFDStCHxMXkvDMBBFsjDiHoPqR8umMHeeYdHZjz6bQv": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1pMBR49kTw1dMJXC8YyiUgScSQbWcV9viQeisRZEa7venRsuNW": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1pMnfH3qxBoSi3jG4Ugm2SioL8GV46haFskLkyx9X1cH9rxUwh": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1pMuptV1tNgnmtJkBKmaAfaqQ2VndqvMwdHszRCnMZLcs5TBAd": { + "balance": "1311.927928271", + "bytecode": [], + "datastore": [] + }, + "AU1pMvnXs4dUVzKnGs9E1x3ZrcNoEe3cZnxAKt5WGvjCrhEBw92y": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1pN1ArJkB9TZLCFRaK9JAcKxXiWSg6XydGFavQmRJm4sECEVUA": { + "balance": "2883.172703840", + "bytecode": [], + "datastore": [] + }, + "AU1pNgH2aJtutQbmSHaoeGraiLkDr3ibtQCkn4uEJaYa4ptzDNn1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pNpkectvz8jq8TJ6uE2zfKjxbk6hz19HxPzXgLdoZXYQ3Vnw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pP7vC98QjuYrkC574u4x8NaXh3K1V5Jkgeb1j2pw1Btebg85o": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1pPUTWANptL7s4CtUNaYqTwKnLoQYnxpozQrRrV4UWaVjt1AwG": { + "balance": "3858.420308465", + "bytecode": [], + "datastore": [] + }, + "AU1pPduurGnuNVm4g7q2bCb1yTmvKNrnPbuLr5VSCKMtKkBHgGJF": { + "balance": "650.748764748", + "bytecode": [], + "datastore": [] + }, + "AU1pPy2uvepTMDVsUdSmojksEJFxzZfE5VB1jDEmbzB64NUzvCZm": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1pQ3D6qyRWdfGpQ8kABv1MUK1K6DoyrV5SoJjNhorX1Q9iUUzL": { + "balance": "2670.869890619", + "bytecode": [], + "datastore": [] + }, + "AU1pQQd4pfaEgYzewR29YgdR1ntmJkP7jcwNDA42QfwigSmQQA6q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pQXr4MgdPr3HHM3AV4NViNyRqW4BsUNKqzh96sLBy31VAnVEY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pQfYFJXtqCj5nQw33mEjGiFbyMQy4jsAvmPRMPD7eymtmEWU1": { + "balance": "3417.817238847", + "bytecode": [], + "datastore": [] + }, + "AU1pQheeBTeA11nW8373E6TYopYgEkgECmmLF1wurB6WcnXVjE9V": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1pQiqX1rFNZdWSFndTvSgenhghNH5LJFeYfaA9LRd4Edmq76rQ": { + "balance": "3153.247724985", + "bytecode": [], + "datastore": [] + }, + "AU1pQkUr2YQxK7kVGveRP9CMNWaW7NzF644MJ93ZbY4F6xyFpurA": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pQnmNBpbkLpYJh6VYisNYvsXkCFh2yCEQC38ZG7JxPWjk2rZT": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1pQqDnGw8ur54KssLT5GnMgEp9zNJnkBd1YWkw362JjFGorvqr": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1pRCZAjKVWYq4mGqMVZ3Y7bJFdSxHws4JxbfJG4Dkmyj4KWZDz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pRdj4xaYJ9V2xLrKhUKtLFYrP6krdNQjrbUrDodZ3uXHAvJ7z": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pRz9gfNVU4cWpqJBXRxdfkXByUG1CDaWnLHuDA1LKLs8CEstD": { + "balance": "1015.920074233", + "bytecode": [], + "datastore": [] + }, + "AU1pS2SQ62Uj1coSsR8P6jTiotMdLUYsdZqtY4SK3eftbrNYYcB2": { + "balance": "2331.600369480", + "bytecode": [], + "datastore": [] + }, + "AU1pSAuXZmdpYfUDkZ4gfiwCm2iRvHbSfWaMSkZ56qhsAsMjcVob": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1pSYmsUMUuaPQzgrqkayAiBBhz6hEzc8pBA14eEow4936prr75": { + "balance": "1545.744872446", + "bytecode": [], + "datastore": [] + }, + "AU1pTFfqR5TZpurEsDraZ4ERKtrH7LbJPTDmd7qWCmwrGbJ4SxA4": { + "balance": "292.782364322", + "bytecode": [], + "datastore": [] + }, + "AU1pTbUac1KtLNcrXigKwT15xvEsBiFPcTWjWBix5zFHxuX6Hs3h": { + "balance": "1297.629435536", + "bytecode": [], + "datastore": [] + }, + "AU1pU8UzFMLTYsbx9APoCwbvPaF5TWQPjxRcqzzaC6jyiVnNNyE3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pUTaeUUxEZVHVZQYrPUpJLnERGRCEirpfYkUJ7Pj6jKKDrce6": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1pUaDvWaZkX2kxL6NwVQ1Thyu2G3kdrxynWCtdyRzQExW8QY6K": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1pUu453HcZRTFAwqZsjxiVmpntrjuFsUZsvR3myFp5QCTX6fUX": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1pV28p8Y3M6YcgA97ZEdsguxVwtkw2UxobEimoQj611tR7yH9U": { + "balance": "64.639731228", + "bytecode": [], + "datastore": [] + }, + "AU1pV6M4T2sP4tnEU4U8FcVvhcE3SArKdKomgCaMxtryMAhb9x6u": { + "balance": "2276.418074965", + "bytecode": [], + "datastore": [] + }, + "AU1pV7wXU9PSfy62SPLHYzECSKWg7xZmvxh4tQ6XR7TSTNj6j8C5": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1pVLWsPwRcX3KHGsPhugPYi8FGPeqnNfkou2CDPF6niz8fUua9": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1pWR8qbeW3XW3WSMqanfewcTMqtfMBUFb9wioyz5UEnewjR1wv": { + "balance": "3343.116382779", + "bytecode": [], + "datastore": [] + }, + "AU1pWS5qGtABRP61aTCMFpvBZEJrgmQP4ScNSMJVqvrJ7jAanZGa": { + "balance": "5130.552513357", + "bytecode": [], + "datastore": [] + }, + "AU1pWTT29hEg8pJZR2sjqXedBgHsZXNn45rC1qx5p8fpssBDdD7W": { + "balance": "3054.211419180", + "bytecode": [], + "datastore": [] + }, + "AU1pWVQBosABxsTJGZuJ3ZsbvzdW4Hh7UTnYCGmbkJdDSDiA4ww7": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1pWqqcZ3yY6wBxKdTJS8Q6nq2cuUpY8GgxhEqCif9BbJQPKMDq": { + "balance": "1438.013735149", + "bytecode": [], + "datastore": [] + }, + "AU1pXSmwtHWBTL78PiNaVcjb4ZhZfGq4mibErY3Aex9bMy2mZyzt": { + "balance": "1310.042050810", + "bytecode": [], + "datastore": [] + }, + "AU1pXWHyp1wngNqquShZWM8c2qWLq6bjvYcP7JTWaqRn4wn5wYEx": { + "balance": "941.473791224", + "bytecode": [], + "datastore": [] + }, + "AU1pXdrbUqgQREf7vpH5PeM54KXfTRHDYt5snDkoBJ8QYwkvmnKY": { + "balance": "6061.902939998", + "bytecode": [], + "datastore": [] + }, + "AU1pXqrSm7WadfKUa55n7tt8jyCYms1zce7FWvnkYZhE84NVrh8E": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pYA2PhAzxaCarBBtxFe5567dXCj6xjABfFE7QrWWXRXyGs7oF": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1pYNgwkpAmNNXKf8bB1ufVzf11C9k3xmyYQnMXjbZeociXey71": { + "balance": "2000.540850705", + "bytecode": [], + "datastore": [] + }, + "AU1pYmWi59p5bmEEXQxgeuY3hdejAYGqGpENj4CmtRFhKNuPBgsp": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1pYtAf3Vb51ATNzne6s5SV15vtmuPMZjK4HRc39uLod6gTUniX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pZCHwRHbVn911cTicckrkcE53DgJw3osb9jyxir7RSZ6dDtHx": { + "balance": "1985.647002759", + "bytecode": [], + "datastore": [] + }, + "AU1pZmw514aLBUBxMwHxtu4SJXgfqtYC1QFK5bDKwds923ZWSZzz": { + "balance": "165.588264885", + "bytecode": [], + "datastore": [] + }, + "AU1paTrwr2ny36ZiGuwopzBTb3s9RQsuqxCbGpYZxiMpbGzL9ihx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pajy554YnzvzCGK5SaQFJZmu8Rnj6UrTEo6CNUD9GunSHTiH3": { + "balance": "2860.093537054", + "bytecode": [], + "datastore": [] + }, + "AU1pb7NpybqKLGp8Dcy8nXui7m8pFT1Roz5P8TKSQhL5SHsYpk1d": { + "balance": "683.725954972", + "bytecode": [], + "datastore": [] + }, + "AU1pbCxGvVqAC1ip9BkG5CPjXnWMLQchQTHAdWUUgbu3dhkHSeeZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1pbMrfZFRWBHLpQBvs5SMACqXzQJLrxSyVQeyp3o2DJgWdn2wv": { + "balance": "753.310634424", + "bytecode": [], + "datastore": [] + }, + "AU1pcpHUaTdhtNdTw8noY7S1dpGbnEyXzCehqgFVmRrRMjG2pFhQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pcqEGD3kxjTbEN5iJTWLYZZ4PFuWLaMXGrKvr1eY5vb1fCHpy": { + "balance": "1112.868144903", + "bytecode": [], + "datastore": [] + }, + "AU1pd2RmrGSf1iVHBgboKEZXGHNXRSvMnvkxLf1wEkSCZwPzSy8D": { + "balance": "14.471470252", + "bytecode": [], + "datastore": [] + }, + "AU1pdH9GHfK24criNLjQN3gp4DLkdtS4GMDXtTiUorwKC9oo2WRW": { + "balance": "3513.012240664", + "bytecode": [], + "datastore": [] + }, + "AU1pdmzQ3rkuShckJT1ubxB53Ua47MWoAquCKwJc3jtjw7JqyFNs": { + "balance": "865.766698298", + "bytecode": [], + "datastore": [] + }, + "AU1pdouiRttMxfsH1NWLr6XiSwdqmmAW9AGVTXbnq8LTCFshckdF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pe74vQ8HWKTTm9hoAAFnSrfxHrpDQLFp4hvjj1eojf9a2L2px": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1pe8J4b1ouSY66C2FUTYeKhKvBpgHUHKYh7F8JptLT6xGYGnKt": { + "balance": "2284.601562975", + "bytecode": [], + "datastore": [] + }, + "AU1peHSra3HpsoGv96YXZuqUjY67PvYQD7ui3XHWEJjgXiCc9zTW": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1pejva11hwuuCNuRbvc64pXs7Cmz7gckKCkCJaSEMSfw7W5g1G": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1pfvQNCUAf4L4xVQRdrVJ589qiDyjbHQMWysajDqerDZSJrkyN": { + "balance": "1792.852113191", + "bytecode": [], + "datastore": [] + }, + "AU1pg1M72WrWLNanRZH1NcRM7SXZG4szZ5zYB8h1FTbyCGd3Z63x": { + "balance": "2536.313280496", + "bytecode": [], + "datastore": [] + }, + "AU1pg6iJ4h4iHJJUnuxjULjk5bmfwtRomvq6Zg8m1phwFkGEHSST": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pg94VCAwDjnqXeN6pzH1dGVCQjiBjA48TCUayavEgdVAKJ1wR": { + "balance": "3968.696198423", + "bytecode": [], + "datastore": [] + }, + "AU1pgNY9yfhh7dcZjNbpiW5AeRHHvV6eQbuSiMSTWbdAGtGthLeQ": { + "balance": "2775.606267760", + "bytecode": [], + "datastore": [] + }, + "AU1pgcN6NoEJX3EWAKfNV9WLZRh8REGWVmaaufKyMenk4vqmNWbk": { + "balance": "95.709570957", + "bytecode": [], + "datastore": [] + }, + "AU1pgmrVqwbsdYxvgxRvZimjWm367YyboQTM9K8tCqdDmzHWzu8V": { + "balance": "2647.013164118", + "bytecode": [], + "datastore": [] + }, + "AU1pgsqYB3E3bGHHfK4xqiVnUpnLLxdZruoKoddiskwirgZRSbc": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1phQnkCJ5aZ56HCm91z11Rex6yTdpaHeAq1gm2do1hKrQGgLiU": { + "balance": "829.624522912", + "bytecode": [], + "datastore": [] + }, + "AU1phXe5rCQyfSFGdj5oyQ8ADEFyLUzCLr6scNjPGotsCV5EGTvx": { + "balance": "5121.418524279", + "bytecode": [], + "datastore": [] + }, + "AU1pi9uaDzjqsVh3o4a9J8GJQy9z4a8cGo4vVfSUqfdE9mp923Ud": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1piH1p7JdiACi7F5cu3z57GEHpobMcSQ6B8SaMkrxiz6Pmi73V": { + "balance": "655.998760546", + "bytecode": [], + "datastore": [] + }, + "AU1piR1hc9bkqdhxeoSQ1wKcC2SkgL5fw2nz2WeJkYVS2Kfguaib": { + "balance": "172.322824762", + "bytecode": [], + "datastore": [] + }, + "AU1piWVMHLUyWc9M3BUnbPEK6tETH9YwgxSmBCh1MkX8egRyrTyF": { + "balance": "3295.762872435", + "bytecode": [], + "datastore": [] + }, + "AU1piZsjZck3gPDL8XzFtJt1ckvgZyvahtNzpqUKBVShFUoyNEEx": { + "balance": "719.200874148", + "bytecode": [], + "datastore": [] + }, + "AU1piukMkdBTU4r8R95qAgFuN5Cx34Yys3aJAn1p8gWs9afYobaQ": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1pj3yUHycLW6K9qH9Mdf3Gp4NBUYHmb1mJLioyZKWbGRvgSTdA": { + "balance": "3241.449088819", + "bytecode": [], + "datastore": [] + }, + "AU1pjGDmMUrNV7zjZm8UVjb6s3BBSDajLyrq5QhtPak51GAkxNNK": { + "balance": "1748.838235194", + "bytecode": [], + "datastore": [] + }, + "AU1pjHH8Js6oCkSG5VU5Pd1z9N8gfGiF5DGPcGoW2WwJEpqLH5pV": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1pjHuNwBZ32CciqfFEP9eVJwTEYp1Pqox3djULA78hmWnY295P": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1pjRzF1j9tpTfU5KV7cQg48JyMCmq6DFMZbzbLmyoEajwQxKcF": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1pjc8uwxnntFebYuEjniSPtCcPiBwqjWNWdrVabn3FdFTJaZL": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1pjf2EwXXzyoUkNoZMmzG4HQa9HHbF8ZQMPbstvCqWBuBypwPF": { + "balance": "2207.261861788", + "bytecode": [], + "datastore": [] + }, + "AU1pjq31CaJFcUp1QeQrU4Rk7SaTXKu9qPqCyqVDiCgTftccWBWK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pjvQBEbw9G2L7Leaq3BGJcZWG56dL29B7YAbks24rJuQiHCAg": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1pkG4Hjak3qKJyTejzMe4t1w8coJNYpwskUugCgT7RZoh52mLH": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1pkZ5XCgxw4GRYE4w2j7dLadMbw5RbUcMBGwjfsJkPbJdkhcoo": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1pkgNC3aF4EBRRXEAhq9WA6Jox66qz2fEUKxj6wWgKzM4QZnNR": { + "balance": "900.212440816", + "bytecode": [], + "datastore": [] + }, + "AU1pm3asAhJ2SyJs1W4ev8MUYQ7RGYw9gEQnZo8oAj4g4yfxi1GP": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1pmYj6czPZatzgDWHAsyEy3EHK5hPSHRsCcwXdA72KYVVU89WE": { + "balance": "969.650880510", + "bytecode": [], + "datastore": [] + }, + "AU1pmy6i8qRZQBTGR2kViX7ZYPchphSg5xLn62ovdokHceab4ep5": { + "balance": "1647.643316095", + "bytecode": [], + "datastore": [] + }, + "AU1pnA6hnxmm1wut1puWSw3TcNoeDLqZuPdQRrrKbGkVYCCbWiXX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pnWjH4Nmz1UrMcKs1HwERcgGakEGksV8FbZNQPCmNHbehpiwa": { + "balance": "2162.490817168", + "bytecode": [], + "datastore": [] + }, + "AU1pnuQGVWJoh23LTb8zrkMg9jFFRxd53F4UfWcqzsHhWCH7VvSV": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1pnvkteNSLcSDvj6QXpLenJvZQ6KM8U5g7pBTmoenWPRKAUnic": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1po2jWx9bJXg7dgRqv2kQ2RyhTz4XRd2BvjAyY8i2YgivCX4kS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1poF7FMKSTiSCYBLRtQfaXdN5boYXTMTz7h14t9oZ4KXBQcMri": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1poN4HHZcVdFobA6RSAuP97JuoW5BEYPEgWzz4YpTpDANjaQ4F": { + "balance": "561.571709565", + "bytecode": [], + "datastore": [] + }, + "AU1poUjhxaKRmqUrsjLoCeQBVeApaEtXobThfKQ2PSJzS9azRit8": { + "balance": "5609.155176362", + "bytecode": [], + "datastore": [] + }, + "AU1pobGdZ5VMKE6qSho6RVLNH6uZuV9L3zYrx5riY1E1Buznw1Rc": { + "balance": "602.362551682", + "bytecode": [], + "datastore": [] + }, + "AU1poiFzPdVoa7MGCn5e4bbspqsz8kXF5UWLmwE7cUHjuV3Q5Gcx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ppLuwJ8z3T4KFxCJgvv3GHtyFjApfN2t2dxkemYHKSres5v6": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ppQoJsw8RShR2krpWzipf5tVUnWy419SQL2Cu5Woa5Vb1trS": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ppT3YfTLfppCKKKRTokqBvMWSU5L4Sc1jKtcE83M4r8a9LQH3": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1ppTsakRcWhngTqMfkymLXfkZWyMjfXqfBEet8rskoGHAHLFuf": { + "balance": "744.532873162", + "bytecode": [], + "datastore": [] + }, + "AU1pph3ExbPw2SqDYXKi2oqaDvLkAkco7j9UEg1MELwKyiXdwuwj": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1ppmUgNCYSL786BEWbVYnaA4tc1efj4smUX3NyF36y3vRkEup5": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1pppKCk9FGjB2e4cyTBK9ERFwC7yFFrcMcqitnMcXUkWG2DfLx": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1ppsAFUeVbMCSSz9uoLmDo1nnQXreodRLvqVimT3FAiweNb8bi": { + "balance": "1043.078144363", + "bytecode": [], + "datastore": [] + }, + "AU1pqLPg5P7c6tRXGWbQgmQo2KHefsEobHtW5N3EhmzF5QEFBDo7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pqT75UmJZcdAZjA3AgrPJuvfSMh6Cc8PfL2RfhDSpu6kx9y4H": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1pqpUVocFuT1YrwNkPFgUaDiP8tHGcYzascL9nB2tPoX7gNonJ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1pquaFWfeMbdbooGuriZLkZq8khSKihjx7FmCHccJovpEtXCsp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1pr9NtGs5BKdNxaBqhVAat8hG57YX5xk3JL9MZiQakR7jaPn2v": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1prWb4ShcuK1MwmyE9Yd1YE8369au4aaFaYp9X49xRBYJYTKhG": { + "balance": "762.295897298", + "bytecode": [], + "datastore": [] + }, + "AU1ps5DeV8reRMxPZphAUyvxpnMaUV4LemwaMWoYBskaZnY6sYNn": { + "balance": "6276.595064861", + "bytecode": [], + "datastore": [] + }, + "AU1ps6qPTzaskvNSSXJWHrA3n4rKkDSfor1ZFM4YSnZ7a7PuCbXq": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1psDxMbAqPmQh3gGZ3M8A5EoRtMqFcp81i8hLZS1rNw2hkFipf": { + "balance": "1788.667173809", + "bytecode": [], + "datastore": [] + }, + "AU1psXTdVgFW3bBAzwZyrYrxJG4ZwdRPFumFpNwALbPE9DbP6mTE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1psbK6fVWTnqP7hc5wpvSArXcpPkGG3aDSsS7NqQfxjHQsX3Nm": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1psrh7rnxWwnssz5TfLcsYK4J7LX1eFYj3zcxzAM2NM9QbkDqj": { + "balance": "641.859522201", + "bytecode": [], + "datastore": [] + }, + "AU1ptRUvneRrUgETBbxbeov7NZKhz7Njbq34JBdxXe9VEsEUHxSy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ptUcjp3mK9ugnPh74Z9kTw2VNWTrqjm5kfNZWzpmrAUDXhzWR": { + "balance": "1966.435262880", + "bytecode": [], + "datastore": [] + }, + "AU1ptWXrhyzJuYiN8gZvSqKQuFnVEJKnwyEsS4gnJm4iZ8XxJnu9": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1pu7Miko9Kaq8zhu39ZVitwyukYibAVuJa1hVRFKb2MbCYKuZ5": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1pughCngWxSmqGrnCrAcZVQJBXtf6qzdxLzbnZc9ScMSmZuUNx": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1puuGdAwr88kAGUdMGRSputX1gD2B9RsB7jGrbij1uqd1pdLDF": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1pvMsRUpmQ55iqeNVwGip7Xx7UWDJWNmFPdHy8Kz7Ebze5QxP1": { + "balance": "802.783569092", + "bytecode": [], + "datastore": [] + }, + "AU1pvsC8qDaBef382bQa86PEVgv5L6TaQ5UcrYTX4k14JNUgUbqa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1pvwCSptF93PDA5p8pRSHWpBvyYHheVvWHr7dALoTZD62qZZQJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pwQRyzYd8f3mSnWo66SrAcasTTMTQTW1WNj6Kn3t3pYCp8XY6": { + "balance": "224.852883457", + "bytecode": [], + "datastore": [] + }, + "AU1pwTaGpNc1HdgtpRFkHRgiv7enuGhnZeDcFewhXFGYgBNScocR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pwWojb8ykYcXwBvrALhKmAV9ZKV4h5dQyF17gobA89Qai65XK": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pwyzTYr5jpwiknFMuCp1xes364MWqq1V1Cf3Hzvttfez8Przd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1pxaZTYmknUjwuDVSeAvukfpaaPyyzP8jumJV7EWEFqEMcCW8Z": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1pxgNkAotxfF96DYntM43FgPmAmf2cfDBn3X2GQBAgpUBw4zJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pxtXeYAHBfLoeNSTNfrfRfnDnkanYtDLh9tQJ6TM64eW7XNLy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1pyVgf1NY2pPTEscUP3HBwiT8CgHzRb3QYzGZbvvUeMqDVLNaw": { + "balance": "530.433876241", + "bytecode": [], + "datastore": [] + }, + "AU1pyVzr1RTyWhS824DvrUWstMz5CiEbGsrmGyDKxXwrJgwRK5Gp": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1pyd2bmZ5oZVbupHEQPaeHgeoEfad2RY5ndePoMDmecQJa2urE": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1pydgUV1zZAm3awXrcXpqeHyQ9cHuPPLPoZF1wi5LWMZwn46KR": { + "balance": "894.281851651", + "bytecode": [], + "datastore": [] + }, + "AU1pzAvvKXRAHnGWvPaZt2Q5NtgXCNK9XykNjTyfgceyB86ksdv6": { + "balance": "1989.705798105", + "bytecode": [], + "datastore": [] + }, + "AU1pzFofuzu1aWYRUt84ZGDdL9Tc86f2YjnoXc1C54bpgUa4rrwB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1pzZw6NPENKBTF4mKJXZtQUg92NhtAM1g25PUSAL57RNDek71H": { + "balance": "729.146858574", + "bytecode": [], + "datastore": [] + }, + "AU1pzanx4LcePAkS7veBk18T7zjrEV3HSNLPyRNJZbhnX2pJr5mG": { + "balance": "878.591091138", + "bytecode": [], + "datastore": [] + }, + "AU1pzcF8649RYE2SHHgVAnMkYbosHQ3nCAiNZo1YJQqwGofnGLTu": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1q1FiDNeNguk9fgSfYiEos4XoSUrzaxjF1d1sMdt5Fkxk7KJoE": { + "balance": "5651.909537002", + "bytecode": [], + "datastore": [] + }, + "AU1q1Vt2y6LWoDry39HWpTp1iFewNgFcPHUfNpiajph1AY93tgDN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1q1sAWBZzxb9ZKuz9wP5ijkCTzdwSXvJZQ6K349g6h9mq6MnqT": { + "balance": "924.585296582", + "bytecode": [], + "datastore": [] + }, + "AU1q21mevWEPgJuhwS2w3NyaDR8xifqhYrWvVGJenMpWiLDkanuj": { + "balance": "48000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1q2avRh6BmAQiWW5KZoZtkMcc6Fs4JkXCHF1HNcEU1zCNxS7dY": { + "balance": "581.244863008", + "bytecode": [], + "datastore": [] + }, + "AU1q2wJ2PwhSX24KfsqkPgGM9wVPoY3SZDCh8VRJG4wBmMqcKFYQ": { + "balance": "3537.790617201", + "bytecode": [], + "datastore": [] + }, + "AU1q3DpKK93vVXG2h4qMpkjXzfaxt7mWAxE3ZEAb9Sqpx8CXSZys": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1q3ko21UT3FizW32hpmdxwZYkcHm9F5oRYPEY2s63yTZxR1Bde": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1q3r4fohKcqPd1ycYDLg7dyPSvtPMCQ1nnbGgQsS6Cu4s2bqWX": { + "balance": "4372.988672645", + "bytecode": [], + "datastore": [] + }, + "AU1q4Ja4mnURLbg3PKnEmf2WWgKxeats27s4dDn8P6P9qzEZcaaB": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1q4McdGNdAJu3iyzJN4HJaqjL3b5o7TKwcmsjXvhta1i24dy2U": { + "balance": "1492.569300192", + "bytecode": [], + "datastore": [] + }, + "AU1q4UWqmqZy18PPMqgDPZsPdjMPFj6eLdk6Xy5GuHNVN9gvLacp": { + "balance": "7287.776160715", + "bytecode": [], + "datastore": [] + }, + "AU1q5rSarbGbLSYVFuYLUBq1XTAHqXpWMfuGAMFMykhsFmSUSUYe": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1q676UaggEH2dsfx4Rx8neqwyf3puY1KZigPNwnJ8hu28qSiaA": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1q69iioizfgNdjfTrL578mJfKA1hBzwUnGxj1TUexxXYvtq8rS": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1q7DQGsEWttD97kWRAqtxh1erccktGuXkKPLvYZBsWUZdc3rzE": { + "balance": "3376.020952465", + "bytecode": [], + "datastore": [] + }, + "AU1q7JoKVdnqzthVBfchxaobiW8LcpihS398xiTJT1TkafA38BUV": { + "balance": "3255.434719004", + "bytecode": [], + "datastore": [] + }, + "AU1q7tma9JBnJ5akvYVmfCdCwkqadAQfdiQHgnVCLVWRis9frn9S": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1q7vfMAdCnSUwfxsotZpiMSJExpyZLLUY38MhMacczu45JFy9Q": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1q8WtdkX1XLM98oxsUMNxkkVuw5TML2sntNvmR1XWKLpVUd4gH": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1q8eXKgBixJvgjpiXafcbqFthm3ijhC7gxtfFVskiQWPcMpGZa": { + "balance": "895.565077781", + "bytecode": [], + "datastore": [] + }, + "AU1q8nW4ecJE8krALJHt8Py9o6ZpS5mx9ESk3bMPmDFpZWbeqcW8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1q8ufiLaWZDPgPvnv54By5xqYNNpuPMsqsz3sQQ7buKYiE3664": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1q9UMgch3iAudyAJHvP9sDMNqJdhBsJBFZTSGGgF38FHinzQ9c": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1q9xP8Trh7L8kb5QKgxBE77MkamSYKfLjxPmijpTyVJpe1NBAt": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1qAZGybnQWdaCLyfBHWHPWnHYLppgayshu6Zd6dfUTbrJQsYT5": { + "balance": "584.001427045", + "bytecode": [], + "datastore": [] + }, + "AU1qAaQGindeFGHyqucBvLmqW39fwk1eCwWRoFFXugbQASJ9KD71": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1qAmHKzsAHyHtnmaXxcwibuDwyEQLwmP6QAmfsdhSvJKEfmHxJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qAuJFjjVoTyJniBvKQroMg5ZuBZPhbxdPsmTFcjJkXzT51cy6": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qB94hMvA8i4EiRzmeRNqXExkZ6KcLkYS6PgTqxnsWNnz4t6zM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qBANaM9K83QB6ifPFSr38GTySpfdSzyhNfze2vZfqJCQStGzW": { + "balance": "2042.510418602", + "bytecode": [], + "datastore": [] + }, + "AU1qBLYAFGuHwwWcJah8TPrUzR1WFM2idfLDW42kFjXDbvC1BhYH": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qBY1wu6VihoNynp4qRcrKFikhvdBPMSNBoH38zFGVQweGNLow": { + "balance": "2887.697985593", + "bytecode": [], + "datastore": [] + }, + "AU1qCoa19i8gWk24nMEMdmLbKwiNQiiTHtuzdT3KFryLZ6bg5HJ4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1qDBzo5R5jTNpjnjzaQfguDfGbjKCyw4FAdwf3VtrrXZZs2Ek": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qDMicaqXd5oXn1SeWGGongMHY3vMYFjktafMUC9XuKsCLe3PV": { + "balance": "4363.600591982", + "bytecode": [], + "datastore": [] + }, + "AU1qDNHuGrhNnEzA8NxQ2WWECmVyCzc7AWp7p7yKf35W46q9t6jC": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1qEG8BaZ7LT18pnfhBqpQxnZejfaUtTbnhhicMQL5XDoxeWtad": { + "balance": "1024.888583149", + "bytecode": [], + "datastore": [] + }, + "AU1qEQzXEmm4KQiN72z5F7Nq8s6ji1R1zjArbjmi3tB4KsxYcX4W": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qEXwL2daF2prEP65fzCaBcTNKZikoZPUsan9sMfWgqdABHmrM": { + "balance": "1021.539176469", + "bytecode": [], + "datastore": [] + }, + "AU1qEYY2AmBW4WfiVoTzyVVyUp1FtpfNHzNi7HpVZYg6yWUga4RD": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1qEaJLSwouWFT1rijiJWyAaxNYcyWTfgd5UxfxakyaUM7ZoqVB": { + "balance": "1564.541419698", + "bytecode": [], + "datastore": [] + }, + "AU1qEd3u91r4PUPy8Vd9F5i3yevV1EvDDSnJv9MfvpAm5mpKkasj": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1qEvaoCczkLt5oM34gTGPcyJuUAv8MudgWnuTewyMefiSFTB1u": { + "balance": "2018.037542180", + "bytecode": [], + "datastore": [] + }, + "AU1qF8dP6yPXudzrwX1A4w4P2oUgFaLhcAXt53vR8n3GKfyLDBFd": { + "balance": "175.242389225", + "bytecode": [], + "datastore": [] + }, + "AU1qFCy1xxCNmspSs51oWmLm1zG8QRPUha1tv1YrN3rfXo3eqq2Z": { + "balance": "1160.822286289", + "bytecode": [], + "datastore": [] + }, + "AU1qFEHwmCXVUz45Pj7dZrsyFG9gWyN85xWeicxMcMMqvmfSLEKj": { + "balance": "1303.207756488", + "bytecode": [], + "datastore": [] + }, + "AU1qFHrXGYLqyvyHXfLknbi5RHvTQn3DVzBXCRB2CouooySWF6ZB": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1qFrzxFP55fMLzR83WBFySrdZqWfdyTj3czgrxzCEDL17fKU2Y": { + "balance": "583.683925703", + "bytecode": [], + "datastore": [] + }, + "AU1qG3Vy2xuzKyuQDX8KjM7bEnHvqAeTh4t3TegygRMS42m2Jgmn": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1qG3oQNWzQCn8GFmAtPiXVNmBPwZ3Vbg7R3Fw4L83tCXMoz2sm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qGXKukevr7F2ULqvjBttjXosqhK8RZ2tiUikscjp2jDnyVthL": { + "balance": "625.473615733", + "bytecode": [], + "datastore": [] + }, + "AU1qGXLxARQg7rVViiv1Ax6oUF4ki7f6K5YR28NYnVsUUsAeoNc2": { + "balance": "2477.620139979", + "bytecode": [], + "datastore": [] + }, + "AU1qGe6PGxa6YZPe28cfdX3gcUfZTwkmpwVkB42Z4XXSGjESnZjJ": { + "balance": "2856.869861928", + "bytecode": [], + "datastore": [] + }, + "AU1qGhSj5dHtyDwbiPeyg7KUKsh2BRVferaxacXGb2k6f8TP9uJr": { + "balance": "883.607836154", + "bytecode": [], + "datastore": [] + }, + "AU1qH5H2RD2QzWB8nJr5M2fs3J3S2yKy9hRbzZ6VVWFbq8DQQNDQ": { + "balance": "2226.591581084", + "bytecode": [], + "datastore": [] + }, + "AU1qHwpxDmRpd1QBA2craut6D8CqtNvyB7auqqJB5mEpEGD6ks6G": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1qJQz6MojZLx865E7yGj75TewNVvAKLC9ZvvvpP6TD65nCteyh": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qJTU4FYJqkmu7BefJE8qzcGME5Wv1WsGriTpX6QS4nxvVtXGb": { + "balance": "1615.126218016", + "bytecode": [], + "datastore": [] + }, + "AU1qJzc912uP6m2XgmmUt6S6rHTht6s5vA2MtuYR7zMUBRxoqYw7": { + "balance": "2761.931303182", + "bytecode": [], + "datastore": [] + }, + "AU1qK1zmocoVgAvLyYdq1iUqfoeY66R4JTMu19Wzgfjs4UpDF3B1": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1qK6t855Td8MUSkRGjwDikT7QJBLoj1f6JCe5rQfT5zhii6n56": { + "balance": "2600.080854129", + "bytecode": [], + "datastore": [] + }, + "AU1qK9eAqbxw3oS6XSDQgstqUu8NQFMt9ZtsRCX7tTGKextLqRY": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1qKDRqiyTRRdhNruUNzG8oLwKBnS4Gjs2AvnXd3ZQWYJ2hDyRE": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1qKWGz5QhvkQj3XjMesKEnktVNk8dX3atyE9cMj4WhBEB7vNGY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qLdSFpHpwmjenVYfirczRJZuywWj4uYgNVX34taFcHBrxuhbA": { + "balance": "2762.767340237", + "bytecode": [], + "datastore": [] + }, + "AU1qLr3BQEPWpASwChGQQNFndGN8JBrB4pGipqNAw3W6tcfrbbq7": { + "balance": "5622.401031031", + "bytecode": [], + "datastore": [] + }, + "AU1qLrSC7p5GpaD7kY6mV1Ji3qfqsD5JN4EcK8789AX3wfupTCL7": { + "balance": "2066.596279676", + "bytecode": [], + "datastore": [] + }, + "AU1qLrbaC4vWNRLvTaRFY9SBRe7oDcrVqXrjiJmuMFy4eBknBgMV": { + "balance": "96.578384580", + "bytecode": [], + "datastore": [] + }, + "AU1qLtXCRQB2rVDBtv6zkbKaASnvX4dPbq5mHcLE24tsHh7RKqzS": { + "balance": "616.428170151", + "bytecode": [], + "datastore": [] + }, + "AU1qM6YeWzTa5fYZgxHgiD7HPBmDpxKJKPQRs4cgmVkhFys9o9V8": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1qMDeqndn127Z59Do3VhZuVS4cvNwtwee5xpyiYmTGuUMLjQFg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qMUAU1qFbY2Sf9SnpVj11yVJh6FWUTy7vpJqVb1UTBibMcNb5": { + "balance": "2488.871540522", + "bytecode": [], + "datastore": [] + }, + "AU1qMeD4b225eb8db8s1SnyaCUJEw8WCYfeCDnaptEu2rsyWCXej": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qMjBTh1hpPQaJc8ibbLgq1yJfaKZDr3X7oErL4bMNWpf4biq1": { + "balance": "256920.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qNAeJFsEpi9vomZbfwRNckuyEKbtEXubwYtx3EHffdsVRzbkZ": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1qNrU5BHfTSatZ1Bi5SSngCentfnpPaNedHuYEwdT1ZCMU69WB": { + "balance": "697.111294292", + "bytecode": [], + "datastore": [] + }, + "AU1qP8BtfgfmSa692Eyos88dTTbPoHyMcAaYtUcabJyJfeVs5ryt": { + "balance": "925.820483918", + "bytecode": [], + "datastore": [] + }, + "AU1qPFWBHfj5k4qQQKRpMmA43fWEcgCWUswCsAt3LWvxrz9aVxTo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qPwFXH61e1tAKMRLa9MKYGSf3PKpsYuEXtYxfGndsCzTnBKyG": { + "balance": "3804.691748444", + "bytecode": [], + "datastore": [] + }, + "AU1qQtj37arD8C6JxMVy3Cqsdv4WacE8T7kqiJ91bV3v1snEMywG": { + "balance": "1428.323650442", + "bytecode": [], + "datastore": [] + }, + "AU1qR4DQgtb74AgyY3Wx8vvixDRwHSruzGfwjCuG3K9uMEDpMFuE": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1qRHUEEAktphf4LeSjLbctBzQvvjYYWhFwukeHsoPhdHhcHWjn": { + "balance": "2500.272421758", + "bytecode": [], + "datastore": [] + }, + "AU1qRh8mBPYDiawJgWaa52vMWb2eoFhqiXKfKscCAfA7a2tC9Gp": { + "balance": "1549.292037166", + "bytecode": [], + "datastore": [] + }, + "AU1qS12ur8LSabiu1B6vFoDyNdFjmPrJSBuyZTvMu6hQzmcz9k6m": { + "balance": "6141.920641991", + "bytecode": [], + "datastore": [] + }, + "AU1qSXynKtAJN2qx43NXdtkKQLz52GLtmG3YoH8YV5pHu6CtWf29": { + "balance": "63.656605370", + "bytecode": [], + "datastore": [] + }, + "AU1qSaLM1nBjTLvEnEPixkmcZjTfRXnVvSxWuinHx99sze4ZCxhG": { + "balance": "2232.906535376", + "bytecode": [], + "datastore": [] + }, + "AU1qSz6K9y5hA6pNdsa5wDGPqPLgm8YAmS5aMVoqQF8JoPNao1xW": { + "balance": "1436.596257784", + "bytecode": [], + "datastore": [] + }, + "AU1qTQ24qdwEBP2BLKtNsUuh8vqkiE7z7ejKTWPu7hji44Gvh9hD": { + "balance": "1636.298164501", + "bytecode": [], + "datastore": [] + }, + "AU1qTnqAB9Nu1v4t649dZGBxAgw9jntBkFo9thor93xiRGLKyvTv": { + "balance": "1937.919877957", + "bytecode": [], + "datastore": [] + }, + "AU1qUAqK2zYPDhD3PHk1n5PuU9SPMeavZhm2E4YfnMuahUV76qPP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qUVf6KZhCej5ZJfg5jyTUpNx7bE6f9i2ZBSLDeZt5Jx98WY8H": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1qUkynDDTbNC2K7M1HsraCHmghkXqdxzVDy65PjoDHeiZa3h85": { + "balance": "2356.056085186", + "bytecode": [], + "datastore": [] + }, + "AU1qUsWbQ3qvTu8WW5R3SfLpRc5cApygLK2zb3g4zXCsJMhGN6rT": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1qVZJu9ndJexxpMS9wzDxSRtB1iekeNjVSc17gY3TdWMEbXSbU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qVa8ArZ9HC6QiiEHJ55PhMUBiKQGeUA5GRJ9DnvmoFqXNw5sM": { + "balance": "36.327137534", + "bytecode": [], + "datastore": [] + }, + "AU1qVhrdN4L92GHtfEYphuSQut4oZyXwJWWvk4NcGKkNsnbUeq65": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1qVifmijR16fYegPaVg8BQXuNcdYzKqdkzNotefaApv551Syxu": { + "balance": "2958.670229708", + "bytecode": [], + "datastore": [] + }, + "AU1qWNwQdf648hio4zYurWjvi47r1SUqjE5Yj5jEomA7ku8xnK7h": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1qWhyLVTZ4BXYqzXUE7WFpayodtKvjrjxEE3VVpSGKwhs14kzJ": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1qWyS3MxQRmQFyrxEDXhSXGS7Rjce4fL2ggw8imde24JZYcpAP": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1qX3QtbopiuT5gFdzaqCz7PpSk7g6mSom5n8A8G5YD4c1vP1yi": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1qX5HC29Vrfvp2Mf88v8dGL8ufHyrQWvxqLkq2uhyNCvSyux4d": { + "balance": "1144.405547641", + "bytecode": [], + "datastore": [] + }, + "AU1qXJrRT8M2V76RVJi69WHeb9h3uM6iGJHCrmJR5Y8ymSot7oN2": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1qXWszar1FCUmT2scqQFNqercsNgUX8mguE8GF6sXghjSSLQma": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qXfYMZCPu8drcLcUiYRG4Jj15hNTdBAhyJJsPtCexjWPeNkZX": { + "balance": "11.650080127", + "bytecode": [], + "datastore": [] + }, + "AU1qXnikqeuqVuwFh59LdnAP9nCuDLpZcrzqC69EhtU1TKXXYSck": { + "balance": "4412.858450747", + "bytecode": [], + "datastore": [] + }, + "AU1qYQobEHQMJa4Fk4Z6HKwiF3hd4aUibTi5HBx8bcPdXnBqYPyP": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1qYVR7UQYXCJTvWmZX3C8QqauL21FUmS5EsdbBzfu7b2YCRNCc": { + "balance": "1499.357953940", + "bytecode": [], + "datastore": [] + }, + "AU1qYvGCUBE1nntuD4HChrMGYvRXThHNTPGzCdEsVQUYhSqvPSmi": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1qYwGkF8C3RTyCVudrWQwq8mwZbx9fKjuvh1hA2mLxEpCN8oTQ": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1qYxBtHThAQfA6kZhR9BKTrTLb4KhgbNwbs9BdVy3h8RbQSawd": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1qZJuxXXTnSq1XNYsrz2Vg7pziatddtP9tbZhLeNPSGhGTLtvX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qZKHg3WyzprM9AfoG55MGYkaNKays5QM3WJBargb7dtFtrWvY": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1qZfjhyhnPd1W4NJTMSiQH3Fk8DrqzTxSCyHMzGgZN2XEvYTQx": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1qZjWrmUn1DeDbXEJJm31b6ZznxWfupZ4ptGbo9CfZGrKivfU6": { + "balance": "4685.186560243", + "bytecode": [], + "datastore": [] + }, + "AU1qZoU899uoASSn7GArU6ToY9gPdVNBhNxUeWwttrvyPYD3Q8Ep": { + "balance": "3114.298282910", + "bytecode": [], + "datastore": [] + }, + "AU1qa2XzyzGHGpvSwXZGDhKFJLTwaDik1cuCbRUTegdRzZgKivoV": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1qa3ULZDbu4vWufdy3bykRxukWxDvzxTmXq864Fok7gaBuE1Yr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1qaBVDF9zd7xXhNNyH1UWeUXbBP16feUhU3Rhv814b6wM7ZqG4": { + "balance": "2206.767175479", + "bytecode": [], + "datastore": [] + }, + "AU1qaEWDz3uPzeWN9sfcAmTSkbaeDBtKLTm87DVMMdpKvTNErtkC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qajWdUS6B9ZxdUphYKmr6QTdxAnSk5NjS942iDkxpEJVX76aF": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1qb1B2pyWHQArj9TJY1NvUXWL2tCSWC1vxNQQUDFUVQceb21CX": { + "balance": "2620.917850042", + "bytecode": [], + "datastore": [] + }, + "AU1qbBa4jci3UhqSFvmyME2hcdEsHtZdD9z1kALqeJk3U3d7przX": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qbPjdqegXdPZqfgupGLX6TsTJRyji8KJnRuUXAiX5u2uufUf1": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1qbozKDzDsikk4wDoPKcSVf3a8dn1CmHnpntBS8bPMmNB2zVRK": { + "balance": "2148.009981505", + "bytecode": [], + "datastore": [] + }, + "AU1qcDcYqbotxKCyFmyrZeM6M3jVaz97L3ZbcsqjGU98UjKiJFYc": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1qd7cvJdh6XyaYMv9D3YfHCeg8h7hxL6M3qcF6evrgUJh4Gy67": { + "balance": "4491.662179317", + "bytecode": [], + "datastore": [] + }, + "AU1qdJSTxu2VKjyGC5JQv1kWEjj3G2pgEvXEUq12YQgFeszVthx9": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1qdPkAWj1SAyjNmePPtPsY47EdACKBvmanEeymKfKLSm13XKCL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qdmkHZV4qAwPJSG7MHM2v2UydVoyY4Ky2wEQnHPKBG4aTiQEM": { + "balance": "829.635262873", + "bytecode": [], + "datastore": [] + }, + "AU1qdmniYBm2eNFhMgJVuzjzLMadYKACyJZMZrAv4hfoKkLNVGgy": { + "balance": "3963.299928066", + "bytecode": [], + "datastore": [] + }, + "AU1qe2NPS6KEoecmXTCau6ovY9pLvwzn5m9JN9PJ3nq6fcRqEC3V": { + "balance": "669.041876371", + "bytecode": [], + "datastore": [] + }, + "AU1qeHmtky2DkQurhv6td6LqCtYediNRjSRoUkGmpd7wyF4Eof5s": { + "balance": "919.944894297", + "bytecode": [], + "datastore": [] + }, + "AU1qeasfRz51cz75acpHZsKtPCKY8PkjFgXuHon5uGfSddqgsYGB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qf1a5YQmi4nYkQezQGRRAuMHbvi1WvPHkG3Tq8NxZGazZfZx": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qf4KMtPgRz3ch3Rh4AeEqn74RMq5KUxcA2Dwiu31pwhRzBRau": { + "balance": "46.323557340", + "bytecode": [], + "datastore": [] + }, + "AU1qfCwCgWCow1RdCiz3GNp9Yiv79zUc3gUKLLgW62Nfo6hiWQBu": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qfJsz9XrZ6xP1dHD8UzVeTVBF43FmKhP1oVsTpUmD7GUdpSJL": { + "balance": "3947.387986987", + "bytecode": [], + "datastore": [] + }, + "AU1qfUBS9iXm5NjLqScnsSExoCMw9j6pvimpzWyG9w2LMA5SSdXt": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1qfprSUZdDarBhGW9MWNCdwnAqbNqcqw7t5hfeukf4uF7XVKcM": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1qfzXNq6K74kydZiA4RDqr3yWt8nL6mX4VH3QUnGDugAQNKvqm": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1qgELmuWchgGiwsQNEQiCTYfSxnoGo6eEGgMWomv9V1ZcWFCDk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1qgWxA4AFS7cS885aDzpFsD6VBocWQqzg1DA1U6NEYBX17pMGU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1qgdQmMSvFQkV87X6GjtxwSZ5Zdt8wVvojTyfN8jk9Xsxrhn8t": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qgucLfm1jdgNi1nW8Ta9vkHEEAU8KatgoY5KrEmeJXQwVR1ZU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qh7oBPkqdTL7tMmqxXcbEpMnJ3qKyKNVPtPKDb2DPi5H8zTEU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qhQPbacMqxKo1Nnz224M3upB7NU6Udj8j5GhNCsdRMEiCJeSb": { + "balance": "33.870281017", + "bytecode": [], + "datastore": [] + }, + "AU1qhTT2NR2AUAj3wu7ZUFEFG5rbh8QDDfdJTxgosY9sMzoKFuts": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qhVtbst7NJEEZSoMNS5WXvzHwXnQyB66CwKbySh58GgUS8YCE": { + "balance": "969.060071012", + "bytecode": [], + "datastore": [] + }, + "AU1qi3FDbBTjWZJXFXukxviSUeNnETEa4uxcjxxCLsEX75tUCgpS": { + "balance": "805.491505534", + "bytecode": [], + "datastore": [] + }, + "AU1qiWjdNVDrSWvzFQNJQ7TeKyzeKZKxQ4p41dpddbEP9W1zwoXu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qk2yfGSWe64eVKmYbda12fFbAXvueXHPt2ZGAeC4QGSTm8X7G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qk4dM8gxMAEG65wHNrwMxx1o1NvsQ5PZVo5D1TCNCM5Kjc1dH": { + "balance": "951.988654379", + "bytecode": [], + "datastore": [] + }, + "AU1qk5iWnkbsaxm6VuqTQ2zDhR3wa2fpKEAZq2rTgRw9hvC9KLbz": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1qk732Lpo3gHv1nKpdvy25LjFZ781aQudDPJ7Z39bfFBXNhMya": { + "balance": "630.058323882", + "bytecode": [], + "datastore": [] + }, + "AU1qkeRbLBWjh1z8eBPBkfdpnBizho54Segi6QkdxKHEPX1MUbSD": { + "balance": "241.857349549", + "bytecode": [], + "datastore": [] + }, + "AU1qkmCdoQAy2RiEEzmdwyX2H1NZipPs5rPY5XZzRAvviysdtekc": { + "balance": "757.060036513", + "bytecode": [], + "datastore": [] + }, + "AU1qktEjyrowe2kPTcDvoYog3R3hA6C3jPZFr1K4oFb7CEjiHCSx": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1qkzAXv9e8TM9ndiUQebvocV7kKisnHC8uMmVcVnM8U7iwPjys": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qm2aRZSzTGnT5shrHCtXqTehXm8tR4TuVHg6evFc72nAvr29J": { + "balance": "984.005149680", + "bytecode": [], + "datastore": [] + }, + "AU1qm8F8HNbVJzpvKSK3tcvfe31jwTQh6G1fkR6rSzWauHqsjpft": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qmDEZTDcvYbG7aA6HksrgxUUy8VwCtRQ1xjKuLCod3aAY7Td6": { + "balance": "1413.715092456", + "bytecode": [], + "datastore": [] + }, + "AU1qmnfcFCukz7q26M88RcwvmueRjQAT8qxwhYUKLPkjPTMDbk7v": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qmteoNNtbLRJDmLqSyduZQbeUsJpfA5v1W69PVxDJMcKJYYH7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1qnHBNJXcGoYjmMMt6tNN1WJkgtEH99x593kt852N9SSoVvWGx": { + "balance": "4809.553314002", + "bytecode": [], + "datastore": [] + }, + "AU1qnkFJfEqkXyW99bxek15efdMuYvsoFAPdxxXSiAaD3CTaCKNb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qocYJAAMu5ZQF8reURPUhU2QTxiev9JnDKmX6AZbkZSaC8JNJ": { + "balance": "1905.647607292", + "bytecode": [], + "datastore": [] + }, + "AU1qomaJj9eFZMV2gZHL4aFZ1yEg9DP12bQaaMKNVn37mcNUVhDp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qorQLCEx7itskmDwTCYEEU9L7kBYGEbzJibdboxMA4oxSUxP": { + "balance": "1221.579683902", + "bytecode": [], + "datastore": [] + }, + "AU1qovCfC3yERXRBn9FyHU5K6NiCgeuBMQk8cG2XNPhRjbHtmPLF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qp8JVvKDuPHT4zMyKHW7Nr8jF9hgBdfJEd61GXkq3UGp6ResR": { + "balance": "3013.955676796", + "bytecode": [], + "datastore": [] + }, + "AU1qpTntPrhAwRGyCoCw1dRCdoVYLfryHzF6XqTqESQk4cGX4UzE": { + "balance": "2758.168785163", + "bytecode": [], + "datastore": [] + }, + "AU1qq5TsoJKeRKcxmDT1rSNaWCmGgL8iFQG8wRbWB2S9yW3WRG5r": { + "balance": "75000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1qqBbBqKPyF2z6HrMEiMGZmVmfem5oWdZ4QceAXh41JN1S1Ua3": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1qqFjNcdTnyxCdiozrTimQm8VLWSBocQZVpWn9ink1SC7kK7fj": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU1qqReCzQPFPkoPmejc35LxSZSs3dAqCaUbNTbd7vvLSdMcGKDJ": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1qqcseu4nNZsPSBFJdQtMDhSnhiwxAea1M7BzTjeJ6M8nxAYck": { + "balance": "1366.162048508", + "bytecode": [], + "datastore": [] + }, + "AU1qqyBkPX4ZgeD34DK3nkdxhdXWnSE2rMx8kWfZ7cihqG4mVPRz": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1qrnyXnrR7oBumf3RGMQRZ8NZ5Qc6ji7raGXhXepfm9WAFn4Lw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qro5JZ8LmTfrDbtGJEnLNb4pmwWE2KoooxsNgFbNLTnhpTbU4": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1qsDmJ2LKvaKF8VsqVL2dHQ7wMEg7vsjGmGgpQGvxSzK6nM2fq": { + "balance": "1618.195517936", + "bytecode": [], + "datastore": [] + }, + "AU1qtFJGiNRFcaWdchVKiyp3REU5WjjrFHX3unC5Q7As6oMEJ977": { + "balance": "4393.188467209", + "bytecode": [], + "datastore": [] + }, + "AU1qtxeUioeQAkvsrhist7TDrh7DPf4Tfn1HuqQKiAUXADikkx5X": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1qu37XpkrEGv6F694PRfRn8HE1goQTjPtD2rQaKmua4F2YX1Ku": { + "balance": "1960.703597933", + "bytecode": [], + "datastore": [] + }, + "AU1quDV4GsVeEGAF232rJPs2tnohrMkVX7yL8rWiRuxcvDQ7Afhi": { + "balance": "6762.631531271", + "bytecode": [], + "datastore": [] + }, + "AU1quFNYPFxETDbaNtMDhYyF6oXZoFQPwsFxpb2u5vAcFx21wg6Y": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qui1Hs5MAqffLoywApBsTEGPkvqCgyiPrUpHEsEFP22qjANr4": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1qv4FiouxYAU8jAbhFmz6yNsVDmsLTydXpvscW4iageMwRGWZr": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1qv4Q8F5r7fCEyec4dUL7yKdL84s2eLfCLmry28WCBhtBYF4ha": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qvQ4C7yvY3FPHnH4uQbKhoqaj13sp9tVmyxvZRKdiJwKNqK9p": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1qvQdhVJSMTmdro6vsJM9pS6vmxvc6i6is2UDQdCv3bNesA3sM": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1qvWvqaNXUSAoRcQfwSsmKUtekif1sHgwkjMT9LELQNrwWiyvm": { + "balance": "1164.534899333", + "bytecode": [], + "datastore": [] + }, + "AU1qvc5B1TyowHFxLG1HxStmUPUFxiZXJY3x9RUE27eSyALonnNU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qw2Rky1h7XX4iAyyQ8p3KH4zCTs2byPZWDpBfiwEPsdgUtd8A": { + "balance": "2126.379969883", + "bytecode": [], + "datastore": [] + }, + "AU1qwDsiM8VszwRqhsSsawampEtL9nzcUEfr9oCDHwHADaBU29Hf": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qwjZqg3tYyipncABJPSXbMeSArBLiyYNHVcpWFJkmksvXzQ29": { + "balance": "530.557345099", + "bytecode": [], + "datastore": [] + }, + "AU1qwkBwLh4ncEZjxcb1YXf9VpiwLpyZvQwzYAH9RNqCqbidV4ba": { + "balance": "1020.910172386", + "bytecode": [], + "datastore": [] + }, + "AU1qx3miQDnA1XbHRdMiQb8iNYZqGAkd8Dh9PHmxeCnpwvMytN7m": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1qxJw7RYVksUiJmR19H4MyvTWpdTRRodYP6GXKkDJo6h7iw46F": { + "balance": "2631.687705208", + "bytecode": [], + "datastore": [] + }, + "AU1qxaVxgrEn4mfCYH4aT4GHQVS4hCmTuhxUesQ3m4FTb9Zj3Uhy": { + "balance": "724.676131017", + "bytecode": [], + "datastore": [] + }, + "AU1qxmHBm92Vk5VBtX8SKNhpMBZ8wNsJ2aAx4ygthuagp6qkgpdg": { + "balance": "94.668357445", + "bytecode": [], + "datastore": [] + }, + "AU1qyD5irf39kXrZaXerCbErPwoFA4NdPvgfbqS8TKpz1ZA2UfbZ": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1qyPJHN7HfWbTBNuo5D3tgd1pYPGogg3M1uLvfEBmCtcHEJBks": { + "balance": "1916.212425155", + "bytecode": [], + "datastore": [] + }, + "AU1qyPuQG7asor4j2JdTPZHhpSm68GdSydQF2LfseyyNrPnsdJn5": { + "balance": "2012.986999664", + "bytecode": [], + "datastore": [] + }, + "AU1qyUihxrXNyrcXyEEphPJR6nXCJGmj8uhQAJSbnymZfs3zBQU4": { + "balance": "925.688909076", + "bytecode": [], + "datastore": [] + }, + "AU1qyqeY58z1N8fMAxf6AJHJ7QkGCaWrCk6NEsiLtK2eVyGnJ1ci": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1qyycABHQB8mMa3xrv27b48pyYLwCSw3whiDvafiJ6RyQU2qpz": { + "balance": "5885.642008213", + "bytecode": [], + "datastore": [] + }, + "AU1qz9Lh453NUhyd8sN7Y3A1LdYJk4vV8dwUGokQrZbsPAiZqRos": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1r1EVWuXenu1cbH2mtv5CKEqmYpFNyTXHAtX9f8PR737TjRm5F": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1r1EfUCh9rnNVq5HYAaMJP1724D9w8pVMBHiHJKLBtH7AsV1Tj": { + "balance": "3583.044964086", + "bytecode": [], + "datastore": [] + }, + "AU1r1xKruEJRJvVMjdrnM44xVuCF5h6kmnMdG88x85BgJRb5RAzz": { + "balance": "1769.111942577", + "bytecode": [], + "datastore": [] + }, + "AU1r1xUUTfDyaZkhZ3dY4RqxNtXYEKVksqnQSyajfPBE5fueeBwJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1r1yGUaGDDbsWZhQPWBCwgkajxEZV5FnRNArNiY4nRhRR8g8hL": { + "balance": "1819.486569967", + "bytecode": [], + "datastore": [] + }, + "AU1r2R6e6G6HXEjJ1aocbNbcwNKDUk84jg1TWZrCXTfJgfCjVxkL": { + "balance": "3226.557970825", + "bytecode": [], + "datastore": [] + }, + "AU1r2fseY8cmW8Mqbp3qT6WsKn6j9eKXxVzx6AWvwgMPxQGyYzqZ": { + "balance": "4082.800898135", + "bytecode": [], + "datastore": [] + }, + "AU1r3BapfTSQMzsoRbPjk3eDX3iwngrrYZZw2FCMst7GGrWsUGYR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1r3QydJGS2tW9tyJRy45GtkypbdmfFixzWgUvTf2msvh1dCFsY": { + "balance": "16.488510610", + "bytecode": [], + "datastore": [] + }, + "AU1r42UfDpm6fSXpUMLko1UCNfguZMLC2eZoio6eAAkRxjHEmigG": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1r47jhZNG47SebXv1rjBUPT5cPbom5JyQsuk5iMxdn5YDyVwfN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r4U8GnPZdVWP9tpv2ugEDJNF9aocUVWviSaxERMkA9ngb5CXD": { + "balance": "786.499488112", + "bytecode": [], + "datastore": [] + }, + "AU1r54JxccmeYZQJhNs49zjeM6YPSKpR2wwbame2qr5ShBRGFzsJ": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1r57kDiDeyjnB7ocRYSE42a8mNSnTpwfdZizUf8SoTfXJUJiBQ": { + "balance": "4368.402835147", + "bytecode": [], + "datastore": [] + }, + "AU1r5BLqL2dNwmS7qbK8hsiKH3xwhWb6S5zGpS24pxGxxbiBkFBW": { + "balance": "1446.648551925", + "bytecode": [], + "datastore": [] + }, + "AU1r5EraTWhdrEQgnDhu1UEdA53fJB6cedYfanHbL4dyFiQUBM5": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r5GGcm8NSJoFkrngRXNPEtzASeGHj47oCZ1253qB1XK9fAGyb": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1r5pKo3m4VAhYiPuJLHiXq1FQUYMFwJNjFd1QkmLVcxvM26exK": { + "balance": "4565.799820951", + "bytecode": [], + "datastore": [] + }, + "AU1r5t95k6enyfRYtyiFZHWW43EEHNZNgJEikaMQafWycQC9QDni": { + "balance": "48.928377261", + "bytecode": [], + "datastore": [] + }, + "AU1r62v1ZLZmcBmL21KD5Aj4Z8X9kVk6Qx2xo2W3nZVZM1czb5KF": { + "balance": "2210.217687197", + "bytecode": [], + "datastore": [] + }, + "AU1r63xcXrVtDXXRLxqg66wQvoA6Uxo3wfXKzZmbZ3e1qA5f6DrT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1r6CDYWQTzdPRm182Z73Gf5L98qTX9wA6KH3AL9SA6Je7D6yrk": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1r6LFUrNHqFxjTYuPkynGLgDkEdow6KVuvbN6Taa9f2QCRq4wk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r6M52XaZ1W2VGKoyswFYMAVo5981V3Xt38z8LxDARchDic5ae": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1r6MsDokxcrxHcV7R3hf9nQGwSkT8KkJap6owSZETFDdUHfnxh": { + "balance": "938.051032324", + "bytecode": [], + "datastore": [] + }, + "AU1r6NpiUPUTw1CxcJEfPk1n8DZDQWeCqW13cgi2b5zG2uFxEfXX": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1r6QxjbHhGytUaCZVZ5yufh6j1awVzebvg69qfcwWAJw7Pr5y2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1r6Vb21pM41BBcmNkLpUjjfYFXttuSstMcwnSqqTzpKEHQ3fgu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r71QQZ6mcDZDBAkMSitL8TcN8WzHfkNuMAt6WJVVdNy6vJd44": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1r72sL3T5K2MRm1sy9TNJXFcCucHsBdi8MPicmv2BEXVQjSCuu": { + "balance": "87.458745875", + "bytecode": [], + "datastore": [] + }, + "AU1r7FaVposkYMTs2s5kADURkLt4on3G6xAMEcdkmyHtuLKZgeR4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1r7R3eCxHWbo4HyJmsfu5Jpn5ZShsUgPVXYqPJNE4HDUJUpLmH": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1r7Rpg9myaHFQud6hw9nDbSgUvhy7dNL6yXDbZwCScxNPP1LxE": { + "balance": "3024.192708508", + "bytecode": [], + "datastore": [] + }, + "AU1r7hvUYrZexTpqmdc8Z164iFyW8RbYVfpGVBhojdLcuq33G7Gu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r7ruX5aCKyZSPRMpxdsDmer8jsGY6MNZZjZLyS4uMUuoVzG4H": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1r82uZAR6tbDUBBTiLkyBsH3LoGPrCMhdJ7Q9WSvrHPJLBGo9M": { + "balance": "5337.705109268", + "bytecode": [], + "datastore": [] + }, + "AU1r8WmVBPrBGfCmV4aqEHyzvQ7dxAEffXYUMkHUGe4MWWYShbM7": { + "balance": "5982.429793358", + "bytecode": [], + "datastore": [] + }, + "AU1r8ZH8RMFQercKq755X4oQ3DEx2wY9nQLBPfzGCc2tEc85LpEe": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1r8koocoGVTZekkMFQRcV8tviq5QZzLSsxfGKuSFWBWokzC7wV": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1r8ysmHp6Vu2eKWG1z6UNpTnYsHYVVEyZc1rDcwrg9crbiLszM": { + "balance": "1765.596812621", + "bytecode": [], + "datastore": [] + }, + "AU1r9FBDtBoqNfpdkwM2oxSU7CXdNmQ5oMq938GKr9kQaxZ5hwdH": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1r9Wq6TeKRX8D1PbHyEgvdbUGvzRsB8jzdgVKYpVgRas3VsmQ6": { + "balance": "4664.315404153", + "bytecode": [], + "datastore": [] + }, + "AU1r9XqfmZSeevYcduJ8cKhgbbULEJEHgYbg83GXhXoF5jAtm82w": { + "balance": "749.706825056", + "bytecode": [], + "datastore": [] + }, + "AU1r9d81mMBXxcxd3GrynbTXQcKX85XtXQP9oD22QtTNywtQXDH8": { + "balance": "139.438943894", + "bytecode": [], + "datastore": [] + }, + "AU1r9gKGUP4qtou3WJYGLFv7xMBqjS3RZc74uP1byA2RSHBZK94u": { + "balance": "21.588011486", + "bytecode": [], + "datastore": [] + }, + "AU1rA1D6jPZwwnk3pjvc3CV4HARY2Fkcpd3UFeBSFk2JiqUGg7Kj": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1rAEDTwf39KkdMuzxKuSycPq1oEUqGHqC1Y5zvquetJk6GFpnU": { + "balance": "45.545262573", + "bytecode": [], + "datastore": [] + }, + "AU1rAJFx7i24D9YbZTZcY4q4sorfxq5pE8ixXV7fZdkDwWDBVNaq": { + "balance": "4059.305697459", + "bytecode": [], + "datastore": [] + }, + "AU1rAMYkmosmijpBNap7CwMEVBRCyTcNFdxX1QnaP4B64qp51tgW": { + "balance": "160.878515253", + "bytecode": [], + "datastore": [] + }, + "AU1rANaBGNrW9NiQiirMkAHUxzDv6NjoeYpTmnCZHLXkEaTvngje": { + "balance": "1570.442594202", + "bytecode": [], + "datastore": [] + }, + "AU1rAz26tm3vm7b72FMGSTCwBB3awA2q1TmCnxMHgs8yu1Ycegzu": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1rB3PPRfKtex9Nm756YZF4DpJxN2WfdekVMKVjnT55GgVKF9vW": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1rBAeDuQWjKzEg2EcN9UNjfAcNGBxS4B3Mc4VrKsPYn99h8Ner": { + "balance": "686.332421598", + "bytecode": [], + "datastore": [] + }, + "AU1rBDE3Dg5ffkmjqSNUAkGVeuvH6iPMGGWxKJFerXjKhU2QcQjt": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1rBQbV8TCz8zV9y8UNuaNfyumZ17PsD46f1DasoYxsuGbnYfw9": { + "balance": "1228.434925556", + "bytecode": [], + "datastore": [] + }, + "AU1rBXkhfUAS8AVsMBHog9z8HkGHSVvJrqdQ3znQLBsECzb4hevV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rBiSRek6wTYFoA8fnXneemLkXoi9U3A95YCrH7hVxAd3o2nYm": { + "balance": "1056.861942355", + "bytecode": [], + "datastore": [] + }, + "AU1rBtvtMU5QeqtqWRvuWqLTKMv5YJ7McLDkqbPg6WPJwFM5ap4A": { + "balance": "117.161716172", + "bytecode": [], + "datastore": [] + }, + "AU1rC1mTwTf5BsbAtTPfsLyUfUXx5G3VSAZt5LmKofbQZQpeCAcc": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1rCRNSnQ66w7bGMRPJVjxACeiwDQmek4JLvJnLDnGE2oeD1CW2": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rCxUPP9yy8t3LRtqeLvr4bHqVZW6XSG4tXpj3bs44RfbhH6yQ": { + "balance": "2620.600331453", + "bytecode": [], + "datastore": [] + }, + "AU1rD1DQ1bucj1KDaavNbpwNgBWJvAJvVGc6nzzN41kGYpa7vi2K": { + "balance": "678.314749855", + "bytecode": [], + "datastore": [] + }, + "AU1rDC3e6wcuBWSzaid5yuN7LUUgZqP9pB5FWQX6mHve3GrPgEpv": { + "balance": "5700.189682252", + "bytecode": [], + "datastore": [] + }, + "AU1rDGXMagjBBUkpGHgEaobXGzL8ysS3d2YT1sGXy8vFXKU8bMBV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rDNUgYUn5GJuxT3PKmWqkN595PPe3RP5qC2opaSc3srqPoFK8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1rDaRrtqDWFHsd8wQfvytLiGkJaY5vRKSX75YmtUr626wRCu1S": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1rDdcNdpxZYBD2JL3h5CnMbrfGr3pQLtquBgQnHyNNCzWdP6ah": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rE55mXCgRhYmRx3GVAsquVPzjNfS9sH7tmQXNGum3iqYSKFvm": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1rECmWhb9WxZUM8i2cftu511kMSyZg2XUGj9UB1qk7FycaH4Dp": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1rEGAYfYfnpuyZQd44kfLC2ig1KTVSrF6HNjgn3pwjf3nCwi8B": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1rESywPicaAdgpkvpyRiV2iLmDeaQKg95SwrCatT3rGUay4vJ4": { + "balance": "963.983018585", + "bytecode": [], + "datastore": [] + }, + "AU1rEyKUADDv5uKuHyQ2fsnHVA63cKSu9NKvk4LgVtDYoeQKqHes": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rF2FwA5AavVRvtwATqm8ZcC6VjKTebquJHhkHLKvrdu8zR7uC": { + "balance": "2464.222964012", + "bytecode": [], + "datastore": [] + }, + "AU1rFNTieEnrH79YJooArp1FekeuGy4vib4JWuPjJuzdFLb4Yr8v": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rFeaxWGuVpKEQT1EQFdDHuvRGieKwXf377uYMYi77yj7m5hHB": { + "balance": "2736.436349444", + "bytecode": [], + "datastore": [] + }, + "AU1rFhdbGeY4rxKczeAur36KAx5wo1yD2skdFUXLb2jB3xrPxicL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rG3LYZ6aEmUvaRM3LeYwVsPjgZDayL1MRFhEznPUdK1sHegCd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rGVe6zHn3FKQqMHzuqPK219rYivXWzyt5eTJBC6cZ188huvew": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rGhb3JXdUfKfs6A1FjdrS9pqMnnNgdWaMHcCoDTsqefqrRB1z": { + "balance": "3914.115498556", + "bytecode": [], + "datastore": [] + }, + "AU1rGp7ckGMLJJ9JQ3FcP7hP13UGrQJHxtdHRRne57HJTzTtLCXj": { + "balance": "5136.359762319", + "bytecode": [], + "datastore": [] + }, + "AU1rHDi1RjeMi5tghjCggWhsFSq1UU4oGnq7GVCfca26MH9uzMT4": { + "balance": "1721.588583824", + "bytecode": [], + "datastore": [] + }, + "AU1rHGH6e9boYUG2z9A3xEgft6PjDtkanArFLUrR7rTVwtr9mj1V": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1rHUUefjKefNMctBHaHSsJWzVGZiutyb2EmVwjpre3i4uthazk": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1rHY1qcxvTJb7iNzPw3WnPTwsPyCox1XT9Um58q6iAzP7PzJk5": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1rHcTs9abFRLDTcs7UdY7TgcL1HvZFvgk9khW674gqHJ9Xnr8z": { + "balance": "36666.900000000", + "bytecode": [], + "datastore": [] + }, + "AU1rHnM1TT6fdJ3Go5RSrsLfSj1KD3PBzAKYjLYhXTUYaRPT4NRF": { + "balance": "800.179188800", + "bytecode": [], + "datastore": [] + }, + "AU1rHpEW2SisCgFg53WeARHyin56gTwBkDZ7K9Q7ckMco9EVYc2w": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1rJKC4ujKCKFf57M39NyJE2nHbEGRny1FjTRVxiktwzkZSQn5X": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1rJReCEKJskUceDMbZsjCQVjBSiS1NVpYjJrcARtHyKzr2aAL6": { + "balance": "2084.068086095", + "bytecode": [], + "datastore": [] + }, + "AU1rJfqdp8KxSFRT8VSqk1Ta4saJy74TJ5QbXRZfNpbbEL6eXCeT": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rKDM7T8JqoQSDqWVZG4fweUfDTrBPD7HzpwSLdf3jJuMfNuEH": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1rKF6UDMz64igZ4mKH5rW3r6V6SWzvCZmNFR8V4hDKKzbULM8E": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1rLSgMPeGhix7euZusUnN1DzCtqiKrrijBb9MBDk44wsTD3ZZ4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1rLirqJLyHHBpBSpc5dtTBzm4ohF9TSC3Gc6CkurZVox9FT4DG": { + "balance": "1275.311017397", + "bytecode": [], + "datastore": [] + }, + "AU1rMVcbVjeP9pkm5HmdyPKaeRBA4t37siXjkjcPkUCpAFHSd5fK": { + "balance": "6150.405392852", + "bytecode": [], + "datastore": [] + }, + "AU1rMuWiUf2M5Y3R1Coacwtvjb4Fz8ChCKxwPirApTrw4JLc93d9": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rN5myJHcraa3EzPgnh2SSy3hn2wkD3AELKNGhjCD9A8hdvdWX": { + "balance": "1528.407413516", + "bytecode": [], + "datastore": [] + }, + "AU1rNymobgntngdM2eGd2Lstzsv6bX7qFCFkPAFaUPtihNejVett": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1rP375LRfPiQbRno9mye4MtQSDwTotvsFdQY2Lr5yf99By5ygY": { + "balance": "1164.355716232", + "bytecode": [], + "datastore": [] + }, + "AU1rP3qTDEk3oqjqZPyFCEeoim9Rg8dAACS1b8xy3RhkGjFdDtxn": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1rPRcr6eo3ozG1dqi2RHMauqutSwhEm3FCrgut2idJTWJk6yrq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rPgnxAZ67rUYL4YoiimEtxfoNoW41CHsFGFu6QHUMWBfCw2rz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rPp4sJ9yiCJn4hNYNmAS4H87NWdp3DrqnQzayzQJRKgdQ13uN": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1rPvViYmjooPXuWPp4tK2v58vE8CQd8HwnHiEKJn1FnMRd7PrS": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1rQCT3pM7V6rQbey5oKxYQd2rMH232ydJVZyzCy6gbHKKPfeqr": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rQYuWkVH2gXD9nmDB5TRfUQDzVc77mCmaDJUqnae8T9rQLGiP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rQZar4cf7qgkMfL1mQcJVa37T5MUvEDwicdCjsxMbbssZCkS3": { + "balance": "1034.867417898", + "bytecode": [], + "datastore": [] + }, + "AU1rQjQwZzGFf3J9dUHsnngUzMT4CkanU7V4k9tkMV2VRyJD4Lr8": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1rRKGuDDzpyJ2moUj8CtYZjVV7MRrPmu8ZbG4NDcYLu8QQfd8E": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1rRyCrCg4BqpoDhkbD1b41V2pzpJ3W2fk4pwFtj9ABEeCYtB4h": { + "balance": "6633.087435502", + "bytecode": [], + "datastore": [] + }, + "AU1rS5hdkxmSFUSqxuwtqgJCx12x5CUhPRdymRQCgRnoA5EzNApq": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rS6iCHWTN76kXZyuzcsGFvMxxGe4hY9WSwHEJF7THkjAibKkc": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rSXYQeiEKadiSLcF3bhKZKP8wZfNLxS2NoxBAdqPqLdgQ4TyW": { + "balance": "1801.089755491", + "bytecode": [], + "datastore": [] + }, + "AU1rSY9xkvkd6zJB2ZbRLA3t9DG7yaz6tKx59igayEQoSh87QwoG": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rSjGDWBu2XpYJPeGed3A3c8Z2YYw7GYfjRFJEi5V71tpH61mU": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1rSpTctn1aZWt4a6UsDwWGCPUKPLRSxpjQtJMe2E8G4pnbZ3Cr": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rTAnzcxA23saxyFLCe5qLBJ2279wqijjwg3pVs6e11QWM6Ef4": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1rTavK5VjRbXJ9T9npXdCVQb68TQn5iLrpbJkUZKkNm9nMfbnq": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1rTr7J9zpYmiKFWxvippDwQSjTJpDa37hguq6q6QXDmEzsqtEE": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1rUQBCFC8Mh9jFT2To5Yq1pt4rtwwDjejMBa1iBsnJbcAKzhPq": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1rUTKDeykApfZe7JdphAKevaVE2XpiPUJks3xnuaQywrAzSJty": { + "balance": "12.258962198", + "bytecode": [], + "datastore": [] + }, + "AU1rUg4sTL7qqXqGTKbxX4o9drTVP9kr5EN9eohGLMVXfN591cKj": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1rV6d6VPEuMcjEVP1YhnZxbcWnSCUaQwyi6f9kp2X8zYTEJxxS": { + "balance": "2880.473671187", + "bytecode": [], + "datastore": [] + }, + "AU1rVCWpRNsjMKA66BJgvuNvkQ6V4WNY8LbaeKt8P6RTkN2dhhEm": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rVUTtVRAPaWuijx2ZSn7eTkNtkBhyxcdZFQCbg65yuBSWcU2Q": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU1rVaUeLYssj6vgXdnB2bZH8opB5FU6bxeEEyaTGfyeCNQ5uhuE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rVwnaJDgLxPBxPmYB3S3DjTGsUiv2BzQEos8kY7kfuGqF2Tyz": { + "balance": "933.149723192", + "bytecode": [], + "datastore": [] + }, + "AU1rWQ4VbqaenmQd3tor1Cok1UXANARHRR7GWRfVhGmAsMAt2n8w": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1rWeSet1wQAgsADWhmQ9k9dUF99kBx7UF7CDNgVBR5Ki2QhUbN": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1rWwHbFZKqdibFP3yzPp6BKg4DZ3qZZjsLzdJz6iqcRnkENuMr": { + "balance": "4664.822405225", + "bytecode": [], + "datastore": [] + }, + "AU1rWxkXinumihTZrk3n811LkJHZycuGp9dhrAYXS4B6T3qvLad3": { + "balance": "1270.512577416", + "bytecode": [], + "datastore": [] + }, + "AU1rWywL2HQFPAWj3MpNPNM6A8gGUQGJRhnScisjz4kQ2DFgtVr6": { + "balance": "3261.482758352", + "bytecode": [], + "datastore": [] + }, + "AU1rX7FyyGE9pb3Fpv7jsGSGuj4p5WfEer3wbuudvWnNnfuD4foa": { + "balance": "545.713578316", + "bytecode": [], + "datastore": [] + }, + "AU1rXBNSeW4iVxKYLDCn3QEqTyBSRcRjHfetRMxzsoTW6kmiADJR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rY13uU6GVKUMS9fK5E93JB1F6MoapbNW3enXovC1Fy6DQsRj7": { + "balance": "2363.919088501", + "bytecode": [], + "datastore": [] + }, + "AU1rYB2TkLbNN9FHEQkAfmKDJTy6oKH21kKoDHHjA6j5qFRSoM4x": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1rYBzw5dan7LBoB8ujL1o2yyFNm1DJhidvS88H1dMzWxBx1uwY": { + "balance": "1285.325466750", + "bytecode": [], + "datastore": [] + }, + "AU1rYJK9bArvL8EGkiX3LSnQE5MgmABuWsk4dBq7Kf5yuDM4bpLQ": { + "balance": "3262.382175925", + "bytecode": [], + "datastore": [] + }, + "AU1rYNcfkoV2gbLng9hz1VJqyB9LUCqZNgyqAffydnyKznQikfvN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rYTywVQmEYYvFVrzqXKoWR4XVoSNXQDhwbWKfVEUstFboBH4Y": { + "balance": "1126.721334187", + "bytecode": [], + "datastore": [] + }, + "AU1rYiSC7ZxNe29TKEj9PKryspar1uoXbJyv1hzvN7EVYdwLx1f5": { + "balance": "2552.682303456", + "bytecode": [], + "datastore": [] + }, + "AU1rYiZfjbAov9SAQ2LaWkZyUjcSd7DZ2VehnL9FHnc1sqtPdciF": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1rYj7BwtcLs7Bw4Ukd1UrJtBZ4ub8QbbXy45bWuapnGNijW6gh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rYpRB1DmB2ACHCY9xtKmYsfLVUa1jia2MV1iF9UQVns3DZYNf": { + "balance": "785.552967314", + "bytecode": [], + "datastore": [] + }, + "AU1rZdCARMq4L9QcQKHs8DKwSoXToaj8WaN5GctJPDU7FxMgrVbC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rZsNroGV9NxTBbT5iphV7deWxyDQGbsfNDKg6fvoCtFsA9Up8": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ra1sFTCaPr4gbvVVxbqXVQ1m5T9aXCvkUKgZ29SH4wTK8Z6sb": { + "balance": "1083.516660676", + "bytecode": [], + "datastore": [] + }, + "AU1raGCCMRnkHF1MEXUgHhGgaig4m53UgapTveS1YoauAcCS1mEP": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1rap775LL6Y8PB817sAgys1PpdC6k5duyPETK5Ce4wg5z274Pg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rbBkmZFocwYmYkgTHheKijQp3sB9qv84asRse7jE7a8aJe1uy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rbEAQrmLGveisCi44bP4xPkgbg8u8Ladysm3gihfsSxV2Z4z3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rbP4QrRXLNCwAZeorUyX3xUyaRBxFT3TqcjjFUeygosXi2i3X": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1rbQCYZLkUku9SNXHMn78k45ubrmUwyvJovHkWSRV8vyqDepgk": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1rbVvrmSqUfD4UMjVrhM4jZC7KooTWYgfHJWiZ4x5rhibS5fHA": { + "balance": "1464.686525884", + "bytecode": [], + "datastore": [] + }, + "AU1rbWPS6HNJnwVjVGMwsd8kHJ8pFXfHB9LreoMSQzeQxvhdCwmg": { + "balance": "2919.972780376", + "bytecode": [], + "datastore": [] + }, + "AU1rboEmR9izS8mAF51sqeCMgtG4XQMX8TjAxwYgChNbikheZjsY": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rbsCYHDdbM1aQqcjvrmQQbc6Hjgy1Tqk9nRkHsmfkCgbWaBLL": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1rc1ip5ShPHqFbUbKHV2eqGCeqTNS9mwqqgaQGvg2BTX7YfTEZ": { + "balance": "550.206273709", + "bytecode": [], + "datastore": [] + }, + "AU1rcNPjDvgPZxgzF4GkT9SQB86K24nNheGhYEH1DttfqDV2Sypd": { + "balance": "2055.312316912", + "bytecode": [], + "datastore": [] + }, + "AU1rcRH4g8Fr5bYGjdsPvLixiCrWRCHNNAimuNuosRcTHmUEM77m": { + "balance": "1023.244901438", + "bytecode": [], + "datastore": [] + }, + "AU1rchq4cXCtGoh5dSdhpzH81c5WxLoXv2WDViv6HyW5wjqbm3cN": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1rcivzhj9Yx9P8pkh48UNnqUz9vREaW3Z9e6eYpTMWAsYbkXmV": { + "balance": "2274.963344363", + "bytecode": [], + "datastore": [] + }, + "AU1rd1EQLh9uhNcS2mjpkJ2eng1rCnhGfzVaL9VYToQenWFQ87ZN": { + "balance": "2209.189683503", + "bytecode": [], + "datastore": [] + }, + "AU1rdCqTwVLdncVEzi4BZJ48jYUv8ZukayfoMRWnUu3jDByP3VP7": { + "balance": "4078.871996062", + "bytecode": [], + "datastore": [] + }, + "AU1rdH7KMXbCTBdEK8vwUJKWwwjEcpRzi849ojz3cqfp2eHdDYUV": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1rdMTxNVh3n5z96y8J1mmbppzV46swTqPoUiRa3E2PniJnayUV": { + "balance": "1460.027760063", + "bytecode": [], + "datastore": [] + }, + "AU1rdWMi9naQLDMAqMtujd5KSSyCcNE8Z6mDRoj4bUq7JiAFkZWJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rdqG3w4UsL32hoiDY95Z6n5T3z5A8bvaLcom8d6HxLxcY5pat": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1re2tDkbUVxuMQxDK6PB4FnNm8wGR6dYvVEbYJ54ZSmfRr2kyB": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1re39zShLPpY7DpdrhFP4f8efLevBQruHWHr2yHYiSanZ1yQ7": { + "balance": "4231.245575468", + "bytecode": [], + "datastore": [] + }, + "AU1re6QYr6e7Ecmo3FQXtxxwXSSbqQcU8hxomE2S88p3QHz2Xafo": { + "balance": "2293.423924615", + "bytecode": [], + "datastore": [] + }, + "AU1reNpRoFWyTvYaaU7ooUYDT4tzxSp77QkCkuP41j7YGiP6QikS": { + "balance": "4226.477189301", + "bytecode": [], + "datastore": [] + }, + "AU1reRC9Bxnw2Dbu8gH3waqfNazHAiN4zDKvWPLvWyYBtM4tMfWp": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1resC6KZYjiEzTEjtfQ5f6ja8ND3KmgCmEDfRSTT97Z5QANDiA": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1respWkfrrDqvM1GwWzZAJppMqk5cYd7CXTq7SZWoAHDWWynkj": { + "balance": "804.133287789", + "bytecode": [], + "datastore": [] + }, + "AU1revGjoEit6ffDJwdv2HK4bSiVHHwP1fDbp4XmEHMk1DQhicVy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rexfTbSJNcnQgXh6XPPEF6R8jB1y4fqgkNCWZkLKhJBUXsaJv": { + "balance": "1516.717844354", + "bytecode": [], + "datastore": [] + }, + "AU1rfLJWLM7QL8o7LGLnGfLzQvQF1kANwuzzv2KUV9DuRmRSrgm2": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rfU59EwX1r7DUGqCgAJfvNevSR1vjRWKcgFPEKsLw9WainpLs": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1rfrQLd4E1eqMdw4pPEJVGqi9wrX7AwLEgoerh77yAEMvNrR3P": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1rhBvgXPWdaMZqEHQuhraXYPKjZXBFBT48aUNYMHNU4yyTYL2Y": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1riBCW2K7yNkkSDg7EdPG6w1NCkbpMthQRbNMphN95rWBFaYJC": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1riDrHynRG5Wx7FvjiD94k8Kx2SNn4YVfm8tx8q3cJjt8CUpfd": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1riU5UD7Cd8zNGC4nq9vgVLsazq12Zj1zFRXuqtkN25QgrmHUe": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1rimqBqWZxkxEjWnSeHdMRxHakH1aBW2s85jY1v5rXidTu2KSc": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1rj76z38YFNTB8CmvzAygVRuCkevzqsiGAdrYkzPJ8c5jfZNdX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rjTYpfPAZ1QtKdgE4k9SsZEzUsztgWmkpjQaMpu4KsVtMHY6B": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rjUEHj7aHjxm4kCryJMGgGTnzWqaoDFm5xTZzNgvpm2RnBuyi": { + "balance": "2986.008733220", + "bytecode": [], + "datastore": [] + }, + "AU1rjfoH4gkceKHocGRwztakX6hiuoTjrtMnsUhtGn6kNru1Skjd": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1rjhLX1o6w9PqmPL4XjKnJrY5CyeQevWvvdwFdUE3FbwKX4Jqe": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1rjij4gRkvjfusEc1bG9mSPj2xisMWkqnUc7Hm3YUyZHgL3SRn": { + "balance": "60000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rk1Dqv2VJmjjj6wYJWksDXvmxpWT4ygwSGr2sLd4VUARfbU1W": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rkY9C9vo92Exdqjem4JVD5PqQbzoWCkAsWUxucd2zzXM9x2Xa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1rmDmmbT2Ua3Pqn7s2jg4aZy88a1R4B5nbDDz5CYtAuj8dFtNE": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1rmJuhVe6qLiQJRPQztx9dRKTYV7mqSozpTuGBxCKSiN6fRXPS": { + "balance": "1473.108720815", + "bytecode": [], + "datastore": [] + }, + "AU1rmbSsuLbWkWZh4nQnZxjanRq1TZuvEqtqfP3kYCJaQPXPsdED": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1rmcN8iLypMXW1PmAMoxP2UEFnY7GMWF1yafNcMqJfSHPHX2f7": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1rnCg56hCX3quu8WDTTm4AqbnJeW48AWRHP8fmBXWVU57D5kbm": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1ro2eJVg8YTKSpKcvqDS4J7c4pyfgUuZ3UzvYxfmvWX4XFzFP5": { + "balance": "1030.289939607", + "bytecode": [], + "datastore": [] + }, + "AU1ro8bXEW3U474krGL2rFXV4XyXjg3vPxK8kTkCQLgkyzYmdfmv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1roR9UwoThKSidBNRumZ7Viy6hhnMPoEa1BsQYLjrUxNrhciGx": { + "balance": "63.531353135", + "bytecode": [], + "datastore": [] + }, + "AU1rok38R2YxzTukEGAsfk7rHkNbZxT7sLndK8wGPMijRCHxPZkU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rpoTR49GsLNGm9jwj8ntvw3dvnGtZFcx2uZhgFMwhe5UQNi5v": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1rpu5yDnUAQzWkkmV6wdXsGUT9ESvhi34wTmUbtAVrJbsQjSBw": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rq5RnSAaDyZhshQTbuV31G8FTeicCBkyR1gzAu8cxr2MM9LUY": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1rqAyTvpZyJEdjZyvujQ9Ef5gjaTZAzeHSt3c1btpbDAucFpvH": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1rqQDxQ2hmU884juRRdj7aG57RkTWU58tQrXNhZNu29HxGyVuA": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1rqq1ZmGaPsozj7gkebbCd7G7ngacr7GgF6KmzjsoJmXkpzMgb": { + "balance": "2432.301830955", + "bytecode": [], + "datastore": [] + }, + "AU1rqtcivKuMjV174rMeR64g1Yf67kyo91Wc8DNnWYJgiqbJoCv2": { + "balance": "5600.605322224", + "bytecode": [], + "datastore": [] + }, + "AU1rrReop8nEdodbAJAmFxuKHwtrgpuSrY5KtgreQb2awG7d1Be4": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1rrjPsGxth4tSpyyFyrP9ZyVv7FhfAEJLUpkgj6899SCB8wwwM": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1rrv2pCgU1KFGyEau4r9oe1patZJ6PqJSg1vvC8mrAy6YkCg91": { + "balance": "291.020495646", + "bytecode": [], + "datastore": [] + }, + "AU1rshaQk4CSMFBFAP2WxFNbq197vWCLPsVncbeRmDSWaCChb6s3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1rsiAL1wFLth1H217LeHPD3vDqgbkTUAjVuzGyMtevpKgi3UoH": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1rt6DRkbSGy4WfnpURq6rLYqxQ4jF6ZiGM23E1XfRp3EoXgJRM": { + "balance": "735.513729151", + "bytecode": [], + "datastore": [] + }, + "AU1rtuTjuBcp196yyvyJ9b3T9mTn2x69JhtqR2ZGiZurvb9ggGYT": { + "balance": "3188.355748363", + "bytecode": [], + "datastore": [] + }, + "AU1rtuqUDmVygXyLkXUwAAQD2U9iq2SAPRs4o7erbQSvaZaikv3g": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1ruAYD9xZC5MH648f3uYqYNzAbzTCZ4nX1M66yWAiSe5CDML1P": { + "balance": "2930.146894343", + "bytecode": [], + "datastore": [] + }, + "AU1ruSyekL3c6HQzmiFFuJVBgFhhug6kxQ9xaifJbTLZhiCHF6Ci": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1rug3KXAjkMUFmZG6m6H4PXjt9hV7U422HFZ7wrxywF6jXexHS": { + "balance": "1149.982896532", + "bytecode": [], + "datastore": [] + }, + "AU1rukSLZRNRi7sVLRaxZhnF3ojB3WWkQm4JL7EuMLgsnf5siN7H": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1rv8H1ZhBiTk6YbbRZex3peVFkEt7F31Z4wVumU4jvcNRDkAp2": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1rvNUeYzXfBRW9eeo8oZYMWDZRwkfZU6YCQFFXdXVFp5CRBRtu": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1rvS4HNu95KCEzighuTuDotw29WLN4Sf7wQRvZoXY9rYDBUi6b": { + "balance": "2658.224241573", + "bytecode": [], + "datastore": [] + }, + "AU1rvYnukNYceBrbMe4DecjqgLV8sbuwwCbtBnvzEU9smQ8T5bW8": { + "balance": "3709.956168528", + "bytecode": [], + "datastore": [] + }, + "AU1rvhjR5bYZ27Awxop3GKvdzJMjk3aKmmhUS5yJvf4sHGWAdWRu": { + "balance": "1019.050336891", + "bytecode": [], + "datastore": [] + }, + "AU1rwc9zLGZoNRScZRkdyXRb2ULJSSWW1Y4xLgmzpzyyqWHJSCpy": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1rwfCyrbce6DS1pyjGpMxvM9YkbqahnmgcVQL7g1Vmg7xJo77o": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1rx23KaNKXus68YJRKbKAF2VqFEyG6bu5DEPHaweqBMT9KsXqg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1rxS9eSTQU6rrXXjVCpKVz62AVphmaRcisdydFE7CvWwvfEtfS": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1rxZJfMk1Ey5N4PTYvVhHGzer5yCru7ttBfMeGfYTFCeSJbTLu": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU1rxgEcsPdBJUVWucQDUaqE8Q8PmWoRBQQJ3ESKtVrwydnmpB5U": { + "balance": "684.487174664", + "bytecode": [], + "datastore": [] + }, + "AU1rxnvUo89JVMdAkdC29Nhqg64Uzs5GgnCg4Acc6RqiXZhC1wAq": { + "balance": "2465.066058982", + "bytecode": [], + "datastore": [] + }, + "AU1rz3RPX2dcVhkwbg69MKzL7XmA9A6o1MGqp2FYtfUKdxhXxu4n": { + "balance": "3350.542442465", + "bytecode": [], + "datastore": [] + }, + "AU1rz5fzAMMorSEmRF1qJSXV1a9U91zSTh2X8LdMP68Z48h3g79i": { + "balance": "83.333333333", + "bytecode": [], + "datastore": [] + }, + "AU1rzVzAN8d1ocppvwsPSWTTv4XGahojnqCDeKsVJ77CGh18kRBD": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1rztmjigHZjVJSsTVV2EcyBaLcNP7WpAwV81jzvn49nXQz7uWp": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1s1Fp8ytGNVKFPyLgx1ftmTzs3TKKUgzFUDaoaGPTgZQzszCdn": { + "balance": "1696.522358987", + "bytecode": [], + "datastore": [] + }, + "AU1s1TfHvWuTpGTMwkqBbzkoqiPt4NsiT9jgsLuSDS1NfR7ZGhf3": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1s1fVQadioXfFA6cB6g6AUvKsQg8BneDYeLpjeYnAGvUKJ9bZn": { + "balance": "1237.188129187", + "bytecode": [], + "datastore": [] + }, + "AU1s1gzBQZZoGp8VjXfYyn1qAJqeBHH97vECazp4mxj1fSVi1N1D": { + "balance": "2461.974382873", + "bytecode": [], + "datastore": [] + }, + "AU1s1xKwFQEex812cmkE8qXJNG2mrw8ShZceuPRzoGdRc3J1CQSt": { + "balance": "1294.848872865", + "bytecode": [], + "datastore": [] + }, + "AU1s1xMSgM91bTsedfHd7YJNvJBKy3JVQNGpvkEMW1y1sjCajUqA": { + "balance": "4312.832984715", + "bytecode": [], + "datastore": [] + }, + "AU1s1yXEKu3xKrairQkymMKXRGZY8Rii1JSEzhVMraSvu8mVrqcB": { + "balance": "3776.783498376", + "bytecode": [], + "datastore": [] + }, + "AU1s27nvkmvm7xbVRoES4QP3WnAi533UZqueNod7kzapF8UjCPav": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1s2QZdCiqyk4E9xqN3o4iZAB3HXXuoRkzuAsYJvf9VFNyLQ1Ny": { + "balance": "915.203711224", + "bytecode": [], + "datastore": [] + }, + "AU1s2SAWFxfqoYSVyb26HyFmb7c7TWKggN7E5NUqv9tNrQQYw8Np": { + "balance": "1383.303794916", + "bytecode": [], + "datastore": [] + }, + "AU1s2TbWfyty1vhkFqrDjp2ozKNmEsLXPJoMU7sT4YJk66GaVoin": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1s2gX1cvDGKAvqttpHVsh9S3ZL3LiH6MvFuKQ7b33659GpRZZP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1s2q3NdJcnS4udCUUTuBoxZ8A9mqEapsWE5CYw8TgcoPktVnMf": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1s3DUTM3hG41NXWEp6JX7SQzpzkhQ8rKdyUejPu2aWK2N77Piy": { + "balance": "1791.715938761", + "bytecode": [], + "datastore": [] + }, + "AU1s3GCNKui9JjSwojH1SZQBpD3MDy4ynQq7tkPW2sWsv5rQzpPS": { + "balance": "3921.322660811", + "bytecode": [], + "datastore": [] + }, + "AU1s3RcwfCSh9G6GPN6nk6gwfhsxJmMX6uNRuHJZUNs38A1fujyH": { + "balance": "91.584158416", + "bytecode": [], + "datastore": [] + }, + "AU1s3YwHXKiZDLjhcGzWsDzYQYJpZztqA3aggQ3NX8J9MTwzUVBW": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1s3aNEkSGxwsDDhCoSCCH1GN4QQFYLwzKjBAVjWfqLPEnBrPnd": { + "balance": "2591.148471713", + "bytecode": [], + "datastore": [] + }, + "AU1s3gE9LnptoajMTAQUVgDeMNi5GwHwAXYpwwDGfVRP5XBxgoeN": { + "balance": "1432.542509164", + "bytecode": [], + "datastore": [] + }, + "AU1s3jaE8NioNnGZw9PUktkHi7XdkwMN5uQ42ZohWjRJUS8UiDLU": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1s3mRTgRUqEZMEdaoUhqmULpoBfje3BhWZhp18LAXbMor9rcfX": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1s461hyJitNnwLnUtKHMLgeVNMoJ9Bw5wcjLaQPHt9pCVmxEtD": { + "balance": "18333.300000000", + "bytecode": [], + "datastore": [] + }, + "AU1s4K9goXHrv2Ex7JPYL8rhLzFDx51Cr7dtiPmkueg5Ra82F3Ur": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1s4b3r4f7Rh5vrQ633X9t94GKUEUtZbGuTA9YYqUNgeMZXvmbF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1s4mhwv4HmzefJ5grpxwKKku1EkKWRwP7uEKe2iEC7SstPKWiS": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1s4onbEAYnW8qf38voPgJ6cVa1iN1RnQsSMbPKLUj2vrrkBfPa": { + "balance": "2195.168583516", + "bytecode": [], + "datastore": [] + }, + "AU1s4yV2N2rUpX6HGF8768KcVjMkKjKmdJBzaZq31hfHfnGM2Jug": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1s56E58ZnP3iMrUCK6S6USBC5TM1qe7oqoPyeMZ2VCoM75saXV": { + "balance": "86.277128759", + "bytecode": [], + "datastore": [] + }, + "AU1s5MekYWMen2bWjvAMoyZbWamQf6tP2tu42Fiastm3A5mDMTND": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1s5RoXdv3t818f3HpPFj2BFvGYG3eZ3WPyFzhfNphUzuqdhujy": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1s5ShEbqq7SBywRXvz78WRyU7LL9aArqQcr6jt9suCnXTENvbN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1s5ioAPMHLRqTMJEVRLSwb59pSQU89coicRNow1Pzgh9fuBZay": { + "balance": "46.972375919", + "bytecode": [], + "datastore": [] + }, + "AU1s68zsAiEyPCvL9fxYYd7ppuh417HyDD63JFgBAcJyc8VC3cbt": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1s6B6EtmPyQn8b9Pg1xGWJTmQ6xJy7DXXhBusJLB45S75axzF6": { + "balance": "1404.011328545", + "bytecode": [], + "datastore": [] + }, + "AU1s6dzHwWUYs5zzbs933BkyZ4wPetW4cPv6g7azz26y4pwR9JFt": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1s7C6uFG2Z95iVqa9bpC5nUtqgCJyAhMD2YS8vXarRksmvfDQQ": { + "balance": "3318.140804126", + "bytecode": [], + "datastore": [] + }, + "AU1s7CrMoT1t2Pe35CbC5B1AB1zghCBB1aQLtHmC8dWae553bGrk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1s7E39RDqyWTQuNyzkooc2JLUicqtPykZgQkZofoM14bTAoDya": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1s7FPtEcaLuyCp72bMFAkq1BBaNNQag2zWHhaJyUPVpRpayhNQ": { + "balance": "2112.842801725", + "bytecode": [], + "datastore": [] + }, + "AU1s7GDQGy3gASdkPevu4EcuFeG48yjZ9DnL3AA8fAjrgBmwUU5j": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1s7e73EJgGwywd9dFYaWXuotysxQXzFb4Sy4432fRnmuFenPie": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1s8DrEfiQCNHB46YDrB6vwM63CBjhkpyabF6gXgEhSRbc1fCCZ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1s8JoWXpRCqeTezJH9nMfGgpAZBxEEDz9qoXiNJ3aHqYMZsADZ": { + "balance": "1754.231442846", + "bytecode": [], + "datastore": [] + }, + "AU1s8KSzjZmD5ymUrzLzynQ3MEZYTrdcoxDVVwTNppw2mvxtuDCs": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1s97mg1mwG9dXxTS3ovGPWWncvmapDrjSkCteSSDUubJ4qtQYy": { + "balance": "2027.236624294", + "bytecode": [], + "datastore": [] + }, + "AU1s9Ytti3G8eAEjoqUA1dhxDDTzw4Zfk7iNCAVQA8Vvzy5EV3rd": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1s9tXrFgao8rWE5hY4p1HNdGPeyyGwEkZxYnMa3UVvYEnL3Qmb": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sAMdjiCzxnd7BXQdiaip2219wNneYuyUCv1mqtq4UWQqxeutG": { + "balance": "4871.621152823", + "bytecode": [], + "datastore": [] + }, + "AU1sATSKv6KZabDg3y6NCEMDxN3dEo6dxErKWfdvcXrgzGXrLVtC": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1sAf4XeyJX8Dn8GuZjRvgeviu9zXYc4YtsgEHXJK6ShvLFsZ54": { + "balance": "2300.417972399", + "bytecode": [], + "datastore": [] + }, + "AU1sAmRKRTD6G3euaqQryRAUBU1sDWgPJHND1fYmdR5TZfyLoZWQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1sBhw7zq7heU4V7d29crvnMLBYRNUwhmdZz6iVfR7epNxh5JZT": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1sCSZwgXZcTEAG8QcXigNjbnmsefuywSZk28q1vE2aQdeELT1S": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1sCZ2Xwo5crMiQzSxF8DPCDPnTs4mU64R5CyR7eeP988nD43ni": { + "balance": "3782.420032070", + "bytecode": [], + "datastore": [] + }, + "AU1sCadhGhux4NrDydYnzt6wfWFrWUDk7ZrisZn9bJfzn8bHVV2U": { + "balance": "3585.936687407", + "bytecode": [], + "datastore": [] + }, + "AU1sCmc1Ayyv55qBume4WwktcJxddhaLHGwtek46axJRKHHfg4kh": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1sDDNzUUuPx6969LQZcuE96BHPBTuGoPBMx5XQizkmh1zUHjwK": { + "balance": "1465.656453790", + "bytecode": [], + "datastore": [] + }, + "AU1sDSFQGNP3r7y2bgJrvnSFwGfJLCtnstGSnmXE9zLCv3LWvDG9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sDUK7KCxtFEdyTQXwZqbFMX6uTRXTq18aU4wuSPvHLT8n6571": { + "balance": "3756.947288383", + "bytecode": [], + "datastore": [] + }, + "AU1sDZKk7usc9GsTcvQTNLRzAYSZCUZFFmyCV3uRuDyL9qcFm4CT": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1sDofmvADjLF8kL9bpbBHg7LZFS2sSuWTr1YmqRAiB3PTdq7mV": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sE1FbfAbDvoqPE9AcfTCK29cXQHA9DpshFJbjE2qTvbAguUbx": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1sE7VGWp17NKGs6vP5XQ1sPa95hSJDSRmWVLMNn4s8EFah3eu": { + "balance": "3502.316310993", + "bytecode": [], + "datastore": [] + }, + "AU1sEFpMWSKD4SHpztKikzC4YnjmMt3BtBm2RvGcvZhfBNbCcHFL": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1sEg11VanL2K7ZncywAsP9hZx2KTmaZXTmGmFXw1A8kVRWHG9N": { + "balance": "651.531169275", + "bytecode": [], + "datastore": [] + }, + "AU1sEmFw4Nvis44Q9HHbyU9UFArE6QZBu3hKVjQG7o6S2hVkpxHi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1sF4rcHVmR9auKbo6L1fpRjngLnC7ox4cjYfdoE3K6h7pUHfJM": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1sFPe3oixA3FTc4z4LFZk7LiDzZniWC3Vdip1kt7JNp2tf85Yy": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1sFSyuTTXRtSqnzV3hDmhhXSsczmvLk81MhgjN9xEMQ6oacoAS": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1sFZVxfpgu9GxcpJQVZUHzJ2N9BTocNYNaUsa8MED2tS8V3Mk8": { + "balance": "571.942809131", + "bytecode": [], + "datastore": [] + }, + "AU1sFZix9vBg1PSE3kMKTyPYXT98vEtA8pFGtdwiNcygCiQjptF4": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1sFuRmsT2xoYSxFMqDpRQJYQh81xYpai7GHqUPTAeiWdneGoiy": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sG1wv7w8kDr3EEMJyXLRB3QxbSRXbucTzdp2jLdwx3nHegoD9": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1sGQEZeZ6rcmkMRVjnQb6SQEnEQAhDbWjCaZCGUWnEbnJqppN9": { + "balance": "228.367571965", + "bytecode": [], + "datastore": [] + }, + "AU1sGtb3kbv5zk6sVP6BqZsf4D187nCWmC3Xk5q7xzCxSdabLrVc": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1sGzLxFF4iVeFSUgHBCQob1xJfjG82keYYrhG1r32kvzwnvhh6": { + "balance": "1533.135659994", + "bytecode": [], + "datastore": [] + }, + "AU1sH4YSkeQTxqxBWuRQXMBpoaCeGSxBkdMxYDPwNozHhQXYH4Xo": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sHQD7wfPuyuKK8Zhy983TgJPHWrJnjeVTPJjkP9MecDEo5EVw": { + "balance": "1330.785942752", + "bytecode": [], + "datastore": [] + }, + "AU1sHfdwTZX4W4sNsKefzZMe9hVM1MDsZ4tQETWpDwENqv3XcPR2": { + "balance": "79.207920792", + "bytecode": [], + "datastore": [] + }, + "AU1sHrdQzNvFBxyxmyHPra6WUixq91EtuCXMUVUYo9Ctsz9z9pj4": { + "balance": "2939.475134112", + "bytecode": [], + "datastore": [] + }, + "AU1sHz2gp6yqo8v4Ki4wLvgdNgnSa2oe5ZCJzBveQpC7QJh7svPQ": { + "balance": "1607.441817927", + "bytecode": [], + "datastore": [] + }, + "AU1sJDQUDudXCXkr2vpve4cY7fjNHzuFdTTj8HD8YFeT2CKRPRbc": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1sJK9vUkg8GuZsKn5DXGVjU2gkwbtYdheEeb6So7J2Y4zBsPM3": { + "balance": "1010.476563440", + "bytecode": [], + "datastore": [] + }, + "AU1sJLjPX5N9nHvG59PwfmSxrggAmomATHwFy74FHptmifQTzLH9": { + "balance": "5586.337351593", + "bytecode": [], + "datastore": [] + }, + "AU1sJXrdtYmgaWPPTj4WggRjUMvAuAGLwCArDYfWYS5WgdYbQmpt": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1sJa2EBa1156fCmQJkcHFD3drE6c6AH6XwGtjVgyMrprJDCbWA": { + "balance": "4526.365317925", + "bytecode": [], + "datastore": [] + }, + "AU1sJgYN1Fk93Muug7TwvPvxZrV3wfpYj3F9FWDaVyzFmUiXozBW": { + "balance": "26.794597992", + "bytecode": [], + "datastore": [] + }, + "AU1sJsFiB79g4YWbsxzbPWwRto7rD4c7moudbA4UaHdBt3ePMat7": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1sK1rrgv1wCV4ZBt2KdSWfrz6MXP5RQ64RZfqFPacYTVYmLjYy": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1sKJKsZM4eemXJNBjdQVLC69ngyAoHZhY9S1ewdL4pg3hyqgRF": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1sKKmJ21jHhabDadzEYBo1saYr5i75574hFBoESBUZZ7E59hKE": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1sKXqsWFvzXtTs7VAM1EruKL9DxdzUutzXM7ZY3x1md6ZekDx": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1sKhMoErtEXgt47WPbcizwd7rLvbkHMh6tvXWBFX1jcRDaR7NK": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1sLcY9jtjyWRaYsnW58i7Ury1Rtb64KsAKXU3izQQ3zRx8Ki2S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sLfe1pLknKPGY6izvxX96Fdc5Qx2yMxEZF2x3Zp6JBr51Crih": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1sNpDn97Ea9gU3VmJKCEWg6uGTs2FZ9qwvTx4WV9pKgH4YLjB3": { + "balance": "78.324737147", + "bytecode": [], + "datastore": [] + }, + "AU1sPf1zrT97hQuBvqc1PBzfKbZTKJzAHT3bpU3faT2pjeeFJjmJ": { + "balance": "2779.894623417", + "bytecode": [], + "datastore": [] + }, + "AU1sQEr839cgM27nfEuUurL2KCEV3QWspQqWnuhMtb6zbK5RbTWe": { + "balance": "2515.239531606", + "bytecode": [], + "datastore": [] + }, + "AU1sRMK4JbQeTcCbC14FE2WYr8MySDXXkiDn9G2XpiwntcnvxvHV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1sRWg4Q9KmeihR2mxdaCBwp1xmgwa9MWy6VCYxNdbVybhXznuF": { + "balance": "1566.138945844", + "bytecode": [], + "datastore": [] + }, + "AU1sRbauCau3e4thXgHApBoawKMUHqddfUWZ9edf1DyaLnPtcxyA": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sS7xRBwucGPWRULexB1Sy9KkGmD9a5VVQ5YjZahHWKm3i3wbs": { + "balance": "1942.339564561", + "bytecode": [], + "datastore": [] + }, + "AU1sSEjv4UpDaffPVuv9tqdXtuGGEh9nYLKF5MRpKrwWo844AwPH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sSJoXcbqWgUNjphTTwUNsDQt4EkQbfhHG8fsTK34kHT95ym1q": { + "balance": "1462.024085567", + "bytecode": [], + "datastore": [] + }, + "AU1sSUdp9aFRDgWUqCdNfKTfMbV9C4ZPFUn3kfLAF44cyarzg9vV": { + "balance": "3301.991852638", + "bytecode": [], + "datastore": [] + }, + "AU1sSwpwtf31tvdv1j6TH5XDvqaG19QLQDUwGmAzT6zHQgKJiBxR": { + "balance": "1479.288409439", + "bytecode": [], + "datastore": [] + }, + "AU1sSz79hiiGg3PVcyrWMvCpJeo9wUww4qKtSsP6c1ZoZbQcmNoa": { + "balance": "3090.340103641", + "bytecode": [], + "datastore": [] + }, + "AU1sT5unYcfcFKgkFC5s3MxB5erB2ZRt6YrsnsV4fh8o3hCyAKiJ": { + "balance": "609.549698348", + "bytecode": [], + "datastore": [] + }, + "AU1sTVhGmfSguWL4Hp1btutv9pRiNqWUDtb8MShGSw7NsuCHqGaR": { + "balance": "1521.562394984", + "bytecode": [], + "datastore": [] + }, + "AU1sTnsZDoxq6XyVuz6964BK7iCL4Je6XGy9HZ67DUrY5xukzDhj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1sTxEx23RbMe4q6sgVThHsrDV3vDBobnmAxrM7jFBmapuQqgwo": { + "balance": "2629.285519785", + "bytecode": [], + "datastore": [] + }, + "AU1sUdd6j8XjfW96T8Zh4L2kNrqkRc7x9n28iYNq14H1apPVdbpN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sV7K7x4QdsX2CcY3t9UPxAx4hweuMNre33PM4NEmbFvfRBCBC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sVF5ov49ujVNKYrJSuU5ajBuWtZwWJbJXYGWoz9NESgYPKxdS": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1sVFP9eXZDVatseHHmrz9bHCatm4ZekiaFo425ScpuFeBsCxy6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sVr7QwhkrVUjACVNGF6bjtLQPD51nAFXAp5oJM6sR3imaL1R": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1sVsx19degHP6YRGLp6cbpdQYrYK1p5oSSuMJJFb257oMGQB4z": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sVvEtaKeJAs9MEYQdE9dJ5y4p7wPvTyca6ytciTu6kLEnE23V": { + "balance": "2205.014431056", + "bytecode": [], + "datastore": [] + }, + "AU1sVxtbiozzy6uPLwrJmtShVutJbiato7CZgady6CqXuVfVKVHU": { + "balance": "2492.695515468", + "bytecode": [], + "datastore": [] + }, + "AU1sWCv9MmiSFRKiYKkJDuL3DEjEy9pCb3A2WBd1pPWc1KbDCMMk": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1sWNW7jjoBc9AGtveuTBVvHqc6xDsZDigwxWZujei9fjkvjYnM": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sWsE45tQkKYK7nkCfmQ8Voxe1GX57SzxK8YhyLcfzFbw6EZHm": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1sWvKT9seek84eHrXv5e8ZJiQjAc6PMYLHr5baeHGDHQZwPMXS": { + "balance": "1252.895286681", + "bytecode": [], + "datastore": [] + }, + "AU1sXDshym5h4Vo46sGapUXT3ynVdNJRv3fjBQGKvVPHMAmzMQdF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sXJYmb5UUiZEu8pMzkiDGVdMNFiGV8gq9Z7DiGcUstehpMmUd": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1sXcEtH3xMQPqFz9iwRdwbGXyJCPRc67ugyfkjCK2HCyB7xiPc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sYHNcx6oL61G1ZsrK84Dtqwny3Wwx61T8Um2SWrUuHuqCbSD3": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1sYtafeWNpdcgQtBUVi7LTQ3F4vpBAHA3LqaAjAuTsSkb4MR4c": { + "balance": "1543.598594814", + "bytecode": [], + "datastore": [] + }, + "AU1sZPTfv4kMJcZQt6cLB26MikhgQZoNr8MshBasnuicLEbcdLRi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1sZYY3RfsADNo7CTiMMFAc5ndQxqNprPmg3byT4seTdTakbNQa": { + "balance": "0.718852224", + "bytecode": [], + "datastore": [] + }, + "AU1sZgn23FT9ygvDXnkac4dNtHiGiYwb1b41rBHU5knmSoPGtYNw": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1sZiyt95HksyZdNSqwzCQ6SN1zFwCQLHunzAumZ596W3xnNC7S": { + "balance": "648.876926561", + "bytecode": [], + "datastore": [] + }, + "AU1sZomj74JDW3CsuWCLTpHYjNsc5XLM3M2JkC51YVc8mXgyQeWB": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1sZqRKnJTDSSsD9XhGHEgnaYG94hpkkeNiz2AQcKjjNyLHmH6T": { + "balance": "1497.024658940", + "bytecode": [], + "datastore": [] + }, + "AU1sa7ddT4AEbDhvEVc2HAg2cxbrYfawFhBQzKw6KMyMSxe6tKF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1saWgHfJ3yCQan98YveUNQEsYsj21vDs4hAF2jGe9Sv53uty7M": { + "balance": "2426.049987376", + "bytecode": [], + "datastore": [] + }, + "AU1sawcgW36fMkfEoV6E6zewcwrhJi28PyMcuf5mkbWZASo2WUfg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sb6a47gdMFqUBpjbYSVD4D28H84fCScNuXkCjJk1ArbpgmvQg": { + "balance": "230.621929923", + "bytecode": [], + "datastore": [] + }, + "AU1sbCxKXDSAwWqWA4nEj84YXTc3do7sd3fkW8htBnuowF58oyb6": { + "balance": "2767.735930919", + "bytecode": [], + "datastore": [] + }, + "AU1sbGN5wjPtRxRwcrLpXXWXBNXQ6dM8X44SFCiwYWnxvoym568E": { + "balance": "6039.845615643", + "bytecode": [], + "datastore": [] + }, + "AU1sbUS5GBN3iefsHeQUrHBp8WdKGWGEyB9SKHow99SkeGZxWi5S": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sbaWz56M19qg1LM5LX4JTLq8qkP6c5SSNx2WyKiuVdrvzn8Qi": { + "balance": "538.020899179", + "bytecode": [], + "datastore": [] + }, + "AU1sbbVbYDkAk6DHW3JzbCc33ew4UUhbPTNQBEJ7VFYH7TAD3P7x": { + "balance": "1369.960153691", + "bytecode": [], + "datastore": [] + }, + "AU1sbbbUUDDGAKLsEviGcwyNq33SUme55b23EGavQPp2YAFBYzjm": { + "balance": "3641.944482485", + "bytecode": [], + "datastore": [] + }, + "AU1sbt7WkiRFNj893eRBPVF82q3gTY4SYoD8uNUJyFMhpHxWATMg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sbuGqBDicR1B9foQcWuV4rMRWTsd1Jz3jyWR29eDbUYnmgfpV": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1sc3aUtK6ubLz2JfuNLvEaDUeW3Skedn4BtTeDTVJKCfKXDx8g": { + "balance": "1263.623762125", + "bytecode": [], + "datastore": [] + }, + "AU1scJbu9CYCJFb3UXfEjXexUf9rPeHwHSSNrfii1dwUoSCZJbEy": { + "balance": "3728.643688097", + "bytecode": [], + "datastore": [] + }, + "AU1scMeLnpRAiSWo9VCKLFzZyfMJ8DELgAE44DmsFvyb2R2rBi69": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1scQHqCuxDC6z1Ko93YkxmgpRBzU9z96DJGYdN19u1yXVLjCYo": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1scuharjHQdvwaiDwB2w542LRCZV5FtT7wJ1KM47EFoTwzmm8E": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1sd4LK8MooDf2jyfAKaob1oecpyF1xv1c2eaGM9SkpVcdwGceW": { + "balance": "1057.220173705", + "bytecode": [], + "datastore": [] + }, + "AU1sdeBfnUQ8VtcHpR1BVvBhiPBjZkXMJvf3QePmBJkUrExKN2pn": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1sdmtiQh94aMqBp1qJKZXGRwThobPMeH2x8hH7uL4rdw7TBuYB": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1sdsRXHdKNajo1TvYyzzJBHs6u91cmQxWJtEJxtoRPbHpq23N1": { + "balance": "983.131477762", + "bytecode": [], + "datastore": [] + }, + "AU1sevxhwyhc2jattJBxNR5fYGhDLFA8H7NwS3XK3BaK1sW2fJD6": { + "balance": "226.506892058", + "bytecode": [], + "datastore": [] + }, + "AU1sexXLi3vVAdQAmceNHnCyGcAqkvjNVyLBHBzG9tmpS2Lb2pbQ": { + "balance": "1620.154485373", + "bytecode": [], + "datastore": [] + }, + "AU1sf1vrQPkgSNJrAwDxNB53Lc2a88Qw3iSCoTmEEiNzSmzhkDRQ": { + "balance": "1462.930994646", + "bytecode": [], + "datastore": [] + }, + "AU1sfSDB6uxmh4nk7Dg8tdcZTkJFKtkuuoYhgsqakcKUvcKV9pda": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1sfV45JkMQRDmdbEFr6CbLeYX2kBq8SyeDNP6SKV1S7VV3YYs4": { + "balance": "813.212126435", + "bytecode": [], + "datastore": [] + }, + "AU1sfkuMwC45M6QJfhFSVE5iazoKHpPPX71FvMF9LjzkL5j5H7w2": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1sgavMy4MUWLpTbt85fwchuPRUnFysfbwSSZvBBbtBsNtAyQHG": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1sgfzfsaCahkfxwZdSDF85Ex8PpTWZgmsd33fFCdiifzfx5sL9": { + "balance": "2997.099151633", + "bytecode": [], + "datastore": [] + }, + "AU1sh2t8Ad2gtRcFX13Rbb11uHQAAg5avD1Kri1v9n9ER4iyNFbe": { + "balance": "4728.568266253", + "bytecode": [], + "datastore": [] + }, + "AU1shGBAZLaLMgKPLGPDbY2b2RtoebwWSczEo6uGzppkfuJk5GwT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1shauknxX5f1uTG4FupywnSDKzMoLUbLsMwzUvv2NXiDVCf9K7": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1shedK1KbTpuwJoYTTyhfnKjsBqBCTfX19gza4c1V7xQ8Qh6MM": { + "balance": "1528.276029435", + "bytecode": [], + "datastore": [] + }, + "AU1shkUQDAiAgBTcjW5Tx2LgnU3FbMcM22MBgaRQRRAEQs66CYPC": { + "balance": "591.263029584", + "bytecode": [], + "datastore": [] + }, + "AU1shrQ9Pyq45281FQFL7mEW4gTVA5tPbZnKN5za9miDPXf8gTfb": { + "balance": "88.726386182", + "bytecode": [], + "datastore": [] + }, + "AU1siQFoGPDmXJcKtaPQRjro6wPmCxvSwugvYr2vN8DY6HH9bCop": { + "balance": "828.252091329", + "bytecode": [], + "datastore": [] + }, + "AU1sizZKAiz7BMnW7Sxq2R6xCjDT88iLedTcEUXCQfpHeEKPKLCt": { + "balance": "6006.928318598", + "bytecode": [], + "datastore": [] + }, + "AU1sjAafTow4CTqwE7fzdiz3dxTZpvLFxwGBuRVeN7cKAmUWmHey": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sjdRhMHpqwPV2unXNrH3HnFZNoK1zrJPQvnPrLfbT1QVvv6s6": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1sjpxfqxvVsuxwwYS3JzMYsJySeyH6txQgw4i115s8UCZi4cP2": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1sjq1Z9F7pZJmfMAQUxV6jVN2FhSYwiESZbWaAfdSAh8kdTutV": { + "balance": "4644.449124637", + "bytecode": [], + "datastore": [] + }, + "AU1skFUUfHWcNXZjzFpAB3GvPbo17WVpf8xun3BgnERBDtp1ktuF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1skz7qsgiGjj5egmqZ9XjxwQg7Sx4W4ac8iNbLdtZo1xsmzGY": { + "balance": "2661.867456935", + "bytecode": [], + "datastore": [] + }, + "AU1smBEoQxVikmMdGeutDRAZ9ohwGXKw4rKRo3sgwoKDrFs9bfPp": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1smiM5Bc5y5Wn3XJqPNCzWDszbVxSz3arsqFK5XsfAAXktTwZR": { + "balance": "21.803343828", + "bytecode": [], + "datastore": [] + }, + "AU1smqzKM38pw6pTeXgLd8rS81Nhmxc3Wg9DrDWHcWemwbUzd1pJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1snCnZsc9giEVe9vcoqTWu5RWKU6yNny2mk3tZ5hNQryAyLXGC": { + "balance": "814.518988686", + "bytecode": [], + "datastore": [] + }, + "AU1snEozZSmUym9xbbqJrnLN5iTSrbMeEDE7afrpWsLwsuw9rA3V": { + "balance": "1096.129107786", + "bytecode": [], + "datastore": [] + }, + "AU1snMCYwjC226HRfoCg1x388wTBjS5SLPYykPwsnWBNNMUVMTJH": { + "balance": "104.785478548", + "bytecode": [], + "datastore": [] + }, + "AU1snyvGnrkYmTTHYNkJMR9vBg67e8aJMHZ6u5EgApcGJbQg9LEZ": { + "balance": "1603.911121663", + "bytecode": [], + "datastore": [] + }, + "AU1soFJ4nvrp4y4x5qFbT4aFTzcjKcLJ6BAspopz4QR7Uyr7pTHi": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1soGdsqPN97jHR6cDfoCMqx3Tu1p2mjdM34hR3yR54KtXuwRyJ": { + "balance": "4652.388643095", + "bytecode": [], + "datastore": [] + }, + "AU1soUn645dy7jzcJMWrg6GTzWUs5k3ekzkXuNPnoUD2oSB2W5v8": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1soa1ZM9Fpr9pQFPZ6jKnUdghdJ2YRQDynQsHWAVDNrr8uRsrY": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1soiZLqtxup8xWwKxhFTTdGLt9TBVpRHVsUV6WTDFSRenGn9G8": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1sooXBGTWJDkdL8XeLKvcEYwcw6gcPkicWXad8T23zuzvEdqzj": { + "balance": "2114.986841723", + "bytecode": [], + "datastore": [] + }, + "AU1spD5RmGLKEJRvWws6RnWehAsm8mJFGCQcE6PeZNvnzfQYUaj1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1spMZbNZ96jEuJ4A1P11DEgimDDkzJLt5GdZhTgPrSYEW5posz": { + "balance": "618.498324502", + "bytecode": [], + "datastore": [] + }, + "AU1sq3ok6ZTJp4MDLoGeMjd5SipBiNAddN5W7ZHKZpc8KrPZa7Gy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1sqTsvFQkN2ZKPLVRPTUoDaEWSy51k7T9vXxJ4w27z4LRgXPLF": { + "balance": "1596.412386673", + "bytecode": [], + "datastore": [] + }, + "AU1sqUgK7y6DoeoD1kPvghk7q6pvXi9dBixWGFeXL39XrmqSy7nW": { + "balance": "68.862326725", + "bytecode": [], + "datastore": [] + }, + "AU1sqVDhpp9AiqLmKyrqrDXa6CNUcUTdpxEBSFZDWsFAqXrmxxBr": { + "balance": "1312.853561587", + "bytecode": [], + "datastore": [] + }, + "AU1sr3vZ1Xc2KxhHzJ7jBMbZPEyNEKsmJAhm7sXtja3KTPXLAPvq": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1sr8xYDXGFfGu46uJZPM64Gp1Rz48EfqtXpBTzJY7FbTMqzRtF": { + "balance": "1299.080021613", + "bytecode": [], + "datastore": [] + }, + "AU1srYxRk6vZ76tFst3UuqNLC84xzWoYC4sgTNQFGDURodk1U3Av": { + "balance": "164.191419142", + "bytecode": [], + "datastore": [] + }, + "AU1ss3SdubV4m44iomfCokVAKqCf9QFpW6tayNZWUVJKeGNj5zP8": { + "balance": "553.782940285", + "bytecode": [], + "datastore": [] + }, + "AU1ss42zUqsZns42hCzjzJdjRAai6y6RMv8tCnLxzWdNKf9do2UW": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1ss6Wia62JUYoexuvmzfp7i8hZon3DgPV1dx9syfwz7CdeRSWg": { + "balance": "1375.700078625", + "bytecode": [], + "datastore": [] + }, + "AU1ss7oNcP1JDmMnLWGkPSVEWCbLdnJgURkdZjDswGrxHZ2ohr1L": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1ssAdWXCS3GRt4z847oj7RWFvixTiTEYdfTaPvB1nrt8o5HYFv": { + "balance": "900.468764409", + "bytecode": [], + "datastore": [] + }, + "AU1ssTW8ABamxCJuX31iZ1mXv5bc4kvmkmxKs1wAynfRHCbuTS3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ssnxt8gPKyu5M7Qqr9fwwHrVXnrdiPMueXA4RaFAsJYFuoXvH": { + "balance": "3284.604593371", + "bytecode": [], + "datastore": [] + }, + "AU1ssoWnUnLmLaqAmu7bjrk1ASU9XcaeiGCMY9hKdjgCxUEZ1P1c": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1ssr1AGQSNTpd6BxfaiA7EvUdgonPnfPhjc14PzQrjnS3G9awX": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1stNEaiadsn81xy5VPSj727Zd1JugmbZtWa2pnv1fHTDBfPQmF": { + "balance": "1945.110951660", + "bytecode": [], + "datastore": [] + }, + "AU1stYnJ6o9Ergs33aXGNGKTetFHc73VKTEGEXE4UXtjvw4s4Jvi": { + "balance": "2184.728307398", + "bytecode": [], + "datastore": [] + }, + "AU1std6F2Rt2vNpoNzYZZtU1FwtDu1ZieWbE9re7bt2WGHAq4LEC": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1stfQvWc1khSc1BNFEkZW1nunLmy5bjVnRxqsBgV3ETyrwX4Ay": { + "balance": "226.037645384", + "bytecode": [], + "datastore": [] + }, + "AU1stmkzHFV9nHkkcDRPGnqHqMAeP7eEeSHLyBDRP86nkyA9iDGr": { + "balance": "5899.111441454", + "bytecode": [], + "datastore": [] + }, + "AU1stpgeN2J9CggxUkEC7P81fEvRKPmda7LgtPCPLPYjUHBYcpPK": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1suVqDLtD3U7JRBYe1ajHNSriivZJk1nsm7Xjxj42ihGBjWW1r": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1suwyiK4W3y5Z6786osTFKoGJQ5eGtKEFGJ6oRYaRazvUoagP9": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1sv25Jzq1pKJT5m7HSDqr96x37bsj386w5HMvjBrBqCvj1fg6a": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1sv5WNkbnqr72CgeJNj8t5tBxpu518uQeytXUot8EjTv9zq9Dd": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1svFhNAoo2Wp4PHickKayF22FuaQU6hiciQdr59i2zvpqC3MWs": { + "balance": "2288.819062711", + "bytecode": [], + "datastore": [] + }, + "AU1svX2mC9opvLjsJHz1DNuBYUCyGumzK8sUim2Tiy2fcuzN3s84": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1svgPt1oHFsc2Q65qTTyVF1zBRnBWJFPiyKFQbKdrFsdgnN1hD": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1svmQxkYHEU2SYbj9AXix6PyQ5eVQHL62J4kgsbzLGrf34ac1b": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1swheYfoVNL7oxj8WzLiUixhiJzNcprZnN6sq21gZb9Xuoroxk": { + "balance": "975.363673210", + "bytecode": [], + "datastore": [] + }, + "AU1swo8nsw3GBmEQobYmvdLf2Tt8Doh6ECx9GVAeY7EfUudBEXke": { + "balance": "2700.922728403", + "bytecode": [], + "datastore": [] + }, + "AU1sx7rKSQDXdHVpWCWSMw8TEHsS41HpuGHLtJM3byKvJSwSGKoD": { + "balance": "3630.417940723", + "bytecode": [], + "datastore": [] + }, + "AU1sxJHA1mKmmC5qnkMgpvaBzSvUXfCwgBfADE5GPnxuVHCFJkCC": { + "balance": "1438.562847381", + "bytecode": [], + "datastore": [] + }, + "AU1sxN7V7Fpr9thYcy8vnWZ8B9g6BXbSzGtKhQXVYULBPRc1NrB3": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1sxZ8FQyPb9wUkX6pzKtdrYV5Kt5fCBGaKoviKvQkXWZJ2FigH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1sxe1gpRRXmQHAVGNtvpebHemfAKXtsmykZQHkSyJWSDfXUaKb": { + "balance": "5589.740795699", + "bytecode": [], + "datastore": [] + }, + "AU1sxsY5iimpD9b8jqApchbsdAiZiEibW36etKLpVuyGbfx6EFPx": { + "balance": "2521.774274534", + "bytecode": [], + "datastore": [] + }, + "AU1sy2mcdki9miBQFbHProuAofKNdtEXYsD4Tx9dwHNRY47FahBN": { + "balance": "1971.022096756", + "bytecode": [], + "datastore": [] + }, + "AU1syFFSCNWE3Yo62PRAPyqQnMLMeBoiKVr5UJKn9rpxf6EdCLr8": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1syKhofXFjPS74hLjmbwyfNVn5mY6Zc1KNy453fByqzbSMvdva": { + "balance": "2084.293906023", + "bytecode": [], + "datastore": [] + }, + "AU1syV6ZCQB3isaEbVuDgqjWrWbkN6sLU2n5GdBXowYvcpagoJ61": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1syg5NakB8FwRaW98oEsTB1TYtN4b2yAqCJ4ToEdV7SFVKGCsp": { + "balance": "1123.259097909", + "bytecode": [], + "datastore": [] + }, + "AU1szPMqwaHc1Zqp4mmR1EJ6VkRpSBxCkui7Q1W9AzwnPPsQFjEh": { + "balance": "2521.615679461", + "bytecode": [], + "datastore": [] + }, + "AU1szj256BDUt9DHsbBR4LH2WVAv27265dqntaFtGtdP9UacGJaP": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1szk4otkU3tyQHaifA65GD1qx1pcu3TG9RevEW6yrEqWiFNmof": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1szmU6wsWyEyAL2VYbYZTt1WfLjQXcCUzcR3BdZyCSXJo8C3Xp": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1szmW9fQfcdAVUweku5vfSCjvqv5rHbzhQNKZYdEnMPGi3cEUc": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1t18jMvCEAxVyKdtzvzeTHntGrBJ3YcZhAcdejtvkkh43gmj5o": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1t1FhNK9WtHe6UysKw3oNVTpdSy4m8KhpRKnX1DSQdgHkVcVFy": { + "balance": "3359.111936133", + "bytecode": [], + "datastore": [] + }, + "AU1t1aWHbqPt1rJXfb4ZByfx7BzSMujrwCERQaRvcPqpv1QKzXNT": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1t1kGzP7Bs8cLxhiKF46C6QPrPGZ8A9Ri9sxqatdt84287wznA": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1t1xmTDkb93tEZaPQRERiJxJiLTqpSdMfBw7QyxcVn3EfzJUd4": { + "balance": "2656.196790322", + "bytecode": [], + "datastore": [] + }, + "AU1t28eC6JE2Lnm4dHAE9Sz7Ng1VhXaF9MHmMUMRLjwQH9Nr7Xmh": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1t2BPCHcmKERo7dZQVjcLnrK2PD58QQPckntJ13gEnGkiSCWD6": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1t2mPTd6NEZZn5h8eH7WcNiaTkoKqWkwiTyFzqsFCVUxbe4t9y": { + "balance": "841.148716098", + "bytecode": [], + "datastore": [] + }, + "AU1t3LzwMDryKqK2RmfxcYmz1xQqw4qvAide6pjNQWrh6iHQqc6C": { + "balance": "826.506590741", + "bytecode": [], + "datastore": [] + }, + "AU1t3ZCWLmUMokTnkLhsGkcQHEhyKjokNZ9y1KzZniweZssYoE6L": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1t3e8C1TcKDrcW97VZRomnHrBNM5qYS7RkL2EJ7Cp2LxbeTrwj": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1t3k9cRLi5yNPkmGMdFtrur6VsYC1FSzX8kkhWh6oHgdHCkYmM": { + "balance": "1592.029577038", + "bytecode": [], + "datastore": [] + }, + "AU1t3pMP1DUKH5Ri3oQWPuA4q5gNnBeq7kNUYkErTafUQztc4y5W": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1t44kvj7cjdV7BDhTeJQkVYPDksqxogkrMfT8wepu4ioGBg2Kj": { + "balance": "2465.386014587", + "bytecode": [], + "datastore": [] + }, + "AU1t51rnJvy2fkd9sbbDoFWuG8myuG21WitPdY7zyrjFvhkG24sw": { + "balance": "1801.474445384", + "bytecode": [], + "datastore": [] + }, + "AU1t51vSzTU9RtnWpdABj8tFMbssW2B75drjGXCCvtu1DWeHu1CR": { + "balance": "2432.086579011", + "bytecode": [], + "datastore": [] + }, + "AU1t5AUdpTd85abFAuQXUmajQQxHPpJnQFQMp55zZN9eTURzWDba": { + "balance": "1435.401812994", + "bytecode": [], + "datastore": [] + }, + "AU1t5DWygrvfZZ3XZn5PYziYX1kuhWNcGfEfcmdrGqfeeNx8gNbw": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1t5GFnJ6druHWhNNrrjJFafTDALS4y3fMgbzP1ZeKtTi1Yz3wU": { + "balance": "1793.461575734", + "bytecode": [], + "datastore": [] + }, + "AU1t5RgKUYZXKLFTCyW7cxSw17348xibBKrkL8SoGuPwjnR5iJUg": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1t67BX3uRcep1CjkCU4VETvASzq3QpCAQKeuSc2LpRMvBjMATX": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1t6ZR9cuZqHBprRfj3yTGFCY6QLw29XaNNd5L9aU7at1amYRXZ": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1t7NFv8v8JYYAa4qQ65cfekoD2yZLdjRXwa87UvGmmHrbWbdC9": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1t7iMk6RbNR9KbYxCcpKipdujA8fZjgtcVvWEnZWz7JbSvtpkB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1t7qX5aT4nos5aqcZueaW2s1ErWYU8jb8q7NpVEDZe3iDrYv5b": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1t8GLyxjDtzTqdQZHu77oKpAvkkAtAH7oRocFh1H2vY6KNd8W5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1t8Ufud8AiDVfj4obxr7wAtbJDDnMiX3Ju2mEpiqB8urE68YYN": { + "balance": "2050.275520603", + "bytecode": [], + "datastore": [] + }, + "AU1t8cZpCNM7ZEdUaPbq9jnYueQEPjLYyka5CyyKVKH617yDDGoQ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1t9ktgp5tsFkX1pdcBLzaBzULKqn2QjqX191ySDM1h1d7Sy8wa": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1t9mRWiJ9ivKr7GbPMYDYwLHU4RAzN1bLq1ui42vzZYDX45wBL": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1t9p6Qx6DrDcv7hhLyriTftKFZs51z4ZAXVzB1X3dYr38fkEbP": { + "balance": "1769.713929004", + "bytecode": [], + "datastore": [] + }, + "AU1t9uz1aQcrz8sN1x9RsKhGCfZeN3bmcxvw6sST91jTC1yW1rDR": { + "balance": "804.609166320", + "bytecode": [], + "datastore": [] + }, + "AU1tAMd4AxFHBcVEUStreZ48BZjZh7N54ZDXmAnAstouYQtYjA9S": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1tB2oSE7ZPn2HRRQ3qXaXU45i2Xb2nxuzrt2u9LWToReDR5cRR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1tBXcNeoRvfsemeACGNgrucBxyrF9jJ2ug7d99y6EK845yZ1QL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tBjNhu9LzKu743xwXb1EYK3fTDpTy4U9csJwAX9ZGpXea5qeS": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1tByAACi5xdmnbjMiFeUsMLcKMvmHgsH5q7JcjtMYkmx1inr6W": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tCUh1K7XHAp9AZ5EiQwA8fF3tzTrxkkUuZcQ7itNgEud8xMWR": { + "balance": "1408.969658225", + "bytecode": [], + "datastore": [] + }, + "AU1tCWfvRCRrthfqx1UFPoXibiAbTh3FrLSciJqZnAwAp3AYp5W4": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1tCbn75cQju83JrZ5G5MSsqiCPT2wYRTwdmnu6eFvNhCUkHQsa": { + "balance": "197.194719472", + "bytecode": [], + "datastore": [] + }, + "AU1tCjhLz7bGS7Re3SYN2VHBAUAXYpKYaZTm4PsMNC7ZhfnXsrTn": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1tCrDA27nxaYRApULZpgy2dyT6E3JyvKbBAoytT2KiTksnCdW4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tD8ZQtoZ7zLPkNKmNdmtjwYVh2Ee8KmcqhTgWuupD85wQ7EGF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tDhBt33saEDheq7Cyq8Ws6zLdB5DZBGMAmL7X9UeJwpHk7eCv": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1tDhGn322qs2kq7XC5zh1rJMqA3cBjUELuVKRAiiipi9PX6gee": { + "balance": "2578.988340035", + "bytecode": [], + "datastore": [] + }, + "AU1tERZtaQYW6ur7mtjPmwr5Kgn5xsqqN1hcV279xqTk2kiEC279": { + "balance": "2695.425131093", + "bytecode": [], + "datastore": [] + }, + "AU1tEfpQ1YgrnpWcbN5TXuzd4PaZKgN1HbxpB44uzys5LygiGvJC": { + "balance": "1762.203961277", + "bytecode": [], + "datastore": [] + }, + "AU1tFC8hFoZ5pqDN4evkeHoxtMGJzLTWce1NEbdF2895Q66T35GR": { + "balance": "4899.001297414", + "bytecode": [], + "datastore": [] + }, + "AU1tFgAYZsQaTBk8nMDfGbi2Zwtdnpjcr9Vb3JzuppQmK2EMy3LP": { + "balance": "1753.362498068", + "bytecode": [], + "datastore": [] + }, + "AU1tFxagUWnu3robNBy788YuLb1VtHdg9hxjQvLeSNrakGJMQXfE": { + "balance": "1461.218019543", + "bytecode": [], + "datastore": [] + }, + "AU1tGBidLDtY7fLUtfc7C24mKZaoEyZL6xaN8HTvzYDnCyNU5hH": { + "balance": "598.221186332", + "bytecode": [], + "datastore": [] + }, + "AU1tGFkXaSNtxGCUpdMKTgRNUVS42uMrz78h9BKBZ8HtmJ7Urcfn": { + "balance": "4041.158259279", + "bytecode": [], + "datastore": [] + }, + "AU1tGRSZKoAUovfJKYwHoUB3Qvw82SbKrVpMHNpbBgKBHU8kARr3": { + "balance": "6486.077340740", + "bytecode": [], + "datastore": [] + }, + "AU1tGgACgVfrAHJsE2ob5XgVCYfB626opyq3kf5PK5VhQCpGg7wC": { + "balance": "3479.017759716", + "bytecode": [], + "datastore": [] + }, + "AU1tHEb27AoCHGKmetRHYc5ewghed5fmVmsdmkNMmJk5BasREoqT": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tHQjcVkzrtk4kyJCsgStzRPbNaU8ms66X6CDMSR2hWsFu1W7W": { + "balance": "2518.419688396", + "bytecode": [], + "datastore": [] + }, + "AU1tHQqNj8jF8hiPoi6Fq9jrJj9ivW84mwMbEVjzJD2VKpUWqbCz": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1tHoErt9Gknaj2odWPXVZ8NDc1gTzgFDubftUUYMKAucn19eTZ": { + "balance": "4431.305799042", + "bytecode": [], + "datastore": [] + }, + "AU1tJEo5imqjt8jz7BpWYJjiyY39dGzyRT1P967zkA31n6nBKG2k": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1tJtMdBEtGK5vi9rxfuzXyzmq3pGY57cB64nnH2zXmZSssopiM": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1tK6e5iQnVs7Rs6WX2iZt5xYY5S69dxQvLt4MzbQ4HpEmLDTcZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tKXpmjFCgELLUowBhMoyvWbsW3WxkRvqLuaEchTMfY2cNCsDE": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1tKcyBfmkUGKdm9Z5CUTBASUZY3674U1DxjUyo51VJhJJYsXwz": { + "balance": "84.746871179", + "bytecode": [], + "datastore": [] + }, + "AU1tKiTCnjxye8SaJUJeid3MRvkJZRhTLEBFYZZhL5cahuF7t72L": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1tLYFR36ELHwC9v6WE6Z3Zh9RbZh2PWXCcducCwiMKcstrc3x3": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1tMJjMVEyZAGaBexHznL7hzKBmgU8YU5pwft2njodJeG7DgJLr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tMTYQmfJgUAikahPAteYZ3wYaD6nKwFePcKUMYSkFNcx3Qaer": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tN2GSebTwbjZSQrXRTEB9vQ5K9FYeM5kN1EonfMvPp7MyNzx2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tP2uefu7sd39f1igknJDruhZeKRzv71EY8VpBfagvEmBmHDgj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tPJjYFxEXApqrdfvNSAasnDeNaeBdQTtp2r8UWMoVBFdRcYcd": { + "balance": "1133.431324984", + "bytecode": [], + "datastore": [] + }, + "AU1tPUof894aFdn5eNim8sF5QNLDZFCcoqirzRsYnaBUskHeDL9b": { + "balance": "5834.665562183", + "bytecode": [], + "datastore": [] + }, + "AU1tPiTdRrJ8i1KezNogmjhaSACiJix4fXYTbjtpCYRUM3tJDPgJ": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1tPtjjBeise2X9tfnYSTnoPm8FvY7tw3mCNz8tG17Ldu79ATzi": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1tPzJCcsT2hBMdyLz54crDpgTejmu31Yzk4K1KpFaePMHMdBuT": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tQNnUMoukoPh2cZXNkcje2kVPQvxCXmwfE912oTx2h3VgDRm7": { + "balance": "6632.836731070", + "bytecode": [], + "datastore": [] + }, + "AU1tQh2aFnqSia9zZu9ZMKjoy8E3myWGhZ5Cp1hbDrbyU3jFDtvr": { + "balance": "1100.989367654", + "bytecode": [], + "datastore": [] + }, + "AU1tRCM7CGoD4HYhKT9eH645ZaG5xFq7QAVP6eSR55ALL2ipjoiM": { + "balance": "5153.501000548", + "bytecode": [], + "datastore": [] + }, + "AU1tRDh2oFKuTk8fVWNrSLoNJLBhWQPBo8eyKJ5R3ZpGqVUCnn4F": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1tRNuTRutLmMsZsrx4UhrFsLRDwbDf66BEBSSf8hvjLAdZHmP": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tRrFCUHA53c4o7ZxuTL1uzCszCmupP1CJzqrjnvFf1HxjxzHb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1tS1anbHyj7e6iMaHfiDhyXEY1hF9E3LZE9AC55ALBECANDnQ9": { + "balance": "5219.261263247", + "bytecode": [], + "datastore": [] + }, + "AU1tSBdzi86RMLN2VVBxvHobMik469AWKbgrTrKo17HvGkbTiGU1": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1tSc9wt6UGzpkVUAfaT55KvZTJSJq1EH2CXgaz3cawtM9Lov4D": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tSj1GCGbie9aqfq8AZqCRraMCp3td7u4xnSNjE7oiXbUYbhyx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1tSnu3wSnY2EWYPYrUC6KwcbuwyRpmykRy3BLC1ucM42d3cmqJ": { + "balance": "2729.166006267", + "bytecode": [], + "datastore": [] + }, + "AU1tSvjPLfopopCGAnuDHY4XogSLriKzHPNJPd2oqF4Lbo4cUhfd": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1tT3cZsvJb1HQL6BbGKJbgzTHXnMPWvgUx3r8MJmxae9TpT2nm": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1tTW4ML2hqLohqFyDN4R4DJ9GRFcMm17HeJS6TnzSJVi63Qwmy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tUJDPu7n12pToYW5HtQYP7gsW2ZwYTLfDcTzbXcdY5GK8FGQQ": { + "balance": "150.579080896", + "bytecode": [], + "datastore": [] + }, + "AU1tUcB2J7htH5bWkQ7yppfocTdzbWV4vcvvSZJrPsA4HYHrHqKM": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tUdEGXaZj8Wow5oc54PuM74dew1KE9tYfHTZiW2Sk6YXPvjo": { + "balance": "750.142078377", + "bytecode": [], + "datastore": [] + }, + "AU1tV1EUEWUWtA5Wwr4QCjz2eVM5SBP5Mgr5Sc5JPg97qz5gfi78": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1tV5uY4o2LcJSZYhZzQgUByz83bDFaik9sYZdvcBMW4wMaKRBF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tVL6bKtfaYEqXH19CBNaTWdru1qnsvNYBa4GDNezBqwpvqrWJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tVVAtuuKcVA8VVxXeHApd6sjiBbYihmgHr3me1zE681dWQxrL": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1tW26bDYt841TcDta7VPiwfHtpyBG1c8A3SkFa4jsQb4As7acx": { + "balance": "3380.924632165", + "bytecode": [], + "datastore": [] + }, + "AU1tW3nBd3ef1DXZ318v17J7PNaqkAkg8tjcH8CcaRbiwPQumoaF": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1tWGr4vmhxqBXdji6A9kBQ2S3h6dz4WBcj6XWuFyPGK9dKfEPz": { + "balance": "2412.664313626", + "bytecode": [], + "datastore": [] + }, + "AU1tWW4dRhzxbdT6SAdCUF9Bdq2rZcq7SARfMB3rLoqsrZm2i37J": { + "balance": "970.210269731", + "bytecode": [], + "datastore": [] + }, + "AU1tWbcDcrUC7HKWwygPDT2JGwi1JYdXy6xUCj624KbBoytgt6Vk": { + "balance": "562.607834231", + "bytecode": [], + "datastore": [] + }, + "AU1tXhv6AfnVNa9cKwt1b7bnVkrD1NU2axD3zcxAdTXUnAbNsFtc": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1tXkt5D2e3aKRc2uUKQVB4eemUXsu2Xuix2Tenig4x9TH5VLki": { + "balance": "1044.223690051", + "bytecode": [], + "datastore": [] + }, + "AU1tYAkZAZA8RyZCPHBpMuYMDVzAB8VDLKktKqX8GjzgBhoLn8Mh": { + "balance": "1611.755671885", + "bytecode": [], + "datastore": [] + }, + "AU1tYLfBjyrbAzU8Wyg13KhCHaZERATsB114ioLaei8ZAMnPxxQr": { + "balance": "100.214829259", + "bytecode": [], + "datastore": [] + }, + "AU1tYk15ajWR6aEEVkL5i59GpsfFyTzRysf5W7FFpnVYAUMuyVgX": { + "balance": "4101.306278021", + "bytecode": [], + "datastore": [] + }, + "AU1tZXMi8CSRqhzqV76e4ue6nTcKMtJB1634GG3EgW9XKAqsoBSn": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1tZd5p2QY56YUNFnqPBKtmKhvWYgD6Akv2RW9ujXKA4KCY5RMv": { + "balance": "2386.646479400", + "bytecode": [], + "datastore": [] + }, + "AU1tZi1BTwfWqGNdanhBuXK8yeZLQJPtdy4FaL6x77U5iRnEMc2E": { + "balance": "2676.381807033", + "bytecode": [], + "datastore": [] + }, + "AU1tZjWPDid9D5QQojbD8BiXK8mLgH6itcCrc6aj5AuJVuY4dW8e": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tZwUuWNkxCQHRiHPLXohrXvQQ9k21HoduA9n4biLnSzCoX51U": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1tbJk2eZWi4CULYfasiwj76VmH52SHUQ1bnWPG56WtSo15aDxv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1tc8R3hgzGehQcUvuJDowWVU4RWwgmDsbM6wzHanPXKSWDUZ6f": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tdarwoHUQaUMa8K1BDiqAocyyJt6aFEUaHwsBNCuwHbQmqhD3": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1tdePcHuphJNKt9iGsvhXiXMK4nTXAp1trokJgRgjr17z9M5AH": { + "balance": "115.511551155", + "bytecode": [], + "datastore": [] + }, + "AU1tdf8kBf3qZC1FjVZC3ZaLCihwqt7NjDSwho61dyUCXys6TRcy": { + "balance": "804.225812286", + "bytecode": [], + "datastore": [] + }, + "AU1teMsB9bqTUa3NCqtEer5AQ5E6RK1xZfVyMMRBuoJqfgu3VeQp": { + "balance": "198.844884488", + "bytecode": [], + "datastore": [] + }, + "AU1teTp1sVHYNGrFrzUg4RdxomQ2ZENGxFq9pQD1f19eBTWUqhBf": { + "balance": "2754.034787368", + "bytecode": [], + "datastore": [] + }, + "AU1tf1P5X9WgmFuBoLDujASPZwTAhWcy2A6vKpYLGaXvkDtCHJUQ": { + "balance": "879.676331926", + "bytecode": [], + "datastore": [] + }, + "AU1tfFzZNvdp5XzHBFty867CkvwZPiJop52YHtzrGWWsnTGEoqYY": { + "balance": "170.075309614", + "bytecode": [], + "datastore": [] + }, + "AU1tfGqDgiAVLD7Z6afbAZNSbrsB6pChFdLDtd6yVSzQHFrem3Qo": { + "balance": "360000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tfU1N9v5QqnNc2pUkMH6Riirzxx3LU9UnQXByx736iMgtJ8gz": { + "balance": "3909.785572453", + "bytecode": [], + "datastore": [] + }, + "AU1tfaU446sk9R2Vw1ujWh2dhMS4YGMTQ6VZG2j5R2TpouAikkTS": { + "balance": "41.810256868", + "bytecode": [], + "datastore": [] + }, + "AU1tgDaaHG8MwY2RdYRSWAgACrVZ52RFMrJ5hfPSWnjXknk58kuq": { + "balance": "536.143205469", + "bytecode": [], + "datastore": [] + }, + "AU1tgKVmBo8baHehdtDxhmjWQLHhasb53oy6m4ZPYN5hPywXkEgb": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1tgMym93AHH4MAJNcaP9QKoDdtoSAWX7iSNK78wCg9nBjbovZg": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1tgXzGVJewp1Rhd91F5UfufmXC5ZLSF3tSbyswpxC3FtifhpP1": { + "balance": "881.051094471", + "bytecode": [], + "datastore": [] + }, + "AU1tgxYkNgwpLSu4qi47uZLXgoAYxJD7h2CykErGeeczaqtmPZXS": { + "balance": "2226.672942974", + "bytecode": [], + "datastore": [] + }, + "AU1tha3jkjYwjhw2WnJQVaexEKQx7PegPWnM3uza5yVpyr8NoGdb": { + "balance": "132.363095399", + "bytecode": [], + "datastore": [] + }, + "AU1thdEMgBum1hjcHPGQfyPjnUG6NcmWQdDJ9qiV5K2uFSVgXkQX": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1thfosJBusgaGJLP4rj7YskAi6ZJzW9NKaPvzaT45FpjkEKBAD": { + "balance": "1427.089432007", + "bytecode": [], + "datastore": [] + }, + "AU1tiD7r11KAMNVs4DapWJ67kXQi3uSb76e8PSg8ZNrtPPnM6gfe": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1tiW85nupBFzfEfSfhhu35fB6dZA4fmYJVg5e5aFAHU2UjRqmE": { + "balance": "1167.196847743", + "bytecode": [], + "datastore": [] + }, + "AU1tj6z6pvfwDsTwgTHQjWnVWuK5FzVAUNf8ku7YnBynEJJRQKMv": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1tjGVZBjz93GttTaHzXTxFoafNKttuH7oUWPEDTRTxXWe7E3fQ": { + "balance": "86.633663366", + "bytecode": [], + "datastore": [] + }, + "AU1tjPCAokghRusxHsLbXaH5tf2cXjyfUCMf4oxFp4KWRp71jpuN": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tjb3d4Hu4sW5DK6rj8v9LcwYiqQq8fk36mUDM8VWB9cwj754w": { + "balance": "82.817057328", + "bytecode": [], + "datastore": [] + }, + "AU1tk3WEkTosK5uB8JKceHEKCZNLj86ZxWqXd1pwRct6zsLP17sD": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1tkJVLXpfzeAuQPTvQhFyYZCieug8Txwqbmk3bry7ESU7bf7wh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tkSFbgMs2xnvHG7iwTsK9hRJnabd2tzB48LxV1P4xdqjw5AUs": { + "balance": "3385.915741666", + "bytecode": [], + "datastore": [] + }, + "AU1tm6p36p7qiAmQvpXiGWP7oLd57otpTgZMtEqwZPN5J6G2dMcJ": { + "balance": "83.169878652", + "bytecode": [], + "datastore": [] + }, + "AU1tmRZ6hAdZ7PDo5iHrZmP6a9z3qXFUkNmPYpWpjninrGVHBbpo": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1tmXAk3Uvq86gd5rABfYoqYd6u7XT7CfVBoKYtEisdbNUvMDsy": { + "balance": "999.244701116", + "bytecode": [], + "datastore": [] + }, + "AU1tmaxHg5xxQ4LQtPqjgQoMs7nWWZn1PyEJAuJ59iBfHtQfcHLG": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tmbMuLffZrYj3mWXZt8kQ4PJsbYVdyhLoJJbyp1EKpXziXG1S": { + "balance": "1722.002123099", + "bytecode": [], + "datastore": [] + }, + "AU1tmvrRP5wxgic7be4f4ffjfKdnz911CE5X5ym4q5XXqBi5rWaX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tn8ZNKE5KRvbE1gvSnJ3x4dbXa4VFMk4Wa1ebGjSBXQ4xSQsD": { + "balance": "177.392739274", + "bytecode": [], + "datastore": [] + }, + "AU1tnRA7H6BH5rHQZMdXK9HdYgDPxgs1medQxQYLH7UwtybTcGju": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tnsTXDuT8bwtG1nA5FETv1ASKWRj6jnu87cg9VQpLzqwCWD88": { + "balance": "617.172816022", + "bytecode": [], + "datastore": [] + }, + "AU1topkVkJBmYABe3NhRwAQbErcjhHc2uSXGEhUqTn3y1Vo2JEt": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1tp5FGUUxZoDTeCY7r7Vre4ePVtJrqXEfReAyLKwGgJ9W1BGCD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1tpBC7MivBNAUeCbztKmv5NVUg4FZmH294Rz3StaSbFWZwhWEu": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tpgu7m34b8dheLYjp6kYyFY9XbsZG8KGFuKXPi9MUGKLRn5FE": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1tpqRn8oA3PH28rMLCjEEMaWdbuREnSuEooqvxXuwJ2b1YtcYm": { + "balance": "1821.765582024", + "bytecode": [], + "datastore": [] + }, + "AU1tpusxrq2rndYobvGo2ywifS44gAHDq7mqHJEqYLJxZQX73T7Y": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1tqN19nzmDZrdAdNgGJg8GSwJEyoGWjoa3wozJSoyLunvU1z14": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1tqu5v5Q5VV3cNTBqMp9gFxAdXVFTRcbNeXgRuNofeCT3TiEKE": { + "balance": "546.308467084", + "bytecode": [], + "datastore": [] + }, + "AU1tr1fS6CtojnqcWPHpcmKXsey1G6SABSKyVQgZv45qXrVC4gi1": { + "balance": "79.247285464", + "bytecode": [], + "datastore": [] + }, + "AU1trHNVWLKAUkZU11uAgzpet9YxuBrV9Uhu6JLTc2EULnSbBy2Q": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1trQQ7RjnyBBVe1yyU4MLmwQv743QoSDbGjfgq5bN67UhCJ3hg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1trYNkubwAswv65mjyPRuhmQ9sGwNnXtLpZJNoQEaLJ4DMh6ER": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1truJmf6BS2uxLsMyjAVFAyi9as4LLWGf5KSrzFkHgzy1CYFpF": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1tryMoYiodLTbyWC4TwrEg8RDD2WduYK8eA5xfsnXgE9ySjyeT": { + "balance": "2021.887202258", + "bytecode": [], + "datastore": [] + }, + "AU1ts67aSvxavhGt7p7TXYKsmkeAKqRDSWfTrFXJxNqFrQBPvBpM": { + "balance": "2197.448906545", + "bytecode": [], + "datastore": [] + }, + "AU1tsAVqUh2B5HDjdEz2UkDYr29rRKVwtvtGdLeJtkBXNnbDR2De": { + "balance": "1134.587766057", + "bytecode": [], + "datastore": [] + }, + "AU1tsL9YEq1RQfWFgkNBQMsC734WtwrLz9HvGhfCa4a1u8gfL1wT": { + "balance": "1667.795177137", + "bytecode": [], + "datastore": [] + }, + "AU1tsZUs8BsfRmkJyhykY9th3Jmjay2RChwScwApmmYchKFqD4HG": { + "balance": "30.535370281", + "bytecode": [], + "datastore": [] + }, + "AU1tsrvZnoCsK2H7koCCBAD4PkL1dzKVBPF3Wngur8vd6mXjZpAE": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tsxybSWN5GQx6t99h943uueR1zdtG9r1Vhf3RioTXHXoQMAGD": { + "balance": "676.137031729", + "bytecode": [], + "datastore": [] + }, + "AU1tt88LvMNEvT31Jg9Rsknc9H4Zsd8H9ckcJUbhyneTGmt5QfV4": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1ttEA5un5KJsuvrbmvQoB7gBiXivEABgb6esxxjn4g5VC4WuKf": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU1ttNkcTAeGT6iPVWHjxVe7Lz9y3JY7oC44HMDGuPXww1yfDbM1": { + "balance": "1467.453725558", + "bytecode": [], + "datastore": [] + }, + "AU1ttPiA2MwoLtEx8qkry1GADyURcKvvt1FF5u4PCLWCcDz51Cbg": { + "balance": "1137.255022463", + "bytecode": [], + "datastore": [] + }, + "AU1ttRFzEg2HB4DrNFHPMaNMuifoSSty8uPM3h1nvpbazJ2JhMxJ": { + "balance": "661.804863021", + "bytecode": [], + "datastore": [] + }, + "AU1ttXVaySzu743M1YGSW5mcyEH6SS37Di6RN3gAyXaptiLvsqPh": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1ttc3PNgkcCzgeRQRGXHhYWGRVyNH6RdKG67wFahq1XWkv1iPY": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1ttj3XJav2QL4GKzVby8r7zcMLSYDc8JXGpBH3MWcfu5KHRFWn": { + "balance": "1564.054041696", + "bytecode": [], + "datastore": [] + }, + "AU1tu4ifaVGa7zex8pZLLyjG3NmG5zpZvzKj7KMegCnWcTWLHzNn": { + "balance": "3495.141760496", + "bytecode": [], + "datastore": [] + }, + "AU1tuPqWEMrWYYQHPkbqzMUyQMqz9pJVZyXkkCPcP1Gu11Z5LKqV": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1tuogEkz7t7ttgdth54SmBVN2LNvocNmmEYjQcdZxEWeWNjn9n": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tv31YMVksVgRwZDWNXbuYyWPUH4QWUJ1zoCvbWh67YZ9NMLd3": { + "balance": "1316.860124990", + "bytecode": [], + "datastore": [] + }, + "AU1tvXxfu52TJsC84Bfk7UeNPMBSErtiEWab2NR9z8dATEbW3GDX": { + "balance": "916.041344612", + "bytecode": [], + "datastore": [] + }, + "AU1tvb1aE4qwr257wDURzqofEXj1fxN2uK1n58xdiELyzhVJmTJZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1tvwaspbgzTybPd71VgLJ9bdS6ccBZ5XchwzK5bkR8JmLiioVq": { + "balance": "1252.216357202", + "bytecode": [], + "datastore": [] + }, + "AU1tvym2HXnGCF18g8rWJEgRwi52uR31T5vBkZgybEXpHx71YByZ": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1twYjEsTpStLj96pZsKdGFv277qZRcrNp6QMGsN8kqz6YKbQUW": { + "balance": "4504.145062922", + "bytecode": [], + "datastore": [] + }, + "AU1twoRTWJAag4ycSG3s4ErQZmgKUk5nKe6nX4ubcpi5ASbtUwrg": { + "balance": "637.165394260", + "bytecode": [], + "datastore": [] + }, + "AU1twvbws5MLHVhR83ANWKMBerMKgeuq4snYzTyVra5ZSwU9r9Tf": { + "balance": "1885.918145836", + "bytecode": [], + "datastore": [] + }, + "AU1twyuw9qJpUVYSrmnz9Wp2BMJEpxrLohHYkibXCmLyoAtZjjE2": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1txndATVkcuBVBc6UQburqxaBHaVFFXRPCx11FdwpHLXRj9WGN": { + "balance": "751.306715343", + "bytecode": [], + "datastore": [] + }, + "AU1tyY2NwX9m921DZM2QbE3ncJoX1YpVyjKZ86CnsPpveizjB9x7": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tzYCVm7vfYmZi8xLAd5XKB6iV9RL71Z2vW8apAFyiXUES5JpW": { + "balance": "1337.592897332", + "bytecode": [], + "datastore": [] + }, + "AU1tzmMQswuHWK7Xi4LB9k4YpS7ij8uiNaJjCKBMZWkHG9ynPUiw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1tzqQRhvRSks5ZzFc1KXziYxvu55KAAyj2Gh8FgJukoHjbHMmE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1tzv5UUPZp7ogr9te4Zx9Qye8JrQYoaUsRMJRRhrZkYpabdN2H": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1tzvjkt5Mx6NSLtER21noFn6upvetAVQAo8bY8bVfJW7m8PjAC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1u1KuMKv1tDzAgAkZ3iyGLA6vBL6Zb5FaUUMPWqf4HZFdEyAG6": { + "balance": "119.701178609", + "bytecode": [], + "datastore": [] + }, + "AU1u1PmnQszz8rahiDYrBX35DtMa6i6kBySJ9AB5kMcQc3S4c9wg": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1u1tHkfGyGUo8Wi7C2zaQ9UkAeWvejWZL5DLNeyuuLywoJRXoo": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1u1w5wTnG8VxEwzPuLJppKWhPuj5jPGKu1LWVDysjcyHujusAh": { + "balance": "1490.878145500", + "bytecode": [], + "datastore": [] + }, + "AU1u1xjCkWSwKzNLqfzA3sKK3A3eg8mzuFJJg4LgGVC9ZFRZgSe3": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1u3HV6ZE6NBzXQdbg1jLEHJJHjV73XWs51F9ugzq93tTzvwbLJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u3coEvTqM7PSyho1KpNgKDujxHYSqq1BaacecGFvBp1rtcUaC": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1u3kNTbPBHFfC7pdw9aPPCdNwRYq9p2vGTQ7ks6rc59nmNGM4i": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u53E4kfkVgBsQUPGkP5E1HGmhTFzuXG2kHXqkn7w9L3Zumwti": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1u5DuHoMLKJM72D2jWaAa7MRPD4vNv3rFYLg4fKvivzymx6gf6": { + "balance": "2229.302563582", + "bytecode": [], + "datastore": [] + }, + "AU1u5nxaVix8MY8TdRgLLW7z9XfBtQPL7jELcg4HknZpUG6tWpts": { + "balance": "138.227996861", + "bytecode": [], + "datastore": [] + }, + "AU1u62YpXqm7bej852Pe1NDusYwtVvm5vjoTed62zkHAmN7kgQj6": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1u6CdsayqksqtyGDQHqzZ6ssjQ8t57fTVWKYSWF198BDLf5vsA": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1u6EwAvX2GWi2BAbKv6LCULhqqgGPLGyqFSSQDciEATJQsgjTg": { + "balance": "1767.956689544", + "bytecode": [], + "datastore": [] + }, + "AU1u6HEVkeTsynsBjPm7aM1Awytvtxq9GncPa1azBwKjk1LzpmVR": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1u6Tyfk5AAgiSsNgK2NDYtuJDTxR17ydpr4MA4GnDvaVhK53p6": { + "balance": "1523.251511262", + "bytecode": [], + "datastore": [] + }, + "AU1u6e9HSSMmKXyiN8xmhEDJcmtVfriy1tFqDGevnZvQCV1zf7k1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u72EBHwX2u6WpozGTPQMZZSGxuRgnNmx6PwwEmjFnBaK15goj": { + "balance": "1491.017282156", + "bytecode": [], + "datastore": [] + }, + "AU1u7BYKMtENfYk1jAKgsLmf9JYP93C1HxKTSC4Ra6dUtGvcngAK": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1u7UktdUshyXH5rgBfAdZ5ajvMDJ3G26GGCPgwF7jWb6BGE1eL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u7X3tfdgk8mPxd9XsoP7WeSoLhdyYSf3ZeycDBzxbHhL7eTxN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1u7sQYJX4Z29Hn9CLPbcjtx4ynBsMJH5CNa2Sv41J2VXKMenFG": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1u7wXL3TSzx3kveymmxNmuoEGd8HTnTKgpnBT4TXpdJL2f6R1g": { + "balance": "56.296247435", + "bytecode": [], + "datastore": [] + }, + "AU1u8BtNsLdRJaDeEzbYUaECBJc2w2QQBARJC199gofGprzgHWrm": { + "balance": "1535.095539251", + "bytecode": [], + "datastore": [] + }, + "AU1u8PbmtvcTXbJEJMHy6EAnpQMRAn1Dg21AorHRAb9cZEYS6Xpn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u8RzyAKMJP3pLTQJrTmZAmjLYCk86Z6WhDF8ntNfRMcBJUvi6": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1u8gYLboFxhMt2mS87pmsAHh77tXtHgstaj1q2bP3f9ZH4HVYQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1u8hfiu7SBwEqKTbGhUAi1tLd1vFuFKL12MBm2HAph5vYzhpX3": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1u8kvHTD8FKyE6tKVz2qWUHxf58ptHaYP4ULLDMSt3Gtg5tAjc": { + "balance": "1578.660327399", + "bytecode": [], + "datastore": [] + }, + "AU1u8yWVNHE4XBxnKDwHqL8ehg43HkKLXWVqXKBkYMqPpGkQHUDM": { + "balance": "2962.922182492", + "bytecode": [], + "datastore": [] + }, + "AU1u91QjJypZySb4zs2iYf8sMUgFYbsQ8vyct5nvLiDNZjx5RHjx": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1u9GMZzZjj5Pi3Yuc1SLzoeB5Yu8fgnvLuVkJXJEfLZ2XcvG67": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1u9biNhJVbuXMCnbKEUxbHRCNhFokSPATNmarVuAfLiQa5UJdN": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1u9iaATNHrfctAwHTTQuxr1yfu5q1Ym7BdHk4ajAVeB9a5ELwy": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1uA7fSqoKdaUSssh6EgoN56hKQcnsV5ySjwcLqCLVNptmx2dxt": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1uA8MBgSKbvZjd8i9CtFp5WJnTqRfuZpb7DEoNxuuA3RiqZiRs": { + "balance": "1395.008019766", + "bytecode": [], + "datastore": [] + }, + "AU1uAoVv7MAb8xT78jTnuKVB2k7Z5CJXasFw6HJNHsMzmFBUbzSd": { + "balance": "4099.939358383", + "bytecode": [], + "datastore": [] + }, + "AU1uAzqGod4RsiGkX1J7zqiJGbbrWVNfeRwTgCYxZD8JM9mjrzNk": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1uBWo4fczMEFcXzAR9sfKXuSyBjzZsSg9AmPcaynrGxKm7h7qc": { + "balance": "2146.582030348", + "bytecode": [], + "datastore": [] + }, + "AU1uBcP8ZPF6Huee8w7PpsXt89wrCBkC5usHomeXhdXWnuwHhKdw": { + "balance": "2388.052577090", + "bytecode": [], + "datastore": [] + }, + "AU1uBe6W4n2yc3v9BTMe8jY1iE7pV3d6i4KJ9rjVCDns3buoZCPy": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1uBtvAmEYcbUoertwmVf7mwgka4cxcaS827d9THMSUeJGaKus1": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1uCC6omCJbxgu17NTwbQ5mNFEeUbqa44SgSK6KtqMTQYWckM2B": { + "balance": "713.342738910", + "bytecode": [], + "datastore": [] + }, + "AU1uCTpeXVXDYkspXjst1GAQgpuxAT9WuqGiuRCMFarhgaMCr4iF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1uCVUaMPMfU2n45aSZp7wc28Kt51KVyHF3BRi7CcZS6agyfcdR": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1uCeW9pqwpNWhLQXfXxcfGeBnMANXuNrNinyfxJFw5yM96ppKd": { + "balance": "50.263964083", + "bytecode": [], + "datastore": [] + }, + "AU1uDg7oQD1UaVGGhjRRLnV1fWqGeh2f74z3S5NbpLYTE2dH3DLA": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1uDwqA7XafGSdduNrjkzVD68sp8gqVWsFLYPho5f1ynNnAPtKv": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1uEQ42ydraixKugaAx4fJjzbZk6Y47BeT3T5NDZDAU8wkuoGH5": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1uEm5RdYxqAQd3yQPgg5gUwiHAR8S3p8uh1bYL6qEfxV9WrdLK": { + "balance": "2802.278406010", + "bytecode": [], + "datastore": [] + }, + "AU1uF7wkJn85BF27YmESazJV4KoVmY8afky74o83TTCj8Hf4MHX4": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1uFEciZiuRbgoKgWmvSnUcFFPqqMdv21cts75Ja6Q6CFJzL7vM": { + "balance": "957.764166252", + "bytecode": [], + "datastore": [] + }, + "AU1uFcRBMjGkFAtCKX3onvLxCxaKdk4eTdGEDTPvPNzqiVMVhPK4": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1uFdbeq27iEprAyMuQ7HKrvx9y5eVPD6sugqikyByqi8YBVchf": { + "balance": "1198.417252405", + "bytecode": [], + "datastore": [] + }, + "AU1uGPQ18QQgTPSPVFgwVantg8nktNs745Pwh8vowKBt6378yjYF": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uHAqBL9yV1538huLvA8mUqABWcxybmSWT9gWBrjNqCnCK19gq": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1uHNtmTU9TDvDQ6yyy51MzYi7yGi8AxhpSPJ2Kgrxxgc8J4MrW": { + "balance": "902.526535824", + "bytecode": [], + "datastore": [] + }, + "AU1uHVJWG2DS472evvYUYxu2EF1SQDAoLczsXRpr3g6VX4qJ1ysP": { + "balance": "1116.956916700", + "bytecode": [], + "datastore": [] + }, + "AU1uHnu6c7SMVrxfCf9Qe73kxRu4h9S2ZsHUtyypTj7CNFb8YYgE": { + "balance": "799.635424818", + "bytecode": [], + "datastore": [] + }, + "AU1uJS9nZQq7WQXM5ZtM9nAh886aKPgkFv4L9Ugkcryzb9H8U7d1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1uJcZreEWJrcg6dbz9VkHxGPu7evih8k7bYVwPbwkwDBUgvesE": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1uKJ9yRw78DJB4EFPubVzm7iM8doKawSPbHK8jYnFNxxQ8TaCv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1uL5TPiE2Jzf7125KGu7aCFFZMTqNsnrhJhQSzJ2kPBa2PHKMd": { + "balance": "3905.319620169", + "bytecode": [], + "datastore": [] + }, + "AU1uLW9my5yt1K2eMZzUqDkcjbqA8CrxXpwE5recT1bWVDDsLYqj": { + "balance": "264.287859056", + "bytecode": [], + "datastore": [] + }, + "AU1uLi4NT21xQWhGwYgaEJRvD3NTmd2tj9SAgfWN9rmpEttkGngG": { + "balance": "1038.809256850", + "bytecode": [], + "datastore": [] + }, + "AU1uM64ycBoA5Bcg2i2A1g8fyZcE7EggtHJUnQ2Bd6TBVgyTHqhG": { + "balance": "1056.122978816", + "bytecode": [], + "datastore": [] + }, + "AU1uNLqiXxqT1FqcXGvXSNj1eAgpgq7Wcv5zVZb574Yrr6ChAmJ2": { + "balance": "1642.036676404", + "bytecode": [], + "datastore": [] + }, + "AU1uNP6e3BsuvQfQQtz9Hyv9CoM2icJw376MhkqBUDQB1zbxYefy": { + "balance": "170.792079208", + "bytecode": [], + "datastore": [] + }, + "AU1uNqsiaQpVuRkuwRgXqak17Je4dWKNYXUXnVvhowT7H1LscZET": { + "balance": "3276.222804360", + "bytecode": [], + "datastore": [] + }, + "AU1uP19eaZa7pANXxCM2KsLfAeGNeBsCF1EUx2HKpVW4L1K57HjZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1uQMZRYnMp5hz7pvhxCiTj8KFGtY8ti4ccRjFwFgWc7o7BK1eQ": { + "balance": "25.327912782", + "bytecode": [], + "datastore": [] + }, + "AU1uQU6UYsgacvbJEdDoynYnHDuxBcTEgpHtbb789DDJkyt8Lgyz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uQXrKZs8utCxsYeeyYY6spKQ2jxrQcikjM41mau4QuLjbr7om": { + "balance": "1639.491693855", + "bytecode": [], + "datastore": [] + }, + "AU1uQwBTSEC6PVAAneVMZN2bdtbTRXJWMUuGT93GW9f5RmHCZFPr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1uQzR8ZwhbHBjLMLAByjfZfS7Zvc6Z1kCqZyFaUY3vMiVBGq6C": { + "balance": "1250.801097229", + "bytecode": [], + "datastore": [] + }, + "AU1uS5DexeCApgAgZB2YRrqGWXxLwYhLz8TjeJDSt14EAdt5mjZe": { + "balance": "1994.291458180", + "bytecode": [], + "datastore": [] + }, + "AU1uSGycDSP5Ar1q6HaDokYUdKotDWW3hrCuEMiRAJK6FmXHBzu5": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1uSXUiAkPHJHkycgbF8QxSP7iKDr5EtuKDXV5N4XSJGv7BsaPY": { + "balance": "1419.087648616", + "bytecode": [], + "datastore": [] + }, + "AU1uSrhN53hW3vnsdHDKBy6GHa74GYn3TZuS1ef7eNth9ndXdxUs": { + "balance": "88.283828383", + "bytecode": [], + "datastore": [] + }, + "AU1uT5nEmekZ6qEn3vPpTq2KCaciuw7uhc3zmbpnuFjJ2qB5oNK3": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1uT6PZEyYisC5bD5EH5jLBP5mZjEFq6oY4DowfbrQeKrQy2YWC": { + "balance": "1232.989888849", + "bytecode": [], + "datastore": [] + }, + "AU1uTLFEeYj9f1UvhkBSDt41jTw6cpotyMfohYDnQeSJ2EfuKyLN": { + "balance": "96.386645022", + "bytecode": [], + "datastore": [] + }, + "AU1uTaWrQqK1fgpuFivQ197eY2ib43RmhwDNBrKJdQMus5MKu9jH": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1uTkG7aWNqswsWxb9JUU1mF67tSU4WVujaDHNXqX8Ay9TnYp33": { + "balance": "1247.688300576", + "bytecode": [], + "datastore": [] + }, + "AU1uTnD8QiNDMjNfDjXhu8kphScigX2vLX9Keag5ihBpe6wbnNdb": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1uTqN2vGJGM9M1CjXCLwDpgG4b1aQuZUPZWo9e9qnTPTguDEQs": { + "balance": "50.291991959", + "bytecode": [], + "datastore": [] + }, + "AU1uU85BhCLiAEiz7PC6ufWGE2vL6QCU3bh3TcRSqRPSeiTVFzDQ": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1uUf3idyLVcdnSjkWQW8emXcK3bBr4QNY1jSYU3qaNkzSHsHhT": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1uUrxuWM3SS5J8gVp5gp7vK85UxunjpZs6HfeunWPpQhwuurEd": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1uVE1EEmtjhQ65zHUBX4oGC5NeezbwNFdYNLijAyZ8tCkcFEyJ": { + "balance": "223940.001000000", + "bytecode": [], + "datastore": [] + }, + "AU1uVZKMTZhaJf4FB7BaTA39bibxuQ8ZN158pTciswysRaaBftgk": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1uVi1ZJpMUz7n8SEBt8DhbDzrevYAi4VwYdcfznMKL3G2FQvsm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1uX5t73oogDEHg79epWyDa2ZtUKNhEmPbveVjFG5ZaEonbNhu6": { + "balance": "1185.360386397", + "bytecode": [], + "datastore": [] + }, + "AU1uYGMXfHEa2FSGG88pyVE5w93oXq86VFNine3Vj9r5QNarAeWZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uYi1ajRPGdYKGvARcQbyVPWXxwJ4tmByR1eXvSsAPxLG3ifp1": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1uZ5VzBbXi7o14Bumr9e82QvonzSU4wVxBPYzBieviAE9ANeR3": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1uZ9kXBCFLACWvqFVthHqw6ZxDPHuUEBabyUQxPBUKZFomK9oG": { + "balance": "1630.907688591", + "bytecode": [], + "datastore": [] + }, + "AU1uZdSL3BmqP4y76CvJYEd59hNqigAkiL1vo45KpGTRXV82Q39h": { + "balance": "1981.375063366", + "bytecode": [], + "datastore": [] + }, + "AU1uZeJosyQWfs8p6F1Rw9wDVpgTnCuQSor3egNN9ns973WVERwo": { + "balance": "1915.313427681", + "bytecode": [], + "datastore": [] + }, + "AU1uZn2RN1eua6Woz6kwJWRFgtriafbBS236keusbahbpEpMzncn": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1uZp5wsbcL8BVyVxMF7Ys7HxfKHcsAV6vcvptbafANKHQpQvFk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uZqmEx5r88Gk9FUpjQDz8imhJ2eYwpK9NToSywtDX7S96kULk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1uaWMehnjkyhAjESnwShE9K9AQmNWUSPE8DxuK7dk3Nw5JQacv": { + "balance": "2022.819111236", + "bytecode": [], + "datastore": [] + }, + "AU1uadRrEsqhG7BdKrXdr3d5u7DMkfS642uUWZA2GffnccJrWSBS": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1uarCg7yX12TTWAPd4PBkHGzgayek97CZmqwTTyEz38xBxULDY": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1uayFAKaZxit9go3YVs3bm3HFpeYUUeFe1Mf7JGFMLDZJy9stH": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1ubEkbGraJgEMw6JxdthuYLaoDwSzujorLaFVn7WwwArPcta9q": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ubLuUe1Du215xSE67ppBbMkEmsqpPysi1iaaXfpiNG1zU36r": { + "balance": "534.193114300", + "bytecode": [], + "datastore": [] + }, + "AU1ubQYqxVuZJoNduTht261qYmWDTvfyGa4w26CnFn5Qcy3yAT4D": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1ubfBMGqeHWQhzAFKydcMksikhkbEQaJcXEav61CD5zRCQvqm4": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ubyj1jdFRKWgWS7imgsNsm26Cf8JmiQCMPTFTjg6NRtBYyWtm": { + "balance": "1099.261568156", + "bytecode": [], + "datastore": [] + }, + "AU1udTAaVd1do6LeLtYqv8jBdXgHPfRZnLwK1n2rstwLnDuycsnr": { + "balance": "90.959271550", + "bytecode": [], + "datastore": [] + }, + "AU1udenshp3q1DYEbxgx2LeoX8cESW6LCyykUoXtYA4AcEJ8bCPn": { + "balance": "1394.728898512", + "bytecode": [], + "datastore": [] + }, + "AU1ue428yEkvBR7s3a9aecswwnx3equyyrqPCZgN86mwDk4pR3oh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ueHguP6LYeB7YqvvTS8cUxvhp7bidQEt1DLxLiajC49bLAoUb": { + "balance": "3556.248890975", + "bytecode": [], + "datastore": [] + }, + "AU1uesXUjaUcteLAGRdYLc6WpS4s1EDf9TMJc5xCetTPvLDbcKUG": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1uewDd5eoctep6WpuJp52DL3VkU3wc18eKoWtPEw6yFk3Maen5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ueyGJhrZf7VSkvXryBKRRLWXaT7Hpj2PZewCakGyL32pNri2R": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ufmaYuGfChemV9ssB98bg9hChNYJ5ycUENeC68dqhw7SJFo42": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ufqMBiBjTVHTCK85SFAyiW2nu2L2q37BCuu8AjNzo4o5fjF9T": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ufufG9cBR92bo3bxmqvXkEz3wzWEoLwcVRQ7Zk1g4oRXHACoo": { + "balance": "5564.330983352", + "bytecode": [], + "datastore": [] + }, + "AU1ufx3YYEKsVwZGiZY4EZTCNswiz19UomcpNc4P1HLFzpCycCX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ugLRqtait7A1Wnh3pzFukg82Vmxgb7QhZqDK9TNL5o2PhqbLQ": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1ugWikivsBqDujq2GEbYhJLcd9uoFZR6M9gVxGhyorv3hT6bsd": { + "balance": "2426.149453220", + "bytecode": [], + "datastore": [] + }, + "AU1ugbDf1iXdCkEDyxuYgay9tCmJtSq6Pz3xnug8asWiyxUrDKoe": { + "balance": "2386.688278668", + "bytecode": [], + "datastore": [] + }, + "AU1ugeg95Bge6sUw2yLeYRRyAWvB4imYw1FAsx57FZPrTACPdGfJ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1ugkgGbgumK6YCLohLNeMYag17zc1uVsz8U3XGMd9NmERdXpMd": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ugqeqgY9h88fejD3NEwbwJghQKhuWeJkGLgTcDkvrC5Uw9EXb": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1ugzpf5wbzoyjzb3pkqW2TzvSCEYKm6eoWLHoFAVWnfEouCfoQ": { + "balance": "3259.951771973", + "bytecode": [], + "datastore": [] + }, + "AU1uhUJj9Gb1s6bTU65DZnFyEUprKL7MCQeUbAVoJCrtRFpNZvWX": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1uhXESrEWHHEgz8qZUbZbaXyUzyJaYYRLXr8XRJi4GgVmST5UW": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1uhsb9tJwoD5WebG7RGtwq7VBZ8m8qeue18m48546QxJqjGwNu": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1ui2m1GKtVXeRufnxsjrCJcLnuLXhkP3q6rVRv3JKv7vQuGtam": { + "balance": "59.367868267", + "bytecode": [], + "datastore": [] + }, + "AU1uiK79TfPp4Xr6Jo4wNNEFwsJ6t65x4TmJowz5KeZ9H5z6A4FJ": { + "balance": "135.313531353", + "bytecode": [], + "datastore": [] + }, + "AU1uiWvCxw7qkW2Nz5DqqQWQ79Mp3Ax8hZUMFemRFKGB3J56rpp6": { + "balance": "1137.941677569", + "bytecode": [], + "datastore": [] + }, + "AU1uidXxjQpKkJFaN661vHSMWaJz8FfM9RB9yU91A3ZVtgj24bMy": { + "balance": "1196.705124260", + "bytecode": [], + "datastore": [] + }, + "AU1uj2HkXGHWuNaxhsEA3hjnTrD4NHxiiM7uEUx8vAn2PwuPiH6X": { + "balance": "2928.736394612", + "bytecode": [], + "datastore": [] + }, + "AU1ujagweSQiJW6t3PMo5Jnb4PUghgE3fWrBq2Hyi76WkdoXgMXm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1ujhi2HcopR8ujKRfzqBoBzw8rzDVzj8z9bY9wroZM6eS1tWMC": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1ujzaaFu84BZUJkPAP1nS7heff6g2rjy2vQsN6sJ5GJ9cW6yg2": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1ukJa5TzqKZ29i2KmnjDi41Uuj6Kv3SLjKbq67TL47YVcUYRwd": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ukKzmLc6U4tyzsucTWYe7wLjkeMc7mXGRwWAj4KP4eKMbNitF": { + "balance": "2506.235797789", + "bytecode": [], + "datastore": [] + }, + "AU1ukdgeBDFePKNYfpdbaHTGC2dEzNaGtVThZZoLXbWivpexsph9": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1ukrX8RqyVVStMpq6bvBuuj4BtyX8tv2DPmEnCRbTctypPrRon": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1ukwSUToonwYNr41w2BYte6Co35GXG6iXS3iRkJxibf7tjiK3c": { + "balance": "1681.074311630", + "bytecode": [], + "datastore": [] + }, + "AU1umU86Tb8u24XdmEpy9u629HYZKqJnCVHKQpt4U9BdTMnFWkcV": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1un1zUK2ihqAajtGDKYqRgC82WfXf945ewPcDqXjtMQ7FdyuEj": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1un6kH2V1F1Sti3ypUeq7RNVNr7KjLVRWxUKVFZE7UrqUdvz74": { + "balance": "1247.755994507", + "bytecode": [], + "datastore": [] + }, + "AU1unLwnpjJPq1JgiueYFAhvb4FuZgW4yEmshRWzmmPbRYkwMg9N": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1unYjnhcvkG5oNtieNTQgXXbxWovWM1QWu3MW57Fg3McatKaYt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1unfvhU3NHGf6fiFXuo78JswyrWVQvCeC7fpwSDoucDqTaZG1y": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1unrpcZBL5XroVfyisvRUsaxk6HgkhCkvScm45aheam4BvcwwR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1unt4Qif2aV5piSVT23CpDueDbLbKgtR5DdTkgBf5tdAH3uBqJ": { + "balance": "60.231023102", + "bytecode": [], + "datastore": [] + }, + "AU1unz7xvPP6NeYgaJcUWsJoXHVJUTGUepPNPVXjgVsB9C8eq8zW": { + "balance": "4737.148734789", + "bytecode": [], + "datastore": [] + }, + "AU1uodhEvk75xXe48XGPX4ew4XxYvJo86yd3R82dLQJ2zFWZhtER": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1uojHMAuYEXZHoUgcpPZKukqLLv2D2vE48kK6RidD2NCzw1ZHe": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1up7z3LwHhRA99SxrySAftapBBpe9k1agHFzEpicqBA6UBUEWK": { + "balance": "3415.458278556", + "bytecode": [], + "datastore": [] + }, + "AU1upbyVkTYrbqQsAeQmDp5oYRMn5y5vPFwMiGEs6qffD5nijRpj": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1upqiA83C7H6jLfZ8wQhBk6yTMoxDvVr2wnKgXMTharDAMgMSf": { + "balance": "103.135313531", + "bytecode": [], + "datastore": [] + }, + "AU1uqAwWDKWbqvpoEydbyAcKMaP8HVS8RMXZAg9riUHsX7LsWZSv": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1uraXzF6yYroh5tRp8LEyWVgdzS6zwZGH8xfvbz74v39oUtiz5": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU1urktufRMi6ybHKb93zJBxeqo1J926eNxKj1sLyfF27gQCdT39": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1uroofBXHaNT1CdmizETJDtWwWtYew3qrrSBBL9SADTyagxh8G": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1urzDJg5xQ8aSEU2jyH2DxFxPyNkmL8s5NZo6GDXh5uNAS4MiR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1usUd3ZGRUGif6NmxMe1UfTGVuH3yHTHk9MeMbfL1Ejj9jysZV": { + "balance": "7500.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1use3jY2g8ra236y6y3tQtKmb67Kqe6KxLF5Rx7HpuGpuHJALN": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1uszkWFWszmq5HUnp4Gfe6EbicaXEJJaiExQTopeysQopQUGUn": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1utCPPBCpobiNHTso7v18dRK7T5RDtwzqk8xWNAoAE8Tz8DjNB": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1utJpdt7XkKACVq9VgoLye4zVGd7oWRYyhRwCxyQ8txWPEPo3t": { + "balance": "746.272080412", + "bytecode": [], + "datastore": [] + }, + "AU1uteWXXdg7fC4HoGTxfpQk9SinqPKvhiFigyHcBkc731H3dQcu": { + "balance": "4183.266496476", + "bytecode": [], + "datastore": [] + }, + "AU1uuA1ZfbydCbTBcWGim7aFvkB2FGaGrNwqiieNXAL8YdtQcLQq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uufBsjnBrTY5SswD6LL4QH25Up2j6mMUbPkBuhnNp9J2C9KCX": { + "balance": "631.508011485", + "bytecode": [], + "datastore": [] + }, + "AU1uuheeFZ9BjPqndEzxtJVtLFBECVMGH6gqAGuwJVghDRXRMjhE": { + "balance": "2719.044596653", + "bytecode": [], + "datastore": [] + }, + "AU1uunWcnZxxwhjnHXcfMY1Z4ddjfRWX65DhBkCpRBmvaUQDDE6i": { + "balance": "8.115874142", + "bytecode": [], + "datastore": [] + }, + "AU1uuqKXimkohgcgHxDATQucTUP5VztMhMg8D1mCwfp6jnERYC1d": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1uuvWBgiaW7VASnFqsgFEYF6JbUAMknCZwao55ujjBRgPhMFj8": { + "balance": "2093.690592233", + "bytecode": [], + "datastore": [] + }, + "AU1uuyxDfCWYGYECyEwWU7tfYT27pSSAauDz3NTfVk8MxeXiA5Q6": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1uv1i5NkwWMkAyH66Py9HKB7FN37tL1bp2giuE6oBvnB1A2WKw": { + "balance": "4010.856584902", + "bytecode": [], + "datastore": [] + }, + "AU1uv2MSCG2jyKA2Finmit2FBWRKpvi7mUn32T5bChWvYz9n5rNH": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1uv9rBkD5VQXzK1mvn8ZTzpVUGPLFCF2v4tZr8FKGi74oD81G5": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1uwBYakL3Dmz5oxfq2aCxcUgZMCWaC9b3ttJopV5VbEhPdjfDM": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1uwHtYbquzPErtgcT9efwYnzi8fmnvPMP72Y1ZCabACRVUAqku": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1uxZLpGh7ZZQwmx4NKhQjGU8BwtBpWrnf62CfEjk7715NTmr7i": { + "balance": "1498.316235204", + "bytecode": [], + "datastore": [] + }, + "AU1uxoM1uJA1SgTGSNbeFyhN1n58G972s2ZP4VRjSHwgTNu3UKqZ": { + "balance": "3149.664477239", + "bytecode": [], + "datastore": [] + }, + "AU1uxoRoG6u9WTu8R7jVuqN2sqbzrNoWiBJyDquTeSzUetJzQ16f": { + "balance": "937.095713804", + "bytecode": [], + "datastore": [] + }, + "AU1uxzBxLMmXgvdThowE9KnUevzzRmrXsMqQ9Y4EGzkJ6pRtNsmW": { + "balance": "134.488448845", + "bytecode": [], + "datastore": [] + }, + "AU1uyK7ZYKKfGvKRZ4K13H31J39YTqacvqvJgDjMJF526w77xAfJ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1uye3d4Gfur9ToCddhZJE7h9vhEaGMnGLKYPrgvoEVbE9btaDn": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1uzMTmTpeD1aZwj8VW81rd9U72XqR6pVcz8Ukqcb1VimQApM1T": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1uzMgG2yix45uTJ78fWArcuexKhiV8uWMpxBa79sJZDrAy5um8": { + "balance": "2438.489005768", + "bytecode": [], + "datastore": [] + }, + "AU1uzUt6C2pGryxCK5rLMJaAe8RXf242zP6YpyooGQrzyCHY7pFc": { + "balance": "4651.486139368", + "bytecode": [], + "datastore": [] + }, + "AU1v1BkJhDCX3MRhS1RsANQSRESUn4fG4nfkLAFLuhrfh6BLwbAf": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1v1H47KUWasivEvTFKSyHyX6PVCtTpKMuaAY3Pa1YhhiVanLga": { + "balance": "2569.955673861", + "bytecode": [], + "datastore": [] + }, + "AU1v1gPwPsZ2wwUwhum6zzH5rMeKrbbpA2mfyS5Q3YqHq6Fg2YPL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1v2HqETEgoxciXTNyAsXdn4t1Xrr3fgfTSs2pFbkb9bVKR4RDo": { + "balance": "1495.545621882", + "bytecode": [], + "datastore": [] + }, + "AU1v2RUfvUyhsgP8meKep6m45kEUfRtsEdz7P5XiDfNxqF9EULjJ": { + "balance": "1678.082736249", + "bytecode": [], + "datastore": [] + }, + "AU1v36XcHA633Cc6coRWRQqw4U3VzNUrbMB3pM3fZvi9wVa8FNod": { + "balance": "53.630363036", + "bytecode": [], + "datastore": [] + }, + "AU1v3N8asSj6PzJ4omRgC4MGf2iyurL3Lztnm5xAHpv7L95wBiP9": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1v3dKqusFE7Ud6SWRouwcxsojVA4wfaNCRLmWLfmoEgM3sbmk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1v4Kaf6nTcQNSXTK2QHfg3NJkUN9S3en8mowUhG9ybnRoxwyyR": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1v4fxLi9fQhyzZGXpjEVf6vJaQZgJ5mP8DXXwVMQtcZpfmRHGJ": { + "balance": "4795.246204208", + "bytecode": [], + "datastore": [] + }, + "AU1v4jkGtPSHGKDyAJAw9DKWJuSYdKVpTRVq1uMnTMphyRa5jv7s": { + "balance": "85.307908462", + "bytecode": [], + "datastore": [] + }, + "AU1v5RyntwnBKzyhzmsLFaek9wPqEKRUjLDhcEgvJNzatFiNjewr": { + "balance": "636.089708205", + "bytecode": [], + "datastore": [] + }, + "AU1v5j32NtG35p3D7dgfJy2wDNTMzqUXShSq67AgoMQyPYqzBw5o": { + "balance": "0.644026640", + "bytecode": [], + "datastore": [] + }, + "AU1v63Uzr2VXtMpXvd1fXXypVpVaBgH2EerN9iBaMsw9sY6VT4fe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1v656avKPtNdBDLS72ZpvMg9rZz9HmbtKssKQ9Mi4psJwumFWV": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1v69aoCwZ476cQuvCQ6SXsezD4gmqbuJXLvrd84zj7ogN4yCJ6": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1v6G29o3JziKnMsCoqPa6A2XqS3n8jWPgzkXKRAVrxvHzkPPBE": { + "balance": "1148.099572742", + "bytecode": [], + "datastore": [] + }, + "AU1v6Qm6t6kFB7aKsSsZUUDUCACmDEqm73ZQEngHZTNPrqnrsCr": { + "balance": "701.481077544", + "bytecode": [], + "datastore": [] + }, + "AU1v6Y3otHsqmgcwhrSWdnR6ziSF9Ynp2k3P4ky5dwNKwh8DAZpz": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1v6hoBaytExGT4oqs5swvjiZt6wGaPdrDWzGbX89ZvQmQbsaYy": { + "balance": "2187.866374442", + "bytecode": [], + "datastore": [] + }, + "AU1v6mTXgXJE5d4TdTX2RcYSCcz8m9e9B61pxV166Y1upWuL2Z3J": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1v6tkAdWobS2cqJhdDWSprdMYqxpDDA2eLRdpbBdDhvdnymbig": { + "balance": "2405.689618883", + "bytecode": [], + "datastore": [] + }, + "AU1v71WWBWgzYxAA7hXb6XkKwRXnRZVQ3KTq9q66kpMRV7RmGxxU": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1v7QqaEfPjLRCkTJ7zDKEJq4kHJQ18TybB8YTRmQz1RU62mja7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1v7QsHQrqfSoKzpuEu6yC4yGxfqNsRL4KhJNuTke3TzTHQn2sL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1v7Qse1qVwWk5r2j2cYv8VKxiN9gfm5qRj4Qfcv7pvBr3SW5zr": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1v7nAWdNMiExRmNYAZwEoZiR9QRyufhMBEvzcvGgkUrQK7HwFb": { + "balance": "14.967005812", + "bytecode": [], + "datastore": [] + }, + "AU1v7pTQC4LEBEx3vn4RnNC2TLgZ4hWibQYSMSmp5Q46XZp2fWGu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1v8LWTuwisvrozYzsP8RS2mVkjnfLtNtWVWsrEGesjUgzHgMi9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1v8csqRh337aRQGxqQuqC1SjWHM743KH3tHN2tKYGnUZoKbE1n": { + "balance": "626.143899635", + "bytecode": [], + "datastore": [] + }, + "AU1v8dqYBDzTrkf9heuFEiGfDEdH1yEjAaGMbXKMCwzoPNtek5fx": { + "balance": "765.351598674", + "bytecode": [], + "datastore": [] + }, + "AU1v8vnHjxsyEty9UGuPUc1mrvPZs2h284t1PHk3XXaR64h3A3up": { + "balance": "806.098169516", + "bytecode": [], + "datastore": [] + }, + "AU1v9CArVuzi7RGYwGWJrT6HuDGtEZzymWxGYVUTh8r8nGg51u5F": { + "balance": "1303.920302870", + "bytecode": [], + "datastore": [] + }, + "AU1v9NhRiYhSPADT1PtUxM3AJEre7noK6XDCN9gWGNGhTyB3yLjp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1v9dZAXNjP5eUa3QbFPbYQn3d6pGbLJd8cZKEoNZUdhW2wg3fP": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1v9dw9peXisifDYuCtbmPvpwYNerDpWeNEz1pvLqaWBC1682k6": { + "balance": "1378.031988976", + "bytecode": [], + "datastore": [] + }, + "AU1v9zCSPSsjfQZmPzTJijVWvgGhSJnuiXtErS5tLWYqtxLK2dBC": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1vA2NnWudVFudhwU22PqDttajmsgwS4PvMHLquTnv2kYguWQ4o": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vAY8fLBG35C6DWfuFGp27wPCUEwG5KLsmEMM6YzNJcBB26Vni": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1vAbifoNtFeHSTvzzabhNM6NPtQwnx5FpwrVrvaz6tznKSif7a": { + "balance": "2421.753544327", + "bytecode": [], + "datastore": [] + }, + "AU1vAbuyp2CeEhcAtETsToBG3KYNVBqyKcvAT6bV47SrcasyWu36": { + "balance": "869.078416844", + "bytecode": [], + "datastore": [] + }, + "AU1vAfd3wUWxYvYjM3gR7ZmtgDLo4HRLgKrVKuBGif5xHPxo1wJh": { + "balance": "5695.902771715", + "bytecode": [], + "datastore": [] + }, + "AU1vArf9AgC7N13Uk7XgQain9Y7JRNWfnq6brE8B7jSpFWFwWoXN": { + "balance": "6047.990929432", + "bytecode": [], + "datastore": [] + }, + "AU1vB73VvPqb4Fqcpk3R5SGGNHha37Q3FTswAS2i3LPbn3W7Xjez": { + "balance": "1247.063334489", + "bytecode": [], + "datastore": [] + }, + "AU1vBYa6VodCUnnCw6wjFkGNFau17WaFXJCb5Koz6AhWxJ3Gs1FR": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1vBbVd4VJq23HVxeXyDYvJwtMZP51PjZjPQwfUfo3Zt9ogHTiL": { + "balance": "1065.726023918", + "bytecode": [], + "datastore": [] + }, + "AU1vBiDpcbkBR7dg3vmaVgto9ztQnyKKwzp9ArjpJavZzwKZTtTd": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vBqBaok2kqTPcRAsKQnmKoYPkhrA2PUMQobGKrDgHvxjsaWmS": { + "balance": "986.178304794", + "bytecode": [], + "datastore": [] + }, + "AU1vBrzWf34HnYhQYBXSdaAKD4xbRkQJbBRZzwpHpTST9WafJSP6": { + "balance": "863.265667872", + "bytecode": [], + "datastore": [] + }, + "AU1vC27YGq5rQs97Uzu8JevLm2ogBSuzUaE8zsLKjuSpXjNxAGFg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vC7Kr13J1arRiqTnVPDJUViKfGEQdHQrgSdxQoS3jsvgGZL1x": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1vCSFLDLHVVKBDNzkzPgiCGnTDRVHwr87tt335DqiuhgFsP6LM": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1vCe2UAEP8sj1mhuYsc66W47qxofzgxQRvsxFuNJo9BAs8NJh4": { + "balance": "175.742574257", + "bytecode": [], + "datastore": [] + }, + "AU1vChvkc3etrXCCKvMG4NbrcQfvukenuUaXJh7tDJtgSc5CyPV": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vCoH1YS79JKrSMQeuiC9WPHpUZWThE1ejkatszFcZ5KgXQExz": { + "balance": "2007.200063690", + "bytecode": [], + "datastore": [] + }, + "AU1vCppfMqPXoC6s3LmqpdkY3eavnEgUz3BWdbaHM9T5adcW6K8e": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1vD2xYPrrvJxtqGu8da4ADB68hRGDRrAqNkbHKmTpSLYxWuaEf": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vDR7ZkDspT4E8g5CKutG3kGKethV36w4iKPMGFTFm4YFye8CA": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1vDchsffMv4nJT3xrCUocnNU7c8TdNmuVsM3XSwtKwWLAtTa4f": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1vDhUt9reNpbq26hxemcGhaytC44fHv6AT8bGzpoEmr46LKfNf": { + "balance": "780.512692096", + "bytecode": [], + "datastore": [] + }, + "AU1vE8EehJTkLGyDariXqRF5wWYQQKgfSG7SxvE18uTcfKyBPLk4": { + "balance": "1905.090573387", + "bytecode": [], + "datastore": [] + }, + "AU1vEmfwcy59ftqgPKNNbCCY8XXxsmgKHRzx9iAiFqxPtTKDTiNf": { + "balance": "3797.266206376", + "bytecode": [], + "datastore": [] + }, + "AU1vEocmDDiAhnS5fKny8NxCgFMU2wNvLMHjwjMGFFPmA2VB958B": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vEwg45aUjmUsE3ub3hUg39ZF89EAEz62Ta98diEwSAEAK3yof": { + "balance": "4421.710128297", + "bytecode": [], + "datastore": [] + }, + "AU1vFnp87jJDXc1XdhUuwfeBybWBxrYz7bNjo7F9oYud1BrzZp6m": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vFyBghwnFdYsyQskmSGVE6AzotDyPK6HWPSsdYy3HV3VnSmdm": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1vG9viGCVFxBUidZ7HiFXz7L1f28bcgj4qUe13JpmgACZdgWbo": { + "balance": "1687.481745030", + "bytecode": [], + "datastore": [] + }, + "AU1vGKqGNNqQZByRHLFshuWUg6jrM64ahASx7wdf5jPax2XyscFq": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1vGMbzi6osJzd11TjmBsDbh3wMMhTV5D7B5u2jrao2n7EFYzpP": { + "balance": "704.560805463", + "bytecode": [], + "datastore": [] + }, + "AU1vGWhsD82cRoQbkGpgksk47UutU62hKeTJSoscpqFdamAmr8a1": { + "balance": "2152.887646063", + "bytecode": [], + "datastore": [] + }, + "AU1vGYeAo1t1bGzU39W3xiQ7FyEVgPiWsnJYmDLmpdeohD7GXu6H": { + "balance": "1909.320760588", + "bytecode": [], + "datastore": [] + }, + "AU1vGwUxr7tPwPwmKm4hghd83Cc6s3HdPjDEXSJ5MyRQPqQu47ig": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vHBt2BxX3knvWCnE3whxUAHzsyLdGiocfS9P2h7aPVDFfnfCw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vHLYc73dC1BWHWuqMnu7sawB5RQAGLc249M1vbJ13msGBMj1i": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1vHYCn4J7x1fZEDxZRxL7ZpxJzhx8Df19j4B4aEeHwwwXMrsLz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vHzTCiE8PR2aDC6ZaGnHsSfTeW7ugepwiV1xVVJb3pHpcbBmZ": { + "balance": "6935.593176099", + "bytecode": [], + "datastore": [] + }, + "AU1vHzaRumASGrvX4VJxsV9wmgjfq5D3CvmU1Nyxzjvw3MERjt1k": { + "balance": "731.549995896", + "bytecode": [], + "datastore": [] + }, + "AU1vJJ7wdav2Y4aqujBCQGnPvhiD1KBFCuxS4jRLEdH34jVcxzZZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1vJeCmrXsr5R2DuiMU7Dh9RJWBqQYPsGRoq9S5LCGW9pqXUic6": { + "balance": "1247.655819146", + "bytecode": [], + "datastore": [] + }, + "AU1vKrzEVDvUmXcAD21Yb628ZWEuFFENpCq4zw2RRWGGVTmUvM3r": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vKzjr6N8irwfuSArAPAtdAE6PLCrRLTfXXatKoJPokNgTtkYm": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1vL4vvTDTsbmdnWyeqYA8fLv31XwyBrpB1bwECEziFehU3LSFi": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1vLRo7Yua2tk2QGCQY4dhgM1e5FX2uVFj2cRVxY6RKTbYwtYCf": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vLXwkbQs2o8y1gSPwe5NAbVCu5HwWWPrz2vLWR5Xga4aPJTnz": { + "balance": "122.937293729", + "bytecode": [], + "datastore": [] + }, + "AU1vLZNG64NfrhX2wGZ8MfMkTfgFpVURXboNUFYbfGJBysNf6pzm": { + "balance": "1853.980843879", + "bytecode": [], + "datastore": [] + }, + "AU1vM2qmpd6E9PFkSZiAWwCoxagZEy2trxakTJMfR372v7FucWWN": { + "balance": "697.395568790", + "bytecode": [], + "datastore": [] + }, + "AU1vMVAWbAPjuzUTvWYSVScRp7fPbZtdBHdFiR9q8PDHdu3z9zx9": { + "balance": "927.464058156", + "bytecode": [], + "datastore": [] + }, + "AU1vMWdiLcCjULZw6hN6PP52RTEZgxFPKtSCrfzmh6CJK4vScxnm": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vMeg1hcnb56vxpYfGhwMjKWen3f9yfX3FvDup6sayq6V6jnHs": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vMji3DWqqMUd9FzYxv5a3T6jPPkSN5L8ke5aqJbfbEa7x31Kv": { + "balance": "2934.828732440", + "bytecode": [], + "datastore": [] + }, + "AU1vN6G6NLhKNPhMRo7hWa8VFG8CLuLoYJBwuWhrbnodULUHne2o": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1vNJk55bsLaZ5xnSbE7S7dYZBqrFHHkmckWP6Uu8WS1exSemij": { + "balance": "66.384953988", + "bytecode": [], + "datastore": [] + }, + "AU1vNYM4S8KyACYjqvBPUWefpEnu1Kh21MwvXyY4mjDcgEvc5AiP": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1vP8QoGv7SbsmFo3UgvNPpxbGb1SEDeHYo3YuonHAQ4MknGFjd": { + "balance": "1065.865665878", + "bytecode": [], + "datastore": [] + }, + "AU1vPBABXZsmHrmj1Gnf2jybMoBhz7cdZYGfU2hEmj59XzP5nqTB": { + "balance": "1699.257201978", + "bytecode": [], + "datastore": [] + }, + "AU1vPYXG9zQKJj4o5p5n3V6q16M9JkTSnAaV4p2nzxCTW6K8d82c": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1vPbeFNWVaFKJ6bCyC4cbPxwPifsrznAirUtJqAsnQm9YfwxWe": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vPraLVNjaxAsXE6NSHUhqH7RZAJQ8LfKxwNH641QQm124FHQc": { + "balance": "842.411350979", + "bytecode": [], + "datastore": [] + }, + "AU1vPsSmn9rWke7BcusF9TwKj87P3CLWMVnkVfnfJd3LBMawG14M": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1vQ3THzWzgrPQcj4M7D3ukhvggywsq1anMAsr4hmpmgyYPEAWa": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1vQ4RUCMtuQ8pTAriqArHvhC7PDpA1E7vFqWKpKTeErrhyBPN2": { + "balance": "578.579189088", + "bytecode": [], + "datastore": [] + }, + "AU1vQbSSxBn1tZCfsN3QVy863hKyX2j9A8EZx1QGuDsVrU34Qz6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vQqUssUSHTkKQQbSBYE2h1jzeAwNnJK6wz7p9bfWyJXiwmxvZ": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1vR7MB5rqGF3NeLrrnxtUGXjsCTjwe2G31tfZNXyy9ME3d1E3g": { + "balance": "83.913652627", + "bytecode": [], + "datastore": [] + }, + "AU1vRcETpK9BEMfqZ3JsgFeFhFAjMoz2zNdMZmzZ1ps7wcbADtw5": { + "balance": "776.812227733", + "bytecode": [], + "datastore": [] + }, + "AU1vRndML6QdHGcYwieBX1AkaMHc7EzokyHtbRNfmuijCchBFurb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vSZZ1MbSjBx5jEoLB9MybhvxGFyJ9ysjjxfYEeamZdShveK5u": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1vScWkeeFe8QFh96rsfDpVbLZQuSfJ8U5X4pnnQ2Gnq33ixHZ8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vSqouGpGSSatda1dMWXgmBTuyLyrtxGxPWBTNzabPm4UzyPvU": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1vTJTfx12vyQAy2gH5AuMnx4x4KNF7pzHTGiWLDZ4s2sHoYiL9": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vU5zKyM6YMwBzNQv6hPGJRYS2GP6qXSmWvQt8phsvjwVr3qam": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1vUj35hsAkrxx4J1hDparoxN4LUE8Wv3h1bynJzZtgiFJSDAS1": { + "balance": "1736.611474731", + "bytecode": [], + "datastore": [] + }, + "AU1vUn55KwGyqoJXedfd4gL3BQ3xUfCt2pa1Ax47tLhacEQoKwjS": { + "balance": "1016.005485904", + "bytecode": [], + "datastore": [] + }, + "AU1vVkSe29XFxNCamPoGRvvrB88tPyS9jhLKNKty1nMrjQ8DuwiH": { + "balance": "1257.735535034", + "bytecode": [], + "datastore": [] + }, + "AU1vVtLpLH6jpe7PHkaiFkVGUnnBxSgYCCtYXFSiSxYoDMAnXA31": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1vW7M6xDMXTC3q9TdQ5QtCfDKkre9WryKreM21DT4StTbZRRxm": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vWKswdCrE5rUBD1MWzU93iVSP8r6fMY3apop1xfxeDkdHnD7T": { + "balance": "1334.902936627", + "bytecode": [], + "datastore": [] + }, + "AU1vWgMrz7WssPL5e1MvKe6UaXjwRgKHx5oHp9mZV5XcsNVRCZgN": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1vX1P2FMhfhPn1mUbH4UbDSRTe217odh64eV3rUwFWLpgjt6jw": { + "balance": "5372.084044528", + "bytecode": [], + "datastore": [] + }, + "AU1vXJ1U21WhTLdYQJ9ytoYTqdtu7aBXgfYjNKqCXf79fBZdtoi9": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1vXhJztQEAqjGXmrTCiPnR2vY1xpK9V4dcdWKqn5kFUjw5thge": { + "balance": "2077.333781618", + "bytecode": [], + "datastore": [] + }, + "AU1vXyHcBCAZYTWcVJu7pG2DhK5gXNUEJtR8vNh4gPfAF7HPTcY5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vXyP9Jd8wZZy7S4t4yuxdZMmKaLoSY9ssSkT2jN2TH4GEzjyZ": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1vXzuAZwC254XsCdWWa9TP8AYtMWJQ1SGTNSPktGzsgGHWK37Q": { + "balance": "4384.038836497", + "bytecode": [], + "datastore": [] + }, + "AU1vY5N4VQijdbA5wH3M67kHLgLwEf9iPuXw1gusGCpuEiugmRYU": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1vY8HSEVJPCp3mEFcBcxer5uv5BEszGCoe7XR1dETRYbydB1Z8": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1vYDaZtHuxazMUSUospmS5kcyBRGHWhjUkUDnRfsgWSNxEUNry": { + "balance": "2247.846084600", + "bytecode": [], + "datastore": [] + }, + "AU1vYFqF2NkPgqXEeEyjUGWhvkV3bv7hixsdgqS57BGpVXRnuBRz": { + "balance": "4009.350939090", + "bytecode": [], + "datastore": [] + }, + "AU1vYnKjzpgJZuUeKs6r12HfL7fK9ShnYaUSKFBq9v6NHYtS5By1": { + "balance": "777.481222652", + "bytecode": [], + "datastore": [] + }, + "AU1vZ1FMD72UaNVJjJhnQ6HdRajQ4Xre3tQwuZT7ZBY9KMVwhZCX": { + "balance": "4179.785748439", + "bytecode": [], + "datastore": [] + }, + "AU1vZ7JR7pQD6iKj3G6vHqTqaUthXKNQf2J1JWDvERJX4ndwYUK": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vZAzhaPNHDPhWr1L1WWtDunUH4tW9Bnn9uViAbaSBfTgYadDs": { + "balance": "1449.869259166", + "bytecode": [], + "datastore": [] + }, + "AU1vZP2KGkgfwapG8MTy7z64xnRiqCZd2b9h6sba9o2CNKjnc2rx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vZTfdU2hDr6UAHTR93gMda1zfe3reL7wtjR7oc8Gs9DW9m1m": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1vZY7jjbEqaFCzem5fwUMRdAFbHSwcwtqk4QfdaGxggbqDuwqP": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1vZp4TUtdNDgGVExCFaomCcyrEDFr6rSQ7x3j8fY6JpuHVp5E3": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vaMe7X2rhWbY4AN4pb75BUNoVxUZRdcppkuFJLL1spuD9KS6o": { + "balance": "656.718964826", + "bytecode": [], + "datastore": [] + }, + "AU1vakdPRSn5o6xG9EFfqtTaYq86PPAdKj7du7UHE6SWqCMHkzJX": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1vb5gQiR14hB7kik1VGUwvpmvS6tA3viyWaBU99952sw5mAniQ": { + "balance": "3619.032614482", + "bytecode": [], + "datastore": [] + }, + "AU1vbAZ2yQSm5W7WfccH55en4NmUKhfSSMWACaJZ29U91wL5VCKw": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1vbMtigq244SENUcb7kSALGyuacDVEoRGHYQWXFM1D7a6FCdE8": { + "balance": "5212.663562210", + "bytecode": [], + "datastore": [] + }, + "AU1vbXwWb85fyCTgfr1UiFMBn2XzvQC5d3Zyg9zUfFqbSrY274Jp": { + "balance": "1324.622920617", + "bytecode": [], + "datastore": [] + }, + "AU1vbtXN1kGGsW9VNT8DUriqx3kHqPbHNNprvpASbwU8y2SW6tu9": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1vc5iJbbHhV3HhVLSW6Sjqz5Z8qvDbM65ey8T17QTX89rDwJ1F": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vc6kt4gmU2Xqhufa5qk45kqoU52RuzfaauRsjuU69zqVxNheu": { + "balance": "97.359735974", + "bytecode": [], + "datastore": [] + }, + "AU1vcKBctdBo2GUZNc9ddaJHzH8bNVCNaAyvCidonH5W8w2ms6Yt": { + "balance": "1657.319795311", + "bytecode": [], + "datastore": [] + }, + "AU1vd9Tig3FqbSTi2rdzvDdnivfpY4be1tewcp9QfbuK4WSYDPFJ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vdQJ412k4kpCGfJouNWrdLJh6nnWhinmeF56jjZ1MxoKtA3Xo": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1vdy4EuDuguuvYW3jjSEqScpsQkXFsb3krSeighD4bQ2ck7RDN": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1veD2Q1vym8ANPoXHqxYVjhn8LK5mKiXBFXhmuWYmpwRmyZ5Ru": { + "balance": "1361.698466664", + "bytecode": [], + "datastore": [] + }, + "AU1veVBoWdukGgPBtic1wFTNwrRRrHYzxWZbwExM8uETvLsd2tAJ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1vefgXVahEbmWPTSFVo1ZTkcnyiUBYXRocTesWdwbCKBSFrMjR": { + "balance": "2977.070984098", + "bytecode": [], + "datastore": [] + }, + "AU1vfQV1azvW1FYdy9mzSexFhEvkxsNDZXqkHaxoaMjDH9LtFV9E": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1vfSooVKd4nYCPPMTVTAmNQAg6XCuDFzZSNV986U4mJZAe5EaS": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1vfXVKNkRZ6ySuurRqu4vu34W5GoTJRVv3DkuXoGgVuBkAMER9": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vgDTNR3ZyfzGYJFi5ncCrL3NRXkzUfhM6LRAi4eXw1FDmNEao": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1vgFc2xgDp8mD36b6a5LAkuRXYV6hd72X8uBrj2zVvmzite7uZ": { + "balance": "2077.595194495", + "bytecode": [], + "datastore": [] + }, + "AU1vgGh7g7dEYV6sT1BjKKAco4XocMcNjHNBouSGCoFmEgWrVw6F": { + "balance": "1723.138413645", + "bytecode": [], + "datastore": [] + }, + "AU1vgpKxRLbN4yXD5ehxh9FMX6eqZ5W8KVWiv1cqqbbSx58PFrc4": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1viHUoGBRNyh37wCYGXWPKucRt9wVDj531tEaatWBFV7UkESCJ": { + "balance": "2707.266302743", + "bytecode": [], + "datastore": [] + }, + "AU1viUKUet31awovHnVeGupzE2vaabjdiwgca4ShKwYbyuSMFV3S": { + "balance": "996.262718876", + "bytecode": [], + "datastore": [] + }, + "AU1vimhvXpFDd1yMWfVu2Mi8Z2EVrpuukikdSyZ7xe5C3R9UF1Yx": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1virVbA22WXBG6MMvRsN8VqYQPekkNXTRAaEyxuMLiWnMW88w3": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1vjdTZN4p4AfjXmEX5roHhRsEkFCy38Ru3mXDUvBFgjjScfao7": { + "balance": "1597.363927691", + "bytecode": [], + "datastore": [] + }, + "AU1vjej5W1xQNKwz1N8uzoAYnzNuqH3A1Qvyp48mpiZKi2Utuhfi": { + "balance": "774.571407028", + "bytecode": [], + "datastore": [] + }, + "AU1vjmKQWLmN8o49MWbQyoroWDdq3xNVLxcdWz43UQ6EJMPNqd8C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vjot92vUXoJxHpZoaGugUWPtJRGKCBeTAt9BAJQRHAWaPYQka": { + "balance": "2582.564565444", + "bytecode": [], + "datastore": [] + }, + "AU1vkASgm9SoAZxkFpGLLN41Lb5rpndc3EK3L2EMR6ToDJEcLNoi": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1vkM4k9QiU4a9QvDVvftnbnUBrJMeuhdVWSrwtf7Y3yrLzKMLM": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1vkeiwdnM6HjUKLtBb9idh9NDDvjerJ8Ngcb8sqxUG4kZ8itF3": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1vkfkMic3nNfBhnTL1ibPsGz9F6syPdDojP865pqVh2bHjQFPa": { + "balance": "813.770400988", + "bytecode": [], + "datastore": [] + }, + "AU1vkpYR3wBLp42mzj4UhXZneH1bymFnxnNdQE5qAyxcCn9CkJhJ": { + "balance": "76896.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1vm5JaxijvemHmef7NmxCLHkTTof4LHxNLYsbwfoYWriSKQs5V": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vmDzqQw4o6xxuPQJ6zNn5WgTquFoRo6qU2VRJdGPofCPmJaF5": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1vmdm3pL7R5vFAndzi9GXqeKDsoQ3KREnyBNZtvHz1M2MzSqrD": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1vnNqSZ1tNRs5YSR4SNabj2ScaGut62Jza6459SzWHAUaY7y3T": { + "balance": "2634.632042452", + "bytecode": [], + "datastore": [] + }, + "AU1vnSYY8wfs1FgtmNrCGXt2Bx4q4azNLYd2W3E4ZL3BzqcSJpCW": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1vnbMo5Xd73s9vJ6vDCh7bPmvG1nmsmkphkjh2baihXzzZBiN3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vnfRYVpVpXZdUmU2NucH4yZKYTHRkGFSwpg8v5PE59b2XpB99": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1voDBE8vihZFqNVqbipefR13bK48DFLoGbjafW3WzNbgfmgKo9": { + "balance": "2536.064270425", + "bytecode": [], + "datastore": [] + }, + "AU1voEMSPDgWReCeWdPsmu2aUBvZNewq37JwoedgeGa3X2WgVTZE": { + "balance": "1424.556570300", + "bytecode": [], + "datastore": [] + }, + "AU1voZFtJRz6hkHVspo8NmZGhYR34mb42FXaUgsDAs1tsv7Qp1tf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1voigSkRW8o4t1HiTPgLmQpDbzcavEUyUKnhYT4LPBWHBX3pag": { + "balance": "1160.253332373", + "bytecode": [], + "datastore": [] + }, + "AU1vokV28EqpumkHyf8wFtvpqV3gwXqs4MarvdwJeybxaN2soV9w": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1vpVEJTwULCbscw2bHD8rpJc5hsqSYTmL46CR9qzdncijbZCb": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vq5Us7nDCVnEccVeYAtQRXnUwgys7QR9bF8niy7RYXZkjBGZD": { + "balance": "2077.487691939", + "bytecode": [], + "datastore": [] + }, + "AU1vqKUQeQBKppukFcuqgMSqL2efgvyDrLCcbgN4kZhVLwEDES2p": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1vqpvUaETEeF52PnVLVrq4F4kxFVgPyDBWTE2wZkkoi5T3KD6U": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1vrBCCtQxw9jJoBFw6bDNwm6iTWjv9sG7XAhhLaQrW84rK7pQ8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1vrPXR3GKWYRbMGu2AHQeBX4pbnE5eZonXdZZc5KKyJGtFpjb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vs3u1LgKCzcLdzDCnEdiYQRPugWKA8yH3NKCL1CWuuyX3ouih": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1vsRRMjuSTXvf1Dq8Gc7KwbfDqNj3SSzhB3pJ5q3oQ5JTzx9zN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vt7q9eV2bDAxtrqXBPuPoXcZw5dZmH3xTAhv1vbcHMe4Vys18": { + "balance": "2116.969872399", + "bytecode": [], + "datastore": [] + }, + "AU1vtE1AKJe3XhEb9eXYvkxL41bL4XAFE6YCeVxRpHpLFioyBAyT": { + "balance": "591.517862952", + "bytecode": [], + "datastore": [] + }, + "AU1vtJybrVYUSjc8wjUja4y9JsansTpfaSAeXC2g1RyuRwLtzQAa": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1vu22yC21XnkzB2qM2mRbmmfpyxrhih3RBUsULXCvtm3ws6jxd": { + "balance": "173.267326733", + "bytecode": [], + "datastore": [] + }, + "AU1vuHHu7CzwYzZuYEiDMx8yfMQYpAucT1rEm5eDmp8kbLcGEQcU": { + "balance": "3543.134321516", + "bytecode": [], + "datastore": [] + }, + "AU1vuvQYe5RohAFfneYkfyfxi44uRtDthQaKXWDGLNPdz1aCaiMJ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vvRnPVRhqipGvMgqpmNcxLSnBBNjPD1QzHpHryDVzaUomwiEN": { + "balance": "756.795783933", + "bytecode": [], + "datastore": [] + }, + "AU1vwUx4bBHy3t9csQCwM8xdcfgXeNJ3ovNBCzRWn6N14u8E1Gfo": { + "balance": "1325.598101866", + "bytecode": [], + "datastore": [] + }, + "AU1vwaPCxnV43oPLV6RwkPUxtZgCCdfraJZmreDURYApYcac9gnF": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1vwkgyQpa4wWcHvAacAxgP7z7rSUDNAKx7ozoFRT9JN4WEgxqr": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1vwwQZ1FajQSLvmAsaLrwA2fNC6rswb1TYRQrqPoqYuuPGUJfJ": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1vxcba8sqr4QKoFGXfMzyqY2Fap5nZwmxCx6VQK4ZuacP4TAFH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vy6m9zrBsYdZNUEW2q65HKP6YatcSodubLtnrEbDRuu4h88Dn": { + "balance": "2243.806527200", + "bytecode": [], + "datastore": [] + }, + "AU1vyEmxfNE3nNBSRGSJqYXT8TfEtYnpeQ4XvPHp5uYPYBzJPmNX": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU1vyQeS7AGZ9ViiEZTGw5XpBRDwAtX8Aaj1gWpkSokGnfKXdvaM": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1vyV2HmLR5q5RUFFy1GrXFffBP92bDDT6adeF3NTBynxbxvxZM": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1vyuN6gzqgnFW8FyxsLxPybpdjKbLbtPeMpssykCziquSZiaah": { + "balance": "102.310231023", + "bytecode": [], + "datastore": [] + }, + "AU1vywDcWqBQubtJY8D2jA1s6zbYQh2GyiozKFqgMSJAdoX4YnEg": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1vzCb3XpbaR2XLhmiM9EAdQSStPQZbvrmHEGHxezUcFZb4L9AF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1vzUSrzEa24gMCirCiiXigRzivqrLtnn6YttSqz4zCRvYcLNav": { + "balance": "1146.752329333", + "bytecode": [], + "datastore": [] + }, + "AU1vzwLL1Bg2W6GBMUZWip1jhrcQkPeFs83C51a3rLr686HzfmcN": { + "balance": "275.106036726", + "bytecode": [], + "datastore": [] + }, + "AU1vzyLJM8N4cZmvrjafv6rhQVFqmVvQh2phB3VYzupgiN1wFipV": { + "balance": "5134.993436523", + "bytecode": [], + "datastore": [] + }, + "AU1w1BeiJtaQvitzK3GZuATzXpmQwfnpjUiyjM91HPJ5WHnQB8Cp": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1w1UA3wpp1hwYQMYdrAubSReKEGgE3dnRr16CDaV8WnyyGUzTu": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1w1YBju9frHT68FwtaBw8fpYKzu1yd9sBX54rVmMhc815vejEP": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w1nZbLhPnp9VKQy4TBfWHeKLM6Tp6V4NyhqhEinwSk3WFfteA": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w1ycTXToZEnnSA1jNrdQCfAAxFCf9MR8KGiXY7Y6n1gHoAM9y": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1w1zHEkTwv54dVnboxiJHwMpVGw8a483YLjCSbnqHhEzp9JmEj": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1w2UXBdf3rY1QmoBPN9CKSa1qnKoTp3Yth5vo7kMNZc5ZbFKch": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1w2W3YXmQCnrGX5AVdghmGRPVjoyp4ExGn2yzRSUxjhpbQnN2i": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1w2XSeDFuFfLCUXqwqyHmqV92hRLte8tdKzhneUmVZFp8QwnhR": { + "balance": "2006.578346546", + "bytecode": [], + "datastore": [] + }, + "AU1w2ezpiShCUAp1kEnLAFhowoz1sMs654tQNsJH36S9RthnNKyX": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1w2iikkEZTauKmZh2pXcFDBNwyWAd4ifBWT7R5jTFcD2THg5Sy": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1w2to73AAkfYA8b1P77ieiLQgPao61wZmWQn4e3HGqEtY8j6af": { + "balance": "4232.130021410", + "bytecode": [], + "datastore": [] + }, + "AU1w3PYV1FRQB3ttzYZDbe6SuZmUatP6PfnM1gym6mprMXQLW74e": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1w3Y1uiEKqLGdpLG3rgwGE9Qbi5ft7ajDi9axvFjbAKocsbFbN": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1w3g7fV8DBNSPigyFoEgLroKxEKUoz1DrDtihWfDpt8a67JtNG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1w3m55iYQawY89yxpfL17PhHjxg1YjEiJDGSPr62v68P2tDsgJ": { + "balance": "1452.320622298", + "bytecode": [], + "datastore": [] + }, + "AU1w46so4ZrJnZ6Sy9RJHZuJsWeAR2rdYqKir2GntT337rKqwEFk": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w4f8oBM4FbJL617hrrs5xi2vy13njwSpZmxUDfEpM9an4FbT5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w4oBdfSfbaN2TGPSe4LHtnTmzAGTHiVSiWUd6ags6BprE3TBB": { + "balance": "678.650570080", + "bytecode": [], + "datastore": [] + }, + "AU1w59usmVU15KEMZa3EUk4uMzNcg2E4SLWxryuuaViu6Awkrg5N": { + "balance": "125.412541254", + "bytecode": [], + "datastore": [] + }, + "AU1w5Xz4bsuHbiewUhr8JssmT7puCJzQHREia2nYdiGTxzuovHeE": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1w5gYGssMiXGpTJ7qZnfEjvTyYwzGSQ7QNGkFmefVmt1eHj7CK": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1w5vU7pSPQV4rr4jxWNC7BjR2WeTgvH5EC7FQURjL9pGREBoFM": { + "balance": "707.202249835", + "bytecode": [], + "datastore": [] + }, + "AU1w5wLzySP2Sf6AAaYZ9pFAf2UpNHfcvd4W2hSvxvMCf2FaCpDY": { + "balance": "1341.292449585", + "bytecode": [], + "datastore": [] + }, + "AU1w62SqNHXNkepKUrh17PNKZYfdCbvHLdkT43WPBmGUC9gr2xQK": { + "balance": "184.818481848", + "bytecode": [], + "datastore": [] + }, + "AU1w6HAuyuHDKqPCBBMGY6NrNGyDJKAmDt8zYN7ZFDV9BqoVaHPq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w6xGoyquz5sToBx1pkXkZGuzDThp7n6z4B3mj2nNUo2fGRZgU": { + "balance": "1239.163859877", + "bytecode": [], + "datastore": [] + }, + "AU1w78yyFpBAsXUam5N1eZB18M7weJPPbrUWfiHJmAVgHbEM3ok5": { + "balance": "1343.142384171", + "bytecode": [], + "datastore": [] + }, + "AU1w7YeEapxH3f2Ha9UiWUq8uyKQXh3BoQGvyncuJ2Mexqhx8FWD": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1w7bn7y8VfKSLufNcctNPzCRBLJ7fJ7VGsnKqGnAGBsQ5SBowc": { + "balance": "2902.996146248", + "bytecode": [], + "datastore": [] + }, + "AU1w7kejakRdQuKYs2npVWm5Dez5Q8pYn1QFgQ7d13y9WexC6Ycr": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1w7qDsARQC5oM6FEDVBFKWqnapHnWqDy1XLVuPQMUfMR33vsep": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1w7uaD9abFU1JCF2AMfTZivpcNNjFRzkzEJVi8uRZrmWYogq6g": { + "balance": "773.631441735", + "bytecode": [], + "datastore": [] + }, + "AU1w7xtJATJY4Xx9Z6HHMzNrCJUjkiKuPax53giu3a4YQriusVEm": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1w8mQMsDGRUGjRJZ2BPZ63R5PA4x7YaY6rhT4Df92FeAFNU7TN": { + "balance": "132.838283828", + "bytecode": [], + "datastore": [] + }, + "AU1w8mq2eAipRezGumsyAh1khYBLetXbWiYs34M3vbf3hRdb6Tcp": { + "balance": "25902.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1w8qU6niZSYjVoBvSoKhwRULvZhPrhaNdQpEYbgCJ8ajguhBho": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1w8zFDuiBtqpBuc79ou1ZR7xEHw2y9ohjG9BwoFuAq5ZTiyCzY": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1w9PPEXgYPHSE8weAmUEmEEjNixTu1WMJrZ5r3j5vADDQ1ZYeq": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1w9Ta5ZAf2oM2b21yREPpKh4yHG7Zq99QhKRaugeFibCzuihof": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1w9fHWf5R31zKfbN92tDhLyQkn36UALHY1hyegZ7HqDM1RjHvd": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1w9op71ULW9rCU4xDWXErNqsvFruqvbZpXMHA98vxoS7DDKf7a": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1w9pBeMaMfUbRcLPKKGCc7GtwHcR86fcWCCKbPz9ZSqQY5JQF4": { + "balance": "3070.366980880", + "bytecode": [], + "datastore": [] + }, + "AU1w9xhbS1rWUELsJVsbWpWsLDvrAXTgpjzWXoXpp7Qu4HjjQtet": { + "balance": "90.874143495", + "bytecode": [], + "datastore": [] + }, + "AU1wAAKsiysK46Ltq26u9vC1MJ2EtqZkABPHT6CeveMyCtNAufMS": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1wALhxVpykdqHujbkDpfe8UhnStjeWejgSo9xB8owfyRhaKERQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wARgAnbDAyj7BgWGFYBZhUk4jeCQNRzG8rmoK6kc7V8cCCwL4": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1wAZMXsFcwLV5v1KBFmoXJwXQdNwEvzojwF5uYxhozbnPmyKJe": { + "balance": "1988.190642869", + "bytecode": [], + "datastore": [] + }, + "AU1wAdKXoFKC3829HLu4Bu4p4KSQgAWSbte63NLo21UFeeHrzSB2": { + "balance": "1350.518427486", + "bytecode": [], + "datastore": [] + }, + "AU1wAy2sf1JxqbkpEQ9D1UqD6c1S8xw4YGw5JKonW1iMxupeDYPm": { + "balance": "3804.068336664", + "bytecode": [], + "datastore": [] + }, + "AU1wBLMumL2Rm8xdBntC62PjNQVUJ1xD6fSxNVi1TxQDQPMrSd8t": { + "balance": "77.557755776", + "bytecode": [], + "datastore": [] + }, + "AU1wCFyiRn26LWMfdNVwKgJ8R9RgrYZ1utj8137J4WyL2FkehkN3": { + "balance": "189.768976898", + "bytecode": [], + "datastore": [] + }, + "AU1wCKnXkYFryxLEw8e8YZNJ35brUZwpfh1oFrWRXLzcbJSMefPt": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1wCUkY2vvhJAtebVue3AazZAQWVWSxJJtiRc94GrEMti9czypJ": { + "balance": "2603.424823506", + "bytecode": [], + "datastore": [] + }, + "AU1wCp63S1gLr1yDCqHwFAptGQWYZ8iEW92scHAYM4bnj8xdjerv": { + "balance": "140.264026403", + "bytecode": [], + "datastore": [] + }, + "AU1wDKNKdZPgHqACRPq4Um9dgiSQsQLWFZWZDCMR1AV5RvjkJeu7": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1wDQZVWfyPZm4k2AzB8oKRpikbjTnLv6CUCLQ6mcZqWoAXm7q3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wDWcEUQzxhp2DkATLzbvBebjhCw85jpu6PGFVBQN3MV2tfCFq": { + "balance": "3539.274240955", + "bytecode": [], + "datastore": [] + }, + "AU1wDeNtpsfMQJ7EvGCXma3FQoQQFTyFwW1JCcRy2V5oQmpRSMPM": { + "balance": "1852.674093988", + "bytecode": [], + "datastore": [] + }, + "AU1wDf4DZbLKPM7ghc5Xps9m1gHCwGoKpaEWcgozmppeZdqcteg5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wE3ViQJWfAMCTwVZRi1MzoXZF1J8xxVJ2MwzAyhHuvah9AEgN": { + "balance": "2939.549421171", + "bytecode": [], + "datastore": [] + }, + "AU1wEEBauS6a4hr941JgVHWgkuqjMUNhupwpgYyH3yHNihxmbhhf": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wF2EsXZW3dbioBvmYvydNHS8JAkXPv8dtPmMFHP6Fw4xuxnbk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wF91cdQ9y1NkUmn3cqnhoq1WLjHz1uKCYf8uQYrUXncqtGA26": { + "balance": "7522.102917368", + "bytecode": [], + "datastore": [] + }, + "AU1wFFk4w7C8zHfeUZNYqvcJxnYssXXe6HojGR2QJm8EuRY3X9T6": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1wFNUfcPnRFWyEGVEiRoKQH49yn7xMLXSiaD1bZZ8ehkpQMKi": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1wFpezM9PtY89PqYFBDzAwcMZQbZFXJ7zLVj82aBtsCAYLpcBz": { + "balance": "1629.853128524", + "bytecode": [], + "datastore": [] + }, + "AU1wFr1pT5VbyQDWUp1vSigzkDtEfY1qPVsUE1h4VWMjBDu6Qu1F": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1wH6wfBDMgwQJLXhfRnX8pGc94DXKyj1rpCCyye6D12HZBQmJB": { + "balance": "2074.427157049", + "bytecode": [], + "datastore": [] + }, + "AU1wHEmCcRJuLfV6ZCRcZcyHFneue9oG8zC8CcMC73zHdMbbDiUc": { + "balance": "1355.707305158", + "bytecode": [], + "datastore": [] + }, + "AU1wHMfAe37nsDWZzJ8JnAz28WWgpZv4KFvHRaT6paycAmQ8sqxE": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1wJFvU7pSfU4sn6wfMqAykZPWDzhf2wobSqCYVVq7YhXRQM3ZA": { + "balance": "1624.097794462", + "bytecode": [], + "datastore": [] + }, + "AU1wJGGFvvvwPSEci3WiNENRyiKTGmpvDmtPszvE7cBC2DSbr7ek": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1wK6NFqrCJe3G3mh4f4EFiZQ8DrFaYReTGdQJzcZzXnTc18FGt": { + "balance": "542.786318863", + "bytecode": [], + "datastore": [] + }, + "AU1wKACLgxQiAxUjo43LayAwbmsTVPcN7QSFZFbb6Sx43cT8osMA": { + "balance": "7080.813452059", + "bytecode": [], + "datastore": [] + }, + "AU1wKCmiNnVG1F4X1DWBQkDVQEGn7kw131x4xwPhxMpU2SbS4odG": { + "balance": "1458.404633713", + "bytecode": [], + "datastore": [] + }, + "AU1wKVcMpvrmj6iu234xjEEduC7rhDKdqGwjrYU7FquvMbbBkqSJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wKc91yyZ4R1cxK9URrUJtursDshPn87SvwrtqHC4wLjQRV3hJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wKx1UkTWnZKQ8h7johEzZRHhrnmKFsizhoeNreuFQe89ecN9T": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wLD66wpWJYhbkB6jiQqT2jVcxqxZyFVrXH2TUU3PVxb9or2RQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wLJKWWFKqKNXKoeD3KFefYWPRCZPL3U9cEQpVqdL3qK8jBRYH": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1wLTsxXcRKfjVjRBrbgV77ArgyBrLhZAm2VBTXFCmGtKeku8Jz": { + "balance": "3783.757981732", + "bytecode": [], + "datastore": [] + }, + "AU1wLWHZPWbcLX2NfijRpX9zqr5QgrkDnNmRpXpF4gq243NziAJ2": { + "balance": "582.235889111", + "bytecode": [], + "datastore": [] + }, + "AU1wLYoKPJVtwSYubLtHwP7nYnBimW4BjkFFMQ5HyBbFBPmeM9Ej": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1wMBvbrUUt6DsRSZrkKtkCY1j37o3i42bbmudDjG6J8i9Ls1S9": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1wMpHFsMPxR1EcsSf5uTGXsSWDDmAquCwX1ujKmtLytGuX7cA7": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1wNcX3kE1vqR3Y5b9B4yS4LAi4mh9hzWxQA99aexMZJjmJJhX6": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wNyX5buT7t7LVs7MaSL38yjYUWHPZRhBPnskfEjKk2sZ3t8Fz": { + "balance": "10.601341468", + "bytecode": [], + "datastore": [] + }, + "AU1wPD5ww8WyZVUxQ1MkfEskrcHSWKLG92QKt3nVwVUTfxUCMag": { + "balance": "775.830409326", + "bytecode": [], + "datastore": [] + }, + "AU1wPEMsHn5aSroMJvkKcbNGgcrtZevmkzGN3f8riq2GKdxDdR3s": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wPMe9HGmz5axKLiP2np1wLbhuBsekdViXjcaLj76DgqHfuABA": { + "balance": "1551.341722097", + "bytecode": [], + "datastore": [] + }, + "AU1wPRwXPbPjodh4TwxTtX7WXxYPadQpRiqYK4bURXgibt4owysn": { + "balance": "2629.723960923", + "bytecode": [], + "datastore": [] + }, + "AU1wPS4bTweQjHeYBNCVKTRGeB2S9aUigfHz9ZinDaUdQgbQjzmx": { + "balance": "2186.637233641", + "bytecode": [], + "datastore": [] + }, + "AU1wPpXRVawNXAg7Pc7qoUkKXRhDcGG3MsZB1icLQeoEfUgG3R4C": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1wQ1wQ11GffEiJngh1j8P5TDE75RK95HuCGeHeZDcHkjp3vxRw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wQ3kPZM712tekbFAqZ3qKPvssPgA5j6jfbFCwaBfw75NqmBqK": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1wQ8LxFiocWDMrn5a2iAQDNkGzXxPa13GoNoDbL3K8ShSQRXgn": { + "balance": "1356.501741838", + "bytecode": [], + "datastore": [] + }, + "AU1wQGjnxvSi2HwoSkr3sXQNsNxX23zkn11MPu3NDcxV2V1W6F6A": { + "balance": "554.178990243", + "bytecode": [], + "datastore": [] + }, + "AU1wQba6j8QNenpqhCXs2r1NZdiGkwqXiBVi2pxvKJdyfsgg8kyW": { + "balance": "269.077169617", + "bytecode": [], + "datastore": [] + }, + "AU1wQgRbMnXFomduQkCWdPBDNVginbVeSmEAEXE96RUsfCRXJbxR": { + "balance": "973.873726556", + "bytecode": [], + "datastore": [] + }, + "AU1wQyW1ax1UKb3TdpzJzkF8TeEJd4vuUfiW5hhdRmCoqNe2E1NF": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wReypdKbqFdcmLjSKvFqMGNeJQciYWLpBh9HtmAPQDpkvHEAp": { + "balance": "1763.940792566", + "bytecode": [], + "datastore": [] + }, + "AU1wRshw8G7B4JApJnWQJVdwS4gBynmSq6cWj5EmxBqLsLBda8oR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wSF7SzG4s7uy1QiXdTejL8tqNveLKVHHnctHoBdTw9a7Mw17A": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1wSKgchuF4J7PhEvWMe4nknZHTHUcC77T95zVnTgGdD6x3UTsU": { + "balance": "1531.635514148", + "bytecode": [], + "datastore": [] + }, + "AU1wScTh1NcjSUCjRyHUkWBoMJfPDfUj16RA74qttzjSGEbFfyeW": { + "balance": "88.091857890", + "bytecode": [], + "datastore": [] + }, + "AU1wSpXdb5sehSDsE9cfCuv1gnS2Ywq5ow34sqnaJXvPzyR8SJYV": { + "balance": "938.530250390", + "bytecode": [], + "datastore": [] + }, + "AU1wT32aZVQ2Yg7fceWkvSPENhXy8V6MmJCnQZpvdKxgNcMKUPeY": { + "balance": "4317.316754106", + "bytecode": [], + "datastore": [] + }, + "AU1wTEqrSrzATLht44zNeHP85T3ky97oXpXgPxd9G37vtBhpqkhq": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wTfYu7urLPZz5Bi6ADj4bibUc4F4BWX6h29bCDJMqTtWy8qQj": { + "balance": "146.039603960", + "bytecode": [], + "datastore": [] + }, + "AU1wTgpczRztKpb4VSxArwHziLPNgGs6P5jAeK66XDvEXNTeAacp": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wUJ3dR3dYAEyVSWdfKHHq8g5nBYU1WoG2n2Z5DCR2EASypzFg": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1wULGJ5B3FpnkoBYcBUTuURc9ZVfMRxBC9N9Ya2kJWemQPEcJY": { + "balance": "875.237616295", + "bytecode": [], + "datastore": [] + }, + "AU1wULVmEQBj6KwBgvjpUqviLWqa9bf6EJ5CHfPrq7dbFxcTLH3Z": { + "balance": "1062.640777959", + "bytecode": [], + "datastore": [] + }, + "AU1wUbrovAhpB2bJgrpGCuGCx2LRjmyC2ngEeLcHyXDXh6GgTE7H": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1wUpua4MV7Qwfg3xcoxwaNk93dbH352kNeLwnBdfsmfnjbpdw8": { + "balance": "160.066006601", + "bytecode": [], + "datastore": [] + }, + "AU1wV63yjRn57QfXheKT6S5bL4t9xmRN599qdapKGrJhCXNSKjEe": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1wV8YhdtWHzerc52wjdd8Up2HBtjYUrrq23vi8MUbbUjcbfxGy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1wVXFQQNMPsFCJDXjF8rFMCB2UbPRwDpCVTQLJewu7BrcamimB": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wVaCAaG3Jmgr6beaMoy4Fjn3MdyizRhuLDwFuA9bXcmU7viSV": { + "balance": "2221.662349036", + "bytecode": [], + "datastore": [] + }, + "AU1wVhSV8vN89Kpk7dUxKgGrtEPZt7eF82M6K5wnTwnkfxxwgvR4": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1wVzettwXWVYZ2DtHc4kim4LVhMRuFAAtVbz3RB5Ypg32pdmUG": { + "balance": "2183.654290755", + "bytecode": [], + "datastore": [] + }, + "AU1wWJP94wyhhhTbeYvDksNrvCNEEZKTbJdWH3wkysdiHRRSt7a5": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wWPnCi5UjpAsUXY4qaRgEq3jRS29hKwMVX7QzqXN43xVP4f8o": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1wWXUvBwb4Fgu2bBtJ5xkvC9SdMAXgK32sVzRhWoVSjCMCr9SC": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wWeYRy9etBRQPqk9CzhjJnDP4XcWnhbw5oxvC4oUL93XyRJEL": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wWijMeyM4vDPhNMcmah9ont7ZuhfgUzpXLfcgUuxnE8K2oAK": { + "balance": "45.182703931", + "bytecode": [], + "datastore": [] + }, + "AU1wWqxnwNDuCYf6hHWpENXaeuwFfGSZChv3WJKxTuaFmXzVyB1q": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wWtzUbq1Z5H37S6egVRbraupuC3DWc5n2dKynUgQwHc55DXMt": { + "balance": "2094.587097867", + "bytecode": [], + "datastore": [] + }, + "AU1wWvoGPSfwra14yBWW9J7YJ1bK1rrc6yJMeb4a3cPG8LrRsQRV": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1wY3ERfmbqxd36M2spNjDffMpiQDk6jGUB99BwG8K5p5tc5wRH": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wYLE51EGsVZ13Fq8dvGKdhZvmehd9VYoTpuRBGwaqHmcEmh7G": { + "balance": "1432.301670384", + "bytecode": [], + "datastore": [] + }, + "AU1wYfwT6NWrD1aVfCfmubMo3Rq1jahQm1MTJqLd1uZEkdDEqkzL": { + "balance": "3565.560969500", + "bytecode": [], + "datastore": [] + }, + "AU1wYjvvWwWqFhuVmjm1C25AU9DWjqcnMymvDGsHBnRgEnbnApDY": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wYvk7ZmQZ7ocoK7DUVBqNuxLbjX7fAkxh5ivh1stWZ27wpH1P": { + "balance": "150.165016502", + "bytecode": [], + "datastore": [] + }, + "AU1wZ2njXBD6zHK5rQNeuevWzTsoMbTdXZ9JntWDwuhAv7nhFQMK": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1wZj2tpjvPRZhM1EumDMRke5DfWbzi3htDQdUmaB6CQ9bThNBU": { + "balance": "212.495498136", + "bytecode": [], + "datastore": [] + }, + "AU1wa14M7GzWef2CcgXqMttiP6GKb71pakJm6LfVMswfNHm7R5LQ": { + "balance": "85.838150364", + "bytecode": [], + "datastore": [] + }, + "AU1waAPDhGo8DwJqf81UNuqpuCBitEcGDGNo7jA4mtVhtJM1fyTQ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1waRLUK86DJxYSEsuB2sBaVHra11qjebvzKhDP69Gc1FRRU1nZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1waSVnicniX4gK9mUBJmr2LnD3eSsWaLd8gWZ3yrFxQC78Pm91": { + "balance": "1495.481453096", + "bytecode": [], + "datastore": [] + }, + "AU1wadFJue7QeLjwfGnHUK5bRbjcb1mFxhrmQACGnCXfqarZ59n3": { + "balance": "2146.387278321", + "bytecode": [], + "datastore": [] + }, + "AU1warWrLqrNny1DzncnYC4gEzzorxPhmKcngjFbgT9aVWvHuw7F": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1waxyg5oBpztAVNyLHFPTiJ5bnHrAy3QS7QmBCojz1KUggVUqZ": { + "balance": "4.502927102", + "bytecode": [], + "datastore": [] + }, + "AU1wb8rg1A28wpHEaW1bVeaAJ1yuyP5aAYew6LuXC4N9bJniHftY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wbPugth44CYJSiz2CMNPWc4e7AtKshd6FTJ3Y8s8n55RrXf75": { + "balance": "2484.922537643", + "bytecode": [], + "datastore": [] + }, + "AU1wbYPojkEepfWaLugknJWr21LwtLS4YiQd7LBpQTk52uwJgTbZ": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1wbh2cGWD9XUFrAvKjowb4nBFpEbSSeoHcp694BiwC5Xqjr6o7": { + "balance": "1883.648102581", + "bytecode": [], + "datastore": [] + }, + "AU1wcmswBE2t1XUpSL2PfHbxj2Q2YhpiSGK3US4QRdYH2jecKJZv": { + "balance": "2003.632120217", + "bytecode": [], + "datastore": [] + }, + "AU1wcnWpHMshVQ16qPmbKQx858g2SnswAtASkA8hwZ2BiKGjJf7P": { + "balance": "1078.742955945", + "bytecode": [], + "datastore": [] + }, + "AU1wcrJHMc17asswTDdUCBSRJawQbxGazro6Kpa8sVjZhaGwV2TJ": { + "balance": "3184.096380960", + "bytecode": [], + "datastore": [] + }, + "AU1wdFthxMoNq6FWACtz8k2pPx4ERgC9nma62T1zzBBHsbppnGuS": { + "balance": "934.932682597", + "bytecode": [], + "datastore": [] + }, + "AU1wdfWFYz7yjw3VLgwRcu3ySsTNxerMjzgPdqejxH95YGywKdmK": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1we5h8wxr3FfVcpjJ8nBj5Lc89zV1NMLKwziYbMt7L73KDJXrJ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1weUNjLNLdeQMuEUs2zuEJUuJG9keTmovF9SX3hjTQJWTZZXss": { + "balance": "955.582615406", + "bytecode": [], + "datastore": [] + }, + "AU1werVQUp6bTBZptuWrsZ4D6TnhzhzB7qvEaP4D5PMarioe7tBt": { + "balance": "1379.450917748", + "bytecode": [], + "datastore": [] + }, + "AU1wf6EHsuAnWkG1fnZjA6uqkSeEuuJ34tmMtowwiB57EPFYwqS5": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1wfAjVcP2rnCjrwRuYLxPCsWY7FCA6zaxy8J3MKVhNLyjMtw7g": { + "balance": "116.336633663", + "bytecode": [], + "datastore": [] + }, + "AU1wfNryKLCbwnUXYC3wnxB1i5AJyeZpJjrQbnbp7MmBx48rMJbu": { + "balance": "972.142616614", + "bytecode": [], + "datastore": [] + }, + "AU1wfiYgRqhxqpXoLCsKLbxDy3tgRyRwf77QaoaR3ZFnBsr7kLQ2": { + "balance": "1294.734419964", + "bytecode": [], + "datastore": [] + }, + "AU1wfzHvX31ntgP8vyFPG4fAqvWBHgRYy2ScXkN91dkg2wUpTedT": { + "balance": "2368.039208012", + "bytecode": [], + "datastore": [] + }, + "AU1wgxdoEuHyKy7SuqdwBxTAqfWz7CGAdcFrYAsGVewF9e1GzDXc": { + "balance": "1228.546720169", + "bytecode": [], + "datastore": [] + }, + "AU1whFm7fZCcQEQtPAKnj4KZS9mDrjgNCQ5uQvwatYXNfNExCVnm": { + "balance": "3292.490754613", + "bytecode": [], + "datastore": [] + }, + "AU1wheeoBSgXgVjsayGPJv2yQ8zEjbyTAE8tbvsaEG6LKW8A25u2": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1whi3Csv1ud2RWQZrTNATxGosoR1GPeEbvaK1wxz7uhRCGvvQG": { + "balance": "2566.404122338", + "bytecode": [], + "datastore": [] + }, + "AU1whtX328JypppQCX2mQ6QABuCngXAYVaAo26WBFBCAbJchQyEE": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1wiLHvgb9d6BD57HVCgaPAtRLuBvKzsmHfDQGfVDeQHrXFB1RR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wiVe56bt5Lvz6qtA8EhgCQcDiSFHycBLmYA8mau7neeKfjgJc": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1wixEViUJ45i25JViVRv68eW7rNrJVnYSURfZT3FPHMVTXb9md": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1wj2ea8PCSxKzN7XtzRP45DrEqyokv9HoAdRHWBEzrjKSwigh4": { + "balance": "678.066871467", + "bytecode": [], + "datastore": [] + }, + "AU1wj8uQ4V5VkKAMjSNFbzjLMiJPyWXUbvCUNkiESxuPLJwAwLJC": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1wjgTkJrNXez61sbyweZYbidQoGP2zevi3P6M9dczrsMQjreHU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wjoVyLRvVJ5GGb1eQEBb43FbuwViVUdVFwBc8zXQSDcNKRLU4": { + "balance": "35.118871007", + "bytecode": [], + "datastore": [] + }, + "AU1wkUwiQ4KAQcidA97ps2NwTz1eEFzhC4gveg3yYSPNSasxih2G": { + "balance": "5182.935122344", + "bytecode": [], + "datastore": [] + }, + "AU1wkZM6uEcFexPCEnv4QFecsZ67wyFiAzAoXWNo22Swm1GHhtys": { + "balance": "1386.520570987", + "bytecode": [], + "datastore": [] + }, + "AU1wkcx3hKrqjnGCtG9PUp19aFbGsBsVUtvKYEs7ooLncVyjwebz": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + }, + "AU1wkeWcJauZd6qn68dc9y3euiLrBNCfuQ39Td8HipKn33fDPsxM": { + "balance": "1268.516228512", + "bytecode": [], + "datastore": [] + }, + "AU1wmQt6m6JvfrUBSo27GKf43kvTsRLw1NGYenm9iw7y1f423mEv": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wmbbSqxGg9H4Mggp95s6qUNWSxjwftxrp9NXrzsjEYzi6iRLH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1wmeQMmGKcFb8tTubKvUXERse1KmtfLgLxgdukXgmfKMYiJEfN": { + "balance": "4409.290024710", + "bytecode": [], + "datastore": [] + }, + "AU1wmjjKFfAfRqwqkztYagoH6wvzLEvTSq5urwk8VAp8mjGgCXUz": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wnAk3TeukCurRPrndocKwHnpVm5pxcLF9szBGhpbKFyYJHD7b": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wnSpZxBSTvy4eZMTgMrZnc6JZFqUn1GCUpnN9HYJLbnNA7PvD": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1woMAZhixeCAkPnhby4YCTVnL4MwoYGGbvcejw7Lt8fCskRwqd": { + "balance": "2509.008428813", + "bytecode": [], + "datastore": [] + }, + "AU1woNKG8Ft3b5T6gfRrARB3F9n88oDSpHT1Z5Jcf4jzXVrqZSRk": { + "balance": "2831.628985181", + "bytecode": [], + "datastore": [] + }, + "AU1wokDY5on5XKUK6Jc9Pq7Te8PLxaS6cmqy8EStT2PbVsLLo35V": { + "balance": "1978.521836031", + "bytecode": [], + "datastore": [] + }, + "AU1won3Smh8biqhxqGMzNsQ4BZtT31kpzuHyspqEV3tDcS7bqg5K": { + "balance": "759.518195618", + "bytecode": [], + "datastore": [] + }, + "AU1wosuUaSPBWar5zs9LavCYu4GeQ493sv3ba4UwyrVuAjankWUx": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1wp89rTrJo8C45ZSGfmtVCPvxtVzDNB7DRVRXP6nA2pfHDxSYr": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1wpE3XWoRY35xcc2gurGBSTiNxivxpmZUmiDjDWiTSpjWd518u": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wpKtgjrdTbWa6mvBTZgJYBqXVGk8uvttvSAKwQGD2PTrZMoqj": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wpWSHNagvVWCrswVmMG9BVQLjg7Ka6gM1K61fNio1ppnts77g": { + "balance": "1331.377387102", + "bytecode": [], + "datastore": [] + }, + "AU1wq5dgq1mfR44dU2Wi8sfGUusLkq1foRhjsBtTrZgwMN2kcYi1": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1wqZ9BHUPa8EkMVsK47FHQ1qpgVymmSAuCZ8ho9BkySFV2sDVc": { + "balance": "4500.262165824", + "bytecode": [], + "datastore": [] + }, + "AU1wqmdRjQCW7nE4WrK63xL3dPM5E8o4UKzVnzKncMihxJ8dStiE": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1wqw59eSPXrUep1mfCfW1DfrxMVYxJnJy8rHKVHZeovf7pBYJU": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1wrxaLtWEeWijuWcLEJ77cQ9bEX8FDJ3x9gRTbR8xLNpxY7igk": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wsHvFErPsedUnezCfGeJEuEoQaHGkN7wUKy8KVSb6mSEyh5oV": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1wtMaUxrk1npGXJRtP8ZsHyAyrgXfSzMPWrmh16zyovydCxeLY": { + "balance": "4861.624508473", + "bytecode": [], + "datastore": [] + }, + "AU1wtUyxmdhwg7XMxt91r7wL3PKG15dbxjJJLjGYywUBQ4hRGhpx": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wuXBwnTgpXi1nHjxH8xi6azpWAM6MqaUn74nNYDqkejEqFmQn": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1wupMRvrvY5M5WDx3sawccaKS7Adbmv83d6v4QN3aXTY7ou87": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wuw2CRyHnUAePkh3Anq3FeT1SfhUhVv6QyzXhB4zVy2UA7raa": { + "balance": "819.870943574", + "bytecode": [], + "datastore": [] + }, + "AU1wv5JfsL9iYAm8stCzeXhsHoey1JoL8eALBuiyzMVW2jkcsQbY": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wvJJkhwv92BQsdhmQCYJtEs1Bf8gjBnUctMut1ssBzSrxkk2m": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1wvjGTPktc2M4ijNiPZeS6PLtsszEpeCHf7KMxbVf1WxnuF22L": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wvjby4iZddqe5HZ28ogF8Mbf8a534NwsVegTVPSXm8eBYc4cF": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wwBoT8tCktJTm6dUb4JASrmsNxkpez1Vnjex29Fht4S6Sq9eg": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wwMhYhxBnL3GDUvQMSU45zD9i1Wg6NMeq1y7bMZvALiHMQATd": { + "balance": "1254.750474029", + "bytecode": [], + "datastore": [] + }, + "AU1wwNdQadDkuEoTizEWsUxCRV16DinpMfG9EFxa8VfAudhMEwJB": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1wxvdGaGkUFdMhowajt2Tdt682pyhLU1KQakF6CAKpGnAgfqXQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1wy4Aq5DgAd5dXi5TovSZ8AooJERU6wopxXemqtrFVJY17vrif": { + "balance": "3234.948884202", + "bytecode": [], + "datastore": [] + }, + "AU1wy6Btq4ckvqjYPm4aWFuu2hodHx9Tv8KWh1TxVNa2aDmRSPWk": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1wyEL5Y6uT8aeWWbc2rMxNXMQPgxDkm9re4AfqYTZLuCwUonkc": { + "balance": "872.956011187", + "bytecode": [], + "datastore": [] + }, + "AU1wycRzcmCbLGp9YeEkC8rea95LsRxuYYL7WXkdhGxJyAcboC6H": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1wynAdSZxdbSWRcsxZXSpuZHQnbJRCSQSdTLHgLfK9UDCNhoyp": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1wz4KST38v4QvfM2YU6TxQT6ye3LVtexQDGjdXK4QAA4yzzjCx": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1x1Q1NGaDSfcckz9NAta6zjSjb7H4xUAsuEpkBxppvEMPmqTnr": { + "balance": "1150.700415496", + "bytecode": [], + "datastore": [] + }, + "AU1x1jUwYwKPyUnaX7Mpm1kVwMMXWsMF6D1VfUbcsoW8QbnK7BTb": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1x2megzcV3bebgpQmwrQdmnaSCKPevacJn5B3uDrT7E9T8t12F": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1x3AHBMVx2eDqUanR6F29F9WD4KWee9U6bfPgViYDQsjudBVXE": { + "balance": "3406.221754723", + "bytecode": [], + "datastore": [] + }, + "AU1x3Bq25e15FMWsfZ165gHeTp2Q9JcRCQJj2JExKSxCmhZBB732": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1x3UEv8uueEMXcwWYRkY96Y6EUBbNBWDbABHKG8ATGKLQJcjrd": { + "balance": "1478.543183567", + "bytecode": [], + "datastore": [] + }, + "AU1x4HW2Hg5u1Q99cPacSyNjZr6k5qF7C2o9MbLikn5qj82VFEuE": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1x4hxfcHg5uJxFQj4ZK6xjuaqr9fxvWKDWHdf4BDSWnT6BShNB": { + "balance": "1449.297034389", + "bytecode": [], + "datastore": [] + }, + "AU1x4kKkntbG6o9EkfYf9Qa66yNN1F5tSR9MDQp3wUmdd9HPZxad": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1x5BTKpVBMh3rJqPZP3MC6Diyf81QvWkTj5cHiJgXwmqSegXTG": { + "balance": "2359.305714788", + "bytecode": [], + "datastore": [] + }, + "AU1x5KqLpcPQdwpZdFwDhcrQwTvr5b3u1CiUectU7Jis2s7muJnT": { + "balance": "1378.850016556", + "bytecode": [], + "datastore": [] + }, + "AU1x5c4WNBygJNvEe9q2n7LzZLm8pH6edehRyxNXBmeXPvDugSsY": { + "balance": "3042.493433362", + "bytecode": [], + "datastore": [] + }, + "AU1x5io71YXCJsPCDn4FTV7sR5nNo1wDR8E8xR9XszbNYTE8gUth": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1x6Lsw6N6RPw8wC9tuXW71BYruP6jpPDd41y2VQFa833vvknQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1x6PKm2edc67uyS256yPqrUB8dRMmVgaH4yZZEdAzoyuxsPBz5": { + "balance": "169.141914191", + "bytecode": [], + "datastore": [] + }, + "AU1x6bTmNXNFqx72KW4bvWcPe3bNoT6rHJAgGHe4JTm2fFRXjnao": { + "balance": "3458.635002930", + "bytecode": [], + "datastore": [] + }, + "AU1x72tYstjcQg3HRnk2KVS6b9m1TVdVGmWceEKasiQQ125Z61FN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1x7SPvpz1NnExCnzntk6vktd9asRerK8M6r4u9XZkGUfX2gqCb": { + "balance": "1107.547273392", + "bytecode": [], + "datastore": [] + }, + "AU1x7cLCWQLN8KRebZMx2GiZAy1KYRcYJu3coGNc9Jzqs857Thmz": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1x7hML6fhQpP6TJAAgZuzoq6oNJsxPXP2PSvJ3Z55ZSjYRjg3S": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1x7wzpkgDHhdZtampqbvj1NoXYfk7cyRar6ZyqVMrzc5wUQcu9": { + "balance": "180.693069307", + "bytecode": [], + "datastore": [] + }, + "AU1x857R2xBmngZnDXDTp7EDtq7rmotXKWMx54vuiEKXwbhhkise": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1x9AeigWJiCaoxbiEVt294jNt9ZjWww7xgVzA2nhnc13Wv8jUN": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1x9JVtzcVShMiQABj8ooRRSQGJft9BYaj5JSCrdXuZzdk1ao7b": { + "balance": "1675.872032264", + "bytecode": [], + "datastore": [] + }, + "AU1x9RYzerjEeaX1SNEXqzK1JGGJDxPht88uCkdyQLXUTKBW2KhS": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1x9qWfhh67zwC1X7HcoFLMEu5FYrb7M4uKF2itaujLKSDd3Xig": { + "balance": "656.847043868", + "bytecode": [], + "datastore": [] + }, + "AU1x9rQ83z5e1AhUaUKkN1SHmpmhRtYe4zwqcVgvGE7pQKNDeEa8": { + "balance": "3680.742621908", + "bytecode": [], + "datastore": [] + }, + "AU1xA15pQtMbQizGyfXj6j5hmH1WNKdjYj5tkcHx9h72KAWAmE2R": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1xA5hAhTWrDHd9oK4hb8vsGPHKfCVK8hzxcvSzfkDGHTj3TzTG": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1xAqqwmar1EDxGk8iUDW9XVfsK8thjJjBnn1WAetrabgfrF3xn": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xAusfDBmWttrr1Mqo2aYzAZk5tkMQUjYw6adzPwYHVxx24paV": { + "balance": "250.436724476", + "bytecode": [], + "datastore": [] + }, + "AU1xB4oUQ98uLjcN8tDrekcKu3g2poVyozCttHzgELeARDM1o3GP": { + "balance": "1850.254001267", + "bytecode": [], + "datastore": [] + }, + "AU1xBFfNdTDkKwakKby4spAk2r5XjYssfbNdyxWoXkDxwVCwwpyv": { + "balance": "831.563120032", + "bytecode": [], + "datastore": [] + }, + "AU1xBNJsQX3BbmDcjPCj6snYjJNmCHG718Hu9R6WgpyXfaSqeXnc": { + "balance": "1075.366876318", + "bytecode": [], + "datastore": [] + }, + "AU1xBXBGLxvLBKBNZtUnGiicAxEN62zQTVkfR3Va1R1vWvN2JcUB": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1xBpzTtusZ6dxPzc2TRDPCJA376qYAmDZMhoGLj7W8GRJPQihX": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1xC5U4mWJP7zKimx5e1niY4NsURX9BLaZE4gDzAu7Fb7bBNjVU": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xC7GTcbKY2XXh9UAG6DEkQFMKKCcTYsHphdA7c24vkN7LYSPx": { + "balance": "96.534653465", + "bytecode": [], + "datastore": [] + }, + "AU1xCFz4H64DzgHyyySLBUCHuwdREoNG87j3GGmqXeyifGqANXdZ": { + "balance": "1992.644882837", + "bytecode": [], + "datastore": [] + }, + "AU1xCGXNk2yqh5VxXatXPLWGi3iCptw7jJYLtvEixmcDRjm57GtM": { + "balance": "1299.705322763", + "bytecode": [], + "datastore": [] + }, + "AU1xCLcqdNGpbr3iyD34z937NKAvUPocCHZfydoxqY1VjwBgehY6": { + "balance": "3136.613515106", + "bytecode": [], + "datastore": [] + }, + "AU1xCVGctHBNpMV8gPN2BgTq8MyzJivhCZD7xMqA45howpWYaj1Q": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1xCfZ4QM6R6v5D4fJR114avNMaDrbLnWVE6o9SN6XPgz9q6GA7": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xD8QCb1Kgp78DpEuRJBgz2T6SSrfhMZ79hys3J8EnUQNxbYPF": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1xDC6mqFbZSteCUM5TE9ExVAbHfgBfdzPSvShZH6VRco3v6WGk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1xDg9s4ojV2Db8xsYk1crN7nYX4USMuD5Uq6oJajgsn1Ksa844": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1xE3oNFWZz8mULwFx148ByeZFokXJiCEK4WcE7Sfy15r6D8EBU": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xECupsnAc1GnMq6R59tjDuLYEERyjFJfte5tLLctd8WcuvKS5": { + "balance": "782.092788244", + "bytecode": [], + "datastore": [] + }, + "AU1xEPLURt9NTXogFb33GGJqQiTW2jWSeaESp5xgo8K3JEDxaE6S": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1xF3MFkyd4TkPhEve8gqBFfTUuNADUNDXiHS92Caxo5u498Z5c": { + "balance": "3118.737732012", + "bytecode": [], + "datastore": [] + }, + "AU1xFgFT1rSX2kRNV94DUHsaHcMpUhSmHfsP1qed4JQpU97hZbzu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xFptHxyPHEF2AkkG3aFV5RXHMg5U4oG8kz47qAwR9nNt2H6bS": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1xGKACVcmL8smcNfrqTvCqCdPetRZqkHWfNn8KHYM5RUYke2jS": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1xGLpJEvkFxD8YgEcMMXgusZFVSPwdJpJb43FK1wRiagPagKBA": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1xGny8rSTjPTUQzUhmDSjgGMcoXjr7HEHiJiCD6V7wnZ8Tptap": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1xGxSjsREynTvZx6ZXZjw8CcnLkMh9NUZG8D7kXgtiBwdx3muc": { + "balance": "591.577749222", + "bytecode": [], + "datastore": [] + }, + "AU1xHD4UxVNqGW3zi2VtPExj2tjbQDv8yurvG8zqS7QXcwaaqkAt": { + "balance": "1432.781558727", + "bytecode": [], + "datastore": [] + }, + "AU1xHDxXoibTTA8Rjbiy24uWbujM62jmTqyaEP2KvY73RLZYHQ1M": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xHy3cRAcy6gwKpDahiGXmjitYMZ69a8i2dLUBPQi7jDewBBsR": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xJ8ZaEegBJ1G4URoiLSuirBjjKUpmSwEyZVUBhDzyJW7Erm9c": { + "balance": "3724.842679000", + "bytecode": [], + "datastore": [] + }, + "AU1xJDcCcSDYrd3o1potwy1vbn9MEa5sKVy3VviCYR54XmST7eFP": { + "balance": "6445.031958724", + "bytecode": [], + "datastore": [] + }, + "AU1xK8zW9ax5zX1tjHe3uqHFkZFhHNonNYTxkcQGqTTuGd7tqUNH": { + "balance": "1868.420392114", + "bytecode": [], + "datastore": [] + }, + "AU1xK9CjWYctkDeemvSyP87xnXmEmvu7w2TAcxaGyxUTQSxPQd9f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xKb51NyohZguw7taw5DcLnR4xCQ2FGHsBme8wFbDHNNULnqfX": { + "balance": "1041.941445192", + "bytecode": [], + "datastore": [] + }, + "AU1xKjf7LiTeJZWi2J1dyc188MZmGtPo1djnGDgxVZ9UELqKRtzv": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1xKvTVqm7Hsc2gwANXi2UGdx9DM6HjBSr9ikJm4bMzVoThfjwz": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1xL1fAtqJuVVGX7D7t5rCFsnpHQpqPoi6PymKwnk8AWAtzzHBp": { + "balance": "3776.236662491", + "bytecode": [], + "datastore": [] + }, + "AU1xLH4CbWGCCrWqhsgr6RHZ5cT8nYFwx7J9f1Fdt3fN8QD7X1Bj": { + "balance": "1483.106890757", + "bytecode": [], + "datastore": [] + }, + "AU1xMDYkujLcgwzxFrKsY4G4PW3kHf69AQnnjr5NPHwCMLv2yw3R": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1xMZ12fLqP8gnAAuN1z18aggaHgrL432nSKnsbRgMwVXZbhfYY": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xNAwq1jfJkNQXAVaC1TzETaSRnMFcSBHFtXmYKuTcqVDfYWcb": { + "balance": "831.149236962", + "bytecode": [], + "datastore": [] + }, + "AU1xNE7Vxev3TZmwCKtck5HvoWbumLsTfBfYSDE9XHeHbsoKkrK5": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1xNjadbZdLoDgNTsfVn74DKtAhYPZ1DGDasEcybyrk4eyrprpv": { + "balance": "193.894389439", + "bytecode": [], + "datastore": [] + }, + "AU1xPJJEjB3GKF7ftysdP8d9DpJ3vrMtk7FTMUsSXYCZuDfqokaT": { + "balance": "51.980198020", + "bytecode": [], + "datastore": [] + }, + "AU1xPfnm9WrqsoYafuCfu5iW8REuBpNYJ7SAxKB1mV7a3ptWfK2Q": { + "balance": "4515.453453182", + "bytecode": [], + "datastore": [] + }, + "AU1xPg9Mcwc2kgZwP2T97W2QpqSCs9ZMXp2r9PtTdq4S7H27SUgL": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1xPjuto72hUr3gP67RAH6rLbxzRdr8qf163GaeoUBhAtqSUo7R": { + "balance": "14.050861416", + "bytecode": [], + "datastore": [] + }, + "AU1xPqERyhBKbqaLDzjCLjLFChC5jaisCeSLeSodsAHr88YB8qLv": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1xPyHc1X2Jo6MpxnYMeVAGJLrbrbawbVMmdx8xNevbe1TX17D3": { + "balance": "3534.105500563", + "bytecode": [], + "datastore": [] + }, + "AU1xQXks6bYSYh2Cg83uvwHugMeSt147chZgxr5xHm1n5vxTTH1U": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1xQjsTjjpWzALgBoRi8WwyADCDbnig6ApiVYx8UCHso9cBtQ97": { + "balance": "234.980630941", + "bytecode": [], + "datastore": [] + }, + "AU1xQkXGMsNgNC4FB1tQcKDTBRSaF61TSNgDGUiFXzwtx4ygaX5o": { + "balance": "590.778277199", + "bytecode": [], + "datastore": [] + }, + "AU1xQuJLQZ5QNN8hV3zUoYnn6QVrRxTXK1JMkSWs7k34Mag1kH9F": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xRAGfmBHfW6VvPQ81SAZ48vpeT2rk4uDy5dcdYsv3soaweEDZ": { + "balance": "2154.192048440", + "bytecode": [], + "datastore": [] + }, + "AU1xRUKSKMdfGjux6DdNXu6iaQc6XyY64bPZqxweEjqG24Guc4Co": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1xS9tD85VQrqEkBTisAigHo24WLrGSLipJ4Yw3xQ6oSadUSHY": { + "balance": "107.260726073", + "bytecode": [], + "datastore": [] + }, + "AU1xSFAwLsFwM1zw57Bew4YNicKnmUjwnRNFS4LYRsb6GEu1X7iv": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1xSPhfpD1uoPgdTkNV7qVCLu8uQ31e1j9r7vufE2Hd81Hb5Zo2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xSQbLMQVSrZ4BCb5SoUdW1ESYkDTTze9KW4q3qFAkBhEmzdzg": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1xTHXYNukGMx9Mfny2eMWFQnfsK6v2Z87u8vVbvwN4nAtf9Bzo": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1xTWGuVNJ5EhEaXU8qRYu9ZXt2PzE3NfpdPp8seK6nkp1d4hrf": { + "balance": "1932.151212931", + "bytecode": [], + "datastore": [] + }, + "AU1xTgoCxZXKWWGVU65pm1ZEoxQsxCXndaXoJFbXGfDznwEqrYRh": { + "balance": "1144.246574581", + "bytecode": [], + "datastore": [] + }, + "AU1xThByW6Cjm2CePjXF9XGMZYqTvns6DYv8bQbqLA5BvPYxa1fK": { + "balance": "12513.528454772", + "bytecode": [], + "datastore": [] + }, + "AU1xTptqUoVK4UMBTTjT27qYT63D38jrJ6zEoQQ8Cpz2AnoP8zRG": { + "balance": "2338.915876177", + "bytecode": [], + "datastore": [] + }, + "AU1xUA8VvqnGFcnLMwnr432C2EUkgfxog1EApngYwN97uPK454af": { + "balance": "2963.181914322", + "bytecode": [], + "datastore": [] + }, + "AU1xUcXp2Wqq2v1RMDcAa595JwUdrTG5dnnbaQm9AwZTNpN23qox": { + "balance": "1548.484983402", + "bytecode": [], + "datastore": [] + }, + "AU1xUnSMWSDuLRnuWUwo53Znw8c2bPjbVAEXR2L2MHY5ZgNyC19D": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1xVsRXdwtvXj4xqw1ok25Bp15zgvNHonLauXS58PRy7v7JftG4": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xVvy8gUTdNuyuypRchNCAVF7E4ri1kMW5bP9hcQTccFemfw37": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1xWH4dfFrJkkq29Sy7GmA378c5LkrY6R2zXEw2J9syMXaDM7DL": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1xWwiKo6TSS5eJ6cBcmCpZd3KG8NftuDPmPiGibc28oRpPyk5Y": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1xWwkwB5HDZusg9GgBQHpmUkH6Gwd3YsRTUq4TMQha3ENYdKnM": { + "balance": "239.544358201", + "bytecode": [], + "datastore": [] + }, + "AU1xXLMWQKyRFR1RbxoAZQM9pCzsv4tvFyDPrCjBo1MebhN1pviv": { + "balance": "2081.179374524", + "bytecode": [], + "datastore": [] + }, + "AU1xXwQZ4amc6pjuDTkms9ZEJc2EBnk7C5akLH5SMJastgnt3yaz": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1xY3XNqW8qnNvn7SWRxeE2jZVaPELbgxtVG2cgQLyWayZb2Aci": { + "balance": "118.811881188", + "bytecode": [], + "datastore": [] + }, + "AU1xYA8dAJXHaRSvmMywCzrzP88DDhzrN53h5rQvrUQj5LeLo1Q9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xYnmXfK6nNTm1ek9W9DLc9KFQkqgnVs4u24ayyRDwDpiFvk1B": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xYsDsbnT2ERt1S39QPJGp3tffV3EKhszFcP7K1shRZxZ75Usb": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1xZAwhnHMZCYQ4uKxd9qXpPHvKt9sv5rgfzX84UwXK7JuWCzx4": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1xZStrq7RvE2yv7Ttijmj917ykr1Fumbr5kygnUUox8b2G4G2V": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xZaGNbzGpPRFLCjPhwZKZ2KtzAvBVSqfbqzxhfNuam6HydUs4": { + "balance": "4754.043464035", + "bytecode": [], + "datastore": [] + }, + "AU1xZrgCnM5tv6NEQkeWe9bajPiPowpPSiKgpBLyV91V9ZZpbe9P": { + "balance": "1973.317556146", + "bytecode": [], + "datastore": [] + }, + "AU1xZs1FCT5yKxp4C84cZw7i5cjByfTCN2AYhkXYyoPDUVExAXy1": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xZvT3w4i4JVxZen2LeHrpdDGmWLgQq8b18nXgcYPGygthDeR7": { + "balance": "2864.582170101", + "bytecode": [], + "datastore": [] + }, + "AU1xaU6beryBBhiH4b1JbTfqECQQyqKQAX21Nv4hwTsPghXLtxYN": { + "balance": "93.234323432", + "bytecode": [], + "datastore": [] + }, + "AU1xaUZnpo7DmfqcMH3KFudhV8cmM97REQfpaQY4xr1oo4H8EE7o": { + "balance": "4041.504019343", + "bytecode": [], + "datastore": [] + }, + "AU1xb9QEX4ecLSarLyV9RUjNus1J8aJ4JLYpzZ27Gi8biYxKEkU9": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1xbBGcBKjTkooLdrpLRuKdbmiUkAxDb2yatD6r34xoGjrXMijD": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1xbYLn4qx3PH7Yj9ezkcf7tFw1wRJNthRmVwm68ybWpVRxb9Ye": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1xbeRLDYWxuoPzXDw9Ht7o51NViEuNMM9S2zcoCAyA2JDncDdA": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xbivgZtbL8ff8snPFZTZfkRSyx5WJwAPWgLo5DZbGah5SfLZo": { + "balance": "149.339933993", + "bytecode": [], + "datastore": [] + }, + "AU1xcbqahZ4L1MmVyZJs8CLYxmtnbMRkT3c1ZdFfUvAJFrGThY3M": { + "balance": "4072.526731465", + "bytecode": [], + "datastore": [] + }, + "AU1xctmdA8HDhU8fJhETwYCrcS5GspW7SXCzjx8CrxmxV98B62g8": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1xdR7L5ffxrxkmeB2h7yr3zMxL7ZzvgvCXGFEbPa4vWinfChrG": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xdUqwndhdVmGJs7pL2qjQSAPADmQBySC76AHJMijm9D9qgKTC": { + "balance": "3896.882414150", + "bytecode": [], + "datastore": [] + }, + "AU1xdWAoNEGcHt55hpT7oh9jBsSmYS4CkrVShtvHjt2Bxthi2788": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xdekfCSkuNBuv4BEmYbtDwsifB8iKTeniuRi9fLxPUUyKtzid": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xdevdaPvRgUbZv7tUJdsY8jasr2WBy91263ey2aifVKQFD8Jq": { + "balance": "1259.847167420", + "bytecode": [], + "datastore": [] + }, + "AU1xe6yaoQrLJVrgJ8xaBsAyuqDTuKnthbzYozHYiARa7jwnu2of": { + "balance": "1472.529088779", + "bytecode": [], + "datastore": [] + }, + "AU1xeKXqt9uwxRgdHsGYzfHtNfQkTHrGzHUxzs31XbeWCow1uUQD": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1xeQmVQjBhHVZYRD6mA6mtToxyPHJ1wCJhvvs9Mofbh5QwdLMc": { + "balance": "1442.854423883", + "bytecode": [], + "datastore": [] + }, + "AU1xf2bt3EEySL6srR7re3WNWR878aRJSyTiVT86em2zLcM5JDYw": { + "balance": "2929.331182055", + "bytecode": [], + "datastore": [] + }, + "AU1xfNfbD7pLrJK1SA7DNTSkyJ5W1aCzsiM3Q1dNdWDjVQ5EcyM1": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1xfjSWh2wSkzfgtExUuKuw55J9uB2kUzTgHJYJDWbeArHQhwYe": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1xfjwEZZUeWER2C9CHqKbE7kHFQYPRkAf7kMCCKqFgG3iLRUqP": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1xfvVWzhfNPnEQKmy7rffGSbuur9u5XXQSeEwi836saLWCGLg8": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1xg7iSVwFAhyA9jnDv8iDXyyX9aCgwe2jH62GP32gGTGYsjUMC": { + "balance": "2565.179354033", + "bytecode": [], + "datastore": [] + }, + "AU1xgAgmk7f5AgSptJ1fAiMhvQvUW66ki8xnLzdzaudPXp14nLfV": { + "balance": "580.762684909", + "bytecode": [], + "datastore": [] + }, + "AU1xgDCKxxQx1G6LVocxBzVnjATqUAWDmfpaCHZgMT3dxnPaxDiq": { + "balance": "2468.332745654", + "bytecode": [], + "datastore": [] + }, + "AU1xgQBCdXUfqzdF95JuHbg6qhoLFdwcFX6xopugtartAEBsJGBU": { + "balance": "817.342090240", + "bytecode": [], + "datastore": [] + }, + "AU1xgS69frhhVhz4K3SEHQqdaX4oxGVtXyCNCVP9pc5LC6xsf1Yv": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1xgXy6wJsnsmZMNLi9pPCvFzes6n7HdqLAsxYvY3qGY7SySV5M": { + "balance": "801.202736591", + "bytecode": [], + "datastore": [] + }, + "AU1xgYrMxnN7Z9WkcjypWLt8TSyJW7ifJktaan6JXxFnSG2KpbQf": { + "balance": "1370.125643945", + "bytecode": [], + "datastore": [] + }, + "AU1xgao4MzABUTxVncnEdCoHAKbjpMwCvdVYhWHR8XxFF33Skmhs": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xgcYgCMN5kpwmJg6dhqy7Kuxhi5MXA9nkAmmUpkcc13aWKjs1": { + "balance": "675.535406501", + "bytecode": [], + "datastore": [] + }, + "AU1xgfpa7bgzkxQg4Vn2gsrsrpSwpHKPt1rGDFUBb87tsjo4hN5j": { + "balance": "2531.046386272", + "bytecode": [], + "datastore": [] + }, + "AU1xgtGKu989J9hhR68qvq1ppUNssoKCVvjjRRGJWETZuRGw7R3M": { + "balance": "146.864686469", + "bytecode": [], + "datastore": [] + }, + "AU1xhAdYXcWxcqRcxxCsppGzL1sRd4vRhWqSotEYeyiQyFy4pQ7x": { + "balance": "6070.990950343", + "bytecode": [], + "datastore": [] + }, + "AU1xhM8368yaXZj8L6fEfdhSGhyvoDenQ3dqvUQjgM9ciS3yzgC8": { + "balance": "5924.783237701", + "bytecode": [], + "datastore": [] + }, + "AU1xhVhAGKLdQaYeaGEbS49MxzxaHJViVxzm4bvmwbUUAHngPxPG": { + "balance": "3482.654111781", + "bytecode": [], + "datastore": [] + }, + "AU1xhgwQJtgLB4Vv1Hq81vvdENzVtd9zeYDFFbRhVvExTVNuu1j9": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1xhkPPLST3iJsnj4npJSxHKdzP8nKQ9gZA3Kw9KSYAv1FnL8yR": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1xhmNdgp4qQqxwrMobhMHTbfj1mHnQzB8NvPraaXyr66EtnCBZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xhmWwxyGs1unoHTMJihhEpNzRw6cvzHt1Y7ZLoCNVHGtdHVEw": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1xhodsBGNzyirJNTbtAeaGE4fEwcDYdZSbCXH4RU7PTbQaf15z": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1xiLMwt3Spx2RmyPGZudPXEUouUwMwcwmbA6CcGeF4e4Xmw6rZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xiQwbwUqm3wT5QyhcEqAbVptGyCPvbZCH44UZ7KANppCfCWrJ": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1xiaJWWHAZD1CoGwPjtrHjjVQU9mtMpTJxtwCJWx5tgKhiFnGP": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xib6JhNnwGwcBox1iZ6ATzZMgf4sh1Vkyzk5w72ejhGkrUqmh": { + "balance": "2350.774145838", + "bytecode": [], + "datastore": [] + }, + "AU1xirnvScE1i7D7mwpqKm36YBCB3x7i4UVxLR9gdTyvHjYd6qQA": { + "balance": "8196.356993440", + "bytecode": [], + "datastore": [] + }, + "AU1xjCY3hMrADwvVJAHntEwsCxN14uCgoxjodDGF3v9UtHYZ6rAr": { + "balance": "631.360135220", + "bytecode": [], + "datastore": [] + }, + "AU1xjJ1GN3RdDXNTArTFVsZN5HFxmg2PoMLYzFPYJXrLcngDAKtJ": { + "balance": "2404.209828082", + "bytecode": [], + "datastore": [] + }, + "AU1xjJj4gjSc1Wp96mGdqcKdctqKcMhcwRzE5E22L39ScGZzNgY3": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xjSz8qZLCBqR3A7FTvMJr63ZFnhcviahG68UUF4KupZ197Yn8": { + "balance": "1965.389696152", + "bytecode": [], + "datastore": [] + }, + "AU1xjcDWVQimefp2oWVSuDsxaQgTZZKAr11v1YfdRfLBnWZ3ttEP": { + "balance": "6810.712973955", + "bytecode": [], + "datastore": [] + }, + "AU1xjwSuhnRvWyzu8UFprBqUh8QYAcPwYkEiX1A7zS5dnJVQ6YYm": { + "balance": "1020.658924745", + "bytecode": [], + "datastore": [] + }, + "AU1xkBTSsbxigMyXunp3KrD46LtJJswPnjFbVzB63werhFbLTF4M": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xkH33auFG6Vc83HPBqt32RFthdcRsFqzApGda2SVPPfPvv2ts": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1xm5JFDteuFWBpg3SAhiG5EZaQumuTgbuS6SLx54naKu98rz3K": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1xmWX5Goceiu2HYuXL2HqFtpixjoiidPBdReB6Z8GuwyFou3UQ": { + "balance": "820.567621818", + "bytecode": [], + "datastore": [] + }, + "AU1xmbu64eVz7bVhNfY4d7hYDfbSncivRquZRPBo7kpqi2C37esM": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xmhN3kYXPGwwbx9YxbcBMLAyaGs2zq2ieq7XQ6cAGSmQ5ufsH": { + "balance": "240.068962054", + "bytecode": [], + "datastore": [] + }, + "AU1xnFbeiW8XXktRxj1JGRA8sBVuA29DLYowr9P47PvGFWpmzdnn": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1xnX2qd1zLPakeaZJMX2X6fyVTsdJPdewwMs9RvJfNrPtHTGdV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1xo2QSeV31KtsNAuMCiWiC5uaVdNSc8SYK7ZEbkVev1ppuLAVR": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xo4hXP1gHJXsCP1rRASvtUbycg9RW8VfL5VBcNAZdsm4i1EjJ": { + "balance": "1397.254618744", + "bytecode": [], + "datastore": [] + }, + "AU1xoG8DkC47FUsApFV879imoiX5823cGULzXvDTEXwVzpjsFJeo": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1xoeV2frQn9YqnRZLrnwCMDKp1PXDxeQqpgpwUyGhLppvx2nFv": { + "balance": "82002.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1xofCYmMQn2ZDSZgaYTd7R2mZwqL3LeDcZh4SFoNBP7RFRqhvQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1xpLFqKXmvSa1HDVDV1i2gZ1pnrWesPMn4mo7a8PzdJFhKuMRy": { + "balance": "2745.670444979", + "bytecode": [], + "datastore": [] + }, + "AU1xpYdN1xq4tJDKoH5623L5Dsadumi72Xrmj6j78Rxpr6M2ThVZ": { + "balance": "89.933993399", + "bytecode": [], + "datastore": [] + }, + "AU1xpmNataffXT47XZASFyYhEdvmkBQZ7qdWodQaxXm7MRavWrCR": { + "balance": "1229.942712025", + "bytecode": [], + "datastore": [] + }, + "AU1xqE1wVoygseD5x8oWq47rfatwThsNnuJGeUqYrnmLqLKYuSf9": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1xr6cHi4nzBaceMoVmHcYUySipJN7ZwYDzKmJWnYpLtun5wmrG": { + "balance": "1486.717962923", + "bytecode": [], + "datastore": [] + }, + "AU1xrMkRjC3ZihAyL3oZpixJEr1mXtt9x1WikqQMRMZaVHtEtuHt": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xrRZZEopUzQAKCwwcFPvcxqdHyfiJDK9TrG6U7pdfDzeujpa": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1xrnrvmxZ8BTnr6bh4FpwKYTKTByg4S6RGzpuSteXFijR2V2Ar": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xsT7SFDn4xv6AEFraijVXFHDECYBiZdVUEzAPKshbT8fMvoCi": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1xsVLWWFkxgaQPSceremjSz1CuP3MomyeUkyDLvf1MAZT1fYrF": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1xsVVNHnJPp5APUBRCwCoj8kcZ3eDwL6kVSEQkbrDdUfYBnMNX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1xsWspGYdfnx9Y1acBYyZ9p1ozka3BsPb1wsY7ukrr44bbybtU": { + "balance": "1066.416050077", + "bytecode": [], + "datastore": [] + }, + "AU1xss2Whmf75T6CQ5xRC2uJcVDFZZ6NpS47FUrKx7AuTw8dovyV": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1xszAC7gFQdPw7FwfstheTw2UZBgx9f4Y4oubd7XCwsQbF1uWn": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1xt26K2fj5M4dZ1gJZNjZQYTogVwegekX8AhcwesiBKa9N4bnC": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1xtB3CNAjEXVLsAXiv7yeSqiCZt68MqUumq4SoG8fwt25JJhDp": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1xtKRwFBXuKc1UJhxPb5qidH8VFRaj2z68UUCSHEoUY65tt2SN": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1xtqHQoV1u9omDnFxeS9UkU58EW9oh9ovC3wKoY7bfjJzWqBSN": { + "balance": "154.290429043", + "bytecode": [], + "datastore": [] + }, + "AU1xuTSeEKj8ojKyim1pWw4nRngDJx9pNR5CurogF1ahjd9oimDK": { + "balance": "4774.211479340", + "bytecode": [], + "datastore": [] + }, + "AU1xuzeYCVx1Fr7WnEzAV8gXusEACdGT9dhbbRBpdy7KHb4VG79H": { + "balance": "1674.112953184", + "bytecode": [], + "datastore": [] + }, + "AU1xvcYZjJgjF3i3NM6Mu67RvS4GrPqvfAvn1tYBZwww6PZ65fQg": { + "balance": "27.230627854", + "bytecode": [], + "datastore": [] + }, + "AU1xvtU4SCkVKm5mqc4inh3gfACb5K4NaCnnD9tN5uFg8LfQiCYm": { + "balance": "658.047699359", + "bytecode": [], + "datastore": [] + }, + "AU1xwHPggkbUfqKbJZmu5wnKA2hgKjQ7wcLBgUg22KS7wKVAfv7m": { + "balance": "1896.236264156", + "bytecode": [], + "datastore": [] + }, + "AU1xwn4RaA6aqnu83U63mjmdhr3H9SKRqSKGc6zAE27EkTXR2W87": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xwsv8GaP3tPnX1AUqEzaV6iqY3hx7hxb26r3sCPk5rSxguhUs": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1xww2qoecUKSKHRR7uCMbBMFQAukuLYsgUBJGT3rnvaLBSiKwU": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1xwxVmgoeWt2EJLYLR8X7vUMLV2uLRzuhZXavxuqTqMCTdFmgp": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1xxnCWGj7xPVnrvUrYgHGBuqN9tk7y2ESuw3Sp6Me8Y8gXtq3": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1xxsVH6NGHFJfkxaEDKAsBuiqT8wXPeaegg27APQQ7Gcr3p2mD": { + "balance": "3034.911565717", + "bytecode": [], + "datastore": [] + }, + "AU1xyCtJLaJcysAhE8UfjDBqrEaHJG3uFBJvjTKEwo2xvcZRxUC4": { + "balance": "2440.600966136", + "bytecode": [], + "datastore": [] + }, + "AU1xyNt4g1tNdNTMyFib8gv3SbmMvFmFM9XPcdTtqCMSRswKFbJ5": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1xydGZE6Rp6iJofKoCcY89qScyfR8TbxeaxAqK94hPKzZc25K4": { + "balance": "99.834983498", + "bytecode": [], + "datastore": [] + }, + "AU1xykbnABAUKdg63N47EiA5PnGZsLDroa4tNN9rnivyxwNMswCg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1xzrTBs2j1ZyqK43ig8DSyaq2wXrGPDRcQCuCSGmHBA5QfZLN4": { + "balance": "1911.651223866", + "bytecode": [], + "datastore": [] + }, + "AU1y1YBoysPyeDw9XX1iF2Le2PbKch1VeNuqS7mVD5xZz2Y6m2VF": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1y1nHZjdTwFD7WfeoPg5FCrWTEngkZET2gp5rpfa4dL5ajjDgB": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1y1qCRTKzfAjAFpejpwxaThe1eVB9Nqn8y5j5PZiwKtDKvCMnM": { + "balance": "4583.560378158", + "bytecode": [], + "datastore": [] + }, + "AU1y29DjT1oKrZ4Kq9aFoWqKCGina3qr8otz3LkyRfsc1Dnk6NYd": { + "balance": "914.039147060", + "bytecode": [], + "datastore": [] + }, + "AU1y2EUA4GgvFvnLUwvCBqNtnndSvEbxdrJNnXM2T1b648XBuzoK": { + "balance": "57.755775578", + "bytecode": [], + "datastore": [] + }, + "AU1y2LoFc17oggYxUZwM2dKrcvVa9nPx9doQjhGBpg4Zn3eDXCr7": { + "balance": "26.736444054", + "bytecode": [], + "datastore": [] + }, + "AU1y2k4r83qXpjnqiJjiCn89rP8doayxmucMPGsJUnaEu7pHUMq3": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1y2ox7pSaVM5zsZsPduxhFxXUhMvTq5viqwoDVTsUXi6WApTme": { + "balance": "182.343234323", + "bytecode": [], + "datastore": [] + }, + "AU1y2rrDzhNyokXWESfQm34gbRmjZ81dabG1Hk9zyxJE24UmhcyU": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1y3BE1WbZ8UjpRbbsLoL24X6Jg7w7Xg265gMG3Td9MknYU6LnB": { + "balance": "72.338453544", + "bytecode": [], + "datastore": [] + }, + "AU1y4c5aXcTi97iZ5mLbzCg9uX7V1c846V9dyjpTtZ5LFamKQNYK": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1y4gywxrEYxNGLTGojVArBeS6da7Pup9FBUEHCgN4Rss8usm1p": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1y4t6PrjapGGV4iyv3rNQBxyHL5nSDeYpaHBRMbLQiW235dy2N": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1y4z4Cz5geWhZgWG8dfDfZ3WN9VTEcpaSp3jvwYfYjZRtp5cFK": { + "balance": "3280.460738581", + "bytecode": [], + "datastore": [] + }, + "AU1y5MNhrYT365TL89NU9aMyFNguPSvgDFhZaxfwdE2BUMSQE7L8": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1y5h8cE6rf6zw8szTWCBv1wp1CVD949kyp2JC3jN2CjHou2mLo": { + "balance": "2020.867563494", + "bytecode": [], + "datastore": [] + }, + "AU1y5km6kJLmZqVX2NjfrFJXy9Zt76Q9hxd8UJWBmNHFS8YZCmpn": { + "balance": "36666.600000000", + "bytecode": [], + "datastore": [] + }, + "AU1y5rVzZSf9NJUAFgVNcwL2vtLhfX5wb4MRsbnCPhkApQ89rsYR": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1y5zYxQ2jtWG9GHS7BetuwquZ2ybAqPmpbJeu4KYQBk2ZL9ue4": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1y64DzfZdzUds9uT3dQLDa2qbz47epsU2SDKoCEu9oybAQFc2C": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1y6F6PAUBHjYDghFv6HXdHfT9AvKZUBb4sRNEmMyzvdRrKhWf9": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1y6zBN3xf24PWkze8kpaUhBWfXLMBot8s3gHRBkQTLhZkiCua5": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1y7FwzSewekpyMXj2g9msZF8jtcuYQcjVtPib6PZ4WQcdSAEo4": { + "balance": "1601.666507098", + "bytecode": [], + "datastore": [] + }, + "AU1y7MHYXMbccsvyKAPqfQBmJFEBy7JTjNzwRUxaJHiNG7Ajzo6P": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1y7m9JnB3gzmufRvAJqjDhQkwv2H2eKYuVWjWvQGfkC3fVyXmV": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1y8RqBsfzd4s7619Dx9Lf7fNto1gJuQbbFoy4SzwX8V7ieu9j7": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1y8tKCtEJ3xdRwn52ThMnabSfUCdYsgu2qwRDcfFwp8ux1ywE3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1y929sVKvUa3oh5VsUvqXCQ5jSKd6U6hMQJvu3rZ18Aqjwpkem": { + "balance": "885.903792424", + "bytecode": [], + "datastore": [] + }, + "AU1y93LSLnT8HUALV31VFhw2j1LuPm72h9x2PNBPvpMWP6N47Z7f": { + "balance": "2225.606562106", + "bytecode": [], + "datastore": [] + }, + "AU1y9CGB8KVWD681U6QgD59jrz6G54QBRaLQNRMgz7biwsNXZpEY": { + "balance": "4078.563843398", + "bytecode": [], + "datastore": [] + }, + "AU1y9dDWU6xkhhXj7XvnfjyRHeeu69eNWxZ5exDLGqJUHV2iynV2": { + "balance": "4088.771725665", + "bytecode": [], + "datastore": [] + }, + "AU1yA3oPSGTdW6YqUAVYmyFBGmSgEarjUeAfK3Gdm2Hb1LuTY16V": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1yAoVACdZf2qvLm7SC4WMTWTgNCmmRpZBqU977tzHCQUNABVDe": { + "balance": "1869.243604322", + "bytecode": [], + "datastore": [] + }, + "AU1yB4bVJBBqRkA7SK3EDSy1yTydaxiSyYD7P9N1sjk6BK3ULMMe": { + "balance": "3809.351829737", + "bytecode": [], + "datastore": [] + }, + "AU1yBEkWUXRsAswo9ESmdj4Lpp25zFWzx31Gq3ecTihchc6Qo4vq": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yByYX3amyDfDT7KoyHMJs9RZZU8o8rhyPVbtNcbeQk7z8Eh36": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yC6tB37129ZJdnFr6Ypsb4ZGdikpj3f3zrYqE1yHFUnNUjS2T": { + "balance": "571.011505972", + "bytecode": [], + "datastore": [] + }, + "AU1yCHXYa4NtRdPSEQq5A273FMkw7kw1Q2pqiK4woLcRYR6EsSP7": { + "balance": "103.960396040", + "bytecode": [], + "datastore": [] + }, + "AU1yCsegv7Hz7RAzAe7wF2B1rJwXci6oPJSxAvxLouGCGpRePp4f": { + "balance": "79.207920792", + "bytecode": [], + "datastore": [] + }, + "AU1yCydVQnsYTMucSvSpbMoKGn9SnFME67cuNjgAjhbERf4G3egL": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1yDTV5MHBNHQBPwfrY5HkgYz6nRQnpc4b6VnC6TRLW5gBhu6pJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yDX5ec8t6xreMTnDygPCHFKBdoaXReExeNyv1gHq9u7A9C67w": { + "balance": "120.462046205", + "bytecode": [], + "datastore": [] + }, + "AU1yDfmqYF7C2fxtPYJKqHfGMsPqVy5N1wVRSen4rBSqT1gf13tG": { + "balance": "122.112211221", + "bytecode": [], + "datastore": [] + }, + "AU1yEA9p1t7iwwTyauG5JpRzyAet1TVy3BYknGZLoQ7tn6qUzm8s": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yEMeWaBotJmv3DHicT6ExZuNj7nMuMaQKyqS1dd7EdBxZxzRy": { + "balance": "581.912023714", + "bytecode": [], + "datastore": [] + }, + "AU1yEStKwJefmFhrjxsfgqtXRmonxzg2HMJcJgqKwMzTsEHPWyN6": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1yEUpaCZFLZCX6oA3KzFL5VVr2yAXVcn8rvcrx1Lq3Fq66j14m": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yEjXueSD49gYWDGbUSxUg6B8Pa3mjGnrEWxeAubSm682zvv87": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1yEkka1QaVgVrkKhRbXenqFdT9hdS9E4gxMhk9T6UGqcSko2u9": { + "balance": "3219.860097603", + "bytecode": [], + "datastore": [] + }, + "AU1yEr1joAj61VkfxgMk9ZF3CEugtLjfndopnrkfeZ1bT15sJmw7": { + "balance": "1308.096929600", + "bytecode": [], + "datastore": [] + }, + "AU1yEw7yyW7bCZYxvXkMx7Je1N967YGQgwrteyqubw3QEhGtVVxL": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1yF6UDKZWfhBugjWqSQjYufq8V3BAE2Y2XCjr6Cdd6NU4MvzEh": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yF9Z8AjkinTP3aFgTjUwsfKce7W8EF9nvuTMiDfktT9YModUZ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yFwhT3GmsJKTo2DPiPdpkghK2CBGEZZsCMjVk9qZctMDCDPAp": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1yG4b7tvPLui3k5eWbBNUX96iWEtSekZ4WikmWXnRQUCQtFtLZ": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1yG9ayHbaEwzKvt3dZ5RGKEQJ1txboLS6FrRtiQki577DWAQKv": { + "balance": "112.211221122", + "bytecode": [], + "datastore": [] + }, + "AU1yGWA1EHvPXNv1yHHhHPUEKifCvDVj8DqjpytNTskSnp4NHeWQ": { + "balance": "5832.596793253", + "bytecode": [], + "datastore": [] + }, + "AU1yH8J9CtSCCJes6PA7TUEzfzZkKDpUqVUDAawhWi654mApj1Fn": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1yHM1bWivTNxshPht1edabMKDWjhQo7Jv6u2jv4CY2D9yiUE2v": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yHxmLL6iu41QSAGE6XqLZcABQAHFvvgzLfekoen82RfJF5vC9": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1yJ8jMxw4KJR32R2AeR9iRCkyJ6RiHtq2iGrJTRDjwnFLu8GZ6": { + "balance": "11268.164838058", + "bytecode": [], + "datastore": [] + }, + "AU1yJCeL73bBvsr86sNmS4iypB9AQ8uALpdNBh479fvQtyjCAZrw": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yJPpRMueFTDofkpY2rr86SYy5Zth17HHyvFnMYP64hETF4iLE": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1yKDC5aUyxkbLiRmhtJC1FqakQX2ifiuK5SM3sVJiTuQEJTypp": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1yKTyGYKdKzJZHzA5dUxbznD3n2ZksJCwZzY7ZN8DVhKdQfs3u": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1yKXmTkBYBCHotEcmbFhWVEViMzJXqkVZoSMh918dMjCM3k1Um": { + "balance": "2565.835901771", + "bytecode": [], + "datastore": [] + }, + "AU1yKhJRyCeTSMov1PzadUtUZhZ7YHd7M7cg2zKLdATwoBdDyHGz": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1yLvbNR8MXQwnRP3WgwvjQE4qFSm6sogfgFnSqbaebWpuDsuLZ": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1yMBZkVgxXYTXbFsdxxy9aptLhkXsYJc2GAL32rew74ex7v3UG": { + "balance": "264.174894782", + "bytecode": [], + "datastore": [] + }, + "AU1yMbRJCtbZHU7RMLoSdCKKBmR8baS1Vk9dbX3qdvrAMDA8ZLtB": { + "balance": "178.217821782", + "bytecode": [], + "datastore": [] + }, + "AU1yN3EfDL32JS2bLWV6kLFMASmfDbhUMBi2P8Apwg8jcKKsXtMn": { + "balance": "70.132013201", + "bytecode": [], + "datastore": [] + }, + "AU1yNdRbh7zEXsDMHUPKhpJUBSissbKRT3CyWX8118aMaJJWRsjj": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1yPFnBrMJygqJA3Dz1VaBDELHwkdGbdDLnP4as9ghuL82skqLJ": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yPKofcQPh9zkQ1p81YRooPNEhG4eSL9Ro17HV8f615Qdk6dhv": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1yPfnjt5KuTBd3awmNJxHaHtcptPejPJKRvWK36zKMAndcHV5x": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1yPouKtiW77kXXq68xxP8zEQ7iEyYdW4GAJUoxaXMDQKz8yvzT": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1yPxVuCPyjTZudnXoP8T57AJHw4HEnnCghW6euwsLH4UQnQk6T": { + "balance": "111.386138614", + "bytecode": [], + "datastore": [] + }, + "AU1yPyVvYSLWk1een2ZVFBcq5gqj4bQJtHUBMbHLLjuJtXNq8YjS": { + "balance": "1064.976818658", + "bytecode": [], + "datastore": [] + }, + "AU1yQ1bF11DrcU1jMrmnwUDrMJyuyqWZ9SFZ7syXdqXNfbbPuVUw": { + "balance": "194.719471947", + "bytecode": [], + "datastore": [] + }, + "AU1yQPQq6Qh75z8BDwoxzBu9JdtHpso8n4CZj3SkcP71z6pBFbWw": { + "balance": "2320.043350815", + "bytecode": [], + "datastore": [] + }, + "AU1yQbfLhTLsekqa33vYSxvVG6pjv5SkHp94mozzCrVVe3QxExW1": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1yQpbbWDJNR76Kjwf28z23EiXJzqbsBE42DtmYXPcMErpVrQUr": { + "balance": "100.660066007", + "bytecode": [], + "datastore": [] + }, + "AU1yQwFYuT9ow3f1zfYw8i7dCgqSLafYLKR13CqoLKyU3uxsCY9y": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1yRZDFAYBBxFx2DvR1phJox4qjqRiE71Vf3R7kFQaGigqdi75x": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1yRtT5BgpCGHLuuQJMvuvhV8CrAzqyh7BCi5VVaAFMr4fy714T": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yRta1y81eY7WkSobGg3oN65GiuekTpjdYFfYPPdgcz4RDKwTX": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1ySs1yhQQh8WwgnGd73ZYxU4PN7ffs3Q6LxPwiUXBaQ5PiKvZH": { + "balance": "192.244224422", + "bytecode": [], + "datastore": [] + }, + "AU1yThEisoLgUDjdagBrDSk8Wd4NSmXjMsGy217fXABuUCbU216M": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1yTzo4fgRh7hB2woiy9PDAZCJU9mwM3wULUtVLnGtY3aaZSW8t": { + "balance": "584.203995749", + "bytecode": [], + "datastore": [] + }, + "AU1yUJdL7dLiu3jSpaMBwRCAzyEvzfCRAHiRFaMKZJ3ddNaFcdmq": { + "balance": "1621.811078391", + "bytecode": [], + "datastore": [] + }, + "AU1yUMPz2zuxDvCsUHDzbpfALEjuuBYpMEYTRRCaLud16U8ckN31": { + "balance": "4880.094379934", + "bytecode": [], + "datastore": [] + }, + "AU1yUmXisMdQ5ycs4UdirW38uSwcnmaep9K4SF4ZTj9L8EGK2Jn": { + "balance": "1142.561600760", + "bytecode": [], + "datastore": [] + }, + "AU1yUuJG9XNpAHFQfR28Xck9N1hg19fVdGX23uGC2Sr1A9bLzfzE": { + "balance": "1209.235534964", + "bytecode": [], + "datastore": [] + }, + "AU1yV387FEpcLqD5yyC2Qt1GzCYwSCEyUkGpV9wHZy9d9RwsPVjN": { + "balance": "3077.708428313", + "bytecode": [], + "datastore": [] + }, + "AU1yV6sGM57EoJ7Vg7iTEP5LrqJ4wawSHKSCoHif6rfDtHTdAnAm": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1yVA1GgeebG9Bt7mzn1raRtHKNB2kLFFBJsq1WweSd1Hjpb9Cu": { + "balance": "957.099570232", + "bytecode": [], + "datastore": [] + }, + "AU1yWQX25tREm6TCMqMoKMfyHfA8ZGgWGgqx5i2LLXUDTJYLxUUw": { + "balance": "33.592344335", + "bytecode": [], + "datastore": [] + }, + "AU1yWoRnaHr7TDGdEjeusmMwXvVKbgg4GGdYFW5SyHuno5SxMdSM": { + "balance": "1889.878807953", + "bytecode": [], + "datastore": [] + }, + "AU1yX3pJNoPfM9AcxUaLN1cNVog6LjLmzqSxLuJR3964T2ha9yVN": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yXkHYEgCcrGThFmZmkNXDjk9BFVc4GBusjRcziiVHE3iu1U9m": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1yXumMvvH454RgTer3EfzvjMjwbnt8dHaGfQgeMJTCAJqMHG3y": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1yY8Q9vrE7sGs1xJEn6XZE1wGzZ2K9rFeHjKam4Euz7ZbYafUS": { + "balance": "2857.099889849", + "bytecode": [], + "datastore": [] + }, + "AU1yYKzr3HbbdcoVnppjETVm9rRkHEruxZx4oF8wAkJpcv4Wuogp": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1yZ4qUQAFmNG46SDLLM3MgtFV2fe3sQGba6Cy9uJMzAPNuMfvV": { + "balance": "3246.659804387", + "bytecode": [], + "datastore": [] + }, + "AU1yZ6c45MdH5VprbDds6xHJBdDbtjNp1Di8v5J7tVHYQoSsJQJ8": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1yZ9D77n3AFnRRr5yvRaL9pofF2CmTe7Lw43dMFYPB3duJ19hX": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1yZbh4zeshaitwhFW16y7ZhjPwo2DaW9pp9S9HuVsDUQAoh4BY": { + "balance": "580.130962750", + "bytecode": [], + "datastore": [] + }, + "AU1yZk3S3XWrXiPru39LBhrx6HTaXYFy13oNFkeTjs1wyVoSkT9R": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1yZnDQHehQNN98e5DWoDL4QfhVYDn6U4gpqZ3L4wiqMpNw876h": { + "balance": "2398.089471972", + "bytecode": [], + "datastore": [] + }, + "AU1yZyJSDRhTfzaMsBaR2ZEYUp35n3xt3AZgbHcjmd5Yg8yXrDcQ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ya9rxYqoaMkyMMu5KgdsFDVCdGEsLMhXXaqPJUNKeJLhcGRW5": { + "balance": "148.514851485", + "bytecode": [], + "datastore": [] + }, + "AU1yaJB22Hf4z2Ck5jueaQDvWQLrq54MtrW3XbdqEwcLgkpgotF8": { + "balance": "621.832114392", + "bytecode": [], + "datastore": [] + }, + "AU1yaSJRtnJnxeyNp5Z24ngiX2JdmU2CT8qwatqSm3iFazrtbobu": { + "balance": "176.567656766", + "bytecode": [], + "datastore": [] + }, + "AU1yahavXWzUNtvLv9dGsNGXT6Lm8UTEJWeMK9i5CQMfRbXWv1pp": { + "balance": "147.689768977", + "bytecode": [], + "datastore": [] + }, + "AU1yaonXDE7Mj7KfC4oXic1D5pxyC86n4hLd4iRiYqqRSeQMdAsW": { + "balance": "15342.208819898", + "bytecode": [], + "datastore": [] + }, + "AU1yb8m84DLVBSeDAp2ViDZg32Ph8B3x2gujRFYVzw1wBMk2iMzx": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1yb9Kq2Ki1i6gh9Z7jWSagb7Hs9mJaAq4JS3WKeAi8Wp2fwqkr": { + "balance": "151.815181518", + "bytecode": [], + "datastore": [] + }, + "AU1ybG3khjv7XTSYGhhcrc3jdmj6PSr3BjQmBE1Pxh6B9BkQtCzk": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ycELY32oiQjZzzAtw7znnC216Fh6HCDzixeTQL9xDFF1zHxcy": { + "balance": "1079.467282291", + "bytecode": [], + "datastore": [] + }, + "AU1ycK4kkRX7qUKahLpJUVwGpJXWayEV5wFuGEgLmKSm3ye5ZL2M": { + "balance": "29.052859401", + "bytecode": [], + "datastore": [] + }, + "AU1ycPpAgtaXtoL2FpET1SGKit5tgBK8mjyo2A1cxi4G2cQRgeoR": { + "balance": "2200.816902316", + "bytecode": [], + "datastore": [] + }, + "AU1ych2dQdvc7t2iag993oBowT75nJaXUsL5o9Q8ricU326Mfko7": { + "balance": "7.831536615", + "bytecode": [], + "datastore": [] + }, + "AU1ycp1Xso16eRuwjZjRW9yhGWcTs9P3QCHe411GGMhX7iuXEoGx": { + "balance": "750.233238628", + "bytecode": [], + "datastore": [] + }, + "AU1ydG5xmpA5T7tH4g99jGw7TiEo7HGfMAdJGsCqiBo2Ef5YH6rJ": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1ydRu2J3VhgQRSjYpuGTumyEdn7cJYdZSy8iQpPgCpfyuKKqq9": { + "balance": "546.319548177", + "bytecode": [], + "datastore": [] + }, + "AU1ydUuZHXgpWDH2Cgsf1ZDZfn85mr1MvAPcFRuFgWrMXU1pQyVT": { + "balance": "1510.371442585", + "bytecode": [], + "datastore": [] + }, + "AU1ydX5r5PPmgQWTmNAJq9AebN3H5ZTvMqLFkY9fsXoChciVou6b": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1yfe1i2dN3D8yatQM7AqBMBM3seFVMa1jToGGCcFttWyooVfqa": { + "balance": "2792.679906975", + "bytecode": [], + "datastore": [] + }, + "AU1yfec9CjapqbADcHWe6wDjSBzPLbtm7bijAAghrEyXkbcq3h3c": { + "balance": "890.652072708", + "bytecode": [], + "datastore": [] + }, + "AU1ygDXtyz9MNRpYEopww5BrAi3fYWkNXeqdjj3C4HWJVypWHATt": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1ygnqqSfUFqBUj9PvvGcVca2caSZkcjE2gFNACCrqJh3UnaE9d": { + "balance": "106.435643564", + "bytecode": [], + "datastore": [] + }, + "AU1yguzmmP8S3tZ6CaZWtKSDQSWF6vKY5bYzSAyKZ5Kc3iB6dF2": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1yhMQDsAywpTr7zYPTNQxB5kN2y5TNtfYZF71Ma4qnRnXWZQZX": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yiDUqBvdLpp3GjsqzMSKoKDdhZXUnzieDRiZph7T1kqRxSSjs": { + "balance": "2619.010185116", + "bytecode": [], + "datastore": [] + }, + "AU1yiiHQiLTqim6gwByNH6NMGoGduDR7jfKFR6o2Mw27fzEjnvHZ": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1yjZTFNmMSHfJXwj7Jtb86LuGjvA65xNxRNVrGkD6Wd536WfCB": { + "balance": "4877.618180762", + "bytecode": [], + "datastore": [] + }, + "AU1yjfR77pCwfRdDQsn1Bdkeod41gA3yCZUgcbpzbjfwN1ME61Tf": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1yjizy3j1CyMv3M3bEGx7BCdnso28FN8HCaZupvBxYWtUHM9Pw": { + "balance": "53.231058908", + "bytecode": [], + "datastore": [] + }, + "AU1ymxQ6es5AzSbsJbnE68ojhTXW3cPbTzvbnj8dDbRcsriT4Snj": { + "balance": "5344.815530820", + "bytecode": [], + "datastore": [] + }, + "AU1yn2kJp15LXwu5YN7sVVvDH5WQYYjACXvMRBFCVDGKkdsp9zkj": { + "balance": "1924.678922174", + "bytecode": [], + "datastore": [] + }, + "AU1yn9SRWkpzPoiGW79ffNtJdACoUwkE5ZNYBG53jbb7oxKkFTe5": { + "balance": "168.316831683", + "bytecode": [], + "datastore": [] + }, + "AU1ynaxnosuDUWm11uEafaJ9yyueVvNF89csMFsdbRj3XckmMXtv": { + "balance": "65.129053046", + "bytecode": [], + "datastore": [] + }, + "AU1yndykqGpAafwcHaTWaPja8LDbYHPmefYCUQworzR1QhaqLQ7m": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1yocdZkW4LyZGPPiZnu2MLPwtNeKAP93yJrQBq6ZWrtd6JbZUt": { + "balance": "1448.783564504", + "bytecode": [], + "datastore": [] + }, + "AU1yohKiPrjPqdEvppHFADYvfaLkDPURyDLCm5otnUF1htqMZ8T4": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1youLHdHkEc1z7PeHHehNKzLtZ3qr4ENTaeAC91GR5dipG4n1t": { + "balance": "1686.621318237", + "bytecode": [], + "datastore": [] + }, + "AU1yovNM9Krkb7Hix1KARhKWcdYRo6tata5ohmzLX5azQaUQ5Sjs": { + "balance": "5050.950564797", + "bytecode": [], + "datastore": [] + }, + "AU1yp3isBQDCTVQdYpmnPB88UvcAvtzHf9HC8SFJi4M6pACCDpxz": { + "balance": "1095.211496638", + "bytecode": [], + "datastore": [] + }, + "AU1yp3xcdWbHwCkkXG8zAcrNe5CnbfYL8vcjM8AjUgzYF3QjkqMQ": { + "balance": "2408.166637474", + "bytecode": [], + "datastore": [] + }, + "AU1ypAG4E96ZqWwt87BMU5aeApcmGWekE9VFHUEhRJTSmJA1mZrU": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ypgqivYNk2PWvpA82DUuZuAQrWxGHygGXBs9Y7rQi32PGB8N7": { + "balance": "174.092409241", + "bytecode": [], + "datastore": [] + }, + "AU1ypkqhC5xm5tu8syySQXYZytxjNSEaJdrzykn5uuJqYGoUbFPT": { + "balance": "1830.049390138", + "bytecode": [], + "datastore": [] + }, + "AU1ypumWjhhiGc9gD9iEXp51PbL4SfzAqHJqPuH7RNKrh9Fuz7ML": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1yq6uLf1W366D4genFB62E9yVsuo7w2BKDAU3gs4Lb769jsEWP": { + "balance": "124.587458746", + "bytecode": [], + "datastore": [] + }, + "AU1yqDGWMmFEd2Kzuz4twJAk1anoPEGjmGoWM5cQJBAcwMifH159": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1yr1XVXb4dvtQyYG1SMUk91YnhHoxiZyg9zVmr5MaYFx6Bp3pL": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yr8XG8TyJP1G2d45mZWWes8jQwmEupXuXnLELiehMc88qALRv": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yr9rFBLoVF4REWuuqgaDj1ApKJoFGTPKXdS1tJ4ZRpqDkf3V1": { + "balance": "117.986798680", + "bytecode": [], + "datastore": [] + }, + "AU1yraAswP9kfPMgQrLfAjnBTJbeowYbWLZteUg51WzAkUef3rYP": { + "balance": "196.369636964", + "bytecode": [], + "datastore": [] + }, + "AU1yremdWdojEgHpLcS2cBRT1QvRCBnV93ND1XfLqMir5DfW6QC2": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1yrj7h638vYypSeg6UE4R3ZwbBWQeHE2zCBRKEoopYGqrj6CKk": { + "balance": "1774.882148120", + "bytecode": [], + "datastore": [] + }, + "AU1yrjpuEaKcMnQ3iAi7PQLvhJHbYgakJtW5VQ8fBUJzy9XNZWBN": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1ys5jMmHLmxdNRbnudvL69zCZtEU9VUvH2wKcGEjQoXJNhDZEK": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1yshkiVmRHZAd12S9DSPiWt53D4YFvuXRXgRMGTvt6XNE1cN6H": { + "balance": "2660.102971372", + "bytecode": [], + "datastore": [] + }, + "AU1ythvQecDS8keBCRoWvDTnsrgHdBttsSDhYJMhtZDMVHxYx7s7": { + "balance": "1583.754087102", + "bytecode": [], + "datastore": [] + }, + "AU1yuGx3E5KtqggP8iaPhfpPgLV9rfsY5yaHXGtRm6RmuWh7QzbN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1yuKR2fGcsqzKHs6C9NXPcxT6synLGqi3tKdZ3fHhmMe2VFKEF": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1yuXgqXEcjHdrCykSG2g6skYpkta8RrWtfWC7iuTYknXDAKihc": { + "balance": "4503.200113251", + "bytecode": [], + "datastore": [] + }, + "AU1yup7MWAbwnwV3Vfp6TsTUXhiS8YUcTkaszxmifGxeEJDFaQha": { + "balance": "2055.415143020", + "bytecode": [], + "datastore": [] + }, + "AU1yuuAnDAbYFM8SjH3epuu9VYJcxnuK6fR4sHbWc1W48oRiaFGP": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1yv3WzGLrPEvsJ5eRgsra2ZdYxB6RmvcQJUQYVfTcP3f5dnSFM": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1yvTkcpo8myHXhwCeddAdXgiF8Jy7uQsfXrVTn24X6hpiD5Pjv": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1yvVKVESgR2BqWKrRPf5bh1Ym1KvotgxGaxEtMpUq2VzzBB14E": { + "balance": "1783.834700342", + "bytecode": [], + "datastore": [] + }, + "AU1yvm6yL9y1NAiDfKUsiAzdrkC4F7KwnZide1sCdG23HRMZUm9F": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1yw6yH5qS1S16v6SgAqcP79pDtB6Q7qBrkn9p3A4EozEZGiug5": { + "balance": "3512.177983941", + "bytecode": [], + "datastore": [] + }, + "AU1yw9ZHEH9VhxVmVaRtUg2mPmhbtQqsfu6MU4kkjc65c73SSrgH": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1ywHnUvk1oD5q16V1PeC2jxQVNCAtWUYEEKabQHX61f3U5F5a": { + "balance": "1643.577687173", + "bytecode": [], + "datastore": [] + }, + "AU1ywNhF165LQiC1V2YcNNfdCECN3L3jhFTSEycCmRq1ZtQhyL1A": { + "balance": "2963.651010970", + "bytecode": [], + "datastore": [] + }, + "AU1ywuL22uY8Z3dQFcDb2MTM9JzmF7Zs2izCu9ijUDVxa1BSttPv": { + "balance": "4.743877879", + "bytecode": [], + "datastore": [] + }, + "AU1yxVPiiUcCKz5q5TF3ttfgvNJ7apRgsm4ZSoqHGyc75ZnZuGuu": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yxYesUoGVYiQRbsxNBhHP7nKdYDLXWC3j7m1zFAhaSSwkmkEf": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1yxdjVCTUveX39H8aZaZ6CMtD3H1QkEqyuUCXVN1VC8MxjpE8R": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1yxqwWLkxk1W4ek4JB8vNCxsWDTburonkPqx64wgSzis46975Q": { + "balance": "280.288530980", + "bytecode": [], + "datastore": [] + }, + "AU1yyP311fAHXNQdzWQ8bPYEu4NDKk1QvM51AvzDC9nFKn1CQrmx": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1yyT6t2wDxpQna4RjChkov15EdobkerYLzxNHCiUr38vKCw5U3": { + "balance": "2555.058992919", + "bytecode": [], + "datastore": [] + }, + "AU1yyTMdDaZaGiUXDxHfK1xJPaBuHtvyHJ5md3mwkCgPXLBk3T3h": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1yypWcJbYRZKQLZMj44gXjFR5RM7hQUuXryoMhv68Z16qN61Gv": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1yyyyYm1TnyA1uHgvvivYprJPH6rthKhxKRTDiFJbi3MyKRX2d": { + "balance": "1195.687728756", + "bytecode": [], + "datastore": [] + }, + "AU1yzDj8zRNZ8rcAQcnz4eknQeS7E92uhaoyk1pHWQzYkJegTdaX": { + "balance": "2353.628818332", + "bytecode": [], + "datastore": [] + }, + "AU1yzFjUqHoVHe8j8BEkEY1HS2n1m24djatummbRETwTkjD5ViRp": { + "balance": "3975.102194432", + "bytecode": [], + "datastore": [] + }, + "AU1yzKEiQ8mc6GHXwnGKQTyCDCau2f9T88iovQotHNyiBgH9buAF": { + "balance": "4538.237682943", + "bytecode": [], + "datastore": [] + }, + "AU1z14ryEyAd7RkQJ7UiWcsguiSh3H4yK14QXkWxG244JNf7PdAX": { + "balance": "191.419141914", + "bytecode": [], + "datastore": [] + }, + "AU1z1Sy2DsYZZdPW6tYU2UsL3wUjam5mqUoDSHEAX63zEpZKm5Lb": { + "balance": "2346.457247476", + "bytecode": [], + "datastore": [] + }, + "AU1z1TVg7aqwdSQMhQzRRFsd5btF55WufC8Z1SzY5yGDhd4cXrZ8": { + "balance": "155.218861820", + "bytecode": [], + "datastore": [] + }, + "AU1z1Unn29FA2y54YMkHzdjjy6yEQTyMD9eFuudSeHk2vaKi7u6F": { + "balance": "1153.805377173", + "bytecode": [], + "datastore": [] + }, + "AU1z1nZQ1kn4UsHvy2L8GVKAMocmFJUyjgDdpbnj8U2EkKBqZsk2": { + "balance": "179.867986799", + "bytecode": [], + "datastore": [] + }, + "AU1z1yXtTJQNS4zQsXsXU5fpDUbSbYYpn5UDRqsvMmTTBUgHMA86": { + "balance": "1877.667359459", + "bytecode": [], + "datastore": [] + }, + "AU1z2V1C7oxikeFWpqwNVyc78v6mbfgFGvYEpx1UvRjEoL4TWtoE": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1z2WYdjbZ44fYC8RQqyVQhn5D9GbPeFLG818oNfyWSpNBPoqHr": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1z2XQDn8gzjipv99WSBcGESv7vHLu3mQYP3mLyE7HCFscqjiE5": { + "balance": "145.214521452", + "bytecode": [], + "datastore": [] + }, + "AU1z2Zn9g8dZttXBYkd4SoQr2eRNHWsXc3iRpHZo5Ah9Em9vUy6k": { + "balance": "928.988069099", + "bytecode": [], + "datastore": [] + }, + "AU1z2ucDYCHbqTHS74UpoKqYApby5EjtiCUuKVrneDdS6SxVthUm": { + "balance": "1479.147347782", + "bytecode": [], + "datastore": [] + }, + "AU1z3XMCMJHCWvJS5BLV1X4mhZ4ZM69FQ5k6gHmVKhFiQK8vsNMR": { + "balance": "60.777197558", + "bytecode": [], + "datastore": [] + }, + "AU1z42MjNYi4Gyt285D1joYeSLmdeeQPCNiJ9yo63kuiFzsDeNP8": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1z49yvmy11WvVkNSFCubn71eyVHTeSDgW7pppcYT7VanxeVQvQ": { + "balance": "4970.559881016", + "bytecode": [], + "datastore": [] + }, + "AU1z4QYxT2QmoED7sHJ15EnnZSAiq7mECLKsukhFFPhKWUqwEpkH": { + "balance": "3698.001316970", + "bytecode": [], + "datastore": [] + }, + "AU1z4Rw9HZLVyopXQSzsMWDPeh9dunJvkYPHG2nmQBFM3vn8rC8e": { + "balance": "598.742565487", + "bytecode": [], + "datastore": [] + }, + "AU1z4SCUdY4f7vgrGmuJsCuw8cvsN14S3jLXrDfSxS27h1BKwaaS": { + "balance": "1582.803105243", + "bytecode": [], + "datastore": [] + }, + "AU1z4qB9c8HEB1yArNkRZdFsk7rNtFf73Qgo91mBiHk5vDHSMzDr": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1z57hfm9uf1JbZgsD43K62R1imxyDXzaKjM2XT7dTBTqfrvH1z": { + "balance": "1521.860232792", + "bytecode": [], + "datastore": [] + }, + "AU1z5PDgXxw13VixtKPGo6tF5Qq4PxrMPQ3oWkSh5ugovHic2FtB": { + "balance": "2994.695560948", + "bytecode": [], + "datastore": [] + }, + "AU1z63CS7r4SoVEtqse456m9seoPMcfnCYZpXkwRXiRseiiYKRgf": { + "balance": "61.881188119", + "bytecode": [], + "datastore": [] + }, + "AU1z6CGArrNhUYcxzDHPMj2ffuko2kcxWqVRSjGaoXFGpPA2nfkS": { + "balance": "113.036303630", + "bytecode": [], + "datastore": [] + }, + "AU1z6mfVkk2kyrYehehS1qAzknUHDy9VvWmHHw8XWdDMZMp2p4yM": { + "balance": "66.006600660", + "bytecode": [], + "datastore": [] + }, + "AU1z7g5iZnX9Uny2TGb9gePJhv7DN4nXoqtBHhngrdsGnNCPbWkG": { + "balance": "2073.135006287", + "bytecode": [], + "datastore": [] + }, + "AU1z81Jc583dXDSia2S7k8fSpCSd6g317QJfBgCEnysJn5aVfWUU": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1z8APMZCrPQK2v59ETiMDdHDbLHxWJQCvXYEDU6QF56TcPfa66": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1z8C5pYnbt1vAoQBAtcpCGQd9y9Vv8n77u6ceJ2VXmNKxrPjun": { + "balance": "83.341007389", + "bytecode": [], + "datastore": [] + }, + "AU1z8gSFKAHk9nvFADq1TtY7izUpJV7Kx271dr27pdBSKgXmDQsk": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1z8n6orpjBpoQCWJqLZnPS5TqZArms61sXBXzLkfE5bGafvibC": { + "balance": "127.887788779", + "bytecode": [], + "datastore": [] + }, + "AU1z8rQPrAQd2haXEQpAE3Y68K8bDqjHtDHwRQqAqmT18Uxppsyp": { + "balance": "3379.988390104", + "bytecode": [], + "datastore": [] + }, + "AU1z8xpKxQM1Le4MKLov9sQH3dmZR3SWGQ2mMzNpJnUCiX7Suk1z": { + "balance": "136.138613861", + "bytecode": [], + "datastore": [] + }, + "AU1z8zQWsDvTcrG3eA7PtG2ugGTXvTEteJmfrpW96JwqsYvgBtDB": { + "balance": "621.137698188", + "bytecode": [], + "datastore": [] + }, + "AU1z8zroWdNcThEQPkZ5Aui5tQD15vNWv3Z67jVGq9vgYeUBuYVr": { + "balance": "163.366336634", + "bytecode": [], + "datastore": [] + }, + "AU1z9cGs8JABkovXdy88QTvH1g3CwDuaMq9XJCex7QTmAshqZGV8": { + "balance": "108.910891089", + "bytecode": [], + "datastore": [] + }, + "AU1z9oVg9ote9PQi2kGrVdFYZoVjm9DoMFQDNpNwCVWw1xjsLkm4": { + "balance": "2730.370533026", + "bytecode": [], + "datastore": [] + }, + "AU1z9z2EDyAeTYtnA32DuUnDpb4Q4wKDU1VZZCydjbXtjVGNe8ys": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zA37jjdvtZuKoQw2FSZTGMsAyp32ny3wwyvwgoCuJYXcqSsgb": { + "balance": "4748.926925856", + "bytecode": [], + "datastore": [] + }, + "AU1zAFzgYBGXi3j9fJd6RseRcVUB2DavAbyo69guhFDpZJXyuHBZ": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zALsHQ9P52jiek8kqT9Bsen9byhRTwk8ejNniUzpLmxwB9N1W": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zAssFKtMk1YLo5ikFKW7VQD7G5deYys9YC7QatDzfjXZKfZ9U": { + "balance": "4302.202988433", + "bytecode": [], + "datastore": [] + }, + "AU1zAtro64UrUEX8w9ucJxEPc7g2JhGfUN51v34msjdnURhQ5vpg": { + "balance": "1303.991599380", + "bytecode": [], + "datastore": [] + }, + "AU1zAzRtXp5XVwpeTVkTAk4zErRpTECMb8jHF7rARiuZ3GcBpmuZ": { + "balance": "190.594059406", + "bytecode": [], + "datastore": [] + }, + "AU1zAzesau2ATZse5xMvJNmrD4L7GNdHe2kf7sbG3MRQc4rFchzv": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1zBKJNLZD1gBj1uWYKDse5NBaSKmi4dsKJS96zm6zNS53PKi6m": { + "balance": "128.712871287", + "bytecode": [], + "datastore": [] + }, + "AU1zBMsCwBadhEJPF2SaghA8QpwwSmjyKDQDL5UCboxHfUDeu3uC": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zBQZ6vBXK6dQjvPPk3MgRbUoNwhrqa7ne2gN9uCDsXqd7ixig": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zBTVF4xXi2kCXxsghTMmF55RKqSPUwiugCnU1u8Pkvjky28pF": { + "balance": "195.544554455", + "bytecode": [], + "datastore": [] + }, + "AU1zBV3FTSPT8WWFR8MU8jX85NfdRYLhYR9BkbD5Zc2pMArcvxXA": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1zBVuaE2ASRkQf4kAirXLJ2ffKC1vZsqfn9RsrTJtgiAoYpfpD": { + "balance": "1555.686936714", + "bytecode": [], + "datastore": [] + }, + "AU1zBagLESSGhJ2oFnui3E2syU9nBn7eqjp93b85f8NSQCaAs4uV": { + "balance": "59.405940594", + "bytecode": [], + "datastore": [] + }, + "AU1zC3ywoPvbaN6mGEprABbfjoxSJ5ayBGTfCxCoFo2MRpDrCHk9": { + "balance": "3473.569281560", + "bytecode": [], + "datastore": [] + }, + "AU1zCMNgU4SzHRjva4oGJk5pgD3admAbHr6LU8R577G7SgRs3TRM": { + "balance": "1942.835540774", + "bytecode": [], + "datastore": [] + }, + "AU1zCPHiHz8ptLMqyrA9mJxZW8qFx5YLPBkkhS7kyZcLyAwgcTdr": { + "balance": "1413.698153734", + "bytecode": [], + "datastore": [] + }, + "AU1zCgbzzDpNymjtcxwELzKq1Td8nwPJuG9fBBEzy4tJ2Pn4kqW2": { + "balance": "74.257425743", + "bytecode": [], + "datastore": [] + }, + "AU1zD5mFvUCv2HzuEmUSbzTXm2ka6pLzv5Q7M2ATkPrEn6Ufdms3": { + "balance": "3836.156480812", + "bytecode": [], + "datastore": [] + }, + "AU1zD8VVvqry18tETUWiTVAVdupDbzscvqxekYKNxmQrtZYNGBEy": { + "balance": "187.293729373", + "bytecode": [], + "datastore": [] + }, + "AU1zDKBfBiPSqbNG38N9Fu22eFXe63q8APFhdhF1p3bUGSzXLaVT": { + "balance": "999.002516353", + "bytecode": [], + "datastore": [] + }, + "AU1zDsrFKfSGdRA13P6RShxWWaQr9kPR9BKxeDU878Hgxp6nEeTW": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zDwEvsPNBFNczvn6qKAKBvuta9upjnSzp9o9PXXZzzQNSUzzx": { + "balance": "2915.947986930", + "bytecode": [], + "datastore": [] + }, + "AU1zEjDrNHN1SK9t5UUGCxaiUEc4JHSenYh7ugnPZKhV8wC1t8e7": { + "balance": "72.607260726", + "bytecode": [], + "datastore": [] + }, + "AU1zFYaJBfbzwjxkiDRJLkfRGHeyqKY8LgqtX6BUHvShG1qV1YD1": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zFxMTpTU5Zs9nW5QUPcqTBJfrbw1aEwxmhHf4EigdLuYu9XWN": { + "balance": "71.782178218", + "bytecode": [], + "datastore": [] + }, + "AU1zGCKfc4h2iffNhPka6VtrkUSR2kk3qx7Gp8rrr31Dq8WSvmib": { + "balance": "3087.403981162", + "bytecode": [], + "datastore": [] + }, + "AU1zGDGLtpnPFxeHWqEFKqGBc1d3ioARCMzF93KVKiaztMGLAy99": { + "balance": "2326.946653790", + "bytecode": [], + "datastore": [] + }, + "AU1zGzyBV6BfWYB3Rw1AHv736TNgis2h932predbvMtVyhPzM3DX": { + "balance": "898.444089814", + "bytecode": [], + "datastore": [] + }, + "AU1zH98saEmUvS9sgVTxNSdv5n36Unh9gRhJGuHkJBVpKDNkpvKS": { + "balance": "152.640264026", + "bytecode": [], + "datastore": [] + }, + "AU1zHTLrvY5AXstqfBY51WUKJMHbdmk58sLrC8DMthiCzs6bv8w7": { + "balance": "2919.247882339", + "bytecode": [], + "datastore": [] + }, + "AU1zHUkbmp19aB77d2gtdg1od95Vcbwwjkywmt88jHek8k7B6pVo": { + "balance": "39.092518455", + "bytecode": [], + "datastore": [] + }, + "AU1zJ2of5TJLYSDJKF496PbUv9psiDq3oRLhHnpLSdm1HsS9jtNi": { + "balance": "1115.857341065", + "bytecode": [], + "datastore": [] + }, + "AU1zJAfP1RwUTRTzRNBU7qWowJ3BiNDsA9F497xUwuaGMX6HTYkh": { + "balance": "2725.195734517", + "bytecode": [], + "datastore": [] + }, + "AU1zJAhL3yfmzJZnMgYe8BDDkXCCon7h8jinXFFYUcMYHUmgEVuU": { + "balance": "101.485148515", + "bytecode": [], + "datastore": [] + }, + "AU1zJCCH12hR78nHYpTfHBVV5T2Ny1CdkJrfRwh666K7VrfWTKei": { + "balance": "126.237623762", + "bytecode": [], + "datastore": [] + }, + "AU1zJFC2gEUHJcyf86XpaYi16KKDg4d92LbSqhf4kzHETm7orLY3": { + "balance": "1133.697423488", + "bytecode": [], + "datastore": [] + }, + "AU1zJWv4RgEaF7Z86pbCY79iTEHVweXa54gDPEPRaLZQ98TEWKWa": { + "balance": "880.503445533", + "bytecode": [], + "datastore": [] + }, + "AU1zJevXrPjTdTqEAh8PN3ftJcWK7j7TwoHFXUmJxHPsoadDk4Ue": { + "balance": "156.765676568", + "bytecode": [], + "datastore": [] + }, + "AU1zJsRKvA1A8N4TwX4tKw7F5HgMZGqA5JMatoZsqkfUDbjezkeZ": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1zKida8UhLz2xoBoj6T8ChCgJo5TPUpwp7XFKuxa3VZHjsULD8": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zKsaCp5mqhKmpgppbApjhCdKPGvbtz5L7tTYP6fgZDNqNfbpv": { + "balance": "188.118811881", + "bytecode": [], + "datastore": [] + }, + "AU1zKu4Zs1rddcWtmaoGXN6pKkggVGhPsMEQWkVVyu8qkjngRNGG": { + "balance": "2474.420111892", + "bytecode": [], + "datastore": [] + }, + "AU1zKwgZPxUDfBZXTvpe1zbyiZ1JoFLUWZyFWu8Rgsg5YY8vZVHq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zKxwXG7ckcpK5Q5fnUXiumi1StgonTJDQEV6DBBuLPmwsjeKb": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1zLC4TFUiaKDg7quQyusMPQcHT4ykWVs3FsFpuhdNSmowUG2As": { + "balance": "151.854174849", + "bytecode": [], + "datastore": [] + }, + "AU1zLUmjGtZjZfU2Y5wFanhcHa8XHsXgPLV8dX3pkzBPF2LHpovR": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1zMPotCFu5VCxqqxXAKWJjVvF9323jqfw6EPEKwttAqGti3Fa5": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zMYbTDYvJpmsQTjCP8dgDTQp9BGKEnjKrhj1hfyy9si6MDVB6": { + "balance": "1468.745482734", + "bytecode": [], + "datastore": [] + }, + "AU1zMnCPoH7ys16EPkzAT6b24tXf2aehETEzYLW6B5xvcFbQXVJF": { + "balance": "1398.409839753", + "bytecode": [], + "datastore": [] + }, + "AU1zN3cBbEAn8MamZKmG5Z1gCGrjwSVr98VEYiXu9SoeDNjGtU1g": { + "balance": "30000.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1zN5RoKvxyWavAW765sh72Yq3579Sxz8mVMmihRXrTS3YMTPxA": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1zN5yh8unkZqGQHuu8ogNK1Zd5RvVKEcRDf6ZygSQfhC8eTF3V": { + "balance": "2570.666337534", + "bytecode": [], + "datastore": [] + }, + "AU1zNTJUsX5YqW2tv7uKhTDnqySuycCZfxeGdiFW4b2fwVr9FEB8": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zNqswPKaAqtcRrPPCgk7rWDkVXX7j5QpHfURJLwpqk6EjaGp8": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zNxDMWS4U6rmK8o8BkaUffiLvNxLA3WdriPJFD5tBF3ACcyyj": { + "balance": "133.663366337", + "bytecode": [], + "datastore": [] + }, + "AU1zP8ZrRuRiG3bfuyEWjqWDaRfUUKfJaYS4AhArbtFZwDfN8AnB": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1zPKB6uzAWangcDAsQcuZSVFDnw9xAvncyMJ1NoRezjrEAcDLk": { + "balance": "1966.710392151", + "bytecode": [], + "datastore": [] + }, + "AU1zPktTqG8V9jCUkD8zY32nGQB4MC3XRhdHNmmv2EJq9hoWnFV2": { + "balance": "160.891089109", + "bytecode": [], + "datastore": [] + }, + "AU1zPton9Qz4XXN7ALrFqsPoee8xEPVSKNcfsiGu7dxhaAKWQviN": { + "balance": "2641.944703937", + "bytecode": [], + "datastore": [] + }, + "AU1zPvWnhkFGtyF4TEpWkSURxs6n6zqbABp5xSp7SCZDccwLNTtm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1zQ1KxxuHEG97vAnsZfiBdnodczdVGBfJLqq9BxZdCYYtAvLbq": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zQKcUu4LAzYYDzxxx4oTL64zc8aJ3UsjcZQVdCjETiAWD9nc": { + "balance": "3760.670188432", + "bytecode": [], + "datastore": [] + }, + "AU1zQbyhBqzfdhkZ5DwZJXSmu1zBV3Dx7nJcmE1AwnoobQgzHPZf": { + "balance": "1567.140881852", + "bytecode": [], + "datastore": [] + }, + "AU1zQd4L8HksicEQ98ir41rqZ5h2ym3dnwvVscJyyBdTuDhZJw6C": { + "balance": "1288.024788152", + "bytecode": [], + "datastore": [] + }, + "AU1zR3dq6nWSEeinkH7YVJeqt2GVmD96ZPYCMoBDpAaNyBEWuHJ": { + "balance": "11.010293638", + "bytecode": [], + "datastore": [] + }, + "AU1zRA6EhhUtHB6onC8wBZGfjva4pSdaEpQJWnjuoCLwzUGrAZqW": { + "balance": "6916.187022492", + "bytecode": [], + "datastore": [] + }, + "AU1zRYMbMNA3rRgtg4tamkV2nwYL2d9P8ZxMwWXt6R3ohANK85SH": { + "balance": "1125.015920586", + "bytecode": [], + "datastore": [] + }, + "AU1zRbqczyPGU5CBKvCvVG4VSKEk7FmgGACbVpx2XjFkrxyuXpvR": { + "balance": "579.286785107", + "bytecode": [], + "datastore": [] + }, + "AU1zRfDsCNc4ePKCKRjAP9p3vStb24M2TKKXmhTS7bnjkSdDy5o7": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1zRzbn5xrydoLcFN5ohPKu9WkRExfWLMTNLfUkL7MzS1EVFNYc": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1zSewnH6uXLeMbkXcMfxZg8rnsXSP1fp7Qq2TTJxAFjNQBxVzG": { + "balance": "2373.183344678", + "bytecode": [], + "datastore": [] + }, + "AU1zT1YTqeUAt7m3NYtVyABcp5J8yosB2qnyH9aAxhvqneXfyqfv": { + "balance": "607.629547789", + "bytecode": [], + "datastore": [] + }, + "AU1zTTugu45E8S3We2TpJRqywYpyd9e4qx3QtcXeouiuef3FcEzv": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zTWBRSyYUd3pesHmuC3caZCEUs7P1PHYUib1siyaQ4wrf2U2f": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zTYAout89HVxwQ1hLfVkGHVUSajLKWuE54qVFYLsW3eWvqqYr": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zTehCEzsBWGce9Kabq16iqkdHGLhLr79E2TQ4fSy3pJBvr8cQ": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zTgxRk7G6rAEbq6i6PzKc7xXmA9hfqisfvnGrvsj3o9Uk3cWC": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1zTpjMaqndWzvAhYpbtAJGe5RfMfvWpFEZRZNxDLcQy63Vxqsa": { + "balance": "1362.433709443", + "bytecode": [], + "datastore": [] + }, + "AU1zUdGLf44ygyjUkv44CpQPAabAwHojgCRryKEvtBHYuCpBs6eH": { + "balance": "141.089108911", + "bytecode": [], + "datastore": [] + }, + "AU1zUvuzGwcerfoBwSeD1VAxB5GQoUBWnpR6tGnk5bvmnjeALLvA": { + "balance": "186.468646865", + "bytecode": [], + "datastore": [] + }, + "AU1zV2HYg49Dy3mudzYg5JGwzYMknP7TjsR9jZfC8ZshTD2EaFK9": { + "balance": "1619.321580411", + "bytecode": [], + "datastore": [] + }, + "AU1zV5eSJ1MCwQWY5YW93tBkMyfZeLdrzNCNaw4PjtNwH21ttWXZ": { + "balance": "1433.168548000", + "bytecode": [], + "datastore": [] + }, + "AU1zVBRFg9zVVrdV2D8q42MfPZcHDFp9WyxAjJzXivDZuw7Sc9ZC": { + "balance": "2009.696136717", + "bytecode": [], + "datastore": [] + }, + "AU1zVdGpoTUxbQXBPHjB47LokxZBsJk5Ex7VuDqd5dGTUbaGAqNV": { + "balance": "2909.338052349", + "bytecode": [], + "datastore": [] + }, + "AU1zVoPiT52rmYMvstGnRwNExGPApU6umoQG7c9QZPeWk7hgJMLj": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1zW9vTAmoGvGkUMwr1YePZ2kJuVp49JjsYu4NAXa2oPYmxMSGh": { + "balance": "99.009900990", + "bytecode": [], + "datastore": [] + }, + "AU1zWhfo9cNi3nMAZixrR5NAVWmDJry6jjrhxLwgBypMPrtRsvZe": { + "balance": "2769.524844454", + "bytecode": [], + "datastore": [] + }, + "AU1zWo5PYnNvwck1ZEPG5b6nFZSHmsXb8xtLoCmSXZPMpNbxioES": { + "balance": "1443.774319502", + "bytecode": [], + "datastore": [] + }, + "AU1zX6xuyoGqkDG9GVG8zzRjn73fMmp7qtchRfGyajFsMNmxEaGg": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zXTKxbdkhCTiiJWDoU9XcDS6j5VaBd9QAc5soqKU7rZT13MXJ": { + "balance": "2379.337632944", + "bytecode": [], + "datastore": [] + }, + "AU1zXWiizH658Arb2xyJSru7CbSEPHJquTKnDmXczQfedm1cJHSd": { + "balance": "1570.365374722", + "bytecode": [], + "datastore": [] + }, + "AU1zXd3ad594Tzry75ZP38PhtjUvbgb6hzusnGie4VYT2fQjhbHX": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zXdrkuJuqHPqTWFhYmQSnKRnfAYJpVNdfXKJQeEybRB9uxYJp": { + "balance": "1492.407328828", + "bytecode": [], + "datastore": [] + }, + "AU1zY1jqpCyNS6FoSG44prnyPYFPm3PPnZoDecmD28yzxAhriS2G": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1zY9ihBT7uaVLfniKCBqoFy8Ueko8fQmiexxMvbUPZZxPpU4p8": { + "balance": "32.285180135", + "bytecode": [], + "datastore": [] + }, + "AU1zYDCJXq1NndwfuUAndRcaYCt1LQHyTFtWLRiGr2onPTjQhgkq": { + "balance": "94.059405941", + "bytecode": [], + "datastore": [] + }, + "AU1zYDJaYZLiU5KrbJzMxWLhwXjfPxHTrZRPbMfoh4Ni7Fzbnpxo": { + "balance": "1383.402471548", + "bytecode": [], + "datastore": [] + }, + "AU1zYHzDghz4D8BsDwLyHAbhVc38zd2BqqrfaJmPcjJndLEYLVhP": { + "balance": "161.716171617", + "bytecode": [], + "datastore": [] + }, + "AU1zYSBz2wJQkV8Yg5QuSN6DRe8GWwZxRn4U6uYki4nh1xpYdHao": { + "balance": "648.478240190", + "bytecode": [], + "datastore": [] + }, + "AU1zYYutUDEY7A9gHwHbpjPepQipAZQ4sj5jNxU1Kxehz2SoY8vA": { + "balance": "108.085808581", + "bytecode": [], + "datastore": [] + }, + "AU1zYfV53XjmgepgpTXcphJQxj9t5t5ypEZ684AMBYuLSymsnm3H": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zYmy1xFYKDGwQGbTQ7diYRMV1pYMR6ARaeZFQ4Ljvr4g67eE": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zYpfNxES2YFzmAQW7gc4r5XDdUbLZUR6Syk3Udt2zNYJCTXQU": { + "balance": "3196.933760090", + "bytecode": [], + "datastore": [] + }, + "AU1zZ8WEd3Dund2AkcREhfXQsQ6vmTbbwznPrWxPR5ZrAxddnZre": { + "balance": "181.518151815", + "bytecode": [], + "datastore": [] + }, + "AU1za786Ecc2ZjRU5ZXYHo5neU3iUaJU5JYREPGNRduX9vBUExoy": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1za8D8ijCsNC9sfDq9ZZjqgf2XxNCGNduRT5repWUE5QewFVqt": { + "balance": "146.823877049", + "bytecode": [], + "datastore": [] + }, + "AU1zaGZ3vWq8ZsnVs7pjvvmvfdVBpyMtHEb3fibJLkcVz9YCE4Fm": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1zaduVAhgmy25KNtdVoA8UV6pv4XNCaz4RDCGkWoQZBuz6RFVL": { + "balance": "165.841584158", + "bytecode": [], + "datastore": [] + }, + "AU1zaeo26LH3Q6HXeMRak5aWQsxizETaqSdKYDi6qeWyFrhCgUoK": { + "balance": "90.759075908", + "bytecode": [], + "datastore": [] + }, + "AU1zaj4Ck6G6V9BgxJRH9cmGkUG5SgmoWF45cBsWz3xpoZnZWWeB": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1zb3uG38oY1T8B1ocPvRZynMRfGRAApzc5S5rqn87MNTAQdMvv": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1zbAjMtinV6qAkvJAMpPyqEPeV1LL4ip4NBzn7uX2pECYN5UQr": { + "balance": "2397.123917991", + "bytecode": [], + "datastore": [] + }, + "AU1zbdqPXb8tCcwGZmfxQu6jhRVHbR6FZs43AR7PtEDhUHZV3kU9": { + "balance": "153.465346535", + "bytecode": [], + "datastore": [] + }, + "AU1zbgPNKrtBAW5iTxikj2BvqAF44RSZjbSodTbSSGbGvXTFV6eE": { + "balance": "1754.474182563", + "bytecode": [], + "datastore": [] + }, + "AU1zbvpBV5A69RhJ1dpC8MW3xDU46hvnbTAQdw3TXALENP4spmzu": { + "balance": "1525.929153579", + "bytecode": [], + "datastore": [] + }, + "AU1zc1PK9TFkVvmbqGoTVWr9J9o9qS1tW7DJHxFFdFU9Lg1tmB8Q": { + "balance": "127.062706271", + "bytecode": [], + "datastore": [] + }, + "AU1zcERSGGECzP1m8DqwBHSzYd961waZXgJFa8u9DGju4TsP5LAM": { + "balance": "13.069043405", + "bytecode": [], + "datastore": [] + }, + "AU1zcGyqfCgfeABsYnPi5YGGJ82FQtXeXPHeuqaCmipPN7p182Pq": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zcQZ5AntrWcu8SAudURTDYoC3RBeMY5fP27WaXbDbyeTjq54h": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zcjUB5t4Uu6Pzq2u1zb65Sv3di873uxszE7mkfKvqojgGThQQ": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1zd5wz5yXRWLziJJBeJWJtbRuqsHaiTAbkqwJ4BrNE2MK4p9vc": { + "balance": "2337.796918756", + "bytecode": [], + "datastore": [] + }, + "AU1zdDknNjzVHSvTKdCXwLMCZ4FGurWMW4kQehyVccU65CnAZYh1": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zdGRZVmUSdiRBR1sJQdmf81wTiE2QRdpF6h3qFPcFzyYFZSyW": { + "balance": "597.972149855", + "bytecode": [], + "datastore": [] + }, + "AU1ze5LDCtgjZjZd6QXjvkk8PrJBaFbZTqBGWH5twc7Uv4PkvhKp": { + "balance": "2420.237546303", + "bytecode": [], + "datastore": [] + }, + "AU1zeZTuKYp1JxNJTcMT2Euto9msVN15zcR1weRfCtfebyC3sjHZ": { + "balance": "67.656765677", + "bytecode": [], + "datastore": [] + }, + "AU1zes7Dk7GJKPK8DxbJnnSB4pAfw3exhCHySqcTFBchTQV7Exwy": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1zfLpCLoQ7xRPxvuwBinL97gsUigpDgMJKRixEJ3ga6UEscvT7": { + "balance": "1827.407813624", + "bytecode": [], + "datastore": [] + }, + "AU1zfMM8BbrVzsZ8NLGSSpVshkmLz35sVieWat3kHMpWUE8PoBcQ": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zfpQ1qnqquADEVqZ3oHkU5dynsbAz3zyGGUZws6DgXkFtGMVH": { + "balance": "119.636963696", + "bytecode": [], + "datastore": [] + }, + "AU1zgTp4gmAUf7bxwJx6NtoX46qkgQ3HCnMYu1M1YCurdDP8qjFH": { + "balance": "130.363036304", + "bytecode": [], + "datastore": [] + }, + "AU1zghqUm99WcYnxCza4pjuFPfd7DFfsarZqn6TFgosMkD1WQpbj": { + "balance": "2207.704246332", + "bytecode": [], + "datastore": [] + }, + "AU1zgseNniWDXDqcGaUGbzca5YFUz8hYGvTrGPA73iQULUr782Nu": { + "balance": "201.135723107", + "bytecode": [], + "datastore": [] + }, + "AU1zgyqN4Q4fWxPffn7G4diw9eASTo8ZzAu9UbmZt5eUjkaHJDcn": { + "balance": "2929.474162342", + "bytecode": [], + "datastore": [] + }, + "AU1zh4ouXsByY7GGJUfsutjK62oWrAzzM2jirBMiMQSx5Szz1JY9": { + "balance": "1332.393234058", + "bytecode": [], + "datastore": [] + }, + "AU1zhCYwLwkY1ecwnc4CCWZwsmmNzppE2nvo8kMnjuR2CxSEghkM": { + "balance": "903.056671850", + "bytecode": [], + "datastore": [] + }, + "AU1zhTanx3oFiNSFfGE3sHUneY32ZKx9aqdnzaPwzBGuM311cqDu": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zhULBgVjZ7iN76ta9wMQGr298sefXirXZ4HnraRyiu5DkJ3wb": { + "balance": "150.990099010", + "bytecode": [], + "datastore": [] + }, + "AU1zi7V6BcdzbSceiTr99ZVPgMoVyYP19pWfbAbPxAjFiGwiH2QJ": { + "balance": "1419.888499667", + "bytecode": [], + "datastore": [] + }, + "AU1zjdKQ2uGtwyikP1BgkDG5izurZsor6AKdWjgjwtUkXDUH4gZp": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zko3JJBYuqUUTKxVr7xrNUMVkpCB3rwwxUmKMAM78VThZyWHz": { + "balance": "288.274716219", + "bytecode": [], + "datastore": [] + }, + "AU1zkxQzstd415CZwsQtkoU4mTfzsZMQtBGwK2xozB57RPqzkKKY": { + "balance": "752.823763157", + "bytecode": [], + "datastore": [] + }, + "AU1zm32eV8NzSvELSwFEvW1kuVsHSpdhJoJfR7GzCFaAiyw854YM": { + "balance": "710.434797961", + "bytecode": [], + "datastore": [] + }, + "AU1zmY757G2cNxu7XFkLa6vn4yNctxtHKubUPzG4zkqnLfouV3Uc": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zmdpZyzj3G95XuqGQgYnVgeFJ4URqexD7dmKbYDznydef5u3Y": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1zn6Vntxdz3CPZSAA6EzcNxoep6cCzpKGdfuomZwhYofyzwS2C": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zn75BAt9pb1wwFyEELsKsVYbcXZKz1JS8PGM3X6yS7jMeeSs2": { + "balance": "113.861386139", + "bytecode": [], + "datastore": [] + }, + "AU1znGVEY58hdaQu1Qy5zDgyWbFEBeQA1q75MZbjMLJo34gYhVVz": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1znLL2LwPW48NBXq7KyY27Qfgi2jFtmJT5E2xRmBMcMJwgAMgx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zo8QWDseCoyqheV5rmzZBHBLgs2KG8BqB6C1U1QB7vGo3TbHN": { + "balance": "169.966996700", + "bytecode": [], + "datastore": [] + }, + "AU1zoC8LgEsfFQWi27w9m5AWxc3ocpk9pTMBUs7Qu37f5WTyoDUS": { + "balance": "82.508250825", + "bytecode": [], + "datastore": [] + }, + "AU1zoJsm1qLqhfwZnrWQuA5ub2ktBh7iWK24Pmi7xEDtXNt7mCyx": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zp61kUgLwLP2GuUDEDXmwCxVcBLJsu1pfUGdLY9NGsFsTG9s8": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1zpTtj3FXQQPzxGRrYWjz2v2x5kZPj1g2wCuB6Hbsy2uq6KomJ": { + "balance": "167.491749175", + "bytecode": [], + "datastore": [] + }, + "AU1zpYRPANkw5WQnGB6UjYZmYrHmH9zHQUuzErgVAHDcW5A6atMo": { + "balance": "165.016501650", + "bytecode": [], + "datastore": [] + }, + "AU1zpeXVwqLmMA15CZVAKg8Wud7y4s8drCvcJkFG2fYEkUykFCna": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1zqgu6dEoatxDT1p87v4fUAMPg2PRJk8SDzUmkBeCkhjKofZx7": { + "balance": "1662.044055982", + "bytecode": [], + "datastore": [] + }, + "AU1zrVZt7ACJnfoEV622fAAYyvd5zzuUwV1XBqvHQMxYRKLgHG64": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zrWNGdLHHFjafE1bgWM7trdeZjZEWLX5u9i9P9JUN69Lf6E7d": { + "balance": "200.000000000", + "bytecode": [], + "datastore": [] + }, + "AU1zrtMA4okJhz469Gszk2uA93PHngceYMAToMXHzgSe5uBsnQUN": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1zsVcBEw5JsohtbigjRN8h5eYbZobd995dt8dwtG95GxtALh1h": { + "balance": "1719.504845177", + "bytecode": [], + "datastore": [] + }, + "AU1zscVJDbxm8XYN8PYUVVKrotjxn3jiaY7nf61ReJekysuAmS9D": { + "balance": "171.617161716", + "bytecode": [], + "datastore": [] + }, + "AU1zstCtWEZCJqttnKKWr3pf1NuJNTCwg8w9RCCxkBA8Jjk9Baaf": { + "balance": "80.033003300", + "bytecode": [], + "datastore": [] + }, + "AU1ztYBwR2beqh9iehynZuZ1K6bFGRwha1SGzgd25NoxdGkNaV4G": { + "balance": "75.907590759", + "bytecode": [], + "datastore": [] + }, + "AU1zteKREDkK9d5KWQYc6VFYJ3pvK4RXki9TSGixXR8HWMyt5p8n": { + "balance": "155.115511551", + "bytecode": [], + "datastore": [] + }, + "AU1ztuSUTwBUdeze5Lz1DS7pAm2xxTjzyA6Xef3a7fv7LFY3Bw76": { + "balance": "92.409240924", + "bytecode": [], + "datastore": [] + }, + "AU1zu5v4vqEmFqpvXHFufTuFExjzTvguGZkkUrEEtUnqimc77vab": { + "balance": "136.963696370", + "bytecode": [], + "datastore": [] + }, + "AU1zuDJ9se915zhNVBWdRYT5gmLKpzw6YbDfTX1gX7GRoEbqY4yQ": { + "balance": "5208.170510902", + "bytecode": [], + "datastore": [] + }, + "AU1zuMEDnVto6hi9Ffx4FXEnmvFGd5diE8ai5ks29H6ApcQu9BbV": { + "balance": "109.735973597", + "bytecode": [], + "datastore": [] + }, + "AU1zuXPeCm44odMaMxRqTKFZhd2L1wkXGyWyu8kf5kMph3S1oxRT": { + "balance": "2293.107024415", + "bytecode": [], + "datastore": [] + }, + "AU1zuhgCDLTr9YYfD7H5er3bRUdJ25Mx6LcDbLzoE67u28am2mwL": { + "balance": "3628.449802081", + "bytecode": [], + "datastore": [] + }, + "AU1zvJ4FUUWhJH6RD8bycxRPcdf9aMBdwf8nbNtXdyt5qPZSfgRg": { + "balance": "5499.151805197", + "bytecode": [], + "datastore": [] + }, + "AU1zvhm4ohhxfToy39454F4xqwLfpqe5C2XHqiMKze65AYDs8CSn": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1zvux3vXanuMCHfWBDACqgQg5TkNNSGJ8kdgf7oaD9cvWNbW5d": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1zwru5mTEucc9hq1sAPSactTmTt1nZGGh6oyThd62wkNYG6vcG": { + "balance": "3664.599213441", + "bytecode": [], + "datastore": [] + }, + "AU1zxK4qecP6MmpT7Dg8QJz6XTwKcr8qwnVRoGFRtGrz33JNQEaF": { + "balance": "4256.039800314", + "bytecode": [], + "datastore": [] + }, + "AU1zxSDCMPtfL1JBBxDzZwvjTqzLfawsBGatrmg6t8jpYz5gg32F": { + "balance": "188.943894389", + "bytecode": [], + "datastore": [] + }, + "AU1zxX6bBjZUUSryQDgiugWLaerCBzVd3u6vNuuzC5vaQv452WoY": { + "balance": "1333.842497652", + "bytecode": [], + "datastore": [] + }, + "AU1zxcmnUtHTKkLL8Fu2aSAnYffcEUtPZdUboAZGYpkZU15NMh8N": { + "balance": "123.762376238", + "bytecode": [], + "datastore": [] + }, + "AU1zy5yt38A8tY8wLYQ54dTsCQUmYra4PW9SLEHbgMPqJSuHEhjF": { + "balance": "132.013201320", + "bytecode": [], + "datastore": [] + }, + "AU1zyLkRQDnx3zCX84iDVtYsXgXpRPSszc315qTGAeqpev7p7DVT": { + "balance": "1198.962712170", + "bytecode": [], + "datastore": [] + }, + "AU1zyYAtLD22SsdqTJP41cpoyL2pTgSkfUYPbM6EinVffzsktJVG": { + "balance": "2556.602915060", + "bytecode": [], + "datastore": [] + }, + "AU1zyoHmDoHrjhrsE5EUgBJePb4Mkbbr4H1JQay3V4UvqsGZ1zcz": { + "balance": "110.561056106", + "bytecode": [], + "datastore": [] + }, + "AU1zyoKWgLK9QMnzuTqJNrwZ5DERrHD8xaCh9fRxrnZ8CCZiPDhh": { + "balance": "84.158415842", + "bytecode": [], + "datastore": [] + }, + "AU1zzG9WLdvoGhTLVPTNhby4ZQeTrwVgXZwSYVHBEguLegLX3cp3": { + "balance": "138.613861386", + "bytecode": [], + "datastore": [] + }, + "AU1zzaxfojdX9MUhM5QhFyCUL1QEzN9zsVKwYMypfL8pHpbFLR18": { + "balance": "1061.816409364", + "bytecode": [], + "datastore": [] + }, + "AU1zzj9PVr5jWg4ynb9ZRxnReyfZEkNKR2dje5fwfAAydcdg2pXk": { + "balance": "142.739273927", + "bytecode": [], + "datastore": [] + } } \ No newline at end of file diff --git a/massa-node/base_config/initial_peers.json b/massa-node/base_config/initial_peers.json index 156ad53be52..13f7273aa75 100644 --- a/massa-node/base_config/initial_peers.json +++ b/massa-node/base_config/initial_peers.json @@ -1,26 +1,38 @@ { - "P1kKfgrCveVnosUkxTzaBw5cf9f2cbTvK3R5Ssb2Pf76au8xwmH": { + "P16noomm9akwBSTkvhs4KX6kjbhVhYkLqrzneCwBdo2SUE8axHx": { "listeners": { - "149.202.84.7:31244": "Tcp" + "149.202.86.103:31244": "Tcp" }, "category": "Bootstrap" }, - "P12sNdL7YwSawpnJrk9XCWDjKbgfNamAobp62AX5qfkgpBkGh2wC": { + "P12bYghvuhCuQ38iSAGQvKTb1iXtwzPZhNJLhWQPYcmgz8PDPAGo": { "listeners": { - "149.202.84.39:31244": "Tcp" + "149.202.89.125:31244": "Tcp" }, "category": "Bootstrap" }, - "P1NnuSW48GKGaYZamAVKXfXbbnt3StxWoHpYtBZSJvY9e8U1BTC": { + "P1jRVjMZK8ZEmUGxDbLgHv3BTeQy8wHnazKCdcpQy4sFxu9d8GW": { "listeners": { - "37.187.156.118:31244": "Tcp" + "158.69.120.215:31244": "Tcp" }, "category": "Bootstrap" }, - "P1DZb3ao8BEtdsYP1KYyWacpTENHDrQboxGaYDL4U8MQppaxvzo": { + "P12B7LqdyVVBXr8TMygU28R7JYxUR2dsLLp63YXtH9XAR1R2NUrY": { "listeners": { - "149.202.65.130:31244": "Tcp" + "158.69.23.120:31244": "Tcp" + }, + "category": "Bootstrap" + }, + "P1FoYxXoSC39ZamAvwi7srz3oRrJ8JC3EvRhcqXPCD7vaQZTHKV": { + "listeners": { + "198.27.74.5:31244": "Tcp" + }, + "category": "Bootstrap" + }, + "P1nRDdGq7DFD7AvSz5pgAsXCvkcqoL5Xf3kHr8Yd3TTUgtBcBun": { + "listeners": { + "51.75.60.228:31244": "Tcp" }, "category": "Bootstrap" } diff --git a/massa-node/base_config/initial_rolls.json b/massa-node/base_config/initial_rolls.json index b40dd0a4f08..624896f7bde 100644 --- a/massa-node/base_config/initial_rolls.json +++ b/massa-node/base_config/initial_rolls.json @@ -1,8 +1,1046 @@ { - "AU1wN8rn4SkwYSTDF3dHFY4U28KtsqKL1NnEjDZhHnHEy6cEQm53": 10000, - "AU17Prntejq6G4Rwj5tpn6nnuniNAvV5atP1Um6Ujg3tGebsG1jR": 10000, - "AU12w3XtFaRCSeda3dwR4mnV7buET97KZ4TXnGCE8gY9F9aNzY1Yh": 10000, - "AU12Kqf1GkNGqByGLXrzBCAN6uZUdgtwyAE5MGq5brSeL1hdaxTZx": 10000, - "AU1XfpV1kwMnZXVBx3rv5Rm5fRWB72nGsva1ogKt7KF9AH3EzLV1": 10000, - "AU12QC7C5JsndymvDbnydFNP3bVaH2mR9Lcjaa4wgiJM4bTgTy2KM": 10000 -} + "AU112PMUsYDVcCBBVBybuCewju6cxqvQ22U4Eb67wE6mJgqBXPNP": 69, + "AU114YEi6M3nFespArQGyRUW3FsPbLHhbpdrxvggTqH3Vt1uHBET": 37, + "AU11KbX7VV8XCBk9DjiqB7HS229eSJs4LVrt6LHzCCTXXbeSKncF": 16, + "AU11SHsnuVnK1ReJxQuhh5YLGsa5cdpBw4ZZJsddiqVFYXBUqpr9": 15, + "AU1211b6ndxB7DNerW6MaHyXNTY2S3ghgvW7KjyACo5ZL5aFA7qzx": 57, + "AU1216o2yxPq5THLebDRfUQojrZsbqNjFr3SNP6gKq4P56hyVwiG6": 63, + "AU1217oBWgBLzSN7nD7iWrNzcsYWMnjcrXUKo2YJrrZAtv1hmhTyF": 17, + "AU1218tSZZS4BRQKihZkXS6Fo5Kx9tH7r1SEmr99kZS9EDkZCc6eP": 31, + "AU121E4ipmpyJrsnUacjbSQB8H3vnebxnKnJ8d7gbH3wcVPdVZe2p": 49, + "AU121EQBBaedT2SeiyUf5EcSk2apoDtmjr5reqCZiDbqKji4MEEAd": 15, + "AU121M3KL4GKKvuqbCKz7J3PDsv1WuniZxj4MFafqXz6WNCn3Hytn": 71, + "AU121PeWMHTr7XGmzjaT8hQePi1vR4AS7R5dYhAbrfLaDqo82LmkF": 35, + "AU121faY8yS3VhW7fsTQ35bDx25eSgmfg4caejUh1EVKAg4f2aspp": 13, + "AU121iVJQkLqPMFQuoNsSNXtLiMpjr1oo1JGtYH484XR898g7vYKV": 71, + "AU121oEz9xP9Y5n61rEgtMn4EHR1EV3juvpVPK27Jk6AYBUzLzAh8": 17, + "AU121w5VEx7beu1VNNbUjdKR1XDByKCkXSsDRmjhBD1qyGT7qRXFP": 38, + "AU121wBdUHRmJstnh9xkRNaq9RW3LVc3QEYCaWuHBoYmRdTsqgymv": 61, + "AU121xK6kvLm3YFCVbKNobjYYtCMdxyZE8Fo1Ls2HCM2hirC7E6AN": 61, + "AU121xvcwJ3iWq7j8G92pDKuxK9JBgFM3b6iuRAV1kffjUSz35obp": 28, + "AU121y4VVrS5K26KNYDs7ERQjmv2ifAKi8nLybnuunuKiQEg8piNc": 44, + "AU121zCZYPi1XuHkm4KV34CrvvqT8ASQH2sXco73cvioMfepFtVF3": 41, + "AU1225xn7FKUdZCahjQsXjqmkhDrGV78XNpeNa1nbxJPmKkTzEB9j": 15, + "AU1226cGxr6Nc7rJLYnny2rGtCkR3jN49DYp5wUKUi6ShAoiT2njL": 43, + "AU122BfG3QgrCFcihMAMz8HRJ5hMY5LvMBLe4sgj3PudcTu9JgEB7": 18, + "AU122GC2VGMmBpctjNM7dyj9eD5H3zeLNoatwBaqd2MwD5EHU5ReU": 56, + "AU122SESVLSDuV2abHFegztv4hA9xNAJdjdk4bEn1SRzVwKJWnC6Y": 29, + "AU122UgYC9EAYQXsG9mkLE1RZPm2DBQLxjZaxFT7NGyiBYMJgaSL2": 59, + "AU122myG5GoJ1fu6VRnUgUhXU8k5kG6ToDrCRmZPimQRddUz6sNKX": 34, + "AU122nNhKNiCgUQQZwrSBTmjHicDE9ZgFLLR5tsG6qyTfKxZFrzNm": 52, + "AU122pnJZ96dsfxodsiFJwaRXPQk2xLd9erhcMyxgq7hcy4teUVKB": 13, + "AU122uxEDo1ThVyKKQneLqxzqtNzgCm3hTtT8QprHFarXdxNHccN6": 35, + "AU1235wVKNa1r6txB6NaLtPpQkQPGbT3FfMvRK2UZnVZxN6RjsW2X": 53, + "AU123HxKqt3TQfCBz1uSSYKaA4WpfQ6CGgthdjAjdvnH4Dv7uVUm1": 26, + "AU123LKxWEGbQx8ez83gThBcEMds1BzTudnLcXimQNaHvRqgKXeiw": 68, + "AU123Lo4sae1vxcddUbuJbAQ9FexCZX2bQmUjiwhjPs1QSNFWuDge": 43, + "AU123YK4EUPwgUSN2rDwdtsBzAM6WjA6EmDUM4tZyKRkmhSbxZU2v": 16, + "AU123YmtGtLNH6frxfMNjGXS1EnbNo4iVNiPh8VsSFp9xnjNbBeVK": 21, + "AU123d7xyfpAjbN32VfN4Gs6q5AohSFEFVBW8E3MUnz3koqpuQdDb": 50, + "AU123eoNvCzn6YLWWvUsAMrfs16ouDYQKMWh3dCwqiRiYQ389dCEN": 27, + "AU123rhqsMLz9eoDKAXynwSWEqHTrzLk2r32apwaEqqqUfp4kdgzy": 19, + "AU124FWNLNjqj2aNgKxQeSiPrS69AHbjHcdwcoUAKKz7VPUsR15Rk": 63, + "AU124RwZAekDK42WFRMkZgrUp2pkong11APfbGaRq2MCfaujbVz4E": 15, + "AU124S31mNJfHxDa6K3sjfWLvmURESs8kVVagwFMiQDrJpYzoyUQG": 18, + "AU124V8TESpaq8i6FeCYyHym8Mf6kwYaUDKYpyrN7msdPp5gBgaQk": 14, + "AU124XTwRWDvsY1YamHjHxYi5UDnMERFvbaScmbU81k1TfS5HcBvj": 14, + "AU124boDzGVXCwxAqhf19SKdJkvuVAz8hsGmbr4w6Lpt6NWCtSWGh": 15, + "AU124gaXN4HYRpq8eZrwLrgKnENtsQbXQxhynSwSFV6T7EaE7XwZs": 23, + "AU124jtL6YJk5YCyTKAvswAuFyz9sgWixJJTctzxAZqcCnimvTE5": 52, + "AU124za68QGWWZNyXu9CZepPrTGXaEcMmeJsQGgF8qGWPBdvy66pt": 11, + "AU1251Uha5nc8m7rHzrpTqNDY8Cbc1bx1TyJh8PXnuHiPv7WRbYxr": 33, + "AU1257ruk8EFhh2pF6mugT9MTjPkD72NyFJ9MF7UANj2piePA3V5S": 43, + "AU125AxL4f8YFzwxYD3NkKSKqVbmxbGDsAKjVSc84X3MzbwUH58vK": 15, + "AU125B2SwkHGPdFHnhRssUM6ifyYLPVtE3XwqhDnHcT3syv4FnzaP": 15, + "AU125DVB91p7g3pV2mpBxYNHKsmtWDqJfkuuynrtnMqhxaJecWvoe": 15, + "AU125HB3Y2rDvZpwKEQ9YkHdPiZGFBzctt7dVtCr95KaovGki9xDU": 13, + "AU125YWMEWU5GDyfGkSLbS6E7XfB8kvwHmizJRhdgXjWvqfY64Nrw": 15, + "AU125kEkbxnW6MNavLKqfShbQyzfzNoCFFCmzK3okoLJ6iK2eWSKq": 36, + "AU125sEKDLLqmx17Cyn7u4oXDMWjDup9WTCz77fb8hbKNStQGaQWH": 40, + "AU125uigoCKnriLbRHY9c64j3hMU6vcBxPpoyCGqP25Z2pRukfwPJ": 15, + "AU1265jYQzWGk6b1aicfxd7VzuPCqQYtgaXgBv522EvTnWTApkuym": 67, + "AU1267oCLQKbS9eDQJV4LuSWEKP1c8kWstATHFwKmZFMBCtwfuBes": 44, + "AU126CA4RnQHXweZLMVkz43AgQWuLfbKraCP5jT5DP2VgaeMkSCfN": 14, + "AU126HWx34TwBs8oBWPbdFXehY1NBUo3XgrMyD1Ljcxha3X21BpKv": 25, + "AU126W5uwEx2JhWNTAodh2YaSrhe1Jwf1yJUhARq3QNpDbtrLfFjs": 39, + "AU126hCmpB687pSWJPizM77FcAy6RDcwcHmBmCD2hqbARUY2JzNVk": 53, + "AU126pcsvsj7jHX5a3GYgsbe5XQmk5SxwHzpR5vD7cwRFocSnnahD": 33, + "AU126wSZ1BPPQ3ZuBX8HegigS6wX1SizoXtoQjNsh937reDjTnsYP": 55, + "AU126y83B5rxLPjDPA1CMdxdWAD4puo8pPkX4V4NJEhWcDECCx7Hn": 49, + "AU1274Mv3TLaNN9PNAAHg1XM6dSyEgAQfj6rT1WovRnk4pVsU5PsQ": 78, + "AU12777DB68D1sMiiZXaYEtsGKkQyrxnzQyVcLRdsDtSjPtiMnDx2": 37, + "AU12778M93poLa9ngXZxpfEumuZfsKww6XvdtcD99GUndB6iLS4Tn": 20, + "AU127914zUKwL3gXbV31a8ZLDMTbXFZFCWXLWVwRL4Jk5X6QBNYLv": 19, + "AU1279HeGxuQjhX1WXR4czEJkASXUscEHX6ZHRremMz8umMXZEFdV": 40, + "AU127BNSzLqEszezjVoHaYAjCgKishQYXsaSbt2kyGUj8nxFDrMAw": 15, + "AU127BSLrPWnmE2XB9DExegew5V2BVmSJGSpBcBBwkhyCN5dqEBdH": 22, + "AU127Gk4XHLoGAVWn8oupUgF3Hfkr9bLZYxp6BhGooEeTZna7tsfA": 55, + "AU127RYDJM87Hapxi6wgYaggXgZiZMMco7j2xyuyHAz3TnvRd7RTN": 54, + "AU127WZWRzatxs2dpbr4sci9qbYYYowdpB1wCaCnDUuUEmyVApfTb": 39, + "AU127X5K5g6H8Ro85b6FnbmcAPaGguhwp51UX8ec7dDUDbGKYFpzk": 21, + "AU127XNf3GGm1WkiPz46DNb77CRNKmtJBXvpTeuPoUAUcZF9bdFkE": 15, + "AU127Z7KeeDFhMFp8QhJRjuVUAaVmoc9w3ou4agu4L8AmDg736edF": 32, + "AU127gX1rGeAJeytfMowGdk8fNqnRVCSurXv7NHh6RHFqYs7ijbpB": 63, + "AU127iWGmBq2S1dgXrRCSQSi7w3Ga2Pwbpt6jwGdjeZFGcKDDdKZg": 13, + "AU128GZGQWVe1eSjRp1PsBcktu2vWfpPsJ14HaexgF2CVuo14uZ1f": 56, + "AU128JrqfMMBKoWbr7vveW2yjJ68wUkTX3mijgPKjZ6vw2BTVy2MD": 21, + "AU128RKHvcYRtHR1qd7MNqy7AHHHrzCyL927PyuGQqCePt7CdZS7F": 42, + "AU128Rexxftc1jYhyouTesxjPqeezEHh5LUAzNaAfqDo1dWRgPH8m": 17500, + "AU128Ys4a63HN1xpqP7y3hvotHogN2cH78C5Ybch7b9d7rQ2xhqiF": 20, + "AU129GQLcoe34WzD1QALcxbYwdUdR3pZfrbw3GQE3ZW7Y8onbXraa": 30, + "AU129HgVrcAm7DSJvskENmnRxFGyEsQSoj46FHMqSYnTyWqw8h8fd": 42, + "AU129htAiHhEnAUA4i6gAhJngLsJfEzU1vM1c7QPh764Dqci7FzTD": 59, + "AU129kRxoULxJka93DeHoUvdqTXVJ2GXZN9A662SpsdQPzg1BG9VF": 15, + "AU129mr1cGcWhVqsJEs9CH8mVvCbF68847VeNVPC5Q9yHV33Qgf3c": 19, + "AU129nccKqDBZVXCMJVWg6DnVrHuZmYrxsdZoradRm8QSwTvCf7i4": 56, + "AU12A1EXuEtzFSrQngroSYBVirLzUAKSWG8wBuTgLMxYmjFWLmaGL": 27, + "AU12A1rFSyrusTd4jkKMKW6XY86BedncqLu7pntkAWQFeipsfoCf8": 17, + "AU12A5ioXs1m3VNAGZT49kj34amMY6Pcjqqz5dcPe3mZZUEpHBDeg": 71, + "AU12A99YnRvUHkGrVufdP7j9Xc8cpWtoigh7omp7HUrXYsDLU6URf": 15, + "AU12ADmoYpra6YGr4ZdSscFAZAz6Sy7nV2o7DUkuMV6gtrajEvbod": 39, + "AU12ASYgHSP88mJ1ppYGZMjtvrpXPLTRPR12aJQ52Ht2YsyfekzDY": 29, + "AU12ASfHggXZh9kMY5DMfR2mGH3eWzqtCeNzjyUrWtBvpBPk7Qn7B": 39, + "AU12ATxEkCaNZZN9xeeUkcRdyUxCQFjkm9xhabCgtKTkuamsbSBmQ": 43, + "AU12AcSz6scG2Pt7SsMTaQAw4uyXqNWkdLLFXfBd5ho6Q8Mvtpfet": 65, + "AU12AewQTCeKpU7H9NadhvT4K8yoL1WPK7KtCFXQsDRyBhRiAihhb": 35, + "AU12AezPSvZCTqVZFeJXhALAmSgPD8C1k6e9FyRMrejZS8TZnW4Mp": 22, + "AU12AxV1rzRHr8PpxbNzA16PTUPngcTctCA8GcZtP1F5munWAXCU2": 65, + "AU12B3RWmA65szNtCo3EoLYJdxiaqBRNoj3QwXoKC4wF6zKek4Chy": 20, + "AU12BLCAsZ6uHv2t1mkrHsVHkz1XAWAHbzZFjPuYzNj9D4oKfJAvr": 22, + "AU12BLK3EoNpncK9mXKiK4k9MJc3F6RohqfUBGu6qD3gTwFcbFnWg": 78, + "AU12BTHqcZRVWBaSPb1FVqTSY4qscHKhAJoyCEfYtpYFm5Jneoa96": 15, + "AU12BVwffnTB6EPnkpeBVJmLeYd28ZFuaT5AaLdyD7UFrXGB4xL3A": 24, + "AU12BagpqiR2Knv6oc8fjStZP57TmKchw6eGxr53NztfgVTgqSPrC": 14, + "AU12BcNgaHh1EyNv7aV9MRWAVXGsxQRsxazHvnm1ZwUdPdZxDvi5E": 64, + "AU12Bd3cD8Acs8hZtSfNjRLTeU1K3NDPBCG6TbZV85WH76FoheVDS": 19, + "AU12BeiiJEUY5kdu3SKzTnAP1cMtZcgadpirfiwibZ9YkZFZQWD9k": 34, + "AU12BpU76cPbWhPJBLgiNqRNDMACh9XbTCndu2TdiEsbxKMZ5AWwc": 15, + "AU12C1WWuGAg1q6HBkkhR7AokcA72s5wodziXSs2kgWykA53K7p1B": 37, + "AU12C3czkKXC1ZNy2o1E2S5Q3mVx5B3LUGA9VcChhbpmh21MnwV9e": 66, + "AU12C6uhGJNhixydiDuiX3atTZ9NBhpiJP1VS1zSiVi4dyAUQh64n": 14, + "AU12CE7sBWMFA9JR2mzGkifAfo6GTwKMW5MsWnZ9zdZLy4FnEKL88": 61, + "AU12CNNrv7bCnR7Wr7oANQ5sfioPz71WaRu754bVbXac6cWN8xhca": 13, + "AU12CWUnRPJQbFmBAbXfVSj9b1kfQNySHA2eCXkycdmnQHJv2rN5S": 63, + "AU12Ca4LnqtTFioyDJUeo3N3iFReY5yyqiSckSyas4gdDei2yH843": 55, + "AU12CcFYWGeszuWCku78vUjEbamAdv5EHMKQrvi69NhAyWwRWGJ6n": 53, + "AU12CeXRAM6fwSyzLGksSx7HdDnFQVGwyAZk8QPVQ7tBENhm3Hs9x": 36, + "AU12CmYbtjYtPBLrK19W54zZNC74T5E6TCgQrEZTAJCEuRS9Zfpsv": 39, + "AU12CmtTQyttdrMW3nQRNVP9qAAeGyzLH8HinXSzX6vDbwsWmF2Ap": 14, + "AU12CnhZS3qigkZk8WtB5anQDywX8wGhQqdm2RyEgYpoxWDreGyUb": 40, + "AU12Crr16PzGGaMiztGCVK2HoMvv3LiLrYtM3efL7y65Di8xCU6WD": 43, + "AU12CzfFQYp8vDtCd8BE2eJaHnBL1oEJXgLnZ1aJaFs1MGgTJvKfv": 13, + "AU12D8q9sSLr2uB3sbT2vYDYwmjzZDabUcyTahC87WVhbCGQDxH2z": 15, + "AU12D91zPQiBB1Dg3UbkZPRXsdEA4g5yNj1gQGFTEYbLNiuAmb1BS": 36, + "AU12DEJ8XwDLKrAURnUgmmS9cpr96ZK3vigiE4U6vn81yrTxfYYYF": 50, + "AU12DLHiYgKtY89cfLC6zKyhmNN2J6P9LLtAhEMpwnSQLyxZcCzD2": 38, + "AU12DLmAmDi5Vdhm8RGcD76gP5ymXBy4L6uCNBPKYjX9pTDSHcibP": 74, + "AU12DRXKGnspnZzC9K9Dm8CtjWtZF7pfjavad4ebQTLwfCpujZad1": 32, + "AU12DXNR6qNQPcdvv16WVxykc82RFk3Y13GQLMpRp87W3HXNhx5EL": 14, + "AU12DZoXEW2oUoA8smni7fiUWSotwojDLUbncPMdMMBjNjPiGqgr9": 31, + "AU12DeikQv9Wyb88yfJtnfaxepWFmNanUUWvo2MrCJqgkSVno3kFx": 15, + "AU12DfSF4DACNPdR4g8uZe8hqrBpd8NWnH9avYZSY1AT5MM14qBzw": 57, + "AU12DhYt2WmT5B51oKAHDsRCZKgssJDAVtDmfpLfwJw7uYyzVWF7Y": 69, + "AU12DkaD8b9Ew8He9n54yrUs35GpAKA4kfK3h4dvy6VZt7VNucinH": 40, + "AU12EQFw7KzHffYChVrNhqdo6uj3HFrMqqnVsgwzYrpJf8EaZQmL1": 15, + "AU12EWVXH9NJgybhUKrM7h7bLgUvsbzRsu57HomAiTD27C3mwFTX9": 51, + "AU12EX1L3ti8o6F6qXRPdPhxkwdmjW4dSiqJYJRM9UuTwnN5c1nzV": 30, + "AU12Ede836Gt5Y22vXaHH7hq4Q1iHiec4vDTYaS629NJC2QdBQMAk": 51, + "AU12EnYkjtgEt1nog23fXTeLiDUrcgH6MY8m2DyVu8UvTJnxPWQGm": 63, + "AU12EwjNp8yDeWW2htaPVTBjsYuJMWh4Vd14drpdvKho3dxpHtuge": 61, + "AU12FHBxQDrdNShKn4eB83UCusE69AQevSibHyusR6p8Qe5ga3Wug": 14, + "AU12FPYv9Q3Ttvh5esVrE8LiW8onpMRawHQmtrBRiSyZPuuyDndd3": 15, + "AU12FQ5ADRpVUVyYxbtV6iHxuGJHNXLBT8xqyQf3NikCAoUsp1Ddi": 29, + "AU12FSa1DM62RvYwP7RjhVBGo5ojwwyXBeRwkvZCXZJ2ELmpab5WN": 61, + "AU12FUMbpkKL5JTeCsCsvXywQ1hd8ueqx7dRKJMzG27Da4wyAKyak": 57, + "AU12Fkn2WmMpWH3vYfUAR93XGfuGPNcFQ65q7JEwBj5TiuGH36QiK": 13, + "AU12FsmyQqhXXPTLoVAA8KEyv7D55E8Gez9kdZjoczrPQ6YVB8TWb": 17, + "AU12Ft31LbJUBi6C5rWeFz7RBVnMuQpfof11U9hyocMMPDzQLDDjP": 17, + "AU12FvW6bdSeB4tgsD9kdwKfmxw3Zap4TEzpKDdfWDeCBSwKzrai": 27, + "AU12GAJZYb874w8UfHgiWViNjhbVNWtwrs2gE3p55DSNFJmRSf3Fn": 13, + "AU12GBJhPVZ6m2c8PVZ6zrFwrQvcbUVzU5Vy6QKQGeHHG1419oV4b": 38, + "AU12GXmbKVfWqQcaPuJEhU3dVfDGLB8ioeHJQJKU6QTQYKSFGAjGa": 50, + "AU12GaZgtcWAzgAszLXW7fW3Sqzh9xrBuwJc9nvTinQqXM6SjBasF": 58, + "AU12GdUqxTWkSGr93hWPtptGs3xMZtJP5VVY8bPYuj6hGNbrgyVQG": 32, + "AU12GhvLmZNrS6Rai3YDqRQ5c9F13xFuYYCaHCru4CgRZmE5vWHHb": 15, + "AU12GkGdafu7Fy5Xx9UUpJvc6M7RWd5XiXuj64MBepY9yYL3n27xt": 24, + "AU12GkYYWiWoqLXEjdh7YbLo1qUXr3hDyYDxUEdRh84wkdqA8bk3X": 22, + "AU12GyR8RtFuekUdyDpwVBuC8WUw1tGEuxA2TJvM4Gq7s9xg5uh82": 38, + "AU12H7oeGQ2ggM6FD468W44NT6BtYtLKT8LaL3fiMwmVLVkGZEza4": 35, + "AU12H7pHWz49SSwU745PcDo2s2HZvmKKVQEWqVa3Ky81bPfBkjGWV": 54, + "AU12HAon41hv7mkhteFw6ZGEfhXm3i5Y6AGn329e2sUZwRLtpNL1C": 17, + "AU12HMLEL1NrxsmyeWsptDKYUHbjM96C6pPpJXBQKsFTPwxRdxBvD": 27, + "AU12HMRMWkW9yntwnRJnbuv1mMT4MfZP9eX32TMosvvireutwaZw4": 15, + "AU12HPNpWMajDdXEnnnkfGjUxcZU4YfkoVHjo1TAGyDePfTxCDX3z": 56, + "AU12HVyXji8XpSrUwLMYxRGmBdMqcNFqbdir6sKLEBfHdVioqeWhE": 43, + "AU12HZ1r1qoVaeRZri9QsUGg6NefBUh2KhJFXEhcchst3uwBfcxPp": 18, + "AU12HqXdupRUjCK5ZcDwQgBBVeuvFhuZVMBBvXkzfVN1vgZvRQfqS": 37, + "AU12HvzXHuQncKqHxubfvnPdBrZm5TXgjUzNnZt3baGyyXtT8iTJR": 49, + "AU12HwZpJJojBynNmBMogP3c2dtkTPPRNV9kg33NMP4VeCMTAfRP6": 65, + "AU12Hx6Ykb7LtuPKS6LD3Um2hMcMLYcQwDB9gQywgyiNbctv4fYje": 21, + "AU12J3F1jZNyu8mEnPM73a6JNuUVgGwooaFe1AADENM1A1A63D45r": 64, + "AU12J5eMuL5o6Nz5EjuoojVyJ4PyAyTH4jJqgXVkFeTYKFXe58yKM": 41, + "AU12JBW6QyGHdKwURidZRfUh7SxeUZ3UF7XB6h4QpoSNYwwhL3jjj": 20, + "AU12JCyTrhcUJu71GWXMrwHK1TNKQcxpzTykjqLD1StxbgKqGPAGe": 30, + "AU12JJ1Ae93zkbuaLN3kk7bCsHrsHQMuTj8BwqRpdDUJPefmTuD76": 44, + "AU12JgnorVKroLPgT1RdBYJa4Z4MGyVdrg6mcxok1vGGGN4onfwfN": 29, + "AU12JkdNnYDKof4fsvy8PuAUSL4rBjgmdV65DuJ91rX5AiEMds85j": 71, + "AU12JsuY7vQtM1JdXx26LV1s4oXPdr39mBuyJxffxvsoU8PxpDApN": 15, + "AU12JtAWkF58gkBRp6r1eH8mMKVS18T8myNGmX1jBJzJECRuWDNSS": 18, + "AU12JtDuVTBXgqiF9ycMjvqbmWvSXakKhW75bMMoFtuNzWQtMvXZQ": 29, + "AU12K2JdW4UXL9hrGh2ZSsyvoi4CQG5WmCN1tePqmQqK7ffgcvey1": 36, + "AU12K63d7aNedExXiSyhJDNiBXwd5HL8aSL31PgVz5JtqbeT7kJeq": 19, + "AU12KQcTSWuVbGQnimLQMrCSf8McnFwSmjGmBQK2vjLFN4QQ6AS4Y": 27, + "AU12KizFHZmhHUMgf4XEvbMxAhhc2nbjHCoQuGEQm1HgBGfuqnVXr": 68, + "AU12KmkUoECSkzWJuxtpkJ8mcmE56waBGMJrZ3CtjtYmJc3pem7w2": 53, + "AU12Kq5j2teV8iJRCTiAGdgVzJwHoJXo9jh6RQhyTtfC5nDT4AHKn": 47, + "AU12KrdsUsMTzteautDRd5p4MnYQ8u4Yyhkyu1XMTNrReEL5Pm472": 16, + "AU12L1gB3MxG4TgRbDgAv9BGCQRS7DgccsqwMmpZ5oh7cNFoDyzLS": 22, + "AU12L2h5dLDw5aTad8ZDxtwFHzSxTbzVYsdMvS2y6mACAsqXmuoo2": 43, + "AU12L4gaQ8j8j5yBt2jSmcsmu51yZW2gLjnZr5rAWnjKJDNacR3jp": 17500, + "AU12LDhpUAaoj2uuT4rRhpUfK5kHNXu1wQdiLCATVRwiSqYPeDrVr": 14, + "AU12LM7YChfP6frtX43mav8YfPjVpzud6wmvoKEsjtHiATuGmDLhG": 14, + "AU12LNmP5socTMuDeZjoqfH1dX7go1EoQhLsXTnecWpJXQKnEGxoN": 53, + "AU12LYtoycTNA9cKfCdn7Vq8ccJaNebosYbikAx2pHQQePvk21LZ4": 62, + "AU12Lb7GafJueFnoCc4GRSXreCHWtYynLkzSS5iWTCsMVi6zue4rA": 84, + "AU12LdfTbaxMhU4PD73FgZvpKHVthxri9c84iNKU2EKEUPh6QromH": 48, + "AU12LfffDL6kEVnUGXV8ompyJxfeGBjoWhPPG2PHPoqBmS8LinUyg": 45, + "AU12LmCVGPsu1tbX9Q3SKvoDDDobWguKCfYHLSvSj6tSSjH2VvETH": 20, + "AU12LmfV4q8Bkp4KNpVV3Vm1ZWSd7J9GW8Nk7CNVPQfwLdsomHREm": 25, + "AU12Lnyp1iXpUu4zGqAHiq9LjBiHhBwgU8rJQHUqAKDnuE98LXajP": 36, + "AU12LoDvfGiVdKjWpV9ohXMNbshYnqSzxKThy7MLehRrbTwzxcBKs": 39, + "AU12Luh9qKp37Kmr69Y5Jd5G36aQopHo8HHy8kr96f36nxWKVTouH": 22, + "AU12LykhEwZ7gFVGmwXAh4C8jUHUf3e5kTJXDrZiRdA7z9bhVEwCx": 23, + "AU12M3bAjCQWyBze2jDvnGPTx3JgSSy6uj3xZoxEHmE1a5tGzfbBD": 48, + "AU12M7JDxhZkWDZ8dzm6Ydra1rFMB7ZAnjTrG49VMneLWS8PfJkDj": 43, + "AU12M7bEjsDapFkLYBh8DbP1tbQhWdWU2v6FyGoMtd3Fk9ExHm1Gr": 39, + "AU12MEfnrZEP4CeKyU9gYn24mqG8qex5ySprwTQUWrM3cKZiT3NsB": 19, + "AU12MFErDtdFZ6xUV8QcZp6LQuf7Jv8TkQRZyhnMhEMEhCvsfzvyk": 28, + "AU12MrciD8uHf3n5BjJmozA3w5y65VzXBpia2vQpRk24nBWKxWScD": 72, + "AU12MxzWTaqXJ4qdNgRALfRi5RqxL4oaUQMe4zBvpF94DEoX1CiMU": 44, + "AU12ND2nEeMbHetWFribJheTZtM2HK7kvaRgMb7PtKEHcSRPBeVpz": 54, + "AU12NN9B8tQguP1ZYNvo5N8oEcKPBJ2C5gvw231bbQPchJs3VgXvf": 44, + "AU12NU5vgLGX7KS7huQhGTnXHvTgcKT8hfh2pk7VeC1CAEEfGLwFm": 15, + "AU12NYWafK8yYskSqfcGoo6W87VBL9uUPsrWqyCKWFSXfpKSUuyjS": 27, + "AU12NysMBrWUnfsouPdLAwhPsUP1egLQ9XPXXdn7XYVMK2SdGZES3": 75, + "AU12P3HgWt71n8sxJKXcNMBpzYobfxi53uoELXTBDvwu9tyW9q6kJ": 17, + "AU12P64gFHpKadf7ptcAkt5yd5ekb4XXunLqZNUsRwZpCyD44yFNy": 59, + "AU12PA6xzA5N2Np3rGsognPFhRxLy1XzE9T8UaFnpq43VFBv4Dkek": 28, + "AU12PP4DhnFwfvvYmt9D3xRbXPwcJDqw638K7dpAt1CJWYA3CrfCQ": 31, + "AU12PQTPzpdLKw6arkv1TkUWNmtCfh6JSDP2ff57ZhbDAPWa6hvAD": 49, + "AU12PRnozYivocB3Xr2i57RbsRYU3zui9TGbs8LNABA6vU4ic7Vq9": 74, + "AU12PSPVJpemSCatFLSMUz4dive3SEgVuEzq7Q3Htjtqtg2SJcTeD": 44, + "AU12PvPykb8woibXALbBVdtPT6HRyhpbeFbq2o1aDazqdjyY3HHo8": 43, + "AU12PwFmAmLWTqx99rP9pWoEPgB1Noq3qQdVPGYkXNSWRjtxtCH3F": 16, + "AU12PzTXAgtGX7bd2mLRj6T4FkHqDhaLEBGDyi4W7pSdDTJefw1gf": 36, + "AU12Q2DfrVUA8czbn9fYZbbtfcrpnHAPuwKhoCXsjbQXmYVji3c7Z": 60, + "AU12Q3Ys2BcqNgX3vneLDeawBZ9oZbxhXCfDufvF2spE2JtUYSNq5": 36, + "AU12Q5yQ4EN46ZX6JwYJsUveCx8H3szGNY6K4V1DbTbtL6msVwck": 20, + "AU12QAHy5J8GtGGKLtNCBXhaRQykJ28SrfunbmcRUDwPptpXaMoV1": 14, + "AU12QJgCbmgDhucquSJhhBe9iqHuEWbpnXZNWabq63WDWquxdE58c": 53, + "AU12QW6tHu6adsfHDtmv9amih4ETBgwVFY5cDjPvv2w6YEGqz6WjT": 57, + "AU12QmeHCJdFXu5rAFh9S7ydPJswa8wrRFitHyRBNJzPqQh7zL9Nt": 26, + "AU12QyrsxCyrmJN1AiMDnQsAVzL54rDCksGCe8kgLQ3ic4wwzaveR": 14, + "AU12R27opc5QQiVb1xEfMZp2inVnpNNFWLvnphEpz5xdBzCJrimKR": 36, + "AU12R4YFrmYeh8JzeMRrdj9E9mnx4z6aHTnAV8vWCeseXwkuqo16y": 14, + "AU12RVWpwewesyWRrzpJpfMeAbxGzT6LsE13AktytvoZpe7d1JaFt": 20, + "AU12RwZ8BJT8dVqcwjMFthjirg4JedLWZJP4zm3rp1f3cYQiefFKN": 43, + "AU12RyQ7rmfs8xKqBSSaU3guboPQZS7vG6LXwi9vm5ibkKB5K5NFr": 14, + "AU12RyvJTukaWUshUJaRpK1cSAtgm6q2hPrLvmGNsT4AYCRinAXGe": 23, + "AU12SMv7CxAWe4YJ75ne9y8x5dvx8emr31eGJSRM7SquprCzKHfSk": 44, + "AU12SasNRLPZuwowvPjwWaWTXx3xuwDXysRx7KFUwDJKRr9z1yShw": 63, + "AU12SbK968B8q6Yy9SbfXmz1pLiDWKiVW6v5gB68ZfgckVs4qtNef": 50, + "AU12SiCzBQrDgci1SuteUSL89GR9y2Vr2asYKtjo4juuwt2v43ew7": 33, + "AU12SsfSF92eucv9i9UzVVTrdrQftMf139vAYXLErz7rbx7qcLduc": 56, + "AU12SvgoKEoce8iyF8RkGBx6tsQnTgLRicv79sa7eGTkn3j8eBggL": 15, + "AU12T4hPr22fTniaePghW4a87ZpHbHxMdgHNGiuiKFUhZQ7qnCxr9": 19, + "AU12T7D53MSjQP8SCG3VYPf7uFmUBqa1HnEJXu97maBmpg8orFPEw": 61, + "AU12TGkYSv4ompus3yv3hRo5WiJJyoTQRLPmYWm5csRzDuFs9qVF1": 31, + "AU12Tk67eVZyR3myKsesp9mnn9x6ymQ52NAR8kuRoAy3joUzAxPsf": 69, + "AU12Tw3UrvdEqk2QYnxCq9ioFGe8rxZR2PJscYCrytojLWSjKhf83": 48, + "AU12Txt2xnC7DqBHBGzLaEJcvNNyCjBWqGa5nuzx2b6aqfa6fW3Qd": 14, + "AU12U1GZ1XvmmbLaJf5aaqD5Xt6ivhvStyur9n1EHKeuvWdkB4CwZ": 73, + "AU12U7DK2MfsGZXtcMMG2GVNcB5A4VQiKGB5GCoAXjbqsKmsWmHKB": 54, + "AU12UDLXsMDnWcxQKgzpEFWAxpDjVDmLTGuj6puNfmHoxAPXkBTi9": 58, + "AU12UDpSaKSNdVxTce66USUSbTko7UyfTLY9xtYfnu44QXHA1GCri": 76, + "AU12UMiuvCHC3pbbzdTr1oyKthzXLuaMEBkuZg54Zq8Zs96ArLXKp": 27, + "AU12UNzeCvT4etn9pCYJdrp4VQRAFm8H4kxhFTNTURFTNve3QyJ2n": 18, + "AU12UUU6LzMg5tabLNDAaXzPiTPWDGabS3PsqBmTyWjPfdjvY1Fpc": 18, + "AU12UXmsUW5puPJ58LDhRe6jTSg1hQ5NVdRKrdzWm6MjTETnmoiiQ": 70, + "AU12UbqYQhBL3GvLrQXsnPrGArgYKLp6PS1EG77BXfmk642UW8TNX": 24, + "AU12UkXXVkqMdYxHhdQt9tqyAbx1WvZVbtBoXLwUD733z4ULcM28K": 17, + "AU12Utr9SC3jdZPuDDToC68wNN463EgkEg8Ydi6RykaGebMrs4Jut": 65, + "AU12VAcwiG75YuYufBKP2j5nwLcUwNpRTbzWwUtoTRSWCgfLsvWxY": 29, + "AU12VC6Q4P9p6tWQ4iQ8NnXzWb5ukLhX8WAukfUaiqTZCVAMDZhno": 15, + "AU12VL8hDVcatLM3VoBqBW9dUc5mS7WBnWKL9GtCqj7ed14kD4rDP": 14, + "AU12VLTk1gfrX3UT3dxD2Bgg6HWk2U5y3cEouhnGeHYqSaAupKAco": 53, + "AU12VVPmRideeNQbE9ZKFybJYyS9HxeAiLEqdoaTBymNjnGapP4dk": 61, + "AU12VZLNU1dyUVFKekCYdXZ9yxV8pG99FkvAi6XQhpD9zH5DPw8Z4": 36, + "AU12VePxwUFb5ha1Utrmv8L71RjESotzFenHiSTiaLrQ1b1gvmQQb": 24, + "AU12Vekfv4Y8dA879d1ikKYaUCqD6tmTXREbUe4d85sq9GamaNvWa": 17, + "AU12Vy2buRjXsoqFwWnCe1eMPuafzfDusCrTavYsUnzcEC8ayaZDU": 53, + "AU12W2cHjoinqhdtQkeVYjvoc7VkbhJxkkA76oe2fN3FCPgK74zQF": 23, + "AU12W7k8hLYrcSTo3z1qq86rhQVBAs5ARJqRkogC1L1zfQAuyLeKN": 13, + "AU12WS3GsHnGPXdhm8233Z6zNo2136CcxZdmrkedYFeVcbdqGaqsr": 14, + "AU12WewYpSg83Wmx9QM6fCaFD427X1jNbnBRbjQRLjidrZNPgfP3y": 14, + "AU12WwwYcbCBVQv7cB7Xoe7K9riPscZCAWm57WxcsgNhdG8S7AwkQ": 17, + "AU12WzsUsRSQdZrHfE1m1EmFAfp8ghRxWwz56AQdLvKCS8ubPgea4": 35, + "AU12X4bYh3NToj7bh4P1ATbENeGj7ihmxHZFrhUJsy9k5o6Gc1AaR": 47, + "AU12XCgw9EcdaiEA4iD9vM9UR3UndTMC4v3MmaofKmD7afazXT4CH": 64, + "AU12XGQTK9FZdyGyb4Mtibir8LVAC2SqF2NkB1AW1QWdaA8h72Zcf": 24, + "AU12XGrryRaVwZvQFMGYepnR9zPxyZPc2ofCTvd9vQpZvr45RH1jk": 42, + "AU12XWww7S55ge37J3iweENt5qAC2vsUx7SK5fnnTpRo22bEV9GRa": 39, + "AU12XcExKxcdwnVL5JKCPAdj1zNVq4qzf1qSe4wXYfM1A88a6wrPE": 50, + "AU12XcdD7wdhU2GQrk7GpuWHkNTGufLCaHb74P6pgyQUuyfLkNA8a": 60, + "AU12XjH6UQNBViHRtipXMojKyW2JUS5Sg29rY6A3FeToELUWoNfEQ": 14, + "AU12XpTa5YFrM7BDMHKWWwueY6pynURo4h2aSW49c53MqYPcxfVRZ": 16, + "AU12YChYzMNPUVCWzzzfeXdTcdziLCusvZBSMEpExynsVHves6zYe": 39, + "AU12YEHBBmbnDTP84eeuaMvCJuV8SU9poMb97dBhp1PLhGsnJYNvn": 20, + "AU12YHEqmTXSdteH3bPJYxuhoAGtQgydobtncq3xFtz9mm11cruNm": 39, + "AU12YU2i4PUN9kfY2piD6cM6RXfCQtZN6awkAztHsfwakB8o2vxBm": 18, + "AU12YUWaefBZZ93ZeGNCxT2p3wEhuQgfr8kunnhQUBjV8YJtWiD1b": 19, + "AU12YVYw4tLGFmdUFieWQ4ZuNoE1dmhz9hpDEApe4LmhXttQmu2m7": 36, + "AU12YWvjrp3784eEoiobbK9vsEJNuAbCe2B6Dyura4rNtfo3aXCXw": 42, + "AU12YdMrj4x1cMUJ82szAxVoehvuwxD8e8cAkp4JUzkgkrDLw7q2F": 59, + "AU12YitSszPNKeou44784xR48ddecwqtmshdzodeuc5bCy4FMqHky": 37, + "AU12Yoch1fPcxa7b8z1BpV3Z1wuepE6MFXD8yCoG5QRZA1mgEtBtu": 15, + "AU12Z1o2yTP5Gd6VphLi6ojB8FbUQf2HF2fAtQ1CinDqkS2er2Lhj": 59, + "AU12Z2woNMbwKYnc8dwLnRtmuQsxZw4KNCuQbQbjc1nKGCpTmbpmu": 18, + "AU12ZKpSYTei79Pwkr2bKQ2x8FauohvFk7wG126BqFdmDem8Nbbd8": 59, + "AU12ZZEASs6HKg3tSJcAznXdeXu8DhH2vaKkNTbCznLF6f1uddhsV": 23, + "AU12ZdiRpxeLH5yncofu81c1PoWGXKbTgwdBzwj5JXfSbnzxKH9mm": 29, + "AU12ZmN1Z9seQWwtkHukJh74ks1Rc1bFVS2eQwyABC34wiQTJDFDc": 17, + "AU12ZsQKJVY4H8EccGwRpoLG94ZTDNac3Gp6cV7eghBX4cWoNudhz": 55, + "AU12a3gaqgy6NH8SSqJ1ri3DfNPheQi64j47SnMsNyfUZV8XwSmUR": 23, + "AU12a4jcNUZ4D74ZpDoY578VTGzXEoJ39SJEBRWSPGkcJzpCiRRuC": 24, + "AU12a565EZokVJ1bJs3VonhqRaNJLxBzLdm6HhvLjrzdWjfb4vuF3": 21, + "AU12a7EqJr5c3iRFbt2pu9zQrSHUGT9aTosjCqamPAtqPiwgpnTXr": 38, + "AU12a7zkTfN6stRLtqhbAK5AFgpMgy6LdRcDocJqKnrsqK2B5MHoa": 34, + "AU12a8xxF5Xd9sJm98UZwExph8VzDxvV6K2BMQP4kp7QM13XDwSrc": 13, + "AU12aBaHqzJPLvyoayTLADoj5x55AvxXxApWR2KPoM4deJvPTSAXf": 16, + "AU12aKCGegpe6qzGyxrUPyiDa7We1hpPVKd5ncbhjzRMnz44JHpVY": 49, + "AU12aLstcMPJkL3mdHd8XKhfFrYNCxRi7sQpVjVKoWn4zXawnsj7H": 23, + "AU12aMa1YXbfkLdZeJybobZ8xWcFM6v5RY5KyCqf7AQqdiyNSQDrQ": 61, + "AU12aP493N6gMKGKVkmEaaX5cRmWzWRqFFcsn5GqFoC9u1EwgNTa1": 26, + "AU12aQUDYJ4Defg66LTQkimbKjK7uC64jNHyr3kZfWTLXm33NoWhy": 22, + "AU12aVVdS3nx6mbG6ESKqL6XewGfF8SQNu8eTqseqTyhu7wVEPUPB": 14, + "AU12aWv7YaTpFZjmSF79t5VLCdstUj6FKKinAYFsEzswPhVEKYuFu": 22, + "AU12agPeePeTkc8mFq5CPgpuoJzMMhkpFxZYD42wP3se19CpAcnio": 57, + "AU12an3hT2rnsmRBwdFj5noXzuxERbKGbo5EAXqJXGjzi82jz9fiS": 42, + "AU12b14CsKUrFzXAPeL6o2QLfNCLrydDugFfzvRqXyw75Xpy6gfm9": 37, + "AU12bALXRGynsxJZ3trBG5ggSyXXNwtmYftDPHtiiYRUyfy48ZuQg": 60, + "AU12bB8U32x4X5Hze3bRUdb6DfNqFfTeDd9ukwq7cmnraHYPo622G": 15, + "AU12bH7Ybdu2oMnrabwfLTcWE2bXq9u2Lznx7B45TJud9PTsx2hPX": 56, + "AU12bJ2UDNQUS6JdJNoCxDc9CwHSw6dr42nu23GTH2gBYRxdFggYZ": 32, + "AU12bSJ1pwBM9AiteH2xDyhwEYGbR982ZivJufUP1KdnTyKRUD28F": 30, + "AU12bWmGbKhks3wNHADXBix54NAtikthXoe9NZBDfNqmraFwP7F3H": 63, + "AU12bXjshQivDyd99TgwLxa3396jkDVEuRwHSUKMZGYb35UNN4woY": 24, + "AU12bbmvBzC74S1wi8PSb5qgfr9yB8d9QhXqyBnXZLaRGEbse4nx7": 78, + "AU12biCTmmbGCvhbdHsAMxPfUrQGkuzbAmsVS9EQnwvUtcg9VCkZc": 50, + "AU12bjSNyeYpjRMAbN7kJPAa6VVjYxHDYDQ1HeMrVqezJyJw3DP3D": 15, + "AU12bn1kaJjAFGYzjpgj77kqvucTNK8tvn6KmBR7NA1nzAqYz2w9k": 12, + "AU12cRLHtHE3EdJcRT5Ppfp2ifVM5kmJGPhJPJLgSFovS7iqKDoCF": 14, + "AU12cRPgpPdCokgJ6mr8B88TpQ4V3Tyk1t82aCxxoVk1i7RtHa5kp": 65, + "AU12cXVY9HwPphUmux68xVR6MHZCffWLE4rEBFgcEUu3Bz6kpbo53": 14, + "AU12cXnbr5wJ6u7tN8L2kaBZDn8brQiswTHDzRrJ13CaX2MVK5GTK": 18, + "AU12cm3gSAjKSpXXEHWw2BmtkLCQ8GTarvVP4j29jT1WLJA1RpNWZ": 18, + "AU12csUfrD5P46kfdNEnCmGVY8iJ1DeJN8MWkjudhFGYCfRS5irji": 15, + "AU12cvCiBnLZwNghgoiqijFQR2UuVZ3gpe8KrsmwSaMjQWAWHCCmg": 21, + "AU12d283TdydyEy7hsjGPPSUtL8MztEaScsbKxhMX2Xuo1M9x3hnC": 39, + "AU12dEXyCuaMJ4LmrZn1JENt2tWAusL4TVZPsmqn59WRyniKXqKR2": 19, + "AU12dHLhhMz9DKDyjLG47Mjqf8FwHzVgGTZ3XL44io55D1Yzdcezk": 42, + "AU12dJMZJG27mcKrXttVpY8KyPTkvV6DzDKTaYHKPWiYiugZVVBeV": 60, + "AU12dNjraLFuMaanxddPRsCJF8dcAS8MEZ5uiMGpBpQC9ScSWV6Ly": 36, + "AU12dRtyVJ4vPSAz15K4bm5GYucSLAXhk824AioxqcaNp8meDzEuP": 18, + "AU12dTkhNtzGufEUZZrmGv1UiTGSWX6fbsfYG4BKknFBXiwbsu4Cv": 41, + "AU12dTzN2j2Uko44mbxn4ZigfQubb5NUut14FKRZ7cGjXd1RUSWKu": 14, + "AU12db4kmTV68RA3FZciCZeT8Vf9uBq7wmyTakbfZ6FHiDKQSQRNN": 25, + "AU12dcMBLLb2UhdcnEAcYVS5eMH5YDjNssik1Q45GEfmMxiHEDb4N": 14, + "AU12dd4b5HoSTz6S95wcNQZnufnx3LWpZ3gUDwAFJVhVRd9Kwr2M4": 19, + "AU12df21ip1Jq2JqThng123TfzGByjuJrDWpnSz25RZqbBJ8stZeM": 52, + "AU12diPKEB24n3sid28SL7TxH5Hy3fXTjLecPpJVEKi5e8M6FhZq6": 43, + "AU12diyNFKkaedu1oV7gwWbf19JWo6qT15k55UCCVV4GsePAsY3Ye": 55, + "AU12doepdQkDMqHoWzhpuNu8HJUSH5REXPLSwN3oKj9U8kADCeYfr": 57, + "AU12dqBuzJKfefNMDyncVUfEjaxV4XSzyucY3SDDRNjbvA8XDnNAH": 56, + "AU12duEbUdMMxCQtg2XGwpeZVmnnbzjWtQokfNKCMC1tzvD2quqzy": 62, + "AU12dzzvgKkZkEZ6PtLe6smesR46roKTKpoWVq4Qr5p9yTfoHh7zj": 67, + "AU12e7vC9bD7gGnEiT6pLikL6TX3UEibt2vHxVq6xXyhMqH8m52vw": 26, + "AU12eACxiDsTuUWc3QRTkzGcRoS8jPXCic93wAXDEXPLaedScs85y": 16, + "AU12eDQdRTQACFtSccvLHpzGWQeqTc4yg78jS58v5sdqYnR54H1o5": 22, + "AU12eTeaCLANBVp1X9rU3HXXNFfXmeRX2rpxR3hNsmq8cZ19BmF8U": 54, + "AU12eqYWdo5QrH3pdAmCSrgWUL3dtCLroavMwmgnSa1WCVYECJHjw": 20, + "AU12etGvekJdzezxY6eqGbugn6CkifrodiZvuh23QHtzsuSyy1wt2": 15, + "AU12eyZV6iN6FnCmmcQ9vRa5t5k586kWbA4VQyxoyyPnXgtT9bgRE": 49, + "AU12f64qph12aAjizWKLHsqD2BVw6QzeX8mgjKe4wyYJDd7sBF3v9": 36, + "AU12fY2CTrixv9KEQ3Eaq7CtHiaYyHTfUcEy5XqpdfxduM7F3KnBm": 67, + "AU12fYdRknnsQvUofb23Bv6zS4bffqbaeEBMbAoVRJkBYoh6ifZ5E": 60, + "AU12fpdDUp8fvpCZxybakPRZPi47g8pD6Y1YXrodWhDHngXK5yqTE": 15, + "AU12g5Gu1sHnZMb5CViZDnS3miBjZu8Nn7Wvk5cmFcg27h6LFjsQh": 13, + "AU12gAqnjkrkhyRxxTV5ApkDGXD5CJzgHK7QNyBrX39nvLpTB5Enm": 36, + "AU12gBbZzVZCbVET2G9Re3vQNqBjFeANWAzoCZszMqpK9xdMX2Ygk": 14, + "AU12gBqou2YVihdNx611yMJKcEbmEgXpNyZrPT14bCBhh5Av8vTX2": 19, + "AU12gF2VrLLDXgRaiTa95gqj6x3ofNdLjoRwToJ8Hd76L4G84zcJZ": 42, + "AU12gKDW9wtbU1qMmD4w4i8TYAeDN8xizd3hKA1evXvkYAauMF6LN": 72, + "AU12gR9Q3wGhsAsq3o3TjTLqBqB3eUV5T9f6o8ZhYq8gmcPDA4Vfs": 24, + "AU12gacWt7ZwNn4xKk42WVwtbaBDuemDfybYTM3TFQX2Bc68QqEb4": 53, + "AU12go7kmr1VGfHLm5MCXnDGKij1ebLyRWb1afnchhcWJDRnwWKyw": 65, + "AU12gq6NwgbB29NUQ3baefJbSyBZpp91VjXoi6ErMN6T9QyW6uSdu": 41, + "AU12grBheggvjjeozWBeFqq28rYjJuerTqVH25XgAwwpLYGmazttL": 35, + "AU12gsbePD9hKDFUrSWEBfoN25qJ6wc61ZonQUXXbVZwQEBTkuZQx": 28, + "AU12gxW2cqG734eYdsoRPp2jNTCQ5E4m8nrb2Uuob6oLH19CynVLr": 18, + "AU12hF5rhWXxmr2KnVuwkMbdQfY1m62Y9tEbru4d4R8KgYvZfAkV2": 46, + "AU12hZfYQavH13mD1KWtuWwHwjJ3L4ktXeJ5z9MWu4D3rNUTfRh1c": 61, + "AU12hbaPcud9mYmYVbgHbi5BtyrCtZTqJgTouTe17sErouDi7P6R": 35, + "AU12hqHP3EYv6EZ1Zrs6UX585dQUSo7uzvXK2bLK6ix46Ld3cs1D3": 21, + "AU12hv816Qwt5tWZPYWhwENdUMz1hRSEsAPJGoitg6oSJDiojxREK": 63, + "AU12i7AbGvXGUThYEZK6wGBxEeb1HmcwHwjpywtchgJqoWZXzBk4F": 56, + "AU12iCvoDLVaEuCaRCHZGNHmPGyWqFxJ4WL16gXVMCJNYPctEEPn": 38, + "AU12iFfLXYGrnrAjiieXV5kNxzuhA6voarUDTPp7szyFPzEsm6CHo": 21, + "AU12iQ96a97tBzawQ8XHmiRBdVKrGd9oKfEqXoM8wRLHLdUCXherk": 48, + "AU12iVAUGBjr4FChe3GhM7epZYKjRduC9fwdbwKdBc7hR9FXFHDBp": 42, + "AU12inebNZLHxF5KLD1cQ1F1D2LYUo7VJHxVWabf3zfo74H6W5tKR": 61, + "AU12iruvhvjMs2RDtWhoKQn1WBBFFmYLDhcfNEFimTzyv44LJR2Cp": 27, + "AU12ixcZQPnhauPaBsi3htmes3Puu1B2KFPDfwP1rQdZFHuLD9wFd": 50, + "AU12j45KeakZe1YszTNyzCHhwuVD4QGmGPzxt7fEdSWktWAnRfFCg": 56, + "AU12j8q14Zpk1VbVD1PsHXhkSipZwaX7agEnUXMZniDyBzpYJ3YYC": 15, + "AU12jFVA5SJbVcXFB7ygzwkSKyrkuSKfqZYhi6iZot8JUguLP4QBL": 15, + "AU12jL8GrKvr3cEj7pYugckHYYUni8wkPKjDwBwzsDkA1SrWWcezQ": 13, + "AU12jLZpRBFwGsqXQaWaWbAYwzvMwNx8pWq1TJG65T7RBjzxKZS5k": 65, + "AU12jY4thZXtKR5CEc6CsKRQkRAxDiqygHEcFJLK3MHAbwMSX23Fr": 16, + "AU12jYKY4GLLMFFD6BdQw6t6jfbz4DvNUn1XRx22ofWXYc5DXK1MW": 16, + "AU12jamBWZqNKx1ka6uZX4XEGcRVNnyHYpLt9fm9ksfNSqHPBv4SB": 31, + "AU12jqmq1H6dVmCdNHNDa2QKivcaHUGBZtvxG1vXntwJX9LeCLmLo": 53, + "AU12jrHefar9KvWYDbzZTsyPWhYNsGnPTW8a4kD4YLwDqru5SY8MQ": 14, + "AU12jrLFSn4FBxjEeQr2LaRZF7U16qozajjqq14x5vzLLmvMJV9WN": 44, + "AU12jvsXNtrEorYCMSEr3QWopC2Lvyukp69jLoEWkD2ojoLwmrCs7": 13, + "AU12k4qSuMH6DrJLpPbjHMV6971sNsSDVNbGNKtB6mb4ixbWh7RaM": 15, + "AU12k5PxxrvnMibMk8t11KdLGeeMAxCsoDvrWp29GefPVewmegLQC": 23, + "AU12kHCLYC6yw9a2ECdxqcpKZXqnbALpU2zETW3HKCvzPKSVA5HiY": 53, + "AU12kPp1QELzeoqjSNDb8gmanSXqg2s8roJoivv3mDuERDD1o24SL": 27, + "AU12kUsHrmAysqrK5NqKKB5nR3kGmqtDXsZ2t75xBigiFimCD9kCX": 50, + "AU12kX7tup32JezRhZRWg5YvqnM2QzffqRhfjVfJRY16Ez6esGWa2": 62, + "AU12kXmuUzFWP6E7HkVYzzy6p9CekKCgshsQz4Gx4GTXDWJScuQax": 35, + "AU12kaUkjjaG1ZcctyYMPRErBR5WwhMMufHHQ5TTr6CFnSxRWPF5K": 69, + "AU12kg1cBcYVQFKyJ2HwHa4Wz9d8Z98BvaqynzmpRsE1xiqyHcAhd": 83, + "AU12kqGj82jxcvnK7XNGzGbCFEpeug66DvpYSWuLY8HVW7mdaQ2WV": 49, + "AU12kqGsyqtZYgP16YHCDUmAmJf5Xtbaer8b5u3FwXQfLqEpeVd1H": 15, + "AU12m4ikUwA7LajggSHEkQYwMreKYnczGNLVhAq8MTXu7wj8RvmwB": 69, + "AU12m8EZYcTVFeFhKvBxdSad3aewKJCVGguerbyabH8rMSbbkC3w": 47, + "AU12mBfAmYp5Lb8Vy5mQ3JhrnKffgWg24TXTGQp73Ekb4743YLQ4x": 45, + "AU12mBsRFhS8Pui2bBVkUFFUS6mDqRwbtnxQtHSJBU8DzLpniqov2": 51, + "AU12mQxd2cghkKjwsgBd8ogHdNjzbbe5BnC7wtVnu8Jgg8KeSrQtE": 13, + "AU12ma6opUJsbYpJ48CYNT2Ejj6kSXZkij1wiR6iawjf8AMzZke9A": 39, + "AU12mtmYX82wyRhgeoQPZmQ9kxR9b894qQuaP5X69UvcAdnDuWxnX": 31, + "AU12mtzeyBecbPAF96gyLa4eaa6rWffZ8mKo8fgaKj2iZzpsURm9N": 22, + "AU12mvDFsEMUy2JRitbah9f4gBR3Xxr69p3HdakiNFibybKJM5Jkm": 15, + "AU12n7RX3D9PemWxwf1XbkPVzBeBgi9AXtcRGSQSxhNVchN3UNbyE": 57, + "AU12nXnQ3uHBKTy7hdgGbjF5AsEVQUtz2cvXPm2XY9noynaCXa9jp": 58, + "AU12nY671o2L8xdgYXggbWYi3C7rpRtHhHDL8tcvEzSkdZnWGw9eH": 14, + "AU12nao7sbpLhSTLwo5tkygu46RYcsG15MNqXbHkKUZtgMFNLUjH2": 13, + "AU12npwLCXntkcaqVoSLxcJpVa6uuob3zMcDgnTLToMG1vNih2Pb2": 18, + "AU12o8BHe2ZfXcmFZqNb3SYAaqnHDMnjYUS7cWsiiKWqBMeY9cyhR": 14, + "AU12oBXMpTnDjMVrXuwhAUtadpmQp4hYhGjrL7xFXcnbG95EELEtX": 45, + "AU12oCgXgDpKBaGXUTAUv8tRYkVV3cxkguLW4FXJbvkDd66VWMhEs": 14, + "AU12oHgKmAieAfNhMu6PGJSCXFKpbC7xR5Jv5gNPmy5TxDmELYQwf": 15, + "AU12oRn7AeMH96DW4Y1tWY3JqNgL7W8YfvbKou4gYoKjKv9yHKUVX": 15, + "AU12oX9bgHEQPdAhMHviJCWx6JKBf1xoP7zcx5jC7MGXDGda4Xxxq": 54, + "AU12oZTUzdSJVt3NsjbfV6tWJMERHVNT81g71tYhKVm3siqeeVbPY": 50, + "AU12obfp2zzGpT4rjDMJ2knpnbemqDaAMLRj5LK8qHn9S6omajh4s": 62, + "AU12on4SPN7281rAk2sW7JQ1QiPfpSxGVRHubVATJJttqhUvgNqmR": 42, + "AU12oqRqZ5TQFVEFTYJzpwBxEtn6buCvFUTo4mi6L8GQ9fhCiBMN9": 69, + "AU12ozA1qZ9hC2CZMujpec54DRRWzDr4UBEfoSZdw89taRTGCQvx3": 15, + "AU12p9NduxzZKHK8TuNepUZKc6gwSzuT6msa9NcdGNCbSPSqE4Rcc": 59, + "AU12pXprbSmoMbfgFG7UJmKQV5boAmQZj7cw1FUS8uPxpkethgkdr": 48, + "AU12pbvCL7B2hg2poqZkWdRuz5XeqtMqQyoyK4aziHgMxdq4H5Sxx": 14, + "AU12pofa34ScmBS4z2MYAFsZeUBSY5AZ6PWfmF2ozR5Vipk8wUUbE": 14, + "AU12pttfzog75gnXpaYFmyXL2kCGm3qs91A5ZmX2YQPQi2MrsnPgr": 38, + "AU12pytxm9qW3VYetwmeBUbJ3U7FCDixNf9Dm2CjsJ7WsLT3rV4QG": 72, + "AU12q1CUZrCoCbCNHchFJUJRAGZT855rVQpr2ZprLgdG3W7fPDAZu": 35, + "AU12q8pui7nnvHiUzVLY4QmhaiToMBdjZbNpjXuFhjRsnVTRKwifT": 19, + "AU12q9TiYz29jtfJscr2tjqRZNTGzFjgVDRgnamdzr5A6sGN9QT2n": 63, + "AU12qCehbPqjGbAbUCxW16NnxTGtWsWjBPdGLKM4c6wtbkcBuJ46W": 17, + "AU12qERMUKscrCtXHKR5MrGyhUCpB41HwyZrkrvpJpmB9cew3hBr4": 54, + "AU12qKKLYfPWJJn69PRcycJ9xdt296FtR2TGQvvJ9NGntvo9hbeQZ": 20, + "AU12qSfof6oybog1m8UPHCLYLhe7YbB4yYTGNPMfWM11b8422LTkh": 37, + "AU12qUxNjsu7QKzK7V6G9KFZuTp5mdu5SvMT6bapPHFi2D9njsN1N": 15, + "AU12qbJxTKre1zQATtgNyhFY7pxb1m7EAyDEHfFzHXEo1p6AXKoR2": 44, + "AU12qc6bob2ygNoeCVSEs3vaieLFHenZwCu9RpzzGwqYMpJTm55zp": 28, + "AU12qhcR9TYbfAe5wrUHg3b9Reqk4VLMvHPBtoLUkVgPpf7szoFB4": 25, + "AU12qsg1sdEbQasceiEixfVrGSs35QawcpsbjRsAtiLfME4LCcufn": 14, + "AU12quL5C5KRmMSUWSeS7ARq8w4VsveVa7NqXfFB9uwPZrU6Lt17z": 32, + "AU12qvFFDpHidAG9kUm3wHf1Mn4RMV83E3jmmooZF5Ys6Hc2uqAbn": 17, + "AU12r93zfHei6QhDgB3euf7Frqt1rgjksfm4zbsp8WGHLjA6BQmG5": 46, + "AU12rGLLGPGsXQXrTuCC7HdGEUgk4YJ7MYdHArsN2fEqBkB6BFLDa": 71, + "AU12rGvAnuActQJT5ZUVNXMPE8FsFTMDyzyDUUCUfp9XVD5MknTJm": 17, + "AU12rQS5XLTcpQBBfm4SbKaw6HtM2WuAnqDePE2vv82vNeRTiSjTU": 37, + "AU12rSzVBkcCPAGZTr6FzvJDm9htJ29FZssMCqURMtkLDwD2JF3CL": 62, + "AU12rXUqNYGr6EzprRukiUqECmUCBqqCBdqnFUx73DHZEHWyWs5h3": 30, + "AU12rjctJ3qqAVM9RgvnBiXwfuHfdp47owaPdgraqB6yggosywwRT": 53, + "AU12rkzdcEBimtHtZtxKG7f5NFaY2tSGma4yGPLzDSQkExf3cJ6zy": 15, + "AU12ryZ7Hz4FKY821UJBZdjqYsbcgPbrK2vYAftFD2En88Xd2qsZK": 14, + "AU12s722RAfv7e7DMoDLdjvjGGd5yZYMJnh8sAuaDsMHxEQfzyJ55": 14, + "AU12sG2LtaaNLjKCjrRRSvzGf53T7PPj57Z4mVrQzLKeV4JHCmi2M": 64, + "AU12sHRkEQEmTR3BM2whE4Y7PTxVwAvpcVsUfoLSQLzt8SNvuJ17p": 52, + "AU12sKqDmwkcUiKsVztvDW8CcrYQKuyY8WW7ogKpWmpyRQfzVbNVb": 13, + "AU12sYGtAfuWvTi28MbEJoVtYpdP6vQ6mEnHtqsWNBZb4tJZ3EeUV": 25, + "AU12sh5qjokDj3UCnCrKwLFnTHEavqVbhQdKdSL9LUnNYWsbvFtCQ": 57, + "AU12sogLnjLfiTMNWXQ88QtCEboXn9E3yKMiQhDAWa7eXnwSFdcEh": 15, + "AU12tPh4jDhGq5NZdAAhbD8SLPJPJcfBc4S2uWyWw5NRcFW9Jrn29": 40, + "AU12tSvMW92zmTNQNcqggW52XY8iyudgWAc31ev6MhvDF1gXibTKE": 49, + "AU12tqybuvjqy2c7cKPWxkHLHwHf7VDFzhSX6hduFyr9EQCTWrYRw": 37, + "AU12twYhhceAcKoqEyTsuwYnAKXWD1CRBDBemmGBvFkC5SXATZXic": 20, + "AU12u1VGMTR4GNLe6AWFkqbsBLNSKc9Y3Kkwkf39vi9PnCT8N5mLN": 30, + "AU12u9KtJYDRxtc2ePVppHmUu5eYTeozdwv7v8ZCc9Tny8uMs7s4H": 15, + "AU12uCEqVST45uHuAj1FNcVMBXr8GKZLnnSechbzoy6QW1uKVQtzp": 61, + "AU12uHHmvUQvVraY5wusuHaM7ggoqsQRaJY7ZfZx5wP1YaLsMkHN3": 57, + "AU12uHcAjfKZWDazq5ycsb2uUZyiMHCFAUsFuMHCGpKFfTGbHFgjw": 36, + "AU12uNXwGr6HTnkSyitoZVFRiuB6QQB2ipoDDer9gaBtEUxPiygKz": 54, + "AU12ueqtsYA4Hz11PYjFcWnbC28j79qwFnN7Ye61vS6MNFXY7tnAa": 16, + "AU12ukVweX3KrKmsiistH13YJCqLdKdyVHk6Do7FKLStckAWsp8HT": 36, + "AU12utXZsabKDJm763ci6fenz7CSBLX5ahkPKn2ZbBNsteascUHhp": 10, + "AU12v1dbNVPbuGfU6kn3K3RXptfF4kZ7ExqLnpAjddAXX8Qwq5YQa": 20, + "AU12vFS7hupRWdizuHnT3n8ZxtUJz9AdUcWa4zi1uJPn7p6qHDsMc": 15, + "AU12vWX7UDjcxmdVJmVBWckFV3PMhFw21G2XEzmdJt9oTCwHzmjzP": 14, + "AU12van3ZcRZ2e4sJ5XE8gbXDd7BSxPe8BjkTNg32SvkiqT5qVoc1": 59, + "AU12vkvXgizL2eDF2nRhCGbhVTnefQDVCg5XL19F4H35X7Jzm4e1W": 19, + "AU12vnvMV6UrohDTFHDwtsyHEozw9JDZgEvkhVxbHVaKmiDGo3BfB": 18, + "AU12vsMPRXnzE15gjTLPyz4EzpznokQizqBmTsZWBVag3L1Ay7WrX": 57, + "AU12vwJMv5qDfhD5PoLvz76uRUDLgSsGkV8j4cgT77uYFheDFwNXT": 70, + "AU12vxrbD4YAvuLhgk5fq7ovhkCk63SqvAvxjwqZtrFDzbzssBRA6": 48, + "AU12w2ZoWebLgqtdcyhNZrsaRtDTFiYM5157kDvNgPCd6MQ9x6629": 38, + "AU12wFWkifuQkn9MQnasoM2ZHuoPbBah6gfG2AWGnfKR4qaofhcwZ": 59, + "AU12wTGSuUGjniJuMUTyAuKNNiEcUoAJTpCTGfmojqaZseKaCW1vU": 72, + "AU12wYCLHcarHdm88fk8tzzTud1ejUbrxNcJk2kHF7yzrwA8VnGwc": 31, + "AU12wZe1BCQtJC78xnBRJSu7yYmCaLW3ZxScKSR7ExYAffFfuQXGu": 14, + "AU12weH98gHE5uz8XzHqVgk49qjnwQfq1tL13ig1JLMJeWFgEHSg6": 14, + "AU133hPRipqcmXmJPr7g489Q5r1RBrTtTQcaSaWKtanWgsJF3Eqv": 64, + "AU13MM8x4MNATHZuBEqKw3Sr2qgrG1KewSQZs6qHU4uDGrJmmivH": 29, + "AU13QMHdKeq3jFAqC6SnRWPrqcmFqDqBmBqLD4YLKvArm7FmPWrf": 37, + "AU13Qa5LuCGMufdDiPvaD3m1KYD8YnR6NmxUDKdw1jDvvRR6t3x4": 51, + "AU13XoD3AhNCJuZcZ7VvMksbWL15L3655jMrzcHSnLRquGasRsYX": 44, + "AU13b5hyn8SEb2KqfZPv7xynGqAeXaGrwwp2zw95gsxKzHEZAK17": 50, + "AU13gLc8NA9zBMiddy2oj8fWtnDTSG6WBmVpJCR72ueAE68eH98x": 55, + "AU13gWcFKCgHEcfnU69SF9fyxrydbKmP6Aa8nkZMFGsf6i4fkt4c": 42, + "AU13myEXFD6HpSt11A3YDe69w5KDHJmwQptmFC6odn4chnfJPpPK": 45, + "AU13sT4RRSvM5CSPHg7ofMqKrB7i7nWXHJUZVisNmj3wtFfgdi2E": 74, + "AU13zpZzNRjgJVZc4W7aPekAfNiuot8kJKWBnvyYYHbZyLsLyLo4": 42, + "AU14AwfFqGscUjz6mvjZCC2gv9Q4nKHX4DJUN9ZSmGkti8FCGxkb": 43, + "AU14NaT4V8jNtjb18WpcfVB8WiRt8XSeZsJCRJ7sL127eDowYbLk": 54, + "AU14ejTWvWtuP6SrYCLxWVxdQD64DpYoa9yJVNr49q7JHVZD3Q47": 33, + "AU14unfsEyJMvYrjCsaCBo52RhLyxk7thdRUkd9mr4HeftFo9Rte": 46, + "AU14vJszKrdmXpu4hHirfPU1PkVwH8dreQPTLkKoVAGCJctUT7An": 42, + "AU14wDNrfo6d3fQjm3A1wUQ8BTbWThs2TC3tyMtTpuPatKhMCBVm": 17, + "AU14wZwXoJdpFWpkRkLtWf9C6foaLaZL39o6hh6tDstvmzquxZBq": 46, + "AU158scs9byPz4DS2HGMdZvkMeuR2zcZKuUPnfVWWi5VCdLyhJCJ": 14, + "AU15CTf244mkTmmKMuN9bBjmVzzfnztXx8B8YXgkzcrPZyPXuWEB": 33, + "AU15cjoHvN3Huu4LXiUC9QFkcrUHnSfdATCEN23GMc2hC2SjSxuL": 44, + "AU15eAdymyKJWqKK1NCCgbQhKDwbj7tRRZ7PvPubkQ27fd3uE5RA": 22, + "AU15qBGyQUd5zviGyvMsdF5i3EcM5YgxBpdpdupYJW1AfPpH73R5": 71, + "AU15uxM3JrpNyh655pphjRPZ5yy9H3KMVyvsJUWt61a4NqKgFp19": 58, + "AU165rW5K7BwnZKu1ATQLh7NVzhyZkZgB4rmA6JyskGVXWWKboyW": 57, + "AU166QUzEmeTzX7N5ujeCF8pa2DQVKs2khHPt7BJn29adFRXg5H5": 24, + "AU167n4jAQmzsgc7jsSWaRyrSAffYi6zUv4Dvf2rmZUZRaQ7BhTk": 52, + "AU16JHQZ7A4FAVrWtFLBw8mRi3MacDxEYTcKRF7VbHK8EJmPkVmv": 50, + "AU16JSTcXJvEwpEihhpeGneWbsCUC2XSeNmhn6N6BMxpzzQ5Mn9c": 56, + "AU16LGt44ESCDxwyLccDTTG8NcNFozACH3dhfKhv6rqdEBqW3uvn": 55, + "AU16PW3Pj3jQRN1NLt4NR7URBa8srX5jo4kV3hrW1hvDrjcAHrpw": 21, + "AU16Rsrn1ga5zxDod2dsn6c5u9k3V8PyjViHhFY8NurGQCtaVU6D": 49, + "AU16S2WfSi4UsRhA3jEYP3esSaMSaadMfxpvyywdQHxtgyV3kaNH": 65, + "AU16VyBL36uh9fPysZsU34a4uS8uWTVScUjMGJX4BSNjst9jYzaX": 14, + "AU16XAytmHfjGdcRFSA2JWF51gX5s6NYHNbdEAYkH7fciEBsiMhy": 57, + "AU16XvKoTzAxCmeR1Vd5nPQq4EbhuubZ1TgHu6mWNENaZh1H3Uaz": 43, + "AU16ZeqRjuCm4j4eudFEDo2h8yDyVgc8gdXcAjhVPWVdCGSiYoJN": 53, + "AU175pGPqgGhX58Q65UqZmr6yAroYnQN2rZLuXBQWfDUXLtb9fDa": 15, + "AU176P8WZbFJXLBU5YaWLF7csKyFtVLqWpoEAGMowx4hY5XSpxe5": 14, + "AU17F1sRXraaywg874RDUArveAJhAReXCVVDKQCRzwRdhKE3UhgM": 71, + "AU17KRsMHcY2Mce7PWyYWhjJxDyAE3tp6oMqwMCWaqxePBNaHLAt": 15, + "AU17L1kwwZKNKy9bHwHHycbLTMEag3WhSzpgm8K7F28yvk5YtoG3": 19, + "AU17fuSjL2e2VL8Cjvm9do8SLUjMnCPcLbz6gtF3fu5u5BRVqiU6": 64, + "AU17h5sGShhaKy9PdyxshZsxeBUTiryrfbkMsequ2L5j86QAHPo9": 14, + "AU17pDfKjw84UN5AGvoTQBCeDEDNZJ6hoehhLp9HSVW4o8LZJz19": 21, + "AU18J9xuN1PMox97GGtiab5j5HP2N7W65vpSMYos8Wq7i5ZFcS7z": 32, + "AU18Ka932TGnWWghS9trjngwR3P9XdWoDhG7uchDAGgAvvVTxttp": 15, + "AU18LRveAz6GntTHgq9bVxzr7SwpRBgB9S4TJY9EC8LNxPgtEBuQ": 43, + "AU18e3XwywtZRJSFtyTAQrKg5g7pAvyVSrCJWyCsp6zqjsNWKBhy": 53, + "AU18hkozXnFKELUB5JwdzRa2cUZQA5YhDnTiLXgnrxaE3vkFjccD": 18, + "AU18i1He3dYKHPmBfPHK4QukcPGBdxYWfDhGQvRRcMPZjkSqQu8v": 26, + "AU18imsRes8SGw9TGcqeJRCqBHXoS5D3S3SAQtgdufh7emCqdwgU": 58, + "AU18nVRUMzaSNYDiQfvWfaFpXwnNR9U6pXk6qt7fEPrc9BxRj9Wb": 46, + "AU18tXvm7vwW95H1F8AxANHhAgGFBVyxKtjgm9ZstT245wDaKXqd": 19, + "AU18uVWrBMLjgVb8WjkzyssFXFN78Mszrii3ujyyjPZnJz5sFzR5": 14, + "AU199mkrX5NwoZNzTGAods4XifRfd6BzCjxrb5fGzHgrU4sSiZVF": 53, + "AU19AV9LqdftosnUKpMbraVcFscnxVMGGAEAqLzhrQkKoqYKrcXe": 20, + "AU19Ekht69A2x9Y755cztcGXV1Yu2Ma9JFkagj1jZgHv32z2xSse": 24, + "AU19TkKePnXEhB1Q1cpXRAetfEJcYbGfvbdQzSSJQJMkb8PALFrW": 41, + "AU19dCyYhyF7rP6wRwSFeg2kUfLKqJjrfchB3EdkaFpeVhy8XDpv": 55, + "AU19sSch67RNvgEhoobUGg5ro2D3J9WbAL4taYGLmD7trRVSGSi2": 18, + "AU19xRwih1ARL3uFfhYDr1yxkVFRonBqBSdcFjNpzsNQrUw3T6Zq": 47, + "AU1A17TgwdjDKtKqxggiBzYrFHJyKov63AjeBtmzzyC9ZFqoy9GS": 62, + "AU1AFpmcp18ZtvZp3FLYtDbmNXq37iRoCzonCkfponHKDTux6KxL": 45, + "AU1AGXCLxpewVezX65qVpnHocUixsqzopRT62p4Rp1CaetrJmzDs": 60, + "AU1ANeUepyBuwpLeXfV6Cd5SyodfbMWdKpve7QTrnAU1qqVSRUg7": 36, + "AU1APPqHi1YjCtZCTjWvzTVWLy5jqjc9g2BqCy3NvNw7kA7gTMZD": 56, + "AU1ASi1rV3GRXHSNMhYunUx2zh18ATuutGfdNVDdH6kufyboZ3g3": 14, + "AU1AgC95pQDv2z3n1HCTKuAnRapCx7myiyZDfXoihhuSosCpmpDs": 27, + "AU1AkNyT5dLUEYMTJE3dCveZ1qrfCJkPujeWZHghAjkQmkVannh4": 15, + "AU1Am8Wq285TemFZPXBYjbGJoaWDPeJfTdCuX16gzqYj1jTsttun": 24, + "AU1ArLZijGtZfiwJWC8eBriyRNnPRpGqprfqvksv2McvVfuyrsPA": 45, + "AU1AtJahD2YTyAnw9WDSShC8S5hpkWg2snX9DHobLg8VLnpGpqVx": 44, + "AU1B2CNhMQqeWMNcQj7seQbsdfUTw1M5cUoUZ4e6i9KhPnMhP1wK": 80, + "AU1B3c8RF8ntCBrszmr5R6eNX8CEU211mVsjBB9PxenV3uAeoYsT": 46, + "AU1BH9WPcQVZfwT3chY5vtzNY79VPPeB8Ctxyjm3w3esd9RbdEBR": 15, + "AU1BTDaDhHquXWTuGqurkkZW4uHFAQpfVcqk5pqCBD1gfJL7vaGK": 65, + "AU1BXyHZCBPCsCkTDXEYtHumtgYCC9sKyxVhMqBrd3krbE33yQju": 44, + "AU1Bd9ey4zuAPpoSFYN7cMV5QQuJkcr8LNEW7qub97jKupGSV5Ys": 71, + "AU1BuNG4JHpZgLcPQuAqk2BmKzTgUjHbfBAcfwzPGFvJWeZja5CK": 79, + "AU1Bw8fFVnd7bvXF1SJDQ2NdH5XznTkigY7wp6TgwvQ9GSCkLeJf": 17, + "AU1ByTz1qzjjjVpQkjY2ziZkfsLEAzFSK1GCg4ZaVTPkrCgAvFty": 65, + "AU1C1rEmPuJMV3VA9Hfzm1Ra7WSaGqE2SZMoSeZrXdx5Aw5AQYDg": 35, + "AU1CAWzgqADT6WNQpgzn41VgbLjSQ2zr34WvByGprbb4FJZ1rnsT": 24, + "AU1CCvknwvVbuMLkgMfK4Dr6BQ4ayCU6DdeG3TakZyjRDEuW1TTW": 16, + "AU1CECp1aoeQMR5PEP6CcNDh6kZ9u26UCkCXyJdw1utir7E4ePjp": 51, + "AU1CHa6XE1WwNdoVg76LjnJaouZdTyxksoArbeArDHPdamagyoep": 51, + "AU1CRzYax8qXcD6tjuRYf2KP7d1yHbMi6c4yPRC74bzwCUCDWtrM": 61, + "AU1CSYYKV19iHE9f7RNEeBNF4Tj3KuS6pbkpaFPdNERfAqmm9BHm": 65, + "AU1CeGG4NBM7GjxxFHin1riAnRdosLmivGetSRVKxTPpU2Atpwgh": 15, + "AU1CppVYhtz5Dg2owZNCotrjJGm8PD62Pzoz3xkgnmNFC5sE3QHx": 65, + "AU1CuLqWPB6R6v4N4CNsFmXBmVDPXSw1uKwCbhWbLZP3ob8JAQQq": 59, + "AU1D57FnpCv2WBgG1pUXPjiGpYxmVgAaRfhhVjQZHVa1sSGJ2HyH": 22, + "AU1DCtGJ4EfwVr8gtcp4vFxRw7THHbNnysaR9HUPs8GYnNhGckPV": 34, + "AU1DQiGdDU6xL3uuf1hLRZK2KVdPMPRvYjzibGSda8RDMYHPoS12": 20, + "AU1DWKftDHBFdqREWaiv6JGZVvGUMV7sdfWrcxPVnLjYyzz4aEvY": 51, + "AU1Da3K85jNvsKVS1DrYKnXLpFWX4K47nVa8kVTaiADpxZqAZwro": 21, + "AU1DjRH7otQSYMutBqtjtbxfZEKhFqUStKsTGtk8tBRr9KCaDPod": 65, + "AU1DndF6buFHM8d3o6KaWG9GUkc7opFrTMNjbEe8wS1vHVVSg49A": 21, + "AU1Dpc9hdt4EkbMTq2FSKwfYURNqNY8wus4BZQ4eyShPEePLZKPD": 57, + "AU1Dq38ZPhBwFHjW29Hpkp7whVXb25RwVhYbFJvPyeht8r2A6pLj": 26, + "AU1E4nhp2UiSFTJ6MqJcRhd6M2iD8LzNdurbqwCqadW3EVbyejfy": 43, + "AU1EETwLPSYMs54z1pZsdJ2FH1vC63hQ71jNELbKgGXr2juEW73z": 19, + "AU1EMa5hq9x5UsX44y6ECvkJXWWdQyitxtkSbMck6L4A8AG9QXLL": 53, + "AU1ENFGTBecsv4E9teViKgjMg1Z6f91pWPnc2BbfTNLpwPcqoijZ": 27, + "AU1EPRdXEJoMRDKZzEaz6xzLEYYNwvhFTm5bWoBMBWYsXgzckULu": 65, + "AU1EV4QTUY9sCPFRERgNoWpWU6oQXhqZ6sHGAKBhFd5sLaBMeUKJ": 43, + "AU1EdNCWk5NHNj2cVabSKzMnsaDpTWDxvHWKFoZd2HnhZ7RBGSpH": 60, + "AU1EgGJAJNnhkdWUG3u2eWNrZfGbBMEzqSHJp41moDrtg8MiJyRC": 39, + "AU1EnaQjaw5gSHFkgxASJEjjGgfdnFxeoezAmNZXN4sVJyVsXm8e": 38, + "AU1EpLY3cTvWrXBojzLdkWzcqKnwhoJrRsBBnVe2v8e8b2KK4LFP": 16, + "AU1EpMiNUo6bTK2yZnMnDa5NLDwCNgFzN1Jx6s6Wr86yhVvNK3Hw": 14, + "AU1EtNDmmmTV965AeFXe8d6HtJn7K9J2iNWibWNcEXnaRfw9NDqJ": 28, + "AU1F1eHFNfxcTQ64zAmYDDikxTmtAGqmGXWkrEkc1MqawazpGUVX": 62, + "AU1F8unWNeWCsn69tXUjSDLma7oX2Wyzjbfq7KoUiqok48UFyCw1": 17, + "AU1FB9vAs9w6gJuUUAukjspaoscN9fCz6n9wyBJkLkcWF1pFCyFL": 29, + "AU1FGiCW5Rogi6B2wi4m1UsFqChMHzXzh3t9L8Dix2ye6ecHKHBx": 50, + "AU1FJoZrF9QSjm2Bd8zZswMZD7QJRCYzmHrpV77xVxEC9pPjARAy": 14, + "AU1FLtVqcD5xHG6Y38xFrg5Zj9YMkzF5pjZ87e6CK8xZct6E1JUC": 45, + "AU1FMNq1dwQb7QfnrqE393NPpsCLqx1H51BVC3rNiJd3vS8seqa9": 15, + "AU1FNNRyV8fyg9DymCyarJEBmPYfy16mHJDoodqfCK22M5wdkhAo": 45, + "AU1FXaQN5MW41hSLLX6SZKjTpMNf9rccSq1pUH2LEUjtdfpueVhT": 57, + "AU1FaiEKBB9j7HoSWNFBe1wEa5T5PQDKMr5B8ACAnih2cSdD1XQc": 15, + "AU1Fcdn7eRPrVKvB9fR8VTnFkJQQJ7hgYWhofizyD2taU8fPrA31": 41, + "AU1FjpZDt8U6qEWmBwReix7f3UvD5RqYfVjuVMjFZ13WRAAK7oL1": 15, + "AU1Fp7uBP2TXxDty2HdTE3ZE3XQ4cNXnG3xuo8TkQLJtyxC7FKhx": 26, + "AU1G2dk9TDghub7ty1gJagft27VKVQXtVSb9oaEjMnYQ81ZNJQHW": 41, + "AU1GCoi9cay4kT4YGGyGto4woLP6MzhkNvjQ65UYCZ6LTRLsf56e": 35, + "AU1GE2GMrvGDqLbBm3aF8AQLVtPGVWaQmipfCeDgT2GioLE3EHPg": 17, + "AU1GFfYmfpJDo4NGYJiL1wVT6N6xwecjbAdBQvNrMLvzgHK1cgdm": 53, + "AU1GKXWQQeX74EWJu9npVd4J7gmK1jUZXXw2YkAnGuzGWjPN7SKA": 14, + "AU1GSmC7o1iqSf8Una5JXt5fNk9gperZP1DZ6CRrsqd9PCNwt1ki": 43, + "AU1GcuDZMhuPFDcG9eEErDa64QhPwUhSDh6yVdXGf4U74xZi588R": 38, + "AU1GddgY3Dqt8gqicHHWGdbrRxcQzWhqTTFXk53ySHvhH1Fhm8rT": 14, + "AU1HXqUVJNKq5W7SstirKcoy2EshhhQKrzC6qKqWynYivcNgXucx": 35, + "AU1HZp9MqC7CCQMDumgMMzaKu4eGxo5u2dPgrdzW8MY97Gh3d7VN": 46, + "AU1HbNskETZSvhsyPFfP1Lqo6uKNjdt2fnS8eUhyx3N71xLsXd1o": 18, + "AU1JCdmH8eZmZ1EipkfLmVhuBqu8uKJbpXNMJPJDKQR2Ck6GNb85": 64, + "AU1JWXb4Ds6QyCVRDxiTj2qG1GkX2at9zZZgUwNtijZTvTar1iuM": 29, + "AU1JZHjmbUVX8M74gFTuqi5y6sxkiNe8kX2k2RGXMcWT8RLT1a76": 20, + "AU1JfuuZ3sNZjxXqz2WUdDyZ9tj42mDSoiaLwHNpms7cAeDX2Mzy": 47, + "AU1JonHXrr41Qm1oGE9Taf4DFscBrUHTgF8jGNAg3zWo1hKEiQf7": 66, + "AU1Jtjw5QnhvTyYuJ9P7enSc4yEeSeH5Q9Etp52qnWNv8siaRSRD": 46, + "AU1KGiegMJZYRSVLNJxBWnRGT2hayJnyYUhh7VreWLMfYuGvnGjH": 27, + "AU1KGwZ7gWPUWyy26ggtJbgv1TDESuCvsitM3j7Euf4csGVqaFdL": 44, + "AU1KTvsc6cy3ETvEsuZ832ACRRxzX3DWVq5GUFVF8jUMC6WfxJAr": 42, + "AU1KVRrsUH6kH2TUSo9JXW29s7oshDLmjdDCK9PcBTejYY87XGMj": 61, + "AU1KhuXhfNosXduPtCAtrhkfDc5uByL33ktEHZRGqbKcXCetKmkH": 51, + "AU1Ko6gDvmczQjuAE5GL3xcqcHW27iXzswXGVK6TvU69DtrZL58E": 26, + "AU1KqXsort5ZPCoVphZmBP16ARZPssQuC7nURy23aSrrcZ3ZDo6W": 59, + "AU1Kr8BQFSPfW7jeh1Czxk8PzVSdfmrkknr41xcYzCnnToZ2gqZt": 14, + "AU1LEwwj2JdpdiyHKEQZQsFz9RDfQk1gUAyPiCX8JuRMm2uUvWbT": 14, + "AU1LQNMaEDJCSEm7mQvdQnd7T9RCXzY84wJaqaUtaaHqJzYrTEBK": 62, + "AU1LhJ7ZUQHANXfuZaQDmuUv5YxbMRJEDLK25wRja7S7WSESLiJ9": 22, + "AU1LokY9mkhgWkxpsayaZzf61Rc21wN4ZXfL8je9cU7zbygFGDjy": 15, + "AU1Lt2J657WL9G7pEfxTGSN11xGaKdSEq7j7HAYbfrA2TLz9fFUA": 13, + "AU1LzjW6yooDhRAxxYRXvhjSErZpEZL42YGNx5MRDwCzjM6ufPRq": 61, + "AU1M2Wtrr1h9iJJdBu3waRwaEJRF5ZpH6iiMJsU1HVdFKLxontDd": 50, + "AU1M3Wg82Cwo62SwB37AvPjik6fev8RWm1Tba8CjhdyQRA185Uet": 28, + "AU1MADGFKHHsWMP4eJ6UT9HZc9KYtpun9ZiUMWidHXfrf9jqHNAw": 12, + "AU1MB32pkjjWPSXQpTL7KQbkop6mKkaERDjcQjr7Tm4NR1TRivsy": 46, + "AU1MH7EiWoTgPXfx6iWg9BYDxiyEoxoiiaE1QNHVmyprKtdpyMzR": 39, + "AU1Mf8uB6BDBizrX7e6ySMjS3FYtRkGSrTqUz8AFG78c1RttyjFh": 61, + "AU1Mkuv8fU79LdoogQpjzyDrVm6UqU63eqBLLx5sYAhT5T1eGSgW": 15, + "AU1MrLseerMNF8BVNxkHdGtkcUAKrtwULfkmm2AX3JMuTK2jAS8S": 31, + "AU1Mz9NUqQKGmuPLErEb63xfqQ67ZdF5xKWb7nkcPmsqqxQiBvSR": 26, + "AU1N5nUhqkinfLdreRaoVeuFLhygyz6KoiAy6MjbDDmWwmr54Xmu": 31, + "AU1N7qcg4Pamqukzbsb8YFMnmmaWsXktYhoartSxwign1rqZdyfa": 31, + "AU1NA3MkRaSitvs1VSGddPruHFcbFxVoC8sxdkDbWsHBKYZziyEE": 38, + "AU1NJ9vVFdhoNCBsuwK5CmdRVAHGLgAzYddWB4BGDYJrxqo38pVq": 61, + "AU1NKHFmb5PoaQDS8ZJDCbLU1jJBh7K1Y5kC8jd2ZY3qy1pfmiKx": 13, + "AU1NLhtTuxSv2YqAjVhVyf7i9tg51k9aLUs9ZE9pMhhinqaN95E5": 15, + "AU1NN6WvopRgwGbonxLno296xra84C71kM3xFqiffAjTQQiJh6qg": 24, + "AU1NNfMpS4fpfgwpaHWJD8H7AkJ3TpmvR2cAVbgbsbspGFFgBT3a": 83, + "AU1NXzJJuSkwD3TKajCbthWbmHGvftCKYjAbMpCEy6KrtExUCDdd": 27, + "AU1Ne4soZwN3xjQvz2C5r5V1aTjoxn32oBsWQxS3ftRenqUSCwc6": 15, + "AU1P4zvBt3va7NGMkZym7EqWMjeFDAiqhxgBtGmPwrhhwWHErUAK": 14, + "AU1PAs52tHTnHC5ssDDMUjdb9rdkzaPW2TLzgJdFARtiCJzMdX5r": 29, + "AU1PJ65tznKyGYwFoR1Pd6ug8cdkztMQdimEvrebKFhLZcmtBJYS": 15, + "AU1PSh9M16KfdW5aCqQ1ntCCtaLPCn1npgQymmdpehTWHEhiht6v": 24, + "AU1PShTTK62ko8TRqoip8bJy5Sk77X7k1chgv699nVWLibZeUNpu": 24, + "AU1PWPFPdYRg31JgF8QLfJbTffLpL4PGbvX5gjnQERHYY8iqvhpA": 15, + "AU1PZRTzqnRXSWMwW4bjQ2ZetevKwPTmwq4W14ZoU8pH6WHZFCiw": 29, + "AU1PcYa5M3U6GZv3LV6oHToPHGUUHnd1dhW9quHp3Roru43A5xBT": 29, + "AU1PgjgjN93MTDgdfoDfVmb23b2bq5GYQ7Y5AV7aY9mHj14fYJCZ": 19, + "AU1QF5Jm4wcKmVe1BFveKSd9PXrc9KkAkv2KYxxELKFisFq9RWeT": 60, + "AU1QGjMnHnjZvFVcKQXzN1aM78r7b6A6heVEfWUkDGphVCRzBNPq": 20, + "AU1QSa6JfNqqi1o6pbtK8NE7CcUXpQNCuWirGiU41dtbHGUjjApA": 47, + "AU1QUS1XHYyguUAVo3De2Mfyy23X1Atuj4uauxibU8uuPNx377e7": 48, + "AU1QWjM1Hr4uoaYE7Ch2qeh9BVThqSkRCojWa5tJ8VnYD4QFFMBL": 26, + "AU1QXYCHvLuy9uwTbLwaMbAf8WJSVHa4M6CHy1k6T9jrL1XoaNQL": 12, + "AU1Qh5EnEKR7inR4jDuv8pd9xGf8e815bTEfkuS3HxVVPNzHJtAb": 55, + "AU1QhRw4xpdMZa7sBNVwxvHkNbveQcGEfToGBs1pwpVd2vLCvj3B": 65, + "AU1QiAc6tWsBqRMDkcmVdboLZzfwy8i29x8KGwu9UBvQmvmoy4Pr": 14, + "AU1Qtzs3thZWbPoeuYB7r4ZFZG1seA7aogEqXEbWnK6MYHyC5XiJ": 13, + "AU1QzGFxEkJAih6U4vHzxpGJReVNNd1yHU1WC2WVr8Zc7cbpWEFk": 13, + "AU1QzKs2kXfq8vz4T6fkipynwrQCjg9xUFqGTF9SHowyvcYb1sJQ": 31, + "AU1R21CCkXsbFYB7sjPdrDVWP6uRUqK4zFQSSAMAYA9hJ387VhkT": 15, + "AU1R2PX57Pys7m8yveqsdmQcqfB5hapGuDr68UiLF32gyCayhB9V": 45, + "AU1RGuSDdiSMGk1w7tM99wnXeAy69QxDhZdfuidDJRp5cGr4UGX1": 15, + "AU1RN8H1fvhVeF64FsApdnBKJsEiNQCxoRpETKof248SUcSYnRpS": 19, + "AU1RRLDu1Fy7MQNLTcSZ2NDJKBTivzqWP8UF9bvbLLxmRFG3n25G": 18, + "AU1RWmFY9ZZCj9ArmjdQA8VZz2UuR3zPqasWxyXCx7F1iweEtRQF": 64, + "AU1RfJztYjzykUzhAGB5xyo92ZgBG6hNbPgh8DKniprjxzrUmbVM": 47, + "AU1RnveEGao41tZ9jAnMTpQmMxKEbPg3j3ScZKdrfTqTP4cci1fQ": 18, + "AU1SBtNCYF3KPCDCJgrtzL1BZbDbeWYyqSit3DDuhWfYCUc738Qp": 56, + "AU1SKEfPxDbPdPeTC4UWvyFFKR448nML4TgvVPUnUwwSN5agFKpM": 36, + "AU1SNLLriREWy3q1ZJUTVVjqBae45CAtiqfAUPZ7DUKVGsz7SDau": 21, + "AU1SVMYpu2AYMPBHzcGRcLZbYb38ecYSLLrmegqj32fF6MbYYwsu": 14, + "AU1SXqa6UwJgjdjrmPvWg66C7JFDyCq3bAHvNkiduYhQjFRHCPHi": 33, + "AU1SZjJUofCdD7qXufvsESWwFtCgtT49UkEVQU7NFPVHqDQ7jL47": 17, + "AU1SmCok1ZnhrUcev2T1j8cB6jpfkQUdDS6PVTsN2e1AKkkdDvfr": 13, + "AU1StSzHiGPzuYEH4e4WCuvAiy4aBmDr9aFMxVyUrUcQm5sRstm4": 20, + "AU1T4fmtCnCLKePBBNB9FHiGhhEUQB5F2NNJ39Tc6HrDEmSgMwka": 65, + "AU1T6rtpxekAAP747wvUR8HB8EmsPeWu26gh1mzqRWjfjhm8FHi1": 14, + "AU1TAMtkEVs1KH77dWnVHbE9LDEeFwH3NfpWQjH3FfQihqCFFovL": 41, + "AU1TB5JtxprJ5s8RXm4WtwCvv6hAhagdaQJUJMaMJSvcqyk7yzEm": 10, + "AU1TJxiXvsxsAKh5AhzpMdyhkS5ZN87WxnXrgYQnbGH1sCZVt9GG": 52, + "AU1TjC2wCffiX6jkwe6M7niugm7QvDy4zHiR2LeZknLGezn2BGxE": 13, + "AU1TmGk9KCcT7HPDwfbUWV6XK2DarSGHpMXdFap7AqCVXDoTiEda": 56, + "AU1TqHACaamPw6xqZK1VuyXExmhwa7vrDjcMKqZrRQyoYhLYt79o": 65, + "AU1U4kvxpxpEAsZEwrEXM9qpZQPZBfKQgqnqVtE3T2e51pPPAWsa": 69, + "AU1UD8zhmmXgJiUd6F69D39jEHNmg8Dqd8RS6HEBdEqq3SE8MgeV": 41, + "AU1UE9THYPJdz6kFaNDgGNu2Jz15Gkt6S8cNkUgXQthTrai6V9jQ": 23, + "AU1ULadd8Ng2bKoViF7xjJTEzx1Qe4NkUkZqeNKwLQF7rYVnDYnX": 44, + "AU1UcUY1xbZVt13RFYXV6QJt5k6PwsQyk9xPaZNSEFEpCCFuRDAS": 26, + "AU1Uegp9Y9oDWDU5Y1huauxeX6sGGrwAdDsaUs7rZz4LoB31e4Mm": 56, + "AU1UjrJHuW6nh4sLatKbGK2vYpo9vjxozAhqLLqrk4G5EmWyDpDy": 58, + "AU1Uy9Sa4uavxNuktqwiFxU1fxTQLVS4wc5HbD8TUxjdyaba1cZP": 52, + "AU1V6x9c9yrfcZ9GJo2DiRR5ZWFdEbKyWumgBudZoNkEU4Ekwqqu": 24, + "AU1VSFH8th6MwfafwLbZoWxEAywi5M9GM687aD3BAa9XsmRVKeRi": 15, + "AU1VWdHqyTeuWZ1aGrKBzFueJPtYiJ19NiegsdS3PJ9dabNg5gLz": 50, + "AU1VcPGgQj742HHY3DLoERUYmh6MqWPQaMBkPwWg4qLZ3nJ9niba": 43, + "AU1VvypZuDUuAjdxqvwQCcNAhwKfok86fN8eX4KgmcLUsyxaFTdA": 17, + "AU1W7oWsANhrcgrKh78fFN3AdJj8o6Xp493ZZ84tG1CF3ikn16LL": 39, + "AU1W7w25SzuovM7meYfuMMUZnzFauofMZL5kbLVh6noDynX3FmqD": 40, + "AU1WG7oVv6kk3RZataxiDdtWyeJU8XZDKigDYSAmvd15M9zRbDVJ": 40, + "AU1WPamcuug47Ss2xRsBmYu39ChYtnn7FiA9pMViTzsgZG8ZsyCy": 19, + "AU1WSPhKsQJm5MRfNFzve9D89e2cUA8si1ba9mQAcVSdzjZD5Fz7": 13, + "AU1WgmHaWLXt9yNLndsg8UMVBsDdnrsTvNjhL6Dz9ctBmZpSGx2A": 14, + "AU1WnENubDxHtypZff1rRE21nugSQyaVxpUy8EcLePqYE3vCB9Lu": 66, + "AU1WntcFovHuCMbxZBHcWAcWEtzNnkfvi2ackes3nSqfSYLggfgt": 44, + "AU1WpC8Vqw7XXJEDtjGu4XrZrNDirfjotrJ8gzFirRvAvu8YfiHM": 29, + "AU1WqXXM19amQENX5dmKqwEmfXXLkTFKoWLmVCHmRJuWWFkgqYNC": 64, + "AU1WrPiPxVKbVrf5WUsaujhdpFmvUViYQgbm2hBtqufVGe2iC6pm": 20, + "AU1Wscgn6jjNNM2hq6u29YLeVRmRbYPGy3GgDwZEpnpEBReatfFa": 53, + "AU1Wug5ahm7XT7pqcxnFns69XMbustrxM2WTEasnVf9WZcXXdTGH": 46, + "AU1X2PxaQu8t8D9fYmwKCfx3LSTpzCJc7EbtZMPQmNQHeE7KBo6E": 50, + "AU1X5cJ655VDeBJ1U84Femf71vJJS83Q1eBrmTCuEr5xGkSJEnLA": 35, + "AU1X685mXWcj2tgn11Eak1wpWrBs9poEjwkkkGXV9rTGBkVRVqKN": 46, + "AU1X7CTkc4EooqftcAwtT32CnxBpkDmn6tufN7NyJ5Avj9hvECJW": 23, + "AU1X7a8do2NpsquPgnedByMf2F8SZkVjwFZTj5rMBnoq7FngwCxr": 49, + "AU1XBNTEdncHpSnscuTUZKbdsGBJmf3XB51D1rcvHCPJBwqm9crA": 13, + "AU1XDsNyxQ3x5rAvaz5rUkBwr9wayPnu4sTi14SpCcHXdHeDc1ix": 20, + "AU1XGjKNeedhxC2hHZQUmuo73p5iwWTi4G8GFHUBaYdD6NSmTVMc": 43, + "AU1XStVDcseVnUV7YzJa9rSAkHPyWqGPb8udLS9Fesm32LfCw9r": 13, + "AU1Xb7XvkfA6QowaoN9WpfVmvkwVJgntQPT8m1sCyeF7PNoD3BLW": 56, + "AU1XpPmzmS25mGYHe9ByPRyjq3ykDB1cdMCEzxKogV9ZZWPJYnzE": 47, + "AU1XxfnXKe43KjA6Wb28hv7d4pQ7smLoX5irzHSiRkHdWL9arSm": 15, + "AU1Y1J6DnGV4mjBvhMSymaD1BzpEZsWmfJgf2maMWUFYkpCZy1u6": 13, + "AU1Y2ACGT9Uiw2zyZDtEys4m2DGLTE9vfv4xCX3W9xWm2oaf7usg": 24, + "AU1YBjy54mNYDKLBMaCHK4hJfyJavJrkrhCs8phNPwsuvmZtnuLq": 49, + "AU1YD8xARgCTEiWHfttMR4CBhJF1oHtTg61jPTMpAkWMJWPmc6p4": 16, + "AU1YGVCs8ZsHGpN3JHXHfFCMGVwqC2YkMz8zAXT1gCkb8RFGaee3": 13, + "AU1YH1EUCSppsXZ48kqbXmG4Pt1KbXSismUtsa1Nr8uZb1F5rwnt": 16, + "AU1YHBVyC3pNVh8sNeL2nWkWtFP8bgsT8swbSTTaf43NyRsPDoDX": 18, + "AU1YPKg9ZGdS7xoNBWH1JbUhvXXPgVLGeZD5nxnfe53QEYZXeGuS": 54, + "AU1YkPYSvAvyYqfBDQyJjxAkoDgxwWDD9NAcLEpz2923AMYfuce5": 18, + "AU1YoAMgzfgYQsQD9k4NUrQtZcHsk72QV1kqoqvyTYf6BBDXSn8A": 14, + "AU1YsByuAGXrzVhQ3dNB1w6FDkYGkxweS69ZxgrerPVLeMNRgEKu": 13, + "AU1YvqJStwV6726M49jxpf7Fr1gp2Stkrr6eoh5ioEN7jhThZyJV": 58, + "AU1YzyMQSsQ7aUJuS8T6ijN9VPLeFgZP26yV1cJjP5NJSAkwefZZ": 17, + "AU1Z6kpMEgCPzg1uUJaSM7tSbX6MHgf1Qa4iLtaG6KDjC7XbHYTE": 55, + "AU1Z7r6W9oRqi64dyoJe4SoqgNqEuMGCUdnhmjDd7ewM7xNEFXpD": 15, + "AU1ZE7Wrs9pBwnGKu6SqS86vSXz8cannrKNfTUUqKVpvDQwvT3Pe": 66, + "AU1ZJzVyXoWxmTs4qmXoFjwp1kxJ8JpjN2Rg8RUPJkStLsJwenVf": 16, + "AU1ZMyjnp4bGAEhrbzEGniJw9pZEaCmda9tguxwjJn2AUjEheJBf": 15, + "AU1ZRVP6Gn3sN37ofQcMKRXERvbCH9LXa1wJJYJP2HBCDzjHNDT8": 15, + "AU1ZSmYp6mUMzQghGCSwGYp5PYLS23di5JQwJ28s6TEKRb9PdM3B": 64, + "AU1ZWAVkopnPev9PgUouj7n3AtdXM8H1QX619XFD5oSkuEZdbSZA": 62, + "AU1ZcNC7RYuabupMEKbntHaJUxqPQ8ZhrM2LnqDqygNatorcjwMh": 15, + "AU1ZnDUieAuaGgCoVWKhY8R8WoX3BJutnA6oFJSXDQ8JA8QbFQwA": 14, + "AU1ZpNju2XL1uCp5dLwXy4rD84YzCwHREtJGcZvnhT7ptd6sMQg1": 23, + "AU1ZyUyweNxJkUq8y9aCssbN2B4oYCkZM9kwy7cuqRRrBK2v1e83": 53, + "AU1a2SPB2RNtpHhVS1vPHY3TP22DpEaRq4mUdi6gzUFMdQCJ8p2": 24, + "AU1a2mNGy3azDcetVy41NZ9C7ynkMH5U2kY9bAj7yBPEwVGZvq54": 37, + "AU1a3bKXArzQxGMQuGgQbadB8omg7zeG1wUqQQEfs1TNMH8pm8L5": 38, + "AU1a4C81ud8wyCK3pmtYSyLqeF4LtgBAHRCXiUh2HWCnMPnFv1t9": 57, + "AU1aAcnmhwTemMeLaY1ukNwyiKwn6oU4vD5AAvgK8vNqRVB1Je4y": 75, + "AU1aNgvZBd9uWNPoB7NTCsA3TB9rYpx1ehXH1GVcKiePaHwStpgA": 18, + "AU1aNkSYkTsELHQBZz9MWeH2MCPq4F2Y4SEr8Gc7FWnpeWm9fsEj": 36, + "AU1aVjgHgbPDmh3qnhSW8WuydoFAGybknfnmp9JmHNxaAnPEVRVz": 41, + "AU1aj9ofGf6VrFmNQomZQNxDNNpikH127FVHY7b8E3q7sJGsHMEA": 78, + "AU1akBMt8zvq1bh9eLTjBkxYm1S756eRea74aCrH19UHK63rvhBv": 15, + "AU1anRJZwyzKRsuUWBmJ4i6c2fS3J5hnE8EVy4VzV9bzJvREptqt": 45, + "AU1anVyEa4Ntoy5a6qdZgLKjxgMMy1ghkptpEinaB9o7yW2yUWkA": 23, + "AU1auDAn1SidMjcqBWpT2agHtdEiuYM5yyKzdba4jkAk2yjQtQWD": 68, + "AU1b1sTELwoUaNDuDvqxr6feoefmG9LFdmkb1pFSPg7jugftYfZf": 18, + "AU1b3R3gF92WmueCCHNRqwPXBRWBTQxSaKS45YqyPru1HssXY8zv": 27, + "AU1b5rr62hg4img5fnNPEVKZhPyfE1VyRBYJd2WYQVkSP6L5rRyZ": 38, + "AU1b9FB17MU4VeN1FGVjw643Fiji8HSHpVZR2Fg4GXrPgYkwFcyG": 55, + "AU1bAHPWuKerfu2XbV9YfcunPjkQwDMhhAiFmaMfdQHDHkEDzR9i": 18, + "AU1bD6fjTcRLvUbDYyeXuCq3x48ZdCWMa7WSYL3RcLdikGuTsxbh": 43, + "AU1bL8XEE4vYnw3rRucv3RhahGsp5j3bTuA8mrdHwsA56rHRnuyh": 15, + "AU1bQ7LSPmK63rpXJiosXjSUN1WZRZD8PDBUTTwNpG5FSKiQSPj7": 41, + "AU1bRyzdijKPg13esYrNb1t6AzipLJK3JoPphL347E8dheakvi98": 21, + "AU1bSHjm3RXRPsCgPaYtco3G3xBvgAqk5RZKET2M2ekdZHSsXojs": 66, + "AU1baXZhKwzD8jB1BxfQ55xGxvusSXMYYqjbUu2aoVTLftJwrJXX": 32, + "AU1bhRXokMW9qo1y9PXEhBwWWsHbPGj9N6yxHmeqLvPFfsDkgnTD": 17, + "AU1btEDfvVUTKcAdXAVjG48im7v51FUeg2P1jhwXTci3hvauchhg": 55, + "AU1bvkRyqp29K4xwm1dSPbJZc6MTXirN1TgufondKxKeLLsK6kyu": 14, + "AU1c5pprJ2e9kJGU1X2f4gu8PwWRP1h2u8h9u2o18zF71FKjwPSo": 16, + "AU1c9bUB5eNNvFygjCZ2FRy2HXdK6iCNCdFKDcx7YjY4v2qC7zHq": 29, + "AU1cBe1Q9kwnWRZNg6FUKoyTtR4ci7a4FpuxhLoQGsGE1MXK2FhT": 38, + "AU1cDGumHQ9u6yTc7K5sGcrG3WQ28pLHJstL2fdTL37e6UnKXZzg": 15, + "AU1cKaY7ADCAVy5AuUEFGx5fRUo6rqzS5XcbTZanZHxzS62Exzv8": 25, + "AU1cPdTpfGtPBm5miidoP9PkfcTcuGhPTVhXsSd5cWUqJhX7dLHc": 13, + "AU1cT8MKuXiET8MrZRiAw5KMrFCGkRxJSvkfFtzdvAkvbZXHv9Fz": 15, + "AU1cVtPLVB69QLze43nqM863LwktM45xTNDVLTDTV86YRjipgHi7": 19, + "AU1cusNiFqZqVEeE2fHgKMKsH6xjyjDQ8WkQv9vEqj1BHRqtMBSD": 45, + "AU1cvQcFn5r8VKFizkbDpFRqnJ1Rf3H3nWJbaLWioFyTteSCD6To": 27, + "AU1dA4oYa4sZQWgK2yMSiWKx2WdWYo8SdbgFUKVJARfbyzCU9LPY": 37, + "AU1dHw4UQY2VWdvexLYchPSVPLG7eEgkQ6H83YMB1Lr8R2UamZxd": 54, + "AU1dJt94nqfTAEUYiz4vka6xSLXZeSQgD4XdXCnkducpRdSizjnF": 15, + "AU1diJZJP37RHNCxTnSuCptTkGtcp9z1NA2n3LfPTM52JMtfr2mQ": 15, + "AU1dj1vErMCEmQSBxvAvU8uLfpfkasGCKm8A3PKXgBYczPMJx44": 13, + "AU1djuKxW8VCNLGCQNe88whcYxoXWwgiTX3KtwFecjrCGy8Z1rRB": 45, + "AU1dm4cHz78DGoyrrsnX2wfyJU9SZDG3CoUJR9TotRxCMV3rwuvd": 11, + "AU1dpvUpSDQxWU5kLyGF7NmgpaZsWDREkhqA8adyfKaoM3sBTocS": 46, + "AU1dqiKnWrQ4PE5U5VDC2V2Ng8itSKasaDx72ERk7u7s23quf5Xn": 33, + "AU1dyM3fNrD5PYV9xa2BGtRRHeKt3Hkcyp2a2AEN3Tehs1iU8rZx": 37, + "AU1ePuzZNC3pY7n8UHEFGmfkVpFkeRFsH6cMyWxSiMpqh2qW1diZ": 54, + "AU1eXLJm8Vg5tsB8uhdmMGMp2oc2uTxeRVNaJ85ibGmjaiBwqXSM": 52, + "AU1edeozADyUka9ju9AsKuS7Dr2kfYcjXvVesoynAHGUjUXNMm4e": 38, + "AU1ejoxmBD7mw3UnYKBBRib7j8daHMKoF6xi49jykNMdmDpf4iJR": 29, + "AU1emqPXsVf41WesnZ9fT8ePQhjfV8nmm2HGoi12D1zrHnwHASLb": 26, + "AU1epHAQGvdLjr8uBb45vTqsDeAGwuano4NuF78ienszHS4SBhXm": 14, + "AU1fE2i1eHEmwf5NawDfh8aAQEkMDWyqsobH6ppDXWZKz82o4iyn": 25, + "AU1fWGg39wbTwikSAdSV54BpFTTuDiS9sHcTRyuS9AFpn1ji7XAA": 13, + "AU1fWGoRsEqkPKAFRqYvVHFJAJbEAGnsdoejyAHwRQkyW2qk6faj": 57, + "AU1fcy8ZFEvsGeaCH7SHiCcstr6KdRiqobHqG9zcEfSkL15GcMGT": 56, + "AU1fePnWULA4vDTbzJ2HuNtJpquMs72TZxTkEobMJoS86DZpeKME": 18, + "AU1ffWQchv6xVQ2jqkFhuF5skwzSTJHyWuDpPgBfhVQzwrMJ4EbT": 14, + "AU1fm2XPaasvAq9DebQKj5SXMNsAaLf2dG8ciAnjEjHiCvGFmQR2": 30, + "AU1foeaFrmRJTbUhTmrnuQdyTgNbhw748zim8ed1T3MXjfYZZNYz": 70, + "AU1foke7ie5kCPCirzBSaAR2gP41eT58yMKMcJcueVVNxdaSxZ3M": 37, + "AU1fsYtTs6imbxodu8Rz61s9w75KoqCuuqyc6KXDhizGueAX8cGd": 33, + "AU1g2dKsisFUc78GksRjLZn2zSQeZtGYtN1GA5NvJSDk7CQGFyhA": 58, + "AU1g3CvE7ah5WDShQRYdwVNqD5QZrmA2LY8ttbraahBZmg7PiYUZ": 52, + "AU1g3imZ58hukAoauio9kuHjcFcT9taiwNLjodsJxjNZPKpFo8qh": 15, + "AU1gAH8PfJUZbjFsduXKv3HCM8Q1ZQsNu36pAKLynHnEmocQYoZM": 37, + "AU1gGjYsaGsF6SmRXhws1LS1Y2UcUfzjotKg7wvWqrr9N8WKiXwL": 45, + "AU1gKyQggB6xj23KgTF2oZdTG3nomoSqBFGp54uSvHbNct7sBxUx": 23, + "AU1gNWa1XgWdd1RaKboGKa1Zh287yMVYTXeFZRDpRdMASF591VWA": 36, + "AU1gaVTquDfjkYgvn8PzmLxfRTd8vmcCSSwvFSe58PWpTrTUDQxN": 44, + "AU1geyJhEQSNm7eUrP7gqHN29yTqg72ViCduHRXGTLg6hS1puaHH": 57, + "AU1gqZVbpP74UoDKHv1mW8Wmkcgrpqy9DSMD53quAbmAEfAc63Km": 13, + "AU1gu1HcvRcZdfeBeKFnEnRQNJNXnByipY9YBJ1NBWHBrVFSTX2x": 74, + "AU1gwcsbvQvJbgCzWDfMJx99yUYbeYE1cXHMk781tbopKDY82N6f": 15, + "AU1h6dH1HdNr1kAM4neN39i7dyZdTgJsFzK5Kmax4A9RLBVy2i7j": 22, + "AU1h7Qnc3uLpzz6Mmbg1yc2RNPdQPXZy4wzPsajhPoYiyRq7Hp4X": 15, + "AU1hCakJ1GDRCxrm1q4bqTwvytTQZrC3e2y5AfeBH5rAhheKBdMY": 56, + "AU1hGmvHuE6BFPsU1u1tooxAAaWJDiA9s7FXbGxo41tAL7rCNaGf": 53, + "AU1hK4nTpwzb9qKSZsLbEaWmERtptPESFWeQTnH5rSKGiLiPuvNy": 20, + "AU1hUE6V9jZEouqJAQzMiHE2r7MRDXQapQ7M7Bi6BnRhqEwKSo4x": 20, + "AU1hXEv2Rk3qm4uHEFaDLiMAX6LEuGe6LaqeBQMYLzY48YmJvSck": 24, + "AU1hi9U8W6RUTQYmGcYTitbUcJ9ModgtZS2yt3Q1zUJGLxzBTQTe": 18, + "AU1hphgKaJJL1zbV4PZPXwTTdUVVZiHFiY8VYoRJXFq8wfZH26q1": 28, + "AU1hrG3hPUnHU3JxmmLhXDryLK4TDqJEvfrUFsAfRuJC7ugBJ4x2": 27, + "AU1hycbyZ4N8FtMYoW7V4qoErQgqZ4NZad4dQHn8C5GASas8BEFX": 72, + "AU1i42GxTtFmU92jqn4qrcE2vSzXt6mzBwJkaCYiEj89UxPzG9PZ": 65, + "AU1iAaLZsPCBekUYC9toDDGQMAbZ8H69hevbUAUM6YpmvPPBrH7o": 63, + "AU1iBSF5TVW8eMAF3gSnNDQPvz4Ynbt7bwUADAFTtx1HzR28QSMm": 31, + "AU1iL4LjQUbNesxQrky3TcKUsuq4HBNT9STJbYXBuLYjujNT1pNu": 66, + "AU1iSj3T5LLdGZjQybJLL6kdJ32jSF73GC3h6MYxSLR8MNPgB1Qf": 14, + "AU1iTkisNLDRy6sYnTdB4gQFA8om7joZfU29Ak6eKpXf1d2c9KUa": 68, + "AU1icTo8PvV3VQ9J7qCu386xhT4hZ7H5P2PMKhNXJnBwt67Do1MR": 69, + "AU1iiF5qfNUH2CS73MtcC4VGev2YQcK6YESBWJ76oVTSyqgBpCKx": 58, + "AU1ioQCicV7v9Jausq1SNACSztz2aFRSYyNE12HZTpqQbkoFTh5i": 12, + "AU1iq3tBHF4GPH8nFN92BXmFZr5bGFoT13XUFxKx9kt5HTNMpW3r": 24, + "AU1jAZ5FTRwwthzbPqeB8Qht4Vb7HMi8w3GQvb8aRvFWrtH2BPUa": 52, + "AU1jGGYCqNa59TpMp2K7KhRAsyMbayxGoZCu6yWRmrHA8RjJDfmX": 18, + "AU1jGYcUEihfqDNKjNxBYpipd4Ujz5Bmx9eqKJKAhcc5phwTkE51": 25, + "AU1jHyWKNXSAc5AHhqQpiFPhS7D9WCLziirdZXdzdfPhSgwxA9WK": 38, + "AU1jQVym8QLuYqkKKNggYy82MkCA6XsGAr2bAwsg7nz2U9WBRTpX": 28, + "AU1jbGu157dDxZTbU69xW3cDcs6q8JUqCuUtMuM1ENAeu3ACRCGH": 58, + "AU1jd91ELamfcDA3NDaTBSBTQtJdoMV6Vnwy536V9a3voK8udNsT": 73, + "AU1jj4jJ9DKZc1Gd8mCfsiCSi1dAnyru7dKnkRc3QFi1p4tGTSW1": 61, + "AU1jrAhyzeYDLW7JNBivHWkRogR3z7opys3iyXMmgadNL4vHtaTA": 26, + "AU1jw2AiZGZnmdXVBaJmigqgwDktRPL6YkRbTvJeHDKVJNqCyV3E": 56, + "AU1jw2xcR56xmadB4TLybDJvJY2fUrFNrRuuveZ6GScZXVPX2Y43": 15, + "AU1jyrecwzT9gVA18hbd9S5rNDprVUc8Hyq6iyvk7XH6rs1DANna": 48, + "AU1k1YV1Xk4So3hYNCxbU9QTpLnvN5yvUDRLBhn5ZQurb4aoveeD": 15, + "AU1k2cmhrLFHdDjNmBQR1ZWUvqPDxunxjRfwQiuYHcFC6ondSJ2m": 42, + "AU1k2kXXLFgz3Y7ZBPhA4HPjCqaCUuUKpudFUCmJVjTahqxohJHs": 19, + "AU1kNfn8FLat8NnKozMBEs6W1hYEtQwj1XHZKszynYULMFCrXHF3": 47, + "AU1kQUSWwbAbreyRMsQuqHfzmECgzxgys15xqaMamCn96H597SHo": 33, + "AU1kTD3mLnHVT8c2tCR5sJAjFD5WegcdRJL8Wg4VAYDbwSE1ghLy": 51, + "AU1kTooDuK5rmoVTsmoZFA96MH8g8pBQ9V1M8eJXNM2JT1p25SiZ": 30, + "AU1kbkHQVdRF3JZAF7YVdjEj2zTGfJVKRkRLZfxQQaxXzW9HTH58": 58, + "AU1kpXYQFVqqnoxNStkwHyHz51mXSo1Yh7dGFQUtwdpVwpo6Atv": 16, + "AU1kqL5sKU25tPtpXvRQAf8GtAso1xy53vxNztwFEL2Ni43WnfvB": 14, + "AU1m1eypzykqLjeNDJDtTSZd41TLLzypUZaXbMHdU6rsvLzWG9jC": 19, + "AU1m6u3hhfetvtU7oXCir59erCcyU6d5qqaqNorsz6Am6vegUS95": 20, + "AU1mHcfhDQtPYzDVrkDK4DPxYMD7dQmHViYoF6eGffA2f15ijKUU": 62, + "AU1mX9q5yjS5ndmGQ3X8FUouk3muuqpmbqzhSrrY44WnaH7pTJ5b": 56, + "AU1mXMzrsVL5rp4cvxqMEUTYUmWqG4XfKLVqiLcHmsnZVYqzaZCw": 64, + "AU1mbgPkWm4rotXbGThVrgoEPa6ZyEdE7vHtUrZcpdQPQT59k7au": 50, + "AU1mfBMeG9DRwE15eVuT4ZH4BNsQAr1h8ZN2xfPPq2BCaaZFBUGG": 18, + "AU1mgqxzFsfMBCbC7XrqqbDLSQtNUXLtbhMdX9Q2Z763UY5EvT2p": 17, + "AU1mqGEu65zLjUYsSC8dSvh5xz8DiibSfSCQiS2QhTxyYRrn19xR": 41, + "AU1mr9UNdp6THG6VF1amTbqvJRJWbFbPhxE2ZbwWC4Eu5CRSnQcN": 55, + "AU1msWw9uAwSrTxWqfzgkmsEkZGs8HR6RaCwntNvhFevwbfxNPk3": 41, + "AU1mv65oRY5CUxBLxeGhiY2X9ytJwJDev8LKFDWwG7DcN52o5doW": 13, + "AU1nAjzYrkenA9DqzNMUyhcXrJ32CR5kJhyobeLVHYkLnbcmBXus": 62, + "AU1nMY5L3zk5821N4MATvhErSe3bd4w8gVnc1WEDJ9wgdMNX12aU": 69, + "AU1nT8bn3WSYLctHghrE43GzbuRi97pPFpNWs3fvFjkD9vSnB8dH": 73, + "AU1nYG9cRiUWwKQ58YEmAseJz9rXz2XudTrBsDJgKZf64GpN8C8s": 66, + "AU1nbRg8BxJTNPkmr8pGTHmJq9FuFDEjzyUKwjDqN8SSfBaoaeUb": 46, + "AU1nknohhX3QusYzXo4Bbk61sCahT4QS1n18mY49QPkXWDpPJoHZ": 37, + "AU1nuh8b8CvvKggBJCqsuBjLyyeUgm4VMBSdEdhCeYFb24ADGG1R": 46, + "AU1nvibtrcN5PPkj9bwZX3qD8WY4bjeud5rcJDXqzKNqfX5CJKc1": 46, + "AU1oJ2cDNgLvq2ig4tZJgWpQJhrr3hkiJMbqsLTvnyMFYxV5viZL": 41, + "AU1oKGVVeXe6RNRYXxo9qZpEEYVeTGRH97QqSyyxUUFdZ1ncz7C7": 66, + "AU1oQK88xQ8MCmsZDhCGM3taD8B7VyCxTYm2UjNyo7dPgNeX5j3s": 38, + "AU1ob2Rahy7Gqhs3s6Su1ZR7KkWxTiELGdgJBrk974z27KGM2E4j": 21, + "AU1ojqvCRC8fwkxvsE6s53xWyFu4mdMwjnJ6mtzQWFCLUxeKwKzX": 16, + "AU1oqqY9hu4ARHyv89iSton26XXXdQszLojUJZzhmDMo3MLvHUtn": 35, + "AU1ouP66v1VKaZjX4TDp9kHMbktEesNSLyEhpSbPSSHb9uTLMtXa": 82, + "AU1ox9pgb2ZpigMwJKvPW1N5qP5P83anBfhLc6S9Q7j5YuU4J9qn": 67, + "AU1p1pc7FeFmiGr2ZyySTxhAvyPziXcbBwSFpEhcUjVVyaU9vbJv": 15, + "AU1p6Zo8NGdTvZWeg45aYBuqa8VzoRffHAiXPcNnjrAaGWyuV3v8": 28, + "AU1pApVVt2FRKgd4e3fA7vtBkBvSjDq8vib5QrvuKmiCdRsQTqmS": 63, + "AU1pTFfqR5TZpurEsDraZ4ERKtrH7LbJPTDmd7qWCmwrGbJ4SxA4": 12, + "AU1pV28p8Y3M6YcgA97ZEdsguxVwtkw2UxobEimoQj611tR7yH9U": 29, + "AU1pZmw514aLBUBxMwHxtu4SJXgfqtYC1QFK5bDKwds923ZWSZzz": 60, + "AU1pd2RmrGSf1iVHBgboKEZXGHNXRSvMnvkxLf1wEkSCZwPzSy8D": 50, + "AU1piR1hc9bkqdhxeoSQ1wKcC2SkgL5fw2nz2WeJkYVS2Kfguaib": 14, + "AU1pwQRyzYd8f3mSnWo66SrAcasTTMTQTW1WNj6Kn3t3pYCp8XY6": 40, + "AU1qF8dP6yPXudzrwX1A4w4P2oUgFaLhcAXt53vR8n3GKfyLDBFd": 16, + "AU1qLrbaC4vWNRLvTaRFY9SBRe7oDcrVqXrjiJmuMFy4eBknBgMV": 64, + "AU1qSXynKtAJN2qx43NXdtkKQLz52GLtmG3YoH8YV5pHu6CtWf29": 17, + "AU1qVa8ArZ9HC6QiiEHJ55PhMUBiKQGeUA5GRJ9DnvmoFqXNw5sM": 24, + "AU1qXfYMZCPu8drcLcUiYRG4Jj15hNTdBAhyJJsPtCexjWPeNkZX": 21, + "AU1qf4KMtPgRz3ch3Rh4AeEqn74RMq5KUxcA2Dwiu31pwhRzBRau": 64, + "AU1qhQPbacMqxKo1Nnz224M3upB7NU6Udj8j5GhNCsdRMEiCJeSb": 29, + "AU1qkeRbLBWjh1z8eBPBkfdpnBizho54Segi6QkdxKHEPX1MUbSD": 27, + "AU1qxmHBm92Vk5VBtX8SKNhpMBZ8wNsJ2aAx4ygthuagp6qkgpdg": 34, + "AU1r3QydJGS2tW9tyJRy45GtkypbdmfFixzWgUvTf2msvh1dCFsY": 66, + "AU1r5t95k6enyfRYtyiFZHWW43EEHNZNgJEikaMQafWycQC9QDni": 18, + "AU1r9gKGUP4qtou3WJYGLFv7xMBqjS3RZc74uP1byA2RSHBZK94u": 15, + "AU1rAEDTwf39KkdMuzxKuSycPq1oEUqGHqC1Y5zvquetJk6GFpnU": 21, + "AU1rAMYkmosmijpBNap7CwMEVBRCyTcNFdxX1QnaP4B64qp51tgW": 25, + "AU1rUTKDeykApfZe7JdphAKevaVE2XpiPUJks3xnuaQywrAzSJty": 24, + "AU1rrv2pCgU1KFGyEau4r9oe1patZJ6PqJSg1vvC8mrAy6YkCg91": 36, + "AU1s56E58ZnP3iMrUCK6S6USBC5TM1qe7oqoPyeMZ2VCoM75saXV": 61, + "AU1s5ioAPMHLRqTMJEVRLSwb59pSQU89coicRNow1Pzgh9fuBZay": 32, + "AU1sGQEZeZ6rcmkMRVjnQb6SQEnEQAhDbWjCaZCGUWnEbnJqppN9": 23, + "AU1sJgYN1Fk93Muug7TwvPvxZrV3wfpYj3F9FWDaVyzFmUiXozBW": 75, + "AU1sNpDn97Ea9gU3VmJKCEWg6uGTs2FZ9qwvTx4WV9pKgH4YLjB3": 14, + "AU1sZYY3RfsADNo7CTiMMFAc5ndQxqNprPmg3byT4seTdTakbNQa": 15, + "AU1sb6a47gdMFqUBpjbYSVD4D28H84fCScNuXkCjJk1ArbpgmvQg": 25, + "AU1sevxhwyhc2jattJBxNR5fYGhDLFA8H7NwS3XK3BaK1sW2fJD6": 49, + "AU1shrQ9Pyq45281FQFL7mEW4gTVA5tPbZnKN5za9miDPXf8gTfb": 62, + "AU1smiM5Bc5y5Wn3XJqPNCzWDszbVxSz3arsqFK5XsfAAXktTwZR": 33, + "AU1sqUgK7y6DoeoD1kPvghk7q6pvXi9dBixWGFeXL39XrmqSy7nW": 15, + "AU1stfQvWc1khSc1BNFEkZW1nunLmy5bjVnRxqsBgV3ETyrwX4Ay": 18, + "AU1tKcyBfmkUGKdm9Z5CUTBASUZY3674U1DxjUyo51VJhJJYsXwz": 45, + "AU1tUJDPu7n12pToYW5HtQYP7gsW2ZwYTLfDcTzbXcdY5GK8FGQQ": 40, + "AU1tYLfBjyrbAzU8Wyg13KhCHaZERATsB114ioLaei8ZAMnPxxQr": 65, + "AU1tfFzZNvdp5XzHBFty867CkvwZPiJop52YHtzrGWWsnTGEoqYY": 36, + "AU1tfaU446sk9R2Vw1ujWh2dhMS4YGMTQ6VZG2j5R2TpouAikkTS": 63, + "AU1tha3jkjYwjhw2WnJQVaexEKQx7PegPWnM3uza5yVpyr8NoGdb": 58, + "AU1tjb3d4Hu4sW5DK6rj8v9LcwYiqQq8fk36mUDM8VWB9cwj754w": 68, + "AU1tm6p36p7qiAmQvpXiGWP7oLd57otpTgZMtEqwZPN5J6G2dMcJ": 13, + "AU1tr1fS6CtojnqcWPHpcmKXsey1G6SABSKyVQgZv45qXrVC4gi1": 51, + "AU1tsZUs8BsfRmkJyhykY9th3Jmjay2RChwScwApmmYchKFqD4HG": 48, + "AU1u1KuMKv1tDzAgAkZ3iyGLA6vBL6Zb5FaUUMPWqf4HZFdEyAG6": 42, + "AU1u5nxaVix8MY8TdRgLLW7z9XfBtQPL7jELcg4HknZpUG6tWpts": 38, + "AU1u7wXL3TSzx3kveymmxNmuoEGd8HTnTKgpnBT4TXpdJL2f6R1g": 78, + "AU1uCeW9pqwpNWhLQXfXxcfGeBnMANXuNrNinyfxJFw5yM96ppKd": 24, + "AU1uLW9my5yt1K2eMZzUqDkcjbqA8CrxXpwE5recT1bWVDDsLYqj": 38, + "AU1uQMZRYnMp5hz7pvhxCiTj8KFGtY8ti4ccRjFwFgWc7o7BK1eQ": 73, + "AU1uTLFEeYj9f1UvhkBSDt41jTw6cpotyMfohYDnQeSJ2EfuKyLN": 23, + "AU1uTqN2vGJGM9M1CjXCLwDpgG4b1aQuZUPZWo9e9qnTPTguDEQs": 19, + "AU1udTAaVd1do6LeLtYqv8jBdXgHPfRZnLwK1n2rstwLnDuycsnr": 52, + "AU1ui2m1GKtVXeRufnxsjrCJcLnuLXhkP3q6rVRv3JKv7vQuGtam": 55, + "AU1uunWcnZxxwhjnHXcfMY1Z4ddjfRWX65DhBkCpRBmvaUQDDE6i": 27, + "AU1v4jkGtPSHGKDyAJAw9DKWJuSYdKVpTRVq1uMnTMphyRa5jv7s": 49, + "AU1v5j32NtG35p3D7dgfJy2wDNTMzqUXShSq67AgoMQyPYqzBw5o": 38, + "AU1v7nAWdNMiExRmNYAZwEoZiR9QRyufhMBEvzcvGgkUrQK7HwFb": 39, + "AU1vNJk55bsLaZ5xnSbE7S7dYZBqrFHHkmckWP6Uu8WS1exSemij": 21, + "AU1vR7MB5rqGF3NeLrrnxtUGXjsCTjwe2G31tfZNXyy9ME3d1E3g": 25, + "AU1vzwLL1Bg2W6GBMUZWip1jhrcQkPeFs83C51a3rLr686HzfmcN": 20, + "AU1w9xhbS1rWUELsJVsbWpWsLDvrAXTgpjzWXoXpp7Qu4HjjQtet": 39, + "AU1wNyX5buT7t7LVs7MaSL38yjYUWHPZRhBPnskfEjKk2sZ3t8Fz": 70, + "AU1wQba6j8QNenpqhCXs2r1NZdiGkwqXiBVi2pxvKJdyfsgg8kyW": 25, + "AU1wScTh1NcjSUCjRyHUkWBoMJfPDfUj16RA74qttzjSGEbFfyeW": 17, + "AU1wWijMeyM4vDPhNMcmah9ont7ZuhfgUzpXLfcgUuxnE8K2oAK": 15, + "AU1wZj2tpjvPRZhM1EumDMRke5DfWbzi3htDQdUmaB6CQ9bThNBU": 40, + "AU1wa14M7GzWef2CcgXqMttiP6GKb71pakJm6LfVMswfNHm7R5LQ": 13, + "AU1waxyg5oBpztAVNyLHFPTiJ5bnHrAy3QS7QmBCojz1KUggVUqZ": 67, + "AU1wjoVyLRvVJ5GGb1eQEBb43FbuwViVUdVFwBc8zXQSDcNKRLU4": 52, + "AU1xAusfDBmWttrr1Mqo2aYzAZk5tkMQUjYw6adzPwYHVxx24paV": 46, + "AU1xPjuto72hUr3gP67RAH6rLbxzRdr8qf163GaeoUBhAtqSUo7R": 67, + "AU1xQjsTjjpWzALgBoRi8WwyADCDbnig6ApiVYx8UCHso9cBtQ97": 33, + "AU1xWwkwB5HDZusg9GgBQHpmUkH6Gwd3YsRTUq4TMQha3ENYdKnM": 13, + "AU1xmhN3kYXPGwwbx9YxbcBMLAyaGs2zq2ieq7XQ6cAGSmQ5ufsH": 34, + "AU1xvcYZjJgjF3i3NM6Mu67RvS4GrPqvfAvn1tYBZwww6PZ65fQg": 30, + "AU1y2LoFc17oggYxUZwM2dKrcvVa9nPx9doQjhGBpg4Zn3eDXCr7": 43, + "AU1y3BE1WbZ8UjpRbbsLoL24X6Jg7w7Xg265gMG3Td9MknYU6LnB": 42, + "AU1yJ8jMxw4KJR32R2AeR9iRCkyJ6RiHtq2iGrJTRDjwnFLu8GZ6": 64, + "AU1yMBZkVgxXYTXbFsdxxy9aptLhkXsYJc2GAL32rew74ex7v3UG": 16, + "AU1yWQX25tREm6TCMqMoKMfyHfA8ZGgWGgqx5i2LLXUDTJYLxUUw": 29, + "AU1ycK4kkRX7qUKahLpJUVwGpJXWayEV5wFuGEgLmKSm3ye5ZL2M": 15, + "AU1ych2dQdvc7t2iag993oBowT75nJaXUsL5o9Q8ricU326Mfko7": 14, + "AU1yjizy3j1CyMv3M3bEGx7BCdnso28FN8HCaZupvBxYWtUHM9Pw": 53, + "AU1ynaxnosuDUWm11uEafaJ9yyueVvNF89csMFsdbRj3XckmMXtv": 38, + "AU1ywuL22uY8Z3dQFcDb2MTM9JzmF7Zs2izCu9ijUDVxa1BSttPv": 13, + "AU1yxqwWLkxk1W4ek4JB8vNCxsWDTburonkPqx64wgSzis46975Q": 57, + "AU1z1TVg7aqwdSQMhQzRRFsd5btF55WufC8Z1SzY5yGDhd4cXrZ8": 18, + "AU1z3XMCMJHCWvJS5BLV1X4mhZ4ZM69FQ5k6gHmVKhFiQK8vsNMR": 23, + "AU1z8C5pYnbt1vAoQBAtcpCGQd9y9Vv8n77u6ceJ2VXmNKxrPjun": 49, + "AU1zHUkbmp19aB77d2gtdg1od95Vcbwwjkywmt88jHek8k7B6pVo": 48, + "AU1zLC4TFUiaKDg7quQyusMPQcHT4ykWVs3FsFpuhdNSmowUG2As": 51, + "AU1zR3dq6nWSEeinkH7YVJeqt2GVmD96ZPYCMoBDpAaNyBEWuHJ": 22, + "AU1zY9ihBT7uaVLfniKCBqoFy8Ueko8fQmiexxMvbUPZZxPpU4p8": 28, + "AU1za8D8ijCsNC9sfDq9ZZjqgf2XxNCGNduRT5repWUE5QewFVqt": 58, + "AU1zcERSGGECzP1m8DqwBHSzYd961waZXgJFa8u9DGju4TsP5LAM": 39, + "AU1zgseNniWDXDqcGaUGbzca5YFUz8hYGvTrGPA73iQULUr782Nu": 20, + "AU1zko3JJBYuqUUTKxVr7xrNUMVkpCB3rwwxUmKMAM78VThZyWHz": 46 +} \ No newline at end of file diff --git a/massa-node/base_config/openrpc.json b/massa-node/base_config/openrpc.json index 4671a33b21e..8ffd75856b2 100644 --- a/massa-node/base_config/openrpc.json +++ b/massa-node/base_config/openrpc.json @@ -2,7 +2,7 @@ "openrpc": "1.2.4", "info": { "title": "Massa OpenRPC Specification", - "version": "DEVN.28.3", + "version": "MAIN.2.1", "description": "Massa OpenRPC Specification document. Find more information on https://docs.massa.net/docs/build/api/jsonrpc", "termsOfService": "https://open-rpc.org", "contact": { diff --git a/massa-node/src/main.rs b/massa-node/src/main.rs index 0d2097534f2..7a110495362 100644 --- a/massa-node/src/main.rs +++ b/massa-node/src/main.rs @@ -200,6 +200,7 @@ async fn launch( endorsement_count: ENDORSEMENT_COUNT, max_executed_denunciations_length: MAX_DENUNCIATION_CHANGES_LENGTH, max_denunciations_per_block_header: MAX_DENUNCIATIONS_PER_BLOCK_HEADER, + ledger_backup_periods_interval: SETTINGS.ledger.ledger_backup_periods_interval, t0: T0, genesis_timestamp: *GENESIS_TIMESTAMP, }; @@ -233,6 +234,7 @@ async fn launch( max_final_state_elements_size: MAX_BOOTSTRAP_FINAL_STATE_PARTS_SIZE.try_into().unwrap(), max_versioning_elements_size: MAX_BOOTSTRAP_VERSIONING_ELEMENTS_SIZE.try_into().unwrap(), thread_count: THREAD_COUNT, + max_ledger_backups: SETTINGS.ledger.max_ledger_backups, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -530,12 +532,12 @@ async fn launch( if #[cfg(all(feature = "dump-block", feature = "db_storage_backend"))] { let block_storage_backend = Arc::new(RwLock::new( RocksDBStorageBackend::new( - execution_config.block_dump_folder_path.clone()), + execution_config.block_dump_folder_path.clone(), SETTINGS.block_dump.max_blocks), )); } else if #[cfg(all(feature = "dump-block", feature = "file_storage_backend"))] { let block_storage_backend = Arc::new(RwLock::new( FileStorageBackend::new( - execution_config.block_dump_folder_path.clone()), + execution_config.block_dump_folder_path.clone(), SETTINGS.block_dump.max_blocks), )); } else if #[cfg(feature = "dump-block")] { compile_error!("feature dump-block requise either db_storage_backend or file_storage_backend"); @@ -871,6 +873,7 @@ async fn launch( periods_per_cycle: PERIODS_PER_CYCLE, last_start_period: final_state.read().get_last_start_period(), chain_id: *CHAINID, + deferred_credits_delta: SETTINGS.api.deferred_credits_delta, minimal_fees: SETTINGS.pool.minimal_fees, }; diff --git a/massa-node/src/settings.rs b/massa-node/src/settings.rs index c212d02426f..3ee8de250e2 100644 --- a/massa-node/src/settings.rs +++ b/massa-node/src/settings.rs @@ -50,6 +50,8 @@ pub struct LedgerSettings { pub disk_ledger_path: PathBuf, pub final_history_length: usize, pub initial_deferred_credits_path: Option, + pub ledger_backup_periods_interval: u64, + pub max_ledger_backups: u64, } /// Bootstrap configuration. @@ -126,6 +128,7 @@ pub struct APISettings { pub enable_ws: bool, // whether to broadcast for blocks, endorsement and operations pub enable_broadcast: bool, + pub deferred_credits_delta: MassaTime, } #[derive(Debug, Deserialize, Clone)] @@ -386,6 +389,9 @@ pub struct VersioningSettings { pub struct BlockDumpSettings { /// Where to dump blocks pub(crate) block_dump_folder_path: PathBuf, + #[cfg(feature = "dump-block")] + /// Number of blocks to keep + pub(crate) max_blocks: u64, } #[cfg(test)] diff --git a/massa-pool-exports/Cargo.toml b/massa-pool-exports/Cargo.toml index 1c423f33025..7aa4070ae11 100644 --- a/massa-pool-exports/Cargo.toml +++ b/massa-pool-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_pool_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-pool-worker/Cargo.toml b/massa-pool-worker/Cargo.toml index 9f4fac0868b..960b5f35b4f 100644 --- a/massa-pool-worker/Cargo.toml +++ b/massa-pool-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_pool_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-pos-exports/Cargo.toml b/massa-pos-exports/Cargo.toml index 5059afab4b8..6a35d871db8 100644 --- a/massa-pos-exports/Cargo.toml +++ b/massa-pos-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_pos_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-pos-exports/src/pos_final_state.rs b/massa-pos-exports/src/pos_final_state.rs index 7416159bb73..4c86f3ce5e8 100644 --- a/massa-pos-exports/src/pos_final_state.rs +++ b/massa-pos-exports/src/pos_final_state.rs @@ -16,18 +16,26 @@ use massa_models::{address::Address, prehash::PreHashMap, slot::Slot}; use massa_serialization::{DeserializeError, Deserializer, Serializer, U64VarIntSerializer}; use nom::AsBytes; use std::collections::VecDeque; -use std::ops::Bound::{Excluded, Included}; +use std::ops::Bound::{Excluded, Included, Unbounded}; use std::ops::RangeBounds; use std::{collections::BTreeMap, path::PathBuf}; use tracing::debug; +// Helper function to convert a slice to an array of a given size, if possible, +// and then returning it with the rest of the slice. +fn buf_to_array_ctr V, V, const N: usize>( + buf: &[u8], + ctr: F, +) -> Option<(&[u8], V)> { + Some((&buf[N..], ctr(&buf.get(..N)?.try_into().ok()?))) +} + // General cycle info idents const COMPLETE_IDENT: u8 = 0u8; const RNG_SEED_IDENT: u8 = 1u8; const FINAL_STATE_HASH_SNAPSHOT_IDENT: u8 = 2u8; const ROLL_COUNT_IDENT: u8 = 3u8; const PROD_STATS_IDENT: u8 = 4u8; -const UPPER_LIMIT: u8 = u8::MAX; // Production stats idents const PROD_STATS_FAIL_IDENT: u8 = 0u8; @@ -86,14 +94,6 @@ macro_rules! prod_stats_prefix { }; } -/// Upper limit prefix macro for a given cycle -#[macro_export] -macro_rules! upper_limit_prefix { - ($cycle_prefix:expr) => { - [&$cycle_prefix[..], &[UPPER_LIMIT]].concat() - }; -} - /// Production stats fail key formatting macro #[macro_export] macro_rules! prod_stats_fail_key { @@ -693,7 +693,13 @@ impl PoSFinalState { } /// Retrieves every deferred credit in a slot range - pub fn get_deferred_credits_range(&self, range: R) -> DeferredCredits + /// Warning: this can be quite slow if there is tons of Deferred credits (e.g. just after genesis) to fetch + /// so there is an option to filter by an address to improve the speed (cf json rpc api get_addresses) + pub fn get_deferred_credits_range( + &self, + range: R, + addr_filter: Option<&Address>, + ) -> DeferredCredits where R: RangeBounds, { @@ -706,92 +712,47 @@ impl PoSFinalState { match range.start_bound() { Included(slot) => { - self.deferred_credits_serializer - .slot_ser - .serialize(slot, &mut start_key_buffer) - .expect(DEFERRED_CREDITS_SER_ERROR); + start_key_buffer.extend_from_slice(&slot.to_bytes_key()); } Excluded(slot) => { - self.deferred_credits_serializer - .slot_ser - .serialize( - &slot - .get_next_slot(self.config.thread_count) - .expect(DEFERRED_CREDITS_SER_ERROR), - &mut start_key_buffer, - ) - .expect(DEFERRED_CREDITS_SER_ERROR); + start_key_buffer.extend_from_slice( + &slot + .get_next_slot(self.config.thread_count) + .expect(DEFERRED_CREDITS_SER_ERROR) + .to_bytes_key(), + ); } - _ => {} + Unbounded => {} }; - for (serialized_key, serialized_value) in db.iterator_cf( - STATE_CF, - MassaIteratorMode::From(&start_key_buffer, MassaDirection::Forward), - ) { - if !serialized_key.starts_with(DEFERRED_CREDITS_PREFIX.as_bytes()) { - break; - } - let (rest, slot) = self - .deferred_credits_deserializer - .slot_deserializer - .deserialize::(&serialized_key[DEFERRED_CREDITS_PREFIX.len()..]) - .expect(DEFERRED_CREDITS_DESER_ERROR); - if !range.contains(&slot) { - break; - } + let iterator_cf = db + .iterator_cf( + STATE_CF, + MassaIteratorMode::From(&start_key_buffer, MassaDirection::Forward), + ) + .take_while(|(k, _)| k.starts_with(DEFERRED_CREDITS_PREFIX.as_bytes())); - let (_, address) = self - .deferred_credits_deserializer - .credit_deserializer - .address_deserializer - .deserialize::(rest) + for (serialized_key, serialized_value) in iterator_cf { + // deserialize the slot + let rest_key = &serialized_key[DEFERRED_CREDITS_PREFIX.len()..]; + let (rest_key, slot) = buf_to_array_ctr(rest_key, Slot::from_bytes_key) .expect(DEFERRED_CREDITS_DESER_ERROR); - let (_, amount) = self - .deferred_credits_deserializer - .credit_deserializer - .amount_deserializer - .deserialize::(&serialized_value) - .expect(DEFERRED_CREDITS_DESER_ERROR); - - deferred_credits.insert(slot, address, amount); - } - - deferred_credits - } - - /// Gets the deferred credits for an address - pub fn get_address_deferred_credits(&self, address: &Address) -> BTreeMap { - let db = self.db.read(); - - let mut deferred_credits = BTreeMap::new(); - - let start_key_buffer = DEFERRED_CREDITS_PREFIX.as_bytes().to_vec(); - - for (serialized_key, serialized_value) in db.iterator_cf( - STATE_CF, - MassaIteratorMode::From(&start_key_buffer, MassaDirection::Forward), - ) { - if !serialized_key.starts_with(DEFERRED_CREDITS_PREFIX.as_bytes()) { + if !range.contains(&slot) { break; } - let (rest, slot) = self - .deferred_credits_deserializer - .slot_deserializer - .deserialize::(&serialized_key[DEFERRED_CREDITS_PREFIX.len()..]) - .expect(DEFERRED_CREDITS_DESER_ERROR); - let (_, addr): (_, Address) = self + let (_, address) = self .deferred_credits_deserializer .credit_deserializer .address_deserializer - .deserialize::(rest) + .deserialize::(rest_key) .expect(DEFERRED_CREDITS_DESER_ERROR); - if &addr != address { - // TODO improve performance - continue; + if let Some(addr_filter_value) = &addr_filter { + if &&address != addr_filter_value { + continue; + } } let (_, amount) = self @@ -801,7 +762,7 @@ impl PoSFinalState { .deserialize::(&serialized_value) .expect(DEFERRED_CREDITS_DESER_ERROR); - deferred_credits.insert(slot, amount); + deferred_credits.insert(slot, address, amount); } deferred_credits @@ -841,11 +802,9 @@ impl PoSFinalState { break; } - let (rest, _cycle) = self - .cycle_info_deserializer - .cycle_info_deserializer - .u64_deser - .deserialize::(&serialized_key[CYCLE_HISTORY_PREFIX.len()..]) + // deserialize the cycle + let rest_key = &serialized_key[CYCLE_HISTORY_PREFIX.len()..]; + let (rest_key, _cycle) = buf_to_array_ctr(rest_key, |v| u64::from_be_bytes(*v)) .expect(CYCLE_HISTORY_DESER_ERROR); let (_, address) = self @@ -853,7 +812,7 @@ impl PoSFinalState { .cycle_info_deserializer .rolls_deser .address_deserializer - .deserialize::(&rest[1..]) + .deserialize::(&rest_key[1..]) .expect(CYCLE_HISTORY_DESER_ERROR); let (_, amount) = self @@ -892,19 +851,18 @@ impl PoSFinalState { if !serialized_key.starts_with(prefix.as_bytes()) { break; } - let (rest, _cycle) = self - .cycle_info_deserializer - .cycle_info_deserializer - .u64_deser - .deserialize::(&serialized_key[CYCLE_HISTORY_PREFIX.len()..]) + + // deserialize the cycle + let rest_key = &serialized_key[CYCLE_HISTORY_PREFIX.len()..]; + let (rest_key, _cycle) = buf_to_array_ctr(rest_key, |v| u64::from_be_bytes(*v)) .expect(CYCLE_HISTORY_DESER_ERROR); - let (rest, address) = self + let (rest_key, address) = self .cycle_info_deserializer .cycle_info_deserializer .production_stats_deser .address_deserializer - .deserialize::(&rest[1..]) + .deserialize::(&rest_key[1..]) .expect(CYCLE_HISTORY_DESER_ERROR); if cur_address != Some(address) { @@ -920,9 +878,9 @@ impl PoSFinalState { .deserialize::(&serialized_value) .expect(CYCLE_HISTORY_DESER_ERROR); - if rest.len() == 1 && rest[0] == PROD_STATS_FAIL_IDENT { + if rest_key.len() == 1 && rest_key[0] == PROD_STATS_FAIL_IDENT { cur_production_stat.block_failure_count = value; - } else if rest.len() == 1 && rest[0] == PROD_STATS_SUCCESS_IDENT { + } else if rest_key.len() == 1 && rest_key[0] == PROD_STATS_SUCCESS_IDENT { cur_production_stat.block_success_count = value; } else { panic!("{}", CYCLE_HISTORY_DESER_ERROR); @@ -999,18 +957,15 @@ impl PoSFinalState { let db = self.db.read(); while let Some((serialized_key, _)) = match found_cycles.last() { - Some(prev_cycle) => { - let cycle_prefix = self.cycle_history_cycle_prefix(*prev_cycle); - - db.iterator_cf( + Some(prev_cycle) => db + .iterator_cf( STATE_CF, MassaIteratorMode::From( - &upper_limit_prefix!(cycle_prefix), + &self.cycle_history_cycle_prefix(prev_cycle.saturating_add(1)), MassaDirection::Forward, ), ) - .next() - } + .next(), None => db .iterator_cf( STATE_CF, @@ -1024,20 +979,16 @@ impl PoSFinalState { if !serialized_key.starts_with(CYCLE_HISTORY_PREFIX.as_bytes()) { break; } - let (_, cycle) = self - .cycle_info_deserializer - .cycle_info_deserializer - .u64_deser - .deserialize::(&serialized_key[CYCLE_HISTORY_PREFIX.len()..]) + + // deserialize the cycle + let rest_key = &serialized_key[CYCLE_HISTORY_PREFIX.len()..]; + let (_rest_key, cycle) = buf_to_array_ctr(rest_key, |v| u64::from_be_bytes(*v)) .expect(CYCLE_HISTORY_DESER_ERROR); found_cycles.push(cycle); } } - // The cycles may not be in order, because they are sorted in the lexicographical order of their binary representation. - found_cycles.sort_unstable(); - found_cycles .into_iter() .map(|cycle| (cycle, self.is_cycle_complete(cycle).unwrap_or(false))) @@ -1073,10 +1024,7 @@ impl PoSFinalState { let db = self.db.read(); let mut serialized_key = Vec::new(); - self.deferred_credits_serializer - .slot_ser - .serialize(slot, &mut serialized_key) - .expect(DEFERRED_CREDITS_SER_ERROR); + serialized_key.extend_from_slice(&slot.to_bytes_key()); self.deferred_credits_serializer .credits_ser .address_ser @@ -1324,10 +1272,7 @@ impl PoSFinalState { let db = self.db.read(); let mut serialized_key = Vec::new(); - self.deferred_credits_serializer - .slot_ser - .serialize(slot, &mut serialized_key) - .expect(DEFERRED_CREDITS_SER_ERROR); + serialized_key.extend_from_slice(&slot.to_bytes_key()); self.deferred_credits_serializer .credits_ser .address_ser @@ -1359,11 +1304,7 @@ impl PoSFinalState { fn cycle_history_cycle_prefix(&self, cycle: u64) -> Vec { let mut serialized_key = Vec::new(); serialized_key.extend_from_slice(CYCLE_HISTORY_PREFIX.as_bytes()); - self.cycle_info_serializer - .cycle_info_serializer - .u64_ser - .serialize(&cycle, &mut serialized_key) - .expect(CYCLE_HISTORY_SER_ERROR); + serialized_key.extend_from_slice(&cycle.to_be_bytes()); serialized_key } @@ -1377,22 +1318,20 @@ impl PoSFinalState { return false; } - let Ok((rest, _cycle)) = self - .cycle_info_deserializer - .cycle_info_deserializer - .u64_deser - .deserialize::(&serialized_key[CYCLE_HISTORY_PREFIX.len()..]) + // deserialize the cycle + let rest_key = &serialized_key[CYCLE_HISTORY_PREFIX.len()..]; + let Some((rest_key, _cycle)) = buf_to_array_ctr(rest_key, |v| u64::from_be_bytes(*v)) else { return false; }; - if rest.is_empty() { + if rest_key.is_empty() { return false; } - match rest[0] { + match rest_key[0] { COMPLETE_IDENT => { - if rest.len() != 1 { + if rest_key.len() != 1 { return false; } if serialized_value.len() != 1 { @@ -1403,10 +1342,10 @@ impl PoSFinalState { } } RNG_SEED_IDENT => { - if rest.len() != 1 { + if rest_key.len() != 1 { return false; } - let Ok((rest, _rng_seed)) = self + let Ok((rest_key, _rng_seed)) = self .cycle_info_deserializer .cycle_info_deserializer .bitvec_deser @@ -1414,15 +1353,15 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } } FINAL_STATE_HASH_SNAPSHOT_IDENT => { - if rest.len() != 1 { + if rest_key.len() != 1 { return false; } - let Ok((rest, _final_state_hash)) = self + let Ok((rest_key, _final_state_hash)) = self .cycle_info_deserializer .cycle_info_deserializer .opt_hash_deser @@ -1430,12 +1369,12 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } } ROLL_COUNT_IDENT => { - let Ok((rest, _addr)): std::result::Result< + let Ok((rest_key, _addr)): std::result::Result< (&[u8], Address), nom::Err>, > = self @@ -1443,14 +1382,14 @@ impl PoSFinalState { .cycle_info_deserializer .rolls_deser .address_deserializer - .deserialize::(&rest[1..]) + .deserialize::(&rest_key[1..]) else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } - let Ok((rest, _addr)) = self + let Ok((rest_key, _addr)) = self .cycle_info_deserializer .cycle_info_deserializer .rolls_deser @@ -1459,12 +1398,12 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } } PROD_STATS_IDENT => { - let Ok((rest, _addr)): std::result::Result< + let Ok((rest_key, _addr)): std::result::Result< (&[u8], Address), nom::Err>, > = self @@ -1472,17 +1411,17 @@ impl PoSFinalState { .cycle_info_deserializer .rolls_deser .address_deserializer - .deserialize::(&rest[1..]) + .deserialize::(&rest_key[1..]) else { return false; }; - if rest.len() != 1 { + if rest_key.len() != 1 { return false; } - match rest[0] { + match rest_key[0] { PROD_STATS_FAIL_IDENT => { - let Ok((rest, _fail)) = self + let Ok((rest_key, _fail)) = self .cycle_info_deserializer .cycle_info_deserializer .production_stats_deser @@ -1491,12 +1430,12 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } } PROD_STATS_SUCCESS_IDENT => { - let Ok((rest, _success)) = self + let Ok((rest_key, _success)) = self .cycle_info_deserializer .cycle_info_deserializer .production_stats_deser @@ -1505,7 +1444,7 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } } @@ -1532,29 +1471,28 @@ impl PoSFinalState { return false; } - let Ok((rest, _slot)) = - self.deferred_credits_deserializer - .slot_deserializer - .deserialize::(&serialized_key[DEFERRED_CREDITS_PREFIX.len()..]) - else { + // deserialize the slot + let rest_key = &serialized_key[DEFERRED_CREDITS_PREFIX.len()..]; + let Some((rest_key, _slot)) = buf_to_array_ctr(rest_key, Slot::from_bytes_key) else { return false; }; - let Ok((rest, _addr)): std::result::Result< + + let Ok((rest_key, _addr)): std::result::Result< (&[u8], Address), nom::Err>, > = self .deferred_credits_deserializer .credit_deserializer .address_deserializer - .deserialize::(rest) + .deserialize::(rest_key) else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } - let Ok((rest, _mount)) = self + let Ok((rest_key, _amount)) = self .deferred_credits_deserializer .credit_deserializer .amount_deserializer @@ -1562,7 +1500,7 @@ impl PoSFinalState { else { return false; }; - if !rest.is_empty() { + if !rest_key.is_empty() { return false; } @@ -1585,16 +1523,17 @@ impl PoSFinalState { if !serialized_key.starts_with(DEFERRED_CREDITS_PREFIX.as_bytes()) { break; } - let (rest, slot) = self - .deferred_credits_deserializer - .slot_deserializer - .deserialize::(&serialized_key[DEFERRED_CREDITS_PREFIX.len()..]) + + // deserialize the slot + let rest_key = &serialized_key[DEFERRED_CREDITS_PREFIX.len()..]; + let (rest_key, slot) = buf_to_array_ctr(rest_key, Slot::from_bytes_key) .expect(DEFERRED_CREDITS_DESER_ERROR); + let (_, address) = self .deferred_credits_deserializer .credit_deserializer .address_deserializer - .deserialize::(rest) + .deserialize::(rest_key) .expect(DEFERRED_CREDITS_DESER_ERROR); let (_, amount) = self @@ -1638,7 +1577,6 @@ mod tests { fn test_initial_deferred_credits_loading() { let initial_deferred_credits_file = tempfile::NamedTempFile::new() .expect("could not create temporary initial deferred credits file"); - // write down some deferred credits let deferred_credits_file_contents = "{ \"AU12pAcVUzsgUBJHaYSAtDKVTYnUT9NorBDjoDovMfAFTLFa16MNa\": [ @@ -1649,6 +1587,14 @@ mod tests { { \"slot\": {\"period\": 4, \"thread\": 1}, \"amount\": \"6.0\" + }, + { + \"slot\": {\"period\": 255, \"thread\": 0}, + \"amount\": \"5.01\" + }, + { + \"slot\": {\"period\": 256, \"thread\": 0}, + \"amount\": \"6.0\" } ], \"AU1wN8rn4SkwYSTDF3dHFY4U28KtsqKL1NnEjDZhHnHEy6cEQm53\": [ @@ -1663,7 +1609,6 @@ mod tests { deferred_credits_file_contents.as_bytes(), ) .expect("failed writing initial deferred credits file"); - let pos_config = PoSConfig { periods_per_cycle: 2, thread_count: 2, @@ -1673,7 +1618,6 @@ mod tests { max_credit_length: MAX_DEFERRED_CREDITS_LENGTH, initial_deferred_credits_path: Some(initial_deferred_credits_file.path().to_path_buf()), }; - // initialize the database and pos_state let tempdir = tempfile::TempDir::new().expect("cannot create temp directory"); let db_config = MassaDBConfig { @@ -1682,6 +1626,7 @@ mod tests { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: 2, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -1689,7 +1634,6 @@ mod tests { let selector_controller = Box::new(MockSelectorController::new()); let init_seed = Hash::compute_from(b""); let initial_seeds = vec![Hash::compute_from(init_seed.to_bytes()), init_seed]; - let deferred_credits_deserializer = DeferredCreditsDeserializer::new(pos_config.thread_count, pos_config.max_credit_length); let cycle_info_deserializer = CycleHistoryDeserializer::new( @@ -1697,7 +1641,6 @@ mod tests { pos_config.max_rolls_length, pos_config.max_production_stats_length, ); - let mut pos_state = PoSFinalState { config: pos_config, db: db.clone(), @@ -1711,16 +1654,13 @@ mod tests { cycle_info_serializer: CycleHistorySerializer::new(), cycle_info_deserializer, }; - let mut batch = DBBatch::new(); // load initial deferred credits pos_state .load_initial_deferred_credits(&mut batch) .expect("error while loading initial deferred credits"); db.write().write_batch(batch, DBBatch::new(), None); - let deferred_credits = pos_state.get_deferred_credits().credits; - let addr1 = Address::from_str("AU12pAcVUzsgUBJHaYSAtDKVTYnUT9NorBDjoDovMfAFTLFa16MNa").unwrap(); let a_a1_s3 = Amount::from_str("5.01").unwrap(); @@ -1740,20 +1680,30 @@ mod tests { .into_iter() .collect(), ), + ( + Slot::new(255, 0), + vec![(addr1, Amount::from_str("5.01").unwrap())] + .into_iter() + .collect(), + ), + ( + Slot::new(256, 0), + vec![(addr1, Amount::from_str("6.0").unwrap())] + .into_iter() + .collect(), + ), ] .into_iter() .collect(); - assert_eq!( deferred_credits, expected_credits, "deferred credits not loaded correctly" ); - let credits_range_1 = - pos_state.get_deferred_credits_range(Slot::new(4, 0)..Slot::new(4, 1)); + pos_state.get_deferred_credits_range(Slot::new(4, 0)..Slot::new(4, 1), None); assert!(credits_range_1.is_empty()); let credits_range_2 = - pos_state.get_deferred_credits_range(Slot::new(2, 0)..Slot::new(3, 1)); + pos_state.get_deferred_credits_range(Slot::new(2, 0)..Slot::new(3, 1), None); let expected_credits_range_2 = vec![( Slot::new(3, 0), vec![(addr1, a_a1_s3), (addr2, a_a2_s3)] @@ -1764,8 +1714,19 @@ mod tests { .collect(); assert_eq!(credits_range_2.credits, expected_credits_range_2); let credits_range_3 = - pos_state.get_deferred_credits_range(Slot::new(7, 0)..Slot::new(9, 5)); + pos_state.get_deferred_credits_range(Slot::new(7, 0)..Slot::new(9, 5), None); assert!(credits_range_3.is_empty()); + let credits_range_4 = + pos_state.get_deferred_credits_range(Slot::new(7, 0)..Slot::new(255, 1), None); + + let a_a1_s255 = Amount::from_str("5.01").unwrap(); + let expected_credits_range_4 = vec![( + Slot::new(255, 0), + vec![(addr1, a_a1_s255)].into_iter().collect(), + )] + .into_iter() + .collect(); + assert_eq!(credits_range_4.credits, expected_credits_range_4); } // This test checks that the initial rolls are loaded correctly @@ -1799,6 +1760,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: 2, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -1969,7 +1931,8 @@ mod tests { } // This test checks that the recompute_pos_cache function recovers every cycle and does return correctly. - // The test example is chosen so that the keys for the cycles are not in the same order than the cycles. + // The test example is chosen to have the cycles overlap a power of 2, to check that the order of cycles in the DB + // (lexicographical over bytes) is the same as the order of cycles in the cache (numerical). // If this is not handled properly, the node hangs as explained here: https://github.com/massalabs/massa/issues/4101 #[test] fn test_pos_cache_recomputation() { @@ -1991,6 +1954,7 @@ mod tests { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: 2, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -2090,6 +2054,7 @@ mod tests { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: 2, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -2264,6 +2229,7 @@ mod tests { max_final_state_elements_size: 100, max_versioning_elements_size: 100, thread_count: 2, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> @@ -2368,6 +2334,7 @@ mod tests { thread_count: 2, max_final_state_elements_size: 100, max_versioning_elements_size: 100, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> diff --git a/massa-pos-worker/Cargo.toml b/massa-pos-worker/Cargo.toml index b811362d73e..791d1da840c 100644 --- a/massa-pos-worker/Cargo.toml +++ b/massa-pos-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_pos_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-protocol-exports/Cargo.toml b/massa-protocol-exports/Cargo.toml index 4d9311d9092..bd7c337a385 100644 --- a/massa-protocol-exports/Cargo.toml +++ b/massa-protocol-exports/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_protocol_exports" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-protocol-worker/Cargo.toml b/massa-protocol-worker/Cargo.toml index 9fb4f0f725e..2f9db883e37 100644 --- a/massa-protocol-worker/Cargo.toml +++ b/massa-protocol-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_protocol_worker" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-sdk/Cargo.toml b/massa-sdk/Cargo.toml index b6563f268e3..49ca737fa6c 100644 --- a/massa-sdk/Cargo.toml +++ b/massa-sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_sdk" -version = "28.3.0" +version = "2.1.0" edition = "2021" [dependencies] diff --git a/massa-serialization/Cargo.toml b/massa-serialization/Cargo.toml index ecaad09208c..2d46494ceb4 100644 --- a/massa-serialization/Cargo.toml +++ b/massa-serialization/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_serialization" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-signature/Cargo.toml b/massa-signature/Cargo.toml index d172240db6e..133f0517879 100644 --- a/massa-signature/Cargo.toml +++ b/massa-signature/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_signature" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-storage/Cargo.toml b/massa-storage/Cargo.toml index ab4f3f548f6..c5cb9b58e18 100644 --- a/massa-storage/Cargo.toml +++ b/massa-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_storage" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-test-framework/Cargo.toml b/massa-test-framework/Cargo.toml index 28a3444dc85..7253f9d43ea 100644 --- a/massa-test-framework/Cargo.toml +++ b/massa-test-framework/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_test_framework" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-time/Cargo.toml b/massa-time/Cargo.toml index aaac5ad6eda..579028bd612 100644 --- a/massa-time/Cargo.toml +++ b/massa-time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_time" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-versioning/Cargo.toml b/massa-versioning/Cargo.toml index d39b015b3cb..29863f14d18 100644 --- a/massa-versioning/Cargo.toml +++ b/massa-versioning/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_versioning" -version = "28.3.0" +version = "2.1.0" authors = ["Massa Labs "] edition = "2021" diff --git a/massa-versioning/src/versioning.rs b/massa-versioning/src/versioning.rs index 08a425fbb14..2c73ef54941 100644 --- a/massa-versioning/src/versioning.rs +++ b/massa-versioning/src/versioning.rs @@ -2545,6 +2545,7 @@ mod test { max_final_state_elements_size: 100_000, max_versioning_elements_size: 100_000, thread_count: THREAD_COUNT, + max_ledger_backups: 10, }; let db = Arc::new(RwLock::new( Box::new(MassaDB::new(db_config)) as Box<(dyn MassaDBController + 'static)> diff --git a/massa-wallet/Cargo.toml b/massa-wallet/Cargo.toml index 323b9499689..ccf2566102b 100644 --- a/massa-wallet/Cargo.toml +++ b/massa-wallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_wallet" -version = "28.3.0" +version = "2.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/massa-xtask/Cargo.toml b/massa-xtask/Cargo.toml index c1d1f620147..cfc2451c276 100644 --- a/massa-xtask/Cargo.toml +++ b/massa-xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "massa_xtask" -version = "28.3.0" +version = "2.1.0" edition = "2021" [dependencies]